diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index cefa1e3..ac6b9bf 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -1,4 +1,4 @@ -name: 'Audit des dépendances npm Backend et Frontend' +name: 'Audit des dépendances npm' on: pull_request: @@ -9,47 +9,46 @@ on: - dev jobs: - npm-audit: + audit-backend: + name: 'Audit Backend' runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18] + steps: + - name: 'Checkout code' + uses: actions/checkout@v4 + + - name: 'Setup Node.js' + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + cache-dependency-path: saintBarthVolleyApp/backend/package-lock.json + - name: 'Installer les dépendances' + run: npm ci + working-directory: saintBarthVolleyApp/backend + + - name: 'Audit npm backend' + run: npm audit --audit-level=critical --omit=dev + working-directory: saintBarthVolleyApp/backend + + audit-frontend: + name: 'Audit Frontend' + runs-on: ubuntu-latest steps: - name: 'Checkout code' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 'Setup Node.js' - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} - - # ---------------------- - # Backend audit - # ---------------------- - - name: 'Installation des dépendances backend' - run: | - echo "Installation des dépendances backend" - cd saintBarthVolleyApp/backend - npm install - - - name: "Lancement de l'audit npm backend" - run: | - echo "Audit des dépendances backend" - cd saintBarthVolleyApp/backend - npm audit --audit-level=high - - # ---------------------- - # Frontend audit - # ---------------------- - - name: 'Installation des dépendances frontend' - run: | - echo "Installation des dépendances frontend" - cd saintBarthVolleyApp/frontend - npm install - - - name: "Lancement de l'audit npm frontend" - run: | - echo "Audit des dépendances frontend" - cd saintBarthVolleyApp/frontend - npm audit --audit-level=high + node-version: '20' + cache: 'npm' + cache-dependency-path: saintBarthVolleyApp/frontend/package-lock.json + + - name: 'Installer les dépendances' + run: npm ci + working-directory: saintBarthVolleyApp/frontend + + - name: 'Audit npm frontend' + run: npm audit --audit-level=critical --omit=dev + working-directory: saintBarthVolleyApp/frontend diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..fe5ed08 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,69 @@ +name: 'Deploy to VPS' + +on: + push: + branches: + - main + +jobs: + deploy: + name: 'Déploiement SaintBarth Volley' + runs-on: ubuntu-latest + + steps: + - name: 'Checkout code' + uses: actions/checkout@v4 + + - name: 'Deploy via SSH' + uses: appleboy/ssh-action@v1.0.3 + with: + host: ${{ secrets.VPS_HOST }} + username: ${{ secrets.VPS_USER }} + key: ${{ secrets.VPS_SSH_KEY }} + port: 22 + script: | + set -e + echo "🚀 Déploiement SaintBarth Volley" + + REPO_DIR="/var/www/SaintBarthVolley" + COMPOSE_FILE="/var/www/docker-compose.yml" + + # ── Cloner ou mettre à jour le repo ────────────────────────── + if [ ! -d "$REPO_DIR/.git" ]; then + echo "📥 Premier déploiement — clonage du repo..." + git clone https://github.com/${{ github.repository }}.git "$REPO_DIR" + else + echo "🔄 Mise à jour du code..." + git -C "$REPO_DIR" fetch origin main + git -C "$REPO_DIR" reset --hard origin/main + fi + echo "✅ Code à jour" + + # ── Vérifier que le .env backend existe ─────────────────────── + ENV_FILE="$REPO_DIR/saintBarthVolleyApp/backend/.env" + if [ ! -f "$ENV_FILE" ]; then + echo "❌ Fichier .env manquant : $ENV_FILE" + echo " Créez-le depuis .env.example avant de déployer." + exit 1 + fi + echo "✅ Fichier .env backend trouvé" + + # ── Rebuild et restart uniquement les services SaintBarth ───── + echo "🔨 Build des images..." + docker compose -f "$COMPOSE_FILE" build --no-cache sbv-api sbv-front + + echo "🔄 Redémarrage des containers..." + docker compose -f "$COMPOSE_FILE" up -d --remove-orphans sbv-api sbv-front + + echo "✅ Containers démarrés" + + # ── Nettoyage des images obsolètes ──────────────────────────── + docker image prune -f + + # ── Vérification finale ─────────────────────────────────────── + echo "" + echo "📊 État des containers SaintBarth :" + docker ps --filter "name=sbv-" --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}" + + echo "" + echo "🎉 Déploiement terminé !" diff --git a/.github/workflows/hotfix.yml b/.github/workflows/hotfix.yml index 6838c81..2d0fd40 100644 --- a/.github/workflows/hotfix.yml +++ b/.github/workflows/hotfix.yml @@ -19,7 +19,7 @@ jobs: steps: - name: 'Checkout code' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -81,7 +81,6 @@ jobs: fi CONTENT=$(echo "$SECTION" | grep -Ev '^(## |\s*$|### )') - if [[ -z "$CONTENT" ]]; then echo "❌ Le changelog pour la version $VERSION est vide" exit 1 @@ -107,4 +106,4 @@ jobs: - name: 'PR mergée sur dev' if: github.event.pull_request.base.ref == 'dev' - run: echo "PR mergée sur dev, aucune release ni tag créé." + run: echo "PR mergée sur dev — aucune release créée." diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5cd54fb..d2175df 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,38 +11,35 @@ on: jobs: lint: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18] steps: - name: 'Checkout code' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 'Setup Node.js' - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: '20' + cache: 'npm' + cache-dependency-path: | + saintBarthVolleyApp/backend/package-lock.json + saintBarthVolleyApp/frontend/package-lock.json - - name: 'Installation ESLint & Prettier' - run: | - cd saintBarthVolleyApp/backend - npm init -y - npm install eslint prettier --save-dev - cd ../frontend - npm init -y - npm install eslint prettier --save-dev + - name: 'Installer les dépendances backend' + run: npm ci + working-directory: saintBarthVolleyApp/backend - name: 'Lancer ESLint backend' - run: | - cd saintBarthVolleyApp/backend - npx eslint . --ext .js,.ts || echo "✅ Pas de fichiers backend JS/TS à lint" + run: npx eslint . --ext .js,.ts + working-directory: saintBarthVolleyApp/backend + + - name: 'Installer les dépendances frontend' + run: npm ci + working-directory: saintBarthVolleyApp/frontend - name: 'Lancer ESLint frontend' - run: | - cd saintBarthVolleyApp/frontend - npx eslint . --ext .js,.jsx || echo "✅ Pas de fichiers frontend JS/JSX à lint" + run: npx eslint . --ext .js,.jsx,.ts,.tsx + working-directory: saintBarthVolleyApp/frontend - - name: 'Lancer Prettier check' - run: | - npx prettier --check . || echo "✅ Pas de fichiers à formater" + - name: 'Prettier check (global)' + run: npx prettier --check "saintBarthVolleyApp/**/*.{js,ts,tsx,jsx,json}" --ignore-path .gitignore diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b04e823..df68a81 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: steps: - name: 'Checkout code' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -69,7 +69,6 @@ jobs: exit 1 fi - # Extraire uniquement la section de la version SECTION=$(awk " BEGIN {found=0} /^## \\[$VERSION\\]/ {found=1} @@ -82,21 +81,17 @@ jobs: exit 1 fi - # Vérifier que la section contient du contenu réel CONTENT=$(echo "$SECTION" | grep -Ev '^(## |\s*$|### )') - if [[ -z "$CONTENT" ]]; then echo "❌ Le changelog pour la version $VERSION est vide" exit 1 fi echo "✅ Changelog valide pour la version $VERSION" - echo "release_notes<> $GITHUB_OUTPUT echo "$SECTION" >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT - - name: 'Créer le tag' run: | git tag "${{ steps.semver.outputs.tag }}" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5d11d81..f103c10 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,4 +1,4 @@ -name: 'Lancer les Tests Backend et Frontend' +name: 'Tests Backend et Frontend' on: pull_request: @@ -9,56 +9,63 @@ on: - dev jobs: - test-backend-frontend: + test-backend: + name: 'Tests Backend' runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18] # adapte selon la version Node de ton projet + + services: + mongodb: + image: mongo:7 + ports: + - 27017:27017 steps: - name: 'Checkout code' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 'Setup Node.js' - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 20.9.0 + node-version: '20' + cache: 'npm' + cache-dependency-path: saintBarthVolleyApp/backend/package-lock.json - # ---------------------- - # Backend - # ---------------------- - - name: 'Installer les dépendances backend' - run: | - echo "Installation des dépendances backend" - cd saintBarthVolleyApp/backend - npm install + - name: 'Installer les dépendances' + run: npm ci + working-directory: saintBarthVolleyApp/backend - name: 'Lancer les tests backend' - run: | - echo "Lancement des tests backend" - cd saintBarthVolleyApp/backend - npm test + run: npm test + working-directory: saintBarthVolleyApp/backend + env: + NODE_ENV: test + MONGO_URI: mongodb://localhost:27017/sbv_test + JWT_SECRET: test_secret_ci + PORT: 5000 + + test-frontend: + name: 'Build Frontend (vérification)' + runs-on: ubuntu-latest + + steps: + - name: 'Checkout code' + uses: actions/checkout@v4 - # ---------------------- - # Frontend - # ---------------------- - - name: 'Installer les dépendances frontend' - run: | - echo "Installation des dépendances frontend" - cd saintBarthVolleyApp/frontend - npm install + - name: 'Setup Node.js' + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + cache-dependency-path: saintBarthVolleyApp/frontend/package-lock.json - - name: 'Lancer les tests frontend' - run: | - echo "Lancement des tests frontend" - cd saintBarthVolleyApp/frontend - npm test + - name: 'Installer les dépendances' + run: npm ci + working-directory: saintBarthVolleyApp/frontend - # ---------------------- - # Optional: build frontend - # ---------------------- - - name: 'Build frontend pour vérification' - run: | - echo "Building du frontend" - cd saintBarthVolleyApp/frontend - npm run build || { echo "❌ Build frontend échoué"; exit 1; } + - name: 'Build Next.js' + run: npm run build + working-directory: saintBarthVolleyApp/frontend + env: + # Pas de basePath en CI, pas besoin de l'URL de prod + NEXT_BASE_PATH: '' + NEXT_PUBLIC_API_URL: '' diff --git a/.github/workflows/ticket.yml b/.github/workflows/ticket.yml index 9ad0225..a000a98 100644 --- a/.github/workflows/ticket.yml +++ b/.github/workflows/ticket.yml @@ -24,14 +24,15 @@ jobs: exit 0 fi - # Regex pour le commit / titre PR : type(nom): Fixes # - message - if [[ "$PR_TITLE" =~ ^(feat|feature|fix|docs|chore|refactor|test|hotfix)\([a-zA-Z0-9_-]+\):\ Fixes\ \#[0-9]+\ -\ .+ ]]; then + # Regex pour le titre PR : type(nom): Fixes # - message + TITLE_REGEX='^(feat|feature|fix|docs|chore|refactor|test|hotfix)\([a-zA-Z0-9_-]+\): Fixes #[0-9]+ - .+' + if [[ "$PR_TITLE" =~ $TITLE_REGEX ]]; then echo "✅ Titre de PR valide avec référence au ticket" exit 0 fi - # Regex pour le nom de branche : feature/123-description, fix/123-description, hotfix/123-description - if [[ "$BRANCH_NAME" =~ ^(feature|fix|hotfix)/[0-9]+-.+ ]]; then + # Regex pour le nom de branche : feat/123-description, feature/123-description, fix/123-description, hotfix/123-description + if [[ "$BRANCH_NAME" =~ ^(feat|feature|fix|hotfix)/[0-9]+-.+ ]]; then echo "✅ Nom de branche valide avec référence au ticket" exit 0 fi diff --git a/CHANGELOG.md b/CHANGELOG.md index 591c5c2..38e3670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - --- +## [0.3.0] - 2026-04-05 + +### Ajouté +- Login User +- Dashboard admin : gestion des membres par équipe et saison +- Dashboard admin : page utilisateurs avec création/modification/vérification +- Gestion des rôles par subdocument (roleId) +- Photo par assignation équipe/saison +- Bénévoles sans équipe + +### Corrigé +- Email SMTP fixe au lieu de compte Ethereal recréé à chaque restart +- Upload URL relative via NEXT_PUBLIC_API_URL + +### Infrastructure +- Dockerfiles backend et frontend +- GitHub Actions : lint, tests, audit, deploy + +--- + ## [0.2.0] - 2026-02-11 ### Ajouté diff --git a/saintBarthVolleyApp/backend/.env.example b/saintBarthVolleyApp/backend/.env.example index 2fc80e3..34adeae 100644 --- a/saintBarthVolleyApp/backend/.env.example +++ b/saintBarthVolleyApp/backend/.env.example @@ -1 +1,14 @@ -PORT=3000 +MONGO_URI=mongodb://mongo:27017/saintbarthvolley +PORT=5000 + +FRONTEND_URL=http://YOUR_VPS_IP/saintbarth +CORS_ORIGIN=http://YOUR_VPS_IP + +JWT_SECRET=CHANGE_ME_WITH_A_STRONG_SECRET + +SMTP_HOST=smtp.ethereal.email +SMTP_PORT=587 +SMTP_SECURE=false +SMTP_USER=your_ethereal_user +SMTP_PASS=your_ethereal_pass +SMTP_FROM="Saint-Barth Volley " diff --git a/saintBarthVolleyApp/backend/Dockerfile b/saintBarthVolleyApp/backend/Dockerfile new file mode 100644 index 0000000..66b93c6 --- /dev/null +++ b/saintBarthVolleyApp/backend/Dockerfile @@ -0,0 +1,14 @@ +FROM node:20-alpine + +WORKDIR /usr/src/app + +COPY package*.json ./ +RUN npm install --omit=dev + +COPY . . + +# Dossier uploads persisté via volume +RUN mkdir -p public/uploads + +EXPOSE 5000 +CMD ["node", "server.js"] diff --git a/saintBarthVolleyApp/backend/package-lock.json b/saintBarthVolleyApp/backend/package-lock.json index bf2b31d..146e999 100644 --- a/saintBarthVolleyApp/backend/package-lock.json +++ b/saintBarthVolleyApp/backend/package-lock.json @@ -15,13 +15,11 @@ "cors": "^2.8.5", "dotenv": "^17.2.3", "express": "^5.2.1", - "gridfs-stream": "^1.1.1", "jsonwebtoken": "^9.0.3", "lodash.merge": "^4.6.2", "mongodb": "^7.1.1", "mongoose": "^9.1.5", "multer": "^2.1.1", - "multer-gridfs-storage": "^5.0.2", "nodemailer": "^8.0.4", "puppeteer": "^24.37.1" }, @@ -266,34 +264,6 @@ "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", "license": "MIT" }, - "node_modules/@types/body-parser": { - "version": "1.19.6", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", - "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", - "license": "MIT", - "dependencies": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "node_modules/@types/bson": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.0.5.tgz", - "integrity": "sha512-vVLwMUqhYJSQ/WKcE60eFqcyuWse5fGH+NMAXHuKrUAPoryq3ATxk5o4bgYNtg5aOM4APVg7Hnb3ASqUYG0PKg==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/connect": { - "version": "3.4.38", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", - "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/esrecurse": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz", @@ -308,36 +278,6 @@ "dev": true, "license": "MIT" }, - "node_modules/@types/express": { - "version": "4.17.25", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.25.tgz", - "integrity": "sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==", - "license": "MIT", - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "^1" - } - }, - "node_modules/@types/express-serve-static-core": { - "version": "4.19.8", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.8.tgz", - "integrity": "sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==", - "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" - } - }, - "node_modules/@types/http-errors": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", - "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==", - "license": "MIT" - }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", @@ -345,91 +285,16 @@ "dev": true, "license": "MIT" }, - "node_modules/@types/mime": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", - "license": "MIT" - }, - "node_modules/@types/mongodb": { - "version": "3.6.20", - "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.6.20.tgz", - "integrity": "sha512-WcdpPJCakFzcWWD9juKoZbRtQxKIMYF/JIAM4JrNHrMcnJL6/a2NWjXxW7fo9hxboxxkg+icff8d7+WIEvKgYQ==", - "license": "MIT", - "dependencies": { - "@types/bson": "*", - "@types/node": "*" - } - }, - "node_modules/@types/multer": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/@types/multer/-/multer-1.4.13.tgz", - "integrity": "sha512-bhhdtPw7JqCiEfC9Jimx5LqX9BDIPJEh2q/fQ4bqbBPtyEZYr3cvF22NwG0DmPZNYA0CAf2CnqDB4KIGGpJcaw==", - "license": "MIT", - "dependencies": { - "@types/express": "*" - } - }, "node_modules/@types/node": { "version": "25.2.1", "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.1.tgz", "integrity": "sha512-CPrnr8voK8vC6eEtyRzvMpgp3VyVRhgclonE7qYi6P9sXwYb59ucfrnmFBTaP0yUi8Gk4yZg/LlTJULGxvTNsg==", "license": "MIT", + "optional": true, "dependencies": { "undici-types": "~7.16.0" } }, - "node_modules/@types/pump": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@types/pump/-/pump-1.1.3.tgz", - "integrity": "sha512-ZyooTTivmOwPfOwLVaszkF8Zq6mvavgjuHYitZhrIjfQAJDH+kIP3N+MzpG1zDAslsHvVz6Q8ECfivix3qLJaQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/qs": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.15.0.tgz", - "integrity": "sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==", - "license": "MIT" - }, - "node_modules/@types/range-parser": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", - "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", - "license": "MIT" - }, - "node_modules/@types/send": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", - "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==", - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/serve-static": { - "version": "1.15.10", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.10.tgz", - "integrity": "sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==", - "license": "MIT", - "dependencies": { - "@types/http-errors": "*", - "@types/node": "*", - "@types/send": "<1" - } - }, - "node_modules/@types/serve-static/node_modules/@types/send": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.6.tgz", - "integrity": "sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==", - "license": "MIT", - "dependencies": { - "@types/mime": "^1", - "@types/node": "*" - } - }, "node_modules/@types/webidl-conversions": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", @@ -2006,12 +1871,6 @@ "dev": true, "license": "ISC" }, - "node_modules/flushwritable": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/flushwritable/-/flushwritable-1.0.0.tgz", - "integrity": "sha512-3VELfuWCLVzt5d2Gblk8qcqFro6nuwvxwMzHaENVDHI7rxcBRtMCwTk/E9FXcgh+82DSpavPNDueA9+RxXJoFg==", - "license": "MIT" - }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -2180,18 +2039,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gridfs-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/gridfs-stream/-/gridfs-stream-1.1.1.tgz", - "integrity": "sha512-EcELdPIjC7tpZUiZA/8trfmszLbcsZlFyDQ8DhMtyJIMDmuLi5Vzt/056OO6FqfvY/zwiTCo1eZAqwtqrhBGMQ==", - "deprecated": "This project has been sunset. Please migrate to an alternative.", - "dependencies": { - "flushwritable": "^1.0.0" - }, - "engines": { - "node": ">= 0.4.2" - } - }, "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -2202,15 +2049,6 @@ "node": ">=4" } }, - "node_modules/has-own-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz", - "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/has-symbols": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", @@ -2456,12 +2294,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-generator": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-generator/-/is-generator-1.0.3.tgz", - "integrity": "sha512-G56jBpbJeg7ds83HW1LuShNs8J73Fv3CPz/bmROHOHlnKkN8sWb9ujiagjmxxMUywftgq48HlBZELKKqFLk0oA==", - "license": "MIT" - }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -2930,15 +2762,6 @@ "node": ">=20.19.0" } }, - "node_modules/mongodb-uri": { - "version": "0.9.7", - "resolved": "https://registry.npmjs.org/mongodb-uri/-/mongodb-uri-0.9.7.tgz", - "integrity": "sha512-s6BdnqNoEYfViPJgkH85X5Nw5NpzxN8hoflKLweNa7vBxt2V7kaS06d74pAtqDxde8fn4r9h4dNdLiFGoNV0KA==", - "license": "MIT", - "engines": { - "node": ">= 0.6.0" - } - }, "node_modules/mongoose": { "version": "9.1.5", "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-9.1.5.tgz", @@ -3049,31 +2872,6 @@ "url": "https://opencollective.com/express" } }, - "node_modules/multer-gridfs-storage": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/multer-gridfs-storage/-/multer-gridfs-storage-5.0.2.tgz", - "integrity": "sha512-oYl70i792uyJfgpvOfJrZIru4MsjjAueDHLZXTDGix/yPJuk1/lfqdPHHnv/XVVGfVZb4G9jJqwEFf9JIX1SOQ==", - "license": "MIT", - "dependencies": { - "@types/express": "^4.17.6", - "@types/mongodb": "^3.5.25", - "@types/multer": "^1.4.3", - "@types/pump": "^1.1.0", - "has-own-prop": "^2.0.0", - "is-generator": "^1.0.3", - "is-promise": "^4.0.0", - "lodash.isplainobject": ">=0.8.0", - "mongodb": ">=2", - "mongodb-uri": "^0.9.7", - "pump": "^3.0.0" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "multer": "^1.4.2" - } - }, "node_modules/multer/node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -4332,7 +4130,8 @@ "version": "7.16.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", - "license": "MIT" + "license": "MIT", + "optional": true }, "node_modules/unpipe": { "version": "1.0.0", diff --git a/saintBarthVolleyApp/backend/package.json b/saintBarthVolleyApp/backend/package.json index fa8137f..e99a4ff 100644 --- a/saintBarthVolleyApp/backend/package.json +++ b/saintBarthVolleyApp/backend/package.json @@ -23,13 +23,11 @@ "cors": "^2.8.5", "dotenv": "^17.2.3", "express": "^5.2.1", - "gridfs-stream": "^1.1.1", "jsonwebtoken": "^9.0.3", "lodash.merge": "^4.6.2", "mongodb": "^7.1.1", "mongoose": "^9.1.5", "multer": "^2.1.1", - "multer-gridfs-storage": "^5.0.2", "nodemailer": "^8.0.4", "puppeteer": "^24.37.1" }, diff --git a/saintBarthVolleyApp/backend/public/uploads/1774696478806_clubPhoto.jpg b/saintBarthVolleyApp/backend/public/uploads/1774866503165_clubPhoto.jpg similarity index 100% rename from saintBarthVolleyApp/backend/public/uploads/1774696478806_clubPhoto.jpg rename to saintBarthVolleyApp/backend/public/uploads/1774866503165_clubPhoto.jpg diff --git a/saintBarthVolleyApp/backend/public/uploads/1775412325537_1734616916045.jpeg b/saintBarthVolleyApp/backend/public/uploads/1775412325537_1734616916045.jpeg new file mode 100644 index 0000000..b077737 Binary files /dev/null and b/saintBarthVolleyApp/backend/public/uploads/1775412325537_1734616916045.jpeg differ diff --git a/saintBarthVolleyApp/backend/server.js b/saintBarthVolleyApp/backend/server.js index 487fd14..915dff9 100644 --- a/saintBarthVolleyApp/backend/server.js +++ b/saintBarthVolleyApp/backend/server.js @@ -9,7 +9,8 @@ const PORT = process.env.PORT || 5000; const MONGO_URI = process.env.MONGO_URI || 'mongodb://127.0.0.1:27017/saintbarthvolley'; // Connexion MongoDB -mongoose.connect(MONGO_URI) +mongoose + .connect(MONGO_URI) .then(() => { console.log('MongoDB connected'); @@ -18,4 +19,4 @@ mongoose.connect(MONGO_URI) console.log(`Server launched on http://localhost:${PORT}`); }); }) - .catch(err => console.error('Error MongoDB:', err)); \ No newline at end of file + .catch((err) => console.error('Error MongoDB:', err)); diff --git a/saintBarthVolleyApp/backend/src/app.js b/saintBarthVolleyApp/backend/src/app.js index f67af0c..5374334 100644 --- a/saintBarthVolleyApp/backend/src/app.js +++ b/saintBarthVolleyApp/backend/src/app.js @@ -5,61 +5,76 @@ import dotenv from 'dotenv'; import cookieParser from 'cookie-parser'; import path from 'path'; +// 🔹 Routes import usersRoutes from './routes/users.js'; import clubsRoutes from './routes/clubs.js'; import seasonsRoutes from './routes/seasons.js'; import teamsRoutes from './routes/teams.js'; import membersRoutes from './routes/members.js'; +import membersWithSeasonRoute from './routes/api/membersWithSeason.js'; +import authRoutes from './routes/api/auth.js'; +import adminRoutes from './routes/api/admin.js'; +import uploadRoutes from './routes/api/upload.js'; +import scrapingRoutes from './routes/api/scraping.js'; +import statsRoutes from './routes/api/stats.js'; + +// Autres routes (optionnel) import newsRoutes from './routes/news.js'; import albumsRoutes from './routes/albums.js'; import mediasRoutes from './routes/medias.js'; import partnersRoutes from './routes/partners.js'; -import championshipsRoutes from './routes/championships.js'; import standingsRoutes from './routes/standings.js'; import matchesRoutes from './routes/matches.js'; -import authRoutes from './routes/auth.js'; -import adminRoutes from './routes/admin.js'; -import uploadRoutes from './routes/upload.js'; -import memberSeasonsRouter from './routes/memberSeasons.js'; dotenv.config(); - const app = express(); -// Middlewares +// 🔹 Middlewares globaux app.use(cookieParser()); app.use(express.json()); app.use(express.urlencoded({ extended: true })); -// 🔹 CORS : autoriser Next.js front sur localhost:3000 +// 🔹 CORS pour Next.js +const allowedOrigins = (process.env.CORS_ORIGIN || 'http://localhost:3000').split(','); app.use( cors({ - origin: 'http://localhost:3000', // Next.js + origin: (origin, cb) => { + // Autoriser les requêtes sans origin (ex: curl, Postman) et les origins autorisées + if (!origin || allowedOrigins.includes(origin)) return cb(null, true); + cb(new Error(`CORS bloqué: ${origin}`)); + }, credentials: true, }), ); -// Route test -app.get('/', (req, res) => res.send('API Volley fonctionne !')); - +// 🔹 Statique pour uploads app.use('/uploads', express.static(path.join(process.cwd(), 'public/uploads'))); -// Routes API +// 🔹 Route test +app.get('/', (req, res) => res.send('API Volley fonctionne !')); + +// 🔹 Routes API principales app.use('/api/users', usersRoutes); app.use('/api/clubs', clubsRoutes); -app.use('/api/seasons', seasonsRoutes); -app.use('/api/teams', teamsRoutes); -app.use('/api/members', membersRoutes); -app.use('/api/member-seasons', memberSeasonsRouter); +app.use('/api/seasons', seasonsRoutes); // CRUD saisons +app.use('/api/teams', teamsRoutes); // CRUD équipes +app.use('/api/members', membersRoutes); // CRUD membres +app.use('/api/members-with-season', membersWithSeasonRoute); // Membres + saison active + +// 🔹 Routes admin/auth/upload +app.use('/api/auth', authRoutes); +app.use('/api/admin', adminRoutes); +app.use('/api/upload', uploadRoutes); +app.use('/api/scraping', scrapingRoutes); +app.use('/api/stats', statsRoutes); + +// 🔹 Routes optionnelles app.use('/api/news', newsRoutes); app.use('/api/albums', albumsRoutes); app.use('/api/medias', mediasRoutes); app.use('/api/partners', partnersRoutes); -app.use('/api/championships', championshipsRoutes); app.use('/api/standings', standingsRoutes); app.use('/api/matches', matchesRoutes); -app.use('/api/auth', authRoutes); -app.use('/api/admin', adminRoutes); -app.use('/api/upload', uploadRoutes); +// 🔹 Export export default app; diff --git a/saintBarthVolleyApp/backend/src/controllers/matchesController.js b/saintBarthVolleyApp/backend/src/controllers/matchesController.js index b815402..635d4f5 100644 --- a/saintBarthVolleyApp/backend/src/controllers/matchesController.js +++ b/saintBarthVolleyApp/backend/src/controllers/matchesController.js @@ -1,15 +1,15 @@ import Match from '../models/Match.js'; -// Liste des matchs (par championnat) +// Liste des matchs (par équipe) export const getMatches = async (req, res) => { try { const filter = {}; - if (req.query.championshipId) { - filter.championshipId = req.query.championshipId; + if (req.query.teamId) { + filter.teamId = req.query.teamId; } - const matches = await Match.find(filter).populate('championshipId').sort({ date: 1 }); + const matches = await Match.find(filter).populate('teamId').sort({ date: 1 }); res.json(matches); } catch (error) { @@ -20,7 +20,7 @@ export const getMatches = async (req, res) => { // Match par ID export const getMatchById = async (req, res) => { try { - const match = await Match.findById(req.params.id).populate('championshipId'); + const match = await Match.findById(req.params.id).populate('teamId'); if (!match) { return res.status(404).json({ message: 'Match non trouvé' }); diff --git a/saintBarthVolleyApp/backend/src/controllers/memberSeasonController.js b/saintBarthVolleyApp/backend/src/controllers/memberSeasonController.js deleted file mode 100644 index f6bae44..0000000 --- a/saintBarthVolleyApp/backend/src/controllers/memberSeasonController.js +++ /dev/null @@ -1,66 +0,0 @@ -import MemberSeason from '../models/MemberSeason.js'; - -// 🔹 GET all member-seasons -export const getAllMemberSeasons = async (req, res) => { - try { - const memberSeasons = await MemberSeason.find().populate('memberId').populate('teams').populate('seasonId'); - res.json(memberSeasons); - } catch (err) { - console.error(err); - res.status(500).json({ message: 'Erreur serveur', error: err.message }); - } -}; - -// 🔹 GET single member-season by ID -export const getMemberSeasonById = async (req, res) => { - try { - const memberSeason = await MemberSeason.findById(req.params.id) - .populate('memberId') - .populate('teams') - .populate('seasonId'); - if (!memberSeason) return res.status(404).json({ message: 'Non trouvé' }); - res.json(memberSeason); - } catch (err) { - console.error(err); - res.status(500).json({ message: 'Erreur serveur', error: err.message }); - } -}; - -// 🔹 POST create member-season -export const createMemberSeason = async (req, res) => { - try { - const newMemberSeason = new MemberSeason(req.body); - await newMemberSeason.save(); - res.status(201).json(newMemberSeason); - } catch (err) { - console.error(err); - res.status(400).json({ message: 'Erreur création', error: err.message }); - } -}; - -// 🔹 PUT update member-season -export const updateMemberSeason = async (req, res) => { - try { - const memberSeason = await MemberSeason.findByIdAndUpdate(req.params.id, req.body, { - new: true, - runValidators: true, - }); - if (!memberSeason) return res.status(404).json({ message: 'Non trouvé' }); - res.json(memberSeason); - } catch (err) { - console.error(err); - res.status(400).json({ message: 'Erreur update', error: err.message }); - } -}; - -// 🔹 DELETE member-season -export const deleteMemberSeason = async (req, res) => { - try { - const memberSeason = await MemberSeason.findByIdAndDelete(req.params.id); - if (!memberSeason) return res.status(404).json({ message: 'Non trouvé' }); - res.json({ message: 'Supprimé avec succès' }); - } catch (err) { - console.error(err); - res.status(500).json({ message: 'Erreur serveur', error: err.message }); - } -}; diff --git a/saintBarthVolleyApp/backend/src/controllers/membersController.js b/saintBarthVolleyApp/backend/src/controllers/membersController.js index d72f125..953b238 100644 --- a/saintBarthVolleyApp/backend/src/controllers/membersController.js +++ b/saintBarthVolleyApp/backend/src/controllers/membersController.js @@ -1,89 +1,124 @@ import Member from '../models/Member.js'; -import MemberSeason from '../models/MemberSeason.js'; + +// ─── CRUD membres ──────────────────────────────────────────────────────────── export const getMembers = async (req, res) => { try { - const members = await Member.find({ isActive: true }); - + const members = await Member.find(); res.json(members); - } catch (error) { - res.status(500).json({ message: error.message }); + } catch (err) { + res.status(500).json({ message: err.message }); } }; export const getMemberById = async (req, res) => { try { const member = await Member.findById(req.params.id); - - if (!member) { - return res.status(404).json({ message: 'Member not found' }); - } - - const memberSeasons = await MemberSeason.find({ - memberId: member._id, - }) - .populate('seasonId') - .populate('teams'); - - res.json({ - member, - seasons: memberSeasons, - }); - } catch (error) { - res.status(500).json({ message: error.message }); + if (!member) return res.status(404).json({ message: 'Member not found' }); + res.json(member); + } catch (err) { + res.status(500).json({ message: err.message }); } }; export const createMember = async (req, res) => { try { - const member = await Member.create(req.body); + const member = new Member(req.body); + await member.save(); res.status(201).json(member); - } catch (error) { - res.status(400).json({ message: error.message }); + } catch (err) { + res.status(400).json({ message: err.message }); } }; export const updateMember = async (req, res) => { try { - const member = await Member.findByIdAndUpdate(req.params.id, req.body, { - new: true, - runValidators: true, - }); + const member = await Member.findByIdAndUpdate(req.params.id, req.body, { new: true }); + if (!member) return res.status(404).json({ message: 'Member not found' }); + res.json(member); + } catch (err) { + res.status(400).json({ message: err.message }); + } +}; - if (!member) { - return res.status(404).json({ message: 'Member not found' }); - } +export const deleteMember = async (req, res) => { + try { + const member = await Member.findByIdAndDelete(req.params.id); + if (!member) return res.status(404).json({ message: 'Member not found' }); + res.json({ message: 'Member deleted' }); + } catch (err) { + res.status(500).json({ message: err.message }); + } +}; - res.json(member); - } catch (error) { - res.status(400).json({ message: error.message }); +// ─── Gestion des rôles (teamRoles subdocs) ─────────────────────────────────── +// Identifiés par leur propre _id (roleId), pas par teamId + +// GET /api/members/:memberId/roles +export const getMemberRoles = async (req, res) => { + try { + const member = await Member.findById(req.params.memberId) + .populate('teamRoles.teamId') + .populate('teamRoles.seasonId'); + if (!member) return res.status(404).json({ message: 'Member not found' }); + res.json(member.teamRoles); + } catch (err) { + res.status(500).json({ message: err.message }); + } +}; + +// POST /api/members/:memberId/roles +export const addMemberRole = async (req, res) => { + try { + const { teamId, seasonId, roles, isCaptain, position, photo } = req.body; + const member = await Member.findById(req.params.memberId); + if (!member) return res.status(404).json({ message: 'Member not found' }); + + member.teamRoles.push({ teamId: teamId || undefined, seasonId, roles, isCaptain, position, photo }); + await member.save(); + res.status(201).json(member); + } catch (err) { + res.status(400).json({ message: err.message }); } }; -export const deactivateMember = async (req, res) => { +// PUT /api/members/:memberId/roles/:roleId +export const updateMemberRole = async (req, res) => { try { - const member = await Member.findByIdAndUpdate(req.params.id, { isActive: false }, { new: true }); + const { memberId, roleId } = req.params; + const member = await Member.findById(memberId); + if (!member) return res.status(404).json({ message: 'Member not found' }); + + const role = member.teamRoles.id(roleId); + if (!role) return res.status(404).json({ message: 'Role not found' }); - if (!member) { - return res.status(404).json({ message: 'Member not found' }); - } + const { roles, isCaptain, position, photo } = req.body; + if (roles !== undefined) role.roles = roles; + if (isCaptain !== undefined) role.isCaptain = isCaptain; + if (position !== undefined) role.position = position; + if (photo !== undefined) role.photo = photo; - res.json({ message: 'Member deactivated', member }); - } catch (error) { - res.status(500).json({ message: error.message }); + await member.save(); + res.json(member); + } catch (err) { + res.status(400).json({ message: err.message }); } }; -export const deleteMember = async (req, res) => { +// DELETE /api/members/:memberId/roles/:roleId +export const removeMemberRole = async (req, res) => { try { - const member = await Member.findByIdAndDelete(req.params.id); + const { memberId, roleId } = req.params; + const member = await Member.findById(memberId); + if (!member) return res.status(404).json({ message: 'Member not found' }); - if (!member) { - return res.status(404).json({ message: 'Member not found' }); - } + const role = member.teamRoles.id(roleId); + if (!role) return res.status(404).json({ message: 'Role not found' }); - res.json({ message: 'Member deleted' }); - } catch (error) { - res.status(500).json({ message: error.message }); + role.deleteOne(); + await member.save(); + res.json(member); + } catch (err) { + res.status(500).json({ message: err.message }); } }; diff --git a/saintBarthVolleyApp/backend/src/controllers/newsController.js b/saintBarthVolleyApp/backend/src/controllers/newsController.js index 147ab72..d7baf81 100644 --- a/saintBarthVolleyApp/backend/src/controllers/newsController.js +++ b/saintBarthVolleyApp/backend/src/controllers/newsController.js @@ -1,9 +1,24 @@ import News from '../models/News.js'; +function generateSlug(title) { + return title + .toLowerCase() + .normalize('NFD') + .replace(/[\u0300-\u036f]/g, '') + .replace(/[^a-z0-9\s-]/g, '') + .trim() + .replace(/\s+/g, '-') + .replace(/-+/g, '-'); +} + // GET all news export const getNews = async (req, res) => { try { - const news = await News.find().populate('authorId', 'firstName lastName').populate('albumId'); // Si tu veux récupérer les infos de l'album + const filter = {}; + if (req.query.published === 'true') filter.isPublished = true; + if (req.query.featured === 'true') filter.isFeatured = true; + + const news = await News.find(filter).populate('authorId', 'firstName lastName').sort({ createdAt: -1 }); res.json(news); } catch (error) { res.status(500).json({ message: error.message }); @@ -13,7 +28,7 @@ export const getNews = async (req, res) => { // GET single news by ID export const getNewsById = async (req, res) => { try { - const newsItem = await News.findById(req.params.id).populate('authorId', 'firstName lastName').populate('albumId'); + const newsItem = await News.findById(req.params.id).populate('authorId', 'firstName lastName'); if (!newsItem) return res.status(404).json({ message: 'News non trouvée' }); res.json(newsItem); } catch (error) { @@ -21,10 +36,24 @@ export const getNewsById = async (req, res) => { } }; -// CREATE news +// CREATE news — authorId depuis JWT export const createNews = async (req, res) => { try { - const newsItem = await News.create(req.body); + const { title, content, isPublished, isFeatured } = req.body; + + const slug = generateSlug(title); + const publishedAt = isPublished ? new Date() : null; + + const newsItem = await News.create({ + title, + slug, + content, + isPublished: !!isPublished, + isFeatured: !!isFeatured, + publishedAt, + authorId: req.user._id, + }); + res.status(201).json(newsItem); } catch (error) { res.status(400).json({ message: error.message }); @@ -34,7 +63,20 @@ export const createNews = async (req, res) => { // UPDATE news export const updateNews = async (req, res) => { try { - const newsItem = await News.findByIdAndUpdate(req.params.id, req.body, { + const update = { ...req.body }; + + // Regénérer le slug si le titre change + if (update.title) { + update.slug = generateSlug(update.title); + } + + // Auto publishedAt + if (update.isPublished === true || update.isPublished === 'true') { + const existing = await News.findById(req.params.id); + if (!existing?.publishedAt) update.publishedAt = new Date(); + } + + const newsItem = await News.findByIdAndUpdate(req.params.id, update, { new: true, runValidators: true, }); @@ -50,7 +92,7 @@ export const deleteNews = async (req, res) => { try { const newsItem = await News.findByIdAndDelete(req.params.id); if (!newsItem) return res.status(404).json({ message: 'News non trouvée' }); - res.json({ message: 'News supprimée', newsItem }); + res.json({ message: 'News supprimée' }); } catch (error) { res.status(500).json({ message: error.message }); } diff --git a/saintBarthVolleyApp/backend/src/controllers/seasonsController.js b/saintBarthVolleyApp/backend/src/controllers/seasonsController.js index bea265f..2e4fa2b 100644 --- a/saintBarthVolleyApp/backend/src/controllers/seasonsController.js +++ b/saintBarthVolleyApp/backend/src/controllers/seasonsController.js @@ -1,28 +1,28 @@ import Season from '../models/Season.js'; -import MemberSeason from '../models/MemberSeason.js'; +import Member from '../models/Member.js'; -// Créer une nouvelle saison -export const createSeason = async (req, res) => { +// Liste toutes les saisons triées par startDate +export const getSeasons = async (req, res) => { try { - const season = new Season(req.body); - await season.save(); - res.status(201).json({ message: 'Season created', season }); + const seasons = await Season.find().sort({ startDate: 1 }); + res.json(seasons); } catch (err) { - res.status(400).json({ message: err.message }); + res.status(500).json({ message: err.message }); } }; -// Récupérer toutes les saisons -export const getSeasons = async (req, res) => { +// Créer saison +export const createSeason = async (req, res) => { try { - const seasons = await Season.find().sort({ startDate: -1 }); - res.json(seasons); + const season = new Season(req.body); + await season.save(); + res.status(201).json(season); } catch (err) { - res.status(500).json({ message: err.message }); + res.status(400).json({ message: err.message }); } }; -// Récupérer une saison par ID +// Récupérer saison par ID export const getSeasonById = async (req, res) => { try { const season = await Season.findById(req.params.id); @@ -33,44 +33,18 @@ export const getSeasonById = async (req, res) => { } }; -export const getSeasonMembers = async (req, res) => { - try { - const seasonId = req.params.id; - - const members = await MemberSeason.find({ - seasonId, - isActive: true, - }) - .populate({ - path: 'memberId', - select: 'firstName lastName photo', - }) - .populate({ - path: 'teams', - select: 'name category', - }); - - members.sort((a, b) => a.memberId.lastName.localeCompare(b.memberId.lastName)); - res.json(members); - } catch (error) { - res.status(500).json({ message: error.message }); - } -}; - -// Mettre à jour une saison +// Modifier saison export const updateSeason = async (req, res) => { try { - const season = await Season.findByIdAndUpdate(req.params.id, req.body, { - new: true, - }); + const season = await Season.findByIdAndUpdate(req.params.id, req.body, { new: true }); if (!season) return res.status(404).json({ message: 'Season not found' }); - res.json({ message: 'Season updated', season }); + res.json(season); } catch (err) { res.status(400).json({ message: err.message }); } }; -// Supprimer une saison +// Supprimer saison export const deleteSeason = async (req, res) => { try { const season = await Season.findByIdAndDelete(req.params.id); diff --git a/saintBarthVolleyApp/backend/src/controllers/standingsController.js b/saintBarthVolleyApp/backend/src/controllers/standingsController.js index 33eea37..0932877 100644 --- a/saintBarthVolleyApp/backend/src/controllers/standingsController.js +++ b/saintBarthVolleyApp/backend/src/controllers/standingsController.js @@ -1,15 +1,15 @@ import Standing from '../models/Standing.js'; -// Liste des classements (par championnat) +// Liste des classements (par équipe) export const getStandings = async (req, res) => { try { const filter = {}; - if (req.query.championshipId) { - filter.championshipId = req.query.championshipId; + if (req.query.teamId) { + filter.teamId = req.query.teamId; } - const standings = await Standing.find(filter).populate('championshipId').sort({ rank: 1 }); + const standings = await Standing.find(filter).populate('teamId').sort({ rank: 1 }); res.json(standings); } catch (error) { @@ -20,7 +20,7 @@ export const getStandings = async (req, res) => { // Classement par ID export const getStandingById = async (req, res) => { try { - const standing = await Standing.findById(req.params.id).populate('championshipId'); + const standing = await Standing.findById(req.params.id).populate('teamId'); if (!standing) { return res.status(404).json({ message: 'Standing not found' }); @@ -32,7 +32,7 @@ export const getStandingById = async (req, res) => { } }; -// Création (import FFVB typiquement) +// Création export const createStanding = async (req, res) => { try { const standing = await Standing.create(req.body); diff --git a/saintBarthVolleyApp/backend/src/controllers/teamsController.js b/saintBarthVolleyApp/backend/src/controllers/teamsController.js index 3def823..8376f1b 100644 --- a/saintBarthVolleyApp/backend/src/controllers/teamsController.js +++ b/saintBarthVolleyApp/backend/src/controllers/teamsController.js @@ -1,104 +1,90 @@ -import Team from '../models/Team.js'; -import MemberSeason from '../models/MemberSeason.js'; - -export const getTeams = async (req, res) => { - try { - const teams = await Team.find({ isArchived: false }).populate('seasonId'); - - res.json(teams); - } catch (error) { - res.status(500).json({ message: error.message }); - } -}; +// src/controllers/teamsController.js +import Team from '../models/Team.js'; // ton modèle Mongoose pour Team +// 🔹 Récupérer une équipe par son ID export const getTeamById = async (req, res) => { try { - const team = await Team.findById(req.params.id).populate('seasonId'); - - if (!team) { - return res.status(404).json({ message: 'Team not found' }); - } - + const team = await Team.findById(req.params.id); + if (!team) return res.status(404).json({ message: 'Équipe non trouvée' }); res.json(team); - } catch (error) { - res.status(500).json({ message: error.message }); + } catch (err) { + console.error(err); + res.status(500).json({ message: 'Erreur serveur' }); } }; -export const createTeam = async (req, res) => { +// 🔹 GET /api/teams?seasonId=xxx OR /api/seasons/:seasonId/teams +export const getTeamsBySeason = async (req, res) => { try { - const team = await Team.create(req.body); - res.status(201).json(team); - } catch (error) { - res.status(400).json({ message: error.message }); + const seasonId = req.params.seasonId ?? req.query.seasonId; + if (!seasonId) return res.status(400).json({ message: 'seasonId requis' }); + + const teams = await Team.find({ seasonId }); + res.json(teams); + } catch (err) { + console.error(err); + res.status(500).json({ message: 'Erreur serveur' }); } }; -export const updateTeam = async (req, res) => { +// 🔹 POST /api/teams +export const createTeam = async (req, res) => { try { - const team = await Team.findByIdAndUpdate(req.params.id, req.body, { - new: true, - runValidators: true, - }); + const { name, category, gender, level, seasonId } = req.body; - if (!team) { - return res.status(404).json({ message: 'Team not found' }); + if (!name || !category || !gender || !seasonId) { + return res.status(400).json({ message: 'Champs obligatoires manquants' }); } - res.json(team); - } catch (error) { - res.status(400).json({ message: error.message }); + const newTeam = new Team({ name, category, gender, level, seasonId }); + await newTeam.save(); + res.status(201).json(newTeam); + } catch (err) { + console.error(err); + res.status(500).json({ message: 'Erreur serveur' }); } }; -export const archiveTeam = async (req, res) => { +export const createTeamForSeason = async (req, res) => { try { - const team = await Team.findByIdAndUpdate(req.params.id, { isArchived: true }, { new: true }); + const { id: seasonId } = req.params; + const { name, category, gender, level } = req.body; - if (!team) { - return res.status(404).json({ message: 'Team not found' }); + if (!name || !category || !gender) { + return res.status(400).json({ message: 'Champs obligatoires manquants' }); } - res.json({ message: 'Team archived', team }); - } catch (error) { - res.status(500).json({ message: error.message }); + const newTeam = new Team({ name, category, gender, level, seasonId }); + await newTeam.save(); + res.status(201).json(newTeam); + } catch (err) { + console.error(err); + res.status(500).json({ message: 'Erreur serveur' }); } }; -export const deleteTeam = async (req, res) => { +// 🔹 PUT /api/teams/:id +export const updateTeam = async (req, res) => { try { - const team = await Team.findByIdAndDelete(req.params.id); - - if (!team) { - return res.status(404).json({ message: 'Team not found' }); - } - - res.json({ message: 'Team deleted' }); - } catch (error) { - res.status(500).json({ message: error.message }); + const { id } = req.params; + const updated = await Team.findByIdAndUpdate(id, req.body, { new: true }); + if (!updated) return res.status(404).json({ message: 'Équipe introuvable' }); + res.json(updated); + } catch (err) { + console.error(err); + res.status(500).json({ message: 'Erreur serveur' }); } }; -export const getTeamMembers = async (req, res) => { +// 🔹 DELETE /api/teams/:id +export const deleteTeam = async (req, res) => { try { - const teamId = req.params.id; - - const members = await MemberSeason.find({ - teams: teamId, - isActive: true, - }) - .populate({ - path: 'memberId', - select: 'firstName lastName photo', - }) - .populate({ - path: 'seasonId', - select: 'name', - }); - - members.sort((a, b) => a.memberId.lastName.localeCompare(b.memberId.lastName)); - res.json(members); - } catch (error) { - res.status(500).json({ message: error.message }); + const { id } = req.params; + const deleted = await Team.findByIdAndDelete(id); + if (!deleted) return res.status(404).json({ message: 'Équipe introuvable' }); + res.json({ message: 'Équipe supprimée' }); + } catch (err) { + console.error(err); + res.status(500).json({ message: 'Erreur serveur' }); } }; diff --git a/saintBarthVolleyApp/backend/src/lib/sendEmail.js b/saintBarthVolleyApp/backend/src/lib/sendEmail.js index 54f567b..3d9299a 100644 --- a/saintBarthVolleyApp/backend/src/lib/sendEmail.js +++ b/saintBarthVolleyApp/backend/src/lib/sendEmail.js @@ -5,42 +5,44 @@ let transporter; async function getTransporter() { if (transporter) return transporter; - const testAccount = await nodemailer.createTestAccount(); + if (process.env.SMTP_HOST && process.env.SMTP_USER && process.env.SMTP_PASS) { + transporter = nodemailer.createTransport({ + host: process.env.SMTP_HOST, + port: parseInt(process.env.SMTP_PORT || '587'), + secure: process.env.SMTP_SECURE === 'true', + auth: { + user: process.env.SMTP_USER, + pass: process.env.SMTP_PASS, + }, + }); + console.log(`📧 SMTP configuré via .env (${process.env.SMTP_HOST})`); + return transporter; + } + // Fallback Ethereal si pas de config + const testAccount = await nodemailer.createTestAccount(); transporter = nodemailer.createTransport({ host: testAccount.smtp.host, port: testAccount.smtp.port, secure: testAccount.smtp.secure, - auth: { - user: testAccount.user, - pass: testAccount.pass, - }, + auth: { user: testAccount.user, pass: testAccount.pass }, }); - - console.log('🧪 Ethereal account created:'); - console.log('USER:', testAccount.user); - console.log('PASS:', testAccount.pass); - + console.log('🧪 Ethereal fallback:', testAccount.user); return transporter; } export default async function sendEmail({ to, subject, html }) { try { - const transporter = await getTransporter(); + const t = await getTransporter(); + const from = process.env.SMTP_FROM ?? '"Saint-Barth Volley" '; - const info = await transporter.sendMail({ - from: '"Test App" ', - to, - subject, - html, - }); + const info = await t.sendMail({ from, to, subject, html }); console.log('📧 Email envoyé:', info.messageId); - - const previewUrl = nodemailer.getTestMessageUrl(info); - console.log('🔗 Preview URL:', previewUrl); + const preview = nodemailer.getTestMessageUrl(info); + if (preview) console.log('🔗 Preview:', preview); } catch (err) { - console.error('❌ Erreur envoi email:', err); + console.error('❌ Erreur envoi email:', err.message); throw err; } } diff --git a/saintBarthVolleyApp/backend/src/models/Match.js b/saintBarthVolleyApp/backend/src/models/Match.js index 3067cb5..7ac7ef0 100644 --- a/saintBarthVolleyApp/backend/src/models/Match.js +++ b/saintBarthVolleyApp/backend/src/models/Match.js @@ -23,9 +23,9 @@ const setDetailSchema = new mongoose.Schema( const matchSchema = new mongoose.Schema( { - championshipId: { + teamId: { type: mongoose.Schema.Types.ObjectId, - ref: 'Championship', // <-- utilisation du modèle Championship existant + ref: 'Team', required: true, }, opponentName: { diff --git a/saintBarthVolleyApp/backend/src/models/Member.js b/saintBarthVolleyApp/backend/src/models/Member.js index 2e2ea11..a9d445b 100644 --- a/saintBarthVolleyApp/backend/src/models/Member.js +++ b/saintBarthVolleyApp/backend/src/models/Member.js @@ -1,42 +1,33 @@ import mongoose from 'mongoose'; -const memberSchema = new mongoose.Schema( - { - firstName: { - type: String, - required: true, - trim: true, - }, - lastName: { - type: String, - required: true, - trim: true, - }, - - birthDate: Date, - - photo: { +const teamRoleSchema = new mongoose.Schema({ + teamId: { type: mongoose.Schema.Types.ObjectId, ref: 'Team' }, // optionnel : null = bénévole sans équipe + seasonId: { type: mongoose.Schema.Types.ObjectId, ref: 'Season', required: true }, + roles: [ + { type: String, - trim: true, + enum: ['player', 'coach', 'staff', 'referee', 'volunteer', 'owner'], + default: 'player', }, + ], + isCaptain: { type: Boolean, default: false }, + position: { type: String, trim: true }, + photo: { type: String, default: '' }, // photo propre à cette affectation (équipe ou saison) +}); // _id activé → chaque rôle a son propre ObjectId - bio: { - type: String, - trim: true, - }, - - // 🔗 lien futur avec user - userId: { - type: mongoose.Schema.Types.ObjectId, - ref: 'User', - }, - - isActive: { - type: Boolean, - default: true, - }, +const memberSchema = new mongoose.Schema( + { + firstName: { type: String, required: true, trim: true }, + lastName: { type: String, required: true, trim: true }, + birthDate: { type: Date }, + height: Number, + weight: Number, + isActive: { type: Boolean, default: true }, + bio: { type: String }, + teamRoles: [teamRoleSchema], }, { timestamps: true }, ); -export default mongoose.model('Member', memberSchema); +const Member = mongoose.model('Member', memberSchema); +export default Member; diff --git a/saintBarthVolleyApp/backend/src/models/MemberSeason.js b/saintBarthVolleyApp/backend/src/models/MemberSeason.js deleted file mode 100644 index 6a8dffa..0000000 --- a/saintBarthVolleyApp/backend/src/models/MemberSeason.js +++ /dev/null @@ -1,45 +0,0 @@ -import mongoose from 'mongoose'; - -const memberSeasonSchema = new mongoose.Schema( - { - memberId: { - type: mongoose.Schema.Types.ObjectId, - ref: 'Member', - required: true, - }, - - seasonId: { - type: mongoose.Schema.Types.ObjectId, - ref: 'Season', - required: true, - }, - - roles: [ - { - type: String, - enum: ['player', 'coach', 'staff', 'referee', 'volunteer', 'owner'], - }, - ], - - teams: [ - { - type: mongoose.Schema.Types.ObjectId, - ref: 'Team', - }, - ], - - position: String, - height: Number, - weight: Number, - - isActive: { - type: Boolean, - default: true, - }, - }, - { timestamps: true }, -); - -memberSeasonSchema.index({ memberId: 1, seasonId: 1 }, { unique: true }); - -export default mongoose.model('MemberSeason', memberSeasonSchema); diff --git a/saintBarthVolleyApp/backend/src/models/Partner.js b/saintBarthVolleyApp/backend/src/models/Partner.js index bbdcca2..eaf94af 100644 --- a/saintBarthVolleyApp/backend/src/models/Partner.js +++ b/saintBarthVolleyApp/backend/src/models/Partner.js @@ -13,8 +13,8 @@ const partnerSchema = new mongoose.Schema( trim: true, }, logo: { - type: String, // URL (Nextcloud ou externe) - required: true, + type: String, + default: '', trim: true, }, website: { diff --git a/saintBarthVolleyApp/backend/src/models/Season.js b/saintBarthVolleyApp/backend/src/models/Season.js index d0a594f..b488355 100644 --- a/saintBarthVolleyApp/backend/src/models/Season.js +++ b/saintBarthVolleyApp/backend/src/models/Season.js @@ -2,24 +2,10 @@ import mongoose from 'mongoose'; const seasonSchema = new mongoose.Schema( { - name: { - type: String, - required: true, - trim: true, - }, - startDate: { - type: Date, - required: true, - }, - endDate: { - type: Date, - required: true, - }, - status: { - type: String, - enum: ['active', 'archived', 'future'], - default: 'future', - }, + name: { type: String, required: true, trim: true }, + startDate: { type: Date, required: true }, + endDate: { type: Date, required: true }, + status: { type: String, enum: ['active', 'archived', 'future'], default: 'future' }, }, { timestamps: true }, ); diff --git a/saintBarthVolleyApp/backend/src/models/Standing.js b/saintBarthVolleyApp/backend/src/models/Standing.js index 6128003..891577e 100644 --- a/saintBarthVolleyApp/backend/src/models/Standing.js +++ b/saintBarthVolleyApp/backend/src/models/Standing.js @@ -2,9 +2,9 @@ import mongoose from 'mongoose'; const standingSchema = new mongoose.Schema( { - championshipId: { + teamId: { type: mongoose.Schema.Types.ObjectId, - ref: 'Championship', + ref: 'Team', required: true, }, teamName: { diff --git a/saintBarthVolleyApp/backend/src/models/Team.js b/saintBarthVolleyApp/backend/src/models/Team.js index 72c40b8..99e0d72 100644 --- a/saintBarthVolleyApp/backend/src/models/Team.js +++ b/saintBarthVolleyApp/backend/src/models/Team.js @@ -1,4 +1,3 @@ -// models/Team.js import mongoose from 'mongoose'; const trainingScheduleSchema = new mongoose.Schema( @@ -8,62 +7,30 @@ const trainingScheduleSchema = new mongoose.Schema( enum: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'], required: true, }, - startTime: { - type: String, // HH:mm - required: true, - }, - endTime: { - type: String, // HH:mm - required: true, - }, - location: { - type: String, - required: true, - trim: true, - }, + startTime: { type: String, required: true }, // HH:mm + endTime: { type: String, required: true }, // HH:mm + location: { type: String, required: true, trim: true }, }, - { _id: false }, // pas besoin d'ID pour chaque horaire + { _id: false }, ); const teamSchema = new mongoose.Schema( { - name: { - type: String, - required: true, - trim: true, - }, - category: { - type: String, - enum: ['Young', 'Senior', 'Veteran'], - required: true, - }, - gender: { - type: String, - enum: ['Male', 'Female', 'Mixed'], - required: true, - }, - level: { - type: String, - trim: true, - }, - seasonId: { - type: mongoose.Schema.Types.ObjectId, - ref: 'Season', - required: true, - }, - // plusieurs entraînements par semaine + name: { type: String, required: true, trim: true }, + category: { type: String, enum: ['Young', 'Senior', 'Veteran'], required: true }, + gender: { type: String, enum: ['Male', 'Female', 'Mixed'], required: true }, + level: { type: String, trim: true }, + seasonId: { type: mongoose.Schema.Types.ObjectId, ref: 'Season', required: true }, trainingSchedule: [trainingScheduleSchema], - // photo de l'équipe - photo: { - type: String, // URL + photo: { type: String, trim: true }, + federationUrl: { + type: String, trim: true, + default: '', }, }, - { - timestamps: true, - }, + { timestamps: true }, ); const Team = mongoose.model('Team', teamSchema); - export default Team; diff --git a/saintBarthVolleyApp/backend/src/routes/admin.js b/saintBarthVolleyApp/backend/src/routes/admin.js deleted file mode 100644 index f29a810..0000000 --- a/saintBarthVolleyApp/backend/src/routes/admin.js +++ /dev/null @@ -1,123 +0,0 @@ -import express from 'express'; -import User from '../models/User.js'; -import { authMiddleware, requireRole } from '../middlewares/authMiddleware.js'; - -const router = express.Router(); - -/** - * GET /admin/users - * Liste tous les utilisateurs - */ -router.get('/users', authMiddleware, requireRole('admin'), async (req, res) => { - try { - const users = await User.find().select('-passwordHash').sort({ createdAt: -1 }); - res.json(users); - } catch (error) { - console.error('GET USERS ERROR:', error); - res.status(500).json({ message: 'Erreur serveur' }); - } -}); - -/** - * PATCH /admin/users/:id/activate - * Activer / désactiver un compte utilisateur - */ -router.patch('/users/:id/activate', authMiddleware, requireRole('admin'), async (req, res) => { - try { - const { isActive } = req.body; - - const user = await User.findById(req.params.id); - if (!user) { - return res.status(404).json({ message: 'Utilisateur introuvable' }); - } - - user.isActive = isActive; - await user.save(); - - res.json({ - message: `Compte ${isActive ? 'activé' : 'désactivé'}`, - }); - } catch (error) { - console.error('ACTIVATE USER ERROR:', error); - res.status(500).json({ message: 'Erreur serveur' }); - } -}); - -/** - * PATCH /admin/users/:id/role - * Modifier le rôle d’un utilisateur - */ -router.patch('/users/:id/role', authMiddleware, requireRole('admin'), async (req, res) => { - try { - const { role } = req.body; - const allowedRoles = ['admin', 'editor', 'user']; - - if (!allowedRoles.includes(role)) { - return res.status(400).json({ message: 'Rôle invalide' }); - } - - const user = await User.findById(req.params.id); - if (!user) { - return res.status(404).json({ message: 'Utilisateur introuvable' }); - } - - user.role = role; - await user.save(); - - res.json({ - message: 'Rôle mis à jour', - }); - } catch (error) { - console.error('UPDATE ROLE ERROR:', error); - res.status(500).json({ message: 'Erreur serveur' }); - } -}); - -/** - * PATCH /admin/users/:id - * Mettre à jour un utilisateur (nom, prénom, email, rôle, actif) - */ -router.patch('/users/:id', authMiddleware, async (req, res) => { - try { - const { firstName, lastName, email, role, isActive } = req.body; - - const allowedRoles = ['admin', 'editor', 'user', 'other']; - - // Vérifie le rôle si fourni - if (role && !allowedRoles.includes(role)) { - return res.status(400).json({ message: 'Rôle invalide' }); - } - - const user = await User.findById(req.params.id); - if (!user) { - return res.status(404).json({ message: 'Utilisateur introuvable' }); - } - - // Mise à jour conditionnelle - if (firstName !== undefined) user.firstName = firstName; - if (lastName !== undefined) user.lastName = lastName; - if (email !== undefined) user.email = email; - if (role !== undefined) user.role = role; - if (isActive !== undefined) user.isActive = isActive; - - await user.save(); - res.json(user); - } catch (error) { - console.error('UPDATE USER ERROR:', error); - res.status(500).json({ message: 'Erreur serveur' }); - } -}); - -// DELETE /admin/users/:id -router.delete('/users/:id', authMiddleware, requireRole('admin'), async (req, res) => { - try { - const user = await User.findByIdAndDelete(req.params.id); - if (!user) return res.status(404).json({ message: 'Utilisateur introuvable' }); - res.json({ message: 'Utilisateur supprimé' }); - } catch (err) { - console.error('DELETE USER ERROR:', err); - res.status(500).json({ message: 'Erreur serveur' }); - } -}); - -export default router; diff --git a/saintBarthVolleyApp/backend/src/routes/api/admin.js b/saintBarthVolleyApp/backend/src/routes/api/admin.js new file mode 100644 index 0000000..80695be --- /dev/null +++ b/saintBarthVolleyApp/backend/src/routes/api/admin.js @@ -0,0 +1,127 @@ +import express from 'express'; +import crypto from 'crypto'; +import User from '../../models/User.js'; +import sendEmail from '../../lib/sendEmail.js'; +import { authMiddleware, requireRole } from '../../middlewares/authMiddleware.js'; + +const router = express.Router(); +const adminOnly = [authMiddleware, requireRole('admin')]; + +// ─── Liste ─────────────────────────────────────────────────────────────────── + +router.get('/users', ...adminOnly, async (req, res) => { + try { + const users = await User.find().select('-passwordHash').sort({ createdAt: -1 }); + res.json(users); + } catch (err) { + res.status(500).json({ message: 'Erreur serveur' }); + } +}); + +// ─── Créer un utilisateur (admin bypass — directement vérifié) ──────────────── + +router.post('/users', ...adminOnly, async (req, res) => { + try { + const { firstName, lastName, email, password, role, isActive } = req.body; + if (!firstName || !lastName || !email || !password) { + return res.status(400).json({ message: 'Champs obligatoires manquants' }); + } + const existing = await User.findOne({ email }); + if (existing) return res.status(400).json({ message: 'Email déjà utilisé' }); + + const user = new User({ + firstName, + lastName, + email, + role: role ?? 'user', + isActive: isActive ?? true, + isVerified: true, // l'admin crée directement un compte actif + }); + await user.setPassword(password); + await user.save(); + + const { passwordHash: _, ...safe } = user.toObject(); + res.status(201).json(safe); + } catch (err) { + console.error('CREATE USER ERROR:', err); + res.status(500).json({ message: 'Erreur serveur' }); + } +}); + +// ─── Modifier un utilisateur ────────────────────────────────────────────────── + +router.patch('/users/:id', ...adminOnly, async (req, res) => { + try { + const { firstName, lastName, email, role, isActive, isVerified } = req.body; + const allowedRoles = ['admin', 'editor', 'user']; + + if (role && !allowedRoles.includes(role)) { + return res.status(400).json({ message: 'Rôle invalide' }); + } + + const user = await User.findById(req.params.id); + if (!user) return res.status(404).json({ message: 'Utilisateur introuvable' }); + + if (firstName !== undefined) user.firstName = firstName; + if (lastName !== undefined) user.lastName = lastName; + if (email !== undefined) user.email = email; + if (role !== undefined) user.role = role; + if (isActive !== undefined) user.isActive = isActive; + if (isVerified !== undefined) { + user.isVerified = isVerified; + if (isVerified) { + user.verificationToken = null; + user.verificationTokenExpires = null; + } + } + + await user.save(); + const { passwordHash: _, ...safe } = user.toObject(); + res.json(safe); + } catch (err) { + console.error('UPDATE USER ERROR:', err); + res.status(500).json({ message: 'Erreur serveur' }); + } +}); + +// ─── Renvoyer l'email de vérification ──────────────────────────────────────── + +router.post('/users/:id/resend-verification', ...adminOnly, async (req, res) => { + try { + const user = await User.findById(req.params.id); + if (!user) return res.status(404).json({ message: 'Utilisateur introuvable' }); + if (user.isVerified) return res.status(400).json({ message: 'Compte déjà vérifié' }); + + const token = crypto.randomBytes(32).toString('hex'); + user.verificationToken = token; + user.verificationTokenExpires = Date.now() + 24 * 60 * 60 * 1000; + await user.save(); + + await sendEmail({ + to: user.email, + subject: 'Activez votre compte — Saint-Barth Volley', + html: `

Bonjour ${user.firstName},

+

Cliquez sur ce lien pour activer votre compte (valable 24h) :

+ Activer mon compte`, + }); + + res.json({ message: 'Email de vérification renvoyé' }); + } catch (err) { + console.error('RESEND VERIFICATION ERROR:', err); + res.status(500).json({ message: "Erreur lors de l'envoi" }); + } +}); + +// ─── Supprimer ──────────────────────────────────────────────────────────────── + +router.delete('/users/:id', ...adminOnly, async (req, res) => { + try { + const user = await User.findByIdAndDelete(req.params.id); + if (!user) return res.status(404).json({ message: 'Utilisateur introuvable' }); + res.json({ message: 'Utilisateur supprimé' }); + } catch (err) { + res.status(500).json({ message: 'Erreur serveur' }); + } +}); + +export default router; diff --git a/saintBarthVolleyApp/backend/src/routes/auth.js b/saintBarthVolleyApp/backend/src/routes/api/auth.js similarity index 82% rename from saintBarthVolleyApp/backend/src/routes/auth.js rename to saintBarthVolleyApp/backend/src/routes/api/auth.js index 533ad49..a755026 100644 --- a/saintBarthVolleyApp/backend/src/routes/auth.js +++ b/saintBarthVolleyApp/backend/src/routes/api/auth.js @@ -1,7 +1,14 @@ import express from 'express'; -import { register, login, logout, verifyEmail, forgotPassword, resetPassword } from '../controllers/authController.js'; - -import { authMiddleware } from '../middlewares/authMiddleware.js'; +import { + register, + login, + logout, + verifyEmail, + forgotPassword, + resetPassword, +} from '../../controllers/authController.js'; + +import { authMiddleware } from '../../middlewares/authMiddleware.js'; const router = express.Router(); diff --git a/saintBarthVolleyApp/backend/src/routes/api/membersWithSeason.js b/saintBarthVolleyApp/backend/src/routes/api/membersWithSeason.js new file mode 100644 index 0000000..177c793 --- /dev/null +++ b/saintBarthVolleyApp/backend/src/routes/api/membersWithSeason.js @@ -0,0 +1,107 @@ +import express from 'express'; +import Member from '../../models/Member.js'; +import { authMiddleware, requireRole } from '../../middlewares/authMiddleware.js'; + +const router = express.Router(); + +router.get('/', async (req, res) => { + try { + const members = await Member.aggregate([ + // 🔗 join MemberSeason + { + $lookup: { + from: 'memberseasons', + localField: '_id', + foreignField: 'memberId', + as: 'seasons', + }, + }, + + // 🔹 unwind seasons + { + $unwind: { + path: '$seasons', + preserveNullAndEmptyArrays: true, + }, + }, + + // 🔗 join Season (IMPORTANT pour tri réel) + { + $lookup: { + from: 'seasons', + localField: 'seasons.seasonId', + foreignField: '_id', + as: 'seasonData', + }, + }, + + { + $unwind: { + path: '$seasonData', + preserveNullAndEmptyArrays: true, + }, + }, + + // 🔥 TRI PAR VRAIE SAISON (et pas createdAt) + { + $sort: { + 'seasonData.startDate': -1, + }, + }, + + // 🔹 garder la dernière saison + { + $group: { + _id: '$_id', + member: { $first: '$$ROOT' }, + latestSeason: { $first: '$seasons' }, + seasonData: { $first: '$seasonData' }, + }, + }, + + // 🔗 populate teams + { + $lookup: { + from: 'teams', + localField: 'latestSeason.teams', + foreignField: '_id', + as: 'teamsData', + }, + }, + + // 🎯 FORMAT FINAL + { + $project: { + _id: '$member._id', + firstName: '$member.firstName', + lastName: '$member.lastName', + birthDate: '$member.birthDate', + bio: '$member.bio', + photo: '$member.photo', + isActive: '$member.isActive', + createdAt: '$member.createdAt', + + latestSeason: { + _id: '$latestSeason._id', + seasonId: '$latestSeason.seasonId', + seasonName: '$seasonData.name', + + roles: '$latestSeason.roles', + position: '$latestSeason.position', + height: '$latestSeason.height', + weight: '$latestSeason.weight', + + teams: '$teamsData', + }, + }, + }, + ]); + + res.json(members); + } catch (err) { + console.error('members-with-season error:', err); + res.status(500).json({ error: err.message }); + } +}); + +export default router; diff --git a/saintBarthVolleyApp/backend/src/routes/api/scraping.js b/saintBarthVolleyApp/backend/src/routes/api/scraping.js new file mode 100644 index 0000000..b33a2de --- /dev/null +++ b/saintBarthVolleyApp/backend/src/routes/api/scraping.js @@ -0,0 +1,56 @@ +// src/routes/api/scraping.js +import express from 'express'; +import { runScraping } from '../../services/scrapingService.js'; +import Match from '../../models/Match.js'; + +const router = express.Router(); + +// POST /api/scraping/run +// Déclenche le scraping FFVB et retourne un résumé +router.post('/run', async (req, res) => { + const logs = []; + const onLog = (msg) => { + logs.push(msg); + console.log(msg); + }; + + try { + // Purger les matches parasites déjà en base (divisions et journées exemptées) + const divisionPattern = + /^(nationale|régionale?|régional|poule|division|phase|honneur|excellence|fédérale|pro\s?[ab]?)\s*\d*$/i; + const byePattern = /^(x+|exempt[e]?|bye|-+)$/i; + const allMatches = await Match.find({}, 'opponentName'); + const parasiteIds = allMatches + .filter((m) => { + const name = m.opponentName?.trim() ?? ''; + return divisionPattern.test(name) || byePattern.test(name); + }) + .map((m) => m._id); + if (parasiteIds.length > 0) { + await Match.deleteMany({ _id: { $in: parasiteIds } }); + onLog(`🗑️ ${parasiteIds.length} match(es) parasite(s) supprimé(s) de la base`); + } + + const results = await runScraping(onLog); + + const totalCreated = results.reduce((acc, r) => acc + (r.matchesCreated || 0), 0); + const totalUpdated = results.reduce((acc, r) => acc + (r.matchesUpdated || 0), 0); + const totalStandings = results.reduce((acc, r) => acc + (r.standings || 0), 0); + const errors = results.filter((r) => r.error).map((r) => r.error); + + res.json({ + success: true, + championships: results.length, + matchesCreated: totalCreated, + matchesUpdated: totalUpdated, + standings: totalStandings, + errors, + logs, + }); + } catch (err) { + console.error('Erreur scraping:', err); + res.status(500).json({ success: false, message: err.message, logs }); + } +}); + +export default router; diff --git a/saintBarthVolleyApp/backend/src/routes/api/stats.js b/saintBarthVolleyApp/backend/src/routes/api/stats.js new file mode 100644 index 0000000..74effa6 --- /dev/null +++ b/saintBarthVolleyApp/backend/src/routes/api/stats.js @@ -0,0 +1,60 @@ +// src/routes/api/stats.js +import express from 'express'; +import { authMiddleware } from '../../middlewares/authMiddleware.js'; +import User from '../../models/User.js'; +import Member from '../../models/Member.js'; +import Team from '../../models/Team.js'; +import Match from '../../models/Match.js'; +import Season from '../../models/Season.js'; +import News from '../../models/News.js'; +import Partner from '../../models/Partner.js'; + +const router = express.Router(); + +// GET /api/stats — chiffres clés pour le dashboard admin +router.get('/', authMiddleware, async (req, res) => { + try { + const now = new Date(); + + const [ + totalUsers, + totalMembers, + activeMembers, + activeSeason, + totalMatches, + upcomingMatches, + publishedNews, + activePartners, + ] = await Promise.all([ + User.countDocuments(), + Member.countDocuments(), + Member.countDocuments({ isActive: true }), + Season.findOne({ status: 'active' }), + Match.countDocuments(), + Match.countDocuments({ status: 'scheduled', date: { $gte: now } }), + News.countDocuments({ isPublished: true }), + Partner.countDocuments({ isActive: true }), + ]); + + // Équipes de la saison active (ou total) + const teamsFilter = activeSeason ? { seasonId: activeSeason._id } : {}; + const totalTeams = await Team.countDocuments(teamsFilter); + + res.json({ + totalUsers, + totalMembers, + activeMembers, + totalTeams, + activeSeason: activeSeason ? activeSeason.name : null, + totalMatches, + upcomingMatches, + publishedNews, + activePartners, + }); + } catch (err) { + console.error('Stats error:', err); + res.status(500).json({ message: err.message }); + } +}); + +export default router; diff --git a/saintBarthVolleyApp/backend/src/routes/upload.js b/saintBarthVolleyApp/backend/src/routes/api/upload.js similarity index 100% rename from saintBarthVolleyApp/backend/src/routes/upload.js rename to saintBarthVolleyApp/backend/src/routes/api/upload.js diff --git a/saintBarthVolleyApp/backend/src/routes/memberSeasons.js b/saintBarthVolleyApp/backend/src/routes/memberSeasons.js deleted file mode 100644 index 4e40db7..0000000 --- a/saintBarthVolleyApp/backend/src/routes/memberSeasons.js +++ /dev/null @@ -1,22 +0,0 @@ -import express from 'express'; -import { - getAllMemberSeasons, - getMemberSeasonById, - createMemberSeason, - updateMemberSeason, - deleteMemberSeason, -} from '../controllers/memberSeasonController.js'; -import { authMiddleware, requireRole } from '../middlewares/authMiddleware.js'; - -const router = express.Router(); - -// 🔹 Toutes les routes nécessitent admin -router.use(authMiddleware, requireRole('admin')); - -router.get('/', getAllMemberSeasons); -router.get('/:id', getMemberSeasonById); -router.post('/', createMemberSeason); -router.put('/:id', updateMemberSeason); -router.delete('/:id', deleteMemberSeason); - -export default router; diff --git a/saintBarthVolleyApp/backend/src/routes/members.js b/saintBarthVolleyApp/backend/src/routes/members.js index 500a2df..60704f0 100644 --- a/saintBarthVolleyApp/backend/src/routes/members.js +++ b/saintBarthVolleyApp/backend/src/routes/members.js @@ -1,20 +1,29 @@ import express from 'express'; import { getMembers, - getMemberById, createMember, + getMemberById, updateMember, - deactivateMember, deleteMember, + getMemberRoles, + addMemberRole, + updateMemberRole, + removeMemberRole, } from '../controllers/membersController.js'; const router = express.Router(); +// CRUD membres router.get('/', getMembers); router.get('/:id', getMemberById); router.post('/', createMember); router.put('/:id', updateMember); -router.patch('/:id/deactivate', deactivateMember); router.delete('/:id', deleteMember); +// Gestion des rôles (identifiés par leur _id de subdoc) +router.get('/:memberId/roles', getMemberRoles); +router.post('/:memberId/roles', addMemberRole); +router.put('/:memberId/roles/:roleId', updateMemberRole); +router.delete('/:memberId/roles/:roleId', removeMemberRole); + export default router; diff --git a/saintBarthVolleyApp/backend/src/routes/news.js b/saintBarthVolleyApp/backend/src/routes/news.js index 432637d..e1b3044 100644 --- a/saintBarthVolleyApp/backend/src/routes/news.js +++ b/saintBarthVolleyApp/backend/src/routes/news.js @@ -1,13 +1,13 @@ import express from 'express'; import { getNews, getNewsById, createNews, updateNews, deleteNews } from '../controllers/newsController.js'; +import { authMiddleware } from '../middlewares/authMiddleware.js'; const router = express.Router(); -// CRUD news router.get('/', getNews); router.get('/:id', getNewsById); -router.post('/', createNews); -router.put('/:id', updateNews); -router.delete('/:id', deleteNews); +router.post('/', authMiddleware, createNews); +router.put('/:id', authMiddleware, updateNews); +router.delete('/:id', authMiddleware, deleteNews); export default router; diff --git a/saintBarthVolleyApp/backend/src/routes/seasons.js b/saintBarthVolleyApp/backend/src/routes/seasons.js index 1aff408..43d1a87 100644 --- a/saintBarthVolleyApp/backend/src/routes/seasons.js +++ b/saintBarthVolleyApp/backend/src/routes/seasons.js @@ -1,3 +1,4 @@ +// src/routes/seasons.js import express from 'express'; import { createSeason, @@ -5,16 +6,19 @@ import { getSeasonById, updateSeason, deleteSeason, - getSeasonMembers, } from '../controllers/seasonsController.js'; +import { getTeamsBySeason, createTeamForSeason } from '../controllers/teamsController.js'; const router = express.Router(); -// CRUD seasons +// 🔹 CRUD saisons router.get('/', getSeasons); -router.get('/:id/members', getSeasonMembers); router.get('/:id', getSeasonById); +// 🔹 Liste des équipes d'une saison (compatible frontend actuel) +router.get('/:seasonId/teams', getTeamsBySeason); router.post('/', createSeason); +// Créer une équipe pour cette saison +router.post('/:id/teams', createTeamForSeason); router.put('/:id', updateSeason); router.delete('/:id', deleteSeason); diff --git a/saintBarthVolleyApp/backend/src/routes/teams.js b/saintBarthVolleyApp/backend/src/routes/teams.js index e42f21f..7610f63 100644 --- a/saintBarthVolleyApp/backend/src/routes/teams.js +++ b/saintBarthVolleyApp/backend/src/routes/teams.js @@ -1,22 +1,53 @@ +// src/routes/teams.js import express from 'express'; -import { - getTeams, - getTeamById, - createTeam, - updateTeam, - archiveTeam, - deleteTeam, - getTeamMembers, -} from '../controllers/teamsController.js'; +import Team from '../models/Team.js'; +import { getTeamById, getTeamsBySeason, createTeam, updateTeam, deleteTeam } from '../controllers/teamsController.js'; const router = express.Router(); -router.get('/', getTeams); -router.get('/:id/members', getTeamMembers); +// 🔹 Récupérer toutes les équipes pour une saison (query param ou saison spécifique) +router.get('/', async (req, res) => { + try { + const { seasonId } = req.query; + if (!seasonId) return res.status(400).json({ message: 'seasonId requis' }); + const teams = await Team.find({ seasonId }); + res.json(teams); + } catch (err) { + console.error(err); + res.status(500).json({ message: 'Erreur serveur' }); + } +}); + +// 🔹 Récupérer une équipe par son ID router.get('/:id', getTeamById); + +// 🔹 Créer une équipe "indépendante" router.post('/', createTeam); + +// 🔹 Créer une équipe pour une saison spécifique +router.post('/seasons/:seasonId/teams', async (req, res) => { + try { + const { seasonId } = req.params; + const { name, category, gender, level } = req.body; + + if (!name || !category || !gender) { + return res.status(400).json({ message: 'Champs obligatoires manquants' }); + } + + const newTeam = new Team({ name, category, gender, level, seasonId }); + await newTeam.save(); + + res.status(201).json(newTeam); + } catch (err) { + console.error(err); + res.status(500).json({ message: 'Erreur serveur' }); + } +}); + +// 🔹 Mettre à jour une équipe router.put('/:id', updateTeam); -router.patch('/:id/archive', archiveTeam); + +// 🔹 Supprimer une équipe router.delete('/:id', deleteTeam); export default router; diff --git a/saintBarthVolleyApp/backend/src/services/scrapingService.js b/saintBarthVolleyApp/backend/src/services/scrapingService.js new file mode 100644 index 0000000..c242988 --- /dev/null +++ b/saintBarthVolleyApp/backend/src/services/scrapingService.js @@ -0,0 +1,200 @@ +// src/services/scrapingService.js +// Scraping FFVB — utilise Team.federationUrl directement (pas de collection Championship) +import puppeteer from 'puppeteer'; +import * as cheerio from 'cheerio'; +import Team from '../models/Team.js'; +import Match from '../models/Match.js'; +import Standing from '../models/Standing.js'; + +const CLUB_TEAM_NAME = "AS SAINT-BARTHELEMY D'ANJOU V.B."; + +// Patterns qui indiquent une ligne à ignorer (division, journée exempte, placeholder) +const DIVISION_PATTERN = + /^(nationale|régionale?|régional|poule|division|phase|honneur|excellence|fédérale|pro\s?[ab]?)\s*\d*$/i; +const BYE_PATTERN = /^(x+|exempt[e]?|bye|-+)$/i; // journée exempte (xxxxx, exempt, -) +const DATE_PATTERN = /^\d{2}\/\d{2}\/\d{2,4}$/; +const TIME_PATTERN = /^\d{2}:\d{2}$/; + +function parseDateFR(dateStr, timeStr) { + const [day, month, year] = dateStr.split('/').map(Number); + const fullYear = year < 100 ? 2000 + year : year; + const [hours, minutes] = timeStr.split(':').map(Number); + return new Date(fullYear, month - 1, day, hours, minutes).toISOString(); +} + +function parseSetsDetail(setsStr) { + if (!setsStr) return []; + return setsStr.split(',').map((s, idx) => { + const [scoreFor, scoreAgainst] = s.trim().split(':').map(Number); + return { setNumber: idx + 1, scoreFor: scoreFor || 0, scoreAgainst: scoreAgainst || 0 }; + }); +} + +async function scrapeTeam(team, log) { + const result = { + teamId: team._id, + teamName: team.name, + matchesCreated: 0, + matchesUpdated: 0, + standings: 0, + error: null, + }; + + try { + if (!team.federationUrl) { + log(`⚠️ ${team.name} : pas d'URL FFVB, ignoré`); + result.error = 'Pas de federationUrl'; + return result; + } + + log(`🏐 Scraping ${team.name} → ${team.federationUrl}`); + + const browser = await puppeteer.launch({ + headless: true, + args: ['--no-sandbox', '--disable-setuid-sandbox'], + }); + const page = await browser.newPage(); + await page.goto(team.federationUrl, { waitUntil: 'networkidle2', timeout: 30000 }); + const html = await page.content(); + await browser.close(); + + const $ = cheerio.load(html); + const now = new Date(); + const matches = []; + + $('tr').each((i, tr) => { + const tds = $(tr).find('td'); + if (tds.length < 6) return; + + const row = []; + tds.each((j, td) => row.push($(td).text().trim())); + + const homeTeam = row[3]; + const awayTeam = row[5]; + if (!homeTeam || !awayTeam) return; + + // Ignorer les lignes dont la date ou l'heure ne correspondent pas au format attendu + if (!DATE_PATTERN.test(row[1]) || !TIME_PATTERN.test(row[2])) return; + + if (homeTeam === CLUB_TEAM_NAME || awayTeam === CLUB_TEAM_NAME) { + const homeAway = homeTeam === CLUB_TEAM_NAME ? 'home' : 'away'; + const opponentName = homeAway === 'home' ? awayTeam : homeTeam; + + // Ignorer les noms de division (ex: "Nationale 3") et les journées exemptées (ex: "xxxxx") + if (DIVISION_PATTERN.test(opponentName.trim())) return; + if (BYE_PATTERN.test(opponentName.trim())) return; + + const scoreFor = homeAway === 'home' ? parseInt(row[6]) || 0 : parseInt(row[7]) || 0; + const scoreAgainst = homeAway === 'home' ? parseInt(row[7]) || 0 : parseInt(row[6]) || 0; + + let dateISO; + try { + dateISO = parseDateFR(row[1], row[2]); + } catch { + return; + } + + const setsDetail = parseSetsDetail(row[8]); + const matchDate = new Date(dateISO); + const status = matchDate <= now && (scoreFor > 0 || scoreAgainst > 0) ? 'played' : 'scheduled'; + + matches.push({ + teamId: team._id, + opponentName, + date: dateISO, + homeAway, + status, + scoreFor, + scoreAgainst, + setsDetail, + }); + } + }); + + log(`📋 ${matches.length} match(es) détecté(s)`); + + for (const m of matches) { + const existing = await Match.findOne({ teamId: team._id, opponentName: m.opponentName, date: m.date }); + if (existing) { + const needsUpdate = + existing.status !== m.status || existing.scoreFor !== m.scoreFor || existing.scoreAgainst !== m.scoreAgainst; + if (needsUpdate) { + await Match.updateOne({ _id: existing._id }, m); + result.matchesUpdated++; + } + } else { + await Match.create(m); + result.matchesCreated++; + } + } + + // Standings + const standings = []; + $('table tbody tr').each((i, tr) => { + const tds = $(tr).find('td'); + if (tds.length < 16) return; + + const rank = parseInt($(tds[0]).text()) || 0; + const teamName = $(tds[1]).text().trim(); + if (!teamName) return; + + standings.push({ + teamId: team._id, + teamName, + rank, + points: parseInt($(tds[2]).text()) || 0, + played: parseInt($(tds[3]).text()) || 0, + wins: parseInt($(tds[4]).text()) || 0, + losses: parseInt($(tds[5]).text()) || 0, + setsFor: parseInt($(tds[13]).text()) || 0, + setsAgainst: parseInt($(tds[14]).text()) || 0, + }); + }); + + for (const s of standings) { + await Standing.findOneAndUpdate({ teamId: team._id, teamName: s.teamName }, s, { upsert: true }); + } + result.standings = standings.length; + + log( + `✅ ${team.name} : ${result.matchesCreated} créé(s), ${result.matchesUpdated} màj, ${result.standings} classements`, + ); + } catch (err) { + log(`❌ ${team.name} : ${err.message}`); + result.error = err.message; + } + + return result; +} + +export async function runScraping(onLog = () => {}) { + // Équipes ayant une federationUrl + const teams = await Team.find({ federationUrl: { $exists: true, $ne: '' } }); + const validTeamIds = teams.map((t) => t._id.toString()); + + // Nettoyage : supprimer matches et standings dont l'équipe n'existe plus + // ou n'a plus d'URL FFVB + const deletedMatches = await Match.deleteMany({ teamId: { $nin: validTeamIds } }); + const deletedStandings = await Standing.deleteMany({ teamId: { $nin: validTeamIds } }); + + if (deletedMatches.deletedCount > 0 || deletedStandings.deletedCount > 0) { + onLog( + `🗑️ Nettoyage : ${deletedMatches.deletedCount} match(es) et ${deletedStandings.deletedCount} classement(s) orphelins supprimés`, + ); + } + + onLog(`🚀 ${teams.length} équipe(s) avec URL FFVB à scraper`); + + if (teams.length === 0) { + onLog("⚠️ Aucune équipe n'a d'URL FFVB configurée. Allez dans Saisons → Équipe → URL FFVB."); + return []; + } + + const results = []; + for (const team of teams) { + const r = await scrapeTeam(team, onLog); + results.push(r); + } + + return results; +} diff --git a/saintBarthVolleyApp/frontend/.lintstagedrc.js b/saintBarthVolleyApp/frontend/.lintstagedrc.js index 8b3f16e..786ad8f 100644 --- a/saintBarthVolleyApp/frontend/.lintstagedrc.js +++ b/saintBarthVolleyApp/frontend/.lintstagedrc.js @@ -1,10 +1,10 @@ // const path = require('path') - + // const buildEslintCommand = (filenames) => // `eslint --fix ${filenames // .map((f) => `"${path.relative(process.cwd(), f)}"`) // .join(' ')}` - + // module.exports = { // '*.{js,jsx,ts,tsx}': [buildEslintCommand], -// } \ No newline at end of file +// } diff --git a/saintBarthVolleyApp/frontend/.next/dev/build-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/build-manifest.json deleted file mode 100644 index 1b6cf9d..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/build-manifest.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "pages": { - "/_app": [] - }, - "devFiles": [], - "polyfillFiles": [ - "static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js" - ], - "lowPriorityFiles": [ - "static/development/_ssgManifest.js", - "static/development/_buildManifest.js" - ], - "rootMainFiles": [ - "static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js", - "static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js", - "static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js", - "static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js", - "static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js", - "static/chunks/node_modules_next_dist_client_17643121._.js", - "static/chunks/node_modules_next_dist_f3530cac._.js", - "static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js", - "static/chunks/_a0ff3932._.js", - "static/chunks/turbopack-_23a915ee._.js" - ] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/.rscinfo b/saintBarthVolleyApp/frontend/.next/dev/cache/.rscinfo deleted file mode 100644 index 46a4484..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/cache/.rscinfo +++ /dev/null @@ -1 +0,0 @@ -{"encryption.key":"n0SX09riOuLUmRD0NXN8Mrp8d65tEg6mH2WbVPuTRzo=","encryption.expire_at":1773220379234} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/next-devtools-config.json b/saintBarthVolleyApp/frontend/.next/dev/cache/next-devtools-config.json deleted file mode 100644 index 9e26dfe..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/cache/next-devtools-config.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000001.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000001.sst deleted file mode 100644 index c1071c2..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000001.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000003.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000003.sst deleted file mode 100644 index 027daff..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000003.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000004.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000004.sst deleted file mode 100644 index 9f00a16..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000004.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000005.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000005.sst deleted file mode 100644 index edb20ae..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000005.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000006.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000006.meta deleted file mode 100644 index fa7be05..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000006.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000007.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000007.meta deleted file mode 100644 index 9e61771..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000007.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000009.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000009.meta deleted file mode 100644 index fb805f4..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000009.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000010.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000010.meta deleted file mode 100644 index 5c930c5..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000010.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000015.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000015.sst deleted file mode 100644 index ae2f0c7..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000015.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000016.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000016.sst deleted file mode 100644 index 3d71373..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000016.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000017.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000017.sst deleted file mode 100644 index 5437da6..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000017.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000018.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000018.sst deleted file mode 100644 index c23f011..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000018.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000019.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000019.meta deleted file mode 100644 index cf5e918..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000019.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000020.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000020.meta deleted file mode 100644 index 6687cc6..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000020.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000022.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000022.meta deleted file mode 100644 index 86d26d7..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000022.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000023.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000023.meta deleted file mode 100644 index c6d0ea8..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000023.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000031.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000031.sst deleted file mode 100644 index b9db538..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000031.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000033.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000033.meta deleted file mode 100644 index 228c199..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000033.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000038.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000038.sst deleted file mode 100644 index 08ef7f3..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000038.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000039.sst b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000039.sst deleted file mode 100644 index 6c0bd8d..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000039.sst and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000041.meta b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000041.meta deleted file mode 100644 index e164f37..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/00000041.meta and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/CURRENT b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/CURRENT deleted file mode 100644 index 911b8b7..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/CURRENT and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/LOG b/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/LOG deleted file mode 100644 index e5607bf..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/cache/turbopack/0c06f068/LOG +++ /dev/null @@ -1,8447 +0,0 @@ -Time 2026-02-25T09:13:01.362057594Z -Commit 00000010 1066 keys in 16ms 900µs 740ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000006 | 00000003 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000007 | 00000001 SST | [==================================================================================================] | 0027752eca537b46-ff16969064aee852 (0 MiB, fresh) - 2 | 00000008 | 00000002 SST | [==================================================================================================] | 0027752eca537b46-ff16969064aee852 (0 MiB, fresh) - 3 | 00000009 | 00000005 SST | [==================================================================================================] | 007288e1f633f792-ffd328b17a54f7db (0 MiB, fresh) - 4 | 00000010 | 00000004 SST | [==================================================================================================] | 0027752eca537b46-ff16969064aee852 (0 MiB, fresh) -Time 2026-02-25T09:13:16.026445517Z -Commit 00000023 302390 keys in 39ms 626µs 486ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000019 | 00000016 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000020 | 00000015 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff808ec0d5d62b (4 MiB, fresh) - 2 | 00000021 | 00000013 SST | [=======================] | 0000737dcecb7eaa-3ffe1f26a0efb062 (6 MiB, fresh) - 2 | 00000021 | 00000012 SST | [=======================] | c001300d52bca80b-ffff808ec0d5d62b (8 MiB, fresh) - 2 | 00000021 | 00000011 SST | [=======================] | 80001b7dbb868594-bffe5ecb7e704f59 (9 MiB, fresh) - 2 | 00000021 | 00000014 SST | [=======================] | 40008be46b67bd70-7fff95d254a7ad97 (13 MiB, fresh) - 3 | 00000022 | 00000017 SST | [==================================================================================================] | 0001638195b71e83-fffd0d82db7d71b7 (2 MiB, fresh) - 4 | 00000023 | 00000018 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff808ec0d5d62b (2 MiB, fresh) -Time 2026-02-25T09:13:50.079794087Z -Commit 00000036 79468 keys in 41ms 553µs 701ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000032 | 00000029 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000033 | 00000028 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (2 MiB, fresh) - 2 | 00000034 | 00000025 SST | [=======================] | 0000737dcecb7eaa-3ffe1f26a0efb062 (3 MiB, fresh) - 2 | 00000034 | 00000024 SST | [=======================] | c0003831a5771964-ffff5f9b333e341e (6 MiB, fresh) - 2 | 00000034 | 00000026 SST | [=======================] | 80020afe74689529-bffe5ecb7e704f59 (8 MiB, fresh) - 2 | 00000034 | 00000027 SST | [=======================] | 40008be46b67bd70-7fffa45d63a0caeb (8 MiB, fresh) - 3 | 00000035 | 00000030 SST | [==================================================================================================] | 001041f4c71e4127-fff47023eb327933 (0 MiB, fresh) - 4 | 00000036 | 00000031 SST | [==================================================================================================] | 0010e26242e36d1c-ffee1668243fc025 (0 MiB, fresh) -Time 2026-02-25T09:15:31.312286806Z -Commit 00000042 740 keys in 10ms 19µs 652ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000040 | 00000039 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000041 | 00000038 SST | [==================================================================================================] | 00a96a833a951f9b-ff95fac4ba5d9b08 (0 MiB, fresh) - 2 | 00000042 | 00000037 SST | [=================================================================================================] | 018bf630fbcc7799-fd6da38269588ff5 (0 MiB, fresh) -Time 2026-02-25T09:15:47.192443353Z -Commit 00000048 419 keys in 10ms 11µs 750ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000046 | 00000045 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000047 | 00000044 SST | [==================================================================================================] | 0132c2b143bcf825-ff881d6151ab3b91 (0 MiB, fresh) - 2 | 00000048 | 00000043 SST | [=================================================================================================] | 018bf630fbcc7799-fd6da38269588ff5 (0 MiB, fresh) -Time 2026-02-25T09:16:14.197813676Z -Commit 00000054 152 keys in 11ms 61µs 589ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000052 | 00000051 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000053 | 00000050 SST | [================================================================================================] | 0315bd6ef0760e1f-fd01082c4cb7fbf0 (0 MiB, fresh) - 2 | 00000054 | 00000049 SST | [================================================================================================] | 0315bd6ef0760e1f-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T09:16:20.081822629Z -Commit 00000060 8170 keys in 18ms 956µs 377ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000058 | 00000057 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000059 | 00000055 SST | [==================================================================================================] | 000a2028c9fc0dd6-ffc353ea71dbad3d (4 MiB, fresh) - 1 | 00000060 | 00000056 SST | [==================================================================================================] | 000a2028c9fc0dd6-ffd284765f657204 (0 MiB, fresh) -Time 2026-02-25T09:18:52.836298428Z -Commit 00000066 4 keys in 12ms 461µs 632ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000064 | 00000063 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000065 | 00000061 SST | O | 422e7ab5924d0913-422e7ab5924d0913 (0 MiB, fresh) - 2 | 00000066 | 00000062 SST | O | 422e7ab5924d0913-422e7ab5924d0913 (0 MiB, fresh) -Time 2026-02-25T09:30:40.340771875Z -Commit 00000072 288 keys in 10ms 409µs 872ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000070 | 00000069 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000071 | 00000068 SST | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 (0 MiB, fresh) - 2 | 00000072 | 00000067 SST | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 (0 MiB, fresh) -Time 2026-02-25T09:31:51.425428092Z -Commit 00000078 275 keys in 13ms 785ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000076 | 00000075 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000077 | 00000073 SST | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 (0 MiB, fresh) - 2 | 00000078 | 00000074 SST | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 (0 MiB, fresh) -Time 2026-02-25T09:34:08.144879206Z -Commit 00000084 500 keys in 10ms 848µs 707ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000082 | 00000081 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000083 | 00000079 SST | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 (0 MiB, fresh) - 1 | 00000084 | 00000080 SST | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 (0 MiB, fresh) -Time 2026-02-25T09:34:47.701099999Z -Commit 00000090 40 keys in 15ms 26µs 38ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000088 | 00000087 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000089 | 00000085 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000090 | 00000086 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 (0 MiB, fresh) -Time 2026-02-25T09:34:59.190089675Z -Commit 00000096 40 keys in 15ms 36µs 465ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000094 | 00000093 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000095 | 00000092 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000096 | 00000091 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 (0 MiB, fresh) -Time 2026-02-25T09:35:37.89031721Z -Commit 00000102 526 keys in 11ms 282µs 204ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000100 | 00000099 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000101 | 00000098 SST | [==================================================================================================] | 0132c2b143bcf825-ff881d6151ab3b91 (0 MiB, fresh) - 2 | 00000102 | 00000097 SST | [==================================================================================================] | 018bf630fbcc7799-ff881d6151ab3b91 (0 MiB, fresh) -Time 2026-02-25T09:38:24.773776942Z -Commit 00000108 423 keys in 10ms 968µs 938ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000106 | 00000105 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000107 | 00000104 SST | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 (0 MiB, fresh) - 2 | 00000108 | 00000103 SST | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 (0 MiB, fresh) -Time 2026-02-25T09:39:56.319084455Z -Commit 00000118 499 keys in 15ms 613µs 500ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000114 | 00000111 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000115 | 00000110 SST | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 (0 MiB, fresh) - 2 | 00000116 | 00000109 SST | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 (0 MiB, fresh) - 4 | 00000117 | 00000112 SST | O | fcfd802d776dbd81-fcfd802d776dbd81 (0 MiB, fresh) - 3 | 00000118 | 00000113 SST | O | 1f39cda05d180f90-1f39cda05d180f90 (0 MiB, fresh) -Time 2026-02-25T09:40:16.101478701Z -Commit 00000128 1900 keys in 16ms 728µs 785ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000124 | 00000121 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00000125 | 00000123 SST | [=============================================================================] | 2ca18ccab26fc858-f56eefcf76fa5660 (0 MiB, fresh) - 3 | 00000126 | 00000122 SST | [===============================================================================================] | 065f6b0dfdeac255-fcf7e49d99379832 (0 MiB, fresh) - 2 | 00000127 | 00000119 SST | [==================================================================================================] | 00644946bc319a60-ffdc06810b2e00a5 (0 MiB, fresh) - 1 | 00000128 | 00000120 SST | [==================================================================================================] | 001a55f65a5f34f1-ffee1668243fc025 (0 MiB, fresh) -Time 2026-02-25T09:41:21.169735415Z -Commit 00000138 300 keys in 16ms 556µs 70ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000134 | 00000131 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000135 | 00000129 SST | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d (0 MiB, fresh) - 3 | 00000136 | 00000132 SST | O | a941e2982e67e098-a941e2982e67e098 (0 MiB, fresh) - 2 | 00000137 | 00000130 SST | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d (0 MiB, fresh) - 4 | 00000138 | 00000133 SST | O | e262e30e3397585a-e262e30e3397585a (0 MiB, fresh) -Time 2026-02-25T09:48:40.21666157Z -Commit 00000144 268 keys in 323ms 313µs 63ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000142 | 00000141 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000143 | 00000140 SST | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 (0 MiB, fresh) - 2 | 00000144 | 00000139 SST | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 (0 MiB, fresh) -Time 2026-02-25T13:16:18.857475063Z -Commit 00000154 281 keys in 13ms 956µs 980ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000150 | 00000147 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000151 | 00000146 SST | [=================================================================================================] | 005b36fb126383dd-fd01082c4cb7fbf0 (0 MiB, fresh) - 2 | 00000152 | 00000145 SST | [=================================================================================================] | 005b36fb126383dd-fcb701b0310f74b9 (0 MiB, fresh) - 4 | 00000153 | 00000149 SST | [===========================================================================] | 1e6f0a434c2136d5-dfb00da4f70d79b1 (0 MiB, fresh) - 3 | 00000154 | 00000148 SST | [============================================================================================] | 0f6b59e09b4ab557-fdc7c5c529746dbc (0 MiB, fresh) -Time 2026-02-25T13:16:32.640984568Z -Commit 00000160 1877 keys in 9ms 995µs 709ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000158 | 00000157 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000159 | 00000155 SST | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00000160 | 00000156 SST | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d (1 MiB, fresh) -Time 2026-02-25T13:16:53.835578299Z -Commit 00000170 2085 keys in 16ms 414µs 80ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000166 | 00000163 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000167 | 00000161 SST | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d (0 MiB, fresh) - 4 | 00000168 | 00000165 SST | [==================================================================================] | 21b7d5b2ca676984-f634c7c361dcca1d (0 MiB, fresh) - 3 | 00000169 | 00000164 SST | [=================================================================] | 21d5fc984391f58e-cac14413e6bdee69 (0 MiB, fresh) - 2 | 00000170 | 00000162 SST | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d (1 MiB, fresh) -Time 2026-02-25T13:17:25.224545549Z -Commit 00000180 73992 keys in 21ms 604µs 14ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000176 | 00000173 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00000177 | 00000175 SST | [==================================================================================================] | 000358d0de9d25d6-ffffc8b261a62b07 (0 MiB, fresh) - 3 | 00000178 | 00000174 SST | [==================================================================================================] | 00126e8553a4c25b-fff16066ca79d3c9 (0 MiB, fresh) - 2 | 00000179 | 00000171 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (14 MiB, fresh) - 1 | 00000180 | 00000172 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (3 MiB, fresh) - 2 | 00000183 | Compaction: - 2 | 00000183 | MERGE (91803 keys): - 2 | 00000183 | 00000002 INPUT | [==================================================================================================] | 0027752eca537b46-ff16969064aee852 - 2 | 00000183 | 00000013 INPUT | [=======================] | 0000737dcecb7eaa-3ffe1f26a0efb062 - 2 | 00000183 | 00000012 INPUT | [=======================] | c001300d52bca80b-ffff808ec0d5d62b - 2 | 00000183 | 00000011 INPUT | [=======================] | 80001b7dbb868594-bffe5ecb7e704f59 - 2 | 00000183 | 00000014 INPUT | [=======================] | 40008be46b67bd70-7fff95d254a7ad97 - 2 | 00000183 | 00000025 INPUT | [=======================] | 0000737dcecb7eaa-3ffe1f26a0efb062 - 2 | 00000183 | 00000024 INPUT | [=======================] | c0003831a5771964-ffff5f9b333e341e - 2 | 00000183 | 00000026 INPUT | [=======================] | 80020afe74689529-bffe5ecb7e704f59 - 2 | 00000183 | 00000027 INPUT | [=======================] | 40008be46b67bd70-7fffa45d63a0caeb - 2 | 00000183 | 00000037 INPUT | [=================================================================================================] | 018bf630fbcc7799-fd6da38269588ff5 - 2 | 00000183 | 00000043 INPUT | [=================================================================================================] | 018bf630fbcc7799-fd6da38269588ff5 - 2 | 00000183 | 00000049 INPUT | [================================================================================================] | 0315bd6ef0760e1f-fc14d191b68d496a - 2 | 00000183 | 00000055 INPUT | [==================================================================================================] | 000a2028c9fc0dd6-ffc353ea71dbad3d - 2 | 00000183 | 00000062 INPUT | O | 422e7ab5924d0913-422e7ab5924d0913 - 2 | 00000183 | 00000067 INPUT | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 - 2 | 00000183 | 00000074 INPUT | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 - 2 | 00000183 | 00000079 INPUT | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 - 2 | 00000183 | 00000086 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 - 2 | 00000183 | 00000091 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 - 2 | 00000183 | 00000097 INPUT | [==================================================================================================] | 018bf630fbcc7799-ff881d6151ab3b91 - 2 | 00000183 | 00000103 INPUT | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 - 2 | 00000183 | 00000109 INPUT | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 - 2 | 00000183 | 00000119 INPUT | [==================================================================================================] | 00644946bc319a60-ffdc06810b2e00a5 - 2 | 00000183 | 00000130 INPUT | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d - 2 | 00000183 | 00000139 INPUT | [==================================================================================================] | 01cb3d717c7f7124-ff881d6151ab3b91 - 2 | 00000183 | 00000145 INPUT | [=================================================================================================] | 005b36fb126383dd-fcb701b0310f74b9 - 2 | 00000183 | 00000156 INPUT | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d - 2 | 00000183 | 00000162 INPUT | [==================================================================================================] | 004df8c1648c843b-ffe9c35c2954775d - 2 | 00000183 | 00000171 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 - 2 | 00000183 | 00000182 OUTPUT | [==================================================================================================] | 0001818d53d8f469-ffffc8b261a62b07 (cold) - 2 | 00000183 | 00000181 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-02-25T13:17:25.777814794Z -Commit 00000184 91803 keys in 43ms 132µs 541ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00000183 | 00000182 SST | [==================================================================================================] | 0001818d53d8f469-ffffc8b261a62b07 (34 MiB, cold) - 2 | 00000183 | 00000181 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (17 MiB, warm) - 2 | 00000183 | 00000002 00000011 00000012 00000013 00000014 00000024 00000025 00000026 00000027 00000037 00000043 00000049 00000055 00000062 00000067 OBSOLETE SST - 2 | 00000183 | 00000074 00000079 00000086 00000091 00000097 00000103 00000109 00000119 00000130 00000139 00000145 00000156 00000162 00000171 OBSOLETE SST - | | 00000002 00000011 00000012 00000013 00000014 00000024 00000025 00000026 00000027 00000037 00000043 00000049 00000055 00000062 00000067 SST DELETED - | | 00000074 00000079 00000086 00000091 00000097 00000103 00000109 00000119 00000130 00000139 00000145 00000156 00000162 00000171 SST DELETED - | | 00000008 00000021 00000034 00000042 00000048 00000054 00000059 00000066 00000072 00000078 00000083 00000090 00000096 00000102 00000108 META DELETED - | | 00000116 00000127 00000137 00000144 00000152 00000160 00000170 00000179 META DELETED -Time 2026-02-25T13:22:20.22724403Z -Commit 00000194 14588 keys in 17ms 44µs 997ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000190 | 00000187 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000191 | 00000186 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (1 MiB, fresh) - 2 | 00000192 | 00000185 SST | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 (9 MiB, fresh) - 3 | 00000193 | 00000189 SST | [==================================================================================================] | 006cab2c13aa0e0c-ff413be949a18f75 (0 MiB, fresh) - 4 | 00000194 | 00000188 SST | [==================================================================================================] | 011119c4ff41727e-ff3f9cff00effa9e (0 MiB, fresh) -Time 2026-02-25T13:22:41.600043528Z -Commit 00000204 1497 keys in 16ms 304µs 416ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000200 | 00000197 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000201 | 00000196 SST | [==================================================================================================] | 0032b0dbc97fd7ff-feeba07cd2711308 (0 MiB, fresh) - 2 | 00000202 | 00000195 SST | [==================================================================================================] | 0032b0dbc97fd7ff-feeba07cd2711308 (0 MiB, fresh) - 3 | 00000203 | 00000198 SST | [==============================================================================================] | 07318d21b0c2d11a-f9f51eea22c96e31 (0 MiB, fresh) - 4 | 00000204 | 00000199 SST | [================================================================================================] | 05654c5aedc5cf46-fee38f1e3332a6dc (0 MiB, fresh) -Time 2026-02-25T13:22:51.581821889Z -Commit 00000214 2777 keys in 16ms 157µs 7ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000210 | 00000207 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000211 | 00000206 SST | [==================================================================================================] | 0008192861033651-ffe9c35c2954775d (0 MiB, fresh) - 1 | 00000212 | 00000205 SST | [==================================================================================================] | 0008192861033651-ffe9c35c2954775d (0 MiB, fresh) - 3 | 00000213 | 00000208 SST | [==================================================================================================] | 01b2c6e272b0d114-ffea259ea69c7bbf (0 MiB, fresh) - 4 | 00000214 | 00000209 SST | [==================================================================================================] | 0008192861033651-feca8cb3a2062878 (0 MiB, fresh) -Time 2026-02-25T13:26:06.725475154Z -Commit 00000220 983 keys in 12ms 34µs 658ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000218 | 00000217 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000219 | 00000215 SST | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 (0 MiB, fresh) - 1 | 00000220 | 00000216 SST | [==================================================================================================] | 00500152f8dd5b7d-ff95fac4ba5d9b08 (0 MiB, fresh) -Time 2026-02-25T13:26:13.971359947Z -Commit 00000230 36545 keys in 19ms 619µs 353ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000226 | 00000223 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00000227 | 00000225 SST | [==================================================================================================] | 0015208de2756fad-fff65339c699050c (0 MiB, fresh) - 3 | 00000228 | 00000224 SST | [==================================================================================================] | 000e0faa998714e3-ffff405b09c81cff (0 MiB, fresh) - 2 | 00000229 | 00000221 SST | [==================================================================================================] | 0000737dcecb7eaa-fff65339c699050c (9 MiB, fresh) - 1 | 00000230 | 00000222 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (1 MiB, fresh) -Time 2026-02-25T13:28:15.644968583Z -Commit 00000236 164 keys in 11ms 214µs 734ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000234 | 00000233 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000235 | 00000232 SST | [==============================================================================================] | 07b83e378721cf4c-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000236 | 00000231 SST | [==============================================================================================] | 07b83e378721cf4c-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:29:49.974734746Z -Commit 00000242 141 keys in 12ms 736µs 544ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000240 | 00000239 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000241 | 00000237 SST | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a (0 MiB, fresh) - 1 | 00000242 | 00000238 SST | [=============================================================================================] | 0b2631de1bd382d9-fcb701b0310f74b9 (0 MiB, fresh) -Time 2026-02-25T13:30:20.608982146Z -Commit 00000252 45065 keys in 23ms 331µs 135ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000248 | 00000245 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00000249 | 00000247 SST | [==================================================================================================] | 000219dada7120d8-fffdd89e249d22e3 (0 MiB, fresh) - 3 | 00000250 | 00000246 SST | [==================================================================================================] | 001cc2a58da86db7-fffb668b87d54193 (0 MiB, fresh) - 2 | 00000251 | 00000243 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (10 MiB, fresh) - 1 | 00000252 | 00000244 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (2 MiB, fresh) -Time 2026-02-25T13:32:13.321776708Z -Commit 00000262 23406 keys in 18ms 648µs 151ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000258 | 00000255 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000259 | 00000253 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (8 MiB, fresh) - 3 | 00000260 | 00000256 SST | [=================================================================================================] | 018666be9c8e1559-fca08b6330a961d9 (0 MiB, fresh) - 1 | 00000261 | 00000254 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (1 MiB, fresh) - 4 | 00000262 | 00000257 SST | [===========================================================================================] | 002f5f743d088cb2-ebb1ddb838303e3c (0 MiB, fresh) -Time 2026-02-25T13:32:46.422228192Z -Commit 00000272 305 keys in 16ms 798µs 136ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000268 | 00000265 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000269 | 00000263 SST | [==================================================================================================] | 028166b6a35bcd98-fe9a7a0f20fcfa7f (0 MiB, fresh) - 2 | 00000270 | 00000264 SST | [==================================================================================================] | 028166b6a35bcd98-fe9a7a0f20fcfa7f (0 MiB, fresh) - 3 | 00000271 | 00000266 SST | O | 7e7cf10aa05bf4f9-7e7cf10aa05bf4f9 (0 MiB, fresh) - 4 | 00000272 | 00000267 SST | O | e6ae7815e023a5ad-e6ae7815e023a5ad (0 MiB, fresh) -Time 2026-02-25T13:32:54.646258837Z -Commit 00000282 320 keys in 19ms 178µs 401ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000278 | 00000275 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000279 | 00000274 SST | [==================================================================================================] | 028166b6a35bcd98-feeba07cd2711308 (0 MiB, fresh) - 2 | 00000280 | 00000273 SST | [==================================================================================================] | 028166b6a35bcd98-fee38f1e3332a6dc (0 MiB, fresh) - 3 | 00000281 | 00000276 SST | O | 4a17bb22bb0168f6-4a17bb22bb0168f6 (0 MiB, fresh) - 4 | 00000282 | 00000277 SST | O | 6b99e9a33d02ca91-6b99e9a33d02ca91 (0 MiB, fresh) -Time 2026-02-25T13:33:07.667831713Z -Commit 00000288 53 keys in 17ms 848µs 895ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00000286 | 00000283 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 (0 MiB, fresh) - 0 | 00000287 | 00000285 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000288 | 00000284 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:33:23.934808218Z -Commit 00000294 55 keys in 11ms 759µs 496ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000292 | 00000291 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000293 | 00000289 SST | [================================================================================================] | 02cb8c9cef2d6adf-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000294 | 00000290 SST | [================================================================================================] | 02cb8c9cef2d6adf-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:33:53.854338466Z -Commit 00000300 55 keys in 12ms 553µs 350ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000298 | 00000297 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000299 | 00000296 SST | [================================================================================================] | 02cb8c9cef2d6adf-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000300 | 00000295 SST | [================================================================================================] | 02cb8c9cef2d6adf-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:34:29.993451773Z -Commit 00000306 129 keys in 11ms 774µs 956ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000304 | 00000303 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000305 | 00000301 SST | [=============================================================================================] | 0b2631de1bd382d9-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000306 | 00000302 SST | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:34:39.448721953Z -Commit 00000316 43890 keys in 36ms 131µs 306ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000312 | 00000309 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000313 | 00000307 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (12 MiB, fresh) - 1 | 00000314 | 00000308 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (2 MiB, fresh) - 3 | 00000315 | 00000310 SST | [==================================================================================================] | 006cd8cd1ce49c04-fff01c6efecc95b6 (0 MiB, fresh) - 4 | 00000316 | 00000311 SST | [==================================================================================================] | 0017a54d1872e2f1-ff8d6fd38e8c9d1a (0 MiB, fresh) - 2 | 00000319 | Compaction: - 2 | 00000319 | MERGE (104761 keys): - 2 | 00000319 | 00000182 INPUT | [==================================================================================================] | 0001818d53d8f469-ffffc8b261a62b07 - 2 | 00000319 | 00000181 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00000319 | 00000185 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 - 2 | 00000319 | 00000195 INPUT | [==================================================================================================] | 0032b0dbc97fd7ff-feeba07cd2711308 - 2 | 00000319 | 00000206 INPUT | [==================================================================================================] | 0008192861033651-ffe9c35c2954775d - 2 | 00000319 | 00000215 INPUT | [==================================================================================================] | 00e9726494d6800f-ff881d6151ab3b91 - 2 | 00000319 | 00000221 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff65339c699050c - 2 | 00000319 | 00000231 INPUT | [==============================================================================================] | 07b83e378721cf4c-fc14d191b68d496a - 2 | 00000319 | 00000237 INPUT | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a - 2 | 00000319 | 00000243 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00000319 | 00000253 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00000319 | 00000264 INPUT | [==================================================================================================] | 028166b6a35bcd98-fe9a7a0f20fcfa7f - 2 | 00000319 | 00000273 INPUT | [==================================================================================================] | 028166b6a35bcd98-fee38f1e3332a6dc - 2 | 00000319 | 00000284 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 2 | 00000319 | 00000290 INPUT | [================================================================================================] | 02cb8c9cef2d6adf-fc14d191b68d496a - 2 | 00000319 | 00000295 INPUT | [================================================================================================] | 02cb8c9cef2d6adf-fc14d191b68d496a - 2 | 00000319 | 00000302 INPUT | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a - 2 | 00000319 | 00000307 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00000319 | 00000318 OUTPUT | [==================================================================================================] | 00010940d5ed71c9-ffffc8b261a62b07 (cold) - 2 | 00000319 | 00000317 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-02-25T13:34:39.915596071Z -Commit 00000320 104761 keys in 83ms 814µs 508ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00000319 | 00000318 SST | [==================================================================================================] | 00010940d5ed71c9-ffffc8b261a62b07 (44 MiB, cold) - 2 | 00000319 | 00000317 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (17 MiB, warm) - 2 | 00000319 | 00000181 00000182 00000185 00000195 00000206 00000215 00000221 00000231 00000237 00000243 00000253 00000264 00000273 00000284 00000290 OBSOLETE SST - 2 | 00000319 | 00000295 00000302 00000307 OBSOLETE SST - | | 00000181 00000182 00000185 00000195 00000206 00000215 00000221 00000231 00000237 00000243 00000253 00000264 00000273 00000284 00000290 SST DELETED - | | 00000295 00000302 00000307 SST DELETED - | | 00000183 00000192 00000202 00000211 00000219 00000229 00000236 00000241 00000251 00000259 00000270 00000280 00000288 00000294 00000300 META DELETED - | | 00000306 00000313 META DELETED -Time 2026-02-25T13:35:09.358474134Z -Commit 00000326 4 keys in 12ms 245µs 372ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000324 | 00000323 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000325 | 00000321 SST | O | 9c7813a252211112-9c7813a252211112 (0 MiB, fresh) - 2 | 00000326 | 00000322 SST | O | 9c7813a252211112-9c7813a252211112 (0 MiB, fresh) -Time 2026-02-25T13:37:22.088759126Z -Commit 00000332 165 keys in 11ms 765µs 428ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000330 | 00000329 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000331 | 00000328 SST | [=================================================================================================] | 0017a54d1872e2f1-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000332 | 00000327 SST | [=================================================================================================] | 0017a54d1872e2f1-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:37:29.431891737Z -Commit 00000338 143 keys in 12ms 292µs 541ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000336 | 00000335 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000337 | 00000334 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000338 | 00000333 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:37:46.333817258Z -Commit 00000344 143 keys in 12ms 235µs 129ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000342 | 00000341 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000343 | 00000339 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000344 | 00000340 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:37:57.607819047Z -Commit 00000350 143 keys in 10ms 557µs 802ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000348 | 00000347 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000349 | 00000345 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000350 | 00000346 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:39:01.764201991Z -Commit 00000356 147 keys in 12ms 52µs 541ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000354 | 00000353 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000355 | 00000351 SST | [=================================================================================================] | 0017a54d1872e2f1-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000356 | 00000352 SST | [=================================================================================================] | 0017a54d1872e2f1-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:39:08.411510407Z -Commit 00000362 6 keys in 9ms 811µs 875ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000360 | 00000359 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000361 | 00000358 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) - 2 | 00000362 | 00000357 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) -Time 2026-02-25T13:39:41.135257269Z -Commit 00000368 147 keys in 9ms 522µs 565ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000366 | 00000365 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000367 | 00000364 SST | [=================================================================================================] | 0017a54d1872e2f1-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000368 | 00000363 SST | [=================================================================================================] | 0017a54d1872e2f1-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:40:03.597618044Z -Commit 00000374 143 keys in 10ms 957µs 3ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000372 | 00000371 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000373 | 00000369 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000374 | 00000370 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:40:17.772984156Z -Commit 00000380 143 keys in 13ms 351µs 716ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000378 | 00000377 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000379 | 00000375 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000380 | 00000376 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:41:05.315089881Z -Commit 00000386 143 keys in 11ms 826µs 665ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000384 | 00000383 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000385 | 00000382 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000386 | 00000381 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:41:19.570634629Z -Commit 00000392 143 keys in 13ms 537µs 322ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000390 | 00000389 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000391 | 00000387 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000392 | 00000388 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:41:25.848627621Z -Commit 00000398 143 keys in 12ms 585µs 414ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000396 | 00000395 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000397 | 00000393 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000398 | 00000394 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:42:03.432669161Z -Commit 00000404 143 keys in 13ms 902µs 7ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000402 | 00000401 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000403 | 00000399 SST | [===============================================================================================] | 05e15432ae137cc7-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000404 | 00000400 SST | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:44:45.564887807Z -Commit 00000414 5473 keys in 18ms 938µs 462ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000410 | 00000407 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000411 | 00000406 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe5d9a156d03758 (0 MiB, fresh) - 2 | 00000412 | 00000405 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe5d9a156d03758 (8 MiB, fresh) - 3 | 00000413 | 00000408 SST | O | c1c644a013e6cd7a-c1c644a013e6cd7a (0 MiB, fresh) - 4 | 00000414 | 00000409 SST | O | be651876debda385-be651876debda385 (0 MiB, fresh) -Time 2026-02-25T13:45:18.845351803Z -Commit 00000424 212 keys in 17ms 460µs 54ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000420 | 00000417 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000421 | 00000416 SST | [=============================================================================================] | 0d0ac2df242a2bbe-feeba07cd2711308 (0 MiB, fresh) - 2 | 00000422 | 00000415 SST | [=============================================================================================] | 0d0ac2df242a2bbe-fee38f1e3332a6dc (0 MiB, fresh) - 3 | 00000423 | 00000418 SST | O | 8c0b9d4366f01c6c-8c0b9d4366f01c6c (0 MiB, fresh) - 4 | 00000424 | 00000419 SST | O | 79c9c37a81aff7f3-79c9c37a81aff7f3 (0 MiB, fresh) -Time 2026-02-25T13:45:37.769840567Z -Commit 00000430 61 keys in 11ms 856µs 385ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000428 | 00000427 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000429 | 00000425 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000430 | 00000426 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:45:47.215378951Z -Commit 00000436 63 keys in 12ms 895µs 54ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000434 | 00000433 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000435 | 00000431 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000436 | 00000432 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:46:09.616029765Z -Commit 00000442 137 keys in 12ms 776µs 531ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000440 | 00000439 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000441 | 00000438 SST | [=============================================================================================] | 0b2631de1bd382d9-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000442 | 00000437 SST | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:46:27.240290951Z -Commit 00000448 63 keys in 14ms 37µs 716ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000446 | 00000445 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000447 | 00000444 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000448 | 00000443 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:46:36.393025044Z -Commit 00000454 38 keys in 10ms 950µs 216ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000452 | 00000451 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000453 | 00000449 SST | [=========================================================================================] | 0d39b29a0fc466cb-f52f51b87e2b8e94 (0 MiB, fresh) - 2 | 00000454 | 00000450 SST | [=========================================================================================] | 0d39b29a0fc466cb-f52f51b87e2b8e94 (0 MiB, fresh) -Time 2026-02-25T13:47:32.164382779Z -Commit 00000460 1384 keys in 15ms 595µs 806ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000458 | 00000457 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000459 | 00000455 SST | [==================================================================================================] | 00718038227ea379-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00000460 | 00000456 SST | [==================================================================================================] | 00718038227ea379-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T13:48:53.992238203Z -Commit 00000466 153 keys in 12ms 672µs 567ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000464 | 00000463 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000465 | 00000461 SST | [=============================================================================================] | 0b2631de1bd382d9-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000466 | 00000462 SST | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:49:27.336782883Z -Commit 00000472 153 keys in 13ms 398µs 284ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000470 | 00000469 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000471 | 00000467 SST | [=============================================================================================] | 0b2631de1bd382d9-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000472 | 00000468 SST | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:51:24.213992038Z -Commit 00000478 153 keys in 12ms 829µs 617ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000476 | 00000475 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000477 | 00000473 SST | [=============================================================================================] | 0b2631de1bd382d9-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000478 | 00000474 SST | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:51:44.545942691Z -Commit 00000484 153 keys in 13ms 759µs 850ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000482 | 00000481 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000483 | 00000480 SST | [=============================================================================================] | 0b2631de1bd382d9-fcb701b0310f74b9 (0 MiB, fresh) - 2 | 00000484 | 00000479 SST | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T13:52:12.389116352Z -Commit 00000494 3039 keys in 19ms 116µs 766ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000490 | 00000487 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000491 | 00000486 SST | [==================================================================================================] | 0000737dcecb7eaa-ffd2128295feedf0 (0 MiB, fresh) - 2 | 00000492 | 00000485 SST | [==================================================================================================] | 0000737dcecb7eaa-ffd2128295feedf0 (5 MiB, fresh) - 3 | 00000493 | 00000488 SST | [==============================================================================================] | 0013717832c01a51-f3398ef3af31f1d2 (0 MiB, fresh) - 4 | 00000494 | 00000489 SST | [================================================================================================] | 03b2283fcea8785f-fd14dbaf86017ac7 (0 MiB, fresh) -Time 2026-02-25T13:52:23.470137729Z -Commit 00000504 27489 keys in 22ms 939µs 381ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000500 | 00000497 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000501 | 00000495 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe58d83ca25ec39 (12 MiB, fresh) - 3 | 00000502 | 00000498 SST | [==================================================================================================] | 00029708cd6da212-fff8e3c8ab6984bd (0 MiB, fresh) - 1 | 00000503 | 00000496 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe6eb57ae2267f9 (1 MiB, fresh) - 4 | 00000504 | 00000499 SST | [==================================================================================================] | 00077221ce365242-ffd9c4630d83d3cc (0 MiB, fresh) -Time 2026-02-25T13:53:06.560236647Z -Commit 00000510 71 keys in 11ms 517µs 264ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000508 | 00000507 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000509 | 00000506 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000510 | 00000505 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T13:53:50.650530009Z -Commit 00000516 71 keys in 13ms 422µs 747ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000514 | 00000513 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000515 | 00000511 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000516 | 00000512 SST | [==========================================================================================] | 12df2a21ee9ddeff-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T13:54:02.017141037Z -Commit 00000526 30877 keys in 23ms 151µs 400ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000522 | 00000519 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000523 | 00000517 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (13 MiB, fresh) - 1 | 00000524 | 00000518 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (2 MiB, fresh) - 3 | 00000525 | 00000520 SST | [==================================================================================================] | 001b2c762024d33f-fffc674069d749ef (0 MiB, fresh) - 4 | 00000526 | 00000521 SST | [==================================================================================================] | 009e3bcd24a4c9e8-ffd943595555775e (0 MiB, fresh) -Time 2026-02-25T13:54:39.663115392Z -Commit 00000532 189 keys in 15ms 94µs 487ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000530 | 00000529 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000531 | 00000528 SST | [================================================================================================] | 0324025233d27adf-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000532 | 00000527 SST | [================================================================================================] | 0324025233d27adf-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T13:54:59.981902969Z -Commit 00000538 159 keys in 10ms 682µs 926ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000536 | 00000535 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000537 | 00000533 SST | [=============================================================================================] | 0b2631de1bd382d9-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000538 | 00000534 SST | [=============================================================================================] | 0b2631de1bd382d9-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T13:55:06.056202337Z -Commit 00000544 44 keys in 11ms 551µs 521ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000542 | 00000541 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000543 | 00000540 SST | [============================================================================================] | 0d39b29a0fc466cb-fbd699452dabe28d (0 MiB, fresh) - 2 | 00000544 | 00000539 SST | [============================================================================================] | 0d39b29a0fc466cb-fbd699452dabe28d (0 MiB, fresh) -Time 2026-02-25T13:55:19.425401163Z -Commit 00000550 249 keys in 13ms 83µs 441ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000548 | 00000547 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000549 | 00000545 SST | [================================================================================================] | 0324025233d27adf-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000550 | 00000546 SST | [================================================================================================] | 0324025233d27adf-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T14:04:11.243021411Z -Commit 00000556 44 keys in 15ms 568µs 454ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000554 | 00000553 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000555 | 00000551 SST | [============================================================================================] | 0d39b29a0fc466cb-fbd699452dabe28d (0 MiB, fresh) - 2 | 00000556 | 00000552 SST | [============================================================================================] | 0d39b29a0fc466cb-fbd699452dabe28d (0 MiB, fresh) -Time 2026-02-25T14:06:01.36044844Z -Commit 00000566 523 keys in 18ms 954µs 717ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000562 | 00000559 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000563 | 00000558 SST | [==================================================================================================] | 009c9b0a7bc32f1c-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00000564 | 00000557 SST | [==================================================================================================] | 009c9b0a7bc32f1c-ffe9c35c2954775d (0 MiB, fresh) - 3 | 00000565 | 00000560 SST | [=======================================] | 6767ae674ab8344c-ceecc59f553b3af6 (0 MiB, fresh) - 4 | 00000566 | 00000561 SST | [===========] | 03acbe2a91fcebfb-21aa8377e6b299bd (0 MiB, fresh) -Time 2026-02-25T14:08:45.922248429Z -Commit 00000576 13969 keys in 20ms 498µs 844ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000572 | 00000569 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000573 | 00000568 SST | [==================================================================================================] | 0000737dcecb7eaa-fffdd89e249d22e3 (1 MiB, fresh) - 2 | 00000574 | 00000567 SST | [==================================================================================================] | 0000737dcecb7eaa-fffdd89e249d22e3 (8 MiB, fresh) - 3 | 00000575 | 00000570 SST | [==================================================================================================] | 000c44c8cdecbe93-ff7b43523734bee3 (0 MiB, fresh) - 4 | 00000576 | 00000571 SST | [==================================================================================================] | 000a2d2335658bb7-ff946d61a0de23c1 (0 MiB, fresh) - 2 | 00000579 | Compaction: - 2 | 00000579 | MERGE (110324 keys): - 2 | 00000579 | 00000318 INPUT | [==================================================================================================] | 00010940d5ed71c9-ffffc8b261a62b07 - 2 | 00000579 | 00000317 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00000579 | 00000322 INPUT | O | 9c7813a252211112-9c7813a252211112 - 2 | 00000579 | 00000327 INPUT | [=================================================================================================] | 0017a54d1872e2f1-fc14d191b68d496a - 2 | 00000579 | 00000333 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000340 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000346 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000352 INPUT | [=================================================================================================] | 0017a54d1872e2f1-fc14d191b68d496a - 2 | 00000579 | 00000357 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 2 | 00000579 | 00000363 INPUT | [=================================================================================================] | 0017a54d1872e2f1-fc14d191b68d496a - 2 | 00000579 | 00000370 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000376 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000381 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000388 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000394 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000400 INPUT | [===============================================================================================] | 05e15432ae137cc7-fc14d191b68d496a - 2 | 00000579 | 00000405 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe5d9a156d03758 - 2 | 00000579 | 00000415 INPUT | [=============================================================================================] | 0d0ac2df242a2bbe-fee38f1e3332a6dc - 2 | 00000579 | 00000426 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 2 | 00000579 | 00000432 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 2 | 00000579 | 00000437 INPUT | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a - 2 | 00000579 | 00000443 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 2 | 00000579 | 00000450 INPUT | [=========================================================================================] | 0d39b29a0fc466cb-f52f51b87e2b8e94 - 2 | 00000579 | 00000456 INPUT | [==================================================================================================] | 00718038227ea379-ffe9c35c2954775d - 2 | 00000579 | 00000462 INPUT | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a - 2 | 00000579 | 00000468 INPUT | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a - 2 | 00000579 | 00000474 INPUT | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a - 2 | 00000579 | 00000479 INPUT | [=============================================================================================] | 0b2631de1bd382d9-fc14d191b68d496a - 2 | 00000579 | 00000485 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffd2128295feedf0 - 2 | 00000579 | 00000495 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe58d83ca25ec39 - 2 | 00000579 | 00000505 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fcd7793042f87515 - 2 | 00000579 | 00000512 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fcd7793042f87515 - 2 | 00000579 | 00000517 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00000579 | 00000527 INPUT | [================================================================================================] | 0324025233d27adf-fcd7793042f87515 - 2 | 00000579 | 00000534 INPUT | [=============================================================================================] | 0b2631de1bd382d9-fcd7793042f87515 - 2 | 00000579 | 00000539 INPUT | [============================================================================================] | 0d39b29a0fc466cb-fbd699452dabe28d - 2 | 00000579 | 00000546 INPUT | [================================================================================================] | 0324025233d27adf-fcd7793042f87515 - 2 | 00000579 | 00000552 INPUT | [============================================================================================] | 0d39b29a0fc466cb-fbd699452dabe28d - 2 | 00000579 | 00000557 INPUT | [==================================================================================================] | 009c9b0a7bc32f1c-ffe9c35c2954775d - 2 | 00000579 | 00000567 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffdd89e249d22e3 - 2 | 00000579 | 00000578 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (cold) - 2 | 00000579 | 00000577 OUTPUT | [==================================================================================================] | 00010940d5ed71c9-ffc0de098555bf6c (warm) -Time 2026-02-25T14:08:46.559353975Z -Commit 00000580 110324 keys in 126ms 227µs 43ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00000579 | 00000578 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (66 MiB, cold) - 2 | 00000579 | 00000577 SST | [==================================================================================================] | 00010940d5ed71c9-ffc0de098555bf6c (0 MiB, warm) - 2 | 00000579 | 00000317 00000318 00000322 00000327 00000333 00000340 00000346 00000352 00000357 00000363 00000370 00000376 00000381 00000388 00000394 OBSOLETE SST - 2 | 00000579 | 00000400 00000405 00000415 00000426 00000432 00000437 00000443 00000450 00000456 00000462 00000468 00000474 00000479 00000485 00000495 OBSOLETE SST - 2 | 00000579 | 00000505 00000512 00000517 00000527 00000534 00000539 00000546 00000552 00000557 00000567 OBSOLETE SST - | | 00000317 00000318 00000322 00000327 00000333 00000340 00000346 00000352 00000357 00000363 00000370 00000376 00000381 00000388 00000394 SST DELETED - | | 00000400 00000405 00000415 00000426 00000432 00000437 00000443 00000450 00000456 00000462 00000468 00000474 00000479 00000485 00000495 SST DELETED - | | 00000505 00000512 00000517 00000527 00000534 00000539 00000546 00000552 00000557 00000567 SST DELETED - | | 00000319 00000326 00000332 00000338 00000344 00000350 00000356 00000362 00000368 00000374 00000380 00000386 00000392 00000398 00000404 META DELETED - | | 00000412 00000422 00000430 00000436 00000442 00000448 00000454 00000460 00000466 00000472 00000478 00000484 00000492 00000501 00000510 META DELETED - | | 00000516 00000523 00000532 00000538 00000544 00000550 00000556 00000564 00000574 META DELETED -Time 2026-02-25T14:08:48.986722214Z -Commit 00000590 20193 keys in 20ms 581µs 410ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000586 | 00000583 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00000587 | 00000585 SST | [==================================================================================================] | 001aafc4dbc80802-ffd31efa18731bfe (0 MiB, fresh) - 2 | 00000588 | 00000581 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe906c4424c73e5 (15 MiB, fresh) - 3 | 00000589 | 00000584 SST | [==================================================================================================] | 01afd7d9d28b5291-ff3726b2fdc9ee3c (0 MiB, fresh) - 1 | 00000590 | 00000582 SST | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 (1 MiB, fresh) -Time 2026-02-25T14:09:27.964651735Z -Commit 00000600 23872 keys in 28ms 367µs 312ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000596 | 00000593 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000597 | 00000592 SST | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 (1 MiB, fresh) - 2 | 00000598 | 00000591 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe9c35c2954775d (16 MiB, fresh) - 4 | 00000599 | 00000595 SST | [==================================================================================================] | 0004de5e3469c610-ffe0dd8a35583e73 (0 MiB, fresh) - 3 | 00000600 | 00000594 SST | [==================================================================================================] | 00094ec1b3159398-fff22c0bd55ce8ee (0 MiB, fresh) -Time 2026-02-25T14:10:22.122007107Z -Commit 00000610 2840 keys in 20ms 634µs 581ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000606 | 00000603 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000607 | 00000602 SST | [==================================================================================================] | 005b36fb126383dd-ff862d954814ed6d (0 MiB, fresh) - 2 | 00000608 | 00000601 SST | [==================================================================================================] | 005b36fb126383dd-ff733eba11837a84 (6 MiB, fresh) - 3 | 00000609 | 00000604 SST | [================================================================================] | 0070eee7cc42232f-d128a99e33a9c7d7 (0 MiB, fresh) - 4 | 00000610 | 00000605 SST | [================================================================================================] | 02568b613218ddb9-fa40f7d272d555af (0 MiB, fresh) -Time 2026-02-25T14:10:42.82466983Z -Commit 00000616 89 keys in 11ms 930µs 606ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000614 | 00000613 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000615 | 00000612 SST | [==============================================================================================] | 08e37d68b2e40092-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000616 | 00000611 SST | [==============================================================================================] | 08e37d68b2e40092-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T14:17:33.567754793Z -Commit 00000622 87 keys in 11ms 446µs 470ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000620 | 00000619 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000621 | 00000618 SST | [==============================================================================================] | 08e37d68b2e40092-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000622 | 00000617 SST | [==============================================================================================] | 08e37d68b2e40092-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T14:18:43.451382931Z -Commit 00000632 1958 keys in 16ms 643µs 891ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000628 | 00000625 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000629 | 00000624 SST | [==================================================================================================] | 0006bb8b2247bad7-ffd2c282d6d8931c (0 MiB, fresh) - 2 | 00000630 | 00000623 SST | [==================================================================================================] | 0006bb8b2247bad7-ffd2c282d6d8931c (1 MiB, fresh) - 3 | 00000631 | 00000626 SST | [==============================================================================================] | 0757baf659dfc357-f9ad56b5649df643 (0 MiB, fresh) - 4 | 00000632 | 00000627 SST | [============================================================================================] | 0bfcb09abbcdde14-fac686623d11f53c (0 MiB, fresh) -Time 2026-02-25T14:19:14.839466613Z -Commit 00000642 371 keys in 18ms 140µs 885ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000638 | 00000635 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000639 | 00000633 SST | [=================================================================================================] | 03bfaf281cffcaa2-fee38f1e3332a6dc (0 MiB, fresh) - 2 | 00000640 | 00000634 SST | [=================================================================================================] | 03bfaf281cffcaa2-fee38f1e3332a6dc (0 MiB, fresh) - 3 | 00000641 | 00000636 SST | [=================================================================================================] | 044a20b1a1ea8e6a-fe212a538e132bb3 (0 MiB, fresh) - 4 | 00000642 | 00000637 SST | [========================================================================================] | 19bb766cdb04eabd-fdac997cbf24ab54 (0 MiB, fresh) -Time 2026-02-25T14:20:57.273495357Z -Commit 00000648 1634 keys in 12ms 378µs 989ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000646 | 00000645 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000647 | 00000643 SST | [==================================================================================================] | 0006bb8b2247bad7-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00000648 | 00000644 SST | [==================================================================================================] | 0006bb8b2247bad7-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T14:21:21.75424507Z -Commit 00000658 9132 keys in 22ms 174µs 998ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000654 | 00000651 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000655 | 00000650 SST | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 (0 MiB, fresh) - 2 | 00000656 | 00000649 SST | [==================================================================================================] | 0000737dcecb7eaa-ffd943595555775e (12 MiB, fresh) - 3 | 00000657 | 00000652 SST | [================================================================================================] | 00b2a1e42195424b-f913b45cc1801a95 (0 MiB, fresh) - 4 | 00000658 | 00000653 SST | [=================================================================================================] | 02ce72b38e4ef2c7-fe894c42bf4a7881 (0 MiB, fresh) -Time 2026-02-25T14:22:00.936758721Z -Commit 00000668 52783 keys in 23ms 141µs 834ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000664 | 00000661 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00000665 | 00000663 SST | [==================================================================================================] | 00117ef9c120c4f4-fffa05bbf935dd9a (0 MiB, fresh) - 2 | 00000666 | 00000659 SST | [==================================================================================================] | 00097bec3d0dba0a-fffa05bbf935dd9a (11 MiB, fresh) - 3 | 00000667 | 00000662 SST | [==================================================================================================] | 000970dc6be658de-ffffbfea70c68a3c (0 MiB, fresh) - 1 | 00000668 | 00000660 SST | [==================================================================================================] | 00097bec3d0dba0a-fffa05bbf935dd9a (1 MiB, fresh) -Time 2026-02-25T14:24:56.458653236Z -Commit 00000678 13182 keys in 19ms 376µs 636ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000674 | 00000671 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000675 | 00000670 SST | [==================================================================================================] | 0000737dcecb7eaa-fffa7cd5097e8a6a (1 MiB, fresh) - 2 | 00000676 | 00000669 SST | [==================================================================================================] | 0000737dcecb7eaa-fffa7cd5097e8a6a (6 MiB, fresh) - 3 | 00000677 | 00000673 SST | [==================================================================================================] | 0133654ae3b16bdb-ff7c39eb13dee887 (0 MiB, fresh) - 4 | 00000678 | 00000672 SST | [==================================================================================================] | 008ae3bdc7f6aa2a-ffda9c4174450ddc (0 MiB, fresh) - 2 | 00000681 | Compaction: - 2 | 00000681 | MERGE (124429 keys): - 2 | 00000681 | 00000578 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 - 2 | 00000681 | 00000577 INPUT | [==================================================================================================] | 00010940d5ed71c9-ffc0de098555bf6c - 2 | 00000681 | 00000581 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe906c4424c73e5 - 2 | 00000681 | 00000591 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe9c35c2954775d - 2 | 00000681 | 00000601 INPUT | [==================================================================================================] | 005b36fb126383dd-ff733eba11837a84 - 2 | 00000681 | 00000611 INPUT | [==============================================================================================] | 08e37d68b2e40092-fcd7793042f87515 - 2 | 00000681 | 00000617 INPUT | [==============================================================================================] | 08e37d68b2e40092-fcd7793042f87515 - 2 | 00000681 | 00000623 INPUT | [==================================================================================================] | 0006bb8b2247bad7-ffd2c282d6d8931c - 2 | 00000681 | 00000634 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fee38f1e3332a6dc - 2 | 00000681 | 00000644 INPUT | [==================================================================================================] | 0006bb8b2247bad7-ffe9c35c2954775d - 2 | 00000681 | 00000649 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffd943595555775e - 2 | 00000681 | 00000659 INPUT | [==================================================================================================] | 00097bec3d0dba0a-fffa05bbf935dd9a - 2 | 00000681 | 00000669 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffa7cd5097e8a6a - 2 | 00000681 | 00000680 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (cold) - 2 | 00000681 | 00000679 OUTPUT | [==================================================================================================] | 00097bec3d0dba0a-ffdf9a8e138a798f (warm) -Time 2026-02-25T14:24:56.950204504Z -Commit 00000682 124429 keys in 76ms 973µs 172ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00000681 | 00000680 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (74 MiB, cold) - 2 | 00000681 | 00000679 SST | [==================================================================================================] | 00097bec3d0dba0a-ffdf9a8e138a798f (1 MiB, warm) - 2 | 00000681 | 00000577 00000578 00000581 00000591 00000601 00000611 00000617 00000623 00000634 00000644 00000649 00000659 00000669 OBSOLETE SST - | | 00000577 00000578 00000581 00000591 00000601 00000611 00000617 00000623 00000634 00000644 00000649 00000659 00000669 SST DELETED - | | 00000579 00000588 00000598 00000608 00000616 00000622 00000630 00000640 00000648 00000656 00000666 00000676 META DELETED -Time 2026-02-25T14:25:03.822642287Z -Commit 00000692 12782 keys in 22ms 106µs 445ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000688 | 00000685 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000689 | 00000684 SST | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 (1 MiB, fresh) - 2 | 00000690 | 00000683 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe58d83ca25ec39 (15 MiB, fresh) - 3 | 00000691 | 00000686 SST | [==================================================================================================] | 000f9f241cc56eb2-ff78777f910ecc22 (0 MiB, fresh) - 4 | 00000692 | 00000687 SST | [==================================================================================================] | 012180821ded8066-ff6b423f94b9b6a6 (0 MiB, fresh) -Time 2026-02-25T14:25:44.923418004Z -Commit 00000698 48 keys in 9ms 950µs 348ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000696 | 00000695 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000697 | 00000694 SST | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 (0 MiB, fresh) - 2 | 00000698 | 00000693 SST | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 (0 MiB, fresh) -Time 2026-02-25T14:27:36.54522149Z -Commit 00000708 2933 keys in 20ms 36µs 613ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000704 | 00000701 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000705 | 00000700 SST | [==================================================================================================] | 005b36fb126383dd-ff862d954814ed6d (0 MiB, fresh) - 2 | 00000706 | 00000699 SST | [==================================================================================================] | 005b36fb126383dd-ff733eba11837a84 (8 MiB, fresh) - 3 | 00000707 | 00000703 SST | [=======================================================================] | 37aefbc484fe3430-ef3a54c90e50105c (0 MiB, fresh) - 4 | 00000708 | 00000702 SST | [=====================================================================] | 42bf6b21f68107fa-f81d6e00124295c5 (0 MiB, fresh) -Time 2026-02-25T14:28:46.465358582Z -Commit 00000718 12208 keys in 19ms 916µs 859ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000714 | 00000711 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000715 | 00000710 SST | [==================================================================================================] | 00226f4ec2547129-fff83386eaa859cc (1 MiB, fresh) - 2 | 00000716 | 00000709 SST | [==================================================================================================] | 00226f4ec2547129-fff83386eaa859cc (9 MiB, fresh) - 3 | 00000717 | 00000713 SST | [==================================================================================================] | 003a73a65ccad51b-ffce66792e4d9f76 (0 MiB, fresh) - 4 | 00000718 | 00000712 SST | [==================================================================================================] | 0065b35bad5d66a3-ff9103aea0711ef3 (0 MiB, fresh) -Time 2026-02-25T14:28:59.863369947Z -Commit 00000724 24 keys in 11ms 354µs 171ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000722 | 00000721 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000723 | 00000719 SST | [=========================================================================================] | 15f170eb957b4d22-fbb265ba641256f5 (0 MiB, fresh) - 2 | 00000724 | 00000720 SST | [=========================================================================================] | 15f170eb957b4d22-fbb265ba641256f5 (0 MiB, fresh) -Time 2026-02-25T14:37:35.482886883Z -Commit 00000734 1530 keys in 18ms 875µs 623ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000730 | 00000727 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000731 | 00000726 SST | [==================================================================================================] | 004223a870e45b5a-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00000732 | 00000725 SST | [==================================================================================================] | 004223a870e45b5a-ffe9c35c2954775d (0 MiB, fresh) - 3 | 00000733 | 00000728 SST | [=========================================================================================] | 024f2fca1a29a415-e6e4cfa6d474ebab (0 MiB, fresh) - 4 | 00000734 | 00000729 SST | [============================================================================================] | 0eae7ca42b7cf210-fd33cffcadbae671 (0 MiB, fresh) -Time 2026-02-25T14:38:26.548000408Z -Commit 00000740 235 keys in 11ms 811µs 410ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000738 | 00000737 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000739 | 00000735 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000740 | 00000736 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T14:38:48.187025643Z -Commit 00000746 235 keys in 12ms 802µs 607ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000744 | 00000743 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000745 | 00000741 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000746 | 00000742 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T14:40:14.251112429Z -Commit 00000756 1569 keys in 16ms 221µs 705ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000752 | 00000749 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000753 | 00000747 SST | [==================================================================================================] | 008ae3bdc7f6aa2a-fe815a8afe94cb19 (0 MiB, fresh) - 2 | 00000754 | 00000748 SST | [==================================================================================================] | 008ae3bdc7f6aa2a-fe815a8afe94cb19 (0 MiB, fresh) - 3 | 00000755 | 00000750 SST | [=============================================================================================] | 06d12c52ccb55e96-f7d8b3c3c701aeaa (0 MiB, fresh) - 4 | 00000756 | 00000751 SST | [============================================================================================] | 0d150d53d698f87c-fc594a951c61abad (0 MiB, fresh) -Time 2026-02-25T14:41:35.079893007Z -Commit 00000762 161 keys in 11ms 29µs 372ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000760 | 00000759 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000761 | 00000758 SST | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 (0 MiB, fresh) - 2 | 00000762 | 00000757 SST | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-25T14:41:51.687568732Z -Commit 00000768 4 keys in 10ms 875µs 567ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000766 | 00000765 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000767 | 00000763 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00000768 | 00000764 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-02-25T14:42:28.239764025Z -Commit 00000774 155 keys in 16ms 852µs 637ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000772 | 00000771 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000773 | 00000770 SST | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 (0 MiB, fresh) - 2 | 00000774 | 00000769 SST | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-25T14:43:13.468686561Z -Commit 00000780 1077 keys in 11ms 533µs 484ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000778 | 00000777 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000779 | 00000775 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00000780 | 00000776 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-02-25T14:44:24.685684241Z -Commit 00000786 534 keys in 12ms 221µs 915ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000784 | 00000783 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000785 | 00000782 SST | [==================================================================================================] | 007e491608ee6df0-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00000786 | 00000781 SST | [==================================================================================================] | 007e491608ee6df0-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T14:45:02.879597992Z -Commit 00000792 211 keys in 13ms 139µs 764ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000790 | 00000789 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000791 | 00000788 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000792 | 00000787 SST | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T14:45:09.633008134Z -Commit 00000798 4 keys in 10ms 873µs 431ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000796 | 00000795 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000797 | 00000793 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00000798 | 00000794 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-02-25T14:47:09.356389005Z -Commit 00000804 211 keys in 11ms 773µs 654ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000802 | 00000801 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000803 | 00000799 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000804 | 00000800 SST | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T14:47:31.648488351Z -Commit 00000814 2285 keys in 21ms 250µs 518ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000810 | 00000807 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000811 | 00000805 SST | [==================================================================================================] | 00247993547b8bb1-ffa072d986cb58f8 (1 MiB, fresh) - 1 | 00000812 | 00000806 SST | [==================================================================================================] | 00247993547b8bb1-ffa072d986cb58f8 (0 MiB, fresh) - 3 | 00000813 | 00000808 SST | [==================================================================================================] | 00d47da0fc173703-fe9f0d92f23b31ba (0 MiB, fresh) - 4 | 00000814 | 00000809 SST | [===========================================================================================] | 11773ed3a779d769-fd233df9216755b7 (0 MiB, fresh) -Time 2026-02-25T14:48:10.554914909Z -Commit 00000824 874 keys in 16ms 500µs 473ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000820 | 00000817 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00000821 | 00000819 SST | [==================] | 62cfe301a4cf23a0-932cd8f17718b03f (0 MiB, fresh) - 3 | 00000822 | 00000818 SST | [=================================================================================] | 061198e51350dcff-d8b183bff753367b (0 MiB, fresh) - 2 | 00000823 | 00000815 SST | [==================================================================================================] | 01eaeb16ac669352-ff382f713f6ec8d6 (0 MiB, fresh) - 1 | 00000824 | 00000816 SST | [==================================================================================================] | 01cb3d717c7f7124-ff382f713f6ec8d6 (0 MiB, fresh) -Time 2026-02-25T14:48:22.038724741Z -Commit 00000830 4 keys in 11ms 455µs 72ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000828 | 00000827 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000829 | 00000825 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00000830 | 00000826 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-02-25T14:48:24.102216152Z -Commit 00000836 4 keys in 12ms 179µs 140ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000834 | 00000833 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000835 | 00000831 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) - 2 | 00000836 | 00000832 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) -Time 2026-02-25T14:48:43.608112094Z -Commit 00000842 16 keys in 11ms 496µs 724ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000840 | 00000839 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000841 | 00000838 SST | [===========================================================] | 6531a33b998d3a59-fda1976e324b2264 (0 MiB, fresh) - 2 | 00000842 | 00000837 SST | [===========================================] | 663e32fb26fe72c8-d5de3d95c4489feb (0 MiB, fresh) -Time 2026-02-25T14:49:06.53801468Z -Commit 00000848 51 keys in 11ms 587µs 372ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000846 | 00000845 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000847 | 00000843 SST | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 (0 MiB, fresh) - 2 | 00000848 | 00000844 SST | [=============================================================================================] | 0c8629489f3ed99a-fccfa317e4ce225d (0 MiB, fresh) -Time 2026-02-25T14:51:35.690764498Z -Commit 00000854 328 keys in 13ms 203µs 229ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000852 | 00000851 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000853 | 00000850 SST | [=================================================================================================] | 03bfaf281cffcaa2-ff9103aea0711ef3 (0 MiB, fresh) - 2 | 00000854 | 00000849 SST | [=================================================================================================] | 03bfaf281cffcaa2-ff9103aea0711ef3 (0 MiB, fresh) -Time 2026-02-25T14:57:37.804710474Z -Commit 00000864 2439 keys in 14ms 775µs 29ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000860 | 00000857 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000861 | 00000855 SST | [==================================================================================================] | 005b36fb126383dd-ff67d440bfb64d44 (0 MiB, fresh) - 3 | 00000862 | 00000858 SST | [=============================================================] | 19b0fbf9e55854fe-ba2bd0a77a6c92d6 (0 MiB, fresh) - 4 | 00000863 | 00000859 SST | [==================================================================================] | 084a68774cb743b2-dc3f3c2321f82456 (0 MiB, fresh) - 1 | 00000864 | 00000856 SST | [==================================================================================================] | 005b36fb126383dd-ff862d954814ed6d (0 MiB, fresh) -Time 2026-02-25T14:57:41.234662636Z -Commit 00000870 81 keys in 8ms 816µs 199ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000868 | 00000867 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000869 | 00000866 SST | [==============================================================================================] | 084a68774cb743b2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000870 | 00000865 SST | [==============================================================================================] | 084a68774cb743b2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T15:00:53.25019339Z -Commit 00000876 290 keys in 11ms 18µs 525ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000874 | 00000873 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000875 | 00000871 SST | [================================================================================================] | 062250cb13158f64-ff381d5a482df3e4 (0 MiB, fresh) - 2 | 00000876 | 00000872 SST | [===============================================================================================] | 06628945200f2f5d-fc19f4c64602094d (0 MiB, fresh) -Time 2026-02-25T15:02:32.487861481Z -Commit 00000882 98 keys in 11ms 650µs 477ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000880 | 00000879 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000881 | 00000877 SST | [==============================================================================================] | 08e37d68b2e40092-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000882 | 00000878 SST | [==============================================================================================] | 08e37d68b2e40092-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T15:03:00.132014411Z -Commit 00000888 927 keys in 12ms 872µs 993ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000886 | 00000885 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000887 | 00000883 SST | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 (0 MiB, fresh) - 2 | 00000888 | 00000884 SST | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 (0 MiB, fresh) -Time 2026-02-25T15:03:33.234589354Z -Commit 00000894 85 keys in 13ms 678µs 792ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000892 | 00000891 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000893 | 00000889 SST | [===============================================================================================] | 08e37d68b2e40092-ff9103aea0711ef3 (0 MiB, fresh) - 2 | 00000894 | 00000890 SST | [===============================================================================================] | 08e37d68b2e40092-ff9103aea0711ef3 (0 MiB, fresh) -Time 2026-02-25T15:04:04.691912121Z -Commit 00000904 813 keys in 14ms 769µs 265ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000900 | 00000897 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000901 | 00000895 SST | [==================================================================================================] | 01eaeb16ac669352-fe1e70df835294dd (0 MiB, fresh) - 2 | 00000902 | 00000896 SST | [==================================================================================================] | 01eaeb16ac669352-fe1e70df835294dd (0 MiB, fresh) - 4 | 00000903 | 00000899 SST | [=========================================================================================] | 0894dc47b9ea2f49-f08607d005509dd0 (0 MiB, fresh) - 3 | 00000904 | 00000898 SST | [======================================================================================] | 023f5fd2764ab711-dfae75dc9a416295 (0 MiB, fresh) -Time 2026-02-25T15:04:42.418357975Z -Commit 00000910 75 keys in 11ms 516µs 213ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000908 | 00000907 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000909 | 00000905 SST | [==============================================================================================] | 084a68774cb743b2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00000910 | 00000906 SST | [==============================================================================================] | 084a68774cb743b2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T15:05:13.137691565Z -Commit 00000916 894 keys in 13ms 711µs 213ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000914 | 00000913 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000915 | 00000911 SST | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 (0 MiB, fresh) - 2 | 00000916 | 00000912 SST | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 (0 MiB, fresh) -Time 2026-02-25T15:05:29.801360394Z -Commit 00000922 895 keys in 18ms 225µs 241ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000920 | 00000919 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000921 | 00000918 SST | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 (0 MiB, fresh) - 2 | 00000922 | 00000917 SST | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 (0 MiB, fresh) -Time 2026-02-25T15:05:39.953279445Z -Commit 00000928 222 keys in 13ms 91µs 401ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000926 | 00000925 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00000927 | 00000924 SST | [===============================================================================================] | 099e39488e5906e6-ff433410f29b556c (0 MiB, fresh) - 1 | 00000928 | 00000923 SST | [=================================================================================================] | 02f67c90dfcb02b4-ff433410f29b556c (0 MiB, fresh) -Time 2026-02-25T15:08:15.92258229Z -Commit 00000934 39 keys in 12ms 962µs 1ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000932 | 00000931 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000933 | 00000929 SST | [================================================================================================] | 06dbae20b684a58f-ffb97dda81fa6cfa (0 MiB, fresh) - 2 | 00000934 | 00000930 SST | [================================================================================================] | 06dbae20b684a58f-ffb97dda81fa6cfa (0 MiB, fresh) -Time 2026-02-25T15:08:23.594929837Z -Commit 00000944 216 keys in 312ms 444µs 120ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000940 | 00000937 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000941 | 00000935 SST | [==============================================================================================] | 0275d585b88e455d-f50ed83bfbe2f6d8 (0 MiB, fresh) - 2 | 00000942 | 00000936 SST | [==============================================================================================] | 0275d585b88e455d-f50ed83bfbe2f6d8 (0 MiB, fresh) - 4 | 00000943 | 00000939 SST | [=======================================================================] | 0275d585b88e455d-b9cf90ada838436c (0 MiB, fresh) - 3 | 00000944 | 00000938 SST | [===================================================================] | 34d45fcc00b088ad-e2f1c47397df05eb (0 MiB, fresh) -Time 2026-02-25T15:08:50.27267638Z -Commit 00000950 229 keys in 8ms 525µs 731ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000948 | 00000947 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000949 | 00000946 SST | [=================================================================================================] | 04da11712d9050bc-ff9103aea0711ef3 (0 MiB, fresh) - 2 | 00000950 | 00000945 SST | [=================================================================================================] | 04da11712d9050bc-ff9103aea0711ef3 (0 MiB, fresh) -Time 2026-02-25T15:22:08.06497296Z -Commit 00000956 145 keys in 11ms 425µs 496ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000954 | 00000953 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000955 | 00000951 SST | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 (0 MiB, fresh) - 2 | 00000956 | 00000952 SST | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-25T15:23:53.197003265Z -Commit 00000962 4 keys in 10ms 670µs 275ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000960 | 00000959 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000961 | 00000957 SST | O | 79c9c37a81aff7f3-79c9c37a81aff7f3 (0 MiB, fresh) - 2 | 00000962 | 00000958 SST | O | 79c9c37a81aff7f3-79c9c37a81aff7f3 (0 MiB, fresh) -Time 2026-02-25T15:30:54.731468251Z -Commit 00000968 105 keys in 17ms 342µs 622ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000966 | 00000965 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000967 | 00000963 SST | [=============================================================================================] | 03d3bdca710f7bbc-f4cb5a50cc3f0383 (0 MiB, fresh) - 2 | 00000968 | 00000964 SST | [=============================================================================================] | 03d3bdca710f7bbc-f4cb5a50cc3f0383 (0 MiB, fresh) -Time 2026-02-25T15:33:26.008615117Z -Commit 00000974 228 keys in 13ms 912µs 183ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000972 | 00000971 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000973 | 00000969 SST | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 (0 MiB, fresh) - 2 | 00000974 | 00000970 SST | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-25T15:34:22.290990133Z -Commit 00000980 474 keys in 11ms 826µs 736ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000978 | 00000977 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000979 | 00000976 SST | [=================================================================================================] | 03d3bdca710f7bbc-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00000980 | 00000975 SST | [=================================================================================================] | 03d3bdca710f7bbc-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T15:34:31.995625885Z -Commit 00000986 220 keys in 11ms 425µs 610ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000984 | 00000983 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000985 | 00000981 SST | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 (0 MiB, fresh) - 2 | 00000986 | 00000982 SST | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-25T15:34:57.267215997Z -Commit 00000992 220 keys in 13ms 935µs 732ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000990 | 00000989 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000991 | 00000988 SST | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 (0 MiB, fresh) - 2 | 00000992 | 00000987 SST | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-25T15:35:00.651926782Z -Commit 00000998 206 keys in 11ms 793µs 571ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00000996 | 00000995 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00000997 | 00000994 SST | [================================================================================================] | 04ee6d9216423281-fd523bf45febe205 (0 MiB, fresh) - 2 | 00000998 | 00000993 SST | [================================================================================================] | 04ee6d9216423281-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-25T15:35:46.799021485Z -Commit 00001004 4 keys in 11ms 197µs 228ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001002 | 00001001 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001003 | 00000999 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) - 2 | 00001004 | 00001000 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) -Time 2026-02-25T15:36:14.167955332Z -Commit 00001010 4 keys in 10ms 615µs 404ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001008 | 00001007 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001009 | 00001005 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00001010 | 00001006 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-02-25T15:37:58.120231889Z -Commit 00001016 533 keys in 18ms 864µs 412ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001014 | 00001013 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001015 | 00001012 SST | [=================================================================================================] | 03bfaf281cffcaa2-ff9103aea0711ef3 (0 MiB, fresh) - 2 | 00001016 | 00001011 SST | [=================================================================================================] | 03bfaf281cffcaa2-ff9103aea0711ef3 (0 MiB, fresh) -Time 2026-02-25T15:54:28.203666053Z -Commit 00001026 35542 keys in 23ms 476µs 722ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001022 | 00001019 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001023 | 00001020 SST | [==================================================================================================] | 001159b6a37810de-fff9e366f5aba17f (0 MiB, fresh) - 3 | 00001024 | 00001021 SST | [==================================================================================================] | 00168f4169c63dd8-ffffd846ae0c0918 (0 MiB, fresh) - 2 | 00001025 | 00001017 SST | [==================================================================================================] | 001159b6a37810de-fff9e366f5aba17f (3 MiB, fresh) - 1 | 00001026 | 00001018 SST | [==================================================================================================] | 001159b6a37810de-fff9e366f5aba17f (1 MiB, fresh) -Time 2026-02-25T15:54:39.808404689Z -Commit 00001036 17612 keys in 20ms 904µs 292ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001032 | 00001029 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001033 | 00001030 SST | [==================================================================================================] | 001eafe3455bd2f8-ffff0109cd16cbc3 (0 MiB, fresh) - 1 | 00001034 | 00001028 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff0109cd16cbc3 (1 MiB, fresh) - 2 | 00001035 | 00001027 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff0109cd16cbc3 (8 MiB, fresh) - 3 | 00001036 | 00001031 SST | [==================================================================================================] | 0016e8ed24578c4d-ffe14c017a8ecdd3 (0 MiB, fresh) -Time 2026-02-25T15:55:16.128653329Z -Commit 00001046 9815 keys in 19ms 67µs 403ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001042 | 00001039 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001043 | 00001038 SST | [==================================================================================================] | 0016e92bcf93ce86-ffd06f3febba20d5 (1 MiB, fresh) - 2 | 00001044 | 00001037 SST | [==================================================================================================] | 0016e92bcf93ce86-ffd06f3febba20d5 (3 MiB, fresh) - 3 | 00001045 | 00001040 SST | [==================================================================================================] | 003c4b0c580c4865-ff87fde298ae27d2 (0 MiB, fresh) - 4 | 00001046 | 00001041 SST | [==================================================================================================] | 00d9c5c6c325e8b7-ff31f39cebd0bbfc (0 MiB, fresh) -Time 2026-02-25T15:55:58.24870238Z -Commit 00001052 1905 keys in 11ms 864µs 427ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001050 | 00001049 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001051 | 00001047 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001052 | 00001048 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-02-25T16:12:36.283151757Z -Commit 00001058 403 keys in 15ms 281µs 496ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001056 | 00001055 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001057 | 00001053 SST | [=================================================================================================] | 03acb2c22932405e-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001058 | 00001054 SST | [=================================================================================================] | 03acb2c22932405e-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T16:12:49.471032901Z -Commit 00001064 135 keys in 12ms 105µs 244ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001062 | 00001061 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001063 | 00001060 SST | [================================================================================================] | 03acb2c22932405e-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001064 | 00001059 SST | [================================================================================================] | 03acb2c22932405e-fc6d741afd598c1b (0 MiB, fresh) -Time 2026-02-25T16:13:19.682889942Z -Commit 00001070 1824 keys in 14ms 45µs 94ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001068 | 00001067 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001069 | 00001065 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001070 | 00001066 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-02-25T16:13:29.017831394Z -Commit 00001076 1085 keys in 10ms 182µs 691ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001074 | 00001073 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001075 | 00001072 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 2 | 00001076 | 00001071 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-02-25T16:13:36.19523878Z -Commit 00001082 48 keys in 12ms 425µs 812ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001080 | 00001079 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001081 | 00001077 SST | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 (0 MiB, fresh) - 2 | 00001082 | 00001078 SST | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 (0 MiB, fresh) -Time 2026-02-25T16:14:19.304583203Z -Commit 00001092 145584 keys in 32ms 413µs 577ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001088 | 00001085 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001089 | 00001087 SST | [==================================================================================================] | 00005b386d02964f-fffc9125d1395931 (1 MiB, fresh) - 3 | 00001090 | 00001086 SST | [==================================================================================================] | 0000cff66df52a21-fffdddab2ff161f9 (1 MiB, fresh) - 2 | 00001091 | 00001083 SST | [==================================================================================================] | 00005b386d02964f-fffc9125d1395931 (23 MiB, fresh) - 1 | 00001092 | 00001084 SST | [==================================================================================================] | 00005b386d02964f-fffc9125d1395931 (4 MiB, fresh) - 2 | 00001095 | Compaction: - 2 | 00001095 | MERGE (167336 keys): - 2 | 00001095 | 00000680 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 - 2 | 00001095 | 00000679 INPUT | [==================================================================================================] | 00097bec3d0dba0a-ffdf9a8e138a798f - 2 | 00001095 | 00000683 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe58d83ca25ec39 - 2 | 00001095 | 00000693 INPUT | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 - 2 | 00001095 | 00000699 INPUT | [==================================================================================================] | 005b36fb126383dd-ff733eba11837a84 - 2 | 00001095 | 00000709 INPUT | [==================================================================================================] | 00226f4ec2547129-fff83386eaa859cc - 2 | 00001095 | 00000720 INPUT | [=========================================================================================] | 15f170eb957b4d22-fbb265ba641256f5 - 2 | 00001095 | 00000725 INPUT | [==================================================================================================] | 004223a870e45b5a-ffe9c35c2954775d - 2 | 00001095 | 00000736 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 2 | 00001095 | 00000742 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 2 | 00001095 | 00000748 INPUT | [==================================================================================================] | 008ae3bdc7f6aa2a-fe815a8afe94cb19 - 2 | 00001095 | 00000757 INPUT | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 - 2 | 00001095 | 00000764 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00001095 | 00000769 INPUT | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 - 2 | 00001095 | 00000775 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001095 | 00000781 INPUT | [==================================================================================================] | 007e491608ee6df0-ffe9c35c2954775d - 2 | 00001095 | 00000787 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a - 2 | 00001095 | 00000794 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00001095 | 00000800 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a - 2 | 00001095 | 00000805 INPUT | [==================================================================================================] | 00247993547b8bb1-ffa072d986cb58f8 - 2 | 00001095 | 00000815 INPUT | [==================================================================================================] | 01eaeb16ac669352-ff382f713f6ec8d6 - 2 | 00001095 | 00000826 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00001095 | 00000832 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 2 | 00001095 | 00000837 INPUT | [===========================================] | 663e32fb26fe72c8-d5de3d95c4489feb - 2 | 00001095 | 00000844 INPUT | [=============================================================================================] | 0c8629489f3ed99a-fccfa317e4ce225d - 2 | 00001095 | 00000849 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-ff9103aea0711ef3 - 2 | 00001095 | 00000855 INPUT | [==================================================================================================] | 005b36fb126383dd-ff67d440bfb64d44 - 2 | 00001095 | 00000865 INPUT | [==============================================================================================] | 084a68774cb743b2-fc14d191b68d496a - 2 | 00001095 | 00000872 INPUT | [===============================================================================================] | 06628945200f2f5d-fc19f4c64602094d - 2 | 00001095 | 00000878 INPUT | [==============================================================================================] | 08e37d68b2e40092-fc14d191b68d496a - 2 | 00001095 | 00000884 INPUT | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 - 2 | 00001095 | 00000890 INPUT | [===============================================================================================] | 08e37d68b2e40092-ff9103aea0711ef3 - 2 | 00001095 | 00000896 INPUT | [==================================================================================================] | 01eaeb16ac669352-fe1e70df835294dd - 2 | 00001095 | 00000906 INPUT | [==============================================================================================] | 084a68774cb743b2-fc14d191b68d496a - 2 | 00001095 | 00000912 INPUT | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 - 2 | 00001095 | 00000917 INPUT | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 - 2 | 00001095 | 00000924 INPUT | [===============================================================================================] | 099e39488e5906e6-ff433410f29b556c - 2 | 00001095 | 00000930 INPUT | [================================================================================================] | 06dbae20b684a58f-ffb97dda81fa6cfa - 2 | 00001095 | 00000936 INPUT | [==============================================================================================] | 0275d585b88e455d-f50ed83bfbe2f6d8 - 2 | 00001095 | 00000945 INPUT | [=================================================================================================] | 04da11712d9050bc-ff9103aea0711ef3 - 2 | 00001095 | 00000952 INPUT | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 - 2 | 00001095 | 00000958 INPUT | O | 79c9c37a81aff7f3-79c9c37a81aff7f3 - 2 | 00001095 | 00000964 INPUT | [=============================================================================================] | 03d3bdca710f7bbc-f4cb5a50cc3f0383 - 2 | 00001095 | 00000970 INPUT | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 - 2 | 00001095 | 00000975 INPUT | [=================================================================================================] | 03d3bdca710f7bbc-ffe9c35c2954775d - 2 | 00001095 | 00000982 INPUT | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 - 2 | 00001095 | 00000987 INPUT | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 - 2 | 00001095 | 00000993 INPUT | [================================================================================================] | 04ee6d9216423281-fd523bf45febe205 - 2 | 00001095 | 00001000 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 2 | 00001095 | 00001006 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00001095 | 00001011 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-ff9103aea0711ef3 - 2 | 00001095 | 00001017 INPUT | [==================================================================================================] | 001159b6a37810de-fff9e366f5aba17f - 2 | 00001095 | 00001027 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff0109cd16cbc3 - 2 | 00001095 | 00001037 INPUT | [==================================================================================================] | 0016e92bcf93ce86-ffd06f3febba20d5 - 2 | 00001095 | 00001047 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001095 | 00001054 INPUT | [=================================================================================================] | 03acb2c22932405e-ffe9c35c2954775d - 2 | 00001095 | 00001059 INPUT | [================================================================================================] | 03acb2c22932405e-fc6d741afd598c1b - 2 | 00001095 | 00001065 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001095 | 00001071 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001095 | 00001078 INPUT | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 - 2 | 00001095 | 00001083 INPUT | [==================================================================================================] | 00005b386d02964f-fffc9125d1395931 - 2 | 00001095 | 00001094 OUTPUT | [==================================================================================================] | 00005b386d02964f-ffffc8b261a62b07 (cold) - 2 | 00001095 | 00001093 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-02-25T16:14:19.991615605Z -Commit 00001096 167336 keys in 92ms 470µs 141ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00001095 | 00001094 SST | [==================================================================================================] | 00005b386d02964f-ffffc8b261a62b07 (80 MiB, cold) - 2 | 00001095 | 00001093 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (21 MiB, warm) - 2 | 00001095 | 00000679 00000680 00000683 00000693 00000699 00000709 00000720 00000725 00000736 00000742 00000748 00000757 00000764 00000769 00000775 OBSOLETE SST - 2 | 00001095 | 00000781 00000787 00000794 00000800 00000805 00000815 00000826 00000832 00000837 00000844 00000849 00000855 00000865 00000872 00000878 OBSOLETE SST - 2 | 00001095 | 00000884 00000890 00000896 00000906 00000912 00000917 00000924 00000930 00000936 00000945 00000952 00000958 00000964 00000970 00000975 OBSOLETE SST - 2 | 00001095 | 00000982 00000987 00000993 00001000 00001006 00001011 00001017 00001027 00001037 00001047 00001054 00001059 00001065 00001071 00001078 OBSOLETE SST - 2 | 00001095 | 00001083 OBSOLETE SST - | | 00000679 00000680 00000683 00000693 00000699 00000709 00000720 00000725 00000736 00000742 00000748 00000757 00000764 00000769 00000775 SST DELETED - | | 00000781 00000787 00000794 00000800 00000805 00000815 00000826 00000832 00000837 00000844 00000849 00000855 00000865 00000872 00000878 SST DELETED - | | 00000884 00000890 00000896 00000906 00000912 00000917 00000924 00000930 00000936 00000945 00000952 00000958 00000964 00000970 00000975 SST DELETED - | | 00000982 00000987 00000993 00001000 00001006 00001011 00001017 00001027 00001037 00001047 00001054 00001059 00001065 00001071 00001078 SST DELETED - | | 00001083 SST DELETED - | | 00000681 00000690 00000698 00000706 00000716 00000724 00000732 00000740 00000746 00000754 00000762 00000768 00000774 00000779 00000786 META DELETED - | | 00000792 00000798 00000804 00000811 00000823 00000830 00000836 00000842 00000848 00000854 00000861 00000870 00000876 00000882 00000888 META DELETED - | | 00000894 00000902 00000910 00000916 00000922 00000927 00000934 00000942 00000950 00000956 00000962 00000968 00000974 00000980 00000986 META DELETED - | | 00000992 00000998 00001004 00001010 00001016 00001025 00001035 00001044 00001051 00001058 00001064 00001069 00001076 00001082 00001091 META DELETED -Time 2026-02-25T16:14:24.061581011Z -Commit 00001102 252 keys in 11ms 400µs 860ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001100 | 00001099 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001101 | 00001097 SST | [================================================================================================] | 078bc5f1f1834908-ffd50c50ed762576 (0 MiB, fresh) - 2 | 00001102 | 00001098 SST | [================================================================================================] | 078bc5f1f1834908-ffd50c50ed762576 (0 MiB, fresh) -Time 2026-02-25T16:14:42.585054698Z -Commit 00001108 3411 keys in 10ms 457µs 197ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001106 | 00001105 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001107 | 00001103 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001108 | 00001104 SST | [==================================================================================================] | 00010940d5ed71c9-ffc353ea71dbad3d (1 MiB, fresh) -Time 2026-02-25T16:16:12.772186299Z -Commit 00001114 3165 keys in 13ms 429µs 350ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001112 | 00001111 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001113 | 00001109 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001114 | 00001110 SST | [==================================================================================================] | 000801e97f7ace52-ffc353ea71dbad3d (1 MiB, fresh) -Time 2026-02-25T16:16:20.947275665Z -Commit 00001120 1289 keys in 9ms 812µs 617ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001118 | 00001117 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001119 | 00001116 SST | [==================================================================================================] | 000801e97f7ace52-ffc353ea71dbad3d (0 MiB, fresh) - 2 | 00001120 | 00001115 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-02-25T16:16:28.411459312Z -Commit 00001126 18 keys in 11ms 460µs 751ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001124 | 00001123 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001125 | 00001121 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) - 2 | 00001126 | 00001122 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T16:19:06.302995853Z -Commit 00001132 127 keys in 10ms 65µs 817ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001130 | 00001129 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001131 | 00001128 SST | [============================================================================================] | 0ec868943daaaae2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001132 | 00001127 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc2a0864706a9eba (0 MiB, fresh) -Time 2026-02-25T16:44:19.838785678Z -Commit 00001138 153 keys in 11ms 788µs 337ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001136 | 00001135 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001137 | 00001133 SST | [===============================================================================================] | 06622b1c7d90360e-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001138 | 00001134 SST | [===============================================================================================] | 06622b1c7d90360e-fc2a0864706a9eba (0 MiB, fresh) -Time 2026-02-25T16:49:23.526922528Z -Commit 00001144 161 keys in 11ms 672µs 255ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001142 | 00001141 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001143 | 00001140 SST | [===============================================================================================] | 06622b1c7d90360e-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001144 | 00001139 SST | [===============================================================================================] | 06622b1c7d90360e-fc2a0864706a9eba (0 MiB, fresh) -Time 2026-02-25T16:51:20.269378405Z -Commit 00001154 270 keys in 15ms 921µs 997ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001150 | 00001147 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001151 | 00001145 SST | [===============================================================================================] | 05ea56c5fdae1289-fc14d191b68d496a (0 MiB, fresh) - 1 | 00001152 | 00001146 SST | [=================================================================================================] | 03971ae5a87f78a3-ff663d159104ea30 (0 MiB, fresh) - 3 | 00001153 | 00001148 SST | [======================================================================================] | 13198b5daf935429-f0e35a9b09e21fbf (0 MiB, fresh) - 4 | 00001154 | 00001149 SST | [================================================] | 1f486233587fb538-9d876c3060839eee (0 MiB, fresh) -Time 2026-02-25T16:51:30.32839112Z -Commit 00001160 221 keys in 12ms 166µs 695ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001158 | 00001157 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001159 | 00001156 SST | [================================================================================================] | 06839a6e599b7816-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001160 | 00001155 SST | [================================================================================================] | 074d8d4a702814f6-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T16:51:43.538224837Z -Commit 00001170 2655 keys in 16ms 460µs 245ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001166 | 00001163 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001167 | 00001162 SST | [==================================================================================================] | 000801e97f7ace52-ffb736294b507973 (0 MiB, fresh) - 2 | 00001168 | 00001161 SST | [=================================================================================================] | 005b36fb126383dd-fc14d191b68d496a (0 MiB, fresh) - 3 | 00001169 | 00001164 SST | [================================================] | 5b9a206578414f19-d7afe0daa70790bc (0 MiB, fresh) - 4 | 00001170 | 00001165 SST | [===========================================] | 30a369076cf92835-a03e5bc0815febf8 (0 MiB, fresh) -Time 2026-02-25T16:51:48.664997144Z -Commit 00001176 73 keys in 12ms 314µs 276ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001174 | 00001173 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001175 | 00001171 SST | [============================================================================================] | 0ec868943daaaae2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001176 | 00001172 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T16:53:21.144575939Z -Commit 00001182 73 keys in 16ms 547µs 306ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001180 | 00001179 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001181 | 00001178 SST | [============================================================================================] | 0ec868943daaaae2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001182 | 00001177 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T16:53:30.730646Z -Commit 00001188 4 keys in 12ms 558µs 540ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001186 | 00001185 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001187 | 00001183 SST | O | 8b1938d8de66eeb5-8b1938d8de66eeb5 (0 MiB, fresh) - 2 | 00001188 | 00001184 SST | O | 8b1938d8de66eeb5-8b1938d8de66eeb5 (0 MiB, fresh) -Time 2026-02-25T16:53:53.344797832Z -Commit 00001194 278 keys in 13ms 608µs 228ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001192 | 00001191 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001193 | 00001189 SST | [==================================================================================================] | 00858af2653b1f32-fe9a7a0f20fcfa7f (0 MiB, fresh) - 2 | 00001194 | 00001190 SST | [=============================================================================================] | 08a81189bd4aa218-fa929381403932d4 (0 MiB, fresh) -Time 2026-02-25T16:54:17.135740704Z -Commit 00001204 54342 keys in 23ms 145µs 744ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001200 | 00001197 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001201 | 00001198 SST | [==================================================================================================] | 001aeb4ff8dd6fad-fff75fc6a55eaa34 (0 MiB, fresh) - 3 | 00001202 | 00001199 SST | [==================================================================================================] | 0013d47f8625cc1c-fffe6cdf82c167a0 (0 MiB, fresh) - 2 | 00001203 | 00001195 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (10 MiB, fresh) - 1 | 00001204 | 00001196 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (3 MiB, fresh) -Time 2026-02-25T16:56:19.231208077Z -Commit 00001214 680 keys in 17ms 5µs 848ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001210 | 00001207 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001211 | 00001205 SST | [==================================================================================================] | 019e9b616b0f8c2d-ffe64bbd36bacfc8 (0 MiB, fresh) - 2 | 00001212 | 00001206 SST | [==================================================================================================] | 019e9b616b0f8c2d-ffe64bbd36bacfc8 (0 MiB, fresh) - 3 | 00001213 | 00001209 SST | [==========================================================================================] | 15f0d95cf142ba13-ff0b3954f2b6de98 (0 MiB, fresh) - 4 | 00001214 | 00001208 SST | [=====================================================================================] | 227a733c828ae63d-ff47c0a208eb5bc2 (0 MiB, fresh) -Time 2026-02-25T16:56:33.497670108Z -Commit 00001224 517 keys in 16ms 777µs 761ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001220 | 00001217 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001221 | 00001216 SST | [=================================================================================================] | 02f67c90dfcb02b4-ffe64bbd36bacfc8 (0 MiB, fresh) - 2 | 00001222 | 00001215 SST | [================================================================================================] | 06628945200f2f5d-ffe64bbd36bacfc8 (0 MiB, fresh) - 3 | 00001223 | 00001218 SST | [=====================================================================================] | 00d1c0c990f1f0d4-de27fd32d6777faa (0 MiB, fresh) - 4 | 00001224 | 00001219 SST | [================] | 2d21b8118f30955b-581e971569002b26 (0 MiB, fresh) -Time 2026-02-25T16:57:04.357419986Z -Commit 00001234 11410 keys in 19ms 304µs 687ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001230 | 00001227 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001231 | 00001228 SST | [==================================================================================================] | 0035f21f4f4812bc-fff709de7c4b04f9 (0 MiB, fresh) - 2 | 00001232 | 00001225 SST | [==================================================================================================] | 00226f4ec2547129-fff709de7c4b04f9 (3 MiB, fresh) - 3 | 00001233 | 00001229 SST | [==================================================================================================] | 005acfd215bc0ee3-fff6a34caaea2599 (0 MiB, fresh) - 1 | 00001234 | 00001226 SST | [==================================================================================================] | 000801e97f7ace52-fff83386eaa859cc (1 MiB, fresh) -Time 2026-02-25T16:57:25.993564933Z -Commit 00001240 203 keys in 9ms 621µs 661ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001238 | 00001237 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001239 | 00001236 SST | [================================================================================================] | 03b2283fcea8785f-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001240 | 00001235 SST | [================================================================================================] | 03b2283fcea8785f-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T16:57:35.125685916Z -Commit 00001246 175 keys in 14ms 152µs 484ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001244 | 00001243 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001245 | 00001242 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001246 | 00001241 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T16:57:50.447831193Z -Commit 00001252 6 keys in 11ms 21µs 751ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001250 | 00001249 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001251 | 00001248 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) - 2 | 00001252 | 00001247 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) -Time 2026-02-25T17:00:46.564752155Z -Commit 00001258 183 keys in 8ms 880µs 840ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001256 | 00001255 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001257 | 00001253 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001258 | 00001254 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:01:11.499261989Z -Commit 00001264 179 keys in 11ms 670µs 149ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001262 | 00001261 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001263 | 00001260 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001264 | 00001259 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:01:31.21928822Z -Commit 00001274 377 keys in 26ms 456µs 212ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001270 | 00001267 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001271 | 00001266 SST | [=================================================================================================] | 016d67fc8355d380-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001272 | 00001265 SST | [=================================================================================================] | 016d67fc8355d380-fd31ba46e3533eb7 (0 MiB, fresh) - 3 | 00001273 | 00001269 SST | [=========================================================] | 0fcead05981e7ae2-a3f824cbd24be750 (0 MiB, fresh) - 4 | 00001274 | 00001268 SST | [==============================================================================================] | 0596a4c4ce71e787-f88797ccb473067e (0 MiB, fresh) -Time 2026-02-25T17:01:34.724949408Z -Commit 00001280 291 keys in 12ms 225µs 245ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001278 | 00001277 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001279 | 00001275 SST | [=================================================================================================] | 016d67fc8355d380-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001280 | 00001276 SST | [=================================================================================================] | 016d67fc8355d380-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:03:10.934341201Z -Commit 00001286 181 keys in 12ms 814µs 177ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001284 | 00001283 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001285 | 00001282 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001286 | 00001281 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:03:26.208989215Z -Commit 00001296 207 keys in 18ms 988µs 772ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001292 | 00001289 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001293 | 00001288 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001294 | 00001287 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 3 | 00001295 | 00001290 SST | [==========================================================================================] | 0711ea599e8bde3a-eef7f225a4835ed7 (0 MiB, fresh) - 4 | 00001296 | 00001291 SST | [===========================================================================] | 372389fdad3ce338-f90d1a9817b88f3d (0 MiB, fresh) -Time 2026-02-25T17:03:55.750974263Z -Commit 00001306 2553 keys in 19ms 762µs 208ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001302 | 00001299 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001303 | 00001298 SST | [==================================================================================================] | 0010e26242e36d1c-ffe64bbd36bacfc8 (0 MiB, fresh) - 1 | 00001304 | 00001297 SST | [==================================================================================================] | 0010e26242e36d1c-ffe64bbd36bacfc8 (0 MiB, fresh) - 3 | 00001305 | 00001300 SST | [=================================================================================================] | 0480dd080250d1de-ff0053af2af5586f (0 MiB, fresh) - 4 | 00001306 | 00001301 SST | [==================================================================================================] | 0145d41fbdc1dfbf-fe0d99fa7f656f4a (0 MiB, fresh) -Time 2026-02-25T17:04:00.308541229Z -Commit 00001312 175 keys in 13ms 708µs 340ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001310 | 00001309 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001311 | 00001308 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001312 | 00001307 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:05:08.455719493Z -Commit 00001318 181 keys in 11ms 826µs 128ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001316 | 00001315 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001317 | 00001313 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001318 | 00001314 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:05:22.345043312Z -Commit 00001324 1767 keys in 18ms 397µs 602ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001322 | 00001321 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001323 | 00001320 SST | [==================================================================================================] | 0010e26242e36d1c-ffe64bbd36bacfc8 (0 MiB, fresh) - 2 | 00001324 | 00001319 SST | [==================================================================================================] | 0010e26242e36d1c-ffe64bbd36bacfc8 (0 MiB, fresh) -Time 2026-02-25T17:05:54.347095586Z -Commit 00001330 245 keys in 11ms 772µs 578ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001328 | 00001327 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001329 | 00001326 SST | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 (0 MiB, fresh) - 2 | 00001330 | 00001325 SST | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 (0 MiB, fresh) -Time 2026-02-25T17:06:03.338694773Z -Commit 00001336 4 keys in 12ms 27µs 593ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001334 | 00001333 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001335 | 00001331 SST | O | 8b1938d8de66eeb5-8b1938d8de66eeb5 (0 MiB, fresh) - 2 | 00001336 | 00001332 SST | O | 8b1938d8de66eeb5-8b1938d8de66eeb5 (0 MiB, fresh) -Time 2026-02-25T17:07:46.596473141Z -Commit 00001342 245 keys in 8ms 364µs 849ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00001340 | 00001337 SST | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 (0 MiB, fresh) - 0 | 00001341 | 00001339 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001342 | 00001338 SST | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 (0 MiB, fresh) -Time 2026-02-25T17:07:54.776645094Z -Commit 00001348 12 keys in 11ms 936µs 503ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001346 | 00001345 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001347 | 00001344 SST | [===========================================] | 1e41eaf88d8a5fd7-8cffe13643d55d45 (0 MiB, fresh) - 2 | 00001348 | 00001343 SST | [===========================================] | 1e41eaf88d8a5fd7-8cffe13643d55d45 (0 MiB, fresh) -Time 2026-02-25T17:11:30.509160613Z -Commit 00001354 179 keys in 12ms 578µs 156ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001352 | 00001351 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001353 | 00001349 SST | [================================================================================================] | 03b2283fcea8785f-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001354 | 00001350 SST | [================================================================================================] | 03b2283fcea8785f-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:11:37.421973635Z -Commit 00001360 175 keys in 9ms 965µs 975ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001358 | 00001357 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001359 | 00001355 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001360 | 00001356 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:11:48.689927776Z -Commit 00001366 484 keys in 12ms 97µs 759ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001364 | 00001363 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001365 | 00001362 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001366 | 00001361 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T17:12:01.64120467Z -Commit 00001372 4 keys in 12ms 2µs 618ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001370 | 00001369 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001371 | 00001367 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) - 2 | 00001372 | 00001368 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) -Time 2026-02-25T17:12:23.979055118Z -Commit 00001378 3155 keys in 9ms 262µs 877ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001376 | 00001375 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001377 | 00001373 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001378 | 00001374 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) -Time 2026-02-25T17:12:27.839731046Z -Commit 00001384 1339 keys in 12ms 399µs 293ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001382 | 00001381 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001383 | 00001380 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (0 MiB, fresh) - 2 | 00001384 | 00001379 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-02-25T17:14:12.3246984Z -Commit 00001390 415 keys in 9ms 267µs 501ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001388 | 00001387 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001389 | 00001385 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001390 | 00001386 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T17:16:14.371455881Z -Commit 00001396 4 keys in 10ms 930µs 343ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001394 | 00001393 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001395 | 00001391 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) - 2 | 00001396 | 00001392 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) -Time 2026-02-25T17:19:25.79815202Z -Commit 00001402 165 keys in 11ms 614µs 652ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001400 | 00001399 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001401 | 00001397 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001402 | 00001398 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:19:36.745201747Z -Commit 00001408 157 keys in 13ms 718µs 760ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001406 | 00001405 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001407 | 00001404 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001408 | 00001403 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:19:48.523877158Z -Commit 00001414 464 keys in 12ms 726µs 532ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001412 | 00001411 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001413 | 00001409 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001414 | 00001410 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T17:20:04.03556033Z -Commit 00001420 4 keys in 13ms 547µs 152ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001418 | 00001417 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001419 | 00001415 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) - 2 | 00001420 | 00001416 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) -Time 2026-02-25T17:20:15.90269843Z -Commit 00001426 152 keys in 11ms 575µs 478ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001424 | 00001423 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001425 | 00001422 SST | [=================================================================================================] | 00858af2653b1f32-fc81935582fd0550 (0 MiB, fresh) - 2 | 00001426 | 00001421 SST | [=============================================================================================] | 08a81189bd4aa218-fa929381403932d4 (0 MiB, fresh) -Time 2026-02-25T17:20:27.952987499Z -Commit 00001432 6 keys in 11ms 173µs 362ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001430 | 00001429 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001431 | 00001428 SST | [=========] | bb1161806166d0fd-d5de3d95c4489feb (0 MiB, fresh) - 2 | 00001432 | 00001427 SST | [=========] | bb1161806166d0fd-d5de3d95c4489feb (0 MiB, fresh) -Time 2026-02-25T17:21:05.663914048Z -Commit 00001438 3181 keys in 11ms 593µs 139ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001436 | 00001435 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001437 | 00001433 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001438 | 00001434 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) -Time 2026-02-25T17:21:11.94624355Z -Commit 00001444 6 keys in 11ms 12µs 303ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001442 | 00001441 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001443 | 00001439 SST | [=========] | bb1161806166d0fd-d5de3d95c4489feb (0 MiB, fresh) - 2 | 00001444 | 00001440 SST | [=========] | bb1161806166d0fd-d5de3d95c4489feb (0 MiB, fresh) -Time 2026-02-25T17:23:06.330970154Z -Commit 00001450 272 keys in 9ms 401µs 360ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001448 | 00001447 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001449 | 00001446 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001450 | 00001445 SST | [================================================================================================] | 03bfaf281cffcaa2-fc240794031723ba (0 MiB, fresh) -Time 2026-02-25T17:23:22.381154293Z -Commit 00001456 4 keys in 13ms 543µs 907ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001454 | 00001453 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001455 | 00001451 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00001456 | 00001452 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-02-25T17:24:18.562580998Z -Commit 00001462 16 keys in 11ms 593µs 19ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001460 | 00001459 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001461 | 00001457 SST | [====================================================================================] | 0cdf68ff10917e36-e89372215f857fa5 (0 MiB, fresh) - 2 | 00001462 | 00001458 SST | [====================================================================================] | 0cdf68ff10917e36-e89372215f857fa5 (0 MiB, fresh) -Time 2026-02-25T17:28:21.528565194Z -Commit 00001468 168 keys in 11ms 388µs 316ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001466 | 00001465 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001467 | 00001464 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 1 | 00001468 | 00001463 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:28:27.160572685Z -Commit 00001474 164 keys in 11ms 220µs 89ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001472 | 00001471 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001473 | 00001469 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001474 | 00001470 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T17:28:37.884915544Z -Commit 00001480 235 keys in 11ms 931µs 286ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001478 | 00001477 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001479 | 00001476 SST | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 (0 MiB, fresh) - 2 | 00001480 | 00001475 SST | [==============================================================================================] | 0a9dceb0151eb065-fe4357bf329edc36 (0 MiB, fresh) -Time 2026-02-25T17:28:49.662147028Z -Commit 00001486 4 keys in 10ms 534µs 705ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001484 | 00001483 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001485 | 00001481 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) - 2 | 00001486 | 00001482 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) -Time 2026-02-25T17:32:00.198978867Z -Commit 00001492 231 keys in 11ms 58µs 577ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001490 | 00001489 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001491 | 00001488 SST | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 (0 MiB, fresh) - 2 | 00001492 | 00001487 SST | [==============================================================================================] | 0a9dceb0151eb065-fe4357bf329edc36 (0 MiB, fresh) -Time 2026-02-25T17:32:10.765700469Z -Commit 00001498 4 keys in 13ms 633µs 367ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001496 | 00001495 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001497 | 00001493 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) - 2 | 00001498 | 00001494 SST | O | 300f824fb94447b0-300f824fb94447b0 (0 MiB, fresh) -Time 2026-02-25T18:22:12.592485422Z -Commit 00001504 12 keys in 12ms 658µs 411ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001502 | 00001501 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001503 | 00001499 SST | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 (0 MiB, fresh) - 2 | 00001504 | 00001500 SST | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 (0 MiB, fresh) -Time 2026-02-25T18:23:10.432807923Z -Commit 00001510 164 keys in 11ms 960µs 898ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001508 | 00001507 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001509 | 00001505 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001510 | 00001506 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T18:23:15.612915062Z -Commit 00001516 164 keys in 12ms 216µs 109ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001514 | 00001513 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001515 | 00001512 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001516 | 00001511 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T18:24:51.18119039Z -Commit 00001522 235 keys in 12ms 73µs 417ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001520 | 00001519 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001521 | 00001518 SST | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 (0 MiB, fresh) - 2 | 00001522 | 00001517 SST | [==============================================================================================] | 0a9dceb0151eb065-fe4357bf329edc36 (0 MiB, fresh) -Time 2026-02-25T18:39:27.33095203Z -Commit 00001532 3276 keys in 13ms 693µs 846ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001528 | 00001525 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001529 | 00001527 SST | [==================================================================================================] | 022477fef1536cb3-ff8fa7dcd8343a6c (0 MiB, fresh) - 1 | 00001530 | 00001524 SST | [==================================================================================================] | 00247993547b8bb1-ff8fa7dcd8343a6c (0 MiB, fresh) - 3 | 00001531 | 00001526 SST | [=================================================================================================] | 02ca3318bff091e0-fea641fa5778546e (0 MiB, fresh) - 2 | 00001532 | 00001523 SST | [==================================================================================================] | 00247993547b8bb1-ff8fa7dcd8343a6c (0 MiB, fresh) -Time 2026-02-25T18:39:42.104769988Z -Commit 00001542 2103 keys in 15ms 981µs 838ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001538 | 00001535 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001539 | 00001536 SST | [==================================================================================================] | 0106502fb33db269-ffe00fafe5be7210 (0 MiB, fresh) - 3 | 00001540 | 00001537 SST | [==================================================================================================] | 0005a0c6b3784bba-fed1773bfd5f0e3f (0 MiB, fresh) - 1 | 00001541 | 00001534 SST | [==================================================================================================] | 00247993547b8bb1-ffe64bbd36bacfc8 (0 MiB, fresh) - 2 | 00001542 | 00001533 SST | [==================================================================================================] | 00247993547b8bb1-ffe64bbd36bacfc8 (0 MiB, fresh) -Time 2026-02-25T18:39:52.654947953Z -Commit 00001548 198 keys in 8ms 578µs 179ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001546 | 00001545 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001547 | 00001543 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001548 | 00001544 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T18:39:57.156011286Z -Commit 00001554 174 keys in 9ms 54µs 9ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001552 | 00001551 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001553 | 00001549 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001554 | 00001550 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T18:40:15.020670963Z -Commit 00001560 178 keys in 12ms 8µs 859ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001558 | 00001557 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001559 | 00001555 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) - 2 | 00001560 | 00001556 SST | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 (0 MiB, fresh) -Time 2026-02-25T18:40:39.638574714Z -Commit 00001566 581 keys in 12ms 146µs 731ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001564 | 00001563 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001565 | 00001562 SST | [==================================================================================================] | 012c453e3baea5c9-ffe64bbd36bacfc8 (0 MiB, fresh) - 2 | 00001566 | 00001561 SST | [==================================================================================================] | 01cb3d717c7f7124-ffe64bbd36bacfc8 (0 MiB, fresh) -Time 2026-02-25T18:41:40.831371045Z -Commit 00001572 20 keys in 13ms 17µs 930ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001570 | 00001569 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001571 | 00001568 SST | [=================================================================================================] | 03d6a10478b76364-fda90c044f987db8 (0 MiB, fresh) - 2 | 00001572 | 00001567 SST | [=================================================================================================] | 03d6a10478b76364-fda90c044f987db8 (0 MiB, fresh) -Time 2026-02-25T19:01:21.450496811Z -Commit 00001582 3138 keys in 14ms 846µs 366ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001578 | 00001575 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001579 | 00001574 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) - 2 | 00001580 | 00001573 SST | [==================================================================================================] | 005b36fb126383dd-ffe64bbd36bacfc8 (0 MiB, fresh) - 3 | 00001581 | 00001576 SST | [=================================================================================] | 29e464cb11345c80-fb39b8f732eb5932 (0 MiB, fresh) - 4 | 00001582 | 00001577 SST | [=========================================================================] | 31a1ebc3ae073ab7-efc7e40fe8b02051 (0 MiB, fresh) -Time 2026-02-25T19:01:41.960593851Z -Commit 00001592 3047 keys in 18ms 658µs 704ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001588 | 00001585 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001589 | 00001584 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) - 2 | 00001590 | 00001583 SST | [==================================================================================================] | 005b36fb126383dd-ffe64bbd36bacfc8 (0 MiB, fresh) - 3 | 00001591 | 00001586 SST | [===========================================================================================] | 0b0bf7c75749b4e1-f8248a8da62c76fd (0 MiB, fresh) - 4 | 00001592 | 00001587 SST | [===============================================================================================] | 00b385ac54cb8a95-f710afe27a16e90a (0 MiB, fresh) -Time 2026-02-25T19:02:38.21066933Z -Commit 00001602 3077 keys in 17ms 301µs 284ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001598 | 00001595 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001599 | 00001594 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) - 2 | 00001600 | 00001593 SST | [==================================================================================================] | 005b36fb126383dd-ffe64bbd36bacfc8 (0 MiB, fresh) - 3 | 00001601 | 00001596 SST | [===========================================================================================] | 0a229e04fe6b24fc-f580fba5db21577a (0 MiB, fresh) - 4 | 00001602 | 00001597 SST | [==========================================================================================] | 106b7bb7c123a52b-fad86587ab3b66a2 (0 MiB, fresh) -Time 2026-02-25T19:02:52.506019078Z -Commit 00001612 3066 keys in 14ms 95µs 166ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001608 | 00001605 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001609 | 00001604 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) - 2 | 00001610 | 00001603 SST | [==================================================================================================] | 005b36fb126383dd-ffe64bbd36bacfc8 (0 MiB, fresh) - 3 | 00001611 | 00001606 SST | [============================================================================] | 1c16fe9119ba5ef9-df0708d49d35248c (0 MiB, fresh) - 4 | 00001612 | 00001607 SST | [=========================================================================================] | 0093643421879a72-e82f49ef81eccb80 (0 MiB, fresh) -Time 2026-02-25T19:06:40.406503939Z -Commit 00001622 94 keys in 13ms 193µs 652ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001618 | 00001615 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001619 | 00001613 SST | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001620 | 00001614 SST | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 (0 MiB, fresh) - 3 | 00001621 | 00001616 SST | O | f6ca85d7c0a93150-f6ca85d7c0a93150 (0 MiB, fresh) - 4 | 00001622 | 00001617 SST | O | 50ad7aa35c058863-50ad7aa35c058863 (0 MiB, fresh) -Time 2026-02-25T19:06:53.310604196Z -Commit 00001628 88 keys in 12ms 120µs 149ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001626 | 00001625 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001627 | 00001624 SST | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001628 | 00001623 SST | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T19:08:02.736081884Z -Commit 00001634 386 keys in 13ms 288µs 601ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001632 | 00001631 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001633 | 00001630 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001634 | 00001629 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T19:08:42.4917485Z -Commit 00001644 231 keys in 16ms 114µs 137ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001640 | 00001637 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001641 | 00001635 SST | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc (0 MiB, fresh) - 1 | 00001642 | 00001636 SST | [=================================================================================================] | 047f3b8521e60613-feeba07cd2711308 (0 MiB, fresh) - 3 | 00001643 | 00001638 SST | O | f01cbe08a7c5c447-f01cbe08a7c5c447 (0 MiB, fresh) - 4 | 00001644 | 00001639 SST | O | ba3886710cf3d1d8-ba3886710cf3d1d8 (0 MiB, fresh) -Time 2026-02-25T19:08:47.806010875Z -Commit 00001650 357 keys in 9ms 254µs 622ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001648 | 00001647 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001649 | 00001646 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001650 | 00001645 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T19:10:49.821504031Z -Commit 00001660 478 keys in 14ms 24µs 743ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001656 | 00001653 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001657 | 00001651 SST | [=================================================================================================] | 0027752eca537b46-fcd7793042f87515 (0 MiB, fresh) - 1 | 00001658 | 00001652 SST | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 (0 MiB, fresh) - 3 | 00001659 | 00001654 SST | [==============================================================] | 13e904806ca242fe-b34bc5b98798daf2 (0 MiB, fresh) - 4 | 00001660 | 00001655 SST | [===============================================================================] | 2b9ae69e79de41fb-f91c0af62c81030e (0 MiB, fresh) -Time 2026-02-25T19:11:07.408439262Z -Commit 00001666 464 keys in 11ms 248µs 163ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001664 | 00001663 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001665 | 00001661 SST | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 (0 MiB, fresh) - 2 | 00001666 | 00001662 SST | [=================================================================================================] | 0027752eca537b46-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-25T19:11:23.534885891Z -Commit 00001676 207 keys in 16ms 354µs 273ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001672 | 00001669 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001673 | 00001668 SST | [=================================================================================================] | 047f3b8521e60613-feeba07cd2711308 (0 MiB, fresh) - 2 | 00001674 | 00001667 SST | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc (0 MiB, fresh) - 3 | 00001675 | 00001670 SST | O | 94b8ec6f178d8c5a-94b8ec6f178d8c5a (0 MiB, fresh) - 4 | 00001676 | 00001671 SST | O | 05dd94eacdd0e1c2-05dd94eacdd0e1c2 (0 MiB, fresh) -Time 2026-02-25T19:11:29.590939444Z -Commit 00001682 351 keys in 11ms 19µs 449ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001680 | 00001679 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001681 | 00001677 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001682 | 00001678 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T19:13:34.915068385Z -Commit 00001692 207 keys in 16ms 881µs 962ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001688 | 00001685 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001689 | 00001683 SST | [=================================================================================================] | 047f3b8521e60613-feeba07cd2711308 (0 MiB, fresh) - 2 | 00001690 | 00001684 SST | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc (0 MiB, fresh) - 3 | 00001691 | 00001686 SST | O | 31e66ecd3674e0da-31e66ecd3674e0da (0 MiB, fresh) - 4 | 00001692 | 00001687 SST | O | 16be2bf1a3fc4b6c-16be2bf1a3fc4b6c (0 MiB, fresh) -Time 2026-02-25T19:13:39.829602901Z -Commit 00001698 365 keys in 8ms 740µs 905ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001696 | 00001695 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001697 | 00001694 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001698 | 00001693 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T19:13:43.160636864Z -Commit 00001704 4 keys in 11ms 424µs 135ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001702 | 00001701 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001703 | 00001699 SST | O | b2032d88bf3399e2-b2032d88bf3399e2 (0 MiB, fresh) - 2 | 00001704 | 00001700 SST | O | b2032d88bf3399e2-b2032d88bf3399e2 (0 MiB, fresh) -Time 2026-02-25T19:27:17.97741971Z -Commit 00001710 3780 keys in 10ms 788µs 835ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001708 | 00001707 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001709 | 00001705 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001710 | 00001706 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) -Time 2026-02-25T19:27:35.327580529Z -Commit 00001720 2094 keys in 17ms 312µs 156ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001716 | 00001713 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00001717 | 00001714 SST | [==================================================================================] | 03d201eb41258c08-d750c23943900ae5 (0 MiB, fresh) - 2 | 00001718 | 00001711 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001719 | 00001712 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (0 MiB, fresh) - 4 | 00001720 | 00001715 SST | [==========================================================================================] | 0156b802f089ee8f-ea735f6431df77c0 (0 MiB, fresh) -Time 2026-02-25T19:27:41.9578995Z -Commit 00001730 190338 keys in 36ms 673µs 888ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001726 | 00001723 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001727 | 00001724 SST | [==================================================================================================] | 0004686477778735-fffdad0e4861d73a (1 MiB, fresh) - 3 | 00001728 | 00001725 SST | [==================================================================================================] | 00014cdfb3aba01b-fffdaf4f3492bab3 (1 MiB, fresh) - 1 | 00001729 | 00001722 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (6 MiB, fresh) - 2 | 00001730 | 00001721 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (20 MiB, fresh) -Time 2026-02-25T19:28:03.531053037Z -Commit 00001740 10869 keys in 24ms 753µs 315ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001736 | 00001733 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00001737 | 00001734 SST | [==================================================================================================] | 001aef4971f04683-fdcf5e9394faa527 (0 MiB, fresh) - 1 | 00001738 | 00001732 SST | [==================================================================================================] | 0000737dcecb7eaa-fff258874d6df430 (1 MiB, fresh) - 2 | 00001739 | 00001731 SST | [==================================================================================================] | 0000737dcecb7eaa-fff258874d6df430 (10 MiB, fresh) - 4 | 00001740 | 00001735 SST | [=================================================================================================] | 04207998003ca3d0-ff8692c277ebdbae (0 MiB, fresh) -Time 2026-02-25T19:28:13.743195847Z -Commit 00001746 6 keys in 12ms 653µs 304ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001744 | 00001743 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001745 | 00001742 SST | [======================================] | 6524424a3be1ae51-c85fc8eb34d9f97f (0 MiB, fresh) - 2 | 00001746 | 00001741 SST | [======================================] | 6524424a3be1ae51-c85fc8eb34d9f97f (0 MiB, fresh) -Time 2026-02-25T19:31:39.992177463Z -Commit 00001752 92 keys in 14ms 987µs 414ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001750 | 00001749 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001751 | 00001748 SST | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001752 | 00001747 SST | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-25T19:33:00.50935736Z -Commit 00001762 456 keys in 16ms 477µs 422ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001758 | 00001755 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001759 | 00001754 SST | [==================================================================================================] | 00451748c51e234a-fe9a7a0f20fcfa7f (0 MiB, fresh) - 2 | 00001760 | 00001753 SST | [=================================================================================================] | 00451748c51e234a-fc14d191b68d496a (0 MiB, fresh) - 3 | 00001761 | 00001756 SST | O | 5e5abb13ca55f7ba-5e5abb13ca55f7ba (0 MiB, fresh) - 4 | 00001762 | 00001757 SST | O | dbcc8c40ddc1399a-dbcc8c40ddc1399a (0 MiB, fresh) -Time 2026-02-25T19:33:06.952959216Z -Commit 00001768 362 keys in 11ms 640µs 428ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001766 | 00001765 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001767 | 00001763 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00001768 | 00001764 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d (0 MiB, fresh) -Time 2026-02-25T19:39:03.799644499Z -Commit 00001774 4387 keys in 11ms 822µs 888ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001772 | 00001771 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001773 | 00001769 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001774 | 00001770 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) -Time 2026-02-25T19:39:25.606382627Z -Commit 00001784 3064 keys in 22ms 92µs 443ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001780 | 00001777 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00001781 | 00001778 SST | [========================================================================] | 233c5e5bfbc5d0e4-dcb7a4dff38908e0 (0 MiB, fresh) - 4 | 00001782 | 00001779 SST | [===================================================================================] | 057a93390594fe22-dcc21298fc8111aa (0 MiB, fresh) - 1 | 00001783 | 00001776 SST | [==================================================================================================] | 000801e97f7ace52-ffe9c35c2954775d (1 MiB, fresh) - 2 | 00001784 | 00001775 SST | [==================================================================================================] | 003b0ac5c868db1a-ffe9c35c2954775d (1 MiB, fresh) -Time 2026-02-25T19:39:40.590105172Z -Commit 00001790 89 keys in 11ms 605µs 159ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001788 | 00001787 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001789 | 00001785 SST | [==================================================================================================] | 0112226f1a7b95ce-ffe64bbd36bacfc8 (0 MiB, fresh) - 2 | 00001790 | 00001786 SST | [==================================================================================================] | 0112226f1a7b95ce-ff569005249ccea2 (0 MiB, fresh) -Time 2026-02-25T19:39:46.628028953Z -Commit 00001796 838 keys in 15ms 743µs 412ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001794 | 00001793 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001795 | 00001791 SST | [==================================================================================================] | 000cab97f68623db-fed66bbe1990cac8 (0 MiB, fresh) - 2 | 00001796 | 00001792 SST | [==================================================================================================] | 00af2263a403428c-fdae469746d0cecb (0 MiB, fresh) -Time 2026-02-25T19:39:58.604590166Z -Commit 00001809 592205 keys in 54ms 326µs 74ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001805 | 00001802 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001806 | 00001804 SST | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 (4 MiB, fresh) - 2 | 00001807 | 00001799 SST | [=======================] | c000228b36146cf2-ffffec37b1df3f15 (10 MiB, fresh) - 2 | 00001807 | 00001797 SST | [=======================] | 800088e554e22899-bfffecdc6885c4dd (11 MiB, fresh) - 2 | 00001807 | 00001798 SST | [=======================] | 40003c89e32765e7-7fff6c9040f16911 (14 MiB, fresh) - 2 | 00001807 | 00001800 SST | [=======================] | 0000737dcecb7eaa-3fffed60c1451cfe (13 MiB, fresh) - 3 | 00001808 | 00001803 SST | [==================================================================================================] | 00015d4607751d8f-fffffe36b8acbedb (4 MiB, fresh) - 1 | 00001809 | 00001801 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffec37b1df3f15 (13 MiB, fresh) -Time 2026-02-26T07:49:55.791780548Z -Commit 00001815 4997 keys in 16ms 795µs 550ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001813 | 00001812 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001814 | 00001810 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00001815 | 00001811 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (1 MiB, fresh) -Time 2026-02-26T07:53:35.285726377Z -Commit 00001821 2245 keys in 15ms 533µs 35ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001819 | 00001818 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001820 | 00001817 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) - 2 | 00001821 | 00001816 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-02-26T07:53:42.454335511Z -Commit 00001827 2989 keys in 15ms 177µs 215ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001825 | 00001824 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001826 | 00001822 SST | [==================================================================================================] | 00b385ac54cb8a95-ffec4aeb0538aa5f (1 MiB, fresh) - 1 | 00001827 | 00001823 SST | [==================================================================================================] | 000ec6d80785bf8a-fff258874d6df430 (0 MiB, fresh) -Time 2026-02-26T08:06:05.943683593Z -Commit 00001833 12 keys in 13ms 462µs 919ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001831 | 00001830 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001832 | 00001828 SST | [================================================================================] | 0ddba8f0fb757605-de7965592b57622c (0 MiB, fresh) - 2 | 00001833 | 00001829 SST | [================================================================================] | 0ddba8f0fb757605-de7965592b57622c (0 MiB, fresh) -Time 2026-02-26T08:12:10.915996438Z -Commit 00001843 15191 keys in 18ms 573µs 412ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001839 | 00001836 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001840 | 00001838 SST | [================================================================================================] | 0025f0db6f05fcbf-fa6c5baffb4cfcb7 (0 MiB, fresh) - 3 | 00001841 | 00001837 SST | [==================================================================================================] | 0086e9bf4e2db6d9-fe052ce4d50d109b (0 MiB, fresh) - 2 | 00001842 | 00001834 SST | [==================================================================================================] | 001b970b1716573b-ffe58d83ca25ec39 (4 MiB, fresh) - 1 | 00001843 | 00001835 SST | [==================================================================================================] | 000801e97f7ace52-fff258874d6df430 (1 MiB, fresh) - 2 | 00001846 | Compaction: - 2 | 00001846 | MERGE (189710 keys): - 2 | 00001846 | 00001403 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001846 | 00001410 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 2 | 00001846 | 00001416 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 2 | 00001846 | 00001421 INPUT | [=============================================================================================] | 08a81189bd4aa218-fa929381403932d4 - 2 | 00001846 | 00001427 INPUT | [=========] | bb1161806166d0fd-d5de3d95c4489feb - 2 | 00001846 | 00001433 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001846 | 00001440 INPUT | [=========] | bb1161806166d0fd-d5de3d95c4489feb - 2 | 00001846 | 00001445 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fc240794031723ba - 2 | 00001846 | 00001452 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00001846 | 00001458 INPUT | [====================================================================================] | 0cdf68ff10917e36-e89372215f857fa5 - 2 | 00001846 | 00001464 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001846 | 00001470 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001846 | 00001475 INPUT | [==============================================================================================] | 0a9dceb0151eb065-fe4357bf329edc36 - 2 | 00001846 | 00001482 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 2 | 00001846 | 00001487 INPUT | [==============================================================================================] | 0a9dceb0151eb065-fe4357bf329edc36 - 2 | 00001846 | 00001494 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 2 | 00001846 | 00001500 INPUT | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 - 2 | 00001846 | 00001506 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001846 | 00001511 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001846 | 00001517 INPUT | [==============================================================================================] | 0a9dceb0151eb065-fe4357bf329edc36 - 2 | 00001846 | 00001523 INPUT | [==================================================================================================] | 00247993547b8bb1-ff8fa7dcd8343a6c - 2 | 00001846 | 00001533 INPUT | [==================================================================================================] | 00247993547b8bb1-ffe64bbd36bacfc8 - 2 | 00001846 | 00001544 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001846 | 00001550 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001846 | 00001556 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001846 | 00001561 INPUT | [==================================================================================================] | 01cb3d717c7f7124-ffe64bbd36bacfc8 - 2 | 00001846 | 00001567 INPUT | [=================================================================================================] | 03d6a10478b76364-fda90c044f987db8 - 2 | 00001846 | 00001573 INPUT | [==================================================================================================] | 005b36fb126383dd-ffe64bbd36bacfc8 - 2 | 00001846 | 00001583 INPUT | [==================================================================================================] | 005b36fb126383dd-ffe64bbd36bacfc8 - 2 | 00001846 | 00001593 INPUT | [==================================================================================================] | 005b36fb126383dd-ffe64bbd36bacfc8 - 2 | 00001846 | 00001603 INPUT | [==================================================================================================] | 005b36fb126383dd-ffe64bbd36bacfc8 - 2 | 00001846 | 00001614 INPUT | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 - 2 | 00001846 | 00001623 INPUT | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 - 2 | 00001846 | 00001629 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 2 | 00001846 | 00001635 INPUT | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc - 2 | 00001846 | 00001645 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 2 | 00001846 | 00001651 INPUT | [=================================================================================================] | 0027752eca537b46-fcd7793042f87515 - 2 | 00001846 | 00001662 INPUT | [=================================================================================================] | 0027752eca537b46-fcd7793042f87515 - 2 | 00001846 | 00001667 INPUT | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc - 2 | 00001846 | 00001678 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 2 | 00001846 | 00001684 INPUT | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc - 2 | 00001846 | 00001693 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 2 | 00001846 | 00001700 INPUT | O | b2032d88bf3399e2-b2032d88bf3399e2 - 2 | 00001846 | 00001705 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001846 | 00001711 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001846 | 00001721 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00001846 | 00001731 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff258874d6df430 - 2 | 00001846 | 00001741 INPUT | [======================================] | 6524424a3be1ae51-c85fc8eb34d9f97f - 2 | 00001846 | 00001747 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 2 | 00001846 | 00001753 INPUT | [=================================================================================================] | 00451748c51e234a-fc14d191b68d496a - 2 | 00001846 | 00001764 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 2 | 00001846 | 00001769 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001846 | 00001775 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffe9c35c2954775d - 2 | 00001846 | 00001786 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ff569005249ccea2 - 2 | 00001846 | 00001792 INPUT | [==================================================================================================] | 00af2263a403428c-fdae469746d0cecb - 2 | 00001846 | 00001799 INPUT | [=======================] | c000228b36146cf2-ffffec37b1df3f15 - 2 | 00001846 | 00001797 INPUT | [=======================] | 800088e554e22899-bfffecdc6885c4dd - 2 | 00001846 | 00001798 INPUT | [=======================] | 40003c89e32765e7-7fff6c9040f16911 - 2 | 00001846 | 00001800 INPUT | [=======================] | 0000737dcecb7eaa-3fffed60c1451cfe - 2 | 00001846 | 00001810 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001846 | 00001816 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001846 | 00001822 INPUT | [==================================================================================================] | 00b385ac54cb8a95-ffec4aeb0538aa5f - 2 | 00001846 | 00001829 INPUT | [================================================================================] | 0ddba8f0fb757605-de7965592b57622c - 2 | 00001846 | 00001834 INPUT | [==================================================================================================] | 001b970b1716573b-ffe58d83ca25ec39 - 2 | 00001846 | 00001845 OUTPUT | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 (cold) - 2 | 00001846 | 00001844 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-02-26T08:12:12.484739067Z -Commit 00001847 189710 keys in 74ms 836µs 860ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00001846 | 00001845 SST | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 (39 MiB, cold) - 2 | 00001846 | 00001844 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (24 MiB, warm) - 2 | 00001846 | 00001403 00001410 00001416 00001421 00001427 00001433 00001440 00001445 00001452 00001458 00001464 00001470 00001475 00001482 00001487 OBSOLETE SST - 2 | 00001846 | 00001494 00001500 00001506 00001511 00001517 00001523 00001533 00001544 00001550 00001556 00001561 00001567 00001573 00001583 00001593 OBSOLETE SST - 2 | 00001846 | 00001603 00001614 00001623 00001629 00001635 00001645 00001651 00001662 00001667 00001678 00001684 00001693 00001700 00001705 00001711 OBSOLETE SST - 2 | 00001846 | 00001721 00001731 00001741 00001747 00001753 00001764 00001769 00001775 00001786 00001792 00001797 00001798 00001799 00001800 00001810 OBSOLETE SST - 2 | 00001846 | 00001816 00001822 00001829 00001834 OBSOLETE SST - | | 00001403 00001410 00001416 00001421 00001427 00001433 00001440 00001445 00001452 00001458 00001464 00001470 00001475 00001482 00001487 SST DELETED - | | 00001494 00001500 00001506 00001511 00001517 00001523 00001533 00001544 00001550 00001556 00001561 00001567 00001573 00001583 00001593 SST DELETED - | | 00001603 00001614 00001623 00001629 00001635 00001645 00001651 00001662 00001667 00001678 00001684 00001693 00001700 00001705 00001711 SST DELETED - | | 00001721 00001731 00001741 00001747 00001753 00001764 00001769 00001775 00001786 00001792 00001797 00001798 00001799 00001800 00001810 SST DELETED - | | 00001816 00001822 00001829 00001834 SST DELETED - | | 00001408 00001414 00001420 00001426 00001432 00001437 00001444 00001450 00001456 00001462 00001467 00001474 00001480 00001486 00001492 META DELETED - | | 00001498 00001504 00001510 00001516 00001522 00001532 00001542 00001548 00001554 00001560 00001566 00001572 00001580 00001590 00001600 META DELETED - | | 00001610 00001620 00001628 00001634 00001641 00001650 00001657 00001666 00001674 00001682 00001690 00001698 00001704 00001709 00001718 META DELETED - | | 00001730 00001739 00001746 00001752 00001760 00001768 00001773 00001784 00001790 00001796 00001807 00001814 00001821 00001826 00001833 META DELETED - | | 00001842 META DELETED -Time 2026-02-26T08:12:34.650732102Z -Commit 00001853 36 keys in 14ms 38µs 667ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001851 | 00001850 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001852 | 00001849 SST | [==============================================================================================] | 05c002209b2a1fd0-fadc20f25cf6a50e (0 MiB, fresh) - 2 | 00001853 | 00001848 SST | [==============================================================================================] | 05c002209b2a1fd0-fadc20f25cf6a50e (0 MiB, fresh) - 2 | 00001857 | Compaction: - 2 | 00001857 | MERGE (351122 keys): - 2 | 00001857 | 00001094 INPUT | [==================================================================================================] | 00005b386d02964f-ffffc8b261a62b07 - 2 | 00001857 | 00001093 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00001857 | 00001098 INPUT | [================================================================================================] | 078bc5f1f1834908-ffd50c50ed762576 - 2 | 00001857 | 00001103 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001857 | 00001109 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001857 | 00001115 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001857 | 00001122 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 2 | 00001857 | 00001127 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc2a0864706a9eba - 2 | 00001857 | 00001134 INPUT | [===============================================================================================] | 06622b1c7d90360e-fc2a0864706a9eba - 2 | 00001857 | 00001139 INPUT | [===============================================================================================] | 06622b1c7d90360e-fc2a0864706a9eba - 2 | 00001857 | 00001145 INPUT | [===============================================================================================] | 05ea56c5fdae1289-fc14d191b68d496a - 2 | 00001857 | 00001155 INPUT | [================================================================================================] | 074d8d4a702814f6-ffe9c35c2954775d - 2 | 00001857 | 00001161 INPUT | [=================================================================================================] | 005b36fb126383dd-fc14d191b68d496a - 2 | 00001857 | 00001172 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 2 | 00001857 | 00001177 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 2 | 00001857 | 00001184 INPUT | O | 8b1938d8de66eeb5-8b1938d8de66eeb5 - 2 | 00001857 | 00001190 INPUT | [=============================================================================================] | 08a81189bd4aa218-fa929381403932d4 - 2 | 00001857 | 00001195 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00001857 | 00001206 INPUT | [==================================================================================================] | 019e9b616b0f8c2d-ffe64bbd36bacfc8 - 2 | 00001857 | 00001215 INPUT | [================================================================================================] | 06628945200f2f5d-ffe64bbd36bacfc8 - 2 | 00001857 | 00001225 INPUT | [==================================================================================================] | 00226f4ec2547129-fff709de7c4b04f9 - 2 | 00001857 | 00001235 INPUT | [================================================================================================] | 03b2283fcea8785f-fd31ba46e3533eb7 - 2 | 00001857 | 00001241 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001247 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 2 | 00001857 | 00001254 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001259 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001265 INPUT | [=================================================================================================] | 016d67fc8355d380-fd31ba46e3533eb7 - 2 | 00001857 | 00001276 INPUT | [=================================================================================================] | 016d67fc8355d380-fd31ba46e3533eb7 - 2 | 00001857 | 00001281 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001287 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001298 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffe64bbd36bacfc8 - 2 | 00001857 | 00001307 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001314 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001319 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffe64bbd36bacfc8 - 2 | 00001857 | 00001325 INPUT | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 - 2 | 00001857 | 00001332 INPUT | O | 8b1938d8de66eeb5-8b1938d8de66eeb5 - 2 | 00001857 | 00001338 INPUT | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 - 2 | 00001857 | 00001343 INPUT | [===========================================] | 1e41eaf88d8a5fd7-8cffe13643d55d45 - 2 | 00001857 | 00001350 INPUT | [================================================================================================] | 03b2283fcea8785f-fd31ba46e3533eb7 - 2 | 00001857 | 00001356 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001361 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 2 | 00001857 | 00001368 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 2 | 00001857 | 00001373 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001857 | 00001379 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00001857 | 00001386 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 2 | 00001857 | 00001392 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 2 | 00001857 | 00001398 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 2 | 00001857 | 00001845 INPUT | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 - 2 | 00001857 | 00001844 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00001857 | 00001848 INPUT | [==============================================================================================] | 05c002209b2a1fd0-fadc20f25cf6a50e - 2 | 00001857 | 00001855 OUTPUT | [=================================================] | 00005b386d02964f-802fa2ef72701bad (cold) - 2 | 00001857 | 00001856 OUTPUT | [================================================] | 802ff6093d57f729-ffffec37b1df3f15 (cold) - 2 | 00001857 | 00001854 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-02-26T08:12:37.226563743Z -Commit 00001858 351122 keys in 213ms 77µs 106ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00001857 | 00001855 SST | [=================================================] | 00005b386d02964f-802fa2ef72701bad (73 MiB, cold) - 2 | 00001857 | 00001856 SST | [================================================] | 802ff6093d57f729-ffffec37b1df3f15 (63 MiB, cold) - 2 | 00001857 | 00001854 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (27 MiB, warm) - 2 | 00001857 | 00001093 00001094 00001098 00001103 00001109 00001115 00001122 00001127 00001134 00001139 00001145 00001155 00001161 00001172 00001177 OBSOLETE SST - 2 | 00001857 | 00001184 00001190 00001195 00001206 00001215 00001225 00001235 00001241 00001247 00001254 00001259 00001265 00001276 00001281 00001287 OBSOLETE SST - 2 | 00001857 | 00001298 00001307 00001314 00001319 00001325 00001332 00001338 00001343 00001350 00001356 00001361 00001368 00001373 00001379 00001386 OBSOLETE SST - 2 | 00001857 | 00001392 00001398 00001844 00001845 00001848 OBSOLETE SST - | | 00001093 00001094 00001098 00001103 00001109 00001115 00001122 00001127 00001134 00001139 00001145 00001155 00001161 00001172 00001177 SST DELETED - | | 00001184 00001190 00001195 00001206 00001215 00001225 00001235 00001241 00001247 00001254 00001259 00001265 00001276 00001281 00001287 SST DELETED - | | 00001298 00001307 00001314 00001319 00001325 00001332 00001338 00001343 00001350 00001356 00001361 00001368 00001373 00001379 00001386 SST DELETED - | | 00001392 00001398 00001844 00001845 00001848 SST DELETED - | | 00001095 00001102 00001107 00001113 00001120 00001126 00001132 00001138 00001144 00001151 00001160 00001168 00001176 00001182 00001188 META DELETED - | | 00001194 00001203 00001212 00001222 00001232 00001240 00001246 00001252 00001258 00001264 00001272 00001280 00001286 00001294 00001303 META DELETED - | | 00001312 00001318 00001324 00001330 00001336 00001342 00001348 00001354 00001360 00001366 00001372 00001377 00001384 00001390 00001396 META DELETED - | | 00001402 00001846 00001853 META DELETED -Time 2026-02-26T08:14:06.251289567Z -Commit 00001864 350 keys in 14ms 153µs 239ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001862 | 00001861 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001863 | 00001860 SST | [=================================================================================================] | 00451748c51e234a-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001864 | 00001859 SST | [=================================================================================================] | 0156b802f089ee8f-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T08:14:51.952302615Z -Commit 00001870 245 keys in 13ms 856µs 393ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001868 | 00001867 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001869 | 00001866 SST | [=================================================================================================] | 00451748c51e234a-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001870 | 00001865 SST | [================================================================================================] | 03e049726d215b07-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T08:18:13.441936154Z -Commit 00001880 20879 keys in 21ms 536µs 118ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001876 | 00001873 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001877 | 00001875 SST | [==================================================================================================] | 00da4b46b165dc84-fff6c714cea90937 (0 MiB, fresh) - 1 | 00001878 | 00001872 SST | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 (3 MiB, fresh) - 3 | 00001879 | 00001874 SST | [==================================================================================================] | 00952b7185db44e8-ffa5f5fb7075c127 (0 MiB, fresh) - 2 | 00001880 | 00001871 SST | [==================================================================================================] | 0000737dcecb7eaa-fff6c714cea90937 (12 MiB, fresh) -Time 2026-02-26T08:18:35.991949964Z -Commit 00001886 4 keys in 14ms 624µs 272ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001884 | 00001883 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001885 | 00001881 SST | O | 644ab0543d93d744-644ab0543d93d744 (0 MiB, fresh) - 2 | 00001886 | 00001882 SST | O | 644ab0543d93d744-644ab0543d93d744 (0 MiB, fresh) -Time 2026-02-26T08:18:41.122858953Z -Commit 00001892 44 keys in 11ms 269µs 957ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001890 | 00001889 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001891 | 00001887 SST | [================================================================================================] | 048da72fac0637b1-fc5e17305f2972be (0 MiB, fresh) - 2 | 00001892 | 00001888 SST | [================================================================================================] | 048da72fac0637b1-fc5e17305f2972be (0 MiB, fresh) -Time 2026-02-26T08:21:05.908322681Z -Commit 00001902 1505 keys in 18ms 816µs 279ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001898 | 00001895 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001899 | 00001894 SST | [==================================================================================================] | 00451748c51e234a-ff73e16ef41df6ed (0 MiB, fresh) - 2 | 00001900 | 00001893 SST | [==================================================================================================] | 00be7689a896aee6-ff73e16ef41df6ed (1 MiB, fresh) - 3 | 00001901 | 00001896 SST | [===========================================================================================] | 02995ec690d0485d-f07581d1abca5f84 (0 MiB, fresh) - 4 | 00001902 | 00001897 SST | [============================================================================================] | 0a6050543d4d4b35-f9817c3b1f27429e (0 MiB, fresh) -Time 2026-02-26T08:21:14.280920527Z -Commit 00001908 4 keys in 14ms 348µs 542ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001906 | 00001905 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001907 | 00001903 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00001908 | 00001904 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-02-26T08:22:33.643537833Z -Commit 00001914 4 keys in 12ms 515µs 982ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001912 | 00001911 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001913 | 00001909 SST | O | 917abb42f579a00e-917abb42f579a00e (0 MiB, fresh) - 2 | 00001914 | 00001910 SST | O | 917abb42f579a00e-917abb42f579a00e (0 MiB, fresh) -Time 2026-02-26T08:23:07.263358456Z -Commit 00001920 126 keys in 12ms 45µs 401ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001918 | 00001917 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001919 | 00001915 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00001920 | 00001916 SST | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T08:24:06.549507855Z -Commit 00001930 11043 keys in 24ms 379µs 206ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001926 | 00001923 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00001927 | 00001925 SST | [==================================================================================================] | 00038b4b2876aba4-fde43c0a2e5baf1e (0 MiB, fresh) - 2 | 00001928 | 00001921 SST | [==================================================================================================] | 00038b4b2876aba4-fff6c714cea90937 (7 MiB, fresh) - 3 | 00001929 | 00001924 SST | [==================================================================================================] | 00f322fe1bfa2627-ff9a8e68ffaed589 (0 MiB, fresh) - 1 | 00001930 | 00001922 SST | [==================================================================================================] | 00038b4b2876aba4-fff6c714cea90937 (1 MiB, fresh) -Time 2026-02-26T08:25:35.455120371Z -Commit 00001940 6129 keys in 19ms 784µs 495ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001936 | 00001933 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00001937 | 00001931 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffcdcb24ae775f16 (2 MiB, fresh) - 1 | 00001938 | 00001932 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffcdcb24ae775f16 (1 MiB, fresh) - 3 | 00001939 | 00001934 SST | [==================================================================================================] | 0122b95db15c0473-ffc1a29d688dc6f9 (0 MiB, fresh) - 4 | 00001940 | 00001935 SST | [==================================================================================================] | 00e12ce897940127-ff26a6403ca05d51 (0 MiB, fresh) -Time 2026-02-26T08:25:54.367577847Z -Commit 00001950 6276 keys in 19ms 94µs 659ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001946 | 00001943 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001947 | 00001942 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffcdcb24ae775f16 (1 MiB, fresh) - 2 | 00001948 | 00001941 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffcdcb24ae775f16 (2 MiB, fresh) - 4 | 00001949 | 00001945 SST | [==================================================================================================] | 006d024181029f7b-fed6edf05375b3f4 (0 MiB, fresh) - 3 | 00001950 | 00001944 SST | [==================================================================================================] | 00012fb9ac34433b-fff2b59f429742fc (0 MiB, fresh) -Time 2026-02-26T08:25:57.333484746Z -Commit 00001956 4 keys in 11ms 339µs 566ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001954 | 00001953 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001955 | 00001951 SST | O | d0cbdc3033dc26ab-d0cbdc3033dc26ab (0 MiB, fresh) - 2 | 00001956 | 00001952 SST | O | d0cbdc3033dc26ab-d0cbdc3033dc26ab (0 MiB, fresh) -Time 2026-02-26T08:27:05.123883174Z -Commit 00001966 1021 keys in 16ms 203µs 376ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001962 | 00001959 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001963 | 00001958 SST | [==================================================================================================] | 00451748c51e234a-ff524be86f03e4d1 (0 MiB, fresh) - 2 | 00001964 | 00001957 SST | [==================================================================================================] | 00451748c51e234a-fe9f337cc2cb3046 (0 MiB, fresh) - 3 | 00001965 | 00001960 SST | [================================================================================================] | 0677706423538b83-ff0b8d232df588ef (0 MiB, fresh) - 4 | 00001966 | 00001961 SST | [================================================================================] | 03c0d5042bdbcc9f-d4290a7366ae4a5c (0 MiB, fresh) -Time 2026-02-26T08:27:16.35176539Z -Commit 00001972 4 keys in 14ms 50µs 300ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001970 | 00001969 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001971 | 00001967 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00001972 | 00001968 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-02-26T08:27:30.572891616Z -Commit 00001978 6 keys in 17ms 753µs 393ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001976 | 00001975 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001977 | 00001974 SST | [======================] | 67618542e134bb97-a16e46549e8066d7 (0 MiB, fresh) - 2 | 00001978 | 00001973 SST | [======================] | 67618542e134bb97-a16e46549e8066d7 (0 MiB, fresh) -Time 2026-02-26T08:28:25.646315416Z -Commit 00001984 4 keys in 12ms 202µs 609ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001982 | 00001981 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00001983 | 00001979 SST | O | d0cbdc3033dc26ab-d0cbdc3033dc26ab (0 MiB, fresh) - 2 | 00001984 | 00001980 SST | O | d0cbdc3033dc26ab-d0cbdc3033dc26ab (0 MiB, fresh) -Time 2026-02-26T08:30:37.825183802Z -Commit 00001994 14829 keys in 24ms 646µs 264ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00001990 | 00001987 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00001991 | 00001988 SST | [==================================================================================================] | 00690b54c2b51f64-ffd06a48042ec366 (0 MiB, fresh) - 4 | 00001992 | 00001989 SST | [==================================================================================================] | 00982e79aa2a934b-feb9fbc8ffe9340a (0 MiB, fresh) - 1 | 00001993 | 00001986 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe9c35c2954775d (1 MiB, fresh) - 2 | 00001994 | 00001985 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe9c35c2954775d (16 MiB, fresh) -Time 2026-02-26T08:30:57.993959365Z -Commit 00002004 5576 keys in 19ms 857µs 470ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002000 | 00001997 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002001 | 00001996 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffd287542c4ddaa8 (0 MiB, fresh) - 2 | 00002002 | 00001995 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffd287542c4ddaa8 (4 MiB, fresh) - 3 | 00002003 | 00001998 SST | [=================================================================================================] | 03b04ce46d71b92a-ff600f7065140c6a (0 MiB, fresh) - 4 | 00002004 | 00001999 SST | [==================================================================================================] | 00843e07567a8aae-ffd287542c4ddaa8 (0 MiB, fresh) -Time 2026-02-26T08:31:06.351151502Z -Commit 00002010 130 keys in 12ms 560µs 623ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002008 | 00002007 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002009 | 00002006 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002010 | 00002005 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T08:31:30.002437233Z -Commit 00002016 4 keys in 13ms 605µs 544ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002014 | 00002013 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002015 | 00002011 SST | O | ce9251923b6c25ea-ce9251923b6c25ea (0 MiB, fresh) - 2 | 00002016 | 00002012 SST | O | ce9251923b6c25ea-ce9251923b6c25ea (0 MiB, fresh) -Time 2026-02-26T08:31:33.819542183Z -Commit 00002026 6502 keys in 18ms 404µs 182ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002022 | 00002019 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002023 | 00002018 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffd287542c4ddaa8 (1 MiB, fresh) - 2 | 00002024 | 00002017 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffd287542c4ddaa8 (4 MiB, fresh) - 3 | 00002025 | 00002020 SST | [==================================================================================================] | 004c32356f700d67-ffa31bf3513edbd6 (0 MiB, fresh) - 4 | 00002026 | 00002021 SST | [==================================================================================================] | 022048754377e30d-ffcb6295ac229838 (0 MiB, fresh) - 2 | 00002030 | Compaction: - 2 | 00002030 | MERGE (353524 keys): - 2 | 00002030 | 00001855 INPUT | [=================================================] | 00005b386d02964f-802fa2ef72701bad - 2 | 00002030 | 00001856 INPUT | [================================================] | 802ff6093d57f729-ffffec37b1df3f15 - 2 | 00002030 | 00001854 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00002030 | 00001859 INPUT | [=================================================================================================] | 0156b802f089ee8f-fc14d191b68d496a - 2 | 00002030 | 00001865 INPUT | [================================================================================================] | 03e049726d215b07-fc14d191b68d496a - 2 | 00002030 | 00001871 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff6c714cea90937 - 2 | 00002030 | 00001882 INPUT | O | 644ab0543d93d744-644ab0543d93d744 - 2 | 00002030 | 00001888 INPUT | [================================================================================================] | 048da72fac0637b1-fc5e17305f2972be - 2 | 00002030 | 00001893 INPUT | [==================================================================================================] | 00be7689a896aee6-ff73e16ef41df6ed - 2 | 00002030 | 00001904 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 2 | 00002030 | 00001910 INPUT | O | 917abb42f579a00e-917abb42f579a00e - 2 | 00002030 | 00001916 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a - 2 | 00002030 | 00001921 INPUT | [==================================================================================================] | 00038b4b2876aba4-fff6c714cea90937 - 2 | 00002030 | 00001931 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffcdcb24ae775f16 - 2 | 00002030 | 00001941 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffcdcb24ae775f16 - 2 | 00002030 | 00001952 INPUT | O | d0cbdc3033dc26ab-d0cbdc3033dc26ab - 2 | 00002030 | 00001957 INPUT | [==================================================================================================] | 00451748c51e234a-fe9f337cc2cb3046 - 2 | 00002030 | 00001968 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 2 | 00002030 | 00001973 INPUT | [======================] | 67618542e134bb97-a16e46549e8066d7 - 2 | 00002030 | 00001980 INPUT | O | d0cbdc3033dc26ab-d0cbdc3033dc26ab - 2 | 00002030 | 00001985 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe9c35c2954775d - 2 | 00002030 | 00001995 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffd287542c4ddaa8 - 2 | 00002030 | 00002005 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002030 | 00002012 INPUT | O | ce9251923b6c25ea-ce9251923b6c25ea - 2 | 00002030 | 00002017 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffd287542c4ddaa8 - 2 | 00002030 | 00002028 OUTPUT | [=================================================] | 00005b386d02964f-8018cf395bf034fa (cold) - 2 | 00002030 | 00002029 OUTPUT | [================================================] | 80191cc2920e3a76-ffffec37b1df3f15 (cold) - 2 | 00002030 | 00002027 OUTPUT | [==================================================================================================] | 000ec71960d9cb04-fffdad0e4861d73a (warm) -Time 2026-02-26T08:31:36.137179889Z -Commit 00002031 353524 keys in 186ms 360µs 315ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00002030 | 00002028 SST | [=================================================] | 00005b386d02964f-8018cf395bf034fa (90 MiB, cold) - 2 | 00002030 | 00002029 SST | [================================================] | 80191cc2920e3a76-ffffec37b1df3f15 (80 MiB, cold) - 2 | 00002030 | 00002027 SST | [==================================================================================================] | 000ec71960d9cb04-fffdad0e4861d73a (2 MiB, warm) - 2 | 00002030 | 00001854 00001855 00001856 00001859 00001865 00001871 00001882 00001888 00001893 00001904 00001910 00001916 00001921 00001931 00001941 OBSOLETE SST - 2 | 00002030 | 00001952 00001957 00001968 00001973 00001980 00001985 00001995 00002005 00002012 00002017 OBSOLETE SST - | | 00001854 00001855 00001856 00001859 00001865 00001871 00001882 00001888 00001893 00001904 00001910 00001916 00001921 00001931 00001941 SST DELETED - | | 00001952 00001957 00001968 00001973 00001980 00001985 00001995 00002005 00002012 00002017 SST DELETED - | | 00001857 00001864 00001870 00001880 00001886 00001892 00001900 00001908 00001914 00001920 00001928 00001937 00001948 00001956 00001964 META DELETED - | | 00001972 00001978 00001984 00001994 00002002 00002010 00002016 00002024 META DELETED -Time 2026-02-26T08:31:58.522619863Z -Commit 00002041 4581 keys in 21ms 311µs 17ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002037 | 00002034 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002038 | 00002032 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 2 | 00002039 | 00002033 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (8 MiB, fresh) - 3 | 00002040 | 00002035 SST | [==================================================================================================] | 024e963953b81284-fdc2c079fde50e89 (0 MiB, fresh) - 4 | 00002041 | 00002036 SST | [================================================================================================] | 03eac738f19b90f1-fb69694babe59e83 (0 MiB, fresh) -Time 2026-02-26T08:32:11.652364393Z -Commit 00002047 4 keys in 11ms 763µs 491ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002045 | 00002044 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002046 | 00002042 SST | O | ce9251923b6c25ea-ce9251923b6c25ea (0 MiB, fresh) - 2 | 00002047 | 00002043 SST | O | ce9251923b6c25ea-ce9251923b6c25ea (0 MiB, fresh) -Time 2026-02-26T08:32:22.733342175Z -Commit 00002053 4 keys in 12ms 912µs 183ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002051 | 00002050 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002052 | 00002048 SST | O | b2032d88bf3399e2-b2032d88bf3399e2 (0 MiB, fresh) - 2 | 00002053 | 00002049 SST | O | b2032d88bf3399e2-b2032d88bf3399e2 (0 MiB, fresh) -Time 2026-02-26T08:32:49.311804369Z -Commit 00002063 5674 keys in 21ms 283µs 671ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002059 | 00002056 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002060 | 00002055 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 2 | 00002061 | 00002054 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (7 MiB, fresh) - 3 | 00002062 | 00002057 SST | [=========================================================================] | 1c25cd47637e235c-d70e27b4d91c1aaf (0 MiB, fresh) - 4 | 00002063 | 00002058 SST | [======================================================================================] | 15a9481a3abf52d7-f54efd8da5c7ad46 (0 MiB, fresh) -Time 2026-02-26T08:32:57.604834394Z -Commit 00002069 392 keys in 14ms 933µs 210ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002067 | 00002066 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002068 | 00002064 SST | [==================================================================================================] | 00451748c51e234a-fee9ad168a291d39 (0 MiB, fresh) - 2 | 00002069 | 00002065 SST | [==================================================================================================] | 00451748c51e234a-fee9ad168a291d39 (1 MiB, fresh) -Time 2026-02-26T08:33:19.596243605Z -Commit 00002075 2644 keys in 15ms 161µs 947ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002073 | 00002072 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002074 | 00002071 SST | [==================================================================================================] | 00247993547b8bb1-ffcb6295ac229838 (0 MiB, fresh) - 2 | 00002075 | 00002070 SST | [==================================================================================================] | 00247993547b8bb1-ffcb6295ac229838 (2 MiB, fresh) -Time 2026-02-26T08:33:42.191842369Z -Commit 00002081 4 keys in 13ms 512µs 287ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002079 | 00002078 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002080 | 00002076 SST | O | b2032d88bf3399e2-b2032d88bf3399e2 (0 MiB, fresh) - 2 | 00002081 | 00002077 SST | O | b2032d88bf3399e2-b2032d88bf3399e2 (0 MiB, fresh) -Time 2026-02-26T08:35:17.755909199Z -Commit 00002094 115928 keys in 37ms 802µs 591ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002090 | 00002087 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002091 | 00002088 SST | [==================================================================================================] | 00114f00d6126a7b-fffdfb931a546654 (0 MiB, fresh) - 3 | 00002092 | 00002089 SST | [==================================================================================================] | 000ca368d98f19e5-ffe3d6bb7519b1e3 (0 MiB, fresh) - 2 | 00002093 | 00002083 SST | [=======================] | c0019cded2c9f2f8-ffffbaef025822aa (5 MiB, fresh) - 2 | 00002093 | 00002082 SST | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 (5 MiB, fresh) - 2 | 00002093 | 00002085 SST | [=======================] | 4001020e413ba0bb-7fff3e58060494e8 (6 MiB, fresh) - 2 | 00002093 | 00002084 SST | [=======================] | 800147cfba42f052-bffc0ab636f44b8b (7 MiB, fresh) - 1 | 00002094 | 00002086 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffbaef025822aa (8 MiB, fresh) - 1 | 00002097 | Compaction: - 1 | 00002097 | MERGE (210315 keys): - 1 | 00002097 | 00001584 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002097 | 00001594 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002097 | 00001604 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002097 | 00001613 INPUT | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 - 1 | 00002097 | 00001624 INPUT | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 - 1 | 00002097 | 00001630 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 1 | 00002097 | 00001636 INPUT | [=================================================================================================] | 047f3b8521e60613-feeba07cd2711308 - 1 | 00002097 | 00001646 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 1 | 00002097 | 00001652 INPUT | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 - 1 | 00002097 | 00001661 INPUT | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 - 1 | 00002097 | 00001668 INPUT | [=================================================================================================] | 047f3b8521e60613-feeba07cd2711308 - 1 | 00002097 | 00001677 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 1 | 00002097 | 00001683 INPUT | [=================================================================================================] | 047f3b8521e60613-feeba07cd2711308 - 1 | 00002097 | 00001694 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 1 | 00002097 | 00001699 INPUT | O | b2032d88bf3399e2-b2032d88bf3399e2 - 1 | 00002097 | 00001706 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002097 | 00001712 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002097 | 00001722 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 1 | 00002097 | 00001732 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff258874d6df430 - 1 | 00002097 | 00001742 INPUT | [======================================] | 6524424a3be1ae51-c85fc8eb34d9f97f - 1 | 00002097 | 00001748 INPUT | [===============================================================================================] | 077050de58a07290-fcd7793042f87515 - 1 | 00002097 | 00001754 INPUT | [==================================================================================================] | 00451748c51e234a-fe9a7a0f20fcfa7f - 1 | 00002097 | 00001763 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 1 | 00002097 | 00001770 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002097 | 00001776 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe9c35c2954775d - 1 | 00002097 | 00001785 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe64bbd36bacfc8 - 1 | 00002097 | 00001791 INPUT | [==================================================================================================] | 000cab97f68623db-fed66bbe1990cac8 - 1 | 00002097 | 00001801 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffec37b1df3f15 - 1 | 00002097 | 00001811 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00002097 | 00001817 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002097 | 00001823 INPUT | [==================================================================================================] | 000ec6d80785bf8a-fff258874d6df430 - 1 | 00002097 | 00001828 INPUT | [================================================================================] | 0ddba8f0fb757605-de7965592b57622c - 1 | 00002097 | 00001835 INPUT | [==================================================================================================] | 000801e97f7ace52-fff258874d6df430 - 1 | 00002097 | 00001849 INPUT | [==============================================================================================] | 05c002209b2a1fd0-fadc20f25cf6a50e - 1 | 00002097 | 00001860 INPUT | [=================================================================================================] | 00451748c51e234a-fcd7793042f87515 - 1 | 00002097 | 00001866 INPUT | [=================================================================================================] | 00451748c51e234a-fcd7793042f87515 - 1 | 00002097 | 00001872 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 - 1 | 00002097 | 00001881 INPUT | O | 644ab0543d93d744-644ab0543d93d744 - 1 | 00002097 | 00001887 INPUT | [================================================================================================] | 048da72fac0637b1-fc5e17305f2972be - 1 | 00002097 | 00001894 INPUT | [==================================================================================================] | 00451748c51e234a-ff73e16ef41df6ed - 1 | 00002097 | 00001903 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 1 | 00002097 | 00001909 INPUT | O | 917abb42f579a00e-917abb42f579a00e - 1 | 00002097 | 00001915 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 1 | 00002097 | 00001922 INPUT | [==================================================================================================] | 00038b4b2876aba4-fff6c714cea90937 - 1 | 00002097 | 00001932 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffcdcb24ae775f16 - 1 | 00002097 | 00001942 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffcdcb24ae775f16 - 1 | 00002097 | 00001951 INPUT | O | d0cbdc3033dc26ab-d0cbdc3033dc26ab - 1 | 00002097 | 00001958 INPUT | [==================================================================================================] | 00451748c51e234a-ff524be86f03e4d1 - 1 | 00002097 | 00001967 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 1 | 00002097 | 00001974 INPUT | [======================] | 67618542e134bb97-a16e46549e8066d7 - 1 | 00002097 | 00001979 INPUT | O | d0cbdc3033dc26ab-d0cbdc3033dc26ab - 1 | 00002097 | 00001986 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe9c35c2954775d - 1 | 00002097 | 00001996 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffd287542c4ddaa8 - 1 | 00002097 | 00002006 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002097 | 00002011 INPUT | O | ce9251923b6c25ea-ce9251923b6c25ea - 1 | 00002097 | 00002018 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffd287542c4ddaa8 - 1 | 00002097 | 00002032 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00002097 | 00002042 INPUT | O | ce9251923b6c25ea-ce9251923b6c25ea - 1 | 00002097 | 00002048 INPUT | O | b2032d88bf3399e2-b2032d88bf3399e2 - 1 | 00002097 | 00002055 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00002097 | 00002064 INPUT | [==================================================================================================] | 00451748c51e234a-fee9ad168a291d39 - 1 | 00002097 | 00002071 INPUT | [==================================================================================================] | 00247993547b8bb1-ffcb6295ac229838 - 1 | 00002097 | 00002076 INPUT | O | b2032d88bf3399e2-b2032d88bf3399e2 - 1 | 00002097 | 00002086 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffbaef025822aa - 1 | 00002097 | 00002096 OUTPUT | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 (cold) - 1 | 00002097 | 00002095 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffbaef025822aa (warm) -Time 2026-02-26T08:35:19.739328802Z -Commit 00002098 210315 keys in 50ms 591µs 931ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00002097 | 00002096 SST | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 (5 MiB, cold) - 1 | 00002097 | 00002095 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffbaef025822aa (10 MiB, warm) - 1 | 00002097 | 00001584 00001594 00001604 00001613 00001624 00001630 00001636 00001646 00001652 00001661 00001668 00001677 00001683 00001694 00001699 OBSOLETE SST - 1 | 00002097 | 00001706 00001712 00001722 00001732 00001742 00001748 00001754 00001763 00001770 00001776 00001785 00001791 00001801 00001811 00001817 OBSOLETE SST - 1 | 00002097 | 00001823 00001828 00001835 00001849 00001860 00001866 00001872 00001881 00001887 00001894 00001903 00001909 00001915 00001922 00001932 OBSOLETE SST - 1 | 00002097 | 00001942 00001951 00001958 00001967 00001974 00001979 00001986 00001996 00002006 00002011 00002018 00002032 00002042 00002048 00002055 OBSOLETE SST - 1 | 00002097 | 00002064 00002071 00002076 00002086 OBSOLETE SST - | | 00001584 00001594 00001604 00001613 00001624 00001630 00001636 00001646 00001652 00001661 00001668 00001677 00001683 00001694 00001699 SST DELETED - | | 00001706 00001712 00001722 00001732 00001742 00001748 00001754 00001763 00001770 00001776 00001785 00001791 00001801 00001811 00001817 SST DELETED - | | 00001823 00001828 00001835 00001849 00001860 00001866 00001872 00001881 00001887 00001894 00001903 00001909 00001915 00001922 00001932 SST DELETED - | | 00001942 00001951 00001958 00001967 00001974 00001979 00001986 00001996 00002006 00002011 00002018 00002032 00002042 00002048 00002055 SST DELETED - | | 00002064 00002071 00002076 00002086 SST DELETED - | | 00001589 00001599 00001609 00001619 00001627 00001633 00001642 00001649 00001658 00001665 00001673 00001681 00001689 00001697 00001703 META DELETED - | | 00001710 00001719 00001729 00001738 00001745 00001751 00001759 00001767 00001774 00001783 00001789 00001795 00001809 00001815 00001820 META DELETED - | | 00001827 00001832 00001843 00001852 00001863 00001869 00001878 00001885 00001891 00001899 00001907 00001913 00001919 00001930 00001938 META DELETED - | | 00001947 00001955 00001963 00001971 00001977 00001983 00001993 00002001 00002009 00002015 00002023 00002038 00002046 00002052 00002060 META DELETED - | | 00002068 00002074 00002080 00002094 META DELETED -Time 2026-02-26T08:35:24.675153222Z -Commit 00002108 43541 keys in 28ms 572µs 114ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002104 | 00002101 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002105 | 00002099 SST | [==================================================================================================] | 000e5f330a67e38b-fffdf5bc1fb95865 (14 MiB, fresh) - 4 | 00002106 | 00002102 SST | [==================================================================================================] | 000e5f330a67e38b-fffdf5bc1fb95865 (0 MiB, fresh) - 3 | 00002107 | 00002103 SST | [==================================================================================================] | 000a8929b0c40b1f-ffe00bc996ddf50a (0 MiB, fresh) - 1 | 00002108 | 00002100 SST | [==================================================================================================] | 000801e97f7ace52-fffdf5bc1fb95865 (4 MiB, fresh) -Time 2026-02-26T08:36:31.773216942Z -Commit 00002118 11903 keys in 22ms 957µs 128ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002114 | 00002111 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002115 | 00002109 SST | [==================================================================================================] | 001c1ac34bc35cc9-fffdf5bc1fb95865 (8 MiB, fresh) - 3 | 00002116 | 00002113 SST | [==================================================================================================] | 0017da25022d052c-fffd74f188f75b51 (0 MiB, fresh) - 4 | 00002117 | 00002112 SST | [==================================================================================================] | 00509ce1014dd424-ffe1d0de3b8d6998 (0 MiB, fresh) - 1 | 00002118 | 00002110 SST | [==================================================================================================] | 001c1ac34bc35cc9-fffdf5bc1fb95865 (2 MiB, fresh) -Time 2026-02-26T08:36:57.735367404Z -Commit 00002124 4 keys in 11ms 490µs 48ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002122 | 00002121 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002123 | 00002119 SST | O | b2032d88bf3399e2-b2032d88bf3399e2 (0 MiB, fresh) - 2 | 00002124 | 00002120 SST | O | b2032d88bf3399e2-b2032d88bf3399e2 (0 MiB, fresh) -Time 2026-02-26T08:37:31.379773652Z -Commit 00002134 17969 keys in 23ms 582µs 91ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002130 | 00002127 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002131 | 00002126 SST | [==================================================================================================] | 0000737dcecb7eaa-fffa6f268933ee9b (2 MiB, fresh) - 2 | 00002132 | 00002125 SST | [==================================================================================================] | 0000737dcecb7eaa-fffa6f268933ee9b (15 MiB, fresh) - 3 | 00002133 | 00002128 SST | [==================================================================================================] | 0018f6e003bdaec1-ff36a6b694cf8122 (0 MiB, fresh) - 4 | 00002134 | 00002129 SST | [==================================================================================================] | 0008cb6d782eb4fb-ffd91849d2319443 (0 MiB, fresh) - 2 | 00002138 | Compaction: - 2 | 00002138 | MERGE (361750 keys): - 2 | 00002138 | 00002028 INPUT | [=================================================] | 00005b386d02964f-8018cf395bf034fa - 2 | 00002138 | 00002029 INPUT | [================================================] | 80191cc2920e3a76-ffffec37b1df3f15 - 2 | 00002138 | 00002027 INPUT | [==================================================================================================] | 000ec71960d9cb04-fffdad0e4861d73a - 2 | 00002138 | 00002033 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00002138 | 00002043 INPUT | O | ce9251923b6c25ea-ce9251923b6c25ea - 2 | 00002138 | 00002049 INPUT | O | b2032d88bf3399e2-b2032d88bf3399e2 - 2 | 00002138 | 00002054 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00002138 | 00002065 INPUT | [==================================================================================================] | 00451748c51e234a-fee9ad168a291d39 - 2 | 00002138 | 00002070 INPUT | [==================================================================================================] | 00247993547b8bb1-ffcb6295ac229838 - 2 | 00002138 | 00002077 INPUT | O | b2032d88bf3399e2-b2032d88bf3399e2 - 2 | 00002138 | 00002083 INPUT | [=======================] | c0019cded2c9f2f8-ffffbaef025822aa - 2 | 00002138 | 00002082 INPUT | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 - 2 | 00002138 | 00002085 INPUT | [=======================] | 4001020e413ba0bb-7fff3e58060494e8 - 2 | 00002138 | 00002084 INPUT | [=======================] | 800147cfba42f052-bffc0ab636f44b8b - 2 | 00002138 | 00002099 INPUT | [==================================================================================================] | 000e5f330a67e38b-fffdf5bc1fb95865 - 2 | 00002138 | 00002109 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-fffdf5bc1fb95865 - 2 | 00002138 | 00002120 INPUT | O | b2032d88bf3399e2-b2032d88bf3399e2 - 2 | 00002138 | 00002125 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffa6f268933ee9b - 2 | 00002138 | 00002136 OUTPUT | [=================================================] | 00005b386d02964f-80204da0e39cc483 (cold) - 2 | 00002138 | 00002137 OUTPUT | [================================================] | 8021217910da85dd-ffffec37b1df3f15 (cold) - 2 | 00002138 | 00002135 OUTPUT | [==================================================================================================] | 0005f2a89e6d0129-ffffbaef025822aa (warm) -Time 2026-02-26T08:37:33.508869977Z -Commit 00002139 361750 keys in 233ms 772µs 896ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00002138 | 00002136 SST | [=================================================] | 00005b386d02964f-80204da0e39cc483 (89 MiB, cold) - 2 | 00002138 | 00002137 SST | [================================================] | 8021217910da85dd-ffffec37b1df3f15 (80 MiB, cold) - 2 | 00002138 | 00002135 SST | [==================================================================================================] | 0005f2a89e6d0129-ffffbaef025822aa (9 MiB, warm) - 2 | 00002138 | 00002027 00002028 00002029 00002033 00002043 00002049 00002054 00002065 00002070 00002077 00002082 00002083 00002084 00002085 00002099 OBSOLETE SST - 2 | 00002138 | 00002109 00002120 00002125 OBSOLETE SST - | | 00002027 00002028 00002029 00002033 00002043 00002049 00002054 00002065 00002070 00002077 00002082 00002083 00002084 00002085 00002099 SST DELETED - | | 00002109 00002120 00002125 SST DELETED - | | 00002030 00002039 00002047 00002053 00002061 00002069 00002075 00002081 00002093 00002105 00002115 00002124 00002132 META DELETED -Time 2026-02-26T08:38:30.105690189Z -Commit 00002152 70101 keys in 35ms 726µs 699ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002148 | 00002145 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002149 | 00002146 SST | [==================================================================================================] | 005d2fafe22306d2-ffc804a48df01387 (0 MiB, fresh) - 2 | 00002150 | 00002141 SST | [=======================] | c001821168374c2d-ffffbaef025822aa (4 MiB, fresh) - 2 | 00002150 | 00002142 SST | [=======================] | 4005709d3e404494-7ffcd0a75b88c6ae (5 MiB, fresh) - 2 | 00002150 | 00002140 SST | [=======================] | 0000737dcecb7eaa-3fffc4516da228ed (6 MiB, fresh) - 2 | 00002150 | 00002143 SST | [=======================] | 8000c8a3abd31e56-bffc0ab636f44b8b (6 MiB, fresh) - 3 | 00002151 | 00002147 SST | [==================================================================================================] | 002aa1b9a08df9d0-fff599acb99d0b8d (0 MiB, fresh) - 1 | 00002152 | 00002144 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffbaef025822aa (5 MiB, fresh) -Time 2026-02-26T08:46:20.075673317Z -Commit 00002158 380 keys in 14ms 848µs 971ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002156 | 00002155 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002157 | 00002153 SST | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 (0 MiB, fresh) - 2 | 00002158 | 00002154 SST | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 (0 MiB, fresh) -Time 2026-02-26T08:46:53.115506467Z -Commit 00002168 56623 keys in 28ms 916µs 408ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002164 | 00002161 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002165 | 00002162 SST | [==================================================================================================] | 002fbdb7b0620bb1-fed8a3d77c5ba9f6 (0 MiB, fresh) - 1 | 00002166 | 00002160 SST | [==================================================================================================] | 00013cd911d26d15-ffffbaef025822aa (4 MiB, fresh) - 3 | 00002167 | 00002163 SST | [==================================================================================================] | 00283838c4fc289e-ffd6d64b3f6248d4 (0 MiB, fresh) - 2 | 00002168 | 00002159 SST | [==================================================================================================] | 00013cd911d26d15-ffffbaef025822aa (15 MiB, fresh) -Time 2026-02-26T08:47:04.058797517Z -Commit 00002174 118 keys in 13ms 472µs 89ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002172 | 00002171 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002173 | 00002170 SST | [==============================================================================================] | 09eaac796fa7980d-fc8c44ad7977b311 (0 MiB, fresh) - 2 | 00002174 | 00002169 SST | [==============================================================================================] | 09eaac796fa7980d-fc8c44ad7977b311 (0 MiB, fresh) -Time 2026-02-26T08:55:21.55436196Z -Commit 00002180 784 keys in 16ms 679µs 583ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002178 | 00002177 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002179 | 00002176 SST | [==================================================================================================] | 006ec0d842304288-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00002180 | 00002175 SST | [==================================================================================================] | 006ec0d842304288-ffe9c35c2954775d (3 MiB, fresh) -Time 2026-02-26T09:00:25.474447678Z -Commit 00002190 840 keys in 19ms 84µs 863ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002186 | 00002183 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002187 | 00002182 SST | [==================================================================================================] | 00451748c51e234a-ff382f713f6ec8d6 (0 MiB, fresh) - 2 | 00002188 | 00002181 SST | [==================================================================================================] | 00451748c51e234a-ff382f713f6ec8d6 (1 MiB, fresh) - 3 | 00002189 | 00002184 SST | O | bb8be6d63c20b268-bb8be6d63c20b268 (0 MiB, fresh) - 4 | 00002190 | 00002185 SST | O | 7e630627f531234a-7e630627f531234a (0 MiB, fresh) -Time 2026-02-26T09:01:54.764754425Z -Commit 00002196 500 keys in 17ms 217µs 554ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002194 | 00002193 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002195 | 00002191 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) - 2 | 00002196 | 00002192 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (1 MiB, fresh) -Time 2026-02-26T09:02:20.804284693Z -Commit 00002202 4 keys in 14ms 257µs 611ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002200 | 00002199 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002201 | 00002197 SST | O | ba3886710cf3d1d8-ba3886710cf3d1d8 (0 MiB, fresh) - 2 | 00002202 | 00002198 SST | O | ba3886710cf3d1d8-ba3886710cf3d1d8 (0 MiB, fresh) -Time 2026-02-26T09:03:00.917438526Z -Commit 00002208 48 keys in 13ms 668µs 857ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002206 | 00002205 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002207 | 00002204 SST | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 (0 MiB, fresh) - 2 | 00002208 | 00002203 SST | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 (0 MiB, fresh) -Time 2026-02-26T09:05:19.563522204Z -Commit 00002214 500 keys in 13ms 77µs 382ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002212 | 00002211 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002213 | 00002210 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) - 2 | 00002214 | 00002209 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (1 MiB, fresh) -Time 2026-02-26T09:06:22.427838291Z -Commit 00002220 756 keys in 10ms 243µs 674ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002218 | 00002217 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002219 | 00002216 SST | [==================================================================================================] | 00451748c51e234a-fefb34c78df804af (0 MiB, fresh) - 2 | 00002220 | 00002215 SST | [==================================================================================================] | 00451748c51e234a-fe219f5c03106ee8 (1 MiB, fresh) -Time 2026-02-26T09:06:31.538550656Z -Commit 00002226 4 keys in 10ms 868µs 180ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002224 | 00002223 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002225 | 00002221 SST | O | ba3886710cf3d1d8-ba3886710cf3d1d8 (0 MiB, fresh) - 2 | 00002226 | 00002222 SST | O | ba3886710cf3d1d8-ba3886710cf3d1d8 (0 MiB, fresh) -Time 2026-02-26T09:06:48.851909257Z -Commit 00002232 428 keys in 14ms 188µs 591ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002230 | 00002229 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002231 | 00002227 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) - 2 | 00002232 | 00002228 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) -Time 2026-02-26T09:08:50.027987775Z -Commit 00002238 4 keys in 12ms 383µs 288ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002236 | 00002235 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002237 | 00002233 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00002238 | 00002234 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-02-26T09:09:12.247685356Z -Commit 00002244 498 keys in 12ms 309µs 678ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002242 | 00002241 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002243 | 00002240 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) - 2 | 00002244 | 00002239 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (1 MiB, fresh) -Time 2026-02-26T09:09:26.649227238Z -Commit 00002250 4 keys in 10ms 785µs 991ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002248 | 00002247 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002249 | 00002245 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00002250 | 00002246 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-02-26T09:09:29.198001749Z -Commit 00002256 4 keys in 11ms 962µs 370ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002254 | 00002253 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002255 | 00002251 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00002256 | 00002252 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-02-26T09:11:21.464175573Z -Commit 00002262 498 keys in 12ms 410µs 862ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002260 | 00002259 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002261 | 00002258 SST | [==================================================================================================] | 00451748c51e234a-ffbbef4774bed3d8 (0 MiB, fresh) - 2 | 00002262 | 00002257 SST | [==================================================================================================] | 00451748c51e234a-ffbbef4774bed3d8 (1 MiB, fresh) -Time 2026-02-26T09:18:08.35251709Z -Commit 00002268 157 keys in 13ms 751µs 330ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002266 | 00002265 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002267 | 00002264 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002268 | 00002263 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T09:19:50.381455772Z -Commit 00002274 365 keys in 10ms 369µs 905ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002272 | 00002271 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002273 | 00002270 SST | [==================================================================================================] | 006ec0d842304288-fe219f5c03106ee8 (0 MiB, fresh) - 2 | 00002274 | 00002269 SST | [==================================================================================================] | 006ec0d842304288-fe219f5c03106ee8 (0 MiB, fresh) -Time 2026-02-26T09:21:06.730331111Z -Commit 00002280 4391 keys in 12ms 681µs 620ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002278 | 00002277 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002279 | 00002275 SST | [==================================================================================================] | 00451748c51e234a-ffed09d2c5d7db6f (3 MiB, fresh) - 1 | 00002280 | 00002276 SST | [==================================================================================================] | 00451748c51e234a-ffed09d2c5d7db6f (1 MiB, fresh) -Time 2026-02-26T09:22:51.593622088Z -Commit 00002290 822 keys in 16ms 666µs 627ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002286 | 00002283 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002287 | 00002282 SST | [==================================================================================================] | 00451748c51e234a-ffed09d2c5d7db6f (0 MiB, fresh) - 2 | 00002288 | 00002281 SST | [==================================================================================================] | 00451748c51e234a-ffed09d2c5d7db6f (1 MiB, fresh) - 4 | 00002289 | 00002284 SST | [=======================] | a33fc97e22e32069-defe03dd2fb7c3e0 (0 MiB, fresh) - 3 | 00002290 | 00002285 SST | [=========================] | 19d929f2744b871a-5e399b9ae9746a27 (0 MiB, fresh) -Time 2026-02-26T09:23:00.877719628Z -Commit 00002296 528 keys in 13ms 316µs 611ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002294 | 00002293 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002295 | 00002292 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) - 2 | 00002296 | 00002291 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (1 MiB, fresh) -Time 2026-02-26T09:23:27.291650579Z -Commit 00002302 860 keys in 13ms 218µs 76ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002300 | 00002299 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002301 | 00002298 SST | [==================================================================================================] | 00451748c51e234a-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00002302 | 00002297 SST | [==================================================================================================] | 00451748c51e234a-ffe9c35c2954775d (3 MiB, fresh) -Time 2026-02-26T09:29:29.615007705Z -Commit 00002312 6415 keys in 22ms 208µs 470ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002308 | 00002305 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002309 | 00002304 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) - 2 | 00002310 | 00002303 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (9 MiB, fresh) - 4 | 00002311 | 00002307 SST | [====================================================================================] | 1d6b02acc9720143-f7f8b8eabfda5b6f (0 MiB, fresh) - 3 | 00002312 | 00002306 SST | [================================================================================================] | 05fcba856bfd3ab4-feaac5105cb1ffe9 (0 MiB, fresh) - 2 | 00002316 | Compaction: - 2 | 00002316 | MERGE (364637 keys): - 2 | 00002316 | 00002136 INPUT | [=================================================] | 00005b386d02964f-80204da0e39cc483 - 2 | 00002316 | 00002137 INPUT | [================================================] | 8021217910da85dd-ffffec37b1df3f15 - 2 | 00002316 | 00002135 INPUT | [==================================================================================================] | 0005f2a89e6d0129-ffffbaef025822aa - 2 | 00002316 | 00002141 INPUT | [=======================] | c001821168374c2d-ffffbaef025822aa - 2 | 00002316 | 00002142 INPUT | [=======================] | 4005709d3e404494-7ffcd0a75b88c6ae - 2 | 00002316 | 00002140 INPUT | [=======================] | 0000737dcecb7eaa-3fffc4516da228ed - 2 | 00002316 | 00002143 INPUT | [=======================] | 8000c8a3abd31e56-bffc0ab636f44b8b - 2 | 00002316 | 00002154 INPUT | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 - 2 | 00002316 | 00002159 INPUT | [==================================================================================================] | 00013cd911d26d15-ffffbaef025822aa - 2 | 00002316 | 00002169 INPUT | [==============================================================================================] | 09eaac796fa7980d-fc8c44ad7977b311 - 2 | 00002316 | 00002175 INPUT | [==================================================================================================] | 006ec0d842304288-ffe9c35c2954775d - 2 | 00002316 | 00002181 INPUT | [==================================================================================================] | 00451748c51e234a-ff382f713f6ec8d6 - 2 | 00002316 | 00002192 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 2 | 00002316 | 00002198 INPUT | O | ba3886710cf3d1d8-ba3886710cf3d1d8 - 2 | 00002316 | 00002203 INPUT | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 - 2 | 00002316 | 00002209 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 2 | 00002316 | 00002215 INPUT | [==================================================================================================] | 00451748c51e234a-fe219f5c03106ee8 - 2 | 00002316 | 00002222 INPUT | O | ba3886710cf3d1d8-ba3886710cf3d1d8 - 2 | 00002316 | 00002228 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 2 | 00002316 | 00002234 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00002316 | 00002239 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 2 | 00002316 | 00002246 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 2 | 00002316 | 00002252 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00002316 | 00002257 INPUT | [==================================================================================================] | 00451748c51e234a-ffbbef4774bed3d8 - 2 | 00002316 | 00002263 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002316 | 00002269 INPUT | [==================================================================================================] | 006ec0d842304288-fe219f5c03106ee8 - 2 | 00002316 | 00002275 INPUT | [==================================================================================================] | 00451748c51e234a-ffed09d2c5d7db6f - 2 | 00002316 | 00002281 INPUT | [==================================================================================================] | 00451748c51e234a-ffed09d2c5d7db6f - 2 | 00002316 | 00002291 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 2 | 00002316 | 00002297 INPUT | [==================================================================================================] | 00451748c51e234a-ffe9c35c2954775d - 2 | 00002316 | 00002303 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00002316 | 00002314 OUTPUT | [=================================================] | 00005b386d02964f-802272464b55323b (cold) - 2 | 00002316 | 00002315 OUTPUT | [================================================] | 802282ad75f133f6-ffffec37b1df3f15 (cold) - 2 | 00002316 | 00002313 OUTPUT | [==================================================================================================] | 00013cd911d26d15-ffed09d2c5d7db6f (warm) -Time 2026-02-26T09:29:30.799932793Z -Commit 00002317 364637 keys in 167ms 286µs 417ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00002316 | 00002314 SST | [=================================================] | 00005b386d02964f-802272464b55323b (96 MiB, cold) - 2 | 00002316 | 00002315 SST | [================================================] | 802282ad75f133f6-ffffec37b1df3f15 (87 MiB, cold) - 2 | 00002316 | 00002313 SST | [==================================================================================================] | 00013cd911d26d15-ffed09d2c5d7db6f (2 MiB, warm) - 2 | 00002316 | 00002135 00002136 00002137 00002140 00002141 00002142 00002143 00002154 00002159 00002169 00002175 00002181 00002192 00002198 00002203 OBSOLETE SST - 2 | 00002316 | 00002209 00002215 00002222 00002228 00002234 00002239 00002246 00002252 00002257 00002263 00002269 00002275 00002281 00002291 00002297 OBSOLETE SST - 2 | 00002316 | 00002303 OBSOLETE SST - | | 00002135 00002136 00002137 00002140 00002141 00002142 00002143 00002154 00002159 00002169 00002175 00002181 00002192 00002198 00002203 SST DELETED - | | 00002209 00002215 00002222 00002228 00002234 00002239 00002246 00002252 00002257 00002263 00002269 00002275 00002281 00002291 00002297 SST DELETED - | | 00002303 SST DELETED - | | 00002138 00002150 00002158 00002168 00002174 00002180 00002188 00002196 00002202 00002208 00002214 00002220 00002226 00002232 00002238 META DELETED - | | 00002244 00002250 00002256 00002262 00002268 00002274 00002279 00002288 00002296 00002302 00002310 META DELETED -Time 2026-02-26T09:32:03.590322884Z -Commit 00002323 4 keys in 12ms 340µs 932ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002321 | 00002320 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002322 | 00002318 SST | O | 917abb42f579a00e-917abb42f579a00e (0 MiB, fresh) - 2 | 00002323 | 00002319 SST | O | 917abb42f579a00e-917abb42f579a00e (0 MiB, fresh) -Time 2026-02-26T09:43:55.737219141Z -Commit 00002329 6359 keys in 16ms 112µs 58ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002327 | 00002326 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002328 | 00002324 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (9 MiB, fresh) - 1 | 00002329 | 00002325 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) -Time 2026-02-26T09:47:00.004752223Z -Commit 00002335 496 keys in 13ms 39µs 336ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002333 | 00002332 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002334 | 00002331 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) - 2 | 00002335 | 00002330 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (1 MiB, fresh) -Time 2026-02-26T09:47:21.934846314Z -Commit 00002341 426 keys in 9ms 51µs 847ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002339 | 00002338 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002340 | 00002337 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) - 2 | 00002341 | 00002336 SST | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 (0 MiB, fresh) -Time 2026-02-26T09:50:41.05491204Z -Commit 00002347 157 keys in 20ms 570µs 748ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002345 | 00002344 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002346 | 00002342 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002347 | 00002343 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T09:51:35.253762049Z -Commit 00002353 157 keys in 9ms 435µs 968ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002351 | 00002350 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002352 | 00002348 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002353 | 00002349 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T11:38:35.734804044Z -Commit 00002363 6468 keys in 22ms 487µs 151ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002359 | 00002356 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002360 | 00002354 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (9 MiB, fresh) - 1 | 00002361 | 00002355 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) - 4 | 00002362 | 00002358 SST | [===========================================================================================] | 12b2e7a2b23113e9-fdfb43ca4a3f5061 (0 MiB, fresh) - 3 | 00002363 | 00002357 SST | [========================================================================================] | 1a158a7bb0418d9a-ff5e7fe6ba365ffd (0 MiB, fresh) -Time 2026-02-26T11:38:54.806720873Z -Commit 00002369 482 keys in 10ms 544µs 799ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002367 | 00002366 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002368 | 00002364 SST | [=================================================================================================] | 03f651f60cc5b9b7-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00002369 | 00002365 SST | [=================================================================================================] | 03f651f60cc5b9b7-ffe9c35c2954775d (1 MiB, fresh) -Time 2026-02-26T11:39:22.011477059Z -Commit 00002375 155 keys in 8ms 807µs 921ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002373 | 00002372 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002374 | 00002370 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002375 | 00002371 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T11:43:45.034205747Z -Commit 00002381 159 keys in 11ms 812µs 121ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002379 | 00002378 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002380 | 00002377 SST | [===============================================================================================] | 055f38971e3f4b40-fd523bf45febe205 (0 MiB, fresh) - 2 | 00002381 | 00002376 SST | [===============================================================================================] | 055f38971e3f4b40-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-26T11:49:03.091247257Z -Commit 00002387 467 keys in 9ms 91µs 374ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002385 | 00002384 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002386 | 00002383 SST | [=================================================================================================] | 03f651f60cc5b9b7-ffe9c35c2954775d (0 MiB, fresh) - 2 | 00002387 | 00002382 SST | [=================================================================================================] | 03f651f60cc5b9b7-ffe9c35c2954775d (1 MiB, fresh) -Time 2026-02-26T11:49:15.166133796Z -Commit 00002393 155 keys in 11ms 228µs 981ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002391 | 00002390 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002392 | 00002388 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002393 | 00002389 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T11:51:08.04106331Z -Commit 00002399 155 keys in 10ms 56µs 225ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002397 | 00002396 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002398 | 00002394 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002399 | 00002395 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T11:51:56.677208759Z -Commit 00002405 155 keys in 12ms 382µs 373ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002403 | 00002402 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002404 | 00002400 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002405 | 00002401 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T11:59:04.641813405Z -Commit 00002411 155 keys in 12ms 103µs 235ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002409 | 00002408 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002410 | 00002407 SST | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a (0 MiB, fresh) - 1 | 00002411 | 00002406 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) -Time 2026-02-26T12:00:23.367359887Z -Commit 00002417 245 keys in 9ms 734µs 403ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002415 | 00002414 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002416 | 00002413 SST | [=================================================================================================] | 03bfaf281cffcaa2-feeba07cd2711308 (0 MiB, fresh) - 2 | 00002417 | 00002412 SST | [=================================================================================================] | 03bfaf281cffcaa2-fee38f1e3332a6dc (0 MiB, fresh) -Time 2026-02-26T12:01:36.385024856Z -Commit 00002423 242 keys in 10ms 935µs 474ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002421 | 00002420 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002422 | 00002418 SST | [=================================================================================================] | 03d3bdca710f7bbc-ff663d159104ea30 (0 MiB, fresh) - 2 | 00002423 | 00002419 SST | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 (0 MiB, fresh) -Time 2026-02-26T12:02:09.555951295Z -Commit 00002429 69 keys in 8ms 244µs 672ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002427 | 00002426 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002428 | 00002424 SST | [=================================================================================================] | 04da11712d9050bc-ff9103aea0711ef3 (0 MiB, fresh) - 2 | 00002429 | 00002425 SST | [=================================================================================================] | 04da11712d9050bc-ff9103aea0711ef3 (0 MiB, fresh) -Time 2026-02-26T12:03:21.05916101Z -Commit 00002442 44142 keys in 29ms 957µs 920ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002438 | 00002435 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002439 | 00002436 SST | [==================================================================================================] | 000101447073f439-fff86ec82cc83f7c (0 MiB, fresh) - 2 | 00002440 | 00002433 SST | [=======================] | c002a8d6281f9acd-ffff5f9b333e341e (4 MiB, fresh) - 2 | 00002440 | 00002430 SST | [=======================] | 80020afe74689529-bfed8da6cba6ae9c (6 MiB, fresh) - 2 | 00002440 | 00002431 SST | [=======================] | 400955e24ef86a9a-7ff554e0e1594f17 (5 MiB, fresh) - 2 | 00002440 | 00002432 SST | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 (5 MiB, fresh) - 3 | 00002441 | 00002437 SST | [==================================================================================================] | 001d78a216227da1-fff169cc95f10734 (0 MiB, fresh) - 1 | 00002442 | 00002434 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (5 MiB, fresh) -Time 2026-02-26T12:10:02.736686222Z -Commit 00002448 6018 keys in 13ms 896µs 406ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002446 | 00002445 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002447 | 00002443 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00002448 | 00002444 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) -Time 2026-02-26T12:15:32.987066006Z -Commit 00002454 6139 keys in 12ms 615µs 995ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002452 | 00002451 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002453 | 00002450 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) - 2 | 00002454 | 00002449 SST | [==================================================================================================] | 005b36fb126383dd-ffe9c35c2954775d (1 MiB, fresh) - 1 | 00002457 | Compaction: - 1 | 00002457 | MERGE (221444 keys): - 1 | 00002457 | 00001499 INPUT | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 - 1 | 00002457 | 00001505 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002457 | 00001512 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002457 | 00001518 INPUT | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 - 1 | 00002457 | 00001524 INPUT | [==================================================================================================] | 00247993547b8bb1-ff8fa7dcd8343a6c - 1 | 00002457 | 00001534 INPUT | [==================================================================================================] | 00247993547b8bb1-ffe64bbd36bacfc8 - 1 | 00002457 | 00001543 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002457 | 00001549 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002457 | 00001555 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002457 | 00001562 INPUT | [==================================================================================================] | 012c453e3baea5c9-ffe64bbd36bacfc8 - 1 | 00002457 | 00001568 INPUT | [=================================================================================================] | 03d6a10478b76364-fda90c044f987db8 - 1 | 00002457 | 00001574 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002457 | 00002096 INPUT | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 - 1 | 00002457 | 00002095 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffbaef025822aa - 1 | 00002457 | 00002100 INPUT | [==================================================================================================] | 000801e97f7ace52-fffdf5bc1fb95865 - 1 | 00002457 | 00002110 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-fffdf5bc1fb95865 - 1 | 00002457 | 00002119 INPUT | O | b2032d88bf3399e2-b2032d88bf3399e2 - 1 | 00002457 | 00002126 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffa6f268933ee9b - 1 | 00002457 | 00002144 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffbaef025822aa - 1 | 00002457 | 00002153 INPUT | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 - 1 | 00002457 | 00002160 INPUT | [==================================================================================================] | 00013cd911d26d15-ffffbaef025822aa - 1 | 00002457 | 00002170 INPUT | [==============================================================================================] | 09eaac796fa7980d-fc8c44ad7977b311 - 1 | 00002457 | 00002176 INPUT | [==================================================================================================] | 006ec0d842304288-ffe9c35c2954775d - 1 | 00002457 | 00002182 INPUT | [==================================================================================================] | 00451748c51e234a-ff382f713f6ec8d6 - 1 | 00002457 | 00002191 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 1 | 00002457 | 00002197 INPUT | O | ba3886710cf3d1d8-ba3886710cf3d1d8 - 1 | 00002457 | 00002204 INPUT | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 - 1 | 00002457 | 00002210 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 1 | 00002457 | 00002216 INPUT | [==================================================================================================] | 00451748c51e234a-fefb34c78df804af - 1 | 00002457 | 00002221 INPUT | O | ba3886710cf3d1d8-ba3886710cf3d1d8 - 1 | 00002457 | 00002227 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 1 | 00002457 | 00002233 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 1 | 00002457 | 00002240 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 1 | 00002457 | 00002245 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 1 | 00002457 | 00002251 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 1 | 00002457 | 00002258 INPUT | [==================================================================================================] | 00451748c51e234a-ffbbef4774bed3d8 - 1 | 00002457 | 00002264 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002457 | 00002270 INPUT | [==================================================================================================] | 006ec0d842304288-fe219f5c03106ee8 - 1 | 00002457 | 00002276 INPUT | [==================================================================================================] | 00451748c51e234a-ffed09d2c5d7db6f - 1 | 00002457 | 00002282 INPUT | [==================================================================================================] | 00451748c51e234a-ffed09d2c5d7db6f - 1 | 00002457 | 00002292 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 1 | 00002457 | 00002298 INPUT | [==================================================================================================] | 00451748c51e234a-ffe9c35c2954775d - 1 | 00002457 | 00002304 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002457 | 00002318 INPUT | O | 917abb42f579a00e-917abb42f579a00e - 1 | 00002457 | 00002325 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002457 | 00002331 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 1 | 00002457 | 00002337 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 1 | 00002457 | 00002342 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002457 | 00002348 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002457 | 00002355 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002457 | 00002364 INPUT | [=================================================================================================] | 03f651f60cc5b9b7-ffe9c35c2954775d - 1 | 00002457 | 00002370 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002457 | 00002377 INPUT | [===============================================================================================] | 055f38971e3f4b40-fd523bf45febe205 - 1 | 00002457 | 00002383 INPUT | [=================================================================================================] | 03f651f60cc5b9b7-ffe9c35c2954775d - 1 | 00002457 | 00002388 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002457 | 00002394 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002457 | 00002400 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002457 | 00002406 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002457 | 00002413 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-feeba07cd2711308 - 1 | 00002457 | 00002418 INPUT | [=================================================================================================] | 03d3bdca710f7bbc-ff663d159104ea30 - 1 | 00002457 | 00002424 INPUT | [=================================================================================================] | 04da11712d9050bc-ff9103aea0711ef3 - 1 | 00002457 | 00002434 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 1 | 00002457 | 00002444 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002457 | 00002450 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002457 | 00002456 OUTPUT | [==================================================================================================] | 000101447073f439-ffffec37b1df3f15 (cold) - 1 | 00002457 | 00002455 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-02-26T12:15:34.141157351Z -Commit 00002458 221444 keys in 37ms 587µs 710ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00002457 | 00002456 SST | [==================================================================================================] | 000101447073f439-ffffec37b1df3f15 (10 MiB, cold) - 1 | 00002457 | 00002455 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (7 MiB, warm) - 1 | 00002457 | 00001499 00001505 00001512 00001518 00001524 00001534 00001543 00001549 00001555 00001562 00001568 00001574 00002095 00002096 00002100 OBSOLETE SST - 1 | 00002457 | 00002110 00002119 00002126 00002144 00002153 00002160 00002170 00002176 00002182 00002191 00002197 00002204 00002210 00002216 00002221 OBSOLETE SST - 1 | 00002457 | 00002227 00002233 00002240 00002245 00002251 00002258 00002264 00002270 00002276 00002282 00002292 00002298 00002304 00002318 00002325 OBSOLETE SST - 1 | 00002457 | 00002331 00002337 00002342 00002348 00002355 00002364 00002370 00002377 00002383 00002388 00002394 00002400 00002406 00002413 00002418 OBSOLETE SST - 1 | 00002457 | 00002424 00002434 00002444 00002450 OBSOLETE SST - | | 00001499 00001505 00001512 00001518 00001524 00001534 00001543 00001549 00001555 00001562 00001568 00001574 00002095 00002096 00002100 SST DELETED - | | 00002110 00002119 00002126 00002144 00002153 00002160 00002170 00002176 00002182 00002191 00002197 00002204 00002210 00002216 00002221 SST DELETED - | | 00002227 00002233 00002240 00002245 00002251 00002258 00002264 00002270 00002276 00002282 00002292 00002298 00002304 00002318 00002325 SST DELETED - | | 00002331 00002337 00002342 00002348 00002355 00002364 00002370 00002377 00002383 00002388 00002394 00002400 00002406 00002413 00002418 SST DELETED - | | 00002424 00002434 00002444 00002450 SST DELETED - | | 00001503 00001509 00001515 00001521 00001530 00001541 00001547 00001553 00001559 00001565 00001571 00001579 00002097 00002108 00002118 META DELETED - | | 00002123 00002131 00002152 00002157 00002166 00002173 00002179 00002187 00002195 00002201 00002207 00002213 00002219 00002225 00002231 META DELETED - | | 00002237 00002243 00002249 00002255 00002261 00002267 00002273 00002280 00002287 00002295 00002301 00002309 00002322 00002329 00002334 META DELETED - | | 00002340 00002346 00002352 00002361 00002368 00002374 00002380 00002386 00002392 00002398 00002404 00002411 00002416 00002422 00002428 META DELETED - | | 00002442 00002448 00002453 META DELETED -Time 2026-02-26T12:32:44.449360818Z -Commit 00002464 4 keys in 9ms 223µs 818ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002462 | 00002461 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002463 | 00002459 SST | O | 12b2e7a2b23113e9-12b2e7a2b23113e9 (0 MiB, fresh) - 2 | 00002464 | 00002460 SST | O | 12b2e7a2b23113e9-12b2e7a2b23113e9 (0 MiB, fresh) -Time 2026-02-26T12:34:34.129989049Z -Commit 00002470 12 keys in 11ms 895µs 606ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002468 | 00002467 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002469 | 00002466 SST | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 (0 MiB, fresh) - 2 | 00002470 | 00002465 SST | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 (0 MiB, fresh) -Time 2026-02-26T12:34:40.098314003Z -Commit 00002476 134 keys in 13ms 446µs 687ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002474 | 00002473 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002475 | 00002472 SST | [================================================================================================] | 0530facb559fb17b-ff663d159104ea30 (0 MiB, fresh) - 2 | 00002476 | 00002471 SST | [==============================================================================================] | 0530facb559fb17b-fa929381403932d4 (0 MiB, fresh) -Time 2026-02-26T12:34:59.396562175Z -Commit 00002482 19 keys in 11ms 354µs 874ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002480 | 00002479 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002481 | 00002477 SST | [==========================================================================] | 29f1035399595a9f-e92bd10d21615cf9 (0 MiB, fresh) - 2 | 00002482 | 00002478 SST | [========================================] | 7b20de822a1cf93d-e59f6a19dcef11fa (0 MiB, fresh) -Time 2026-02-26T12:45:01.616968443Z -Commit 00002492 6353 keys in 15ms 730µs 580ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002488 | 00002485 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00002489 | 00002486 SST | [==================================================================================================] | 01b85a156f8cfb33-ff314cc4ac1d43fc (0 MiB, fresh) - 1 | 00002490 | 00002484 SST | [==================================================================================================] | 0006bb8b2247bad7-ffdcfea9c313d579 (1 MiB, fresh) - 2 | 00002491 | 00002483 SST | [==================================================================================================] | 0006bb8b2247bad7-ffdcfea9c313d579 (0 MiB, fresh) - 4 | 00002492 | 00002487 SST | [==================================================================================================] | 0144b3b4b7d4d46e-ffdcfea9c313d579 (0 MiB, fresh) -Time 2026-02-26T12:45:04.844904439Z -Commit 00002502 6067 keys in 20ms 334µs 828ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002498 | 00002495 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002499 | 00002494 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe906c4424c73e5 (1 MiB, fresh) - 2 | 00002500 | 00002493 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe906c4424c73e5 (6 MiB, fresh) - 3 | 00002501 | 00002497 SST | [=============================================================================================] | 08ce51a6bc0a2f83-f8ba10587a33b9b2 (0 MiB, fresh) - 4 | 00002502 | 00002496 SST | [=============================================================================================] | 0ef2707ede84c346-fe2726825762a606 (0 MiB, fresh) -Time 2026-02-26T12:48:16.68225344Z -Commit 00002512 7526 keys in 16ms 894µs 478ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002508 | 00002505 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002509 | 00002507 SST | [============================================================================] | 27fefc47b48ccf2f-ed805721ab5131bb (0 MiB, fresh) - 1 | 00002510 | 00002504 SST | [==================================================================================================] | 0006bb8b2247bad7-ffe906c4424c73e5 (1 MiB, fresh) - 2 | 00002511 | 00002503 SST | [==================================================================================================] | 0006bb8b2247bad7-ffe906c4424c73e5 (3 MiB, fresh) - 3 | 00002512 | 00002506 SST | [======================================================================] | 3bf14a660d61d160-f2b81da969454968 (0 MiB, fresh) -Time 2026-02-26T12:49:40.249395776Z -Commit 00002518 336 keys in 11ms 976µs 316ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002516 | 00002515 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002517 | 00002514 SST | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002518 | 00002513 SST | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-02-26T12:49:58.807084782Z -Commit 00002524 526 keys in 12ms 259µs 317ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002522 | 00002521 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002523 | 00002519 SST | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 (0 MiB, fresh) - 2 | 00002524 | 00002520 SST | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 (0 MiB, fresh) -Time 2026-02-26T12:50:24.442446081Z -Commit 00002530 4 keys in 11ms 772µs 596ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002528 | 00002527 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002529 | 00002525 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00002530 | 00002526 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-02-26T12:50:56.145333535Z -Commit 00002536 6015 keys in 16ms 545µs 706ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002534 | 00002533 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002535 | 00002531 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00002536 | 00002532 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) -Time 2026-02-26T12:54:04.226945941Z -Commit 00002542 485 keys in 11ms 590µs 538ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002540 | 00002539 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002541 | 00002537 SST | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 (0 MiB, fresh) - 1 | 00002542 | 00002538 SST | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 (0 MiB, fresh) -Time 2026-02-26T12:54:10.928316466Z -Commit 00002548 482 keys in 11ms 497µs 403ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002546 | 00002545 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002547 | 00002543 SST | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 (0 MiB, fresh) - 2 | 00002548 | 00002544 SST | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 (0 MiB, fresh) -Time 2026-02-26T12:54:21.819282318Z -Commit 00002554 12 keys in 12ms 934µs 774ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002552 | 00002551 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002553 | 00002549 SST | [================================================================================] | 18b4ae45bc9cb8b0-e88808f51ffca3a1 (0 MiB, fresh) - 2 | 00002554 | 00002550 SST | [================================================================================] | 18b4ae45bc9cb8b0-e88808f51ffca3a1 (0 MiB, fresh) -Time 2026-03-06T09:27:01.140848797Z -Commit 00002560 5989 keys in 13ms 54µs 522ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002558 | 00002557 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002559 | 00002555 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00002560 | 00002556 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) -Time 2026-03-06T09:27:07.043167092Z -Commit 00002566 2455 keys in 14ms 116µs 646ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002564 | 00002563 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002565 | 00002562 SST | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 (1 MiB, fresh) - 2 | 00002566 | 00002561 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-03-06T09:27:11.566383293Z -Commit 00002572 1515 keys in 13ms 818µs 760ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002570 | 00002569 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002571 | 00002568 SST | [==================================================================================================] | 000ec6d80785bf8a-fff187cd7cce0e80 (0 MiB, fresh) - 2 | 00002572 | 00002567 SST | [=========================================================================================] | 14dd4b812fa2359a-fc0b4323f673e89b (0 MiB, fresh) -Time 2026-03-26T15:04:55.652675053Z -Commit 00002582 6733 keys in 14ms 299µs 640ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002578 | 00002575 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00002579 | 00002576 SST | [=================================================================================================] | 040a69d9353d9b2f-fe22e7314ed19f23 (0 MiB, fresh) - 4 | 00002580 | 00002577 SST | [==============================================================================================] | 0b3662eaf8516d93-ff9e69506694ecba (0 MiB, fresh) - 2 | 00002581 | 00002573 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00002582 | 00002574 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) -Time 2026-03-26T15:05:02.235317426Z -Commit 00002592 40931 keys in 22ms 246µs 582ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002588 | 00002585 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002589 | 00002586 SST | [==================================================================================================] | 003a5284b173daad-fff259adbcc9b1a8 (0 MiB, fresh) - 3 | 00002590 | 00002587 SST | [==================================================================================================] | 0015fe81b2394be0-fffb160d1e53231c (0 MiB, fresh) - 1 | 00002591 | 00002584 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (5 MiB, fresh) - 2 | 00002592 | 00002583 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (14 MiB, fresh) - 2 | 00002596 | Compaction: - 2 | 00002596 | MERGE (371220 keys): - 2 | 00002596 | 00002314 INPUT | [=================================================] | 00005b386d02964f-802272464b55323b - 2 | 00002596 | 00002315 INPUT | [================================================] | 802282ad75f133f6-ffffec37b1df3f15 - 2 | 00002596 | 00002313 INPUT | [==================================================================================================] | 00013cd911d26d15-ffed09d2c5d7db6f - 2 | 00002596 | 00002319 INPUT | O | 917abb42f579a00e-917abb42f579a00e - 2 | 00002596 | 00002324 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00002596 | 00002330 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 2 | 00002596 | 00002336 INPUT | [==================================================================================================] | 00451748c51e234a-fe74f183c1fd4b13 - 2 | 00002596 | 00002343 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002596 | 00002349 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002596 | 00002354 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00002596 | 00002365 INPUT | [=================================================================================================] | 03f651f60cc5b9b7-ffe9c35c2954775d - 2 | 00002596 | 00002371 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002596 | 00002376 INPUT | [===============================================================================================] | 055f38971e3f4b40-fd523bf45febe205 - 2 | 00002596 | 00002382 INPUT | [=================================================================================================] | 03f651f60cc5b9b7-ffe9c35c2954775d - 2 | 00002596 | 00002389 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002596 | 00002395 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002596 | 00002401 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002596 | 00002407 INPUT | [===============================================================================================] | 055f38971e3f4b40-fc14d191b68d496a - 2 | 00002596 | 00002412 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fee38f1e3332a6dc - 2 | 00002596 | 00002419 INPUT | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 - 2 | 00002596 | 00002425 INPUT | [=================================================================================================] | 04da11712d9050bc-ff9103aea0711ef3 - 2 | 00002596 | 00002433 INPUT | [=======================] | c002a8d6281f9acd-ffff5f9b333e341e - 2 | 00002596 | 00002430 INPUT | [=======================] | 80020afe74689529-bfed8da6cba6ae9c - 2 | 00002596 | 00002431 INPUT | [=======================] | 400955e24ef86a9a-7ff554e0e1594f17 - 2 | 00002596 | 00002432 INPUT | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 - 2 | 00002596 | 00002443 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00002596 | 00002449 INPUT | [==================================================================================================] | 005b36fb126383dd-ffe9c35c2954775d - 2 | 00002596 | 00002460 INPUT | O | 12b2e7a2b23113e9-12b2e7a2b23113e9 - 2 | 00002596 | 00002465 INPUT | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 - 2 | 00002596 | 00002471 INPUT | [==============================================================================================] | 0530facb559fb17b-fa929381403932d4 - 2 | 00002596 | 00002478 INPUT | [========================================] | 7b20de822a1cf93d-e59f6a19dcef11fa - 2 | 00002596 | 00002483 INPUT | [==================================================================================================] | 0006bb8b2247bad7-ffdcfea9c313d579 - 2 | 00002596 | 00002493 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe906c4424c73e5 - 2 | 00002596 | 00002503 INPUT | [==================================================================================================] | 0006bb8b2247bad7-ffe906c4424c73e5 - 2 | 00002596 | 00002513 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a - 2 | 00002596 | 00002520 INPUT | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 - 2 | 00002596 | 00002526 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00002596 | 00002531 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00002596 | 00002537 INPUT | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 - 2 | 00002596 | 00002544 INPUT | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 - 2 | 00002596 | 00002550 INPUT | [================================================================================] | 18b4ae45bc9cb8b0-e88808f51ffca3a1 - 2 | 00002596 | 00002555 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00002596 | 00002561 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00002596 | 00002567 INPUT | [=========================================================================================] | 14dd4b812fa2359a-fc0b4323f673e89b - 2 | 00002596 | 00002573 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00002596 | 00002583 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00002596 | 00002594 OUTPUT | [=================================================] | 00005b386d02964f-80166bf81035b1f7 (cold) - 2 | 00002596 | 00002595 OUTPUT | [================================================] | 80167f718cf1c2e1-ffffec37b1df3f15 (cold) - 2 | 00002596 | 00002593 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-03-26T15:05:03.669358174Z -Commit 00002597 371220 keys in 128ms 586µs 116ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00002596 | 00002594 SST | [=================================================] | 00005b386d02964f-80166bf81035b1f7 (88 MiB, cold) - 2 | 00002596 | 00002595 SST | [================================================] | 80167f718cf1c2e1-ffffec37b1df3f15 (74 MiB, cold) - 2 | 00002596 | 00002593 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (30 MiB, warm) - 2 | 00002596 | 00002313 00002314 00002315 00002319 00002324 00002330 00002336 00002343 00002349 00002354 00002365 00002371 00002376 00002382 00002389 OBSOLETE SST - 2 | 00002596 | 00002395 00002401 00002407 00002412 00002419 00002425 00002430 00002431 00002432 00002433 00002443 00002449 00002460 00002465 00002471 OBSOLETE SST - 2 | 00002596 | 00002478 00002483 00002493 00002503 00002513 00002520 00002526 00002531 00002537 00002544 00002550 00002555 00002561 00002567 00002573 OBSOLETE SST - 2 | 00002596 | 00002583 OBSOLETE SST - | | 00002313 00002314 00002315 00002319 00002324 00002330 00002336 00002343 00002349 00002354 00002365 00002371 00002376 00002382 00002389 SST DELETED - | | 00002395 00002401 00002407 00002412 00002419 00002425 00002430 00002431 00002432 00002433 00002443 00002449 00002460 00002465 00002471 SST DELETED - | | 00002478 00002483 00002493 00002503 00002513 00002520 00002526 00002531 00002537 00002544 00002550 00002555 00002561 00002567 00002573 SST DELETED - | | 00002583 SST DELETED - | | 00002316 00002323 00002328 00002335 00002341 00002347 00002353 00002360 00002369 00002375 00002381 00002387 00002393 00002399 00002405 META DELETED - | | 00002410 00002417 00002423 00002429 00002440 00002447 00002454 00002464 00002470 00002476 00002482 00002491 00002500 00002511 00002518 META DELETED - | | 00002524 00002530 00002535 00002541 00002548 00002554 00002559 00002566 00002572 00002581 00002592 META DELETED -Time 2026-03-26T15:05:25.036663944Z -Commit 00002607 50287 keys in 26ms 557µs 906ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002603 | 00002600 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002604 | 00002602 SST | [==================================================================================================] | 0001c8be4f344474-ffffa00a695df4ec (0 MiB, fresh) - 3 | 00002605 | 00002601 SST | [==================================================================================================] | 0007b19bf923bc35-ffd4678a51e722c6 (0 MiB, fresh) - 2 | 00002606 | 00002598 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffa00a695df4ec (16 MiB, fresh) - 1 | 00002607 | 00002599 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (5 MiB, fresh) -Time 2026-03-26T15:05:47.475071602Z -Commit 00002613 629 keys in 9ms 830µs 381ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002611 | 00002610 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002612 | 00002608 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00002613 | 00002609 SST | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T15:05:49.877064603Z -Commit 00002619 455 keys in 11ms 35µs 986ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002617 | 00002616 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002618 | 00002615 SST | [==================================================================================================] | 00451748c51e234a-fe9a7a0f20fcfa7f (0 MiB, fresh) - 2 | 00002619 | 00002614 SST | [================================================================================================] | 047f3b8521e60613-fd523bf45febe205 (0 MiB, fresh) -Time 2026-03-26T15:06:03.971229442Z -Commit 00002629 7699 keys in 18ms 402µs 436ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002625 | 00002622 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00002626 | 00002623 SST | [=========================================================================================] | 1786bb5bf3094602-ffacba4028a35f6e (0 MiB, fresh) - 2 | 00002627 | 00002620 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (9 MiB, fresh) - 1 | 00002628 | 00002621 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) - 4 | 00002629 | 00002624 SST | [========================================================================] | 24192e620f6da105-e015464895aa713e (0 MiB, fresh) -Time 2026-03-26T15:06:08.176089978Z -Commit 00002635 451 keys in 12ms 200µs 889ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002633 | 00002632 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002634 | 00002631 SST | [==================================================================================================] | 001fdbc43360ebe8-ffb97dda81fa6cfa (0 MiB, fresh) - 2 | 00002635 | 00002630 SST | [==================================================================================================] | 001fdbc43360ebe8-ffb97dda81fa6cfa (0 MiB, fresh) -Time 2026-03-26T15:06:10.973534307Z -Commit 00002641 506 keys in 9ms 709µs 239ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002639 | 00002638 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002640 | 00002636 SST | [==================================================================================================] | 001fdbc43360ebe8-ffc95807b58d8ba6 (0 MiB, fresh) - 2 | 00002641 | 00002637 SST | [==================================================================================================] | 001fdbc43360ebe8-ffc95807b58d8ba6 (0 MiB, fresh) -Time 2026-03-26T15:06:29.026052761Z -Commit 00002647 156 keys in 12ms 609µs 876ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002645 | 00002644 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002646 | 00002643 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002647 | 00002642 SST | [===============================================================================================] | 077050de58a07290-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T15:08:11.293702269Z -Commit 00002653 210 keys in 13ms 866µs 254ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002651 | 00002650 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002652 | 00002649 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002653 | 00002648 SST | [===============================================================================================] | 069f921c4d350ddd-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T15:09:57.233798735Z -Commit 00002659 148 keys in 12ms 403µs 663ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002657 | 00002656 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002658 | 00002654 SST | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 (0 MiB, fresh) - 2 | 00002659 | 00002655 SST | [===============================================================================================] | 077050de58a07290-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T15:11:02.072936141Z -Commit 00002669 1612 keys in 17ms 436µs 540ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002665 | 00002662 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002666 | 00002660 SST | [==================================================================================================] | 00451748c51e234a-fff1974f877cf551 (0 MiB, fresh) - 2 | 00002667 | 00002661 SST | [==================================================================================================] | 0079297cb331b81a-fff1974f877cf551 (1 MiB, fresh) - 3 | 00002668 | 00002664 SST | [==================================================================================================] | 00a50872b904ec1b-fe670f1329147499 (0 MiB, fresh) - 4 | 00002669 | 00002663 SST | [=================================================================================================] | 038eac66190a489e-ff4ed4de074e61b1 (0 MiB, fresh) -Time 2026-03-26T15:12:04.186244041Z -Commit 00002679 9162 keys in 19ms 214µs 809ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002675 | 00002672 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002676 | 00002670 SST | [==================================================================================================] | 0079297cb331b81a-fd97170ac32dd562 (0 MiB, fresh) - 3 | 00002677 | 00002673 SST | [============================================================================================] | 0c174f5a334a0a63-fa0df4d35477e003 (0 MiB, fresh) - 4 | 00002678 | 00002674 SST | [================================================================================================] | 00f033b01bbb3a32-f8be9f7baf6d4e64 (0 MiB, fresh) - 1 | 00002679 | 00002671 SST | [==================================================================================================] | 00087b22676a0ae7-fffdd89e249d22e3 (1 MiB, fresh) -Time 2026-03-26T15:12:09.40689948Z -Commit 00002689 5677 keys in 21ms 863µs 939ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002685 | 00002682 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002686 | 00002681 SST | [==================================================================================================] | 0010e26242e36d1c-ffe9c35c2954775d (1 MiB, fresh) - 3 | 00002687 | 00002683 SST | [==================================================================================================] | 01011155fadf5f30-fe28d1ddfb263f2f (0 MiB, fresh) - 2 | 00002688 | 00002680 SST | [==================================================================================================] | 0010e26242e36d1c-ffe9c35c2954775d (5 MiB, fresh) - 4 | 00002689 | 00002684 SST | [=================================================================================================] | 004e5c0ba2ad1642-fcb6c577bbe3c43f (0 MiB, fresh) -Time 2026-03-26T15:13:35.227850372Z -Commit 00002699 40449 keys in 25ms 666µs 796ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002695 | 00002692 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002696 | 00002690 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (16 MiB, fresh) - 4 | 00002697 | 00002694 SST | [==================================================================================================] | 0005eda8abd017e1-ffe0f24aa87d7015 (0 MiB, fresh) - 3 | 00002698 | 00002693 SST | [==================================================================================================] | 0003bde3a3aa31ce-ffea175cd85ed6c3 (0 MiB, fresh) - 1 | 00002699 | 00002691 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (5 MiB, fresh) - 2 | 00002704 | Compaction: - 2 | 00002704 | MERGE (378111 keys): - 2 | 00002704 | 00002594 INPUT | [=================================================] | 00005b386d02964f-80166bf81035b1f7 - 2 | 00002704 | 00002595 INPUT | [================================================] | 80167f718cf1c2e1-ffffec37b1df3f15 - 2 | 00002704 | 00002593 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00002704 | 00002598 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffa00a695df4ec - 2 | 00002704 | 00002609 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fc14d191b68d496a - 2 | 00002704 | 00002614 INPUT | [================================================================================================] | 047f3b8521e60613-fd523bf45febe205 - 2 | 00002704 | 00002620 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00002704 | 00002630 INPUT | [==================================================================================================] | 001fdbc43360ebe8-ffb97dda81fa6cfa - 2 | 00002704 | 00002637 INPUT | [==================================================================================================] | 001fdbc43360ebe8-ffc95807b58d8ba6 - 2 | 00002704 | 00002642 INPUT | [===============================================================================================] | 077050de58a07290-fc14d191b68d496a - 2 | 00002704 | 00002648 INPUT | [===============================================================================================] | 069f921c4d350ddd-fc14d191b68d496a - 2 | 00002704 | 00002655 INPUT | [===============================================================================================] | 077050de58a07290-fc14d191b68d496a - 2 | 00002704 | 00002661 INPUT | [==================================================================================================] | 0079297cb331b81a-fff1974f877cf551 - 2 | 00002704 | 00002670 INPUT | [==================================================================================================] | 0079297cb331b81a-fd97170ac32dd562 - 2 | 00002704 | 00002680 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffe9c35c2954775d - 2 | 00002704 | 00002690 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00002704 | 00002700 OUTPUT | [===========================================] | 00005b386d02964f-70b3d7166dca0b32 (cold) - 2 | 00002704 | 00002702 OUTPUT | [===========================] | 70b3f6a19ce7711d-b899cf87a30768f1 (cold) - 2 | 00002704 | 00002703 OUTPUT | [==========================] | b899d1fc588f62bc-ffffec37b1df3f15 (cold) - 2 | 00002704 | 00002701 OUTPUT | [==================================================================================================] | 0006bb8b2247bad7-fff88b53b5ad4b9a (warm) -Time 2026-03-26T15:13:36.46533435Z -Commit 00002705 378111 keys in 153ms 839µs 151ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00002704 | 00002700 SST | [===========================================] | 00005b386d02964f-70b3d7166dca0b32 (92 MiB, cold) - 2 | 00002704 | 00002702 SST | [===========================] | 70b3f6a19ce7711d-b899cf87a30768f1 (52 MiB, cold) - 2 | 00002704 | 00002703 SST | [==========================] | b899d1fc588f62bc-ffffec37b1df3f15 (52 MiB, cold) - 2 | 00002704 | 00002701 SST | [==================================================================================================] | 0006bb8b2247bad7-fff88b53b5ad4b9a (4 MiB, warm) - 2 | 00002704 | 00002593 00002594 00002595 00002598 00002609 00002614 00002620 00002630 00002637 00002642 00002648 00002655 00002661 00002670 00002680 OBSOLETE SST - 2 | 00002704 | 00002690 OBSOLETE SST - | | 00002593 00002594 00002595 00002598 00002609 00002614 00002620 00002630 00002637 00002642 00002648 00002655 00002661 00002670 00002680 SST DELETED - | | 00002690 SST DELETED - | | 00002596 00002606 00002613 00002619 00002627 00002635 00002641 00002647 00002653 00002659 00002667 00002676 00002688 00002696 META DELETED -Time 2026-03-26T15:13:39.504136231Z -Commit 00002711 6 keys in 11ms 224µs 77ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002709 | 00002708 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002710 | 00002707 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) - 2 | 00002711 | 00002706 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) -Time 2026-03-26T15:15:14.74311537Z -Commit 00002721 45672 keys in 26ms 718µs 947ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002717 | 00002714 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002718 | 00002715 SST | [==================================================================================================] | 002950f59227987b-fff5d0c7322e056c (0 MiB, fresh) - 3 | 00002719 | 00002716 SST | [==================================================================================================] | 000ad9fd3032d19c-ffddebb521162559 (0 MiB, fresh) - 2 | 00002720 | 00002712 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (21 MiB, fresh) - 1 | 00002721 | 00002713 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (5 MiB, fresh) - 1 | 00002724 | Compaction: - 1 | 00002724 | MERGE (246172 keys): - 1 | 00002724 | 00001331 INPUT | O | 8b1938d8de66eeb5-8b1938d8de66eeb5 - 1 | 00002724 | 00001337 INPUT | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 - 1 | 00002724 | 00001344 INPUT | [===========================================] | 1e41eaf88d8a5fd7-8cffe13643d55d45 - 1 | 00002724 | 00001349 INPUT | [================================================================================================] | 03b2283fcea8785f-fd31ba46e3533eb7 - 1 | 00002724 | 00001355 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002724 | 00001362 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 1 | 00002724 | 00001367 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 1 | 00002724 | 00001374 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002724 | 00001380 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002724 | 00001385 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 1 | 00002724 | 00001391 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 1 | 00002724 | 00001397 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002724 | 00001404 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002724 | 00001409 INPUT | [==================================================================================================] | 0112226f1a7b95ce-ffe9c35c2954775d - 1 | 00002724 | 00001415 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 1 | 00002724 | 00001422 INPUT | [=================================================================================================] | 00858af2653b1f32-fc81935582fd0550 - 1 | 00002724 | 00001428 INPUT | [=========] | bb1161806166d0fd-d5de3d95c4489feb - 1 | 00002724 | 00001434 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002724 | 00001439 INPUT | [=========] | bb1161806166d0fd-d5de3d95c4489feb - 1 | 00002724 | 00001446 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 1 | 00002724 | 00001451 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 1 | 00002724 | 00001457 INPUT | [====================================================================================] | 0cdf68ff10917e36-e89372215f857fa5 - 1 | 00002724 | 00001463 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002724 | 00001469 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002724 | 00001476 INPUT | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 - 1 | 00002724 | 00001481 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 1 | 00002724 | 00001488 INPUT | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 - 1 | 00002724 | 00001493 INPUT | O | 300f824fb94447b0-300f824fb94447b0 - 1 | 00002724 | 00002456 INPUT | [==================================================================================================] | 000101447073f439-ffffec37b1df3f15 - 1 | 00002724 | 00002455 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 1 | 00002724 | 00002459 INPUT | O | 12b2e7a2b23113e9-12b2e7a2b23113e9 - 1 | 00002724 | 00002466 INPUT | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 - 1 | 00002724 | 00002472 INPUT | [================================================================================================] | 0530facb559fb17b-ff663d159104ea30 - 1 | 00002724 | 00002477 INPUT | [==========================================================================] | 29f1035399595a9f-e92bd10d21615cf9 - 1 | 00002724 | 00002484 INPUT | [==================================================================================================] | 0006bb8b2247bad7-ffdcfea9c313d579 - 1 | 00002724 | 00002494 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe906c4424c73e5 - 1 | 00002724 | 00002504 INPUT | [==================================================================================================] | 0006bb8b2247bad7-ffe906c4424c73e5 - 1 | 00002724 | 00002514 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 1 | 00002724 | 00002519 INPUT | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 - 1 | 00002724 | 00002525 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 1 | 00002724 | 00002532 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002724 | 00002538 INPUT | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 - 1 | 00002724 | 00002543 INPUT | [=================================================================================================] | 02dc87a743e68b12-ff45d6c3b893bf25 - 1 | 00002724 | 00002549 INPUT | [================================================================================] | 18b4ae45bc9cb8b0-e88808f51ffca3a1 - 1 | 00002724 | 00002556 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002724 | 00002562 INPUT | [==================================================================================================] | 000801e97f7ace52-ffe64bbd36bacfc8 - 1 | 00002724 | 00002568 INPUT | [==================================================================================================] | 000ec6d80785bf8a-fff187cd7cce0e80 - 1 | 00002724 | 00002574 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002724 | 00002584 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00002724 | 00002599 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 - 1 | 00002724 | 00002608 INPUT | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 - 1 | 00002724 | 00002615 INPUT | [==================================================================================================] | 00451748c51e234a-fe9a7a0f20fcfa7f - 1 | 00002724 | 00002621 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00002724 | 00002631 INPUT | [==================================================================================================] | 001fdbc43360ebe8-ffb97dda81fa6cfa - 1 | 00002724 | 00002636 INPUT | [==================================================================================================] | 001fdbc43360ebe8-ffc95807b58d8ba6 - 1 | 00002724 | 00002643 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002724 | 00002649 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002724 | 00002654 INPUT | [===============================================================================================] | 055f38971e3f4b40-fcd7793042f87515 - 1 | 00002724 | 00002660 INPUT | [==================================================================================================] | 00451748c51e234a-fff1974f877cf551 - 1 | 00002724 | 00002671 INPUT | [==================================================================================================] | 00087b22676a0ae7-fffdd89e249d22e3 - 1 | 00002724 | 00002681 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffe9c35c2954775d - 1 | 00002724 | 00002691 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00002724 | 00002707 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 1 | 00002724 | 00002713 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00002724 | 00002723 OUTPUT | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 (cold) - 1 | 00002724 | 00002722 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (warm) -Time 2026-03-26T15:15:15.801792761Z -Commit 00002725 246172 keys in 45ms 804µs 409ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00002724 | 00002723 SST | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 (11 MiB, cold) - 1 | 00002724 | 00002722 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 (8 MiB, warm) - 1 | 00002724 | 00001331 00001337 00001344 00001349 00001355 00001362 00001367 00001374 00001380 00001385 00001391 00001397 00001404 00001409 00001415 OBSOLETE SST - 1 | 00002724 | 00001422 00001428 00001434 00001439 00001446 00001451 00001457 00001463 00001469 00001476 00001481 00001488 00001493 00002455 00002456 OBSOLETE SST - 1 | 00002724 | 00002459 00002466 00002472 00002477 00002484 00002494 00002504 00002514 00002519 00002525 00002532 00002538 00002543 00002549 00002556 OBSOLETE SST - 1 | 00002724 | 00002562 00002568 00002574 00002584 00002599 00002608 00002615 00002621 00002631 00002636 00002643 00002649 00002654 00002660 00002671 OBSOLETE SST - 1 | 00002724 | 00002681 00002691 00002707 00002713 OBSOLETE SST - | | 00001331 00001337 00001344 00001349 00001355 00001362 00001367 00001374 00001380 00001385 00001391 00001397 00001404 00001409 00001415 SST DELETED - | | 00001422 00001428 00001434 00001439 00001446 00001451 00001457 00001463 00001469 00001476 00001481 00001488 00001493 00002455 00002456 SST DELETED - | | 00002459 00002466 00002472 00002477 00002484 00002494 00002504 00002514 00002519 00002525 00002532 00002538 00002543 00002549 00002556 SST DELETED - | | 00002562 00002568 00002574 00002584 00002599 00002608 00002615 00002621 00002631 00002636 00002643 00002649 00002654 00002660 00002671 SST DELETED - | | 00002681 00002691 00002707 00002713 SST DELETED - | | 00001335 00001340 00001347 00001353 00001359 00001365 00001371 00001378 00001383 00001389 00001395 00001401 00001407 00001413 00001419 META DELETED - | | 00001425 00001431 00001438 00001443 00001449 00001455 00001461 00001468 00001473 00001479 00001485 00001491 00001497 00002457 00002463 META DELETED - | | 00002469 00002475 00002481 00002490 00002499 00002510 00002517 00002523 00002529 00002536 00002542 00002547 00002553 00002560 00002565 META DELETED - | | 00002571 00002582 00002591 00002607 00002612 00002618 00002628 00002634 00002640 00002646 00002652 00002658 00002666 00002679 00002686 META DELETED - | | 00002699 00002710 00002721 META DELETED -Time 2026-03-26T15:15:57.596936915Z -Commit 00002735 39255 keys in 28ms 870µs 126ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002731 | 00002728 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002732 | 00002726 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (17 MiB, fresh) - 3 | 00002733 | 00002730 SST | [==================================================================================================] | 00083c95daf47ab9-fffa5f106648381b (0 MiB, fresh) - 4 | 00002734 | 00002729 SST | [==================================================================================================] | 000aa8519bcd570a-ffe16ee685d58fd3 (0 MiB, fresh) - 1 | 00002735 | 00002727 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (5 MiB, fresh) -Time 2026-03-26T15:16:12.964549015Z -Commit 00002741 6 keys in 11ms 587µs 169ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002739 | 00002738 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002740 | 00002737 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) - 2 | 00002741 | 00002736 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) -Time 2026-03-26T15:16:29.75819356Z -Commit 00002747 12 keys in 12ms 359µs 586ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002745 | 00002744 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002746 | 00002742 SST | [===========================================================================================] | 035863dc913912c1-ef3d53c34e1e5771 (0 MiB, fresh) - 2 | 00002747 | 00002743 SST | [===========================================================================================] | 035863dc913912c1-ef3d53c34e1e5771 (0 MiB, fresh) -Time 2026-03-26T16:04:43.738818707Z -Commit 00002757 551 keys in 15ms 764µs 376ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002753 | 00002750 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002754 | 00002749 SST | [==================================================================================================] | 00451748c51e234a-fee38f1e3332a6dc (0 MiB, fresh) - 2 | 00002755 | 00002748 SST | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc (0 MiB, fresh) - 3 | 00002756 | 00002751 SST | O | ac4b3a57aefe9141-ac4b3a57aefe9141 (0 MiB, fresh) - 4 | 00002757 | 00002752 SST | O | fda9f084dbce5c61-fda9f084dbce5c61 (0 MiB, fresh) -Time 2026-03-26T16:05:04.777399967Z -Commit 00002770 50946 keys in 36ms 559µs 256ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002766 | 00002763 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002767 | 00002765 SST | [==================================================================================================] | 0017fd1bac10f99e-ffcdf25a8328d5f1 (0 MiB, fresh) - 3 | 00002768 | 00002764 SST | [==================================================================================================] | 0002dc82f69c6cf2-fff41266b6ed357f (0 MiB, fresh) - 1 | 00002769 | 00002762 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (6 MiB, fresh) - 2 | 00002770 | 00002759 SST | [=======================] | c001c1e15b37f011-fffe7cb8f2c6deb1 (2 MiB, fresh) - 2 | 00002770 | 00002758 SST | [=======================] | 4008209e55aa0a83-7ff554e0e1594f17 (5 MiB, fresh) - 2 | 00002770 | 00002760 SST | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 (6 MiB, fresh) - 2 | 00002770 | 00002761 SST | [=======================] | 80020afe74689529-bffff92a78260705 (8 MiB, fresh) -Time 2026-03-26T16:06:26.808304391Z -Commit 00002783 41113 keys in 34ms 211µs 56ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002779 | 00002776 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002780 | 00002778 SST | [==================================================================================================] | 0063d5d94c7b2228-ffeae2d5aede7b1a (0 MiB, fresh) - 3 | 00002781 | 00002777 SST | [==================================================================================================] | 000987b7888bfe38-ffb510abe027fc57 (0 MiB, fresh) - 1 | 00002782 | 00002775 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (5 MiB, fresh) - 2 | 00002783 | 00002773 SST | [=======================] | c000b2d9265699d6-fffe7cb8f2c6deb1 (3 MiB, fresh) - 2 | 00002783 | 00002772 SST | [=======================] | 4004ff25b7806255-7ff554e0e1594f17 (6 MiB, fresh) - 2 | 00002783 | 00002774 SST | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 (6 MiB, fresh) - 2 | 00002783 | 00002771 SST | [=======================] | 80020afe74689529-bfe8514dd7a01922 (8 MiB, fresh) - 2 | 00002788 | Compaction: - 2 | 00002788 | MERGE (390043 keys): - 2 | 00002788 | 00002700 INPUT | [===========================================] | 00005b386d02964f-70b3d7166dca0b32 - 2 | 00002788 | 00002702 INPUT | [===========================] | 70b3f6a19ce7711d-b899cf87a30768f1 - 2 | 00002788 | 00002703 INPUT | [==========================] | b899d1fc588f62bc-ffffec37b1df3f15 - 2 | 00002788 | 00002701 INPUT | [==================================================================================================] | 0006bb8b2247bad7-fff88b53b5ad4b9a - 2 | 00002788 | 00002706 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 2 | 00002788 | 00002712 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00002788 | 00002726 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00002788 | 00002736 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 2 | 00002788 | 00002743 INPUT | [===========================================================================================] | 035863dc913912c1-ef3d53c34e1e5771 - 2 | 00002788 | 00002748 INPUT | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc - 2 | 00002788 | 00002759 INPUT | [=======================] | c001c1e15b37f011-fffe7cb8f2c6deb1 - 2 | 00002788 | 00002758 INPUT | [=======================] | 4008209e55aa0a83-7ff554e0e1594f17 - 2 | 00002788 | 00002760 INPUT | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 - 2 | 00002788 | 00002761 INPUT | [=======================] | 80020afe74689529-bffff92a78260705 - 2 | 00002788 | 00002773 INPUT | [=======================] | c000b2d9265699d6-fffe7cb8f2c6deb1 - 2 | 00002788 | 00002772 INPUT | [=======================] | 4004ff25b7806255-7ff554e0e1594f17 - 2 | 00002788 | 00002774 INPUT | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 - 2 | 00002788 | 00002771 INPUT | [=======================] | 80020afe74689529-bfe8514dd7a01922 - 2 | 00002788 | 00002784 OUTPUT | [=========================================] | 00005b386d02964f-6c482ab1a120d1d7 (cold) - 2 | 00002788 | 00002786 OUTPUT | [============================] | 6c484fbbc6a6ead7-b63d707d4f4a040e (cold) - 2 | 00002788 | 00002787 OUTPUT | [===========================] | b63d9d8bd1856917-ffffec37b1df3f15 (cold) - 2 | 00002788 | 00002785 OUTPUT | [==================================================================================================] | 000e5f330a67e38b-fffa7cd5097e8a6a (warm) -Time 2026-03-26T16:06:28.231003498Z -Commit 00002789 390043 keys in 176ms 89µs 290ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00002788 | 00002784 SST | [=========================================] | 00005b386d02964f-6c482ab1a120d1d7 (92 MiB, cold) - 2 | 00002788 | 00002786 SST | [============================] | 6c484fbbc6a6ead7-b63d707d4f4a040e (56 MiB, cold) - 2 | 00002788 | 00002787 SST | [===========================] | b63d9d8bd1856917-ffffec37b1df3f15 (58 MiB, cold) - 2 | 00002788 | 00002785 SST | [==================================================================================================] | 000e5f330a67e38b-fffa7cd5097e8a6a (7 MiB, warm) - 2 | 00002788 | 00002700 00002701 00002702 00002703 00002706 00002712 00002726 00002736 00002743 00002748 00002758 00002759 00002760 00002761 00002771 OBSOLETE SST - 2 | 00002788 | 00002772 00002773 00002774 OBSOLETE SST - | | 00002700 00002701 00002702 00002703 00002706 00002712 00002726 00002736 00002743 00002748 00002758 00002759 00002760 00002761 00002771 SST DELETED - | | 00002772 00002773 00002774 SST DELETED - | | 00002704 00002711 00002720 00002732 00002741 00002747 00002755 00002770 00002783 META DELETED -Time 2026-03-26T16:06:32.663264447Z -Commit 00002802 50620 keys in 33ms 55µs 797ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002798 | 00002795 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002799 | 00002797 SST | [==================================================================================================] | 000983c3e93380db-fff2b4fb9e9026cc (0 MiB, fresh) - 3 | 00002800 | 00002796 SST | [==================================================================================================] | 0015f43df8e644e8-ffffeaad4eb9cdda (0 MiB, fresh) - 2 | 00002801 | 00002793 SST | [=======================] | c008664dc77de932-fffe7cb8f2c6deb1 (3 MiB, fresh) - 2 | 00002801 | 00002790 SST | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 (6 MiB, fresh) - 2 | 00002801 | 00002792 SST | [=======================] | 4003b993b9786d5f-7ff554e0e1594f17 (7 MiB, fresh) - 2 | 00002801 | 00002791 SST | [=======================] | 80020afe74689529-bfff3670053b6b43 (7 MiB, fresh) - 1 | 00002802 | 00002794 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (6 MiB, fresh) -Time 2026-03-26T16:06:36.466098122Z -Commit 00002808 82 keys in 11ms 442µs 828ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002806 | 00002805 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002807 | 00002804 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002808 | 00002803 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:08:19.665397993Z -Commit 00002814 82 keys in 13ms 441µs 389ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002812 | 00002811 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002813 | 00002809 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002814 | 00002810 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:08:29.593483667Z -Commit 00002820 80 keys in 11ms 932µs 141ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002818 | 00002817 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002819 | 00002816 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002820 | 00002815 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:08:35.694163598Z -Commit 00002826 82 keys in 11ms 930µs 373ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002824 | 00002823 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002825 | 00002821 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002826 | 00002822 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:09:02.162370163Z -Commit 00002832 16 keys in 9ms 422µs 671ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002830 | 00002829 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002831 | 00002827 SST | [============================================================] | 5106c964624c16d8-edd6870da71cf95c (0 MiB, fresh) - 2 | 00002832 | 00002828 SST | [============================================================] | 5106c964624c16d8-edd6870da71cf95c (0 MiB, fresh) -Time 2026-03-26T16:09:06.568400362Z -Commit 00002838 4 keys in 12ms 22µs 884ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002836 | 00002835 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002837 | 00002833 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00002838 | 00002834 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-03-26T16:09:09.396013304Z -Commit 00002848 511 keys in 17ms 864µs 287ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002844 | 00002841 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002845 | 00002839 SST | [==================================================================================================] | 0074b79981223e81-ffc95807b58d8ba6 (0 MiB, fresh) - 2 | 00002846 | 00002840 SST | [==================================================================================================] | 0243726ddfe26611-ffc95807b58d8ba6 (0 MiB, fresh) - 3 | 00002847 | 00002842 SST | [====================================================================================] | 009052da9fdcd653-dc28017817f62520 (0 MiB, fresh) - 4 | 00002848 | 00002843 SST | [================================================================================================] | 040fdc16a9041c24-fd37571884fec412 (0 MiB, fresh) -Time 2026-03-26T16:25:07.854422073Z -Commit 00002858 3428 keys in 16ms 784µs 465ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002854 | 00002851 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002855 | 00002850 SST | [==================================================================================================] | 003e55e1c48b849e-ffd02d39af75d27f (1 MiB, fresh) - 2 | 00002856 | 00002849 SST | [==================================================================================================] | 003e55e1c48b849e-ffd02d39af75d27f (1 MiB, fresh) - 3 | 00002857 | 00002852 SST | [=======================================================================================] | 1e1dd04851762982-fec1632eb9635f5c (0 MiB, fresh) - 4 | 00002858 | 00002853 SST | [==========================================================================================] | 07cbb7126d073129-f2425d413820d277 (0 MiB, fresh) - 1 | 00002861 | Compaction: - 1 | 00002861 | MERGE (314836 keys): - 1 | 00002861 | 00000994 INPUT | [================================================================================================] | 04ee6d9216423281-fd523bf45febe205 - 1 | 00002861 | 00000999 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 1 | 00002861 | 00001005 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 1 | 00002861 | 00001012 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-ff9103aea0711ef3 - 1 | 00002861 | 00001018 INPUT | [==================================================================================================] | 001159b6a37810de-fff9e366f5aba17f - 1 | 00002861 | 00001028 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff0109cd16cbc3 - 1 | 00002861 | 00001038 INPUT | [==================================================================================================] | 0016e92bcf93ce86-ffd06f3febba20d5 - 1 | 00002861 | 00001048 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 1 | 00002861 | 00001053 INPUT | [=================================================================================================] | 03acb2c22932405e-ffe9c35c2954775d - 1 | 00002861 | 00001060 INPUT | [================================================================================================] | 03acb2c22932405e-fcd7793042f87515 - 1 | 00002861 | 00001066 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 1 | 00002861 | 00001072 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 1 | 00002861 | 00001077 INPUT | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 - 1 | 00002861 | 00001084 INPUT | [==================================================================================================] | 00005b386d02964f-fffc9125d1395931 - 1 | 00002861 | 00001097 INPUT | [================================================================================================] | 078bc5f1f1834908-ffd50c50ed762576 - 1 | 00002861 | 00001104 INPUT | [==================================================================================================] | 00010940d5ed71c9-ffc353ea71dbad3d - 1 | 00002861 | 00001110 INPUT | [==================================================================================================] | 000801e97f7ace52-ffc353ea71dbad3d - 1 | 00002861 | 00001116 INPUT | [==================================================================================================] | 000801e97f7ace52-ffc353ea71dbad3d - 1 | 00002861 | 00001121 INPUT | [==========================================================================================] | 12df2a21ee9ddeff-fc14d191b68d496a - 1 | 00002861 | 00001128 INPUT | [============================================================================================] | 0ec868943daaaae2-fcd7793042f87515 - 1 | 00002861 | 00001133 INPUT | [===============================================================================================] | 06622b1c7d90360e-fcd7793042f87515 - 1 | 00002861 | 00001140 INPUT | [===============================================================================================] | 06622b1c7d90360e-fcd7793042f87515 - 1 | 00002861 | 00001146 INPUT | [=================================================================================================] | 03971ae5a87f78a3-ff663d159104ea30 - 1 | 00002861 | 00001156 INPUT | [================================================================================================] | 06839a6e599b7816-ffe9c35c2954775d - 1 | 00002861 | 00001162 INPUT | [==================================================================================================] | 000801e97f7ace52-ffb736294b507973 - 1 | 00002861 | 00001171 INPUT | [============================================================================================] | 0ec868943daaaae2-fcd7793042f87515 - 1 | 00002861 | 00001178 INPUT | [============================================================================================] | 0ec868943daaaae2-fcd7793042f87515 - 1 | 00002861 | 00001183 INPUT | O | 8b1938d8de66eeb5-8b1938d8de66eeb5 - 1 | 00002861 | 00001189 INPUT | [==================================================================================================] | 00858af2653b1f32-fe9a7a0f20fcfa7f - 1 | 00002861 | 00001196 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 1 | 00002861 | 00001205 INPUT | [==================================================================================================] | 019e9b616b0f8c2d-ffe64bbd36bacfc8 - 1 | 00002861 | 00001216 INPUT | [=================================================================================================] | 02f67c90dfcb02b4-ffe64bbd36bacfc8 - 1 | 00002861 | 00001226 INPUT | [==================================================================================================] | 000801e97f7ace52-fff83386eaa859cc - 1 | 00002861 | 00001236 INPUT | [================================================================================================] | 03b2283fcea8785f-fd31ba46e3533eb7 - 1 | 00002861 | 00001242 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002861 | 00001248 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 1 | 00002861 | 00001253 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002861 | 00001260 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002861 | 00001266 INPUT | [=================================================================================================] | 016d67fc8355d380-fd31ba46e3533eb7 - 1 | 00002861 | 00001275 INPUT | [=================================================================================================] | 016d67fc8355d380-fd31ba46e3533eb7 - 1 | 00002861 | 00001282 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002861 | 00001288 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002861 | 00001297 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffe64bbd36bacfc8 - 1 | 00002861 | 00001308 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002861 | 00001313 INPUT | [================================================================================================] | 03f401483f6346c2-fd31ba46e3533eb7 - 1 | 00002861 | 00001320 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffe64bbd36bacfc8 - 1 | 00002861 | 00001326 INPUT | [================================================================================================] | 077050de58a07290-fe4357bf329edc36 - 1 | 00002861 | 00002723 INPUT | [==================================================================================================] | 00013cd911d26d15-ffffec37b1df3f15 - 1 | 00002861 | 00002722 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffc8b261a62b07 - 1 | 00002861 | 00002727 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00002861 | 00002737 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 1 | 00002861 | 00002742 INPUT | [===========================================================================================] | 035863dc913912c1-ef3d53c34e1e5771 - 1 | 00002861 | 00002749 INPUT | [==================================================================================================] | 00451748c51e234a-fee38f1e3332a6dc - 1 | 00002861 | 00002762 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00002861 | 00002775 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00002861 | 00002794 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00002861 | 00002804 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00002861 | 00002809 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00002861 | 00002816 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00002861 | 00002821 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00002861 | 00002827 INPUT | [============================================================] | 5106c964624c16d8-edd6870da71cf95c - 1 | 00002861 | 00002833 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 1 | 00002861 | 00002839 INPUT | [==================================================================================================] | 0074b79981223e81-ffc95807b58d8ba6 - 1 | 00002861 | 00002850 INPUT | [==================================================================================================] | 003e55e1c48b849e-ffd02d39af75d27f - 1 | 00002861 | 00002860 OUTPUT | [==================================================================================================] | 00005b386d02964f-ffffec37b1df3f15 (cold) - 1 | 00002861 | 00002859 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-03-26T16:25:09.51430148Z -Commit 00002862 314836 keys in 52ms 534µs 445ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00002861 | 00002860 SST | [==================================================================================================] | 00005b386d02964f-ffffec37b1df3f15 (16 MiB, cold) - 1 | 00002861 | 00002859 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (8 MiB, warm) - 1 | 00002861 | 00000994 00000999 00001005 00001012 00001018 00001028 00001038 00001048 00001053 00001060 00001066 00001072 00001077 00001084 00001097 OBSOLETE SST - 1 | 00002861 | 00001104 00001110 00001116 00001121 00001128 00001133 00001140 00001146 00001156 00001162 00001171 00001178 00001183 00001189 00001196 OBSOLETE SST - 1 | 00002861 | 00001205 00001216 00001226 00001236 00001242 00001248 00001253 00001260 00001266 00001275 00001282 00001288 00001297 00001308 00001313 OBSOLETE SST - 1 | 00002861 | 00001320 00001326 00002722 00002723 00002727 00002737 00002742 00002749 00002762 00002775 00002794 00002804 00002809 00002816 00002821 OBSOLETE SST - 1 | 00002861 | 00002827 00002833 00002839 00002850 OBSOLETE SST - | | 00000994 00000999 00001005 00001012 00001018 00001028 00001038 00001048 00001053 00001060 00001066 00001072 00001077 00001084 00001097 SST DELETED - | | 00001104 00001110 00001116 00001121 00001128 00001133 00001140 00001146 00001156 00001162 00001171 00001178 00001183 00001189 00001196 SST DELETED - | | 00001205 00001216 00001226 00001236 00001242 00001248 00001253 00001260 00001266 00001275 00001282 00001288 00001297 00001308 00001313 SST DELETED - | | 00001320 00001326 00002722 00002723 00002727 00002737 00002742 00002749 00002762 00002775 00002794 00002804 00002809 00002816 00002821 SST DELETED - | | 00002827 00002833 00002839 00002850 SST DELETED - | | 00000997 00001003 00001009 00001015 00001026 00001034 00001043 00001052 00001057 00001063 00001070 00001075 00001081 00001092 00001101 META DELETED - | | 00001108 00001114 00001119 00001125 00001131 00001137 00001143 00001152 00001159 00001167 00001175 00001181 00001187 00001193 00001204 META DELETED - | | 00001211 00001221 00001234 00001239 00001245 00001251 00001257 00001263 00001271 00001279 00001285 00001293 00001304 00001311 00001317 META DELETED - | | 00001323 00001329 00002724 00002735 00002740 00002746 00002754 00002769 00002782 00002802 00002807 00002813 00002819 00002825 00002831 META DELETED - | | 00002837 00002845 00002855 META DELETED -Time 2026-03-26T16:25:13.555727519Z -Commit 00002872 4183 keys in 17ms 213µs 647ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002868 | 00002865 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002869 | 00002864 SST | [==================================================================================================] | 003e55e1c48b849e-ffe503fa1ab007fb (1 MiB, fresh) - 2 | 00002870 | 00002863 SST | [==================================================================================================] | 003e55e1c48b849e-ffe503fa1ab007fb (1 MiB, fresh) - 3 | 00002871 | 00002866 SST | [===============================================================================================] | 02c7924d4e58cf8d-f99bf351c8668837 (0 MiB, fresh) - 4 | 00002872 | 00002867 SST | [=================================================================================================] | 004e8597cda7139d-fc9a3066c67caa46 (0 MiB, fresh) -Time 2026-03-26T16:35:44.108204041Z -Commit 00002878 6297 keys in 12ms 691µs 776ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002876 | 00002875 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002877 | 00002873 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00002878 | 00002874 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (2 MiB, fresh) -Time 2026-03-26T16:35:47.982616165Z -Commit 00002884 3561 keys in 11ms 771µs 241ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002882 | 00002881 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002883 | 00002880 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (1 MiB, fresh) - 2 | 00002884 | 00002879 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-03-26T16:37:01.188768137Z -Commit 00002894 7734 keys in 17ms 970µs 835ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002890 | 00002887 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00002891 | 00002888 SST | [===============================================================================================] | 092de5be3fbdc664-ff951fc167c45a3f (0 MiB, fresh) - 4 | 00002892 | 00002889 SST | [=================================================================================================] | 00e979ce956b522e-fcc900e6815d54cf (0 MiB, fresh) - 2 | 00002893 | 00002885 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb (8 MiB, fresh) - 1 | 00002894 | 00002886 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb (1 MiB, fresh) -Time 2026-03-26T16:37:07.857058206Z -Commit 00002900 49 keys in 11ms 485µs 810ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002898 | 00002897 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002899 | 00002896 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002900 | 00002895 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:37:14.341762732Z -Commit 00002910 36819 keys in 22ms 13µs 4ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002906 | 00002903 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002907 | 00002905 SST | [==================================================================================================] | 000023b78025d350-fff64ba5e7100305 (0 MiB, fresh) - 2 | 00002908 | 00002901 SST | [==================================================================================================] | 000023b78025d350-fffe7cb8f2c6deb1 (10 MiB, fresh) - 1 | 00002909 | 00002902 SST | [==================================================================================================] | 000023b78025d350-fffe97e9765737c6 (4 MiB, fresh) - 3 | 00002910 | 00002904 SST | [==================================================================================================] | 0002e5edac4e208b-ffe4123627faed83 (0 MiB, fresh) -Time 2026-03-26T16:37:20.135370767Z -Commit 00002916 61 keys in 12ms 339µs 206ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002914 | 00002913 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002915 | 00002912 SST | [================================================================================================] | 07a78c52031eea06-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002916 | 00002911 SST | [================================================================================================] | 07a78c52031eea06-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:37:27.047676959Z -Commit 00002922 51 keys in 11ms 765µs 681ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002920 | 00002919 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002921 | 00002918 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002922 | 00002917 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:37:37.047824532Z -Commit 00002928 49 keys in 11ms 795µs 305ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002926 | 00002925 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002927 | 00002923 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002928 | 00002924 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:37:39.367294766Z -Commit 00002934 49 keys in 12ms 469µs 946ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002932 | 00002931 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002933 | 00002929 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002934 | 00002930 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:37:47.412707159Z -Commit 00002940 12 keys in 11ms 948µs 27ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002938 | 00002937 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002939 | 00002935 SST | [===============================================================] | 05e86681aebbfe6d-a96e01a4e006839f (0 MiB, fresh) - 2 | 00002940 | 00002936 SST | [===============================================================] | 05e86681aebbfe6d-a96e01a4e006839f (0 MiB, fresh) -Time 2026-03-26T16:56:27.14668121Z -Commit 00002946 62 keys in 12ms 309µs 262ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002944 | 00002943 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002945 | 00002942 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002946 | 00002941 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T16:56:41.674668491Z -Commit 00002952 60 keys in 12ms 126µs 307ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002950 | 00002949 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002951 | 00002947 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002952 | 00002948 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T17:51:07.889113442Z -Commit 00002958 50 keys in 11ms 716µs 381ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002956 | 00002955 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002957 | 00002954 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002958 | 00002953 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T19:53:40.784808841Z -Commit 00002968 1428 keys in 17ms 901µs 626ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002964 | 00002961 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002965 | 00002963 SST | [====================================================================================] | 0a1d89ea80c5d9b0-e1bd983dcf3222ec (0 MiB, fresh) - 3 | 00002966 | 00002962 SST | [=============================================================] | 029564ae6bc8c5af-a1d4902d3ceab248 (0 MiB, fresh) - 2 | 00002967 | 00002959 SST | [==================================================================================================] | 001323f09fa9a69a-fff2b4fb9e9026cc (4 MiB, fresh) - 1 | 00002968 | 00002960 SST | [==================================================================================================] | 001323f09fa9a69a-fff2b4fb9e9026cc (0 MiB, fresh) -Time 2026-03-26T20:20:57.514025573Z -Commit 00002974 170 keys in 12ms 157µs 652ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002972 | 00002971 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002973 | 00002969 SST | [=================================================================================================] | 04f8ef707d1e8371-ffba0c2975c8ef07 (0 MiB, fresh) - 2 | 00002974 | 00002970 SST | [=================================================================================================] | 04f8ef707d1e8371-ffba0c2975c8ef07 (0 MiB, fresh) -Time 2026-03-26T20:21:06.243255428Z -Commit 00002980 58 keys in 11ms 150µs 791ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002978 | 00002977 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00002979 | 00002976 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00002980 | 00002975 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T20:21:12.403744748Z -Commit 00002990 46298 keys in 27ms 316µs 687ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002986 | 00002983 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00002987 | 00002985 SST | [==================================================================================================] | 0016d334288661ee-fffa9a7688bc9cfe (0 MiB, fresh) - 3 | 00002988 | 00002984 SST | [==================================================================================================] | 000ebd9c6816c3b2-fffd8d11fc62ce2e (0 MiB, fresh) - 2 | 00002989 | 00002981 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (14 MiB, fresh) - 1 | 00002990 | 00002982 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (6 MiB, fresh) -Time 2026-03-26T20:23:36.751493025Z -Commit 00002996 408 keys in 10ms 28µs 948ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00002994 | 00002993 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00002995 | 00002992 SST | [================================================================================================] | 06628945200f2f5d-fd9eb5313e5705a9 (0 MiB, fresh) - 1 | 00002996 | 00002991 SST | [=================================================================================================] | 043ecea317763d2d-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:23:54.153277654Z -Commit 00003006 1964 keys in 14ms 977µs 141ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003002 | 00002999 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003003 | 00003001 SST | [========================================] | 611dfc767995e418-c919be8e21310dce (0 MiB, fresh) - 3 | 00003004 | 00003000 SST | [===============] | 9fdfbfd17deab0b0-c9e32f1db58693f5 (0 MiB, fresh) - 2 | 00003005 | 00002997 SST | [==================================================================================================] | 0027752eca537b46-ffd50c50ed762576 (1 MiB, fresh) - 1 | 00003006 | 00002998 SST | [==================================================================================================] | 0027752eca537b46-ffd50c50ed762576 (1 MiB, fresh) - 2 | 00003011 | Compaction: - 2 | 00003011 | MERGE (398739 keys): - 2 | 00003011 | 00002784 INPUT | [=========================================] | 00005b386d02964f-6c482ab1a120d1d7 - 2 | 00003011 | 00002786 INPUT | [============================] | 6c484fbbc6a6ead7-b63d707d4f4a040e - 2 | 00003011 | 00002787 INPUT | [===========================] | b63d9d8bd1856917-ffffec37b1df3f15 - 2 | 00003011 | 00002785 INPUT | [==================================================================================================] | 000e5f330a67e38b-fffa7cd5097e8a6a - 2 | 00003011 | 00002793 INPUT | [=======================] | c008664dc77de932-fffe7cb8f2c6deb1 - 2 | 00003011 | 00002790 INPUT | [=======================] | 0000737dcecb7eaa-3ffdfb3b7d50fcf1 - 2 | 00003011 | 00002792 INPUT | [=======================] | 4003b993b9786d5f-7ff554e0e1594f17 - 2 | 00003011 | 00002791 INPUT | [=======================] | 80020afe74689529-bfff3670053b6b43 - 2 | 00003011 | 00002803 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002810 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002815 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002822 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002828 INPUT | [============================================================] | 5106c964624c16d8-edd6870da71cf95c - 2 | 00003011 | 00002834 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00003011 | 00002840 INPUT | [==================================================================================================] | 0243726ddfe26611-ffc95807b58d8ba6 - 2 | 00003011 | 00002849 INPUT | [==================================================================================================] | 003e55e1c48b849e-ffd02d39af75d27f - 2 | 00003011 | 00002863 INPUT | [==================================================================================================] | 003e55e1c48b849e-ffe503fa1ab007fb - 2 | 00003011 | 00002873 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00003011 | 00002879 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00003011 | 00002885 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb - 2 | 00003011 | 00002895 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002901 INPUT | [==================================================================================================] | 000023b78025d350-fffe7cb8f2c6deb1 - 2 | 00003011 | 00002911 INPUT | [================================================================================================] | 07a78c52031eea06-fe6bc83b4b2abf68 - 2 | 00003011 | 00002917 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002924 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002930 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002936 INPUT | [===============================================================] | 05e86681aebbfe6d-a96e01a4e006839f - 2 | 00003011 | 00002941 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002948 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002953 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002959 INPUT | [==================================================================================================] | 001323f09fa9a69a-fff2b4fb9e9026cc - 2 | 00003011 | 00002970 INPUT | [=================================================================================================] | 04f8ef707d1e8371-ffba0c2975c8ef07 - 2 | 00003011 | 00002975 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003011 | 00002981 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00003011 | 00002992 INPUT | [================================================================================================] | 06628945200f2f5d-fd9eb5313e5705a9 - 2 | 00003011 | 00002997 INPUT | [==================================================================================================] | 0027752eca537b46-ffd50c50ed762576 - 2 | 00003011 | 00003007 OUTPUT | [==========================================] | 000023b78025d350-6e6c5d71a0216fab (cold) - 2 | 00003011 | 00003009 OUTPUT | [===========================] | 6e6c85d44bfee2fc-b76a680ab0691a0e (cold) - 2 | 00003011 | 00003010 OUTPUT | [===========================] | b76a7b79957c7ee6-ffffec37b1df3f15 (cold) - 2 | 00003011 | 00003008 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-03-26T20:23:57.253669964Z -Commit 00003012 398739 keys in 202ms 257µs 916ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00003011 | 00003007 SST | [==========================================] | 000023b78025d350-6e6c5d71a0216fab (92 MiB, cold) - 2 | 00003011 | 00003009 SST | [===========================] | 6e6c85d44bfee2fc-b76a680ab0691a0e (50 MiB, cold) - 2 | 00003011 | 00003010 SST | [===========================] | b76a7b79957c7ee6-ffffec37b1df3f15 (52 MiB, cold) - 2 | 00003011 | 00003008 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (29 MiB, warm) - 2 | 00003011 | 00002784 00002785 00002786 00002787 00002790 00002791 00002792 00002793 00002803 00002810 00002815 00002822 00002828 00002834 00002840 OBSOLETE SST - 2 | 00003011 | 00002849 00002863 00002873 00002879 00002885 00002895 00002901 00002911 00002917 00002924 00002930 00002936 00002941 00002948 00002953 OBSOLETE SST - 2 | 00003011 | 00002959 00002970 00002975 00002981 00002992 00002997 OBSOLETE SST - | | 00002784 00002785 00002786 00002787 00002790 00002791 00002792 00002793 00002803 00002810 00002815 00002822 00002828 00002834 00002840 SST DELETED - | | 00002849 00002863 00002873 00002879 00002885 00002895 00002901 00002911 00002917 00002924 00002930 00002936 00002941 00002948 00002953 SST DELETED - | | 00002959 00002970 00002975 00002981 00002992 00002997 SST DELETED - | | 00002788 00002801 00002808 00002814 00002820 00002826 00002832 00002838 00002846 00002856 00002870 00002877 00002884 00002893 00002900 META DELETED - | | 00002908 00002916 00002922 00002928 00002934 00002940 00002946 00002952 00002958 00002967 00002974 00002980 00002989 00002995 00003005 META DELETED -Time 2026-03-26T20:24:03.751320727Z -Commit 00003022 873 keys in 15ms 846µs 654ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003018 | 00003015 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003019 | 00003014 SST | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 (0 MiB, fresh) - 2 | 00003020 | 00003013 SST | [==================================================================================================] | 0027752eca537b46-fe9a5cb3cb9ae422 (0 MiB, fresh) - 3 | 00003021 | 00003017 SST | [==============================] | a3eb9fb3df30f0a6-f4e8f3cbcbb52203 (0 MiB, fresh) - 4 | 00003022 | 00003016 SST | [==============================================================================] | 1993e4a01336bd77-e2a3d1cc2674ad78 (0 MiB, fresh) -Time 2026-03-26T20:24:08.719745508Z -Commit 00003032 873 keys in 15ms 708µs 293ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003028 | 00003025 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003029 | 00003024 SST | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 (0 MiB, fresh) - 2 | 00003030 | 00003023 SST | [==================================================================================================] | 0027752eca537b46-fe9a5cb3cb9ae422 (0 MiB, fresh) - 3 | 00003031 | 00003026 SST | O | be0f70a74f23d91d-be0f70a74f23d91d (0 MiB, fresh) - 4 | 00003032 | 00003027 SST | O | d7519494b547f097-d7519494b547f097 (0 MiB, fresh) -Time 2026-03-26T20:24:11.698293877Z -Commit 00003038 4 keys in 11ms 122µs 14ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003036 | 00003035 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003037 | 00003033 SST | O | d7519494b547f097-d7519494b547f097 (0 MiB, fresh) - 2 | 00003038 | 00003034 SST | O | d7519494b547f097-d7519494b547f097 (0 MiB, fresh) -Time 2026-03-26T20:24:25.007829412Z -Commit 00003048 176 keys in 14ms 807µs 160ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003044 | 00003041 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003045 | 00003040 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003046 | 00003039 SST | [================================================================================================] | 077050de58a07290-fd9eb5313e5705a9 (0 MiB, fresh) - 3 | 00003047 | 00003042 SST | O | 1e409bbeb11fb42e-1e409bbeb11fb42e (0 MiB, fresh) - 4 | 00003048 | 00003043 SST | O | efc935aca0e12c3f-efc935aca0e12c3f (0 MiB, fresh) -Time 2026-03-26T20:26:27.222752287Z -Commit 00003058 3195 keys in 15ms 990µs 254ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003054 | 00003051 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003055 | 00003053 SST | O | ac2223b0266db059-ac2223b0266db059 (0 MiB, fresh) - 3 | 00003056 | 00003052 SST | O | 277359a3cb6c23e5-277359a3cb6c23e5 (0 MiB, fresh) - 1 | 00003057 | 00003050 SST | [==================================================================================================] | 000801e97f7ace52-ffd14be72ebd195d (1 MiB, fresh) - 2 | 00003058 | 00003049 SST | [==================================================================================================] | 0027752eca537b46-ffd14be72ebd195d (2 MiB, fresh) -Time 2026-03-26T20:26:48.497264621Z -Commit 00003064 270 keys in 10ms 961µs 361ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003062 | 00003061 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003063 | 00003060 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003064 | 00003059 SST | [================================================================================================] | 077050de58a07290-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:27:04.221218725Z -Commit 00003070 4747 keys in 12ms 670µs 402ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003068 | 00003067 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003069 | 00003065 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00003070 | 00003066 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (2 MiB, fresh) -Time 2026-03-26T20:27:24.71845487Z -Commit 00003080 21729 keys in 24ms 414µs 118ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003076 | 00003073 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003077 | 00003075 SST | [==================================================================================================] | 00b753fb3bffc289-fe3b2154ed000e26 (0 MiB, fresh) - 3 | 00003078 | 00003074 SST | [==================================================================================================] | 0099aa504dbc7055-ffb905d187ef3337 (0 MiB, fresh) - 1 | 00003079 | 00003072 SST | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 (3 MiB, fresh) - 2 | 00003080 | 00003071 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe58d83ca25ec39 (11 MiB, fresh) -Time 2026-03-26T20:27:43.786105936Z -Commit 00003090 8640 keys in 26ms 715µs 385ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003086 | 00003083 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003087 | 00003085 SST | [==================================================================================================] | 00753e0db0b4464a-ffa388e9c85fd16b (0 MiB, fresh) - 3 | 00003088 | 00003084 SST | [==================================================================================================] | 00a8914b82db0b24-ff450b914beea0d5 (0 MiB, fresh) - 1 | 00003089 | 00003082 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 2 | 00003090 | 00003081 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (8 MiB, fresh) -Time 2026-03-26T20:27:58.426983893Z -Commit 00003100 3321 keys in 19ms 590µs 342ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003096 | 00003093 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003097 | 00003092 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (0 MiB, fresh) - 2 | 00003098 | 00003091 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (5 MiB, fresh) - 3 | 00003099 | 00003095 SST | [=====================================================================================] | 1c8430957fe5b0f9-fa1f628799bc6392 (0 MiB, fresh) - 4 | 00003100 | 00003094 SST | [================================================================================================] | 06c7e2b8f8b7fcd8-fdb148fafbe32a7e (0 MiB, fresh) -Time 2026-03-26T20:28:05.067336402Z -Commit 00003106 51 keys in 11ms 307µs 724ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003104 | 00003103 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003105 | 00003101 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003106 | 00003102 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T20:29:01.522946377Z -Commit 00003112 51 keys in 12ms 847µs 815ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003110 | 00003109 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003111 | 00003107 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003112 | 00003108 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T20:31:37.656333868Z -Commit 00003118 489 keys in 12ms 384µs 239ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003116 | 00003115 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003117 | 00003113 SST | [==================================================================================================] | 00451748c51e234a-fe219f5c03106ee8 (0 MiB, fresh) - 2 | 00003118 | 00003114 SST | [=================================================================================================] | 046f46701637fb87-fe01ea3169c3b522 (0 MiB, fresh) -Time 2026-03-26T20:31:51.704183612Z -Commit 00003124 423 keys in 14ms 204µs 530ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003122 | 00003121 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003123 | 00003119 SST | [==================================================================================================] | 00451748c51e234a-fe219f5c03106ee8 (0 MiB, fresh) - 2 | 00003124 | 00003120 SST | [=================================================================================================] | 0495884bce362e55-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:32:03.556781508Z -Commit 00003130 6 keys in 11ms 739µs 58ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003128 | 00003127 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003129 | 00003126 SST | [=========================================================================] | 18b4ae45bc9cb8b0-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00003130 | 00003125 SST | [=========================================================================] | 18b4ae45bc9cb8b0-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-03-26T20:32:21.696024636Z -Commit 00003136 51 keys in 13ms 591µs 202ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003134 | 00003133 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003135 | 00003132 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003136 | 00003131 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T20:32:30.05625044Z -Commit 00003142 34 keys in 13ms 294µs 871ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003140 | 00003139 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003141 | 00003137 SST | [==========================================================================] | 3c9af146e584ac2f-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00003142 | 00003138 SST | [==========================================================================] | 3c9af146e584ac2f-fb54ece5c4716af8 (0 MiB, fresh) -Time 2026-03-26T20:32:42.135174701Z -Commit 00003152 46207 keys in 29ms 472µs 784ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003148 | 00003145 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003149 | 00003147 SST | [==================================================================================================] | 0001be6518e809de-ffeba17d00b1cd99 (0 MiB, fresh) - 3 | 00003150 | 00003146 SST | [==================================================================================================] | 00074a0a72a36450-ffd05681e61c605e (0 MiB, fresh) - 2 | 00003151 | 00003143 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (13 MiB, fresh) - 1 | 00003152 | 00003144 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (6 MiB, fresh) -Time 2026-03-26T20:32:48.671382228Z -Commit 00003158 65 keys in 11ms 794µs 329ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003156 | 00003155 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003157 | 00003153 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003158 | 00003154 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T20:33:04.24560893Z -Commit 00003164 51 keys in 11ms 959µs 33ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003162 | 00003161 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003163 | 00003159 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 1 | 00003164 | 00003160 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T20:34:23.952341252Z -Commit 00003170 51 keys in 13ms 548µs 829ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003168 | 00003167 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003169 | 00003166 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003170 | 00003165 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T20:34:27.054192054Z -Commit 00003176 16 keys in 13ms 732µs 208ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003174 | 00003173 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003175 | 00003171 SST | [==========================================================================================] | 0d39b29a0fc466cb-f73dc4981889f6f7 (0 MiB, fresh) - 2 | 00003176 | 00003172 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) -Time 2026-03-26T20:34:33.419896126Z -Commit 00003182 8 keys in 16ms 281µs 107ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003180 | 00003179 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003181 | 00003177 SST | [========================================] | 89f844a55d089a44-f123e9697aa75f74 (0 MiB, fresh) - 2 | 00003182 | 00003178 SST | [========================================] | 89f844a55d089a44-f123e9697aa75f74 (0 MiB, fresh) -Time 2026-03-26T20:34:44.382246423Z -Commit 00003188 85 keys in 15ms 444µs 210ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003186 | 00003185 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003187 | 00003183 SST | [================================================================================================] | 012fb73ff2faf902-fa606a81cb107239 (0 MiB, fresh) - 2 | 00003188 | 00003184 SST | [=================================================================================================] | 035863dc913912c1-fee1c2207898ad5f (0 MiB, fresh) -Time 2026-03-26T20:34:54.270852108Z -Commit 00003194 79 keys in 13ms 744µs 347ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003192 | 00003191 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003193 | 00003189 SST | [============================================================================================] | 08612e4cd061d30f-f7eb9fb564eb4120 (0 MiB, fresh) - 2 | 00003194 | 00003190 SST | [============================================================================================] | 094451bc396ea300-f7eb9fb564eb4120 (0 MiB, fresh) -Time 2026-03-26T20:35:55.133176322Z -Commit 00003200 260 keys in 12ms 332µs 331ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003198 | 00003197 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003199 | 00003196 SST | [=================================================================================================] | 031ba583753f2d76-fe34cde88a462f4a (0 MiB, fresh) - 2 | 00003200 | 00003195 SST | [=================================================================================================] | 031ba583753f2d76-fe34cde88a462f4a (0 MiB, fresh) -Time 2026-03-26T20:38:18.640932296Z -Commit 00003210 26108 keys in 29ms 169µs 943ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003206 | 00003203 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003207 | 00003205 SST | [==================================================================================================] | 0002cd5b4bbe8935-fff044f275e8987d (0 MiB, fresh) - 3 | 00003208 | 00003204 SST | [==================================================================================================] | 001a3b188277bcba-ffd60414f22f2060 (0 MiB, fresh) - 1 | 00003209 | 00003202 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (3 MiB, fresh) - 2 | 00003210 | 00003201 SST | [==================================================================================================] | 0000737dcecb7eaa-fff88b53b5ad4b9a (12 MiB, fresh) - 2 | 00003215 | Compaction: - 2 | 00003215 | MERGE (405280 keys): - 2 | 00003215 | 00003007 INPUT | [==========================================] | 000023b78025d350-6e6c5d71a0216fab - 2 | 00003215 | 00003009 INPUT | [===========================] | 6e6c85d44bfee2fc-b76a680ab0691a0e - 2 | 00003215 | 00003010 INPUT | [===========================] | b76a7b79957c7ee6-ffffec37b1df3f15 - 2 | 00003215 | 00003008 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 2 | 00003215 | 00003013 INPUT | [==================================================================================================] | 0027752eca537b46-fe9a5cb3cb9ae422 - 2 | 00003215 | 00003023 INPUT | [==================================================================================================] | 0027752eca537b46-fe9a5cb3cb9ae422 - 2 | 00003215 | 00003034 INPUT | O | d7519494b547f097-d7519494b547f097 - 2 | 00003215 | 00003039 INPUT | [================================================================================================] | 077050de58a07290-fd9eb5313e5705a9 - 2 | 00003215 | 00003049 INPUT | [==================================================================================================] | 0027752eca537b46-ffd14be72ebd195d - 2 | 00003215 | 00003059 INPUT | [================================================================================================] | 077050de58a07290-fd9eb5313e5705a9 - 2 | 00003215 | 00003065 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00003215 | 00003071 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe58d83ca25ec39 - 2 | 00003215 | 00003081 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00003215 | 00003091 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00003215 | 00003102 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003215 | 00003108 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003215 | 00003114 INPUT | [=================================================================================================] | 046f46701637fb87-fe01ea3169c3b522 - 2 | 00003215 | 00003120 INPUT | [=================================================================================================] | 0495884bce362e55-fd9eb5313e5705a9 - 2 | 00003215 | 00003125 INPUT | [=========================================================================] | 18b4ae45bc9cb8b0-d4caf2e664a9b09e - 2 | 00003215 | 00003131 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003215 | 00003138 INPUT | [==========================================================================] | 3c9af146e584ac2f-fb54ece5c4716af8 - 2 | 00003215 | 00003143 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00003215 | 00003154 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003215 | 00003159 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003215 | 00003165 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003215 | 00003172 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 2 | 00003215 | 00003178 INPUT | [========================================] | 89f844a55d089a44-f123e9697aa75f74 - 2 | 00003215 | 00003184 INPUT | [=================================================================================================] | 035863dc913912c1-fee1c2207898ad5f - 2 | 00003215 | 00003190 INPUT | [============================================================================================] | 094451bc396ea300-f7eb9fb564eb4120 - 2 | 00003215 | 00003195 INPUT | [=================================================================================================] | 031ba583753f2d76-fe34cde88a462f4a - 2 | 00003215 | 00003201 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff88b53b5ad4b9a - 2 | 00003215 | 00003211 OUTPUT | [==========================================] | 000023b78025d350-6e4c2e53919d70b9 (cold) - 2 | 00003215 | 00003213 OUTPUT | [===========================] | 6e4c5ad20a3b93f4-b741dc3a4f203115 (cold) - 2 | 00003215 | 00003214 OUTPUT | [===========================] | b7424244c9781e7e-ffffec37b1df3f15 (cold) - 2 | 00003215 | 00003212 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffa00a695df4ec (warm) -Time 2026-03-26T20:38:20.601413667Z -Commit 00003216 405280 keys in 152ms 501µs 445ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00003215 | 00003211 SST | [==========================================] | 000023b78025d350-6e4c2e53919d70b9 (92 MiB, cold) - 2 | 00003215 | 00003213 SST | [===========================] | 6e4c5ad20a3b93f4-b741dc3a4f203115 (52 MiB, cold) - 2 | 00003215 | 00003214 SST | [===========================] | b7424244c9781e7e-ffffec37b1df3f15 (55 MiB, cold) - 2 | 00003215 | 00003212 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffa00a695df4ec (31 MiB, warm) - 2 | 00003215 | 00003007 00003008 00003009 00003010 00003013 00003023 00003034 00003039 00003049 00003059 00003065 00003071 00003081 00003091 00003102 OBSOLETE SST - 2 | 00003215 | 00003108 00003114 00003120 00003125 00003131 00003138 00003143 00003154 00003159 00003165 00003172 00003178 00003184 00003190 00003195 OBSOLETE SST - 2 | 00003215 | 00003201 OBSOLETE SST - | | 00003007 00003008 00003009 00003010 00003013 00003023 00003034 00003039 00003049 00003059 00003065 00003071 00003081 00003091 00003102 SST DELETED - | | 00003108 00003114 00003120 00003125 00003131 00003138 00003143 00003154 00003159 00003165 00003172 00003178 00003184 00003190 00003195 SST DELETED - | | 00003201 SST DELETED - | | 00003011 00003020 00003030 00003038 00003046 00003058 00003064 00003069 00003080 00003090 00003098 00003106 00003112 00003118 00003124 META DELETED - | | 00003130 00003136 00003142 00003151 00003158 00003163 00003170 00003176 00003182 00003188 00003194 00003200 00003210 META DELETED -Time 2026-03-26T20:40:43.933131867Z -Commit 00003222 729 keys in 12ms 923µs 507ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003220 | 00003219 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003221 | 00003218 SST | [==================================================================================================] | 00451748c51e234a-fe9a7a0f20fcfa7f (0 MiB, fresh) - 2 | 00003222 | 00003217 SST | [=================================================================================================] | 03bfaf281cffcaa2-fe3b2154ed000e26 (0 MiB, fresh) -Time 2026-03-26T20:40:49.507191634Z -Commit 00003228 184 keys in 12ms 966µs 19ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003226 | 00003225 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003227 | 00003223 SST | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003228 | 00003224 SST | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:41:01.318435422Z -Commit 00003234 184 keys in 11ms 506µs 931ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003232 | 00003231 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003233 | 00003229 SST | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003234 | 00003230 SST | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:41:13.95907414Z -Commit 00003244 4444 keys in 16ms 733µs 974ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003240 | 00003237 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003241 | 00003239 SST | [==================================================================================================] | 00fb7edbc2f9adb8-fefa829164e7e4e0 (0 MiB, fresh) - 3 | 00003242 | 00003238 SST | [=================================================================================================] | 0090de638d18d63b-fce6e86b67fa5db6 (0 MiB, fresh) - 2 | 00003243 | 00003235 SST | [==================================================================================================] | 0010e26242e36d1c-ffc95807b58d8ba6 (2 MiB, fresh) - 1 | 00003244 | 00003236 SST | [==================================================================================================] | 0010e26242e36d1c-fff1974f877cf551 (1 MiB, fresh) - 1 | 00003247 | Compaction: - 1 | 00003247 | MERGE (327611 keys): - 1 | 00003247 | 00000923 INPUT | [=================================================================================================] | 02f67c90dfcb02b4-ff433410f29b556c - 1 | 00003247 | 00000929 INPUT | [================================================================================================] | 06dbae20b684a58f-ffb97dda81fa6cfa - 1 | 00003247 | 00000935 INPUT | [==============================================================================================] | 0275d585b88e455d-f50ed83bfbe2f6d8 - 1 | 00003247 | 00000946 INPUT | [=================================================================================================] | 04da11712d9050bc-ff9103aea0711ef3 - 1 | 00003247 | 00000951 INPUT | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 - 1 | 00003247 | 00000957 INPUT | O | 79c9c37a81aff7f3-79c9c37a81aff7f3 - 1 | 00003247 | 00000963 INPUT | [=============================================================================================] | 03d3bdca710f7bbc-f4cb5a50cc3f0383 - 1 | 00003247 | 00000969 INPUT | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 - 1 | 00003247 | 00000976 INPUT | [=================================================================================================] | 03d3bdca710f7bbc-ffe9c35c2954775d - 1 | 00003247 | 00000981 INPUT | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 - 1 | 00003247 | 00000988 INPUT | [================================================================================================] | 03d3bdca710f7bbc-fd523bf45febe205 - 1 | 00003247 | 00002860 INPUT | [==================================================================================================] | 00005b386d02964f-ffffec37b1df3f15 - 1 | 00003247 | 00002859 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e - 1 | 00003247 | 00002864 INPUT | [==================================================================================================] | 003e55e1c48b849e-ffe503fa1ab007fb - 1 | 00003247 | 00002874 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00003247 | 00002880 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00003247 | 00002886 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb - 1 | 00003247 | 00002896 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00002902 INPUT | [==================================================================================================] | 000023b78025d350-fffe97e9765737c6 - 1 | 00003247 | 00002912 INPUT | [================================================================================================] | 07a78c52031eea06-fe6bc83b4b2abf68 - 1 | 00003247 | 00002918 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00002923 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00002929 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00002935 INPUT | [===============================================================] | 05e86681aebbfe6d-a96e01a4e006839f - 1 | 00003247 | 00002942 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00002947 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00002954 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00002960 INPUT | [==================================================================================================] | 001323f09fa9a69a-fff2b4fb9e9026cc - 1 | 00003247 | 00002969 INPUT | [=================================================================================================] | 04f8ef707d1e8371-ffba0c2975c8ef07 - 1 | 00003247 | 00002976 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00002982 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00003247 | 00002991 INPUT | [=================================================================================================] | 043ecea317763d2d-fd9eb5313e5705a9 - 1 | 00003247 | 00002998 INPUT | [==================================================================================================] | 0027752eca537b46-ffd50c50ed762576 - 1 | 00003247 | 00003014 INPUT | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 - 1 | 00003247 | 00003024 INPUT | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 - 1 | 00003247 | 00003033 INPUT | O | d7519494b547f097-d7519494b547f097 - 1 | 00003247 | 00003040 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 1 | 00003247 | 00003050 INPUT | [==================================================================================================] | 000801e97f7ace52-ffd14be72ebd195d - 1 | 00003247 | 00003060 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 1 | 00003247 | 00003066 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00003247 | 00003072 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 - 1 | 00003247 | 00003082 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00003247 | 00003092 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00003247 | 00003101 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00003107 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00003113 INPUT | [==================================================================================================] | 00451748c51e234a-fe219f5c03106ee8 - 1 | 00003247 | 00003119 INPUT | [==================================================================================================] | 00451748c51e234a-fe219f5c03106ee8 - 1 | 00003247 | 00003126 INPUT | [=========================================================================] | 18b4ae45bc9cb8b0-d4caf2e664a9b09e - 1 | 00003247 | 00003132 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00003137 INPUT | [==========================================================================] | 3c9af146e584ac2f-fb54ece5c4716af8 - 1 | 00003247 | 00003144 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00003247 | 00003153 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00003160 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00003166 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003247 | 00003171 INPUT | [==========================================================================================] | 0d39b29a0fc466cb-f73dc4981889f6f7 - 1 | 00003247 | 00003177 INPUT | [========================================] | 89f844a55d089a44-f123e9697aa75f74 - 1 | 00003247 | 00003183 INPUT | [================================================================================================] | 012fb73ff2faf902-fa606a81cb107239 - 1 | 00003247 | 00003189 INPUT | [============================================================================================] | 08612e4cd061d30f-f7eb9fb564eb4120 - 1 | 00003247 | 00003196 INPUT | [=================================================================================================] | 031ba583753f2d76-fe34cde88a462f4a - 1 | 00003247 | 00003202 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00003247 | 00003218 INPUT | [==================================================================================================] | 00451748c51e234a-fe9a7a0f20fcfa7f - 1 | 00003247 | 00003223 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 - 1 | 00003247 | 00003229 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 - 1 | 00003247 | 00003236 INPUT | [==================================================================================================] | 0010e26242e36d1c-fff1974f877cf551 - 1 | 00003247 | 00003246 OUTPUT | [==================================================================================================] | 000023b78025d350-ffffec37b1df3f15 (cold) - 1 | 00003247 | 00003245 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffa00a695df4ec (warm) -Time 2026-03-26T20:41:15.216514605Z -Commit 00003248 327611 keys in 44ms 223µs 144ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00003247 | 00003246 SST | [==================================================================================================] | 000023b78025d350-ffffec37b1df3f15 (15 MiB, cold) - 1 | 00003247 | 00003245 SST | [==================================================================================================] | 0000737dcecb7eaa-ffffa00a695df4ec (10 MiB, warm) - 1 | 00003247 | 00000923 00000929 00000935 00000946 00000951 00000957 00000963 00000969 00000976 00000981 00000988 00002859 00002860 00002864 00002874 OBSOLETE SST - 1 | 00003247 | 00002880 00002886 00002896 00002902 00002912 00002918 00002923 00002929 00002935 00002942 00002947 00002954 00002960 00002969 00002976 OBSOLETE SST - 1 | 00003247 | 00002982 00002991 00002998 00003014 00003024 00003033 00003040 00003050 00003060 00003066 00003072 00003082 00003092 00003101 00003107 OBSOLETE SST - 1 | 00003247 | 00003113 00003119 00003126 00003132 00003137 00003144 00003153 00003160 00003166 00003171 00003177 00003183 00003189 00003196 00003202 OBSOLETE SST - 1 | 00003247 | 00003218 00003223 00003229 00003236 OBSOLETE SST - | | 00000923 00000929 00000935 00000946 00000951 00000957 00000963 00000969 00000976 00000981 00000988 00002859 00002860 00002864 00002874 SST DELETED - | | 00002880 00002886 00002896 00002902 00002912 00002918 00002923 00002929 00002935 00002942 00002947 00002954 00002960 00002969 00002976 SST DELETED - | | 00002982 00002991 00002998 00003014 00003024 00003033 00003040 00003050 00003060 00003066 00003072 00003082 00003092 00003101 00003107 SST DELETED - | | 00003113 00003119 00003126 00003132 00003137 00003144 00003153 00003160 00003166 00003171 00003177 00003183 00003189 00003196 00003202 SST DELETED - | | 00003218 00003223 00003229 00003236 SST DELETED - | | 00000928 00000933 00000941 00000949 00000955 00000961 00000967 00000973 00000979 00000985 00000991 00002861 00002869 00002878 00002883 META DELETED - | | 00002894 00002899 00002909 00002915 00002921 00002927 00002933 00002939 00002945 00002951 00002957 00002968 00002973 00002979 00002990 META DELETED - | | 00002996 00003006 00003019 00003029 00003037 00003045 00003057 00003063 00003070 00003079 00003089 00003097 00003105 00003111 00003117 META DELETED - | | 00003123 00003129 00003135 00003141 00003152 00003157 00003164 00003169 00003175 00003181 00003187 00003193 00003199 00003209 00003221 META DELETED - | | 00003227 00003233 00003244 META DELETED -Time 2026-03-26T20:41:19.517972386Z -Commit 00003258 2210 keys in 15ms 59µs 945ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003254 | 00003251 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003255 | 00003252 SST | [==================================================================================================] | 00e8f22c2661fce7-fff4606c7333e5f4 (0 MiB, fresh) - 3 | 00003256 | 00003253 SST | [=================================================================================================] | 01e3d3a2df271174-fb5a68a3bdd1aac8 (0 MiB, fresh) - 1 | 00003257 | 00003250 SST | [==================================================================================================] | 00247993547b8bb1-fff4606c7333e5f4 (0 MiB, fresh) - 2 | 00003258 | 00003249 SST | [==================================================================================================] | 00247993547b8bb1-fff4606c7333e5f4 (0 MiB, fresh) -Time 2026-03-26T20:41:52.767835545Z -Commit 00003268 4154 keys in 21ms 193µs 105ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003264 | 00003261 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003265 | 00003260 SST | [==================================================================================================] | 0000737dcecb7eaa-ffd2128295feedf0 (2 MiB, fresh) - 2 | 00003266 | 00003259 SST | [==================================================================================================] | 0000737dcecb7eaa-ffd2128295feedf0 (10 MiB, fresh) - 3 | 00003267 | 00003262 SST | [================================================================================================] | 0368581e10e982bf-fc72057aff5c3fc0 (0 MiB, fresh) - 4 | 00003268 | 00003263 SST | [======================================================================================] | 2029004d98ce0d2a-fda01071203291a0 (0 MiB, fresh) -Time 2026-03-26T20:43:15.849350332Z -Commit 00003278 9968 keys in 19ms 511µs 19ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003274 | 00003271 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003275 | 00003269 SST | [==================================================================================================] | 0001c8be4f344474-ffe58d83ca25ec39 (6 MiB, fresh) - 1 | 00003276 | 00003270 SST | [==================================================================================================] | 0001c8be4f344474-fffb5bf35f53d031 (2 MiB, fresh) - 3 | 00003277 | 00003272 SST | [==================================================================================================] | 0045f339c83e7d8e-ff95e3c4a104f646 (0 MiB, fresh) - 4 | 00003278 | 00003273 SST | [==================================================================================================] | 000cc0a3af3346be-ffd56e95f9854932 (0 MiB, fresh) -Time 2026-03-26T20:43:29.652810006Z -Commit 00003284 6 keys in 11ms 914µs 808ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003282 | 00003281 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003283 | 00003279 SST | [===========================================================================================] | 035863dc913912c1-ef3d53c34e1e5771 (0 MiB, fresh) - 2 | 00003284 | 00003280 SST | [===========================================================================================] | 035863dc913912c1-ef3d53c34e1e5771 (0 MiB, fresh) -Time 2026-03-26T20:43:47.757159361Z -Commit 00003290 403 keys in 9ms 987µs 202ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003288 | 00003287 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003289 | 00003285 SST | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003290 | 00003286 SST | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:43:58.649320114Z -Commit 00003296 4 keys in 10ms 92µs 878ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003294 | 00003293 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003295 | 00003291 SST | O | 917abb42f579a00e-917abb42f579a00e (0 MiB, fresh) - 2 | 00003296 | 00003292 SST | O | 917abb42f579a00e-917abb42f579a00e (0 MiB, fresh) -Time 2026-03-26T20:44:19.673334436Z -Commit 00003306 1217 keys in 17ms 350µs 15ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003302 | 00003299 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003303 | 00003301 SST | [==============================================================================================] | 062ab09d322da3cc-f974ab4e4e178d79 (0 MiB, fresh) - 3 | 00003304 | 00003300 SST | [====================================================================================] | 1b5f4476403f0e9d-f52b68298aa9c11d (0 MiB, fresh) - 1 | 00003305 | 00003298 SST | [==================================================================================================] | 00451748c51e234a-ffb36b555eaa2e36 (0 MiB, fresh) - 2 | 00003306 | 00003297 SST | [==================================================================================================] | 00bc9fb3e020309a-ffb36b555eaa2e36 (1 MiB, fresh) -Time 2026-03-26T20:45:09.982952996Z -Commit 00003312 216 keys in 12ms 343µs 18ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003310 | 00003309 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003311 | 00003308 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003312 | 00003307 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:46:01.496347363Z -Commit 00003318 963 keys in 12ms 830µs 183ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003316 | 00003315 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003317 | 00003313 SST | [==================================================================================================] | 0027752eca537b46-fe9a5cb3cb9ae422 (0 MiB, fresh) - 1 | 00003318 | 00003314 SST | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 (1 MiB, fresh) -Time 2026-03-26T20:46:45.18955274Z -Commit 00003328 570 keys in 13ms 777µs 914ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003324 | 00003321 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003325 | 00003320 SST | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af (0 MiB, fresh) - 2 | 00003326 | 00003319 SST | [==================================================================================================] | 00bc9fb3e020309a-ffc5a8ccd80420af (0 MiB, fresh) - 3 | 00003327 | 00003322 SST | [===========================================================================] | 0d08dc9eda8a84d8-d0d19c51e3b8dfcc (0 MiB, fresh) - 4 | 00003328 | 00003323 SST | [=========================================================================] | 3abc74dfeacdadfa-f6a35f4f8fab6262 (0 MiB, fresh) -Time 2026-03-26T20:46:58.062926518Z -Commit 00003334 384 keys in 12ms 425µs 378ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003332 | 00003331 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003333 | 00003329 SST | [==================================================================================================] | 00bc9fb3e020309a-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003334 | 00003330 SST | [==================================================================================================] | 00bc9fb3e020309a-fe6bc83b4b2abf68 (1 MiB, fresh) -Time 2026-03-26T20:47:22.405935453Z -Commit 00003344 579 keys in 16ms 539µs 190ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003340 | 00003337 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003341 | 00003335 SST | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af (0 MiB, fresh) - 2 | 00003342 | 00003336 SST | [==================================================================================================] | 0093643421879a72-ffc5a8ccd80420af (0 MiB, fresh) - 4 | 00003343 | 00003339 SST | [=============================================] | 1bc4a3727a47d548-8feaf6e9032c8199 (0 MiB, fresh) - 3 | 00003344 | 00003338 SST | [================================================================] | 3e2d78b3e382f5eb-e56b618f7dbfdfec (0 MiB, fresh) -Time 2026-03-26T20:47:50.407561055Z -Commit 00003354 563 keys in 17ms 375µs 483ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003350 | 00003347 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003351 | 00003346 SST | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af (0 MiB, fresh) - 2 | 00003352 | 00003345 SST | [==================================================================================================] | 00bc9fb3e020309a-ffc5a8ccd80420af (0 MiB, fresh) - 3 | 00003353 | 00003348 SST | [=============================================================================] | 22b4b91ccb5e8f2b-eb592fa874f72de2 (0 MiB, fresh) - 4 | 00003354 | 00003349 SST | [=======================================================================] | 05fd5e250bc01eb6-be2e9fd68574686d (0 MiB, fresh) -Time 2026-03-26T20:48:04.081004473Z -Commit 00003364 583 keys in 18ms 456µs 572ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003360 | 00003357 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003361 | 00003356 SST | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af (0 MiB, fresh) - 2 | 00003362 | 00003355 SST | [==================================================================================================] | 00bc9fb3e020309a-ffc5a8ccd80420af (0 MiB, fresh) - 3 | 00003363 | 00003358 SST | [===============================================================================================] | 00073659d373ac8d-f670917c0d3f320f (0 MiB, fresh) - 4 | 00003364 | 00003359 SST | [==========================================================================================] | 03e5f3828824a856-eca27045ac244fcd (0 MiB, fresh) -Time 2026-03-26T20:48:27.286665044Z -Commit 00003374 563 keys in 16ms 119µs 966ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003370 | 00003367 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003371 | 00003366 SST | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af (0 MiB, fresh) - 2 | 00003372 | 00003365 SST | [==================================================================================================] | 00bc9fb3e020309a-ffc5a8ccd80420af (0 MiB, fresh) - 3 | 00003373 | 00003369 SST | [=============================================================================] | 18172c6da98d9cf5-e0d0983a26c2b6b8 (0 MiB, fresh) - 4 | 00003374 | 00003368 SST | [==============================================] | 717f6a02a63a24ce-ea1892262dd263bd (0 MiB, fresh) -Time 2026-03-26T20:50:29.556288693Z -Commit 00003384 7128 keys in 19ms 514µs 976ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003380 | 00003377 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00003381 | 00003378 SST | [==============================================================================] | 081af834fdc943af-d3e4cb5046d0eaa3 (0 MiB, fresh) - 2 | 00003382 | 00003375 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (6 MiB, fresh) - 4 | 00003383 | 00003379 SST | [=======================================================================] | 03c7ead18978e28e-bd239b5cd813cb0e (0 MiB, fresh) - 1 | 00003384 | 00003376 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (3 MiB, fresh) -Time 2026-03-26T20:51:53.628949963Z -Commit 00003390 7278 keys in 15ms 657µs 311ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003388 | 00003387 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003389 | 00003386 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (3 MiB, fresh) - 2 | 00003390 | 00003385 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (6 MiB, fresh) -Time 2026-03-26T20:54:44.692040621Z -Commit 00003400 22931 keys in 21ms 524µs 870ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003396 | 00003393 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003397 | 00003395 SST | [=================================================================================================] | 0328dda8bf9517e4-fd844b80af106aa6 (0 MiB, fresh) - 2 | 00003398 | 00003391 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (13 MiB, fresh) - 3 | 00003399 | 00003394 SST | [==================================================================================================] | 0275185d0caf7008-ff6d835a888edc3f (0 MiB, fresh) - 1 | 00003400 | 00003392 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (5 MiB, fresh) - 2 | 00003405 | Compaction: - 2 | 00003405 | MERGE (406020 keys): - 2 | 00003405 | 00003211 INPUT | [==========================================] | 000023b78025d350-6e4c2e53919d70b9 - 2 | 00003405 | 00003213 INPUT | [===========================] | 6e4c5ad20a3b93f4-b741dc3a4f203115 - 2 | 00003405 | 00003214 INPUT | [===========================] | b7424244c9781e7e-ffffec37b1df3f15 - 2 | 00003405 | 00003212 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffa00a695df4ec - 2 | 00003405 | 00003217 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fe3b2154ed000e26 - 2 | 00003405 | 00003224 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 - 2 | 00003405 | 00003230 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 - 2 | 00003405 | 00003235 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffc95807b58d8ba6 - 2 | 00003405 | 00003249 INPUT | [==================================================================================================] | 00247993547b8bb1-fff4606c7333e5f4 - 2 | 00003405 | 00003259 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffd2128295feedf0 - 2 | 00003405 | 00003269 INPUT | [==================================================================================================] | 0001c8be4f344474-ffe58d83ca25ec39 - 2 | 00003405 | 00003280 INPUT | [===========================================================================================] | 035863dc913912c1-ef3d53c34e1e5771 - 2 | 00003405 | 00003286 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 - 2 | 00003405 | 00003292 INPUT | O | 917abb42f579a00e-917abb42f579a00e - 2 | 00003405 | 00003297 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffb36b555eaa2e36 - 2 | 00003405 | 00003307 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 2 | 00003405 | 00003313 INPUT | [==================================================================================================] | 0027752eca537b46-fe9a5cb3cb9ae422 - 2 | 00003405 | 00003319 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffc5a8ccd80420af - 2 | 00003405 | 00003330 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fe6bc83b4b2abf68 - 2 | 00003405 | 00003336 INPUT | [==================================================================================================] | 0093643421879a72-ffc5a8ccd80420af - 2 | 00003405 | 00003345 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffc5a8ccd80420af - 2 | 00003405 | 00003355 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffc5a8ccd80420af - 2 | 00003405 | 00003365 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffc5a8ccd80420af - 2 | 00003405 | 00003375 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00003405 | 00003385 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00003405 | 00003391 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00003405 | 00003401 OUTPUT | [=====================================] | 000023b78025d350-63137cbb23a57b93 (cold) - 2 | 00003405 | 00003403 OUTPUT | [==============================] | 6313f4ef795ffbe8-b192e60a2b834fc1 (cold) - 2 | 00003405 | 00003404 OUTPUT | [=============================] | b19322ee26998a84-ffffec37b1df3f15 (cold) - 2 | 00003405 | 00003402 OUTPUT | [==================================================================================================] | 001b970b1716573b-ffd4967fdd827f3b (warm) -Time 2026-03-26T20:54:46.351376418Z -Commit 00003406 406020 keys in 281ms 120µs 924ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00003405 | 00003401 SST | [=====================================] | 000023b78025d350-63137cbb23a57b93 (92 MiB, cold) - 2 | 00003405 | 00003403 SST | [==============================] | 6313f4ef795ffbe8-b192e60a2b834fc1 (69 MiB, cold) - 2 | 00003405 | 00003404 SST | [=============================] | b19322ee26998a84-ffffec37b1df3f15 (68 MiB, cold) - 2 | 00003405 | 00003402 SST | [==================================================================================================] | 001b970b1716573b-ffd4967fdd827f3b (2 MiB, warm) - 2 | 00003405 | 00003211 00003212 00003213 00003214 00003217 00003224 00003230 00003235 00003249 00003259 00003269 00003280 00003286 00003292 00003297 OBSOLETE SST - 2 | 00003405 | 00003307 00003313 00003319 00003330 00003336 00003345 00003355 00003365 00003375 00003385 00003391 OBSOLETE SST - | | 00003211 00003212 00003213 00003214 00003217 00003224 00003230 00003235 00003249 00003259 00003269 00003280 00003286 00003292 00003297 SST DELETED - | | 00003307 00003313 00003319 00003330 00003336 00003345 00003355 00003365 00003375 00003385 00003391 SST DELETED - | | 00003215 00003222 00003228 00003234 00003243 00003258 00003266 00003275 00003284 00003290 00003296 00003306 00003312 00003317 00003326 META DELETED - | | 00003334 00003342 00003352 00003362 00003372 00003382 00003390 00003398 META DELETED -Time 2026-03-26T20:54:48.719440774Z -Commit 00003412 66 keys in 9ms 700µs 458ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003410 | 00003409 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003411 | 00003407 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003412 | 00003408 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T20:54:54.939687149Z -Commit 00003418 463 keys in 11ms 483µs 6ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003416 | 00003415 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003417 | 00003414 SST | [==================================================================================================] | 00451748c51e234a-fe219f5c03106ee8 (0 MiB, fresh) - 2 | 00003418 | 00003413 SST | [=================================================================================================] | 040a3259ff1d07b6-fd9eb5313e5705a9 (1 MiB, fresh) -Time 2026-03-26T20:55:01.036327441Z -Commit 00003428 46198 keys in 34ms 356µs 248ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003424 | 00003421 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003425 | 00003419 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (17 MiB, fresh) - 3 | 00003426 | 00003423 SST | [==================================================================================================] | 00000cce7267534b-fffcf28944a65237 (0 MiB, fresh) - 4 | 00003427 | 00003422 SST | [==================================================================================================] | 001fabc0094c521e-ffd5b4ea6c8b60bf (0 MiB, fresh) - 1 | 00003428 | 00003420 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (6 MiB, fresh) -Time 2026-03-26T20:55:06.01124251Z -Commit 00003434 40 keys in 9ms 190µs 682ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003432 | 00003431 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003433 | 00003429 SST | [===============================================================================================] | 064411753b841c3a-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00003434 | 00003430 SST | [===============================================================================================] | 064411753b841c3a-fb54ece5c4716af8 (0 MiB, fresh) -Time 2026-03-26T20:58:02.444604645Z -Commit 00003444 7165 keys in 20ms 821µs 64ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003440 | 00003437 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003441 | 00003436 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (3 MiB, fresh) - 2 | 00003442 | 00003435 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (7 MiB, fresh) - 3 | 00003443 | 00003438 SST | [======================================================================] | 289436cd8bfb63ed-dea1ec676e6c3de1 (0 MiB, fresh) - 4 | 00003444 | 00003439 SST | [==================================================================] | 32a57307501af86e-dd97c909cf42912e (0 MiB, fresh) -Time 2026-03-26T20:58:11.399941281Z -Commit 00003454 7171 keys in 21ms 917µs 393ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00003450 | 00003446 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (3 MiB, fresh) - 0 | 00003451 | 00003447 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003452 | 00003445 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (7 MiB, fresh) - 3 | 00003453 | 00003448 SST | [=======================================================================] | 09f70a4c4b664987-c218cfb870df1061 (0 MiB, fresh) - 4 | 00003454 | 00003449 SST | [==========================================================================================] | 1038b98dab45ada9-f9d01a2595813559 (0 MiB, fresh) -Time 2026-03-26T20:58:25.493461212Z -Commit 00003460 222 keys in 13ms 31µs 922ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003458 | 00003457 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003459 | 00003455 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003460 | 00003456 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:58:33.254096098Z -Commit 00003470 7195 keys in 20ms 71µs 221ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003466 | 00003463 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003467 | 00003462 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (3 MiB, fresh) - 2 | 00003468 | 00003461 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (7 MiB, fresh) - 3 | 00003469 | 00003464 SST | [=========================================================================] | 3f0133463ebc03ae-fcedda7f879aa2d5 (0 MiB, fresh) - 4 | 00003470 | 00003465 SST | [===============================================================================================] | 0701669dd9a2ade1-fd00d0658e25efc8 (0 MiB, fresh) - 1 | 00003473 | Compaction: - 1 | 00003473 | MERGE (341239 keys): - 1 | 00003473 | 00000660 INPUT | [==================================================================================================] | 00097bec3d0dba0a-fffa05bbf935dd9a - 1 | 00003473 | 00000670 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffa7cd5097e8a6a - 1 | 00003473 | 00000684 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffb5bf35f53d031 - 1 | 00003473 | 00000694 INPUT | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 - 1 | 00003473 | 00000700 INPUT | [==================================================================================================] | 005b36fb126383dd-ff862d954814ed6d - 1 | 00003473 | 00000710 INPUT | [==================================================================================================] | 00226f4ec2547129-fff83386eaa859cc - 1 | 00003473 | 00000719 INPUT | [=========================================================================================] | 15f170eb957b4d22-fbb265ba641256f5 - 1 | 00003473 | 00000726 INPUT | [==================================================================================================] | 004223a870e45b5a-ffe9c35c2954775d - 1 | 00003473 | 00000735 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 1 | 00003473 | 00000741 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 1 | 00003473 | 00000747 INPUT | [==================================================================================================] | 008ae3bdc7f6aa2a-fe815a8afe94cb19 - 1 | 00003473 | 00000758 INPUT | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 - 1 | 00003473 | 00000763 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 1 | 00003473 | 00000770 INPUT | [==============================================================================================] | 099e39488e5906e6-fd523bf45febe205 - 1 | 00003473 | 00000776 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 1 | 00003473 | 00000782 INPUT | [==================================================================================================] | 007e491608ee6df0-ffe9c35c2954775d - 1 | 00003473 | 00000788 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 1 | 00003473 | 00000793 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 1 | 00003473 | 00000799 INPUT | [================================================================================================] | 03bfaf281cffcaa2-fcd7793042f87515 - 1 | 00003473 | 00000806 INPUT | [==================================================================================================] | 00247993547b8bb1-ffa072d986cb58f8 - 1 | 00003473 | 00000816 INPUT | [==================================================================================================] | 01cb3d717c7f7124-ff382f713f6ec8d6 - 1 | 00003473 | 00000825 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 1 | 00003473 | 00000831 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 1 | 00003473 | 00000838 INPUT | [===========================================================] | 6531a33b998d3a59-fda1976e324b2264 - 1 | 00003473 | 00000843 INPUT | [=============================================================================================] | 0c8629489f3ed99a-fc8c44ad7977b311 - 1 | 00003473 | 00000850 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-ff9103aea0711ef3 - 1 | 00003473 | 00000856 INPUT | [==================================================================================================] | 005b36fb126383dd-ff862d954814ed6d - 1 | 00003473 | 00000866 INPUT | [==============================================================================================] | 084a68774cb743b2-fcd7793042f87515 - 1 | 00003473 | 00000871 INPUT | [================================================================================================] | 062250cb13158f64-ff381d5a482df3e4 - 1 | 00003473 | 00000877 INPUT | [==============================================================================================] | 08e37d68b2e40092-fcd7793042f87515 - 1 | 00003473 | 00000883 INPUT | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 - 1 | 00003473 | 00000889 INPUT | [===============================================================================================] | 08e37d68b2e40092-ff9103aea0711ef3 - 1 | 00003473 | 00000895 INPUT | [==================================================================================================] | 01eaeb16ac669352-fe1e70df835294dd - 1 | 00003473 | 00000905 INPUT | [==============================================================================================] | 084a68774cb743b2-fcd7793042f87515 - 1 | 00003473 | 00000911 INPUT | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 - 1 | 00003473 | 00000918 INPUT | [==================================================================================================] | 004223a870e45b5a-ff45d6c3b893bf25 - 1 | 00003473 | 00003246 INPUT | [==================================================================================================] | 000023b78025d350-ffffec37b1df3f15 - 1 | 00003473 | 00003245 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffffa00a695df4ec - 1 | 00003473 | 00003250 INPUT | [==================================================================================================] | 00247993547b8bb1-fff4606c7333e5f4 - 1 | 00003473 | 00003260 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffd2128295feedf0 - 1 | 00003473 | 00003270 INPUT | [==================================================================================================] | 0001c8be4f344474-fffb5bf35f53d031 - 1 | 00003473 | 00003279 INPUT | [===========================================================================================] | 035863dc913912c1-ef3d53c34e1e5771 - 1 | 00003473 | 00003285 INPUT | [=================================================================================================] | 03bfaf281cffcaa2-fd9eb5313e5705a9 - 1 | 00003473 | 00003291 INPUT | O | 917abb42f579a00e-917abb42f579a00e - 1 | 00003473 | 00003298 INPUT | [==================================================================================================] | 00451748c51e234a-ffb36b555eaa2e36 - 1 | 00003473 | 00003308 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 1 | 00003473 | 00003314 INPUT | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 - 1 | 00003473 | 00003320 INPUT | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af - 1 | 00003473 | 00003329 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fe6bc83b4b2abf68 - 1 | 00003473 | 00003335 INPUT | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af - 1 | 00003473 | 00003346 INPUT | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af - 1 | 00003473 | 00003356 INPUT | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af - 1 | 00003473 | 00003366 INPUT | [==================================================================================================] | 00451748c51e234a-ffc5a8ccd80420af - 1 | 00003473 | 00003376 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00003473 | 00003386 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00003473 | 00003392 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 1 | 00003473 | 00003407 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00003473 | 00003414 INPUT | [==================================================================================================] | 00451748c51e234a-fe219f5c03106ee8 - 1 | 00003473 | 00003420 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00003473 | 00003429 INPUT | [===============================================================================================] | 064411753b841c3a-fb54ece5c4716af8 - 1 | 00003473 | 00003436 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00003473 | 00003446 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00003473 | 00003455 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 1 | 00003473 | 00003462 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00003473 | 00003472 OUTPUT | [==================================================================================================] | 000023b78025d350-ffffec37b1df3f15 (cold) - 1 | 00003473 | 00003471 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (warm) -Time 2026-03-26T20:58:34.286062386Z -Commit 00003474 341239 keys in 43ms 990µs 6ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00003473 | 00003472 SST | [==================================================================================================] | 000023b78025d350-ffffec37b1df3f15 (20 MiB, cold) - 1 | 00003473 | 00003471 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff5f9b333e341e (6 MiB, warm) - 1 | 00003473 | 00000660 00000670 00000684 00000694 00000700 00000710 00000719 00000726 00000735 00000741 00000747 00000758 00000763 00000770 00000776 OBSOLETE SST - 1 | 00003473 | 00000782 00000788 00000793 00000799 00000806 00000816 00000825 00000831 00000838 00000843 00000850 00000856 00000866 00000871 00000877 OBSOLETE SST - 1 | 00003473 | 00000883 00000889 00000895 00000905 00000911 00000918 00003245 00003246 00003250 00003260 00003270 00003279 00003285 00003291 00003298 OBSOLETE SST - 1 | 00003473 | 00003308 00003314 00003320 00003329 00003335 00003346 00003356 00003366 00003376 00003386 00003392 00003407 00003414 00003420 00003429 OBSOLETE SST - 1 | 00003473 | 00003436 00003446 00003455 00003462 OBSOLETE SST - | | 00000660 00000670 00000684 00000694 00000700 00000710 00000719 00000726 00000735 00000741 00000747 00000758 00000763 00000770 00000776 SST DELETED - | | 00000782 00000788 00000793 00000799 00000806 00000816 00000825 00000831 00000838 00000843 00000850 00000856 00000866 00000871 00000877 SST DELETED - | | 00000883 00000889 00000895 00000905 00000911 00000918 00003245 00003246 00003250 00003260 00003270 00003279 00003285 00003291 00003298 SST DELETED - | | 00003308 00003314 00003320 00003329 00003335 00003346 00003356 00003366 00003376 00003386 00003392 00003407 00003414 00003420 00003429 SST DELETED - | | 00003436 00003446 00003455 00003462 SST DELETED - | | 00000668 00000675 00000689 00000697 00000705 00000715 00000723 00000731 00000739 00000745 00000753 00000761 00000767 00000773 00000780 META DELETED - | | 00000785 00000791 00000797 00000803 00000812 00000824 00000829 00000835 00000841 00000847 00000853 00000864 00000869 00000875 00000881 META DELETED - | | 00000887 00000893 00000901 00000909 00000915 00000921 00003247 00003257 00003265 00003276 00003283 00003289 00003295 00003305 00003311 META DELETED - | | 00003318 00003325 00003333 00003341 00003351 00003361 00003371 00003384 00003389 00003400 00003411 00003417 00003428 00003433 00003441 META DELETED - | | 00003450 00003459 00003467 META DELETED -Time 2026-03-26T20:59:16.595092719Z -Commit 00003480 222 keys in 11ms 332µs 925ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003478 | 00003477 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003479 | 00003476 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003480 | 00003475 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:59:19.694791134Z -Commit 00003486 230 keys in 10ms 916µs 640ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003484 | 00003483 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003485 | 00003482 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003486 | 00003481 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T20:59:28.907270771Z -Commit 00003496 7182 keys in 20ms 315µs 804ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003492 | 00003489 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003493 | 00003488 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (3 MiB, fresh) - 2 | 00003494 | 00003487 SST | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 (7 MiB, fresh) - 3 | 00003495 | 00003490 SST | [=============================================================] | 3c4ccd4ffb367a98-db39f6319ae1c0e9 (0 MiB, fresh) - 4 | 00003496 | 00003491 SST | [================================================================] | 2153fade94d84007-c8ded72374669306 (0 MiB, fresh) -Time 2026-03-26T20:59:48.389158679Z -Commit 00003502 222 keys in 12ms 387µs 908ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003500 | 00003499 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003501 | 00003498 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003502 | 00003497 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T21:01:14.211580759Z -Commit 00003512 6235 keys in 21ms 855µs 282ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003508 | 00003505 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003509 | 00003507 SST | [==================================================================================================] | 00ec340b7bfdbfe7-ff55535a916f9513 (0 MiB, fresh) - 3 | 00003510 | 00003506 SST | [==================================================================================================] | 00515bbd5b60321d-ffddf23c45bfda37 (0 MiB, fresh) - 1 | 00003511 | 00003503 SST | [==================================================================================================] | 000ec71960d9cb04-fffdd89e249d22e3 (2 MiB, fresh) - 2 | 00003512 | 00003504 SST | [==================================================================================================] | 000ec71960d9cb04-ffd02d39af75d27f (6 MiB, fresh) -Time 2026-03-26T21:04:09.951586128Z -Commit 00003518 812 keys in 12ms 516µs 113ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003516 | 00003515 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003517 | 00003514 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00003518 | 00003513 SST | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc (1 MiB, fresh) -Time 2026-03-26T21:04:36.116565603Z -Commit 00003524 924 keys in 14ms 180µs 870ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003522 | 00003521 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003523 | 00003520 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00003524 | 00003519 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (3 MiB, fresh) -Time 2026-03-26T21:04:49.826105591Z -Commit 00003534 8620 keys in 19ms 315µs 395ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003530 | 00003527 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003531 | 00003528 SST | [==================================================================================================] | 0013523be5d02f5f-ff902c37eea9ecf9 (0 MiB, fresh) - 2 | 00003532 | 00003525 SST | [==================================================================================================] | 000ec71960d9cb04-ffd45de73a5c482c (4 MiB, fresh) - 1 | 00003533 | 00003526 SST | [==================================================================================================] | 000ec71960d9cb04-fffdd89e249d22e3 (2 MiB, fresh) - 3 | 00003534 | 00003529 SST | [==================================================================================================] | 01e76fcda707589d-ff08e2596b2c0173 (0 MiB, fresh) -Time 2026-03-26T21:04:56.734706802Z -Commit 00003540 304 keys in 12ms 757µs 997ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003538 | 00003537 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003539 | 00003535 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003540 | 00003536 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T21:05:11.558365248Z -Commit 00003546 442 keys in 13ms 16µs 79ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003544 | 00003543 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003545 | 00003542 SST | [==================================================================================================] | 01eaeb16ac669352-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003546 | 00003541 SST | [==================================================================================================] | 01eaeb16ac669352-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T21:05:50.338198462Z -Commit 00003552 108 keys in 12ms 575µs 197ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003550 | 00003549 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003551 | 00003548 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003552 | 00003547 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T21:05:52.672242046Z -Commit 00003558 90 keys in 9ms 145µs 269ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003556 | 00003555 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003557 | 00003553 SST | [=================================================================================================] | 04f8ef707d1e8371-ffac310021da6675 (0 MiB, fresh) - 2 | 00003558 | 00003554 SST | [=================================================================================================] | 04f8ef707d1e8371-ffac310021da6675 (0 MiB, fresh) -Time 2026-03-26T21:05:56.685918107Z -Commit 00003568 6915 keys in 17ms 872µs 255ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003564 | 00003561 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003565 | 00003563 SST | [==================================================================================================] | 00ea945d997b80b1-ff487731b2700a08 (0 MiB, fresh) - 2 | 00003566 | 00003559 SST | [==================================================================================================] | 00247993547b8bb1-fffa74767ac9d1be (5 MiB, fresh) - 3 | 00003567 | 00003562 SST | [==================================================================================================] | 01995317325dd5de-fdcac6d804869098 (0 MiB, fresh) - 1 | 00003568 | 00003560 SST | [==================================================================================================] | 0019262fefeb7f80-fffa74767ac9d1be (1 MiB, fresh) - 2 | 00003573 | Compaction: - 2 | 00003573 | MERGE (410109 keys): - 2 | 00003573 | 00003401 INPUT | [=====================================] | 000023b78025d350-63137cbb23a57b93 - 2 | 00003573 | 00003403 INPUT | [==============================] | 6313f4ef795ffbe8-b192e60a2b834fc1 - 2 | 00003573 | 00003404 INPUT | [=============================] | b19322ee26998a84-ffffec37b1df3f15 - 2 | 00003573 | 00003402 INPUT | [==================================================================================================] | 001b970b1716573b-ffd4967fdd827f3b - 2 | 00003573 | 00003408 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003573 | 00003413 INPUT | [=================================================================================================] | 040a3259ff1d07b6-fd9eb5313e5705a9 - 2 | 00003573 | 00003419 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00003573 | 00003430 INPUT | [===============================================================================================] | 064411753b841c3a-fb54ece5c4716af8 - 2 | 00003573 | 00003435 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00003573 | 00003445 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00003573 | 00003456 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 2 | 00003573 | 00003461 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00003573 | 00003475 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 2 | 00003573 | 00003481 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 2 | 00003573 | 00003487 INPUT | [==================================================================================================] | 003748fef9e2db69-ffe5d9a156d03758 - 2 | 00003573 | 00003497 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 2 | 00003573 | 00003504 INPUT | [==================================================================================================] | 000ec71960d9cb04-ffd02d39af75d27f - 2 | 00003573 | 00003513 INPUT | [=================================================================================================] | 047f3b8521e60613-fee38f1e3332a6dc - 2 | 00003573 | 00003519 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 2 | 00003573 | 00003525 INPUT | [==================================================================================================] | 000ec71960d9cb04-ffd45de73a5c482c - 2 | 00003573 | 00003536 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 2 | 00003573 | 00003541 INPUT | [==================================================================================================] | 01eaeb16ac669352-fd9eb5313e5705a9 - 2 | 00003573 | 00003547 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00003573 | 00003554 INPUT | [=================================================================================================] | 04f8ef707d1e8371-ffac310021da6675 - 2 | 00003573 | 00003559 INPUT | [==================================================================================================] | 00247993547b8bb1-fffa74767ac9d1be - 2 | 00003573 | 00003569 OUTPUT | [=====================================] | 000023b78025d350-6307ab60b630a1c8 (cold) - 2 | 00003573 | 00003571 OUTPUT | [==============================] | 6307e2e41e2748bd-b18f90beff4e76cf (cold) - 2 | 00003573 | 00003572 OUTPUT | [=============================] | b18fa4787cf81c75-ffffec37b1df3f15 (cold) - 2 | 00003573 | 00003570 OUTPUT | [==================================================================================================] | 00555713d075c703-fff5d0c7322e056c (warm) -Time 2026-03-26T21:05:58.034906248Z -Commit 00003574 410109 keys in 198ms 921µs 481ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00003573 | 00003569 SST | [=====================================] | 000023b78025d350-6307ab60b630a1c8 (93 MiB, cold) - 2 | 00003573 | 00003571 SST | [==============================] | 6307e2e41e2748bd-b18f90beff4e76cf (71 MiB, cold) - 2 | 00003573 | 00003572 SST | [=============================] | b18fa4787cf81c75-ffffec37b1df3f15 (68 MiB, cold) - 2 | 00003573 | 00003570 SST | [==================================================================================================] | 00555713d075c703-fff5d0c7322e056c (2 MiB, warm) - 2 | 00003573 | 00003401 00003402 00003403 00003404 00003408 00003413 00003419 00003430 00003435 00003445 00003456 00003461 00003475 00003481 00003487 OBSOLETE SST - 2 | 00003573 | 00003497 00003504 00003513 00003519 00003525 00003536 00003541 00003547 00003554 00003559 OBSOLETE SST - | | 00003401 00003402 00003403 00003404 00003408 00003413 00003419 00003430 00003435 00003445 00003456 00003461 00003475 00003481 00003487 SST DELETED - | | 00003497 00003504 00003513 00003519 00003525 00003536 00003541 00003547 00003554 00003559 SST DELETED - | | 00003405 00003412 00003418 00003425 00003434 00003442 00003452 00003460 00003468 00003480 00003486 00003494 00003502 00003512 00003518 META DELETED - | | 00003524 00003532 00003540 00003546 00003552 00003558 00003566 META DELETED -Time 2026-03-26T21:23:49.604513776Z -Commit 00003584 14418 keys in 21ms 793µs 625ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003580 | 00003577 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003581 | 00003579 SST | [==================================================================================================] | 0022e9f82e8de36b-ff31a6cf46109987 (0 MiB, fresh) - 2 | 00003582 | 00003575 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb (9 MiB, fresh) - 3 | 00003583 | 00003578 SST | [==================================================================================================] | 00194cc35049fbda-ffcc2519987c8517 (0 MiB, fresh) - 1 | 00003584 | 00003576 SST | [==================================================================================================] | 0000737dcecb7eaa-fff49d0b9a706a34 (2 MiB, fresh) -Time 2026-03-26T21:23:58.589783083Z -Commit 00003594 9939 keys in 25ms 857µs 615ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003590 | 00003587 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003591 | 00003586 SST | [==================================================================================================] | 0013523be5d02f5f-fffb5bf35f53d031 (2 MiB, fresh) - 2 | 00003592 | 00003585 SST | [==================================================================================================] | 0013523be5d02f5f-ffe58d83ca25ec39 (7 MiB, fresh) - 3 | 00003593 | 00003588 SST | [==================================================================================================] | 0054eea56eda6950-fe651048e73a332f (0 MiB, fresh) - 4 | 00003594 | 00003589 SST | [==================================================================================================] | 00f91cc4f8f370b2-fe2f7d76cdb0866a (0 MiB, fresh) -Time 2026-03-26T21:24:03.72804834Z -Commit 00003600 36 keys in 11ms 640µs 562ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003598 | 00003597 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003599 | 00003595 SST | [=========================================================================] | 32892b537c9e4af3-ef600373a0711249 (0 MiB, fresh) - 2 | 00003600 | 00003596 SST | [=========================================================================] | 32892b537c9e4af3-ef600373a0711249 (0 MiB, fresh) -Time 2026-03-26T21:29:50.833858795Z -Commit 00003606 90 keys in 11ms 892µs 361ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003604 | 00003603 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003605 | 00003602 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003606 | 00003601 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T21:30:09.329897256Z -Commit 00003612 4 keys in 11ms 701µs 750ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003610 | 00003609 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003611 | 00003607 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) - 2 | 00003612 | 00003608 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) -Time 2026-03-26T21:30:13.937463082Z -Commit 00003618 44 keys in 13ms 886µs 659ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003616 | 00003615 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003617 | 00003614 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003618 | 00003613 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T21:31:09.27426715Z -Commit 00003624 44 keys in 11ms 930µs 559ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003622 | 00003621 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003623 | 00003620 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003624 | 00003619 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T21:31:11.706733235Z -Commit 00003630 44 keys in 11ms 816µs 708ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003628 | 00003627 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003629 | 00003626 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003630 | 00003625 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T21:35:04.967441553Z -Commit 00003640 3195 keys in 23ms 645µs 318ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003636 | 00003633 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003637 | 00003632 SST | [==================================================================================================] | 00247993547b8bb1-ff67d440bfb64d44 (1 MiB, fresh) - 2 | 00003638 | 00003631 SST | [==================================================================================================] | 00247993547b8bb1-ff67d440bfb64d44 (3 MiB, fresh) - 3 | 00003639 | 00003634 SST | [===============================================================================================] | 087f21ab4a3429dc-fea44c04b495da0b (0 MiB, fresh) - 4 | 00003640 | 00003635 SST | [=================================================================================================] | 002a3c3b0d857b6d-fbd5dd8663a6dfd8 (0 MiB, fresh) -Time 2026-03-26T21:35:49.272496738Z -Commit 00003646 20 keys in 12ms 79µs 731ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003644 | 00003643 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003645 | 00003642 SST | [=================================================================] | 149555a2795edc4f-bf79162da1dc254a (0 MiB, fresh) - 2 | 00003646 | 00003641 SST | [=================================================================] | 149555a2795edc4f-bf79162da1dc254a (0 MiB, fresh) -Time 2026-03-26T21:40:35.834022449Z -Commit 00003652 4 keys in 8ms 621µs 908ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003650 | 00003649 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003651 | 00003647 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00003652 | 00003648 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-03-26T21:46:37.99022221Z -Commit 00003662 39996 keys in 21ms 14µs 218ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003658 | 00003655 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003659 | 00003657 SST | [==================================================================================================] | 0012eb52e1878911-fffc8c4547f1354b (0 MiB, fresh) - 3 | 00003660 | 00003656 SST | [==================================================================================================] | 00544d63a1a6d034-ffd5694ee180e88f (0 MiB, fresh) - 2 | 00003661 | 00003653 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (21 MiB, fresh) - 1 | 00003662 | 00003654 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (5 MiB, fresh) -Time 2026-03-26T21:50:45.479631362Z -Commit 00003672 10220 keys in 19ms 946µs 462ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003668 | 00003665 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003669 | 00003664 SST | [==================================================================================================] | 000ec71960d9cb04-fffc2c9948fcd111 (2 MiB, fresh) - 2 | 00003670 | 00003663 SST | [==================================================================================================] | 000ec71960d9cb04-fffc2c9948fcd111 (3 MiB, fresh) - 4 | 00003671 | 00003667 SST | [==================================================================================================] | 008dae691c4a506b-fffc2c9948fcd111 (0 MiB, fresh) - 3 | 00003672 | 00003666 SST | [==================================================================================================] | 0010405c45236297-ffc82002eaf026d5 (0 MiB, fresh) -Time 2026-03-26T21:50:54.672303151Z -Commit 00003682 808 keys in 15ms 342µs 294ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003678 | 00003675 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003679 | 00003673 SST | [==================================================================================================] | 0065ed9316e2db62-ff613e324f823aec (0 MiB, fresh) - 2 | 00003680 | 00003674 SST | [==================================================================================================] | 0065ed9316e2db62-ff613e324f823aec (0 MiB, fresh) - 3 | 00003681 | 00003677 SST | [==========================================] | 2f3cc3981a236b8a-9cd14b7b38b33853 (0 MiB, fresh) - 4 | 00003682 | 00003676 SST | [==================================] | 4b636af2d349b92f-a533c4cee17d89e1 (0 MiB, fresh) -Time 2026-03-26T21:51:05.49818463Z -Commit 00003688 377 keys in 13ms 119µs 491ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003686 | 00003685 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003687 | 00003684 SST | [=================================================================================================] | 02eda4d50c0ac43c-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003688 | 00003683 SST | [=================================================================================================] | 02eda4d50c0ac43c-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T21:51:11.656902843Z -Commit 00003694 377 keys in 11ms 988µs 548ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003692 | 00003691 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003693 | 00003690 SST | [=================================================================================================] | 02eda4d50c0ac43c-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003694 | 00003689 SST | [=================================================================================================] | 02eda4d50c0ac43c-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T21:51:32.664525964Z -Commit 00003700 525 keys in 12ms 137µs 504ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003698 | 00003697 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003699 | 00003696 SST | [==================================================================================================] | 0065ed9316e2db62-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003700 | 00003695 SST | [==================================================================================================] | 0065ed9316e2db62-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T21:51:51.95188787Z -Commit 00003706 6 keys in 11ms 220µs 566ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003704 | 00003703 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003705 | 00003701 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) - 2 | 00003706 | 00003702 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) -Time 2026-03-26T21:51:59.955728208Z -Commit 00003712 30 keys in 11ms 930µs 484ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003710 | 00003709 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003711 | 00003707 SST | [=====================================================================================] | 14a5dccecdf53b95-f123e9697aa75f74 (0 MiB, fresh) - 2 | 00003712 | 00003708 SST | [=====================================================================================] | 14a5dccecdf53b95-f123e9697aa75f74 (0 MiB, fresh) -Time 2026-03-26T21:52:38.386148239Z -Commit 00003718 98 keys in 12ms 159µs 70ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003716 | 00003715 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003717 | 00003713 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003718 | 00003714 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T21:54:24.812912955Z -Commit 00003728 2164 keys in 16ms 937µs 862ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003724 | 00003721 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003725 | 00003719 SST | [==================================================================================================] | 0010e26242e36d1c-ffed1c601513cf05 (0 MiB, fresh) - 2 | 00003726 | 00003720 SST | [==================================================================================================] | 0010e26242e36d1c-ffed1c601513cf05 (0 MiB, fresh) - 3 | 00003727 | 00003722 SST | [==================================================================================================] | 0101964765b4a908-ff8ffe1c7fd4e2af (0 MiB, fresh) - 4 | 00003728 | 00003723 SST | [================================================================================================] | 0616f012a3951f34-fe47fffbfd5b5fd5 (0 MiB, fresh) -Time 2026-03-26T21:54:44.952743832Z -Commit 00003734 1356 keys in 12ms 982µs 763ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003732 | 00003731 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003733 | 00003729 SST | [==================================================================================================] | 0010e26242e36d1c-ffed1c601513cf05 (0 MiB, fresh) - 2 | 00003734 | 00003730 SST | [==================================================================================================] | 0010e26242e36d1c-ffed1c601513cf05 (0 MiB, fresh) -Time 2026-03-26T21:55:56.786225179Z -Commit 00003740 533 keys in 12ms 900µs 689ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003738 | 00003737 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003739 | 00003736 SST | [==================================================================================================] | 0065ed9316e2db62-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003740 | 00003735 SST | [==================================================================================================] | 0065ed9316e2db62-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T21:56:29.158299008Z -Commit 00003746 96 keys in 13ms 376µs 607ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003744 | 00003743 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003745 | 00003741 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003746 | 00003742 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T21:56:51.104579326Z -Commit 00003752 57 keys in 13ms 645µs 493ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003750 | 00003749 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003751 | 00003748 SST | [==============================================================================================] | 02f613b91e3389c8-f686f74d2c2b3db1 (0 MiB, fresh) - 2 | 00003752 | 00003747 SST | [==============================================================================================] | 035863dc913912c1-f686f74d2c2b3db1 (0 MiB, fresh) -Time 2026-03-26T21:58:05.004885521Z -Commit 00003758 4 keys in 9ms 291µs 366ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003756 | 00003755 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003757 | 00003753 SST | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 (0 MiB, fresh) - 2 | 00003758 | 00003754 SST | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 (0 MiB, fresh) -Time 2026-03-26T21:58:24.070193609Z -Commit 00003764 4 keys in 9ms 816µs 657ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003762 | 00003761 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003763 | 00003759 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00003764 | 00003760 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-03-26T21:58:44.190281294Z -Commit 00003770 102 keys in 10ms 77µs 184ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003768 | 00003767 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003769 | 00003765 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003770 | 00003766 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T21:58:46.7713647Z -Commit 00003776 18 keys in 9ms 403µs 445ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003774 | 00003773 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003775 | 00003771 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00003776 | 00003772 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) -Time 2026-03-26T22:10:09.282024336Z -Commit 00003782 96 keys in 12ms 139µs 393ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003780 | 00003779 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003781 | 00003777 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003782 | 00003778 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T22:10:11.991427255Z -Commit 00003788 4 keys in 11ms 660µs 122ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003786 | 00003785 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003787 | 00003783 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) - 2 | 00003788 | 00003784 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) -Time 2026-03-26T22:13:29.461095027Z -Commit 00003794 4 keys in 12ms 611µs 845ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003792 | 00003791 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003793 | 00003789 SST | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 (0 MiB, fresh) - 2 | 00003794 | 00003790 SST | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 (0 MiB, fresh) -Time 2026-03-26T22:13:54.257306918Z -Commit 00003800 96 keys in 10ms 346µs 255ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003798 | 00003797 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003799 | 00003796 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003800 | 00003795 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T22:13:57.833205968Z -Commit 00003806 18 keys in 11ms 618µs 156ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003804 | 00003803 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003805 | 00003801 SST | [==================================================================================] | 186bdcaf1d568304-edfdd06c50e95abc (0 MiB, fresh) - 2 | 00003806 | 00003802 SST | [==================================================================================] | 186bdcaf1d568304-edfdd06c50e95abc (0 MiB, fresh) -Time 2026-03-26T22:14:09.818581227Z -Commit 00003812 108 keys in 11ms 108µs 498ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003810 | 00003809 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003811 | 00003808 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00003812 | 00003807 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T22:14:12.903316981Z -Commit 00003818 4 keys in 9ms 94µs 640ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003816 | 00003815 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003817 | 00003813 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) - 2 | 00003818 | 00003814 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) -Time 2026-03-26T22:14:57.098577211Z -Commit 00003824 4 keys in 10ms 711µs 994ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003822 | 00003821 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003823 | 00003819 SST | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 (0 MiB, fresh) - 2 | 00003824 | 00003820 SST | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 (0 MiB, fresh) -Time 2026-03-26T22:21:40.532046664Z -Commit 00003830 12 keys in 11ms 271µs 197ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003828 | 00003827 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003829 | 00003826 SST | [====================================================] | 68bc362bfa096f57-ef3d53c34e1e5771 (0 MiB, fresh) - 2 | 00003830 | 00003825 SST | [====================================================] | 68bc362bfa096f57-ef3d53c34e1e5771 (0 MiB, fresh) -Time 2026-03-26T22:25:09.720175281Z -Commit 00003836 10 keys in 12ms 20µs 610ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003834 | 00003833 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003835 | 00003831 SST | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 (0 MiB, fresh) - 2 | 00003836 | 00003832 SST | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 (0 MiB, fresh) -Time 2026-03-26T22:25:14.608138973Z -Commit 00003842 4 keys in 12ms 251µs 511ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003840 | 00003839 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003841 | 00003837 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00003842 | 00003838 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-03-26T22:30:07.45537124Z -Commit 00003848 1050 keys in 13ms 583µs 825ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003846 | 00003845 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003847 | 00003844 SST | [==================================================================================================] | 0027752eca537b46-ff7f027b79f46208 (1 MiB, fresh) - 2 | 00003848 | 00003843 SST | [==================================================================================================] | 0027752eca537b46-fe9a5cb3cb9ae422 (1 MiB, fresh) -Time 2026-03-26T22:38:36.79210036Z -Commit 00003854 963 keys in 13ms 33µs 976ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003852 | 00003851 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003853 | 00003849 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00003854 | 00003850 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (3 MiB, fresh) -Time 2026-03-26T22:39:12.552065479Z -Commit 00003860 234 keys in 12ms 260µs 280ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003858 | 00003857 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003859 | 00003855 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003860 | 00003856 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-26T22:39:32.952278205Z -Commit 00003866 51 keys in 11ms 697µs 777ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003864 | 00003863 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003865 | 00003861 SST | [==============================================================================================] | 02f613b91e3389c8-f686f74d2c2b3db1 (0 MiB, fresh) - 2 | 00003866 | 00003862 SST | [====================================================================================] | 1d4c2060968ea7c1-f686f74d2c2b3db1 (0 MiB, fresh) -Time 2026-03-26T22:43:47.461622127Z -Commit 00003872 669 keys in 13ms 159µs 594ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003870 | 00003869 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003871 | 00003868 SST | [==================================================================================================] | 00a0a63296e7b8d9-ff5d964a921d2533 (0 MiB, fresh) - 1 | 00003872 | 00003867 SST | [==================================================================================================] | 00aa10c8467e501c-ff5d964a921d2533 (0 MiB, fresh) -Time 2026-03-26T22:45:58.626445564Z -Commit 00003878 4 keys in 11ms 650µs 781ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003876 | 00003875 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003877 | 00003873 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00003878 | 00003874 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-03-26T22:46:40.139722242Z -Commit 00003884 72 keys in 11ms 957µs 998ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003882 | 00003881 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003883 | 00003879 SST | [================================================================================================] | 03671ce438c5663d-fceee9a8dc7a73b8 (0 MiB, fresh) - 2 | 00003884 | 00003880 SST | [================================================================================================] | 03671ce438c5663d-fceee9a8dc7a73b8 (0 MiB, fresh) -Time 2026-03-26T23:22:02.054361129Z -Commit 00003890 4913 keys in 12ms 536µs 171ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003888 | 00003887 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003889 | 00003885 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00003890 | 00003886 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (2 MiB, fresh) -Time 2026-03-26T23:22:07.326154689Z -Commit 00003896 6 keys in 13ms 425µs 562ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003894 | 00003893 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003895 | 00003891 SST | [=====================================] | 062149483cefaf8c-68bc362bfa096f57 (0 MiB, fresh) - 2 | 00003896 | 00003892 SST | [=====================================] | 062149483cefaf8c-68bc362bfa096f57 (0 MiB, fresh) -Time 2026-03-26T23:25:38.876068258Z -Commit 00003902 701 keys in 19ms 148µs 671ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003900 | 00003899 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003901 | 00003897 SST | [==================================================================================================] | 012fb73ff2faf902-ffac310021da6675 (3 MiB, fresh) - 1 | 00003902 | 00003898 SST | [==================================================================================================] | 00bc9fb3e020309a-ffac310021da6675 (0 MiB, fresh) -Time 2026-03-26T23:27:07.190871312Z -Commit 00003908 216 keys in 13ms 653µs 34ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003906 | 00003905 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003907 | 00003904 SST | [================================================================================================] | 055f38971e3f4b40-fe3b2154ed000e26 (0 MiB, fresh) - 2 | 00003908 | 00003903 SST | [=============================================================================================] | 0af2ef09d47777b2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T23:29:49.224974282Z -Commit 00003918 685 keys in 16ms 368µs 191ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003914 | 00003911 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00003915 | 00003909 SST | [================================================================================================] | 047f3b8521e60613-fc14d191b68d496a (0 MiB, fresh) - 1 | 00003916 | 00003910 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 3 | 00003917 | 00003912 SST | O | 92463daa1391c847-92463daa1391c847 (0 MiB, fresh) - 4 | 00003918 | 00003913 SST | O | f33ef3923217a8ce-f33ef3923217a8ce (0 MiB, fresh) -Time 2026-03-26T23:30:13.991319091Z -Commit 00003928 528 keys in 26ms 333µs 137ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003924 | 00003921 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003925 | 00003920 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00003926 | 00003919 SST | [================================================================================================] | 047f3b8521e60613-fc14d191b68d496a (0 MiB, fresh) - 3 | 00003927 | 00003922 SST | O | 4b9c198e2ae31a92-4b9c198e2ae31a92 (0 MiB, fresh) - 4 | 00003928 | 00003923 SST | O | c6d914cf68601e41-c6d914cf68601e41 (0 MiB, fresh) -Time 2026-03-26T23:30:35.919766595Z -Commit 00003934 180 keys in 12ms 146µs 565ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003932 | 00003931 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003933 | 00003929 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00003934 | 00003930 SST | [=============================================================================================] | 0af2ef09d47777b2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T23:31:27.058754619Z -Commit 00003944 534 keys in 16ms 508µs 820ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003940 | 00003937 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003941 | 00003936 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00003942 | 00003935 SST | [================================================================================================] | 047f3b8521e60613-fc14d191b68d496a (0 MiB, fresh) - 3 | 00003943 | 00003938 SST | [================================] | 095a0e90f873e076-5d0354ae0bde5ef7 (0 MiB, fresh) - 4 | 00003944 | 00003939 SST | [=========================================================] | 14af7c5f102dbabc-a9b91eb63f1c5337 (0 MiB, fresh) -Time 2026-03-26T23:31:39.542599366Z -Commit 00003954 534 keys in 19ms 433µs 914ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003950 | 00003947 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003951 | 00003946 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00003952 | 00003945 SST | [================================================================================================] | 047f3b8521e60613-fc14d191b68d496a (0 MiB, fresh) - 3 | 00003953 | 00003948 SST | [======================] | 6d980493e3731eed-a70ea773b23a63d1 (0 MiB, fresh) - 4 | 00003954 | 00003949 SST | [======================================================] | 2fd44f4fc1b82293-bc464f3f78eb47fd (0 MiB, fresh) -Time 2026-03-26T23:31:45.590136945Z -Commit 00003964 11787 keys in 18ms 678µs 201ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003960 | 00003957 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00003961 | 00003959 SST | [==================================================================================================] | 0045e19440c0d89c-ff9abc012ae6e853 (0 MiB, fresh) - 3 | 00003962 | 00003958 SST | [==================================================================================================] | 004a38d92aee0495-fffca8415ff2e876 (0 MiB, fresh) - 1 | 00003963 | 00003956 SST | [==================================================================================================] | 000ec71960d9cb04-fffdfb931a546654 (2 MiB, fresh) - 2 | 00003964 | 00003955 SST | [==================================================================================================] | 000ec71960d9cb04-ffd56e95f9854932 (4 MiB, fresh) -Time 2026-03-26T23:32:02.495980776Z -Commit 00003974 566 keys in 14ms 845µs 636ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003970 | 00003967 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003971 | 00003966 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00003972 | 00003965 SST | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 (0 MiB, fresh) - 3 | 00003973 | 00003968 SST | O | 2f8bbc467ad93e7b-2f8bbc467ad93e7b (0 MiB, fresh) - 4 | 00003974 | 00003969 SST | O | b948f7e6deafd4ad-b948f7e6deafd4ad (0 MiB, fresh) -Time 2026-03-26T23:32:14.91491012Z -Commit 00003984 557 keys in 14ms 983µs 504ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003980 | 00003977 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003981 | 00003975 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00003982 | 00003976 SST | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 (0 MiB, fresh) - 3 | 00003983 | 00003979 SST | [===============================================================================] | 164ca09bf28f878f-e2a62b5386210781 (0 MiB, fresh) - 4 | 00003984 | 00003978 SST | [=========================================================] | 3ddadda73eeff27f-d2ac92e854b6c3c8 (0 MiB, fresh) -Time 2026-03-26T23:32:22.126973061Z -Commit 00003994 575 keys in 15ms 182µs 537ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00003990 | 00003987 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00003991 | 00003986 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00003992 | 00003985 SST | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 (0 MiB, fresh) - 3 | 00003993 | 00003988 SST | [=====================================================================] | 013431455542a366-b39b78be1c9a205a (0 MiB, fresh) - 4 | 00003994 | 00003989 SST | [======================================================] | 08f5b3c19a32a4a4-95d0a918364e4571 (0 MiB, fresh) -Time 2026-03-26T23:32:57.002828412Z -Commit 00004004 563 keys in 15ms 489µs 738ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004000 | 00003997 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004001 | 00003995 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00004002 | 00003996 SST | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 (0 MiB, fresh) - 3 | 00004003 | 00003998 SST | O | 6cb3e3ebfac243c4-6cb3e3ebfac243c4 (0 MiB, fresh) - 4 | 00004004 | 00003999 SST | O | 176acc34ecc6e121-176acc34ecc6e121 (0 MiB, fresh) -Time 2026-03-26T23:33:22.744060135Z -Commit 00004014 625 keys in 16ms 13µs 894ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004010 | 00004007 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004011 | 00004006 SST | [==================================================================================================] | 00451748c51e234a-feeba07cd2711308 (0 MiB, fresh) - 2 | 00004012 | 00004005 SST | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 (0 MiB, fresh) - 3 | 00004013 | 00004008 SST | [==========================================================================] | 29e827ecbd11805e-e95b4381694f9b7e (0 MiB, fresh) - 4 | 00004014 | 00004009 SST | [===================================================================================] | 14cf0d170bed9901-ece9181f4600de16 (0 MiB, fresh) -Time 2026-03-26T23:33:26.778141385Z -Commit 00004020 293 keys in 11ms 168µs 190ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004018 | 00004017 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004019 | 00004016 SST | [==================================================================================================] | 00451748c51e234a-fe561d9979b5e816 (0 MiB, fresh) - 2 | 00004020 | 00004015 SST | [==============================================================================================] | 08a666907dac8fde-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T23:35:37.527073626Z -Commit 00004026 181 keys in 14ms 500µs 435ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004024 | 00004023 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004025 | 00004021 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00004026 | 00004022 SST | [=============================================================================================] | 0af2ef09d47777b2-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T23:42:20.9453601Z -Commit 00004036 12238 keys in 22ms 158µs 519ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004032 | 00004029 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004033 | 00004030 SST | [==================================================================================================] | 00000def41531d98-ffde4031e1c03dcc (0 MiB, fresh) - 2 | 00004034 | 00004027 SST | [==================================================================================================] | 00000def41531d98-ffe0dd8a35583e73 (8 MiB, fresh) - 3 | 00004035 | 00004031 SST | [==================================================================================================] | 000b12edf4ffc8b3-ff8d2b3fdc6114d6 (0 MiB, fresh) - 1 | 00004036 | 00004028 SST | [==================================================================================================] | 00000def41531d98-fff49d0b9a706a34 (2 MiB, fresh) -Time 2026-03-26T23:42:39.578271082Z -Commit 00004042 175 keys in 13ms 252µs 671ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004040 | 00004039 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004041 | 00004037 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00004042 | 00004038 SST | [============================================================================================] | 0e0f58eb6daaf56e-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T23:43:14.537051522Z -Commit 00004048 173 keys in 12ms 629µs 549ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004046 | 00004045 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004047 | 00004044 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00004048 | 00004043 SST | [============================================================================================] | 0e0f58eb6daaf56e-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T23:43:40.572284869Z -Commit 00004054 173 keys in 16ms 516µs 971ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004052 | 00004051 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004053 | 00004050 SST | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00004054 | 00004049 SST | [============================================================================================] | 0e0f58eb6daaf56e-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-26T23:43:56.484279736Z -Commit 00004064 41313 keys in 25ms 125µs 590ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004060 | 00004057 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004061 | 00004059 SST | [==================================================================================================] | 0017fe2e18394ad6-fffe21bb91c02efb (0 MiB, fresh) - 3 | 00004062 | 00004058 SST | [==================================================================================================] | 0007313daa76ffc0-ffdb56a5209429fe (0 MiB, fresh) - 2 | 00004063 | 00004055 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe21bb91c02efb (11 MiB, fresh) - 1 | 00004064 | 00004056 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe21bb91c02efb (4 MiB, fresh) -Time 2026-03-26T23:44:00.319427109Z -Commit 00004074 12921 keys in 22ms 506µs 974ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004070 | 00004067 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004071 | 00004069 SST | [==================================================================================================] | 0004fbe42c260297-ffcbc35417f121ce (0 MiB, fresh) - 3 | 00004072 | 00004068 SST | [==================================================================================================] | 00821c0db517261f-ffd7a3178518b124 (0 MiB, fresh) - 2 | 00004073 | 00004065 SST | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (9 MiB, fresh) - 1 | 00004074 | 00004066 SST | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (2 MiB, fresh) - 2 | 00004077 | Compaction: - 2 | 00004077 | MERGE (30610 keys): - 2 | 00004077 | 00003619 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004077 | 00003625 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004077 | 00003631 INPUT | [==================================================================================================] | 00247993547b8bb1-ff67d440bfb64d44 - 2 | 00004077 | 00003641 INPUT | [=================================================================] | 149555a2795edc4f-bf79162da1dc254a - 2 | 00004077 | 00003648 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00004077 | 00003653 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00004077 | 00003663 INPUT | [==================================================================================================] | 000ec71960d9cb04-fffc2c9948fcd111 - 2 | 00004077 | 00003674 INPUT | [==================================================================================================] | 0065ed9316e2db62-ff613e324f823aec - 2 | 00004077 | 00003683 INPUT | [=================================================================================================] | 02eda4d50c0ac43c-fd9eb5313e5705a9 - 2 | 00004077 | 00003689 INPUT | [=================================================================================================] | 02eda4d50c0ac43c-fd9eb5313e5705a9 - 2 | 00004077 | 00003695 INPUT | [==================================================================================================] | 0065ed9316e2db62-fd9eb5313e5705a9 - 2 | 00004077 | 00003702 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 2 | 00004077 | 00003708 INPUT | [=====================================================================================] | 14a5dccecdf53b95-f123e9697aa75f74 - 2 | 00004077 | 00003714 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004077 | 00003720 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffed1c601513cf05 - 2 | 00004077 | 00003730 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffed1c601513cf05 - 2 | 00004077 | 00003735 INPUT | [==================================================================================================] | 0065ed9316e2db62-fd9eb5313e5705a9 - 2 | 00004077 | 00003742 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004077 | 00003747 INPUT | [==============================================================================================] | 035863dc913912c1-f686f74d2c2b3db1 - 2 | 00004077 | 00003754 INPUT | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 - 2 | 00004077 | 00003760 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 2 | 00004077 | 00003766 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004077 | 00003772 INPUT | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 - 2 | 00004077 | 00003778 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004077 | 00003784 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 2 | 00004077 | 00003790 INPUT | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 - 2 | 00004077 | 00003795 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004077 | 00003802 INPUT | [==================================================================================] | 186bdcaf1d568304-edfdd06c50e95abc - 2 | 00004077 | 00003807 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004077 | 00003814 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 2 | 00004077 | 00003820 INPUT | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 - 2 | 00004077 | 00003825 INPUT | [====================================================] | 68bc362bfa096f57-ef3d53c34e1e5771 - 2 | 00004077 | 00003832 INPUT | [=============================================] | 5f5d229a641f7f10-d499aa7560551189 - 2 | 00004077 | 00003838 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 2 | 00004077 | 00003843 INPUT | [==================================================================================================] | 0027752eca537b46-fe9a5cb3cb9ae422 - 2 | 00004077 | 00003850 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 2 | 00004077 | 00003856 INPUT | [================================================================================================] | 055f38971e3f4b40-fd9eb5313e5705a9 - 2 | 00004077 | 00003862 INPUT | [====================================================================================] | 1d4c2060968ea7c1-f686f74d2c2b3db1 - 2 | 00004077 | 00003868 INPUT | [==================================================================================================] | 00a0a63296e7b8d9-ff5d964a921d2533 - 2 | 00004077 | 00003874 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00004077 | 00003880 INPUT | [================================================================================================] | 03671ce438c5663d-fceee9a8dc7a73b8 - 2 | 00004077 | 00003885 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00004077 | 00003892 INPUT | [=====================================] | 062149483cefaf8c-68bc362bfa096f57 - 2 | 00004077 | 00003897 INPUT | [==================================================================================================] | 012fb73ff2faf902-ffac310021da6675 - 2 | 00004077 | 00003903 INPUT | [=============================================================================================] | 0af2ef09d47777b2-fc14d191b68d496a - 2 | 00004077 | 00003909 INPUT | [================================================================================================] | 047f3b8521e60613-fc14d191b68d496a - 2 | 00004077 | 00003919 INPUT | [================================================================================================] | 047f3b8521e60613-fc14d191b68d496a - 2 | 00004077 | 00003930 INPUT | [=============================================================================================] | 0af2ef09d47777b2-fc14d191b68d496a - 2 | 00004077 | 00003935 INPUT | [================================================================================================] | 047f3b8521e60613-fc14d191b68d496a - 2 | 00004077 | 00003945 INPUT | [================================================================================================] | 047f3b8521e60613-fc14d191b68d496a - 2 | 00004077 | 00003955 INPUT | [==================================================================================================] | 000ec71960d9cb04-ffd56e95f9854932 - 2 | 00004077 | 00003965 INPUT | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 - 2 | 00004077 | 00003976 INPUT | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 - 2 | 00004077 | 00003985 INPUT | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 - 2 | 00004077 | 00003996 INPUT | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 - 2 | 00004077 | 00004005 INPUT | [=================================================================================================] | 03e5779b1c6376d5-feeba07cd2711308 - 2 | 00004077 | 00004015 INPUT | [==============================================================================================] | 08a666907dac8fde-fc14d191b68d496a - 2 | 00004077 | 00004022 INPUT | [=============================================================================================] | 0af2ef09d47777b2-fc14d191b68d496a - 2 | 00004077 | 00004027 INPUT | [==================================================================================================] | 00000def41531d98-ffe0dd8a35583e73 - 2 | 00004077 | 00004038 INPUT | [============================================================================================] | 0e0f58eb6daaf56e-fc14d191b68d496a - 2 | 00004077 | 00004043 INPUT | [============================================================================================] | 0e0f58eb6daaf56e-fc14d191b68d496a - 2 | 00004077 | 00004049 INPUT | [============================================================================================] | 0e0f58eb6daaf56e-fc14d191b68d496a - 2 | 00004077 | 00004055 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe21bb91c02efb - 2 | 00004077 | 00004065 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc - 2 | 00004077 | 00004076 OUTPUT | [==================================================================================================] | 00000def41531d98-fffe7cb8f2c6deb1 (cold) - 2 | 00004077 | 00004075 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (warm) -Time 2026-03-26T23:44:00.952994399Z -Commit 00004078 30610 keys in 63ms 537µs 595ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00004077 | 00004076 SST | [==================================================================================================] | 00000def41531d98-fffe7cb8f2c6deb1 (14 MiB, cold) - 2 | 00004077 | 00004075 SST | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (19 MiB, warm) - 2 | 00004077 | 00003619 00003625 00003631 00003641 00003648 00003653 00003663 00003674 00003683 00003689 00003695 00003702 00003708 00003714 00003720 OBSOLETE SST - 2 | 00004077 | 00003730 00003735 00003742 00003747 00003754 00003760 00003766 00003772 00003778 00003784 00003790 00003795 00003802 00003807 00003814 OBSOLETE SST - 2 | 00004077 | 00003820 00003825 00003832 00003838 00003843 00003850 00003856 00003862 00003868 00003874 00003880 00003885 00003892 00003897 00003903 OBSOLETE SST - 2 | 00004077 | 00003909 00003919 00003930 00003935 00003945 00003955 00003965 00003976 00003985 00003996 00004005 00004015 00004022 00004027 00004038 OBSOLETE SST - 2 | 00004077 | 00004043 00004049 00004055 00004065 OBSOLETE SST - | | 00003619 00003625 00003631 00003641 00003648 00003653 00003663 00003674 00003683 00003689 00003695 00003702 00003708 00003714 00003720 SST DELETED - | | 00003730 00003735 00003742 00003747 00003754 00003760 00003766 00003772 00003778 00003784 00003790 00003795 00003802 00003807 00003814 SST DELETED - | | 00003820 00003825 00003832 00003838 00003843 00003850 00003856 00003862 00003868 00003874 00003880 00003885 00003892 00003897 00003903 SST DELETED - | | 00003909 00003919 00003930 00003935 00003945 00003955 00003965 00003976 00003985 00003996 00004005 00004015 00004022 00004027 00004038 SST DELETED - | | 00004043 00004049 00004055 00004065 SST DELETED - | | 00003624 00003630 00003638 00003646 00003652 00003661 00003670 00003680 00003688 00003694 00003700 00003706 00003712 00003718 00003726 META DELETED - | | 00003734 00003740 00003746 00003752 00003758 00003764 00003770 00003776 00003782 00003788 00003794 00003800 00003806 00003812 00003818 META DELETED - | | 00003824 00003830 00003836 00003842 00003848 00003854 00003860 00003866 00003871 00003878 00003884 00003889 00003896 00003901 00003908 META DELETED - | | 00003915 00003926 00003934 00003942 00003952 00003964 00003972 00003982 00003992 00004002 00004012 00004020 00004026 00004034 00004042 META DELETED - | | 00004048 00004054 00004063 00004073 META DELETED -Time 2026-03-26T23:47:35.231189112Z -Commit 00004088 883 keys in 19ms 125µs 487ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004084 | 00004081 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004085 | 00004079 SST | [==================================================================================================] | 00b385ac54cb8a95-ff382f713f6ec8d6 (0 MiB, fresh) - 2 | 00004086 | 00004080 SST | [==================================================================================================] | 00b385ac54cb8a95-ff382f713f6ec8d6 (0 MiB, fresh) - 3 | 00004087 | 00004082 SST | [=================================================================] | 3737d51da2e613f8-e0990e53eda6282e (0 MiB, fresh) - 4 | 00004088 | 00004083 SST | [============================================================] | 2700ceb4af560265-c2ba2000600f0dad (0 MiB, fresh) -Time 2026-03-26T23:47:45.60473633Z -Commit 00004094 344 keys in 15ms 532µs 544ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004092 | 00004091 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004093 | 00004089 SST | [==================================================================================================] | 00f99e257a792a10-fe3b2154ed000e26 (0 MiB, fresh) - 2 | 00004094 | 00004090 SST | [=================================================================================================] | 00f99e257a792a10-fc5c2261fbbbc46c (0 MiB, fresh) -Time 2026-03-26T23:47:51.056353922Z -Commit 00004100 330 keys in 10ms 848µs 768ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004098 | 00004097 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004099 | 00004096 SST | [==================================================================================================] | 00f99e257a792a10-fe3b2154ed000e26 (0 MiB, fresh) - 2 | 00004100 | 00004095 SST | [=================================================================================================] | 00f99e257a792a10-fc5c2261fbbbc46c (0 MiB, fresh) -Time 2026-03-26T23:48:06.337818844Z -Commit 00004106 71 keys in 14ms 392µs 995ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004104 | 00004103 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004105 | 00004101 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004106 | 00004102 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T23:50:33.339490674Z -Commit 00004112 427 keys in 13ms 481µs 426ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004110 | 00004109 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004111 | 00004108 SST | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 (0 MiB, fresh) - 2 | 00004112 | 00004107 SST | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 (0 MiB, fresh) -Time 2026-03-26T23:51:16.835364274Z -Commit 00004118 344 keys in 13ms 775µs 518ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004116 | 00004115 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004117 | 00004114 SST | [==================================================================================================] | 00f99e257a792a10-fe3b2154ed000e26 (0 MiB, fresh) - 2 | 00004118 | 00004113 SST | [=================================================================================================] | 00f99e257a792a10-fc5c2261fbbbc46c (0 MiB, fresh) -Time 2026-03-26T23:54:28.638984513Z -Commit 00004124 58 keys in 11ms 305µs 636ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004122 | 00004121 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004123 | 00004120 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004124 | 00004119 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T23:55:00.571051778Z -Commit 00004130 73 keys in 11ms 604µs 836ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004128 | 00004127 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004129 | 00004125 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004130 | 00004126 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T23:55:20.33684893Z -Commit 00004136 73 keys in 12ms 841µs 71ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004134 | 00004133 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004135 | 00004132 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004136 | 00004131 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-26T23:55:22.448865751Z -Commit 00004142 4 keys in 11ms 25µs 149ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004140 | 00004139 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004141 | 00004137 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00004142 | 00004138 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-26T23:58:56.494958254Z -Commit 00004148 435 keys in 17ms 35µs 560ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004146 | 00004145 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004147 | 00004143 SST | [==================================================================================================] | 006ec0d842304288-fe3b2154ed000e26 (0 MiB, fresh) - 2 | 00004148 | 00004144 SST | [=================================================================================================] | 006ec0d842304288-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-27T00:01:31.371728537Z -Commit 00004154 435 keys in 13ms 293µs 812ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004152 | 00004151 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004153 | 00004150 SST | [==================================================================================================] | 006ec0d842304288-fe3b2154ed000e26 (0 MiB, fresh) - 2 | 00004154 | 00004149 SST | [=================================================================================================] | 006ec0d842304288-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-27T00:01:59.673654664Z -Commit 00004164 1693 keys in 18ms 740µs 848ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004160 | 00004157 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004161 | 00004156 SST | [==================================================================================================] | 00451748c51e234a-ff303b290e134e27 (1 MiB, fresh) - 2 | 00004162 | 00004155 SST | [==================================================================================================] | 006ec0d842304288-ff303b290e134e27 (1 MiB, fresh) - 3 | 00004163 | 00004158 SST | [=========================================================================================] | 00148cc5ffd56d6e-e80500b48d32488a (0 MiB, fresh) - 4 | 00004164 | 00004159 SST | [======================================================================================] | 116dd01f6aae6143-f0483589633cb1f9 (0 MiB, fresh) -Time 2026-03-27T00:06:13.241679409Z -Commit 00004170 462 keys in 13ms 352µs 39ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004168 | 00004167 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004169 | 00004165 SST | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c (0 MiB, fresh) - 2 | 00004170 | 00004166 SST | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c (0 MiB, fresh) -Time 2026-03-27T00:06:50.956795097Z -Commit 00004176 73 keys in 14ms 515µs 625ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004174 | 00004173 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004175 | 00004171 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004176 | 00004172 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:07:03.438401365Z -Commit 00004186 48396 keys in 24ms 370µs 927ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004182 | 00004179 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004183 | 00004181 SST | [==================================================================================================] | 000f9f79c46b6a22-ffff471111fc01ca (0 MiB, fresh) - 3 | 00004184 | 00004180 SST | [==================================================================================================] | 00222a3b49517ca3-ffffa852ce560a9c (0 MiB, fresh) - 2 | 00004185 | 00004177 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff471111fc01ca (13 MiB, fresh) - 1 | 00004186 | 00004178 SST | [==================================================================================================] | 0000737dcecb7eaa-ffff471111fc01ca (7 MiB, fresh) - 2 | 00004191 | Compaction: - 2 | 00004191 | MERGE (422529 keys): - 2 | 00004191 | 00003569 INPUT | [=====================================] | 000023b78025d350-6307ab60b630a1c8 - 2 | 00004191 | 00003571 INPUT | [==============================] | 6307e2e41e2748bd-b18f90beff4e76cf - 2 | 00004191 | 00003572 INPUT | [=============================] | b18fa4787cf81c75-ffffec37b1df3f15 - 2 | 00004191 | 00003570 INPUT | [==================================================================================================] | 00555713d075c703-fff5d0c7322e056c - 2 | 00004191 | 00003575 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb - 2 | 00004191 | 00003585 INPUT | [==================================================================================================] | 0013523be5d02f5f-ffe58d83ca25ec39 - 2 | 00004191 | 00003596 INPUT | [=========================================================================] | 32892b537c9e4af3-ef600373a0711249 - 2 | 00004191 | 00003601 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004191 | 00003608 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 2 | 00004191 | 00003613 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004191 | 00004076 INPUT | [==================================================================================================] | 00000def41531d98-fffe7cb8f2c6deb1 - 2 | 00004191 | 00004075 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc - 2 | 00004191 | 00004080 INPUT | [==================================================================================================] | 00b385ac54cb8a95-ff382f713f6ec8d6 - 2 | 00004191 | 00004090 INPUT | [=================================================================================================] | 00f99e257a792a10-fc5c2261fbbbc46c - 2 | 00004191 | 00004095 INPUT | [=================================================================================================] | 00f99e257a792a10-fc5c2261fbbbc46c - 2 | 00004191 | 00004102 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004191 | 00004107 INPUT | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 - 2 | 00004191 | 00004113 INPUT | [=================================================================================================] | 00f99e257a792a10-fc5c2261fbbbc46c - 2 | 00004191 | 00004119 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004191 | 00004126 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004191 | 00004131 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004191 | 00004138 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00004191 | 00004144 INPUT | [=================================================================================================] | 006ec0d842304288-fc14d191b68d496a - 2 | 00004191 | 00004149 INPUT | [=================================================================================================] | 006ec0d842304288-fc14d191b68d496a - 2 | 00004191 | 00004155 INPUT | [==================================================================================================] | 006ec0d842304288-ff303b290e134e27 - 2 | 00004191 | 00004166 INPUT | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c - 2 | 00004191 | 00004172 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004191 | 00004177 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffff471111fc01ca - 2 | 00004191 | 00004187 OUTPUT | [===================================] | 00000def41531d98-5e9f880b0d69378e (cold) - 2 | 00004191 | 00004189 OUTPUT | [===============================] | 5e9f89bfe42137e7-af41fd926bdf201b (cold) - 2 | 00004191 | 00004190 OUTPUT | [==============================] | af4209e2f56e93b3-ffffec37b1df3f15 (cold) - 2 | 00004191 | 00004188 OUTPUT | [==================================================================================================] | 00115130534a7ddc-fffe7cb8f2c6deb1 (warm) -Time 2026-03-27T00:07:06.322306598Z -Commit 00004192 422529 keys in 259ms 246µs 503ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00004191 | 00004187 SST | [===================================] | 00000def41531d98-5e9f880b0d69378e (92 MiB, cold) - 2 | 00004191 | 00004189 SST | [===============================] | 5e9f89bfe42137e7-af41fd926bdf201b (78 MiB, cold) - 2 | 00004191 | 00004190 SST | [==============================] | af4209e2f56e93b3-ffffec37b1df3f15 (74 MiB, cold) - 2 | 00004191 | 00004188 SST | [==================================================================================================] | 00115130534a7ddc-fffe7cb8f2c6deb1 (2 MiB, warm) - 2 | 00004191 | 00003569 00003570 00003571 00003572 00003575 00003585 00003596 00003601 00003608 00003613 00004075 00004076 00004080 00004090 00004095 OBSOLETE SST - 2 | 00004191 | 00004102 00004107 00004113 00004119 00004126 00004131 00004138 00004144 00004149 00004155 00004166 00004172 00004177 OBSOLETE SST - | | 00003569 00003570 00003571 00003572 00003575 00003585 00003596 00003601 00003608 00003613 00004075 00004076 00004080 00004090 00004095 SST DELETED - | | 00004102 00004107 00004113 00004119 00004126 00004131 00004138 00004144 00004149 00004155 00004166 00004172 00004177 SST DELETED - | | 00003573 00003582 00003592 00003600 00003606 00003612 00003618 00004077 00004086 00004094 00004100 00004106 00004112 00004118 00004124 META DELETED - | | 00004130 00004136 00004142 00004148 00004154 00004162 00004170 00004176 00004185 META DELETED -Time 2026-03-27T00:07:09.033578516Z -Commit 00004202 13282 keys in 23ms 22µs 64ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004198 | 00004195 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004199 | 00004197 SST | [==================================================================================================] | 0058deecdfcfe817-ff8261fd972411dc (0 MiB, fresh) - 3 | 00004200 | 00004196 SST | [==================================================================================================] | 00013e176d31127d-ffeb4bc1a38de205 (0 MiB, fresh) - 2 | 00004201 | 00004193 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb (8 MiB, fresh) - 1 | 00004202 | 00004194 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe64bbd36bacfc8 (2 MiB, fresh) -Time 2026-03-27T00:07:48.080551996Z -Commit 00004208 180 keys in 14ms 279µs 703ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004206 | 00004205 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004207 | 00004203 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00004208 | 00004204 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) -Time 2026-03-27T00:07:52.406699322Z -Commit 00004214 4 keys in 13ms 726µs 871ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004212 | 00004211 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004213 | 00004209 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00004214 | 00004210 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-27T00:08:21.468985537Z -Commit 00004220 95 keys in 13ms 839µs 802ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004218 | 00004217 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004219 | 00004215 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004220 | 00004216 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:09:09.241988295Z -Commit 00004226 4 keys in 13ms 765µs 614ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004224 | 00004223 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004225 | 00004221 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) - 2 | 00004226 | 00004222 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) -Time 2026-03-27T00:18:26.020027136Z -Commit 00004236 862 keys in 15ms 872µs 777ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004232 | 00004229 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004233 | 00004228 SST | [==================================================================================================] | 01cb3d717c7f7124-ff382f713f6ec8d6 (0 MiB, fresh) - 2 | 00004234 | 00004227 SST | [==================================================================================================] | 0248b0fd027117b8-ff382f713f6ec8d6 (0 MiB, fresh) - 3 | 00004235 | 00004230 SST | [=================] | 8decd68088634878-bc266e1b9cb24a78 (0 MiB, fresh) - 4 | 00004236 | 00004231 SST | [====================================================================] | 12a660bad6438588-c2fcfc9d0b095ac0 (0 MiB, fresh) -Time 2026-03-27T00:18:35.424214751Z -Commit 00004242 504 keys in 14ms 2µs 760ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004240 | 00004239 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004241 | 00004238 SST | [=================================================================================================] | 029fd6fb71f78002-fe7c8c1134fbae03 (0 MiB, fresh) - 2 | 00004242 | 00004237 SST | [=================================================================================================] | 029fd6fb71f78002-fe7c8c1134fbae03 (0 MiB, fresh) -Time 2026-03-27T00:18:42.285318275Z -Commit 00004248 358 keys in 13ms 483µs 457ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004246 | 00004245 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004247 | 00004243 SST | [=================================================================================================] | 03d583f994b9417c-fe7c8c1134fbae03 (0 MiB, fresh) - 2 | 00004248 | 00004244 SST | [=================================================================================================] | 03d583f994b9417c-fe7c8c1134fbae03 (0 MiB, fresh) -Time 2026-03-27T00:20:34.524069702Z -Commit 00004254 4 keys in 13ms 780µs 90ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004252 | 00004251 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004253 | 00004249 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) - 2 | 00004254 | 00004250 SST | O | 5106c964624c16d8-5106c964624c16d8 (0 MiB, fresh) -Time 2026-03-27T00:21:25.537940643Z -Commit 00004260 4 keys in 13ms 593µs 952ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004258 | 00004257 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004259 | 00004255 SST | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 (0 MiB, fresh) - 2 | 00004260 | 00004256 SST | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 (0 MiB, fresh) -Time 2026-03-27T00:23:11.89513526Z -Commit 00004266 95 keys in 12ms 396µs 483ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004264 | 00004263 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004265 | 00004262 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004266 | 00004261 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:23:14.243743858Z -Commit 00004272 4 keys in 13ms 458µs 783ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004270 | 00004269 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004271 | 00004267 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00004272 | 00004268 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-27T00:25:58.651492481Z -Commit 00004282 8609 keys in 18ms 805µs 928ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004278 | 00004275 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004279 | 00004277 SST | [==================================================================================================] | 00437b564cb1a73e-fd974a415b8f8b29 (0 MiB, fresh) - 3 | 00004280 | 00004276 SST | [==================================================================================================] | 002ba90270eb4bf2-fda5b9b311bfd3b0 (0 MiB, fresh) - 1 | 00004281 | 00004274 SST | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f (2 MiB, fresh) - 2 | 00004282 | 00004273 SST | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f (6 MiB, fresh) -Time 2026-03-27T00:28:11.309127963Z -Commit 00004288 73 keys in 11ms 366µs 848ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004286 | 00004285 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004287 | 00004283 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004288 | 00004284 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:28:25.394784252Z -Commit 00004294 73 keys in 9ms 442µs 116ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004292 | 00004291 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004293 | 00004289 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004294 | 00004290 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:28:34.365628199Z -Commit 00004300 73 keys in 12ms 688µs 992ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004298 | 00004297 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004299 | 00004295 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004300 | 00004296 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:31:05.684676673Z -Commit 00004310 4076 keys in 16ms 488µs 179ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004306 | 00004303 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004307 | 00004302 SST | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f (1 MiB, fresh) - 2 | 00004308 | 00004301 SST | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f (2 MiB, fresh) - 3 | 00004309 | 00004304 SST | O | bf1243d2a613e16a-bf1243d2a613e16a (0 MiB, fresh) - 4 | 00004310 | 00004305 SST | O | 2ebb66231b4edfe7-2ebb66231b4edfe7 (0 MiB, fresh) -Time 2026-03-27T00:31:54.257960228Z -Commit 00004316 351 keys in 12ms 448µs 406ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004314 | 00004313 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004315 | 00004311 SST | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c (0 MiB, fresh) - 2 | 00004316 | 00004312 SST | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c (0 MiB, fresh) -Time 2026-03-27T00:32:11.966920911Z -Commit 00004322 351 keys in 12ms 460µs 266ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004320 | 00004319 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004321 | 00004317 SST | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c (0 MiB, fresh) - 2 | 00004322 | 00004318 SST | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c (0 MiB, fresh) -Time 2026-03-27T00:32:15.062358133Z -Commit 00004328 71 keys in 14ms 454µs 198ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004326 | 00004325 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004327 | 00004323 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004328 | 00004324 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:32:24.759433036Z -Commit 00004334 3495 keys in 13ms 907µs 161ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004332 | 00004331 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004333 | 00004330 SST | [==================================================================================================] | 00247993547b8bb1-ffa072d986cb58f8 (2 MiB, fresh) - 1 | 00004334 | 00004329 SST | [==================================================================================================] | 0019262fefeb7f80-ffa072d986cb58f8 (0 MiB, fresh) -Time 2026-03-27T00:33:34.784080061Z -Commit 00004340 68 keys in 13ms 536µs 173ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004338 | 00004337 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004339 | 00004336 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004340 | 00004335 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:33:37.412341521Z -Commit 00004346 21 keys in 12ms 63µs 756ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004344 | 00004343 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004345 | 00004342 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00004346 | 00004341 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) -Time 2026-03-27T00:33:54.149455637Z -Commit 00004352 85 keys in 14ms 143µs -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004350 | 00004349 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004351 | 00004347 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004352 | 00004348 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T00:34:18.706064696Z -Commit 00004358 14 keys in 13ms 556µs 414ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004356 | 00004355 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004357 | 00004353 SST | [=====================================================================================] | 1ee02169bb991bcf-fc6fd44d77ad76d9 (0 MiB, fresh) - 2 | 00004358 | 00004354 SST | [==================================================================] | 500801b717233604-fc6fd44d77ad76d9 (0 MiB, fresh) -Time 2026-03-27T00:34:28.883509502Z -Commit 00004364 12 keys in 13ms 463µs 910ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004362 | 00004361 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004363 | 00004359 SST | [=============================================] | 5f5d229a641f7f10-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00004364 | 00004360 SST | [=============================================] | 5f5d229a641f7f10-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-03-27T00:35:13.852243821Z -Commit 00004370 1189 keys in 12ms 981µs 964ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004368 | 00004367 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004369 | 00004366 SST | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 (0 MiB, fresh) - 2 | 00004370 | 00004365 SST | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 (0 MiB, fresh) -Time 2026-03-27T00:35:21.166005037Z -Commit 00004376 488 keys in 14ms 635µs 63ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004374 | 00004373 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004375 | 00004371 SST | [=================================================================================================] | 02419547d58865b6-fc14d191b68d496a (0 MiB, fresh) - 1 | 00004376 | 00004372 SST | [==================================================================================================] | 02419547d58865b6-fd9eb5313e5705a9 (0 MiB, fresh) -Time 2026-03-27T00:35:36.811240498Z -Commit 00004382 486 keys in 12ms 855µs 685ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004380 | 00004379 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004381 | 00004378 SST | [==================================================================================================] | 02419547d58865b6-fd9eb5313e5705a9 (0 MiB, fresh) - 2 | 00004382 | 00004377 SST | [=================================================================================================] | 02419547d58865b6-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-27T00:35:56.846314822Z -Commit 00004388 358 keys in 14ms 207µs 88ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004386 | 00004385 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004387 | 00004383 SST | [==================================================================================================] | 00acb2164a220997-ff09258dc7d506b7 (0 MiB, fresh) - 2 | 00004388 | 00004384 SST | [==================================================================================================] | 00acb2164a220997-ff09258dc7d506b7 (0 MiB, fresh) -Time 2026-03-27T00:57:32.792497683Z -Commit 00004394 4968 keys in 12ms 752µs 478ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004392 | 00004391 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004393 | 00004389 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00004394 | 00004390 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (2 MiB, fresh) -Time 2026-03-27T00:57:44.104834313Z -Commit 00004400 14 keys in 8ms 486µs 424ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004398 | 00004397 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004399 | 00004395 SST | [=================================================================================] | 0ddba8f0fb757605-e031b0aa5f371e28 (0 MiB, fresh) - 2 | 00004400 | 00004396 SST | [=================================================================================] | 0ddba8f0fb757605-e031b0aa5f371e28 (0 MiB, fresh) -Time 2026-03-27T01:03:00.928415502Z -Commit 00004406 1266 keys in 15ms 836µs 109ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004404 | 00004403 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004405 | 00004401 SST | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 (0 MiB, fresh) - 1 | 00004406 | 00004402 SST | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 (0 MiB, fresh) -Time 2026-03-27T01:04:12.855290793Z -Commit 00004412 54 keys in 12ms 731µs 697ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004410 | 00004409 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004411 | 00004407 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004412 | 00004408 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T01:04:24.012547891Z -Commit 00004418 1200 keys in 15ms 242µs 183ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004416 | 00004415 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004417 | 00004413 SST | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 (0 MiB, fresh) - 1 | 00004418 | 00004414 SST | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 (0 MiB, fresh) -Time 2026-03-27T01:04:29.882743463Z -Commit 00004424 52 keys in 11ms 829µs 906ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004422 | 00004421 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004423 | 00004420 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004424 | 00004419 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T01:04:48.926185475Z -Commit 00004430 1189 keys in 12ms 620µs 869ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004428 | 00004427 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004429 | 00004425 SST | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 (0 MiB, fresh) - 2 | 00004430 | 00004426 SST | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 (0 MiB, fresh) -Time 2026-03-27T01:08:37.99240563Z -Commit 00004440 1824 keys in 18ms 782µs 554ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004436 | 00004433 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004437 | 00004431 SST | [==================================================================================================] | 0156b802f089ee8f-ff382f713f6ec8d6 (2 MiB, fresh) - 1 | 00004438 | 00004432 SST | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 (1 MiB, fresh) - 4 | 00004439 | 00004435 SST | O | 213391e37c3e8a27-213391e37c3e8a27 (0 MiB, fresh) - 3 | 00004440 | 00004434 SST | O | 108f0410ce8c722b-108f0410ce8c722b (0 MiB, fresh) -Time 2026-03-27T01:45:46.399249497Z -Commit 00004446 4915 keys in 15ms 789µs 532ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004444 | 00004443 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004445 | 00004441 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00004446 | 00004442 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (2 MiB, fresh) -Time 2026-03-27T01:46:10.547361964Z -Commit 00004452 3806 keys in 15ms 80µs 895ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004450 | 00004449 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004451 | 00004448 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (2 MiB, fresh) - 2 | 00004452 | 00004447 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-03-27T01:46:17.141213193Z -Commit 00004458 26 keys in 13ms 69µs 747ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004456 | 00004455 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004457 | 00004453 SST | [================================================================================] | 0ddba8f0fb757605-de7965592b57622c (0 MiB, fresh) - 2 | 00004458 | 00004454 SST | [================================================================================] | 0ddba8f0fb757605-de7965592b57622c (0 MiB, fresh) -Time 2026-03-27T01:46:32.039270437Z -Commit 00004464 54 keys in 13ms 53µs 576ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004462 | 00004461 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004463 | 00004460 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004464 | 00004459 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T01:46:35.337064946Z -Commit 00004470 444 keys in 14ms 163µs 98ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004468 | 00004467 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004469 | 00004466 SST | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 (0 MiB, fresh) - 2 | 00004470 | 00004465 SST | [==================================================================================================] | 00f99e257a792a10-ff029fb8b24eddc6 (0 MiB, fresh) -Time 2026-03-27T01:47:01.557135654Z -Commit 00004476 4 keys in 11ms 160µs 572ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004474 | 00004473 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004475 | 00004471 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00004476 | 00004472 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-03-27T01:47:20.012297512Z -Commit 00004486 91481 keys in 34ms 30µs 981ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004482 | 00004479 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004483 | 00004480 SST | [==================================================================================================] | 00027e10a9f08944-fffeccc102851425 (0 MiB, fresh) - 3 | 00004484 | 00004481 SST | [==================================================================================================] | 0003ba31d67f4d16-ffff24115320a3ab (0 MiB, fresh) - 2 | 00004485 | 00004477 SST | [==================================================================================================] | 0000737dcecb7eaa-fffeccc102851425 (20 MiB, fresh) - 1 | 00004486 | 00004478 SST | [==================================================================================================] | 0000737dcecb7eaa-fffeccc102851425 (9 MiB, fresh) -Time 2026-03-27T01:53:29.84171533Z -Commit 00004496 2137 keys in 18ms 619µs 130ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004492 | 00004489 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004493 | 00004487 SST | [==================================================================================================] | 0057a22f0ec1be97-fff2b4fb9e9026cc (5 MiB, fresh) - 1 | 00004494 | 00004488 SST | [==================================================================================================] | 00451748c51e234a-fff2b4fb9e9026cc (1 MiB, fresh) - 3 | 00004495 | 00004490 SST | O | 31320f0dd94e86a6-31320f0dd94e86a6 (0 MiB, fresh) - 4 | 00004496 | 00004491 SST | O | b825c2c83683350f-b825c2c83683350f (0 MiB, fresh) -Time 2026-03-27T01:53:41.401694583Z -Commit 00004506 14587 keys in 20ms 304µs 962ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004502 | 00004499 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004503 | 00004500 SST | [==================================================================================================] | 004aa48ccd760d59-ffdb4dc51e0b5209 (0 MiB, fresh) - 3 | 00004504 | 00004501 SST | [==================================================================================================] | 001d81de82b5fb3e-ffb3e5168f0fbebe (0 MiB, fresh) - 2 | 00004505 | 00004497 SST | [==================================================================================================] | 0010e26242e36d1c-fff2b4fb9e9026cc (10 MiB, fresh) - 1 | 00004506 | 00004498 SST | [==================================================================================================] | 0010e26242e36d1c-fff2b4fb9e9026cc (3 MiB, fresh) -Time 2026-03-27T01:54:11.533308192Z -Commit 00004512 20 keys in 13ms 830µs 515ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004510 | 00004509 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004511 | 00004507 SST | [==========================================================================] | 318043ff2e2d4b4c-f17e6a704033431c (0 MiB, fresh) - 2 | 00004512 | 00004508 SST | [==========================================================================] | 318043ff2e2d4b4c-f17e6a704033431c (0 MiB, fresh) -Time 2026-03-27T01:58:24.970928269Z -Commit 00004518 177 keys in 12ms 129µs 217ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004516 | 00004515 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004517 | 00004514 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00004518 | 00004513 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:00:26.728089014Z -Commit 00004524 17 keys in 9ms 577µs 366ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004522 | 00004521 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004523 | 00004520 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00004524 | 00004519 SST | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 (0 MiB, fresh) -Time 2026-03-27T02:00:30.175253118Z -Commit 00004530 14 keys in 12ms 669µs 579ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004528 | 00004527 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004529 | 00004525 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00004530 | 00004526 SST | [===============================================================] | 06c8b171e8eea748-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-27T02:01:53.378322592Z -Commit 00004536 614 keys in 14ms 918µs 665ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004534 | 00004533 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004535 | 00004531 SST | [==================================================================================================] | 0216c1cea71a2097-fe8fe2bd60d79ed6 (0 MiB, fresh) - 1 | 00004536 | 00004532 SST | [==================================================================================================] | 0216c1cea71a2097-fe8fe2bd60d79ed6 (0 MiB, fresh) -Time 2026-03-27T02:02:07.310702338Z -Commit 00004542 364 keys in 11ms 464µs 632ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004540 | 00004539 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004541 | 00004537 SST | [=================================================================================================] | 0386609eea6a71f2-fe8fe2bd60d79ed6 (0 MiB, fresh) - 2 | 00004542 | 00004538 SST | [=================================================================================================] | 0386609eea6a71f2-fe8fe2bd60d79ed6 (0 MiB, fresh) -Time 2026-03-27T02:02:29.744264893Z -Commit 00004548 4 keys in 11ms 744µs 960ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004546 | 00004545 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004547 | 00004543 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) - 2 | 00004548 | 00004544 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-27T02:05:01.609302365Z -Commit 00004554 74 keys in 8ms 949µs 368ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004552 | 00004551 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004553 | 00004550 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00004554 | 00004549 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:15:00.267647337Z -Commit 00004560 53 keys in 13ms 19µs 996ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004558 | 00004557 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004559 | 00004556 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004560 | 00004555 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:15:27.487119201Z -Commit 00004566 53 keys in 11ms 140µs 679ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004564 | 00004563 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004565 | 00004562 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004566 | 00004561 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:17:29.541681555Z -Commit 00004572 53 keys in 10ms 676µs 949ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004570 | 00004569 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004571 | 00004568 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004572 | 00004567 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:19:42.133488735Z -Commit 00004578 53 keys in 11ms 620µs 233ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004576 | 00004575 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004577 | 00004573 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004578 | 00004574 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:20:12.498356202Z -Commit 00004584 53 keys in 9ms 636µs 213ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004582 | 00004581 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004583 | 00004580 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004584 | 00004579 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:20:28.21537735Z -Commit 00004590 5029 keys in 12ms 526µs 196ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004588 | 00004587 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004589 | 00004585 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00004590 | 00004586 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (3 MiB, fresh) -Time 2026-03-27T02:20:31.905162193Z -Commit 00004596 3827 keys in 10ms 268µs 737ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004594 | 00004593 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004595 | 00004592 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (2 MiB, fresh) - 2 | 00004596 | 00004591 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-03-27T02:24:25.644303903Z -Commit 00004602 391 keys in 11ms 494µs 10ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004600 | 00004599 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004601 | 00004598 SST | [=================================================================================================] | 0386609eea6a71f2-fe8fe2bd60d79ed6 (0 MiB, fresh) - 2 | 00004602 | 00004597 SST | [================================================================================================] | 06c8b171e8eea748-fe8fe2bd60d79ed6 (0 MiB, fresh) -Time 2026-03-27T02:26:57.411272718Z -Commit 00004608 902 keys in 13ms 423µs 878ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004606 | 00004605 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004607 | 00004603 SST | [==================================================================================================] | 00d2b4a4288cd7bc-ffdb4dc51e0b5209 (0 MiB, fresh) - 2 | 00004608 | 00004604 SST | [==================================================================================================] | 00d2b4a4288cd7bc-ffdb4dc51e0b5209 (0 MiB, fresh) -Time 2026-03-27T02:27:11.514915745Z -Commit 00004614 498 keys in 12ms 331µs 465ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004612 | 00004611 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004613 | 00004609 SST | [==================================================================================================] | 024b325d26f313fb-ffdb4dc51e0b5209 (0 MiB, fresh) - 2 | 00004614 | 00004610 SST | [==================================================================================================] | 024b325d26f313fb-ffdb4dc51e0b5209 (0 MiB, fresh) -Time 2026-03-27T02:27:29.384867155Z -Commit 00004620 50 keys in 11ms 876µs 536ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004618 | 00004617 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004619 | 00004615 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004620 | 00004616 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:27:48.196438489Z -Commit 00004626 21 keys in 12ms 908µs 848ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004624 | 00004623 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004625 | 00004622 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00004626 | 00004621 SST | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 (0 MiB, fresh) -Time 2026-03-27T02:29:58.664611867Z -Commit 00004632 1171 keys in 15ms 573µs 879ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004630 | 00004629 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004631 | 00004627 SST | [==================================================================================================] | 009c9b0a7bc32f1c-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00004632 | 00004628 SST | [==================================================================================================] | 024b325d26f313fb-fff2b4fb9e9026cc (4 MiB, fresh) -Time 2026-03-27T02:30:21.361036306Z -Commit 00004638 503 keys in 14ms 439µs 149ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004636 | 00004635 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004637 | 00004634 SST | [==================================================================================================] | 024b325d26f313fb-ffdb4dc51e0b5209 (0 MiB, fresh) - 2 | 00004638 | 00004633 SST | [==================================================================================================] | 024b325d26f313fb-ffdb4dc51e0b5209 (0 MiB, fresh) -Time 2026-03-27T02:30:36.201107361Z -Commit 00004644 103 keys in 13ms 248µs 732ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004642 | 00004641 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004643 | 00004639 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004644 | 00004640 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:33:39.924698521Z -Commit 00004654 487 keys in 16ms 332µs 600ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004650 | 00004647 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004651 | 00004646 SST | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 (0 MiB, fresh) - 2 | 00004652 | 00004645 SST | [================================================================================================] | 06c8b171e8eea748-ff365382680d1ecc (0 MiB, fresh) - 3 | 00004653 | 00004648 SST | O | 2646fdf28d6c0d63-2646fdf28d6c0d63 (0 MiB, fresh) - 4 | 00004654 | 00004649 SST | O | fd7b35dc69dd839a-fd7b35dc69dd839a (0 MiB, fresh) -Time 2026-03-27T02:33:43.214824752Z -Commit 00004660 698 keys in 15ms 131µs 265ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004658 | 00004657 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004659 | 00004656 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00004660 | 00004655 SST | [=================================================================================================] | 03671ce438c5663d-fff2b4fb9e9026cc (4 MiB, fresh) -Time 2026-03-27T02:34:19.45956526Z -Commit 00004666 4 keys in 11ms 256µs 550ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004664 | 00004663 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004665 | 00004661 SST | O | fd7b35dc69dd839a-fd7b35dc69dd839a (0 MiB, fresh) - 2 | 00004666 | 00004662 SST | O | fd7b35dc69dd839a-fd7b35dc69dd839a (0 MiB, fresh) -Time 2026-03-27T02:34:36.356764058Z -Commit 00004676 10810 keys in 30ms 969µs 81ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004672 | 00004669 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004673 | 00004671 SST | [==================================================================================================] | 00fe014b673833c8-ffdadfbe0d57a332 (0 MiB, fresh) - 2 | 00004674 | 00004667 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffdb4dc51e0b5209 (8 MiB, fresh) - 3 | 00004675 | 00004670 SST | [==================================================================================================] | 004a88fdefe25ab3-ff2f86b06144322d (0 MiB, fresh) - 1 | 00004676 | 00004668 SST | [==================================================================================================] | 001c1ac34bc35cc9-ffdb4dc51e0b5209 (2 MiB, fresh) - 2 | 00004679 | Compaction: - 2 | 00004679 | MERGE (32096 keys): - 2 | 00004679 | 00004261 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004268 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00004679 | 00004273 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f - 2 | 00004679 | 00004284 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004290 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004296 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004301 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f - 2 | 00004679 | 00004312 INPUT | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c - 2 | 00004679 | 00004318 INPUT | [=================================================================================================] | 03e88098e3d5a885-fe399ff5b12e725c - 2 | 00004679 | 00004324 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004330 INPUT | [==================================================================================================] | 00247993547b8bb1-ffa072d986cb58f8 - 2 | 00004679 | 00004335 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004341 INPUT | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 - 2 | 00004679 | 00004348 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004354 INPUT | [==================================================================] | 500801b717233604-fc6fd44d77ad76d9 - 2 | 00004679 | 00004360 INPUT | [=============================================] | 5f5d229a641f7f10-d4caf2e664a9b09e - 2 | 00004679 | 00004365 INPUT | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 - 2 | 00004679 | 00004371 INPUT | [=================================================================================================] | 02419547d58865b6-fc14d191b68d496a - 2 | 00004679 | 00004377 INPUT | [=================================================================================================] | 02419547d58865b6-fc14d191b68d496a - 2 | 00004679 | 00004384 INPUT | [==================================================================================================] | 00acb2164a220997-ff09258dc7d506b7 - 2 | 00004679 | 00004389 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00004679 | 00004396 INPUT | [=================================================================================] | 0ddba8f0fb757605-e031b0aa5f371e28 - 2 | 00004679 | 00004401 INPUT | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 - 2 | 00004679 | 00004408 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004413 INPUT | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 - 2 | 00004679 | 00004419 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004426 INPUT | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 - 2 | 00004679 | 00004431 INPUT | [==================================================================================================] | 0156b802f089ee8f-ff382f713f6ec8d6 - 2 | 00004679 | 00004441 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00004679 | 00004447 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00004679 | 00004454 INPUT | [================================================================================] | 0ddba8f0fb757605-de7965592b57622c - 2 | 00004679 | 00004459 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004465 INPUT | [==================================================================================================] | 00f99e257a792a10-ff029fb8b24eddc6 - 2 | 00004679 | 00004472 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 2 | 00004679 | 00004477 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffeccc102851425 - 2 | 00004679 | 00004487 INPUT | [==================================================================================================] | 0057a22f0ec1be97-fff2b4fb9e9026cc - 2 | 00004679 | 00004497 INPUT | [==================================================================================================] | 0010e26242e36d1c-fff2b4fb9e9026cc - 2 | 00004679 | 00004508 INPUT | [==========================================================================] | 318043ff2e2d4b4c-f17e6a704033431c - 2 | 00004679 | 00004513 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 - 2 | 00004679 | 00004519 INPUT | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 - 2 | 00004679 | 00004526 INPUT | [===============================================================] | 06c8b171e8eea748-a97b2a3dd634e045 - 2 | 00004679 | 00004531 INPUT | [==================================================================================================] | 0216c1cea71a2097-fe8fe2bd60d79ed6 - 2 | 00004679 | 00004538 INPUT | [=================================================================================================] | 0386609eea6a71f2-fe8fe2bd60d79ed6 - 2 | 00004679 | 00004544 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 2 | 00004679 | 00004549 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 - 2 | 00004679 | 00004555 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004561 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004567 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004574 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004579 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004585 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00004679 | 00004591 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00004679 | 00004597 INPUT | [================================================================================================] | 06c8b171e8eea748-fe8fe2bd60d79ed6 - 2 | 00004679 | 00004604 INPUT | [==================================================================================================] | 00d2b4a4288cd7bc-ffdb4dc51e0b5209 - 2 | 00004679 | 00004610 INPUT | [==================================================================================================] | 024b325d26f313fb-ffdb4dc51e0b5209 - 2 | 00004679 | 00004616 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004621 INPUT | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 - 2 | 00004679 | 00004628 INPUT | [==================================================================================================] | 024b325d26f313fb-fff2b4fb9e9026cc - 2 | 00004679 | 00004633 INPUT | [==================================================================================================] | 024b325d26f313fb-ffdb4dc51e0b5209 - 2 | 00004679 | 00004640 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004679 | 00004645 INPUT | [================================================================================================] | 06c8b171e8eea748-ff365382680d1ecc - 2 | 00004679 | 00004655 INPUT | [=================================================================================================] | 03671ce438c5663d-fff2b4fb9e9026cc - 2 | 00004679 | 00004662 INPUT | O | fd7b35dc69dd839a-fd7b35dc69dd839a - 2 | 00004679 | 00004667 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffdb4dc51e0b5209 - 2 | 00004679 | 00004678 OUTPUT | [==================================================================================================] | 00027e10a9f08944-fffeccc102851425 (cold) - 2 | 00004679 | 00004677 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (warm) -Time 2026-03-27T02:34:36.720205336Z -Commit 00004680 32096 keys in 44ms 586µs 803ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00004679 | 00004678 SST | [==================================================================================================] | 00027e10a9f08944-fffeccc102851425 (14 MiB, cold) - 2 | 00004679 | 00004677 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (17 MiB, warm) - 2 | 00004679 | 00004261 00004268 00004273 00004284 00004290 00004296 00004301 00004312 00004318 00004324 00004330 00004335 00004341 00004348 00004354 OBSOLETE SST - 2 | 00004679 | 00004360 00004365 00004371 00004377 00004384 00004389 00004396 00004401 00004408 00004413 00004419 00004426 00004431 00004441 00004447 OBSOLETE SST - 2 | 00004679 | 00004454 00004459 00004465 00004472 00004477 00004487 00004497 00004508 00004513 00004519 00004526 00004531 00004538 00004544 00004549 OBSOLETE SST - 2 | 00004679 | 00004555 00004561 00004567 00004574 00004579 00004585 00004591 00004597 00004604 00004610 00004616 00004621 00004628 00004633 00004640 OBSOLETE SST - 2 | 00004679 | 00004645 00004655 00004662 00004667 OBSOLETE SST - | | 00004261 00004268 00004273 00004284 00004290 00004296 00004301 00004312 00004318 00004324 00004330 00004335 00004341 00004348 00004354 SST DELETED - | | 00004360 00004365 00004371 00004377 00004384 00004389 00004396 00004401 00004408 00004413 00004419 00004426 00004431 00004441 00004447 SST DELETED - | | 00004454 00004459 00004465 00004472 00004477 00004487 00004497 00004508 00004513 00004519 00004526 00004531 00004538 00004544 00004549 SST DELETED - | | 00004555 00004561 00004567 00004574 00004579 00004585 00004591 00004597 00004604 00004610 00004616 00004621 00004628 00004633 00004640 SST DELETED - | | 00004645 00004655 00004662 00004667 SST DELETED - | | 00004266 00004272 00004282 00004288 00004294 00004300 00004308 00004316 00004322 00004328 00004333 00004340 00004346 00004352 00004358 META DELETED - | | 00004364 00004370 00004375 00004382 00004388 00004393 00004400 00004405 00004412 00004417 00004424 00004430 00004437 00004445 00004452 META DELETED - | | 00004458 00004464 00004470 00004476 00004485 00004493 00004505 00004512 00004518 00004524 00004530 00004535 00004542 00004548 00004554 META DELETED - | | 00004560 00004566 00004572 00004578 00004584 00004589 00004596 00004602 00004608 00004614 00004620 00004626 00004632 00004638 00004644 META DELETED - | | 00004652 00004660 00004666 00004674 META DELETED -Time 2026-03-27T02:35:35.396196564Z -Commit 00004686 108 keys in 9ms 316µs 850ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004684 | 00004683 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004685 | 00004681 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004686 | 00004682 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T02:36:20.766013763Z -Commit 00004696 532 keys in 15ms 132µs 785ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004692 | 00004689 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004693 | 00004688 SST | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 (0 MiB, fresh) - 2 | 00004694 | 00004687 SST | [================================================================================================] | 06c8b171e8eea748-ff365382680d1ecc (0 MiB, fresh) - 3 | 00004695 | 00004690 SST | O | 633b3f0769822dad-633b3f0769822dad (0 MiB, fresh) - 4 | 00004696 | 00004691 SST | O | 2e832fb63bff0b18-2e832fb63bff0b18 (0 MiB, fresh) -Time 2026-03-27T02:36:27.11197106Z -Commit 00004702 689 keys in 13ms 639µs 654ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004700 | 00004699 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004701 | 00004697 SST | [==================================================================================================] | 00bc9fb3e020309a-ff9f467c2a100bb1 (0 MiB, fresh) - 2 | 00004702 | 00004698 SST | [=================================================================================================] | 03671ce438c5663d-ff9f467c2a100bb1 (4 MiB, fresh) -Time 2026-03-27T02:36:58.626324594Z -Commit 00004708 4 keys in 10ms 820µs 544ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004706 | 00004705 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004707 | 00004703 SST | O | 2e832fb63bff0b18-2e832fb63bff0b18 (0 MiB, fresh) - 2 | 00004708 | 00004704 SST | O | 2e832fb63bff0b18-2e832fb63bff0b18 (0 MiB, fresh) -Time 2026-03-27T02:38:06.909370008Z -Commit 00004718 4510 keys in 21ms 755µs 755ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004714 | 00004711 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004715 | 00004709 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (9 MiB, fresh) - 3 | 00004716 | 00004712 SST | [==============================================================================================] | 0703158109b7f7e6-f9a9a2713dc4f803 (0 MiB, fresh) - 1 | 00004717 | 00004710 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 4 | 00004718 | 00004713 SST | [===============================================================================================] | 09a60cc2795cdc99-fdf194f480f2f71a (0 MiB, fresh) -Time 2026-03-27T02:38:17.740017058Z -Commit 00004728 2926 keys in 17ms 584µs 425ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004724 | 00004721 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004725 | 00004720 SST | [==================================================================================================] | 0046228ce0a6aa12-ffac310021da6675 (1 MiB, fresh) - 2 | 00004726 | 00004719 SST | [==================================================================================================] | 0046228ce0a6aa12-ffac310021da6675 (1 MiB, fresh) - 3 | 00004727 | 00004722 SST | [==================================================================================================] | 00dc5c6b65fe3741-ff0f741ed6b544a4 (0 MiB, fresh) - 4 | 00004728 | 00004723 SST | [==================================================================================================] | 00fcf6a2f0abec0b-ff52020b14a6e8a5 (0 MiB, fresh) -Time 2026-03-27T02:38:36.314843772Z -Commit 00004734 623 keys in 12ms 872µs 557ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004732 | 00004731 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004733 | 00004730 SST | [=================================================================================================] | 0386609eea6a71f2-ff778def1ae1068a (0 MiB, fresh) - 2 | 00004734 | 00004729 SST | [=================================================================================================] | 047720a88c6b5ea0-fecec3e60ca94e1b (0 MiB, fresh) -Time 2026-03-27T02:39:49.811007039Z -Commit 00004740 113 keys in 13ms 999µs 398ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004738 | 00004737 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004739 | 00004736 SST | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00004740 | 00004735 SST | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc (0 MiB, fresh) -Time 2026-03-27T02:40:36.791448279Z -Commit 00004746 69 keys in 12ms 72µs 627ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004744 | 00004743 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004745 | 00004741 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004746 | 00004742 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T10:40:11.871403337Z -Commit 00004752 5036 keys in 21ms 481µs 144ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004750 | 00004749 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004751 | 00004747 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00004752 | 00004748 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (3 MiB, fresh) -Time 2026-03-27T10:40:16.410454875Z -Commit 00004758 3826 keys in 11ms 307µs 584ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004756 | 00004755 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004757 | 00004754 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (2 MiB, fresh) - 2 | 00004758 | 00004753 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-03-27T10:43:11.084473215Z -Commit 00004764 77 keys in 9ms 466µs 315ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004762 | 00004761 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004763 | 00004760 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00004764 | 00004759 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T11:02:20.427746271Z -Commit 00004774 1537 keys in 16ms 462µs 111ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004770 | 00004767 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00004771 | 00004768 SST | [==========================================================================] | 39d0787f8629c230-fa2cd6e16e0b759d (0 MiB, fresh) - 1 | 00004772 | 00004766 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 4 | 00004773 | 00004769 SST | [=================================================================] | 133406a2ddda3891-bcba39594871e87a (0 MiB, fresh) - 2 | 00004774 | 00004765 SST | [==================================================================================================] | 0201cf4f19956df8-fff2b4fb9e9026cc (4 MiB, fresh) -Time 2026-03-27T11:02:24.114728679Z -Commit 00004784 1816 keys in 15ms 325µs 251ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004780 | 00004777 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004781 | 00004779 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 3 | 00004782 | 00004778 SST | [==================================================================================================] | 012062f2eefa49ad-ff8a62ea098c658b (0 MiB, fresh) - 1 | 00004783 | 00004776 SST | [==================================================================================================] | 0046228ce0a6aa12-fff45f83ecadc2aa (1 MiB, fresh) - 2 | 00004784 | 00004775 SST | [==================================================================================================] | 0046228ce0a6aa12-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:02:52.814009291Z -Commit 00004794 909 keys in 21ms 52µs 943ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004790 | 00004787 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004791 | 00004785 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004792 | 00004786 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 3 | 00004793 | 00004789 SST | O | 7e0261c99cb01978-7e0261c99cb01978 (0 MiB, fresh) - 4 | 00004794 | 00004788 SST | O | 6d34b988e51f29ce-6d34b988e51f29ce (0 MiB, fresh) - 2 | 00004799 | Compaction: - 2 | 00004799 | MERGE (438679 keys): - 2 | 00004799 | 00004187 INPUT | [===================================] | 00000def41531d98-5e9f880b0d69378e - 2 | 00004799 | 00004189 INPUT | [===============================] | 5e9f89bfe42137e7-af41fd926bdf201b - 2 | 00004799 | 00004190 INPUT | [==============================] | af4209e2f56e93b3-ffffec37b1df3f15 - 2 | 00004799 | 00004188 INPUT | [==================================================================================================] | 00115130534a7ddc-fffe7cb8f2c6deb1 - 2 | 00004799 | 00004193 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb - 2 | 00004799 | 00004204 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 2 | 00004799 | 00004210 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00004799 | 00004216 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004799 | 00004222 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 2 | 00004799 | 00004227 INPUT | [==================================================================================================] | 0248b0fd027117b8-ff382f713f6ec8d6 - 2 | 00004799 | 00004237 INPUT | [=================================================================================================] | 029fd6fb71f78002-fe7c8c1134fbae03 - 2 | 00004799 | 00004244 INPUT | [=================================================================================================] | 03d583f994b9417c-fe7c8c1134fbae03 - 2 | 00004799 | 00004250 INPUT | O | 5106c964624c16d8-5106c964624c16d8 - 2 | 00004799 | 00004256 INPUT | O | fc6fd44d77ad76d9-fc6fd44d77ad76d9 - 2 | 00004799 | 00004678 INPUT | [==================================================================================================] | 00027e10a9f08944-fffeccc102851425 - 2 | 00004799 | 00004677 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00004799 | 00004682 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004799 | 00004687 INPUT | [================================================================================================] | 06c8b171e8eea748-ff365382680d1ecc - 2 | 00004799 | 00004698 INPUT | [=================================================================================================] | 03671ce438c5663d-ff9f467c2a100bb1 - 2 | 00004799 | 00004704 INPUT | O | 2e832fb63bff0b18-2e832fb63bff0b18 - 2 | 00004799 | 00004709 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00004799 | 00004719 INPUT | [==================================================================================================] | 0046228ce0a6aa12-ffac310021da6675 - 2 | 00004799 | 00004729 INPUT | [=================================================================================================] | 047720a88c6b5ea0-fecec3e60ca94e1b - 2 | 00004799 | 00004735 INPUT | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc - 2 | 00004799 | 00004742 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004799 | 00004747 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00004799 | 00004753 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00004799 | 00004759 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00004799 | 00004765 INPUT | [==================================================================================================] | 0201cf4f19956df8-fff2b4fb9e9026cc - 2 | 00004799 | 00004775 INPUT | [==================================================================================================] | 0046228ce0a6aa12-fff45f83ecadc2aa - 2 | 00004799 | 00004786 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00004799 | 00004795 OUTPUT | [=====================================] | 00000def41531d98-619a0b9db7781c69 (cold) - 2 | 00004799 | 00004797 OUTPUT | [==============================] | 619a1c540662cf2b-b0bbb8050e982be6 (cold) - 2 | 00004799 | 00004798 OUTPUT | [=============================] | b0bbfe8d142df100-ffffec37b1df3f15 (cold) - 2 | 00004799 | 00004796 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fff5d0c7322e056c (warm) -Time 2026-03-27T11:02:55.669540914Z -Commit 00004800 438679 keys in 279ms 96µs 212ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00004799 | 00004795 SST | [=====================================] | 00000def41531d98-619a0b9db7781c69 (92 MiB, cold) - 2 | 00004799 | 00004797 SST | [==============================] | 619a1c540662cf2b-b0bbb8050e982be6 (69 MiB, cold) - 2 | 00004799 | 00004798 SST | [=============================] | b0bbfe8d142df100-ffffec37b1df3f15 (71 MiB, cold) - 2 | 00004799 | 00004796 SST | [==================================================================================================] | 0000737dcecb7eaa-fff5d0c7322e056c (29 MiB, warm) - 2 | 00004799 | 00004187 00004188 00004189 00004190 00004193 00004204 00004210 00004216 00004222 00004227 00004237 00004244 00004250 00004256 00004677 OBSOLETE SST - 2 | 00004799 | 00004678 00004682 00004687 00004698 00004704 00004709 00004719 00004729 00004735 00004742 00004747 00004753 00004759 00004765 00004775 OBSOLETE SST - 2 | 00004799 | 00004786 OBSOLETE SST - | | 00004187 00004188 00004189 00004190 00004193 00004204 00004210 00004216 00004222 00004227 00004237 00004244 00004250 00004256 00004677 SST DELETED - | | 00004678 00004682 00004687 00004698 00004704 00004709 00004719 00004729 00004735 00004742 00004747 00004753 00004759 00004765 00004775 SST DELETED - | | 00004786 SST DELETED - | | 00004191 00004201 00004208 00004214 00004220 00004226 00004234 00004242 00004248 00004254 00004260 00004679 00004686 00004694 00004702 META DELETED - | | 00004708 00004715 00004726 00004734 00004740 00004746 00004751 00004758 00004764 00004774 00004784 00004792 META DELETED -Time 2026-03-27T11:03:07.554905214Z -Commit 00004806 158 keys in 10ms 340µs 217ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004804 | 00004803 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004805 | 00004801 SST | [==================================================================================================] | 0057a22f0ec1be97-ff78e55e141da030 (0 MiB, fresh) - 2 | 00004806 | 00004802 SST | [==================================================================================================] | 0057a22f0ec1be97-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T11:05:01.16393663Z -Commit 00004816 490 keys in 14ms 412µs 699ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004812 | 00004809 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004813 | 00004808 SST | [==================================================================================================] | 00bc9fb3e020309a-fee27fc9266de29d (0 MiB, fresh) - 4 | 00004814 | 00004811 SST | [======================================================================] | 48a00d9e3eea0813-fee27fc9266de29d (0 MiB, fresh) - 2 | 00004815 | 00004807 SST | [==================================================================================================] | 00bc9fb3e020309a-fee27fc9266de29d (0 MiB, fresh) - 3 | 00004816 | 00004810 SST | [====================================] | 0080fcbb98bbed4b-6130ce1cbb3651e8 (0 MiB, fresh) -Time 2026-03-27T11:08:29.53385879Z -Commit 00004826 9207 keys in 15ms 171µs 358ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004822 | 00004819 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004823 | 00004820 SST | [==================================================================================================] | 006a3fa9d5c309dc-ff78aa82465e4748 (0 MiB, fresh) - 3 | 00004824 | 00004821 SST | [==================================================================================================] | 00c2c3dce774eeee-ffc0b1bf390e1bba (0 MiB, fresh) - 2 | 00004825 | 00004817 SST | [==================================================================================================] | 001c10094cc673ca-fff45f83ecadc2aa (1 MiB, fresh) - 1 | 00004826 | 00004818 SST | [==================================================================================================] | 001c10094cc673ca-fff45f83ecadc2aa (2 MiB, fresh) -Time 2026-03-27T11:09:00.716027153Z -Commit 00004836 5762 keys in 23ms 169µs 282ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004832 | 00004829 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004833 | 00004831 SST | [==================================================================================================] | 00ae9d3ca4d7fb40-feba850b701c8995 (0 MiB, fresh) - 1 | 00004834 | 00004828 SST | [==================================================================================================] | 00247993547b8bb1-fff45f83ecadc2aa (2 MiB, fresh) - 3 | 00004835 | 00004830 SST | [=================================================================================================] | 041139a16f624cf0-fef9c0c401f58078 (0 MiB, fresh) - 2 | 00004836 | 00004827 SST | [==================================================================================================] | 00247993547b8bb1-fff45f83ecadc2aa (2 MiB, fresh) - 1 | 00004839 | Compaction: - 1 | 00004839 | MERGE (47535 keys): - 1 | 00004839 | 00004383 INPUT | [==================================================================================================] | 00acb2164a220997-ff09258dc7d506b7 - 1 | 00004839 | 00004390 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00004839 | 00004395 INPUT | [=================================================================================] | 0ddba8f0fb757605-e031b0aa5f371e28 - 1 | 00004839 | 00004402 INPUT | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 - 1 | 00004839 | 00004407 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004414 INPUT | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 - 1 | 00004839 | 00004420 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004425 INPUT | [==================================================================================================] | 00326c890af26855-ff09258dc7d506b7 - 1 | 00004839 | 00004432 INPUT | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 - 1 | 00004839 | 00004442 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00004839 | 00004448 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00004839 | 00004453 INPUT | [================================================================================] | 0ddba8f0fb757605-de7965592b57622c - 1 | 00004839 | 00004460 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004466 INPUT | [==================================================================================================] | 006ec0d842304288-ff029fb8b24eddc6 - 1 | 00004839 | 00004471 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 1 | 00004839 | 00004478 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffeccc102851425 - 1 | 00004839 | 00004488 INPUT | [==================================================================================================] | 00451748c51e234a-fff2b4fb9e9026cc - 1 | 00004839 | 00004498 INPUT | [==================================================================================================] | 0010e26242e36d1c-fff2b4fb9e9026cc - 1 | 00004839 | 00004507 INPUT | [==========================================================================] | 318043ff2e2d4b4c-f17e6a704033431c - 1 | 00004839 | 00004514 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00004839 | 00004520 INPUT | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 - 1 | 00004839 | 00004525 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00004839 | 00004532 INPUT | [==================================================================================================] | 0216c1cea71a2097-fe8fe2bd60d79ed6 - 1 | 00004839 | 00004537 INPUT | [=================================================================================================] | 0386609eea6a71f2-fe8fe2bd60d79ed6 - 1 | 00004839 | 00004543 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 1 | 00004839 | 00004550 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00004839 | 00004556 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004562 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004568 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004573 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004580 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004586 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00004839 | 00004592 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00004839 | 00004598 INPUT | [=================================================================================================] | 0386609eea6a71f2-fe8fe2bd60d79ed6 - 1 | 00004839 | 00004603 INPUT | [==================================================================================================] | 00d2b4a4288cd7bc-ffdb4dc51e0b5209 - 1 | 00004839 | 00004609 INPUT | [==================================================================================================] | 024b325d26f313fb-ffdb4dc51e0b5209 - 1 | 00004839 | 00004615 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004622 INPUT | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 - 1 | 00004839 | 00004627 INPUT | [==================================================================================================] | 009c9b0a7bc32f1c-fff2b4fb9e9026cc - 1 | 00004839 | 00004634 INPUT | [==================================================================================================] | 024b325d26f313fb-ffdb4dc51e0b5209 - 1 | 00004839 | 00004639 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004646 INPUT | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 - 1 | 00004839 | 00004656 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 1 | 00004839 | 00004661 INPUT | O | fd7b35dc69dd839a-fd7b35dc69dd839a - 1 | 00004839 | 00004668 INPUT | [==================================================================================================] | 001c1ac34bc35cc9-ffdb4dc51e0b5209 - 1 | 00004839 | 00004681 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004688 INPUT | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 - 1 | 00004839 | 00004697 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ff9f467c2a100bb1 - 1 | 00004839 | 00004703 INPUT | O | 2e832fb63bff0b18-2e832fb63bff0b18 - 1 | 00004839 | 00004710 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00004839 | 00004720 INPUT | [==================================================================================================] | 0046228ce0a6aa12-ffac310021da6675 - 1 | 00004839 | 00004730 INPUT | [=================================================================================================] | 0386609eea6a71f2-ff778def1ae1068a - 1 | 00004839 | 00004736 INPUT | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc - 1 | 00004839 | 00004741 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004748 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00004839 | 00004754 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00004839 | 00004760 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00004839 | 00004766 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 1 | 00004839 | 00004776 INPUT | [==================================================================================================] | 0046228ce0a6aa12-fff45f83ecadc2aa - 1 | 00004839 | 00004785 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 1 | 00004839 | 00004801 INPUT | [==================================================================================================] | 0057a22f0ec1be97-ff78e55e141da030 - 1 | 00004839 | 00004808 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fee27fc9266de29d - 1 | 00004839 | 00004818 INPUT | [==================================================================================================] | 001c10094cc673ca-fff45f83ecadc2aa - 1 | 00004839 | 00004828 INPUT | [==================================================================================================] | 00247993547b8bb1-fff45f83ecadc2aa - 1 | 00004839 | 00004838 OUTPUT | [==================================================================================================] | 00027e10a9f08944-fffeccc102851425 (cold) - 1 | 00004839 | 00004837 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (warm) -Time 2026-03-27T11:09:01.297450817Z -Commit 00004840 47535 keys in 32ms 228µs 192ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00004839 | 00004838 SST | [==================================================================================================] | 00027e10a9f08944-fffeccc102851425 (0 MiB, cold) - 1 | 00004839 | 00004837 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (10 MiB, warm) - 1 | 00004839 | 00004383 00004390 00004395 00004402 00004407 00004414 00004420 00004425 00004432 00004442 00004448 00004453 00004460 00004466 00004471 OBSOLETE SST - 1 | 00004839 | 00004478 00004488 00004498 00004507 00004514 00004520 00004525 00004532 00004537 00004543 00004550 00004556 00004562 00004568 00004573 OBSOLETE SST - 1 | 00004839 | 00004580 00004586 00004592 00004598 00004603 00004609 00004615 00004622 00004627 00004634 00004639 00004646 00004656 00004661 00004668 OBSOLETE SST - 1 | 00004839 | 00004681 00004688 00004697 00004703 00004710 00004720 00004730 00004736 00004741 00004748 00004754 00004760 00004766 00004776 00004785 OBSOLETE SST - 1 | 00004839 | 00004801 00004808 00004818 00004828 OBSOLETE SST - | | 00004383 00004390 00004395 00004402 00004407 00004414 00004420 00004425 00004432 00004442 00004448 00004453 00004460 00004466 00004471 SST DELETED - | | 00004478 00004488 00004498 00004507 00004514 00004520 00004525 00004532 00004537 00004543 00004550 00004556 00004562 00004568 00004573 SST DELETED - | | 00004580 00004586 00004592 00004598 00004603 00004609 00004615 00004622 00004627 00004634 00004639 00004646 00004656 00004661 00004668 SST DELETED - | | 00004681 00004688 00004697 00004703 00004710 00004720 00004730 00004736 00004741 00004748 00004754 00004760 00004766 00004776 00004785 SST DELETED - | | 00004801 00004808 00004818 00004828 SST DELETED - | | 00004387 00004394 00004399 00004406 00004411 00004418 00004423 00004429 00004438 00004446 00004451 00004457 00004463 00004469 00004475 META DELETED - | | 00004486 00004494 00004506 00004511 00004517 00004523 00004529 00004536 00004541 00004547 00004553 00004559 00004565 00004571 00004577 META DELETED - | | 00004583 00004590 00004595 00004601 00004607 00004613 00004619 00004625 00004631 00004637 00004643 00004651 00004659 00004665 00004676 META DELETED - | | 00004685 00004693 00004701 00004707 00004717 00004725 00004733 00004739 00004745 00004752 00004757 00004763 00004772 00004783 00004791 META DELETED - | | 00004805 00004813 00004826 00004834 META DELETED -Time 2026-03-27T11:09:12.643526063Z -Commit 00004846 390 keys in 9ms 563µs 813ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004844 | 00004843 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004845 | 00004842 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004846 | 00004841 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:10:24.174932734Z -Commit 00004852 388 keys in 9ms 822µs 893ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004850 | 00004849 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004851 | 00004848 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004852 | 00004847 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:13:57.287355114Z -Commit 00004858 1001 keys in 15ms 99µs 914ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004856 | 00004855 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004857 | 00004853 SST | [==================================================================================================] | 0057a22f0ec1be97-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004858 | 00004854 SST | [==================================================================================================] | 0057a22f0ec1be97-fff45f83ecadc2aa (4 MiB, fresh) -Time 2026-03-27T11:14:07.795547725Z -Commit 00004864 388 keys in 11ms 431µs 808ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004862 | 00004861 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004863 | 00004860 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004864 | 00004859 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:14:25.283238535Z -Commit 00004870 388 keys in 11ms 82µs 199ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004868 | 00004867 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004869 | 00004866 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004870 | 00004865 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:14:42.979039891Z -Commit 00004876 388 keys in 10ms 532µs 27ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004874 | 00004873 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004875 | 00004872 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004876 | 00004871 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:14:45.184255525Z -Commit 00004882 388 keys in 10ms 553µs 317ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004880 | 00004879 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004881 | 00004878 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004882 | 00004877 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:15:03.982495368Z -Commit 00004888 388 keys in 11ms 981µs 802ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004886 | 00004885 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004887 | 00004884 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004888 | 00004883 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:15:54.936090924Z -Commit 00004894 388 keys in 10ms 541µs 841ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004892 | 00004891 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004893 | 00004890 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004894 | 00004889 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:15:59.984990923Z -Commit 00004900 388 keys in 11ms 38µs 962ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004898 | 00004897 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004899 | 00004896 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004900 | 00004895 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:16:21.239918601Z -Commit 00004906 388 keys in 9ms 835µs 999ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004904 | 00004903 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004905 | 00004902 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004906 | 00004901 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:16:42.814081937Z -Commit 00004912 388 keys in 9ms 565µs 646ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004910 | 00004909 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004911 | 00004908 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) - 2 | 00004912 | 00004907 SST | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa (0 MiB, fresh) -Time 2026-03-27T11:20:39.657009221Z -Commit 00004922 489 keys in 15ms 537µs 35ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004918 | 00004915 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004919 | 00004914 SST | [==================================================================================================] | 00bc9fb3e020309a-fdf5c4992508f92d (0 MiB, fresh) - 4 | 00004920 | 00004917 SST | [=====================] | 7b214fe22f40a553-b5201e7b787bbd96 (0 MiB, fresh) - 3 | 00004921 | 00004916 SST | [====] | 7f19bd0e1feb4414-8bedb3b33ba3dc4a (0 MiB, fresh) - 2 | 00004922 | 00004913 SST | [==================================================================================================] | 00bc9fb3e020309a-fd73712db0fe2dd8 (0 MiB, fresh) -Time 2026-03-27T11:21:03.106696135Z -Commit 00004928 4 keys in 9ms 476µs 336ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004926 | 00004925 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004927 | 00004923 SST | O | 14cf0d170bed9901-14cf0d170bed9901 (0 MiB, fresh) - 2 | 00004928 | 00004924 SST | O | 14cf0d170bed9901-14cf0d170bed9901 (0 MiB, fresh) -Time 2026-03-27T11:22:27.745919645Z -Commit 00004938 2387 keys in 15ms 418µs 692ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004934 | 00004931 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00004935 | 00004929 SST | [==================================================================================================] | 00bc9fb3e020309a-fff45f83ecadc2aa (5 MiB, fresh) - 4 | 00004936 | 00004932 SST | [================================================================================] | 138306e215e9e82f-e2b835d7687ac665 (0 MiB, fresh) - 3 | 00004937 | 00004933 SST | [====================================================================================] | 1ec710f90c573f0c-f8d0cc66dc63f49c (0 MiB, fresh) - 1 | 00004938 | 00004930 SST | [==================================================================================================] | 00229fb23d5d2fc5-fff45f83ecadc2aa (1 MiB, fresh) -Time 2026-03-27T11:22:47.441155086Z -Commit 00004948 8235 keys in 18ms 461µs 56ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004944 | 00004941 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00004945 | 00004943 SST | [=================================================================================================] | 02c8bf41353bc36d-ff9bab0d30e06435 (0 MiB, fresh) - 1 | 00004946 | 00004940 SST | [==================================================================================================] | 001c1ac34bc35cc9-fff45f83ecadc2aa (2 MiB, fresh) - 3 | 00004947 | 00004942 SST | [==================================================================================================] | 022609f16db7d7ec-feb4f3d5ac34ccff (0 MiB, fresh) - 2 | 00004948 | 00004939 SST | [==================================================================================================] | 00247993547b8bb1-fff45f83ecadc2aa (8 MiB, fresh) -Time 2026-03-27T11:22:57.690278614Z -Commit 00004954 581 keys in 11ms 384µs 915ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004952 | 00004951 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004953 | 00004950 SST | [==================================================================================================] | 01ce2954e249a91d-ff99148e6e426f5c (0 MiB, fresh) - 2 | 00004954 | 00004949 SST | [==================================================================================================] | 01ce2954e249a91d-ff99148e6e426f5c (0 MiB, fresh) -Time 2026-03-27T11:24:06.438540153Z -Commit 00004960 400 keys in 10ms 56µs 24ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004958 | 00004957 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004959 | 00004956 SST | [=================================================================================================] | 0386609eea6a71f2-ff99148e6e426f5c (0 MiB, fresh) - 2 | 00004960 | 00004955 SST | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c (0 MiB, fresh) -Time 2026-03-27T11:24:11.708726862Z -Commit 00004966 378 keys in 11ms 237µs 931ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004964 | 00004963 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004965 | 00004961 SST | [=================================================================================================] | 0386609eea6a71f2-ff99148e6e426f5c (0 MiB, fresh) - 2 | 00004966 | 00004962 SST | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c (0 MiB, fresh) -Time 2026-03-27T11:24:49.013292496Z -Commit 00004972 400 keys in 10ms 950µs 73ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004970 | 00004969 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004971 | 00004968 SST | [=================================================================================================] | 0386609eea6a71f2-ff99148e6e426f5c (0 MiB, fresh) - 2 | 00004972 | 00004967 SST | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c (0 MiB, fresh) -Time 2026-03-27T11:25:46.21146961Z -Commit 00004978 142 keys in 13ms 983µs 191ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004976 | 00004975 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004977 | 00004973 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00004978 | 00004974 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T11:28:13.341074659Z -Commit 00004984 400 keys in 9ms 132µs 509ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004982 | 00004981 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004983 | 00004980 SST | [=================================================================================================] | 0386609eea6a71f2-ff99148e6e426f5c (0 MiB, fresh) - 2 | 00004984 | 00004979 SST | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c (0 MiB, fresh) -Time 2026-03-27T11:33:12.115838176Z -Commit 00004990 400 keys in 10ms 558µs 276ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004988 | 00004987 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004989 | 00004986 SST | [=================================================================================================] | 0386609eea6a71f2-ff99148e6e426f5c (0 MiB, fresh) - 2 | 00004990 | 00004985 SST | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c (0 MiB, fresh) -Time 2026-03-27T11:34:02.713103861Z -Commit 00004996 400 keys in 9ms 560µs 86ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00004994 | 00004993 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00004995 | 00004992 SST | [=================================================================================================] | 0386609eea6a71f2-ff99148e6e426f5c (0 MiB, fresh) - 2 | 00004996 | 00004991 SST | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c (0 MiB, fresh) -Time 2026-03-27T11:34:07.229662543Z -Commit 00005002 400 keys in 9ms 419µs 3ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005000 | 00004999 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005001 | 00004998 SST | [=================================================================================================] | 0386609eea6a71f2-ff99148e6e426f5c (0 MiB, fresh) - 2 | 00005002 | 00004997 SST | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c (0 MiB, fresh) -Time 2026-03-27T11:36:01.843347599Z -Commit 00005008 54 keys in 9ms 666µs 495ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005006 | 00005005 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005007 | 00005004 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005008 | 00005003 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T11:36:25.240956514Z -Commit 00005014 17 keys in 10ms 897µs 483ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005012 | 00005011 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005013 | 00005010 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00005014 | 00005009 SST | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 (0 MiB, fresh) -Time 2026-03-27T11:36:33.354371524Z -Commit 00005020 4 keys in 10ms 710µs 932ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005018 | 00005017 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005019 | 00005015 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) - 2 | 00005020 | 00005016 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-27T11:36:38.326874312Z -Commit 00005026 12 keys in 9ms 615µs 80ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005024 | 00005023 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005025 | 00005022 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00005026 | 00005021 SST | [=========================================] | 06c8b171e8eea748-70e3cb149e55457e (0 MiB, fresh) -Time 2026-03-27T11:39:42.795861958Z -Commit 00005032 75 keys in 10ms 509µs 983ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005030 | 00005029 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005031 | 00005027 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00005032 | 00005028 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T11:40:52.175832613Z -Commit 00005038 54 keys in 11ms 23µs 409ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005036 | 00005035 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005037 | 00005033 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005038 | 00005034 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T11:41:07.533359272Z -Commit 00005044 17 keys in 11ms 722µs 755ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005042 | 00005041 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005043 | 00005039 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00005044 | 00005040 SST | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 (0 MiB, fresh) -Time 2026-03-27T11:41:11.760353083Z -Commit 00005050 4 keys in 11ms 145µs 358ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005048 | 00005047 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005049 | 00005045 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) - 2 | 00005050 | 00005046 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-27T11:51:35.383750702Z -Commit 00005060 1050 keys in 16ms 516µs 281ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005056 | 00005053 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00005057 | 00005054 SST | O | b1bf918ed931c05c-b1bf918ed931c05c (0 MiB, fresh) - 2 | 00005058 | 00005051 SST | [==================================================================================================] | 028166b6a35bcd98-ff38f05117386ef5 (0 MiB, fresh) - 4 | 00005059 | 00005055 SST | O | 060b5c9ec1ef7e52-060b5c9ec1ef7e52 (0 MiB, fresh) - 1 | 00005060 | 00005052 SST | [==================================================================================================] | 00451748c51e234a-ff778def1ae1068a (1 MiB, fresh) -Time 2026-03-27T11:51:41.790918824Z -Commit 00005066 786 keys in 18ms 783µs 794ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005064 | 00005063 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005065 | 00005061 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00005066 | 00005062 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (4 MiB, fresh) -Time 2026-03-27T11:52:41.952548155Z -Commit 00005076 4090 keys in 16ms 566µs 739ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005072 | 00005069 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005073 | 00005068 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 2 | 00005074 | 00005067 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (6 MiB, fresh) - 3 | 00005075 | 00005070 SST | [==================================================================================================] | 00fea977661ca472-fe31eee86c5588c4 (0 MiB, fresh) - 4 | 00005076 | 00005071 SST | [============================================================================================] | 02db35efa72c137f-f26ff5d2d7813923 (0 MiB, fresh) -Time 2026-03-27T11:52:56.214240308Z -Commit 00005086 3762 keys in 17ms 559µs 665ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005082 | 00005079 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005083 | 00005077 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdadfbe0d57a332 (1 MiB, fresh) - 2 | 00005084 | 00005078 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdadfbe0d57a332 (2 MiB, fresh) - 3 | 00005085 | 00005080 SST | [==================================================================================================] | 00d54ea7c687a798-ffcb6d49af416719 (0 MiB, fresh) - 4 | 00005086 | 00005081 SST | [==================================================================================================] | 00724bdfb5460e36-ff7fae7bbaa6560c (0 MiB, fresh) -Time 2026-03-27T12:02:22.338818342Z -Commit 00005092 5050 keys in 13ms 988µs 306ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005090 | 00005089 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005091 | 00005087 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00005092 | 00005088 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (3 MiB, fresh) -Time 2026-03-27T12:55:13.450817675Z -Commit 00005102 4395 keys in 17ms 545µs 513ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005098 | 00005095 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00005099 | 00005097 SST | O | aaaccc3cfbd1158b-aaaccc3cfbd1158b (0 MiB, fresh) - 4 | 00005100 | 00005096 SST | O | 864d9cd332e807ca-864d9cd332e807ca (0 MiB, fresh) - 2 | 00005101 | 00005093 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (4 MiB, fresh) - 1 | 00005102 | 00005094 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (2 MiB, fresh) -Time 2026-03-27T13:13:55.064728819Z -Commit 00005108 446 keys in 12ms 158µs 418ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005106 | 00005105 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005107 | 00005104 SST | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 (0 MiB, fresh) - 2 | 00005108 | 00005103 SST | [=================================================================================================] | 03671ce438c5663d-ff365382680d1ecc (0 MiB, fresh) -Time 2026-03-27T13:14:01.231271092Z -Commit 00005118 3906 keys in 18ms 91µs 976ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005114 | 00005111 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00005115 | 00005113 SST | [==================================================================================================] | 005187818301636f-ffbc694b1541fbac (0 MiB, fresh) - 3 | 00005116 | 00005112 SST | [==================================================================================================] | 0053b0ac9ecab338-ff66ee76e86b778f (0 MiB, fresh) - 2 | 00005117 | 00005109 SST | [==================================================================================================] | 0010e26242e36d1c-ffdadfbe0d57a332 (1 MiB, fresh) - 1 | 00005118 | 00005110 SST | [==================================================================================================] | 0010e26242e36d1c-ffdadfbe0d57a332 (1 MiB, fresh) -Time 2026-03-27T13:16:33.662116504Z -Commit 00005124 69 keys in 9ms 99µs 359ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005122 | 00005121 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005123 | 00005120 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005124 | 00005119 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:16:47.011484249Z -Commit 00005130 4 keys in 8ms 890µs 617ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005128 | 00005127 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005129 | 00005125 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) - 2 | 00005130 | 00005126 SST | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 (0 MiB, fresh) -Time 2026-03-27T13:16:53.821119171Z -Commit 00005136 67 keys in 10ms 835µs 2ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005134 | 00005133 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005135 | 00005131 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005136 | 00005132 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:17:27.990699634Z -Commit 00005142 56 keys in 9ms 979µs 655ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005140 | 00005139 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005141 | 00005138 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005142 | 00005137 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:18:10.148775503Z -Commit 00005148 56 keys in 10ms 544µs 626ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005146 | 00005145 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005147 | 00005144 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005148 | 00005143 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:21:55.774484677Z -Commit 00005154 223 keys in 11ms 259µs 357ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005152 | 00005151 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005153 | 00005150 SST | [================================================================================================] | 055f38971e3f4b40-fdf5c4992508f92d (0 MiB, fresh) - 2 | 00005154 | 00005149 SST | [===============================================================================================] | 060b5c9ec1ef7e52-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-27T13:27:35.571664215Z -Commit 00005160 4 keys in 10ms 280µs 24ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005158 | 00005157 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005159 | 00005155 SST | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 (0 MiB, fresh) - 2 | 00005160 | 00005156 SST | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 (0 MiB, fresh) -Time 2026-03-27T13:27:44.784854313Z -Commit 00005166 4 keys in 13ms 543µs 786ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005164 | 00005163 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005165 | 00005161 SST | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 (0 MiB, fresh) - 2 | 00005166 | 00005162 SST | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 (0 MiB, fresh) -Time 2026-03-27T13:34:57.548028745Z -Commit 00005176 826 keys in 15ms 973µs 750ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005172 | 00005169 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005173 | 00005168 SST | [==================================================================================================] | 01cb3d717c7f7124-ff81f50de05b59bd (0 MiB, fresh) - 2 | 00005174 | 00005167 SST | [==================================================================================================] | 02557d9e3695494f-ff81f50de05b59bd (0 MiB, fresh) - 4 | 00005175 | 00005171 SST | O | 5a653acd080f9d7e-5a653acd080f9d7e (0 MiB, fresh) - 3 | 00005176 | 00005170 SST | O | 8a0684a0fd7fea9b-8a0684a0fd7fea9b (0 MiB, fresh) -Time 2026-03-27T13:36:22.77503325Z -Commit 00005182 448 keys in 10ms 822µs 676ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005180 | 00005179 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005181 | 00005178 SST | [=================================================================================================] | 0386609eea6a71f2-fef556762b4c5464 (0 MiB, fresh) - 2 | 00005182 | 00005177 SST | [=================================================================================================] | 04ae6357bbd3dc26-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-27T13:36:51.960640586Z -Commit 00005188 446 keys in 12ms 757µs 5ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005186 | 00005185 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005187 | 00005183 SST | [=================================================================================================] | 0386609eea6a71f2-fef556762b4c5464 (0 MiB, fresh) - 2 | 00005188 | 00005184 SST | [=================================================================================================] | 04ae6357bbd3dc26-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-27T13:38:18.664770632Z -Commit 00005194 446 keys in 9ms 232µs 402ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005192 | 00005191 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005193 | 00005189 SST | [=================================================================================================] | 0386609eea6a71f2-fef556762b4c5464 (0 MiB, fresh) - 2 | 00005194 | 00005190 SST | [=================================================================================================] | 04ae6357bbd3dc26-fef556762b4c5464 (0 MiB, fresh) - 2 | 00005199 | Compaction: - 2 | 00005199 | MERGE (440069 keys): - 2 | 00005199 | 00004795 INPUT | [=====================================] | 00000def41531d98-619a0b9db7781c69 - 2 | 00005199 | 00004797 INPUT | [==============================] | 619a1c540662cf2b-b0bbb8050e982be6 - 2 | 00005199 | 00004798 INPUT | [=============================] | b0bbfe8d142df100-ffffec37b1df3f15 - 2 | 00005199 | 00004796 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff5d0c7322e056c - 2 | 00005199 | 00004802 INPUT | [==================================================================================================] | 0057a22f0ec1be97-fe6bc83b4b2abf68 - 2 | 00005199 | 00004807 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fee27fc9266de29d - 2 | 00005199 | 00004817 INPUT | [==================================================================================================] | 001c10094cc673ca-fff45f83ecadc2aa - 2 | 00005199 | 00004827 INPUT | [==================================================================================================] | 00247993547b8bb1-fff45f83ecadc2aa - 2 | 00005199 | 00004841 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004847 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004854 INPUT | [==================================================================================================] | 0057a22f0ec1be97-fff45f83ecadc2aa - 2 | 00005199 | 00004859 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004865 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004871 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004877 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004883 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004889 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004895 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004901 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004907 INPUT | [==================================================================================================] | 0146327ad0b4617b-fff45f83ecadc2aa - 2 | 00005199 | 00004913 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fd73712db0fe2dd8 - 2 | 00005199 | 00004924 INPUT | O | 14cf0d170bed9901-14cf0d170bed9901 - 2 | 00005199 | 00004929 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff45f83ecadc2aa - 2 | 00005199 | 00004939 INPUT | [==================================================================================================] | 00247993547b8bb1-fff45f83ecadc2aa - 2 | 00005199 | 00004949 INPUT | [==================================================================================================] | 01ce2954e249a91d-ff99148e6e426f5c - 2 | 00005199 | 00004955 INPUT | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c - 2 | 00005199 | 00004962 INPUT | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c - 2 | 00005199 | 00004967 INPUT | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c - 2 | 00005199 | 00004974 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 - 2 | 00005199 | 00004979 INPUT | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c - 2 | 00005199 | 00004985 INPUT | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c - 2 | 00005199 | 00004991 INPUT | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c - 2 | 00005199 | 00004997 INPUT | [================================================================================================] | 06c8b171e8eea748-ff99148e6e426f5c - 2 | 00005199 | 00005003 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005199 | 00005009 INPUT | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 - 2 | 00005199 | 00005016 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 2 | 00005199 | 00005021 INPUT | [=========================================] | 06c8b171e8eea748-70e3cb149e55457e - 2 | 00005199 | 00005028 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 - 2 | 00005199 | 00005034 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005199 | 00005040 INPUT | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 - 2 | 00005199 | 00005046 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 2 | 00005199 | 00005051 INPUT | [==================================================================================================] | 028166b6a35bcd98-ff38f05117386ef5 - 2 | 00005199 | 00005062 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 2 | 00005199 | 00005067 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005199 | 00005078 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdadfbe0d57a332 - 2 | 00005199 | 00005087 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00005199 | 00005093 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00005199 | 00005103 INPUT | [=================================================================================================] | 03671ce438c5663d-ff365382680d1ecc - 2 | 00005199 | 00005109 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffdadfbe0d57a332 - 2 | 00005199 | 00005119 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005199 | 00005126 INPUT | O | 18b4ae45bc9cb8b0-18b4ae45bc9cb8b0 - 2 | 00005199 | 00005132 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005199 | 00005137 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005199 | 00005143 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005199 | 00005149 INPUT | [===============================================================================================] | 060b5c9ec1ef7e52-fc14d191b68d496a - 2 | 00005199 | 00005156 INPUT | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 - 2 | 00005199 | 00005162 INPUT | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 - 2 | 00005199 | 00005167 INPUT | [==================================================================================================] | 02557d9e3695494f-ff81f50de05b59bd - 2 | 00005199 | 00005177 INPUT | [=================================================================================================] | 04ae6357bbd3dc26-fef556762b4c5464 - 2 | 00005199 | 00005184 INPUT | [=================================================================================================] | 04ae6357bbd3dc26-fef556762b4c5464 - 2 | 00005199 | 00005190 INPUT | [=================================================================================================] | 04ae6357bbd3dc26-fef556762b4c5464 - 2 | 00005199 | 00005195 OUTPUT | [====================================] | 00000def41531d98-5fa39a578c3c2a00 (cold) - 2 | 00005199 | 00005197 OUTPUT | [==============================] | 5fa3a6ee22fb46e7-afb9cf8f64f5adac (cold) - 2 | 00005199 | 00005198 OUTPUT | [==============================] | afba38b81124902c-ffffec37b1df3f15 (cold) - 2 | 00005199 | 00005196 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (warm) -Time 2026-03-27T13:38:21.220724053Z -Commit 00005200 440069 keys in 182ms 972µs 339ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00005199 | 00005195 SST | [====================================] | 00000def41531d98-5fa39a578c3c2a00 (92 MiB, cold) - 2 | 00005199 | 00005197 SST | [==============================] | 5fa3a6ee22fb46e7-afb9cf8f64f5adac (71 MiB, cold) - 2 | 00005199 | 00005198 SST | [==============================] | afba38b81124902c-ffffec37b1df3f15 (73 MiB, cold) - 2 | 00005199 | 00005196 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (27 MiB, warm) - 2 | 00005199 | 00004795 00004796 00004797 00004798 00004802 00004807 00004817 00004827 00004841 00004847 00004854 00004859 00004865 00004871 00004877 OBSOLETE SST - 2 | 00005199 | 00004883 00004889 00004895 00004901 00004907 00004913 00004924 00004929 00004939 00004949 00004955 00004962 00004967 00004974 00004979 OBSOLETE SST - 2 | 00005199 | 00004985 00004991 00004997 00005003 00005009 00005016 00005021 00005028 00005034 00005040 00005046 00005051 00005062 00005067 00005078 OBSOLETE SST - 2 | 00005199 | 00005087 00005093 00005103 00005109 00005119 00005126 00005132 00005137 00005143 00005149 00005156 00005162 00005167 00005177 00005184 OBSOLETE SST - 2 | 00005199 | 00005190 OBSOLETE SST - | | 00004795 00004796 00004797 00004798 00004802 00004807 00004817 00004827 00004841 00004847 00004854 00004859 00004865 00004871 00004877 SST DELETED - | | 00004883 00004889 00004895 00004901 00004907 00004913 00004924 00004929 00004939 00004949 00004955 00004962 00004967 00004974 00004979 SST DELETED - | | 00004985 00004991 00004997 00005003 00005009 00005016 00005021 00005028 00005034 00005040 00005046 00005051 00005062 00005067 00005078 SST DELETED - | | 00005087 00005093 00005103 00005109 00005119 00005126 00005132 00005137 00005143 00005149 00005156 00005162 00005167 00005177 00005184 SST DELETED - | | 00005190 SST DELETED - | | 00004799 00004806 00004815 00004825 00004836 00004846 00004852 00004858 00004864 00004870 00004876 00004882 00004888 00004894 00004900 META DELETED - | | 00004906 00004912 00004922 00004928 00004935 00004948 00004954 00004960 00004966 00004972 00004978 00004984 00004990 00004996 00005002 META DELETED - | | 00005008 00005014 00005020 00005026 00005032 00005038 00005044 00005050 00005058 00005066 00005074 00005084 00005091 00005101 00005108 META DELETED - | | 00005117 00005124 00005130 00005136 00005142 00005148 00005154 00005160 00005166 00005174 00005182 00005188 00005194 META DELETED -Time 2026-03-27T13:38:35.870311849Z -Commit 00005206 56 keys in 10ms 431µs 303ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005204 | 00005203 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005205 | 00005202 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005206 | 00005201 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:38:47.191666597Z -Commit 00005212 56 keys in 9ms 855µs 833ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005210 | 00005209 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005211 | 00005207 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005212 | 00005208 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:42:03.525915811Z -Commit 00005218 1188 keys in 14ms 71µs 828ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005216 | 00005215 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005217 | 00005213 SST | [==================================================================================================] | 01ce2954e249a91d-ff08ff5025dc3ab5 (0 MiB, fresh) - 1 | 00005218 | 00005214 SST | [==================================================================================================] | 00326c890af26855-ff2f111763712f47 (0 MiB, fresh) -Time 2026-03-27T13:42:13.476990671Z -Commit 00005228 393 keys in 17ms 339µs 70ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005224 | 00005221 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005225 | 00005220 SST | [==================================================================================================] | 02557d9e3695494f-fdf5c4992508f92d (0 MiB, fresh) - 2 | 00005226 | 00005219 SST | [=================================================================================================] | 02557d9e3695494f-fc14d191b68d496a (0 MiB, fresh) - 3 | 00005227 | 00005222 SST | [=] | 083e24a578bd27d3-0e67f24625c1f6e6 (0 MiB, fresh) - 4 | 00005228 | 00005223 SST | [============] | 4846824a572ed93b-6a209b9609172130 (0 MiB, fresh) -Time 2026-03-27T13:42:28.117253255Z -Commit 00005234 56 keys in 11ms 715µs 413ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005232 | 00005231 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005233 | 00005230 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005234 | 00005229 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:45:29.135047732Z -Commit 00005240 56 keys in 9ms 314µs 289ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005238 | 00005237 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005239 | 00005235 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005240 | 00005236 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:48:58.882867832Z -Commit 00005246 56 keys in 12ms 30µs 795ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005244 | 00005243 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005245 | 00005241 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005246 | 00005242 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:51:00.965316936Z -Commit 00005252 56 keys in 12ms 88µs 91ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005250 | 00005249 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005251 | 00005247 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005252 | 00005248 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T13:51:17.047991613Z -Commit 00005258 56 keys in 11ms 970µs 678ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005256 | 00005255 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005257 | 00005254 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005258 | 00005253 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:00:36.172040479Z -Commit 00005264 420 keys in 12ms 972µs 130ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005262 | 00005261 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005263 | 00005260 SST | [=================================================================================================] | 0386609eea6a71f2-fef556762b4c5464 (0 MiB, fresh) - 2 | 00005264 | 00005259 SST | [=================================================================================================] | 04ae6357bbd3dc26-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-27T14:01:57.978682722Z -Commit 00005270 56 keys in 11ms 743µs 851ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005268 | 00005267 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005269 | 00005266 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005270 | 00005265 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:09:40.968020422Z -Commit 00005276 1157 keys in 13ms 670µs 617ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005274 | 00005273 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005275 | 00005272 SST | [==================================================================================================] | 005187818301636f-ff9f467c2a100bb1 (0 MiB, fresh) - 2 | 00005276 | 00005271 SST | [==================================================================================================] | 005187818301636f-ff9f467c2a100bb1 (4 MiB, fresh) -Time 2026-03-27T14:10:18.439806054Z -Commit 00005282 59 keys in 10ms 10µs 326ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005280 | 00005279 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005281 | 00005277 SST | [=================================================================================================] | 04f8ef707d1e8371-ffac310021da6675 (0 MiB, fresh) - 2 | 00005282 | 00005278 SST | [=================================================================================================] | 04f8ef707d1e8371-ffac310021da6675 (0 MiB, fresh) -Time 2026-03-27T14:12:48.347573916Z -Commit 00005288 109 keys in 13ms 388µs 485ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005286 | 00005285 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005287 | 00005284 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005288 | 00005283 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:13:01.536886561Z -Commit 00005294 67 keys in 11ms 98µs 784ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005292 | 00005291 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005293 | 00005290 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005294 | 00005289 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:16:53.106892411Z -Commit 00005300 56 keys in 11ms 875µs 306ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005298 | 00005297 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005299 | 00005295 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005300 | 00005296 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:17:24.486844022Z -Commit 00005310 4378 keys in 19ms 263µs 722ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005306 | 00005303 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005307 | 00005301 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (7 MiB, fresh) - 1 | 00005308 | 00005302 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (2 MiB, fresh) - 3 | 00005309 | 00005305 SST | [=========================================================================================] | 0a786e249846a400-f2ca38a50efb485b (0 MiB, fresh) - 4 | 00005310 | 00005304 SST | [================================================================================================] | 05c65faa3b45ef04-ffc2b864b4ce0290 (0 MiB, fresh) -Time 2026-03-27T14:23:48.371061608Z -Commit 00005316 425 keys in 11ms 926µs 692ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005314 | 00005313 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005315 | 00005312 SST | [=================================================================================================] | 035a2767f027deef-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005316 | 00005311 SST | [=================================================================================================] | 035a2767f027deef-ffc2b864b4ce0290 (0 MiB, fresh) -Time 2026-03-27T14:24:04.606800759Z -Commit 00005326 2853 keys in 16ms 681µs 725ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005322 | 00005319 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00005323 | 00005320 SST | [=================================================================================================] | 0345d3e91518033a-febdc05a678645ab (0 MiB, fresh) - 1 | 00005324 | 00005317 SST | [==================================================================================================] | 0046228ce0a6aa12-ffdadfbe0d57a332 (1 MiB, fresh) - 3 | 00005325 | 00005321 SST | [==================================================================================================] | 0044855fce6c5d2e-fe316ebd7aaa62e8 (0 MiB, fresh) - 2 | 00005326 | 00005318 SST | [==================================================================================================] | 0046228ce0a6aa12-ffdadfbe0d57a332 (1 MiB, fresh) -Time 2026-03-27T14:25:02.397972534Z -Commit 00005336 2386 keys in 15ms 920µs 720ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005332 | 00005329 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005333 | 00005327 SST | [==================================================================================================] | 0004b93e0afd3cd9-ffc2b864b4ce0290 (1 MiB, fresh) - 2 | 00005334 | 00005328 SST | [==================================================================================================] | 0004b93e0afd3cd9-ffc2b864b4ce0290 (1 MiB, fresh) - 3 | 00005335 | 00005331 SST | [===============================================================================================] | 09ae08bead251a5b-fd97e846a1735b58 (0 MiB, fresh) - 4 | 00005336 | 00005330 SST | [==================================================================================================] | 0004b93e0afd3cd9-ff55ef9aa2a4b1ac (0 MiB, fresh) -Time 2026-03-27T14:25:46.863236269Z -Commit 00005342 4 keys in 13ms 352µs 441ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005340 | 00005339 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005341 | 00005337 SST | O | fd7b35dc69dd839a-fd7b35dc69dd839a (0 MiB, fresh) - 2 | 00005342 | 00005338 SST | O | fd7b35dc69dd839a-fd7b35dc69dd839a (0 MiB, fresh) -Time 2026-03-27T14:26:56.707146963Z -Commit 00005348 17 keys in 10ms 840µs 592ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005346 | 00005345 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005347 | 00005344 SST | [==========================================================================================] | 0d39b29a0fc466cb-f73dc4981889f6f7 (0 MiB, fresh) - 2 | 00005348 | 00005343 SST | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 (0 MiB, fresh) -Time 2026-03-27T14:30:57.170835916Z -Commit 00005354 80 keys in 12ms 953µs 220ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005352 | 00005351 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005353 | 00005350 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005354 | 00005349 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:31:37.658464901Z -Commit 00005364 3864 keys in 20ms 928µs 758ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005360 | 00005357 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005361 | 00005356 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (2 MiB, fresh) - 2 | 00005362 | 00005355 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (5 MiB, fresh) - 3 | 00005363 | 00005358 SST | [=========================================================================================] | 10a0f048fec4d6c5-f7a69fa75d49069b (0 MiB, fresh) - 4 | 00005364 | 00005359 SST | [=====================================================================================] | 1e9e8b7a52b398f0-fa6141ee96b3194e (0 MiB, fresh) -Time 2026-03-27T14:33:24.588421406Z -Commit 00005374 5309 keys in 20ms 80µs 545ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005370 | 00005367 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005371 | 00005365 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 2 | 00005372 | 00005366 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (7 MiB, fresh) - 3 | 00005373 | 00005368 SST | [==================================================================================================] | 005759c9224bd255-fe725f02872d9fc7 (0 MiB, fresh) - 4 | 00005374 | 00005369 SST | [============================================================================================] | 0842e94e47d9326b-f702e4e300045dbe (0 MiB, fresh) -Time 2026-03-27T14:33:28.957136239Z -Commit 00005380 97 keys in 8ms 365µs 60ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005378 | 00005377 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005379 | 00005375 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005380 | 00005376 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:33:42.547615908Z -Commit 00005390 3281 keys in 17ms 216µs 658ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005386 | 00005383 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005387 | 00005382 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (0 MiB, fresh) - 2 | 00005388 | 00005381 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (5 MiB, fresh) - 3 | 00005389 | 00005384 SST | [==================================] | 8d09e0f866d44b50-e8228ec42bf49124 (0 MiB, fresh) - 4 | 00005390 | 00005385 SST | [========================================================] | 0a614d593a03ed47-9d67d63fcff113e5 (0 MiB, fresh) -Time 2026-03-27T14:47:08.899032361Z -Commit 00005396 78 keys in 11ms 908µs 418ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005394 | 00005393 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005395 | 00005392 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005396 | 00005391 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:48:02.351318082Z -Commit 00005402 78 keys in 11ms 767µs 381ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005400 | 00005399 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005401 | 00005398 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005402 | 00005397 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:49:35.223638496Z -Commit 00005408 78 keys in 9ms 711µs 534ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005406 | 00005405 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005407 | 00005403 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005408 | 00005404 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:49:55.672557085Z -Commit 00005414 91 keys in 11ms 529µs 692ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005412 | 00005411 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005413 | 00005410 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005414 | 00005409 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:50:09.919371124Z -Commit 00005420 91 keys in 9ms 842µs 587ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005418 | 00005417 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005419 | 00005416 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005420 | 00005415 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T14:51:10.006634093Z -Commit 00005426 5184 keys in 14ms 524µs 252ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005424 | 00005423 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005425 | 00005421 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00005426 | 00005422 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (3 MiB, fresh) -Time 2026-03-27T15:14:11.210804988Z -Commit 00005432 71 keys in 12ms 766µs 901ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005430 | 00005429 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005431 | 00005427 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005432 | 00005428 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T15:17:07.172249416Z -Commit 00005438 79 keys in 9ms 774µs 207ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005436 | 00005435 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005437 | 00005434 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005438 | 00005433 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T15:17:13.342044804Z -Commit 00005444 114 keys in 11ms 947µs 910ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005442 | 00005441 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005443 | 00005439 SST | [==================================================================================================] | 00f99e257a792a10-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00005444 | 00005440 SST | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc (0 MiB, fresh) -Time 2026-03-27T15:37:26.282265452Z -Commit 00005450 1044 keys in 18ms 633µs 422ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005448 | 00005447 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005449 | 00005445 SST | [=================================================================================================] | 03671ce438c5663d-fff2b4fb9e9026cc (4 MiB, fresh) - 1 | 00005450 | 00005446 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) -Time 2026-03-27T15:45:31.114447803Z -Commit 00005460 747 keys in 19ms 44µs 525ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005456 | 00005453 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005457 | 00005451 SST | [==================================================================================================] | 005187818301636f-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005458 | 00005452 SST | [==================================================================================================] | 005187818301636f-ff734a64430d4d2d (0 MiB, fresh) - 3 | 00005459 | 00005454 SST | [==============================================================================] | 3368c0e76ed3678a-fe47815326b270c6 (0 MiB, fresh) - 4 | 00005460 | 00005455 SST | [==================================================================================] | 0f91f2ac9606e191-e4a0174926cfa4d7 (0 MiB, fresh) -Time 2026-03-27T15:46:24.089331235Z -Commit 00005466 128 keys in 11ms 588µs 24ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005464 | 00005463 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005465 | 00005462 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005466 | 00005461 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T15:47:10.873164437Z -Commit 00005472 64 keys in 12ms 189µs 690ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005470 | 00005469 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005471 | 00005468 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005472 | 00005467 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T15:47:25.97004451Z -Commit 00005478 77 keys in 12ms 104µs 183ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005476 | 00005475 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005477 | 00005474 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005478 | 00005473 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T15:48:06.389212258Z -Commit 00005484 77 keys in 11ms 660µs 170ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005482 | 00005481 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005483 | 00005479 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005484 | 00005480 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T15:48:09.808250335Z -Commit 00005490 4 keys in 11ms 592µs 175ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005488 | 00005487 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005489 | 00005485 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) - 2 | 00005490 | 00005486 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-27T15:48:15.02753822Z -Commit 00005496 77 keys in 13ms 504µs 64ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005494 | 00005493 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005495 | 00005491 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005496 | 00005492 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T15:50:44.587476338Z -Commit 00005502 77 keys in 11ms 335µs 713ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005500 | 00005499 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005501 | 00005497 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005502 | 00005498 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T15:50:48.37528993Z -Commit 00005508 4 keys in 10ms 691µs 828ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005506 | 00005505 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005507 | 00005503 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) - 2 | 00005508 | 00005504 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-27T15:57:31.544680172Z -Commit 00005514 17 keys in 11ms 577µs 381ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005512 | 00005511 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005513 | 00005510 SST | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 (0 MiB, fresh) - 2 | 00005514 | 00005509 SST | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 (0 MiB, fresh) -Time 2026-03-27T15:57:48.797200468Z -Commit 00005520 92 keys in 12ms 54µs 373ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005518 | 00005517 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005519 | 00005516 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005520 | 00005515 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T16:10:56.872616006Z -Commit 00005526 1068 keys in 12ms 1µs 993ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005524 | 00005523 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005525 | 00005521 SST | [==================================================================================================] | 006ec0d842304288-fff2b4fb9e9026cc (5 MiB, fresh) - 1 | 00005526 | 00005522 SST | [==================================================================================================] | 006ec0d842304288-fff2b4fb9e9026cc (0 MiB, fresh) -Time 2026-03-27T16:11:37.069829823Z -Commit 00005532 419 keys in 11ms 665µs 101ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005530 | 00005529 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005531 | 00005527 SST | [==================================================================================================] | 00f99e257a792a10-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005532 | 00005528 SST | [=================================================================================================] | 00f99e257a792a10-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-27T16:11:48.426047522Z -Commit 00005538 940 keys in 11ms 694µs 387ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005536 | 00005535 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005537 | 00005533 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00005538 | 00005534 SST | [==================================================================================================] | 00f99e257a792a10-fff2b4fb9e9026cc (4 MiB, fresh) - 2 | 00005543 | Compaction: - 2 | 00005543 | MERGE (440501 keys): - 2 | 00005543 | 00005195 INPUT | [====================================] | 00000def41531d98-5fa39a578c3c2a00 - 2 | 00005543 | 00005197 INPUT | [==============================] | 5fa3a6ee22fb46e7-afb9cf8f64f5adac - 2 | 00005543 | 00005198 INPUT | [==============================] | afba38b81124902c-ffffec37b1df3f15 - 2 | 00005543 | 00005196 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005543 | 00005201 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005208 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005213 INPUT | [==================================================================================================] | 01ce2954e249a91d-ff08ff5025dc3ab5 - 2 | 00005543 | 00005219 INPUT | [=================================================================================================] | 02557d9e3695494f-fc14d191b68d496a - 2 | 00005543 | 00005229 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005236 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005242 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005248 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005253 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005259 INPUT | [=================================================================================================] | 04ae6357bbd3dc26-fef556762b4c5464 - 2 | 00005543 | 00005265 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005271 INPUT | [==================================================================================================] | 005187818301636f-ff9f467c2a100bb1 - 2 | 00005543 | 00005278 INPUT | [=================================================================================================] | 04f8ef707d1e8371-ffac310021da6675 - 2 | 00005543 | 00005283 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005289 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005296 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005301 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005543 | 00005311 INPUT | [=================================================================================================] | 035a2767f027deef-ffc2b864b4ce0290 - 2 | 00005543 | 00005318 INPUT | [==================================================================================================] | 0046228ce0a6aa12-ffdadfbe0d57a332 - 2 | 00005543 | 00005328 INPUT | [==================================================================================================] | 0004b93e0afd3cd9-ffc2b864b4ce0290 - 2 | 00005543 | 00005338 INPUT | O | fd7b35dc69dd839a-fd7b35dc69dd839a - 2 | 00005543 | 00005343 INPUT | [=======================================================================================] | 14dd4b812fa2359a-f73dc4981889f6f7 - 2 | 00005543 | 00005349 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005355 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005543 | 00005366 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005543 | 00005376 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005381 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005543 | 00005391 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005397 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005404 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005409 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005415 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005421 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00005543 | 00005428 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005433 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005440 INPUT | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc - 2 | 00005543 | 00005445 INPUT | [=================================================================================================] | 03671ce438c5663d-fff2b4fb9e9026cc - 2 | 00005543 | 00005452 INPUT | [==================================================================================================] | 005187818301636f-ff734a64430d4d2d - 2 | 00005543 | 00005461 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005467 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005473 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005480 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005486 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 2 | 00005543 | 00005492 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005498 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005504 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 2 | 00005543 | 00005509 INPUT | [===========================================================] | 3d1e6b20222fda3d-d6aee1153a47b2a8 - 2 | 00005543 | 00005515 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005543 | 00005521 INPUT | [==================================================================================================] | 006ec0d842304288-fff2b4fb9e9026cc - 2 | 00005543 | 00005528 INPUT | [=================================================================================================] | 00f99e257a792a10-fc14d191b68d496a - 2 | 00005543 | 00005534 INPUT | [==================================================================================================] | 00f99e257a792a10-fff2b4fb9e9026cc - 2 | 00005543 | 00005539 OUTPUT | [====================================] | 00000def41531d98-610d11b4a397b88a (cold) - 2 | 00005543 | 00005541 OUTPUT | [==============================] | 610d2515e684c882-b06a3daa1a101e3c (cold) - 2 | 00005543 | 00005542 OUTPUT | [==============================] | b06a467cd2e40cd0-ffffec37b1df3f15 (cold) - 2 | 00005543 | 00005540 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (warm) -Time 2026-03-27T16:11:50.539185846Z -Commit 00005544 440501 keys in 185ms 483µs 528ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00005543 | 00005539 SST | [====================================] | 00000def41531d98-610d11b4a397b88a (92 MiB, cold) - 2 | 00005543 | 00005541 SST | [==============================] | 610d2515e684c882-b06a3daa1a101e3c (71 MiB, cold) - 2 | 00005543 | 00005542 SST | [==============================] | b06a467cd2e40cd0-ffffec37b1df3f15 (72 MiB, cold) - 2 | 00005543 | 00005540 SST | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (27 MiB, warm) - 2 | 00005543 | 00005195 00005196 00005197 00005198 00005201 00005208 00005213 00005219 00005229 00005236 00005242 00005248 00005253 00005259 00005265 OBSOLETE SST - 2 | 00005543 | 00005271 00005278 00005283 00005289 00005296 00005301 00005311 00005318 00005328 00005338 00005343 00005349 00005355 00005366 00005376 OBSOLETE SST - 2 | 00005543 | 00005381 00005391 00005397 00005404 00005409 00005415 00005421 00005428 00005433 00005440 00005445 00005452 00005461 00005467 00005473 OBSOLETE SST - 2 | 00005543 | 00005480 00005486 00005492 00005498 00005504 00005509 00005515 00005521 00005528 00005534 OBSOLETE SST - | | 00005195 00005196 00005197 00005198 00005201 00005208 00005213 00005219 00005229 00005236 00005242 00005248 00005253 00005259 00005265 SST DELETED - | | 00005271 00005278 00005283 00005289 00005296 00005301 00005311 00005318 00005328 00005338 00005343 00005349 00005355 00005366 00005376 SST DELETED - | | 00005381 00005391 00005397 00005404 00005409 00005415 00005421 00005428 00005433 00005440 00005445 00005452 00005461 00005467 00005473 SST DELETED - | | 00005480 00005486 00005492 00005498 00005504 00005509 00005515 00005521 00005528 00005534 SST DELETED - | | 00005199 00005206 00005212 00005217 00005226 00005234 00005240 00005246 00005252 00005258 00005264 00005270 00005276 00005282 00005288 META DELETED - | | 00005294 00005300 00005307 00005316 00005326 00005334 00005342 00005348 00005354 00005362 00005372 00005380 00005388 00005396 00005402 META DELETED - | | 00005408 00005414 00005420 00005425 00005432 00005438 00005444 00005449 00005458 00005466 00005472 00005478 00005484 00005490 00005496 META DELETED - | | 00005502 00005508 00005514 00005520 00005525 00005532 00005538 META DELETED -Time 2026-03-27T16:12:13.449348501Z -Commit 00005550 132 keys in 12ms 25µs 569ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005548 | 00005547 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005549 | 00005546 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005550 | 00005545 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T16:12:47.734455766Z -Commit 00005556 6 keys in 10ms 632µs 881ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005554 | 00005553 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005555 | 00005552 SST | [==========================================] | 3d1e6b20222fda3d-a97b2a3dd634e045 (0 MiB, fresh) - 2 | 00005556 | 00005551 SST | [==========================================] | 3d1e6b20222fda3d-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-27T16:18:21.169927169Z -Commit 00005562 4 keys in 12ms 23µs 151ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005560 | 00005559 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005561 | 00005557 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) - 2 | 00005562 | 00005558 SST | O | d4caf2e664a9b09e-d4caf2e664a9b09e (0 MiB, fresh) -Time 2026-03-27T16:18:57.032921388Z -Commit 00005568 71 keys in 11ms 999µs 749ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005566 | 00005565 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005567 | 00005563 SST | [==================================================================================================] | 0057a22f0ec1be97-ff78e55e141da030 (0 MiB, fresh) - 2 | 00005568 | 00005564 SST | [==================================================================================================] | 0057a22f0ec1be97-fe0f391da21b5ab9 (0 MiB, fresh) -Time 2026-03-27T16:19:04.027847433Z -Commit 00005574 166 keys in 13ms 406µs 269ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005572 | 00005571 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005573 | 00005569 SST | [==================================================================================================] | 00bc9fb3e020309a-ffd12f91ef0ac8f6 (0 MiB, fresh) - 2 | 00005574 | 00005570 SST | [==================================================================================================] | 00bc9fb3e020309a-ff9f467c2a100bb1 (0 MiB, fresh) -Time 2026-03-27T16:25:23.75511518Z -Commit 00005580 991 keys in 16ms 478µs 583ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005578 | 00005577 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005579 | 00005575 SST | [==================================================================================================] | 006ec0d842304288-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005580 | 00005576 SST | [==================================================================================================] | 006ec0d842304288-fef556762b4c5464 (1 MiB, fresh) -Time 2026-03-27T16:27:29.594390595Z -Commit 00005586 596 keys in 10ms 673µs 520ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005584 | 00005583 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005585 | 00005582 SST | [==================================================================================================] | 01ce2954e249a91d-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005586 | 00005581 SST | [==================================================================================================] | 01ce2954e249a91d-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-27T16:28:44.460873901Z -Commit 00005596 11517 keys in 17ms 686µs 621ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005592 | 00005589 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00005593 | 00005590 SST | [==================================================================================================] | 00155b4c4d624394-ffd1881c5c17422c (0 MiB, fresh) - 2 | 00005594 | 00005587 SST | [==================================================================================================] | 00114172b3cc83f8-ffd02d39af75d27f (5 MiB, fresh) - 1 | 00005595 | 00005588 SST | [==================================================================================================] | 00114172b3cc83f8-fff044f275e8987d (3 MiB, fresh) - 4 | 00005596 | 00005591 SST | [==================================================================================================] | 002adf6a8f061ac1-ffb7f950a28e7ab4 (0 MiB, fresh) -Time 2026-03-27T16:28:46.610289101Z -Commit 00005606 1542 keys in 17ms 515µs 869ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005602 | 00005599 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005603 | 00005597 SST | [==================================================================================================] | 00331b89f0453569-ffdadfbe0d57a332 (0 MiB, fresh) - 2 | 00005604 | 00005598 SST | [==================================================================================================] | 00331b89f0453569-ffdadfbe0d57a332 (0 MiB, fresh) - 3 | 00005605 | 00005601 SST | [=================================================================================================] | 0054e33c513d800f-fc1ae2c832d3ef1c (0 MiB, fresh) - 4 | 00005606 | 00005600 SST | [==================================================================================================] | 0162a8d05353db3d-ff9171cf04f61dc0 (0 MiB, fresh) -Time 2026-03-27T16:29:09.498055871Z -Commit 00005612 278 keys in 10ms 169µs 314ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005610 | 00005609 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005611 | 00005607 SST | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005612 | 00005608 SST | [===============================================================================================] | 060b5c9ec1ef7e52-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-27T16:29:36.286852469Z -Commit 00005618 4 keys in 11ms 192µs 327ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005616 | 00005615 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005617 | 00005613 SST | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 (0 MiB, fresh) - 2 | 00005618 | 00005614 SST | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 (0 MiB, fresh) -Time 2026-03-27T17:47:18.055407847Z -Commit 00005628 16037 keys in 19ms 953µs 201ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005624 | 00005621 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00005625 | 00005623 SST | [==================================================================================================] | 01734c178348a3f3-ff8b0edc9d08f025 (0 MiB, fresh) - 3 | 00005626 | 00005622 SST | [==================================================================================================] | 00403bfa5a04f200-ffc0232e40b1bf34 (0 MiB, fresh) - 2 | 00005627 | 00005619 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb (7 MiB, fresh) - 1 | 00005628 | 00005620 SST | [==================================================================================================] | 0000737dcecb7eaa-fff821cf09f2ceb3 (6 MiB, fresh) -Time 2026-03-27T17:48:48.442398567Z -Commit 00005634 565 keys in 12ms 56µs 7ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005632 | 00005631 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005633 | 00005630 SST | [==================================================================================================] | 00bc9fb3e020309a-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005634 | 00005629 SST | [==================================================================================================] | 00bc9fb3e020309a-fd73712db0fe2dd8 (0 MiB, fresh) -Time 2026-03-27T17:48:59.259466955Z -Commit 00005644 45706 keys in 24ms 688µs 594ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005640 | 00005637 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00005641 | 00005638 SST | [==================================================================================================] | 000ad78cd459fff9-ffe4c6509ab58d7e (0 MiB, fresh) - 2 | 00005642 | 00005635 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (13 MiB, fresh) - 3 | 00005643 | 00005639 SST | [==================================================================================================] | 000e33a29a2929bc-fff6ed1800f34d65 (0 MiB, fresh) - 1 | 00005644 | 00005636 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (7 MiB, fresh) -Time 2026-03-27T17:49:02.99601584Z -Commit 00005650 4 keys in 9ms 207µs 450ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005648 | 00005647 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005649 | 00005645 SST | O | fa61a98f688ae8a4-fa61a98f688ae8a4 (0 MiB, fresh) - 2 | 00005650 | 00005646 SST | O | fa61a98f688ae8a4-fa61a98f688ae8a4 (0 MiB, fresh) -Time 2026-03-27T17:49:06.719006803Z -Commit 00005656 4 keys in 9ms 649µs 494ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005654 | 00005653 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005655 | 00005651 SST | O | 70e3cb149e55457e-70e3cb149e55457e (0 MiB, fresh) - 2 | 00005656 | 00005652 SST | O | 70e3cb149e55457e-70e3cb149e55457e (0 MiB, fresh) -Time 2026-03-27T18:26:15.99348506Z -Commit 00005666 3683 keys in 20ms 256µs 51ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005662 | 00005659 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005663 | 00005658 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (0 MiB, fresh) - 2 | 00005664 | 00005657 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (6 MiB, fresh) - 3 | 00005665 | 00005660 SST | [=================================================================================================] | 01e6a29217a68086-fc23533d83b22f04 (0 MiB, fresh) - 4 | 00005666 | 00005661 SST | [==================================================================================================] | 01418def3d9f7ae5-fe83743fb9c1914c (0 MiB, fresh) -Time 2026-03-27T18:28:24.852041631Z -Commit 00005676 4400 keys in 19ms 51µs 595ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005672 | 00005669 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005673 | 00005668 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 2 | 00005674 | 00005667 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (6 MiB, fresh) - 3 | 00005675 | 00005671 SST | [====================================================================================] | 1c242cd41613841e-f4e6b550800f1daf (0 MiB, fresh) - 4 | 00005676 | 00005670 SST | [=============================================================================================] | 08a6ae038206f45c-f8c41f11e1603932 (0 MiB, fresh) -Time 2026-03-27T18:29:03.789944797Z -Commit 00005682 86 keys in 9ms 374µs 295ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005680 | 00005679 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005681 | 00005677 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005682 | 00005678 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T18:29:12.613632638Z -Commit 00005688 108 keys in 9ms 406µs 70ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005686 | 00005685 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005687 | 00005684 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00005688 | 00005683 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T18:29:15.979823618Z -Commit 00005694 102 keys in 11ms 680µs 599ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005692 | 00005691 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005693 | 00005690 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00005694 | 00005689 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-27T20:50:36.361379407Z -Commit 00005700 34 keys in 13ms 555µs 449ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005698 | 00005697 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005699 | 00005695 SST | [=============================================================================================] | 08f4cbfca2c704b9-f98fc7e477a60571 (0 MiB, fresh) - 2 | 00005700 | 00005696 SST | [=============================================================================================] | 08f4cbfca2c704b9-f98fc7e477a60571 (0 MiB, fresh) -Time 2026-03-28T06:49:34.354985067Z -Commit 00005706 5067 keys in 13ms 436µs 940ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005704 | 00005703 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005705 | 00005701 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00005706 | 00005702 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (3 MiB, fresh) -Time 2026-03-28T06:50:56.583865504Z -Commit 00005712 3036 keys in 12ms 751µs 934ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005710 | 00005709 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005711 | 00005708 SST | [==================================================================================================] | 000801e97f7ace52-ffef5c90a20d9597 (2 MiB, fresh) - 2 | 00005712 | 00005707 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) -Time 2026-03-28T08:21:38.138717861Z -Commit 00005722 784 keys in 24ms 266µs 130ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005718 | 00005715 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005719 | 00005713 SST | [=================================================================================================] | 03f651f60cc5b9b7-ff9f467c2a100bb1 (4 MiB, fresh) - 1 | 00005720 | 00005714 SST | [==================================================================================================] | 00bc9fb3e020309a-ffc2b864b4ce0290 (0 MiB, fresh) - 4 | 00005721 | 00005717 SST | O | 2d121d71def5675b-2d121d71def5675b (0 MiB, fresh) - 3 | 00005722 | 00005716 SST | O | 805d08418eefdfb6-805d08418eefdfb6 (0 MiB, fresh) -Time 2026-03-28T08:21:50.126485528Z -Commit 00005728 259 keys in 11ms 635µs 468ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005726 | 00005725 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005727 | 00005723 SST | [===============================================================================================] | 06c8b171e8eea748-fc14d191b68d496a (0 MiB, fresh) - 1 | 00005728 | 00005724 SST | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 (0 MiB, fresh) -Time 2026-03-28T08:22:15.46633839Z -Commit 00005734 286 keys in 14ms 232µs 928ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005732 | 00005731 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005733 | 00005730 SST | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005734 | 00005729 SST | [================================================================================================] | 06c8b171e8eea748-fda01f64d7e9163d (0 MiB, fresh) -Time 2026-03-28T08:22:58.362037461Z -Commit 00005740 1839 keys in 10ms 861µs 611ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005738 | 00005737 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005739 | 00005736 SST | [==================================================================================================] | 0029e3cce1b51f25-fff187cd7cce0e80 (1 MiB, fresh) - 2 | 00005740 | 00005735 SST | [==================================================================================================] | 0101b19be077bd3d-ffac310021da6675 (0 MiB, fresh) -Time 2026-03-28T08:23:04.78911604Z -Commit 00005746 186 keys in 11ms 955µs 838ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005744 | 00005743 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005745 | 00005741 SST | [=================================================================================================] | 03731c6b3218d210-fe641b4c44c7b0da (0 MiB, fresh) - 2 | 00005746 | 00005742 SST | [=================================================================================================] | 03731c6b3218d210-fe641b4c44c7b0da (0 MiB, fresh) -Time 2026-03-28T08:23:14.336457971Z -Commit 00005752 74 keys in 11ms 836µs 597ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005750 | 00005749 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005751 | 00005748 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005752 | 00005747 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T08:23:19.751067801Z -Commit 00005758 227 keys in 9ms 792µs 495ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005756 | 00005755 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005757 | 00005753 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00005758 | 00005754 SST | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00005763 | Compaction: - 2 | 00005763 | MERGE (445028 keys): - 2 | 00005763 | 00005539 INPUT | [====================================] | 00000def41531d98-610d11b4a397b88a - 2 | 00005763 | 00005541 INPUT | [==============================] | 610d2515e684c882-b06a3daa1a101e3c - 2 | 00005763 | 00005542 INPUT | [==============================] | b06a467cd2e40cd0-ffffec37b1df3f15 - 2 | 00005763 | 00005540 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc - 2 | 00005763 | 00005545 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00005763 | 00005551 INPUT | [==========================================] | 3d1e6b20222fda3d-a97b2a3dd634e045 - 2 | 00005763 | 00005558 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 2 | 00005763 | 00005564 INPUT | [==================================================================================================] | 0057a22f0ec1be97-fe0f391da21b5ab9 - 2 | 00005763 | 00005570 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ff9f467c2a100bb1 - 2 | 00005763 | 00005576 INPUT | [==================================================================================================] | 006ec0d842304288-fef556762b4c5464 - 2 | 00005763 | 00005581 INPUT | [==================================================================================================] | 01ce2954e249a91d-fef556762b4c5464 - 2 | 00005763 | 00005587 INPUT | [==================================================================================================] | 00114172b3cc83f8-ffd02d39af75d27f - 2 | 00005763 | 00005598 INPUT | [==================================================================================================] | 00331b89f0453569-ffdadfbe0d57a332 - 2 | 00005763 | 00005608 INPUT | [===============================================================================================] | 060b5c9ec1ef7e52-fc14d191b68d496a - 2 | 00005763 | 00005614 INPUT | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 - 2 | 00005763 | 00005619 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe503fa1ab007fb - 2 | 00005763 | 00005629 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fd73712db0fe2dd8 - 2 | 00005763 | 00005635 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00005763 | 00005646 INPUT | O | fa61a98f688ae8a4-fa61a98f688ae8a4 - 2 | 00005763 | 00005652 INPUT | O | 70e3cb149e55457e-70e3cb149e55457e - 2 | 00005763 | 00005657 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005763 | 00005667 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005763 | 00005678 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 2 | 00005763 | 00005683 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 - 2 | 00005763 | 00005689 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 - 2 | 00005763 | 00005696 INPUT | [=============================================================================================] | 08f4cbfca2c704b9-f98fc7e477a60571 - 2 | 00005763 | 00005701 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00005763 | 00005707 INPUT | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d - 2 | 00005763 | 00005713 INPUT | [=================================================================================================] | 03f651f60cc5b9b7-ff9f467c2a100bb1 - 2 | 00005763 | 00005723 INPUT | [===============================================================================================] | 06c8b171e8eea748-fc14d191b68d496a - 2 | 00005763 | 00005729 INPUT | [================================================================================================] | 06c8b171e8eea748-fda01f64d7e9163d - 2 | 00005763 | 00005735 INPUT | [==================================================================================================] | 0101b19be077bd3d-ffac310021da6675 - 2 | 00005763 | 00005742 INPUT | [=================================================================================================] | 03731c6b3218d210-fe641b4c44c7b0da - 2 | 00005763 | 00005747 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 2 | 00005763 | 00005754 INPUT | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc - 2 | 00005763 | 00005759 OUTPUT | [====================================] | 00000def41531d98-610d11b4a397b88a (cold) - 2 | 00005763 | 00005761 OUTPUT | [==============================] | 610d2515e684c882-b0723e0efdf2a6e8 (cold) - 2 | 00005763 | 00005762 OUTPUT | [==============================] | b07254ac869c8a19-ffffec37b1df3f15 (cold) - 2 | 00005763 | 00005760 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (warm) -Time 2026-03-28T08:23:24.026921546Z -Commit 00005764 445028 keys in 295ms 526µs 568ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00005763 | 00005759 SST | [====================================] | 00000def41531d98-610d11b4a397b88a (92 MiB, cold) - 2 | 00005763 | 00005761 SST | [==============================] | 610d2515e684c882-b0723e0efdf2a6e8 (72 MiB, cold) - 2 | 00005763 | 00005762 SST | [==============================] | b07254ac869c8a19-ffffec37b1df3f15 (71 MiB, cold) - 2 | 00005763 | 00005760 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 (32 MiB, warm) - 2 | 00005763 | 00005539 00005540 00005541 00005542 00005545 00005551 00005558 00005564 00005570 00005576 00005581 00005587 00005598 00005608 00005614 OBSOLETE SST - 2 | 00005763 | 00005619 00005629 00005635 00005646 00005652 00005657 00005667 00005678 00005683 00005689 00005696 00005701 00005707 00005713 00005723 OBSOLETE SST - 2 | 00005763 | 00005729 00005735 00005742 00005747 00005754 OBSOLETE SST - | | 00005539 00005540 00005541 00005542 00005545 00005551 00005558 00005564 00005570 00005576 00005581 00005587 00005598 00005608 00005614 SST DELETED - | | 00005619 00005629 00005635 00005646 00005652 00005657 00005667 00005678 00005683 00005689 00005696 00005701 00005707 00005713 00005723 SST DELETED - | | 00005729 00005735 00005742 00005747 00005754 SST DELETED - | | 00005543 00005550 00005556 00005562 00005568 00005574 00005580 00005586 00005594 00005604 00005612 00005618 00005627 00005634 00005642 META DELETED - | | 00005650 00005656 00005664 00005674 00005682 00005688 00005694 00005700 00005705 00005712 00005719 00005727 00005734 00005740 00005746 META DELETED - | | 00005752 00005758 META DELETED -Time 2026-03-28T08:23:24.407655374Z -Commit 00005774 8039 keys in 18ms 476µs 563ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005770 | 00005767 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00005771 | 00005769 SST | [==================================================================================================] | 00596fb9c1f6da3f-ffcda20dca853a54 (0 MiB, fresh) - 3 | 00005772 | 00005768 SST | [==================================================================================================] | 0019f1ae444c7960-ff792fc895700cff (0 MiB, fresh) - 1 | 00005773 | 00005765 SST | [==================================================================================================] | 000ad78cd459fff9-ffe4c6509ab58d7e (1 MiB, fresh) - 2 | 00005774 | 00005766 SST | [==================================================================================================] | 000ad78cd459fff9-ffe0dd8a35583e73 (1 MiB, fresh) -Time 2026-03-28T08:24:23.937100906Z -Commit 00005780 30 keys in 13ms 225µs 903ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00005778 | 00005775 SST | [=============================================================================================] | 08f4cbfca2c704b9-f98fc7e477a60571 (0 MiB, fresh) - 0 | 00005779 | 00005777 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005780 | 00005776 SST | [=============================================================================================] | 08f4cbfca2c704b9-f98fc7e477a60571 (0 MiB, fresh) -Time 2026-03-28T08:30:03.142909228Z -Commit 00005790 5811 keys in 17ms 783µs 978ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005786 | 00005783 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00005787 | 00005785 SST | O | b9fd1a37d925768b-b9fd1a37d925768b (0 MiB, fresh) - 2 | 00005788 | 00005781 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (6 MiB, fresh) - 3 | 00005789 | 00005784 SST | O | cfb9ef79ad36b2e7-cfb9ef79ad36b2e7 (0 MiB, fresh) - 1 | 00005790 | 00005782 SST | [==================================================================================================] | 0000737dcecb7eaa-ffec4aeb0538aa5f (2 MiB, fresh) -Time 2026-03-28T08:30:34.425123695Z -Commit 00005796 580 keys in 12ms 661µs 414ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005794 | 00005793 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005795 | 00005792 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005796 | 00005791 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:30:39.357726906Z -Commit 00005802 521 keys in 10ms 73µs 222ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005800 | 00005799 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005801 | 00005797 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005802 | 00005798 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:30:53.55254924Z -Commit 00005812 3845 keys in 20ms 801µs 989ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00005808 | 00005804 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 0 | 00005809 | 00005805 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005810 | 00005803 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (6 MiB, fresh) - 3 | 00005811 | 00005806 SST | O | 3c4e26458eb3b703-3c4e26458eb3b703 (0 MiB, fresh) - 4 | 00005812 | 00005807 SST | O | f9bf4bf44ace8b74-f9bf4bf44ace8b74 (0 MiB, fresh) -Time 2026-03-28T08:32:30.11520031Z -Commit 00005822 3886 keys in 18ms 638µs 467ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005818 | 00005815 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005819 | 00005814 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 3 | 00005820 | 00005816 SST | O | 1399e71dcbaded6b-1399e71dcbaded6b (0 MiB, fresh) - 4 | 00005821 | 00005817 SST | O | 1c8c707e1e5b259f-1c8c707e1e5b259f (0 MiB, fresh) - 2 | 00005822 | 00005813 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (6 MiB, fresh) -Time 2026-03-28T08:32:50.788269238Z -Commit 00005828 608 keys in 12ms 206µs 116ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005826 | 00005825 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005827 | 00005824 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005828 | 00005823 SST | [==================================================================================================] | 00e0f194246abca0-fef6eaa7966e7b97 (0 MiB, fresh) -Time 2026-03-28T08:33:48.090418573Z -Commit 00005838 4013 keys in 22ms 684µs 487ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005834 | 00005831 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005835 | 00005830 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (2 MiB, fresh) - 2 | 00005836 | 00005829 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (6 MiB, fresh) - 3 | 00005837 | 00005832 SST | [============================================================================] | 098ee43d29ef78ae-cf4f7a8ee8bd1aee (0 MiB, fresh) - 4 | 00005838 | 00005833 SST | [==========================================] | 1d1df2a93d4d2215-8b4d33fe0cadab19 (0 MiB, fresh) -Time 2026-03-28T08:33:53.984193922Z -Commit 00005844 79 keys in 13ms 158µs 405ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005842 | 00005841 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005843 | 00005839 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005844 | 00005840 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T08:34:14.558608707Z -Commit 00005850 590 keys in 11ms 415µs 212ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005848 | 00005847 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005849 | 00005846 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005850 | 00005845 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:34:33.641774423Z -Commit 00005860 3850 keys in 18ms 245µs 840ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005856 | 00005853 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005857 | 00005852 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (1 MiB, fresh) - 2 | 00005858 | 00005851 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (6 MiB, fresh) - 3 | 00005859 | 00005854 SST | O | 021c9aef010bfb79-021c9aef010bfb79 (0 MiB, fresh) - 4 | 00005860 | 00005855 SST | O | ad2774858dc926b6-ad2774858dc926b6 (0 MiB, fresh) -Time 2026-03-28T08:38:06.564598484Z -Commit 00005870 11031 keys in 20ms 594µs 186ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005866 | 00005863 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00005867 | 00005864 SST | O | dab6de9a2da81847-dab6de9a2da81847 (0 MiB, fresh) - 4 | 00005868 | 00005865 SST | O | 12ee90dc86db82c2-12ee90dc86db82c2 (0 MiB, fresh) - 2 | 00005869 | 00005861 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (8 MiB, fresh) - 1 | 00005870 | 00005862 SST | [==================================================================================================] | 0000737dcecb7eaa-fff821cf09f2ceb3 (5 MiB, fresh) - 1 | 00005873 | Compaction: - 1 | 00005873 | MERGE (34814 keys): - 1 | 00005873 | 00005416 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005422 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00005873 | 00005427 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005434 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005439 INPUT | [==================================================================================================] | 00f99e257a792a10-fff2b4fb9e9026cc - 1 | 00005873 | 00005446 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 1 | 00005873 | 00005451 INPUT | [==================================================================================================] | 005187818301636f-ffc2b864b4ce0290 - 1 | 00005873 | 00005462 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005468 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005474 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005479 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005485 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 1 | 00005873 | 00005491 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005497 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005503 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 1 | 00005873 | 00005510 INPUT | [==========================================================================] | 3d1e6b20222fda3d-fb54ece5c4716af8 - 1 | 00005873 | 00005516 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005522 INPUT | [==================================================================================================] | 006ec0d842304288-fff2b4fb9e9026cc - 1 | 00005873 | 00005527 INPUT | [==================================================================================================] | 00f99e257a792a10-ffc2b864b4ce0290 - 1 | 00005873 | 00005533 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 1 | 00005873 | 00005546 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00005873 | 00005552 INPUT | [==========================================] | 3d1e6b20222fda3d-a97b2a3dd634e045 - 1 | 00005873 | 00005557 INPUT | O | d4caf2e664a9b09e-d4caf2e664a9b09e - 1 | 00005873 | 00005563 INPUT | [==================================================================================================] | 0057a22f0ec1be97-ff78e55e141da030 - 1 | 00005873 | 00005569 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffd12f91ef0ac8f6 - 1 | 00005873 | 00005575 INPUT | [==================================================================================================] | 006ec0d842304288-ffc2b864b4ce0290 - 1 | 00005873 | 00005582 INPUT | [==================================================================================================] | 01ce2954e249a91d-ffc2b864b4ce0290 - 1 | 00005873 | 00005588 INPUT | [==================================================================================================] | 00114172b3cc83f8-fff044f275e8987d - 1 | 00005873 | 00005597 INPUT | [==================================================================================================] | 00331b89f0453569-ffdadfbe0d57a332 - 1 | 00005873 | 00005607 INPUT | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 - 1 | 00005873 | 00005613 INPUT | O | 620f1fc9ac4831b8-620f1fc9ac4831b8 - 1 | 00005873 | 00005620 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff821cf09f2ceb3 - 1 | 00005873 | 00005630 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffc2b864b4ce0290 - 1 | 00005873 | 00005636 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00005873 | 00005645 INPUT | O | fa61a98f688ae8a4-fa61a98f688ae8a4 - 1 | 00005873 | 00005651 INPUT | O | 70e3cb149e55457e-70e3cb149e55457e - 1 | 00005873 | 00005658 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00005873 | 00005668 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00005873 | 00005677 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00005873 | 00005684 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00005873 | 00005690 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00005873 | 00005695 INPUT | [=============================================================================================] | 08f4cbfca2c704b9-f98fc7e477a60571 - 1 | 00005873 | 00005702 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00005873 | 00005708 INPUT | [==================================================================================================] | 000801e97f7ace52-ffef5c90a20d9597 - 1 | 00005873 | 00005714 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffc2b864b4ce0290 - 1 | 00005873 | 00005724 INPUT | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 - 1 | 00005873 | 00005730 INPUT | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 - 1 | 00005873 | 00005736 INPUT | [==================================================================================================] | 0029e3cce1b51f25-fff187cd7cce0e80 - 1 | 00005873 | 00005741 INPUT | [=================================================================================================] | 03731c6b3218d210-fe641b4c44c7b0da - 1 | 00005873 | 00005748 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00005873 | 00005753 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 1 | 00005873 | 00005765 INPUT | [==================================================================================================] | 000ad78cd459fff9-ffe4c6509ab58d7e - 1 | 00005873 | 00005775 INPUT | [=============================================================================================] | 08f4cbfca2c704b9-f98fc7e477a60571 - 1 | 00005873 | 00005782 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffec4aeb0538aa5f - 1 | 00005873 | 00005792 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00005873 | 00005797 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00005873 | 00005804 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00005873 | 00005814 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00005873 | 00005824 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00005873 | 00005830 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00005873 | 00005839 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00005873 | 00005846 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00005873 | 00005852 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00005873 | 00005862 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff821cf09f2ceb3 - 1 | 00005873 | 00005872 OUTPUT | [==================================================================================================] | 001fc8813500c00c-ffd400c4c1e9e47b (cold) - 1 | 00005873 | 00005871 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (warm) -Time 2026-03-28T08:38:07.36249631Z -Commit 00005874 34814 keys in 52ms 924µs 46ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00005873 | 00005872 SST | [==================================================================================================] | 001fc8813500c00c-ffd400c4c1e9e47b (0 MiB, cold) - 1 | 00005873 | 00005871 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (10 MiB, warm) - 1 | 00005873 | 00005416 00005422 00005427 00005434 00005439 00005446 00005451 00005462 00005468 00005474 00005479 00005485 00005491 00005497 00005503 OBSOLETE SST - 1 | 00005873 | 00005510 00005516 00005522 00005527 00005533 00005546 00005552 00005557 00005563 00005569 00005575 00005582 00005588 00005597 00005607 OBSOLETE SST - 1 | 00005873 | 00005613 00005620 00005630 00005636 00005645 00005651 00005658 00005668 00005677 00005684 00005690 00005695 00005702 00005708 00005714 OBSOLETE SST - 1 | 00005873 | 00005724 00005730 00005736 00005741 00005748 00005753 00005765 00005775 00005782 00005792 00005797 00005804 00005814 00005824 00005830 OBSOLETE SST - 1 | 00005873 | 00005839 00005846 00005852 00005862 OBSOLETE SST - | | 00005416 00005422 00005427 00005434 00005439 00005446 00005451 00005462 00005468 00005474 00005479 00005485 00005491 00005497 00005503 SST DELETED - | | 00005510 00005516 00005522 00005527 00005533 00005546 00005552 00005557 00005563 00005569 00005575 00005582 00005588 00005597 00005607 SST DELETED - | | 00005613 00005620 00005630 00005636 00005645 00005651 00005658 00005668 00005677 00005684 00005690 00005695 00005702 00005708 00005714 SST DELETED - | | 00005724 00005730 00005736 00005741 00005748 00005753 00005765 00005775 00005782 00005792 00005797 00005804 00005814 00005824 00005830 SST DELETED - | | 00005839 00005846 00005852 00005862 SST DELETED - | | 00005419 00005426 00005431 00005437 00005443 00005450 00005457 00005465 00005471 00005477 00005483 00005489 00005495 00005501 00005507 META DELETED - | | 00005513 00005519 00005526 00005531 00005537 00005549 00005555 00005561 00005567 00005573 00005579 00005585 00005595 00005603 00005611 META DELETED - | | 00005617 00005628 00005633 00005644 00005649 00005655 00005663 00005673 00005681 00005687 00005693 00005699 00005706 00005711 00005720 META DELETED - | | 00005728 00005733 00005739 00005745 00005751 00005757 00005773 00005778 00005790 00005795 00005801 00005808 00005819 00005827 00005835 META DELETED - | | 00005843 00005849 00005857 00005870 META DELETED -Time 2026-03-28T08:38:39.19763029Z -Commit 00005884 10946 keys in 21ms 519µs 487ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005880 | 00005877 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00005881 | 00005878 SST | [==========================] | 9aef6d7e014b46d3-df6c99ab4602dc1e (0 MiB, fresh) - 4 | 00005882 | 00005879 SST | [==============================] | 2ae0f33b3caebd6f-7a34c38493445557 (0 MiB, fresh) - 2 | 00005883 | 00005875 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (8 MiB, fresh) - 1 | 00005884 | 00005876 SST | [==================================================================================================] | 0000737dcecb7eaa-fff821cf09f2ceb3 (5 MiB, fresh) - 2 | 00005889 | Compaction: - 2 | 00005889 | MERGE (445659 keys): - 2 | 00005889 | 00005759 INPUT | [====================================] | 00000def41531d98-610d11b4a397b88a - 2 | 00005889 | 00005761 INPUT | [==============================] | 610d2515e684c882-b0723e0efdf2a6e8 - 2 | 00005889 | 00005762 INPUT | [==============================] | b07254ac869c8a19-ffffec37b1df3f15 - 2 | 00005889 | 00005760 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe7cb8f2c6deb1 - 2 | 00005889 | 00005766 INPUT | [==================================================================================================] | 000ad78cd459fff9-ffe0dd8a35583e73 - 2 | 00005889 | 00005776 INPUT | [=============================================================================================] | 08f4cbfca2c704b9-f98fc7e477a60571 - 2 | 00005889 | 00005781 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005889 | 00005791 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00005889 | 00005798 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00005889 | 00005803 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005889 | 00005813 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005889 | 00005823 INPUT | [==================================================================================================] | 00e0f194246abca0-fef6eaa7966e7b97 - 2 | 00005889 | 00005829 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005889 | 00005840 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 2 | 00005889 | 00005845 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00005889 | 00005851 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005889 | 00005861 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005889 | 00005875 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00005889 | 00005885 OUTPUT | [===================================] | 00000def41531d98-5cb734a7ab8859f0 (cold) - 2 | 00005889 | 00005887 OUTPUT | [===============================] | 5cb800f770856f66-ae4d25af4f847966 (cold) - 2 | 00005889 | 00005888 OUTPUT | [==============================] | ae4d5188c9ddee25-ffffec37b1df3f15 (cold) - 2 | 00005889 | 00005886 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe0dd8a35583e73 (warm) -Time 2026-03-28T08:38:42.088848286Z -Commit 00005890 445659 keys in 252ms 657µs 811ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00005889 | 00005885 SST | [===================================] | 00000def41531d98-5cb734a7ab8859f0 (91 MiB, cold) - 2 | 00005889 | 00005887 SST | [===============================] | 5cb800f770856f66-ae4d25af4f847966 (76 MiB, cold) - 2 | 00005889 | 00005888 SST | [==============================] | ae4d5188c9ddee25-ffffec37b1df3f15 (77 MiB, cold) - 2 | 00005889 | 00005886 SST | [==================================================================================================] | 0000737dcecb7eaa-ffe0dd8a35583e73 (23 MiB, warm) - 2 | 00005889 | 00005759 00005760 00005761 00005762 00005766 00005776 00005781 00005791 00005798 00005803 00005813 00005823 00005829 00005840 00005845 OBSOLETE SST - 2 | 00005889 | 00005851 00005861 00005875 OBSOLETE SST - | | 00005759 00005760 00005761 00005762 00005766 00005776 00005781 00005791 00005798 00005803 00005813 00005823 00005829 00005840 00005845 SST DELETED - | | 00005851 00005861 00005875 SST DELETED - | | 00005763 00005774 00005780 00005788 00005796 00005802 00005810 00005822 00005828 00005836 00005844 00005850 00005858 00005869 00005883 META DELETED -Time 2026-03-28T08:39:46.398120633Z -Commit 00005896 542 keys in 9ms 776µs 923ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005894 | 00005893 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005895 | 00005892 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005896 | 00005891 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:40:46.001751477Z -Commit 00005902 1260 keys in 13ms 549µs 139ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005900 | 00005899 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005901 | 00005897 SST | [==================================================================================================] | 00e0f194246abca0-ffdadfbe0d57a332 (0 MiB, fresh) - 1 | 00005902 | 00005898 SST | [==================================================================================================] | 00e0f194246abca0-ffdadfbe0d57a332 (0 MiB, fresh) -Time 2026-03-28T08:41:31.88592859Z -Commit 00005908 565 keys in 13ms 46µs 636ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005906 | 00005905 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005907 | 00005904 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005908 | 00005903 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:41:43.943660237Z -Commit 00005914 537 keys in 10ms 659µs 363ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005912 | 00005911 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005913 | 00005910 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005914 | 00005909 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:42:13.365590723Z -Commit 00005920 565 keys in 9ms 669µs 141ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005918 | 00005917 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005919 | 00005916 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005920 | 00005915 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:42:18.068238965Z -Commit 00005926 565 keys in 15ms 895µs 954ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005924 | 00005923 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005925 | 00005921 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005926 | 00005922 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:45:09.303481353Z -Commit 00005932 587 keys in 14ms 433µs 582ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005930 | 00005929 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005931 | 00005928 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005932 | 00005927 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T08:45:58.353626705Z -Commit 00005938 83 keys in 14ms 419µs 739ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005936 | 00005935 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005937 | 00005934 SST | [===============================================================================================] | 07c39c20a18e1236-ff2f5ef8b96e42cb (0 MiB, fresh) - 2 | 00005938 | 00005933 SST | [============================================================================================] | 0b9cb4f74c19b653-fa61a98f688ae8a4 (0 MiB, fresh) -Time 2026-03-28T08:54:33.360731833Z -Commit 00005948 659 keys in 15ms 481µs 609ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005944 | 00005941 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005945 | 00005940 SST | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005946 | 00005939 SST | [==================================================================================================] | 00df6768872514da-fea290f7f862d517 (0 MiB, fresh) - 4 | 00005947 | 00005942 SST | [====================] | 30e8870f38a4150f-66e3bfd295f0c93a (0 MiB, fresh) - 3 | 00005948 | 00005943 SST | [================================================] | 72d86cc0f7b7ce9f-f0259032a858a7c9 (0 MiB, fresh) -Time 2026-03-28T08:54:46.144495344Z -Commit 00005954 347 keys in 14ms 739µs 71ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005952 | 00005951 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005953 | 00005950 SST | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00005954 | 00005949 SST | [===============================================================================================] | 06c8b171e8eea748-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-28T08:54:51.757289067Z -Commit 00005960 4 keys in 11ms 776µs 394ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005958 | 00005957 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005959 | 00005955 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) - 2 | 00005960 | 00005956 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) -Time 2026-03-28T08:54:57.873719336Z -Commit 00005966 223 keys in 14ms 689µs 667ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005964 | 00005963 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00005965 | 00005962 SST | [=================================================================================================] | 00f99e257a792a10-fb9eb72762a6d004 (0 MiB, fresh) - 1 | 00005966 | 00005961 SST | [==================================================================================================] | 006ec0d842304288-fe3b2154ed000e26 (0 MiB, fresh) -Time 2026-03-28T08:55:07.179162173Z -Commit 00005972 119 keys in 11ms 269µs 406ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005970 | 00005969 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005971 | 00005967 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005972 | 00005968 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T08:55:10.650569489Z -Commit 00005978 119 keys in 13ms 272µs 303ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005976 | 00005975 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005977 | 00005973 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005978 | 00005974 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T08:55:15.099215768Z -Commit 00005984 119 keys in 14ms 279µs 822ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005982 | 00005981 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005983 | 00005979 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005984 | 00005980 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T08:55:22.10953836Z -Commit 00005990 4 keys in 13ms 327µs 213ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005988 | 00005987 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005989 | 00005985 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00005990 | 00005986 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-28T08:55:31.861667028Z -Commit 00005996 119 keys in 12ms 968µs 164ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00005994 | 00005993 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00005995 | 00005992 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00005996 | 00005991 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T08:56:03.732450405Z -Commit 00006002 4 keys in 13ms 685µs 594ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006000 | 00005999 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006001 | 00005997 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) - 2 | 00006002 | 00005998 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) -Time 2026-03-28T09:05:07.697748965Z -Commit 00006008 448 keys in 13ms 560µs 336ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006006 | 00006005 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006007 | 00006003 SST | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006008 | 00006004 SST | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e (0 MiB, fresh) -Time 2026-03-28T09:05:28.9950984Z -Commit 00006014 505 keys in 15ms 746µs 509ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006012 | 00006011 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006013 | 00006010 SST | [==================================================================================================] | 006ec0d842304288-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006014 | 00006009 SST | [=================================================================================================] | 00f99e257a792a10-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-28T09:22:44.650312203Z -Commit 00006020 113 keys in 9ms 769µs 461ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006018 | 00006017 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006019 | 00006015 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00006020 | 00006016 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T09:24:30.503706771Z -Commit 00006030 1837 keys in 16ms 155µs 566ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006026 | 00006023 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00006027 | 00006024 SST | [============================================================================================] | 0ee12c77fd27844a-fb5ae4194d942cea (0 MiB, fresh) - 2 | 00006028 | 00006021 SST | [==================================================================================================] | 0010e26242e36d1c-ffdf49f7b8669a4b (0 MiB, fresh) - 1 | 00006029 | 00006022 SST | [==================================================================================================] | 0010e26242e36d1c-ffdf49f7b8669a4b (1 MiB, fresh) - 3 | 00006030 | 00006025 SST | [==============================================================================================] | 03721031d29d5397-f75de276e76000c3 (0 MiB, fresh) -Time 2026-03-28T09:25:33.077172701Z -Commit 00006040 1650 keys in 16ms 609µs 568ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006036 | 00006033 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006037 | 00006032 SST | [==================================================================================================] | 00b385ac54cb8a95-fff2b4fb9e9026cc (1 MiB, fresh) - 3 | 00006038 | 00006034 SST | [============================================================================================] | 0d41a19a10e3d572-fd2bea2824bb545e (0 MiB, fresh) - 2 | 00006039 | 00006031 SST | [==================================================================================================] | 00b385ac54cb8a95-fff2b4fb9e9026cc (4 MiB, fresh) - 4 | 00006040 | 00006035 SST | [==================================================================================================] | 0188ce7724bddce0-fe5ea6c1125e057c (0 MiB, fresh) -Time 2026-03-28T09:26:04.927281687Z -Commit 00006046 1397 keys in 10ms 614µs 689ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006044 | 00006043 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006045 | 00006042 SST | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f (1 MiB, fresh) - 2 | 00006046 | 00006041 SST | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f (0 MiB, fresh) -Time 2026-03-28T09:27:04.419363822Z -Commit 00006056 5343 keys in 17ms 510µs 880ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006052 | 00006049 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00006053 | 00006051 SST | [=================================================================================================] | 01b9e58de66703b9-fbff03dc1191eb08 (0 MiB, fresh) - 2 | 00006054 | 00006047 SST | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f (0 MiB, fresh) - 1 | 00006055 | 00006048 SST | [==================================================================================================] | 000ad78cd459fff9-ffd02d39af75d27f (1 MiB, fresh) - 3 | 00006056 | 00006050 SST | [=============================================================================================] | 0e5b3af496eb63eb-fe65af2eb7277a4b (0 MiB, fresh) -Time 2026-03-28T09:27:35.594934835Z -Commit 00006062 1270 keys in 9ms 255µs 617ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006060 | 00006059 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006061 | 00006058 SST | [==================================================================================================] | 000ad78cd459fff9-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006062 | 00006057 SST | [==================================================================================================] | 0010e26242e36d1c-ff303b290e134e27 (0 MiB, fresh) -Time 2026-03-28T09:27:43.69433942Z -Commit 00006068 455 keys in 10ms 35µs 3ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006066 | 00006065 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006067 | 00006063 SST | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006068 | 00006064 SST | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e (0 MiB, fresh) -Time 2026-03-28T09:28:17.77322903Z -Commit 00006074 949 keys in 11ms 832µs 835ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006072 | 00006071 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006073 | 00006070 SST | [==================================================================================================] | 00bc9fb3e020309a-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006074 | 00006069 SST | [==================================================================================================] | 00df6768872514da-ff9f467c2a100bb1 (4 MiB, fresh) -Time 2026-03-28T09:29:02.495009742Z -Commit 00006080 411 keys in 12ms 361µs 962ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006078 | 00006077 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006079 | 00006075 SST | [==================================================================================================] | 00f99e257a792a10-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006080 | 00006076 SST | [=================================================================================================] | 00f99e257a792a10-fc9dae7129cf8169 (0 MiB, fresh) -Time 2026-03-28T09:29:06.125666831Z -Commit 00006086 453 keys in 12ms 115µs 809ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006084 | 00006083 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006085 | 00006082 SST | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006086 | 00006081 SST | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e (0 MiB, fresh) -Time 2026-03-28T09:30:05.895911003Z -Commit 00006092 894 keys in 11ms 881µs 822ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006090 | 00006089 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006091 | 00006088 SST | [==================================================================================================] | 00bc9fb3e020309a-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006092 | 00006087 SST | [==================================================================================================] | 00f99e257a792a10-ff9f467c2a100bb1 (4 MiB, fresh) -Time 2026-03-28T09:30:34.063668428Z -Commit 00006098 453 keys in 8ms 666µs 457ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006096 | 00006095 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006097 | 00006094 SST | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006098 | 00006093 SST | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e (0 MiB, fresh) -Time 2026-03-28T09:32:01.944228833Z -Commit 00006104 1102 keys in 12ms 216µs 283ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006102 | 00006101 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006103 | 00006099 SST | [==================================================================================================] | 00bc9fb3e020309a-ff9f467c2a100bb1 (4 MiB, fresh) - 1 | 00006104 | 00006100 SST | [==================================================================================================] | 00451748c51e234a-ffc2b864b4ce0290 (1 MiB, fresh) -Time 2026-03-28T09:32:06.415042326Z -Commit 00006110 90 keys in 10ms 176µs 113ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006108 | 00006107 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006109 | 00006106 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00006110 | 00006105 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T09:32:14.128963Z -Commit 00006116 312 keys in 12ms 506µs 722ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006114 | 00006113 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006115 | 00006111 SST | [==================================================================================================] | 006ec0d842304288-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00006116 | 00006112 SST | [=================================================================================================] | 03c94718b74fd0e7-fff2b4fb9e9026cc (1 MiB, fresh) -Time 2026-03-28T09:32:31.058777989Z -Commit 00006122 108 keys in 9ms 411µs 438ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006120 | 00006119 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006121 | 00006118 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00006122 | 00006117 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T09:32:48.388891066Z -Commit 00006128 138 keys in 9ms 169µs 581ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006126 | 00006125 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006127 | 00006123 SST | [==================================================================================================] | 0057a22f0ec1be97-fe6fc3e93ff272b3 (0 MiB, fresh) - 1 | 00006128 | 00006124 SST | [==================================================================================================] | 0057a22f0ec1be97-ff78e55e141da030 (0 MiB, fresh) -Time 2026-03-28T09:34:14.494832288Z -Commit 00006134 457 keys in 9ms 578µs 282ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006132 | 00006131 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006133 | 00006130 SST | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006134 | 00006129 SST | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e (0 MiB, fresh) -Time 2026-03-28T09:34:26.91116004Z -Commit 00006140 597 keys in 9ms 749µs 635ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006138 | 00006137 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006139 | 00006136 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006140 | 00006135 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T09:34:34.008784567Z -Commit 00006146 4 keys in 12ms 333µs 557ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006144 | 00006143 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006145 | 00006141 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00006146 | 00006142 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-28T09:34:36.808071137Z -Commit 00006152 4 keys in 11ms 552µs 75ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006150 | 00006149 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006151 | 00006147 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) - 2 | 00006152 | 00006148 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-28T09:34:55.015627314Z -Commit 00006158 130 keys in 9ms 634µs 326ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006156 | 00006155 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006157 | 00006153 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006158 | 00006154 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T09:35:00.86913465Z -Commit 00006164 4 keys in 10ms 100µs 530ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006162 | 00006161 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006163 | 00006159 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00006164 | 00006160 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-28T09:35:11.153970232Z -Commit 00006170 595 keys in 10ms 210µs 474ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006168 | 00006167 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006169 | 00006166 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006170 | 00006165 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T09:35:14.354141893Z -Commit 00006176 595 keys in 10ms 399µs 344ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006174 | 00006173 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006175 | 00006172 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006176 | 00006171 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T09:35:17.031787043Z -Commit 00006182 4 keys in 10ms 335µs 794ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006180 | 00006179 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006181 | 00006177 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) - 2 | 00006182 | 00006178 SST | O | a97b2a3dd634e045-a97b2a3dd634e045 (0 MiB, fresh) -Time 2026-03-28T09:35:22.727777945Z -Commit 00006188 595 keys in 11ms 119µs 278ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006186 | 00006185 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006187 | 00006184 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006188 | 00006183 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T09:35:27.253063861Z -Commit 00006194 595 keys in 10ms 452µs 709ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006192 | 00006191 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006193 | 00006190 SST | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006194 | 00006189 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T09:35:34.644733319Z -Commit 00006200 10 keys in 9ms 19µs 618ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006198 | 00006197 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006199 | 00006195 SST | [=========================================================================] | 3cbb08597f9a8187-fa61a98f688ae8a4 (0 MiB, fresh) - 1 | 00006200 | 00006196 SST | [=========================================================================] | 3cbb08597f9a8187-fa61a98f688ae8a4 (0 MiB, fresh) -Time 2026-03-28T09:35:59.088844004Z -Commit 00006206 528 keys in 12ms 364µs 124ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006204 | 00006203 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006205 | 00006202 SST | [==================================================================================================] | 006ec0d842304288-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006206 | 00006201 SST | [=================================================================================================] | 00f99e257a792a10-fc9dae7129cf8169 (0 MiB, fresh) -Time 2026-03-28T09:36:09.086222995Z -Commit 00006212 4 keys in 12ms 50µs 339ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006210 | 00006209 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006211 | 00006207 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00006212 | 00006208 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-28T09:36:29.60590095Z -Commit 00006218 130 keys in 12ms 298µs 888ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006216 | 00006215 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006217 | 00006214 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006218 | 00006213 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T09:41:18.013089224Z -Commit 00006224 4 keys in 11ms 464µs 151ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006222 | 00006221 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006223 | 00006219 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) - 2 | 00006224 | 00006220 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) -Time 2026-03-28T09:41:21.893563208Z -Commit 00006230 4 keys in 11ms 930µs 563ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006228 | 00006227 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006229 | 00006225 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00006230 | 00006226 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-28T09:42:01.563380241Z -Commit 00006236 528 keys in 11ms 741µs 273ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006234 | 00006233 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006235 | 00006232 SST | [==================================================================================================] | 006ec0d842304288-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006236 | 00006231 SST | [=================================================================================================] | 00f99e257a792a10-fc9dae7129cf8169 (0 MiB, fresh) -Time 2026-03-28T09:42:05.706489839Z -Commit 00006242 4 keys in 11ms 131µs 416ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006240 | 00006239 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006241 | 00006237 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) - 2 | 00006242 | 00006238 SST | O | 3d1e6b20222fda3d-3d1e6b20222fda3d (0 MiB, fresh) -Time 2026-03-28T09:42:10.369576812Z -Commit 00006248 4 keys in 11ms 826µs 475ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006246 | 00006245 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006247 | 00006243 SST | O | fa61a98f688ae8a4-fa61a98f688ae8a4 (0 MiB, fresh) - 2 | 00006248 | 00006244 SST | O | fa61a98f688ae8a4-fa61a98f688ae8a4 (0 MiB, fresh) -Time 2026-03-28T09:50:25.741900994Z -Commit 00006258 1568 keys in 17ms 890µs 460ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006254 | 00006251 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00006255 | 00006253 SST | [================================================================================================] | 04bd227cd6ddac87-fc85a2d5efc04d50 (0 MiB, fresh) - 3 | 00006256 | 00006252 SST | [==================================================================================================] | 00c4b16a4c13a7ee-ff295b3be6ed3309 (0 MiB, fresh) - 1 | 00006257 | 00006250 SST | [==================================================================================================] | 000ad78cd459fff9-ffc2b864b4ce0290 (1 MiB, fresh) - 2 | 00006258 | 00006249 SST | [==================================================================================================] | 000ad78cd459fff9-ff303b290e134e27 (0 MiB, fresh) -Time 2026-03-28T09:53:33.495472094Z -Commit 00006268 3020 keys in 16ms 820µs 371ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006264 | 00006261 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00006265 | 00006263 SST | [==================================================================================================] | 01e053317d055373-ffa5c2de39343103 (0 MiB, fresh) - 2 | 00006266 | 00006259 SST | [==================================================================================================] | 0079297cb331b81a-ff365382680d1ecc (1 MiB, fresh) - 4 | 00006267 | 00006262 SST | [================================================================================================] | 02fffb8061b1aa55-fb2018bf012be0f1 (0 MiB, fresh) - 1 | 00006268 | 00006260 SST | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 (1 MiB, fresh) -Time 2026-03-28T09:53:50.279204275Z -Commit 00006278 2945 keys in 14ms 224µs 36ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006274 | 00006271 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006275 | 00006270 SST | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 (1 MiB, fresh) - 2 | 00006276 | 00006269 SST | [==================================================================================================] | 0053019b26041ca7-ff365382680d1ecc (1 MiB, fresh) - 4 | 00006277 | 00006273 SST | [==================================================================================================] | 0053019b26041ca7-feefe2797a787e7d (0 MiB, fresh) - 3 | 00006278 | 00006272 SST | [==================================================================================================] | 000ea5588aea1209-ff46bcbb31da1cb5 (0 MiB, fresh) -Time 2026-03-28T09:53:53.197068328Z -Commit 00006288 19643 keys in 21ms 362µs 194ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006284 | 00006281 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00006285 | 00006282 SST | [==================================================================================================] | 004211ec22068af2-ff7958e99f44734a (0 MiB, fresh) - 3 | 00006286 | 00006283 SST | [==================================================================================================] | 003d889b002e0494-fffbdaec9cc95bda (0 MiB, fresh) - 2 | 00006287 | 00006279 SST | [==================================================================================================] | 000e38051a60fc7c-fff2b4fb9e9026cc (9 MiB, fresh) - 1 | 00006288 | 00006280 SST | [==================================================================================================] | 0004b93e0afd3cd9-fffa7cd5097e8a6a (4 MiB, fresh) -Time 2026-03-28T09:55:16.029997453Z -Commit 00006298 6189 keys in 21ms 45µs 922ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006294 | 00006291 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00006295 | 00006292 SST | O | 2ff367fd236b9373-2ff367fd236b9373 (0 MiB, fresh) - 2 | 00006296 | 00006289 SST | [==================================================================================================] | 003b0ac5c868db1a-fff2b4fb9e9026cc (4 MiB, fresh) - 4 | 00006297 | 00006293 SST | O | cf5b81ccd8a3b6cf-cf5b81ccd8a3b6cf (0 MiB, fresh) - 1 | 00006298 | 00006290 SST | [==================================================================================================] | 000801e97f7ace52-fff2b4fb9e9026cc (3 MiB, fresh) - 2 | 00006301 | Compaction: - 2 | 00006301 | MERGE (154311 keys): - 2 | 00006301 | 00005888 INPUT | [==============================] | ae4d5188c9ddee25-ffffec37b1df3f15 - 2 | 00006301 | 00005886 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffe0dd8a35583e73 - 2 | 00006301 | 00005891 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00005897 INPUT | [==================================================================================================] | 00e0f194246abca0-ffdadfbe0d57a332 - 2 | 00006301 | 00005903 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00005909 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00005915 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00005922 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00005927 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00005933 INPUT | [============================================================================================] | 0b9cb4f74c19b653-fa61a98f688ae8a4 - 2 | 00006301 | 00005939 INPUT | [==================================================================================================] | 00df6768872514da-fea290f7f862d517 - 2 | 00006301 | 00005949 INPUT | [===============================================================================================] | 06c8b171e8eea748-fc14d191b68d496a - 2 | 00006301 | 00005956 INPUT | O | 3cbb08597f9a8187-3cbb08597f9a8187 - 2 | 00006301 | 00005962 INPUT | [=================================================================================================] | 00f99e257a792a10-fb9eb72762a6d004 - 2 | 00006301 | 00005968 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00006301 | 00005974 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00006301 | 00005980 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00006301 | 00005986 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00006301 | 00005991 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00006301 | 00005998 INPUT | O | 3cbb08597f9a8187-3cbb08597f9a8187 - 2 | 00006301 | 00006004 INPUT | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e - 2 | 00006301 | 00006009 INPUT | [=================================================================================================] | 00f99e257a792a10-fc14d191b68d496a - 2 | 00006301 | 00006016 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00006301 | 00006021 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffdf49f7b8669a4b - 2 | 00006301 | 00006031 INPUT | [==================================================================================================] | 00b385ac54cb8a95-fff2b4fb9e9026cc - 2 | 00006301 | 00006041 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f - 2 | 00006301 | 00006047 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f - 2 | 00006301 | 00006057 INPUT | [==================================================================================================] | 0010e26242e36d1c-ff303b290e134e27 - 2 | 00006301 | 00006064 INPUT | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e - 2 | 00006301 | 00006069 INPUT | [==================================================================================================] | 00df6768872514da-ff9f467c2a100bb1 - 2 | 00006301 | 00006076 INPUT | [=================================================================================================] | 00f99e257a792a10-fc9dae7129cf8169 - 2 | 00006301 | 00006081 INPUT | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e - 2 | 00006301 | 00006087 INPUT | [==================================================================================================] | 00f99e257a792a10-ff9f467c2a100bb1 - 2 | 00006301 | 00006093 INPUT | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e - 2 | 00006301 | 00006099 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ff9f467c2a100bb1 - 2 | 00006301 | 00006105 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00006301 | 00006112 INPUT | [=================================================================================================] | 03c94718b74fd0e7-fff2b4fb9e9026cc - 2 | 00006301 | 00006117 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00006301 | 00006123 INPUT | [==================================================================================================] | 0057a22f0ec1be97-fe6fc3e93ff272b3 - 2 | 00006301 | 00006129 INPUT | [==================================================================================================] | 00df6768872514da-fe6c9353f46b4f0e - 2 | 00006301 | 00006135 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00006142 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00006301 | 00006148 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 2 | 00006301 | 00006154 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 - 2 | 00006301 | 00006160 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00006301 | 00006165 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00006171 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00006178 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 2 | 00006301 | 00006183 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00006189 INPUT | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 - 2 | 00006301 | 00006195 INPUT | [=========================================================================] | 3cbb08597f9a8187-fa61a98f688ae8a4 - 2 | 00006301 | 00006201 INPUT | [=================================================================================================] | 00f99e257a792a10-fc9dae7129cf8169 - 2 | 00006301 | 00006208 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00006301 | 00006213 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 - 2 | 00006301 | 00006220 INPUT | O | 3cbb08597f9a8187-3cbb08597f9a8187 - 2 | 00006301 | 00006226 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00006301 | 00006231 INPUT | [=================================================================================================] | 00f99e257a792a10-fc9dae7129cf8169 - 2 | 00006301 | 00006238 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 2 | 00006301 | 00006244 INPUT | O | fa61a98f688ae8a4-fa61a98f688ae8a4 - 2 | 00006301 | 00006249 INPUT | [==================================================================================================] | 000ad78cd459fff9-ff303b290e134e27 - 2 | 00006301 | 00006259 INPUT | [==================================================================================================] | 0079297cb331b81a-ff365382680d1ecc - 2 | 00006301 | 00006269 INPUT | [==================================================================================================] | 0053019b26041ca7-ff365382680d1ecc - 2 | 00006301 | 00006279 INPUT | [==================================================================================================] | 000e38051a60fc7c-fff2b4fb9e9026cc - 2 | 00006301 | 00006289 INPUT | [==================================================================================================] | 003b0ac5c868db1a-fff2b4fb9e9026cc - 2 | 00006301 | 00006300 OUTPUT | [==================================================================================================] | 001fabc0094c521e-ffffec37b1df3f15 (cold) - 2 | 00006301 | 00006299 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (warm) -Time 2026-03-28T09:55:16.999475905Z -Commit 00006302 154311 keys in 111ms 424µs 925ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00006301 | 00006300 SST | [==================================================================================================] | 001fabc0094c521e-ffffec37b1df3f15 (78 MiB, cold) - 2 | 00006301 | 00006299 SST | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (26 MiB, warm) - 2 | 00006301 | 00005886 00005888 00005891 00005897 00005903 00005909 00005915 00005922 00005927 00005933 00005939 00005949 00005956 00005962 00005968 OBSOLETE SST - 2 | 00006301 | 00005974 00005980 00005986 00005991 00005998 00006004 00006009 00006016 00006021 00006031 00006041 00006047 00006057 00006064 00006069 OBSOLETE SST - 2 | 00006301 | 00006076 00006081 00006087 00006093 00006099 00006105 00006112 00006117 00006123 00006129 00006135 00006142 00006148 00006154 00006160 OBSOLETE SST - 2 | 00006301 | 00006165 00006171 00006178 00006183 00006189 00006195 00006201 00006208 00006213 00006220 00006226 00006231 00006238 00006244 00006249 OBSOLETE SST - 2 | 00006301 | 00006259 00006269 00006279 00006289 OBSOLETE SST - | | 00005886 00005888 00005891 00005897 00005903 00005909 00005915 00005922 00005927 00005933 00005939 00005949 00005956 00005962 00005968 SST DELETED - | | 00005974 00005980 00005986 00005991 00005998 00006004 00006009 00006016 00006021 00006031 00006041 00006047 00006057 00006064 00006069 SST DELETED - | | 00006076 00006081 00006087 00006093 00006099 00006105 00006112 00006117 00006123 00006129 00006135 00006142 00006148 00006154 00006160 SST DELETED - | | 00006165 00006171 00006178 00006183 00006189 00006195 00006201 00006208 00006213 00006220 00006226 00006231 00006238 00006244 00006249 SST DELETED - | | 00006259 00006269 00006279 00006289 SST DELETED - | | 00005896 00005901 00005908 00005914 00005920 00005926 00005932 00005938 00005946 00005954 00005960 00005965 00005972 00005978 00005984 META DELETED - | | 00005990 00005996 00006002 00006008 00006014 00006020 00006028 00006039 00006046 00006054 00006062 00006068 00006074 00006080 00006086 META DELETED - | | 00006092 00006098 00006103 00006110 00006116 00006122 00006127 00006134 00006140 00006146 00006152 00006158 00006164 00006170 00006176 META DELETED - | | 00006182 00006188 00006194 00006199 00006206 00006212 00006218 00006224 00006230 00006236 00006242 00006248 00006258 00006266 00006276 META DELETED - | | 00006287 00006296 META DELETED -Time 2026-03-28T09:55:46.047587038Z -Commit 00006308 310 keys in 12ms 247µs 651ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006306 | 00006305 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006307 | 00006304 SST | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006308 | 00006303 SST | [================================================================================================] | 06c8b171e8eea748-fda01f64d7e9163d (0 MiB, fresh) - 2 | 00006313 | Compaction: - 2 | 00006313 | MERGE (447323 keys): - 2 | 00006313 | 00005885 INPUT | [===================================] | 00000def41531d98-5cb734a7ab8859f0 - 2 | 00006313 | 00005887 INPUT | [===============================] | 5cb800f770856f66-ae4d25af4f847966 - 2 | 00006313 | 00006300 INPUT | [==================================================================================================] | 001fabc0094c521e-ffffec37b1df3f15 - 2 | 00006313 | 00006299 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc - 2 | 00006313 | 00006303 INPUT | [================================================================================================] | 06c8b171e8eea748-fda01f64d7e9163d - 2 | 00006313 | 00006309 OUTPUT | [=================================] | 00000def41531d98-5731cdbf1531e71a (cold) - 2 | 00006313 | 00006311 OUTPUT | [================================] | 57323c8b30442513-ab8570127238bd9d (cold) - 2 | 00006313 | 00006312 OUTPUT | [===============================] | ab85777f71ef2c5d-ffffec37b1df3f15 (cold) - 2 | 00006313 | 00006310 OUTPUT | [========================================================================================] | 1bc4a3727a47d548-fda01f64d7e9163d (warm) -Time 2026-03-28T09:55:47.693041727Z -Commit 00006314 447323 keys in 174ms 685µs 826ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00006313 | 00006309 SST | [=================================] | 00000def41531d98-5731cdbf1531e71a (92 MiB, cold) - 2 | 00006313 | 00006311 SST | [================================] | 57323c8b30442513-ab8570127238bd9d (91 MiB, cold) - 2 | 00006313 | 00006312 SST | [===============================] | ab85777f71ef2c5d-ffffec37b1df3f15 (86 MiB, cold) - 2 | 00006313 | 00006310 SST | [========================================================================================] | 1bc4a3727a47d548-fda01f64d7e9163d (0 MiB, warm) - 2 | 00006313 | 00005885 00005887 00006299 00006300 00006303 OBSOLETE SST - | | 00005885 00005887 00006299 00006300 00006303 SST DELETED - | | 00005889 00006308 META DELETED -Time 2026-03-28T10:00:21.131455128Z -Commit 00006321 762 keys in 17ms 349µs 114ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006318 | 00006317 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006319 | 00006315 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00006320 | 00006316 SST | [=================================================================================================] | 03671ce438c5663d-fff2b4fb9e9026cc (4 MiB, fresh) - | | 00006301 META DELETED -Time 2026-03-28T10:01:00.755278297Z -Commit 00006331 19366 keys in 20ms 877µs 626ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006327 | 00006324 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00006328 | 00006325 SST | [==================================================================================================] | 00919f588e076232-fff9352ad815ae42 (0 MiB, fresh) - 3 | 00006329 | 00006326 SST | [==================================================================================================] | 00075e0568e700d4-ff44789d8c7f0c13 (0 MiB, fresh) - 2 | 00006330 | 00006322 SST | [==================================================================================================] | 0000737dcecb7eaa-fff9352ad815ae42 (9 MiB, fresh) - 1 | 00006331 | 00006323 SST | [==================================================================================================] | 0000737dcecb7eaa-fff9352ad815ae42 (4 MiB, fresh) -Time 2026-03-28T10:02:47.446298224Z -Commit 00006337 298 keys in 13ms 73µs 712ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006335 | 00006334 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006336 | 00006333 SST | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006337 | 00006332 SST | [===============================================================================================] | 06c8b171e8eea748-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-28T10:03:18.364701382Z -Commit 00006347 709 keys in 17ms 193µs 712ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006343 | 00006340 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006344 | 00006339 SST | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 (1 MiB, fresh) - 3 | 00006345 | 00006341 SST | O | 8a360fd7b9aae447-8a360fd7b9aae447 (0 MiB, fresh) - 2 | 00006346 | 00006338 SST | [=================================================================================================] | 039584dcf0ecc8ca-ff365382680d1ecc (0 MiB, fresh) - 4 | 00006347 | 00006342 SST | O | 57934766264c3fe4-57934766264c3fe4 (0 MiB, fresh) -Time 2026-03-28T10:03:27.977038094Z -Commit 00006357 3042 keys in 19ms 797µs 319ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006353 | 00006350 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00006354 | 00006351 SST | [=================================================================================================] | 02e2bba89ee52e50-fe81c3699f134749 (0 MiB, fresh) - 2 | 00006355 | 00006349 SST | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f (0 MiB, fresh) - 3 | 00006356 | 00006352 SST | [=================================================================================================] | 05060ed905af8468-feeef5a38a814946 (0 MiB, fresh) - 1 | 00006357 | 00006348 SST | [==================================================================================================] | 0010e26242e36d1c-ffef5c90a20d9597 (1 MiB, fresh) -Time 2026-03-28T10:03:49.135664674Z -Commit 00006367 7891 keys in 20ms 388µs 838ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006363 | 00006360 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 4 | 00006364 | 00006362 SST | [=================================================================================================] | 0369eeb47b3522f2-feea237ff19cabdb (0 MiB, fresh) - 1 | 00006365 | 00006359 SST | [==================================================================================================] | 000ad78cd459fff9-ffd7eb207359fa89 (2 MiB, fresh) - 2 | 00006366 | 00006358 SST | [==================================================================================================] | 000ad78cd459fff9-ffd7eb207359fa89 (7 MiB, fresh) - 3 | 00006367 | 00006361 SST | [=================================================================================================] | 02a373c8b9876623-fd98a43f87733a53 (0 MiB, fresh) -Time 2026-03-28T10:04:11.717595335Z -Commit 00006377 7204 keys in 18ms 218µs 477ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006373 | 00006370 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006374 | 00006368 SST | [==================================================================================================] | 0010e26242e36d1c-fff95c7b02d136eb (2 MiB, fresh) - 2 | 00006375 | 00006369 SST | [==================================================================================================] | 0010e26242e36d1c-fff95c7b02d136eb (3 MiB, fresh) - 4 | 00006376 | 00006371 SST | [==================================================================================================] | 00142dcf3b21f121-fff95c7b02d136eb (0 MiB, fresh) - 3 | 00006377 | 00006372 SST | [==================================================================================================] | 002a7515a12fbf0d-fef969bc873fa1da (0 MiB, fresh) -Time 2026-03-28T10:05:14.38008059Z -Commit 00006383 642 keys in 13ms 594µs 404ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006381 | 00006380 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006382 | 00006379 SST | [==================================================================================================] | 023ad35a0da9060a-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006383 | 00006378 SST | [================================================================================================] | 06c8b171e8eea748-ff2f5ef8b96e42cb (0 MiB, fresh) -Time 2026-03-28T10:06:46.75952064Z -Commit 00006393 7558 keys in 251ms 309µs 297ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006389 | 00006386 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006390 | 00006384 SST | [==================================================================================================] | 0010e26242e36d1c-fff9352ad815ae42 (2 MiB, fresh) - 1 | 00006391 | 00006385 SST | [==================================================================================================] | 0010e26242e36d1c-fff9352ad815ae42 (2 MiB, fresh) - 3 | 00006392 | 00006388 SST | [==================================================================================================] | 00208ad8d5f1e82d-ffff28b03a1d550e (0 MiB, fresh) - 4 | 00006393 | 00006387 SST | [==================================================================================================] | 00970dbfce17f0e4-ffbff186140b723f (0 MiB, fresh) -Time 2026-03-28T10:07:57.477631343Z -Commit 00006399 539 keys in 11ms 492µs 136ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006397 | 00006396 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006398 | 00006395 SST | [==================================================================================================] | 012dee8afcf017fa-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006399 | 00006394 SST | [==================================================================================================] | 012dee8afcf017fa-ff2f5ef8b96e42cb (0 MiB, fresh) -Time 2026-03-28T10:15:00.853154719Z -Commit 00006409 758 keys in 19ms 920µs 424ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006405 | 00006402 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006406 | 00006400 SST | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006407 | 00006401 SST | [==================================================================================================] | 00df6768872514da-ff2f5ef8b96e42cb (0 MiB, fresh) - 3 | 00006408 | 00006403 SST | O | 5145adc01df6c37a-5145adc01df6c37a (0 MiB, fresh) - 4 | 00006409 | 00006404 SST | O | 465728f39f72899a-465728f39f72899a (0 MiB, fresh) -Time 2026-03-28T10:15:18.144686475Z -Commit 00006419 3239 keys in 19ms 205µs 218ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006415 | 00006412 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006416 | 00006410 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (0 MiB, fresh) - 2 | 00006417 | 00006411 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (5 MiB, fresh) - 3 | 00006418 | 00006413 SST | [=======================================================================================] | 079655a0370feac7-e85bdf37e6c8a9d5 (0 MiB, fresh) - 4 | 00006419 | 00006414 SST | [====================================================================================] | 240a35c29f894a3b-fe158d9f9d57c6be (0 MiB, fresh) -Time 2026-03-28T10:20:42.017107747Z -Commit 00006425 335 keys in 11ms 375µs 629ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006423 | 00006422 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006424 | 00006421 SST | [=================================================================================================] | 0386609eea6a71f2-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006425 | 00006420 SST | [===============================================================================================] | 06c8b171e8eea748-fc14d191b68d496a (0 MiB, fresh) -Time 2026-03-28T10:20:47.964570821Z -Commit 00006431 55 keys in 11ms 681µs 458ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006429 | 00006428 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006430 | 00006427 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00006431 | 00006426 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T10:20:59.603745918Z -Commit 00006441 3102 keys in 17ms 387µs 459ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006437 | 00006434 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 3 | 00006438 | 00006435 SST | [==================================================================================================] | 013b1a12ca268437-fe6a399e0fbeae1b (0 MiB, fresh) - 4 | 00006439 | 00006436 SST | [==================================================================================================] | 0002d3f08112cb69-ffdd93cc6c5d8749 (0 MiB, fresh) - 2 | 00006440 | 00006432 SST | [==================================================================================================] | 0002d3f08112cb69-fff2b4fb9e9026cc (2 MiB, fresh) - 1 | 00006441 | 00006433 SST | [==================================================================================================] | 0002d3f08112cb69-fff2b4fb9e9026cc (0 MiB, fresh) -Time 2026-03-28T10:21:24.949758598Z -Commit 00006447 136 keys in 12ms 639µs 688ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006445 | 00006444 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006446 | 00006443 SST | [==================================================================================================] | 00bc9fb3e020309a-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006447 | 00006442 SST | [================================================================================================] | 06c8b171e8eea748-fe6fc3e93ff272b3 (0 MiB, fresh) -Time 2026-03-28T10:23:54.475470542Z -Commit 00006457 1908 keys in 17ms 678µs 730ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006453 | 00006450 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006454 | 00006448 SST | [==================================================================================================] | 00142dcf3b21f121-fff2b4fb9e9026cc (1 MiB, fresh) - 2 | 00006455 | 00006449 SST | [==================================================================================================] | 00142dcf3b21f121-fff2b4fb9e9026cc (5 MiB, fresh) - 3 | 00006456 | 00006451 SST | [========================] | 513d809de37ff54d-91dc685bf3018812 (0 MiB, fresh) - 4 | 00006457 | 00006452 SST | [==============================] | 5d3871cb27ba7726-ac590120ce7fd83e (0 MiB, fresh) -Time 2026-03-28T10:24:18.595351829Z -Commit 00006463 1151 keys in 15ms 765µs 206ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006461 | 00006460 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006462 | 00006459 SST | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00006463 | 00006458 SST | [==================================================================================================] | 00df6768872514da-fff2b4fb9e9026cc (5 MiB, fresh) -Time 2026-03-28T10:29:46.58933076Z -Commit 00006473 11883 keys in 23ms 708µs 63ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006469 | 00006466 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006470 | 00006464 SST | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (10 MiB, fresh) - 1 | 00006471 | 00006465 SST | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc (3 MiB, fresh) - 4 | 00006472 | 00006468 SST | [==================================================================================================] | 006b8283316694fc-ffee43b69233719c (0 MiB, fresh) - 3 | 00006473 | 00006467 SST | [==================================================================================================] | 00728a5a5c927e55-ffe93dca429a2664 (0 MiB, fresh) - 1 | 00006476 | Compaction: - 1 | 00006476 | MERGE (27302 keys): - 1 | 00006476 | 00006003 INPUT | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 - 1 | 00006476 | 00006010 INPUT | [==================================================================================================] | 006ec0d842304288-ffc2b864b4ce0290 - 1 | 00006476 | 00006015 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00006476 | 00006022 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffdf49f7b8669a4b - 1 | 00006476 | 00006032 INPUT | [==================================================================================================] | 00b385ac54cb8a95-fff2b4fb9e9026cc - 1 | 00006476 | 00006042 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f - 1 | 00006476 | 00006048 INPUT | [==================================================================================================] | 000ad78cd459fff9-ffd02d39af75d27f - 1 | 00006476 | 00006058 INPUT | [==================================================================================================] | 000ad78cd459fff9-ffc2b864b4ce0290 - 1 | 00006476 | 00006063 INPUT | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 - 1 | 00006476 | 00006070 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffc2b864b4ce0290 - 1 | 00006476 | 00006075 INPUT | [==================================================================================================] | 00f99e257a792a10-ffc2b864b4ce0290 - 1 | 00006476 | 00006082 INPUT | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 - 1 | 00006476 | 00006088 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ffc2b864b4ce0290 - 1 | 00006476 | 00006094 INPUT | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 - 1 | 00006476 | 00006100 INPUT | [==================================================================================================] | 00451748c51e234a-ffc2b864b4ce0290 - 1 | 00006476 | 00006106 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006476 | 00006111 INPUT | [==================================================================================================] | 006ec0d842304288-fff2b4fb9e9026cc - 1 | 00006476 | 00006118 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00006476 | 00006124 INPUT | [==================================================================================================] | 0057a22f0ec1be97-ff78e55e141da030 - 1 | 00006476 | 00006130 INPUT | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 - 1 | 00006476 | 00006136 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006476 | 00006141 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 1 | 00006476 | 00006147 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 1 | 00006476 | 00006153 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00006476 | 00006159 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 1 | 00006476 | 00006166 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006476 | 00006172 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006476 | 00006177 INPUT | O | a97b2a3dd634e045-a97b2a3dd634e045 - 1 | 00006476 | 00006184 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006476 | 00006190 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006476 | 00006196 INPUT | [=========================================================================] | 3cbb08597f9a8187-fa61a98f688ae8a4 - 1 | 00006476 | 00006202 INPUT | [==================================================================================================] | 006ec0d842304288-ffc2b864b4ce0290 - 1 | 00006476 | 00006207 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 1 | 00006476 | 00006214 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00006476 | 00006219 INPUT | O | 3cbb08597f9a8187-3cbb08597f9a8187 - 1 | 00006476 | 00006225 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 1 | 00006476 | 00006232 INPUT | [==================================================================================================] | 006ec0d842304288-ffc2b864b4ce0290 - 1 | 00006476 | 00006237 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 1 | 00006476 | 00006243 INPUT | O | fa61a98f688ae8a4-fa61a98f688ae8a4 - 1 | 00006476 | 00006250 INPUT | [==================================================================================================] | 000ad78cd459fff9-ffc2b864b4ce0290 - 1 | 00006476 | 00006260 INPUT | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 - 1 | 00006476 | 00006270 INPUT | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 - 1 | 00006476 | 00006280 INPUT | [==================================================================================================] | 0004b93e0afd3cd9-fffa7cd5097e8a6a - 1 | 00006476 | 00006290 INPUT | [==================================================================================================] | 000801e97f7ace52-fff2b4fb9e9026cc - 1 | 00006476 | 00006304 INPUT | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 - 1 | 00006476 | 00006315 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 1 | 00006476 | 00006323 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff9352ad815ae42 - 1 | 00006476 | 00006333 INPUT | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 - 1 | 00006476 | 00006339 INPUT | [==================================================================================================] | 00451748c51e234a-ffef5c90a20d9597 - 1 | 00006476 | 00006348 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffef5c90a20d9597 - 1 | 00006476 | 00006359 INPUT | [==================================================================================================] | 000ad78cd459fff9-ffd7eb207359fa89 - 1 | 00006476 | 00006368 INPUT | [==================================================================================================] | 0010e26242e36d1c-fff95c7b02d136eb - 1 | 00006476 | 00006379 INPUT | [==================================================================================================] | 023ad35a0da9060a-ffc2b864b4ce0290 - 1 | 00006476 | 00006385 INPUT | [==================================================================================================] | 0010e26242e36d1c-fff9352ad815ae42 - 1 | 00006476 | 00006395 INPUT | [==================================================================================================] | 012dee8afcf017fa-ffc2b864b4ce0290 - 1 | 00006476 | 00006400 INPUT | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 - 1 | 00006476 | 00006410 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00006476 | 00006421 INPUT | [=================================================================================================] | 0386609eea6a71f2-ffc2b864b4ce0290 - 1 | 00006476 | 00006427 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006476 | 00006433 INPUT | [==================================================================================================] | 0002d3f08112cb69-fff2b4fb9e9026cc - 1 | 00006476 | 00006443 INPUT | [==================================================================================================] | 00bc9fb3e020309a-ff78e55e141da030 - 1 | 00006476 | 00006448 INPUT | [==================================================================================================] | 00142dcf3b21f121-fff2b4fb9e9026cc - 1 | 00006476 | 00006459 INPUT | [==================================================================================================] | 00bc9fb3e020309a-fff2b4fb9e9026cc - 1 | 00006476 | 00006465 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc - 1 | 00006476 | 00006475 OUTPUT | [==================================================================================================] | 0002d3f08112cb69-fff95c7b02d136eb (cold) - 1 | 00006476 | 00006474 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fffa7cd5097e8a6a (warm) -Time 2026-03-28T10:29:47.12438243Z -Commit 00006477 27302 keys in 32ms 201µs 579ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00006476 | 00006475 SST | [==================================================================================================] | 0002d3f08112cb69-fff95c7b02d136eb (0 MiB, cold) - 1 | 00006476 | 00006474 SST | [==================================================================================================] | 0000737dcecb7eaa-fffa7cd5097e8a6a (8 MiB, warm) - 1 | 00006476 | 00006003 00006010 00006015 00006022 00006032 00006042 00006048 00006058 00006063 00006070 00006075 00006082 00006088 00006094 00006100 OBSOLETE SST - 1 | 00006476 | 00006106 00006111 00006118 00006124 00006130 00006136 00006141 00006147 00006153 00006159 00006166 00006172 00006177 00006184 00006190 OBSOLETE SST - 1 | 00006476 | 00006196 00006202 00006207 00006214 00006219 00006225 00006232 00006237 00006243 00006250 00006260 00006270 00006280 00006290 00006304 OBSOLETE SST - 1 | 00006476 | 00006315 00006323 00006333 00006339 00006348 00006359 00006368 00006379 00006385 00006395 00006400 00006410 00006421 00006427 00006433 OBSOLETE SST - 1 | 00006476 | 00006443 00006448 00006459 00006465 OBSOLETE SST - | | 00006003 00006010 00006015 00006022 00006032 00006042 00006048 00006058 00006063 00006070 00006075 00006082 00006088 00006094 00006100 SST DELETED - | | 00006106 00006111 00006118 00006124 00006130 00006136 00006141 00006147 00006153 00006159 00006166 00006172 00006177 00006184 00006190 SST DELETED - | | 00006196 00006202 00006207 00006214 00006219 00006225 00006232 00006237 00006243 00006250 00006260 00006270 00006280 00006290 00006304 SST DELETED - | | 00006315 00006323 00006333 00006339 00006348 00006359 00006368 00006379 00006385 00006395 00006400 00006410 00006421 00006427 00006433 SST DELETED - | | 00006443 00006448 00006459 00006465 SST DELETED - | | 00006007 00006013 00006019 00006029 00006037 00006045 00006055 00006061 00006067 00006073 00006079 00006085 00006091 00006097 00006104 META DELETED - | | 00006109 00006115 00006121 00006128 00006133 00006139 00006145 00006151 00006157 00006163 00006169 00006175 00006181 00006187 00006193 META DELETED - | | 00006200 00006205 00006211 00006217 00006223 00006229 00006235 00006241 00006247 00006257 00006268 00006275 00006288 00006298 00006307 META DELETED - | | 00006319 00006331 00006336 00006344 00006357 00006365 00006374 00006382 00006391 00006398 00006406 00006416 00006424 00006430 00006441 META DELETED - | | 00006446 00006454 00006462 00006471 META DELETED -Time 2026-03-28T10:35:41.552272527Z -Commit 00006483 1394 keys in 15ms 761µs 644ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006481 | 00006480 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006482 | 00006479 SST | [==================================================================================================] | 000ad78cd459fff9-fff2b4fb9e9026cc (1 MiB, fresh) - 2 | 00006483 | 00006478 SST | [==================================================================================================] | 000ad78cd459fff9-fff2b4fb9e9026cc (5 MiB, fresh) - 2 | 00006488 | Compaction: - 2 | 00006488 | MERGE (449817 keys): - 2 | 00006488 | 00006309 INPUT | [=================================] | 00000def41531d98-5731cdbf1531e71a - 2 | 00006488 | 00006311 INPUT | [================================] | 57323c8b30442513-ab8570127238bd9d - 2 | 00006488 | 00006312 INPUT | [===============================] | ab85777f71ef2c5d-ffffec37b1df3f15 - 2 | 00006488 | 00006310 INPUT | [========================================================================================] | 1bc4a3727a47d548-fda01f64d7e9163d - 2 | 00006488 | 00006316 INPUT | [=================================================================================================] | 03671ce438c5663d-fff2b4fb9e9026cc - 2 | 00006488 | 00006322 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff9352ad815ae42 - 2 | 00006488 | 00006332 INPUT | [===============================================================================================] | 06c8b171e8eea748-fc14d191b68d496a - 2 | 00006488 | 00006338 INPUT | [=================================================================================================] | 039584dcf0ecc8ca-ff365382680d1ecc - 2 | 00006488 | 00006349 INPUT | [==================================================================================================] | 0010e26242e36d1c-ffd02d39af75d27f - 2 | 00006488 | 00006358 INPUT | [==================================================================================================] | 000ad78cd459fff9-ffd7eb207359fa89 - 2 | 00006488 | 00006369 INPUT | [==================================================================================================] | 0010e26242e36d1c-fff95c7b02d136eb - 2 | 00006488 | 00006378 INPUT | [================================================================================================] | 06c8b171e8eea748-ff2f5ef8b96e42cb - 2 | 00006488 | 00006384 INPUT | [==================================================================================================] | 0010e26242e36d1c-fff9352ad815ae42 - 2 | 00006488 | 00006394 INPUT | [==================================================================================================] | 012dee8afcf017fa-ff2f5ef8b96e42cb - 2 | 00006488 | 00006401 INPUT | [==================================================================================================] | 00df6768872514da-ff2f5ef8b96e42cb - 2 | 00006488 | 00006411 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 2 | 00006488 | 00006420 INPUT | [===============================================================================================] | 06c8b171e8eea748-fc14d191b68d496a - 2 | 00006488 | 00006426 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 2 | 00006488 | 00006432 INPUT | [==================================================================================================] | 0002d3f08112cb69-fff2b4fb9e9026cc - 2 | 00006488 | 00006442 INPUT | [================================================================================================] | 06c8b171e8eea748-fe6fc3e93ff272b3 - 2 | 00006488 | 00006449 INPUT | [==================================================================================================] | 00142dcf3b21f121-fff2b4fb9e9026cc - 2 | 00006488 | 00006458 INPUT | [==================================================================================================] | 00df6768872514da-fff2b4fb9e9026cc - 2 | 00006488 | 00006464 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff2b4fb9e9026cc - 2 | 00006488 | 00006478 INPUT | [==================================================================================================] | 000ad78cd459fff9-fff2b4fb9e9026cc - 2 | 00006488 | 00006484 OUTPUT | [==================================] | 00000def41531d98-59dab9e0f840c072 (cold) - 2 | 00006488 | 00006486 OUTPUT | [===============================] | 59dac401adf63e29-acdf1b0f275c3ecc (cold) - 2 | 00006488 | 00006487 OUTPUT | [===============================] | acdf45b178535532-ffffec37b1df3f15 (cold) - 2 | 00006488 | 00006485 OUTPUT | [==================================================================================================] | 0004fbe42c260297-ffdf49f7b8669a4b (warm) -Time 2026-03-28T10:35:43.421424525Z -Commit 00006489 449817 keys in 206ms 98µs 192ns -FAM | META SEQ | SST SEQ | RANGE - 2 | 00006488 | 00006484 SST | [==================================] | 00000def41531d98-59dab9e0f840c072 (92 MiB, cold) - 2 | 00006488 | 00006486 SST | [===============================] | 59dac401adf63e29-acdf1b0f275c3ecc (84 MiB, cold) - 2 | 00006488 | 00006487 SST | [===============================] | acdf45b178535532-ffffec37b1df3f15 (80 MiB, cold) - 2 | 00006488 | 00006485 SST | [==================================================================================================] | 0004fbe42c260297-ffdf49f7b8669a4b (15 MiB, warm) - 2 | 00006488 | 00006309 00006310 00006311 00006312 00006316 00006322 00006332 00006338 00006349 00006358 00006369 00006378 00006384 00006394 00006401 OBSOLETE SST - 2 | 00006488 | 00006411 00006420 00006426 00006432 00006442 00006449 00006458 00006464 00006478 OBSOLETE SST - | | 00006309 00006310 00006311 00006312 00006316 00006322 00006332 00006338 00006349 00006358 00006369 00006378 00006384 00006394 00006401 SST DELETED - | | 00006411 00006420 00006426 00006432 00006442 00006449 00006458 00006464 00006478 SST DELETED - | | 00006313 00006320 00006330 00006337 00006346 00006355 00006366 00006375 00006383 00006390 00006399 00006407 00006417 00006425 00006431 META DELETED - | | 00006440 00006447 00006455 00006463 00006470 00006483 META DELETED -Time 2026-03-28T10:35:56.072786478Z -Commit 00006499 4291 keys in 19ms 379µs 77ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006495 | 00006492 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006496 | 00006491 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (2 MiB, fresh) - 2 | 00006497 | 00006490 SST | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf (7 MiB, fresh) - 3 | 00006498 | 00006493 SST | [================================================================================================] | 04783e7bf01d863d-fc3afb90b9371258 (0 MiB, fresh) - 4 | 00006499 | 00006494 SST | [================================================================================================] | 07390fb8ec8b70e6-fe23aeebf93b0cb7 (0 MiB, fresh) -Time 2026-03-28T10:35:58.532913693Z -Commit 00006505 158 keys in 12ms 298µs 861ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006503 | 00006502 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006504 | 00006501 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006505 | 00006500 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T10:37:11.455179132Z -Commit 00006511 158 keys in 12ms 795µs 709ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006509 | 00006508 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006510 | 00006507 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006511 | 00006506 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T10:37:19.487703627Z -Commit 00006517 158 keys in 12ms 437µs 626ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006515 | 00006514 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006516 | 00006513 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006517 | 00006512 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T10:38:54.836198978Z -Commit 00006523 158 keys in 11ms 159µs 644ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006521 | 00006520 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006522 | 00006518 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006523 | 00006519 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T10:38:57.217111893Z -Commit 00006529 158 keys in 15ms 5µs 900ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006527 | 00006526 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006528 | 00006525 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006529 | 00006524 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T10:55:50.033170943Z -Commit 00006539 960 keys in 16ms 905µs 662ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006535 | 00006532 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006536 | 00006531 SST | [==================================================================================================] | 000ad78cd459fff9-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006537 | 00006530 SST | [==================================================================================================] | 000ad78cd459fff9-ff303b290e134e27 (0 MiB, fresh) - 3 | 00006538 | 00006534 SST | [====================================================================================] | 0a1a38ee9355bb9a-e1cd91a1b7fc6322 (0 MiB, fresh) - 4 | 00006539 | 00006533 SST | [=======================================================================] | 307a19ca220924d8-e8bcd3b497ad25d9 (0 MiB, fresh) -Time 2026-03-28T10:56:10.680257029Z -Commit 00006545 4 keys in 11ms 776µs 965ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006543 | 00006542 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006544 | 00006540 SST | O | e806be3a1cdc681f-e806be3a1cdc681f (0 MiB, fresh) - 2 | 00006545 | 00006541 SST | O | e806be3a1cdc681f-e806be3a1cdc681f (0 MiB, fresh) -Time 2026-03-28T10:57:01.735720649Z -Commit 00006551 158 keys in 10ms 405µs 712ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006549 | 00006548 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006550 | 00006546 SST | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 (0 MiB, fresh) - 2 | 00006551 | 00006547 SST | [================================================================================================] | 06c8b171e8eea748-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T10:57:22.827919022Z -Commit 00006557 5246 keys in 12ms 214µs 353ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006555 | 00006554 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006556 | 00006552 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00006557 | 00006553 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (3 MiB, fresh) -Time 2026-03-28T10:58:23.128050067Z -Commit 00006563 10 keys in 9ms 295µs 110ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006561 | 00006560 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006562 | 00006558 SST | [========================================] | 8ff97cfa21719e3c-f98fc7e477a60571 (0 MiB, fresh) - 2 | 00006563 | 00006559 SST | [========================================] | 8ff97cfa21719e3c-f98fc7e477a60571 (0 MiB, fresh) -Time 2026-03-28T11:01:25.865938993Z -Commit 00006569 8208 keys in 16ms 145µs 141ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006567 | 00006566 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006568 | 00006564 SST | [==================================================================================================] | 00a7a57f0063f1d3-ff9f467c2a100bb1 (7 MiB, fresh) - 1 | 00006569 | 00006565 SST | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 (4 MiB, fresh) -Time 2026-03-28T11:01:40.148731038Z -Commit 00006575 147 keys in 12ms 499µs 880ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006573 | 00006572 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006574 | 00006570 SST | [================================================================================================] | 0539fc842a9411fd-fea290f7f862d517 (0 MiB, fresh) - 2 | 00006575 | 00006571 SST | [================================================================================================] | 06f2567f320ad26a-fea290f7f862d517 (0 MiB, fresh) -Time 2026-03-28T11:02:00.022111534Z -Commit 00006581 5222 keys in 13ms 256µs 932ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006579 | 00006578 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006580 | 00006576 SST | [==================================================================================================] | 003b0ac5c868db1a-ffc353ea71dbad3d (0 MiB, fresh) - 1 | 00006581 | 00006577 SST | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 (3 MiB, fresh) - 1 | 00006584 | Compaction: - 1 | 00006584 | MERGE (48412 keys): - 1 | 00006584 | 00005235 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005241 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005247 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005254 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005260 INPUT | [=================================================================================================] | 0386609eea6a71f2-fef556762b4c5464 - 1 | 00006584 | 00005266 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005272 INPUT | [==================================================================================================] | 005187818301636f-ff9f467c2a100bb1 - 1 | 00006584 | 00005277 INPUT | [=================================================================================================] | 04f8ef707d1e8371-ffac310021da6675 - 1 | 00006584 | 00005284 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005290 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005295 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005302 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00006584 | 00005312 INPUT | [=================================================================================================] | 035a2767f027deef-ffc2b864b4ce0290 - 1 | 00006584 | 00005317 INPUT | [==================================================================================================] | 0046228ce0a6aa12-ffdadfbe0d57a332 - 1 | 00006584 | 00005327 INPUT | [==================================================================================================] | 0004b93e0afd3cd9-ffc2b864b4ce0290 - 1 | 00006584 | 00005337 INPUT | O | fd7b35dc69dd839a-fd7b35dc69dd839a - 1 | 00006584 | 00005344 INPUT | [==========================================================================================] | 0d39b29a0fc466cb-f73dc4981889f6f7 - 1 | 00006584 | 00005350 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005356 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00006584 | 00005365 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00006584 | 00005375 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005382 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00006584 | 00005392 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005398 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005403 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005410 INPUT | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 - 1 | 00006584 | 00005872 INPUT | [==================================================================================================] | 001fc8813500c00c-ffd400c4c1e9e47b - 1 | 00006584 | 00005871 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 - 1 | 00006584 | 00005876 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fff821cf09f2ceb3 - 1 | 00006584 | 00005892 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006584 | 00005898 INPUT | [==================================================================================================] | 00e0f194246abca0-ffdadfbe0d57a332 - 1 | 00006584 | 00005904 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006584 | 00005910 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006584 | 00005916 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006584 | 00005921 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006584 | 00005928 INPUT | [==================================================================================================] | 00e0f194246abca0-ffc2b864b4ce0290 - 1 | 00006584 | 00005934 INPUT | [===============================================================================================] | 07c39c20a18e1236-ff2f5ef8b96e42cb - 1 | 00006584 | 00005940 INPUT | [==================================================================================================] | 00df6768872514da-ffc2b864b4ce0290 - 1 | 00006584 | 00005950 INPUT | [================================================================================================] | 055f38971e3f4b40-ffc2b864b4ce0290 - 1 | 00006584 | 00005955 INPUT | O | 3cbb08597f9a8187-3cbb08597f9a8187 - 1 | 00006584 | 00005961 INPUT | [==================================================================================================] | 006ec0d842304288-fe3b2154ed000e26 - 1 | 00006584 | 00005967 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00006584 | 00005973 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00006584 | 00005979 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00006584 | 00005985 INPUT | O | 3d1e6b20222fda3d-3d1e6b20222fda3d - 1 | 00006584 | 00005992 INPUT | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 - 1 | 00006584 | 00005997 INPUT | O | 3cbb08597f9a8187-3cbb08597f9a8187 - 1 | 00006584 | 00006475 INPUT | [==================================================================================================] | 0002d3f08112cb69-fff95c7b02d136eb - 1 | 00006584 | 00006474 INPUT | [==================================================================================================] | 0000737dcecb7eaa-fffa7cd5097e8a6a - 1 | 00006584 | 00006479 INPUT | [==================================================================================================] | 000ad78cd459fff9-fff2b4fb9e9026cc - 1 | 00006584 | 00006491 INPUT | [==================================================================================================] | 0000737dcecb7eaa-ffdb7390ea7695bf - 1 | 00006584 | 00006501 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00006584 | 00006507 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00006584 | 00006513 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00006584 | 00006518 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00006584 | 00006525 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00006584 | 00006531 INPUT | [==================================================================================================] | 000ad78cd459fff9-ffc2b864b4ce0290 - 1 | 00006584 | 00006540 INPUT | O | e806be3a1cdc681f-e806be3a1cdc681f - 1 | 00006584 | 00006546 INPUT | [================================================================================================] | 06c8b171e8eea748-ff78e55e141da030 - 1 | 00006584 | 00006553 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00006584 | 00006558 INPUT | [========================================] | 8ff97cfa21719e3c-f98fc7e477a60571 - 1 | 00006584 | 00006565 INPUT | [==================================================================================================] | 0006f6154a9cbf58-fff821cf09f2ceb3 - 1 | 00006584 | 00006570 INPUT | [================================================================================================] | 0539fc842a9411fd-fea290f7f862d517 - 1 | 00006584 | 00006577 INPUT | [==================================================================================================] | 000801e97f7ace52-fff187cd7cce0e80 - 1 | 00006584 | 00006583 OUTPUT | [==================================================================================================] | 0002d3f08112cb69-fffa14bacadd6935 (cold) - 1 | 00006584 | 00006582 OUTPUT | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (warm) -Time 2026-03-28T11:02:00.63526305Z -Commit 00006585 48412 keys in 31ms 262µs 662ns -FAM | META SEQ | SST SEQ | RANGE - 1 | 00006584 | 00006583 SST | [==================================================================================================] | 0002d3f08112cb69-fffa14bacadd6935 (1 MiB, cold) - 1 | 00006584 | 00006582 SST | [==================================================================================================] | 0000737dcecb7eaa-fffe97e9765737c6 (11 MiB, warm) - 1 | 00006584 | 00005235 00005241 00005247 00005254 00005260 00005266 00005272 00005277 00005284 00005290 00005295 00005302 00005312 00005317 00005327 OBSOLETE SST - 1 | 00006584 | 00005337 00005344 00005350 00005356 00005365 00005375 00005382 00005392 00005398 00005403 00005410 00005871 00005872 00005876 00005892 OBSOLETE SST - 1 | 00006584 | 00005898 00005904 00005910 00005916 00005921 00005928 00005934 00005940 00005950 00005955 00005961 00005967 00005973 00005979 00005985 OBSOLETE SST - 1 | 00006584 | 00005992 00005997 00006474 00006475 00006479 00006491 00006501 00006507 00006513 00006518 00006525 00006531 00006540 00006546 00006553 OBSOLETE SST - 1 | 00006584 | 00006558 00006565 00006570 00006577 OBSOLETE SST - | | 00005235 00005241 00005247 00005254 00005260 00005266 00005272 00005277 00005284 00005290 00005295 00005302 00005312 00005317 00005327 SST DELETED - | | 00005337 00005344 00005350 00005356 00005365 00005375 00005382 00005392 00005398 00005403 00005410 00005871 00005872 00005876 00005892 SST DELETED - | | 00005898 00005904 00005910 00005916 00005921 00005928 00005934 00005940 00005950 00005955 00005961 00005967 00005973 00005979 00005985 SST DELETED - | | 00005992 00005997 00006474 00006475 00006479 00006491 00006501 00006507 00006513 00006518 00006525 00006531 00006540 00006546 00006553 SST DELETED - | | 00006558 00006565 00006570 00006577 SST DELETED - | | 00005239 00005245 00005251 00005257 00005263 00005269 00005275 00005281 00005287 00005293 00005299 00005308 00005315 00005324 00005333 META DELETED - | | 00005341 00005347 00005353 00005361 00005371 00005379 00005387 00005395 00005401 00005407 00005413 00005873 00005884 00005895 00005902 META DELETED - | | 00005907 00005913 00005919 00005925 00005931 00005937 00005945 00005953 00005959 00005966 00005971 00005977 00005983 00005989 00005995 META DELETED - | | 00006001 00006476 00006482 00006496 00006504 00006510 00006516 00006522 00006528 00006536 00006544 00006550 00006557 00006562 00006569 META DELETED - | | 00006574 00006581 META DELETED -Time 2026-03-28T11:07:49.625846053Z -Commit 00006591 486 keys in 12ms 346µs 219ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006589 | 00006588 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006590 | 00006586 SST | [==================================================================================================] | 006b8283316694fc-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006591 | 00006587 SST | [==================================================================================================] | 006b8283316694fc-fe1e6d23eeedce2f (0 MiB, fresh) -Time 2026-03-28T11:13:29.72656973Z -Commit 00006597 440 keys in 12ms 68µs 295ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006595 | 00006594 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006596 | 00006593 SST | [==================================================================================================] | 006b8283316694fc-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006597 | 00006592 SST | [==================================================================================================] | 006b8283316694fc-fe1e6d23eeedce2f (0 MiB, fresh) -Time 2026-03-28T11:13:32.655148296Z -Commit 00006603 352 keys in 13ms 250µs 221ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006601 | 00006600 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006602 | 00006599 SST | [=================================================================================================] | 0386609eea6a71f2-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006603 | 00006598 SST | [================================================================================================] | 06c8b171e8eea748-fd7b35dc69dd839a (0 MiB, fresh) -Time 2026-03-28T11:14:33.626474629Z -Commit 00006609 269 keys in 9ms 72µs 741ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006607 | 00006606 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006608 | 00006604 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) - 2 | 00006609 | 00006605 SST | [==================================================================================================] | 00e0f194246abca0-fef556762b4c5464 (0 MiB, fresh) -Time 2026-03-28T11:18:24.167118753Z -Commit 00006615 440 keys in 13ms 748µs 77ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006613 | 00006612 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006614 | 00006610 SST | [==================================================================================================] | 006b8283316694fc-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006615 | 00006611 SST | [==================================================================================================] | 006b8283316694fc-fe1e6d23eeedce2f (0 MiB, fresh) -Time 2026-03-28T11:18:34.30756983Z -Commit 00006621 4 keys in 11ms 680µs 531ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006619 | 00006618 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006620 | 00006616 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) - 2 | 00006621 | 00006617 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) -Time 2026-03-28T11:21:49.012507686Z -Commit 00006627 440 keys in 11ms 187µs 496ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006625 | 00006624 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006626 | 00006623 SST | [==================================================================================================] | 006b8283316694fc-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006627 | 00006622 SST | [==================================================================================================] | 006b8283316694fc-fe1e6d23eeedce2f (0 MiB, fresh) -Time 2026-03-28T11:23:05.170810523Z -Commit 00006633 440 keys in 12ms 792µs 813ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006631 | 00006630 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006632 | 00006629 SST | [==================================================================================================] | 006b8283316694fc-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006633 | 00006628 SST | [==================================================================================================] | 006b8283316694fc-fe1e6d23eeedce2f (0 MiB, fresh) -Time 2026-03-28T11:23:25.569012594Z -Commit 00006639 86 keys in 8ms 705µs 943ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006637 | 00006636 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006638 | 00006635 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00006639 | 00006634 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T11:25:02.662394563Z -Commit 00006645 54 keys in 10ms 927µs 435ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006643 | 00006642 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006644 | 00006640 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00006645 | 00006641 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T11:25:55.690094225Z -Commit 00006651 54 keys in 9ms 190µs 503ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006649 | 00006648 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006650 | 00006647 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00006651 | 00006646 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T11:26:11.728356174Z -Commit 00006657 116 keys in 10ms 294µs 695ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006655 | 00006654 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006656 | 00006653 SST | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc (0 MiB, fresh) - 2 | 00006657 | 00006652 SST | [================================================================================================] | 0529bda477ab612e-fff2b4fb9e9026cc (0 MiB, fresh) -Time 2026-03-28T11:26:19.216452909Z -Commit 00006663 4 keys in 494ms 873µs 991ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006661 | 00006660 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006662 | 00006658 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) - 2 | 00006663 | 00006659 SST | O | 3cbb08597f9a8187-3cbb08597f9a8187 (0 MiB, fresh) -Time 2026-03-28T11:26:31.479534609Z -Commit 00006669 114 keys in 11ms 243µs 349ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006667 | 00006666 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006668 | 00006665 SST | [===============================================================================================] | 08f4cbfca2c704b9-fe6bc83b4b2abf68 (0 MiB, fresh) - 2 | 00006669 | 00006664 SST | [==============================================================================================] | 0a3da3138c5162a8-fe6bc83b4b2abf68 (0 MiB, fresh) -Time 2026-03-28T11:34:52.964428795Z -Commit 00006679 1705 keys in 24ms 740µs 800ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006675 | 00006672 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 2 | 00006676 | 00006671 SST | [==================================================================================================] | 006b8283316694fc-ff2f5ef8b96e42cb (2 MiB, fresh) - 1 | 00006677 | 00006670 SST | [==================================================================================================] | 0002d3f08112cb69-ffc2b864b4ce0290 (1 MiB, fresh) - 4 | 00006678 | 00006674 SST | O | 5d683beded8590c9-5d683beded8590c9 (0 MiB, fresh) - 3 | 00006679 | 00006673 SST | O | 6d3e932b7e858f7b-6d3e932b7e858f7b (0 MiB, fresh) -Time 2026-03-28T11:36:03.05293762Z -Commit 00006685 557 keys in 9ms 103µs 356ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006683 | 00006682 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006684 | 00006681 SST | [==================================================================================================] | 006b8283316694fc-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006685 | 00006680 SST | [==================================================================================================] | 006b8283316694fc-fe1e6d23eeedce2f (0 MiB, fresh) -Time 2026-03-28T11:36:12.400800768Z -Commit 00006691 661 keys in 12ms 575µs 163ns -FAM | META SEQ | SST SEQ | RANGE - 0 | 00006689 | 00006688 SST | [=======================================================================] | 3aefa6fd5cf2deb4-f42f94001fcb5351 (0 MiB, fresh) - 1 | 00006690 | 00006686 SST | [==================================================================================================] | 006b8283316694fc-ffc2b864b4ce0290 (0 MiB, fresh) - 2 | 00006691 | 00006687 SST | [==================================================================================================] | 006b8283316694fc-fe6c9353f46b4f0e (0 MiB, fresh) diff --git a/saintBarthVolleyApp/frontend/.next/dev/fallback-build-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/fallback-build-manifest.json deleted file mode 100644 index 11c117c..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/fallback-build-manifest.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "pages": { - "/_app": [] - }, - "devFiles": [], - "polyfillFiles": [], - "lowPriorityFiles": [ - "static/development/_ssgManifest.js", - "static/development/_buildManifest.js" - ], - "rootMainFiles": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/package.json b/saintBarthVolleyApp/frontend/.next/dev/package.json deleted file mode 100644 index c9a4422..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/package.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "type": "commonjs" -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/prerender-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/prerender-manifest.json deleted file mode 100644 index 1e4fff7..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/prerender-manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": 4, - "routes": {}, - "dynamicRoutes": {}, - "notFoundRoutes": [], - "preview": { - "previewModeId": "d7f8fe0f9cb6a31e8649dfc6d22a3d7b", - "previewModeSigningKey": "dcb9f886df7d43f1ea2b0b8ffc0a442a667068de77b09c0700ba1a7a18693de6", - "previewModeEncryptionKey": "74d7ebc0351e3b1b219074efa35340bc6c6973b3b85ddf12da78e676cc9a52c3" - } -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/routes-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/routes-manifest.json deleted file mode 100644 index 9e484be..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/routes-manifest.json +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"caseSensitive":false,"basePath":"","rewrites":{"beforeFiles":[],"afterFiles":[],"fallback":[]},"redirects":[{"source":"/:path+/","destination":"/:path+","permanent":true,"internal":true,"priority":true,"regex":"^(?:\\/((?:[^\\/]+?)(?:\\/(?:[^\\/]+?))*))\\/$"}],"headers":[]} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app-paths-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app-paths-manifest.json deleted file mode 100644 index bc1e105..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app-paths-manifest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "/_not-found/page": "app/_not-found/page.js", - "/admin/club/page": "app/admin/club/page.js", - "/admin/members/page": "app/admin/members/page.js", - "/admin/users/page": "app/admin/users/page.js" -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page.js b/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page.js deleted file mode 100644 index 1fc5c4b..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page.js +++ /dev/null @@ -1,11 +0,0 @@ -var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/_not-found/page.js") -R.c("server/chunks/ssr/node_modules_next_dist_88d6ead0._.js") -R.c("server/chunks/ssr/[root-of-the-server]__03756c06._.js") -R.c("server/chunks/ssr/node_modules_next_dist_773f3edf._.js") -R.c("server/chunks/ssr/[externals]__7f148858._.js") -R.c("server/chunks/ssr/[root-of-the-server]__a9fea3fa._.js") -R.c("server/chunks/ssr/node_modules_next_dist_client_components_9774470f._.js") -R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_45780354.js") -R.c("server/chunks/ssr/_next-internal_server_app__not-found_page_actions_554ec2bf.js") -R.m("[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/_not-found/page { MODULE_0 => \"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_1 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_2 => \"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_3 => \"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_4 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\" } [app-rsc] (ecmascript)") -module.exports=R.m("[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/_not-found/page { MODULE_0 => \"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_1 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_2 => \"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_3 => \"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_4 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\" } [app-rsc] (ecmascript)").exports diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page.js.map deleted file mode 100644 index c15d7ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page.js.map +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/app-paths-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/app-paths-manifest.json deleted file mode 100644 index 523c2ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/app-paths-manifest.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "/_not-found/page": "app/_not-found/page.js" -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/build-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/build-manifest.json deleted file mode 100644 index 9239fd2..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/build-manifest.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "devFiles": [], - "ampDevFiles": [], - "polyfillFiles": [ - "static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js" - ], - "lowPriorityFiles": [], - "rootMainFiles": [ - "static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js", - "static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js", - "static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js", - "static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js", - "static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js", - "static/chunks/node_modules_next_dist_client_17643121._.js", - "static/chunks/node_modules_next_dist_f3530cac._.js", - "static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js", - "static/chunks/_a0ff3932._.js", - "static/chunks/turbopack-_23a915ee._.js" - ], - "pages": {}, - "ampFirstPages": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/next-font-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/next-font-manifest.json deleted file mode 100644 index 598aa0e..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/next-font-manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "pages": {}, - "app": { - "[project]/src/app/_not-found/page": [ - "static/media/caa3a2e1cccd8315-s.p.853070df.woff2", - "static/media/797e433ab948586e-s.p.dbea232f.woff2" - ] - }, - "appUsingSizeAdjust": true, - "pagesUsingSizeAdjust": false -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/react-loadable-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/react-loadable-manifest.json deleted file mode 100644 index 9e26dfe..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/react-loadable-manifest.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/server-reference-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/server-reference-manifest.json deleted file mode 100644 index 27a92af..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page/server-reference-manifest.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "node": {}, - "edge": {} -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page_client-reference-manifest.js b/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page_client-reference-manifest.js deleted file mode 100644 index 1ee34a5..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/_not-found/page_client-reference-manifest.js +++ /dev/null @@ -1,2 +0,0 @@ -globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js ":{"id":"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false},"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js":{"id":"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"],"async":false}},"ssrModuleMapping":{"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/src/app/layout":[{"path":"static/chunks/[root-of-the-server]__0f0ba101._.css","inlined":false}]},"entryJSFiles":{"[project]/src/app/layout":["static/chunks/node_modules_next_dist_be32b49c._.js","static/chunks/src_app_layout_tsx_1cf6b850._.js"]}} diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/page.js b/saintBarthVolleyApp/frontend/.next/dev/server/app/page.js deleted file mode 100644 index 86dca4e..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/page.js +++ /dev/null @@ -1,13 +0,0 @@ -var R=require("../chunks/ssr/[turbopack]_runtime.js")("server/app/page.js") -R.c("server/chunks/ssr/node_modules_4ea1937a._.js") -R.c("server/chunks/ssr/[root-of-the-server]__e35dfc2a._.js") -R.c("server/chunks/ssr/node_modules_next_dist_7381059c._.js") -R.c("server/chunks/ssr/[externals]__7f148858._.js") -R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_ece394eb.js") -R.c("server/chunks/ssr/[root-of-the-server]__a9fea3fa._.js") -R.c("server/chunks/ssr/node_modules_next_dist_client_components_9774470f._.js") -R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_45780354.js") -R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_15817684.js") -R.c("server/chunks/ssr/_next-internal_server_app_page_actions_39d4fc33.js") -R.m("[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/page { GLOBAL_ERROR_MODULE => \"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_0 => \"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_1 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_2 => \"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_3 => \"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_4 => \"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_5 => \"[project]/src/app/page.tsx [app-rsc] (ecmascript, Next.js Server Component)\" } [app-rsc] (ecmascript)") -module.exports=R.m("[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/page { GLOBAL_ERROR_MODULE => \"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_0 => \"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_1 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_2 => \"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_3 => \"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_4 => \"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_5 => \"[project]/src/app/page.tsx [app-rsc] (ecmascript, Next.js Server Component)\" } [app-rsc] (ecmascript)").exports diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/page.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/app/page.js.map deleted file mode 100644 index c15d7ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/page.js.map +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/app-paths-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/page/app-paths-manifest.json deleted file mode 100644 index e234c2e..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/app-paths-manifest.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "/page": "app/page.js" -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/build-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/page/build-manifest.json deleted file mode 100644 index 9239fd2..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/build-manifest.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "devFiles": [], - "ampDevFiles": [], - "polyfillFiles": [ - "static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js" - ], - "lowPriorityFiles": [], - "rootMainFiles": [ - "static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js", - "static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js", - "static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js", - "static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js", - "static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js", - "static/chunks/node_modules_next_dist_client_17643121._.js", - "static/chunks/node_modules_next_dist_f3530cac._.js", - "static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js", - "static/chunks/_a0ff3932._.js", - "static/chunks/turbopack-_23a915ee._.js" - ], - "pages": {}, - "ampFirstPages": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/next-font-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/page/next-font-manifest.json deleted file mode 100644 index cdc77e7..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/next-font-manifest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "pages": {}, - "app": { - "[project]/src/app/page": [ - "static/media/caa3a2e1cccd8315-s.p.853070df.woff2", - "static/media/797e433ab948586e-s.p.dbea232f.woff2" - ] - }, - "appUsingSizeAdjust": true, - "pagesUsingSizeAdjust": false -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/react-loadable-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/page/react-loadable-manifest.json deleted file mode 100644 index 9e26dfe..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/react-loadable-manifest.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/server-reference-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/app/page/server-reference-manifest.json deleted file mode 100644 index 27a92af..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/page/server-reference-manifest.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "node": {}, - "edge": {} -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/app/page_client-reference-manifest.js b/saintBarthVolleyApp/frontend/.next/dev/server/app/page_client-reference-manifest.js deleted file mode 100644 index 13de2fb..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/app/page_client-reference-manifest.js +++ /dev/null @@ -1,2 +0,0 @@ -globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {}; -globalThis.__RSC_MANIFEST["/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js ":{"id":"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ":{"id":"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js ":{"id":"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js ":{"id":"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ":{"id":"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ":{"id":"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ":{"id":"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js ":{"id":"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js":{"id":"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js ":{"id":"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/node_modules_next_dist_be32b49c._.js","/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js ":{"id":"[project]/node_modules/next/dist/client/image-component.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js","/_next/static/chunks/node_modules_next_dist_2c670af9._.js","/_next/static/chunks/src_app_page_tsx_47b43e25._.js"],"async":false},"[project]/node_modules/next/dist/client/image-component.js":{"id":"[project]/node_modules/next/dist/client/image-component.js [app-client] (ecmascript)","name":"*","chunks":["/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js","/_next/static/chunks/node_modules_next_dist_2c670af9._.js","/_next/static/chunks/src_app_page_tsx_47b43e25._.js"],"async":false}},"ssrModuleMapping":{"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_next_dist_afb60855._.js","server/chunks/ssr/[externals]_next_dist_1aaf5479._.js"],"async":false}},"[project]/node_modules/next/dist/client/image-component.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/client/image-component.js [app-ssr] (ecmascript)","name":"*","chunks":["server/chunks/ssr/node_modules_0f1a950b._.js","server/chunks/ssr/[externals]_next_dist_compiled_next-server_app-page-turbo_runtime_dev_062c5159.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}},"[project]/node_modules/next/dist/client/image-component.js [app-client] (ecmascript)":{"*":{"id":"[project]/node_modules/next/dist/client/image-component.js [app-rsc] (client reference proxy)","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/node_modules/next/dist/client/components/builtin/global-error":[],"[project]/src/app/layout":[{"path":"static/chunks/[root-of-the-server]__0f0ba101._.css","inlined":false}],"[project]/src/app/page":[{"path":"static/chunks/[root-of-the-server]__0f0ba101._.css","inlined":false}]},"entryJSFiles":{"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/node_modules_next_dist_be32b49c._.js","static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"],"[project]/src/app/layout":["static/chunks/src_app_layout_tsx_1cf6b850._.js"],"[project]/src/app/page":["static/chunks/src_app_layout_tsx_1cf6b850._.js","static/chunks/node_modules_next_dist_2c670af9._.js","static/chunks/src_app_page_tsx_47b43e25._.js"]}} diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]__e8a2741f._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]__e8a2741f._.js deleted file mode 100644 index eab6b59..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]__e8a2741f._.js +++ /dev/null @@ -1,62 +0,0 @@ -module.exports = [ -"[externals]/path [external] (path, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("path", () => require("path")); - -module.exports = mod; -}), -"[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js", () => require("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/work-async-storage.external.js", () => require("next/dist/server/app-render/work-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/work-unit-async-storage.external.js", () => require("next/dist/server/app-render/work-unit-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/action-async-storage.external.js", () => require("next/dist/server/app-render/action-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/after-task-async-storage.external.js [external] (next/dist/server/app-render/after-task-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/after-task-async-storage.external.js", () => require("next/dist/server/app-render/after-task-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/dynamic-access-async-storage.external.js [external] (next/dist/server/app-render/dynamic-access-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/dynamic-access-async-storage.external.js", () => require("next/dist/server/app-render/dynamic-access-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/compiled/@opentelemetry/api [external] (next/dist/compiled/@opentelemetry/api, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/compiled/@opentelemetry/api", () => require("next/dist/compiled/@opentelemetry/api")); - -module.exports = mod; -}), -"[externals]/util [external] (util, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("util", () => require("util")); - -module.exports = mod; -}), -"[externals]/module [external] (module, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("module", () => require("module")); - -module.exports = mod; -}), -]; \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]__e8a2741f._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]__e8a2741f._.js.map deleted file mode 100644 index c15d7ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]__e8a2741f._.js.map +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_1aaf5479._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_1aaf5479._.js deleted file mode 100644 index 52edd4f..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_1aaf5479._.js +++ /dev/null @@ -1,38 +0,0 @@ -module.exports = [ -"[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js", () => require("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/work-async-storage.external.js", () => require("next/dist/server/app-render/work-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/work-unit-async-storage.external.js", () => require("next/dist/server/app-render/work-unit-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/action-async-storage.external.js", () => require("next/dist/server/app-render/action-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/after-task-async-storage.external.js [external] (next/dist/server/app-render/after-task-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/after-task-async-storage.external.js", () => require("next/dist/server/app-render/after-task-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/dynamic-access-async-storage.external.js [external] (next/dist/server/app-render/dynamic-access-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/dynamic-access-async-storage.external.js", () => require("next/dist/server/app-render/dynamic-access-async-storage.external.js")); - -module.exports = mod; -}), -]; \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_1aaf5479._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_1aaf5479._.js.map deleted file mode 100644 index c15d7ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_1aaf5479._.js.map +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_c80f7c8f._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_c80f7c8f._.js deleted file mode 100644 index 30e6c91..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_c80f7c8f._.js +++ /dev/null @@ -1,38 +0,0 @@ -module.exports = [ -"[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js", () => require("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/work-unit-async-storage.external.js", () => require("next/dist/server/app-render/work-unit-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/work-async-storage.external.js", () => require("next/dist/server/app-render/work-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/action-async-storage.external.js", () => require("next/dist/server/app-render/action-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/after-task-async-storage.external.js [external] (next/dist/server/app-render/after-task-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/after-task-async-storage.external.js", () => require("next/dist/server/app-render/after-task-async-storage.external.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/dynamic-access-async-storage.external.js [external] (next/dist/server/app-render/dynamic-access-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/dynamic-access-async-storage.external.js", () => require("next/dist/server/app-render/dynamic-access-async-storage.external.js")); - -module.exports = mod; -}), -]; \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_c80f7c8f._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_c80f7c8f._.js.map deleted file mode 100644 index c15d7ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_c80f7c8f._.js.map +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_compiled_next-server_app-page-turbo_runtime_dev_062c5159.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_compiled_next-server_app-page-turbo_runtime_dev_062c5159.js deleted file mode 100644 index 58fa40d..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_compiled_next-server_app-page-turbo_runtime_dev_062c5159.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = [ -"[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js", () => require("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js")); - -module.exports = mod; -}), -]; \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_compiled_next-server_app-page-turbo_runtime_dev_062c5159.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_compiled_next-server_app-page-turbo_runtime_dev_062c5159.js.map deleted file mode 100644 index c15d7ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[externals]_next_dist_compiled_next-server_app-page-turbo_runtime_dev_062c5159.js.map +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__305743d6._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__305743d6._.js deleted file mode 100644 index c19be0d..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__305743d6._.js +++ /dev/null @@ -1,159 +0,0 @@ -module.exports = [ -"[project]/src/app/favicon.ico.mjs { IMAGE => \"[project]/src/app/favicon.ico (static in ecmascript, tag client)\" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/src/app/favicon.ico.mjs { IMAGE => \"[project]/src/app/favicon.ico (static in ecmascript, tag client)\" } [app-rsc] (structured image object, ecmascript)")); -}), -"[externals]/next/dist/shared/lib/no-fallback-error.external.js [external] (next/dist/shared/lib/no-fallback-error.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/shared/lib/no-fallback-error.external.js", () => require("next/dist/shared/lib/no-fallback-error.external.js")); - -module.exports = mod; -}), -"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/src/app/layout.tsx [app-rsc] (ecmascript)")); -}), -"[project]/src/app/page.tsx [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>Home -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$image$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/image.js [app-rsc] (ecmascript)"); -; -; -function Home() { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("div", { - className: "flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black", - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("main", { - className: "flex min-h-screen w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start", - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$image$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"], { - className: "dark:invert", - src: "/next.svg", - alt: "Next.js logo", - width: 100, - height: 20, - priority: true - }, void 0, false, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 7, - columnNumber: 9 - }, this), - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("div", { - className: "flex flex-col items-center gap-6 text-center sm:items-start sm:text-left", - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("h1", { - className: "max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50", - children: "To get started, edit the page.tsx file." - }, void 0, false, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 16, - columnNumber: 11 - }, this), - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("p", { - className: "max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400", - children: [ - "Looking for a starting point or more instructions? Head over to", - " ", - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("a", { - href: "https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app", - className: "font-medium text-zinc-950 dark:text-zinc-50", - children: "Templates" - }, void 0, false, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 21, - columnNumber: 13 - }, this), - " ", - "or the", - " ", - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("a", { - href: "https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app", - className: "font-medium text-zinc-950 dark:text-zinc-50", - children: "Learning" - }, void 0, false, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 28, - columnNumber: 13 - }, this), - " ", - "center." - ] - }, void 0, true, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 19, - columnNumber: 11 - }, this) - ] - }, void 0, true, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 15, - columnNumber: 9 - }, this), - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("div", { - className: "flex flex-col gap-4 text-base font-medium sm:flex-row", - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("a", { - className: "flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-39.5", - href: "https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app", - target: "_blank", - rel: "noopener noreferrer", - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$image$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"], { - className: "dark:invert", - src: "/vercel.svg", - alt: "Vercel logomark", - width: 16, - height: 16 - }, void 0, false, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 44, - columnNumber: 13 - }, this), - "Deploy Now" - ] - }, void 0, true, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 38, - columnNumber: 11 - }, this), - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("a", { - className: "flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/8 px-5 transition-colors hover:border-transparent hover:bg-black/4 dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-39.5", - href: "https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app", - target: "_blank", - rel: "noopener noreferrer", - children: "Documentation" - }, void 0, false, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 53, - columnNumber: 11 - }, this) - ] - }, void 0, true, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 37, - columnNumber: 9 - }, this) - ] - }, void 0, true, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 6, - columnNumber: 7 - }, this) - }, void 0, false, { - fileName: "[project]/src/app/page.tsx", - lineNumber: 5, - columnNumber: 5 - }, this); -} -}), -"[project]/src/app/page.tsx [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/src/app/page.tsx [app-rsc] (ecmascript)")); -}), -]; - -//# sourceMappingURL=%5Broot-of-the-server%5D__305743d6._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__305743d6._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__305743d6._.js.map deleted file mode 100644 index 21957ef..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__305743d6._.js.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 18, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/src/app/page.tsx"],"sourcesContent":["import Image from \"next/image\";\n\nexport default function Home() {\n return (\n
\n
\n \n
\n

\n To get started, edit the page.tsx file.\n

\n

\n Looking for a starting point or more instructions? Head over to{\" \"}\n \n Templates\n {\" \"}\n or the{\" \"}\n \n Learning\n {\" \"}\n center.\n

\n
\n
\n \n \n Deploy Now\n \n \n Documentation\n \n
\n
\n
\n );\n}\n"],"names":[],"mappings":";;;;;AAAA;;;AAEe,SAAS;IACtB,qBACE,8OAAC;QAAI,WAAU;kBACb,cAAA,8OAAC;YAAK,WAAU;;8BACd,8OAAC,wIAAK;oBACJ,WAAU;oBACV,KAAI;oBACJ,KAAI;oBACJ,OAAO;oBACP,QAAQ;oBACR,QAAQ;;;;;;8BAEV,8OAAC;oBAAI,WAAU;;sCACb,8OAAC;4BAAG,WAAU;sCAAyF;;;;;;sCAGvG,8OAAC;4BAAE,WAAU;;gCAA8D;gCACT;8CAChE,8OAAC;oCACC,MAAK;oCACL,WAAU;8CACX;;;;;;gCAEI;gCAAI;gCACF;8CACP,8OAAC;oCACC,MAAK;oCACL,WAAU;8CACX;;;;;;gCAEI;gCAAI;;;;;;;;;;;;;8BAIb,8OAAC;oBAAI,WAAU;;sCACb,8OAAC;4BACC,WAAU;4BACV,MAAK;4BACL,QAAO;4BACP,KAAI;;8CAEJ,8OAAC,wIAAK;oCACJ,WAAU;oCACV,KAAI;oCACJ,KAAI;oCACJ,OAAO;oCACP,QAAQ;;;;;;gCACR;;;;;;;sCAGJ,8OAAC;4BACC,WAAU;4BACV,MAAK;4BACL,QAAO;4BACP,KAAI;sCACL;;;;;;;;;;;;;;;;;;;;;;;AAOX"}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__6b48513c._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__6b48513c._.js deleted file mode 100644 index be1c4df..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__6b48513c._.js +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = [ -"[project]/src/app/favicon.ico.mjs { IMAGE => \"[project]/src/app/favicon.ico (static in ecmascript, tag client)\" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/src/app/favicon.ico.mjs { IMAGE => \"[project]/src/app/favicon.ico (static in ecmascript, tag client)\" } [app-rsc] (structured image object, ecmascript)")); -}), -"[externals]/next/dist/shared/lib/no-fallback-error.external.js [external] (next/dist/shared/lib/no-fallback-error.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/shared/lib/no-fallback-error.external.js", () => require("next/dist/shared/lib/no-fallback-error.external.js")); - -module.exports = mod; -}), -"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/src/app/layout.tsx [app-rsc] (ecmascript)")); -}), -]; \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__6b48513c._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__6b48513c._.js.map deleted file mode 100644 index c15d7ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__6b48513c._.js.map +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a8ab9a0d._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a8ab9a0d._.js deleted file mode 100644 index 92fda3c..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a8ab9a0d._.js +++ /dev/null @@ -1,155 +0,0 @@ -module.exports = [ -"[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js", () => require("next/dist/compiled/next-server/app-page-turbo.runtime.dev.js")); - -module.exports = mod; -}), -"[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)", ((__turbopack_context__, module, exports) => { - -const mod = __turbopack_context__.x("next/dist/server/app-render/work-async-storage.external.js", () => require("next/dist/server/app-render/work-async-storage.external.js")); - -module.exports = mod; -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time truthy", 1) { - module.exports = __turbopack_context__.r("[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)"); - } else //TURBOPACK unreachable - ; - } else //TURBOPACK unreachable - ; - } -} //# sourceMappingURL=module.compiled.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactJsxRuntime; //# sourceMappingURL=react-jsx-runtime.js.map -}), -"[project]/node_modules/next/dist/client/components/handle-isr-error.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HandleISRError", { - enumerable: true, - get: function() { - return HandleISRError; - } -}); -const workAsyncStorage = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)").workAsyncStorage : "TURBOPACK unreachable"; -function HandleISRError({ error }) { - if (workAsyncStorage) { - const store = workAsyncStorage.getStore(); - if (store?.isStaticGeneration) { - if (error) { - console.error(error); - } - throw error; - } - } - return null; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=handle-isr-error.js.map -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, // supplied custom global error signatures. -"default", { - enumerable: true, - get: function() { - return _default; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -const _handleisrerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/handle-isr-error.js [app-ssr] (ecmascript)"); -const styles = { - error: { - // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52 - fontFamily: 'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"', - height: '100vh', - textAlign: 'center', - display: 'flex', - flexDirection: 'column', - alignItems: 'center', - justifyContent: 'center' - }, - text: { - fontSize: '14px', - fontWeight: 400, - lineHeight: '28px', - margin: '0 8px' - } -}; -function DefaultGlobalError({ error }) { - const digest = error?.digest; - return /*#__PURE__*/ (0, _jsxruntime.jsxs)("html", { - id: "__next_error__", - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("head", {}), - /*#__PURE__*/ (0, _jsxruntime.jsxs)("body", { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(_handleisrerror.HandleISRError, { - error: error - }), - /*#__PURE__*/ (0, _jsxruntime.jsx)("div", { - style: styles.error, - children: /*#__PURE__*/ (0, _jsxruntime.jsxs)("div", { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsxs)("h2", { - style: styles.text, - children: [ - "Application error: a ", - digest ? 'server' : 'client', - "-side exception has occurred while loading ", - window.location.hostname, - " (see the", - ' ', - digest ? 'server logs' : 'browser console', - " for more information)." - ] - }), - digest ? /*#__PURE__*/ (0, _jsxruntime.jsx)("p", { - style: styles.text, - children: `Digest: ${digest}` - }) : null - ] - }) - }) - ] - }) - ] - }); -} -const _default = DefaultGlobalError; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=global-error.js.map -}), -]; - -//# sourceMappingURL=%5Broot-of-the-server%5D__a8ab9a0d._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a8ab9a0d._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a8ab9a0d._.js.map deleted file mode 100644 index 0b1fe4c..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a8ab9a0d._.js.map +++ /dev/null @@ -1,9 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 16, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK"],"mappings":"AAAA,IAAIA,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACL,IAAIF,QAAQC,GAAG,CAACK,yBAAyB,EAAE;;SAcpC;QACL,IAAIN,QAAQC,GAAG,CAACM,QAAQ,KAAK,WAAe;YAC1C,IAAIP,QAAQC,GAAG,CAACO,SAAS,eAAE;gBACzBL,OAAOC,OAAO,GAAGC,QAAQ;YAC3B,OAAO;;QAGT,OAAO;;IAOT;AACF","ignoreList":[0]}}, - {"offset": {"line": 35, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactJsxRuntime\n"],"names":["module","exports","require","vendored","ReactJsxRuntime"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,eAAe","ignoreList":[0]}}, - {"offset": {"line": 40, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/handle-isr-error.tsx"],"sourcesContent":["const workAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n ).workAsyncStorage\n : undefined\n\n// if we are revalidating we want to re-throw the error so the\n// function crashes so we can maintain our previous cache\n// instead of caching the error page\nexport function HandleISRError({ error }: { error: any }) {\n if (workAsyncStorage) {\n const store = workAsyncStorage.getStore()\n if (store?.isStaticGeneration) {\n if (error) {\n console.error(error)\n }\n throw error\n }\n }\n\n return null\n}\n"],"names":["HandleISRError","workAsyncStorage","window","require","undefined","error","store","getStore","isStaticGeneration","console"],"mappings":";;;+BAUgBA,kBAAAA;;;eAAAA;;;AAVhB,MAAMC,mBACJ,OAAOC,WAAW,qBAEZC,QAAQ,uKACRF,gBAAgB,GAClBG;AAKC,SAASJ,eAAe,EAAEK,KAAK,EAAkB;IACtD,IAAIJ,kBAAkB;QACpB,MAAMK,QAAQL,iBAAiBM,QAAQ;QACvC,IAAID,OAAOE,oBAAoB;YAC7B,IAAIH,OAAO;gBACTI,QAAQJ,KAAK,CAACA;YAChB;YACA,MAAMA;QACR;IACF;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 73, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/global-error.tsx"],"sourcesContent":["'use client'\n\nimport { HandleISRError } from '../handle-isr-error'\n\nconst styles = {\n error: {\n // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52\n fontFamily:\n 'system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"',\n height: '100vh',\n textAlign: 'center',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n text: {\n fontSize: '14px',\n fontWeight: 400,\n lineHeight: '28px',\n margin: '0 8px',\n },\n} as const\n\nexport type GlobalErrorComponent = React.ComponentType<{\n error: any\n}>\nfunction DefaultGlobalError({ error }: { error: any }) {\n const digest: string | undefined = error?.digest\n return (\n \n \n \n \n
\n
\n

\n Application error: a {digest ? 'server' : 'client'}-side exception\n has occurred while loading {window.location.hostname} (see the{' '}\n {digest ? 'server logs' : 'browser console'} for more\n information).\n

\n {digest ?

{`Digest: ${digest}`}

: null}\n
\n
\n \n \n )\n}\n\n// Exported so that the import signature in the loaders can be identical to user\n// supplied custom global error signatures.\nexport default DefaultGlobalError\n"],"names":["styles","error","fontFamily","height","textAlign","display","flexDirection","alignItems","justifyContent","text","fontSize","fontWeight","lineHeight","margin","DefaultGlobalError","digest","html","id","head","body","HandleISRError","div","style","h2","window","location","hostname","p"],"mappings":";;;+BAmDA,AADA,2CAC2C,qCADqC;AAEhF,WAAA;;;eAAA;;;;gCAlD+B;AAE/B,MAAMA,SAAS;IACbC,OAAO;QACL,0FAA0F;QAC1FC,YACE;QACFC,QAAQ;QACRC,WAAW;QACXC,SAAS;QACTC,eAAe;QACfC,YAAY;QACZC,gBAAgB;IAClB;IACAC,MAAM;QACJC,UAAU;QACVC,YAAY;QACZC,YAAY;QACZC,QAAQ;IACV;AACF;AAKA,SAASC,mBAAmB,EAAEb,KAAK,EAAkB;IACnD,MAAMc,SAA6Bd,OAAOc;IAC1C,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,IAAA,EAACC,QAAAA;QAAKC,IAAG;;0BACP,CAAA,GAAA,YAAA,GAAA,EAACC,QAAAA,CAAAA;0BACD,CAAA,GAAA,YAAA,IAAA,EAACC,QAAAA;;kCACC,CAAA,GAAA,YAAA,GAAA,EAACC,gBAAAA,cAAc,EAAA;wBAACnB,OAAOA;;kCACvB,CAAA,GAAA,YAAA,GAAA,EAACoB,OAAAA;wBAAIC,OAAOtB,OAAOC,KAAK;kCACtB,WAAA,GAAA,CAAA,GAAA,YAAA,IAAA,EAACoB,OAAAA;;8CACC,CAAA,GAAA,YAAA,IAAA,EAACE,MAAAA;oCAAGD,OAAOtB,OAAOS,IAAI;;wCAAE;wCACAM,SAAS,WAAW;wCAAS;wCACvBS,OAAOC,QAAQ,CAACC,QAAQ;wCAAC;wCAAU;wCAC9DX,SAAS,gBAAgB;wCAAkB;;;gCAG7CA,SAAAA,WAAAA,GAAS,CAAA,GAAA,YAAA,GAAA,EAACY,KAAAA;oCAAEL,OAAOtB,OAAOS,IAAI;8CAAG,CAAC,QAAQ,EAAEM,QAAQ;qCAAQ;;;;;;;;AAMzE;MAIA,WAAeD","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a9fea3fa._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a9fea3fa._.js deleted file mode 100644 index 5843a55..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a9fea3fa._.js +++ /dev/null @@ -1,103 +0,0 @@ -module.exports = [ -"[next]/internal/font/google/geist_a71539c9.module.css [app-rsc] (css module)", ((__turbopack_context__) => { - -__turbopack_context__.v({ - "className": "geist_a71539c9-module__T19VSG__className", - "variable": "geist_a71539c9-module__T19VSG__variable", -}); -}), -"[next]/internal/font/google/geist_a71539c9.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>__TURBOPACK__default__export__ -]); -var __TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_a71539c9$2e$module$2e$css__$5b$app$2d$rsc$5d$__$28$css__module$29$__ = __turbopack_context__.i("[next]/internal/font/google/geist_a71539c9.module.css [app-rsc] (css module)"); -; -const fontData = { - className: __TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_a71539c9$2e$module$2e$css__$5b$app$2d$rsc$5d$__$28$css__module$29$__["default"].className, - style: { - fontFamily: "'Geist', 'Geist Fallback'", - fontStyle: "normal" - } -}; -if (__TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_a71539c9$2e$module$2e$css__$5b$app$2d$rsc$5d$__$28$css__module$29$__["default"].variable != null) { - fontData.variable = __TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_a71539c9$2e$module$2e$css__$5b$app$2d$rsc$5d$__$28$css__module$29$__["default"].variable; -} -const __TURBOPACK__default__export__ = fontData; -}), -"[next]/internal/font/google/geist_mono_8d43a2aa.module.css [app-rsc] (css module)", ((__turbopack_context__) => { - -__turbopack_context__.v({ - "className": "geist_mono_8d43a2aa-module__8Li5zG__className", - "variable": "geist_mono_8d43a2aa-module__8Li5zG__variable", -}); -}), -"[next]/internal/font/google/geist_mono_8d43a2aa.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>__TURBOPACK__default__export__ -]); -var __TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_mono_8d43a2aa$2e$module$2e$css__$5b$app$2d$rsc$5d$__$28$css__module$29$__ = __turbopack_context__.i("[next]/internal/font/google/geist_mono_8d43a2aa.module.css [app-rsc] (css module)"); -; -const fontData = { - className: __TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_mono_8d43a2aa$2e$module$2e$css__$5b$app$2d$rsc$5d$__$28$css__module$29$__["default"].className, - style: { - fontFamily: "'Geist Mono', 'Geist Mono Fallback'", - fontStyle: "normal" - } -}; -if (__TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_mono_8d43a2aa$2e$module$2e$css__$5b$app$2d$rsc$5d$__$28$css__module$29$__["default"].variable != null) { - fontData.variable = __TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_mono_8d43a2aa$2e$module$2e$css__$5b$app$2d$rsc$5d$__$28$css__module$29$__["default"].variable; -} -const __TURBOPACK__default__export__ = fontData; -}), -"[project]/src/app/layout.tsx [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>RootLayout, - "metadata", - ()=>metadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_a71539c9$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[next]/internal/font/google/geist_a71539c9.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_mono_8d43a2aa$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[next]/internal/font/google/geist_mono_8d43a2aa.js [app-rsc] (ecmascript)"); -; -; -; -; -const metadata = { - title: "Create Next App", - description: "Generated by create next app" -}; -function RootLayout({ children }) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("html", { - lang: "en", - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$dev$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsxDEV"])("body", { - className: `${__TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_a71539c9$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].variable} ${__TURBOPACK__imported__module__$5b$next$5d2f$internal$2f$font$2f$google$2f$geist_mono_8d43a2aa$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].variable} antialiased`, - children: children - }, void 0, false, { - fileName: "[project]/src/app/layout.tsx", - lineNumber: 27, - columnNumber: 7 - }, this) - }, void 0, false, { - fileName: "[project]/src/app/layout.tsx", - lineNumber: 26, - columnNumber: 5 - }, this); -} -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactJsxDevRuntime; //# sourceMappingURL=react-jsx-dev-runtime.js.map -}), -]; - -//# sourceMappingURL=%5Broot-of-the-server%5D__a9fea3fa._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a9fea3fa._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a9fea3fa._.js.map deleted file mode 100644 index 54c8329..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[root-of-the-server]__a9fea3fa._.js.map +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 3, "column": 0}, "map": {"version":3,"sources":["turbopack:///[next]/internal/font/google/geist_a71539c9.module.css [app-rsc] (css module)"],"sourcesContent":["__turbopack_context__.v({\n \"className\": \"geist_a71539c9-module__T19VSG__className\",\n \"variable\": \"geist_a71539c9-module__T19VSG__variable\",\n});\n"],"names":[],"mappings":"AAAA;AACA;AACA;AACA","ignoreList":[0]}}, - {"offset": {"line": 11, "column": 0}, "map": {"version":3,"sources":["turbopack:///[next]/internal/font/google/geist_a71539c9.js"],"sourcesContent":["import cssModule from \"@vercel/turbopack-next/internal/font/google/cssmodule.module.css?{%22path%22:%22layout.tsx%22,%22import%22:%22Geist%22,%22arguments%22:[{%22variable%22:%22--font-geist-sans%22,%22subsets%22:[%22latin%22]}],%22variableName%22:%22geistSans%22}\";\nconst fontData = {\n className: cssModule.className,\n style: {\n fontFamily: \"'Geist', 'Geist Fallback'\",\n fontStyle: \"normal\",\n\n },\n};\n\nif (cssModule.variable != null) {\n fontData.variable = cssModule.variable;\n}\n\nexport default fontData;\n"],"names":[],"mappings":";;;;AAAA;;AACA,MAAM,WAAW;IACb,WAAW,gKAAS,CAAC,SAAS;IAC9B,OAAO;QACH,YAAY;QACZ,WAAW;IAEf;AACJ;AAEA,IAAI,gKAAS,CAAC,QAAQ,IAAI,MAAM;IAC5B,SAAS,QAAQ,GAAG,gKAAS,CAAC,QAAQ;AAC1C;uCAEe","ignoreList":[0]}}, - {"offset": {"line": 31, "column": 0}, "map": {"version":3,"sources":["turbopack:///[next]/internal/font/google/geist_mono_8d43a2aa.module.css [app-rsc] (css module)"],"sourcesContent":["__turbopack_context__.v({\n \"className\": \"geist_mono_8d43a2aa-module__8Li5zG__className\",\n \"variable\": \"geist_mono_8d43a2aa-module__8Li5zG__variable\",\n});\n"],"names":[],"mappings":"AAAA;AACA;AACA;AACA","ignoreList":[0]}}, - {"offset": {"line": 39, "column": 0}, "map": {"version":3,"sources":["turbopack:///[next]/internal/font/google/geist_mono_8d43a2aa.js"],"sourcesContent":["import cssModule from \"@vercel/turbopack-next/internal/font/google/cssmodule.module.css?{%22path%22:%22layout.tsx%22,%22import%22:%22Geist_Mono%22,%22arguments%22:[{%22variable%22:%22--font-geist-mono%22,%22subsets%22:[%22latin%22]}],%22variableName%22:%22geistMono%22}\";\nconst fontData = {\n className: cssModule.className,\n style: {\n fontFamily: \"'Geist Mono', 'Geist Mono Fallback'\",\n fontStyle: \"normal\",\n\n },\n};\n\nif (cssModule.variable != null) {\n fontData.variable = cssModule.variable;\n}\n\nexport default fontData;\n"],"names":[],"mappings":";;;;AAAA;;AACA,MAAM,WAAW;IACb,WAAW,qKAAS,CAAC,SAAS;IAC9B,OAAO;QACH,YAAY;QACZ,WAAW;IAEf;AACJ;AAEA,IAAI,qKAAS,CAAC,QAAQ,IAAI,MAAM;IAC5B,SAAS,QAAQ,GAAG,qKAAS,CAAC,QAAQ;AAC1C;uCAEe","ignoreList":[0]}}, - {"offset": {"line": 60, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/src/app/layout.tsx"],"sourcesContent":["import type { Metadata } from \"next\";\nimport { Geist, Geist_Mono } from \"next/font/google\";\nimport \"./globals.css\";\n\nconst geistSans = Geist({\n variable: \"--font-geist-sans\",\n subsets: [\"latin\"],\n});\n\nconst geistMono = Geist_Mono({\n variable: \"--font-geist-mono\",\n subsets: [\"latin\"],\n});\n\nexport const metadata: Metadata = {\n title: \"Create Next App\",\n description: \"Generated by create next app\",\n};\n\nexport default function RootLayout({\n children,\n}: Readonly<{\n children: React.ReactNode;\n}>) {\n return (\n \n \n {children}\n \n \n );\n}\n"],"names":[],"mappings":";;;;;;;;;;;;;AAcO,MAAM,WAAqB;IAChC,OAAO;IACP,aAAa;AACf;AAEe,SAAS,WAAW,EACjC,QAAQ,EAGR;IACA,qBACE,8OAAC;QAAK,MAAK;kBACT,cAAA,8OAAC;YACC,WAAW,GAAG,oJAAS,CAAC,QAAQ,CAAC,CAAC,EAAE,yJAAS,CAAC,QAAQ,CAAC,YAAY,CAAC;sBAEnE;;;;;;;;;;;AAIT"}}, - {"offset": {"line": 98, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactJsxDevRuntime\n"],"names":["module","exports","require","vendored","ReactJsxDevRuntime"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,kBAAkB","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[turbopack]_runtime.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[turbopack]_runtime.js deleted file mode 100644 index c01675b..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[turbopack]_runtime.js +++ /dev/null @@ -1,795 +0,0 @@ -const RUNTIME_PUBLIC_PATH = "server/chunks/ssr/[turbopack]_runtime.js"; -const RELATIVE_ROOT_PATH = "../.."; -const ASSET_PREFIX = "/_next/"; -/** - * This file contains runtime types and functions that are shared between all - * TurboPack ECMAScript runtimes. - * - * It will be prepended to the runtime code of each runtime. - */ /* eslint-disable @typescript-eslint/no-unused-vars */ /// -const REEXPORTED_OBJECTS = new WeakMap(); -/** - * Constructs the `__turbopack_context__` object for a module. - */ function Context(module, exports) { - this.m = module; - // We need to store this here instead of accessing it from the module object to: - // 1. Make it available to factories directly, since we rewrite `this` to - // `__turbopack_context__.e` in CJS modules. - // 2. Support async modules which rewrite `module.exports` to a promise, so we - // can still access the original exports object from functions like - // `esmExport` - // Ideally we could find a new approach for async modules and drop this property altogether. - this.e = exports; -} -const contextPrototype = Context.prototype; -const hasOwnProperty = Object.prototype.hasOwnProperty; -const toStringTag = typeof Symbol !== 'undefined' && Symbol.toStringTag; -function defineProp(obj, name, options) { - if (!hasOwnProperty.call(obj, name)) Object.defineProperty(obj, name, options); -} -function getOverwrittenModule(moduleCache, id) { - let module = moduleCache[id]; - if (!module) { - // This is invoked when a module is merged into another module, thus it wasn't invoked via - // instantiateModule and the cache entry wasn't created yet. - module = createModuleObject(id); - moduleCache[id] = module; - } - return module; -} -/** - * Creates the module object. Only done here to ensure all module objects have the same shape. - */ function createModuleObject(id) { - return { - exports: {}, - error: undefined, - id, - namespaceObject: undefined - }; -} -const BindingTag_Value = 0; -/** - * Adds the getters to the exports object. - */ function esm(exports, bindings) { - defineProp(exports, '__esModule', { - value: true - }); - if (toStringTag) defineProp(exports, toStringTag, { - value: 'Module' - }); - let i = 0; - while(i < bindings.length){ - const propName = bindings[i++]; - const tagOrFunction = bindings[i++]; - if (typeof tagOrFunction === 'number') { - if (tagOrFunction === BindingTag_Value) { - defineProp(exports, propName, { - value: bindings[i++], - enumerable: true, - writable: false - }); - } else { - throw new Error(`unexpected tag: ${tagOrFunction}`); - } - } else { - const getterFn = tagOrFunction; - if (typeof bindings[i] === 'function') { - const setterFn = bindings[i++]; - defineProp(exports, propName, { - get: getterFn, - set: setterFn, - enumerable: true - }); - } else { - defineProp(exports, propName, { - get: getterFn, - enumerable: true - }); - } - } - } - Object.seal(exports); -} -/** - * Makes the module an ESM with exports - */ function esmExport(bindings, id) { - let module; - let exports; - if (id != null) { - module = getOverwrittenModule(this.c, id); - exports = module.exports; - } else { - module = this.m; - exports = this.e; - } - module.namespaceObject = exports; - esm(exports, bindings); -} -contextPrototype.s = esmExport; -function ensureDynamicExports(module, exports) { - let reexportedObjects = REEXPORTED_OBJECTS.get(module); - if (!reexportedObjects) { - REEXPORTED_OBJECTS.set(module, reexportedObjects = []); - module.exports = module.namespaceObject = new Proxy(exports, { - get (target, prop) { - if (hasOwnProperty.call(target, prop) || prop === 'default' || prop === '__esModule') { - return Reflect.get(target, prop); - } - for (const obj of reexportedObjects){ - const value = Reflect.get(obj, prop); - if (value !== undefined) return value; - } - return undefined; - }, - ownKeys (target) { - const keys = Reflect.ownKeys(target); - for (const obj of reexportedObjects){ - for (const key of Reflect.ownKeys(obj)){ - if (key !== 'default' && !keys.includes(key)) keys.push(key); - } - } - return keys; - } - }); - } - return reexportedObjects; -} -/** - * Dynamically exports properties from an object - */ function dynamicExport(object, id) { - let module; - let exports; - if (id != null) { - module = getOverwrittenModule(this.c, id); - exports = module.exports; - } else { - module = this.m; - exports = this.e; - } - const reexportedObjects = ensureDynamicExports(module, exports); - if (typeof object === 'object' && object !== null) { - reexportedObjects.push(object); - } -} -contextPrototype.j = dynamicExport; -function exportValue(value, id) { - let module; - if (id != null) { - module = getOverwrittenModule(this.c, id); - } else { - module = this.m; - } - module.exports = value; -} -contextPrototype.v = exportValue; -function exportNamespace(namespace, id) { - let module; - if (id != null) { - module = getOverwrittenModule(this.c, id); - } else { - module = this.m; - } - module.exports = module.namespaceObject = namespace; -} -contextPrototype.n = exportNamespace; -function createGetter(obj, key) { - return ()=>obj[key]; -} -/** - * @returns prototype of the object - */ const getProto = Object.getPrototypeOf ? (obj)=>Object.getPrototypeOf(obj) : (obj)=>obj.__proto__; -/** Prototypes that are not expanded for exports */ const LEAF_PROTOTYPES = [ - null, - getProto({}), - getProto([]), - getProto(getProto) -]; -/** - * @param raw - * @param ns - * @param allowExportDefault - * * `false`: will have the raw module as default export - * * `true`: will have the default property as default export - */ function interopEsm(raw, ns, allowExportDefault) { - const bindings = []; - let defaultLocation = -1; - for(let current = raw; (typeof current === 'object' || typeof current === 'function') && !LEAF_PROTOTYPES.includes(current); current = getProto(current)){ - for (const key of Object.getOwnPropertyNames(current)){ - bindings.push(key, createGetter(raw, key)); - if (defaultLocation === -1 && key === 'default') { - defaultLocation = bindings.length - 1; - } - } - } - // this is not really correct - // we should set the `default` getter if the imported module is a `.cjs file` - if (!(allowExportDefault && defaultLocation >= 0)) { - // Replace the binding with one for the namespace itself in order to preserve iteration order. - if (defaultLocation >= 0) { - // Replace the getter with the value - bindings.splice(defaultLocation, 1, BindingTag_Value, raw); - } else { - bindings.push('default', BindingTag_Value, raw); - } - } - esm(ns, bindings); - return ns; -} -function createNS(raw) { - if (typeof raw === 'function') { - return function(...args) { - return raw.apply(this, args); - }; - } else { - return Object.create(null); - } -} -function esmImport(id) { - const module = getOrInstantiateModuleFromParent(id, this.m); - // any ES module has to have `module.namespaceObject` defined. - if (module.namespaceObject) return module.namespaceObject; - // only ESM can be an async module, so we don't need to worry about exports being a promise here. - const raw = module.exports; - return module.namespaceObject = interopEsm(raw, createNS(raw), raw && raw.__esModule); -} -contextPrototype.i = esmImport; -function asyncLoader(moduleId) { - const loader = this.r(moduleId); - return loader(esmImport.bind(this)); -} -contextPrototype.A = asyncLoader; -// Add a simple runtime require so that environments without one can still pass -// `typeof require` CommonJS checks so that exports are correctly registered. -const runtimeRequire = // @ts-ignore -typeof require === 'function' ? require : function require1() { - throw new Error('Unexpected use of runtime require'); -}; -contextPrototype.t = runtimeRequire; -function commonJsRequire(id) { - return getOrInstantiateModuleFromParent(id, this.m).exports; -} -contextPrototype.r = commonJsRequire; -/** - * Remove fragments and query parameters since they are never part of the context map keys - * - * This matches how we parse patterns at resolving time. Arguably we should only do this for - * strings passed to `import` but the resolve does it for `import` and `require` and so we do - * here as well. - */ function parseRequest(request) { - // Per the URI spec fragments can contain `?` characters, so we should trim it off first - // https://datatracker.ietf.org/doc/html/rfc3986#section-3.5 - const hashIndex = request.indexOf('#'); - if (hashIndex !== -1) { - request = request.substring(0, hashIndex); - } - const queryIndex = request.indexOf('?'); - if (queryIndex !== -1) { - request = request.substring(0, queryIndex); - } - return request; -} -/** - * `require.context` and require/import expression runtime. - */ function moduleContext(map) { - function moduleContext(id) { - id = parseRequest(id); - if (hasOwnProperty.call(map, id)) { - return map[id].module(); - } - const e = new Error(`Cannot find module '${id}'`); - e.code = 'MODULE_NOT_FOUND'; - throw e; - } - moduleContext.keys = ()=>{ - return Object.keys(map); - }; - moduleContext.resolve = (id)=>{ - id = parseRequest(id); - if (hasOwnProperty.call(map, id)) { - return map[id].id(); - } - const e = new Error(`Cannot find module '${id}'`); - e.code = 'MODULE_NOT_FOUND'; - throw e; - }; - moduleContext.import = async (id)=>{ - return await moduleContext(id); - }; - return moduleContext; -} -contextPrototype.f = moduleContext; -/** - * Returns the path of a chunk defined by its data. - */ function getChunkPath(chunkData) { - return typeof chunkData === 'string' ? chunkData : chunkData.path; -} -function isPromise(maybePromise) { - return maybePromise != null && typeof maybePromise === 'object' && 'then' in maybePromise && typeof maybePromise.then === 'function'; -} -function isAsyncModuleExt(obj) { - return turbopackQueues in obj; -} -function createPromise() { - let resolve; - let reject; - const promise = new Promise((res, rej)=>{ - reject = rej; - resolve = res; - }); - return { - promise, - resolve: resolve, - reject: reject - }; -} -// Load the CompressedmoduleFactories of a chunk into the `moduleFactories` Map. -// The CompressedModuleFactories format is -// - 1 or more module ids -// - a module factory function -// So walking this is a little complex but the flat structure is also fast to -// traverse, we can use `typeof` operators to distinguish the two cases. -function installCompressedModuleFactories(chunkModules, offset, moduleFactories, newModuleId) { - let i = offset; - while(i < chunkModules.length){ - let moduleId = chunkModules[i]; - let end = i + 1; - // Find our factory function - while(end < chunkModules.length && typeof chunkModules[end] !== 'function'){ - end++; - } - if (end === chunkModules.length) { - throw new Error('malformed chunk format, expected a factory function'); - } - // Each chunk item has a 'primary id' and optional additional ids. If the primary id is already - // present we know all the additional ids are also present, so we don't need to check. - if (!moduleFactories.has(moduleId)) { - const moduleFactoryFn = chunkModules[end]; - applyModuleFactoryName(moduleFactoryFn); - newModuleId?.(moduleId); - for(; i < end; i++){ - moduleId = chunkModules[i]; - moduleFactories.set(moduleId, moduleFactoryFn); - } - } - i = end + 1; // end is pointing at the last factory advance to the next id or the end of the array. - } -} -// everything below is adapted from webpack -// https://github.com/webpack/webpack/blob/6be4065ade1e252c1d8dcba4af0f43e32af1bdc1/lib/runtime/AsyncModuleRuntimeModule.js#L13 -const turbopackQueues = Symbol('turbopack queues'); -const turbopackExports = Symbol('turbopack exports'); -const turbopackError = Symbol('turbopack error'); -function resolveQueue(queue) { - if (queue && queue.status !== 1) { - queue.status = 1; - queue.forEach((fn)=>fn.queueCount--); - queue.forEach((fn)=>fn.queueCount-- ? fn.queueCount++ : fn()); - } -} -function wrapDeps(deps) { - return deps.map((dep)=>{ - if (dep !== null && typeof dep === 'object') { - if (isAsyncModuleExt(dep)) return dep; - if (isPromise(dep)) { - const queue = Object.assign([], { - status: 0 - }); - const obj = { - [turbopackExports]: {}, - [turbopackQueues]: (fn)=>fn(queue) - }; - dep.then((res)=>{ - obj[turbopackExports] = res; - resolveQueue(queue); - }, (err)=>{ - obj[turbopackError] = err; - resolveQueue(queue); - }); - return obj; - } - } - return { - [turbopackExports]: dep, - [turbopackQueues]: ()=>{} - }; - }); -} -function asyncModule(body, hasAwait) { - const module = this.m; - const queue = hasAwait ? Object.assign([], { - status: -1 - }) : undefined; - const depQueues = new Set(); - const { resolve, reject, promise: rawPromise } = createPromise(); - const promise = Object.assign(rawPromise, { - [turbopackExports]: module.exports, - [turbopackQueues]: (fn)=>{ - queue && fn(queue); - depQueues.forEach(fn); - promise['catch'](()=>{}); - } - }); - const attributes = { - get () { - return promise; - }, - set (v) { - // Calling `esmExport` leads to this. - if (v !== promise) { - promise[turbopackExports] = v; - } - } - }; - Object.defineProperty(module, 'exports', attributes); - Object.defineProperty(module, 'namespaceObject', attributes); - function handleAsyncDependencies(deps) { - const currentDeps = wrapDeps(deps); - const getResult = ()=>currentDeps.map((d)=>{ - if (d[turbopackError]) throw d[turbopackError]; - return d[turbopackExports]; - }); - const { promise, resolve } = createPromise(); - const fn = Object.assign(()=>resolve(getResult), { - queueCount: 0 - }); - function fnQueue(q) { - if (q !== queue && !depQueues.has(q)) { - depQueues.add(q); - if (q && q.status === 0) { - fn.queueCount++; - q.push(fn); - } - } - } - currentDeps.map((dep)=>dep[turbopackQueues](fnQueue)); - return fn.queueCount ? promise : getResult(); - } - function asyncResult(err) { - if (err) { - reject(promise[turbopackError] = err); - } else { - resolve(promise[turbopackExports]); - } - resolveQueue(queue); - } - body(handleAsyncDependencies, asyncResult); - if (queue && queue.status === -1) { - queue.status = 0; - } -} -contextPrototype.a = asyncModule; -/** - * A pseudo "fake" URL object to resolve to its relative path. - * - * When UrlRewriteBehavior is set to relative, calls to the `new URL()` will construct url without base using this - * runtime function to generate context-agnostic urls between different rendering context, i.e ssr / client to avoid - * hydration mismatch. - * - * This is based on webpack's existing implementation: - * https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/runtime/RelativeUrlRuntimeModule.js - */ const relativeURL = function relativeURL(inputUrl) { - const realUrl = new URL(inputUrl, 'x:/'); - const values = {}; - for(const key in realUrl)values[key] = realUrl[key]; - values.href = inputUrl; - values.pathname = inputUrl.replace(/[?#].*/, ''); - values.origin = values.protocol = ''; - values.toString = values.toJSON = (..._args)=>inputUrl; - for(const key in values)Object.defineProperty(this, key, { - enumerable: true, - configurable: true, - value: values[key] - }); -}; -relativeURL.prototype = URL.prototype; -contextPrototype.U = relativeURL; -/** - * Utility function to ensure all variants of an enum are handled. - */ function invariant(never, computeMessage) { - throw new Error(`Invariant: ${computeMessage(never)}`); -} -/** - * A stub function to make `require` available but non-functional in ESM. - */ function requireStub(_moduleId) { - throw new Error('dynamic usage of require is not supported'); -} -contextPrototype.z = requireStub; -// Make `globalThis` available to the module in a way that cannot be shadowed by a local variable. -contextPrototype.g = globalThis; -function applyModuleFactoryName(factory) { - // Give the module factory a nice name to improve stack traces. - Object.defineProperty(factory, 'name', { - value: 'module evaluation' - }); -} -/// -/// A 'base' utilities to support runtime can have externals. -/// Currently this is for node.js / edge runtime both. -/// If a fn requires node.js specific behavior, it should be placed in `node-external-utils` instead. -async function externalImport(id) { - let raw; - try { - raw = await import(id); - } catch (err) { - // TODO(alexkirsz) This can happen when a client-side module tries to load - // an external module we don't provide a shim for (e.g. querystring, url). - // For now, we fail semi-silently, but in the future this should be a - // compilation error. - throw new Error(`Failed to load external module ${id}: ${err}`); - } - if (raw && raw.__esModule && raw.default && 'default' in raw.default) { - return interopEsm(raw.default, createNS(raw), true); - } - return raw; -} -contextPrototype.y = externalImport; -function externalRequire(id, thunk, esm = false) { - let raw; - try { - raw = thunk(); - } catch (err) { - // TODO(alexkirsz) This can happen when a client-side module tries to load - // an external module we don't provide a shim for (e.g. querystring, url). - // For now, we fail semi-silently, but in the future this should be a - // compilation error. - throw new Error(`Failed to load external module ${id}: ${err}`); - } - if (!esm || raw.__esModule) { - return raw; - } - return interopEsm(raw, createNS(raw), true); -} -externalRequire.resolve = (id, options)=>{ - return require.resolve(id, options); -}; -contextPrototype.x = externalRequire; -/* eslint-disable @typescript-eslint/no-unused-vars */ const path = require('path'); -const relativePathToRuntimeRoot = path.relative(RUNTIME_PUBLIC_PATH, '.'); -// Compute the relative path to the `distDir`. -const relativePathToDistRoot = path.join(relativePathToRuntimeRoot, RELATIVE_ROOT_PATH); -const RUNTIME_ROOT = path.resolve(__filename, relativePathToRuntimeRoot); -// Compute the absolute path to the root, by stripping distDir from the absolute path to this file. -const ABSOLUTE_ROOT = path.resolve(__filename, relativePathToDistRoot); -/** - * Returns an absolute path to the given module path. - * Module path should be relative, either path to a file or a directory. - * - * This fn allows to calculate an absolute path for some global static values, such as - * `__dirname` or `import.meta.url` that Turbopack will not embeds in compile time. - * See ImportMetaBinding::code_generation for the usage. - */ function resolveAbsolutePath(modulePath) { - if (modulePath) { - return path.join(ABSOLUTE_ROOT, modulePath); - } - return ABSOLUTE_ROOT; -} -Context.prototype.P = resolveAbsolutePath; -/* eslint-disable @typescript-eslint/no-unused-vars */ /// -function readWebAssemblyAsResponse(path) { - const { createReadStream } = require('fs'); - const { Readable } = require('stream'); - const stream = createReadStream(path); - // @ts-ignore unfortunately there's a slight type mismatch with the stream. - return new Response(Readable.toWeb(stream), { - headers: { - 'content-type': 'application/wasm' - } - }); -} -async function compileWebAssemblyFromPath(path) { - const response = readWebAssemblyAsResponse(path); - return await WebAssembly.compileStreaming(response); -} -async function instantiateWebAssemblyFromPath(path, importsObj) { - const response = readWebAssemblyAsResponse(path); - const { instance } = await WebAssembly.instantiateStreaming(response, importsObj); - return instance.exports; -} -/* eslint-disable @typescript-eslint/no-unused-vars */ /// -/// -/// -/// -var SourceType = /*#__PURE__*/ function(SourceType) { - /** - * The module was instantiated because it was included in an evaluated chunk's - * runtime. - * SourceData is a ChunkPath. - */ SourceType[SourceType["Runtime"] = 0] = "Runtime"; - /** - * The module was instantiated because a parent module imported it. - * SourceData is a ModuleId. - */ SourceType[SourceType["Parent"] = 1] = "Parent"; - return SourceType; -}(SourceType || {}); -process.env.TURBOPACK = '1'; -const nodeContextPrototype = Context.prototype; -const url = require('url'); -const moduleFactories = new Map(); -nodeContextPrototype.M = moduleFactories; -const moduleCache = Object.create(null); -nodeContextPrototype.c = moduleCache; -/** - * Returns an absolute path to the given module's id. - */ function resolvePathFromModule(moduleId) { - const exported = this.r(moduleId); - const exportedPath = exported?.default ?? exported; - if (typeof exportedPath !== 'string') { - return exported; - } - const strippedAssetPrefix = exportedPath.slice(ASSET_PREFIX.length); - const resolved = path.resolve(RUNTIME_ROOT, strippedAssetPrefix); - return url.pathToFileURL(resolved).href; -} -nodeContextPrototype.R = resolvePathFromModule; -function loadRuntimeChunk(sourcePath, chunkData) { - if (typeof chunkData === 'string') { - loadRuntimeChunkPath(sourcePath, chunkData); - } else { - loadRuntimeChunkPath(sourcePath, chunkData.path); - } -} -const loadedChunks = new Set(); -const unsupportedLoadChunk = Promise.resolve(undefined); -const loadedChunk = Promise.resolve(undefined); -const chunkCache = new Map(); -function clearChunkCache() { - chunkCache.clear(); -} -function loadRuntimeChunkPath(sourcePath, chunkPath) { - if (!isJs(chunkPath)) { - // We only support loading JS chunks in Node.js. - // This branch can be hit when trying to load a CSS chunk. - return; - } - if (loadedChunks.has(chunkPath)) { - return; - } - try { - const resolved = path.resolve(RUNTIME_ROOT, chunkPath); - const chunkModules = require(resolved); - installCompressedModuleFactories(chunkModules, 0, moduleFactories); - loadedChunks.add(chunkPath); - } catch (cause) { - let errorMessage = `Failed to load chunk ${chunkPath}`; - if (sourcePath) { - errorMessage += ` from runtime for chunk ${sourcePath}`; - } - const error = new Error(errorMessage, { - cause - }); - error.name = 'ChunkLoadError'; - throw error; - } -} -function loadChunkAsync(chunkData) { - const chunkPath = typeof chunkData === 'string' ? chunkData : chunkData.path; - if (!isJs(chunkPath)) { - // We only support loading JS chunks in Node.js. - // This branch can be hit when trying to load a CSS chunk. - return unsupportedLoadChunk; - } - let entry = chunkCache.get(chunkPath); - if (entry === undefined) { - try { - // resolve to an absolute path to simplify `require` handling - const resolved = path.resolve(RUNTIME_ROOT, chunkPath); - // TODO: consider switching to `import()` to enable concurrent chunk loading and async file io - // However this is incompatible with hot reloading (since `import` doesn't use the require cache) - const chunkModules = require(resolved); - installCompressedModuleFactories(chunkModules, 0, moduleFactories); - entry = loadedChunk; - } catch (cause) { - const errorMessage = `Failed to load chunk ${chunkPath} from module ${this.m.id}`; - const error = new Error(errorMessage, { - cause - }); - error.name = 'ChunkLoadError'; - // Cache the failure promise, future requests will also get this same rejection - entry = Promise.reject(error); - } - chunkCache.set(chunkPath, entry); - } - // TODO: Return an instrumented Promise that React can use instead of relying on referential equality. - return entry; -} -contextPrototype.l = loadChunkAsync; -function loadChunkAsyncByUrl(chunkUrl) { - const path1 = url.fileURLToPath(new URL(chunkUrl, RUNTIME_ROOT)); - return loadChunkAsync.call(this, path1); -} -contextPrototype.L = loadChunkAsyncByUrl; -function loadWebAssembly(chunkPath, _edgeModule, imports) { - const resolved = path.resolve(RUNTIME_ROOT, chunkPath); - return instantiateWebAssemblyFromPath(resolved, imports); -} -contextPrototype.w = loadWebAssembly; -function loadWebAssemblyModule(chunkPath, _edgeModule) { - const resolved = path.resolve(RUNTIME_ROOT, chunkPath); - return compileWebAssemblyFromPath(resolved); -} -contextPrototype.u = loadWebAssemblyModule; -function getWorkerBlobURL(_chunks) { - throw new Error('Worker blobs are not implemented yet for Node.js'); -} -nodeContextPrototype.b = getWorkerBlobURL; -function instantiateModule(id, sourceType, sourceData) { - const moduleFactory = moduleFactories.get(id); - if (typeof moduleFactory !== 'function') { - // This can happen if modules incorrectly handle HMR disposes/updates, - // e.g. when they keep a `setTimeout` around which still executes old code - // and contains e.g. a `require("something")` call. - let instantiationReason; - switch(sourceType){ - case 0: - instantiationReason = `as a runtime entry of chunk ${sourceData}`; - break; - case 1: - instantiationReason = `because it was required from module ${sourceData}`; - break; - default: - invariant(sourceType, (sourceType)=>`Unknown source type: ${sourceType}`); - } - throw new Error(`Module ${id} was instantiated ${instantiationReason}, but the module factory is not available.`); - } - const module1 = createModuleObject(id); - const exports = module1.exports; - moduleCache[id] = module1; - const context = new Context(module1, exports); - // NOTE(alexkirsz) This can fail when the module encounters a runtime error. - try { - moduleFactory(context, module1, exports); - } catch (error) { - module1.error = error; - throw error; - } - module1.loaded = true; - if (module1.namespaceObject && module1.exports !== module1.namespaceObject) { - // in case of a circular dependency: cjs1 -> esm2 -> cjs1 - interopEsm(module1.exports, module1.namespaceObject); - } - return module1; -} -/** - * Retrieves a module from the cache, or instantiate it if it is not cached. - */ // @ts-ignore -function getOrInstantiateModuleFromParent(id, sourceModule) { - const module1 = moduleCache[id]; - if (module1) { - if (module1.error) { - throw module1.error; - } - return module1; - } - return instantiateModule(id, 1, sourceModule.id); -} -/** - * Instantiates a runtime module. - */ function instantiateRuntimeModule(chunkPath, moduleId) { - return instantiateModule(moduleId, 0, chunkPath); -} -/** - * Retrieves a module from the cache, or instantiate it as a runtime module if it is not cached. - */ // @ts-ignore TypeScript doesn't separate this module space from the browser runtime -function getOrInstantiateRuntimeModule(chunkPath, moduleId) { - const module1 = moduleCache[moduleId]; - if (module1) { - if (module1.error) { - throw module1.error; - } - return module1; - } - return instantiateRuntimeModule(chunkPath, moduleId); -} -const regexJsUrl = /\.js(?:\?[^#]*)?(?:#.*)?$/; -/** - * Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment. - */ function isJs(chunkUrlOrPath) { - return regexJsUrl.test(chunkUrlOrPath); -} -module.exports = (sourcePath)=>({ - m: (id)=>getOrInstantiateRuntimeModule(sourcePath, id), - c: (chunkData)=>loadRuntimeChunk(sourcePath, chunkData) - }); - - -//# sourceMappingURL=%5Bturbopack%5D_runtime.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[turbopack]_runtime.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[turbopack]_runtime.js.map deleted file mode 100644 index 5026453..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/[turbopack]_runtime.js.map +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 3, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared/runtime-utils.ts"],"sourcesContent":["/**\n * This file contains runtime types and functions that are shared between all\n * TurboPack ECMAScript runtimes.\n *\n * It will be prepended to the runtime code of each runtime.\n */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\ntype EsmNamespaceObject = Record\n\n// @ts-ignore Defined in `dev-base.ts`\ndeclare function getOrInstantiateModuleFromParent(\n id: ModuleId,\n sourceModule: M\n): M\n\nconst REEXPORTED_OBJECTS = new WeakMap()\n\n/**\n * Constructs the `__turbopack_context__` object for a module.\n */\nfunction Context(\n this: TurbopackBaseContext,\n module: Module,\n exports: Exports\n) {\n this.m = module\n // We need to store this here instead of accessing it from the module object to:\n // 1. Make it available to factories directly, since we rewrite `this` to\n // `__turbopack_context__.e` in CJS modules.\n // 2. Support async modules which rewrite `module.exports` to a promise, so we\n // can still access the original exports object from functions like\n // `esmExport`\n // Ideally we could find a new approach for async modules and drop this property altogether.\n this.e = exports\n}\nconst contextPrototype = Context.prototype as TurbopackBaseContext\n\ntype ModuleContextMap = Record\n\ninterface ModuleContextEntry {\n id: () => ModuleId\n module: () => any\n}\n\ninterface ModuleContext {\n // require call\n (moduleId: string): Exports | EsmNamespaceObject\n\n // async import call\n import(moduleId: string): Promise\n\n keys(): ModuleId[]\n\n resolve(moduleId: string): ModuleId\n}\n\ntype GetOrInstantiateModuleFromParent = (\n moduleId: M['id'],\n parentModule: M\n) => M\n\ndeclare function getOrInstantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): Module\n\nconst hasOwnProperty = Object.prototype.hasOwnProperty\nconst toStringTag = typeof Symbol !== 'undefined' && Symbol.toStringTag\n\nfunction defineProp(\n obj: any,\n name: PropertyKey,\n options: PropertyDescriptor & ThisType\n) {\n if (!hasOwnProperty.call(obj, name)) Object.defineProperty(obj, name, options)\n}\n\nfunction getOverwrittenModule(\n moduleCache: ModuleCache,\n id: ModuleId\n): Module {\n let module = moduleCache[id]\n if (!module) {\n // This is invoked when a module is merged into another module, thus it wasn't invoked via\n // instantiateModule and the cache entry wasn't created yet.\n module = createModuleObject(id)\n moduleCache[id] = module\n }\n return module\n}\n\n/**\n * Creates the module object. Only done here to ensure all module objects have the same shape.\n */\nfunction createModuleObject(id: ModuleId): Module {\n return {\n exports: {},\n error: undefined,\n id,\n namespaceObject: undefined,\n }\n}\n\ntype BindingTag = 0\nconst BindingTag_Value = 0 as BindingTag\n\n// an arbitrary sequence of bindings as\n// - a prop name\n// - BindingTag_Value, a value to be bound directly, or\n// - 1 or 2 functions to bind as getters and sdetters\ntype EsmBindings = Array<\n string | BindingTag | (() => unknown) | ((v: unknown) => void) | unknown\n>\n\n/**\n * Adds the getters to the exports object.\n */\nfunction esm(exports: Exports, bindings: EsmBindings) {\n defineProp(exports, '__esModule', { value: true })\n if (toStringTag) defineProp(exports, toStringTag, { value: 'Module' })\n let i = 0\n while (i < bindings.length) {\n const propName = bindings[i++] as string\n const tagOrFunction = bindings[i++]\n if (typeof tagOrFunction === 'number') {\n if (tagOrFunction === BindingTag_Value) {\n defineProp(exports, propName, {\n value: bindings[i++],\n enumerable: true,\n writable: false,\n })\n } else {\n throw new Error(`unexpected tag: ${tagOrFunction}`)\n }\n } else {\n const getterFn = tagOrFunction as () => unknown\n if (typeof bindings[i] === 'function') {\n const setterFn = bindings[i++] as (v: unknown) => void\n defineProp(exports, propName, {\n get: getterFn,\n set: setterFn,\n enumerable: true,\n })\n } else {\n defineProp(exports, propName, {\n get: getterFn,\n enumerable: true,\n })\n }\n }\n }\n Object.seal(exports)\n}\n\n/**\n * Makes the module an ESM with exports\n */\nfunction esmExport(\n this: TurbopackBaseContext,\n bindings: EsmBindings,\n id: ModuleId | undefined\n) {\n let module: Module\n let exports: Module['exports']\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n exports = module.exports\n } else {\n module = this.m\n exports = this.e\n }\n module.namespaceObject = exports\n esm(exports, bindings)\n}\ncontextPrototype.s = esmExport\n\ntype ReexportedObjects = Record[]\nfunction ensureDynamicExports(\n module: Module,\n exports: Exports\n): ReexportedObjects {\n let reexportedObjects: ReexportedObjects | undefined =\n REEXPORTED_OBJECTS.get(module)\n\n if (!reexportedObjects) {\n REEXPORTED_OBJECTS.set(module, (reexportedObjects = []))\n module.exports = module.namespaceObject = new Proxy(exports, {\n get(target, prop) {\n if (\n hasOwnProperty.call(target, prop) ||\n prop === 'default' ||\n prop === '__esModule'\n ) {\n return Reflect.get(target, prop)\n }\n for (const obj of reexportedObjects!) {\n const value = Reflect.get(obj, prop)\n if (value !== undefined) return value\n }\n return undefined\n },\n ownKeys(target) {\n const keys = Reflect.ownKeys(target)\n for (const obj of reexportedObjects!) {\n for (const key of Reflect.ownKeys(obj)) {\n if (key !== 'default' && !keys.includes(key)) keys.push(key)\n }\n }\n return keys\n },\n })\n }\n return reexportedObjects\n}\n\n/**\n * Dynamically exports properties from an object\n */\nfunction dynamicExport(\n this: TurbopackBaseContext,\n object: Record,\n id: ModuleId | undefined\n) {\n let module: Module\n let exports: Exports\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n exports = module.exports\n } else {\n module = this.m\n exports = this.e\n }\n const reexportedObjects = ensureDynamicExports(module, exports)\n\n if (typeof object === 'object' && object !== null) {\n reexportedObjects.push(object)\n }\n}\ncontextPrototype.j = dynamicExport\n\nfunction exportValue(\n this: TurbopackBaseContext,\n value: any,\n id: ModuleId | undefined\n) {\n let module: Module\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n } else {\n module = this.m\n }\n module.exports = value\n}\ncontextPrototype.v = exportValue\n\nfunction exportNamespace(\n this: TurbopackBaseContext,\n namespace: any,\n id: ModuleId | undefined\n) {\n let module: Module\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n } else {\n module = this.m\n }\n module.exports = module.namespaceObject = namespace\n}\ncontextPrototype.n = exportNamespace\n\nfunction createGetter(obj: Record, key: string | symbol) {\n return () => obj[key]\n}\n\n/**\n * @returns prototype of the object\n */\nconst getProto: (obj: any) => any = Object.getPrototypeOf\n ? (obj) => Object.getPrototypeOf(obj)\n : (obj) => obj.__proto__\n\n/** Prototypes that are not expanded for exports */\nconst LEAF_PROTOTYPES = [null, getProto({}), getProto([]), getProto(getProto)]\n\n/**\n * @param raw\n * @param ns\n * @param allowExportDefault\n * * `false`: will have the raw module as default export\n * * `true`: will have the default property as default export\n */\nfunction interopEsm(\n raw: Exports,\n ns: EsmNamespaceObject,\n allowExportDefault?: boolean\n) {\n const bindings: EsmBindings = []\n let defaultLocation = -1\n for (\n let current = raw;\n (typeof current === 'object' || typeof current === 'function') &&\n !LEAF_PROTOTYPES.includes(current);\n current = getProto(current)\n ) {\n for (const key of Object.getOwnPropertyNames(current)) {\n bindings.push(key, createGetter(raw, key))\n if (defaultLocation === -1 && key === 'default') {\n defaultLocation = bindings.length - 1\n }\n }\n }\n\n // this is not really correct\n // we should set the `default` getter if the imported module is a `.cjs file`\n if (!(allowExportDefault && defaultLocation >= 0)) {\n // Replace the binding with one for the namespace itself in order to preserve iteration order.\n if (defaultLocation >= 0) {\n // Replace the getter with the value\n bindings.splice(defaultLocation, 1, BindingTag_Value, raw)\n } else {\n bindings.push('default', BindingTag_Value, raw)\n }\n }\n\n esm(ns, bindings)\n return ns\n}\n\nfunction createNS(raw: Module['exports']): EsmNamespaceObject {\n if (typeof raw === 'function') {\n return function (this: any, ...args: any[]) {\n return raw.apply(this, args)\n }\n } else {\n return Object.create(null)\n }\n}\n\nfunction esmImport(\n this: TurbopackBaseContext,\n id: ModuleId\n): Exclude {\n const module = getOrInstantiateModuleFromParent(id, this.m)\n\n // any ES module has to have `module.namespaceObject` defined.\n if (module.namespaceObject) return module.namespaceObject\n\n // only ESM can be an async module, so we don't need to worry about exports being a promise here.\n const raw = module.exports\n return (module.namespaceObject = interopEsm(\n raw,\n createNS(raw),\n raw && (raw as any).__esModule\n ))\n}\ncontextPrototype.i = esmImport\n\nfunction asyncLoader(\n this: TurbopackBaseContext,\n moduleId: ModuleId\n): Promise {\n const loader = this.r(moduleId) as (\n importFunction: EsmImport\n ) => Promise\n return loader(esmImport.bind(this))\n}\ncontextPrototype.A = asyncLoader\n\n// Add a simple runtime require so that environments without one can still pass\n// `typeof require` CommonJS checks so that exports are correctly registered.\nconst runtimeRequire =\n // @ts-ignore\n typeof require === 'function'\n ? // @ts-ignore\n require\n : function require() {\n throw new Error('Unexpected use of runtime require')\n }\ncontextPrototype.t = runtimeRequire\n\nfunction commonJsRequire(\n this: TurbopackBaseContext,\n id: ModuleId\n): Exports {\n return getOrInstantiateModuleFromParent(id, this.m).exports\n}\ncontextPrototype.r = commonJsRequire\n\n/**\n * Remove fragments and query parameters since they are never part of the context map keys\n *\n * This matches how we parse patterns at resolving time. Arguably we should only do this for\n * strings passed to `import` but the resolve does it for `import` and `require` and so we do\n * here as well.\n */\nfunction parseRequest(request: string): string {\n // Per the URI spec fragments can contain `?` characters, so we should trim it off first\n // https://datatracker.ietf.org/doc/html/rfc3986#section-3.5\n const hashIndex = request.indexOf('#')\n if (hashIndex !== -1) {\n request = request.substring(0, hashIndex)\n }\n\n const queryIndex = request.indexOf('?')\n if (queryIndex !== -1) {\n request = request.substring(0, queryIndex)\n }\n\n return request\n}\n/**\n * `require.context` and require/import expression runtime.\n */\nfunction moduleContext(map: ModuleContextMap): ModuleContext {\n function moduleContext(id: string): Exports {\n id = parseRequest(id)\n if (hasOwnProperty.call(map, id)) {\n return map[id].module()\n }\n\n const e = new Error(`Cannot find module '${id}'`)\n ;(e as any).code = 'MODULE_NOT_FOUND'\n throw e\n }\n\n moduleContext.keys = (): string[] => {\n return Object.keys(map)\n }\n\n moduleContext.resolve = (id: string): ModuleId => {\n id = parseRequest(id)\n if (hasOwnProperty.call(map, id)) {\n return map[id].id()\n }\n\n const e = new Error(`Cannot find module '${id}'`)\n ;(e as any).code = 'MODULE_NOT_FOUND'\n throw e\n }\n\n moduleContext.import = async (id: string) => {\n return await (moduleContext(id) as Promise)\n }\n\n return moduleContext\n}\ncontextPrototype.f = moduleContext\n\n/**\n * Returns the path of a chunk defined by its data.\n */\nfunction getChunkPath(chunkData: ChunkData): ChunkPath {\n return typeof chunkData === 'string' ? chunkData : chunkData.path\n}\n\nfunction isPromise(maybePromise: any): maybePromise is Promise {\n return (\n maybePromise != null &&\n typeof maybePromise === 'object' &&\n 'then' in maybePromise &&\n typeof maybePromise.then === 'function'\n )\n}\n\nfunction isAsyncModuleExt(obj: T): obj is AsyncModuleExt & T {\n return turbopackQueues in obj\n}\n\nfunction createPromise() {\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason?: any) => void\n\n const promise = new Promise((res, rej) => {\n reject = rej\n resolve = res\n })\n\n return {\n promise,\n resolve: resolve!,\n reject: reject!,\n }\n}\n\n// Load the CompressedmoduleFactories of a chunk into the `moduleFactories` Map.\n// The CompressedModuleFactories format is\n// - 1 or more module ids\n// - a module factory function\n// So walking this is a little complex but the flat structure is also fast to\n// traverse, we can use `typeof` operators to distinguish the two cases.\nfunction installCompressedModuleFactories(\n chunkModules: CompressedModuleFactories,\n offset: number,\n moduleFactories: ModuleFactories,\n newModuleId?: (id: ModuleId) => void\n) {\n let i = offset\n while (i < chunkModules.length) {\n let moduleId = chunkModules[i] as ModuleId\n let end = i + 1\n // Find our factory function\n while (\n end < chunkModules.length &&\n typeof chunkModules[end] !== 'function'\n ) {\n end++\n }\n if (end === chunkModules.length) {\n throw new Error('malformed chunk format, expected a factory function')\n }\n // Each chunk item has a 'primary id' and optional additional ids. If the primary id is already\n // present we know all the additional ids are also present, so we don't need to check.\n if (!moduleFactories.has(moduleId)) {\n const moduleFactoryFn = chunkModules[end] as Function\n applyModuleFactoryName(moduleFactoryFn)\n newModuleId?.(moduleId)\n for (; i < end; i++) {\n moduleId = chunkModules[i] as ModuleId\n moduleFactories.set(moduleId, moduleFactoryFn)\n }\n }\n i = end + 1 // end is pointing at the last factory advance to the next id or the end of the array.\n }\n}\n\n// everything below is adapted from webpack\n// https://github.com/webpack/webpack/blob/6be4065ade1e252c1d8dcba4af0f43e32af1bdc1/lib/runtime/AsyncModuleRuntimeModule.js#L13\n\nconst turbopackQueues = Symbol('turbopack queues')\nconst turbopackExports = Symbol('turbopack exports')\nconst turbopackError = Symbol('turbopack error')\n\nconst enum QueueStatus {\n Unknown = -1,\n Unresolved = 0,\n Resolved = 1,\n}\n\ntype AsyncQueueFn = (() => void) & { queueCount: number }\ntype AsyncQueue = AsyncQueueFn[] & {\n status: QueueStatus\n}\n\nfunction resolveQueue(queue?: AsyncQueue) {\n if (queue && queue.status !== QueueStatus.Resolved) {\n queue.status = QueueStatus.Resolved\n queue.forEach((fn) => fn.queueCount--)\n queue.forEach((fn) => (fn.queueCount-- ? fn.queueCount++ : fn()))\n }\n}\n\ntype Dep = Exports | AsyncModulePromise | Promise\n\ntype AsyncModuleExt = {\n [turbopackQueues]: (fn: (queue: AsyncQueue) => void) => void\n [turbopackExports]: Exports\n [turbopackError]?: any\n}\n\ntype AsyncModulePromise = Promise & AsyncModuleExt\n\nfunction wrapDeps(deps: Dep[]): AsyncModuleExt[] {\n return deps.map((dep): AsyncModuleExt => {\n if (dep !== null && typeof dep === 'object') {\n if (isAsyncModuleExt(dep)) return dep\n if (isPromise(dep)) {\n const queue: AsyncQueue = Object.assign([], {\n status: QueueStatus.Unresolved,\n })\n\n const obj: AsyncModuleExt = {\n [turbopackExports]: {},\n [turbopackQueues]: (fn: (queue: AsyncQueue) => void) => fn(queue),\n }\n\n dep.then(\n (res) => {\n obj[turbopackExports] = res\n resolveQueue(queue)\n },\n (err) => {\n obj[turbopackError] = err\n resolveQueue(queue)\n }\n )\n\n return obj\n }\n }\n\n return {\n [turbopackExports]: dep,\n [turbopackQueues]: () => {},\n }\n })\n}\n\nfunction asyncModule(\n this: TurbopackBaseContext,\n body: (\n handleAsyncDependencies: (\n deps: Dep[]\n ) => Exports[] | Promise<() => Exports[]>,\n asyncResult: (err?: any) => void\n ) => void,\n hasAwait: boolean\n) {\n const module = this.m\n const queue: AsyncQueue | undefined = hasAwait\n ? Object.assign([], { status: QueueStatus.Unknown })\n : undefined\n\n const depQueues: Set = new Set()\n\n const { resolve, reject, promise: rawPromise } = createPromise()\n\n const promise: AsyncModulePromise = Object.assign(rawPromise, {\n [turbopackExports]: module.exports,\n [turbopackQueues]: (fn) => {\n queue && fn(queue)\n depQueues.forEach(fn)\n promise['catch'](() => {})\n },\n } satisfies AsyncModuleExt)\n\n const attributes: PropertyDescriptor = {\n get(): any {\n return promise\n },\n set(v: any) {\n // Calling `esmExport` leads to this.\n if (v !== promise) {\n promise[turbopackExports] = v\n }\n },\n }\n\n Object.defineProperty(module, 'exports', attributes)\n Object.defineProperty(module, 'namespaceObject', attributes)\n\n function handleAsyncDependencies(deps: Dep[]) {\n const currentDeps = wrapDeps(deps)\n\n const getResult = () =>\n currentDeps.map((d) => {\n if (d[turbopackError]) throw d[turbopackError]\n return d[turbopackExports]\n })\n\n const { promise, resolve } = createPromise<() => Exports[]>()\n\n const fn: AsyncQueueFn = Object.assign(() => resolve(getResult), {\n queueCount: 0,\n })\n\n function fnQueue(q: AsyncQueue) {\n if (q !== queue && !depQueues.has(q)) {\n depQueues.add(q)\n if (q && q.status === QueueStatus.Unresolved) {\n fn.queueCount++\n q.push(fn)\n }\n }\n }\n\n currentDeps.map((dep) => dep[turbopackQueues](fnQueue))\n\n return fn.queueCount ? promise : getResult()\n }\n\n function asyncResult(err?: any) {\n if (err) {\n reject((promise[turbopackError] = err))\n } else {\n resolve(promise[turbopackExports])\n }\n\n resolveQueue(queue)\n }\n\n body(handleAsyncDependencies, asyncResult)\n\n if (queue && queue.status === QueueStatus.Unknown) {\n queue.status = QueueStatus.Unresolved\n }\n}\ncontextPrototype.a = asyncModule\n\n/**\n * A pseudo \"fake\" URL object to resolve to its relative path.\n *\n * When UrlRewriteBehavior is set to relative, calls to the `new URL()` will construct url without base using this\n * runtime function to generate context-agnostic urls between different rendering context, i.e ssr / client to avoid\n * hydration mismatch.\n *\n * This is based on webpack's existing implementation:\n * https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/runtime/RelativeUrlRuntimeModule.js\n */\nconst relativeURL = function relativeURL(this: any, inputUrl: string) {\n const realUrl = new URL(inputUrl, 'x:/')\n const values: Record = {}\n for (const key in realUrl) values[key] = (realUrl as any)[key]\n values.href = inputUrl\n values.pathname = inputUrl.replace(/[?#].*/, '')\n values.origin = values.protocol = ''\n values.toString = values.toJSON = (..._args: Array) => inputUrl\n for (const key in values)\n Object.defineProperty(this, key, {\n enumerable: true,\n configurable: true,\n value: values[key],\n })\n}\nrelativeURL.prototype = URL.prototype\ncontextPrototype.U = relativeURL\n\n/**\n * Utility function to ensure all variants of an enum are handled.\n */\nfunction invariant(never: never, computeMessage: (arg: any) => string): never {\n throw new Error(`Invariant: ${computeMessage(never)}`)\n}\n\n/**\n * A stub function to make `require` available but non-functional in ESM.\n */\nfunction requireStub(_moduleId: ModuleId): never {\n throw new Error('dynamic usage of require is not supported')\n}\ncontextPrototype.z = requireStub\n\n// Make `globalThis` available to the module in a way that cannot be shadowed by a local variable.\ncontextPrototype.g = globalThis\n\ntype ContextConstructor = {\n new (module: Module, exports: Exports): TurbopackBaseContext\n}\n\nfunction applyModuleFactoryName(factory: Function) {\n // Give the module factory a nice name to improve stack traces.\n Object.defineProperty(factory, 'name', {\n value: 'module evaluation',\n })\n}\n"],"names":[],"mappings":"AAAA;;;;;CAKC,GAED,oDAAoD,GAEpD,6CAA6C;AAU7C,MAAM,qBAAqB,IAAI;AAE/B;;CAEC,GACD,SAAS,QAEP,MAAc,EACd,OAAgB;IAEhB,IAAI,CAAC,CAAC,GAAG;IACT,gFAAgF;IAChF,yEAAyE;IACzE,+CAA+C;IAC/C,8EAA8E;IAC9E,sEAAsE;IACtE,iBAAiB;IACjB,4FAA4F;IAC5F,IAAI,CAAC,CAAC,GAAG;AACX;AACA,MAAM,mBAAmB,QAAQ,SAAS;AA+B1C,MAAM,iBAAiB,OAAO,SAAS,CAAC,cAAc;AACtD,MAAM,cAAc,OAAO,WAAW,eAAe,OAAO,WAAW;AAEvE,SAAS,WACP,GAAQ,EACR,IAAiB,EACjB,OAA2C;IAE3C,IAAI,CAAC,eAAe,IAAI,CAAC,KAAK,OAAO,OAAO,cAAc,CAAC,KAAK,MAAM;AACxE;AAEA,SAAS,qBACP,WAAgC,EAChC,EAAY;IAEZ,IAAI,SAAS,WAAW,CAAC,GAAG;IAC5B,IAAI,CAAC,QAAQ;QACX,0FAA0F;QAC1F,4DAA4D;QAC5D,SAAS,mBAAmB;QAC5B,WAAW,CAAC,GAAG,GAAG;IACpB;IACA,OAAO;AACT;AAEA;;CAEC,GACD,SAAS,mBAAmB,EAAY;IACtC,OAAO;QACL,SAAS,CAAC;QACV,OAAO;QACP;QACA,iBAAiB;IACnB;AACF;AAGA,MAAM,mBAAmB;AAUzB;;CAEC,GACD,SAAS,IAAI,OAAgB,EAAE,QAAqB;IAClD,WAAW,SAAS,cAAc;QAAE,OAAO;IAAK;IAChD,IAAI,aAAa,WAAW,SAAS,aAAa;QAAE,OAAO;IAAS;IACpE,IAAI,IAAI;IACR,MAAO,IAAI,SAAS,MAAM,CAAE;QAC1B,MAAM,WAAW,QAAQ,CAAC,IAAI;QAC9B,MAAM,gBAAgB,QAAQ,CAAC,IAAI;QACnC,IAAI,OAAO,kBAAkB,UAAU;YACrC,IAAI,kBAAkB,kBAAkB;gBACtC,WAAW,SAAS,UAAU;oBAC5B,OAAO,QAAQ,CAAC,IAAI;oBACpB,YAAY;oBACZ,UAAU;gBACZ;YACF,OAAO;gBACL,MAAM,IAAI,MAAM,CAAC,gBAAgB,EAAE,eAAe;YACpD;QACF,OAAO;YACL,MAAM,WAAW;YACjB,IAAI,OAAO,QAAQ,CAAC,EAAE,KAAK,YAAY;gBACrC,MAAM,WAAW,QAAQ,CAAC,IAAI;gBAC9B,WAAW,SAAS,UAAU;oBAC5B,KAAK;oBACL,KAAK;oBACL,YAAY;gBACd;YACF,OAAO;gBACL,WAAW,SAAS,UAAU;oBAC5B,KAAK;oBACL,YAAY;gBACd;YACF;QACF;IACF;IACA,OAAO,IAAI,CAAC;AACd;AAEA;;CAEC,GACD,SAAS,UAEP,QAAqB,EACrB,EAAwB;IAExB,IAAI;IACJ,IAAI;IACJ,IAAI,MAAM,MAAM;QACd,SAAS,qBAAqB,IAAI,CAAC,CAAC,EAAE;QACtC,UAAU,OAAO,OAAO;IAC1B,OAAO;QACL,SAAS,IAAI,CAAC,CAAC;QACf,UAAU,IAAI,CAAC,CAAC;IAClB;IACA,OAAO,eAAe,GAAG;IACzB,IAAI,SAAS;AACf;AACA,iBAAiB,CAAC,GAAG;AAGrB,SAAS,qBACP,MAAc,EACd,OAAgB;IAEhB,IAAI,oBACF,mBAAmB,GAAG,CAAC;IAEzB,IAAI,CAAC,mBAAmB;QACtB,mBAAmB,GAAG,CAAC,QAAS,oBAAoB,EAAE;QACtD,OAAO,OAAO,GAAG,OAAO,eAAe,GAAG,IAAI,MAAM,SAAS;YAC3D,KAAI,MAAM,EAAE,IAAI;gBACd,IACE,eAAe,IAAI,CAAC,QAAQ,SAC5B,SAAS,aACT,SAAS,cACT;oBACA,OAAO,QAAQ,GAAG,CAAC,QAAQ;gBAC7B;gBACA,KAAK,MAAM,OAAO,kBAAoB;oBACpC,MAAM,QAAQ,QAAQ,GAAG,CAAC,KAAK;oBAC/B,IAAI,UAAU,WAAW,OAAO;gBAClC;gBACA,OAAO;YACT;YACA,SAAQ,MAAM;gBACZ,MAAM,OAAO,QAAQ,OAAO,CAAC;gBAC7B,KAAK,MAAM,OAAO,kBAAoB;oBACpC,KAAK,MAAM,OAAO,QAAQ,OAAO,CAAC,KAAM;wBACtC,IAAI,QAAQ,aAAa,CAAC,KAAK,QAAQ,CAAC,MAAM,KAAK,IAAI,CAAC;oBAC1D;gBACF;gBACA,OAAO;YACT;QACF;IACF;IACA,OAAO;AACT;AAEA;;CAEC,GACD,SAAS,cAEP,MAA2B,EAC3B,EAAwB;IAExB,IAAI;IACJ,IAAI;IACJ,IAAI,MAAM,MAAM;QACd,SAAS,qBAAqB,IAAI,CAAC,CAAC,EAAE;QACtC,UAAU,OAAO,OAAO;IAC1B,OAAO;QACL,SAAS,IAAI,CAAC,CAAC;QACf,UAAU,IAAI,CAAC,CAAC;IAClB;IACA,MAAM,oBAAoB,qBAAqB,QAAQ;IAEvD,IAAI,OAAO,WAAW,YAAY,WAAW,MAAM;QACjD,kBAAkB,IAAI,CAAC;IACzB;AACF;AACA,iBAAiB,CAAC,GAAG;AAErB,SAAS,YAEP,KAAU,EACV,EAAwB;IAExB,IAAI;IACJ,IAAI,MAAM,MAAM;QACd,SAAS,qBAAqB,IAAI,CAAC,CAAC,EAAE;IACxC,OAAO;QACL,SAAS,IAAI,CAAC,CAAC;IACjB;IACA,OAAO,OAAO,GAAG;AACnB;AACA,iBAAiB,CAAC,GAAG;AAErB,SAAS,gBAEP,SAAc,EACd,EAAwB;IAExB,IAAI;IACJ,IAAI,MAAM,MAAM;QACd,SAAS,qBAAqB,IAAI,CAAC,CAAC,EAAE;IACxC,OAAO;QACL,SAAS,IAAI,CAAC,CAAC;IACjB;IACA,OAAO,OAAO,GAAG,OAAO,eAAe,GAAG;AAC5C;AACA,iBAAiB,CAAC,GAAG;AAErB,SAAS,aAAa,GAAiC,EAAE,GAAoB;IAC3E,OAAO,IAAM,GAAG,CAAC,IAAI;AACvB;AAEA;;CAEC,GACD,MAAM,WAA8B,OAAO,cAAc,GACrD,CAAC,MAAQ,OAAO,cAAc,CAAC,OAC/B,CAAC,MAAQ,IAAI,SAAS;AAE1B,iDAAiD,GACjD,MAAM,kBAAkB;IAAC;IAAM,SAAS,CAAC;IAAI,SAAS,EAAE;IAAG,SAAS;CAAU;AAE9E;;;;;;CAMC,GACD,SAAS,WACP,GAAY,EACZ,EAAsB,EACtB,kBAA4B;IAE5B,MAAM,WAAwB,EAAE;IAChC,IAAI,kBAAkB,CAAC;IACvB,IACE,IAAI,UAAU,KACd,CAAC,OAAO,YAAY,YAAY,OAAO,YAAY,UAAU,KAC7D,CAAC,gBAAgB,QAAQ,CAAC,UAC1B,UAAU,SAAS,SACnB;QACA,KAAK,MAAM,OAAO,OAAO,mBAAmB,CAAC,SAAU;YACrD,SAAS,IAAI,CAAC,KAAK,aAAa,KAAK;YACrC,IAAI,oBAAoB,CAAC,KAAK,QAAQ,WAAW;gBAC/C,kBAAkB,SAAS,MAAM,GAAG;YACtC;QACF;IACF;IAEA,6BAA6B;IAC7B,6EAA6E;IAC7E,IAAI,CAAC,CAAC,sBAAsB,mBAAmB,CAAC,GAAG;QACjD,8FAA8F;QAC9F,IAAI,mBAAmB,GAAG;YACxB,oCAAoC;YACpC,SAAS,MAAM,CAAC,iBAAiB,GAAG,kBAAkB;QACxD,OAAO;YACL,SAAS,IAAI,CAAC,WAAW,kBAAkB;QAC7C;IACF;IAEA,IAAI,IAAI;IACR,OAAO;AACT;AAEA,SAAS,SAAS,GAAsB;IACtC,IAAI,OAAO,QAAQ,YAAY;QAC7B,OAAO,SAAqB,GAAG,IAAW;YACxC,OAAO,IAAI,KAAK,CAAC,IAAI,EAAE;QACzB;IACF,OAAO;QACL,OAAO,OAAO,MAAM,CAAC;IACvB;AACF;AAEA,SAAS,UAEP,EAAY;IAEZ,MAAM,SAAS,iCAAiC,IAAI,IAAI,CAAC,CAAC;IAE1D,8DAA8D;IAC9D,IAAI,OAAO,eAAe,EAAE,OAAO,OAAO,eAAe;IAEzD,iGAAiG;IACjG,MAAM,MAAM,OAAO,OAAO;IAC1B,OAAQ,OAAO,eAAe,GAAG,WAC/B,KACA,SAAS,MACT,OAAO,AAAC,IAAY,UAAU;AAElC;AACA,iBAAiB,CAAC,GAAG;AAErB,SAAS,YAEP,QAAkB;IAElB,MAAM,SAAS,IAAI,CAAC,CAAC,CAAC;IAGtB,OAAO,OAAO,UAAU,IAAI,CAAC,IAAI;AACnC;AACA,iBAAiB,CAAC,GAAG;AAErB,+EAA+E;AAC/E,6EAA6E;AAC7E,MAAM,iBACJ,aAAa;AACb,OAAO,YAAY,aAEf,UACA,SAAS;IACP,MAAM,IAAI,MAAM;AAClB;AACN,iBAAiB,CAAC,GAAG;AAErB,SAAS,gBAEP,EAAY;IAEZ,OAAO,iCAAiC,IAAI,IAAI,CAAC,CAAC,EAAE,OAAO;AAC7D;AACA,iBAAiB,CAAC,GAAG;AAErB;;;;;;CAMC,GACD,SAAS,aAAa,OAAe;IACnC,wFAAwF;IACxF,4DAA4D;IAC5D,MAAM,YAAY,QAAQ,OAAO,CAAC;IAClC,IAAI,cAAc,CAAC,GAAG;QACpB,UAAU,QAAQ,SAAS,CAAC,GAAG;IACjC;IAEA,MAAM,aAAa,QAAQ,OAAO,CAAC;IACnC,IAAI,eAAe,CAAC,GAAG;QACrB,UAAU,QAAQ,SAAS,CAAC,GAAG;IACjC;IAEA,OAAO;AACT;AACA;;CAEC,GACD,SAAS,cAAc,GAAqB;IAC1C,SAAS,cAAc,EAAU;QAC/B,KAAK,aAAa;QAClB,IAAI,eAAe,IAAI,CAAC,KAAK,KAAK;YAChC,OAAO,GAAG,CAAC,GAAG,CAAC,MAAM;QACvB;QAEA,MAAM,IAAI,IAAI,MAAM,CAAC,oBAAoB,EAAE,GAAG,CAAC,CAAC;QAC9C,EAAU,IAAI,GAAG;QACnB,MAAM;IACR;IAEA,cAAc,IAAI,GAAG;QACnB,OAAO,OAAO,IAAI,CAAC;IACrB;IAEA,cAAc,OAAO,GAAG,CAAC;QACvB,KAAK,aAAa;QAClB,IAAI,eAAe,IAAI,CAAC,KAAK,KAAK;YAChC,OAAO,GAAG,CAAC,GAAG,CAAC,EAAE;QACnB;QAEA,MAAM,IAAI,IAAI,MAAM,CAAC,oBAAoB,EAAE,GAAG,CAAC,CAAC;QAC9C,EAAU,IAAI,GAAG;QACnB,MAAM;IACR;IAEA,cAAc,MAAM,GAAG,OAAO;QAC5B,OAAO,MAAO,cAAc;IAC9B;IAEA,OAAO;AACT;AACA,iBAAiB,CAAC,GAAG;AAErB;;CAEC,GACD,SAAS,aAAa,SAAoB;IACxC,OAAO,OAAO,cAAc,WAAW,YAAY,UAAU,IAAI;AACnE;AAEA,SAAS,UAAmB,YAAiB;IAC3C,OACE,gBAAgB,QAChB,OAAO,iBAAiB,YACxB,UAAU,gBACV,OAAO,aAAa,IAAI,KAAK;AAEjC;AAEA,SAAS,iBAA+B,GAAM;IAC5C,OAAO,mBAAmB;AAC5B;AAEA,SAAS;IACP,IAAI;IACJ,IAAI;IAEJ,MAAM,UAAU,IAAI,QAAW,CAAC,KAAK;QACnC,SAAS;QACT,UAAU;IACZ;IAEA,OAAO;QACL;QACA,SAAS;QACT,QAAQ;IACV;AACF;AAEA,gFAAgF;AAChF,0CAA0C;AAC1C,yBAAyB;AACzB,8BAA8B;AAC9B,6EAA6E;AAC7E,wEAAwE;AACxE,SAAS,iCACP,YAAuC,EACvC,MAAc,EACd,eAAgC,EAChC,WAAoC;IAEpC,IAAI,IAAI;IACR,MAAO,IAAI,aAAa,MAAM,CAAE;QAC9B,IAAI,WAAW,YAAY,CAAC,EAAE;QAC9B,IAAI,MAAM,IAAI;QACd,4BAA4B;QAC5B,MACE,MAAM,aAAa,MAAM,IACzB,OAAO,YAAY,CAAC,IAAI,KAAK,WAC7B;YACA;QACF;QACA,IAAI,QAAQ,aAAa,MAAM,EAAE;YAC/B,MAAM,IAAI,MAAM;QAClB;QACA,+FAA+F;QAC/F,sFAAsF;QACtF,IAAI,CAAC,gBAAgB,GAAG,CAAC,WAAW;YAClC,MAAM,kBAAkB,YAAY,CAAC,IAAI;YACzC,uBAAuB;YACvB,cAAc;YACd,MAAO,IAAI,KAAK,IAAK;gBACnB,WAAW,YAAY,CAAC,EAAE;gBAC1B,gBAAgB,GAAG,CAAC,UAAU;YAChC;QACF;QACA,IAAI,MAAM,GAAE,sFAAsF;IACpG;AACF;AAEA,2CAA2C;AAC3C,+HAA+H;AAE/H,MAAM,kBAAkB,OAAO;AAC/B,MAAM,mBAAmB,OAAO;AAChC,MAAM,iBAAiB,OAAO;AAa9B,SAAS,aAAa,KAAkB;IACtC,IAAI,SAAS,MAAM,MAAM,QAA2B;QAClD,MAAM,MAAM;QACZ,MAAM,OAAO,CAAC,CAAC,KAAO,GAAG,UAAU;QACnC,MAAM,OAAO,CAAC,CAAC,KAAQ,GAAG,UAAU,KAAK,GAAG,UAAU,KAAK;IAC7D;AACF;AAYA,SAAS,SAAS,IAAW;IAC3B,OAAO,KAAK,GAAG,CAAC,CAAC;QACf,IAAI,QAAQ,QAAQ,OAAO,QAAQ,UAAU;YAC3C,IAAI,iBAAiB,MAAM,OAAO;YAClC,IAAI,UAAU,MAAM;gBAClB,MAAM,QAAoB,OAAO,MAAM,CAAC,EAAE,EAAE;oBAC1C,MAAM;gBACR;gBAEA,MAAM,MAAsB;oBAC1B,CAAC,iBAAiB,EAAE,CAAC;oBACrB,CAAC,gBAAgB,EAAE,CAAC,KAAoC,GAAG;gBAC7D;gBAEA,IAAI,IAAI,CACN,CAAC;oBACC,GAAG,CAAC,iBAAiB,GAAG;oBACxB,aAAa;gBACf,GACA,CAAC;oBACC,GAAG,CAAC,eAAe,GAAG;oBACtB,aAAa;gBACf;gBAGF,OAAO;YACT;QACF;QAEA,OAAO;YACL,CAAC,iBAAiB,EAAE;YACpB,CAAC,gBAAgB,EAAE,KAAO;QAC5B;IACF;AACF;AAEA,SAAS,YAEP,IAKS,EACT,QAAiB;IAEjB,MAAM,SAAS,IAAI,CAAC,CAAC;IACrB,MAAM,QAAgC,WAClC,OAAO,MAAM,CAAC,EAAE,EAAE;QAAE,MAAM;IAAsB,KAChD;IAEJ,MAAM,YAA6B,IAAI;IAEvC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,SAAS,UAAU,EAAE,GAAG;IAEjD,MAAM,UAA8B,OAAO,MAAM,CAAC,YAAY;QAC5D,CAAC,iBAAiB,EAAE,OAAO,OAAO;QAClC,CAAC,gBAAgB,EAAE,CAAC;YAClB,SAAS,GAAG;YACZ,UAAU,OAAO,CAAC;YAClB,OAAO,CAAC,QAAQ,CAAC,KAAO;QAC1B;IACF;IAEA,MAAM,aAAiC;QACrC;YACE,OAAO;QACT;QACA,KAAI,CAAM;YACR,qCAAqC;YACrC,IAAI,MAAM,SAAS;gBACjB,OAAO,CAAC,iBAAiB,GAAG;YAC9B;QACF;IACF;IAEA,OAAO,cAAc,CAAC,QAAQ,WAAW;IACzC,OAAO,cAAc,CAAC,QAAQ,mBAAmB;IAEjD,SAAS,wBAAwB,IAAW;QAC1C,MAAM,cAAc,SAAS;QAE7B,MAAM,YAAY,IAChB,YAAY,GAAG,CAAC,CAAC;gBACf,IAAI,CAAC,CAAC,eAAe,EAAE,MAAM,CAAC,CAAC,eAAe;gBAC9C,OAAO,CAAC,CAAC,iBAAiB;YAC5B;QAEF,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG;QAE7B,MAAM,KAAmB,OAAO,MAAM,CAAC,IAAM,QAAQ,YAAY;YAC/D,YAAY;QACd;QAEA,SAAS,QAAQ,CAAa;YAC5B,IAAI,MAAM,SAAS,CAAC,UAAU,GAAG,CAAC,IAAI;gBACpC,UAAU,GAAG,CAAC;gBACd,IAAI,KAAK,EAAE,MAAM,QAA6B;oBAC5C,GAAG,UAAU;oBACb,EAAE,IAAI,CAAC;gBACT;YACF;QACF;QAEA,YAAY,GAAG,CAAC,CAAC,MAAQ,GAAG,CAAC,gBAAgB,CAAC;QAE9C,OAAO,GAAG,UAAU,GAAG,UAAU;IACnC;IAEA,SAAS,YAAY,GAAS;QAC5B,IAAI,KAAK;YACP,OAAQ,OAAO,CAAC,eAAe,GAAG;QACpC,OAAO;YACL,QAAQ,OAAO,CAAC,iBAAiB;QACnC;QAEA,aAAa;IACf;IAEA,KAAK,yBAAyB;IAE9B,IAAI,SAAS,MAAM,MAAM,SAA0B;QACjD,MAAM,MAAM;IACd;AACF;AACA,iBAAiB,CAAC,GAAG;AAErB;;;;;;;;;CASC,GACD,MAAM,cAAc,SAAS,YAAuB,QAAgB;IAClE,MAAM,UAAU,IAAI,IAAI,UAAU;IAClC,MAAM,SAA8B,CAAC;IACrC,IAAK,MAAM,OAAO,QAAS,MAAM,CAAC,IAAI,GAAG,AAAC,OAAe,CAAC,IAAI;IAC9D,OAAO,IAAI,GAAG;IACd,OAAO,QAAQ,GAAG,SAAS,OAAO,CAAC,UAAU;IAC7C,OAAO,MAAM,GAAG,OAAO,QAAQ,GAAG;IAClC,OAAO,QAAQ,GAAG,OAAO,MAAM,GAAG,CAAC,GAAG,QAAsB;IAC5D,IAAK,MAAM,OAAO,OAChB,OAAO,cAAc,CAAC,IAAI,EAAE,KAAK;QAC/B,YAAY;QACZ,cAAc;QACd,OAAO,MAAM,CAAC,IAAI;IACpB;AACJ;AACA,YAAY,SAAS,GAAG,IAAI,SAAS;AACrC,iBAAiB,CAAC,GAAG;AAErB;;CAEC,GACD,SAAS,UAAU,KAAY,EAAE,cAAoC;IACnE,MAAM,IAAI,MAAM,CAAC,WAAW,EAAE,eAAe,QAAQ;AACvD;AAEA;;CAEC,GACD,SAAS,YAAY,SAAmB;IACtC,MAAM,IAAI,MAAM;AAClB;AACA,iBAAiB,CAAC,GAAG;AAErB,kGAAkG;AAClG,iBAAiB,CAAC,GAAG;AAMrB,SAAS,uBAAuB,OAAiB;IAC/C,+DAA+D;IAC/D,OAAO,cAAc,CAAC,SAAS,QAAQ;QACrC,OAAO;IACT;AACF","ignoreList":[0]}}, - {"offset": {"line": 504, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/base-externals-utils.ts"],"sourcesContent":["/// \n\n/// A 'base' utilities to support runtime can have externals.\n/// Currently this is for node.js / edge runtime both.\n/// If a fn requires node.js specific behavior, it should be placed in `node-external-utils` instead.\n\nasync function externalImport(id: DependencySpecifier) {\n let raw\n try {\n raw = await import(id)\n } catch (err) {\n // TODO(alexkirsz) This can happen when a client-side module tries to load\n // an external module we don't provide a shim for (e.g. querystring, url).\n // For now, we fail semi-silently, but in the future this should be a\n // compilation error.\n throw new Error(`Failed to load external module ${id}: ${err}`)\n }\n\n if (raw && raw.__esModule && raw.default && 'default' in raw.default) {\n return interopEsm(raw.default, createNS(raw), true)\n }\n\n return raw\n}\ncontextPrototype.y = externalImport\n\nfunction externalRequire(\n id: ModuleId,\n thunk: () => any,\n esm: boolean = false\n): Exports | EsmNamespaceObject {\n let raw\n try {\n raw = thunk()\n } catch (err) {\n // TODO(alexkirsz) This can happen when a client-side module tries to load\n // an external module we don't provide a shim for (e.g. querystring, url).\n // For now, we fail semi-silently, but in the future this should be a\n // compilation error.\n throw new Error(`Failed to load external module ${id}: ${err}`)\n }\n\n if (!esm || raw.__esModule) {\n return raw\n }\n\n return interopEsm(raw, createNS(raw), true)\n}\n\nexternalRequire.resolve = (\n id: string,\n options?: {\n paths?: string[]\n }\n) => {\n return require.resolve(id, options)\n}\ncontextPrototype.x = externalRequire\n"],"names":[],"mappings":"AAAA,mDAAmD;AAEnD,6DAA6D;AAC7D,sDAAsD;AACtD,qGAAqG;AAErG,eAAe,eAAe,EAAuB;IACnD,IAAI;IACJ,IAAI;QACF,MAAM,MAAM,MAAM,CAAC;IACrB,EAAE,OAAO,KAAK;QACZ,0EAA0E;QAC1E,0EAA0E;QAC1E,qEAAqE;QACrE,qBAAqB;QACrB,MAAM,IAAI,MAAM,CAAC,+BAA+B,EAAE,GAAG,EAAE,EAAE,KAAK;IAChE;IAEA,IAAI,OAAO,IAAI,UAAU,IAAI,IAAI,OAAO,IAAI,aAAa,IAAI,OAAO,EAAE;QACpE,OAAO,WAAW,IAAI,OAAO,EAAE,SAAS,MAAM;IAChD;IAEA,OAAO;AACT;AACA,iBAAiB,CAAC,GAAG;AAErB,SAAS,gBACP,EAAY,EACZ,KAAgB,EAChB,MAAe,KAAK;IAEpB,IAAI;IACJ,IAAI;QACF,MAAM;IACR,EAAE,OAAO,KAAK;QACZ,0EAA0E;QAC1E,0EAA0E;QAC1E,qEAAqE;QACrE,qBAAqB;QACrB,MAAM,IAAI,MAAM,CAAC,+BAA+B,EAAE,GAAG,EAAE,EAAE,KAAK;IAChE;IAEA,IAAI,CAAC,OAAO,IAAI,UAAU,EAAE;QAC1B,OAAO;IACT;IAEA,OAAO,WAAW,KAAK,SAAS,MAAM;AACxC;AAEA,gBAAgB,OAAO,GAAG,CACxB,IACA;IAIA,OAAO,QAAQ,OAAO,CAAC,IAAI;AAC7B;AACA,iBAAiB,CAAC,GAAG","ignoreList":[0]}}, - {"offset": {"line": 545, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/node-externals-utils.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\ndeclare var RUNTIME_PUBLIC_PATH: string\ndeclare var RELATIVE_ROOT_PATH: string\ndeclare var ASSET_PREFIX: string\n\nconst path = require('path')\n\nconst relativePathToRuntimeRoot = path.relative(RUNTIME_PUBLIC_PATH, '.')\n// Compute the relative path to the `distDir`.\nconst relativePathToDistRoot = path.join(\n relativePathToRuntimeRoot,\n RELATIVE_ROOT_PATH\n)\nconst RUNTIME_ROOT = path.resolve(__filename, relativePathToRuntimeRoot)\n// Compute the absolute path to the root, by stripping distDir from the absolute path to this file.\nconst ABSOLUTE_ROOT = path.resolve(__filename, relativePathToDistRoot)\n\n/**\n * Returns an absolute path to the given module path.\n * Module path should be relative, either path to a file or a directory.\n *\n * This fn allows to calculate an absolute path for some global static values, such as\n * `__dirname` or `import.meta.url` that Turbopack will not embeds in compile time.\n * See ImportMetaBinding::code_generation for the usage.\n */\nfunction resolveAbsolutePath(modulePath?: string): string {\n if (modulePath) {\n return path.join(ABSOLUTE_ROOT, modulePath)\n }\n return ABSOLUTE_ROOT\n}\nContext.prototype.P = resolveAbsolutePath\n"],"names":[],"mappings":"AAAA,oDAAoD,GAMpD,MAAM,OAAO,QAAQ;AAErB,MAAM,4BAA4B,KAAK,QAAQ,CAAC,qBAAqB;AACrE,8CAA8C;AAC9C,MAAM,yBAAyB,KAAK,IAAI,CACtC,2BACA;AAEF,MAAM,eAAe,KAAK,OAAO,CAAC,YAAY;AAC9C,mGAAmG;AACnG,MAAM,gBAAgB,KAAK,OAAO,CAAC,YAAY;AAE/C;;;;;;;CAOC,GACD,SAAS,oBAAoB,UAAmB;IAC9C,IAAI,YAAY;QACd,OAAO,KAAK,IAAI,CAAC,eAAe;IAClC;IACA,OAAO;AACT;AACA,QAAQ,SAAS,CAAC,CAAC,GAAG","ignoreList":[0]}}, - {"offset": {"line": 566, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared-node/node-wasm-utils.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\nfunction readWebAssemblyAsResponse(path: string) {\n const { createReadStream } = require('fs') as typeof import('fs')\n const { Readable } = require('stream') as typeof import('stream')\n\n const stream = createReadStream(path)\n\n // @ts-ignore unfortunately there's a slight type mismatch with the stream.\n return new Response(Readable.toWeb(stream), {\n headers: {\n 'content-type': 'application/wasm',\n },\n })\n}\n\nasync function compileWebAssemblyFromPath(\n path: string\n): Promise {\n const response = readWebAssemblyAsResponse(path)\n\n return await WebAssembly.compileStreaming(response)\n}\n\nasync function instantiateWebAssemblyFromPath(\n path: string,\n importsObj: WebAssembly.Imports\n): Promise {\n const response = readWebAssemblyAsResponse(path)\n\n const { instance } = await WebAssembly.instantiateStreaming(\n response,\n importsObj\n )\n\n return instance.exports\n}\n"],"names":[],"mappings":"AAAA,oDAAoD,GAEpD,mDAAmD;AAEnD,SAAS,0BAA0B,IAAY;IAC7C,MAAM,EAAE,gBAAgB,EAAE,GAAG,QAAQ;IACrC,MAAM,EAAE,QAAQ,EAAE,GAAG,QAAQ;IAE7B,MAAM,SAAS,iBAAiB;IAEhC,2EAA2E;IAC3E,OAAO,IAAI,SAAS,SAAS,KAAK,CAAC,SAAS;QAC1C,SAAS;YACP,gBAAgB;QAClB;IACF;AACF;AAEA,eAAe,2BACb,IAAY;IAEZ,MAAM,WAAW,0BAA0B;IAE3C,OAAO,MAAM,YAAY,gBAAgB,CAAC;AAC5C;AAEA,eAAe,+BACb,IAAY,EACZ,UAA+B;IAE/B,MAAM,WAAW,0BAA0B;IAE3C,MAAM,EAAE,QAAQ,EAAE,GAAG,MAAM,YAAY,oBAAoB,CACzD,UACA;IAGF,OAAO,SAAS,OAAO;AACzB","ignoreList":[0]}}, - {"offset": {"line": 587, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/nodejs/runtime.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n/// \n/// \n/// \n\nenum SourceType {\n /**\n * The module was instantiated because it was included in an evaluated chunk's\n * runtime.\n * SourceData is a ChunkPath.\n */\n Runtime = 0,\n /**\n * The module was instantiated because a parent module imported it.\n * SourceData is a ModuleId.\n */\n Parent = 1,\n}\n\ntype SourceData = ChunkPath | ModuleId\n\nprocess.env.TURBOPACK = '1'\n\ninterface TurbopackNodeBuildContext extends TurbopackBaseContext {\n R: ResolvePathFromModule\n x: ExternalRequire\n y: ExternalImport\n}\n\nconst nodeContextPrototype = Context.prototype as TurbopackNodeBuildContext\n\ntype ModuleFactory = (\n this: Module['exports'],\n context: TurbopackNodeBuildContext\n) => unknown\n\nconst url = require('url') as typeof import('url')\n\nconst moduleFactories: ModuleFactories = new Map()\nnodeContextPrototype.M = moduleFactories\nconst moduleCache: ModuleCache = Object.create(null)\nnodeContextPrototype.c = moduleCache\n\n/**\n * Returns an absolute path to the given module's id.\n */\nfunction resolvePathFromModule(\n this: TurbopackBaseContext,\n moduleId: string\n): string {\n const exported = this.r(moduleId)\n const exportedPath = exported?.default ?? exported\n if (typeof exportedPath !== 'string') {\n return exported as any\n }\n\n const strippedAssetPrefix = exportedPath.slice(ASSET_PREFIX.length)\n const resolved = path.resolve(RUNTIME_ROOT, strippedAssetPrefix)\n\n return url.pathToFileURL(resolved).href\n}\nnodeContextPrototype.R = resolvePathFromModule\n\nfunction loadRuntimeChunk(sourcePath: ChunkPath, chunkData: ChunkData): void {\n if (typeof chunkData === 'string') {\n loadRuntimeChunkPath(sourcePath, chunkData)\n } else {\n loadRuntimeChunkPath(sourcePath, chunkData.path)\n }\n}\n\nconst loadedChunks = new Set()\nconst unsupportedLoadChunk = Promise.resolve(undefined)\nconst loadedChunk: Promise = Promise.resolve(undefined)\nconst chunkCache = new Map>()\n\nfunction clearChunkCache() {\n chunkCache.clear()\n}\n\nfunction loadRuntimeChunkPath(\n sourcePath: ChunkPath,\n chunkPath: ChunkPath\n): void {\n if (!isJs(chunkPath)) {\n // We only support loading JS chunks in Node.js.\n // This branch can be hit when trying to load a CSS chunk.\n return\n }\n\n if (loadedChunks.has(chunkPath)) {\n return\n }\n\n try {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n const chunkModules: CompressedModuleFactories = require(resolved)\n installCompressedModuleFactories(chunkModules, 0, moduleFactories)\n loadedChunks.add(chunkPath)\n } catch (cause) {\n let errorMessage = `Failed to load chunk ${chunkPath}`\n\n if (sourcePath) {\n errorMessage += ` from runtime for chunk ${sourcePath}`\n }\n\n const error = new Error(errorMessage, { cause })\n error.name = 'ChunkLoadError'\n throw error\n }\n}\n\nfunction loadChunkAsync(\n this: TurbopackBaseContext,\n chunkData: ChunkData\n): Promise {\n const chunkPath = typeof chunkData === 'string' ? chunkData : chunkData.path\n if (!isJs(chunkPath)) {\n // We only support loading JS chunks in Node.js.\n // This branch can be hit when trying to load a CSS chunk.\n return unsupportedLoadChunk\n }\n\n let entry = chunkCache.get(chunkPath)\n if (entry === undefined) {\n try {\n // resolve to an absolute path to simplify `require` handling\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n // TODO: consider switching to `import()` to enable concurrent chunk loading and async file io\n // However this is incompatible with hot reloading (since `import` doesn't use the require cache)\n const chunkModules: CompressedModuleFactories = require(resolved)\n installCompressedModuleFactories(chunkModules, 0, moduleFactories)\n entry = loadedChunk\n } catch (cause) {\n const errorMessage = `Failed to load chunk ${chunkPath} from module ${this.m.id}`\n const error = new Error(errorMessage, { cause })\n error.name = 'ChunkLoadError'\n\n // Cache the failure promise, future requests will also get this same rejection\n entry = Promise.reject(error)\n }\n chunkCache.set(chunkPath, entry)\n }\n // TODO: Return an instrumented Promise that React can use instead of relying on referential equality.\n return entry\n}\ncontextPrototype.l = loadChunkAsync\n\nfunction loadChunkAsyncByUrl(\n this: TurbopackBaseContext,\n chunkUrl: string\n) {\n const path = url.fileURLToPath(new URL(chunkUrl, RUNTIME_ROOT)) as ChunkPath\n return loadChunkAsync.call(this, path)\n}\ncontextPrototype.L = loadChunkAsyncByUrl\n\nfunction loadWebAssembly(\n chunkPath: ChunkPath,\n _edgeModule: () => WebAssembly.Module,\n imports: WebAssembly.Imports\n) {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n\n return instantiateWebAssemblyFromPath(resolved, imports)\n}\ncontextPrototype.w = loadWebAssembly\n\nfunction loadWebAssemblyModule(\n chunkPath: ChunkPath,\n _edgeModule: () => WebAssembly.Module\n) {\n const resolved = path.resolve(RUNTIME_ROOT, chunkPath)\n\n return compileWebAssemblyFromPath(resolved)\n}\ncontextPrototype.u = loadWebAssemblyModule\n\nfunction getWorkerBlobURL(_chunks: ChunkPath[]): string {\n throw new Error('Worker blobs are not implemented yet for Node.js')\n}\n\nnodeContextPrototype.b = getWorkerBlobURL\n\nfunction instantiateModule(\n id: ModuleId,\n sourceType: SourceType,\n sourceData: SourceData\n): Module {\n const moduleFactory = moduleFactories.get(id)\n if (typeof moduleFactory !== 'function') {\n // This can happen if modules incorrectly handle HMR disposes/updates,\n // e.g. when they keep a `setTimeout` around which still executes old code\n // and contains e.g. a `require(\"something\")` call.\n let instantiationReason: string\n switch (sourceType) {\n case SourceType.Runtime:\n instantiationReason = `as a runtime entry of chunk ${sourceData}`\n break\n case SourceType.Parent:\n instantiationReason = `because it was required from module ${sourceData}`\n break\n default:\n invariant(\n sourceType,\n (sourceType) => `Unknown source type: ${sourceType}`\n )\n }\n throw new Error(\n `Module ${id} was instantiated ${instantiationReason}, but the module factory is not available.`\n )\n }\n\n const module: Module = createModuleObject(id)\n const exports = module.exports\n moduleCache[id] = module\n\n const context = new (Context as any as ContextConstructor)(\n module,\n exports\n )\n // NOTE(alexkirsz) This can fail when the module encounters a runtime error.\n try {\n moduleFactory(context, module, exports)\n } catch (error) {\n module.error = error as any\n throw error\n }\n\n module.loaded = true\n if (module.namespaceObject && module.exports !== module.namespaceObject) {\n // in case of a circular dependency: cjs1 -> esm2 -> cjs1\n interopEsm(module.exports, module.namespaceObject)\n }\n\n return module\n}\n\n/**\n * Retrieves a module from the cache, or instantiate it if it is not cached.\n */\n// @ts-ignore\nfunction getOrInstantiateModuleFromParent(\n id: ModuleId,\n sourceModule: Module\n): Module {\n const module = moduleCache[id]\n\n if (module) {\n if (module.error) {\n throw module.error\n }\n\n return module\n }\n\n return instantiateModule(id, SourceType.Parent, sourceModule.id)\n}\n\n/**\n * Instantiates a runtime module.\n */\nfunction instantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): Module {\n return instantiateModule(moduleId, SourceType.Runtime, chunkPath)\n}\n\n/**\n * Retrieves a module from the cache, or instantiate it as a runtime module if it is not cached.\n */\n// @ts-ignore TypeScript doesn't separate this module space from the browser runtime\nfunction getOrInstantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): Module {\n const module = moduleCache[moduleId]\n if (module) {\n if (module.error) {\n throw module.error\n }\n return module\n }\n\n return instantiateRuntimeModule(chunkPath, moduleId)\n}\n\nconst regexJsUrl = /\\.js(?:\\?[^#]*)?(?:#.*)?$/\n/**\n * Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment.\n */\nfunction isJs(chunkUrlOrPath: ChunkUrl | ChunkPath): boolean {\n return regexJsUrl.test(chunkUrlOrPath)\n}\n\nmodule.exports = (sourcePath: ChunkPath) => ({\n m: (id: ModuleId) => getOrInstantiateRuntimeModule(sourcePath, id),\n c: (chunkData: ChunkData) => loadRuntimeChunk(sourcePath, chunkData),\n})\n"],"names":[],"mappings":"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","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_554ec2bf.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_554ec2bf.js deleted file mode 100644 index 45940cb..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_554ec2bf.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = [ -"[project]/.next-internal/server/app/_not-found/page/actions.js [app-rsc] (server actions loader, ecmascript)", ((__turbopack_context__, module, exports) => { - -}), -]; - -//# sourceMappingURL=_next-internal_server_app__not-found_page_actions_554ec2bf.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_554ec2bf.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_554ec2bf.js.map deleted file mode 100644 index f89d7b7..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app__not-found_page_actions_554ec2bf.js.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 3, "column": 0}, "map": {"version":3,"sources":[],"names":[],"mappings":""}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app_page_actions_39d4fc33.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app_page_actions_39d4fc33.js deleted file mode 100644 index dffe42a..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app_page_actions_39d4fc33.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = [ -"[project]/.next-internal/server/app/page/actions.js [app-rsc] (server actions loader, ecmascript)", ((__turbopack_context__, module, exports) => { - -}), -]; - -//# sourceMappingURL=_next-internal_server_app_page_actions_39d4fc33.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app_page_actions_39d4fc33.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app_page_actions_39d4fc33.js.map deleted file mode 100644 index f89d7b7..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/_next-internal_server_app_page_actions_39d4fc33.js.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 3, "column": 0}, "map": {"version":3,"sources":[],"names":[],"mappings":""}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_0f1a950b._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_0f1a950b._.js deleted file mode 100644 index dee17ea..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_0f1a950b._.js +++ /dev/null @@ -1,3275 +0,0 @@ -module.exports = [ -"[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -function _interop_require_default(obj) { - return obj && obj.__esModule ? obj : { - default: obj - }; -} -exports._ = _interop_require_default; -}), -"[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -function _getRequireWildcardCache(nodeInterop) { - if (typeof WeakMap !== "function") return null; - var cacheBabelInterop = new WeakMap(); - var cacheNodeInterop = new WeakMap(); - return (_getRequireWildcardCache = function(nodeInterop) { - return nodeInterop ? cacheNodeInterop : cacheBabelInterop; - })(nodeInterop); -} -function _interop_require_wildcard(obj, nodeInterop) { - if (!nodeInterop && obj && obj.__esModule) return obj; - if (obj === null || typeof obj !== "object" && typeof obj !== "function") return { - default: obj - }; - var cache = _getRequireWildcardCache(nodeInterop); - if (cache && cache.has(obj)) return cache.get(obj); - var newObj = { - __proto__: null - }; - var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; - for(var key in obj){ - if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { - var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; - if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc); - else newObj[key] = obj[key]; - } - } - newObj.default = obj; - if (cache) cache.set(obj, newObj); - return newObj; -} -exports._ = _interop_require_wildcard; -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time truthy", 1) { - module.exports = __turbopack_context__.r("[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)"); - } else //TURBOPACK unreachable - ; - } else //TURBOPACK unreachable - ; - } -} //# sourceMappingURL=module.compiled.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactJsxRuntime; //# sourceMappingURL=react-jsx-runtime.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].React; //# sourceMappingURL=react.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactDOM; //# sourceMappingURL=react-dom.js.map -}), -"[project]/node_modules/next/dist/shared/lib/side-effect.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return SideEffect; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -const isServer = ("TURBOPACK compile-time value", "undefined") === 'undefined'; -const useClientOnlyLayoutEffect = ("TURBOPACK compile-time truthy", 1) ? ()=>{} : "TURBOPACK unreachable"; -const useClientOnlyEffect = ("TURBOPACK compile-time truthy", 1) ? ()=>{} : "TURBOPACK unreachable"; -function SideEffect(props) { - const { headManager, reduceComponentsToState } = props; - function emitChange() { - if (headManager && headManager.mountedInstances) { - const headElements = _react.Children.toArray(Array.from(headManager.mountedInstances).filter(Boolean)); - headManager.updateHead(reduceComponentsToState(headElements)); - } - } - if ("TURBOPACK compile-time truthy", 1) { - headManager?.mountedInstances?.add(props.children); - emitChange(); - } - useClientOnlyLayoutEffect(()=>{ - headManager?.mountedInstances?.add(props.children); - return ()=>{ - headManager?.mountedInstances?.delete(props.children); - }; - }); - // We need to call `updateHead` method whenever the `SideEffect` is trigger in all - // life-cycles: mount, update, unmount. However, if there are multiple `SideEffect`s - // being rendered, we only trigger the method from the last one. - // This is ensured by keeping the last unflushed `updateHead` in the `_pendingUpdate` - // singleton in the layout effect pass, and actually trigger it in the effect pass. - useClientOnlyLayoutEffect(()=>{ - if (headManager) { - headManager._pendingUpdate = emitChange; - } - return ()=>{ - if (headManager) { - headManager._pendingUpdate = emitChange; - } - }; - }); - useClientOnlyEffect(()=>{ - if (headManager && headManager._pendingUpdate) { - headManager._pendingUpdate(); - headManager._pendingUpdate = null; - } - return ()=>{ - if (headManager && headManager._pendingUpdate) { - headManager._pendingUpdate(); - headManager._pendingUpdate = null; - } - }; - }); - return null; -} //# sourceMappingURL=side-effect.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].HeadManagerContext; //# sourceMappingURL=head-manager-context.js.map -}), -"[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "warnOnce", { - enumerable: true, - get: function() { - return warnOnce; - } -}); -let warnOnce = (_)=>{}; -if ("TURBOPACK compile-time truthy", 1) { - const warnings = new Set(); - warnOnce = (msg)=>{ - if (!warnings.has(msg)) { - console.warn(msg); - } - warnings.add(msg); - }; -} //# sourceMappingURL=warn-once.js.map -}), -"[project]/node_modules/next/dist/shared/lib/head.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - default: null, - defaultHead: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - default: function() { - return _default; - }, - defaultHead: function() { - return defaultHead; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-ssr] (ecmascript)"); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-ssr] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)")); -const _sideeffect = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/side-effect.js [app-ssr] (ecmascript)")); -const _headmanagercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js [app-ssr] (ecmascript)"); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)"); -function defaultHead() { - const head = [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("meta", { - charSet: "utf-8" - }, "charset"), - /*#__PURE__*/ (0, _jsxruntime.jsx)("meta", { - name: "viewport", - content: "width=device-width" - }, "viewport") - ]; - return head; -} -function onlyReactElement(list, child) { - // React children can be "string" or "number" in this case we ignore them for backwards compat - if (typeof child === 'string' || typeof child === 'number') { - return list; - } - // Adds support for React.Fragment - if (child.type === _react.default.Fragment) { - return list.concat(_react.default.Children.toArray(child.props.children).reduce((fragmentList, fragmentChild)=>{ - if (typeof fragmentChild === 'string' || typeof fragmentChild === 'number') { - return fragmentList; - } - return fragmentList.concat(fragmentChild); - }, [])); - } - return list.concat(child); -} -const METATYPES = [ - 'name', - 'httpEquiv', - 'charSet', - 'itemProp' -]; -/* - returns a function for filtering head child elements - which shouldn't be duplicated, like - Also adds support for deduplicated `key` properties -*/ function unique() { - const keys = new Set(); - const tags = new Set(); - const metaTypes = new Set(); - const metaCategories = {}; - return (h)=>{ - let isUnique = true; - let hasKey = false; - if (h.key && typeof h.key !== 'number' && h.key.indexOf('$') > 0) { - hasKey = true; - const key = h.key.slice(h.key.indexOf('$') + 1); - if (keys.has(key)) { - isUnique = false; - } else { - keys.add(key); - } - } - // eslint-disable-next-line default-case - switch(h.type){ - case 'title': - case 'base': - if (tags.has(h.type)) { - isUnique = false; - } else { - tags.add(h.type); - } - break; - case 'meta': - for(let i = 0, len = METATYPES.length; i < len; i++){ - const metatype = METATYPES[i]; - if (!h.props.hasOwnProperty(metatype)) continue; - if (metatype === 'charSet') { - if (metaTypes.has(metatype)) { - isUnique = false; - } else { - metaTypes.add(metatype); - } - } else { - const category = h.props[metatype]; - const categories = metaCategories[metatype] || new Set(); - if ((metatype !== 'name' || !hasKey) && categories.has(category)) { - isUnique = false; - } else { - categories.add(category); - metaCategories[metatype] = categories; - } - } - } - break; - } - return isUnique; - }; -} -/** - * - * @param headChildrenElements List of children of <Head> - */ function reduceComponents(headChildrenElements) { - return headChildrenElements.reduce(onlyReactElement, []).reverse().concat(defaultHead().reverse()).filter(unique()).reverse().map((c, i)=>{ - const key = c.key || i; - if ("TURBOPACK compile-time truthy", 1) { - // omit JSON-LD structured data snippets from the warning - if (c.type === 'script' && c.props['type'] !== 'application/ld+json') { - const srcMessage = c.props['src'] ? `<script> tag with src="${c.props['src']}"` : `inline <script>`; - (0, _warnonce.warnOnce)(`Do not add <script> tags using next/head (see ${srcMessage}). Use next/script instead. \nSee more info here: https://nextjs.org/docs/messages/no-script-tags-in-head-component`); - } else if (c.type === 'link' && c.props['rel'] === 'stylesheet') { - (0, _warnonce.warnOnce)(`Do not add stylesheets using next/head (see <link rel="stylesheet"> tag with href="${c.props['href']}"). Use Document instead. \nSee more info here: https://nextjs.org/docs/messages/no-stylesheets-in-head-component`); - } - } - return /*#__PURE__*/ _react.default.cloneElement(c, { - key - }); - }); -} -/** - * This component injects elements to `<head>` of your page. - * To avoid duplicated `tags` in `<head>` you can use the `key` property, which will make sure every tag is only rendered once. - */ function Head({ children }) { - const headManager = (0, _react.useContext)(_headmanagercontextsharedruntime.HeadManagerContext); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_sideeffect.default, { - reduceComponentsToState: reduceComponents, - headManager: headManager, - children: children - }); -} -const _default = Head; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=head.js.map -}), -"[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// This could also be a variable instead of a function, but some unit tests want to change the ID at -// runtime. Even though that would never happen in a real deployment. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getDeploymentId: null, - getDeploymentIdQueryOrEmptyString: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getDeploymentId: function() { - return getDeploymentId; - }, - getDeploymentIdQueryOrEmptyString: function() { - return getDeploymentIdQueryOrEmptyString; - } -}); -function getDeploymentId() { - return "TURBOPACK compile-time value", false; -} -function getDeploymentIdQueryOrEmptyString() { - let deploymentId = getDeploymentId(); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return ''; -} //# sourceMappingURL=deployment-id.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-blur-svg.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * A shared function, used on both client and server, to generate a SVG blur placeholder. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getImageBlurSvg", { - enumerable: true, - get: function() { - return getImageBlurSvg; - } -}); -function getImageBlurSvg({ widthInt, heightInt, blurWidth, blurHeight, blurDataURL, objectFit }) { - const std = 20; - const svgWidth = blurWidth ? blurWidth * 40 : widthInt; - const svgHeight = blurHeight ? blurHeight * 40 : heightInt; - const viewBox = svgWidth && svgHeight ? `viewBox='0 0 ${svgWidth} ${svgHeight}'` : ''; - const preserveAspectRatio = viewBox ? 'none' : objectFit === 'contain' ? 'xMidYMid' : objectFit === 'cover' ? 'xMidYMid slice' : 'none'; - return `%3Csvg xmlns='http://www.w3.org/2000/svg' ${viewBox}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${preserveAspectRatio}' style='filter: url(%23b);' href='${blurDataURL}'/%3E%3C/svg%3E`; -} //# sourceMappingURL=image-blur-svg.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-config.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - VALID_LOADERS: null, - imageConfigDefault: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - VALID_LOADERS: function() { - return VALID_LOADERS; - }, - imageConfigDefault: function() { - return imageConfigDefault; - } -}); -const VALID_LOADERS = [ - 'default', - 'imgix', - 'cloudinary', - 'akamai', - 'custom' -]; -const imageConfigDefault = { - deviceSizes: [ - 640, - 750, - 828, - 1080, - 1200, - 1920, - 2048, - 3840 - ], - imageSizes: [ - 32, - 48, - 64, - 96, - 128, - 256, - 384 - ], - path: '/_next/image', - loader: 'default', - loaderFile: '', - /** - * @deprecated Use `remotePatterns` instead to protect your application from malicious users. - */ domains: [], - disableStaticImages: false, - minimumCacheTTL: 14400, - formats: [ - 'image/webp' - ], - maximumRedirects: 3, - maximumResponseBody: 50000000, - dangerouslyAllowLocalIP: false, - dangerouslyAllowSVG: false, - contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`, - contentDispositionType: 'attachment', - localPatterns: undefined, - remotePatterns: [], - qualities: [ - 75 - ], - unoptimized: false -}; //# sourceMappingURL=image-config.js.map -}), -"[project]/node_modules/next/dist/shared/lib/get-img-props.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getImgProps", { - enumerable: true, - get: function() { - return getImgProps; - } -}); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-ssr] (ecmascript)"); -const _imageblursvg = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-blur-svg.js [app-ssr] (ecmascript)"); -const _imageconfig = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-config.js [app-ssr] (ecmascript)"); -const VALID_LOADING_VALUES = [ - 'lazy', - 'eager', - undefined -]; -// Object-fit values that are not valid background-size values -const INVALID_BACKGROUND_SIZE_VALUES = [ - '-moz-initial', - 'fill', - 'none', - 'scale-down', - undefined -]; -function isStaticRequire(src) { - return src.default !== undefined; -} -function isStaticImageData(src) { - return src.src !== undefined; -} -function isStaticImport(src) { - return !!src && typeof src === 'object' && (isStaticRequire(src) || isStaticImageData(src)); -} -const allImgs = new Map(); -let perfObserver; -function getInt(x) { - if (typeof x === 'undefined') { - return x; - } - if (typeof x === 'number') { - return Number.isFinite(x) ? x : NaN; - } - if (typeof x === 'string' && /^[0-9]+$/.test(x)) { - return parseInt(x, 10); - } - return NaN; -} -function getWidths({ deviceSizes, allSizes }, width, sizes) { - if (sizes) { - // Find all the "vw" percent sizes used in the sizes prop - const viewportWidthRe = /(^|\s)(1?\d?\d)vw/g; - const percentSizes = []; - for(let match; match = viewportWidthRe.exec(sizes); match){ - percentSizes.push(parseInt(match[2])); - } - if (percentSizes.length) { - const smallestRatio = Math.min(...percentSizes) * 0.01; - return { - widths: allSizes.filter((s)=>s >= deviceSizes[0] * smallestRatio), - kind: 'w' - }; - } - return { - widths: allSizes, - kind: 'w' - }; - } - if (typeof width !== 'number') { - return { - widths: deviceSizes, - kind: 'w' - }; - } - const widths = [ - ...new Set(// > are actually 3x in the green color, but only 1.5x in the red and - // > blue colors. Showing a 3x resolution image in the app vs a 2x - // > resolution image will be visually the same, though the 3x image - // > takes significantly more data. Even true 3x resolution screens are - // > wasteful as the human eye cannot see that level of detail without - // > something like a magnifying glass. - // https://blog.twitter.com/engineering/en_us/topics/infrastructure/2019/capping-image-fidelity-on-ultra-high-resolution-devices.html - [ - width, - width * 2 /*, width * 3*/ - ].map((w)=>allSizes.find((p)=>p >= w) || allSizes[allSizes.length - 1])) - ]; - return { - widths, - kind: 'x' - }; -} -function generateImgAttrs({ config, src, unoptimized, width, quality, sizes, loader }) { - if (unoptimized) { - const deploymentId = (0, _deploymentid.getDeploymentId)(); - if (src.startsWith('/') && !src.startsWith('//') && deploymentId) { - const sep = src.includes('?') ? '&' : '?'; - src = `${src}${sep}dpl=${deploymentId}`; - } - return { - src, - srcSet: undefined, - sizes: undefined - }; - } - const { widths, kind } = getWidths(config, width, sizes); - const last = widths.length - 1; - return { - sizes: !sizes && kind === 'w' ? '100vw' : sizes, - srcSet: widths.map((w, i)=>`${loader({ - config, - src, - quality, - width: w - })} ${kind === 'w' ? w : i + 1}${kind}`).join(', '), - // It's intended to keep `src` the last attribute because React updates - // attributes in order. If we keep `src` the first one, Safari will - // immediately start to fetch `src`, before `sizes` and `srcSet` are even - // updated by React. That causes multiple unnecessary requests if `srcSet` - // and `sizes` are defined. - // This bug cannot be reproduced in Chrome or Firefox. - src: loader({ - config, - src, - quality, - width: widths[last] - }) - }; -} -function getImgProps({ src, sizes, unoptimized = false, priority = false, preload = false, loading, className, quality, width, height, fill = false, style, overrideSrc, onLoad, onLoadingComplete, placeholder = 'empty', blurDataURL, fetchPriority, decoding = 'async', layout, objectFit, objectPosition, lazyBoundary, lazyRoot, ...rest }, _state) { - const { imgConf, showAltText, blurComplete, defaultLoader } = _state; - let config; - let c = imgConf || _imageconfig.imageConfigDefault; - if ('allSizes' in c) { - config = c; - } else { - const allSizes = [ - ...c.deviceSizes, - ...c.imageSizes - ].sort((a, b)=>a - b); - const deviceSizes = c.deviceSizes.sort((a, b)=>a - b); - const qualities = c.qualities?.sort((a, b)=>a - b); - config = { - ...c, - allSizes, - deviceSizes, - qualities - }; - } - if (typeof defaultLoader === 'undefined') { - throw Object.defineProperty(new Error('images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config'), "__NEXT_ERROR_CODE", { - value: "E163", - enumerable: false, - configurable: true - }); - } - let loader = rest.loader || defaultLoader; - // Remove property so it's not spread on <img> element - delete rest.loader; - delete rest.srcSet; - // This special value indicates that the user - // didn't define a "loader" prop or "loader" config. - const isDefaultLoader = '__next_img_default' in loader; - if (isDefaultLoader) { - if (config.loader === 'custom') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing "loader" prop.` + `\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader`), "__NEXT_ERROR_CODE", { - value: "E252", - enumerable: false, - configurable: true - }); - } - } else { - // The user defined a "loader" prop or config. - // Since the config object is internal only, we - // must not pass it to the user-defined "loader". - const customImageLoader = loader; - loader = (obj)=>{ - const { config: _, ...opts } = obj; - return customImageLoader(opts); - }; - } - if (layout) { - if (layout === 'fill') { - fill = true; - } - const layoutToStyle = { - intrinsic: { - maxWidth: '100%', - height: 'auto' - }, - responsive: { - width: '100%', - height: 'auto' - } - }; - const layoutToSizes = { - responsive: '100vw', - fill: '100vw' - }; - const layoutStyle = layoutToStyle[layout]; - if (layoutStyle) { - style = { - ...style, - ...layoutStyle - }; - } - const layoutSizes = layoutToSizes[layout]; - if (layoutSizes && !sizes) { - sizes = layoutSizes; - } - } - let staticSrc = ''; - let widthInt = getInt(width); - let heightInt = getInt(height); - let blurWidth; - let blurHeight; - if (isStaticImport(src)) { - const staticImageData = isStaticRequire(src) ? src.default : src; - if (!staticImageData.src) { - throw Object.defineProperty(new Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(staticImageData)}`), "__NEXT_ERROR_CODE", { - value: "E460", - enumerable: false, - configurable: true - }); - } - if (!staticImageData.height || !staticImageData.width) { - throw Object.defineProperty(new Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(staticImageData)}`), "__NEXT_ERROR_CODE", { - value: "E48", - enumerable: false, - configurable: true - }); - } - blurWidth = staticImageData.blurWidth; - blurHeight = staticImageData.blurHeight; - blurDataURL = blurDataURL || staticImageData.blurDataURL; - staticSrc = staticImageData.src; - if (!fill) { - if (!widthInt && !heightInt) { - widthInt = staticImageData.width; - heightInt = staticImageData.height; - } else if (widthInt && !heightInt) { - const ratio = widthInt / staticImageData.width; - heightInt = Math.round(staticImageData.height * ratio); - } else if (!widthInt && heightInt) { - const ratio = heightInt / staticImageData.height; - widthInt = Math.round(staticImageData.width * ratio); - } - } - } - src = typeof src === 'string' ? src : staticSrc; - let isLazy = !priority && !preload && (loading === 'lazy' || typeof loading === 'undefined'); - if (!src || src.startsWith('data:') || src.startsWith('blob:')) { - // https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs - unoptimized = true; - isLazy = false; - } - if (config.unoptimized) { - unoptimized = true; - } - if (isDefaultLoader && !config.dangerouslyAllowSVG && src.split('?', 1)[0].endsWith('.svg')) { - // Special case to make svg serve as-is to avoid proxying - // through the built-in Image Optimization API. - unoptimized = true; - } - const qualityInt = getInt(quality); - if ("TURBOPACK compile-time truthy", 1) { - if (config.output === 'export' && isDefaultLoader && !unoptimized) { - throw Object.defineProperty(new Error(`Image Optimization using the default loader is not compatible with \`{ output: 'export' }\`. - Possible solutions: - - Remove \`{ output: 'export' }\` and run "next start" to run server mode including the Image Optimization API. - - Configure \`{ images: { unoptimized: true } }\` in \`next.config.js\` to disable the Image Optimization API. - Read more: https://nextjs.org/docs/messages/export-image-api`), "__NEXT_ERROR_CODE", { - value: "E500", - enumerable: false, - configurable: true - }); - } - if (!src) { - // React doesn't show the stack trace and there's - // no `src` to help identify which image, so we - // instead console.error(ref) during mount. - unoptimized = true; - } else { - if (fill) { - if (width) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "width" and "fill" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E96", - enumerable: false, - configurable: true - }); - } - if (height) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "height" and "fill" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E115", - enumerable: false, - configurable: true - }); - } - if (style?.position && style.position !== 'absolute') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.position" properties. Images with "fill" always use position absolute - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E216", - enumerable: false, - configurable: true - }); - } - if (style?.width && style.width !== '100%') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.width" properties. Images with "fill" always use width 100% - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E73", - enumerable: false, - configurable: true - }); - } - if (style?.height && style.height !== '100%') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.height" properties. Images with "fill" always use height 100% - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E404", - enumerable: false, - configurable: true - }); - } - } else { - if (typeof widthInt === 'undefined') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing required "width" property.`), "__NEXT_ERROR_CODE", { - value: "E451", - enumerable: false, - configurable: true - }); - } else if (isNaN(widthInt)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "width" property. Expected a numeric value in pixels but received "${width}".`), "__NEXT_ERROR_CODE", { - value: "E66", - enumerable: false, - configurable: true - }); - } - if (typeof heightInt === 'undefined') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing required "height" property.`), "__NEXT_ERROR_CODE", { - value: "E397", - enumerable: false, - configurable: true - }); - } else if (isNaN(heightInt)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "height" property. Expected a numeric value in pixels but received "${height}".`), "__NEXT_ERROR_CODE", { - value: "E444", - enumerable: false, - configurable: true - }); - } - // eslint-disable-next-line no-control-regex - if (/^[\x00-\x20]/.test(src)) { - throw Object.defineProperty(new Error(`Image with src "${src}" cannot start with a space or control character. Use src.trimStart() to remove it or encodeURIComponent(src) to keep it.`), "__NEXT_ERROR_CODE", { - value: "E176", - enumerable: false, - configurable: true - }); - } - // eslint-disable-next-line no-control-regex - if (/[\x00-\x20]$/.test(src)) { - throw Object.defineProperty(new Error(`Image with src "${src}" cannot end with a space or control character. Use src.trimEnd() to remove it or encodeURIComponent(src) to keep it.`), "__NEXT_ERROR_CODE", { - value: "E21", - enumerable: false, - configurable: true - }); - } - } - } - if (!VALID_LOADING_VALUES.includes(loading)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "loading" property. Provided "${loading}" should be one of ${VALID_LOADING_VALUES.map(String).join(',')}.`), "__NEXT_ERROR_CODE", { - value: "E357", - enumerable: false, - configurable: true - }); - } - if (priority && loading === 'lazy') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "priority" and "loading='lazy'" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E218", - enumerable: false, - configurable: true - }); - } - if (preload && loading === 'lazy') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "preload" and "loading='lazy'" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E803", - enumerable: false, - configurable: true - }); - } - if (preload && priority) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "preload" and "priority" properties. Only "preload" should be used.`), "__NEXT_ERROR_CODE", { - value: "E802", - enumerable: false, - configurable: true - }); - } - if (placeholder !== 'empty' && placeholder !== 'blur' && !placeholder.startsWith('data:image/')) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "placeholder" property "${placeholder}".`), "__NEXT_ERROR_CODE", { - value: "E431", - enumerable: false, - configurable: true - }); - } - if (placeholder !== 'empty') { - if (widthInt && heightInt && widthInt * heightInt < 1600) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is smaller than 40x40. Consider removing the "placeholder" property to improve performance.`); - } - } - if (qualityInt && config.qualities && !config.qualities.includes(qualityInt)) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using quality "${qualityInt}" which is not configured in images.qualities [${config.qualities.join(', ')}]. Please update your config to [${[ - ...config.qualities, - qualityInt - ].sort().join(', ')}].` + `\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-qualities`); - } - if (placeholder === 'blur' && !blurDataURL) { - const VALID_BLUR_EXT = [ - 'jpeg', - 'png', - 'webp', - 'avif' - ] // should match next-image-loader - ; - throw Object.defineProperty(new Error(`Image with src "${src}" has "placeholder='blur'" property but is missing the "blurDataURL" property. - Possible solutions: - - Add a "blurDataURL" property, the contents should be a small Data URL to represent the image - - Change the "src" property to a static import with one of the supported file types: ${VALID_BLUR_EXT.join(',')} (animated images not supported) - - Remove the "placeholder" property, effectively no blur effect - Read more: https://nextjs.org/docs/messages/placeholder-blur-data-url`), "__NEXT_ERROR_CODE", { - value: "E371", - enumerable: false, - configurable: true - }); - } - if ('ref' in rest) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using unsupported "ref" property. Consider using the "onLoad" property instead.`); - } - if (!unoptimized && !isDefaultLoader) { - const urlStr = loader({ - config, - src, - width: widthInt || 400, - quality: qualityInt || 75 - }); - let url; - try { - url = new URL(urlStr); - } catch (err) {} - if (urlStr === src || url && url.pathname === src && !url.search) { - (0, _warnonce.warnOnce)(`Image with src "${src}" has a "loader" property that does not implement width. Please implement it or use the "unoptimized" property instead.` + `\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader-width`); - } - } - if (onLoadingComplete) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using deprecated "onLoadingComplete" property. Please use the "onLoad" property instead.`); - } - for (const [legacyKey, legacyValue] of Object.entries({ - layout, - objectFit, - objectPosition, - lazyBoundary, - lazyRoot - })){ - if (legacyValue) { - (0, _warnonce.warnOnce)(`Image with src "${src}" has legacy prop "${legacyKey}". Did you forget to run the codemod?` + `\nRead more: https://nextjs.org/docs/messages/next-image-upgrade-to-13`); - } - } - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - } - const imgStyle = Object.assign(fill ? { - position: 'absolute', - height: '100%', - width: '100%', - left: 0, - top: 0, - right: 0, - bottom: 0, - objectFit, - objectPosition - } : {}, showAltText ? {} : { - color: 'transparent' - }, style); - const backgroundImage = !blurComplete && placeholder !== 'empty' ? placeholder === 'blur' ? `url("data:image/svg+xml;charset=utf-8,${(0, _imageblursvg.getImageBlurSvg)({ - widthInt, - heightInt, - blurWidth, - blurHeight, - blurDataURL: blurDataURL || '', - objectFit: imgStyle.objectFit - })}")` : `url("${placeholder}")` // assume `data:image/` - : null; - const backgroundSize = !INVALID_BACKGROUND_SIZE_VALUES.includes(imgStyle.objectFit) ? imgStyle.objectFit : imgStyle.objectFit === 'fill' ? '100% 100%' // the background-size equivalent of `fill` - : 'cover'; - let placeholderStyle = backgroundImage ? { - backgroundSize, - backgroundPosition: imgStyle.objectPosition || '50% 50%', - backgroundRepeat: 'no-repeat', - backgroundImage - } : {}; - if ("TURBOPACK compile-time truthy", 1) { - if (placeholderStyle.backgroundImage && placeholder === 'blur' && blurDataURL?.startsWith('/')) { - // During `next dev`, we don't want to generate blur placeholders with webpack - // because it can delay starting the dev server. Instead, `next-image-loader.js` - // will inline a special url to lazily generate the blur placeholder at request time. - placeholderStyle.backgroundImage = `url("${blurDataURL}")`; - } - } - const imgAttributes = generateImgAttrs({ - config, - src, - unoptimized, - width: widthInt, - quality: qualityInt, - sizes, - loader - }); - const loadingFinal = isLazy ? 'lazy' : loading; - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - } - const props = { - ...rest, - loading: loadingFinal, - fetchPriority, - width: widthInt, - height: heightInt, - decoding, - className, - style: { - ...imgStyle, - ...placeholderStyle - }, - sizes: imgAttributes.sizes, - srcSet: imgAttributes.srcSet, - src: overrideSrc || imgAttributes.src - }; - const meta = { - unoptimized, - preload: preload || priority, - placeholder, - fill - }; - return { - props, - meta - }; -} //# sourceMappingURL=get-img-props.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].ImageConfigContext; //# sourceMappingURL=image-config-context.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].RouterContext; //# sourceMappingURL=router-context.js.map -}), -"[project]/node_modules/next/dist/shared/lib/find-closest-quality.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "findClosestQuality", { - enumerable: true, - get: function() { - return findClosestQuality; - } -}); -function findClosestQuality(quality, config) { - const q = quality || 75; - if (!config?.qualities?.length) { - return q; - } - return config.qualities.reduce((prev, cur)=>Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev, 0); -} //# sourceMappingURL=find-closest-quality.js.map -}), -"[project]/node_modules/next/dist/compiled/picomatch/index.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var t = { - 170: (t, e, u)=>{ - const n = u(510); - const isWindows = ()=>{ - if (typeof navigator !== "undefined" && navigator.platform) { - const t = navigator.platform.toLowerCase(); - return t === "win32" || t === "windows"; - } - if (typeof process !== "undefined" && process.platform) { - return process.platform === "win32"; - } - return false; - }; - function picomatch(t, e, u = false) { - if (e && (e.windows === null || e.windows === undefined)) { - e = { - ...e, - windows: isWindows() - }; - } - return n(t, e, u); - } - Object.assign(picomatch, n); - t.exports = picomatch; - }, - 154: (t)=>{ - const e = "\\\\/"; - const u = `[^${e}]`; - const n = "\\."; - const o = "\\+"; - const s = "\\?"; - const r = "\\/"; - const a = "(?=.)"; - const i = "[^/]"; - const c = `(?:${r}|$)`; - const p = `(?:^|${r})`; - const l = `${n}{1,2}${c}`; - const f = `(?!${n})`; - const A = `(?!${p}${l})`; - const _ = `(?!${n}{0,1}${c})`; - const R = `(?!${l})`; - const E = `[^.${r}]`; - const h = `${i}*?`; - const g = "/"; - const b = { - DOT_LITERAL: n, - PLUS_LITERAL: o, - QMARK_LITERAL: s, - SLASH_LITERAL: r, - ONE_CHAR: a, - QMARK: i, - END_ANCHOR: c, - DOTS_SLASH: l, - NO_DOT: f, - NO_DOTS: A, - NO_DOT_SLASH: _, - NO_DOTS_SLASH: R, - QMARK_NO_DOT: E, - STAR: h, - START_ANCHOR: p, - SEP: g - }; - const C = { - ...b, - SLASH_LITERAL: `[${e}]`, - QMARK: u, - STAR: `${u}*?`, - DOTS_SLASH: `${n}{1,2}(?:[${e}]|$)`, - NO_DOT: `(?!${n})`, - NO_DOTS: `(?!(?:^|[${e}])${n}{1,2}(?:[${e}]|$))`, - NO_DOT_SLASH: `(?!${n}{0,1}(?:[${e}]|$))`, - NO_DOTS_SLASH: `(?!${n}{1,2}(?:[${e}]|$))`, - QMARK_NO_DOT: `[^.${e}]`, - START_ANCHOR: `(?:^|[${e}])`, - END_ANCHOR: `(?:[${e}]|$)`, - SEP: "\\" - }; - const y = { - alnum: "a-zA-Z0-9", - alpha: "a-zA-Z", - ascii: "\\x00-\\x7F", - blank: " \\t", - cntrl: "\\x00-\\x1F\\x7F", - digit: "0-9", - graph: "\\x21-\\x7E", - lower: "a-z", - print: "\\x20-\\x7E ", - punct: "\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~", - space: " \\t\\r\\n\\v\\f", - upper: "A-Z", - word: "A-Za-z0-9_", - xdigit: "A-Fa-f0-9" - }; - t.exports = { - MAX_LENGTH: 1024 * 64, - POSIX_REGEX_SOURCE: y, - REGEX_BACKSLASH: /\\(?![*+?^${}(|)[\]])/g, - REGEX_NON_SPECIAL_CHARS: /^[^@![\].,$*+?^{}()|\\/]+/, - REGEX_SPECIAL_CHARS: /[-*+?.^${}(|)[\]]/, - REGEX_SPECIAL_CHARS_BACKREF: /(\\?)((\W)(\3*))/g, - REGEX_SPECIAL_CHARS_GLOBAL: /([-*+?.^${}(|)[\]])/g, - REGEX_REMOVE_BACKSLASH: /(?:\[.*?[^\\]\]|\\(?=.))/g, - REPLACEMENTS: { - "***": "*", - "**/**": "**", - "**/**/**": "**" - }, - CHAR_0: 48, - CHAR_9: 57, - CHAR_UPPERCASE_A: 65, - CHAR_LOWERCASE_A: 97, - CHAR_UPPERCASE_Z: 90, - CHAR_LOWERCASE_Z: 122, - CHAR_LEFT_PARENTHESES: 40, - CHAR_RIGHT_PARENTHESES: 41, - CHAR_ASTERISK: 42, - CHAR_AMPERSAND: 38, - CHAR_AT: 64, - CHAR_BACKWARD_SLASH: 92, - CHAR_CARRIAGE_RETURN: 13, - CHAR_CIRCUMFLEX_ACCENT: 94, - CHAR_COLON: 58, - CHAR_COMMA: 44, - CHAR_DOT: 46, - CHAR_DOUBLE_QUOTE: 34, - CHAR_EQUAL: 61, - CHAR_EXCLAMATION_MARK: 33, - CHAR_FORM_FEED: 12, - CHAR_FORWARD_SLASH: 47, - CHAR_GRAVE_ACCENT: 96, - CHAR_HASH: 35, - CHAR_HYPHEN_MINUS: 45, - CHAR_LEFT_ANGLE_BRACKET: 60, - CHAR_LEFT_CURLY_BRACE: 123, - CHAR_LEFT_SQUARE_BRACKET: 91, - CHAR_LINE_FEED: 10, - CHAR_NO_BREAK_SPACE: 160, - CHAR_PERCENT: 37, - CHAR_PLUS: 43, - CHAR_QUESTION_MARK: 63, - CHAR_RIGHT_ANGLE_BRACKET: 62, - CHAR_RIGHT_CURLY_BRACE: 125, - CHAR_RIGHT_SQUARE_BRACKET: 93, - CHAR_SEMICOLON: 59, - CHAR_SINGLE_QUOTE: 39, - CHAR_SPACE: 32, - CHAR_TAB: 9, - CHAR_UNDERSCORE: 95, - CHAR_VERTICAL_LINE: 124, - CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279, - extglobChars (t) { - return { - "!": { - type: "negate", - open: "(?:(?!(?:", - close: `))${t.STAR})` - }, - "?": { - type: "qmark", - open: "(?:", - close: ")?" - }, - "+": { - type: "plus", - open: "(?:", - close: ")+" - }, - "*": { - type: "star", - open: "(?:", - close: ")*" - }, - "@": { - type: "at", - open: "(?:", - close: ")" - } - }; - }, - globChars (t) { - return t === true ? C : b; - } - }; - }, - 697: (t, e, u)=>{ - const n = u(154); - const o = u(96); - const { MAX_LENGTH: s, POSIX_REGEX_SOURCE: r, REGEX_NON_SPECIAL_CHARS: a, REGEX_SPECIAL_CHARS_BACKREF: i, REPLACEMENTS: c } = n; - const expandRange = (t, e)=>{ - if (typeof e.expandRange === "function") { - return e.expandRange(...t, e); - } - t.sort(); - const u = `[${t.join("-")}]`; - try { - new RegExp(u); - } catch (e) { - return t.map((t)=>o.escapeRegex(t)).join(".."); - } - return u; - }; - const syntaxError = (t, e)=>`Missing ${t}: "${e}" - use "\\\\${e}" to match literal characters`; - const parse = (t, e)=>{ - if (typeof t !== "string") { - throw new TypeError("Expected a string"); - } - t = c[t] || t; - const u = { - ...e - }; - const p = typeof u.maxLength === "number" ? Math.min(s, u.maxLength) : s; - let l = t.length; - if (l > p) { - throw new SyntaxError(`Input length: ${l}, exceeds maximum allowed length: ${p}`); - } - const f = { - type: "bos", - value: "", - output: u.prepend || "" - }; - const A = [ - f - ]; - const _ = u.capture ? "" : "?:"; - const R = n.globChars(u.windows); - const E = n.extglobChars(R); - const { DOT_LITERAL: h, PLUS_LITERAL: g, SLASH_LITERAL: b, ONE_CHAR: C, DOTS_SLASH: y, NO_DOT: $, NO_DOT_SLASH: x, NO_DOTS_SLASH: S, QMARK: H, QMARK_NO_DOT: v, STAR: d, START_ANCHOR: L } = R; - const globstar = (t)=>`(${_}(?:(?!${L}${t.dot ? y : h}).)*?)`; - const T = u.dot ? "" : $; - const O = u.dot ? H : v; - let k = u.bash === true ? globstar(u) : d; - if (u.capture) { - k = `(${k})`; - } - if (typeof u.noext === "boolean") { - u.noextglob = u.noext; - } - const m = { - input: t, - index: -1, - start: 0, - dot: u.dot === true, - consumed: "", - output: "", - prefix: "", - backtrack: false, - negated: false, - brackets: 0, - braces: 0, - parens: 0, - quotes: 0, - globstar: false, - tokens: A - }; - t = o.removePrefix(t, m); - l = t.length; - const w = []; - const N = []; - const I = []; - let B = f; - let G; - const eos = ()=>m.index === l - 1; - const D = m.peek = (e = 1)=>t[m.index + e]; - const M = m.advance = ()=>t[++m.index] || ""; - const remaining = ()=>t.slice(m.index + 1); - const consume = (t = "", e = 0)=>{ - m.consumed += t; - m.index += e; - }; - const append = (t)=>{ - m.output += t.output != null ? t.output : t.value; - consume(t.value); - }; - const negate = ()=>{ - let t = 1; - while(D() === "!" && (D(2) !== "(" || D(3) === "?")){ - M(); - m.start++; - t++; - } - if (t % 2 === 0) { - return false; - } - m.negated = true; - m.start++; - return true; - }; - const increment = (t)=>{ - m[t]++; - I.push(t); - }; - const decrement = (t)=>{ - m[t]--; - I.pop(); - }; - const push = (t)=>{ - if (B.type === "globstar") { - const e = m.braces > 0 && (t.type === "comma" || t.type === "brace"); - const u = t.extglob === true || w.length && (t.type === "pipe" || t.type === "paren"); - if (t.type !== "slash" && t.type !== "paren" && !e && !u) { - m.output = m.output.slice(0, -B.output.length); - B.type = "star"; - B.value = "*"; - B.output = k; - m.output += B.output; - } - } - if (w.length && t.type !== "paren") { - w[w.length - 1].inner += t.value; - } - if (t.value || t.output) append(t); - if (B && B.type === "text" && t.type === "text") { - B.output = (B.output || B.value) + t.value; - B.value += t.value; - return; - } - t.prev = B; - A.push(t); - B = t; - }; - const extglobOpen = (t, e)=>{ - const n = { - ...E[e], - conditions: 1, - inner: "" - }; - n.prev = B; - n.parens = m.parens; - n.output = m.output; - const o = (u.capture ? "(" : "") + n.open; - increment("parens"); - push({ - type: t, - value: e, - output: m.output ? "" : C - }); - push({ - type: "paren", - extglob: true, - value: M(), - output: o - }); - w.push(n); - }; - const extglobClose = (t)=>{ - let n = t.close + (u.capture ? ")" : ""); - let o; - if (t.type === "negate") { - let s = k; - if (t.inner && t.inner.length > 1 && t.inner.includes("/")) { - s = globstar(u); - } - if (s !== k || eos() || /^\)+$/.test(remaining())) { - n = t.close = `)$))${s}`; - } - if (t.inner.includes("*") && (o = remaining()) && /^\.[^\\/.]+$/.test(o)) { - const u = parse(o, { - ...e, - fastpaths: false - }).output; - n = t.close = `)${u})${s})`; - } - if (t.prev.type === "bos") { - m.negatedExtglob = true; - } - } - push({ - type: "paren", - extglob: true, - value: G, - output: n - }); - decrement("parens"); - }; - if (u.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(t)) { - let n = false; - let s = t.replace(i, (t, e, u, o, s, r)=>{ - if (o === "\\") { - n = true; - return t; - } - if (o === "?") { - if (e) { - return e + o + (s ? H.repeat(s.length) : ""); - } - if (r === 0) { - return O + (s ? H.repeat(s.length) : ""); - } - return H.repeat(u.length); - } - if (o === ".") { - return h.repeat(u.length); - } - if (o === "*") { - if (e) { - return e + o + (s ? k : ""); - } - return k; - } - return e ? t : `\\${t}`; - }); - if (n === true) { - if (u.unescape === true) { - s = s.replace(/\\/g, ""); - } else { - s = s.replace(/\\+/g, (t)=>t.length % 2 === 0 ? "\\\\" : t ? "\\" : ""); - } - } - if (s === t && u.contains === true) { - m.output = t; - return m; - } - m.output = o.wrapOutput(s, m, e); - return m; - } - while(!eos()){ - G = M(); - if (G === "\0") { - continue; - } - if (G === "\\") { - const t = D(); - if (t === "/" && u.bash !== true) { - continue; - } - if (t === "." || t === ";") { - continue; - } - if (!t) { - G += "\\"; - push({ - type: "text", - value: G - }); - continue; - } - const e = /^\\+/.exec(remaining()); - let n = 0; - if (e && e[0].length > 2) { - n = e[0].length; - m.index += n; - if (n % 2 !== 0) { - G += "\\"; - } - } - if (u.unescape === true) { - G = M(); - } else { - G += M(); - } - if (m.brackets === 0) { - push({ - type: "text", - value: G - }); - continue; - } - } - if (m.brackets > 0 && (G !== "]" || B.value === "[" || B.value === "[^")) { - if (u.posix !== false && G === ":") { - const t = B.value.slice(1); - if (t.includes("[")) { - B.posix = true; - if (t.includes(":")) { - const t = B.value.lastIndexOf("["); - const e = B.value.slice(0, t); - const u = B.value.slice(t + 2); - const n = r[u]; - if (n) { - B.value = e + n; - m.backtrack = true; - M(); - if (!f.output && A.indexOf(B) === 1) { - f.output = C; - } - continue; - } - } - } - } - if (G === "[" && D() !== ":" || G === "-" && D() === "]") { - G = `\\${G}`; - } - if (G === "]" && (B.value === "[" || B.value === "[^")) { - G = `\\${G}`; - } - if (u.posix === true && G === "!" && B.value === "[") { - G = "^"; - } - B.value += G; - append({ - value: G - }); - continue; - } - if (m.quotes === 1 && G !== '"') { - G = o.escapeRegex(G); - B.value += G; - append({ - value: G - }); - continue; - } - if (G === '"') { - m.quotes = m.quotes === 1 ? 0 : 1; - if (u.keepQuotes === true) { - push({ - type: "text", - value: G - }); - } - continue; - } - if (G === "(") { - increment("parens"); - push({ - type: "paren", - value: G - }); - continue; - } - if (G === ")") { - if (m.parens === 0 && u.strictBrackets === true) { - throw new SyntaxError(syntaxError("opening", "(")); - } - const t = w[w.length - 1]; - if (t && m.parens === t.parens + 1) { - extglobClose(w.pop()); - continue; - } - push({ - type: "paren", - value: G, - output: m.parens ? ")" : "\\)" - }); - decrement("parens"); - continue; - } - if (G === "[") { - if (u.nobracket === true || !remaining().includes("]")) { - if (u.nobracket !== true && u.strictBrackets === true) { - throw new SyntaxError(syntaxError("closing", "]")); - } - G = `\\${G}`; - } else { - increment("brackets"); - } - push({ - type: "bracket", - value: G - }); - continue; - } - if (G === "]") { - if (u.nobracket === true || B && B.type === "bracket" && B.value.length === 1) { - push({ - type: "text", - value: G, - output: `\\${G}` - }); - continue; - } - if (m.brackets === 0) { - if (u.strictBrackets === true) { - throw new SyntaxError(syntaxError("opening", "[")); - } - push({ - type: "text", - value: G, - output: `\\${G}` - }); - continue; - } - decrement("brackets"); - const t = B.value.slice(1); - if (B.posix !== true && t[0] === "^" && !t.includes("/")) { - G = `/${G}`; - } - B.value += G; - append({ - value: G - }); - if (u.literalBrackets === false || o.hasRegexChars(t)) { - continue; - } - const e = o.escapeRegex(B.value); - m.output = m.output.slice(0, -B.value.length); - if (u.literalBrackets === true) { - m.output += e; - B.value = e; - continue; - } - B.value = `(${_}${e}|${B.value})`; - m.output += B.value; - continue; - } - if (G === "{" && u.nobrace !== true) { - increment("braces"); - const t = { - type: "brace", - value: G, - output: "(", - outputIndex: m.output.length, - tokensIndex: m.tokens.length - }; - N.push(t); - push(t); - continue; - } - if (G === "}") { - const t = N[N.length - 1]; - if (u.nobrace === true || !t) { - push({ - type: "text", - value: G, - output: G - }); - continue; - } - let e = ")"; - if (t.dots === true) { - const t = A.slice(); - const n = []; - for(let e = t.length - 1; e >= 0; e--){ - A.pop(); - if (t[e].type === "brace") { - break; - } - if (t[e].type !== "dots") { - n.unshift(t[e].value); - } - } - e = expandRange(n, u); - m.backtrack = true; - } - if (t.comma !== true && t.dots !== true) { - const u = m.output.slice(0, t.outputIndex); - const n = m.tokens.slice(t.tokensIndex); - t.value = t.output = "\\{"; - G = e = "\\}"; - m.output = u; - for (const t of n){ - m.output += t.output || t.value; - } - } - push({ - type: "brace", - value: G, - output: e - }); - decrement("braces"); - N.pop(); - continue; - } - if (G === "|") { - if (w.length > 0) { - w[w.length - 1].conditions++; - } - push({ - type: "text", - value: G - }); - continue; - } - if (G === ",") { - let t = G; - const e = N[N.length - 1]; - if (e && I[I.length - 1] === "braces") { - e.comma = true; - t = "|"; - } - push({ - type: "comma", - value: G, - output: t - }); - continue; - } - if (G === "/") { - if (B.type === "dot" && m.index === m.start + 1) { - m.start = m.index + 1; - m.consumed = ""; - m.output = ""; - A.pop(); - B = f; - continue; - } - push({ - type: "slash", - value: G, - output: b - }); - continue; - } - if (G === ".") { - if (m.braces > 0 && B.type === "dot") { - if (B.value === ".") B.output = h; - const t = N[N.length - 1]; - B.type = "dots"; - B.output += G; - B.value += G; - t.dots = true; - continue; - } - if (m.braces + m.parens === 0 && B.type !== "bos" && B.type !== "slash") { - push({ - type: "text", - value: G, - output: h - }); - continue; - } - push({ - type: "dot", - value: G, - output: h - }); - continue; - } - if (G === "?") { - const t = B && B.value === "("; - if (!t && u.noextglob !== true && D() === "(" && D(2) !== "?") { - extglobOpen("qmark", G); - continue; - } - if (B && B.type === "paren") { - const t = D(); - let e = G; - if (B.value === "(" && !/[!=<:]/.test(t) || t === "<" && !/<([!=]|\w+>)/.test(remaining())) { - e = `\\${G}`; - } - push({ - type: "text", - value: G, - output: e - }); - continue; - } - if (u.dot !== true && (B.type === "slash" || B.type === "bos")) { - push({ - type: "qmark", - value: G, - output: v - }); - continue; - } - push({ - type: "qmark", - value: G, - output: H - }); - continue; - } - if (G === "!") { - if (u.noextglob !== true && D() === "(") { - if (D(2) !== "?" || !/[!=<:]/.test(D(3))) { - extglobOpen("negate", G); - continue; - } - } - if (u.nonegate !== true && m.index === 0) { - negate(); - continue; - } - } - if (G === "+") { - if (u.noextglob !== true && D() === "(" && D(2) !== "?") { - extglobOpen("plus", G); - continue; - } - if (B && B.value === "(" || u.regex === false) { - push({ - type: "plus", - value: G, - output: g - }); - continue; - } - if (B && (B.type === "bracket" || B.type === "paren" || B.type === "brace") || m.parens > 0) { - push({ - type: "plus", - value: G - }); - continue; - } - push({ - type: "plus", - value: g - }); - continue; - } - if (G === "@") { - if (u.noextglob !== true && D() === "(" && D(2) !== "?") { - push({ - type: "at", - extglob: true, - value: G, - output: "" - }); - continue; - } - push({ - type: "text", - value: G - }); - continue; - } - if (G !== "*") { - if (G === "$" || G === "^") { - G = `\\${G}`; - } - const t = a.exec(remaining()); - if (t) { - G += t[0]; - m.index += t[0].length; - } - push({ - type: "text", - value: G - }); - continue; - } - if (B && (B.type === "globstar" || B.star === true)) { - B.type = "star"; - B.star = true; - B.value += G; - B.output = k; - m.backtrack = true; - m.globstar = true; - consume(G); - continue; - } - let e = remaining(); - if (u.noextglob !== true && /^\([^?]/.test(e)) { - extglobOpen("star", G); - continue; - } - if (B.type === "star") { - if (u.noglobstar === true) { - consume(G); - continue; - } - const n = B.prev; - const o = n.prev; - const s = n.type === "slash" || n.type === "bos"; - const r = o && (o.type === "star" || o.type === "globstar"); - if (u.bash === true && (!s || e[0] && e[0] !== "/")) { - push({ - type: "star", - value: G, - output: "" - }); - continue; - } - const a = m.braces > 0 && (n.type === "comma" || n.type === "brace"); - const i = w.length && (n.type === "pipe" || n.type === "paren"); - if (!s && n.type !== "paren" && !a && !i) { - push({ - type: "star", - value: G, - output: "" - }); - continue; - } - while(e.slice(0, 3) === "/**"){ - const u = t[m.index + 4]; - if (u && u !== "/") { - break; - } - e = e.slice(3); - consume("/**", 3); - } - if (n.type === "bos" && eos()) { - B.type = "globstar"; - B.value += G; - B.output = globstar(u); - m.output = B.output; - m.globstar = true; - consume(G); - continue; - } - if (n.type === "slash" && n.prev.type !== "bos" && !r && eos()) { - m.output = m.output.slice(0, -(n.output + B.output).length); - n.output = `(?:${n.output}`; - B.type = "globstar"; - B.output = globstar(u) + (u.strictSlashes ? ")" : "|$)"); - B.value += G; - m.globstar = true; - m.output += n.output + B.output; - consume(G); - continue; - } - if (n.type === "slash" && n.prev.type !== "bos" && e[0] === "/") { - const t = e[1] !== void 0 ? "|$" : ""; - m.output = m.output.slice(0, -(n.output + B.output).length); - n.output = `(?:${n.output}`; - B.type = "globstar"; - B.output = `${globstar(u)}${b}|${b}${t})`; - B.value += G; - m.output += n.output + B.output; - m.globstar = true; - consume(G + M()); - push({ - type: "slash", - value: "/", - output: "" - }); - continue; - } - if (n.type === "bos" && e[0] === "/") { - B.type = "globstar"; - B.value += G; - B.output = `(?:^|${b}|${globstar(u)}${b})`; - m.output = B.output; - m.globstar = true; - consume(G + M()); - push({ - type: "slash", - value: "/", - output: "" - }); - continue; - } - m.output = m.output.slice(0, -B.output.length); - B.type = "globstar"; - B.output = globstar(u); - B.value += G; - m.output += B.output; - m.globstar = true; - consume(G); - continue; - } - const n = { - type: "star", - value: G, - output: k - }; - if (u.bash === true) { - n.output = ".*?"; - if (B.type === "bos" || B.type === "slash") { - n.output = T + n.output; - } - push(n); - continue; - } - if (B && (B.type === "bracket" || B.type === "paren") && u.regex === true) { - n.output = G; - push(n); - continue; - } - if (m.index === m.start || B.type === "slash" || B.type === "dot") { - if (B.type === "dot") { - m.output += x; - B.output += x; - } else if (u.dot === true) { - m.output += S; - B.output += S; - } else { - m.output += T; - B.output += T; - } - if (D() !== "*") { - m.output += C; - B.output += C; - } - } - push(n); - } - while(m.brackets > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "]")); - m.output = o.escapeLast(m.output, "["); - decrement("brackets"); - } - while(m.parens > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", ")")); - m.output = o.escapeLast(m.output, "("); - decrement("parens"); - } - while(m.braces > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "}")); - m.output = o.escapeLast(m.output, "{"); - decrement("braces"); - } - if (u.strictSlashes !== true && (B.type === "star" || B.type === "bracket")) { - push({ - type: "maybe_slash", - value: "", - output: `${b}?` - }); - } - if (m.backtrack === true) { - m.output = ""; - for (const t of m.tokens){ - m.output += t.output != null ? t.output : t.value; - if (t.suffix) { - m.output += t.suffix; - } - } - } - return m; - }; - parse.fastpaths = (t, e)=>{ - const u = { - ...e - }; - const r = typeof u.maxLength === "number" ? Math.min(s, u.maxLength) : s; - const a = t.length; - if (a > r) { - throw new SyntaxError(`Input length: ${a}, exceeds maximum allowed length: ${r}`); - } - t = c[t] || t; - const { DOT_LITERAL: i, SLASH_LITERAL: p, ONE_CHAR: l, DOTS_SLASH: f, NO_DOT: A, NO_DOTS: _, NO_DOTS_SLASH: R, STAR: E, START_ANCHOR: h } = n.globChars(u.windows); - const g = u.dot ? _ : A; - const b = u.dot ? R : A; - const C = u.capture ? "" : "?:"; - const y = { - negated: false, - prefix: "" - }; - let $ = u.bash === true ? ".*?" : E; - if (u.capture) { - $ = `(${$})`; - } - const globstar = (t)=>{ - if (t.noglobstar === true) return $; - return `(${C}(?:(?!${h}${t.dot ? f : i}).)*?)`; - }; - const create = (t)=>{ - switch(t){ - case "*": - return `${g}${l}${$}`; - case ".*": - return `${i}${l}${$}`; - case "*.*": - return `${g}${$}${i}${l}${$}`; - case "*/*": - return `${g}${$}${p}${l}${b}${$}`; - case "**": - return g + globstar(u); - case "**/*": - return `(?:${g}${globstar(u)}${p})?${b}${l}${$}`; - case "**/*.*": - return `(?:${g}${globstar(u)}${p})?${b}${$}${i}${l}${$}`; - case "**/.*": - return `(?:${g}${globstar(u)}${p})?${i}${l}${$}`; - default: - { - const e = /^(.*?)\.(\w+)$/.exec(t); - if (!e) return; - const u = create(e[1]); - if (!u) return; - return u + i + e[2]; - } - } - }; - const x = o.removePrefix(t, y); - let S = create(x); - if (S && u.strictSlashes !== true) { - S += `${p}?`; - } - return S; - }; - t.exports = parse; - }, - 510: (t, e, u)=>{ - const n = u(716); - const o = u(697); - const s = u(96); - const r = u(154); - const isObject = (t)=>t && typeof t === "object" && !Array.isArray(t); - const picomatch = (t, e, u = false)=>{ - if (Array.isArray(t)) { - const n = t.map((t)=>picomatch(t, e, u)); - const arrayMatcher = (t)=>{ - for (const e of n){ - const u = e(t); - if (u) return u; - } - return false; - }; - return arrayMatcher; - } - const n = isObject(t) && t.tokens && t.input; - if (t === "" || typeof t !== "string" && !n) { - throw new TypeError("Expected pattern to be a non-empty string"); - } - const o = e || {}; - const s = o.windows; - const r = n ? picomatch.compileRe(t, e) : picomatch.makeRe(t, e, false, true); - const a = r.state; - delete r.state; - let isIgnored = ()=>false; - if (o.ignore) { - const t = { - ...e, - ignore: null, - onMatch: null, - onResult: null - }; - isIgnored = picomatch(o.ignore, t, u); - } - const matcher = (u, n = false)=>{ - const { isMatch: i, match: c, output: p } = picomatch.test(u, r, e, { - glob: t, - posix: s - }); - const l = { - glob: t, - state: a, - regex: r, - posix: s, - input: u, - output: p, - match: c, - isMatch: i - }; - if (typeof o.onResult === "function") { - o.onResult(l); - } - if (i === false) { - l.isMatch = false; - return n ? l : false; - } - if (isIgnored(u)) { - if (typeof o.onIgnore === "function") { - o.onIgnore(l); - } - l.isMatch = false; - return n ? l : false; - } - if (typeof o.onMatch === "function") { - o.onMatch(l); - } - return n ? l : true; - }; - if (u) { - matcher.state = a; - } - return matcher; - }; - picomatch.test = (t, e, u, { glob: n, posix: o } = {})=>{ - if (typeof t !== "string") { - throw new TypeError("Expected input to be a string"); - } - if (t === "") { - return { - isMatch: false, - output: "" - }; - } - const r = u || {}; - const a = r.format || (o ? s.toPosixSlashes : null); - let i = t === n; - let c = i && a ? a(t) : t; - if (i === false) { - c = a ? a(t) : t; - i = c === n; - } - if (i === false || r.capture === true) { - if (r.matchBase === true || r.basename === true) { - i = picomatch.matchBase(t, e, u, o); - } else { - i = e.exec(c); - } - } - return { - isMatch: Boolean(i), - match: i, - output: c - }; - }; - picomatch.matchBase = (t, e, u)=>{ - const n = e instanceof RegExp ? e : picomatch.makeRe(e, u); - return n.test(s.basename(t)); - }; - picomatch.isMatch = (t, e, u)=>picomatch(e, u)(t); - picomatch.parse = (t, e)=>{ - if (Array.isArray(t)) return t.map((t)=>picomatch.parse(t, e)); - return o(t, { - ...e, - fastpaths: false - }); - }; - picomatch.scan = (t, e)=>n(t, e); - picomatch.compileRe = (t, e, u = false, n = false)=>{ - if (u === true) { - return t.output; - } - const o = e || {}; - const s = o.contains ? "" : "^"; - const r = o.contains ? "" : "$"; - let a = `${s}(?:${t.output})${r}`; - if (t && t.negated === true) { - a = `^(?!${a}).*$`; - } - const i = picomatch.toRegex(a, e); - if (n === true) { - i.state = t; - } - return i; - }; - picomatch.makeRe = (t, e = {}, u = false, n = false)=>{ - if (!t || typeof t !== "string") { - throw new TypeError("Expected a non-empty string"); - } - let s = { - negated: false, - fastpaths: true - }; - if (e.fastpaths !== false && (t[0] === "." || t[0] === "*")) { - s.output = o.fastpaths(t, e); - } - if (!s.output) { - s = o(t, e); - } - return picomatch.compileRe(s, e, u, n); - }; - picomatch.toRegex = (t, e)=>{ - try { - const u = e || {}; - return new RegExp(t, u.flags || (u.nocase ? "i" : "")); - } catch (t) { - if (e && e.debug === true) throw t; - return /$^/; - } - }; - picomatch.constants = r; - t.exports = picomatch; - }, - 716: (t, e, u)=>{ - const n = u(96); - const { CHAR_ASTERISK: o, CHAR_AT: s, CHAR_BACKWARD_SLASH: r, CHAR_COMMA: a, CHAR_DOT: i, CHAR_EXCLAMATION_MARK: c, CHAR_FORWARD_SLASH: p, CHAR_LEFT_CURLY_BRACE: l, CHAR_LEFT_PARENTHESES: f, CHAR_LEFT_SQUARE_BRACKET: A, CHAR_PLUS: _, CHAR_QUESTION_MARK: R, CHAR_RIGHT_CURLY_BRACE: E, CHAR_RIGHT_PARENTHESES: h, CHAR_RIGHT_SQUARE_BRACKET: g } = u(154); - const isPathSeparator = (t)=>t === p || t === r; - const depth = (t)=>{ - if (t.isPrefix !== true) { - t.depth = t.isGlobstar ? Infinity : 1; - } - }; - const scan = (t, e)=>{ - const u = e || {}; - const b = t.length - 1; - const C = u.parts === true || u.scanToEnd === true; - const y = []; - const $ = []; - const x = []; - let S = t; - let H = -1; - let v = 0; - let d = 0; - let L = false; - let T = false; - let O = false; - let k = false; - let m = false; - let w = false; - let N = false; - let I = false; - let B = false; - let G = false; - let D = 0; - let M; - let P; - let K = { - value: "", - depth: 0, - isGlob: false - }; - const eos = ()=>H >= b; - const peek = ()=>S.charCodeAt(H + 1); - const advance = ()=>{ - M = P; - return S.charCodeAt(++H); - }; - while(H < b){ - P = advance(); - let t; - if (P === r) { - N = K.backslashes = true; - P = advance(); - if (P === l) { - w = true; - } - continue; - } - if (w === true || P === l) { - D++; - while(eos() !== true && (P = advance())){ - if (P === r) { - N = K.backslashes = true; - advance(); - continue; - } - if (P === l) { - D++; - continue; - } - if (w !== true && P === i && (P = advance()) === i) { - L = K.isBrace = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (w !== true && P === a) { - L = K.isBrace = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === E) { - D--; - if (D === 0) { - w = false; - L = K.isBrace = true; - G = true; - break; - } - } - } - if (C === true) { - continue; - } - break; - } - if (P === p) { - y.push(H); - $.push(K); - K = { - value: "", - depth: 0, - isGlob: false - }; - if (G === true) continue; - if (M === i && H === v + 1) { - v += 2; - continue; - } - d = H + 1; - continue; - } - if (u.noext !== true) { - const t = P === _ || P === s || P === o || P === R || P === c; - if (t === true && peek() === f) { - O = K.isGlob = true; - k = K.isExtglob = true; - G = true; - if (P === c && H === v) { - B = true; - } - if (C === true) { - while(eos() !== true && (P = advance())){ - if (P === r) { - N = K.backslashes = true; - P = advance(); - continue; - } - if (P === h) { - O = K.isGlob = true; - G = true; - break; - } - } - continue; - } - break; - } - } - if (P === o) { - if (M === o) m = K.isGlobstar = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === R) { - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === A) { - while(eos() !== true && (t = advance())){ - if (t === r) { - N = K.backslashes = true; - advance(); - continue; - } - if (t === g) { - T = K.isBracket = true; - O = K.isGlob = true; - G = true; - break; - } - } - if (C === true) { - continue; - } - break; - } - if (u.nonegate !== true && P === c && H === v) { - I = K.negated = true; - v++; - continue; - } - if (u.noparen !== true && P === f) { - O = K.isGlob = true; - if (C === true) { - while(eos() !== true && (P = advance())){ - if (P === f) { - N = K.backslashes = true; - P = advance(); - continue; - } - if (P === h) { - G = true; - break; - } - } - continue; - } - break; - } - if (O === true) { - G = true; - if (C === true) { - continue; - } - break; - } - } - if (u.noext === true) { - k = false; - O = false; - } - let U = S; - let X = ""; - let F = ""; - if (v > 0) { - X = S.slice(0, v); - S = S.slice(v); - d -= v; - } - if (U && O === true && d > 0) { - U = S.slice(0, d); - F = S.slice(d); - } else if (O === true) { - U = ""; - F = S; - } else { - U = S; - } - if (U && U !== "" && U !== "/" && U !== S) { - if (isPathSeparator(U.charCodeAt(U.length - 1))) { - U = U.slice(0, -1); - } - } - if (u.unescape === true) { - if (F) F = n.removeBackslashes(F); - if (U && N === true) { - U = n.removeBackslashes(U); - } - } - const Q = { - prefix: X, - input: t, - start: v, - base: U, - glob: F, - isBrace: L, - isBracket: T, - isGlob: O, - isExtglob: k, - isGlobstar: m, - negated: I, - negatedExtglob: B - }; - if (u.tokens === true) { - Q.maxDepth = 0; - if (!isPathSeparator(P)) { - $.push(K); - } - Q.tokens = $; - } - if (u.parts === true || u.tokens === true) { - let e; - for(let n = 0; n < y.length; n++){ - const o = e ? e + 1 : v; - const s = y[n]; - const r = t.slice(o, s); - if (u.tokens) { - if (n === 0 && v !== 0) { - $[n].isPrefix = true; - $[n].value = X; - } else { - $[n].value = r; - } - depth($[n]); - Q.maxDepth += $[n].depth; - } - if (n !== 0 || r !== "") { - x.push(r); - } - e = s; - } - if (e && e + 1 < t.length) { - const n = t.slice(e + 1); - x.push(n); - if (u.tokens) { - $[$.length - 1].value = n; - depth($[$.length - 1]); - Q.maxDepth += $[$.length - 1].depth; - } - } - Q.slashes = y; - Q.parts = x; - } - return Q; - }; - t.exports = scan; - }, - 96: (t, e, u)=>{ - const { REGEX_BACKSLASH: n, REGEX_REMOVE_BACKSLASH: o, REGEX_SPECIAL_CHARS: s, REGEX_SPECIAL_CHARS_GLOBAL: r } = u(154); - e.isObject = (t)=>t !== null && typeof t === "object" && !Array.isArray(t); - e.hasRegexChars = (t)=>s.test(t); - e.isRegexChar = (t)=>t.length === 1 && e.hasRegexChars(t); - e.escapeRegex = (t)=>t.replace(r, "\\$1"); - e.toPosixSlashes = (t)=>t.replace(n, "/"); - e.removeBackslashes = (t)=>t.replace(o, (t)=>t === "\\" ? "" : t); - e.escapeLast = (t, u, n)=>{ - const o = t.lastIndexOf(u, n); - if (o === -1) return t; - if (t[o - 1] === "\\") return e.escapeLast(t, u, o - 1); - return `${t.slice(0, o)}\\${t.slice(o)}`; - }; - e.removePrefix = (t, e = {})=>{ - let u = t; - if (u.startsWith("./")) { - u = u.slice(2); - e.prefix = "./"; - } - return u; - }; - e.wrapOutput = (t, e = {}, u = {})=>{ - const n = u.contains ? "" : "^"; - const o = u.contains ? "" : "$"; - let s = `${n}(?:${t})${o}`; - if (e.negated === true) { - s = `(?:^(?!${s}).*$)`; - } - return s; - }; - e.basename = (t, { windows: e } = {})=>{ - const u = t.split(e ? /[\\/]/ : "/"); - const n = u[u.length - 1]; - if (n === "") { - return u[u.length - 2]; - } - return n; - }; - } - }; - var e = {}; - function __nccwpck_require__(u) { - var n = e[u]; - if (n !== undefined) { - return n.exports; - } - var o = e[u] = { - exports: {} - }; - var s = true; - try { - t[u](o, o.exports, __nccwpck_require__); - s = false; - } finally{ - if (s) delete e[u]; - } - return o.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/picomatch") + "/"; - var u = __nccwpck_require__(170); - module.exports = u; -})(); -}), -"[project]/node_modules/next/dist/shared/lib/match-local-pattern.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - hasLocalMatch: null, - matchLocalPattern: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - hasLocalMatch: function() { - return hasLocalMatch; - }, - matchLocalPattern: function() { - return matchLocalPattern; - } -}); -const _picomatch = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/picomatch/index.js [app-ssr] (ecmascript)"); -function matchLocalPattern(pattern, url) { - if (pattern.search !== undefined) { - if (pattern.search !== url.search) { - return false; - } - } - if (!(0, _picomatch.makeRe)(pattern.pathname ?? '**', { - dot: true - }).test(url.pathname)) { - return false; - } - return true; -} -function hasLocalMatch(localPatterns, urlPathAndQuery) { - if (!localPatterns) { - // if the user didn't define "localPatterns", we allow all local images - return true; - } - const url = new URL(urlPathAndQuery, 'http://n'); - return localPatterns.some((p)=>matchLocalPattern(p, url)); -} //# sourceMappingURL=match-local-pattern.js.map -}), -"[project]/node_modules/next/dist/shared/lib/match-remote-pattern.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - hasRemoteMatch: null, - matchRemotePattern: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - hasRemoteMatch: function() { - return hasRemoteMatch; - }, - matchRemotePattern: function() { - return matchRemotePattern; - } -}); -const _picomatch = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/picomatch/index.js [app-ssr] (ecmascript)"); -function matchRemotePattern(pattern, url) { - if (pattern.protocol !== undefined) { - if (pattern.protocol.replace(/:$/, '') !== url.protocol.replace(/:$/, '')) { - return false; - } - } - if (pattern.port !== undefined) { - if (pattern.port !== url.port) { - return false; - } - } - if (pattern.hostname === undefined) { - throw Object.defineProperty(new Error(`Pattern should define hostname but found\n${JSON.stringify(pattern)}`), "__NEXT_ERROR_CODE", { - value: "E410", - enumerable: false, - configurable: true - }); - } else { - if (!(0, _picomatch.makeRe)(pattern.hostname).test(url.hostname)) { - return false; - } - } - if (pattern.search !== undefined) { - if (pattern.search !== url.search) { - return false; - } - } - // Should be the same as writeImagesManifest() - if (!(0, _picomatch.makeRe)(pattern.pathname ?? '**', { - dot: true - }).test(url.pathname)) { - return false; - } - return true; -} -function hasRemoteMatch(domains, remotePatterns, url) { - return domains.some((domain)=>url.hostname === domain) || remotePatterns.some((p)=>matchRemotePattern(p, url)); -} //# sourceMappingURL=match-remote-pattern.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-loader.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return _default; - } -}); -const _findclosestquality = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/find-closest-quality.js [app-ssr] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-ssr] (ecmascript)"); -function defaultLoader({ config, src, width, quality }) { - if (src.startsWith('/') && src.includes('?') && config.localPatterns?.length === 1 && config.localPatterns[0].pathname === '**' && config.localPatterns[0].search === '') { - throw Object.defineProperty(new Error(`Image with src "${src}" is using a query string which is not configured in images.localPatterns.` + `\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`), "__NEXT_ERROR_CODE", { - value: "E871", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - const missingValues = []; - // these should always be provided but make sure they are - if (!src) missingValues.push('src'); - if (!width) missingValues.push('width'); - if (missingValues.length > 0) { - throw Object.defineProperty(new Error(`Next Image Optimization requires ${missingValues.join(', ')} to be provided. Make sure you pass them as props to the \`next/image\` component. Received: ${JSON.stringify({ - src, - width, - quality - })}`), "__NEXT_ERROR_CODE", { - value: "E188", - enumerable: false, - configurable: true - }); - } - if (src.startsWith('//')) { - throw Object.defineProperty(new Error(`Failed to parse src "${src}" on \`next/image\`, protocol-relative URL (//) must be changed to an absolute URL (http:// or https://)`), "__NEXT_ERROR_CODE", { - value: "E360", - enumerable: false, - configurable: true - }); - } - if (src.startsWith('/') && config.localPatterns) { - if ("TURBOPACK compile-time truthy", 1) { - // We use dynamic require because this should only error in development - const { hasLocalMatch } = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/match-local-pattern.js [app-ssr] (ecmascript)"); - if (!hasLocalMatch(config.localPatterns, src)) { - throw Object.defineProperty(new Error(`Invalid src prop (${src}) on \`next/image\` does not match \`images.localPatterns\` configured in your \`next.config.js\`\n` + `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`), "__NEXT_ERROR_CODE", { - value: "E426", - enumerable: false, - configurable: true - }); - } - } - } - if (!src.startsWith('/') && (config.domains || config.remotePatterns)) { - let parsedSrc; - try { - parsedSrc = new URL(src); - } catch (err) { - console.error(err); - throw Object.defineProperty(new Error(`Failed to parse src "${src}" on \`next/image\`, if using relative image it must start with a leading slash "/" or be an absolute URL (http:// or https://)`), "__NEXT_ERROR_CODE", { - value: "E63", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - // We use dynamic require because this should only error in development - const { hasRemoteMatch } = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/match-remote-pattern.js [app-ssr] (ecmascript)"); - if (!hasRemoteMatch(config.domains, config.remotePatterns, parsedSrc)) { - throw Object.defineProperty(new Error(`Invalid src prop (${src}) on \`next/image\`, hostname "${parsedSrc.hostname}" is not configured under images in your \`next.config.js\`\n` + `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host`), "__NEXT_ERROR_CODE", { - value: "E231", - enumerable: false, - configurable: true - }); - } - } - } - } - const q = (0, _findclosestquality.findClosestQuality)(quality, config); - let deploymentId = (0, _deploymentid.getDeploymentId)(); - return `${config.path}?url=${encodeURIComponent(src)}&w=${width}&q=${q}${src.startsWith('/') && deploymentId ? `&dpl=${deploymentId}` : ''}`; -} -// We use this to determine if the import is the default loader -// or a custom loader defined by the user in next.config.js -defaultLoader.__next_img_default = true; -const _default = defaultLoader; //# sourceMappingURL=image-loader.js.map -}), -"[project]/node_modules/next/dist/client/use-merged-ref.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "useMergedRef", { - enumerable: true, - get: function() { - return useMergedRef; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -function useMergedRef(refA, refB) { - const cleanupA = (0, _react.useRef)(null); - const cleanupB = (0, _react.useRef)(null); - // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null. - // (this happens often if the user doesn't pass a ref to Link/Form/Image) - // But this can cause us to leak a cleanup-ref into user code (previously via `<Link legacyBehavior>`), - // and the user might pass that ref into ref-merging library that doesn't support cleanup refs - // (because it hasn't been updated for React 19) - // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`. - // So in practice, it's safer to be defensive and always wrap the ref, even on React 19. - return (0, _react.useCallback)((current)=>{ - if (current === null) { - const cleanupFnA = cleanupA.current; - if (cleanupFnA) { - cleanupA.current = null; - cleanupFnA(); - } - const cleanupFnB = cleanupB.current; - if (cleanupFnB) { - cleanupB.current = null; - cleanupFnB(); - } - } else { - if (refA) { - cleanupA.current = applyRef(refA, current); - } - if (refB) { - cleanupB.current = applyRef(refB, current); - } - } - }, [ - refA, - refB - ]); -} -function applyRef(refA, current) { - if (typeof refA === 'function') { - const cleanup = refA(current); - if (typeof cleanup === 'function') { - return cleanup; - } else { - return ()=>refA(null); - } - } else { - refA.current = current; - return ()=>{ - refA.current = null; - }; - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=use-merged-ref.js.map -}), -"[project]/node_modules/next/dist/client/image-component.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "Image", { - enumerable: true, - get: function() { - return Image; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-ssr] (ecmascript)"); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-ssr] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)")); -const _reactdom = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js [app-ssr] (ecmascript)")); -const _head = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/head.js [app-ssr] (ecmascript)")); -const _getimgprops = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/get-img-props.js [app-ssr] (ecmascript)"); -const _imageconfig = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-config.js [app-ssr] (ecmascript)"); -const _imageconfigcontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js [app-ssr] (ecmascript)"); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)"); -const _routercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js [app-ssr] (ecmascript)"); -const _imageloader = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-loader.js [app-ssr] (ecmascript)")); -const _usemergedref = __turbopack_context__.r("[project]/node_modules/next/dist/client/use-merged-ref.js [app-ssr] (ecmascript)"); -// This is replaced by webpack define plugin -const configEnv = ("TURBOPACK compile-time value", { - "deviceSizes": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 640), - ("TURBOPACK compile-time value", 750), - ("TURBOPACK compile-time value", 828), - ("TURBOPACK compile-time value", 1080), - ("TURBOPACK compile-time value", 1200), - ("TURBOPACK compile-time value", 1920), - ("TURBOPACK compile-time value", 2048), - ("TURBOPACK compile-time value", 3840) - ]), - "imageSizes": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 32), - ("TURBOPACK compile-time value", 48), - ("TURBOPACK compile-time value", 64), - ("TURBOPACK compile-time value", 96), - ("TURBOPACK compile-time value", 128), - ("TURBOPACK compile-time value", 256), - ("TURBOPACK compile-time value", 384) - ]), - "qualities": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 75) - ]), - "path": ("TURBOPACK compile-time value", "/_next/image"), - "loader": ("TURBOPACK compile-time value", "default"), - "dangerouslyAllowSVG": ("TURBOPACK compile-time value", false), - "unoptimized": ("TURBOPACK compile-time value", false), - "domains": ("TURBOPACK compile-time value", []), - "remotePatterns": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", { - "protocol": ("TURBOPACK compile-time value", "http"), - "hostname": ("TURBOPACK compile-time value", "localhost"), - "port": ("TURBOPACK compile-time value", "5000"), - "pathname": ("TURBOPACK compile-time value", "/uploads/**") - }) - ]), - "localPatterns": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", { - "pathname": ("TURBOPACK compile-time value", "**"), - "search": ("TURBOPACK compile-time value", "") - }) - ]) -}); -if ("TURBOPACK compile-time truthy", 1) { - ; - globalThis.__NEXT_IMAGE_IMPORTED = true; -} -// See https://stackoverflow.com/q/39777833/266535 for why we use this ref -// handler instead of the img's onLoad attribute. -function handleLoading(img, placeholder, onLoadRef, onLoadingCompleteRef, setBlurComplete, unoptimized, sizesInput) { - const src = img?.src; - if (!img || img['data-loaded-src'] === src) { - return; - } - img['data-loaded-src'] = src; - const p = 'decode' in img ? img.decode() : Promise.resolve(); - p.catch(()=>{}).then(()=>{ - if (!img.parentElement || !img.isConnected) { - // Exit early in case of race condition: - // - onload() is called - // - decode() is called but incomplete - // - unmount is called - // - decode() completes - return; - } - if (placeholder !== 'empty') { - setBlurComplete(true); - } - if (onLoadRef?.current) { - // Since we don't have the SyntheticEvent here, - // we must create one with the same shape. - // See https://reactjs.org/docs/events.html - const event = new Event('load'); - Object.defineProperty(event, 'target', { - writable: false, - value: img - }); - let prevented = false; - let stopped = false; - onLoadRef.current({ - ...event, - nativeEvent: event, - currentTarget: img, - target: img, - isDefaultPrevented: ()=>prevented, - isPropagationStopped: ()=>stopped, - persist: ()=>{}, - preventDefault: ()=>{ - prevented = true; - event.preventDefault(); - }, - stopPropagation: ()=>{ - stopped = true; - event.stopPropagation(); - } - }); - } - if (onLoadingCompleteRef?.current) { - onLoadingCompleteRef.current(img); - } - if ("TURBOPACK compile-time truthy", 1) { - const origSrc = new URL(src, 'http://n').searchParams.get('url') || src; - if (img.getAttribute('data-nimg') === 'fill') { - if (!unoptimized && (!sizesInput || sizesInput === '100vw')) { - let widthViewportRatio = img.getBoundingClientRect().width / window.innerWidth; - if (widthViewportRatio < 0.6) { - if (sizesInput === '100vw') { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has "fill" prop and "sizes" prop of "100vw", but image is not rendered at full viewport width. Please adjust "sizes" to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`); - } else { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has "fill" but is missing "sizes" prop. Please add it to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`); - } - } - } - if (img.parentElement) { - const { position } = window.getComputedStyle(img.parentElement); - const valid = [ - 'absolute', - 'fixed', - 'relative' - ]; - if (!valid.includes(position)) { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has "fill" and parent element with invalid "position". Provided "${position}" should be one of ${valid.map(String).join(',')}.`); - } - } - if (img.height === 0) { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has "fill" and a height value of 0. This is likely because the parent element of the image has not been styled to have a set height.`); - } - } - const heightModified = img.height.toString() !== img.getAttribute('height'); - const widthModified = img.width.toString() !== img.getAttribute('width'); - if (heightModified && !widthModified || !heightModified && widthModified) { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: "auto"' or 'height: "auto"' to maintain the aspect ratio.`); - } - } - }); -} -function getDynamicProps(fetchPriority) { - if (Boolean(_react.use)) { - // In React 19.0.0 or newer, we must use camelCase - // prop to avoid "Warning: Invalid DOM property". - // See https://github.com/facebook/react/pull/25927 - return { - fetchPriority - }; - } - // In React 18.2.0 or older, we must use lowercase prop - // to avoid "Warning: Invalid DOM property". - return { - fetchpriority: fetchPriority - }; -} -const ImageElement = /*#__PURE__*/ (0, _react.forwardRef)(({ src, srcSet, sizes, height, width, decoding, className, style, fetchPriority, placeholder, loading, unoptimized, fill, onLoadRef, onLoadingCompleteRef, setBlurComplete, setShowAltText, sizesInput, onLoad, onError, ...rest }, forwardedRef)=>{ - const ownRef = (0, _react.useCallback)((img)=>{ - if (!img) { - return; - } - if (onError) { - // If the image has an error before react hydrates, then the error is lost. - // The workaround is to wait until the image is mounted which is after hydration, - // then we set the src again to trigger the error handler (if there was an error). - // eslint-disable-next-line no-self-assign - img.src = img.src; - } - if ("TURBOPACK compile-time truthy", 1) { - if (!src) { - console.error(`Image is missing required "src" property:`, img); - } - if (img.getAttribute('alt') === null) { - console.error(`Image is missing required "alt" property. Please add Alternative Text to describe the image for screen readers and search engines.`); - } - } - if (img.complete) { - handleLoading(img, placeholder, onLoadRef, onLoadingCompleteRef, setBlurComplete, unoptimized, sizesInput); - } - }, [ - src, - placeholder, - onLoadRef, - onLoadingCompleteRef, - setBlurComplete, - onError, - unoptimized, - sizesInput - ]); - const ref = (0, _usemergedref.useMergedRef)(forwardedRef, ownRef); - return /*#__PURE__*/ (0, _jsxruntime.jsx)("img", { - ...rest, - ...getDynamicProps(fetchPriority), - // It's intended to keep `loading` before `src` because React updates - // props in order which causes Safari/Firefox to not lazy load properly. - // See https://github.com/facebook/react/issues/25883 - loading: loading, - width: width, - height: height, - decoding: decoding, - "data-nimg": fill ? 'fill' : '1', - className: className, - style: style, - // It's intended to keep `src` the last attribute because React updates - // attributes in order. If we keep `src` the first one, Safari will - // immediately start to fetch `src`, before `sizes` and `srcSet` are even - // updated by React. That causes multiple unnecessary requests if `srcSet` - // and `sizes` are defined. - // This bug cannot be reproduced in Chrome or Firefox. - sizes: sizes, - srcSet: srcSet, - src: src, - ref: ref, - onLoad: (event)=>{ - const img = event.currentTarget; - handleLoading(img, placeholder, onLoadRef, onLoadingCompleteRef, setBlurComplete, unoptimized, sizesInput); - }, - onError: (event)=>{ - // if the real image fails to load, this will ensure "alt" is visible - setShowAltText(true); - if (placeholder !== 'empty') { - // If the real image fails to load, this will still remove the placeholder. - setBlurComplete(true); - } - if (onError) { - onError(event); - } - } - }); -}); -function ImagePreload({ isAppRouter, imgAttributes }) { - const opts = { - as: 'image', - imageSrcSet: imgAttributes.srcSet, - imageSizes: imgAttributes.sizes, - crossOrigin: imgAttributes.crossOrigin, - referrerPolicy: imgAttributes.referrerPolicy, - ...getDynamicProps(imgAttributes.fetchPriority) - }; - if (isAppRouter && _reactdom.default.preload) { - _reactdom.default.preload(imgAttributes.src, opts); - return null; - } - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_head.default, { - children: /*#__PURE__*/ (0, _jsxruntime.jsx)("link", { - rel: "preload", - // Note how we omit the `href` attribute, as it would only be relevant - // for browsers that do not support `imagesrcset`, and in those cases - // it would cause the incorrect image to be preloaded. - // - // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-imagesrcset - href: imgAttributes.srcSet ? undefined : imgAttributes.src, - ...opts - }, '__nimg-' + imgAttributes.src + imgAttributes.srcSet + imgAttributes.sizes) - }); -} -const Image = /*#__PURE__*/ (0, _react.forwardRef)((props, forwardedRef)=>{ - const pagesRouter = (0, _react.useContext)(_routercontextsharedruntime.RouterContext); - // We're in the app directory if there is no pages router. - const isAppRouter = !pagesRouter; - const configContext = (0, _react.useContext)(_imageconfigcontextsharedruntime.ImageConfigContext); - const config = (0, _react.useMemo)(()=>{ - const c = configEnv || configContext || _imageconfig.imageConfigDefault; - const allSizes = [ - ...c.deviceSizes, - ...c.imageSizes - ].sort((a, b)=>a - b); - const deviceSizes = c.deviceSizes.sort((a, b)=>a - b); - const qualities = c.qualities?.sort((a, b)=>a - b); - return { - ...c, - allSizes, - deviceSizes, - qualities, - // During the SSR, configEnv (__NEXT_IMAGE_OPTS) does not include - // security sensitive configs like `localPatterns`, which is needed - // during the server render to ensure it's validated. Therefore use - // configContext, which holds the config from the server for validation. - localPatterns: ("TURBOPACK compile-time truthy", 1) ? configContext?.localPatterns : "TURBOPACK unreachable" - }; - }, [ - configContext - ]); - const { onLoad, onLoadingComplete } = props; - const onLoadRef = (0, _react.useRef)(onLoad); - (0, _react.useEffect)(()=>{ - onLoadRef.current = onLoad; - }, [ - onLoad - ]); - const onLoadingCompleteRef = (0, _react.useRef)(onLoadingComplete); - (0, _react.useEffect)(()=>{ - onLoadingCompleteRef.current = onLoadingComplete; - }, [ - onLoadingComplete - ]); - const [blurComplete, setBlurComplete] = (0, _react.useState)(false); - const [showAltText, setShowAltText] = (0, _react.useState)(false); - const { props: imgAttributes, meta: imgMeta } = (0, _getimgprops.getImgProps)(props, { - defaultLoader: _imageloader.default, - imgConf: config, - blurComplete, - showAltText - }); - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(ImageElement, { - ...imgAttributes, - unoptimized: imgMeta.unoptimized, - placeholder: imgMeta.placeholder, - fill: imgMeta.fill, - onLoadRef: onLoadRef, - onLoadingCompleteRef: onLoadingCompleteRef, - setBlurComplete: setBlurComplete, - setShowAltText: setShowAltText, - sizesInput: props.sizes, - ref: forwardedRef - }), - imgMeta.preload ? /*#__PURE__*/ (0, _jsxruntime.jsx)(ImagePreload, { - isAppRouter: isAppRouter, - imgAttributes: imgAttributes - }) : null - ] - }); -}); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=image-component.js.map -}), -]; - -//# sourceMappingURL=node_modules_0f1a950b._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_0f1a950b._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_0f1a950b._.js.map deleted file mode 100644 index b7cdaf9..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_0f1a950b._.js.map +++ /dev/null @@ -1,28 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/%40swc/helpers/cjs/_interop_require_default.cjs"],"sourcesContent":["\"use strict\";\n\nfunction _interop_require_default(obj) {\n return obj && obj.__esModule ? obj : { default: obj };\n}\nexports._ = _interop_require_default;\n"],"names":[],"mappings":"AAEA,SAAS,yBAAyB,GAAG;IACjC,OAAO,OAAO,IAAI,UAAU,GAAG,MAAM;QAAE,SAAS;IAAI;AACxD;AACA,QAAQ,CAAC,GAAG","ignoreList":[0]}}, - {"offset": {"line": 14, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n"],"names":[],"mappings":"AAEA,SAAS,yBAAyB,WAAW;IACzC,IAAI,OAAO,YAAY,YAAY,OAAO;IAE1C,IAAI,oBAAoB,IAAI;IAC5B,IAAI,mBAAmB,IAAI;IAE3B,OAAO,CAAC,2BAA2B,SAAS,WAAW;QACnD,OAAO,cAAc,mBAAmB;IAC5C,CAAC,EAAE;AACP;AACA,SAAS,0BAA0B,GAAG,EAAE,WAAW;IAC/C,IAAI,CAAC,eAAe,OAAO,IAAI,UAAU,EAAE,OAAO;IAClD,IAAI,QAAQ,QAAQ,OAAO,QAAQ,YAAY,OAAO,QAAQ,YAAY,OAAO;QAAE,SAAS;IAAI;IAEhG,IAAI,QAAQ,yBAAyB;IAErC,IAAI,SAAS,MAAM,GAAG,CAAC,MAAM,OAAO,MAAM,GAAG,CAAC;IAE9C,IAAI,SAAS;QAAE,WAAW;IAAK;IAC/B,IAAI,wBAAwB,OAAO,cAAc,IAAI,OAAO,wBAAwB;IAEpF,IAAK,IAAI,OAAO,IAAK;QACjB,IAAI,QAAQ,aAAa,OAAO,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,MAAM;YACrE,IAAI,OAAO,wBAAwB,OAAO,wBAAwB,CAAC,KAAK,OAAO;YAC/E,IAAI,QAAQ,CAAC,KAAK,GAAG,IAAI,KAAK,GAAG,GAAG,OAAO,cAAc,CAAC,QAAQ,KAAK;iBAClE,MAAM,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI;QAC/B;IACJ;IAEA,OAAO,OAAO,GAAG;IAEjB,IAAI,OAAO,MAAM,GAAG,CAAC,KAAK;IAE1B,OAAO;AACX;AACA,QAAQ,CAAC,GAAG","ignoreList":[0]}}, - {"offset": {"line": 49, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK"],"mappings":"AAAA,IAAIA,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACL,IAAIF,QAAQC,GAAG,CAACK,yBAAyB,EAAE;;SAcpC;QACL,IAAIN,QAAQC,GAAG,CAACM,QAAQ,KAAK,WAAe;YAC1C,IAAIP,QAAQC,GAAG,CAACO,SAAS,eAAE;gBACzBL,OAAOC,OAAO,GAAGC,QAAQ;YAC3B,OAAO;;QAGT,OAAO;;IAOT;AACF","ignoreList":[0]}}, - {"offset": {"line": 68, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactJsxRuntime\n"],"names":["module","exports","require","vendored","ReactJsxRuntime"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,eAAe","ignoreList":[0]}}, - {"offset": {"line": 73, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.React\n"],"names":["module","exports","require","vendored","React"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,KAAK","ignoreList":[0]}}, - {"offset": {"line": 78, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-dom.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactDOM\n"],"names":["module","exports","require","vendored","ReactDOM"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,QAAQ","ignoreList":[0]}}, - {"offset": {"line": 83, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/side-effect.tsx"],"sourcesContent":["import type React from 'react'\nimport { Children, useEffect, useLayoutEffect, type JSX } from 'react'\n\ntype State = JSX.Element[] | undefined\n\nexport type SideEffectProps = {\n reduceComponentsToState: (components: Array<React.ReactElement<any>>) => State\n handleStateChange?: (state: State) => void\n headManager: any\n children: React.ReactNode\n}\n\nconst isServer = typeof window === 'undefined'\nconst useClientOnlyLayoutEffect = isServer ? () => {} : useLayoutEffect\nconst useClientOnlyEffect = isServer ? () => {} : useEffect\n\nexport default function SideEffect(props: SideEffectProps) {\n const { headManager, reduceComponentsToState } = props\n\n function emitChange() {\n if (headManager && headManager.mountedInstances) {\n const headElements = Children.toArray(\n Array.from(headManager.mountedInstances as Set<React.ReactNode>).filter(\n Boolean\n )\n ) as React.ReactElement[]\n headManager.updateHead(reduceComponentsToState(headElements))\n }\n }\n\n if (isServer) {\n headManager?.mountedInstances?.add(props.children)\n emitChange()\n }\n\n useClientOnlyLayoutEffect(() => {\n headManager?.mountedInstances?.add(props.children)\n return () => {\n headManager?.mountedInstances?.delete(props.children)\n }\n })\n\n // We need to call `updateHead` method whenever the `SideEffect` is trigger in all\n // life-cycles: mount, update, unmount. However, if there are multiple `SideEffect`s\n // being rendered, we only trigger the method from the last one.\n // This is ensured by keeping the last unflushed `updateHead` in the `_pendingUpdate`\n // singleton in the layout effect pass, and actually trigger it in the effect pass.\n useClientOnlyLayoutEffect(() => {\n if (headManager) {\n headManager._pendingUpdate = emitChange\n }\n return () => {\n if (headManager) {\n headManager._pendingUpdate = emitChange\n }\n }\n })\n\n useClientOnlyEffect(() => {\n if (headManager && headManager._pendingUpdate) {\n headManager._pendingUpdate()\n headManager._pendingUpdate = null\n }\n return () => {\n if (headManager && headManager._pendingUpdate) {\n headManager._pendingUpdate()\n headManager._pendingUpdate = null\n }\n }\n })\n\n return null\n}\n"],"names":["SideEffect","isServer","window","useClientOnlyLayoutEffect","useLayoutEffect","useClientOnlyEffect","useEffect","props","headManager","reduceComponentsToState","emitChange","mountedInstances","headElements","Children","toArray","Array","from","filter","Boolean","updateHead","add","children","delete","_pendingUpdate"],"mappings":";;;+BAgBA,WAAA;;;eAAwBA;;;uBAfuC;AAW/D,MAAMC,WAAW,OAAOC,2CAAW;AACnC,MAAMC,4BAA4BF,uCAAW,KAAO,IAAIG,sBAAe;AACvE,MAAMC,sBAAsBJ,uCAAW,KAAO,IAAIK,gBAAS;AAE5C,SAASN,WAAWO,KAAsB;IACvD,MAAM,EAAEC,WAAW,EAAEC,uBAAuB,EAAE,GAAGF;IAEjD,SAASG;QACP,IAAIF,eAAeA,YAAYG,gBAAgB,EAAE;YAC/C,MAAMC,eAAeC,OAAAA,QAAQ,CAACC,OAAO,CACnCC,MAAMC,IAAI,CAACR,YAAYG,gBAAgB,EAA0BM,MAAM,CACrEC;YAGJV,YAAYW,UAAU,CAACV,wBAAwBG;QACjD;IACF;IAEA,IAAIX,oCAAU;QACZO,aAAaG,kBAAkBS,IAAIb,MAAMc,QAAQ;QACjDX;IACF;IAEAP,0BAA0B;QACxBK,aAAaG,kBAAkBS,IAAIb,MAAMc,QAAQ;QACjD,OAAO;YACLb,aAAaG,kBAAkBW,OAAOf,MAAMc,QAAQ;QACtD;IACF;IAEA,kFAAkF;IAClF,oFAAoF;IACpF,gEAAgE;IAChE,qFAAqF;IACrF,mFAAmF;IACnFlB,0BAA0B;QACxB,IAAIK,aAAa;YACfA,YAAYe,cAAc,GAAGb;QAC/B;QACA,OAAO;YACL,IAAIF,aAAa;gBACfA,YAAYe,cAAc,GAAGb;YAC/B;QACF;IACF;IAEAL,oBAAoB;QAClB,IAAIG,eAAeA,YAAYe,cAAc,EAAE;YAC7Cf,YAAYe,cAAc;YAC1Bf,YAAYe,cAAc,GAAG;QAC/B;QACA,OAAO;YACL,IAAIf,eAAeA,YAAYe,cAAc,EAAE;gBAC7Cf,YAAYe,cAAc;gBAC1Bf,YAAYe,cAAc,GAAG;YAC/B;QACF;IACF;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 147, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/head-manager-context.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].HeadManagerContext\n"],"names":["module","exports","require","vendored","HeadManagerContext"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,kBAAkB","ignoreList":[0]}}, - {"offset": {"line": 152, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/warn-once.ts"],"sourcesContent":["let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set<string>()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n"],"names":["warnOnce","_","process","env","NODE_ENV","warnings","Set","msg","has","console","warn","add"],"mappings":";;;+BAWSA,YAAAA;;;eAAAA;;;AAXT,IAAIA,WAAW,CAACC,KAAe;AAC/B,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;IACzC,MAAMC,WAAW,IAAIC;IACrBN,WAAW,CAACO;QACV,IAAI,CAACF,SAASG,GAAG,CAACD,MAAM;YACtBE,QAAQC,IAAI,CAACH;QACf;QACAF,SAASM,GAAG,CAACJ;IACf;AACF","ignoreList":[0]}}, - {"offset": {"line": 175, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/head.tsx"],"sourcesContent":["'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport Effect from './side-effect'\nimport { HeadManagerContext } from './head-manager-context.shared-runtime'\nimport { warnOnce } from './utils/warn-once'\n\nexport function defaultHead(): JSX.Element[] {\n const head = [\n <meta charSet=\"utf-8\" key=\"charset\" />,\n <meta name=\"viewport\" content=\"width=device-width\" key=\"viewport\" />,\n ]\n return head\n}\n\nfunction onlyReactElement(\n list: Array<React.ReactElement<any>>,\n child: React.ReactElement | number | string\n): Array<React.ReactElement<any>> {\n // React children can be \"string\" or \"number\" in this case we ignore them for backwards compat\n if (typeof child === 'string' || typeof child === 'number') {\n return list\n }\n // Adds support for React.Fragment\n if (child.type === React.Fragment) {\n return list.concat(\n // @ts-expect-error @types/react does not remove fragments but this could also return ReactPortal[]\n React.Children.toArray(child.props.children).reduce(\n // @ts-expect-error @types/react does not remove fragments but this could also return ReactPortal[]\n (\n fragmentList: Array<React.ReactElement<any>>,\n fragmentChild: React.ReactElement | number | string\n ): Array<React.ReactElement<any>> => {\n if (\n typeof fragmentChild === 'string' ||\n typeof fragmentChild === 'number'\n ) {\n return fragmentList\n }\n return fragmentList.concat(fragmentChild)\n },\n []\n )\n )\n }\n return list.concat(child)\n}\n\nconst METATYPES = ['name', 'httpEquiv', 'charSet', 'itemProp']\n\n/*\n returns a function for filtering head child elements\n which shouldn't be duplicated, like <title/>\n Also adds support for deduplicated `key` properties\n*/\nfunction unique() {\n const keys = new Set()\n const tags = new Set()\n const metaTypes = new Set()\n const metaCategories: { [metatype: string]: Set<string> } = {}\n\n return (h: React.ReactElement<any>) => {\n let isUnique = true\n let hasKey = false\n\n if (h.key && typeof h.key !== 'number' && h.key.indexOf('$') > 0) {\n hasKey = true\n const key = h.key.slice(h.key.indexOf('$') + 1)\n if (keys.has(key)) {\n isUnique = false\n } else {\n keys.add(key)\n }\n }\n\n // eslint-disable-next-line default-case\n switch (h.type) {\n case 'title':\n case 'base':\n if (tags.has(h.type)) {\n isUnique = false\n } else {\n tags.add(h.type)\n }\n break\n case 'meta':\n for (let i = 0, len = METATYPES.length; i < len; i++) {\n const metatype = METATYPES[i]\n if (!h.props.hasOwnProperty(metatype)) continue\n\n if (metatype === 'charSet') {\n if (metaTypes.has(metatype)) {\n isUnique = false\n } else {\n metaTypes.add(metatype)\n }\n } else {\n const category = h.props[metatype]\n const categories = metaCategories[metatype] || new Set()\n if ((metatype !== 'name' || !hasKey) && categories.has(category)) {\n isUnique = false\n } else {\n categories.add(category)\n metaCategories[metatype] = categories\n }\n }\n }\n break\n }\n\n return isUnique\n }\n}\n\n/**\n *\n * @param headChildrenElements List of children of <Head>\n */\nfunction reduceComponents(\n headChildrenElements: Array<React.ReactElement<any>>\n) {\n return headChildrenElements\n .reduce(onlyReactElement, [])\n .reverse()\n .concat(defaultHead().reverse())\n .filter(unique())\n .reverse()\n .map((c: React.ReactElement<any>, i: number) => {\n const key = c.key || i\n if (process.env.NODE_ENV === 'development') {\n // omit JSON-LD structured data snippets from the warning\n if (c.type === 'script' && c.props['type'] !== 'application/ld+json') {\n const srcMessage = c.props['src']\n ? `<script> tag with src=\"${c.props['src']}\"`\n : `inline <script>`\n warnOnce(\n `Do not add <script> tags using next/head (see ${srcMessage}). Use next/script instead. \\nSee more info here: https://nextjs.org/docs/messages/no-script-tags-in-head-component`\n )\n } else if (c.type === 'link' && c.props['rel'] === 'stylesheet') {\n warnOnce(\n `Do not add stylesheets using next/head (see <link rel=\"stylesheet\"> tag with href=\"${c.props['href']}\"). Use Document instead. \\nSee more info here: https://nextjs.org/docs/messages/no-stylesheets-in-head-component`\n )\n }\n }\n return React.cloneElement(c, { key })\n })\n}\n\n/**\n * This component injects elements to `<head>` of your page.\n * To avoid duplicated `tags` in `<head>` you can use the `key` property, which will make sure every tag is only rendered once.\n */\nfunction Head({ children }: { children: React.ReactNode }) {\n const headManager = useContext(HeadManagerContext)\n return (\n <Effect\n reduceComponentsToState={reduceComponents}\n headManager={headManager}\n >\n {children}\n </Effect>\n )\n}\n\nexport default Head\n"],"names":["defaultHead","head","meta","charSet","name","content","onlyReactElement","list","child","type","React","Fragment","concat","Children","toArray","props","children","reduce","fragmentList","fragmentChild","METATYPES","unique","keys","Set","tags","metaTypes","metaCategories","h","isUnique","hasKey","key","indexOf","slice","has","add","i","len","length","metatype","hasOwnProperty","category","categories","reduceComponents","headChildrenElements","reverse","filter","map","c","process","env","NODE_ENV","srcMessage","warnOnce","cloneElement","Head","headManager","useContext","HeadManagerContext","Effect","reduceComponentsToState"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 337, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/deployment-id.ts"],"sourcesContent":["// This could also be a variable instead of a function, but some unit tests want to change the ID at\n// runtime. Even though that would never happen in a real deployment.\nexport function getDeploymentId(): string | undefined {\n return process.env.NEXT_DEPLOYMENT_ID\n}\n\nexport function getDeploymentIdQueryOrEmptyString(): string {\n let deploymentId = getDeploymentId()\n if (deploymentId) {\n return `?dpl=${deploymentId}`\n }\n return ''\n}\n"],"names":["getDeploymentId","getDeploymentIdQueryOrEmptyString","process","env","NEXT_DEPLOYMENT_ID","deploymentId"],"mappings":"AAAA,oGAAoG;AACpG,qEAAqE;;;;;;;;;;;;;;;IACrDA,eAAe,EAAA;eAAfA;;IAIAC,iCAAiC,EAAA;eAAjCA;;;AAJT,SAASD;IACd,OAAOE,QAAQC,GAAG,CAACC,kBAAkB;AACvC;AAEO,SAASH;IACd,IAAII,eAAeL;IACnB,IAAIK,cAAc;;IAGlB,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 373, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-blur-svg.ts"],"sourcesContent":["/**\n * A shared function, used on both client and server, to generate a SVG blur placeholder.\n */\nexport function getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL,\n objectFit,\n}: {\n widthInt?: number\n heightInt?: number\n blurWidth?: number\n blurHeight?: number\n blurDataURL: string\n objectFit?: string\n}): string {\n const std = 20\n const svgWidth = blurWidth ? blurWidth * 40 : widthInt\n const svgHeight = blurHeight ? blurHeight * 40 : heightInt\n\n const viewBox =\n svgWidth && svgHeight ? `viewBox='0 0 ${svgWidth} ${svgHeight}'` : ''\n const preserveAspectRatio = viewBox\n ? 'none'\n : objectFit === 'contain'\n ? 'xMidYMid'\n : objectFit === 'cover'\n ? 'xMidYMid slice'\n : 'none'\n\n return `%3Csvg xmlns='http://www.w3.org/2000/svg' ${viewBox}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${preserveAspectRatio}' style='filter: url(%23b);' href='${blurDataURL}'/%3E%3C/svg%3E`\n}\n"],"names":["getImageBlurSvg","widthInt","heightInt","blurWidth","blurHeight","blurDataURL","objectFit","std","svgWidth","svgHeight","viewBox","preserveAspectRatio"],"mappings":"AAAA;;CAEC;;;+BACeA,mBAAAA;;;eAAAA;;;AAAT,SAASA,gBAAgB,EAC9BC,QAAQ,EACRC,SAAS,EACTC,SAAS,EACTC,UAAU,EACVC,WAAW,EACXC,SAAS,EAQV;IACC,MAAMC,MAAM;IACZ,MAAMC,WAAWL,YAAYA,YAAY,KAAKF;IAC9C,MAAMQ,YAAYL,aAAaA,aAAa,KAAKF;IAEjD,MAAMQ,UACJF,YAAYC,YAAY,CAAC,aAAa,EAAED,SAAS,CAAC,EAAEC,UAAU,CAAC,CAAC,GAAG;IACrE,MAAME,sBAAsBD,UACxB,SACAJ,cAAc,YACZ,aACAA,cAAc,UACZ,mBACA;IAER,OAAO,CAAC,0CAA0C,EAAEI,QAAQ,yFAAyF,EAAEH,IAAI,+PAA+P,EAAEA,IAAI,2FAA2F,EAAEI,oBAAoB,mCAAmC,EAAEN,YAAY,eAAe,CAAC;AACplB","ignoreList":[0]}}, - {"offset": {"line": 396, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-config.ts"],"sourcesContent":["export const VALID_LOADERS = [\n 'default',\n 'imgix',\n 'cloudinary',\n 'akamai',\n 'custom',\n] as const\n\nexport type LoaderValue = (typeof VALID_LOADERS)[number]\n\nexport type ImageLoaderProps = {\n src: string\n width: number\n quality?: number\n}\n\nexport type ImageLoaderPropsWithConfig = ImageLoaderProps & {\n config: Readonly<ImageConfig>\n}\n\nexport type LocalPattern = {\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\nexport type RemotePattern = {\n /**\n * Must be `http` or `https`.\n */\n protocol?: 'http' | 'https'\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single subdomain.\n * Double `**` matches any number of subdomains.\n */\n hostname: string\n\n /**\n * Can be literal port such as `8080` or empty string\n * meaning no port.\n */\n port?: string\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\ntype ImageFormat = 'image/avif' | 'image/webp'\n\n/**\n * Image configurations\n *\n * @see [Image configuration options](https://nextjs.org/docs/api-reference/next/image#configuration-options)\n */\nexport type ImageConfigComplete = {\n /** @see [Device sizes documentation](https://nextjs.org/docs/api-reference/next/image#device-sizes) */\n deviceSizes: number[]\n\n /** @see [Image sizing documentation](https://nextjs.org/docs/app/building-your-application/optimizing/images#image-sizing) */\n imageSizes: number[]\n\n /** @see [Image loaders configuration](https://nextjs.org/docs/api-reference/next/legacy/image#loader) */\n loader: LoaderValue\n\n /** @see [Image loader configuration](https://nextjs.org/docs/app/api-reference/components/image#path) */\n path: string\n\n /** @see [Image loader configuration](https://nextjs.org/docs/api-reference/next/image#loader-configuration) */\n loaderFile: string\n\n /**\n * @deprecated Use `remotePatterns` instead.\n */\n domains: string[]\n\n /** @see [Disable static image import configuration](https://nextjs.org/docs/api-reference/next/image#disable-static-imports) */\n disableStaticImages: boolean\n\n /** @see [Cache behavior](https://nextjs.org/docs/api-reference/next/image#caching-behavior) */\n minimumCacheTTL: number\n\n /** @see [Acceptable formats](https://nextjs.org/docs/api-reference/next/image#acceptable-formats) */\n formats: ImageFormat[]\n\n /** @see [Maximum Redirects](https://nextjs.org/docs/api-reference/next/image#maximumredirects) */\n maximumRedirects: number\n\n /** @see [Maximum Response Body](https://nextjs.org/docs/api-reference/next/image#maximumresponsebody) */\n maximumResponseBody: number\n\n /** @see [Dangerously Allow Local IP](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-local-ip) */\n dangerouslyAllowLocalIP: boolean\n\n /** @see [Dangerously Allow SVG](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-svg) */\n dangerouslyAllowSVG: boolean\n\n /** @see [Content Security Policy](https://nextjs.org/docs/api-reference/next/image#contentsecuritypolicy) */\n contentSecurityPolicy: string\n\n /** @see [Content Disposition Type](https://nextjs.org/docs/api-reference/next/image#contentdispositiontype) */\n contentDispositionType: 'inline' | 'attachment'\n\n /** @see [Remote Patterns](https://nextjs.org/docs/api-reference/next/image#remotepatterns) */\n remotePatterns: Array<URL | RemotePattern>\n\n /** @see [Local Patterns](https://nextjs.org/docs/api-reference/next/image#localPatterns) */\n localPatterns: LocalPattern[] | undefined\n\n /** @see [Qualities](https://nextjs.org/docs/api-reference/next/image#qualities) */\n qualities: number[] | undefined\n\n /** @see [Unoptimized](https://nextjs.org/docs/api-reference/next/image#unoptimized) */\n unoptimized: boolean\n}\n\nexport type ImageConfig = Partial<ImageConfigComplete>\n\nexport const imageConfigDefault: ImageConfigComplete = {\n deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],\n imageSizes: [32, 48, 64, 96, 128, 256, 384],\n path: '/_next/image',\n loader: 'default',\n loaderFile: '',\n /**\n * @deprecated Use `remotePatterns` instead to protect your application from malicious users.\n */\n domains: [],\n disableStaticImages: false,\n minimumCacheTTL: 14400, // 4 hours\n formats: ['image/webp'],\n maximumRedirects: 3,\n maximumResponseBody: 50_000_000, // 50 MB\n dangerouslyAllowLocalIP: false,\n dangerouslyAllowSVG: false,\n contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`,\n contentDispositionType: 'attachment',\n localPatterns: undefined, // default: allow all local images\n remotePatterns: [], // default: allow no remote images\n qualities: [75],\n unoptimized: false,\n}\n"],"names":["VALID_LOADERS","imageConfigDefault","deviceSizes","imageSizes","path","loader","loaderFile","domains","disableStaticImages","minimumCacheTTL","formats","maximumRedirects","maximumResponseBody","dangerouslyAllowLocalIP","dangerouslyAllowSVG","contentSecurityPolicy","contentDispositionType","localPatterns","undefined","remotePatterns","qualities","unoptimized"],"mappings":";;;;;;;;;;;;;;IAAaA,aAAa,EAAA;eAAbA;;IA0IAC,kBAAkB,EAAA;eAAlBA;;;AA1IN,MAAMD,gBAAgB;IAC3B;IACA;IACA;IACA;IACA;CACD;AAoIM,MAAMC,qBAA0C;IACrDC,aAAa;QAAC;QAAK;QAAK;QAAK;QAAM;QAAM;QAAM;QAAM;KAAK;IAC1DC,YAAY;QAAC;QAAI;QAAI;QAAI;QAAI;QAAK;QAAK;KAAI;IAC3CC,MAAM;IACNC,QAAQ;IACRC,YAAY;IACZ;;GAEC,GACDC,SAAS,EAAE;IACXC,qBAAqB;IACrBC,iBAAiB;IACjBC,SAAS;QAAC;KAAa;IACvBC,kBAAkB;IAClBC,qBAAqB;IACrBC,yBAAyB;IACzBC,qBAAqB;IACrBC,uBAAuB,CAAC,6CAA6C,CAAC;IACtEC,wBAAwB;IACxBC,eAAeC;IACfC,gBAAgB,EAAE;IAClBC,WAAW;QAAC;KAAG;IACfC,aAAa;AACf","ignoreList":[0]}}, - {"offset": {"line": 472, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/get-img-props.ts"],"sourcesContent":["import { warnOnce } from './utils/warn-once'\nimport { getDeploymentId } from './deployment-id'\nimport { getImageBlurSvg } from './image-blur-svg'\nimport { imageConfigDefault } from './image-config'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n ImageLoaderPropsWithConfig,\n} from './image-config'\n\nimport type { CSSProperties, JSX } from 'react'\n\nexport interface StaticImageData {\n src: string\n height: number\n width: number\n blurDataURL?: string\n blurWidth?: number\n blurHeight?: number\n}\n\nexport interface StaticRequire {\n default: StaticImageData\n}\n\nexport type StaticImport = StaticRequire | StaticImageData\n\nexport type ImageProps = Omit<\n JSX.IntrinsicElements['img'],\n 'src' | 'srcSet' | 'ref' | 'alt' | 'width' | 'height' | 'loading'\n> & {\n src: string | StaticImport\n alt: string\n width?: number | `${number}`\n height?: number | `${number}`\n fill?: boolean\n loader?: ImageLoader\n quality?: number | `${number}`\n preload?: boolean\n /**\n * @deprecated Use `preload` prop instead.\n * See https://nextjs.org/docs/app/api-reference/components/image#preload\n */\n priority?: boolean\n loading?: LoadingValue\n placeholder?: PlaceholderValue\n blurDataURL?: string\n unoptimized?: boolean\n overrideSrc?: string\n /**\n * @deprecated Use `onLoad` instead.\n * @see https://nextjs.org/docs/app/api-reference/components/image#onload\n */\n onLoadingComplete?: OnLoadingComplete\n /**\n * @deprecated Use `fill` prop instead of `layout=\"fill\"` or change import to `next/legacy/image`.\n * @see https://nextjs.org/docs/api-reference/next/legacy/image\n */\n layout?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectFit?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectPosition?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyBoundary?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyRoot?: string\n}\n\nexport type ImgProps = Omit<ImageProps, 'src' | 'loader'> & {\n loading: LoadingValue\n width: number | undefined\n height: number | undefined\n style: NonNullable<JSX.IntrinsicElements['img']['style']>\n sizes: string | undefined\n srcSet: string | undefined\n src: string\n}\n\nconst VALID_LOADING_VALUES = ['lazy', 'eager', undefined] as const\n\n// Object-fit values that are not valid background-size values\nconst INVALID_BACKGROUND_SIZE_VALUES = [\n '-moz-initial',\n 'fill',\n 'none',\n 'scale-down',\n undefined,\n]\ntype LoadingValue = (typeof VALID_LOADING_VALUES)[number]\ntype ImageConfig = ImageConfigComplete & {\n allSizes: number[]\n output?: 'standalone' | 'export'\n}\n\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\n// Do not export - this is an internal type only\n// because `next.config.js` is only meant for the\n// built-in loaders, not for a custom loader() prop.\ntype ImageLoaderWithConfig = (p: ImageLoaderPropsWithConfig) => string\n\nexport type PlaceholderValue = 'blur' | 'empty' | `data:image/${string}`\nexport type OnLoad = React.ReactEventHandler<HTMLImageElement> | undefined\nexport type OnLoadingComplete = (img: HTMLImageElement) => void\n\nexport type PlaceholderStyle = Partial<\n Pick<\n CSSProperties,\n | 'backgroundSize'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundImage'\n >\n>\n\nfunction isStaticRequire(\n src: StaticRequire | StaticImageData\n): src is StaticRequire {\n return (src as StaticRequire).default !== undefined\n}\n\nfunction isStaticImageData(\n src: StaticRequire | StaticImageData\n): src is StaticImageData {\n return (src as StaticImageData).src !== undefined\n}\n\nfunction isStaticImport(src: string | StaticImport): src is StaticImport {\n return (\n !!src &&\n typeof src === 'object' &&\n (isStaticRequire(src as StaticImport) ||\n isStaticImageData(src as StaticImport))\n )\n}\n\nconst allImgs = new Map<\n string,\n { src: string; loading: LoadingValue; placeholder: PlaceholderValue }\n>()\nlet perfObserver: PerformanceObserver | undefined\n\nfunction getInt(x: unknown): number | undefined {\n if (typeof x === 'undefined') {\n return x\n }\n if (typeof x === 'number') {\n return Number.isFinite(x) ? x : NaN\n }\n if (typeof x === 'string' && /^[0-9]+$/.test(x)) {\n return parseInt(x, 10)\n }\n return NaN\n}\n\nfunction getWidths(\n { deviceSizes, allSizes }: ImageConfig,\n width: number | undefined,\n sizes: string | undefined\n): { widths: number[]; kind: 'w' | 'x' } {\n if (sizes) {\n // Find all the \"vw\" percent sizes used in the sizes prop\n const viewportWidthRe = /(^|\\s)(1?\\d?\\d)vw/g\n const percentSizes = []\n for (let match; (match = viewportWidthRe.exec(sizes)); match) {\n percentSizes.push(parseInt(match[2]))\n }\n if (percentSizes.length) {\n const smallestRatio = Math.min(...percentSizes) * 0.01\n return {\n widths: allSizes.filter((s) => s >= deviceSizes[0] * smallestRatio),\n kind: 'w',\n }\n }\n return { widths: allSizes, kind: 'w' }\n }\n if (typeof width !== 'number') {\n return { widths: deviceSizes, kind: 'w' }\n }\n\n const widths = [\n ...new Set(\n // > This means that most OLED screens that say they are 3x resolution,\n // > are actually 3x in the green color, but only 1.5x in the red and\n // > blue colors. Showing a 3x resolution image in the app vs a 2x\n // > resolution image will be visually the same, though the 3x image\n // > takes significantly more data. Even true 3x resolution screens are\n // > wasteful as the human eye cannot see that level of detail without\n // > something like a magnifying glass.\n // https://blog.twitter.com/engineering/en_us/topics/infrastructure/2019/capping-image-fidelity-on-ultra-high-resolution-devices.html\n [width, width * 2 /*, width * 3*/].map(\n (w) => allSizes.find((p) => p >= w) || allSizes[allSizes.length - 1]\n )\n ),\n ]\n return { widths, kind: 'x' }\n}\n\ntype GenImgAttrsData = {\n config: ImageConfig\n src: string\n unoptimized: boolean\n loader: ImageLoaderWithConfig\n width?: number\n quality?: number\n sizes?: string\n}\n\ntype GenImgAttrsResult = {\n src: string\n srcSet: string | undefined\n sizes: string | undefined\n}\n\nfunction generateImgAttrs({\n config,\n src,\n unoptimized,\n width,\n quality,\n sizes,\n loader,\n}: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n const deploymentId = getDeploymentId()\n if (src.startsWith('/') && !src.startsWith('//') && deploymentId) {\n const sep = src.includes('?') ? '&' : '?'\n src = `${src}${sep}dpl=${deploymentId}`\n }\n return { src, srcSet: undefined, sizes: undefined }\n }\n\n const { widths, kind } = getWidths(config, width, sizes)\n const last = widths.length - 1\n\n return {\n sizes: !sizes && kind === 'w' ? '100vw' : sizes,\n srcSet: widths\n .map(\n (w, i) =>\n `${loader({ config, src, quality, width: w })} ${\n kind === 'w' ? w : i + 1\n }${kind}`\n )\n .join(', '),\n\n // It's intended to keep `src` the last attribute because React updates\n // attributes in order. If we keep `src` the first one, Safari will\n // immediately start to fetch `src`, before `sizes` and `srcSet` are even\n // updated by React. That causes multiple unnecessary requests if `srcSet`\n // and `sizes` are defined.\n // This bug cannot be reproduced in Chrome or Firefox.\n src: loader({ config, src, quality, width: widths[last] }),\n }\n}\n\n/**\n * A shared function, used on both client and server, to generate the props for <img>.\n */\nexport function getImgProps(\n {\n src,\n sizes,\n unoptimized = false,\n priority = false,\n preload = false,\n loading,\n className,\n quality,\n width,\n height,\n fill = false,\n style,\n overrideSrc,\n onLoad,\n onLoadingComplete,\n placeholder = 'empty',\n blurDataURL,\n fetchPriority,\n decoding = 'async',\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n ...rest\n }: ImageProps,\n _state: {\n defaultLoader: ImageLoaderWithConfig\n imgConf: ImageConfigComplete\n showAltText?: boolean\n blurComplete?: boolean\n }\n): {\n props: ImgProps\n meta: {\n unoptimized: boolean\n preload: boolean\n placeholder: NonNullable<ImageProps['placeholder']>\n fill: boolean\n }\n} {\n const { imgConf, showAltText, blurComplete, defaultLoader } = _state\n let config: ImageConfig\n let c = imgConf || imageConfigDefault\n if ('allSizes' in c) {\n config = c as ImageConfig\n } else {\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n config = { ...c, allSizes, deviceSizes, qualities }\n }\n\n if (typeof defaultLoader === 'undefined') {\n throw new Error(\n 'images.loaderFile detected but the file is missing default export.\\nRead more: https://nextjs.org/docs/messages/invalid-images-config'\n )\n }\n let loader: ImageLoaderWithConfig = rest.loader || defaultLoader\n\n // Remove property so it's not spread on <img> element\n delete rest.loader\n delete (rest as any).srcSet\n\n // This special value indicates that the user\n // didn't define a \"loader\" prop or \"loader\" config.\n const isDefaultLoader = '__next_img_default' in loader\n\n if (isDefaultLoader) {\n if (config.loader === 'custom') {\n throw new Error(\n `Image with src \"${src}\" is missing \"loader\" prop.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader`\n )\n }\n } else {\n // The user defined a \"loader\" prop or config.\n // Since the config object is internal only, we\n // must not pass it to the user-defined \"loader\".\n const customImageLoader = loader as ImageLoader\n loader = (obj) => {\n const { config: _, ...opts } = obj\n return customImageLoader(opts)\n }\n }\n\n if (layout) {\n if (layout === 'fill') {\n fill = true\n }\n const layoutToStyle: Record<string, Record<string, string> | undefined> = {\n intrinsic: { maxWidth: '100%', height: 'auto' },\n responsive: { width: '100%', height: 'auto' },\n }\n const layoutToSizes: Record<string, string | undefined> = {\n responsive: '100vw',\n fill: '100vw',\n }\n const layoutStyle = layoutToStyle[layout]\n if (layoutStyle) {\n style = { ...style, ...layoutStyle }\n }\n const layoutSizes = layoutToSizes[layout]\n if (layoutSizes && !sizes) {\n sizes = layoutSizes\n }\n }\n\n let staticSrc = ''\n let widthInt = getInt(width)\n let heightInt = getInt(height)\n let blurWidth: number | undefined\n let blurHeight: number | undefined\n if (isStaticImport(src)) {\n const staticImageData = isStaticRequire(src) ? src.default : src\n\n if (!staticImageData.src) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n if (!staticImageData.height || !staticImageData.width) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n\n blurWidth = staticImageData.blurWidth\n blurHeight = staticImageData.blurHeight\n blurDataURL = blurDataURL || staticImageData.blurDataURL\n staticSrc = staticImageData.src\n\n if (!fill) {\n if (!widthInt && !heightInt) {\n widthInt = staticImageData.width\n heightInt = staticImageData.height\n } else if (widthInt && !heightInt) {\n const ratio = widthInt / staticImageData.width\n heightInt = Math.round(staticImageData.height * ratio)\n } else if (!widthInt && heightInt) {\n const ratio = heightInt / staticImageData.height\n widthInt = Math.round(staticImageData.width * ratio)\n }\n }\n }\n src = typeof src === 'string' ? src : staticSrc\n\n let isLazy =\n !priority &&\n !preload &&\n (loading === 'lazy' || typeof loading === 'undefined')\n if (!src || src.startsWith('data:') || src.startsWith('blob:')) {\n // https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs\n unoptimized = true\n isLazy = false\n }\n if (config.unoptimized) {\n unoptimized = true\n }\n if (\n isDefaultLoader &&\n !config.dangerouslyAllowSVG &&\n src.split('?', 1)[0].endsWith('.svg')\n ) {\n // Special case to make svg serve as-is to avoid proxying\n // through the built-in Image Optimization API.\n unoptimized = true\n }\n\n const qualityInt = getInt(quality)\n\n if (process.env.NODE_ENV !== 'production') {\n if (config.output === 'export' && isDefaultLoader && !unoptimized) {\n throw new Error(\n `Image Optimization using the default loader is not compatible with \\`{ output: 'export' }\\`.\n Possible solutions:\n - Remove \\`{ output: 'export' }\\` and run \"next start\" to run server mode including the Image Optimization API.\n - Configure \\`{ images: { unoptimized: true } }\\` in \\`next.config.js\\` to disable the Image Optimization API.\n Read more: https://nextjs.org/docs/messages/export-image-api`\n )\n }\n if (!src) {\n // React doesn't show the stack trace and there's\n // no `src` to help identify which image, so we\n // instead console.error(ref) during mount.\n unoptimized = true\n } else {\n if (fill) {\n if (width) {\n throw new Error(\n `Image with src \"${src}\" has both \"width\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (height) {\n throw new Error(\n `Image with src \"${src}\" has both \"height\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (style?.position && style.position !== 'absolute') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.position\" properties. Images with \"fill\" always use position absolute - it cannot be modified.`\n )\n }\n if (style?.width && style.width !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.width\" properties. Images with \"fill\" always use width 100% - it cannot be modified.`\n )\n }\n if (style?.height && style.height !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.height\" properties. Images with \"fill\" always use height 100% - it cannot be modified.`\n )\n }\n } else {\n if (typeof widthInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"width\" property.`\n )\n } else if (isNaN(widthInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"width\" property. Expected a numeric value in pixels but received \"${width}\".`\n )\n }\n if (typeof heightInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"height\" property.`\n )\n } else if (isNaN(heightInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"height\" property. Expected a numeric value in pixels but received \"${height}\".`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/^[\\x00-\\x20]/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot start with a space or control character. Use src.trimStart() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/[\\x00-\\x20]$/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot end with a space or control character. Use src.trimEnd() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n }\n }\n if (!VALID_LOADING_VALUES.includes(loading)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"loading\" property. Provided \"${loading}\" should be one of ${VALID_LOADING_VALUES.map(\n String\n ).join(',')}.`\n )\n }\n if (priority && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"priority\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && priority) {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"priority\" properties. Only \"preload\" should be used.`\n )\n }\n if (\n placeholder !== 'empty' &&\n placeholder !== 'blur' &&\n !placeholder.startsWith('data:image/')\n ) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"placeholder\" property \"${placeholder}\".`\n )\n }\n if (placeholder !== 'empty') {\n if (widthInt && heightInt && widthInt * heightInt < 1600) {\n warnOnce(\n `Image with src \"${src}\" is smaller than 40x40. Consider removing the \"placeholder\" property to improve performance.`\n )\n }\n }\n if (\n qualityInt &&\n config.qualities &&\n !config.qualities.includes(qualityInt)\n ) {\n warnOnce(\n `Image with src \"${src}\" is using quality \"${qualityInt}\" which is not configured in images.qualities [${config.qualities.join(', ')}]. Please update your config to [${[...config.qualities, qualityInt].sort().join(', ')}].` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-qualities`\n )\n }\n if (placeholder === 'blur' && !blurDataURL) {\n const VALID_BLUR_EXT = ['jpeg', 'png', 'webp', 'avif'] // should match next-image-loader\n\n throw new Error(\n `Image with src \"${src}\" has \"placeholder='blur'\" property but is missing the \"blurDataURL\" property.\n Possible solutions:\n - Add a \"blurDataURL\" property, the contents should be a small Data URL to represent the image\n - Change the \"src\" property to a static import with one of the supported file types: ${VALID_BLUR_EXT.join(\n ','\n )} (animated images not supported)\n - Remove the \"placeholder\" property, effectively no blur effect\n Read more: https://nextjs.org/docs/messages/placeholder-blur-data-url`\n )\n }\n if ('ref' in rest) {\n warnOnce(\n `Image with src \"${src}\" is using unsupported \"ref\" property. Consider using the \"onLoad\" property instead.`\n )\n }\n\n if (!unoptimized && !isDefaultLoader) {\n const urlStr = loader({\n config,\n src,\n width: widthInt || 400,\n quality: qualityInt || 75,\n })\n let url: URL | undefined\n try {\n url = new URL(urlStr)\n } catch (err) {}\n if (urlStr === src || (url && url.pathname === src && !url.search)) {\n warnOnce(\n `Image with src \"${src}\" has a \"loader\" property that does not implement width. Please implement it or use the \"unoptimized\" property instead.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader-width`\n )\n }\n }\n\n if (onLoadingComplete) {\n warnOnce(\n `Image with src \"${src}\" is using deprecated \"onLoadingComplete\" property. Please use the \"onLoad\" property instead.`\n )\n }\n\n for (const [legacyKey, legacyValue] of Object.entries({\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n })) {\n if (legacyValue) {\n warnOnce(\n `Image with src \"${src}\" has legacy prop \"${legacyKey}\". Did you forget to run the codemod?` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-upgrade-to-13`\n )\n }\n }\n\n if (\n typeof window !== 'undefined' &&\n !perfObserver &&\n window.PerformanceObserver\n ) {\n perfObserver = new PerformanceObserver((entryList) => {\n for (const entry of entryList.getEntries()) {\n // @ts-ignore - missing \"LargestContentfulPaint\" class with \"element\" prop\n const imgSrc = entry?.element?.src || ''\n const lcpImage = allImgs.get(imgSrc)\n if (\n lcpImage &&\n lcpImage.loading === 'lazy' &&\n lcpImage.placeholder === 'empty' &&\n !lcpImage.src.startsWith('data:') &&\n !lcpImage.src.startsWith('blob:')\n ) {\n // https://web.dev/lcp/#measure-lcp-in-javascript\n warnOnce(\n `Image with src \"${lcpImage.src}\" was detected as the Largest Contentful Paint (LCP). Please add the \\`loading=\"eager\"\\` property if this image is above the fold.` +\n `\\nRead more: https://nextjs.org/docs/app/api-reference/components/image#loading`\n )\n }\n }\n })\n try {\n perfObserver.observe({\n type: 'largest-contentful-paint',\n buffered: true,\n })\n } catch (err) {\n // Log error but don't crash the app\n console.error(err)\n }\n }\n }\n const imgStyle = Object.assign(\n fill\n ? {\n position: 'absolute',\n height: '100%',\n width: '100%',\n left: 0,\n top: 0,\n right: 0,\n bottom: 0,\n objectFit,\n objectPosition,\n }\n : {},\n showAltText ? {} : { color: 'transparent' },\n style\n )\n\n const backgroundImage =\n !blurComplete && placeholder !== 'empty'\n ? placeholder === 'blur'\n ? `url(\"data:image/svg+xml;charset=utf-8,${getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL: blurDataURL || '', // assume not undefined\n objectFit: imgStyle.objectFit,\n })}\")`\n : `url(\"${placeholder}\")` // assume `data:image/`\n : null\n\n const backgroundSize = !INVALID_BACKGROUND_SIZE_VALUES.includes(\n imgStyle.objectFit\n )\n ? imgStyle.objectFit\n : imgStyle.objectFit === 'fill'\n ? '100% 100%' // the background-size equivalent of `fill`\n : 'cover'\n\n let placeholderStyle: PlaceholderStyle = backgroundImage\n ? {\n backgroundSize,\n backgroundPosition: imgStyle.objectPosition || '50% 50%',\n backgroundRepeat: 'no-repeat',\n backgroundImage,\n }\n : {}\n\n if (process.env.NODE_ENV === 'development') {\n if (\n placeholderStyle.backgroundImage &&\n placeholder === 'blur' &&\n blurDataURL?.startsWith('/')\n ) {\n // During `next dev`, we don't want to generate blur placeholders with webpack\n // because it can delay starting the dev server. Instead, `next-image-loader.js`\n // will inline a special url to lazily generate the blur placeholder at request time.\n placeholderStyle.backgroundImage = `url(\"${blurDataURL}\")`\n }\n }\n\n const imgAttributes = generateImgAttrs({\n config,\n src,\n unoptimized,\n width: widthInt,\n quality: qualityInt,\n sizes,\n loader,\n })\n\n const loadingFinal = isLazy ? 'lazy' : loading\n\n if (process.env.NODE_ENV !== 'production') {\n if (typeof window !== 'undefined') {\n let fullUrl: URL\n try {\n fullUrl = new URL(imgAttributes.src)\n } catch (e) {\n fullUrl = new URL(imgAttributes.src, window.location.href)\n }\n allImgs.set(fullUrl.href, { src, loading: loadingFinal, placeholder })\n }\n }\n\n const props: ImgProps = {\n ...rest,\n loading: loadingFinal,\n fetchPriority,\n width: widthInt,\n height: heightInt,\n decoding,\n className,\n style: { ...imgStyle, ...placeholderStyle },\n sizes: imgAttributes.sizes,\n srcSet: imgAttributes.srcSet,\n src: overrideSrc || imgAttributes.src,\n }\n const meta = { unoptimized, preload: preload || priority, placeholder, fill }\n return { props, meta }\n}\n"],"names":["getImgProps","VALID_LOADING_VALUES","undefined","INVALID_BACKGROUND_SIZE_VALUES","isStaticRequire","src","default","isStaticImageData","isStaticImport","allImgs","Map","perfObserver","getInt","x","Number","isFinite","NaN","test","parseInt","getWidths","deviceSizes","allSizes","width","sizes","viewportWidthRe","percentSizes","match","exec","push","length","smallestRatio","Math","min","widths","filter","s","kind","Set","map","w","find","p","generateImgAttrs","config","unoptimized","quality","loader","deploymentId","getDeploymentId","startsWith","sep","includes","srcSet","last","i","join","priority","preload","loading","className","height","fill","style","overrideSrc","onLoad","onLoadingComplete","placeholder","blurDataURL","fetchPriority","decoding","layout","objectFit","objectPosition","lazyBoundary","lazyRoot","rest","_state","imgConf","showAltText","blurComplete","defaultLoader","c","imageConfigDefault","imageSizes","sort","a","b","qualities","Error","isDefaultLoader","customImageLoader","obj","_","opts","layoutToStyle","intrinsic","maxWidth","responsive","layoutToSizes","layoutStyle","layoutSizes","staticSrc","widthInt","heightInt","blurWidth","blurHeight","staticImageData","JSON","stringify","ratio","round","isLazy","dangerouslyAllowSVG","split","endsWith","qualityInt","process","env","NODE_ENV","output","position","isNaN","String","warnOnce","VALID_BLUR_EXT","urlStr","url","URL","err","pathname","search","legacyKey","legacyValue","Object","entries","window","PerformanceObserver","entryList","entry","getEntries","imgSrc","element","lcpImage","get","observe","type","buffered","console","error","imgStyle","assign","left","top","right","bottom","color","backgroundImage","getImageBlurSvg","backgroundSize","placeholderStyle","backgroundPosition","backgroundRepeat","imgAttributes","loadingFinal","fullUrl","e","location","href","set","props","meta"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1020, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/image-config-context.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].ImageConfigContext\n"],"names":["module","exports","require","vendored","ImageConfigContext"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,kBAAkB","ignoreList":[0]}}, - {"offset": {"line": 1025, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/router-context.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].RouterContext\n"],"names":["module","exports","require","vendored","RouterContext"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,aAAa","ignoreList":[0]}}, - {"offset": {"line": 1030, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/find-closest-quality.ts"],"sourcesContent":["import type { NextConfig } from '../../server/config-shared'\n\n/**\n * Find the closest matching `quality` in the list of `config.qualities`\n * @param quality the quality prop passed to the image component\n * @param config the \"images\" configuration from next.config.js\n * @returns the closest matching quality value\n */\nexport function findClosestQuality(\n quality: number | undefined,\n config: NextConfig['images'] | undefined\n): number {\n const q = quality || 75\n if (!config?.qualities?.length) {\n return q\n }\n return config.qualities.reduce(\n (prev, cur) => (Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev),\n 0\n )\n}\n"],"names":["findClosestQuality","quality","config","q","qualities","length","reduce","prev","cur","Math","abs"],"mappings":";;;+BAQgBA,sBAAAA;;;eAAAA;;;AAAT,SAASA,mBACdC,OAA2B,EAC3BC,MAAwC;IAExC,MAAMC,IAAIF,WAAW;IACrB,IAAI,CAACC,QAAQE,WAAWC,QAAQ;QAC9B,OAAOF;IACT;IACA,OAAOD,OAAOE,SAAS,CAACE,MAAM,CAC5B,CAACC,MAAMC,MAASC,KAAKC,GAAG,CAACF,MAAML,KAAKM,KAAKC,GAAG,CAACH,OAAOJ,KAAKK,MAAMD,MAC/D;AAEJ","ignoreList":[0]}}, - {"offset": {"line": 1049, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/picomatch/index.js"],"sourcesContent":["(()=>{\"use strict\";var t={170:(t,e,u)=>{const n=u(510);const isWindows=()=>{if(typeof navigator!==\"undefined\"&&navigator.platform){const t=navigator.platform.toLowerCase();return t===\"win32\"||t===\"windows\"}if(typeof process!==\"undefined\"&&process.platform){return process.platform===\"win32\"}return false};function picomatch(t,e,u=false){if(e&&(e.windows===null||e.windows===undefined)){e={...e,windows:isWindows()}}return n(t,e,u)}Object.assign(picomatch,n);t.exports=picomatch},154:t=>{const e=\"\\\\\\\\/\";const u=`[^${e}]`;const n=\"\\\\.\";const o=\"\\\\+\";const s=\"\\\\?\";const r=\"\\\\/\";const a=\"(?=.)\";const i=\"[^/]\";const c=`(?:${r}|$)`;const p=`(?:^|${r})`;const l=`${n}{1,2}${c}`;const f=`(?!${n})`;const A=`(?!${p}${l})`;const _=`(?!${n}{0,1}${c})`;const R=`(?!${l})`;const E=`[^.${r}]`;const h=`${i}*?`;const g=\"/\";const b={DOT_LITERAL:n,PLUS_LITERAL:o,QMARK_LITERAL:s,SLASH_LITERAL:r,ONE_CHAR:a,QMARK:i,END_ANCHOR:c,DOTS_SLASH:l,NO_DOT:f,NO_DOTS:A,NO_DOT_SLASH:_,NO_DOTS_SLASH:R,QMARK_NO_DOT:E,STAR:h,START_ANCHOR:p,SEP:g};const C={...b,SLASH_LITERAL:`[${e}]`,QMARK:u,STAR:`${u}*?`,DOTS_SLASH:`${n}{1,2}(?:[${e}]|$)`,NO_DOT:`(?!${n})`,NO_DOTS:`(?!(?:^|[${e}])${n}{1,2}(?:[${e}]|$))`,NO_DOT_SLASH:`(?!${n}{0,1}(?:[${e}]|$))`,NO_DOTS_SLASH:`(?!${n}{1,2}(?:[${e}]|$))`,QMARK_NO_DOT:`[^.${e}]`,START_ANCHOR:`(?:^|[${e}])`,END_ANCHOR:`(?:[${e}]|$)`,SEP:\"\\\\\"};const y={alnum:\"a-zA-Z0-9\",alpha:\"a-zA-Z\",ascii:\"\\\\x00-\\\\x7F\",blank:\" \\\\t\",cntrl:\"\\\\x00-\\\\x1F\\\\x7F\",digit:\"0-9\",graph:\"\\\\x21-\\\\x7E\",lower:\"a-z\",print:\"\\\\x20-\\\\x7E \",punct:\"\\\\-!\\\"#$%&'()\\\\*+,./:;<=>?@[\\\\]^_`{|}~\",space:\" \\\\t\\\\r\\\\n\\\\v\\\\f\",upper:\"A-Z\",word:\"A-Za-z0-9_\",xdigit:\"A-Fa-f0-9\"};t.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:y,REGEX_BACKSLASH:/\\\\(?![*+?^${}(|)[\\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\\].,$*+?^{}()|\\\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\\\?)((\\W)(\\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\\[.*?[^\\\\]\\]|\\\\(?=.))/g,REPLACEMENTS:{\"***\":\"*\",\"**/**\":\"**\",\"**/**/**\":\"**\"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,extglobChars(t){return{\"!\":{type:\"negate\",open:\"(?:(?!(?:\",close:`))${t.STAR})`},\"?\":{type:\"qmark\",open:\"(?:\",close:\")?\"},\"+\":{type:\"plus\",open:\"(?:\",close:\")+\"},\"*\":{type:\"star\",open:\"(?:\",close:\")*\"},\"@\":{type:\"at\",open:\"(?:\",close:\")\"}}},globChars(t){return t===true?C:b}}},697:(t,e,u)=>{const n=u(154);const o=u(96);const{MAX_LENGTH:s,POSIX_REGEX_SOURCE:r,REGEX_NON_SPECIAL_CHARS:a,REGEX_SPECIAL_CHARS_BACKREF:i,REPLACEMENTS:c}=n;const expandRange=(t,e)=>{if(typeof e.expandRange===\"function\"){return e.expandRange(...t,e)}t.sort();const u=`[${t.join(\"-\")}]`;try{new RegExp(u)}catch(e){return t.map((t=>o.escapeRegex(t))).join(\"..\")}return u};const syntaxError=(t,e)=>`Missing ${t}: \"${e}\" - use \"\\\\\\\\${e}\" to match literal characters`;const parse=(t,e)=>{if(typeof t!==\"string\"){throw new TypeError(\"Expected a string\")}t=c[t]||t;const u={...e};const p=typeof u.maxLength===\"number\"?Math.min(s,u.maxLength):s;let l=t.length;if(l>p){throw new SyntaxError(`Input length: ${l}, exceeds maximum allowed length: ${p}`)}const f={type:\"bos\",value:\"\",output:u.prepend||\"\"};const A=[f];const _=u.capture?\"\":\"?:\";const R=n.globChars(u.windows);const E=n.extglobChars(R);const{DOT_LITERAL:h,PLUS_LITERAL:g,SLASH_LITERAL:b,ONE_CHAR:C,DOTS_SLASH:y,NO_DOT:$,NO_DOT_SLASH:x,NO_DOTS_SLASH:S,QMARK:H,QMARK_NO_DOT:v,STAR:d,START_ANCHOR:L}=R;const globstar=t=>`(${_}(?:(?!${L}${t.dot?y:h}).)*?)`;const T=u.dot?\"\":$;const O=u.dot?H:v;let k=u.bash===true?globstar(u):d;if(u.capture){k=`(${k})`}if(typeof u.noext===\"boolean\"){u.noextglob=u.noext}const m={input:t,index:-1,start:0,dot:u.dot===true,consumed:\"\",output:\"\",prefix:\"\",backtrack:false,negated:false,brackets:0,braces:0,parens:0,quotes:0,globstar:false,tokens:A};t=o.removePrefix(t,m);l=t.length;const w=[];const N=[];const I=[];let B=f;let G;const eos=()=>m.index===l-1;const D=m.peek=(e=1)=>t[m.index+e];const M=m.advance=()=>t[++m.index]||\"\";const remaining=()=>t.slice(m.index+1);const consume=(t=\"\",e=0)=>{m.consumed+=t;m.index+=e};const append=t=>{m.output+=t.output!=null?t.output:t.value;consume(t.value)};const negate=()=>{let t=1;while(D()===\"!\"&&(D(2)!==\"(\"||D(3)===\"?\")){M();m.start++;t++}if(t%2===0){return false}m.negated=true;m.start++;return true};const increment=t=>{m[t]++;I.push(t)};const decrement=t=>{m[t]--;I.pop()};const push=t=>{if(B.type===\"globstar\"){const e=m.braces>0&&(t.type===\"comma\"||t.type===\"brace\");const u=t.extglob===true||w.length&&(t.type===\"pipe\"||t.type===\"paren\");if(t.type!==\"slash\"&&t.type!==\"paren\"&&!e&&!u){m.output=m.output.slice(0,-B.output.length);B.type=\"star\";B.value=\"*\";B.output=k;m.output+=B.output}}if(w.length&&t.type!==\"paren\"){w[w.length-1].inner+=t.value}if(t.value||t.output)append(t);if(B&&B.type===\"text\"&&t.type===\"text\"){B.output=(B.output||B.value)+t.value;B.value+=t.value;return}t.prev=B;A.push(t);B=t};const extglobOpen=(t,e)=>{const n={...E[e],conditions:1,inner:\"\"};n.prev=B;n.parens=m.parens;n.output=m.output;const o=(u.capture?\"(\":\"\")+n.open;increment(\"parens\");push({type:t,value:e,output:m.output?\"\":C});push({type:\"paren\",extglob:true,value:M(),output:o});w.push(n)};const extglobClose=t=>{let n=t.close+(u.capture?\")\":\"\");let o;if(t.type===\"negate\"){let s=k;if(t.inner&&t.inner.length>1&&t.inner.includes(\"/\")){s=globstar(u)}if(s!==k||eos()||/^\\)+$/.test(remaining())){n=t.close=`)$))${s}`}if(t.inner.includes(\"*\")&&(o=remaining())&&/^\\.[^\\\\/.]+$/.test(o)){const u=parse(o,{...e,fastpaths:false}).output;n=t.close=`)${u})${s})`}if(t.prev.type===\"bos\"){m.negatedExtglob=true}}push({type:\"paren\",extglob:true,value:G,output:n});decrement(\"parens\")};if(u.fastpaths!==false&&!/(^[*!]|[/()[\\]{}\"])/.test(t)){let n=false;let s=t.replace(i,((t,e,u,o,s,r)=>{if(o===\"\\\\\"){n=true;return t}if(o===\"?\"){if(e){return e+o+(s?H.repeat(s.length):\"\")}if(r===0){return O+(s?H.repeat(s.length):\"\")}return H.repeat(u.length)}if(o===\".\"){return h.repeat(u.length)}if(o===\"*\"){if(e){return e+o+(s?k:\"\")}return k}return e?t:`\\\\${t}`}));if(n===true){if(u.unescape===true){s=s.replace(/\\\\/g,\"\")}else{s=s.replace(/\\\\+/g,(t=>t.length%2===0?\"\\\\\\\\\":t?\"\\\\\":\"\"))}}if(s===t&&u.contains===true){m.output=t;return m}m.output=o.wrapOutput(s,m,e);return m}while(!eos()){G=M();if(G===\"\\0\"){continue}if(G===\"\\\\\"){const t=D();if(t===\"/\"&&u.bash!==true){continue}if(t===\".\"||t===\";\"){continue}if(!t){G+=\"\\\\\";push({type:\"text\",value:G});continue}const e=/^\\\\+/.exec(remaining());let n=0;if(e&&e[0].length>2){n=e[0].length;m.index+=n;if(n%2!==0){G+=\"\\\\\"}}if(u.unescape===true){G=M()}else{G+=M()}if(m.brackets===0){push({type:\"text\",value:G});continue}}if(m.brackets>0&&(G!==\"]\"||B.value===\"[\"||B.value===\"[^\")){if(u.posix!==false&&G===\":\"){const t=B.value.slice(1);if(t.includes(\"[\")){B.posix=true;if(t.includes(\":\")){const t=B.value.lastIndexOf(\"[\");const e=B.value.slice(0,t);const u=B.value.slice(t+2);const n=r[u];if(n){B.value=e+n;m.backtrack=true;M();if(!f.output&&A.indexOf(B)===1){f.output=C}continue}}}}if(G===\"[\"&&D()!==\":\"||G===\"-\"&&D()===\"]\"){G=`\\\\${G}`}if(G===\"]\"&&(B.value===\"[\"||B.value===\"[^\")){G=`\\\\${G}`}if(u.posix===true&&G===\"!\"&&B.value===\"[\"){G=\"^\"}B.value+=G;append({value:G});continue}if(m.quotes===1&&G!=='\"'){G=o.escapeRegex(G);B.value+=G;append({value:G});continue}if(G==='\"'){m.quotes=m.quotes===1?0:1;if(u.keepQuotes===true){push({type:\"text\",value:G})}continue}if(G===\"(\"){increment(\"parens\");push({type:\"paren\",value:G});continue}if(G===\")\"){if(m.parens===0&&u.strictBrackets===true){throw new SyntaxError(syntaxError(\"opening\",\"(\"))}const t=w[w.length-1];if(t&&m.parens===t.parens+1){extglobClose(w.pop());continue}push({type:\"paren\",value:G,output:m.parens?\")\":\"\\\\)\"});decrement(\"parens\");continue}if(G===\"[\"){if(u.nobracket===true||!remaining().includes(\"]\")){if(u.nobracket!==true&&u.strictBrackets===true){throw new SyntaxError(syntaxError(\"closing\",\"]\"))}G=`\\\\${G}`}else{increment(\"brackets\")}push({type:\"bracket\",value:G});continue}if(G===\"]\"){if(u.nobracket===true||B&&B.type===\"bracket\"&&B.value.length===1){push({type:\"text\",value:G,output:`\\\\${G}`});continue}if(m.brackets===0){if(u.strictBrackets===true){throw new SyntaxError(syntaxError(\"opening\",\"[\"))}push({type:\"text\",value:G,output:`\\\\${G}`});continue}decrement(\"brackets\");const t=B.value.slice(1);if(B.posix!==true&&t[0]===\"^\"&&!t.includes(\"/\")){G=`/${G}`}B.value+=G;append({value:G});if(u.literalBrackets===false||o.hasRegexChars(t)){continue}const e=o.escapeRegex(B.value);m.output=m.output.slice(0,-B.value.length);if(u.literalBrackets===true){m.output+=e;B.value=e;continue}B.value=`(${_}${e}|${B.value})`;m.output+=B.value;continue}if(G===\"{\"&&u.nobrace!==true){increment(\"braces\");const t={type:\"brace\",value:G,output:\"(\",outputIndex:m.output.length,tokensIndex:m.tokens.length};N.push(t);push(t);continue}if(G===\"}\"){const t=N[N.length-1];if(u.nobrace===true||!t){push({type:\"text\",value:G,output:G});continue}let e=\")\";if(t.dots===true){const t=A.slice();const n=[];for(let e=t.length-1;e>=0;e--){A.pop();if(t[e].type===\"brace\"){break}if(t[e].type!==\"dots\"){n.unshift(t[e].value)}}e=expandRange(n,u);m.backtrack=true}if(t.comma!==true&&t.dots!==true){const u=m.output.slice(0,t.outputIndex);const n=m.tokens.slice(t.tokensIndex);t.value=t.output=\"\\\\{\";G=e=\"\\\\}\";m.output=u;for(const t of n){m.output+=t.output||t.value}}push({type:\"brace\",value:G,output:e});decrement(\"braces\");N.pop();continue}if(G===\"|\"){if(w.length>0){w[w.length-1].conditions++}push({type:\"text\",value:G});continue}if(G===\",\"){let t=G;const e=N[N.length-1];if(e&&I[I.length-1]===\"braces\"){e.comma=true;t=\"|\"}push({type:\"comma\",value:G,output:t});continue}if(G===\"/\"){if(B.type===\"dot\"&&m.index===m.start+1){m.start=m.index+1;m.consumed=\"\";m.output=\"\";A.pop();B=f;continue}push({type:\"slash\",value:G,output:b});continue}if(G===\".\"){if(m.braces>0&&B.type===\"dot\"){if(B.value===\".\")B.output=h;const t=N[N.length-1];B.type=\"dots\";B.output+=G;B.value+=G;t.dots=true;continue}if(m.braces+m.parens===0&&B.type!==\"bos\"&&B.type!==\"slash\"){push({type:\"text\",value:G,output:h});continue}push({type:\"dot\",value:G,output:h});continue}if(G===\"?\"){const t=B&&B.value===\"(\";if(!t&&u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){extglobOpen(\"qmark\",G);continue}if(B&&B.type===\"paren\"){const t=D();let e=G;if(B.value===\"(\"&&!/[!=<:]/.test(t)||t===\"<\"&&!/<([!=]|\\w+>)/.test(remaining())){e=`\\\\${G}`}push({type:\"text\",value:G,output:e});continue}if(u.dot!==true&&(B.type===\"slash\"||B.type===\"bos\")){push({type:\"qmark\",value:G,output:v});continue}push({type:\"qmark\",value:G,output:H});continue}if(G===\"!\"){if(u.noextglob!==true&&D()===\"(\"){if(D(2)!==\"?\"||!/[!=<:]/.test(D(3))){extglobOpen(\"negate\",G);continue}}if(u.nonegate!==true&&m.index===0){negate();continue}}if(G===\"+\"){if(u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){extglobOpen(\"plus\",G);continue}if(B&&B.value===\"(\"||u.regex===false){push({type:\"plus\",value:G,output:g});continue}if(B&&(B.type===\"bracket\"||B.type===\"paren\"||B.type===\"brace\")||m.parens>0){push({type:\"plus\",value:G});continue}push({type:\"plus\",value:g});continue}if(G===\"@\"){if(u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){push({type:\"at\",extglob:true,value:G,output:\"\"});continue}push({type:\"text\",value:G});continue}if(G!==\"*\"){if(G===\"$\"||G===\"^\"){G=`\\\\${G}`}const t=a.exec(remaining());if(t){G+=t[0];m.index+=t[0].length}push({type:\"text\",value:G});continue}if(B&&(B.type===\"globstar\"||B.star===true)){B.type=\"star\";B.star=true;B.value+=G;B.output=k;m.backtrack=true;m.globstar=true;consume(G);continue}let e=remaining();if(u.noextglob!==true&&/^\\([^?]/.test(e)){extglobOpen(\"star\",G);continue}if(B.type===\"star\"){if(u.noglobstar===true){consume(G);continue}const n=B.prev;const o=n.prev;const s=n.type===\"slash\"||n.type===\"bos\";const r=o&&(o.type===\"star\"||o.type===\"globstar\");if(u.bash===true&&(!s||e[0]&&e[0]!==\"/\")){push({type:\"star\",value:G,output:\"\"});continue}const a=m.braces>0&&(n.type===\"comma\"||n.type===\"brace\");const i=w.length&&(n.type===\"pipe\"||n.type===\"paren\");if(!s&&n.type!==\"paren\"&&!a&&!i){push({type:\"star\",value:G,output:\"\"});continue}while(e.slice(0,3)===\"/**\"){const u=t[m.index+4];if(u&&u!==\"/\"){break}e=e.slice(3);consume(\"/**\",3)}if(n.type===\"bos\"&&eos()){B.type=\"globstar\";B.value+=G;B.output=globstar(u);m.output=B.output;m.globstar=true;consume(G);continue}if(n.type===\"slash\"&&n.prev.type!==\"bos\"&&!r&&eos()){m.output=m.output.slice(0,-(n.output+B.output).length);n.output=`(?:${n.output}`;B.type=\"globstar\";B.output=globstar(u)+(u.strictSlashes?\")\":\"|$)\");B.value+=G;m.globstar=true;m.output+=n.output+B.output;consume(G);continue}if(n.type===\"slash\"&&n.prev.type!==\"bos\"&&e[0]===\"/\"){const t=e[1]!==void 0?\"|$\":\"\";m.output=m.output.slice(0,-(n.output+B.output).length);n.output=`(?:${n.output}`;B.type=\"globstar\";B.output=`${globstar(u)}${b}|${b}${t})`;B.value+=G;m.output+=n.output+B.output;m.globstar=true;consume(G+M());push({type:\"slash\",value:\"/\",output:\"\"});continue}if(n.type===\"bos\"&&e[0]===\"/\"){B.type=\"globstar\";B.value+=G;B.output=`(?:^|${b}|${globstar(u)}${b})`;m.output=B.output;m.globstar=true;consume(G+M());push({type:\"slash\",value:\"/\",output:\"\"});continue}m.output=m.output.slice(0,-B.output.length);B.type=\"globstar\";B.output=globstar(u);B.value+=G;m.output+=B.output;m.globstar=true;consume(G);continue}const n={type:\"star\",value:G,output:k};if(u.bash===true){n.output=\".*?\";if(B.type===\"bos\"||B.type===\"slash\"){n.output=T+n.output}push(n);continue}if(B&&(B.type===\"bracket\"||B.type===\"paren\")&&u.regex===true){n.output=G;push(n);continue}if(m.index===m.start||B.type===\"slash\"||B.type===\"dot\"){if(B.type===\"dot\"){m.output+=x;B.output+=x}else if(u.dot===true){m.output+=S;B.output+=S}else{m.output+=T;B.output+=T}if(D()!==\"*\"){m.output+=C;B.output+=C}}push(n)}while(m.brackets>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\"]\"));m.output=o.escapeLast(m.output,\"[\");decrement(\"brackets\")}while(m.parens>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\")\"));m.output=o.escapeLast(m.output,\"(\");decrement(\"parens\")}while(m.braces>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\"}\"));m.output=o.escapeLast(m.output,\"{\");decrement(\"braces\")}if(u.strictSlashes!==true&&(B.type===\"star\"||B.type===\"bracket\")){push({type:\"maybe_slash\",value:\"\",output:`${b}?`})}if(m.backtrack===true){m.output=\"\";for(const t of m.tokens){m.output+=t.output!=null?t.output:t.value;if(t.suffix){m.output+=t.suffix}}}return m};parse.fastpaths=(t,e)=>{const u={...e};const r=typeof u.maxLength===\"number\"?Math.min(s,u.maxLength):s;const a=t.length;if(a>r){throw new SyntaxError(`Input length: ${a}, exceeds maximum allowed length: ${r}`)}t=c[t]||t;const{DOT_LITERAL:i,SLASH_LITERAL:p,ONE_CHAR:l,DOTS_SLASH:f,NO_DOT:A,NO_DOTS:_,NO_DOTS_SLASH:R,STAR:E,START_ANCHOR:h}=n.globChars(u.windows);const g=u.dot?_:A;const b=u.dot?R:A;const C=u.capture?\"\":\"?:\";const y={negated:false,prefix:\"\"};let $=u.bash===true?\".*?\":E;if(u.capture){$=`(${$})`}const globstar=t=>{if(t.noglobstar===true)return $;return`(${C}(?:(?!${h}${t.dot?f:i}).)*?)`};const create=t=>{switch(t){case\"*\":return`${g}${l}${$}`;case\".*\":return`${i}${l}${$}`;case\"*.*\":return`${g}${$}${i}${l}${$}`;case\"*/*\":return`${g}${$}${p}${l}${b}${$}`;case\"**\":return g+globstar(u);case\"**/*\":return`(?:${g}${globstar(u)}${p})?${b}${l}${$}`;case\"**/*.*\":return`(?:${g}${globstar(u)}${p})?${b}${$}${i}${l}${$}`;case\"**/.*\":return`(?:${g}${globstar(u)}${p})?${i}${l}${$}`;default:{const e=/^(.*?)\\.(\\w+)$/.exec(t);if(!e)return;const u=create(e[1]);if(!u)return;return u+i+e[2]}}};const x=o.removePrefix(t,y);let S=create(x);if(S&&u.strictSlashes!==true){S+=`${p}?`}return S};t.exports=parse},510:(t,e,u)=>{const n=u(716);const o=u(697);const s=u(96);const r=u(154);const isObject=t=>t&&typeof t===\"object\"&&!Array.isArray(t);const picomatch=(t,e,u=false)=>{if(Array.isArray(t)){const n=t.map((t=>picomatch(t,e,u)));const arrayMatcher=t=>{for(const e of n){const u=e(t);if(u)return u}return false};return arrayMatcher}const n=isObject(t)&&t.tokens&&t.input;if(t===\"\"||typeof t!==\"string\"&&!n){throw new TypeError(\"Expected pattern to be a non-empty string\")}const o=e||{};const s=o.windows;const r=n?picomatch.compileRe(t,e):picomatch.makeRe(t,e,false,true);const a=r.state;delete r.state;let isIgnored=()=>false;if(o.ignore){const t={...e,ignore:null,onMatch:null,onResult:null};isIgnored=picomatch(o.ignore,t,u)}const matcher=(u,n=false)=>{const{isMatch:i,match:c,output:p}=picomatch.test(u,r,e,{glob:t,posix:s});const l={glob:t,state:a,regex:r,posix:s,input:u,output:p,match:c,isMatch:i};if(typeof o.onResult===\"function\"){o.onResult(l)}if(i===false){l.isMatch=false;return n?l:false}if(isIgnored(u)){if(typeof o.onIgnore===\"function\"){o.onIgnore(l)}l.isMatch=false;return n?l:false}if(typeof o.onMatch===\"function\"){o.onMatch(l)}return n?l:true};if(u){matcher.state=a}return matcher};picomatch.test=(t,e,u,{glob:n,posix:o}={})=>{if(typeof t!==\"string\"){throw new TypeError(\"Expected input to be a string\")}if(t===\"\"){return{isMatch:false,output:\"\"}}const r=u||{};const a=r.format||(o?s.toPosixSlashes:null);let i=t===n;let c=i&&a?a(t):t;if(i===false){c=a?a(t):t;i=c===n}if(i===false||r.capture===true){if(r.matchBase===true||r.basename===true){i=picomatch.matchBase(t,e,u,o)}else{i=e.exec(c)}}return{isMatch:Boolean(i),match:i,output:c}};picomatch.matchBase=(t,e,u)=>{const n=e instanceof RegExp?e:picomatch.makeRe(e,u);return n.test(s.basename(t))};picomatch.isMatch=(t,e,u)=>picomatch(e,u)(t);picomatch.parse=(t,e)=>{if(Array.isArray(t))return t.map((t=>picomatch.parse(t,e)));return o(t,{...e,fastpaths:false})};picomatch.scan=(t,e)=>n(t,e);picomatch.compileRe=(t,e,u=false,n=false)=>{if(u===true){return t.output}const o=e||{};const s=o.contains?\"\":\"^\";const r=o.contains?\"\":\"$\";let a=`${s}(?:${t.output})${r}`;if(t&&t.negated===true){a=`^(?!${a}).*$`}const i=picomatch.toRegex(a,e);if(n===true){i.state=t}return i};picomatch.makeRe=(t,e={},u=false,n=false)=>{if(!t||typeof t!==\"string\"){throw new TypeError(\"Expected a non-empty string\")}let s={negated:false,fastpaths:true};if(e.fastpaths!==false&&(t[0]===\".\"||t[0]===\"*\")){s.output=o.fastpaths(t,e)}if(!s.output){s=o(t,e)}return picomatch.compileRe(s,e,u,n)};picomatch.toRegex=(t,e)=>{try{const u=e||{};return new RegExp(t,u.flags||(u.nocase?\"i\":\"\"))}catch(t){if(e&&e.debug===true)throw t;return/$^/}};picomatch.constants=r;t.exports=picomatch},716:(t,e,u)=>{const n=u(96);const{CHAR_ASTERISK:o,CHAR_AT:s,CHAR_BACKWARD_SLASH:r,CHAR_COMMA:a,CHAR_DOT:i,CHAR_EXCLAMATION_MARK:c,CHAR_FORWARD_SLASH:p,CHAR_LEFT_CURLY_BRACE:l,CHAR_LEFT_PARENTHESES:f,CHAR_LEFT_SQUARE_BRACKET:A,CHAR_PLUS:_,CHAR_QUESTION_MARK:R,CHAR_RIGHT_CURLY_BRACE:E,CHAR_RIGHT_PARENTHESES:h,CHAR_RIGHT_SQUARE_BRACKET:g}=u(154);const isPathSeparator=t=>t===p||t===r;const depth=t=>{if(t.isPrefix!==true){t.depth=t.isGlobstar?Infinity:1}};const scan=(t,e)=>{const u=e||{};const b=t.length-1;const C=u.parts===true||u.scanToEnd===true;const y=[];const $=[];const x=[];let S=t;let H=-1;let v=0;let d=0;let L=false;let T=false;let O=false;let k=false;let m=false;let w=false;let N=false;let I=false;let B=false;let G=false;let D=0;let M;let P;let K={value:\"\",depth:0,isGlob:false};const eos=()=>H>=b;const peek=()=>S.charCodeAt(H+1);const advance=()=>{M=P;return S.charCodeAt(++H)};while(H<b){P=advance();let t;if(P===r){N=K.backslashes=true;P=advance();if(P===l){w=true}continue}if(w===true||P===l){D++;while(eos()!==true&&(P=advance())){if(P===r){N=K.backslashes=true;advance();continue}if(P===l){D++;continue}if(w!==true&&P===i&&(P=advance())===i){L=K.isBrace=true;O=K.isGlob=true;G=true;if(C===true){continue}break}if(w!==true&&P===a){L=K.isBrace=true;O=K.isGlob=true;G=true;if(C===true){continue}break}if(P===E){D--;if(D===0){w=false;L=K.isBrace=true;G=true;break}}}if(C===true){continue}break}if(P===p){y.push(H);$.push(K);K={value:\"\",depth:0,isGlob:false};if(G===true)continue;if(M===i&&H===v+1){v+=2;continue}d=H+1;continue}if(u.noext!==true){const t=P===_||P===s||P===o||P===R||P===c;if(t===true&&peek()===f){O=K.isGlob=true;k=K.isExtglob=true;G=true;if(P===c&&H===v){B=true}if(C===true){while(eos()!==true&&(P=advance())){if(P===r){N=K.backslashes=true;P=advance();continue}if(P===h){O=K.isGlob=true;G=true;break}}continue}break}}if(P===o){if(M===o)m=K.isGlobstar=true;O=K.isGlob=true;G=true;if(C===true){continue}break}if(P===R){O=K.isGlob=true;G=true;if(C===true){continue}break}if(P===A){while(eos()!==true&&(t=advance())){if(t===r){N=K.backslashes=true;advance();continue}if(t===g){T=K.isBracket=true;O=K.isGlob=true;G=true;break}}if(C===true){continue}break}if(u.nonegate!==true&&P===c&&H===v){I=K.negated=true;v++;continue}if(u.noparen!==true&&P===f){O=K.isGlob=true;if(C===true){while(eos()!==true&&(P=advance())){if(P===f){N=K.backslashes=true;P=advance();continue}if(P===h){G=true;break}}continue}break}if(O===true){G=true;if(C===true){continue}break}}if(u.noext===true){k=false;O=false}let U=S;let X=\"\";let F=\"\";if(v>0){X=S.slice(0,v);S=S.slice(v);d-=v}if(U&&O===true&&d>0){U=S.slice(0,d);F=S.slice(d)}else if(O===true){U=\"\";F=S}else{U=S}if(U&&U!==\"\"&&U!==\"/\"&&U!==S){if(isPathSeparator(U.charCodeAt(U.length-1))){U=U.slice(0,-1)}}if(u.unescape===true){if(F)F=n.removeBackslashes(F);if(U&&N===true){U=n.removeBackslashes(U)}}const Q={prefix:X,input:t,start:v,base:U,glob:F,isBrace:L,isBracket:T,isGlob:O,isExtglob:k,isGlobstar:m,negated:I,negatedExtglob:B};if(u.tokens===true){Q.maxDepth=0;if(!isPathSeparator(P)){$.push(K)}Q.tokens=$}if(u.parts===true||u.tokens===true){let e;for(let n=0;n<y.length;n++){const o=e?e+1:v;const s=y[n];const r=t.slice(o,s);if(u.tokens){if(n===0&&v!==0){$[n].isPrefix=true;$[n].value=X}else{$[n].value=r}depth($[n]);Q.maxDepth+=$[n].depth}if(n!==0||r!==\"\"){x.push(r)}e=s}if(e&&e+1<t.length){const n=t.slice(e+1);x.push(n);if(u.tokens){$[$.length-1].value=n;depth($[$.length-1]);Q.maxDepth+=$[$.length-1].depth}}Q.slashes=y;Q.parts=x}return Q};t.exports=scan},96:(t,e,u)=>{const{REGEX_BACKSLASH:n,REGEX_REMOVE_BACKSLASH:o,REGEX_SPECIAL_CHARS:s,REGEX_SPECIAL_CHARS_GLOBAL:r}=u(154);e.isObject=t=>t!==null&&typeof t===\"object\"&&!Array.isArray(t);e.hasRegexChars=t=>s.test(t);e.isRegexChar=t=>t.length===1&&e.hasRegexChars(t);e.escapeRegex=t=>t.replace(r,\"\\\\$1\");e.toPosixSlashes=t=>t.replace(n,\"/\");e.removeBackslashes=t=>t.replace(o,(t=>t===\"\\\\\"?\"\":t));e.escapeLast=(t,u,n)=>{const o=t.lastIndexOf(u,n);if(o===-1)return t;if(t[o-1]===\"\\\\\")return e.escapeLast(t,u,o-1);return`${t.slice(0,o)}\\\\${t.slice(o)}`};e.removePrefix=(t,e={})=>{let u=t;if(u.startsWith(\"./\")){u=u.slice(2);e.prefix=\"./\"}return u};e.wrapOutput=(t,e={},u={})=>{const n=u.contains?\"\":\"^\";const o=u.contains?\"\":\"$\";let s=`${n}(?:${t})${o}`;if(e.negated===true){s=`(?:^(?!${s}).*$)`}return s};e.basename=(t,{windows:e}={})=>{const u=t.split(e?/[\\\\/]/:\"/\");const n=u[u.length-1];if(n===\"\"){return u[u.length-2]}return n}}};var e={};function __nccwpck_require__(u){var n=e[u];if(n!==undefined){return n.exports}var o=e[u]={exports:{}};var s=true;try{t[u](o,o.exports,__nccwpck_require__);s=false}finally{if(s)delete e[u]}return o.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var u=__nccwpck_require__(170);module.exports=u})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2647, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/match-local-pattern.ts"],"sourcesContent":["import type { LocalPattern } from './image-config'\nimport { makeRe } from 'next/dist/compiled/picomatch'\n\n// Modifying this function should also modify writeImagesManifest()\nexport function matchLocalPattern(pattern: LocalPattern, url: URL): boolean {\n if (pattern.search !== undefined) {\n if (pattern.search !== url.search) {\n return false\n }\n }\n\n if (!makeRe(pattern.pathname ?? '**', { dot: true }).test(url.pathname)) {\n return false\n }\n\n return true\n}\n\nexport function hasLocalMatch(\n localPatterns: LocalPattern[] | undefined,\n urlPathAndQuery: string\n): boolean {\n if (!localPatterns) {\n // if the user didn't define \"localPatterns\", we allow all local images\n return true\n }\n const url = new URL(urlPathAndQuery, 'http://n')\n return localPatterns.some((p) => matchLocalPattern(p, url))\n}\n"],"names":["hasLocalMatch","matchLocalPattern","pattern","url","search","undefined","makeRe","pathname","dot","test","localPatterns","urlPathAndQuery","URL","some","p"],"mappings":";;;;;;;;;;;;;;IAkBgBA,aAAa,EAAA;eAAbA;;IAdAC,iBAAiB,EAAA;eAAjBA;;;2BAHO;AAGhB,SAASA,kBAAkBC,OAAqB,EAAEC,GAAQ;IAC/D,IAAID,QAAQE,MAAM,KAAKC,WAAW;QAChC,IAAIH,QAAQE,MAAM,KAAKD,IAAIC,MAAM,EAAE;YACjC,OAAO;QACT;IACF;IAEA,IAAI,CAACE,CAAAA,GAAAA,WAAAA,MAAM,EAACJ,QAAQK,QAAQ,IAAI,MAAM;QAAEC,KAAK;IAAK,GAAGC,IAAI,CAACN,IAAII,QAAQ,GAAG;QACvE,OAAO;IACT;IAEA,OAAO;AACT;AAEO,SAASP,cACdU,aAAyC,EACzCC,eAAuB;IAEvB,IAAI,CAACD,eAAe;QAClB,uEAAuE;QACvE,OAAO;IACT;IACA,MAAMP,MAAM,IAAIS,IAAID,iBAAiB;IACrC,OAAOD,cAAcG,IAAI,CAAC,CAACC,IAAMb,kBAAkBa,GAAGX;AACxD","ignoreList":[0]}}, - {"offset": {"line": 2694, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/match-remote-pattern.ts"],"sourcesContent":["import type { RemotePattern } from './image-config'\nimport { makeRe } from 'next/dist/compiled/picomatch'\n\n// Modifying this function should also modify writeImagesManifest()\nexport function matchRemotePattern(\n pattern: RemotePattern | URL,\n url: URL\n): boolean {\n if (pattern.protocol !== undefined) {\n if (pattern.protocol.replace(/:$/, '') !== url.protocol.replace(/:$/, '')) {\n return false\n }\n }\n if (pattern.port !== undefined) {\n if (pattern.port !== url.port) {\n return false\n }\n }\n\n if (pattern.hostname === undefined) {\n throw new Error(\n `Pattern should define hostname but found\\n${JSON.stringify(pattern)}`\n )\n } else {\n if (!makeRe(pattern.hostname).test(url.hostname)) {\n return false\n }\n }\n\n if (pattern.search !== undefined) {\n if (pattern.search !== url.search) {\n return false\n }\n }\n\n // Should be the same as writeImagesManifest()\n if (!makeRe(pattern.pathname ?? '**', { dot: true }).test(url.pathname)) {\n return false\n }\n\n return true\n}\n\nexport function hasRemoteMatch(\n domains: string[],\n remotePatterns: Array<RemotePattern | URL>,\n url: URL\n): boolean {\n return (\n domains.some((domain) => url.hostname === domain) ||\n remotePatterns.some((p) => matchRemotePattern(p, url))\n )\n}\n"],"names":["hasRemoteMatch","matchRemotePattern","pattern","url","protocol","undefined","replace","port","hostname","Error","JSON","stringify","makeRe","test","search","pathname","dot","domains","remotePatterns","some","domain","p"],"mappings":";;;;;;;;;;;;;;IA2CgBA,cAAc,EAAA;eAAdA;;IAvCAC,kBAAkB,EAAA;eAAlBA;;;2BAHO;AAGhB,SAASA,mBACdC,OAA4B,EAC5BC,GAAQ;IAER,IAAID,QAAQE,QAAQ,KAAKC,WAAW;QAClC,IAAIH,QAAQE,QAAQ,CAACE,OAAO,CAAC,MAAM,QAAQH,IAAIC,QAAQ,CAACE,OAAO,CAAC,MAAM,KAAK;YACzE,OAAO;QACT;IACF;IACA,IAAIJ,QAAQK,IAAI,KAAKF,WAAW;QAC9B,IAAIH,QAAQK,IAAI,KAAKJ,IAAII,IAAI,EAAE;YAC7B,OAAO;QACT;IACF;IAEA,IAAIL,QAAQM,QAAQ,KAAKH,WAAW;QAClC,MAAM,OAAA,cAEL,CAFK,IAAII,MACR,CAAC,0CAA0C,EAAEC,KAAKC,SAAS,CAACT,UAAU,GADlE,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF,OAAO;QACL,IAAI,CAACU,CAAAA,GAAAA,WAAAA,MAAM,EAACV,QAAQM,QAAQ,EAAEK,IAAI,CAACV,IAAIK,QAAQ,GAAG;YAChD,OAAO;QACT;IACF;IAEA,IAAIN,QAAQY,MAAM,KAAKT,WAAW;QAChC,IAAIH,QAAQY,MAAM,KAAKX,IAAIW,MAAM,EAAE;YACjC,OAAO;QACT;IACF;IAEA,8CAA8C;IAC9C,IAAI,CAACF,CAAAA,GAAAA,WAAAA,MAAM,EAACV,QAAQa,QAAQ,IAAI,MAAM;QAAEC,KAAK;IAAK,GAAGH,IAAI,CAACV,IAAIY,QAAQ,GAAG;QACvE,OAAO;IACT;IAEA,OAAO;AACT;AAEO,SAASf,eACdiB,OAAiB,EACjBC,cAA0C,EAC1Cf,GAAQ;IAER,OACEc,QAAQE,IAAI,CAAC,CAACC,SAAWjB,IAAIK,QAAQ,KAAKY,WAC1CF,eAAeC,IAAI,CAAC,CAACE,IAAMpB,mBAAmBoB,GAAGlB;AAErD","ignoreList":[0]}}, - {"offset": {"line": 2758, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-loader.ts"],"sourcesContent":["import type { ImageLoaderPropsWithConfig } from './image-config'\nimport { findClosestQuality } from './find-closest-quality'\nimport { getDeploymentId } from './deployment-id'\n\nfunction defaultLoader({\n config,\n src,\n width,\n quality,\n}: ImageLoaderPropsWithConfig): string {\n if (\n src.startsWith('/') &&\n src.includes('?') &&\n config.localPatterns?.length === 1 &&\n config.localPatterns[0].pathname === '**' &&\n config.localPatterns[0].search === ''\n ) {\n throw new Error(\n `Image with src \"${src}\" is using a query string which is not configured in images.localPatterns.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n\n if (process.env.NODE_ENV !== 'production') {\n const missingValues = []\n\n // these should always be provided but make sure they are\n if (!src) missingValues.push('src')\n if (!width) missingValues.push('width')\n\n if (missingValues.length > 0) {\n throw new Error(\n `Next Image Optimization requires ${missingValues.join(\n ', '\n )} to be provided. Make sure you pass them as props to the \\`next/image\\` component. Received: ${JSON.stringify(\n { src, width, quality }\n )}`\n )\n }\n\n if (src.startsWith('//')) {\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, protocol-relative URL (//) must be changed to an absolute URL (http:// or https://)`\n )\n }\n\n if (src.startsWith('/') && config.localPatterns) {\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasLocalMatch } =\n require('./match-local-pattern') as typeof import('./match-local-pattern')\n if (!hasLocalMatch(config.localPatterns, src)) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\` does not match \\`images.localPatterns\\` configured in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n }\n }\n\n if (!src.startsWith('/') && (config.domains || config.remotePatterns)) {\n let parsedSrc: URL\n try {\n parsedSrc = new URL(src)\n } catch (err) {\n console.error(err)\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, if using relative image it must start with a leading slash \"/\" or be an absolute URL (http:// or https://)`\n )\n }\n\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasRemoteMatch } =\n require('./match-remote-pattern') as typeof import('./match-remote-pattern')\n if (\n !hasRemoteMatch(config.domains!, config.remotePatterns!, parsedSrc)\n ) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\`, hostname \"${parsedSrc.hostname}\" is not configured under images in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host`\n )\n }\n }\n }\n }\n\n const q = findClosestQuality(quality, config)\n\n let deploymentId = getDeploymentId()\n return `${config.path}?url=${encodeURIComponent(src)}&w=${width}&q=${q}${\n src.startsWith('/') && deploymentId ? `&dpl=${deploymentId}` : ''\n }`\n}\n\n// We use this to determine if the import is the default loader\n// or a custom loader defined by the user in next.config.js\ndefaultLoader.__next_img_default = true\n\nexport default defaultLoader\n"],"names":["defaultLoader","config","src","width","quality","startsWith","includes","localPatterns","length","pathname","search","Error","process","env","NODE_ENV","missingValues","push","join","JSON","stringify","NEXT_RUNTIME","hasLocalMatch","require","domains","remotePatterns","parsedSrc","URL","err","console","error","hasRemoteMatch","hostname","q","findClosestQuality","deploymentId","getDeploymentId","path","encodeURIComponent","__next_img_default"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2850, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/use-merged-ref.ts"],"sourcesContent":["import { useCallback, useRef, type Ref } from 'react'\n\n// This is a compatibility hook to support React 18 and 19 refs.\n// In 19, a cleanup function from refs may be returned.\n// In 18, returning a cleanup function creates a warning.\n// Since we take userspace refs, we don't know ahead of time if a cleanup function will be returned.\n// This implements cleanup functions with the old behavior in 18.\n// We know refs are always called alternating with `null` and then `T`.\n// So a call with `null` means we need to call the previous cleanup functions.\nexport function useMergedRef<TElement>(\n refA: Ref<TElement>,\n refB: Ref<TElement>\n): Ref<TElement> {\n const cleanupA = useRef<(() => void) | null>(null)\n const cleanupB = useRef<(() => void) | null>(null)\n\n // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.\n // (this happens often if the user doesn't pass a ref to Link/Form/Image)\n // But this can cause us to leak a cleanup-ref into user code (previously via `<Link legacyBehavior>`),\n // and the user might pass that ref into ref-merging library that doesn't support cleanup refs\n // (because it hasn't been updated for React 19)\n // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.\n // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.\n return useCallback(\n (current: TElement | null): void => {\n if (current === null) {\n const cleanupFnA = cleanupA.current\n if (cleanupFnA) {\n cleanupA.current = null\n cleanupFnA()\n }\n const cleanupFnB = cleanupB.current\n if (cleanupFnB) {\n cleanupB.current = null\n cleanupFnB()\n }\n } else {\n if (refA) {\n cleanupA.current = applyRef(refA, current)\n }\n if (refB) {\n cleanupB.current = applyRef(refB, current)\n }\n }\n },\n [refA, refB]\n )\n}\n\nfunction applyRef<TElement>(\n refA: NonNullable<Ref<TElement>>,\n current: TElement\n) {\n if (typeof refA === 'function') {\n const cleanup = refA(current)\n if (typeof cleanup === 'function') {\n return cleanup\n } else {\n return () => refA(null)\n }\n } else {\n refA.current = current\n return () => {\n refA.current = null\n }\n }\n}\n"],"names":["useMergedRef","refA","refB","cleanupA","useRef","cleanupB","useCallback","current","cleanupFnA","cleanupFnB","applyRef","cleanup"],"mappings":";;;+BASgBA,gBAAAA;;;eAAAA;;;uBAT8B;AASvC,SAASA,aACdC,IAAmB,EACnBC,IAAmB;IAEnB,MAAMC,WAAWC,CAAAA,GAAAA,OAAAA,MAAM,EAAsB;IAC7C,MAAMC,WAAWD,CAAAA,GAAAA,OAAAA,MAAM,EAAsB;IAE7C,mFAAmF;IACnF,yEAAyE;IACzE,uGAAuG;IACvG,8FAA8F;IAC9F,gDAAgD;IAChD,mGAAmG;IACnG,wFAAwF;IACxF,OAAOE,CAAAA,GAAAA,OAAAA,WAAW,EAChB,CAACC;QACC,IAAIA,YAAY,MAAM;YACpB,MAAMC,aAAaL,SAASI,OAAO;YACnC,IAAIC,YAAY;gBACdL,SAASI,OAAO,GAAG;gBACnBC;YACF;YACA,MAAMC,aAAaJ,SAASE,OAAO;YACnC,IAAIE,YAAY;gBACdJ,SAASE,OAAO,GAAG;gBACnBE;YACF;QACF,OAAO;YACL,IAAIR,MAAM;gBACRE,SAASI,OAAO,GAAGG,SAAST,MAAMM;YACpC;YACA,IAAIL,MAAM;gBACRG,SAASE,OAAO,GAAGG,SAASR,MAAMK;YACpC;QACF;IACF,GACA;QAACN;QAAMC;KAAK;AAEhB;AAEA,SAASQ,SACPT,IAAgC,EAChCM,OAAiB;IAEjB,IAAI,OAAON,SAAS,YAAY;QAC9B,MAAMU,UAAUV,KAAKM;QACrB,IAAI,OAAOI,YAAY,YAAY;YACjC,OAAOA;QACT,OAAO;YACL,OAAO,IAAMV,KAAK;QACpB;IACF,OAAO;QACLA,KAAKM,OAAO,GAAGA;QACf,OAAO;YACLN,KAAKM,OAAO,GAAG;QACjB;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 2921, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/image-component.tsx"],"sourcesContent":["'use client'\n\nimport React, {\n useRef,\n useEffect,\n useCallback,\n useContext,\n useMemo,\n useState,\n forwardRef,\n use,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport Head from '../shared/lib/head'\nimport { getImgProps } from '../shared/lib/get-img-props'\nimport type {\n ImageProps,\n ImgProps,\n OnLoad,\n OnLoadingComplete,\n PlaceholderValue,\n} from '../shared/lib/get-img-props'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n} from '../shared/lib/image-config'\nimport { imageConfigDefault } from '../shared/lib/image-config'\nimport { ImageConfigContext } from '../shared/lib/image-config-context.shared-runtime'\nimport { warnOnce } from '../shared/lib/utils/warn-once'\nimport { RouterContext } from '../shared/lib/router-context.shared-runtime'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\nimport { useMergedRef } from './use-merged-ref'\n\n// This is replaced by webpack define plugin\nconst configEnv = process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete\n\nif (typeof window === 'undefined') {\n ;(globalThis as any).__NEXT_IMAGE_IMPORTED = true\n}\n\nexport type { ImageLoaderProps }\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\ntype ImgElementWithDataProp = HTMLImageElement & {\n 'data-loaded-src': string | undefined\n}\n\ntype ImageElementProps = ImgProps & {\n unoptimized: boolean\n placeholder: PlaceholderValue\n onLoadRef: React.MutableRefObject<OnLoad | undefined>\n onLoadingCompleteRef: React.MutableRefObject<OnLoadingComplete | undefined>\n setBlurComplete: (b: boolean) => void\n setShowAltText: (b: boolean) => void\n sizesInput: string | undefined\n}\n\n// See https://stackoverflow.com/q/39777833/266535 for why we use this ref\n// handler instead of the img's onLoad attribute.\nfunction handleLoading(\n img: ImgElementWithDataProp,\n placeholder: PlaceholderValue,\n onLoadRef: React.MutableRefObject<OnLoad | undefined>,\n onLoadingCompleteRef: React.MutableRefObject<OnLoadingComplete | undefined>,\n setBlurComplete: (b: boolean) => void,\n unoptimized: boolean,\n sizesInput: string | undefined\n) {\n const src = img?.src\n if (!img || img['data-loaded-src'] === src) {\n return\n }\n img['data-loaded-src'] = src\n const p = 'decode' in img ? img.decode() : Promise.resolve()\n p.catch(() => {}).then(() => {\n if (!img.parentElement || !img.isConnected) {\n // Exit early in case of race condition:\n // - onload() is called\n // - decode() is called but incomplete\n // - unmount is called\n // - decode() completes\n return\n }\n if (placeholder !== 'empty') {\n setBlurComplete(true)\n }\n if (onLoadRef?.current) {\n // Since we don't have the SyntheticEvent here,\n // we must create one with the same shape.\n // See https://reactjs.org/docs/events.html\n const event = new Event('load')\n Object.defineProperty(event, 'target', { writable: false, value: img })\n let prevented = false\n let stopped = false\n onLoadRef.current({\n ...event,\n nativeEvent: event,\n currentTarget: img,\n target: img,\n isDefaultPrevented: () => prevented,\n isPropagationStopped: () => stopped,\n persist: () => {},\n preventDefault: () => {\n prevented = true\n event.preventDefault()\n },\n stopPropagation: () => {\n stopped = true\n event.stopPropagation()\n },\n })\n }\n if (onLoadingCompleteRef?.current) {\n onLoadingCompleteRef.current(img)\n }\n if (process.env.NODE_ENV !== 'production') {\n const origSrc = new URL(src, 'http://n').searchParams.get('url') || src\n if (img.getAttribute('data-nimg') === 'fill') {\n if (!unoptimized && (!sizesInput || sizesInput === '100vw')) {\n let widthViewportRatio =\n img.getBoundingClientRect().width / window.innerWidth\n if (widthViewportRatio < 0.6) {\n if (sizesInput === '100vw') {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" prop and \"sizes\" prop of \"100vw\", but image is not rendered at full viewport width. Please adjust \"sizes\" to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n } else {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" but is missing \"sizes\" prop. Please add it to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n }\n }\n }\n if (img.parentElement) {\n const { position } = window.getComputedStyle(img.parentElement)\n const valid = ['absolute', 'fixed', 'relative']\n if (!valid.includes(position)) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and parent element with invalid \"position\". Provided \"${position}\" should be one of ${valid\n .map(String)\n .join(',')}.`\n )\n }\n }\n if (img.height === 0) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and a height value of 0. This is likely because the parent element of the image has not been styled to have a set height.`\n )\n }\n }\n\n const heightModified =\n img.height.toString() !== img.getAttribute('height')\n const widthModified = img.width.toString() !== img.getAttribute('width')\n if (\n (heightModified && !widthModified) ||\n (!heightModified && widthModified)\n ) {\n warnOnce(\n `Image with src \"${origSrc}\" has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: \"auto\"' or 'height: \"auto\"' to maintain the aspect ratio.`\n )\n }\n }\n })\n}\n\nfunction getDynamicProps(\n fetchPriority?: string\n): Record<string, string | undefined> {\n if (Boolean(use)) {\n // In React 19.0.0 or newer, we must use camelCase\n // prop to avoid \"Warning: Invalid DOM property\".\n // See https://github.com/facebook/react/pull/25927\n return { fetchPriority }\n }\n // In React 18.2.0 or older, we must use lowercase prop\n // to avoid \"Warning: Invalid DOM property\".\n return { fetchpriority: fetchPriority }\n}\n\nconst ImageElement = forwardRef<HTMLImageElement | null, ImageElementProps>(\n (\n {\n src,\n srcSet,\n sizes,\n height,\n width,\n decoding,\n className,\n style,\n fetchPriority,\n placeholder,\n loading,\n unoptimized,\n fill,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n setShowAltText,\n sizesInput,\n onLoad,\n onError,\n ...rest\n },\n forwardedRef\n ) => {\n const ownRef = useCallback(\n (img: ImgElementWithDataProp | null) => {\n if (!img) {\n return\n }\n if (onError) {\n // If the image has an error before react hydrates, then the error is lost.\n // The workaround is to wait until the image is mounted which is after hydration,\n // then we set the src again to trigger the error handler (if there was an error).\n // eslint-disable-next-line no-self-assign\n img.src = img.src\n }\n if (process.env.NODE_ENV !== 'production') {\n if (!src) {\n console.error(`Image is missing required \"src\" property:`, img)\n }\n if (img.getAttribute('alt') === null) {\n console.error(\n `Image is missing required \"alt\" property. Please add Alternative Text to describe the image for screen readers and search engines.`\n )\n }\n }\n if (img.complete) {\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }\n },\n [\n src,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n onError,\n unoptimized,\n sizesInput,\n ]\n )\n\n const ref = useMergedRef(forwardedRef, ownRef)\n\n return (\n <img\n {...rest}\n {...getDynamicProps(fetchPriority)}\n // It's intended to keep `loading` before `src` because React updates\n // props in order which causes Safari/Firefox to not lazy load properly.\n // See https://github.com/facebook/react/issues/25883\n loading={loading}\n width={width}\n height={height}\n decoding={decoding}\n data-nimg={fill ? 'fill' : '1'}\n className={className}\n style={style}\n // It's intended to keep `src` the last attribute because React updates\n // attributes in order. If we keep `src` the first one, Safari will\n // immediately start to fetch `src`, before `sizes` and `srcSet` are even\n // updated by React. That causes multiple unnecessary requests if `srcSet`\n // and `sizes` are defined.\n // This bug cannot be reproduced in Chrome or Firefox.\n sizes={sizes}\n srcSet={srcSet}\n src={src}\n ref={ref}\n onLoad={(event) => {\n const img = event.currentTarget as ImgElementWithDataProp\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }}\n onError={(event) => {\n // if the real image fails to load, this will ensure \"alt\" is visible\n setShowAltText(true)\n if (placeholder !== 'empty') {\n // If the real image fails to load, this will still remove the placeholder.\n setBlurComplete(true)\n }\n if (onError) {\n onError(event)\n }\n }}\n />\n )\n }\n)\n\nfunction ImagePreload({\n isAppRouter,\n imgAttributes,\n}: {\n isAppRouter: boolean\n imgAttributes: ImgProps\n}) {\n const opts: ReactDOM.PreloadOptions = {\n as: 'image',\n imageSrcSet: imgAttributes.srcSet,\n imageSizes: imgAttributes.sizes,\n crossOrigin: imgAttributes.crossOrigin,\n referrerPolicy: imgAttributes.referrerPolicy,\n ...getDynamicProps(imgAttributes.fetchPriority),\n }\n\n if (isAppRouter && ReactDOM.preload) {\n ReactDOM.preload(imgAttributes.src, opts)\n return null\n }\n\n return (\n <Head>\n <link\n key={\n '__nimg-' +\n imgAttributes.src +\n imgAttributes.srcSet +\n imgAttributes.sizes\n }\n rel=\"preload\"\n // Note how we omit the `href` attribute, as it would only be relevant\n // for browsers that do not support `imagesrcset`, and in those cases\n // it would cause the incorrect image to be preloaded.\n //\n // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-imagesrcset\n href={imgAttributes.srcSet ? undefined : imgAttributes.src}\n {...opts}\n />\n </Head>\n )\n}\n\n/**\n * The `Image` component is used to optimize images.\n *\n * Read more: [Next.js docs: `Image`](https://nextjs.org/docs/app/api-reference/components/image)\n */\nexport const Image = forwardRef<HTMLImageElement | null, ImageProps>(\n (props, forwardedRef) => {\n const pagesRouter = useContext(RouterContext)\n // We're in the app directory if there is no pages router.\n const isAppRouter = !pagesRouter\n\n const configContext = useContext(ImageConfigContext)\n const config = useMemo(() => {\n const c = configEnv || configContext || imageConfigDefault\n\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n return {\n ...c,\n allSizes,\n deviceSizes,\n qualities,\n // During the SSR, configEnv (__NEXT_IMAGE_OPTS) does not include\n // security sensitive configs like `localPatterns`, which is needed\n // during the server render to ensure it's validated. Therefore use\n // configContext, which holds the config from the server for validation.\n localPatterns:\n typeof window === 'undefined'\n ? configContext?.localPatterns\n : c.localPatterns,\n }\n }, [configContext])\n\n const { onLoad, onLoadingComplete } = props\n const onLoadRef = useRef(onLoad)\n\n useEffect(() => {\n onLoadRef.current = onLoad\n }, [onLoad])\n\n const onLoadingCompleteRef = useRef(onLoadingComplete)\n\n useEffect(() => {\n onLoadingCompleteRef.current = onLoadingComplete\n }, [onLoadingComplete])\n\n const [blurComplete, setBlurComplete] = useState(false)\n const [showAltText, setShowAltText] = useState(false)\n const { props: imgAttributes, meta: imgMeta } = getImgProps(props, {\n defaultLoader,\n imgConf: config,\n blurComplete,\n showAltText,\n })\n\n return (\n <>\n {\n <ImageElement\n {...imgAttributes}\n unoptimized={imgMeta.unoptimized}\n placeholder={imgMeta.placeholder}\n fill={imgMeta.fill}\n onLoadRef={onLoadRef}\n onLoadingCompleteRef={onLoadingCompleteRef}\n setBlurComplete={setBlurComplete}\n setShowAltText={setShowAltText}\n sizesInput={props.sizes}\n ref={forwardedRef}\n />\n }\n {imgMeta.preload ? (\n <ImagePreload\n isAppRouter={isAppRouter}\n imgAttributes={imgAttributes}\n />\n ) : null}\n </>\n )\n }\n)\n"],"names":["Image","configEnv","process","env","__NEXT_IMAGE_OPTS","window","globalThis","__NEXT_IMAGE_IMPORTED","handleLoading","img","placeholder","onLoadRef","onLoadingCompleteRef","setBlurComplete","unoptimized","sizesInput","src","p","decode","Promise","resolve","catch","then","parentElement","isConnected","current","event","Event","Object","defineProperty","writable","value","prevented","stopped","nativeEvent","currentTarget","target","isDefaultPrevented","isPropagationStopped","persist","preventDefault","stopPropagation","NODE_ENV","origSrc","URL","searchParams","get","getAttribute","widthViewportRatio","getBoundingClientRect","width","innerWidth","warnOnce","position","getComputedStyle","valid","includes","map","String","join","height","heightModified","toString","widthModified","getDynamicProps","fetchPriority","Boolean","use","fetchpriority","ImageElement","forwardRef","srcSet","sizes","decoding","className","style","loading","fill","setShowAltText","onLoad","onError","rest","forwardedRef","ownRef","useCallback","console","error","complete","ref","useMergedRef","data-nimg","ImagePreload","isAppRouter","imgAttributes","opts","as","imageSrcSet","imageSizes","crossOrigin","referrerPolicy","ReactDOM","preload","Head","link","rel","href","undefined","props","pagesRouter","useContext","RouterContext","configContext","ImageConfigContext","config","useMemo","c","imageConfigDefault","allSizes","deviceSizes","sort","a","b","qualities","localPatterns","onLoadingComplete","useRef","useEffect","blurComplete","useState","showAltText","meta","imgMeta","getImgProps","defaultLoader","imgConf"],"mappings":"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","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_91333dfc._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_91333dfc._.js deleted file mode 100644 index 0a311c3..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_91333dfc._.js +++ /dev/null @@ -1,21446 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is no backslash - * escaping slashes in the path. Example: - * - `foo\/bar\/baz` -> `foo/bar/baz` - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "normalizePathSep", { - enumerable: true, - get: function() { - return normalizePathSep; - } -}); -function normalizePathSep(path) { - return path.replace(/\\/g, '/'); -} //# sourceMappingURL=normalize-path-sep.js.map -}), -"[project]/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is a leading slash. - * If there is not a leading slash, one is added, otherwise it is noop. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ensureLeadingSlash", { - enumerable: true, - get: function() { - return ensureLeadingSlash; - } -}); -function ensureLeadingSlash(path) { - return path.startsWith('/') ? path : `/${path}`; -} //# sourceMappingURL=ensure-leading-slash.js.map -}), -"[project]/node_modules/next/dist/shared/lib/segment.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DEFAULT_SEGMENT_KEY: null, - NOT_FOUND_SEGMENT_KEY: null, - PAGE_SEGMENT_KEY: null, - addSearchParamsIfPageSegment: null, - computeSelectedLayoutSegment: null, - getSegmentValue: null, - getSelectedLayoutSegmentPath: null, - isGroupSegment: null, - isParallelRouteSegment: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DEFAULT_SEGMENT_KEY: function() { - return DEFAULT_SEGMENT_KEY; - }, - NOT_FOUND_SEGMENT_KEY: function() { - return NOT_FOUND_SEGMENT_KEY; - }, - PAGE_SEGMENT_KEY: function() { - return PAGE_SEGMENT_KEY; - }, - addSearchParamsIfPageSegment: function() { - return addSearchParamsIfPageSegment; - }, - computeSelectedLayoutSegment: function() { - return computeSelectedLayoutSegment; - }, - getSegmentValue: function() { - return getSegmentValue; - }, - getSelectedLayoutSegmentPath: function() { - return getSelectedLayoutSegmentPath; - }, - isGroupSegment: function() { - return isGroupSegment; - }, - isParallelRouteSegment: function() { - return isParallelRouteSegment; - } -}); -function getSegmentValue(segment) { - return Array.isArray(segment) ? segment[1] : segment; -} -function isGroupSegment(segment) { - // Use array[0] for performant purpose - return segment[0] === '(' && segment.endsWith(')'); -} -function isParallelRouteSegment(segment) { - return segment.startsWith('@') && segment !== '@children'; -} -function addSearchParamsIfPageSegment(segment, searchParams) { - const isPageSegment = segment.includes(PAGE_SEGMENT_KEY); - if (isPageSegment) { - const stringifiedQuery = JSON.stringify(searchParams); - return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY; - } - return segment; -} -function computeSelectedLayoutSegment(segments, parallelRouteKey) { - if (!segments || segments.length === 0) { - return null; - } - // For 'children', use first segment; for other parallel routes, use last segment - const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1]; - // If the default slot is showing, return null since it's not technically "selected" (it's a fallback) - // Returning an internal value like `__DEFAULT__` would be confusing - return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment; -} -function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) { - let node; - if (first) { - // Use the provided parallel route key on the first parallel route - node = tree[1][parallelRouteKey]; - } else { - // After first parallel route prefer children, if there's no children pick the first parallel route. - const parallelRoutes = tree[1]; - node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]; - } - if (!node) return segmentPath; - const segment = node[0]; - let segmentValue = getSegmentValue(segment); - if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) { - return segmentPath; - } - segmentPath.push(segmentValue); - return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath); -} -const PAGE_SEGMENT_KEY = '__PAGE__'; -const DEFAULT_SEGMENT_KEY = '__DEFAULT__'; -const NOT_FOUND_SEGMENT_KEY = '/_not-found'; //# sourceMappingURL=segment.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - normalizeAppPath: null, - normalizeRscURL: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - normalizeAppPath: function() { - return normalizeAppPath; - }, - normalizeRscURL: function() { - return normalizeRscURL; - } -}); -const _ensureleadingslash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js [app-rsc] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-rsc] (ecmascript)"); -function normalizeAppPath(route) { - return (0, _ensureleadingslash.ensureLeadingSlash)(route.split('/').reduce((pathname, segment, index, segments)=>{ - // Empty segments are ignored. - if (!segment) { - return pathname; - } - // Groups are ignored. - if ((0, _segment.isGroupSegment)(segment)) { - return pathname; - } - // Parallel segments are ignored. - if (segment[0] === '@') { - return pathname; - } - // The last segment (if it's a leaf) should be ignored. - if ((segment === 'page' || segment === 'route') && index === segments.length - 1) { - return pathname; - } - return `${pathname}/${segment}`; - }, '')); -} -function normalizeRscURL(url) { - return url.replace(/\.rsc($|\?)/, '$1'); -} //# sourceMappingURL=app-paths.js.map -}), -"[project]/node_modules/next/dist/lib/is-app-route-route.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "isAppRouteRoute", { - enumerable: true, - get: function() { - return isAppRouteRoute; - } -}); -function isAppRouteRoute(route) { - return route.endsWith('/route'); -} //# sourceMappingURL=is-app-route-route.js.map -}), -"[project]/node_modules/next/dist/lib/metadata/is-metadata-route.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DEFAULT_METADATA_ROUTE_EXTENSIONS: null, - STATIC_METADATA_IMAGES: null, - getExtensionRegexString: null, - isMetadataPage: null, - isMetadataRoute: null, - isMetadataRouteFile: null, - isStaticMetadataFile: null, - isStaticMetadataRoute: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DEFAULT_METADATA_ROUTE_EXTENSIONS: function() { - return DEFAULT_METADATA_ROUTE_EXTENSIONS; - }, - STATIC_METADATA_IMAGES: function() { - return STATIC_METADATA_IMAGES; - }, - getExtensionRegexString: function() { - return getExtensionRegexString; - }, - isMetadataPage: function() { - return isMetadataPage; - }, - isMetadataRoute: function() { - return isMetadataRoute; - }, - isMetadataRouteFile: function() { - return isMetadataRouteFile; - }, - isStaticMetadataFile: function() { - return isStaticMetadataFile; - }, - isStaticMetadataRoute: function() { - return isStaticMetadataRoute; - } -}); -const _normalizepathsep = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js [app-rsc] (ecmascript)"); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -const _isapprouteroute = __turbopack_context__.r("[project]/node_modules/next/dist/lib/is-app-route-route.js [app-rsc] (ecmascript)"); -const STATIC_METADATA_IMAGES = { - icon: { - filename: 'icon', - extensions: [ - 'ico', - 'jpg', - 'jpeg', - 'png', - 'svg' - ] - }, - apple: { - filename: 'apple-icon', - extensions: [ - 'jpg', - 'jpeg', - 'png' - ] - }, - favicon: { - filename: 'favicon', - extensions: [ - 'ico' - ] - }, - openGraph: { - filename: 'opengraph-image', - extensions: [ - 'jpg', - 'jpeg', - 'png', - 'gif' - ] - }, - twitter: { - filename: 'twitter-image', - extensions: [ - 'jpg', - 'jpeg', - 'png', - 'gif' - ] - } -}; -const DEFAULT_METADATA_ROUTE_EXTENSIONS = [ - 'js', - 'jsx', - 'ts', - 'tsx' -]; -const getExtensionRegexString = (staticExtensions, dynamicExtensions)=>{ - let result; - // If there's no possible multi dynamic routes, will not match any <name>[].<ext> files - if (!dynamicExtensions || dynamicExtensions.length === 0) { - result = `(\\.(?:${staticExtensions.join('|')}))`; - } else { - result = `(?:\\.(${staticExtensions.join('|')})|(\\.(${dynamicExtensions.join('|')})))`; - } - return result; -}; -function isStaticMetadataFile(appDirRelativePath) { - return isMetadataRouteFile(appDirRelativePath, [], true); -} -// Pre-compiled static regexes for common cases -const FAVICON_REGEX = /^[\\/]favicon\.ico$/; -const ROBOTS_TXT_REGEX = /^[\\/]robots\.txt$/; -const MANIFEST_JSON_REGEX = /^[\\/]manifest\.json$/; -const MANIFEST_WEBMANIFEST_REGEX = /^[\\/]manifest\.webmanifest$/; -const SITEMAP_XML_REGEX = /[\\/]sitemap\.xml$/; -// Cache for compiled regex patterns based on parameters -const compiledRegexCache = new Map(); -// Fast path checks for common metadata files -function fastPathCheck(normalizedPath) { - // Check favicon.ico first (most common) - if (FAVICON_REGEX.test(normalizedPath)) return true; - // Check other common static files - if (ROBOTS_TXT_REGEX.test(normalizedPath)) return true; - if (MANIFEST_JSON_REGEX.test(normalizedPath)) return true; - if (MANIFEST_WEBMANIFEST_REGEX.test(normalizedPath)) return true; - if (SITEMAP_XML_REGEX.test(normalizedPath)) return true; - // Quick negative check - if it doesn't contain any metadata keywords, skip - if (!normalizedPath.includes('robots') && !normalizedPath.includes('manifest') && !normalizedPath.includes('sitemap') && !normalizedPath.includes('icon') && !normalizedPath.includes('apple-icon') && !normalizedPath.includes('opengraph-image') && !normalizedPath.includes('twitter-image') && !normalizedPath.includes('favicon')) { - return false; - } - return null // Continue with full regex matching - ; -} -function getCompiledRegexes(pageExtensions, strictlyMatchExtensions) { - // Create cache key - const cacheKey = `${pageExtensions.join(',')}|${strictlyMatchExtensions}`; - const cached = compiledRegexCache.get(cacheKey); - if (cached) { - return cached; - } - // Pre-compute common strings - const trailingMatcher = strictlyMatchExtensions ? '$' : '?$'; - const variantsMatcher = '\\d?'; - const groupSuffix = strictlyMatchExtensions ? '' : '(-\\w{6})?'; - const suffixMatcher = variantsMatcher + groupSuffix; - // Pre-compute extension arrays to avoid repeated concatenation - const robotsExts = pageExtensions.length > 0 ? [ - ...pageExtensions, - 'txt' - ] : [ - 'txt' - ]; - const manifestExts = pageExtensions.length > 0 ? [ - ...pageExtensions, - 'webmanifest', - 'json' - ] : [ - 'webmanifest', - 'json' - ]; - const regexes = [ - new RegExp(`^[\\\\/]robots${getExtensionRegexString(robotsExts, null)}${trailingMatcher}`), - new RegExp(`^[\\\\/]manifest${getExtensionRegexString(manifestExts, null)}${trailingMatcher}`), - // FAVICON_REGEX removed - already handled in fastPathCheck - new RegExp(`[\\\\/]sitemap${getExtensionRegexString([ - 'xml' - ], pageExtensions)}${trailingMatcher}`), - new RegExp(`[\\\\/]icon${suffixMatcher}${getExtensionRegexString(STATIC_METADATA_IMAGES.icon.extensions, pageExtensions)}${trailingMatcher}`), - new RegExp(`[\\\\/]apple-icon${suffixMatcher}${getExtensionRegexString(STATIC_METADATA_IMAGES.apple.extensions, pageExtensions)}${trailingMatcher}`), - new RegExp(`[\\\\/]opengraph-image${suffixMatcher}${getExtensionRegexString(STATIC_METADATA_IMAGES.openGraph.extensions, pageExtensions)}${trailingMatcher}`), - new RegExp(`[\\\\/]twitter-image${suffixMatcher}${getExtensionRegexString(STATIC_METADATA_IMAGES.twitter.extensions, pageExtensions)}${trailingMatcher}`) - ]; - compiledRegexCache.set(cacheKey, regexes); - return regexes; -} -function isMetadataRouteFile(appDirRelativePath, pageExtensions, strictlyMatchExtensions) { - // Early exit for empty or obviously non-metadata paths - if (!appDirRelativePath || appDirRelativePath.length < 2) { - return false; - } - const normalizedPath = (0, _normalizepathsep.normalizePathSep)(appDirRelativePath); - // Fast path check for common cases - const fastResult = fastPathCheck(normalizedPath); - if (fastResult !== null) { - return fastResult; - } - // Get compiled regexes from cache - const regexes = getCompiledRegexes(pageExtensions, strictlyMatchExtensions); - // Use for loop instead of .some() for better performance - for(let i = 0; i < regexes.length; i++){ - if (regexes[i].test(normalizedPath)) { - return true; - } - } - return false; -} -function isStaticMetadataRoute(route) { - // extract ext with regex - const pathname = route.replace(/\/route$/, ''); - const matched = (0, _isapprouteroute.isAppRouteRoute)(route) && isMetadataRouteFile(pathname, [], true) && // These routes can either be built by static or dynamic entrypoints, - // so we assume they're dynamic - pathname !== '/robots.txt' && pathname !== '/manifest.webmanifest' && !pathname.endsWith('/sitemap.xml'); - return matched; -} -function isMetadataPage(page) { - const matched = !(0, _isapprouteroute.isAppRouteRoute)(page) && isMetadataRouteFile(page, [], false); - return matched; -} -function isMetadataRoute(route) { - let page = (0, _apppaths.normalizeAppPath)(route).replace(/^\/?app\//, '') // Remove the dynamic route id - .replace('/[__metadata_id__]', '') // Remove the /route suffix - .replace(/\/route$/, ''); - if (page[0] !== '/') page = '/' + page; - const matched = (0, _isapprouteroute.isAppRouteRoute)(route) && isMetadataRouteFile(page, [], false); - return matched; -} //# sourceMappingURL=is-metadata-route.js.map -}), -"[project]/node_modules/next/dist/shared/lib/isomorphic/path.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * This module is for next.js server internal usage of path module. - * It will use native path module for nodejs runtime. - * It will use path-browserify polyfill for edge runtime. - */ let path; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - path = __turbopack_context__.r("[externals]/path [external] (path, cjs)"); -} -module.exports = path; //# sourceMappingURL=path.js.map -}), -"[project]/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "normalizeLocalePath", { - enumerable: true, - get: function() { - return normalizeLocalePath; - } -}); -/** - * A cache of lowercased locales for each list of locales. This is stored as a - * WeakMap so if the locales are garbage collected, the cache entry will be - * removed as well. - */ const cache = new WeakMap(); -function normalizeLocalePath(pathname, locales) { - // If locales is undefined, return the pathname as is. - if (!locales) return { - pathname - }; - // Get the cached lowercased locales or create a new cache entry. - let lowercasedLocales = cache.get(locales); - if (!lowercasedLocales) { - lowercasedLocales = locales.map((locale)=>locale.toLowerCase()); - cache.set(locales, lowercasedLocales); - } - let detectedLocale; - // The first segment will be empty, because it has a leading `/`. If - // there is no further segment, there is no locale (or it's the default). - const segments = pathname.split('/', 2); - // If there's no second segment (ie, the pathname is just `/`), there's no - // locale. - if (!segments[1]) return { - pathname - }; - // The second segment will contain the locale part if any. - const segment = segments[1].toLowerCase(); - // See if the segment matches one of the locales. If it doesn't, there is - // no locale (or it's the default). - const index = lowercasedLocales.indexOf(segment); - if (index < 0) return { - pathname - }; - // Return the case-sensitive locale. - detectedLocale = locales[index]; - // Remove the `/${locale}` part of the pathname. - pathname = pathname.slice(detectedLocale.length + 1) || '/'; - return { - pathname, - detectedLocale - }; -} //# sourceMappingURL=normalize-locale-path.js.map -}), -"[project]/node_modules/next/dist/compiled/path-to-regexp/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/path-to-regexp") + "/"; - var e = {}; - (()=>{ - var n = e; - Object.defineProperty(n, "__esModule", { - value: true - }); - n.pathToRegexp = n.tokensToRegexp = n.regexpToFunction = n.match = n.tokensToFunction = n.compile = n.parse = void 0; - function lexer(e) { - var n = []; - var r = 0; - while(r < e.length){ - var t = e[r]; - if (t === "*" || t === "+" || t === "?") { - n.push({ - type: "MODIFIER", - index: r, - value: e[r++] - }); - continue; - } - if (t === "\\") { - n.push({ - type: "ESCAPED_CHAR", - index: r++, - value: e[r++] - }); - continue; - } - if (t === "{") { - n.push({ - type: "OPEN", - index: r, - value: e[r++] - }); - continue; - } - if (t === "}") { - n.push({ - type: "CLOSE", - index: r, - value: e[r++] - }); - continue; - } - if (t === ":") { - var a = ""; - var i = r + 1; - while(i < e.length){ - var o = e.charCodeAt(i); - if (o >= 48 && o <= 57 || o >= 65 && o <= 90 || o >= 97 && o <= 122 || o === 95) { - a += e[i++]; - continue; - } - break; - } - if (!a) throw new TypeError("Missing parameter name at ".concat(r)); - n.push({ - type: "NAME", - index: r, - value: a - }); - r = i; - continue; - } - if (t === "(") { - var c = 1; - var f = ""; - var i = r + 1; - if (e[i] === "?") { - throw new TypeError('Pattern cannot start with "?" at '.concat(i)); - } - while(i < e.length){ - if (e[i] === "\\") { - f += e[i++] + e[i++]; - continue; - } - if (e[i] === ")") { - c--; - if (c === 0) { - i++; - break; - } - } else if (e[i] === "(") { - c++; - if (e[i + 1] !== "?") { - throw new TypeError("Capturing groups are not allowed at ".concat(i)); - } - } - f += e[i++]; - } - if (c) throw new TypeError("Unbalanced pattern at ".concat(r)); - if (!f) throw new TypeError("Missing pattern at ".concat(r)); - n.push({ - type: "PATTERN", - index: r, - value: f - }); - r = i; - continue; - } - n.push({ - type: "CHAR", - index: r, - value: e[r++] - }); - } - n.push({ - type: "END", - index: r, - value: "" - }); - return n; - } - function parse(e, n) { - if (n === void 0) { - n = {}; - } - var r = lexer(e); - var t = n.prefixes, a = t === void 0 ? "./" : t, i = n.delimiter, o = i === void 0 ? "/#?" : i; - var c = []; - var f = 0; - var u = 0; - var p = ""; - var tryConsume = function(e) { - if (u < r.length && r[u].type === e) return r[u++].value; - }; - var mustConsume = function(e) { - var n = tryConsume(e); - if (n !== undefined) return n; - var t = r[u], a = t.type, i = t.index; - throw new TypeError("Unexpected ".concat(a, " at ").concat(i, ", expected ").concat(e)); - }; - var consumeText = function() { - var e = ""; - var n; - while(n = tryConsume("CHAR") || tryConsume("ESCAPED_CHAR")){ - e += n; - } - return e; - }; - var isSafe = function(e) { - for(var n = 0, r = o; n < r.length; n++){ - var t = r[n]; - if (e.indexOf(t) > -1) return true; - } - return false; - }; - var safePattern = function(e) { - var n = c[c.length - 1]; - var r = e || (n && typeof n === "string" ? n : ""); - if (n && !r) { - throw new TypeError('Must have text between two parameters, missing text after "'.concat(n.name, '"')); - } - if (!r || isSafe(r)) return "[^".concat(escapeString(o), "]+?"); - return "(?:(?!".concat(escapeString(r), ")[^").concat(escapeString(o), "])+?"); - }; - while(u < r.length){ - var v = tryConsume("CHAR"); - var s = tryConsume("NAME"); - var d = tryConsume("PATTERN"); - if (s || d) { - var g = v || ""; - if (a.indexOf(g) === -1) { - p += g; - g = ""; - } - if (p) { - c.push(p); - p = ""; - } - c.push({ - name: s || f++, - prefix: g, - suffix: "", - pattern: d || safePattern(g), - modifier: tryConsume("MODIFIER") || "" - }); - continue; - } - var x = v || tryConsume("ESCAPED_CHAR"); - if (x) { - p += x; - continue; - } - if (p) { - c.push(p); - p = ""; - } - var h = tryConsume("OPEN"); - if (h) { - var g = consumeText(); - var l = tryConsume("NAME") || ""; - var m = tryConsume("PATTERN") || ""; - var T = consumeText(); - mustConsume("CLOSE"); - c.push({ - name: l || (m ? f++ : ""), - pattern: l && !m ? safePattern(g) : m, - prefix: g, - suffix: T, - modifier: tryConsume("MODIFIER") || "" - }); - continue; - } - mustConsume("END"); - } - return c; - } - n.parse = parse; - function compile(e, n) { - return tokensToFunction(parse(e, n), n); - } - n.compile = compile; - function tokensToFunction(e, n) { - if (n === void 0) { - n = {}; - } - var r = flags(n); - var t = n.encode, a = t === void 0 ? function(e) { - return e; - } : t, i = n.validate, o = i === void 0 ? true : i; - var c = e.map(function(e) { - if (typeof e === "object") { - return new RegExp("^(?:".concat(e.pattern, ")$"), r); - } - }); - return function(n) { - var r = ""; - for(var t = 0; t < e.length; t++){ - var i = e[t]; - if (typeof i === "string") { - r += i; - continue; - } - var f = n ? n[i.name] : undefined; - var u = i.modifier === "?" || i.modifier === "*"; - var p = i.modifier === "*" || i.modifier === "+"; - if (Array.isArray(f)) { - if (!p) { - throw new TypeError('Expected "'.concat(i.name, '" to not repeat, but got an array')); - } - if (f.length === 0) { - if (u) continue; - throw new TypeError('Expected "'.concat(i.name, '" to not be empty')); - } - for(var v = 0; v < f.length; v++){ - var s = a(f[v], i); - if (o && !c[t].test(s)) { - throw new TypeError('Expected all "'.concat(i.name, '" to match "').concat(i.pattern, '", but got "').concat(s, '"')); - } - r += i.prefix + s + i.suffix; - } - continue; - } - if (typeof f === "string" || typeof f === "number") { - var s = a(String(f), i); - if (o && !c[t].test(s)) { - throw new TypeError('Expected "'.concat(i.name, '" to match "').concat(i.pattern, '", but got "').concat(s, '"')); - } - r += i.prefix + s + i.suffix; - continue; - } - if (u) continue; - var d = p ? "an array" : "a string"; - throw new TypeError('Expected "'.concat(i.name, '" to be ').concat(d)); - } - return r; - }; - } - n.tokensToFunction = tokensToFunction; - function match(e, n) { - var r = []; - var t = pathToRegexp(e, r, n); - return regexpToFunction(t, r, n); - } - n.match = match; - function regexpToFunction(e, n, r) { - if (r === void 0) { - r = {}; - } - var t = r.decode, a = t === void 0 ? function(e) { - return e; - } : t; - return function(r) { - var t = e.exec(r); - if (!t) return false; - var i = t[0], o = t.index; - var c = Object.create(null); - var _loop_1 = function(e) { - if (t[e] === undefined) return "continue"; - var r = n[e - 1]; - if (r.modifier === "*" || r.modifier === "+") { - c[r.name] = t[e].split(r.prefix + r.suffix).map(function(e) { - return a(e, r); - }); - } else { - c[r.name] = a(t[e], r); - } - }; - for(var f = 1; f < t.length; f++){ - _loop_1(f); - } - return { - path: i, - index: o, - params: c - }; - }; - } - n.regexpToFunction = regexpToFunction; - function escapeString(e) { - return e.replace(/([.+*?=^!:${}()[\]|/\\])/g, "\\$1"); - } - function flags(e) { - return e && e.sensitive ? "" : "i"; - } - function regexpToRegexp(e, n) { - if (!n) return e; - var r = /\((?:\?<(.*?)>)?(?!\?)/g; - var t = 0; - var a = r.exec(e.source); - while(a){ - n.push({ - name: a[1] || t++, - prefix: "", - suffix: "", - modifier: "", - pattern: "" - }); - a = r.exec(e.source); - } - return e; - } - function arrayToRegexp(e, n, r) { - var t = e.map(function(e) { - return pathToRegexp(e, n, r).source; - }); - return new RegExp("(?:".concat(t.join("|"), ")"), flags(r)); - } - function stringToRegexp(e, n, r) { - return tokensToRegexp(parse(e, r), n, r); - } - function tokensToRegexp(e, n, r) { - if (r === void 0) { - r = {}; - } - var t = r.strict, a = t === void 0 ? false : t, i = r.start, o = i === void 0 ? true : i, c = r.end, f = c === void 0 ? true : c, u = r.encode, p = u === void 0 ? function(e) { - return e; - } : u, v = r.delimiter, s = v === void 0 ? "/#?" : v, d = r.endsWith, g = d === void 0 ? "" : d; - var x = "[".concat(escapeString(g), "]|$"); - var h = "[".concat(escapeString(s), "]"); - var l = o ? "^" : ""; - for(var m = 0, T = e; m < T.length; m++){ - var E = T[m]; - if (typeof E === "string") { - l += escapeString(p(E)); - } else { - var w = escapeString(p(E.prefix)); - var y = escapeString(p(E.suffix)); - if (E.pattern) { - if (n) n.push(E); - if (w || y) { - if (E.modifier === "+" || E.modifier === "*") { - var R = E.modifier === "*" ? "?" : ""; - l += "(?:".concat(w, "((?:").concat(E.pattern, ")(?:").concat(y).concat(w, "(?:").concat(E.pattern, "))*)").concat(y, ")").concat(R); - } else { - l += "(?:".concat(w, "(").concat(E.pattern, ")").concat(y, ")").concat(E.modifier); - } - } else { - if (E.modifier === "+" || E.modifier === "*") { - throw new TypeError('Can not repeat "'.concat(E.name, '" without a prefix and suffix')); - } - l += "(".concat(E.pattern, ")").concat(E.modifier); - } - } else { - l += "(?:".concat(w).concat(y, ")").concat(E.modifier); - } - } - } - if (f) { - if (!a) l += "".concat(h, "?"); - l += !r.endsWith ? "$" : "(?=".concat(x, ")"); - } else { - var A = e[e.length - 1]; - var _ = typeof A === "string" ? h.indexOf(A[A.length - 1]) > -1 : A === undefined; - if (!a) { - l += "(?:".concat(h, "(?=").concat(x, "))?"); - } - if (!_) { - l += "(?=".concat(h, "|").concat(x, ")"); - } - } - return new RegExp(l, flags(r)); - } - n.tokensToRegexp = tokensToRegexp; - function pathToRegexp(e, n, r) { - if (e instanceof RegExp) return regexpToRegexp(e, n); - if (Array.isArray(e)) return arrayToRegexp(e, n, r); - return stringToRegexp(e, n, r); - } - n.pathToRegexp = pathToRegexp; - })(); - module.exports = e; -})(); -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/path-match.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getPathMatch", { - enumerable: true, - get: function() { - return getPathMatch; - } -}); -const _pathtoregexp = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/path-to-regexp/index.js [app-rsc] (ecmascript)"); -function getPathMatch(path, options) { - const keys = []; - const regexp = (0, _pathtoregexp.pathToRegexp)(path, keys, { - delimiter: '/', - sensitive: typeof options?.sensitive === 'boolean' ? options.sensitive : false, - strict: options?.strict - }); - const matcher = (0, _pathtoregexp.regexpToFunction)(options?.regexModifier ? new RegExp(options.regexModifier(regexp.source), regexp.flags) : regexp, keys); - /** - * A matcher function that will check if a given pathname matches the path - * given in the builder function. When the path does not match it will return - * `false` but if it does it will return an object with the matched params - * merged with the params provided in the second argument. - */ return (pathname, params)=>{ - // If no pathname is provided it's not a match. - if (typeof pathname !== 'string') return false; - const match = matcher(pathname); - // If the path did not match `false` will be returned. - if (!match) return false; - /** - * If unnamed params are not allowed they must be removed from - * the matched parameters. path-to-regexp uses "string" for named and - * "number" for unnamed parameters. - */ if (options?.removeUnnamedParams) { - for (const key of keys){ - if (typeof key.name === 'number') { - delete match.params[key.name]; - } - } - } - return { - ...params, - ...match.params - }; - }; -} //# sourceMappingURL=path-match.js.map -}), -"[project]/node_modules/next/dist/lib/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ACTION_SUFFIX: null, - APP_DIR_ALIAS: null, - CACHE_ONE_YEAR: null, - DOT_NEXT_ALIAS: null, - ESLINT_DEFAULT_DIRS: null, - GSP_NO_RETURNED_VALUE: null, - GSSP_COMPONENT_MEMBER_ERROR: null, - GSSP_NO_RETURNED_VALUE: null, - HTML_CONTENT_TYPE_HEADER: null, - INFINITE_CACHE: null, - INSTRUMENTATION_HOOK_FILENAME: null, - JSON_CONTENT_TYPE_HEADER: null, - MATCHED_PATH_HEADER: null, - MIDDLEWARE_FILENAME: null, - MIDDLEWARE_LOCATION_REGEXP: null, - NEXT_BODY_SUFFIX: null, - NEXT_CACHE_IMPLICIT_TAG_ID: null, - NEXT_CACHE_REVALIDATED_TAGS_HEADER: null, - NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER: null, - NEXT_CACHE_SOFT_TAG_MAX_LENGTH: null, - NEXT_CACHE_TAGS_HEADER: null, - NEXT_CACHE_TAG_MAX_ITEMS: null, - NEXT_CACHE_TAG_MAX_LENGTH: null, - NEXT_DATA_SUFFIX: null, - NEXT_INTERCEPTION_MARKER_PREFIX: null, - NEXT_META_SUFFIX: null, - NEXT_QUERY_PARAM_PREFIX: null, - NEXT_RESUME_HEADER: null, - NON_STANDARD_NODE_ENV: null, - PAGES_DIR_ALIAS: null, - PRERENDER_REVALIDATE_HEADER: null, - PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER: null, - PROXY_FILENAME: null, - PROXY_LOCATION_REGEXP: null, - PUBLIC_DIR_MIDDLEWARE_CONFLICT: null, - ROOT_DIR_ALIAS: null, - RSC_ACTION_CLIENT_WRAPPER_ALIAS: null, - RSC_ACTION_ENCRYPTION_ALIAS: null, - RSC_ACTION_PROXY_ALIAS: null, - RSC_ACTION_VALIDATE_ALIAS: null, - RSC_CACHE_WRAPPER_ALIAS: null, - RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS: null, - RSC_MOD_REF_PROXY_ALIAS: null, - RSC_SEGMENTS_DIR_SUFFIX: null, - RSC_SEGMENT_SUFFIX: null, - RSC_SUFFIX: null, - SERVER_PROPS_EXPORT_ERROR: null, - SERVER_PROPS_GET_INIT_PROPS_CONFLICT: null, - SERVER_PROPS_SSG_CONFLICT: null, - SERVER_RUNTIME: null, - SSG_FALLBACK_EXPORT_ERROR: null, - SSG_GET_INITIAL_PROPS_CONFLICT: null, - STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR: null, - TEXT_PLAIN_CONTENT_TYPE_HEADER: null, - UNSTABLE_REVALIDATE_RENAME_ERROR: null, - WEBPACK_LAYERS: null, - WEBPACK_RESOURCE_QUERIES: null, - WEB_SOCKET_MAX_RECONNECTIONS: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ACTION_SUFFIX: function() { - return ACTION_SUFFIX; - }, - APP_DIR_ALIAS: function() { - return APP_DIR_ALIAS; - }, - CACHE_ONE_YEAR: function() { - return CACHE_ONE_YEAR; - }, - DOT_NEXT_ALIAS: function() { - return DOT_NEXT_ALIAS; - }, - ESLINT_DEFAULT_DIRS: function() { - return ESLINT_DEFAULT_DIRS; - }, - GSP_NO_RETURNED_VALUE: function() { - return GSP_NO_RETURNED_VALUE; - }, - GSSP_COMPONENT_MEMBER_ERROR: function() { - return GSSP_COMPONENT_MEMBER_ERROR; - }, - GSSP_NO_RETURNED_VALUE: function() { - return GSSP_NO_RETURNED_VALUE; - }, - HTML_CONTENT_TYPE_HEADER: function() { - return HTML_CONTENT_TYPE_HEADER; - }, - INFINITE_CACHE: function() { - return INFINITE_CACHE; - }, - INSTRUMENTATION_HOOK_FILENAME: function() { - return INSTRUMENTATION_HOOK_FILENAME; - }, - JSON_CONTENT_TYPE_HEADER: function() { - return JSON_CONTENT_TYPE_HEADER; - }, - MATCHED_PATH_HEADER: function() { - return MATCHED_PATH_HEADER; - }, - MIDDLEWARE_FILENAME: function() { - return MIDDLEWARE_FILENAME; - }, - MIDDLEWARE_LOCATION_REGEXP: function() { - return MIDDLEWARE_LOCATION_REGEXP; - }, - NEXT_BODY_SUFFIX: function() { - return NEXT_BODY_SUFFIX; - }, - NEXT_CACHE_IMPLICIT_TAG_ID: function() { - return NEXT_CACHE_IMPLICIT_TAG_ID; - }, - NEXT_CACHE_REVALIDATED_TAGS_HEADER: function() { - return NEXT_CACHE_REVALIDATED_TAGS_HEADER; - }, - NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER: function() { - return NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER; - }, - NEXT_CACHE_SOFT_TAG_MAX_LENGTH: function() { - return NEXT_CACHE_SOFT_TAG_MAX_LENGTH; - }, - NEXT_CACHE_TAGS_HEADER: function() { - return NEXT_CACHE_TAGS_HEADER; - }, - NEXT_CACHE_TAG_MAX_ITEMS: function() { - return NEXT_CACHE_TAG_MAX_ITEMS; - }, - NEXT_CACHE_TAG_MAX_LENGTH: function() { - return NEXT_CACHE_TAG_MAX_LENGTH; - }, - NEXT_DATA_SUFFIX: function() { - return NEXT_DATA_SUFFIX; - }, - NEXT_INTERCEPTION_MARKER_PREFIX: function() { - return NEXT_INTERCEPTION_MARKER_PREFIX; - }, - NEXT_META_SUFFIX: function() { - return NEXT_META_SUFFIX; - }, - NEXT_QUERY_PARAM_PREFIX: function() { - return NEXT_QUERY_PARAM_PREFIX; - }, - NEXT_RESUME_HEADER: function() { - return NEXT_RESUME_HEADER; - }, - NON_STANDARD_NODE_ENV: function() { - return NON_STANDARD_NODE_ENV; - }, - PAGES_DIR_ALIAS: function() { - return PAGES_DIR_ALIAS; - }, - PRERENDER_REVALIDATE_HEADER: function() { - return PRERENDER_REVALIDATE_HEADER; - }, - PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER: function() { - return PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER; - }, - PROXY_FILENAME: function() { - return PROXY_FILENAME; - }, - PROXY_LOCATION_REGEXP: function() { - return PROXY_LOCATION_REGEXP; - }, - PUBLIC_DIR_MIDDLEWARE_CONFLICT: function() { - return PUBLIC_DIR_MIDDLEWARE_CONFLICT; - }, - ROOT_DIR_ALIAS: function() { - return ROOT_DIR_ALIAS; - }, - RSC_ACTION_CLIENT_WRAPPER_ALIAS: function() { - return RSC_ACTION_CLIENT_WRAPPER_ALIAS; - }, - RSC_ACTION_ENCRYPTION_ALIAS: function() { - return RSC_ACTION_ENCRYPTION_ALIAS; - }, - RSC_ACTION_PROXY_ALIAS: function() { - return RSC_ACTION_PROXY_ALIAS; - }, - RSC_ACTION_VALIDATE_ALIAS: function() { - return RSC_ACTION_VALIDATE_ALIAS; - }, - RSC_CACHE_WRAPPER_ALIAS: function() { - return RSC_CACHE_WRAPPER_ALIAS; - }, - RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS: function() { - return RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS; - }, - RSC_MOD_REF_PROXY_ALIAS: function() { - return RSC_MOD_REF_PROXY_ALIAS; - }, - RSC_SEGMENTS_DIR_SUFFIX: function() { - return RSC_SEGMENTS_DIR_SUFFIX; - }, - RSC_SEGMENT_SUFFIX: function() { - return RSC_SEGMENT_SUFFIX; - }, - RSC_SUFFIX: function() { - return RSC_SUFFIX; - }, - SERVER_PROPS_EXPORT_ERROR: function() { - return SERVER_PROPS_EXPORT_ERROR; - }, - SERVER_PROPS_GET_INIT_PROPS_CONFLICT: function() { - return SERVER_PROPS_GET_INIT_PROPS_CONFLICT; - }, - SERVER_PROPS_SSG_CONFLICT: function() { - return SERVER_PROPS_SSG_CONFLICT; - }, - SERVER_RUNTIME: function() { - return SERVER_RUNTIME; - }, - SSG_FALLBACK_EXPORT_ERROR: function() { - return SSG_FALLBACK_EXPORT_ERROR; - }, - SSG_GET_INITIAL_PROPS_CONFLICT: function() { - return SSG_GET_INITIAL_PROPS_CONFLICT; - }, - STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR: function() { - return STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR; - }, - TEXT_PLAIN_CONTENT_TYPE_HEADER: function() { - return TEXT_PLAIN_CONTENT_TYPE_HEADER; - }, - UNSTABLE_REVALIDATE_RENAME_ERROR: function() { - return UNSTABLE_REVALIDATE_RENAME_ERROR; - }, - WEBPACK_LAYERS: function() { - return WEBPACK_LAYERS; - }, - WEBPACK_RESOURCE_QUERIES: function() { - return WEBPACK_RESOURCE_QUERIES; - }, - WEB_SOCKET_MAX_RECONNECTIONS: function() { - return WEB_SOCKET_MAX_RECONNECTIONS; - } -}); -const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'; -const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'; -const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'; -const NEXT_QUERY_PARAM_PREFIX = 'nxtP'; -const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'; -const MATCHED_PATH_HEADER = 'x-matched-path'; -const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'; -const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER = 'x-prerender-revalidate-if-generated'; -const RSC_SEGMENTS_DIR_SUFFIX = '.segments'; -const RSC_SEGMENT_SUFFIX = '.segment.rsc'; -const RSC_SUFFIX = '.rsc'; -const ACTION_SUFFIX = '.action'; -const NEXT_DATA_SUFFIX = '.json'; -const NEXT_META_SUFFIX = '.meta'; -const NEXT_BODY_SUFFIX = '.body'; -const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'; -const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'; -const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER = 'x-next-revalidate-tag-token'; -const NEXT_RESUME_HEADER = 'next-resume'; -const NEXT_CACHE_TAG_MAX_ITEMS = 128; -const NEXT_CACHE_TAG_MAX_LENGTH = 256; -const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024; -const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'; -const CACHE_ONE_YEAR = 31536000; -const INFINITE_CACHE = 0xfffffffe; -const MIDDLEWARE_FILENAME = 'middleware'; -const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`; -const PROXY_FILENAME = 'proxy'; -const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`; -const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'; -const PAGES_DIR_ALIAS = 'private-next-pages'; -const DOT_NEXT_ALIAS = 'private-dot-next'; -const ROOT_DIR_ALIAS = 'private-next-root-dir'; -const APP_DIR_ALIAS = 'private-next-app-dir'; -const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'; -const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'; -const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'; -const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'; -const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS = 'private-next-rsc-track-dynamic-import'; -const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'; -const RSC_ACTION_CLIENT_WRAPPER_ALIAS = 'private-next-rsc-action-client-wrapper'; -const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`; -const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`; -const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`; -const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`; -const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`; -const SERVER_PROPS_EXPORT_ERROR = `pages with \`getServerSideProps\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`; -const GSP_NO_RETURNED_VALUE = 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'; -const GSSP_NO_RETURNED_VALUE = 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'; -const UNSTABLE_REVALIDATE_RENAME_ERROR = 'The `unstable_revalidate` property is available for general use.\n' + 'Please use `revalidate` instead.'; -const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`; -const NON_STANDARD_NODE_ENV = `You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`; -const SSG_FALLBACK_EXPORT_ERROR = `Pages with \`fallback\` enabled in \`getStaticPaths\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`; -const ESLINT_DEFAULT_DIRS = [ - 'app', - 'pages', - 'components', - 'lib', - 'src' -]; -const SERVER_RUNTIME = { - edge: 'edge', - experimentalEdge: 'experimental-edge', - nodejs: 'nodejs' -}; -const WEB_SOCKET_MAX_RECONNECTIONS = 12; -/** - * The names of the webpack layers. These layers are the primitives for the - * webpack chunks. - */ const WEBPACK_LAYERS_NAMES = { - /** - * The layer for the shared code between the client and server bundles. - */ shared: 'shared', - /** - * The layer for server-only runtime and picking up `react-server` export conditions. - * Including app router RSC pages and app router custom routes and metadata routes. - */ reactServerComponents: 'rsc', - /** - * Server Side Rendering layer for app (ssr). - */ serverSideRendering: 'ssr', - /** - * The browser client bundle layer for actions. - */ actionBrowser: 'action-browser', - /** - * The Node.js bundle layer for the API routes. - */ apiNode: 'api-node', - /** - * The Edge Lite bundle layer for the API routes. - */ apiEdge: 'api-edge', - /** - * The layer for the middleware code. - */ middleware: 'middleware', - /** - * The layer for the instrumentation hooks. - */ instrument: 'instrument', - /** - * The layer for assets on the edge. - */ edgeAsset: 'edge-asset', - /** - * The browser client bundle layer for App directory. - */ appPagesBrowser: 'app-pages-browser', - /** - * The browser client bundle layer for Pages directory. - */ pagesDirBrowser: 'pages-dir-browser', - /** - * The Edge Lite bundle layer for Pages directory. - */ pagesDirEdge: 'pages-dir-edge', - /** - * The Node.js bundle layer for Pages directory. - */ pagesDirNode: 'pages-dir-node' -}; -const WEBPACK_LAYERS = { - ...WEBPACK_LAYERS_NAMES, - GROUP: { - builtinReact: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser - ], - serverOnly: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - neutralTarget: [ - // pages api - WEBPACK_LAYERS_NAMES.apiNode, - WEBPACK_LAYERS_NAMES.apiEdge - ], - clientOnly: [ - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser - ], - bundled: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.shared, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - appPages: [ - // app router pages and layouts - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.actionBrowser - ] - } -}; -const WEBPACK_RESOURCE_QUERIES = { - edgeSSREntry: '__next_edge_ssr_entry__', - metadata: '__next_metadata__', - metadataRoute: '__next_metadata_route__', - metadataImageMeta: '__next_metadata_image_meta__' -}; //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - INTERCEPTION_ROUTE_MARKERS: null, - extractInterceptionRouteInformation: null, - isInterceptionRouteAppPath: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - INTERCEPTION_ROUTE_MARKERS: function() { - return INTERCEPTION_ROUTE_MARKERS; - }, - extractInterceptionRouteInformation: function() { - return extractInterceptionRouteInformation; - }, - isInterceptionRouteAppPath: function() { - return isInterceptionRouteAppPath; - } -}); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -const INTERCEPTION_ROUTE_MARKERS = [ - '(..)(..)', - '(.)', - '(..)', - '(...)' -]; -function isInterceptionRouteAppPath(path) { - // TODO-APP: add more serious validation - return path.split('/').find((segment)=>INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m))) !== undefined; -} -function extractInterceptionRouteInformation(path) { - let interceptingRoute; - let marker; - let interceptedRoute; - for (const segment of path.split('/')){ - marker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - ; - [interceptingRoute, interceptedRoute] = path.split(marker, 2); - break; - } - } - if (!interceptingRoute || !marker || !interceptedRoute) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Must be in the format /<intercepting route>/(..|...|..)(..)/<intercepted route>`), "__NEXT_ERROR_CODE", { - value: "E269", - enumerable: false, - configurable: true - }); - } - interceptingRoute = (0, _apppaths.normalizeAppPath)(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed - ; - switch(marker){ - case '(.)': - // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route - if (interceptingRoute === '/') { - interceptedRoute = `/${interceptedRoute}`; - } else { - interceptedRoute = interceptingRoute + '/' + interceptedRoute; - } - break; - case '(..)': - // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route - if (interceptingRoute === '/') { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`), "__NEXT_ERROR_CODE", { - value: "E207", - enumerable: false, - configurable: true - }); - } - interceptedRoute = interceptingRoute.split('/').slice(0, -1).concat(interceptedRoute).join('/'); - break; - case '(...)': - // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route - interceptedRoute = '/' + interceptedRoute; - break; - case '(..)(..)': - // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route - const splitInterceptingRoute = interceptingRoute.split('/'); - if (splitInterceptingRoute.length <= 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`), "__NEXT_ERROR_CODE", { - value: "E486", - enumerable: false, - configurable: true - }); - } - interceptedRoute = splitInterceptingRoute.slice(0, -2).concat(interceptedRoute).join('/'); - break; - default: - throw Object.defineProperty(new Error('Invariant: unexpected marker'), "__NEXT_ERROR_CODE", { - value: "E112", - enumerable: false, - configurable: true - }); - } - return { - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=interception-routes.js.map -}), -"[project]/node_modules/next/dist/shared/lib/escape-regexp.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// regexp is based on https://github.com/sindresorhus/escape-string-regexp -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "escapeStringRegexp", { - enumerable: true, - get: function() { - return escapeStringRegexp; - } -}); -const reHasRegExp = /[|\\{}()[\]^$+*?.-]/; -const reReplaceRegExp = /[|\\{}()[\]^$+*?.-]/g; -function escapeStringRegexp(str) { - // see also: https://github.com/lodash/lodash/blob/2da024c3b4f9947a48517639de7560457cd4ec6c/escapeRegExp.js#L23 - if (reHasRegExp.test(str)) { - return str.replace(reReplaceRegExp, '\\$&'); - } - return str; -} //# sourceMappingURL=escape-regexp.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Removes the trailing slash for a given route or page path. Preserves the - * root page. Examples: - * - `/foo/bar/` -> `/foo/bar` - * - `/foo/bar` -> `/foo/bar` - * - `/` -> `/` - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "removeTrailingSlash", { - enumerable: true, - get: function() { - return removeTrailingSlash; - } -}); -function removeTrailingSlash(route) { - return route.replace(/\/$/, '') || '/'; -} //# sourceMappingURL=remove-trailing-slash.js.map -}), -"[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "InvariantError", { - enumerable: true, - get: function() { - return InvariantError; - } -}); -class InvariantError extends Error { - constructor(message, options){ - super(`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`, options); - this.name = 'InvariantError'; - } -} //# sourceMappingURL=invariant-error.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "parseLoaderTree", { - enumerable: true, - get: function() { - return parseLoaderTree; - } -}); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-rsc] (ecmascript)"); -function parseLoaderTree(tree) { - const [segment, parallelRoutes, modules] = tree; - const { layout, template } = modules; - let { page } = modules; - // a __DEFAULT__ segment means that this route didn't match any of the - // segments in the route, so we should use the default page - page = segment === _segment.DEFAULT_SEGMENT_KEY ? modules.defaultPage : page; - const conventionPath = layout?.[1] || template?.[1] || page?.[1]; - return { - page, - segment, - modules, - /* it can be either layout / template / page */ conventionPath, - parallelRoutes - }; -} //# sourceMappingURL=parse-loader-tree.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getParamProperties: null, - getSegmentParam: null, - isCatchAll: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getParamProperties: function() { - return getParamProperties; - }, - getSegmentParam: function() { - return getSegmentParam; - }, - isCatchAll: function() { - return isCatchAll; - } -}); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -function getSegmentParam(segment) { - const interceptionMarker = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.find((marker)=>segment.startsWith(marker)); - // if an interception marker is part of the path segment, we need to jump ahead - // to the relevant portion for param parsing - if (interceptionMarker) { - segment = segment.slice(interceptionMarker.length); - } - if (segment.startsWith('[[...') && segment.endsWith(']]')) { - return { - // TODO-APP: Optional catchall does not currently work with parallel routes, - // so for now aren't handling a potential interception marker. - paramType: 'optional-catchall', - paramName: segment.slice(5, -2) - }; - } - if (segment.startsWith('[...') && segment.endsWith(']')) { - return { - paramType: interceptionMarker ? `catchall-intercepted-${interceptionMarker}` : 'catchall', - paramName: segment.slice(4, -1) - }; - } - if (segment.startsWith('[') && segment.endsWith(']')) { - return { - paramType: interceptionMarker ? `dynamic-intercepted-${interceptionMarker}` : 'dynamic', - paramName: segment.slice(1, -1) - }; - } - return null; -} -function isCatchAll(type) { - return type === 'catchall' || type === 'catchall-intercepted-(..)(..)' || type === 'catchall-intercepted-(.)' || type === 'catchall-intercepted-(..)' || type === 'catchall-intercepted-(...)' || type === 'optional-catchall'; -} -function getParamProperties(paramType) { - let repeat = false; - let optional = false; - switch(paramType){ - case 'catchall': - case 'catchall-intercepted-(..)(..)': - case 'catchall-intercepted-(.)': - case 'catchall-intercepted-(..)': - case 'catchall-intercepted-(...)': - repeat = true; - break; - case 'optional-catchall': - repeat = true; - optional = true; - break; - case 'dynamic': - case 'dynamic-intercepted-(..)(..)': - case 'dynamic-intercepted-(.)': - case 'dynamic-intercepted-(..)': - case 'dynamic-intercepted-(...)': - break; - default: - paramType; - } - return { - repeat, - optional - }; -} //# sourceMappingURL=get-segment-param.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/routes/app.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - isInterceptionAppRoute: null, - isNormalizedAppRoute: null, - parseAppRoute: null, - parseAppRouteSegment: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - isInterceptionAppRoute: function() { - return isInterceptionAppRoute; - }, - isNormalizedAppRoute: function() { - return isNormalizedAppRoute; - }, - parseAppRoute: function() { - return parseAppRoute; - }, - parseAppRouteSegment: function() { - return parseAppRouteSegment; - } -}); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -const _getsegmentparam = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js [app-rsc] (ecmascript)"); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -function parseAppRouteSegment(segment) { - if (segment === '') { - return null; - } - // Check if the segment starts with an interception marker - const interceptionMarker = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - const param = (0, _getsegmentparam.getSegmentParam)(segment); - if (param) { - return { - type: 'dynamic', - name: segment, - param, - interceptionMarker - }; - } else if (segment.startsWith('(') && segment.endsWith(')')) { - return { - type: 'route-group', - name: segment, - interceptionMarker - }; - } else if (segment.startsWith('@')) { - return { - type: 'parallel-route', - name: segment, - interceptionMarker - }; - } else { - return { - type: 'static', - name: segment, - interceptionMarker - }; - } -} -function isNormalizedAppRoute(route) { - return route.normalized; -} -function isInterceptionAppRoute(route) { - return route.interceptionMarker !== undefined && route.interceptingRoute !== undefined && route.interceptedRoute !== undefined; -} -function parseAppRoute(pathname, normalized) { - const pathnameSegments = pathname.split('/').filter(Boolean); - // Build segments array with static and dynamic segments - const segments = []; - // Parse if this is an interception route. - let interceptionMarker; - let interceptingRoute; - let interceptedRoute; - for (const segment of pathnameSegments){ - // Parse the segment into an AppSegment. - const appSegment = parseAppRouteSegment(segment); - if (!appSegment) { - continue; - } - if (normalized && (appSegment.type === 'route-group' || appSegment.type === 'parallel-route')) { - throw Object.defineProperty(new _invarianterror.InvariantError(`${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`), "__NEXT_ERROR_CODE", { - value: "E923", - enumerable: false, - configurable: true - }); - } - segments.push(appSegment); - if (appSegment.interceptionMarker) { - const parts = pathname.split(appSegment.interceptionMarker); - if (parts.length !== 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${pathname}`), "__NEXT_ERROR_CODE", { - value: "E924", - enumerable: false, - configurable: true - }); - } - interceptingRoute = normalized ? parseAppRoute(parts[0], true) : parseAppRoute(parts[0], false); - interceptedRoute = normalized ? parseAppRoute(parts[1], true) : parseAppRoute(parts[1], false); - interceptionMarker = appSegment.interceptionMarker; - } - } - const dynamicSegments = segments.filter((segment)=>segment.type === 'dynamic'); - return { - normalized, - pathname, - segments, - dynamicSegments, - interceptionMarker, - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=app.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/interception-prefix-from-param-type.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "interceptionPrefixFromParamType", { - enumerable: true, - get: function() { - return interceptionPrefixFromParamType; - } -}); -function interceptionPrefixFromParamType(paramType) { - switch(paramType){ - case 'catchall-intercepted-(..)(..)': - case 'dynamic-intercepted-(..)(..)': - return '(..)(..)'; - case 'catchall-intercepted-(.)': - case 'dynamic-intercepted-(.)': - return '(.)'; - case 'catchall-intercepted-(..)': - case 'dynamic-intercepted-(..)': - return '(..)'; - case 'catchall-intercepted-(...)': - case 'dynamic-intercepted-(...)': - return '(...)'; - case 'catchall': - case 'dynamic': - case 'optional-catchall': - default: - return null; - } -} //# sourceMappingURL=interception-prefix-from-param-type.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "resolveParamValue", { - enumerable: true, - get: function() { - return resolveParamValue; - } -}); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -const _interceptionprefixfromparamtype = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-prefix-from-param-type.js [app-rsc] (ecmascript)"); -/** - * Extracts the param value from a path segment, handling interception markers - * based on the expected param type. - * - * @param pathSegment - The path segment to extract the value from - * @param params - The current params object for resolving dynamic param references - * @param paramType - The expected param type which may include interception marker info - * @returns The extracted param value - */ function getParamValueFromSegment(pathSegment, params, paramType) { - // If the segment is dynamic, resolve it from the params object - if (pathSegment.type === 'dynamic') { - return params[pathSegment.param.paramName]; - } - // If the paramType indicates this is an intercepted param, strip the marker - // that matches the interception marker in the param type - const interceptionPrefix = (0, _interceptionprefixfromparamtype.interceptionPrefixFromParamType)(paramType); - if (interceptionPrefix === pathSegment.interceptionMarker) { - return pathSegment.name.replace(pathSegment.interceptionMarker, ''); - } - // For static segments, use the name - return pathSegment.name; -} -function resolveParamValue(paramName, paramType, depth, route, params) { - switch(paramType){ - case 'catchall': - case 'optional-catchall': - case 'catchall-intercepted-(..)(..)': - case 'catchall-intercepted-(.)': - case 'catchall-intercepted-(..)': - case 'catchall-intercepted-(...)': - // For catchall routes, derive from pathname using depth to determine - // which segments to use - const processedSegments = []; - // Process segments to handle any embedded dynamic params - for(let index = depth; index < route.segments.length; index++){ - const pathSegment = route.segments[index]; - if (pathSegment.type === 'static') { - let value = pathSegment.name; - // For intercepted catch-all params, strip the marker from the first segment - const interceptionPrefix = (0, _interceptionprefixfromparamtype.interceptionPrefixFromParamType)(paramType); - if (interceptionPrefix && index === depth && interceptionPrefix === pathSegment.interceptionMarker) { - // Strip the interception marker from the value - value = value.replace(pathSegment.interceptionMarker, ''); - } - processedSegments.push(value); - } else { - // If the segment is a param placeholder, check if we have its value - if (!params.hasOwnProperty(pathSegment.param.paramName)) { - // If the segment is an optional catchall, we can break out of the - // loop because it's optional! - if (pathSegment.param.paramType === 'optional-catchall') { - break; - } - // Unknown param placeholder in pathname - can't derive full value - return undefined; - } - // If the segment matches a param, use the param value - // We don't encode values here as that's handled during retrieval. - const paramValue = params[pathSegment.param.paramName]; - if (Array.isArray(paramValue)) { - processedSegments.push(...paramValue); - } else { - processedSegments.push(paramValue); - } - } - } - if (processedSegments.length > 0) { - return processedSegments; - } else if (paramType === 'optional-catchall') { - return undefined; - } else { - // We shouldn't be able to match a catchall segment without any path - // segments if it's not an optional catchall - throw Object.defineProperty(new _invarianterror.InvariantError(`Unexpected empty path segments match for a route "${route.pathname}" with param "${paramName}" of type "${paramType}"`), "__NEXT_ERROR_CODE", { - value: "E931", - enumerable: false, - configurable: true - }); - } - case 'dynamic': - case 'dynamic-intercepted-(..)(..)': - case 'dynamic-intercepted-(.)': - case 'dynamic-intercepted-(..)': - case 'dynamic-intercepted-(...)': - // For regular dynamic parameters, take the segment at this depth - if (depth < route.segments.length) { - const pathSegment = route.segments[depth]; - // Check if the segment at this depth is a placeholder for an unknown param - if (pathSegment.type === 'dynamic' && !params.hasOwnProperty(pathSegment.param.paramName)) { - // The segment is a placeholder like [category] and we don't have the value - return undefined; - } - // If the segment matches a param, use the param value from params object - // Otherwise it's a static segment, just use it directly - // We don't encode values here as that's handled during retrieval - return getParamValueFromSegment(pathSegment, params, paramType); - } - return undefined; - default: - paramType; - } -} //# sourceMappingURL=resolve-param-value.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - PARAMETER_PATTERN: null, - getDynamicParam: null, - interpolateParallelRouteParams: null, - parseMatchedParameter: null, - parseParameter: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - PARAMETER_PATTERN: function() { - return PARAMETER_PATTERN; - }, - getDynamicParam: function() { - return getDynamicParam; - }, - interpolateParallelRouteParams: function() { - return interpolateParallelRouteParams; - }, - parseMatchedParameter: function() { - return parseMatchedParameter; - }, - parseParameter: function() { - return parseParameter; - } -}); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -const _parseloadertree = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)"); -const _app = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/routes/app.js [app-rsc] (ecmascript)"); -const _resolveparamvalue = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)"); -/** - * Gets the value of a param from the params object. This correctly handles the - * case where the param is a fallback route param and encodes the resulting - * value. - * - * @param interpolatedParams - The params object. - * @param segmentKey - The key of the segment. - * @param fallbackRouteParams - The fallback route params. - * @returns The value of the param. - */ function getParamValue(interpolatedParams, segmentKey, fallbackRouteParams) { - let value = interpolatedParams[segmentKey]; - if (fallbackRouteParams?.has(segmentKey)) { - // We know that the fallback route params has the segment key because we - // checked that above. - const [searchValue] = fallbackRouteParams.get(segmentKey); - value = searchValue; - } else if (Array.isArray(value)) { - value = value.map((i)=>encodeURIComponent(i)); - } else if (typeof value === 'string') { - value = encodeURIComponent(value); - } - return value; -} -function interpolateParallelRouteParams(loaderTree, params, pagePath, fallbackRouteParams) { - const interpolated = structuredClone(params); - // Stack-based traversal with depth tracking - const stack = [ - { - tree: loaderTree, - depth: 0 - } - ]; - // Parse the route from the provided page path. - const route = (0, _app.parseAppRoute)(pagePath, true); - while(stack.length > 0){ - const { tree, depth } = stack.pop(); - const { segment, parallelRoutes } = (0, _parseloadertree.parseLoaderTree)(tree); - const appSegment = (0, _app.parseAppRouteSegment)(segment); - if (appSegment?.type === 'dynamic' && !interpolated.hasOwnProperty(appSegment.param.paramName) && // If the param is in the fallback route params, we don't need to - // interpolate it because it's already marked as being unknown. - !fallbackRouteParams?.has(appSegment.param.paramName)) { - const { paramName, paramType } = appSegment.param; - const paramValue = (0, _resolveparamvalue.resolveParamValue)(paramName, paramType, depth, route, interpolated); - if (paramValue !== undefined) { - interpolated[paramName] = paramValue; - } else if (paramType !== 'optional-catchall') { - throw Object.defineProperty(new _invarianterror.InvariantError(`Could not resolve param value for segment: ${paramName}`), "__NEXT_ERROR_CODE", { - value: "E932", - enumerable: false, - configurable: true - }); - } - } - // Calculate next depth - increment if this is not a route group and not empty - let nextDepth = depth; - if (appSegment && appSegment.type !== 'route-group' && appSegment.type !== 'parallel-route') { - nextDepth++; - } - // Add all parallel routes to the stack for processing - for (const parallelRoute of Object.values(parallelRoutes)){ - stack.push({ - tree: parallelRoute, - depth: nextDepth - }); - } - } - return interpolated; -} -function getDynamicParam(interpolatedParams, segmentKey, dynamicParamType, fallbackRouteParams) { - let value = getParamValue(interpolatedParams, segmentKey, fallbackRouteParams); - // handle the case where an optional catchall does not have a value, - // e.g. `/dashboard/[[...slug]]` when requesting `/dashboard` - if (!value || value.length === 0) { - if (dynamicParamType === 'oc') { - return { - param: segmentKey, - value: null, - type: dynamicParamType, - treeSegment: [ - segmentKey, - '', - dynamicParamType - ] - }; - } - throw Object.defineProperty(new _invarianterror.InvariantError(`Missing value for segment key: "${segmentKey}" with dynamic param type: ${dynamicParamType}`), "__NEXT_ERROR_CODE", { - value: "E864", - enumerable: false, - configurable: true - }); - } - return { - param: segmentKey, - // The value that is passed to user code. - value, - // The value that is rendered in the router tree. - treeSegment: [ - segmentKey, - Array.isArray(value) ? value.join('/') : value, - dynamicParamType - ], - type: dynamicParamType - }; -} -const PARAMETER_PATTERN = /^([^[]*)\[((?:\[[^\]]*\])|[^\]]+)\](.*)$/; -function parseParameter(param) { - const match = param.match(PARAMETER_PATTERN); - if (!match) { - return parseMatchedParameter(param); - } - return parseMatchedParameter(match[2]); -} -function parseMatchedParameter(param) { - const optional = param.startsWith('[') && param.endsWith(']'); - if (optional) { - param = param.slice(1, -1); - } - const repeat = param.startsWith('...'); - if (repeat) { - param = param.slice(3); - } - return { - key: param, - repeat, - optional - }; -} //# sourceMappingURL=get-dynamic-param.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/route-regex.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getNamedMiddlewareRegex: null, - getNamedRouteRegex: null, - getRouteRegex: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getNamedMiddlewareRegex: function() { - return getNamedMiddlewareRegex; - }, - getNamedRouteRegex: function() { - return getNamedRouteRegex; - }, - getRouteRegex: function() { - return getRouteRegex; - } -}); -const _constants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/constants.js [app-rsc] (ecmascript)"); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -const _escaperegexp = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/escape-regexp.js [app-rsc] (ecmascript)"); -const _removetrailingslash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)"); -const _getdynamicparam = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js [app-rsc] (ecmascript)"); -function getParametrizedRoute(route, includeSuffix, includePrefix) { - const groups = {}; - let groupIndex = 1; - const segments = []; - for (const segment of (0, _removetrailingslash.removeTrailingSlash)(route).slice(1).split('/')){ - const markerMatch = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - const paramMatches = segment.match(_getdynamicparam.PARAMETER_PATTERN) // Check for parameters - ; - if (markerMatch && paramMatches && paramMatches[2]) { - const { key, optional, repeat } = (0, _getdynamicparam.parseMatchedParameter)(paramMatches[2]); - groups[key] = { - pos: groupIndex++, - repeat, - optional - }; - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(markerMatch)}([^/]+?)`); - } else if (paramMatches && paramMatches[2]) { - const { key, repeat, optional } = (0, _getdynamicparam.parseMatchedParameter)(paramMatches[2]); - groups[key] = { - pos: groupIndex++, - repeat, - optional - }; - if (includePrefix && paramMatches[1]) { - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(paramMatches[1])}`); - } - let s = repeat ? optional ? '(?:/(.+?))?' : '/(.+?)' : '/([^/]+?)'; - // Remove the leading slash if includePrefix already added it. - if (includePrefix && paramMatches[1]) { - s = s.substring(1); - } - segments.push(s); - } else { - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(segment)}`); - } - // If there's a suffix, add it to the segments if it's enabled. - if (includeSuffix && paramMatches && paramMatches[3]) { - segments.push((0, _escaperegexp.escapeStringRegexp)(paramMatches[3])); - } - } - return { - parameterizedRoute: segments.join(''), - groups - }; -} -function getRouteRegex(normalizedRoute, { includeSuffix = false, includePrefix = false, excludeOptionalTrailingSlash = false } = {}) { - const { parameterizedRoute, groups } = getParametrizedRoute(normalizedRoute, includeSuffix, includePrefix); - let re = parameterizedRoute; - if (!excludeOptionalTrailingSlash) { - re += '(?:/)?'; - } - return { - re: new RegExp(`^${re}$`), - groups: groups - }; -} -/** - * Builds a function to generate a minimal routeKey using only a-z and minimal - * number of characters. - */ function buildGetSafeRouteKey() { - let i = 0; - return ()=>{ - let routeKey = ''; - let j = ++i; - while(j > 0){ - routeKey += String.fromCharCode(97 + (j - 1) % 26); - j = Math.floor((j - 1) / 26); - } - return routeKey; - }; -} -function getSafeKeyFromSegment({ interceptionMarker, getSafeRouteKey, segment, routeKeys, keyPrefix, backreferenceDuplicateKeys }) { - const { key, optional, repeat } = (0, _getdynamicparam.parseMatchedParameter)(segment); - // replace any non-word characters since they can break - // the named regex - let cleanedKey = key.replace(/\W/g, ''); - if (keyPrefix) { - cleanedKey = `${keyPrefix}${cleanedKey}`; - } - let invalidKey = false; - // check if the key is still invalid and fallback to using a known - // safe key - if (cleanedKey.length === 0 || cleanedKey.length > 30) { - invalidKey = true; - } - if (!isNaN(parseInt(cleanedKey.slice(0, 1)))) { - invalidKey = true; - } - if (invalidKey) { - cleanedKey = getSafeRouteKey(); - } - const duplicateKey = cleanedKey in routeKeys; - if (keyPrefix) { - routeKeys[cleanedKey] = `${keyPrefix}${key}`; - } else { - routeKeys[cleanedKey] = key; - } - // if the segment has an interception marker, make sure that's part of the regex pattern - // this is to ensure that the route with the interception marker doesn't incorrectly match - // the non-intercepted route (ie /app/(.)[username] should not match /app/[username]) - const interceptionPrefix = interceptionMarker ? (0, _escaperegexp.escapeStringRegexp)(interceptionMarker) : ''; - let pattern; - if (duplicateKey && backreferenceDuplicateKeys) { - // Use a backreference to the key to ensure that the key is the same value - // in each of the placeholders. - pattern = `\\k<${cleanedKey}>`; - } else if (repeat) { - pattern = `(?<${cleanedKey}>.+?)`; - } else { - pattern = `(?<${cleanedKey}>[^/]+?)`; - } - return { - key, - pattern: optional ? `(?:/${interceptionPrefix}${pattern})?` : `/${interceptionPrefix}${pattern}`, - cleanedKey: cleanedKey, - optional, - repeat - }; -} -function getNamedParametrizedRoute(route, prefixRouteKeys, includeSuffix, includePrefix, backreferenceDuplicateKeys, reference = { - names: {}, - intercepted: {} -}) { - const getSafeRouteKey = buildGetSafeRouteKey(); - const routeKeys = {}; - const segments = []; - const inverseParts = []; - // Ensure we don't mutate the original reference object. - reference = structuredClone(reference); - for (const segment of (0, _removetrailingslash.removeTrailingSlash)(route).slice(1).split('/')){ - const hasInterceptionMarker = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.some((m)=>segment.startsWith(m)); - const paramMatches = segment.match(_getdynamicparam.PARAMETER_PATTERN) // Check for parameters - ; - const interceptionMarker = hasInterceptionMarker ? paramMatches?.[1] : undefined; - let keyPrefix; - if (interceptionMarker && paramMatches?.[2]) { - keyPrefix = prefixRouteKeys ? _constants.NEXT_INTERCEPTION_MARKER_PREFIX : undefined; - reference.intercepted[paramMatches[2]] = interceptionMarker; - } else if (paramMatches?.[2] && reference.intercepted[paramMatches[2]]) { - keyPrefix = prefixRouteKeys ? _constants.NEXT_INTERCEPTION_MARKER_PREFIX : undefined; - } else { - keyPrefix = prefixRouteKeys ? _constants.NEXT_QUERY_PARAM_PREFIX : undefined; - } - if (interceptionMarker && paramMatches && paramMatches[2]) { - // If there's an interception marker, add it to the segments. - const { key, pattern, cleanedKey, repeat, optional } = getSafeKeyFromSegment({ - getSafeRouteKey, - interceptionMarker, - segment: paramMatches[2], - routeKeys, - keyPrefix, - backreferenceDuplicateKeys - }); - segments.push(pattern); - inverseParts.push(`/${paramMatches[1]}:${reference.names[key] ?? cleanedKey}${repeat ? optional ? '*' : '+' : ''}`); - reference.names[key] ??= cleanedKey; - } else if (paramMatches && paramMatches[2]) { - // If there's a prefix, add it to the segments if it's enabled. - if (includePrefix && paramMatches[1]) { - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(paramMatches[1])}`); - inverseParts.push(`/${paramMatches[1]}`); - } - const { key, pattern, cleanedKey, repeat, optional } = getSafeKeyFromSegment({ - getSafeRouteKey, - segment: paramMatches[2], - routeKeys, - keyPrefix, - backreferenceDuplicateKeys - }); - // Remove the leading slash if includePrefix already added it. - let s = pattern; - if (includePrefix && paramMatches[1]) { - s = s.substring(1); - } - segments.push(s); - inverseParts.push(`/:${reference.names[key] ?? cleanedKey}${repeat ? optional ? '*' : '+' : ''}`); - reference.names[key] ??= cleanedKey; - } else { - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(segment)}`); - inverseParts.push(`/${segment}`); - } - // If there's a suffix, add it to the segments if it's enabled. - if (includeSuffix && paramMatches && paramMatches[3]) { - segments.push((0, _escaperegexp.escapeStringRegexp)(paramMatches[3])); - inverseParts.push(paramMatches[3]); - } - } - return { - namedParameterizedRoute: segments.join(''), - routeKeys, - pathToRegexpPattern: inverseParts.join(''), - reference - }; -} -function getNamedRouteRegex(normalizedRoute, options) { - const result = getNamedParametrizedRoute(normalizedRoute, options.prefixRouteKeys, options.includeSuffix ?? false, options.includePrefix ?? false, options.backreferenceDuplicateKeys ?? false, options.reference); - let namedRegex = result.namedParameterizedRoute; - if (!options.excludeOptionalTrailingSlash) { - namedRegex += '(?:/)?'; - } - return { - ...getRouteRegex(normalizedRoute, options), - namedRegex: `^${namedRegex}$`, - routeKeys: result.routeKeys, - pathToRegexpPattern: result.pathToRegexpPattern, - reference: result.reference - }; -} -function getNamedMiddlewareRegex(normalizedRoute, options) { - const { parameterizedRoute } = getParametrizedRoute(normalizedRoute, false, false); - const { catchAll = true } = options; - if (parameterizedRoute === '/') { - let catchAllRegex = catchAll ? '.*' : ''; - return { - namedRegex: `^/${catchAllRegex}$` - }; - } - const { namedParameterizedRoute } = getNamedParametrizedRoute(normalizedRoute, false, false, false, false, undefined); - let catchAllGroupedRegex = catchAll ? '(?:(/.*)?)' : ''; - return { - namedRegex: `^${namedParameterizedRoute}${catchAllGroupedRegex}$` - }; -} //# sourceMappingURL=route-regex.js.map -}), -"[project]/node_modules/next/dist/shared/lib/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DecodeError: null, - MiddlewareNotFoundError: null, - MissingStaticPage: null, - NormalizeError: null, - PageNotFoundError: null, - SP: null, - ST: null, - WEB_VITALS: null, - execOnce: null, - getDisplayName: null, - getLocationOrigin: null, - getURL: null, - isAbsoluteUrl: null, - isResSent: null, - loadGetInitialProps: null, - normalizeRepeatedSlashes: null, - stringifyError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DecodeError: function() { - return DecodeError; - }, - MiddlewareNotFoundError: function() { - return MiddlewareNotFoundError; - }, - MissingStaticPage: function() { - return MissingStaticPage; - }, - NormalizeError: function() { - return NormalizeError; - }, - PageNotFoundError: function() { - return PageNotFoundError; - }, - SP: function() { - return SP; - }, - ST: function() { - return ST; - }, - WEB_VITALS: function() { - return WEB_VITALS; - }, - execOnce: function() { - return execOnce; - }, - getDisplayName: function() { - return getDisplayName; - }, - getLocationOrigin: function() { - return getLocationOrigin; - }, - getURL: function() { - return getURL; - }, - isAbsoluteUrl: function() { - return isAbsoluteUrl; - }, - isResSent: function() { - return isResSent; - }, - loadGetInitialProps: function() { - return loadGetInitialProps; - }, - normalizeRepeatedSlashes: function() { - return normalizeRepeatedSlashes; - }, - stringifyError: function() { - return stringifyError; - } -}); -const WEB_VITALS = [ - 'CLS', - 'FCP', - 'FID', - 'INP', - 'LCP', - 'TTFB' -]; -function execOnce(fn) { - let used = false; - let result; - return (...args)=>{ - if (!used) { - used = true; - result = fn(...args); - } - return result; - }; -} -// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1 -// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3 -const ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\d+\-.]*?:/; -const isAbsoluteUrl = (url)=>ABSOLUTE_URL_REGEX.test(url); -function getLocationOrigin() { - const { protocol, hostname, port } = window.location; - return `${protocol}//${hostname}${port ? ':' + port : ''}`; -} -function getURL() { - const { href } = window.location; - const origin = getLocationOrigin(); - return href.substring(origin.length); -} -function getDisplayName(Component) { - return typeof Component === 'string' ? Component : Component.displayName || Component.name || 'Unknown'; -} -function isResSent(res) { - return res.finished || res.headersSent; -} -function normalizeRepeatedSlashes(url) { - const urlParts = url.split('?'); - const urlNoQuery = urlParts[0]; - return urlNoQuery // first we replace any non-encoded backslashes with forward - // then normalize repeated forward slashes - .replace(/\\/g, '/').replace(/\/\/+/g, '/') + (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : ''); -} -async function loadGetInitialProps(App, ctx) { - if ("TURBOPACK compile-time truthy", 1) { - if (App.prototype?.getInitialProps) { - const message = `"${getDisplayName(App)}.getInitialProps()" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - } - // when called from _app `ctx` is nested in `ctx` - const res = ctx.res || ctx.ctx && ctx.ctx.res; - if (!App.getInitialProps) { - if (ctx.ctx && ctx.Component) { - // @ts-ignore pageProps default - return { - pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx) - }; - } - return {}; - } - const props = await App.getInitialProps(ctx); - if (res && isResSent(res)) { - return props; - } - if (!props) { - const message = `"${getDisplayName(App)}.getInitialProps()" should resolve to an object. But found "${props}" instead.`; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - if (Object.keys(props).length === 0 && !ctx.ctx) { - console.warn(`${getDisplayName(App)} returned an empty object from \`getInitialProps\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`); - } - } - return props; -} -const SP = typeof performance !== 'undefined'; -const ST = SP && [ - 'mark', - 'measure', - 'getEntriesByName' -].every((method)=>typeof performance[method] === 'function'); -class DecodeError extends Error { -} -class NormalizeError extends Error { -} -class PageNotFoundError extends Error { - constructor(page){ - super(); - this.code = 'ENOENT'; - this.name = 'PageNotFoundError'; - this.message = `Cannot find module for page: ${page}`; - } -} -class MissingStaticPage extends Error { - constructor(page, message){ - super(); - this.message = `Failed to load static file for page: ${page} ${message}`; - } -} -class MiddlewareNotFoundError extends Error { - constructor(){ - super(); - this.code = 'ENOENT'; - this.message = `Cannot find the middleware module`; - } -} -function stringifyError(error) { - return JSON.stringify({ - message: error.message, - stack: error.stack - }); -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/lib/route-pattern-normalizer.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - PARAM_SEPARATOR: null, - hasAdjacentParameterIssues: null, - normalizeAdjacentParameters: null, - normalizeTokensForRegexp: null, - stripNormalizedSeparators: null, - stripParameterSeparators: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - PARAM_SEPARATOR: function() { - return PARAM_SEPARATOR; - }, - hasAdjacentParameterIssues: function() { - return hasAdjacentParameterIssues; - }, - normalizeAdjacentParameters: function() { - return normalizeAdjacentParameters; - }, - normalizeTokensForRegexp: function() { - return normalizeTokensForRegexp; - }, - stripNormalizedSeparators: function() { - return stripNormalizedSeparators; - }, - stripParameterSeparators: function() { - return stripParameterSeparators; - } -}); -const PARAM_SEPARATOR = '_NEXTSEP_'; -function hasAdjacentParameterIssues(route) { - if (typeof route !== 'string') return false; - // Check for interception route markers followed immediately by parameters - // Pattern: /(.):param, /(..):param, /(...):param, /(.)(.):param etc. - // These patterns cause "Must have text between two parameters" errors - if (/\/\(\.{1,3}\):[^/\s]+/.test(route)) { - return true; - } - // Check for basic adjacent parameters without separators - // Pattern: :param1:param2 (but not :param* or other URL patterns) - if (/:[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*/.test(route)) { - return true; - } - return false; -} -function normalizeAdjacentParameters(route) { - let normalized = route; - // Handle interception route patterns: (.):param -> (.)_NEXTSEP_:param - normalized = normalized.replace(/(\([^)]*\)):([^/\s]+)/g, `$1${PARAM_SEPARATOR}:$2`); - // Handle other adjacent parameter patterns: :param1:param2 -> :param1_NEXTSEP_:param2 - normalized = normalized.replace(/:([^:/\s)]+)(?=:)/g, `:$1${PARAM_SEPARATOR}`); - return normalized; -} -function normalizeTokensForRegexp(tokens) { - return tokens.map((token)=>{ - // Token union type: Token = string | TokenObject - // Literal path segments are strings, parameters/wildcards are objects - if (typeof token === 'object' && token !== null && // Not all token objects have 'modifier' property (e.g., simple text tokens) - 'modifier' in token && // Only repeating modifiers (* or +) cause the validation error - // Other modifiers like '?' (optional) are fine - (token.modifier === '*' || token.modifier === '+') && // Token objects can have different shapes depending on route pattern - 'prefix' in token && 'suffix' in token && // Both prefix and suffix must be empty strings - // This is what causes the validation error in path-to-regexp - token.prefix === '' && token.suffix === '') { - // Add minimal prefix to satisfy path-to-regexp validation - // We use '/' as it's the most common path delimiter and won't break route matching - // The prefix gets used in regex generation but doesn't affect parameter extraction - return { - ...token, - prefix: '/' - }; - } - return token; - }); -} -function stripNormalizedSeparators(pathname) { - // Remove separator after interception route markers - // Pattern: (.)_NEXTSEP_ -> (.), (..)_NEXTSEP_ -> (..), etc. - // The separator appears after the closing paren of interception markers - return pathname.replace(new RegExp(`\\)${PARAM_SEPARATOR}`, 'g'), ')'); -} -function stripParameterSeparators(params) { - const cleaned = {}; - for (const [key, value] of Object.entries(params)){ - if (typeof value === 'string') { - // Remove the separator if it appears at the start of parameter values - cleaned[key] = value.replace(new RegExp(`^${PARAM_SEPARATOR}`), ''); - } else if (Array.isArray(value)) { - // Handle array parameters (from repeated route segments) - cleaned[key] = value.map((item)=>typeof item === 'string' ? item.replace(new RegExp(`^${PARAM_SEPARATOR}`), '') : item); - } else { - cleaned[key] = value; - } - } - return cleaned; -} //# sourceMappingURL=route-pattern-normalizer.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Client-safe utilities for route matching that don't import server-side - * utilities to avoid bundling issues with Turbopack - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - safeCompile: null, - safePathToRegexp: null, - safeRegexpToFunction: null, - safeRouteMatcher: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - safeCompile: function() { - return safeCompile; - }, - safePathToRegexp: function() { - return safePathToRegexp; - }, - safeRegexpToFunction: function() { - return safeRegexpToFunction; - }, - safeRouteMatcher: function() { - return safeRouteMatcher; - } -}); -const _pathtoregexp = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/path-to-regexp/index.js [app-rsc] (ecmascript)"); -const _routepatternnormalizer = __turbopack_context__.r("[project]/node_modules/next/dist/lib/route-pattern-normalizer.js [app-rsc] (ecmascript)"); -function safePathToRegexp(route, keys, options) { - if (typeof route !== 'string') { - return (0, _pathtoregexp.pathToRegexp)(route, keys, options); - } - // Check if normalization is needed and cache the result - const needsNormalization = (0, _routepatternnormalizer.hasAdjacentParameterIssues)(route); - const routeToUse = needsNormalization ? (0, _routepatternnormalizer.normalizeAdjacentParameters)(route) : route; - try { - return (0, _pathtoregexp.pathToRegexp)(routeToUse, keys, options); - } catch (error) { - // Only try normalization if we haven't already normalized - if (!needsNormalization) { - try { - const normalizedRoute = (0, _routepatternnormalizer.normalizeAdjacentParameters)(route); - return (0, _pathtoregexp.pathToRegexp)(normalizedRoute, keys, options); - } catch (retryError) { - // If that doesn't work, fall back to original error - throw error; - } - } - throw error; - } -} -function safeCompile(route, options) { - // Check if normalization is needed and cache the result - const needsNormalization = (0, _routepatternnormalizer.hasAdjacentParameterIssues)(route); - const routeToUse = needsNormalization ? (0, _routepatternnormalizer.normalizeAdjacentParameters)(route) : route; - try { - const compiler = (0, _pathtoregexp.compile)(routeToUse, options); - // If we normalized the route, wrap the compiler to strip separators from output - // The normalization inserts _NEXTSEP_ as a literal string in the pattern to satisfy - // path-to-regexp validation, but we don't want it in the final compiled URL - if (needsNormalization) { - return (params)=>{ - return (0, _routepatternnormalizer.stripNormalizedSeparators)(compiler(params)); - }; - } - return compiler; - } catch (error) { - // Only try normalization if we haven't already normalized - if (!needsNormalization) { - try { - const normalizedRoute = (0, _routepatternnormalizer.normalizeAdjacentParameters)(route); - const compiler = (0, _pathtoregexp.compile)(normalizedRoute, options); - // Wrap the compiler to strip separators from output - return (params)=>{ - return (0, _routepatternnormalizer.stripNormalizedSeparators)(compiler(params)); - }; - } catch (retryError) { - // If that doesn't work, fall back to original error - throw error; - } - } - throw error; - } -} -function safeRegexpToFunction(regexp, keys) { - const originalMatcher = (0, _pathtoregexp.regexpToFunction)(regexp, keys || []); - return (pathname)=>{ - const result = originalMatcher(pathname); - if (!result) return false; - // Clean parameters before returning - return { - ...result, - params: (0, _routepatternnormalizer.stripParameterSeparators)(result.params) - }; - }; -} -function safeRouteMatcher(matcherFn) { - return (pathname)=>{ - const result = matcherFn(pathname); - if (!result) return false; - // Clean parameters before returning - return (0, _routepatternnormalizer.stripParameterSeparators)(result); - }; -} //# sourceMappingURL=route-match-utils.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/route-matcher.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getRouteMatcher", { - enumerable: true, - get: function() { - return getRouteMatcher; - } -}); -const _utils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils.js [app-rsc] (ecmascript)"); -const _routematchutils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js [app-rsc] (ecmascript)"); -function getRouteMatcher({ re, groups }) { - const rawMatcher = (pathname)=>{ - const routeMatch = re.exec(pathname); - if (!routeMatch) return false; - const decode = (param)=>{ - try { - return decodeURIComponent(param); - } catch { - throw Object.defineProperty(new _utils.DecodeError('failed to decode param'), "__NEXT_ERROR_CODE", { - value: "E528", - enumerable: false, - configurable: true - }); - } - }; - const params = {}; - for (const [key, group] of Object.entries(groups)){ - const match = routeMatch[group.pos]; - if (match !== undefined) { - if (group.repeat) { - params[key] = match.split('/').map((entry)=>decode(entry)); - } else { - params[key] = decode(match); - } - } - } - return params; - }; - // Wrap with safe matcher to handle parameter cleaning - return (0, _routematchutils.safeRouteMatcher)(rawMatcher); -} //# sourceMappingURL=route-matcher.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - assign: null, - searchParamsToUrlQuery: null, - urlQueryToSearchParams: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - assign: function() { - return assign; - }, - searchParamsToUrlQuery: function() { - return searchParamsToUrlQuery; - }, - urlQueryToSearchParams: function() { - return urlQueryToSearchParams; - } -}); -function searchParamsToUrlQuery(searchParams) { - const query = {}; - for (const [key, value] of searchParams.entries()){ - const existing = query[key]; - if (typeof existing === 'undefined') { - query[key] = value; - } else if (Array.isArray(existing)) { - existing.push(value); - } else { - query[key] = [ - existing, - value - ]; - } - } - return query; -} -function stringifyUrlQueryParam(param) { - if (typeof param === 'string') { - return param; - } - if (typeof param === 'number' && !isNaN(param) || typeof param === 'boolean') { - return String(param); - } else { - return ''; - } -} -function urlQueryToSearchParams(query) { - const searchParams = new URLSearchParams(); - for (const [key, value] of Object.entries(query)){ - if (Array.isArray(value)) { - for (const item of value){ - searchParams.append(key, stringifyUrlQueryParam(item)); - } - } else { - searchParams.set(key, stringifyUrlQueryParam(value)); - } - } - return searchParams; -} -function assign(target, ...searchParamsList) { - for (const searchParams of searchParamsList){ - for (const key of searchParams.keys()){ - target.delete(key); - } - for (const [key, value] of searchParams.entries()){ - target.append(key, value); - } - } - return target; -} //# sourceMappingURL=querystring.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "parseRelativeUrl", { - enumerable: true, - get: function() { - return parseRelativeUrl; - } -}); -const _utils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils.js [app-rsc] (ecmascript)"); -const _querystring = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-rsc] (ecmascript)"); -function parseRelativeUrl(url, base, parseQuery = true) { - const globalBase = new URL(("TURBOPACK compile-time truthy", 1) ? 'http://n' : "TURBOPACK unreachable"); - const resolvedBase = base ? new URL(base, globalBase) : url.startsWith('.') ? new URL(("TURBOPACK compile-time truthy", 1) ? 'http://n' : "TURBOPACK unreachable") : globalBase; - const { pathname, searchParams, search, hash, href, origin } = new URL(url, resolvedBase); - if (origin !== globalBase.origin) { - throw Object.defineProperty(new Error(`invariant: invalid relative URL, router received ${url}`), "__NEXT_ERROR_CODE", { - value: "E159", - enumerable: false, - configurable: true - }); - } - return { - pathname, - query: parseQuery ? (0, _querystring.searchParamsToUrlQuery)(searchParams) : undefined, - search, - hash, - href: href.slice(origin.length), - // We don't know for relative URLs at this point since we set a custom, internal - // base that isn't surfaced to users. - slashes: undefined - }; -} //# sourceMappingURL=parse-relative-url.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/parse-url.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "parseUrl", { - enumerable: true, - get: function() { - return parseUrl; - } -}); -const _querystring = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-rsc] (ecmascript)"); -const _parserelativeurl = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js [app-rsc] (ecmascript)"); -function parseUrl(url) { - if (url.startsWith('/')) { - return (0, _parserelativeurl.parseRelativeUrl)(url); - } - const parsedURL = new URL(url); - return { - hash: parsedURL.hash, - hostname: parsedURL.hostname, - href: parsedURL.href, - pathname: parsedURL.pathname, - port: parsedURL.port, - protocol: parsedURL.protocol, - query: (0, _querystring.searchParamsToUrlQuery)(parsedURL.searchParams), - search: parsedURL.search, - origin: parsedURL.origin, - slashes: parsedURL.href.slice(parsedURL.protocol.length, parsedURL.protocol.length + 2) === '//' - }; -} //# sourceMappingURL=parse-url.js.map -}), -"[project]/node_modules/next/dist/compiled/cookie/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/cookie") + "/"; - var e = {}; - (()=>{ - var r = e; - /*! - * cookie - * Copyright(c) 2012-2014 Roman Shtylman - * Copyright(c) 2015 Douglas Christopher Wilson - * MIT Licensed - */ r.parse = parse; - r.serialize = serialize; - var i = decodeURIComponent; - var t = encodeURIComponent; - var a = /; */; - var n = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/; - function parse(e, r) { - if (typeof e !== "string") { - throw new TypeError("argument str must be a string"); - } - var t = {}; - var n = r || {}; - var o = e.split(a); - var s = n.decode || i; - for(var p = 0; p < o.length; p++){ - var f = o[p]; - var u = f.indexOf("="); - if (u < 0) { - continue; - } - var v = f.substr(0, u).trim(); - var c = f.substr(++u, f.length).trim(); - if ('"' == c[0]) { - c = c.slice(1, -1); - } - if (undefined == t[v]) { - t[v] = tryDecode(c, s); - } - } - return t; - } - function serialize(e, r, i) { - var a = i || {}; - var o = a.encode || t; - if (typeof o !== "function") { - throw new TypeError("option encode is invalid"); - } - if (!n.test(e)) { - throw new TypeError("argument name is invalid"); - } - var s = o(r); - if (s && !n.test(s)) { - throw new TypeError("argument val is invalid"); - } - var p = e + "=" + s; - if (null != a.maxAge) { - var f = a.maxAge - 0; - if (isNaN(f) || !isFinite(f)) { - throw new TypeError("option maxAge is invalid"); - } - p += "; Max-Age=" + Math.floor(f); - } - if (a.domain) { - if (!n.test(a.domain)) { - throw new TypeError("option domain is invalid"); - } - p += "; Domain=" + a.domain; - } - if (a.path) { - if (!n.test(a.path)) { - throw new TypeError("option path is invalid"); - } - p += "; Path=" + a.path; - } - if (a.expires) { - if (typeof a.expires.toUTCString !== "function") { - throw new TypeError("option expires is invalid"); - } - p += "; Expires=" + a.expires.toUTCString(); - } - if (a.httpOnly) { - p += "; HttpOnly"; - } - if (a.secure) { - p += "; Secure"; - } - if (a.sameSite) { - var u = typeof a.sameSite === "string" ? a.sameSite.toLowerCase() : a.sameSite; - switch(u){ - case true: - p += "; SameSite=Strict"; - break; - case "lax": - p += "; SameSite=Lax"; - break; - case "strict": - p += "; SameSite=Strict"; - break; - case "none": - p += "; SameSite=None"; - break; - default: - throw new TypeError("option sameSite is invalid"); - } - } - return p; - } - function tryDecode(e, r) { - try { - return r(e); - } catch (r) { - return e; - } - } - })(); - module.exports = e; -})(); -}), -"[project]/node_modules/next/dist/server/api-utils/get-cookie-parser.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getCookieParser", { - enumerable: true, - get: function() { - return getCookieParser; - } -}); -function getCookieParser(headers) { - return function parseCookie() { - const { cookie } = headers; - if (!cookie) { - return {}; - } - const { parse: parseCookieFn } = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/cookie/index.js [app-rsc] (ecmascript)"); - return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie); - }; -} //# sourceMappingURL=get-cookie-parser.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - compileNonPath: null, - matchHas: null, - parseDestination: null, - prepareDestination: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - compileNonPath: function() { - return compileNonPath; - }, - matchHas: function() { - return matchHas; - }, - parseDestination: function() { - return parseDestination; - }, - prepareDestination: function() { - return prepareDestination; - } -}); -const _escaperegexp = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/escape-regexp.js [app-rsc] (ecmascript)"); -const _parseurl = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-url.js [app-rsc] (ecmascript)"); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -const _getcookieparser = __turbopack_context__.r("[project]/node_modules/next/dist/server/api-utils/get-cookie-parser.js [app-rsc] (ecmascript)"); -const _routematchutils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js [app-rsc] (ecmascript)"); -/** - * Ensure only a-zA-Z are used for param names for proper interpolating - * with path-to-regexp - */ function getSafeParamName(paramName) { - let newParamName = ''; - for(let i = 0; i < paramName.length; i++){ - const charCode = paramName.charCodeAt(i); - if (charCode > 64 && charCode < 91 || // A-Z - charCode > 96 && charCode < 123 // a-z - ) { - newParamName += paramName[i]; - } - } - return newParamName; -} -function escapeSegment(str, segmentName) { - return str.replace(new RegExp(`:${(0, _escaperegexp.escapeStringRegexp)(segmentName)}`, 'g'), `__ESC_COLON_${segmentName}`); -} -function unescapeSegments(str) { - return str.replace(/__ESC_COLON_/gi, ':'); -} -function matchHas(req, query, has = [], missing = []) { - const params = {}; - const hasMatch = (hasItem)=>{ - let value; - let key = hasItem.key; - switch(hasItem.type){ - case 'header': - { - key = key.toLowerCase(); - value = req.headers[key]; - break; - } - case 'cookie': - { - if ('cookies' in req) { - value = req.cookies[hasItem.key]; - } else { - const cookies = (0, _getcookieparser.getCookieParser)(req.headers)(); - value = cookies[hasItem.key]; - } - break; - } - case 'query': - { - value = query[key]; - break; - } - case 'host': - { - const { host } = req?.headers || {}; - // remove port from host if present - const hostname = host?.split(':', 1)[0].toLowerCase(); - value = hostname; - break; - } - default: - { - break; - } - } - if (!hasItem.value && value) { - params[getSafeParamName(key)] = value; - return true; - } else if (value) { - const matcher = new RegExp(`^${hasItem.value}$`); - const matches = Array.isArray(value) ? value.slice(-1)[0].match(matcher) : value.match(matcher); - if (matches) { - if (Array.isArray(matches)) { - if (matches.groups) { - Object.keys(matches.groups).forEach((groupKey)=>{ - params[groupKey] = matches.groups[groupKey]; - }); - } else if (hasItem.type === 'host' && matches[0]) { - params.host = matches[0]; - } - } - return true; - } - } - return false; - }; - const allMatch = has.every((item)=>hasMatch(item)) && !missing.some((item)=>hasMatch(item)); - if (allMatch) { - return params; - } - return false; -} -function compileNonPath(value, params) { - if (!value.includes(':')) { - return value; - } - for (const key of Object.keys(params)){ - if (value.includes(`:${key}`)) { - value = value.replace(new RegExp(`:${key}\\*`, 'g'), `:${key}--ESCAPED_PARAM_ASTERISKS`).replace(new RegExp(`:${key}\\?`, 'g'), `:${key}--ESCAPED_PARAM_QUESTION`).replace(new RegExp(`:${key}\\+`, 'g'), `:${key}--ESCAPED_PARAM_PLUS`).replace(new RegExp(`:${key}(?!\\w)`, 'g'), `--ESCAPED_PARAM_COLON${key}`); - } - } - value = value.replace(/(:|\*|\?|\+|\(|\)|\{|\})/g, '\\$1').replace(/--ESCAPED_PARAM_PLUS/g, '+').replace(/--ESCAPED_PARAM_COLON/g, ':').replace(/--ESCAPED_PARAM_QUESTION/g, '?').replace(/--ESCAPED_PARAM_ASTERISKS/g, '*'); - // the value needs to start with a forward-slash to be compiled - // correctly - return (0, _routematchutils.safeCompile)(`/${value}`, { - validate: false - })(params).slice(1); -} -function parseDestination(args) { - let escaped = args.destination; - for (const param of Object.keys({ - ...args.params, - ...args.query - })){ - if (!param) continue; - escaped = escapeSegment(escaped, param); - } - const parsed = (0, _parseurl.parseUrl)(escaped); - let pathname = parsed.pathname; - if (pathname) { - pathname = unescapeSegments(pathname); - } - let href = parsed.href; - if (href) { - href = unescapeSegments(href); - } - let hostname = parsed.hostname; - if (hostname) { - hostname = unescapeSegments(hostname); - } - let hash = parsed.hash; - if (hash) { - hash = unescapeSegments(hash); - } - let search = parsed.search; - if (search) { - search = unescapeSegments(search); - } - let origin = parsed.origin; - if (origin) { - origin = unescapeSegments(origin); - } - return { - ...parsed, - pathname, - hostname, - href, - hash, - search, - origin - }; -} -function prepareDestination(args) { - const parsedDestination = parseDestination(args); - const { hostname: destHostname, query: destQuery, search: destSearch } = parsedDestination; - // The following code assumes that the pathname here includes the hash if it's - // present. - let destPath = parsedDestination.pathname; - if (parsedDestination.hash) { - destPath = `${destPath}${parsedDestination.hash}`; - } - const destParams = []; - const destPathParamKeys = []; - (0, _routematchutils.safePathToRegexp)(destPath, destPathParamKeys); - for (const key of destPathParamKeys){ - destParams.push(key.name); - } - if (destHostname) { - const destHostnameParamKeys = []; - (0, _routematchutils.safePathToRegexp)(destHostname, destHostnameParamKeys); - for (const key of destHostnameParamKeys){ - destParams.push(key.name); - } - } - const destPathCompiler = (0, _routematchutils.safeCompile)(destPath, // have already validated before we got to this point and validating - // breaks compiling destinations with named pattern params from the source - // e.g. /something:hello(.*) -> /another/:hello is broken with validation - // since compile validation is meant for reversing and not for inserting - // params from a separate path-regex into another - { - validate: false - }); - let destHostnameCompiler; - if (destHostname) { - destHostnameCompiler = (0, _routematchutils.safeCompile)(destHostname, { - validate: false - }); - } - // update any params in query values - for (const [key, strOrArray] of Object.entries(destQuery)){ - // the value needs to start with a forward-slash to be compiled - // correctly - if (Array.isArray(strOrArray)) { - destQuery[key] = strOrArray.map((value)=>compileNonPath(unescapeSegments(value), args.params)); - } else if (typeof strOrArray === 'string') { - destQuery[key] = compileNonPath(unescapeSegments(strOrArray), args.params); - } - } - // add path params to query if it's not a redirect and not - // already defined in destination query or path - let paramKeys = Object.keys(args.params).filter((name)=>name !== 'nextInternalLocale'); - if (args.appendParamsToQuery && !paramKeys.some((key)=>destParams.includes(key))) { - for (const key of paramKeys){ - if (!(key in destQuery)) { - destQuery[key] = args.params[key]; - } - } - } - let newUrl; - // The compiler also that the interception route marker is an unnamed param, hence '0', - // so we need to add it to the params object. - if ((0, _interceptionroutes.isInterceptionRouteAppPath)(destPath)) { - for (const segment of destPath.split('/')){ - const marker = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - if (marker === '(..)(..)') { - args.params['0'] = '(..)'; - args.params['1'] = '(..)'; - } else { - args.params['0'] = marker; - } - break; - } - } - } - try { - newUrl = destPathCompiler(args.params); - const [pathname, hash] = newUrl.split('#', 2); - if (destHostnameCompiler) { - parsedDestination.hostname = destHostnameCompiler(args.params); - } - parsedDestination.pathname = pathname; - parsedDestination.hash = `${hash ? '#' : ''}${hash || ''}`; - parsedDestination.search = destSearch ? compileNonPath(destSearch, args.params) : ''; - } catch (err) { - if (err.message.match(/Expected .*? to not repeat, but got an array/)) { - throw Object.defineProperty(new Error(`To use a multi-match in the destination you must add \`*\` at the end of the param name to signify it should repeat. https://nextjs.org/docs/messages/invalid-multi-match`), "__NEXT_ERROR_CODE", { - value: "E329", - enumerable: false, - configurable: true - }); - } - throw err; - } - // Query merge order lowest priority to highest - // 1. initial URL query values - // 2. path segment values - // 3. destination specified query values - parsedDestination.query = { - ...args.query, - ...parsedDestination.query - }; - return { - newUrl, - destQuery, - parsedDestination - }; -} //# sourceMappingURL=prepare-destination.js.map -}), -"[project]/node_modules/next/dist/server/web/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - fromNodeOutgoingHttpHeaders: null, - normalizeNextQueryParam: null, - splitCookiesString: null, - toNodeOutgoingHttpHeaders: null, - validateURL: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - fromNodeOutgoingHttpHeaders: function() { - return fromNodeOutgoingHttpHeaders; - }, - normalizeNextQueryParam: function() { - return normalizeNextQueryParam; - }, - splitCookiesString: function() { - return splitCookiesString; - }, - toNodeOutgoingHttpHeaders: function() { - return toNodeOutgoingHttpHeaders; - }, - validateURL: function() { - return validateURL; - } -}); -const _constants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/constants.js [app-rsc] (ecmascript)"); -function fromNodeOutgoingHttpHeaders(nodeHeaders) { - const headers = new Headers(); - for (let [key, value] of Object.entries(nodeHeaders)){ - const values = Array.isArray(value) ? value : [ - value - ]; - for (let v of values){ - if (typeof v === 'undefined') continue; - if (typeof v === 'number') { - v = v.toString(); - } - headers.append(key, v); - } - } - return headers; -} -function splitCookiesString(cookiesString) { - var cookiesStrings = []; - var pos = 0; - var start; - var ch; - var lastComma; - var nextStart; - var cookiesSeparatorFound; - function skipWhitespace() { - while(pos < cookiesString.length && /\s/.test(cookiesString.charAt(pos))){ - pos += 1; - } - return pos < cookiesString.length; - } - function notSpecialChar() { - ch = cookiesString.charAt(pos); - return ch !== '=' && ch !== ';' && ch !== ','; - } - while(pos < cookiesString.length){ - start = pos; - cookiesSeparatorFound = false; - while(skipWhitespace()){ - ch = cookiesString.charAt(pos); - if (ch === ',') { - // ',' is a cookie separator if we have later first '=', not ';' or ',' - lastComma = pos; - pos += 1; - skipWhitespace(); - nextStart = pos; - while(pos < cookiesString.length && notSpecialChar()){ - pos += 1; - } - // currently special character - if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') { - // we found cookies separator - cookiesSeparatorFound = true; - // pos is inside the next cookie, so back up and return it. - pos = nextStart; - cookiesStrings.push(cookiesString.substring(start, lastComma)); - start = pos; - } else { - // in param ',' or param separator ';', - // we continue from that comma - pos = lastComma + 1; - } - } else { - pos += 1; - } - } - if (!cookiesSeparatorFound || pos >= cookiesString.length) { - cookiesStrings.push(cookiesString.substring(start, cookiesString.length)); - } - } - return cookiesStrings; -} -function toNodeOutgoingHttpHeaders(headers) { - const nodeHeaders = {}; - const cookies = []; - if (headers) { - for (const [key, value] of headers.entries()){ - if (key.toLowerCase() === 'set-cookie') { - // We may have gotten a comma joined string of cookies, or multiple - // set-cookie headers. We need to merge them into one header array - // to represent all the cookies. - cookies.push(...splitCookiesString(value)); - nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies; - } else { - nodeHeaders[key] = value; - } - } - } - return nodeHeaders; -} -function validateURL(url) { - try { - return String(new URL(String(url))); - } catch (error) { - throw Object.defineProperty(new Error(`URL is malformed "${String(url)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`, { - cause: error - }), "__NEXT_ERROR_CODE", { - value: "E61", - enumerable: false, - configurable: true - }); - } -} -function normalizeNextQueryParam(key) { - const prefixes = [ - _constants.NEXT_QUERY_PARAM_PREFIX, - _constants.NEXT_INTERCEPTION_MARKER_PREFIX - ]; - for (const prefix of prefixes){ - if (key !== prefix && key.startsWith(prefix)) { - return key.substring(prefix.length); - } - } - return null; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/server/lib/decode-query-path-parameter.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Decodes a query path parameter. - * - * @param value - The value to decode. - * @returns The decoded value. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "decodeQueryPathParameter", { - enumerable: true, - get: function() { - return decodeQueryPathParameter; - } -}); -function decodeQueryPathParameter(value) { - // When deployed to Vercel, the value may be encoded, so this attempts to - // decode it and returns the original value if it fails. - try { - return decodeURIComponent(value); - } catch { - return value; - } -} //# sourceMappingURL=decode-query-path-parameter.js.map -}), -"[project]/node_modules/next/dist/client/components/app-router-headers.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ACTION_HEADER: null, - FLIGHT_HEADERS: null, - NEXT_ACTION_NOT_FOUND_HEADER: null, - NEXT_ACTION_REVALIDATED_HEADER: null, - NEXT_DID_POSTPONE_HEADER: null, - NEXT_HMR_REFRESH_HASH_COOKIE: null, - NEXT_HMR_REFRESH_HEADER: null, - NEXT_HTML_REQUEST_ID_HEADER: null, - NEXT_IS_PRERENDER_HEADER: null, - NEXT_REQUEST_ID_HEADER: null, - NEXT_REWRITTEN_PATH_HEADER: null, - NEXT_REWRITTEN_QUERY_HEADER: null, - NEXT_ROUTER_PREFETCH_HEADER: null, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER: null, - NEXT_ROUTER_STALE_TIME_HEADER: null, - NEXT_ROUTER_STATE_TREE_HEADER: null, - NEXT_RSC_UNION_QUERY: null, - NEXT_URL: null, - RSC_CONTENT_TYPE_HEADER: null, - RSC_HEADER: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ACTION_HEADER: function() { - return ACTION_HEADER; - }, - FLIGHT_HEADERS: function() { - return FLIGHT_HEADERS; - }, - NEXT_ACTION_NOT_FOUND_HEADER: function() { - return NEXT_ACTION_NOT_FOUND_HEADER; - }, - NEXT_ACTION_REVALIDATED_HEADER: function() { - return NEXT_ACTION_REVALIDATED_HEADER; - }, - NEXT_DID_POSTPONE_HEADER: function() { - return NEXT_DID_POSTPONE_HEADER; - }, - NEXT_HMR_REFRESH_HASH_COOKIE: function() { - return NEXT_HMR_REFRESH_HASH_COOKIE; - }, - NEXT_HMR_REFRESH_HEADER: function() { - return NEXT_HMR_REFRESH_HEADER; - }, - NEXT_HTML_REQUEST_ID_HEADER: function() { - return NEXT_HTML_REQUEST_ID_HEADER; - }, - NEXT_IS_PRERENDER_HEADER: function() { - return NEXT_IS_PRERENDER_HEADER; - }, - NEXT_REQUEST_ID_HEADER: function() { - return NEXT_REQUEST_ID_HEADER; - }, - NEXT_REWRITTEN_PATH_HEADER: function() { - return NEXT_REWRITTEN_PATH_HEADER; - }, - NEXT_REWRITTEN_QUERY_HEADER: function() { - return NEXT_REWRITTEN_QUERY_HEADER; - }, - NEXT_ROUTER_PREFETCH_HEADER: function() { - return NEXT_ROUTER_PREFETCH_HEADER; - }, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER: function() { - return NEXT_ROUTER_SEGMENT_PREFETCH_HEADER; - }, - NEXT_ROUTER_STALE_TIME_HEADER: function() { - return NEXT_ROUTER_STALE_TIME_HEADER; - }, - NEXT_ROUTER_STATE_TREE_HEADER: function() { - return NEXT_ROUTER_STATE_TREE_HEADER; - }, - NEXT_RSC_UNION_QUERY: function() { - return NEXT_RSC_UNION_QUERY; - }, - NEXT_URL: function() { - return NEXT_URL; - }, - RSC_CONTENT_TYPE_HEADER: function() { - return RSC_CONTENT_TYPE_HEADER; - }, - RSC_HEADER: function() { - return RSC_HEADER; - } -}); -const RSC_HEADER = 'rsc'; -const ACTION_HEADER = 'next-action'; -const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree'; -const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch'; -const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER = 'next-router-segment-prefetch'; -const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh'; -const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__'; -const NEXT_URL = 'next-url'; -const RSC_CONTENT_TYPE_HEADER = 'text/x-component'; -const FLIGHT_HEADERS = [ - RSC_HEADER, - NEXT_ROUTER_STATE_TREE_HEADER, - NEXT_ROUTER_PREFETCH_HEADER, - NEXT_HMR_REFRESH_HEADER, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER -]; -const NEXT_RSC_UNION_QUERY = '_rsc'; -const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time'; -const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed'; -const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path'; -const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query'; -const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender'; -const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found'; -const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id'; -const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id'; -const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated'; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-router-headers.js.map -}), -"[project]/node_modules/next/dist/lib/url.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - isFullStringUrl: null, - parseReqUrl: null, - parseUrl: null, - stripNextRscUnionQuery: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - isFullStringUrl: function() { - return isFullStringUrl; - }, - parseReqUrl: function() { - return parseReqUrl; - }, - parseUrl: function() { - return parseUrl; - }, - stripNextRscUnionQuery: function() { - return stripNextRscUnionQuery; - } -}); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -const DUMMY_ORIGIN = 'http://n'; -function isFullStringUrl(url) { - return /https?:\/\//.test(url); -} -function parseUrl(url) { - let parsed = undefined; - try { - parsed = new URL(url, DUMMY_ORIGIN); - } catch {} - return parsed; -} -function parseReqUrl(url) { - const parsedUrl = parseUrl(url); - if (!parsedUrl) { - return; - } - const query = {}; - for (const key of parsedUrl.searchParams.keys()){ - const values = parsedUrl.searchParams.getAll(key); - query[key] = values.length > 1 ? values : values[0]; - } - const legacyUrl = { - query, - hash: parsedUrl.hash, - search: parsedUrl.search, - path: parsedUrl.pathname, - pathname: parsedUrl.pathname, - href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`, - host: '', - hostname: '', - auth: '', - protocol: '', - slashes: null, - port: '' - }; - return legacyUrl; -} -function stripNextRscUnionQuery(relativeUrl) { - const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN); - urlInstance.searchParams.delete(_approuterheaders.NEXT_RSC_UNION_QUERY); - return urlInstance.pathname + urlInstance.search; -} //# sourceMappingURL=url.js.map -}), -"[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -function _getRequireWildcardCache(nodeInterop) { - if (typeof WeakMap !== "function") return null; - var cacheBabelInterop = new WeakMap(); - var cacheNodeInterop = new WeakMap(); - return (_getRequireWildcardCache = function(nodeInterop) { - return nodeInterop ? cacheNodeInterop : cacheBabelInterop; - })(nodeInterop); -} -function _interop_require_wildcard(obj, nodeInterop) { - if (!nodeInterop && obj && obj.__esModule) return obj; - if (obj === null || typeof obj !== "object" && typeof obj !== "function") return { - default: obj - }; - var cache = _getRequireWildcardCache(nodeInterop); - if (cache && cache.has(obj)) return cache.get(obj); - var newObj = { - __proto__: null - }; - var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; - for(var key in obj){ - if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { - var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; - if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc); - else newObj[key] = obj[key]; - } - } - newObj.default = obj; - if (cache) cache.set(obj, newObj); - return newObj; -} -exports._ = _interop_require_wildcard; -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/format-url.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// Format function modified from nodejs -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - formatUrl: null, - formatWithValidation: null, - urlObjectKeys: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - formatUrl: function() { - return formatUrl; - }, - formatWithValidation: function() { - return formatWithValidation; - }, - urlObjectKeys: function() { - return urlObjectKeys; - } -}); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-rsc] (ecmascript)"); -const _querystring = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-rsc] (ecmascript)")); -const slashedProtocols = /https?|ftp|gopher|file/; -function formatUrl(urlObj) { - let { auth, hostname } = urlObj; - let protocol = urlObj.protocol || ''; - let pathname = urlObj.pathname || ''; - let hash = urlObj.hash || ''; - let query = urlObj.query || ''; - let host = false; - auth = auth ? encodeURIComponent(auth).replace(/%3A/i, ':') + '@' : ''; - if (urlObj.host) { - host = auth + urlObj.host; - } else if (hostname) { - host = auth + (~hostname.indexOf(':') ? `[${hostname}]` : hostname); - if (urlObj.port) { - host += ':' + urlObj.port; - } - } - if (query && typeof query === 'object') { - query = String(_querystring.urlQueryToSearchParams(query)); - } - let search = urlObj.search || query && `?${query}` || ''; - if (protocol && !protocol.endsWith(':')) protocol += ':'; - if (urlObj.slashes || (!protocol || slashedProtocols.test(protocol)) && host !== false) { - host = '//' + (host || ''); - if (pathname && pathname[0] !== '/') pathname = '/' + pathname; - } else if (!host) { - host = ''; - } - if (hash && hash[0] !== '#') hash = '#' + hash; - if (search && search[0] !== '?') search = '?' + search; - pathname = pathname.replace(/[?#]/g, encodeURIComponent); - search = search.replace('#', '%23'); - return `${protocol}${host}${pathname}${search}${hash}`; -} -const urlObjectKeys = [ - 'auth', - 'hash', - 'host', - 'hostname', - 'href', - 'path', - 'pathname', - 'port', - 'protocol', - 'query', - 'search', - 'slashes' -]; -function formatWithValidation(url) { - if ("TURBOPACK compile-time truthy", 1) { - if (url !== null && typeof url === 'object') { - Object.keys(url).forEach((key)=>{ - if (!urlObjectKeys.includes(key)) { - console.warn(`Unknown key passed via urlObject into url.format: ${key}`); - } - }); - } - } - return formatUrl(url); -} //# sourceMappingURL=format-url.js.map -}), -"[project]/node_modules/next/dist/server/server-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getPreviouslyRevalidatedTags: null, - getServerUtils: null, - interpolateDynamicPath: null, - normalizeCdnUrl: null, - normalizeDynamicRouteParams: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getPreviouslyRevalidatedTags: function() { - return getPreviouslyRevalidatedTags; - }, - getServerUtils: function() { - return getServerUtils; - }, - interpolateDynamicPath: function() { - return interpolateDynamicPath; - }, - normalizeCdnUrl: function() { - return normalizeCdnUrl; - }, - normalizeDynamicRouteParams: function() { - return normalizeDynamicRouteParams; - } -}); -const _normalizelocalepath = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js [app-rsc] (ecmascript)"); -const _pathmatch = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/path-match.js [app-rsc] (ecmascript)"); -const _routeregex = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-regex.js [app-rsc] (ecmascript)"); -const _routematcher = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-matcher.js [app-rsc] (ecmascript)"); -const _preparedestination = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js [app-rsc] (ecmascript)"); -const _removetrailingslash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)"); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -const _constants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/constants.js [app-rsc] (ecmascript)"); -const _utils = __turbopack_context__.r("[project]/node_modules/next/dist/server/web/utils.js [app-rsc] (ecmascript)"); -const _decodequerypathparameter = __turbopack_context__.r("[project]/node_modules/next/dist/server/lib/decode-query-path-parameter.js [app-rsc] (ecmascript)"); -const _url = __turbopack_context__.r("[project]/node_modules/next/dist/lib/url.js [app-rsc] (ecmascript)"); -const _formaturl = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/format-url.js [app-rsc] (ecmascript)"); -function filterInternalQuery(query, paramKeys) { - // this is used to pass query information in rewrites - // but should not be exposed in final query - delete query['nextInternalLocale']; - for(const key in query){ - const isNextQueryPrefix = key !== _constants.NEXT_QUERY_PARAM_PREFIX && key.startsWith(_constants.NEXT_QUERY_PARAM_PREFIX); - const isNextInterceptionMarkerPrefix = key !== _constants.NEXT_INTERCEPTION_MARKER_PREFIX && key.startsWith(_constants.NEXT_INTERCEPTION_MARKER_PREFIX); - if (isNextQueryPrefix || isNextInterceptionMarkerPrefix || paramKeys.includes(key)) { - delete query[key]; - } - } -} -function normalizeCdnUrl(req, paramKeys) { - // make sure to normalize req.url from CDNs to strip dynamic and rewrite - // params from the query which are added during routing - const _parsedUrl = (0, _url.parseReqUrl)(req.url); - // we can't normalize if we can't parse - if (!_parsedUrl) { - return req.url; - } - delete _parsedUrl.search; - filterInternalQuery(_parsedUrl.query, paramKeys); - req.url = (0, _formaturl.formatUrl)(_parsedUrl); -} -function interpolateDynamicPath(pathname, params, defaultRouteRegex) { - if (!defaultRouteRegex) return pathname; - for (const param of Object.keys(defaultRouteRegex.groups)){ - const { optional, repeat } = defaultRouteRegex.groups[param]; - let builtParam = `[${repeat ? '...' : ''}${param}]`; - if (optional) { - builtParam = `[${builtParam}]`; - } - let paramValue; - const value = params[param]; - if (Array.isArray(value)) { - paramValue = value.map((v)=>v && encodeURIComponent(v)).join('/'); - } else if (value) { - paramValue = encodeURIComponent(value); - } else { - paramValue = ''; - } - if (paramValue || optional) { - pathname = pathname.replaceAll(builtParam, paramValue); - } - } - return pathname; -} -function normalizeDynamicRouteParams(query, defaultRouteRegex, defaultRouteMatches, ignoreMissingOptional) { - let hasValidParams = true; - let params = {}; - for (const key of Object.keys(defaultRouteRegex.groups)){ - let value = query[key]; - if (typeof value === 'string') { - value = (0, _apppaths.normalizeRscURL)(value); - } else if (Array.isArray(value)) { - value = value.map(_apppaths.normalizeRscURL); - } - // if the value matches the default value we can't rely - // on the parsed params, this is used to signal if we need - // to parse x-now-route-matches or not - const defaultValue = defaultRouteMatches[key]; - const isOptional = defaultRouteRegex.groups[key].optional; - const isDefaultValue = Array.isArray(defaultValue) ? defaultValue.some((defaultVal)=>{ - return Array.isArray(value) ? value.some((val)=>val.includes(defaultVal)) : value == null ? void 0 : value.includes(defaultVal); - }) : value == null ? void 0 : value.includes(defaultValue); - if (isDefaultValue || typeof value === 'undefined' && !(isOptional && ignoreMissingOptional)) { - return { - params: {}, - hasValidParams: false - }; - } - // non-provided optional values should be undefined so normalize - // them to undefined - if (isOptional && (!value || Array.isArray(value) && value.length === 1 && // fallback optional catch-all SSG pages have - // [[...paramName]] for the root path on Vercel - (value[0] === 'index' || value[0] === `[[...${key}]]`) || value === 'index' || value === `[[...${key}]]`)) { - value = undefined; - delete query[key]; - } - // query values from the proxy aren't already split into arrays - // so make sure to normalize catch-all values - if (value && typeof value === 'string' && defaultRouteRegex.groups[key].repeat) { - value = value.split('/'); - } - if (value) { - params[key] = value; - } - } - return { - params, - hasValidParams - }; -} -function getServerUtils({ page, i18n, basePath, rewrites, pageIsDynamic, trailingSlash, caseSensitive }) { - let defaultRouteRegex; - let dynamicRouteMatcher; - let defaultRouteMatches; - if (pageIsDynamic) { - defaultRouteRegex = (0, _routeregex.getNamedRouteRegex)(page, { - prefixRouteKeys: false - }); - dynamicRouteMatcher = (0, _routematcher.getRouteMatcher)(defaultRouteRegex); - defaultRouteMatches = dynamicRouteMatcher(page); - } - function handleRewrites(req, parsedUrl) { - // Here we deep clone the parsedUrl to avoid mutating the original. We also - // cast this to a mutable type so we can mutate it within this scope. - const rewrittenParsedUrl = structuredClone(parsedUrl); - const rewriteParams = {}; - let fsPathname = rewrittenParsedUrl.pathname; - const matchesPage = ()=>{ - const fsPathnameNoSlash = (0, _removetrailingslash.removeTrailingSlash)(fsPathname || ''); - return fsPathnameNoSlash === (0, _removetrailingslash.removeTrailingSlash)(page) || (dynamicRouteMatcher == null ? void 0 : dynamicRouteMatcher(fsPathnameNoSlash)); - }; - const checkRewrite = (rewrite)=>{ - const matcher = (0, _pathmatch.getPathMatch)(rewrite.source + (trailingSlash ? '(/)?' : ''), { - removeUnnamedParams: true, - strict: true, - sensitive: !!caseSensitive - }); - if (!rewrittenParsedUrl.pathname) return false; - let params = matcher(rewrittenParsedUrl.pathname); - if ((rewrite.has || rewrite.missing) && params) { - const hasParams = (0, _preparedestination.matchHas)(req, rewrittenParsedUrl.query, rewrite.has, rewrite.missing); - if (hasParams) { - Object.assign(params, hasParams); - } else { - params = false; - } - } - if (params) { - const { parsedDestination, destQuery } = (0, _preparedestination.prepareDestination)({ - appendParamsToQuery: true, - destination: rewrite.destination, - params: params, - query: rewrittenParsedUrl.query - }); - // if the rewrite destination is external break rewrite chain - if (parsedDestination.protocol) { - return true; - } - Object.assign(rewriteParams, destQuery, params); - Object.assign(rewrittenParsedUrl.query, parsedDestination.query); - delete parsedDestination.query; - Object.assign(rewrittenParsedUrl, parsedDestination); - fsPathname = rewrittenParsedUrl.pathname; - if (!fsPathname) return false; - if (basePath) { - fsPathname = fsPathname.replace(new RegExp(`^${basePath}`), '') || '/'; - } - if (i18n) { - const result = (0, _normalizelocalepath.normalizeLocalePath)(fsPathname, i18n.locales); - fsPathname = result.pathname; - rewrittenParsedUrl.query.nextInternalLocale = result.detectedLocale || params.nextInternalLocale; - } - if (fsPathname === page) { - return true; - } - if (pageIsDynamic && dynamicRouteMatcher) { - const dynamicParams = dynamicRouteMatcher(fsPathname); - if (dynamicParams) { - rewrittenParsedUrl.query = { - ...rewrittenParsedUrl.query, - ...dynamicParams - }; - return true; - } - } - } - return false; - }; - for (const rewrite of rewrites.beforeFiles || []){ - checkRewrite(rewrite); - } - if (fsPathname !== page) { - let finished = false; - for (const rewrite of rewrites.afterFiles || []){ - finished = checkRewrite(rewrite); - if (finished) break; - } - if (!finished && !matchesPage()) { - for (const rewrite of rewrites.fallback || []){ - finished = checkRewrite(rewrite); - if (finished) break; - } - } - } - return { - rewriteParams, - rewrittenParsedUrl - }; - } - function getParamsFromRouteMatches(routeMatchesHeader) { - // If we don't have a default route regex, we can't get params from route - // matches - if (!defaultRouteRegex) return null; - const { groups, routeKeys } = defaultRouteRegex; - const matcher = (0, _routematcher.getRouteMatcher)({ - re: { - // Simulate a RegExp match from the \`req.url\` input - exec: (str)=>{ - // Normalize all the prefixed query params. - const obj = Object.fromEntries(new URLSearchParams(str)); - for (const [key, value] of Object.entries(obj)){ - const normalizedKey = (0, _utils.normalizeNextQueryParam)(key); - if (!normalizedKey) continue; - obj[normalizedKey] = value; - delete obj[key]; - } - // Use all the named route keys. - const result = {}; - for (const keyName of Object.keys(routeKeys)){ - const paramName = routeKeys[keyName]; - // If this param name is not a valid parameter name, then skip it. - if (!paramName) continue; - const group = groups[paramName]; - const value = obj[keyName]; - // When we're missing a required param, we can't match the route. - if (!group.optional && !value) return null; - result[group.pos] = value; - } - return result; - } - }, - groups - }); - const routeMatches = matcher(routeMatchesHeader); - if (!routeMatches) return null; - return routeMatches; - } - function normalizeQueryParams(query, routeParamKeys) { - // this is used to pass query information in rewrites - // but should not be exposed in final query - delete query['nextInternalLocale']; - for (const [key, value] of Object.entries(query)){ - const normalizedKey = (0, _utils.normalizeNextQueryParam)(key); - if (!normalizedKey) continue; - // Remove the prefixed key from the query params because we want - // to consume it for the dynamic route matcher. - delete query[key]; - routeParamKeys.add(normalizedKey); - if (typeof value === 'undefined') continue; - query[normalizedKey] = Array.isArray(value) ? value.map((v)=>(0, _decodequerypathparameter.decodeQueryPathParameter)(v)) : (0, _decodequerypathparameter.decodeQueryPathParameter)(value); - } - } - return { - handleRewrites, - defaultRouteRegex, - dynamicRouteMatcher, - defaultRouteMatches, - normalizeQueryParams, - getParamsFromRouteMatches, - /** - * Normalize dynamic route params. - * - * @param query - The query params to normalize. - * @param ignoreMissingOptional - Whether to ignore missing optional params. - * @returns The normalized params and whether they are valid. - */ normalizeDynamicRouteParams: (query, ignoreMissingOptional)=>{ - if (!defaultRouteRegex || !defaultRouteMatches) { - return { - params: {}, - hasValidParams: false - }; - } - return normalizeDynamicRouteParams(query, defaultRouteRegex, defaultRouteMatches, ignoreMissingOptional); - }, - normalizeCdnUrl: (req, paramKeys)=>normalizeCdnUrl(req, paramKeys), - interpolateDynamicPath: (pathname, params)=>interpolateDynamicPath(pathname, params, defaultRouteRegex), - filterInternalQuery: (query, paramKeys)=>filterInternalQuery(query, paramKeys) - }; -} -function getPreviouslyRevalidatedTags(headers, previewModeId) { - return typeof headers[_constants.NEXT_CACHE_REVALIDATED_TAGS_HEADER] === 'string' && headers[_constants.NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER] === previewModeId ? headers[_constants.NEXT_CACHE_REVALIDATED_TAGS_HEADER].split(',') : []; -} //# sourceMappingURL=server-utils.js.map -}), -"[project]/node_modules/next/dist/shared/lib/hash.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// http://www.cse.yorku.ca/~oz/hash.html -// More specifically, 32-bit hash via djbxor -// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765) -// This is due to number type differences between rust for turbopack to js number types, -// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching -// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation -// as can gaurantee determinstic output from 32bit hash. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - djb2Hash: null, - hexHash: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - djb2Hash: function() { - return djb2Hash; - }, - hexHash: function() { - return hexHash; - } -}); -function djb2Hash(str) { - let hash = 5381; - for(let i = 0; i < str.length; i++){ - const char = str.charCodeAt(i); - hash = (hash << 5) + hash + char & 0xffffffff; - } - return hash >>> 0; -} -function hexHash(str) { - return djb2Hash(str).toString(36).slice(0, 5); -} //# sourceMappingURL=hash.js.map -}), -"[project]/node_modules/next/dist/lib/metadata/get-metadata-route.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - fillMetadataSegment: null, - normalizeMetadataPageToRoute: null, - normalizeMetadataRoute: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - fillMetadataSegment: function() { - return fillMetadataSegment; - }, - normalizeMetadataPageToRoute: function() { - return normalizeMetadataPageToRoute; - }, - normalizeMetadataRoute: function() { - return normalizeMetadataRoute; - } -}); -const _ismetadataroute = __turbopack_context__.r("[project]/node_modules/next/dist/lib/metadata/is-metadata-route.js [app-rsc] (ecmascript)"); -const _path = /*#__PURE__*/ _interop_require_default(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/isomorphic/path.js [app-rsc] (ecmascript)")); -const _serverutils = __turbopack_context__.r("[project]/node_modules/next/dist/server/server-utils.js [app-rsc] (ecmascript)"); -const _routeregex = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-regex.js [app-rsc] (ecmascript)"); -const _hash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hash.js [app-rsc] (ecmascript)"); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -const _normalizepathsep = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js [app-rsc] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-rsc] (ecmascript)"); -function _interop_require_default(obj) { - return obj && obj.__esModule ? obj : { - default: obj - }; -} -/* - * If there's special convention like (...) or @ in the page path, - * Give it a unique hash suffix to avoid conflicts - * - * e.g. - * /opengraph-image -> /opengraph-image - * /(post)/opengraph-image.tsx -> /opengraph-image-[0-9a-z]{6} - * - * Sitemap is an exception, it should not have a suffix. - * Each sitemap contains all the urls of sub routes, we don't have the case of duplicates `/(group)/sitemap.[ext]` and `/sitemap.[ext]` since they should be the same. - * Hence we always normalize the urls for sitemap and do not append hash suffix, and ensure user-land only contains one sitemap per pathname. - * - * /sitemap -> /sitemap - * /(post)/sitemap -> /sitemap - */ function getMetadataRouteSuffix(page) { - // Remove the last segment and get the parent pathname - // e.g. /parent/a/b/c -> /parent/a/b - // e.g. /parent/opengraph-image -> /parent - const parentPathname = _path.default.dirname(page); - // Only apply suffix to metadata routes except for sitemaps - if (page.endsWith('/sitemap') || page.endsWith('/sitemap.xml')) { - return ''; - } - // Calculate the hash suffix based on the parent path - let suffix = ''; - // Check if there's any special characters in the parent pathname. - const segments = parentPathname.split('/'); - if (segments.some((seg)=>(0, _segment.isGroupSegment)(seg) || (0, _segment.isParallelRouteSegment)(seg))) { - // Hash the parent path to get a unique suffix - suffix = (0, _hash.djb2Hash)(parentPathname).toString(36).slice(0, 6); - } - return suffix; -} -function fillMetadataSegment(segment, params, lastSegment) { - const pathname = (0, _apppaths.normalizeAppPath)(segment); - const routeRegex = (0, _routeregex.getNamedRouteRegex)(pathname, { - prefixRouteKeys: false - }); - const route = (0, _serverutils.interpolateDynamicPath)(pathname, params, routeRegex); - const { name, ext } = _path.default.parse(lastSegment); - const pagePath = _path.default.posix.join(segment, name); - const suffix = getMetadataRouteSuffix(pagePath); - const routeSuffix = suffix ? `-${suffix}` : ''; - return (0, _normalizepathsep.normalizePathSep)(_path.default.join(route, `${name}${routeSuffix}${ext}`)); -} -function normalizeMetadataRoute(page) { - if (!(0, _ismetadataroute.isMetadataPage)(page)) { - return page; - } - let route = page; - let suffix = ''; - if (page === '/robots') { - route += '.txt'; - } else if (page === '/manifest') { - route += '.webmanifest'; - } else { - suffix = getMetadataRouteSuffix(page); - } - // Support both /<metadata-route.ext> and custom routes /<metadata-route>/route.ts. - // If it's a metadata file route, we need to append /[id]/route to the page. - if (!route.endsWith('/route')) { - const { dir, name: baseName, ext } = _path.default.parse(route); - route = _path.default.posix.join(dir, `${baseName}${suffix ? `-${suffix}` : ''}${ext}`, 'route'); - } - return route; -} -function normalizeMetadataPageToRoute(page, isDynamic) { - const isRoute = page.endsWith('/route'); - const routePagePath = isRoute ? page.slice(0, -'/route'.length) : page; - const metadataRouteExtension = routePagePath.endsWith('/sitemap') ? '.xml' : ''; - const mapped = isDynamic ? `${routePagePath}/[__metadata_id__]` : `${routePagePath}${metadataRouteExtension}`; - return mapped + (isRoute ? '/route' : ''); -} //# sourceMappingURL=get-metadata-route.js.map -}), -"[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RouteKind", - ()=>RouteKind -]); -var RouteKind = /*#__PURE__*/ function(RouteKind) { - /** - * `PAGES` represents all the React pages that are under `pages/`. - */ RouteKind["PAGES"] = "PAGES"; - /** - * `PAGES_API` represents all the API routes under `pages/api/`. - */ RouteKind["PAGES_API"] = "PAGES_API"; - /** - * `APP_PAGE` represents all the React pages that are under `app/` with the - * filename of `page.{j,t}s{,x}`. - */ RouteKind["APP_PAGE"] = "APP_PAGE"; - /** - * `APP_ROUTE` represents all the API routes and metadata routes that are under `app/` with the - * filename of `route.{j,t}s{,x}`. - */ RouteKind["APP_ROUTE"] = "APP_ROUTE"; - /** - * `IMAGE` represents all the images that are generated by `next/image`. - */ RouteKind["IMAGE"] = "IMAGE"; - return RouteKind; -}({}); //# sourceMappingURL=route-kind.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time truthy", 1) { - module.exports = __turbopack_context__.r("[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)"); - } else //TURBOPACK unreachable - ; - } else //TURBOPACK unreachable - ; - } -} //# sourceMappingURL=module.compiled.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactServerDOMTurbopackServer; //# sourceMappingURL=react-server-dom-turbopack-server.js.map -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/client/components/builtin/global-error.js")); -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactServerDOMTurbopackStatic; //# sourceMappingURL=react-server-dom-turbopack-static.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].React; //# sourceMappingURL=react.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/layout-router.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/client-page.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/client-segment.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ReflectAdapter", - ()=>ReflectAdapter -]); -class ReflectAdapter { - static get(target, prop, receiver) { - const value = Reflect.get(target, prop, receiver); - if (typeof value === 'function') { - return value.bind(target); - } - return value; - } - static set(target, prop, value, receiver) { - return Reflect.set(target, prop, value, receiver); - } - static has(target, prop) { - return Reflect.has(target, prop); - } - static deleteProperty(target, prop) { - return Reflect.deleteProperty(target, prop); - } -} //# sourceMappingURL=reflect.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DynamicServerError", - ()=>DynamicServerError, - "isDynamicServerError", - ()=>isDynamicServerError -]); -const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'; -class DynamicServerError extends Error { - constructor(description){ - super(`Dynamic server usage: ${description}`), this.description = description, this.digest = DYNAMIC_ERROR_CODE; - } -} -function isDynamicServerError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') { - return false; - } - return err.digest === DYNAMIC_ERROR_CODE; -} //# sourceMappingURL=hooks-server-context.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "StaticGenBailoutError", - ()=>StaticGenBailoutError, - "isStaticGenBailoutError", - ()=>isStaticGenBailoutError -]); -const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'; -class StaticGenBailoutError extends Error { - constructor(...args){ - super(...args), this.code = NEXT_STATIC_GEN_BAILOUT; - } -} -function isStaticGenBailoutError(error) { - if (typeof error !== 'object' || error === null || !('code' in error)) { - return false; - } - return error.code === NEXT_STATIC_GEN_BAILOUT; -} //# sourceMappingURL=static-generation-bailout.js.map -}), -"[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isHangingPromiseRejectionError", - ()=>isHangingPromiseRejectionError, - "makeDevtoolsIOAwarePromise", - ()=>makeDevtoolsIOAwarePromise, - "makeHangingPromise", - ()=>makeHangingPromise -]); -function isHangingPromiseRejectionError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === HANGING_PROMISE_REJECTION; -} -const HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'; -class HangingPromiseRejectionError extends Error { - constructor(route, expression){ - super(`During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${route}".`), this.route = route, this.expression = expression, this.digest = HANGING_PROMISE_REJECTION; - } -} -const abortListenersBySignal = new WeakMap(); -function makeHangingPromise(signal, route, expression) { - if (signal.aborted) { - return Promise.reject(new HangingPromiseRejectionError(route, expression)); - } else { - const hangingPromise = new Promise((_, reject)=>{ - const boundRejection = reject.bind(null, new HangingPromiseRejectionError(route, expression)); - let currentListeners = abortListenersBySignal.get(signal); - if (currentListeners) { - currentListeners.push(boundRejection); - } else { - const listeners = [ - boundRejection - ]; - abortListenersBySignal.set(signal, listeners); - signal.addEventListener('abort', ()=>{ - for(let i = 0; i < listeners.length; i++){ - listeners[i](); - } - }, { - once: true - }); - } - }); - // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so - // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct - // your own promise out of it you'll need to ensure you handle the error when it rejects. - hangingPromise.catch(ignoreReject); - return hangingPromise; - } -} -function ignoreReject() {} -function makeDevtoolsIOAwarePromise(underlying, requestStore, stage) { - if (requestStore.stagedRendering) { - // We resolve each stage in a timeout, so React DevTools will pick this up as IO. - return requestStore.stagedRendering.delayUntilStage(stage, undefined, underlying); - } - // in React DevTools if we resolve in a setTimeout we will observe - // the promise resolution as something that can suspend a boundary or root. - return new Promise((resolve)=>{ - // Must use setTimeout to be considered IO React DevTools. setImmediate will not work. - setTimeout(()=>{ - resolve(underlying); - }, 0); - }); -} //# sourceMappingURL=dynamic-rendering-utils.js.map -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "METADATA_BOUNDARY_NAME", - ()=>METADATA_BOUNDARY_NAME, - "OUTLET_BOUNDARY_NAME", - ()=>OUTLET_BOUNDARY_NAME, - "ROOT_LAYOUT_BOUNDARY_NAME", - ()=>ROOT_LAYOUT_BOUNDARY_NAME, - "VIEWPORT_BOUNDARY_NAME", - ()=>VIEWPORT_BOUNDARY_NAME -]); -const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'; -const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'; -const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'; -const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'; //# sourceMappingURL=boundary-constants.js.map -}), -"[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Schedules a function to be called on the next tick after the other promises - * have been resolved. - * - * @param cb the function to schedule - */ __turbopack_context__.s([ - "atLeastOneTask", - ()=>atLeastOneTask, - "scheduleImmediate", - ()=>scheduleImmediate, - "scheduleOnNextTick", - ()=>scheduleOnNextTick, - "waitAtLeastOneReactRenderTask", - ()=>waitAtLeastOneReactRenderTask -]); -const scheduleOnNextTick = (cb)=>{ - // We use Promise.resolve().then() here so that the operation is scheduled at - // the end of the promise job queue, we then add it to the next process tick - // to ensure it's evaluated afterwards. - // - // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255 - // - Promise.resolve().then(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - process.nextTick(cb); - } - }); -}; -const scheduleImmediate = (cb)=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - setImmediate(cb); - } -}; -function atLeastOneTask() { - return new Promise((resolve)=>scheduleImmediate(resolve)); -} -function waitAtLeastOneReactRenderTask() { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - return new Promise((r)=>setImmediate(r)); - } -} //# sourceMappingURL=scheduler.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "BailoutToCSRError", - ()=>BailoutToCSRError, - "isBailoutToCSRError", - ()=>isBailoutToCSRError -]); -// This has to be a shared module which is shared between client component error boundary and dynamic component -const BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'; -class BailoutToCSRError extends Error { - constructor(reason){ - super(`Bail out to client-side rendering: ${reason}`), this.reason = reason, this.digest = BAILOUT_TO_CSR; - } -} -function isBailoutToCSRError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === BAILOUT_TO_CSR; -} //# sourceMappingURL=bailout-to-csr.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "InvariantError", - ()=>InvariantError -]); -class InvariantError extends Error { - constructor(message, options){ - super(`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`, options); - this.name = 'InvariantError'; - } -} //# sourceMappingURL=invariant-error.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Postpone", - ()=>Postpone, - "PreludeState", - ()=>PreludeState, - "abortAndThrowOnSynchronousRequestDataAccess", - ()=>abortAndThrowOnSynchronousRequestDataAccess, - "abortOnSynchronousPlatformIOAccess", - ()=>abortOnSynchronousPlatformIOAccess, - "accessedDynamicData", - ()=>accessedDynamicData, - "annotateDynamicAccess", - ()=>annotateDynamicAccess, - "consumeDynamicAccess", - ()=>consumeDynamicAccess, - "createDynamicTrackingState", - ()=>createDynamicTrackingState, - "createDynamicValidationState", - ()=>createDynamicValidationState, - "createHangingInputAbortSignal", - ()=>createHangingInputAbortSignal, - "createRenderInBrowserAbortSignal", - ()=>createRenderInBrowserAbortSignal, - "delayUntilRuntimeStage", - ()=>delayUntilRuntimeStage, - "formatDynamicAPIAccesses", - ()=>formatDynamicAPIAccesses, - "getFirstDynamicReason", - ()=>getFirstDynamicReason, - "getStaticShellDisallowedDynamicReasons", - ()=>getStaticShellDisallowedDynamicReasons, - "isDynamicPostpone", - ()=>isDynamicPostpone, - "isPrerenderInterruptedError", - ()=>isPrerenderInterruptedError, - "logDisallowedDynamicError", - ()=>logDisallowedDynamicError, - "markCurrentScopeAsDynamic", - ()=>markCurrentScopeAsDynamic, - "postponeWithTracking", - ()=>postponeWithTracking, - "throwIfDisallowedDynamic", - ()=>throwIfDisallowedDynamic, - "throwToInterruptStaticGeneration", - ()=>throwToInterruptStaticGeneration, - "trackAllowedDynamicAccess", - ()=>trackAllowedDynamicAccess, - "trackDynamicDataInDynamicRender", - ()=>trackDynamicDataInDynamicRender, - "trackDynamicHoleInRuntimeShell", - ()=>trackDynamicHoleInRuntimeShell, - "trackDynamicHoleInStaticShell", - ()=>trackDynamicHoleInStaticShell, - "useDynamicRouteParams", - ()=>useDynamicRouteParams, - "useDynamicSearchParams", - ()=>useDynamicSearchParams -]); -/** - * The functions provided by this module are used to communicate certain properties - * about the currently running code so that Next.js can make decisions on how to handle - * the current execution in different rendering modes such as pre-rendering, resuming, and SSR. - * - * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering. - * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts - * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of - * Dynamic indications. - * - * The first is simply an intention to be dynamic. unstable_noStore is an example of this where - * the currently executing code simply declares that the current scope is dynamic but if you use it - * inside unstable_cache it can still be cached. This type of indication can be removed if we ever - * make the default dynamic to begin with because the only way you would ever be static is inside - * a cache scope which this indication does not affect. - * - * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic - * because it means that it is inappropriate to cache this at all. using a dynamic data source inside - * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should - * read that data outside the cache and pass it in as an argument to the cached function. - */ // Once postpone is in stable we should switch to importing the postpone export directly -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -const hasPostpone = typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].unstable_postpone === 'function'; -function createDynamicTrackingState(isDebugDynamicAccesses) { - return { - isDebugDynamicAccesses, - dynamicAccesses: [], - syncDynamicErrorWithStack: null - }; -} -function createDynamicValidationState() { - return { - hasSuspenseAboveBody: false, - hasDynamicMetadata: false, - dynamicMetadata: null, - hasDynamicViewport: false, - hasAllowedDynamic: false, - dynamicErrors: [] - }; -} -function getFirstDynamicReason(trackingState) { - var _trackingState_dynamicAccesses_; - return (_trackingState_dynamicAccesses_ = trackingState.dynamicAccesses[0]) == null ? void 0 : _trackingState_dynamicAccesses_.expression; -} -function markCurrentScopeAsDynamic(store, workUnitStore, expression) { - if (workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender-legacy': - case 'prerender-ppr': - case 'request': - break; - default: - workUnitStore; - } - } - // If we're forcing dynamic rendering or we're forcing static rendering, we - // don't need to do anything here because the entire page is already dynamic - // or it's static and it should not throw or postpone here. - if (store.forceDynamic || store.forceStatic) return; - if (store.dynamicShouldError) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](`Route ${store.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E553", - enumerable: false, - configurable: true - }); - } - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-ppr': - return postponeWithTracking(store.route, expression, workUnitStore.dynamicTracking); - case 'prerender-legacy': - workUnitStore.revalidate = 0; - // We aren't prerendering, but we are generating a static page. We need - // to bail out of static generation. - const err = Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DynamicServerError"](`Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E550", - enumerable: false, - configurable: true - }); - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } - } -} -function throwToInterruptStaticGeneration(expression, store, prerenderStore) { - // We aren't prerendering but we are generating a static page. We need to bail out of static generation - const err = Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DynamicServerError"](`Route ${store.route} couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E558", - enumerable: false, - configurable: true - }); - prerenderStore.revalidate = 0; - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; -} -function trackDynamicDataInDynamicRender(workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender': - case 'prerender-runtime': - case 'prerender-legacy': - case 'prerender-ppr': - case 'prerender-client': - break; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } -} -function abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore) { - const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`; - const error = createPrerenderInterruptedError(reason); - prerenderStore.controller.abort(error); - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function abortOnSynchronousPlatformIOAccess(route, expression, errorWithStack, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } -} -function abortAndThrowOnSynchronousRequestDataAccess(route, expression, errorWithStack, prerenderStore) { - const prerenderSignal = prerenderStore.controller.signal; - if (prerenderSignal.aborted === false) { - // TODO it would be better to move this aborted check into the callsite so we can avoid making - // the error object when it isn't relevant to the aborting of the prerender however - // since we need the throw semantics regardless of whether we abort it is easier to land - // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer - // to ideal implementation - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } - } - throw createPrerenderInterruptedError(`Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`); -} -function Postpone({ reason, route }) { - const prerenderStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - const dynamicTracking = prerenderStore && prerenderStore.type === 'prerender-ppr' ? prerenderStore.dynamicTracking : null; - postponeWithTracking(route, reason, dynamicTracking); -} -function postponeWithTracking(route, expression, dynamicTracking) { - assertPostpone(); - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].unstable_postpone(createPostponeReason(route, expression)); -} -function createPostponeReason(route, expression) { - return `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` + `React throws this special object to indicate where. It should not be caught by ` + `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`; -} -function isDynamicPostpone(err) { - if (typeof err === 'object' && err !== null && typeof err.message === 'string') { - return isDynamicPostponeReason(err.message); - } - return false; -} -function isDynamicPostponeReason(reason) { - return reason.includes('needs to bail out of prerendering at this point because it used') && reason.includes('Learn more: https://nextjs.org/docs/messages/ppr-caught-error'); -} -if (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) { - throw Object.defineProperty(new Error('Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'), "__NEXT_ERROR_CODE", { - value: "E296", - enumerable: false, - configurable: true - }); -} -const NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'; -function createPrerenderInterruptedError(message) { - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = NEXT_PRERENDER_INTERRUPTED; - return error; -} -function isPrerenderInterruptedError(error) { - return typeof error === 'object' && error !== null && error.digest === NEXT_PRERENDER_INTERRUPTED && 'name' in error && 'message' in error && error instanceof Error; -} -function accessedDynamicData(dynamicAccesses) { - return dynamicAccesses.length > 0; -} -function consumeDynamicAccess(serverDynamic, clientDynamic) { - // We mutate because we only call this once we are no longer writing - // to the dynamicTrackingState and it's more efficient than creating a new - // array. - serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses); - return serverDynamic.dynamicAccesses; -} -function formatDynamicAPIAccesses(dynamicAccesses) { - return dynamicAccesses.filter((access)=>typeof access.stack === 'string' && access.stack.length > 0).map(({ expression, stack })=>{ - stack = stack.split('\n') // Remove the "Error: " prefix from the first line of the stack trace as - // well as the first 4 lines of the stack trace which is the distance - // from the user code and the `new Error().stack` call. - .slice(4).filter((line)=>{ - // Exclude Next.js internals from the stack trace. - if (line.includes('node_modules/next/')) { - return false; - } - // Exclude anonymous functions from the stack trace. - if (line.includes(' (<anonymous>)')) { - return false; - } - // Exclude Node.js internals from the stack trace. - if (line.includes(' (node:')) { - return false; - } - return true; - }).join('\n'); - return `Dynamic API Usage Debug - ${expression}:\n${stack}`; - }); -} -function assertPostpone() { - if (!hasPostpone) { - throw Object.defineProperty(new Error(`Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`), "__NEXT_ERROR_CODE", { - value: "E224", - enumerable: false, - configurable: true - }); - } -} -function createRenderInBrowserAbortSignal() { - const controller = new AbortController(); - controller.abort(Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BailoutToCSRError"]('Render in Browser'), "__NEXT_ERROR_CODE", { - value: "E721", - enumerable: false, - configurable: true - })); - return controller.signal; -} -function createHangingInputAbortSignal(workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - const controller = new AbortController(); - if (workUnitStore.cacheSignal) { - // If we have a cacheSignal it means we're in a prospective render. If - // the input we're waiting on is coming from another cache, we do want - // to wait for it so that we can resolve this cache entry too. - workUnitStore.cacheSignal.inputReady().then(()=>{ - controller.abort(); - }); - } else { - // Otherwise we're in the final render and we should already have all - // our caches filled. - // If the prerender uses stages, we have wait until the runtime stage, - // at which point all runtime inputs will be resolved. - // (otherwise, a runtime prerender might consider `cookies()` hanging - // even though they'd resolve in the next task.) - // - // We might still be waiting on some microtasks so we - // wait one tick before giving up. When we give up, we still want to - // render the content of this cache as deeply as we can so that we can - // suspend as deeply as possible in the tree or not at all if we don't - // end up waiting for the input. - const runtimeStagePromise = (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["getRuntimeStagePromise"])(workUnitStore); - if (runtimeStagePromise) { - runtimeStagePromise.then(()=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(()=>controller.abort())); - } else { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(()=>controller.abort()); - } - } - return controller.signal; - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - case 'cache': - case 'private-cache': - case 'unstable-cache': - return undefined; - default: - workUnitStore; - } -} -function annotateDynamicAccess(expression, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function useDynamicRouteParams(expression) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workStore && workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-client': - case 'prerender': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - // We are in a prerender with cacheComponents semantics. We are going to - // hang here and never resolve. This will cause the currently - // rendering component to effectively be a dynamic hole. - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].use((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, expression)); - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return postponeWithTracking(workStore.route, expression, workUnitStore.dynamicTracking); - } - break; - } - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E771", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'prerender-legacy': - case 'request': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } -} -function useDynamicSearchParams(expression) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (!workStore) { - // We assume pages router context and just return - return; - } - if (!workUnitStore) { - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwForMissingRequestStore"])(expression); - } - switch(workUnitStore.type){ - case 'prerender-client': - { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].use((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, expression)); - break; - } - case 'prerender-legacy': - case 'prerender-ppr': - { - if (workStore.forceStatic) { - return; - } - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BailoutToCSRError"](expression), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - case 'prerender': - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E795", - enumerable: false, - configurable: true - }); - case 'cache': - case 'unstable-cache': - case 'private-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'request': - return; - default: - workUnitStore; - } -} -const hasSuspenseRegex = /\n\s+at Suspense \(<anonymous>\)/; -// Common implicit body tags that React will treat as body when placed directly in html -const bodyAndImplicitTags = 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'; -// Detects when RootLayoutBoundary (our framework marker component) appears -// after Suspense in the component stack, indicating the root layout is wrapped -// within a Suspense boundary. Ensures no body/html/implicit-body components are in between. -// -// Example matches: -// at Suspense (<anonymous>) -// at __next_root_layout_boundary__ (<anonymous>) -// -// Or with other components in between (but not body/html/implicit-body): -// at Suspense (<anonymous>) -// at SomeComponent (<anonymous>) -// at __next_root_layout_boundary__ (<anonymous>) -const hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(`\\n\\s+at Suspense \\(<anonymous>\\)(?:(?!\\n\\s+at (?:${bodyAndImplicitTags}) \\(<anonymous>\\))[\\s\\S])*?\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ROOT_LAYOUT_BOUNDARY_NAME"]} \\([^\\n]*\\)`); -const hasMetadataRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["METADATA_BOUNDARY_NAME"]}[\\n\\s]`); -const hasViewportRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["VIEWPORT_BOUNDARY_NAME"]}[\\n\\s]`); -const hasOutletRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["OUTLET_BOUNDARY_NAME"]}[\\n\\s]`); -function trackAllowedDynamicAccess(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - dynamicValidation.hasDynamicMetadata = true; - return; - } else if (hasViewportRegex.test(componentStack)) { - dynamicValidation.hasDynamicViewport = true; - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data was accessed outside of ` + '<Suspense>. This delays the entire page from rendering, resulting in a ' + 'slow user experience. Learn more: ' + 'https://nextjs.org/docs/messages/blocking-route'; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInRuntimeShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateMetadata\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed outside of \`<Suspense>\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInStaticShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateMetadata\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed outside of \`<Suspense>\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -/** - * In dev mode, we prefer using the owner stack, otherwise the provided - * component stack is used. - */ function createErrorWithComponentOrOwnerStack(message, componentStack) { - const ownerStack = ("TURBOPACK compile-time value", "development") !== 'production' && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].captureOwnerStack ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].captureOwnerStack() : null; - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right - // - error.stack = error.name + ': ' + message + (ownerStack || componentStack); - return error; -} -var PreludeState = /*#__PURE__*/ function(PreludeState) { - PreludeState[PreludeState["Full"] = 0] = "Full"; - PreludeState[PreludeState["Empty"] = 1] = "Empty"; - PreludeState[PreludeState["Errored"] = 2] = "Errored"; - return PreludeState; -}({}); -function logDisallowedDynamicError(workStore, error) { - console.error(error); - if (!workStore.dev) { - if (workStore.hasReadableErrorStacks) { - console.error(`To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error.`); - } else { - console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following: - - Start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error. - - Rerun the production build with \`next build --debug-prerender\` to generate better stack traces.`); - } - } -} -function throwIfDisallowedDynamic(workStore, prelude, dynamicValidation, serverDynamic) { - if (serverDynamic.syncDynamicErrorWithStack) { - logDisallowedDynamicError(workStore, serverDynamic.syncDynamicErrorWithStack); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - if (prelude !== 0) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return; - } - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - for(let i = 0; i < dynamicErrors.length; i++){ - logDisallowedDynamicError(workStore, dynamicErrors[i]); - } - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - // If we got this far then the only other thing that could be blocking - // the root is dynamic Viewport. If this is dynamic then - // you need to opt into that by adding a Suspense boundary above the body - // to indicate your are ok with fully dynamic rendering. - if (dynamicValidation.hasDynamicViewport) { - console.error(`Route "${workStore.route}" has a \`generateViewport\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - console.error(`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - } else { - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.hasDynamicMetadata) { - console.error(`Route "${workStore.route}" has a \`generateMetadata\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - } -} -function getStaticShellDisallowedDynamicReasons(workStore, prelude, dynamicValidation) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return []; - } - if (prelude !== 0) { - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - return dynamicErrors; - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - return [ - Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason.`), "__NEXT_ERROR_CODE", { - value: "E936", - enumerable: false, - configurable: true - }) - ]; - } - } else { - // We have a prelude but we might still have dynamic metadata without any other dynamic access - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicErrors.length === 0 && dynamicValidation.dynamicMetadata) { - return [ - dynamicValidation.dynamicMetadata - ]; - } - } - // We had a non-empty prelude and there are no dynamic holes - return []; -} -function delayUntilRuntimeStage(prerenderStore, result) { - if (prerenderStore.runtimeStagePromise) { - return prerenderStore.runtimeStagePromise.then(()=>result); - } - return result; -} //# sourceMappingURL=dynamic-rendering.js.map -}), -"[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDedupedByCallsiteServerErrorLoggerDev", - ()=>createDedupedByCallsiteServerErrorLoggerDev -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -; -const errorRef = { - current: null -}; -// React.cache is currently only available in canary/experimental React channels. -const cache = typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"] === 'function' ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"] : (fn)=>fn; -// When Cache Components is enabled, we record these as errors so that they -// are captured by the dev overlay as it's more critical to fix these -// when enabled. -const logErrorOrWarn = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : console.warn; -// We don't want to dedupe across requests. -// The developer might've just attempted to fix the warning so we should warn again if it still happens. -const flushCurrentErrorIfNew = cache((key)=>{ - try { - logErrorOrWarn(errorRef.current); - } finally{ - errorRef.current = null; - } -}); -function createDedupedByCallsiteServerErrorLoggerDev(getMessage) { - return function logDedupedError(...args) { - const message = getMessage(...args); - if ("TURBOPACK compile-time truthy", 1) { - var _stack; - const callStackFrames = (_stack = new Error().stack) == null ? void 0 : _stack.split('\n'); - if (callStackFrames === undefined || callStackFrames.length < 4) { - logErrorOrWarn(message); - } else { - // Error: - // logDedupedError - // asyncApiBeingAccessedSynchronously - // <userland callsite> - // TODO: This breaks if sourcemaps with ignore lists are enabled. - const key = callStackFrames[4]; - errorRef.current = message; - flushCurrentErrorIfNew(key); - } - } else //TURBOPACK unreachable - ; - }; -} //# sourceMappingURL=create-deduped-by-callsite-server-error-logger.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "describeHasCheckingStringProperty", - ()=>describeHasCheckingStringProperty, - "describeStringPropertyAccess", - ()=>describeStringPropertyAccess, - "wellKnownProperties", - ()=>wellKnownProperties -]); -// This regex will have fast negatives meaning valid identifiers may not pass -// this test. However this is only used during static generation to provide hints -// about why a page bailed out of some or all prerendering and we can use bracket notation -// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']` -// even if this would have been fine too `searchParams.ಠ_ಠ` -const isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/; -function describeStringPropertyAccess(target, prop) { - if (isDefinitelyAValidIdentifier.test(prop)) { - return `\`${target}.${prop}\``; - } - return `\`${target}[${JSON.stringify(prop)}]\``; -} -function describeHasCheckingStringProperty(target, prop) { - const stringifiedProp = JSON.stringify(prop); - return `\`Reflect.has(${target}, ${stringifiedProp})\`, \`${stringifiedProp} in ${target}\`, or similar`; -} -const wellKnownProperties = new Set([ - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toString', - 'valueOf', - 'toLocaleString', - // Promise prototype - 'then', - 'catch', - 'finally', - // React Promise extension - 'status', - // 'value', - // 'error', - // React introspection - 'displayName', - '_debugInfo', - // Common tested properties - 'toJSON', - '$$typeof', - '__esModule' -]); //# sourceMappingURL=reflect-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isRequestAPICallableInsideAfter", - ()=>isRequestAPICallableInsideAfter, - "throwForSearchParamsAccessInUseCache", - ()=>throwForSearchParamsAccessInUseCache, - "throwWithStaticGenerationBailoutErrorWithDynamicError", - ()=>throwWithStaticGenerationBailoutErrorWithDynamicError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/after-task-async-storage.external.js [external] (next/dist/server/app-render/after-task-async-storage.external.js, cjs)"); -; -; -function throwWithStaticGenerationBailoutErrorWithDynamicError(route, expression) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](`Route ${route} with \`dynamic = "error"\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E543", - enumerable: false, - configurable: true - }); -} -function throwForSearchParamsAccessInUseCache(workStore, constructorOpt) { - const error = Object.defineProperty(new Error(`Route ${workStore.route} used \`searchParams\` inside "use cache". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \`searchParams\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`), "__NEXT_ERROR_CODE", { - value: "E842", - enumerable: false, - configurable: true - }); - Error.captureStackTrace(error, constructorOpt); - workStore.invalidDynamicUsageError ??= error; - throw error; -} -function isRequestAPICallableInsideAfter() { - const afterTaskStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["afterTaskAsyncStorage"].getStore(); - return (afterTaskStore == null ? void 0 : afterTaskStore.rootTaskSpawnPhase) === 'action'; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createPromiseWithResolvers", - ()=>createPromiseWithResolvers -]); -function createPromiseWithResolvers() { - // Shim of Stage 4 Promise.withResolvers proposal - let resolve; - let reject; - const promise = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - return { - resolve: resolve, - reject: reject, - promise - }; -} //# sourceMappingURL=promise-with-resolvers.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RenderStage", - ()=>RenderStage, - "StagedRenderingController", - ()=>StagedRenderingController -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-rsc] (ecmascript)"); -; -; -var RenderStage = /*#__PURE__*/ function(RenderStage) { - RenderStage[RenderStage["Before"] = 1] = "Before"; - RenderStage[RenderStage["Static"] = 2] = "Static"; - RenderStage[RenderStage["Runtime"] = 3] = "Runtime"; - RenderStage[RenderStage["Dynamic"] = 4] = "Dynamic"; - RenderStage[RenderStage["Abandoned"] = 5] = "Abandoned"; - return RenderStage; -}({}); -class StagedRenderingController { - constructor(abortSignal = null, hasRuntimePrefetch){ - this.abortSignal = abortSignal; - this.hasRuntimePrefetch = hasRuntimePrefetch; - this.currentStage = 1; - this.staticInterruptReason = null; - this.runtimeInterruptReason = null; - this.staticStageEndTime = Infinity; - this.runtimeStageEndTime = Infinity; - this.runtimeStageListeners = []; - this.dynamicStageListeners = []; - this.runtimeStagePromise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - this.dynamicStagePromise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - this.mayAbandon = false; - if (abortSignal) { - abortSignal.addEventListener('abort', ()=>{ - const { reason } = abortSignal; - if (this.currentStage < 3) { - this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.runtimeStagePromise.reject(reason); - } - if (this.currentStage < 4 || this.currentStage === 5) { - this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.dynamicStagePromise.reject(reason); - } - }, { - once: true - }); - this.mayAbandon = true; - } - } - onStage(stage, callback) { - if (this.currentStage >= stage) { - callback(); - } else if (stage === 3) { - this.runtimeStageListeners.push(callback); - } else if (stage === 4) { - this.dynamicStageListeners.push(callback); - } else { - // This should never happen - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - canSyncInterrupt() { - // If we haven't started the render yet, it can't be interrupted. - if (this.currentStage === 1) { - return false; - } - const boundaryStage = this.hasRuntimePrefetch ? 4 : 3; - return this.currentStage < boundaryStage; - } - syncInterruptCurrentStageWithReason(reason) { - if (this.currentStage === 1) { - return; - } - // If Sync IO occurs during the initial (abandonable) render, we'll retry it, - // so we want a slightly different flow. - // See the implementation of `abandonRenderImpl` for more explanation. - if (this.mayAbandon) { - return this.abandonRenderImpl(); - } - // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage - // and capture the interruption reason. - switch(this.currentStage){ - case 2: - { - this.staticInterruptReason = reason; - this.advanceStage(4); - return; - } - case 3: - { - // We only error for Sync IO in the runtime stage if the route - // is configured to use runtime prefetching. - // We do this to reflect the fact that during a runtime prefetch, - // Sync IO aborts aborts the render. - // Note that `canSyncInterrupt` should prevent us from getting here at all - // if runtime prefetching isn't enabled. - if (this.hasRuntimePrefetch) { - this.runtimeInterruptReason = reason; - this.advanceStage(4); - } - return; - } - case 4: - case 5: - default: - } - } - getStaticInterruptReason() { - return this.staticInterruptReason; - } - getRuntimeInterruptReason() { - return this.runtimeInterruptReason; - } - getStaticStageEndTime() { - return this.staticStageEndTime; - } - getRuntimeStageEndTime() { - return this.runtimeStageEndTime; - } - abandonRender() { - if (!this.mayAbandon) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('`abandonRender` called on a stage controller that cannot be abandoned.'), "__NEXT_ERROR_CODE", { - value: "E938", - enumerable: false, - configurable: true - }); - } - this.abandonRenderImpl(); - } - abandonRenderImpl() { - // In staged rendering, only the initial render is abandonable. - // We can abandon the initial render if - // 1. We notice a cache miss, and need to wait for caches to fill - // 2. A sync IO error occurs, and the render should be interrupted - // (this might be a lazy intitialization of a module, - // so we still want to restart in this case and see if it still occurs) - // In either case, we'll be doing another render after this one, - // so we only want to unblock the Runtime stage, not Dynamic, because - // unblocking the dynamic stage would likely lead to wasted (uncached) IO. - const { currentStage } = this; - switch(currentStage){ - case 2: - { - this.currentStage = 5; - this.resolveRuntimeStage(); - return; - } - case 3: - { - this.currentStage = 5; - return; - } - case 4: - case 1: - case 5: - break; - default: - { - currentStage; - } - } - } - advanceStage(stage) { - // If we're already at the target stage or beyond, do nothing. - // (this can happen e.g. if sync IO advanced us to the dynamic stage) - if (stage <= this.currentStage) { - return; - } - let currentStage = this.currentStage; - this.currentStage = stage; - if (currentStage < 3 && stage >= 3) { - this.staticStageEndTime = performance.now() + performance.timeOrigin; - this.resolveRuntimeStage(); - } - if (currentStage < 4 && stage >= 4) { - this.runtimeStageEndTime = performance.now() + performance.timeOrigin; - this.resolveDynamicStage(); - return; - } - } - /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */ resolveRuntimeStage() { - const runtimeListeners = this.runtimeStageListeners; - for(let i = 0; i < runtimeListeners.length; i++){ - runtimeListeners[i](); - } - runtimeListeners.length = 0; - this.runtimeStagePromise.resolve(); - } - /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */ resolveDynamicStage() { - const dynamicListeners = this.dynamicStageListeners; - for(let i = 0; i < dynamicListeners.length; i++){ - dynamicListeners[i](); - } - dynamicListeners.length = 0; - this.dynamicStagePromise.resolve(); - } - getStagePromise(stage) { - switch(stage){ - case 3: - { - return this.runtimeStagePromise.promise; - } - case 4: - { - return this.dynamicStagePromise.promise; - } - default: - { - stage; - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - } - waitForStage(stage) { - return this.getStagePromise(stage); - } - delayUntilStage(stage, displayName, resolvedValue) { - const ioTriggerPromise = this.getStagePromise(stage); - const promise = makeDevtoolsIOPromiseFromIOTrigger(ioTriggerPromise, displayName, resolvedValue); - // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked. - // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it). - // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning. - if (this.abortSignal) { - promise.catch(ignoreReject); - } - return promise; - } -} -function ignoreReject() {} -// TODO(restart-on-cache-miss): the layering of `delayUntilStage`, -// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise` -// is confusing, we should clean it up. -function makeDevtoolsIOPromiseFromIOTrigger(ioTrigger, displayName, resolvedValue) { - // If we create a `new Promise` and give it a displayName - // (with no userspace code above us in the stack) - // React Devtools will use it as the IO cause when determining "suspended by". - // In particular, it should shadow any inner IO that resolved/rejected the promise - // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage) - const promise = new Promise((resolve, reject)=>{ - ioTrigger.then(resolve.bind(null, resolvedValue), reject); - }); - if (displayName !== undefined) { - // @ts-expect-error - promise.displayName = displayName; - } - return promise; -} //# sourceMappingURL=staged-rendering.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/search-params.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createPrerenderSearchParamsForClientPage", - ()=>createPrerenderSearchParamsForClientPage, - "createSearchParamsFromClient", - ()=>createSearchParamsFromClient, - "createServerSearchParamsForMetadata", - ()=>createServerSearchParamsForMetadata, - "createServerSearchParamsForServerPage", - ()=>createServerSearchParamsForServerPage, - "makeErroringSearchParamsForUseCache", - ()=>makeErroringSearchParamsForUseCache -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -function createSearchParamsFromClient(underlyingSearchParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createSearchParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E769", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createSearchParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E739", - enumerable: false, - configurable: true - }); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -const createServerSearchParamsForMetadata = createServerSearchParamsForServerPage; -function createServerSearchParamsForServerPage(underlyingSearchParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createServerSearchParamsForServerPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E747", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderSearchParamsForClientPage(workStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - // We're prerendering in a mode that aborts (cacheComponents) and should stall - // the promise to ensure the RSC side is considered dynamic - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, '`searchParams`'); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E768", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderSearchParamsForClientPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E746", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - return Promise.resolve({}); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createStaticPrerenderSearchParams(workStore, prerenderStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - // We are in a cacheComponents (PPR or otherwise) prerender - return makeHangingSearchParams(workStore, prerenderStore); - case 'prerender-ppr': - case 'prerender-legacy': - // We are in a legacy static generation and need to interrupt the - // prerender when search params are accessed. - return makeErroringSearchParams(workStore, prerenderStore); - default: - return prerenderStore; - } -} -function createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, makeUntrackedSearchParams(underlyingSearchParams)); -} -function createRenderSearchParams(underlyingSearchParams, workStore, requestStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } else { - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore); - } else //TURBOPACK unreachable - ; - } -} -const CachedSearchParams = new WeakMap(); -const CachedSearchParamsForUseCache = new WeakMap(); -function makeHangingSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(prerenderStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`searchParams`'); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - switch(prop){ - case 'then': - { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["annotateDynamicAccess"])(expression, prerenderStore); - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - case 'status': - { - const expression = '`use(searchParams)`, `searchParams.status`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["annotateDynamicAccess"])(expression, prerenderStore); - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - default: - { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - } - } - }); - CachedSearchParams.set(prerenderStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const underlyingSearchParams = {}; - // For search params we don't construct a ReactPromise because we want to interrupt - // rendering on any property access that was not set from outside and so we only want - // to have properties like value and status if React sets them. - const promise = Promise.resolve(underlyingSearchParams); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - if (typeof prop === 'string' && prop === 'then') { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - if (workStore.dynamicShouldError) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } else if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwToInterruptStaticGeneration"])(expression, workStore, prerenderStore); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - }); - CachedSearchParams.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParamsForUseCache(workStore) { - const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve({}); - const proxiedPromise = new Proxy(promise, { - get: function get(target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. We know it - // isn't a dynamic access because it can only be something that was - // previously written to the promise and thus not an underlying - // searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - if (typeof prop === 'string' && (prop === 'then' || !__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop))) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwForSearchParamsAccessInUseCache"])(workStore, get); - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - }); - CachedSearchParamsForUseCache.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeUntrackedSearchParams(underlyingSearchParams) { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve(underlyingSearchParams); - CachedSearchParams.set(underlyingSearchParams, promise); - return promise; -} -function makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore) { - if (requestStore.asyncApiPromises) { - // Do not cache the resulting promise. If we do, we'll only show the first "awaited at" - // across all segments that receive searchParams. - return makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - } else { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - CachedSearchParams.set(requestStore, promise); - return promise; - } -} -function makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore) { - const promiseInitialized = { - current: false - }; - const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized); - let promise; - if (requestStore.asyncApiPromises) { - // We wrap each instance of searchParams in a `new Promise()`. - // This is important when all awaits are in third party which would otherwise - // track all the way to the internal params. - const sharedSearchParamsParent = requestStore.asyncApiPromises.sharedSearchParamsParent; - promise = new Promise((resolve, reject)=>{ - sharedSearchParamsParent.then(()=>resolve(proxiedUnderlying), reject); - }); - // @ts-expect-error - promise.displayName = 'searchParams'; - } else { - promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeDevtoolsIOAwarePromise"])(proxiedUnderlying, requestStore, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Runtime); - } - promise.then(()=>{ - promiseInitialized.current = true; - }, // is aborted before it can reach the runtime stage. - // In that case, we have to prevent an unhandled rejection from the promise - // created by this `.then()` call. - // This does not affect the `promiseInitialized` logic above, - // because `proxiedUnderlying` will not be used to resolve the promise, - // so there's no risk of any of its properties being accessed and triggering - // an undesireable warning. - ignoreReject); - return instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore); -} -function ignoreReject() {} -function instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized) { - // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying - // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender - // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking - // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger - // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce - // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise. - return new Proxy(underlyingSearchParams, { - get (target, prop, receiver) { - if (typeof prop === 'string' && promiseInitialized.current) { - if (workStore.dynamicShouldError) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('searchParams', prop); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (workStore.dynamicShouldError) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeHasCheckingStringProperty"])('searchParams', prop); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - if (workStore.dynamicShouldError) { - const expression = '`{...searchParams}`, `Object.keys(searchParams)`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - return Reflect.ownKeys(target); - } - }); -} -function instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingSearchParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (prop === 'then' && workStore.dynamicShouldError) { - const expression = '`searchParams.then`'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - if (typeof prop === 'string') { - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return Reflect.set(target, prop, value, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeHasCheckingStringProperty"])('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - const expression = '`Object.keys(searchParams)` or similar'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDedupedByCallsiteServerErrorLoggerDev"])(createSearchAccessError); -function createSearchAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`searchParams\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E848", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=search-params.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/params.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createParamsFromClient", - ()=>createParamsFromClient, - "createPrerenderParamsForClientSegment", - ()=>createPrerenderParamsForClientSegment, - "createServerParamsForMetadata", - ()=>createServerParamsForMetadata, - "createServerParamsForRoute", - ()=>createServerParamsForRoute, - "createServerParamsForServerSegment", - ()=>createServerParamsForServerSegment -]); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/dynamic-access-async-storage.external.js [external] (next/dist/server/app-render/dynamic-access-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -function createParamsFromClient(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E736", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E770", - enumerable: false, - configurable: true - }); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -const createServerParamsForMetadata = createServerParamsForServerSegment; -function createServerParamsForRoute(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createServerParamsForRoute should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E738", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createServerParamsForServerSegment(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createServerParamsForServerSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E743", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderParamsForClientSegment(underlyingParams) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - if (!workStore) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('Missing workStore in createPrerenderParamsForClientSegment'), "__NEXT_ERROR_CODE", { - value: "E773", - enumerable: false, - configurable: true - }); - } - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams) { - for(let key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, '`params`'); - } - } - } - break; - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderParamsForClientSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E734", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'prerender-runtime': - case 'request': - break; - default: - workUnitStore; - } - } - // We're prerendering in a mode that does not abort. We resolve the promise without - // any tracking because we're just transporting a value from server to client where the tracking - // will be applied. - return Promise.resolve(underlyingParams); -} -function createStaticPrerenderParams(underlyingParams, workStore, prerenderStore) { - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return makeHangingParams(underlyingParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - return makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-legacy': - break; - default: - prerenderStore; - } - return makeUntrackedParams(underlyingParams); -} -function createRuntimePrerenderParams(underlyingParams, workUnitStore) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, makeUntrackedParams(underlyingParams)); -} -function createRenderParamsInProd(underlyingParams) { - return makeUntrackedParams(underlyingParams); -} -function createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, requestStore) { - let hasFallbackParams = false; - if (devFallbackParams) { - for(let key in underlyingParams){ - if (devFallbackParams.has(key)) { - hasFallbackParams = true; - break; - } - } - } - return makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore); -} -const CachedParams = new WeakMap(); -const fallbackParamsProxyHandler = { - get: function get(target, prop, receiver) { - if (prop === 'then' || prop === 'catch' || prop === 'finally') { - const originalMethod = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - return ({ - [prop]: (...args)=>{ - const store = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["dynamicAccessAsyncStorage"].getStore(); - if (store) { - store.abortController.abort(Object.defineProperty(new Error(`Accessed fallback \`params\` during prerendering.`), "__NEXT_ERROR_CODE", { - value: "E691", - enumerable: false, - configurable: true - })); - } - return new Proxy(originalMethod.apply(target, args), fallbackParamsProxyHandler); - } - })[prop]; - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } -}; -function makeHangingParams(underlyingParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = new Proxy((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`params`'), fallbackParamsProxyHandler); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const augmentedUnderlying = { - ...underlyingParams - }; - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = Promise.resolve(augmentedUnderlying); - CachedParams.set(underlyingParams, promise); - Object.keys(underlyingParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - if (fallbackParams.has(prop)) { - Object.defineProperty(augmentedUnderlying, prop, { - get () { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('params', prop); - // In most dynamic APIs we also throw if `dynamic = "error"` however - // for params is only dynamic when we're generating a fallback shell - // and even when `dynamic = "error"` we still support generating dynamic - // fallback shells - // TODO remove this comment when cacheComponents is the default since there - // will be no `dynamic = "error"` - if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwToInterruptStaticGeneration"])(expression, workStore, prerenderStore); - } - }, - enumerable: true - }); - } - } - }); - return promise; -} -function makeUntrackedParams(underlyingParams) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = Promise.resolve(underlyingParams); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore) { - if (requestStore.asyncApiPromises && hasFallbackParams) { - // We wrap each instance of params in a `new Promise()`, because deduping - // them across requests doesn't work anyway and this let us show each - // await a different set of values. This is important when all awaits - // are in third party which would otherwise track all the way to the - // internal params. - const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent; - const promise = new Promise((resolve, reject)=>{ - sharedParamsParent.then(()=>resolve(underlyingParams), reject); - }); - // @ts-expect-error - promise.displayName = 'params'; - return instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - } - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = hasFallbackParams ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeDevtoolsIOAwarePromise"])(underlyingParams, requestStore, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Runtime) : Promise.resolve(underlyingParams); - const proxiedPromise = instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - CachedParams.set(underlyingParams, proxiedPromise); - return proxiedPromise; -} -function instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (typeof prop === 'string') { - if (proxiedProperties.has(prop)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('params', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].set(target, prop, value, receiver); - }, - ownKeys (target) { - const expression = '`...params` or similar expression'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDedupedByCallsiteServerErrorLoggerDev"])(createParamsAccessError); -function createParamsAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`params\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E834", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=params.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactJsxRuntime; //# sourceMappingURL=react-jsx-runtime.js.map -}), -"[project]/node_modules/next/dist/esm/lib/non-nullable.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "nonNullable", - ()=>nonNullable -]); -function nonNullable(value) { - return value !== null && value !== undefined; -} //# sourceMappingURL=non-nullable.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Meta", - ()=>Meta, - "MetaFilter", - ()=>MetaFilter, - "MultiMeta", - ()=>MultiMeta -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$non$2d$nullable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/non-nullable.js [app-rsc] (ecmascript)"); -; -; -; -function Meta({ name, property, content, media }) { - if (typeof content !== 'undefined' && content !== null && content !== '') { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - ...name ? { - name - } : { - property - }, - ...media ? { - media - } : undefined, - content: typeof content === 'string' ? content : content.toString() - }); - } - return null; -} -function MetaFilter(items) { - const acc = []; - for (const item of items){ - if (Array.isArray(item)) { - acc.push(...item.filter(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$non$2d$nullable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["nonNullable"])); - } else if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$non$2d$nullable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["nonNullable"])(item)) { - acc.push(item); - } - } - return acc; -} -function camelToSnake(camelCaseStr) { - return camelCaseStr.replace(/([A-Z])/g, function(match) { - return '_' + match.toLowerCase(); - }); -} -const aliasPropPrefixes = new Set([ - 'og:image', - 'twitter:image', - 'og:video', - 'og:audio' -]); -function getMetaKey(prefix, key) { - // Use `twitter:image` and `og:image` instead of `twitter:image:url` and `og:image:url` - // to be more compatible as it's a more common format. - // `og:video` & `og:audio` do not have a `:url` suffix alias - if (aliasPropPrefixes.has(prefix) && key === 'url') { - return prefix; - } - if (prefix.startsWith('og:') || prefix.startsWith('twitter:')) { - key = camelToSnake(key); - } - return prefix + ':' + key; -} -function ExtendMeta({ content, namePrefix, propertyPrefix }) { - if (!content) return null; - return MetaFilter(Object.entries(content).map(([k, v])=>{ - return typeof v === 'undefined' ? null : Meta({ - ...propertyPrefix && { - property: getMetaKey(propertyPrefix, k) - }, - ...namePrefix && { - name: getMetaKey(namePrefix, k) - }, - content: typeof v === 'string' ? v : v == null ? void 0 : v.toString() - }); - })); -} -function MultiMeta({ propertyPrefix, namePrefix, contents }) { - if (typeof contents === 'undefined' || contents === null) { - return null; - } - return MetaFilter(contents.map((content)=>{ - if (typeof content === 'string' || typeof content === 'number' || content instanceof URL) { - return Meta({ - ...propertyPrefix ? { - property: propertyPrefix - } : { - name: namePrefix - }, - content - }); - } else { - return ExtendMeta({ - namePrefix, - propertyPrefix, - content - }); - } - })); -} //# sourceMappingURL=meta.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "IconKeys", - ()=>IconKeys, - "ViewportMetaKeys", - ()=>ViewportMetaKeys -]); -const ViewportMetaKeys = { - width: 'width', - height: 'height', - initialScale: 'initial-scale', - minimumScale: 'minimum-scale', - maximumScale: 'maximum-scale', - viewportFit: 'viewport-fit', - userScalable: 'user-scalable', - interactiveWidget: 'interactive-widget' -}; -const IconKeys = [ - 'icon', - 'shortcut', - 'apple', - 'other' -]; //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getOrigin", - ()=>getOrigin, - "resolveArray", - ()=>resolveArray, - "resolveAsArrayOrUndefined", - ()=>resolveAsArrayOrUndefined -]); -function resolveArray(value) { - if (Array.isArray(value)) { - return value; - } - return [ - value - ]; -} -function resolveAsArrayOrUndefined(value) { - if (typeof value === 'undefined' || value === null) { - return undefined; - } - return resolveArray(value); -} -function getOrigin(url) { - let origin = undefined; - if (typeof url === 'string') { - try { - url = new URL(url); - origin = url.origin; - } catch {} - } - return origin; -} -; - //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/basic.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "AppleWebAppMeta", - ()=>AppleWebAppMeta, - "BasicMeta", - ()=>BasicMeta, - "FacebookMeta", - ()=>FacebookMeta, - "FormatDetectionMeta", - ()=>FormatDetectionMeta, - "ItunesMeta", - ()=>ItunesMeta, - "PinterestMeta", - ()=>PinterestMeta, - "VerificationMeta", - ()=>VerificationMeta, - "ViewportMeta", - ()=>ViewportMeta -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -; -; -; -; -// convert viewport object to string for viewport meta tag -function resolveViewportLayout(viewport) { - let resolved = null; - if (viewport && typeof viewport === 'object') { - resolved = ''; - for(const viewportKey_ in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ViewportMetaKeys"]){ - const viewportKey = viewportKey_; - if (viewportKey in viewport) { - let value = viewport[viewportKey]; - if (typeof value === 'boolean') { - value = value ? 'yes' : 'no'; - } else if (!value && viewportKey === 'initialScale') { - value = undefined; - } - if (value) { - if (resolved) resolved += ', '; - resolved += `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ViewportMetaKeys"][viewportKey]}=${value}`; - } - } - } - } - return resolved; -} -function ViewportMeta({ viewport }) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - charSet: "utf-8" - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'viewport', - content: resolveViewportLayout(viewport) - }), - ...viewport.themeColor ? viewport.themeColor.map((themeColor)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'theme-color', - content: themeColor.color, - media: themeColor.media - })) : [], - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'color-scheme', - content: viewport.colorScheme - }) - ]); -} -function BasicMeta({ metadata }) { - var _metadata_keywords, _metadata_robots, _metadata_robots1; - const manifestOrigin = metadata.manifest ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getOrigin"])(metadata.manifest) : undefined; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - metadata.title !== null && metadata.title.absolute ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("title", { - children: metadata.title.absolute - }) : null, - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'description', - content: metadata.description - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'application-name', - content: metadata.applicationName - }), - ...metadata.authors ? metadata.authors.map((author)=>[ - author.url ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "author", - href: author.url.toString() - }) : null, - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'author', - content: author.name - }) - ]) : [], - metadata.manifest ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "manifest", - href: metadata.manifest.toString(), - // If it's same origin, and it's a preview deployment, - // including credentials for manifest request. - crossOrigin: !manifestOrigin && process.env.VERCEL_ENV === 'preview' ? 'use-credentials' : undefined - }) : null, - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'generator', - content: metadata.generator - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'keywords', - content: (_metadata_keywords = metadata.keywords) == null ? void 0 : _metadata_keywords.join(',') - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'referrer', - content: metadata.referrer - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'creator', - content: metadata.creator - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'publisher', - content: metadata.publisher - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'robots', - content: (_metadata_robots = metadata.robots) == null ? void 0 : _metadata_robots.basic - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'googlebot', - content: (_metadata_robots1 = metadata.robots) == null ? void 0 : _metadata_robots1.googleBot - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'abstract', - content: metadata.abstract - }), - ...metadata.archives ? metadata.archives.map((archive)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "archives", - href: archive - })) : [], - ...metadata.assets ? metadata.assets.map((asset)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "assets", - href: asset - })) : [], - ...metadata.bookmarks ? metadata.bookmarks.map((bookmark)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "bookmarks", - href: bookmark - })) : [], - ...metadata.pagination ? [ - metadata.pagination.previous ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "prev", - href: metadata.pagination.previous - }) : null, - metadata.pagination.next ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "next", - href: metadata.pagination.next - }) : null - ] : [], - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'category', - content: metadata.category - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'classification', - content: metadata.classification - }), - ...metadata.other ? Object.entries(metadata.other).map(([name, content])=>{ - if (Array.isArray(content)) { - return content.map((contentItem)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name, - content: contentItem - })); - } else { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name, - content - }); - } - }) : [] - ]); -} -function ItunesMeta({ itunes }) { - if (!itunes) return null; - const { appId, appArgument } = itunes; - let content = `app-id=${appId}`; - if (appArgument) { - content += `, app-argument=${appArgument}`; - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "apple-itunes-app", - content: content - }); -} -function FacebookMeta({ facebook }) { - if (!facebook) return null; - const { appId, admins } = facebook; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - appId ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - property: "fb:app_id", - content: appId - }) : null, - ...admins ? admins.map((admin)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - property: "fb:admins", - content: admin - })) : [] - ]); -} -function PinterestMeta({ pinterest }) { - if (!pinterest || pinterest.richPin === undefined) return null; - const { richPin } = pinterest; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - property: "pinterest-rich-pin", - content: richPin.toString() - }); -} -const formatDetectionKeys = [ - 'telephone', - 'date', - 'address', - 'email', - 'url' -]; -function FormatDetectionMeta({ formatDetection }) { - if (!formatDetection) return null; - let content = ''; - for (const key of formatDetectionKeys){ - if (formatDetection[key] === false) { - if (content) content += ', '; - content += `${key}=no`; - } - } - return content ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "format-detection", - content: content - }) : null; -} -function AppleWebAppMeta({ appleWebApp }) { - if (!appleWebApp) return null; - const { capable, title, startupImage, statusBarStyle } = appleWebApp; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - capable ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'mobile-web-app-capable', - content: 'yes' - }) : null, - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'apple-mobile-web-app-title', - content: title - }), - startupImage ? startupImage.map((image)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - href: image.url, - media: image.media, - rel: "apple-touch-startup-image" - })) : null, - statusBarStyle ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'apple-mobile-web-app-status-bar-style', - content: statusBarStyle - }) : null - ]); -} -function VerificationMeta({ verification }) { - if (!verification) return null; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'google-site-verification', - contents: verification.google - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'y_key', - contents: verification.yahoo - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'yandex-verification', - contents: verification.yandex - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'me', - contents: verification.me - }), - ...verification.other ? Object.entries(verification.other).map(([key, value])=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: key, - contents: value - })) : [] - ]); -} //# sourceMappingURL=basic.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/alternate.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "AlternatesMetadata", - ()=>AlternatesMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -; -; -; -function AlternateLink({ descriptor, ...props }) { - if (!descriptor.url) return null; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - ...props, - ...descriptor.title && { - title: descriptor.title - }, - href: descriptor.url.toString() - }); -} -function AlternatesMetadata({ alternates }) { - if (!alternates) return null; - const { canonical, languages, media, types } = alternates; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - canonical ? AlternateLink({ - rel: 'canonical', - descriptor: canonical - }) : null, - languages ? Object.entries(languages).flatMap(([locale, descriptors])=>descriptors == null ? void 0 : descriptors.map((descriptor)=>AlternateLink({ - rel: 'alternate', - hrefLang: locale, - descriptor - }))) : null, - media ? Object.entries(media).flatMap(([mediaName, descriptors])=>descriptors == null ? void 0 : descriptors.map((descriptor)=>AlternateLink({ - rel: 'alternate', - media: mediaName, - descriptor - }))) : null, - types ? Object.entries(types).flatMap(([type, descriptors])=>descriptors == null ? void 0 : descriptors.map((descriptor)=>AlternateLink({ - rel: 'alternate', - type, - descriptor - }))) : null - ]); -} //# sourceMappingURL=alternate.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/opengraph.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "AppLinksMeta", - ()=>AppLinksMeta, - "OpenGraphMetadata", - ()=>OpenGraphMetadata, - "TwitterMetadata", - ()=>TwitterMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -; -function OpenGraphMetadata({ openGraph }) { - var _openGraph_title, _openGraph_url, _openGraph_ttl; - if (!openGraph) { - return null; - } - let typedOpenGraph; - if ('type' in openGraph) { - const openGraphType = openGraph.type; - switch(openGraphType){ - case 'website': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'website' - }) - ]; - break; - case 'article': - var _openGraph_publishedTime, _openGraph_modifiedTime, _openGraph_expirationTime; - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'article' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'article:published_time', - content: (_openGraph_publishedTime = openGraph.publishedTime) == null ? void 0 : _openGraph_publishedTime.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'article:modified_time', - content: (_openGraph_modifiedTime = openGraph.modifiedTime) == null ? void 0 : _openGraph_modifiedTime.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'article:expiration_time', - content: (_openGraph_expirationTime = openGraph.expirationTime) == null ? void 0 : _openGraph_expirationTime.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'article:author', - contents: openGraph.authors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'article:section', - content: openGraph.section - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'article:tag', - contents: openGraph.tags - }) - ]; - break; - case 'book': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'book' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'book:isbn', - content: openGraph.isbn - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'book:release_date', - content: openGraph.releaseDate - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'book:author', - contents: openGraph.authors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'book:tag', - contents: openGraph.tags - }) - ]; - break; - case 'profile': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'profile' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'profile:first_name', - content: openGraph.firstName - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'profile:last_name', - content: openGraph.lastName - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'profile:username', - content: openGraph.username - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'profile:gender', - content: openGraph.gender - }) - ]; - break; - case 'music.song': - var _openGraph_duration; - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'music.song' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'music:duration', - content: (_openGraph_duration = openGraph.duration) == null ? void 0 : _openGraph_duration.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:album', - contents: openGraph.albums - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:musician', - contents: openGraph.musicians - }) - ]; - break; - case 'music.album': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'music.album' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:song', - contents: openGraph.songs - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:musician', - contents: openGraph.musicians - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'music:release_date', - content: openGraph.releaseDate - }) - ]; - break; - case 'music.playlist': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'music.playlist' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:song', - contents: openGraph.songs - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:creator', - contents: openGraph.creators - }) - ]; - break; - case 'music.radio_station': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'music.radio_station' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:creator', - contents: openGraph.creators - }) - ]; - break; - case 'video.movie': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'video.movie' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:actor', - contents: openGraph.actors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:director', - contents: openGraph.directors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:writer', - contents: openGraph.writers - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:duration', - content: openGraph.duration - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:release_date', - content: openGraph.releaseDate - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:tag', - contents: openGraph.tags - }) - ]; - break; - case 'video.episode': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'video.episode' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:actor', - contents: openGraph.actors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:director', - contents: openGraph.directors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:writer', - contents: openGraph.writers - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:duration', - content: openGraph.duration - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:release_date', - content: openGraph.releaseDate - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:tag', - contents: openGraph.tags - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:series', - content: openGraph.series - }) - ]; - break; - case 'video.tv_show': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'video.tv_show' - }) - ]; - break; - case 'video.other': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'video.other' - }) - ]; - break; - default: - const _exhaustiveCheck = openGraphType; - throw Object.defineProperty(new Error(`Invalid OpenGraph type: ${_exhaustiveCheck}`), "__NEXT_ERROR_CODE", { - value: "E237", - enumerable: false, - configurable: true - }); - } - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:determiner', - content: openGraph.determiner - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:title', - content: (_openGraph_title = openGraph.title) == null ? void 0 : _openGraph_title.absolute - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:description', - content: openGraph.description - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:url', - content: (_openGraph_url = openGraph.url) == null ? void 0 : _openGraph_url.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:site_name', - content: openGraph.siteName - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:locale', - content: openGraph.locale - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:country_name', - content: openGraph.countryName - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:ttl', - content: (_openGraph_ttl = openGraph.ttl) == null ? void 0 : _openGraph_ttl.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:image', - contents: openGraph.images - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:video', - contents: openGraph.videos - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:audio', - contents: openGraph.audio - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:email', - contents: openGraph.emails - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:phone_number', - contents: openGraph.phoneNumbers - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:fax_number', - contents: openGraph.faxNumbers - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:locale:alternate', - contents: openGraph.alternateLocale - }), - ...typedOpenGraph ? typedOpenGraph : [] - ]); -} -function TwitterAppItem({ app, type }) { - var _app_url_type, _app_url; - return [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: `twitter:app:name:${type}`, - content: app.name - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: `twitter:app:id:${type}`, - content: app.id[type] - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: `twitter:app:url:${type}`, - content: (_app_url = app.url) == null ? void 0 : (_app_url_type = _app_url[type]) == null ? void 0 : _app_url_type.toString() - }) - ]; -} -function TwitterMetadata({ twitter }) { - var _twitter_title; - if (!twitter) return null; - const { card } = twitter; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:card', - content: card - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:site', - content: twitter.site - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:site:id', - content: twitter.siteId - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:creator', - content: twitter.creator - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:creator:id', - content: twitter.creatorId - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:title', - content: (_twitter_title = twitter.title) == null ? void 0 : _twitter_title.absolute - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:description', - content: twitter.description - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'twitter:image', - contents: twitter.images - }), - ...card === 'player' ? twitter.players.flatMap((player)=>[ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:player', - content: player.playerUrl.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:player:stream', - content: player.streamUrl.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:player:width', - content: player.width - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:player:height', - content: player.height - }) - ]) : [], - ...card === 'app' ? [ - TwitterAppItem({ - app: twitter.app, - type: 'iphone' - }), - TwitterAppItem({ - app: twitter.app, - type: 'ipad' - }), - TwitterAppItem({ - app: twitter.app, - type: 'googleplay' - }) - ] : [] - ]); -} -function AppLinksMeta({ appLinks }) { - if (!appLinks) return null; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:ios', - contents: appLinks.ios - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:iphone', - contents: appLinks.iphone - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:ipad', - contents: appLinks.ipad - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:android', - contents: appLinks.android - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:windows_phone', - contents: appLinks.windows_phone - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:windows', - contents: appLinks.windows - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:windows_universal', - contents: appLinks.windows_universal - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:web', - contents: appLinks.web - }) - ]); -} //# sourceMappingURL=opengraph.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js")); -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icons.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "IconsMetadata", - ()=>IconsMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -; -; -; -function IconDescriptorLink({ icon }) { - const { url, rel = 'icon', ...props } = icon; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: rel, - href: url.toString(), - ...props - }); -} -function IconLink({ rel, icon }) { - if (typeof icon === 'object' && !(icon instanceof URL)) { - if (!icon.rel && rel) icon.rel = rel; - return IconDescriptorLink({ - icon - }); - } else { - const href = icon.toString(); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: rel, - href: href - }); - } -} -function IconsMetadata({ icons }) { - if (!icons) return null; - const shortcutList = icons.shortcut; - const iconList = icons.icon; - const appleList = icons.apple; - const otherList = icons.other; - const hasIcon = Boolean((shortcutList == null ? void 0 : shortcutList.length) || (iconList == null ? void 0 : iconList.length) || (appleList == null ? void 0 : appleList.length) || (otherList == null ? void 0 : otherList.length)); - if (!hasIcon) return null; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - shortcutList ? shortcutList.map((icon)=>IconLink({ - rel: 'shortcut icon', - icon - })) : null, - iconList ? iconList.map((icon)=>IconLink({ - rel: 'icon', - icon - })) : null, - appleList ? appleList.map((icon)=>IconLink({ - rel: 'apple-touch-icon', - icon - })) : null, - otherList ? otherList.map((icon)=>IconDescriptorLink({ - icon - })) : null, - hasIcon ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IconMark"], {}) : null - ]); -} //# sourceMappingURL=icons.js.map -}), -"[project]/node_modules/next/dist/compiled/server-only/empty.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -}), -"[project]/node_modules/next/dist/esm/lib/metadata/default-metadata.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDefaultMetadata", - ()=>createDefaultMetadata, - "createDefaultViewport", - ()=>createDefaultViewport -]); -function createDefaultViewport() { - return { - // name=viewport - width: 'device-width', - initialScale: 1, - // visual metadata - themeColor: null, - colorScheme: null - }; -} -function createDefaultMetadata() { - return { - // Deprecated ones - viewport: null, - themeColor: null, - colorScheme: null, - metadataBase: null, - // Other values are all null - title: null, - description: null, - applicationName: null, - authors: null, - generator: null, - keywords: null, - referrer: null, - creator: null, - publisher: null, - robots: null, - manifest: null, - alternates: { - canonical: null, - languages: null, - media: null, - types: null - }, - icons: null, - openGraph: null, - twitter: null, - verification: {}, - appleWebApp: null, - formatDetection: null, - itunes: null, - facebook: null, - pinterest: null, - abstract: null, - appLinks: null, - archives: null, - assets: null, - bookmarks: null, - category: null, - classification: null, - pagination: { - previous: null, - next: null - }, - other: {} - }; -} //# sourceMappingURL=default-metadata.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/isomorphic/path.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -/** - * This module is for next.js server internal usage of path module. - * It will use native path module for nodejs runtime. - * It will use path-browserify polyfill for edge runtime. - */ let path; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - path = __turbopack_context__.r("[externals]/path [external] (path, cjs)"); -} -module.exports = path; //# sourceMappingURL=path.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getSocialImageMetadataBaseFallback", - ()=>getSocialImageMetadataBaseFallback, - "isStringOrURL", - ()=>isStringOrURL, - "resolveAbsoluteUrlWithPathname", - ()=>resolveAbsoluteUrlWithPathname, - "resolveRelativeUrl", - ()=>resolveRelativeUrl, - "resolveUrl", - ()=>resolveUrl -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$isomorphic$2f$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/isomorphic/path.js [app-rsc] (ecmascript)"); -; -function isStringOrURL(icon) { - return typeof icon === 'string' || icon instanceof URL; -} -function createLocalMetadataBase() { - // Check if experimental HTTPS is enabled - const isExperimentalHttps = Boolean(process.env.__NEXT_EXPERIMENTAL_HTTPS); - const protocol = isExperimentalHttps ? 'https' : 'http'; - return new URL(`${protocol}://localhost:${process.env.PORT || 3000}`); -} -function getPreviewDeploymentUrl() { - const origin = process.env.VERCEL_BRANCH_URL || process.env.VERCEL_URL; - return origin ? new URL(`https://${origin}`) : undefined; -} -function getProductionDeploymentUrl() { - const origin = process.env.VERCEL_PROJECT_PRODUCTION_URL; - return origin ? new URL(`https://${origin}`) : undefined; -} -function getSocialImageMetadataBaseFallback(metadataBase) { - const defaultMetadataBase = createLocalMetadataBase(); - const previewDeploymentUrl = getPreviewDeploymentUrl(); - const productionDeploymentUrl = getProductionDeploymentUrl(); - let fallbackMetadataBase; - if ("TURBOPACK compile-time truthy", 1) { - fallbackMetadataBase = defaultMetadataBase; - } else //TURBOPACK unreachable - ; - return fallbackMetadataBase; -} -function resolveUrl(url, metadataBase) { - if (url instanceof URL) return url; - if (!url) return null; - try { - // If we can construct a URL instance from url, ignore metadataBase - const parsedUrl = new URL(url); - return parsedUrl; - } catch {} - if (!metadataBase) { - metadataBase = createLocalMetadataBase(); - } - // Handle relative or absolute paths - const pathname = metadataBase.pathname || ''; - const joinedPath = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$isomorphic$2f$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].posix.join(pathname, url); - return new URL(joinedPath, metadataBase); -} -// Resolve with `pathname` if `url` is a relative path. -function resolveRelativeUrl(url, pathname) { - if (typeof url === 'string' && url.startsWith('./')) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$isomorphic$2f$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].posix.resolve(pathname, url); - } - return url; -} -// The regex is matching logic from packages/next/src/lib/load-custom-routes.ts -const FILE_REGEX = /^(?:\/((?!\.well-known(?:\/.*)?)(?:[^/]+\/)*[^/]+\.\w+))(\/?|$)/i; -function isFilePattern(pathname) { - return FILE_REGEX.test(pathname); -} -// Resolve `pathname` if `url` is a relative path the compose with `metadataBase`. -function resolveAbsoluteUrlWithPathname(url, metadataBase, pathname, { trailingSlash }) { - // Resolve url with pathname that always starts with `/` - url = resolveRelativeUrl(url, pathname); - // Convert string url or URL instance to absolute url string, - // if there's case needs to be resolved with metadataBase - let resolvedUrl = ''; - const result = metadataBase ? resolveUrl(url, metadataBase) : url; - if (typeof result === 'string') { - resolvedUrl = result; - } else { - resolvedUrl = result.pathname === '/' && result.searchParams.size === 0 ? result.origin : result.href; - } - // Add trailing slash if it's enabled for urls matches the condition - // - Not external, same origin with metadataBase - // - Doesn't have query - if (trailingSlash && !resolvedUrl.endsWith('/')) { - let isRelative = resolvedUrl.startsWith('/'); - let hasQuery = resolvedUrl.includes('?'); - let isExternal = false; - let isFileUrl = false; - if (!isRelative) { - try { - const parsedUrl = new URL(resolvedUrl); - isExternal = metadataBase != null && parsedUrl.origin !== metadataBase.origin; - isFileUrl = isFilePattern(parsedUrl.pathname); - } catch { - // If it's not a valid URL, treat it as external - isExternal = true; - } - if (!isFileUrl && !isExternal && !hasQuery) return `${resolvedUrl}/`; - } - } - return resolvedUrl; -} -; - //# sourceMappingURL=resolve-url.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-title.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveTitle", - ()=>resolveTitle -]); -function resolveTitleTemplate(template, title) { - return template ? template.replace(/%s/g, title) : title; -} -function resolveTitle(title, stashedTemplate) { - let resolved; - const template = typeof title !== 'string' && title && 'template' in title ? title.template : null; - if (typeof title === 'string') { - resolved = resolveTitleTemplate(stashedTemplate, title); - } else if (title) { - if ('default' in title) { - resolved = resolveTitleTemplate(stashedTemplate, title.default); - } - if ('absolute' in title && title.absolute) { - resolved = title.absolute; - } - } - if (title && typeof title !== 'string') { - return { - template, - absolute: resolved || '' - }; - } else { - return { - absolute: resolved || title || '', - template - }; - } -} //# sourceMappingURL=resolve-title.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ACTION_HEADER", - ()=>ACTION_HEADER, - "FLIGHT_HEADERS", - ()=>FLIGHT_HEADERS, - "NEXT_ACTION_NOT_FOUND_HEADER", - ()=>NEXT_ACTION_NOT_FOUND_HEADER, - "NEXT_ACTION_REVALIDATED_HEADER", - ()=>NEXT_ACTION_REVALIDATED_HEADER, - "NEXT_DID_POSTPONE_HEADER", - ()=>NEXT_DID_POSTPONE_HEADER, - "NEXT_HMR_REFRESH_HASH_COOKIE", - ()=>NEXT_HMR_REFRESH_HASH_COOKIE, - "NEXT_HMR_REFRESH_HEADER", - ()=>NEXT_HMR_REFRESH_HEADER, - "NEXT_HTML_REQUEST_ID_HEADER", - ()=>NEXT_HTML_REQUEST_ID_HEADER, - "NEXT_IS_PRERENDER_HEADER", - ()=>NEXT_IS_PRERENDER_HEADER, - "NEXT_REQUEST_ID_HEADER", - ()=>NEXT_REQUEST_ID_HEADER, - "NEXT_REWRITTEN_PATH_HEADER", - ()=>NEXT_REWRITTEN_PATH_HEADER, - "NEXT_REWRITTEN_QUERY_HEADER", - ()=>NEXT_REWRITTEN_QUERY_HEADER, - "NEXT_ROUTER_PREFETCH_HEADER", - ()=>NEXT_ROUTER_PREFETCH_HEADER, - "NEXT_ROUTER_SEGMENT_PREFETCH_HEADER", - ()=>NEXT_ROUTER_SEGMENT_PREFETCH_HEADER, - "NEXT_ROUTER_STALE_TIME_HEADER", - ()=>NEXT_ROUTER_STALE_TIME_HEADER, - "NEXT_ROUTER_STATE_TREE_HEADER", - ()=>NEXT_ROUTER_STATE_TREE_HEADER, - "NEXT_RSC_UNION_QUERY", - ()=>NEXT_RSC_UNION_QUERY, - "NEXT_URL", - ()=>NEXT_URL, - "RSC_CONTENT_TYPE_HEADER", - ()=>RSC_CONTENT_TYPE_HEADER, - "RSC_HEADER", - ()=>RSC_HEADER -]); -const RSC_HEADER = 'rsc'; -const ACTION_HEADER = 'next-action'; -const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree'; -const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch'; -const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER = 'next-router-segment-prefetch'; -const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh'; -const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__'; -const NEXT_URL = 'next-url'; -const RSC_CONTENT_TYPE_HEADER = 'text/x-component'; -const FLIGHT_HEADERS = [ - RSC_HEADER, - NEXT_ROUTER_STATE_TREE_HEADER, - NEXT_ROUTER_PREFETCH_HEADER, - NEXT_HMR_REFRESH_HEADER, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER -]; -const NEXT_RSC_UNION_QUERY = '_rsc'; -const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time'; -const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed'; -const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path'; -const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query'; -const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender'; -const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found'; -const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id'; -const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id'; -const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated'; //# sourceMappingURL=app-router-headers.js.map -}), -"[project]/node_modules/next/dist/esm/lib/url.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isFullStringUrl", - ()=>isFullStringUrl, - "parseReqUrl", - ()=>parseReqUrl, - "parseUrl", - ()=>parseUrl, - "stripNextRscUnionQuery", - ()=>stripNextRscUnionQuery -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -; -const DUMMY_ORIGIN = 'http://n'; -function isFullStringUrl(url) { - return /https?:\/\//.test(url); -} -function parseUrl(url) { - let parsed = undefined; - try { - parsed = new URL(url, DUMMY_ORIGIN); - } catch {} - return parsed; -} -function parseReqUrl(url) { - const parsedUrl = parseUrl(url); - if (!parsedUrl) { - return; - } - const query = {}; - for (const key of parsedUrl.searchParams.keys()){ - const values = parsedUrl.searchParams.getAll(key); - query[key] = values.length > 1 ? values : values[0]; - } - const legacyUrl = { - query, - hash: parsedUrl.hash, - search: parsedUrl.search, - path: parsedUrl.pathname, - pathname: parsedUrl.pathname, - href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`, - host: '', - hostname: '', - auth: '', - protocol: '', - slashes: null, - port: '' - }; - return legacyUrl; -} -function stripNextRscUnionQuery(relativeUrl) { - const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN); - urlInstance.searchParams.delete(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]); - return urlInstance.pathname + urlInstance.search; -} //# sourceMappingURL=url.js.map -}), -"[project]/node_modules/next/dist/esm/lib/picocolors.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "bgBlack", - ()=>bgBlack, - "bgBlue", - ()=>bgBlue, - "bgCyan", - ()=>bgCyan, - "bgGreen", - ()=>bgGreen, - "bgMagenta", - ()=>bgMagenta, - "bgRed", - ()=>bgRed, - "bgWhite", - ()=>bgWhite, - "bgYellow", - ()=>bgYellow, - "black", - ()=>black, - "blue", - ()=>blue, - "bold", - ()=>bold, - "cyan", - ()=>cyan, - "dim", - ()=>dim, - "gray", - ()=>gray, - "green", - ()=>green, - "hidden", - ()=>hidden, - "inverse", - ()=>inverse, - "italic", - ()=>italic, - "magenta", - ()=>magenta, - "purple", - ()=>purple, - "red", - ()=>red, - "reset", - ()=>reset, - "strikethrough", - ()=>strikethrough, - "underline", - ()=>underline, - "white", - ()=>white, - "yellow", - ()=>yellow -]); -// ISC License -// Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov -// Permission to use, copy, modify, and/or distribute this software for any -// purpose with or without fee is hereby granted, provided that the above -// copyright notice and this permission notice appear in all copies. -// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -// -// https://github.com/alexeyraspopov/picocolors/blob/b6261487e7b81aaab2440e397a356732cad9e342/picocolors.js#L1 -var _globalThis; -const { env, stdout } = ((_globalThis = globalThis) == null ? void 0 : _globalThis.process) ?? {}; -const enabled = env && !env.NO_COLOR && (env.FORCE_COLOR || (stdout == null ? void 0 : stdout.isTTY) && !env.CI && env.TERM !== 'dumb'); -const replaceClose = (str, close, replace, index)=>{ - const start = str.substring(0, index) + replace; - const end = str.substring(index + close.length); - const nextIndex = end.indexOf(close); - return ~nextIndex ? start + replaceClose(end, close, replace, nextIndex) : start + end; -}; -const formatter = (open, close, replace = open)=>{ - if (!enabled) return String; - return (input)=>{ - const string = '' + input; - const index = string.indexOf(close, open.length); - return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close; - }; -}; -const reset = enabled ? (s)=>`\x1b[0m${s}\x1b[0m` : String; -const bold = formatter('\x1b[1m', '\x1b[22m', '\x1b[22m\x1b[1m'); -const dim = formatter('\x1b[2m', '\x1b[22m', '\x1b[22m\x1b[2m'); -const italic = formatter('\x1b[3m', '\x1b[23m'); -const underline = formatter('\x1b[4m', '\x1b[24m'); -const inverse = formatter('\x1b[7m', '\x1b[27m'); -const hidden = formatter('\x1b[8m', '\x1b[28m'); -const strikethrough = formatter('\x1b[9m', '\x1b[29m'); -const black = formatter('\x1b[30m', '\x1b[39m'); -const red = formatter('\x1b[31m', '\x1b[39m'); -const green = formatter('\x1b[32m', '\x1b[39m'); -const yellow = formatter('\x1b[33m', '\x1b[39m'); -const blue = formatter('\x1b[34m', '\x1b[39m'); -const magenta = formatter('\x1b[35m', '\x1b[39m'); -const purple = formatter('\x1b[38;2;173;127;168m', '\x1b[39m'); -const cyan = formatter('\x1b[36m', '\x1b[39m'); -const white = formatter('\x1b[37m', '\x1b[39m'); -const gray = formatter('\x1b[90m', '\x1b[39m'); -const bgBlack = formatter('\x1b[40m', '\x1b[49m'); -const bgRed = formatter('\x1b[41m', '\x1b[49m'); -const bgGreen = formatter('\x1b[42m', '\x1b[49m'); -const bgYellow = formatter('\x1b[43m', '\x1b[49m'); -const bgBlue = formatter('\x1b[44m', '\x1b[49m'); -const bgMagenta = formatter('\x1b[45m', '\x1b[49m'); -const bgCyan = formatter('\x1b[46m', '\x1b[49m'); -const bgWhite = formatter('\x1b[47m', '\x1b[49m'); //# sourceMappingURL=picocolors.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/lru-cache.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "LRUCache", - ()=>LRUCache -]); -/** - * Node in the doubly-linked list used for LRU tracking. - * Each node represents a cache entry with bidirectional pointers. - */ class LRUNode { - constructor(key, data, size){ - this.prev = null; - this.next = null; - this.key = key; - this.data = data; - this.size = size; - } -} -/** - * Sentinel node used for head/tail boundaries. - * These nodes don't contain actual cache data but simplify list operations. - */ class SentinelNode { - constructor(){ - this.prev = null; - this.next = null; - } -} -class LRUCache { - constructor(maxSize, calculateSize, onEvict){ - this.cache = new Map(); - this.totalSize = 0; - this.maxSize = maxSize; - this.calculateSize = calculateSize; - this.onEvict = onEvict; - // Create sentinel nodes to simplify doubly-linked list operations - // HEAD <-> TAIL (empty list) - this.head = new SentinelNode(); - this.tail = new SentinelNode(); - this.head.next = this.tail; - this.tail.prev = this.head; - } - /** - * Adds a node immediately after the head (marks as most recently used). - * Used when inserting new items or when an item is accessed. - * PRECONDITION: node must be disconnected (prev/next should be null) - */ addToHead(node) { - node.prev = this.head; - node.next = this.head.next; - // head.next is always non-null (points to tail or another node) - this.head.next.prev = node; - this.head.next = node; - } - /** - * Removes a node from its current position in the doubly-linked list. - * Updates the prev/next pointers of adjacent nodes to maintain list integrity. - * PRECONDITION: node must be connected (prev/next are non-null) - */ removeNode(node) { - // Connected nodes always have non-null prev/next - node.prev.next = node.next; - node.next.prev = node.prev; - } - /** - * Moves an existing node to the head position (marks as most recently used). - * This is the core LRU operation - accessed items become most recent. - */ moveToHead(node) { - this.removeNode(node); - this.addToHead(node); - } - /** - * Removes and returns the least recently used node (the one before tail). - * This is called during eviction when the cache exceeds capacity. - * PRECONDITION: cache is not empty (ensured by caller) - */ removeTail() { - const lastNode = this.tail.prev; - // tail.prev is always non-null and always LRUNode when cache is not empty - this.removeNode(lastNode); - return lastNode; - } - /** - * Sets a key-value pair in the cache. - * If the key exists, updates the value and moves to head. - * If new, adds at head and evicts from tail if necessary. - * - * Time Complexity: - * - O(1) for uniform item sizes - * - O(k) where k is the number of items evicted (can be O(N) for variable sizes) - */ set(key, value) { - const size = (this.calculateSize == null ? void 0 : this.calculateSize.call(this, value)) ?? 1; - if (size > this.maxSize) { - console.warn('Single item size exceeds maxSize'); - return; - } - const existing = this.cache.get(key); - if (existing) { - // Update existing node: adjust size and move to head (most recent) - existing.data = value; - this.totalSize = this.totalSize - existing.size + size; - existing.size = size; - this.moveToHead(existing); - } else { - // Add new node at head (most recent position) - const newNode = new LRUNode(key, value, size); - this.cache.set(key, newNode); - this.addToHead(newNode); - this.totalSize += size; - } - // Evict least recently used items until under capacity - while(this.totalSize > this.maxSize && this.cache.size > 0){ - const tail = this.removeTail(); - this.cache.delete(tail.key); - this.totalSize -= tail.size; - this.onEvict == null ? void 0 : this.onEvict.call(this, tail.key, tail.data); - } - } - /** - * Checks if a key exists in the cache. - * This is a pure query operation - does NOT update LRU order. - * - * Time Complexity: O(1) - */ has(key) { - return this.cache.has(key); - } - /** - * Retrieves a value by key and marks it as most recently used. - * Moving to head maintains the LRU property for future evictions. - * - * Time Complexity: O(1) - */ get(key) { - const node = this.cache.get(key); - if (!node) return undefined; - // Mark as most recently used by moving to head - this.moveToHead(node); - return node.data; - } - /** - * Returns an iterator over the cache entries. The order is outputted in the - * order of most recently used to least recently used. - */ *[Symbol.iterator]() { - let current = this.head.next; - while(current && current !== this.tail){ - // Between head and tail, current is always LRUNode - const node = current; - yield [ - node.key, - node.data - ]; - current = current.next; - } - } - /** - * Removes a specific key from the cache. - * Updates both the hash map and doubly-linked list. - * - * Note: This is an explicit removal and does NOT trigger the `onEvict` - * callback. Use this for intentional deletions where eviction tracking - * is not needed. - * - * Time Complexity: O(1) - */ remove(key) { - const node = this.cache.get(key); - if (!node) return; - this.removeNode(node); - this.cache.delete(key); - this.totalSize -= node.size; - } - /** - * Returns the number of items in the cache. - */ get size() { - return this.cache.size; - } - /** - * Returns the current total size of all cached items. - * This uses the custom size calculation if provided. - */ get currentSize() { - return this.totalSize; - } -} //# sourceMappingURL=lru-cache.js.map -}), -"[project]/node_modules/next/dist/esm/build/output/log.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "bootstrap", - ()=>bootstrap, - "error", - ()=>error, - "errorOnce", - ()=>errorOnce, - "event", - ()=>event, - "info", - ()=>info, - "prefixes", - ()=>prefixes, - "ready", - ()=>ready, - "trace", - ()=>trace, - "wait", - ()=>wait, - "warn", - ()=>warn, - "warnOnce", - ()=>warnOnce -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/picocolors.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/lru-cache.js [app-rsc] (ecmascript)"); -; -; -const prefixes = { - wait: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["white"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('○')), - error: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["red"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('⨯')), - warn: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["yellow"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('⚠')), - ready: '▲', - info: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["white"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])(' ')), - event: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["green"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('✓')), - trace: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["magenta"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('»')) -}; -const LOGGING_METHOD = { - log: 'log', - warn: 'warn', - error: 'error' -}; -function prefixedLog(prefixType, ...message) { - if ((message[0] === '' || message[0] === undefined) && message.length === 1) { - message.shift(); - } - const consoleMethod = prefixType in LOGGING_METHOD ? LOGGING_METHOD[prefixType] : 'log'; - const prefix = prefixes[prefixType]; - // If there's no message, don't print the prefix but a new line - if (message.length === 0) { - console[consoleMethod](''); - } else { - // Ensure if there's ANSI escape codes it's concatenated into one string. - // Chrome DevTool can only handle color if it's in one string. - if (message.length === 1 && typeof message[0] === 'string') { - console[consoleMethod](prefix + ' ' + message[0]); - } else { - console[consoleMethod](prefix, ...message); - } - } -} -function bootstrap(message) { - console.log(message); -} -function wait(...message) { - prefixedLog('wait', ...message); -} -function error(...message) { - prefixedLog('error', ...message); -} -function warn(...message) { - prefixedLog('warn', ...message); -} -function ready(...message) { - prefixedLog('ready', ...message); -} -function info(...message) { - prefixedLog('info', ...message); -} -function event(...message) { - prefixedLog('event', ...message); -} -function trace(...message) { - prefixedLog('trace', ...message); -} -const warnOnceCache = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LRUCache"](10000, (value)=>value.length); -function warnOnce(...message) { - const key = message.join(' '); - if (!warnOnceCache.has(key)) { - warnOnceCache.set(key, key); - warn(...message); - } -} -const errorOnceCache = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LRUCache"](10000, (value)=>value.length); -function errorOnce(...message) { - const key = message.join(' '); - if (!errorOnceCache.has(key)) { - errorOnceCache.set(key, key); - error(...message); - } -} //# sourceMappingURL=log.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-opengraph.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveImages", - ()=>resolveImages, - "resolveOpenGraph", - ()=>resolveOpenGraph, - "resolveTwitter", - ()=>resolveTwitter -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-title.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/url.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/output/log.js [app-rsc] (ecmascript)"); -; -; -; -; -; -const OgTypeFields = { - article: [ - 'authors', - 'tags' - ], - song: [ - 'albums', - 'musicians' - ], - playlist: [ - 'albums', - 'musicians' - ], - radio: [ - 'creators' - ], - video: [ - 'actors', - 'directors', - 'writers', - 'tags' - ], - basic: [ - 'emails', - 'phoneNumbers', - 'faxNumbers', - 'alternateLocale', - 'audio', - 'videos' - ] -}; -function resolveAndValidateImage(item, metadataBase, isStaticMetadataRouteFile) { - if (!item) return undefined; - const isItemUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isStringOrURL"])(item); - const inputUrl = isItemUrl ? item : item.url; - if (!inputUrl) return undefined; - // process.env.VERCEL is set to "1" when System Environment Variables are - // exposed. When exposed, validation is not necessary since we are falling back to - // process.env.VERCEL_PROJECT_PRODUCTION_URL, process.env.VERCEL_BRANCH_URL, or - // process.env.VERCEL_URL for the `metadataBase`. process.env.VERCEL is undefined - // when System Environment Variables are not exposed. When not exposed, we cannot - // detect in the build environment if the deployment is a Vercel deployment or not. - // - // x-ref: https://vercel.com/docs/projects/environment-variables/system-environment-variables#system-environment-variables - const isUsingVercelSystemEnvironmentVariables = Boolean(process.env.VERCEL); - const isRelativeUrl = typeof inputUrl === 'string' && !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isFullStringUrl"])(inputUrl); - // When no explicit metadataBase is specified by the user, we'll override it with the fallback metadata - // under the following conditions: - // - The provided URL is relative (ie ./og-image). - // - The image is statically generated by Next.js (such as the special `opengraph-image` route) - // In both cases, we want to ensure that across all environments, the ogImage is a fully qualified URL. - // In the `opengraph-image` case, since the user isn't explicitly passing a relative path, this ensures - // the ogImage will be properly discovered across different environments without the user needing to - // have a bunch of `process.env` checks when defining their `metadataBase`. - if (isRelativeUrl && (!metadataBase || isStaticMetadataRouteFile)) { - const fallbackMetadataBase = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getSocialImageMetadataBaseFallback"])(metadataBase); - // When not using Vercel environment variables for URL injection, we aren't able to determine - // a fallback value for `metadataBase`. For self-hosted setups, we want to warn - // about this since the only fallback we'll be able to generate is `localhost`. - // In development, we'll only warn for relative metadata that isn't part of the static - // metadata conventions (eg `opengraph-image`), as otherwise it's currently very noisy - // for common cases. Eventually we should remove this warning all together in favor of - // devtools. - const shouldWarn = !isUsingVercelSystemEnvironmentVariables && !metadataBase && (("TURBOPACK compile-time value", "development") === 'production' || !isStaticMetadataRouteFile); - if (shouldWarn) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["warnOnce"])(`metadataBase property in metadata export is not set for resolving social open graph or twitter images, using "${fallbackMetadataBase.origin}". See https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase`); - } - metadataBase = fallbackMetadataBase; - } - return isItemUrl ? { - url: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveUrl"])(inputUrl, metadataBase) - } : { - ...item, - // Update image descriptor url - url: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveUrl"])(inputUrl, metadataBase) - }; -} -function resolveImages(images, metadataBase, isStaticMetadataRouteFile) { - const resolvedImages = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(images); - if (!resolvedImages) return resolvedImages; - const nonNullableImages = []; - for (const item of resolvedImages){ - const resolvedItem = resolveAndValidateImage(item, metadataBase, isStaticMetadataRouteFile); - if (!resolvedItem) continue; - nonNullableImages.push(resolvedItem); - } - return nonNullableImages; -} -const ogTypeToFields = { - article: OgTypeFields.article, - book: OgTypeFields.article, - 'music.song': OgTypeFields.song, - 'music.album': OgTypeFields.song, - 'music.playlist': OgTypeFields.playlist, - 'music.radio_station': OgTypeFields.radio, - 'video.movie': OgTypeFields.video, - 'video.episode': OgTypeFields.video -}; -function getFieldsByOgType(ogType) { - if (!ogType || !(ogType in ogTypeToFields)) return OgTypeFields.basic; - return ogTypeToFields[ogType].concat(OgTypeFields.basic); -} -const resolveOpenGraph = async (openGraph, metadataBase, pathname, metadataContext, titleTemplate)=>{ - if (!openGraph) return null; - function resolveProps(target, og) { - const ogType = og && 'type' in og ? og.type : undefined; - const keys = getFieldsByOgType(ogType); - for (const k of keys){ - const key = k; - if (key in og && key !== 'url') { - const value = og[key]; - target[key] = value ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveArray"])(value) : null; - } - } - target.images = resolveImages(og.images, metadataBase, metadataContext.isStaticMetadataRouteFile); - } - const resolved = { - ...openGraph, - title: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTitle"])(openGraph.title, titleTemplate) - }; - resolveProps(resolved, openGraph); - resolved.url = openGraph.url ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAbsoluteUrlWithPathname"])(openGraph.url, metadataBase, await pathname, metadataContext) : null; - return resolved; -}; -const TwitterBasicInfoKeys = [ - 'site', - 'siteId', - 'creator', - 'creatorId', - 'description' -]; -const resolveTwitter = (twitter, metadataBase, metadataContext, titleTemplate)=>{ - var _resolved_images; - if (!twitter) return null; - let card = 'card' in twitter ? twitter.card : undefined; - const resolved = { - ...twitter, - title: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTitle"])(twitter.title, titleTemplate) - }; - for (const infoKey of TwitterBasicInfoKeys){ - resolved[infoKey] = twitter[infoKey] || null; - } - resolved.images = resolveImages(twitter.images, metadataBase, metadataContext.isStaticMetadataRouteFile); - card = card || (((_resolved_images = resolved.images) == null ? void 0 : _resolved_images.length) ? 'summary_large_image' : 'summary'); - resolved.card = card; - if ('card' in resolved) { - switch(resolved.card){ - case 'player': - { - resolved.players = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(resolved.players) || []; - break; - } - case 'app': - { - resolved.app = resolved.app || {}; - break; - } - case 'summary': - case 'summary_large_image': - break; - default: - resolved; - } - } - return resolved; -}; //# sourceMappingURL=resolve-opengraph.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DEFAULT_SEGMENT_KEY", - ()=>DEFAULT_SEGMENT_KEY, - "NOT_FOUND_SEGMENT_KEY", - ()=>NOT_FOUND_SEGMENT_KEY, - "PAGE_SEGMENT_KEY", - ()=>PAGE_SEGMENT_KEY, - "addSearchParamsIfPageSegment", - ()=>addSearchParamsIfPageSegment, - "computeSelectedLayoutSegment", - ()=>computeSelectedLayoutSegment, - "getSegmentValue", - ()=>getSegmentValue, - "getSelectedLayoutSegmentPath", - ()=>getSelectedLayoutSegmentPath, - "isGroupSegment", - ()=>isGroupSegment, - "isParallelRouteSegment", - ()=>isParallelRouteSegment -]); -function getSegmentValue(segment) { - return Array.isArray(segment) ? segment[1] : segment; -} -function isGroupSegment(segment) { - // Use array[0] for performant purpose - return segment[0] === '(' && segment.endsWith(')'); -} -function isParallelRouteSegment(segment) { - return segment.startsWith('@') && segment !== '@children'; -} -function addSearchParamsIfPageSegment(segment, searchParams) { - const isPageSegment = segment.includes(PAGE_SEGMENT_KEY); - if (isPageSegment) { - const stringifiedQuery = JSON.stringify(searchParams); - return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY; - } - return segment; -} -function computeSelectedLayoutSegment(segments, parallelRouteKey) { - if (!segments || segments.length === 0) { - return null; - } - // For 'children', use first segment; for other parallel routes, use last segment - const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1]; - // If the default slot is showing, return null since it's not technically "selected" (it's a fallback) - // Returning an internal value like `__DEFAULT__` would be confusing - return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment; -} -function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) { - let node; - if (first) { - // Use the provided parallel route key on the first parallel route - node = tree[1][parallelRouteKey]; - } else { - // After first parallel route prefer children, if there's no children pick the first parallel route. - const parallelRoutes = tree[1]; - node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]; - } - if (!node) return segmentPath; - const segment = node[0]; - let segmentValue = getSegmentValue(segment); - if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) { - return segmentPath; - } - segmentPath.push(segmentValue); - return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath); -} -const PAGE_SEGMENT_KEY = '__PAGE__'; -const DEFAULT_SEGMENT_KEY = '__DEFAULT__'; -const NOT_FOUND_SEGMENT_KEY = '/_not-found'; //# sourceMappingURL=segment.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/app-dir-module.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getComponentTypeModule", - ()=>getComponentTypeModule, - "getLayoutOrPageModule", - ()=>getLayoutOrPageModule -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -; -async function getLayoutOrPageModule(loaderTree) { - const { layout, page, defaultPage } = loaderTree[2]; - const isLayout = typeof layout !== 'undefined'; - const isPage = typeof page !== 'undefined'; - const isDefaultPage = typeof defaultPage !== 'undefined' && loaderTree[0] === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"]; - let mod = undefined; - let modType = undefined; - let filePath = undefined; - if (isLayout) { - mod = await layout[0](); - modType = 'layout'; - filePath = layout[1]; - } else if (isPage) { - mod = await page[0](); - modType = 'page'; - filePath = page[1]; - } else if (isDefaultPage) { - mod = await defaultPage[0](); - modType = 'page'; - filePath = defaultPage[1]; - } - return { - mod, - modType, - filePath - }; -} -async function getComponentTypeModule(loaderTree, moduleType) { - const { [moduleType]: module } = loaderTree[2]; - if (typeof module !== 'undefined') { - return await module[0](); - } - return undefined; -} //# sourceMappingURL=app-dir-module.js.map -}), -"[project]/node_modules/next/dist/esm/lib/interop-default.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "interopDefault", - ()=>interopDefault -]); -function interopDefault(mod) { - return mod.default || mod; -} //# sourceMappingURL=interop-default.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-basics.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveAlternates", - ()=>resolveAlternates, - "resolveAppLinks", - ()=>resolveAppLinks, - "resolveAppleWebApp", - ()=>resolveAppleWebApp, - "resolveFacebook", - ()=>resolveFacebook, - "resolveItunes", - ()=>resolveItunes, - "resolvePagination", - ()=>resolvePagination, - "resolveRobots", - ()=>resolveRobots, - "resolveThemeColor", - ()=>resolveThemeColor, - "resolveVerification", - ()=>resolveVerification -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js [app-rsc] (ecmascript)"); -; -; -function resolveAlternateUrl(url, metadataBase, pathname, metadataContext) { - // If alter native url is an URL instance, - // we treat it as a URL base and resolve with current pathname - if (url instanceof URL) { - const newUrl = new URL(pathname, url); - url.searchParams.forEach((value, key)=>newUrl.searchParams.set(key, value)); - url = newUrl; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAbsoluteUrlWithPathname"])(url, metadataBase, pathname, metadataContext); -} -const resolveThemeColor = (themeColor)=>{ - var _resolveAsArrayOrUndefined; - if (!themeColor) return null; - const themeColorDescriptors = []; - (_resolveAsArrayOrUndefined = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(themeColor)) == null ? void 0 : _resolveAsArrayOrUndefined.forEach((descriptor)=>{ - if (typeof descriptor === 'string') themeColorDescriptors.push({ - color: descriptor - }); - else if (typeof descriptor === 'object') themeColorDescriptors.push({ - color: descriptor.color, - media: descriptor.media - }); - }); - return themeColorDescriptors; -}; -async function resolveUrlValuesOfObject(obj, metadataBase, pathname, metadataContext) { - if (!obj) return null; - const result = {}; - for (const [key, value] of Object.entries(obj)){ - if (typeof value === 'string' || value instanceof URL) { - const pathnameForUrl = await pathname; - result[key] = [ - { - url: resolveAlternateUrl(value, metadataBase, pathnameForUrl, metadataContext) - } - ]; - } else if (value && value.length) { - result[key] = []; - const pathnameForUrl = await pathname; - value.forEach((item, index)=>{ - const url = resolveAlternateUrl(item.url, metadataBase, pathnameForUrl, metadataContext); - result[key][index] = { - url, - title: item.title - }; - }); - } - } - return result; -} -async function resolveCanonicalUrl(urlOrDescriptor, metadataBase, pathname, metadataContext) { - if (!urlOrDescriptor) return null; - const url = typeof urlOrDescriptor === 'string' || urlOrDescriptor instanceof URL ? urlOrDescriptor : urlOrDescriptor.url; - const pathnameForUrl = await pathname; - // Return string url because structureClone can't handle URL instance - return { - url: resolveAlternateUrl(url, metadataBase, pathnameForUrl, metadataContext) - }; -} -const resolveAlternates = async (alternates, metadataBase, pathname, context)=>{ - if (!alternates) return null; - const canonical = await resolveCanonicalUrl(alternates.canonical, metadataBase, pathname, context); - const languages = await resolveUrlValuesOfObject(alternates.languages, metadataBase, pathname, context); - const media = await resolveUrlValuesOfObject(alternates.media, metadataBase, pathname, context); - const types = await resolveUrlValuesOfObject(alternates.types, metadataBase, pathname, context); - return { - canonical, - languages, - media, - types - }; -}; -const robotsKeys = [ - 'noarchive', - 'nosnippet', - 'noimageindex', - 'nocache', - 'notranslate', - 'indexifembedded', - 'nositelinkssearchbox', - 'unavailable_after', - 'max-video-preview', - 'max-image-preview', - 'max-snippet' -]; -const resolveRobotsValue = (robots)=>{ - if (!robots) return null; - if (typeof robots === 'string') return robots; - const values = []; - if (robots.index) values.push('index'); - else if (typeof robots.index === 'boolean') values.push('noindex'); - if (robots.follow) values.push('follow'); - else if (typeof robots.follow === 'boolean') values.push('nofollow'); - for (const key of robotsKeys){ - const value = robots[key]; - if (typeof value !== 'undefined' && value !== false) { - values.push(typeof value === 'boolean' ? key : `${key}:${value}`); - } - } - return values.join(', '); -}; -const resolveRobots = (robots)=>{ - if (!robots) return null; - return { - basic: resolveRobotsValue(robots), - googleBot: typeof robots !== 'string' ? resolveRobotsValue(robots.googleBot) : null - }; -}; -const VerificationKeys = [ - 'google', - 'yahoo', - 'yandex', - 'me', - 'other' -]; -const resolveVerification = (verification)=>{ - if (!verification) return null; - const res = {}; - for (const key of VerificationKeys){ - const value = verification[key]; - if (value) { - if (key === 'other') { - res.other = {}; - for(const otherKey in verification.other){ - const otherValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(verification.other[otherKey]); - if (otherValue) res.other[otherKey] = otherValue; - } - } else res[key] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(value); - } - } - return res; -}; -const resolveAppleWebApp = (appWebApp)=>{ - var _resolveAsArrayOrUndefined; - if (!appWebApp) return null; - if (appWebApp === true) { - return { - capable: true - }; - } - const startupImages = appWebApp.startupImage ? (_resolveAsArrayOrUndefined = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(appWebApp.startupImage)) == null ? void 0 : _resolveAsArrayOrUndefined.map((item)=>typeof item === 'string' ? { - url: item - } : item) : null; - return { - capable: 'capable' in appWebApp ? !!appWebApp.capable : true, - title: appWebApp.title || null, - startupImage: startupImages, - statusBarStyle: appWebApp.statusBarStyle || 'default' - }; -}; -const resolveAppLinks = (appLinks)=>{ - if (!appLinks) return null; - for(const key in appLinks){ - // @ts-ignore // TODO: type infer - appLinks[key] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(appLinks[key]); - } - return appLinks; -}; -const resolveItunes = async (itunes, metadataBase, pathname, context)=>{ - if (!itunes) return null; - return { - appId: itunes.appId, - appArgument: itunes.appArgument ? resolveAlternateUrl(itunes.appArgument, metadataBase, await pathname, context) : undefined - }; -}; -const resolveFacebook = (facebook)=>{ - if (!facebook) return null; - return { - appId: facebook.appId, - admins: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(facebook.admins) - }; -}; -const resolvePagination = async (pagination, metadataBase, pathname, context)=>{ - return { - previous: (pagination == null ? void 0 : pagination.previous) ? resolveAlternateUrl(pagination.previous, metadataBase, await pathname, context) : null, - next: (pagination == null ? void 0 : pagination.next) ? resolveAlternateUrl(pagination.next, metadataBase, await pathname, context) : null - }; -}; //# sourceMappingURL=resolve-basics.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-icons.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveIcon", - ()=>resolveIcon, - "resolveIcons", - ()=>resolveIcons -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/constants.js [app-rsc] (ecmascript)"); -; -; -; -function resolveIcon(icon) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isStringOrURL"])(icon)) return { - url: icon - }; - else if (Array.isArray(icon)) return icon; - return icon; -} -const resolveIcons = (icons)=>{ - if (!icons) { - return null; - } - const resolved = { - icon: [], - apple: [] - }; - if (Array.isArray(icons)) { - resolved.icon = icons.map(resolveIcon).filter(Boolean); - } else if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isStringOrURL"])(icons)) { - resolved.icon = [ - resolveIcon(icons) - ]; - } else { - for (const key of __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IconKeys"]){ - const values = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(icons[key]); - if (values) resolved[key] = values.map(resolveIcon); - } - } - return resolved; -}; //# sourceMappingURL=resolve-icons.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "AppRenderSpan", - ()=>AppRenderSpan, - "AppRouteRouteHandlersSpan", - ()=>AppRouteRouteHandlersSpan, - "BaseServerSpan", - ()=>BaseServerSpan, - "LoadComponentsSpan", - ()=>LoadComponentsSpan, - "LogSpanAllowList", - ()=>LogSpanAllowList, - "MiddlewareSpan", - ()=>MiddlewareSpan, - "NextNodeServerSpan", - ()=>NextNodeServerSpan, - "NextServerSpan", - ()=>NextServerSpan, - "NextVanillaSpanAllowlist", - ()=>NextVanillaSpanAllowlist, - "NodeSpan", - ()=>NodeSpan, - "RenderSpan", - ()=>RenderSpan, - "ResolveMetadataSpan", - ()=>ResolveMetadataSpan, - "RouterSpan", - ()=>RouterSpan, - "StartServerSpan", - ()=>StartServerSpan -]); -/** - * Contains predefined constants for the trace span name in next/server. - * - * Currently, next/server/tracer is internal implementation only for tracking - * next.js's implementation only with known span names defined here. - **/ // eslint typescript has a bug with TS enums -var BaseServerSpan = /*#__PURE__*/ function(BaseServerSpan) { - BaseServerSpan["handleRequest"] = "BaseServer.handleRequest"; - BaseServerSpan["run"] = "BaseServer.run"; - BaseServerSpan["pipe"] = "BaseServer.pipe"; - BaseServerSpan["getStaticHTML"] = "BaseServer.getStaticHTML"; - BaseServerSpan["render"] = "BaseServer.render"; - BaseServerSpan["renderToResponseWithComponents"] = "BaseServer.renderToResponseWithComponents"; - BaseServerSpan["renderToResponse"] = "BaseServer.renderToResponse"; - BaseServerSpan["renderToHTML"] = "BaseServer.renderToHTML"; - BaseServerSpan["renderError"] = "BaseServer.renderError"; - BaseServerSpan["renderErrorToResponse"] = "BaseServer.renderErrorToResponse"; - BaseServerSpan["renderErrorToHTML"] = "BaseServer.renderErrorToHTML"; - BaseServerSpan["render404"] = "BaseServer.render404"; - return BaseServerSpan; -}(BaseServerSpan || {}); -var LoadComponentsSpan = /*#__PURE__*/ function(LoadComponentsSpan) { - LoadComponentsSpan["loadDefaultErrorComponents"] = "LoadComponents.loadDefaultErrorComponents"; - LoadComponentsSpan["loadComponents"] = "LoadComponents.loadComponents"; - return LoadComponentsSpan; -}(LoadComponentsSpan || {}); -var NextServerSpan = /*#__PURE__*/ function(NextServerSpan) { - NextServerSpan["getRequestHandler"] = "NextServer.getRequestHandler"; - NextServerSpan["getRequestHandlerWithMetadata"] = "NextServer.getRequestHandlerWithMetadata"; - NextServerSpan["getServer"] = "NextServer.getServer"; - NextServerSpan["getServerRequestHandler"] = "NextServer.getServerRequestHandler"; - NextServerSpan["createServer"] = "createServer.createServer"; - return NextServerSpan; -}(NextServerSpan || {}); -var NextNodeServerSpan = /*#__PURE__*/ function(NextNodeServerSpan) { - NextNodeServerSpan["compression"] = "NextNodeServer.compression"; - NextNodeServerSpan["getBuildId"] = "NextNodeServer.getBuildId"; - NextNodeServerSpan["createComponentTree"] = "NextNodeServer.createComponentTree"; - NextNodeServerSpan["clientComponentLoading"] = "NextNodeServer.clientComponentLoading"; - NextNodeServerSpan["getLayoutOrPageModule"] = "NextNodeServer.getLayoutOrPageModule"; - NextNodeServerSpan["generateStaticRoutes"] = "NextNodeServer.generateStaticRoutes"; - NextNodeServerSpan["generateFsStaticRoutes"] = "NextNodeServer.generateFsStaticRoutes"; - NextNodeServerSpan["generatePublicRoutes"] = "NextNodeServer.generatePublicRoutes"; - NextNodeServerSpan["generateImageRoutes"] = "NextNodeServer.generateImageRoutes.route"; - NextNodeServerSpan["sendRenderResult"] = "NextNodeServer.sendRenderResult"; - NextNodeServerSpan["proxyRequest"] = "NextNodeServer.proxyRequest"; - NextNodeServerSpan["runApi"] = "NextNodeServer.runApi"; - NextNodeServerSpan["render"] = "NextNodeServer.render"; - NextNodeServerSpan["renderHTML"] = "NextNodeServer.renderHTML"; - NextNodeServerSpan["imageOptimizer"] = "NextNodeServer.imageOptimizer"; - NextNodeServerSpan["getPagePath"] = "NextNodeServer.getPagePath"; - NextNodeServerSpan["getRoutesManifest"] = "NextNodeServer.getRoutesManifest"; - NextNodeServerSpan["findPageComponents"] = "NextNodeServer.findPageComponents"; - NextNodeServerSpan["getFontManifest"] = "NextNodeServer.getFontManifest"; - NextNodeServerSpan["getServerComponentManifest"] = "NextNodeServer.getServerComponentManifest"; - NextNodeServerSpan["getRequestHandler"] = "NextNodeServer.getRequestHandler"; - NextNodeServerSpan["renderToHTML"] = "NextNodeServer.renderToHTML"; - NextNodeServerSpan["renderError"] = "NextNodeServer.renderError"; - NextNodeServerSpan["renderErrorToHTML"] = "NextNodeServer.renderErrorToHTML"; - NextNodeServerSpan["render404"] = "NextNodeServer.render404"; - NextNodeServerSpan["startResponse"] = "NextNodeServer.startResponse"; - // nested inner span, does not require parent scope name - NextNodeServerSpan["route"] = "route"; - NextNodeServerSpan["onProxyReq"] = "onProxyReq"; - NextNodeServerSpan["apiResolver"] = "apiResolver"; - NextNodeServerSpan["internalFetch"] = "internalFetch"; - return NextNodeServerSpan; -}(NextNodeServerSpan || {}); -var StartServerSpan = /*#__PURE__*/ function(StartServerSpan) { - StartServerSpan["startServer"] = "startServer.startServer"; - return StartServerSpan; -}(StartServerSpan || {}); -var RenderSpan = /*#__PURE__*/ function(RenderSpan) { - RenderSpan["getServerSideProps"] = "Render.getServerSideProps"; - RenderSpan["getStaticProps"] = "Render.getStaticProps"; - RenderSpan["renderToString"] = "Render.renderToString"; - RenderSpan["renderDocument"] = "Render.renderDocument"; - RenderSpan["createBodyResult"] = "Render.createBodyResult"; - return RenderSpan; -}(RenderSpan || {}); -var AppRenderSpan = /*#__PURE__*/ function(AppRenderSpan) { - AppRenderSpan["renderToString"] = "AppRender.renderToString"; - AppRenderSpan["renderToReadableStream"] = "AppRender.renderToReadableStream"; - AppRenderSpan["getBodyResult"] = "AppRender.getBodyResult"; - AppRenderSpan["fetch"] = "AppRender.fetch"; - return AppRenderSpan; -}(AppRenderSpan || {}); -var RouterSpan = /*#__PURE__*/ function(RouterSpan) { - RouterSpan["executeRoute"] = "Router.executeRoute"; - return RouterSpan; -}(RouterSpan || {}); -var NodeSpan = /*#__PURE__*/ function(NodeSpan) { - NodeSpan["runHandler"] = "Node.runHandler"; - return NodeSpan; -}(NodeSpan || {}); -var AppRouteRouteHandlersSpan = /*#__PURE__*/ function(AppRouteRouteHandlersSpan) { - AppRouteRouteHandlersSpan["runHandler"] = "AppRouteRouteHandlers.runHandler"; - return AppRouteRouteHandlersSpan; -}(AppRouteRouteHandlersSpan || {}); -var ResolveMetadataSpan = /*#__PURE__*/ function(ResolveMetadataSpan) { - ResolveMetadataSpan["generateMetadata"] = "ResolveMetadata.generateMetadata"; - ResolveMetadataSpan["generateViewport"] = "ResolveMetadata.generateViewport"; - return ResolveMetadataSpan; -}(ResolveMetadataSpan || {}); -var MiddlewareSpan = /*#__PURE__*/ function(MiddlewareSpan) { - MiddlewareSpan["execute"] = "Middleware.execute"; - return MiddlewareSpan; -}(MiddlewareSpan || {}); -const NextVanillaSpanAllowlist = new Set([ - "Middleware.execute", - "BaseServer.handleRequest", - "Render.getServerSideProps", - "Render.getStaticProps", - "AppRender.fetch", - "AppRender.getBodyResult", - "Render.renderDocument", - "Node.runHandler", - "AppRouteRouteHandlers.runHandler", - "ResolveMetadata.generateMetadata", - "ResolveMetadata.generateViewport", - "NextNodeServer.createComponentTree", - "NextNodeServer.findPageComponents", - "NextNodeServer.getLayoutOrPageModule", - "NextNodeServer.startResponse", - "NextNodeServer.clientComponentLoading" -]); -const LogSpanAllowList = new Set([ - "NextNodeServer.findPageComponents", - "NextNodeServer.createComponentTree", - "NextNodeServer.clientComponentLoading" -]); -; - //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/is-thenable.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Check to see if a value is Thenable. - * - * @param promise the maybe-thenable value - * @returns true if the value is thenable - */ __turbopack_context__.s([ - "isThenable", - ()=>isThenable -]); -function isThenable(promise) { - return promise !== null && typeof promise === 'object' && 'then' in promise && typeof promise.then === 'function'; -} //# sourceMappingURL=is-thenable.js.map -}), -"[project]/node_modules/next/dist/compiled/@opentelemetry/api/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 491: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ContextAPI = void 0; - const n = r(223); - const a = r(172); - const o = r(930); - const i = "context"; - const c = new n.NoopContextManager; - class ContextAPI { - constructor(){} - static getInstance() { - if (!this._instance) { - this._instance = new ContextAPI; - } - return this._instance; - } - setGlobalContextManager(e) { - return (0, a.registerGlobal)(i, e, o.DiagAPI.instance()); - } - active() { - return this._getContextManager().active(); - } - with(e, t, r, ...n) { - return this._getContextManager().with(e, t, r, ...n); - } - bind(e, t) { - return this._getContextManager().bind(e, t); - } - _getContextManager() { - return (0, a.getGlobal)(i) || c; - } - disable() { - this._getContextManager().disable(); - (0, a.unregisterGlobal)(i, o.DiagAPI.instance()); - } - } - t.ContextAPI = ContextAPI; - }, - 930: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.DiagAPI = void 0; - const n = r(56); - const a = r(912); - const o = r(957); - const i = r(172); - const c = "diag"; - class DiagAPI { - constructor(){ - function _logProxy(e) { - return function(...t) { - const r = (0, i.getGlobal)("diag"); - if (!r) return; - return r[e](...t); - }; - } - const e = this; - const setLogger = (t, r = { - logLevel: o.DiagLogLevel.INFO - })=>{ - var n, c, s; - if (t === e) { - const t = new Error("Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation"); - e.error((n = t.stack) !== null && n !== void 0 ? n : t.message); - return false; - } - if (typeof r === "number") { - r = { - logLevel: r - }; - } - const u = (0, i.getGlobal)("diag"); - const l = (0, a.createLogLevelDiagLogger)((c = r.logLevel) !== null && c !== void 0 ? c : o.DiagLogLevel.INFO, t); - if (u && !r.suppressOverrideMessage) { - const e = (s = (new Error).stack) !== null && s !== void 0 ? s : "<failed to generate stacktrace>"; - u.warn(`Current logger will be overwritten from ${e}`); - l.warn(`Current logger will overwrite one already registered from ${e}`); - } - return (0, i.registerGlobal)("diag", l, e, true); - }; - e.setLogger = setLogger; - e.disable = ()=>{ - (0, i.unregisterGlobal)(c, e); - }; - e.createComponentLogger = (e)=>new n.DiagComponentLogger(e); - e.verbose = _logProxy("verbose"); - e.debug = _logProxy("debug"); - e.info = _logProxy("info"); - e.warn = _logProxy("warn"); - e.error = _logProxy("error"); - } - static instance() { - if (!this._instance) { - this._instance = new DiagAPI; - } - return this._instance; - } - } - t.DiagAPI = DiagAPI; - }, - 653: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.MetricsAPI = void 0; - const n = r(660); - const a = r(172); - const o = r(930); - const i = "metrics"; - class MetricsAPI { - constructor(){} - static getInstance() { - if (!this._instance) { - this._instance = new MetricsAPI; - } - return this._instance; - } - setGlobalMeterProvider(e) { - return (0, a.registerGlobal)(i, e, o.DiagAPI.instance()); - } - getMeterProvider() { - return (0, a.getGlobal)(i) || n.NOOP_METER_PROVIDER; - } - getMeter(e, t, r) { - return this.getMeterProvider().getMeter(e, t, r); - } - disable() { - (0, a.unregisterGlobal)(i, o.DiagAPI.instance()); - } - } - t.MetricsAPI = MetricsAPI; - }, - 181: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.PropagationAPI = void 0; - const n = r(172); - const a = r(874); - const o = r(194); - const i = r(277); - const c = r(369); - const s = r(930); - const u = "propagation"; - const l = new a.NoopTextMapPropagator; - class PropagationAPI { - constructor(){ - this.createBaggage = c.createBaggage; - this.getBaggage = i.getBaggage; - this.getActiveBaggage = i.getActiveBaggage; - this.setBaggage = i.setBaggage; - this.deleteBaggage = i.deleteBaggage; - } - static getInstance() { - if (!this._instance) { - this._instance = new PropagationAPI; - } - return this._instance; - } - setGlobalPropagator(e) { - return (0, n.registerGlobal)(u, e, s.DiagAPI.instance()); - } - inject(e, t, r = o.defaultTextMapSetter) { - return this._getGlobalPropagator().inject(e, t, r); - } - extract(e, t, r = o.defaultTextMapGetter) { - return this._getGlobalPropagator().extract(e, t, r); - } - fields() { - return this._getGlobalPropagator().fields(); - } - disable() { - (0, n.unregisterGlobal)(u, s.DiagAPI.instance()); - } - _getGlobalPropagator() { - return (0, n.getGlobal)(u) || l; - } - } - t.PropagationAPI = PropagationAPI; - }, - 997: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.TraceAPI = void 0; - const n = r(172); - const a = r(846); - const o = r(139); - const i = r(607); - const c = r(930); - const s = "trace"; - class TraceAPI { - constructor(){ - this._proxyTracerProvider = new a.ProxyTracerProvider; - this.wrapSpanContext = o.wrapSpanContext; - this.isSpanContextValid = o.isSpanContextValid; - this.deleteSpan = i.deleteSpan; - this.getSpan = i.getSpan; - this.getActiveSpan = i.getActiveSpan; - this.getSpanContext = i.getSpanContext; - this.setSpan = i.setSpan; - this.setSpanContext = i.setSpanContext; - } - static getInstance() { - if (!this._instance) { - this._instance = new TraceAPI; - } - return this._instance; - } - setGlobalTracerProvider(e) { - const t = (0, n.registerGlobal)(s, this._proxyTracerProvider, c.DiagAPI.instance()); - if (t) { - this._proxyTracerProvider.setDelegate(e); - } - return t; - } - getTracerProvider() { - return (0, n.getGlobal)(s) || this._proxyTracerProvider; - } - getTracer(e, t) { - return this.getTracerProvider().getTracer(e, t); - } - disable() { - (0, n.unregisterGlobal)(s, c.DiagAPI.instance()); - this._proxyTracerProvider = new a.ProxyTracerProvider; - } - } - t.TraceAPI = TraceAPI; - }, - 277: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.deleteBaggage = t.setBaggage = t.getActiveBaggage = t.getBaggage = void 0; - const n = r(491); - const a = r(780); - const o = (0, a.createContextKey)("OpenTelemetry Baggage Key"); - function getBaggage(e) { - return e.getValue(o) || undefined; - } - t.getBaggage = getBaggage; - function getActiveBaggage() { - return getBaggage(n.ContextAPI.getInstance().active()); - } - t.getActiveBaggage = getActiveBaggage; - function setBaggage(e, t) { - return e.setValue(o, t); - } - t.setBaggage = setBaggage; - function deleteBaggage(e) { - return e.deleteValue(o); - } - t.deleteBaggage = deleteBaggage; - }, - 993: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.BaggageImpl = void 0; - class BaggageImpl { - constructor(e){ - this._entries = e ? new Map(e) : new Map; - } - getEntry(e) { - const t = this._entries.get(e); - if (!t) { - return undefined; - } - return Object.assign({}, t); - } - getAllEntries() { - return Array.from(this._entries.entries()).map(([e, t])=>[ - e, - t - ]); - } - setEntry(e, t) { - const r = new BaggageImpl(this._entries); - r._entries.set(e, t); - return r; - } - removeEntry(e) { - const t = new BaggageImpl(this._entries); - t._entries.delete(e); - return t; - } - removeEntries(...e) { - const t = new BaggageImpl(this._entries); - for (const r of e){ - t._entries.delete(r); - } - return t; - } - clear() { - return new BaggageImpl; - } - } - t.BaggageImpl = BaggageImpl; - }, - 830: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.baggageEntryMetadataSymbol = void 0; - t.baggageEntryMetadataSymbol = Symbol("BaggageEntryMetadata"); - }, - 369: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.baggageEntryMetadataFromString = t.createBaggage = void 0; - const n = r(930); - const a = r(993); - const o = r(830); - const i = n.DiagAPI.instance(); - function createBaggage(e = {}) { - return new a.BaggageImpl(new Map(Object.entries(e))); - } - t.createBaggage = createBaggage; - function baggageEntryMetadataFromString(e) { - if (typeof e !== "string") { - i.error(`Cannot create baggage metadata from unknown type: ${typeof e}`); - e = ""; - } - return { - __TYPE__: o.baggageEntryMetadataSymbol, - toString () { - return e; - } - }; - } - t.baggageEntryMetadataFromString = baggageEntryMetadataFromString; - }, - 67: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.context = void 0; - const n = r(491); - t.context = n.ContextAPI.getInstance(); - }, - 223: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NoopContextManager = void 0; - const n = r(780); - class NoopContextManager { - active() { - return n.ROOT_CONTEXT; - } - with(e, t, r, ...n) { - return t.call(r, ...n); - } - bind(e, t) { - return t; - } - enable() { - return this; - } - disable() { - return this; - } - } - t.NoopContextManager = NoopContextManager; - }, - 780: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ROOT_CONTEXT = t.createContextKey = void 0; - function createContextKey(e) { - return Symbol.for(e); - } - t.createContextKey = createContextKey; - class BaseContext { - constructor(e){ - const t = this; - t._currentContext = e ? new Map(e) : new Map; - t.getValue = (e)=>t._currentContext.get(e); - t.setValue = (e, r)=>{ - const n = new BaseContext(t._currentContext); - n._currentContext.set(e, r); - return n; - }; - t.deleteValue = (e)=>{ - const r = new BaseContext(t._currentContext); - r._currentContext.delete(e); - return r; - }; - } - } - t.ROOT_CONTEXT = new BaseContext; - }, - 506: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.diag = void 0; - const n = r(930); - t.diag = n.DiagAPI.instance(); - }, - 56: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.DiagComponentLogger = void 0; - const n = r(172); - class DiagComponentLogger { - constructor(e){ - this._namespace = e.namespace || "DiagComponentLogger"; - } - debug(...e) { - return logProxy("debug", this._namespace, e); - } - error(...e) { - return logProxy("error", this._namespace, e); - } - info(...e) { - return logProxy("info", this._namespace, e); - } - warn(...e) { - return logProxy("warn", this._namespace, e); - } - verbose(...e) { - return logProxy("verbose", this._namespace, e); - } - } - t.DiagComponentLogger = DiagComponentLogger; - function logProxy(e, t, r) { - const a = (0, n.getGlobal)("diag"); - if (!a) { - return; - } - r.unshift(t); - return a[e](...r); - } - }, - 972: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.DiagConsoleLogger = void 0; - const r = [ - { - n: "error", - c: "error" - }, - { - n: "warn", - c: "warn" - }, - { - n: "info", - c: "info" - }, - { - n: "debug", - c: "debug" - }, - { - n: "verbose", - c: "trace" - } - ]; - class DiagConsoleLogger { - constructor(){ - function _consoleFunc(e) { - return function(...t) { - if (console) { - let r = console[e]; - if (typeof r !== "function") { - r = console.log; - } - if (typeof r === "function") { - return r.apply(console, t); - } - } - }; - } - for(let e = 0; e < r.length; e++){ - this[r[e].n] = _consoleFunc(r[e].c); - } - } - } - t.DiagConsoleLogger = DiagConsoleLogger; - }, - 912: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.createLogLevelDiagLogger = void 0; - const n = r(957); - function createLogLevelDiagLogger(e, t) { - if (e < n.DiagLogLevel.NONE) { - e = n.DiagLogLevel.NONE; - } else if (e > n.DiagLogLevel.ALL) { - e = n.DiagLogLevel.ALL; - } - t = t || {}; - function _filterFunc(r, n) { - const a = t[r]; - if (typeof a === "function" && e >= n) { - return a.bind(t); - } - return function() {}; - } - return { - error: _filterFunc("error", n.DiagLogLevel.ERROR), - warn: _filterFunc("warn", n.DiagLogLevel.WARN), - info: _filterFunc("info", n.DiagLogLevel.INFO), - debug: _filterFunc("debug", n.DiagLogLevel.DEBUG), - verbose: _filterFunc("verbose", n.DiagLogLevel.VERBOSE) - }; - } - t.createLogLevelDiagLogger = createLogLevelDiagLogger; - }, - 957: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.DiagLogLevel = void 0; - var r; - (function(e) { - e[e["NONE"] = 0] = "NONE"; - e[e["ERROR"] = 30] = "ERROR"; - e[e["WARN"] = 50] = "WARN"; - e[e["INFO"] = 60] = "INFO"; - e[e["DEBUG"] = 70] = "DEBUG"; - e[e["VERBOSE"] = 80] = "VERBOSE"; - e[e["ALL"] = 9999] = "ALL"; - })(r = t.DiagLogLevel || (t.DiagLogLevel = {})); - }, - 172: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.unregisterGlobal = t.getGlobal = t.registerGlobal = void 0; - const n = r(200); - const a = r(521); - const o = r(130); - const i = a.VERSION.split(".")[0]; - const c = Symbol.for(`opentelemetry.js.api.${i}`); - const s = n._globalThis; - function registerGlobal(e, t, r, n = false) { - var o; - const i = s[c] = (o = s[c]) !== null && o !== void 0 ? o : { - version: a.VERSION - }; - if (!n && i[e]) { - const t = new Error(`@opentelemetry/api: Attempted duplicate registration of API: ${e}`); - r.error(t.stack || t.message); - return false; - } - if (i.version !== a.VERSION) { - const t = new Error(`@opentelemetry/api: Registration of version v${i.version} for ${e} does not match previously registered API v${a.VERSION}`); - r.error(t.stack || t.message); - return false; - } - i[e] = t; - r.debug(`@opentelemetry/api: Registered a global for ${e} v${a.VERSION}.`); - return true; - } - t.registerGlobal = registerGlobal; - function getGlobal(e) { - var t, r; - const n = (t = s[c]) === null || t === void 0 ? void 0 : t.version; - if (!n || !(0, o.isCompatible)(n)) { - return; - } - return (r = s[c]) === null || r === void 0 ? void 0 : r[e]; - } - t.getGlobal = getGlobal; - function unregisterGlobal(e, t) { - t.debug(`@opentelemetry/api: Unregistering a global for ${e} v${a.VERSION}.`); - const r = s[c]; - if (r) { - delete r[e]; - } - } - t.unregisterGlobal = unregisterGlobal; - }, - 130: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.isCompatible = t._makeCompatibilityCheck = void 0; - const n = r(521); - const a = /^(\d+)\.(\d+)\.(\d+)(-(.+))?$/; - function _makeCompatibilityCheck(e) { - const t = new Set([ - e - ]); - const r = new Set; - const n = e.match(a); - if (!n) { - return ()=>false; - } - const o = { - major: +n[1], - minor: +n[2], - patch: +n[3], - prerelease: n[4] - }; - if (o.prerelease != null) { - return function isExactmatch(t) { - return t === e; - }; - } - function _reject(e) { - r.add(e); - return false; - } - function _accept(e) { - t.add(e); - return true; - } - return function isCompatible(e) { - if (t.has(e)) { - return true; - } - if (r.has(e)) { - return false; - } - const n = e.match(a); - if (!n) { - return _reject(e); - } - const i = { - major: +n[1], - minor: +n[2], - patch: +n[3], - prerelease: n[4] - }; - if (i.prerelease != null) { - return _reject(e); - } - if (o.major !== i.major) { - return _reject(e); - } - if (o.major === 0) { - if (o.minor === i.minor && o.patch <= i.patch) { - return _accept(e); - } - return _reject(e); - } - if (o.minor <= i.minor) { - return _accept(e); - } - return _reject(e); - }; - } - t._makeCompatibilityCheck = _makeCompatibilityCheck; - t.isCompatible = _makeCompatibilityCheck(n.VERSION); - }, - 886: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.metrics = void 0; - const n = r(653); - t.metrics = n.MetricsAPI.getInstance(); - }, - 901: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ValueType = void 0; - var r; - (function(e) { - e[e["INT"] = 0] = "INT"; - e[e["DOUBLE"] = 1] = "DOUBLE"; - })(r = t.ValueType || (t.ValueType = {})); - }, - 102: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.createNoopMeter = t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC = t.NOOP_OBSERVABLE_GAUGE_METRIC = t.NOOP_OBSERVABLE_COUNTER_METRIC = t.NOOP_UP_DOWN_COUNTER_METRIC = t.NOOP_HISTOGRAM_METRIC = t.NOOP_COUNTER_METRIC = t.NOOP_METER = t.NoopObservableUpDownCounterMetric = t.NoopObservableGaugeMetric = t.NoopObservableCounterMetric = t.NoopObservableMetric = t.NoopHistogramMetric = t.NoopUpDownCounterMetric = t.NoopCounterMetric = t.NoopMetric = t.NoopMeter = void 0; - class NoopMeter { - constructor(){} - createHistogram(e, r) { - return t.NOOP_HISTOGRAM_METRIC; - } - createCounter(e, r) { - return t.NOOP_COUNTER_METRIC; - } - createUpDownCounter(e, r) { - return t.NOOP_UP_DOWN_COUNTER_METRIC; - } - createObservableGauge(e, r) { - return t.NOOP_OBSERVABLE_GAUGE_METRIC; - } - createObservableCounter(e, r) { - return t.NOOP_OBSERVABLE_COUNTER_METRIC; - } - createObservableUpDownCounter(e, r) { - return t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC; - } - addBatchObservableCallback(e, t) {} - removeBatchObservableCallback(e) {} - } - t.NoopMeter = NoopMeter; - class NoopMetric { - } - t.NoopMetric = NoopMetric; - class NoopCounterMetric extends NoopMetric { - add(e, t) {} - } - t.NoopCounterMetric = NoopCounterMetric; - class NoopUpDownCounterMetric extends NoopMetric { - add(e, t) {} - } - t.NoopUpDownCounterMetric = NoopUpDownCounterMetric; - class NoopHistogramMetric extends NoopMetric { - record(e, t) {} - } - t.NoopHistogramMetric = NoopHistogramMetric; - class NoopObservableMetric { - addCallback(e) {} - removeCallback(e) {} - } - t.NoopObservableMetric = NoopObservableMetric; - class NoopObservableCounterMetric extends NoopObservableMetric { - } - t.NoopObservableCounterMetric = NoopObservableCounterMetric; - class NoopObservableGaugeMetric extends NoopObservableMetric { - } - t.NoopObservableGaugeMetric = NoopObservableGaugeMetric; - class NoopObservableUpDownCounterMetric extends NoopObservableMetric { - } - t.NoopObservableUpDownCounterMetric = NoopObservableUpDownCounterMetric; - t.NOOP_METER = new NoopMeter; - t.NOOP_COUNTER_METRIC = new NoopCounterMetric; - t.NOOP_HISTOGRAM_METRIC = new NoopHistogramMetric; - t.NOOP_UP_DOWN_COUNTER_METRIC = new NoopUpDownCounterMetric; - t.NOOP_OBSERVABLE_COUNTER_METRIC = new NoopObservableCounterMetric; - t.NOOP_OBSERVABLE_GAUGE_METRIC = new NoopObservableGaugeMetric; - t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC = new NoopObservableUpDownCounterMetric; - function createNoopMeter() { - return t.NOOP_METER; - } - t.createNoopMeter = createNoopMeter; - }, - 660: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NOOP_METER_PROVIDER = t.NoopMeterProvider = void 0; - const n = r(102); - class NoopMeterProvider { - getMeter(e, t, r) { - return n.NOOP_METER; - } - } - t.NoopMeterProvider = NoopMeterProvider; - t.NOOP_METER_PROVIDER = new NoopMeterProvider; - }, - 200: function(e, t, r) { - var n = this && this.__createBinding || (Object.create ? function(e, t, r, n) { - if (n === undefined) n = r; - Object.defineProperty(e, n, { - enumerable: true, - get: function() { - return t[r]; - } - }); - } : function(e, t, r, n) { - if (n === undefined) n = r; - e[n] = t[r]; - }); - var a = this && this.__exportStar || function(e, t) { - for(var r in e)if (r !== "default" && !Object.prototype.hasOwnProperty.call(t, r)) n(t, e, r); - }; - Object.defineProperty(t, "__esModule", { - value: true - }); - a(r(46), t); - }, - 651: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t._globalThis = void 0; - t._globalThis = typeof globalThis === "object" ? globalThis : /*TURBOPACK member replacement*/ __turbopack_context__.g; - }, - 46: function(e, t, r) { - var n = this && this.__createBinding || (Object.create ? function(e, t, r, n) { - if (n === undefined) n = r; - Object.defineProperty(e, n, { - enumerable: true, - get: function() { - return t[r]; - } - }); - } : function(e, t, r, n) { - if (n === undefined) n = r; - e[n] = t[r]; - }); - var a = this && this.__exportStar || function(e, t) { - for(var r in e)if (r !== "default" && !Object.prototype.hasOwnProperty.call(t, r)) n(t, e, r); - }; - Object.defineProperty(t, "__esModule", { - value: true - }); - a(r(651), t); - }, - 939: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.propagation = void 0; - const n = r(181); - t.propagation = n.PropagationAPI.getInstance(); - }, - 874: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NoopTextMapPropagator = void 0; - class NoopTextMapPropagator { - inject(e, t) {} - extract(e, t) { - return e; - } - fields() { - return []; - } - } - t.NoopTextMapPropagator = NoopTextMapPropagator; - }, - 194: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.defaultTextMapSetter = t.defaultTextMapGetter = void 0; - t.defaultTextMapGetter = { - get (e, t) { - if (e == null) { - return undefined; - } - return e[t]; - }, - keys (e) { - if (e == null) { - return []; - } - return Object.keys(e); - } - }; - t.defaultTextMapSetter = { - set (e, t, r) { - if (e == null) { - return; - } - e[t] = r; - } - }; - }, - 845: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.trace = void 0; - const n = r(997); - t.trace = n.TraceAPI.getInstance(); - }, - 403: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NonRecordingSpan = void 0; - const n = r(476); - class NonRecordingSpan { - constructor(e = n.INVALID_SPAN_CONTEXT){ - this._spanContext = e; - } - spanContext() { - return this._spanContext; - } - setAttribute(e, t) { - return this; - } - setAttributes(e) { - return this; - } - addEvent(e, t) { - return this; - } - setStatus(e) { - return this; - } - updateName(e) { - return this; - } - end(e) {} - isRecording() { - return false; - } - recordException(e, t) {} - } - t.NonRecordingSpan = NonRecordingSpan; - }, - 614: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NoopTracer = void 0; - const n = r(491); - const a = r(607); - const o = r(403); - const i = r(139); - const c = n.ContextAPI.getInstance(); - class NoopTracer { - startSpan(e, t, r = c.active()) { - const n = Boolean(t === null || t === void 0 ? void 0 : t.root); - if (n) { - return new o.NonRecordingSpan; - } - const s = r && (0, a.getSpanContext)(r); - if (isSpanContext(s) && (0, i.isSpanContextValid)(s)) { - return new o.NonRecordingSpan(s); - } else { - return new o.NonRecordingSpan; - } - } - startActiveSpan(e, t, r, n) { - let o; - let i; - let s; - if (arguments.length < 2) { - return; - } else if (arguments.length === 2) { - s = t; - } else if (arguments.length === 3) { - o = t; - s = r; - } else { - o = t; - i = r; - s = n; - } - const u = i !== null && i !== void 0 ? i : c.active(); - const l = this.startSpan(e, o, u); - const g = (0, a.setSpan)(u, l); - return c.with(g, s, undefined, l); - } - } - t.NoopTracer = NoopTracer; - function isSpanContext(e) { - return typeof e === "object" && typeof e["spanId"] === "string" && typeof e["traceId"] === "string" && typeof e["traceFlags"] === "number"; - } - }, - 124: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NoopTracerProvider = void 0; - const n = r(614); - class NoopTracerProvider { - getTracer(e, t, r) { - return new n.NoopTracer; - } - } - t.NoopTracerProvider = NoopTracerProvider; - }, - 125: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ProxyTracer = void 0; - const n = r(614); - const a = new n.NoopTracer; - class ProxyTracer { - constructor(e, t, r, n){ - this._provider = e; - this.name = t; - this.version = r; - this.options = n; - } - startSpan(e, t, r) { - return this._getTracer().startSpan(e, t, r); - } - startActiveSpan(e, t, r, n) { - const a = this._getTracer(); - return Reflect.apply(a.startActiveSpan, a, arguments); - } - _getTracer() { - if (this._delegate) { - return this._delegate; - } - const e = this._provider.getDelegateTracer(this.name, this.version, this.options); - if (!e) { - return a; - } - this._delegate = e; - return this._delegate; - } - } - t.ProxyTracer = ProxyTracer; - }, - 846: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ProxyTracerProvider = void 0; - const n = r(125); - const a = r(124); - const o = new a.NoopTracerProvider; - class ProxyTracerProvider { - getTracer(e, t, r) { - var a; - return (a = this.getDelegateTracer(e, t, r)) !== null && a !== void 0 ? a : new n.ProxyTracer(this, e, t, r); - } - getDelegate() { - var e; - return (e = this._delegate) !== null && e !== void 0 ? e : o; - } - setDelegate(e) { - this._delegate = e; - } - getDelegateTracer(e, t, r) { - var n; - return (n = this._delegate) === null || n === void 0 ? void 0 : n.getTracer(e, t, r); - } - } - t.ProxyTracerProvider = ProxyTracerProvider; - }, - 996: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.SamplingDecision = void 0; - var r; - (function(e) { - e[e["NOT_RECORD"] = 0] = "NOT_RECORD"; - e[e["RECORD"] = 1] = "RECORD"; - e[e["RECORD_AND_SAMPLED"] = 2] = "RECORD_AND_SAMPLED"; - })(r = t.SamplingDecision || (t.SamplingDecision = {})); - }, - 607: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.getSpanContext = t.setSpanContext = t.deleteSpan = t.setSpan = t.getActiveSpan = t.getSpan = void 0; - const n = r(780); - const a = r(403); - const o = r(491); - const i = (0, n.createContextKey)("OpenTelemetry Context Key SPAN"); - function getSpan(e) { - return e.getValue(i) || undefined; - } - t.getSpan = getSpan; - function getActiveSpan() { - return getSpan(o.ContextAPI.getInstance().active()); - } - t.getActiveSpan = getActiveSpan; - function setSpan(e, t) { - return e.setValue(i, t); - } - t.setSpan = setSpan; - function deleteSpan(e) { - return e.deleteValue(i); - } - t.deleteSpan = deleteSpan; - function setSpanContext(e, t) { - return setSpan(e, new a.NonRecordingSpan(t)); - } - t.setSpanContext = setSpanContext; - function getSpanContext(e) { - var t; - return (t = getSpan(e)) === null || t === void 0 ? void 0 : t.spanContext(); - } - t.getSpanContext = getSpanContext; - }, - 325: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.TraceStateImpl = void 0; - const n = r(564); - const a = 32; - const o = 512; - const i = ","; - const c = "="; - class TraceStateImpl { - constructor(e){ - this._internalState = new Map; - if (e) this._parse(e); - } - set(e, t) { - const r = this._clone(); - if (r._internalState.has(e)) { - r._internalState.delete(e); - } - r._internalState.set(e, t); - return r; - } - unset(e) { - const t = this._clone(); - t._internalState.delete(e); - return t; - } - get(e) { - return this._internalState.get(e); - } - serialize() { - return this._keys().reduce((e, t)=>{ - e.push(t + c + this.get(t)); - return e; - }, []).join(i); - } - _parse(e) { - if (e.length > o) return; - this._internalState = e.split(i).reverse().reduce((e, t)=>{ - const r = t.trim(); - const a = r.indexOf(c); - if (a !== -1) { - const o = r.slice(0, a); - const i = r.slice(a + 1, t.length); - if ((0, n.validateKey)(o) && (0, n.validateValue)(i)) { - e.set(o, i); - } else {} - } - return e; - }, new Map); - if (this._internalState.size > a) { - this._internalState = new Map(Array.from(this._internalState.entries()).reverse().slice(0, a)); - } - } - _keys() { - return Array.from(this._internalState.keys()).reverse(); - } - _clone() { - const e = new TraceStateImpl; - e._internalState = new Map(this._internalState); - return e; - } - } - t.TraceStateImpl = TraceStateImpl; - }, - 564: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.validateValue = t.validateKey = void 0; - const r = "[_0-9a-z-*/]"; - const n = `[a-z]${r}{0,255}`; - const a = `[a-z0-9]${r}{0,240}@[a-z]${r}{0,13}`; - const o = new RegExp(`^(?:${n}|${a})$`); - const i = /^[ -~]{0,255}[!-~]$/; - const c = /,|=/; - function validateKey(e) { - return o.test(e); - } - t.validateKey = validateKey; - function validateValue(e) { - return i.test(e) && !c.test(e); - } - t.validateValue = validateValue; - }, - 98: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.createTraceState = void 0; - const n = r(325); - function createTraceState(e) { - return new n.TraceStateImpl(e); - } - t.createTraceState = createTraceState; - }, - 476: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.INVALID_SPAN_CONTEXT = t.INVALID_TRACEID = t.INVALID_SPANID = void 0; - const n = r(475); - t.INVALID_SPANID = "0000000000000000"; - t.INVALID_TRACEID = "00000000000000000000000000000000"; - t.INVALID_SPAN_CONTEXT = { - traceId: t.INVALID_TRACEID, - spanId: t.INVALID_SPANID, - traceFlags: n.TraceFlags.NONE - }; - }, - 357: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.SpanKind = void 0; - var r; - (function(e) { - e[e["INTERNAL"] = 0] = "INTERNAL"; - e[e["SERVER"] = 1] = "SERVER"; - e[e["CLIENT"] = 2] = "CLIENT"; - e[e["PRODUCER"] = 3] = "PRODUCER"; - e[e["CONSUMER"] = 4] = "CONSUMER"; - })(r = t.SpanKind || (t.SpanKind = {})); - }, - 139: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.wrapSpanContext = t.isSpanContextValid = t.isValidSpanId = t.isValidTraceId = void 0; - const n = r(476); - const a = r(403); - const o = /^([0-9a-f]{32})$/i; - const i = /^[0-9a-f]{16}$/i; - function isValidTraceId(e) { - return o.test(e) && e !== n.INVALID_TRACEID; - } - t.isValidTraceId = isValidTraceId; - function isValidSpanId(e) { - return i.test(e) && e !== n.INVALID_SPANID; - } - t.isValidSpanId = isValidSpanId; - function isSpanContextValid(e) { - return isValidTraceId(e.traceId) && isValidSpanId(e.spanId); - } - t.isSpanContextValid = isSpanContextValid; - function wrapSpanContext(e) { - return new a.NonRecordingSpan(e); - } - t.wrapSpanContext = wrapSpanContext; - }, - 847: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.SpanStatusCode = void 0; - var r; - (function(e) { - e[e["UNSET"] = 0] = "UNSET"; - e[e["OK"] = 1] = "OK"; - e[e["ERROR"] = 2] = "ERROR"; - })(r = t.SpanStatusCode || (t.SpanStatusCode = {})); - }, - 475: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.TraceFlags = void 0; - var r; - (function(e) { - e[e["NONE"] = 0] = "NONE"; - e[e["SAMPLED"] = 1] = "SAMPLED"; - })(r = t.TraceFlags || (t.TraceFlags = {})); - }, - 521: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.VERSION = void 0; - t.VERSION = "1.6.0"; - } - }; - var t = {}; - function __nccwpck_require__(r) { - var n = t[r]; - if (n !== undefined) { - return n.exports; - } - var a = t[r] = { - exports: {} - }; - var o = true; - try { - e[r].call(a.exports, a, a.exports, __nccwpck_require__); - o = false; - } finally{ - if (o) delete t[r]; - } - return a.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/@opentelemetry/api") + "/"; - var r = {}; - (()=>{ - var e = r; - Object.defineProperty(e, "__esModule", { - value: true - }); - e.trace = e.propagation = e.metrics = e.diag = e.context = e.INVALID_SPAN_CONTEXT = e.INVALID_TRACEID = e.INVALID_SPANID = e.isValidSpanId = e.isValidTraceId = e.isSpanContextValid = e.createTraceState = e.TraceFlags = e.SpanStatusCode = e.SpanKind = e.SamplingDecision = e.ProxyTracerProvider = e.ProxyTracer = e.defaultTextMapSetter = e.defaultTextMapGetter = e.ValueType = e.createNoopMeter = e.DiagLogLevel = e.DiagConsoleLogger = e.ROOT_CONTEXT = e.createContextKey = e.baggageEntryMetadataFromString = void 0; - var t = __nccwpck_require__(369); - Object.defineProperty(e, "baggageEntryMetadataFromString", { - enumerable: true, - get: function() { - return t.baggageEntryMetadataFromString; - } - }); - var n = __nccwpck_require__(780); - Object.defineProperty(e, "createContextKey", { - enumerable: true, - get: function() { - return n.createContextKey; - } - }); - Object.defineProperty(e, "ROOT_CONTEXT", { - enumerable: true, - get: function() { - return n.ROOT_CONTEXT; - } - }); - var a = __nccwpck_require__(972); - Object.defineProperty(e, "DiagConsoleLogger", { - enumerable: true, - get: function() { - return a.DiagConsoleLogger; - } - }); - var o = __nccwpck_require__(957); - Object.defineProperty(e, "DiagLogLevel", { - enumerable: true, - get: function() { - return o.DiagLogLevel; - } - }); - var i = __nccwpck_require__(102); - Object.defineProperty(e, "createNoopMeter", { - enumerable: true, - get: function() { - return i.createNoopMeter; - } - }); - var c = __nccwpck_require__(901); - Object.defineProperty(e, "ValueType", { - enumerable: true, - get: function() { - return c.ValueType; - } - }); - var s = __nccwpck_require__(194); - Object.defineProperty(e, "defaultTextMapGetter", { - enumerable: true, - get: function() { - return s.defaultTextMapGetter; - } - }); - Object.defineProperty(e, "defaultTextMapSetter", { - enumerable: true, - get: function() { - return s.defaultTextMapSetter; - } - }); - var u = __nccwpck_require__(125); - Object.defineProperty(e, "ProxyTracer", { - enumerable: true, - get: function() { - return u.ProxyTracer; - } - }); - var l = __nccwpck_require__(846); - Object.defineProperty(e, "ProxyTracerProvider", { - enumerable: true, - get: function() { - return l.ProxyTracerProvider; - } - }); - var g = __nccwpck_require__(996); - Object.defineProperty(e, "SamplingDecision", { - enumerable: true, - get: function() { - return g.SamplingDecision; - } - }); - var p = __nccwpck_require__(357); - Object.defineProperty(e, "SpanKind", { - enumerable: true, - get: function() { - return p.SpanKind; - } - }); - var d = __nccwpck_require__(847); - Object.defineProperty(e, "SpanStatusCode", { - enumerable: true, - get: function() { - return d.SpanStatusCode; - } - }); - var _ = __nccwpck_require__(475); - Object.defineProperty(e, "TraceFlags", { - enumerable: true, - get: function() { - return _.TraceFlags; - } - }); - var f = __nccwpck_require__(98); - Object.defineProperty(e, "createTraceState", { - enumerable: true, - get: function() { - return f.createTraceState; - } - }); - var b = __nccwpck_require__(139); - Object.defineProperty(e, "isSpanContextValid", { - enumerable: true, - get: function() { - return b.isSpanContextValid; - } - }); - Object.defineProperty(e, "isValidTraceId", { - enumerable: true, - get: function() { - return b.isValidTraceId; - } - }); - Object.defineProperty(e, "isValidSpanId", { - enumerable: true, - get: function() { - return b.isValidSpanId; - } - }); - var v = __nccwpck_require__(476); - Object.defineProperty(e, "INVALID_SPANID", { - enumerable: true, - get: function() { - return v.INVALID_SPANID; - } - }); - Object.defineProperty(e, "INVALID_TRACEID", { - enumerable: true, - get: function() { - return v.INVALID_TRACEID; - } - }); - Object.defineProperty(e, "INVALID_SPAN_CONTEXT", { - enumerable: true, - get: function() { - return v.INVALID_SPAN_CONTEXT; - } - }); - const O = __nccwpck_require__(67); - Object.defineProperty(e, "context", { - enumerable: true, - get: function() { - return O.context; - } - }); - const P = __nccwpck_require__(506); - Object.defineProperty(e, "diag", { - enumerable: true, - get: function() { - return P.diag; - } - }); - const N = __nccwpck_require__(886); - Object.defineProperty(e, "metrics", { - enumerable: true, - get: function() { - return N.metrics; - } - }); - const S = __nccwpck_require__(939); - Object.defineProperty(e, "propagation", { - enumerable: true, - get: function() { - return S.propagation; - } - }); - const C = __nccwpck_require__(845); - Object.defineProperty(e, "trace", { - enumerable: true, - get: function() { - return C.trace; - } - }); - e["default"] = { - context: O.context, - diag: P.diag, - metrics: N.metrics, - propagation: S.propagation, - trace: C.trace - }; - })(); - module.exports = r; -})(); -}), -"[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "BubbledError", - ()=>BubbledError, - "SpanKind", - ()=>SpanKind, - "SpanStatusCode", - ()=>SpanStatusCode, - "getTracer", - ()=>getTracer, - "isBubbledError", - ()=>isBubbledError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/is-thenable.js [app-rsc] (ecmascript)"); -; -; -const NEXT_OTEL_PERFORMANCE_PREFIX = process.env.NEXT_OTEL_PERFORMANCE_PREFIX; -let api; -// we want to allow users to use their own version of @opentelemetry/api if they -// want to, so we try to require it first, and if it fails we fall back to the -// version that is bundled with Next.js -// this is because @opentelemetry/api has to be synced with the version of -// @opentelemetry/tracing that is used, and we don't want to force users to use -// the version that is bundled with Next.js. -// the API is ~stable, so this should be fine -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - try { - api = __turbopack_context__.r("[externals]/next/dist/compiled/@opentelemetry/api [external] (next/dist/compiled/@opentelemetry/api, cjs)"); - } catch (err) { - api = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/@opentelemetry/api/index.js [app-rsc] (ecmascript)"); - } -} -const { context, propagation, trace, SpanStatusCode, SpanKind, ROOT_CONTEXT } = api; -class BubbledError extends Error { - constructor(bubble, result){ - super(), this.bubble = bubble, this.result = result; - } -} -function isBubbledError(error) { - if (typeof error !== 'object' || error === null) return false; - return error instanceof BubbledError; -} -const closeSpanWithError = (span, error)=>{ - if (isBubbledError(error) && error.bubble) { - span.setAttribute('next.bubble', true); - } else { - if (error) { - span.recordException(error); - span.setAttribute('error.type', error.name); - } - span.setStatus({ - code: SpanStatusCode.ERROR, - message: error == null ? void 0 : error.message - }); - } - span.end(); -}; -/** we use this map to propagate attributes from nested spans to the top span */ const rootSpanAttributesStore = new Map(); -const rootSpanIdKey = api.createContextKey('next.rootSpanId'); -let lastSpanId = 0; -const getSpanId = ()=>lastSpanId++; -const clientTraceDataSetter = { - set (carrier, key, value) { - carrier.push({ - key, - value - }); - } -}; -class NextTracerImpl { - /** - * Returns an instance to the trace with configured name. - * Since wrap / trace can be defined in any place prior to actual trace subscriber initialization, - * This should be lazily evaluated. - */ getTracerInstance() { - return trace.getTracer('next.js', '0.0.1'); - } - getContext() { - return context; - } - getTracePropagationData() { - const activeContext = context.active(); - const entries = []; - propagation.inject(activeContext, entries, clientTraceDataSetter); - return entries; - } - getActiveScopeSpan() { - return trace.getSpan(context == null ? void 0 : context.active()); - } - withPropagatedContext(carrier, fn, getter) { - const activeContext = context.active(); - if (trace.getSpanContext(activeContext)) { - // Active span is already set, too late to propagate. - return fn(); - } - const remoteContext = propagation.extract(activeContext, carrier, getter); - return context.with(remoteContext, fn); - } - trace(...args) { - const [type, fnOrOptions, fnOrEmpty] = args; - // coerce options form overload - const { fn, options } = typeof fnOrOptions === 'function' ? { - fn: fnOrOptions, - options: {} - } : { - fn: fnOrEmpty, - options: { - ...fnOrOptions - } - }; - const spanName = options.spanName ?? type; - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextVanillaSpanAllowlist"].has(type) && process.env.NEXT_OTEL_VERBOSE !== '1' || options.hideSpan) { - return fn(); - } - // Trying to get active scoped span to assign parent. If option specifies parent span manually, will try to use it. - let spanContext = this.getSpanContext((options == null ? void 0 : options.parentSpan) ?? this.getActiveScopeSpan()); - if (!spanContext) { - spanContext = (context == null ? void 0 : context.active()) ?? ROOT_CONTEXT; - } - // Check if there's already a root span in the store for this trace - // We are intentionally not checking whether there is an active context - // from outside of nextjs to ensure that we can provide the same level - // of telemetry when using a custom server - const existingRootSpanId = spanContext.getValue(rootSpanIdKey); - const isRootSpan = typeof existingRootSpanId !== 'number' || !rootSpanAttributesStore.has(existingRootSpanId); - const spanId = getSpanId(); - options.attributes = { - 'next.span_name': spanName, - 'next.span_type': type, - ...options.attributes - }; - return context.with(spanContext.setValue(rootSpanIdKey, spanId), ()=>this.getTracerInstance().startActiveSpan(spanName, options, (span)=>{ - let startTime; - if (NEXT_OTEL_PERFORMANCE_PREFIX && type && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LogSpanAllowList"].has(type)) { - startTime = 'performance' in globalThis && 'measure' in performance ? globalThis.performance.now() : undefined; - } - let cleanedUp = false; - const onCleanup = ()=>{ - if (cleanedUp) return; - cleanedUp = true; - rootSpanAttributesStore.delete(spanId); - if (startTime) { - performance.measure(`${NEXT_OTEL_PERFORMANCE_PREFIX}:next-${(type.split('.').pop() || '').replace(/[A-Z]/g, (match)=>'-' + match.toLowerCase())}`, { - start: startTime, - end: performance.now() - }); - } - }; - if (isRootSpan) { - rootSpanAttributesStore.set(spanId, new Map(Object.entries(options.attributes ?? {}))); - } - if (fn.length > 1) { - try { - return fn(span, (err)=>closeSpanWithError(span, err)); - } catch (err) { - closeSpanWithError(span, err); - throw err; - } finally{ - onCleanup(); - } - } - try { - const result = fn(span); - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isThenable"])(result)) { - // If there's error make sure it throws - return result.then((res)=>{ - span.end(); - // Need to pass down the promise result, - // it could be react stream response with error { error, stream } - return res; - }).catch((err)=>{ - closeSpanWithError(span, err); - throw err; - }).finally(onCleanup); - } else { - span.end(); - onCleanup(); - } - return result; - } catch (err) { - closeSpanWithError(span, err); - onCleanup(); - throw err; - } - })); - } - wrap(...args) { - const tracer = this; - const [name, options, fn] = args.length === 3 ? args : [ - args[0], - {}, - args[1] - ]; - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextVanillaSpanAllowlist"].has(name) && process.env.NEXT_OTEL_VERBOSE !== '1') { - return fn; - } - return function() { - let optionsObj = options; - if (typeof optionsObj === 'function' && typeof fn === 'function') { - optionsObj = optionsObj.apply(this, arguments); - } - const lastArgId = arguments.length - 1; - const cb = arguments[lastArgId]; - if (typeof cb === 'function') { - const scopeBoundCb = tracer.getContext().bind(context.active(), cb); - return tracer.trace(name, optionsObj, (_span, done)=>{ - arguments[lastArgId] = function(err) { - done == null ? void 0 : done(err); - return scopeBoundCb.apply(this, arguments); - }; - return fn.apply(this, arguments); - }); - } else { - return tracer.trace(name, optionsObj, ()=>fn.apply(this, arguments)); - } - }; - } - startSpan(...args) { - const [type, options] = args; - const spanContext = this.getSpanContext((options == null ? void 0 : options.parentSpan) ?? this.getActiveScopeSpan()); - return this.getTracerInstance().startSpan(type, options, spanContext); - } - getSpanContext(parentSpan) { - const spanContext = parentSpan ? trace.setSpan(context.active(), parentSpan) : undefined; - return spanContext; - } - getRootSpanAttributes() { - const spanId = context.active().getValue(rootSpanIdKey); - return rootSpanAttributesStore.get(spanId); - } - setRootSpanAttribute(key, value) { - const spanId = context.active().getValue(rootSpanIdKey); - const attributes = rootSpanAttributesStore.get(spanId); - if (attributes && !attributes.has(key)) { - attributes.set(key, value); - } - } - withSpan(span, fn) { - const spanContext = trace.setSpan(context.active(), span); - return context.with(spanContext, fn); - } -} -const getTracer = (()=>{ - const tracer = new NextTracerImpl(); - return ()=>tracer; -})(); -; - //# sourceMappingURL=tracer.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/server-reference-info.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Extracts info about the server reference for the given server reference ID by - * parsing the first byte of the hex-encoded ID. - * - * ``` - * Bit positions: [7] [6] [5] [4] [3] [2] [1] [0] - * Bits: typeBit argMask restArgs - * ``` - * - * If the `typeBit` is `1` the server reference represents a `"use cache"` - * function, otherwise a server action. - * - * The `argMask` encodes whether the function uses the argument at the - * respective position. - * - * The `restArgs` bit indicates whether the function uses a rest parameter. It's - * also set to 1 if the function has more than 6 args. - * - * @param id hex-encoded server reference ID - */ __turbopack_context__.s([ - "extractInfoFromServerReferenceId", - ()=>extractInfoFromServerReferenceId, - "omitUnusedArgs", - ()=>omitUnusedArgs -]); -function extractInfoFromServerReferenceId(id) { - const infoByte = parseInt(id.slice(0, 2), 16); - const typeBit = infoByte >> 7 & 0x1; - const argMask = infoByte >> 1 & 0x3f; - const restArgs = infoByte & 0x1; - const usedArgs = Array(6); - for(let index = 0; index < 6; index++){ - const bitPosition = 5 - index; - const bit = argMask >> bitPosition & 0x1; - usedArgs[index] = bit === 1; - } - return { - type: typeBit === 1 ? 'use-cache' : 'server-action', - usedArgs: usedArgs, - hasRestArgs: restArgs === 1 - }; -} -function omitUnusedArgs(args, info) { - const filteredArgs = new Array(args.length); - for(let index = 0; index < args.length; index++){ - if (index < 6 && info.usedArgs[index] || // This assumes that the server reference info byte has the restArgs bit - // set to 1 if there are more than 6 args. - index >= 6 && info.hasRestArgs) { - filteredArgs[index] = args[index]; - } - } - return filteredArgs; -} //# sourceMappingURL=server-reference-info.js.map -}), -"[project]/node_modules/next/dist/esm/lib/client-and-server-references.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getUseCacheFunctionInfo", - ()=>getUseCacheFunctionInfo, - "isClientReference", - ()=>isClientReference, - "isServerReference", - ()=>isServerReference, - "isUseCacheFunction", - ()=>isUseCacheFunction -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$server$2d$reference$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/server-reference-info.js [app-rsc] (ecmascript)"); -; -function isServerReference(value) { - return value.$$typeof === Symbol.for('react.server.reference'); -} -function isUseCacheFunction(value) { - if (!isServerReference(value)) { - return false; - } - const { type } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$server$2d$reference$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["extractInfoFromServerReferenceId"])(value.$$id); - return type === 'use-cache'; -} -function getUseCacheFunctionInfo(value) { - if (!isServerReference(value)) { - return null; - } - const info = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$server$2d$reference$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["extractInfoFromServerReferenceId"])(value.$$id); - return info.type === 'use-cache' ? info : null; -} -function isClientReference(mod) { - const defaultExport = (mod == null ? void 0 : mod.default) || mod; - return (defaultExport == null ? void 0 : defaultExport.$$typeof) === Symbol.for('react.client.reference'); -} //# sourceMappingURL=client-and-server-references.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/lazy-result.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Calls the given function only when the returned promise-like object is - * awaited. Afterwards, it provides the resolved value synchronously as `value` - * property. - */ __turbopack_context__.s([ - "createLazyResult", - ()=>createLazyResult, - "isResolvedLazyResult", - ()=>isResolvedLazyResult -]); -function createLazyResult(fn) { - let pendingResult; - const result = { - then (onfulfilled, onrejected) { - if (!pendingResult) { - pendingResult = Promise.resolve(fn()); - } - pendingResult.then((value)=>{ - result.value = value; - }).catch(()=>{ - // The externally awaited result will be rejected via `onrejected`. We - // don't need to handle it here. But we do want to avoid an unhandled - // rejection. - }); - return pendingResult.then(onfulfilled, onrejected); - } - }; - return result; -} -function isResolvedLazyResult(result) { - return result.hasOwnProperty('value'); -} //# sourceMappingURL=lazy-result.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/deep-freeze.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Recursively freezes an object and all of its properties. This prevents the - * object from being modified at runtime. When the JS runtime is running in - * strict mode, any attempts to modify a frozen object will throw an error. - * - * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze - * @param obj The object to freeze. - */ __turbopack_context__.s([ - "deepFreeze", - ()=>deepFreeze -]); -function deepFreeze(obj) { - // If the object is already frozen, there's no need to freeze it again. - if (Object.isFrozen(obj)) return obj; - // An array is an object, but we also want to freeze each element in the array - // as well. - if (Array.isArray(obj)) { - for (const item of obj){ - if (!item || typeof item !== 'object') continue; - deepFreeze(item); - } - return Object.freeze(obj); - } - for (const value of Object.values(obj)){ - if (!value || typeof value !== 'object') continue; - deepFreeze(value); - } - return Object.freeze(obj); -} //# sourceMappingURL=deep-freeze.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolve-metadata.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "accumulateMetadata", - ()=>accumulateMetadata, - "accumulateViewport", - ()=>accumulateViewport, - "resolveMetadata", - ()=>resolveMetadata, - "resolveViewport", - ()=>resolveViewport -]); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$server$2d$only$2f$empty$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/server-only/empty.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$default$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/default-metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-opengraph.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-title.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/app-dir-module.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$interop$2d$default$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/interop-default.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-basics.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$icons$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-icons.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/output/log.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$client$2d$and$2d$server$2d$references$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/client-and-server-references.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lazy$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/lazy-result.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -function isFavicon(icon) { - if (!icon) { - return false; - } - // turbopack appends a hash to all images - return (icon.url === '/favicon.ico' || icon.url.toString().startsWith('/favicon.ico?')) && icon.type === 'image/x-icon'; -} -function convertUrlsToStrings(input) { - if (input instanceof URL) { - return input.toString(); - } else if (Array.isArray(input)) { - return input.map((item)=>convertUrlsToStrings(item)); - } else if (input && typeof input === 'object') { - const result = {}; - for (const [key, value] of Object.entries(input)){ - result[key] = convertUrlsToStrings(value); - } - return result; - } - return input; -} -function normalizeMetadataBase(metadataBase) { - if (typeof metadataBase === 'string') { - try { - metadataBase = new URL(metadataBase); - } catch { - throw Object.defineProperty(new Error(`metadataBase is not a valid URL: ${metadataBase}`), "__NEXT_ERROR_CODE", { - value: "E850", - enumerable: false, - configurable: true - }); - } - } - return metadataBase; -} -async function mergeStaticMetadata(metadataBase, source, target, staticFilesMetadata, metadataContext, titleTemplates, leafSegmentStaticIcons, pathname) { - var _source_twitter, _source_openGraph; - if (!staticFilesMetadata) return target; - const { icon, apple, openGraph, twitter, manifest } = staticFilesMetadata; - // Keep updating the static icons in the most leaf node - if (icon) { - leafSegmentStaticIcons.icon = icon; - } - if (apple) { - leafSegmentStaticIcons.apple = apple; - } - // file based metadata is specified and current level metadata twitter.images is not specified - if (twitter && !(source == null ? void 0 : (_source_twitter = source.twitter) == null ? void 0 : _source_twitter.hasOwnProperty('images'))) { - const resolvedTwitter = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTwitter"])({ - ...target.twitter, - images: twitter - }, metadataBase, { - ...metadataContext, - isStaticMetadataRouteFile: true - }, titleTemplates.twitter); - target.twitter = convertUrlsToStrings(resolvedTwitter); - } - // file based metadata is specified and current level metadata openGraph.images is not specified - if (openGraph && !(source == null ? void 0 : (_source_openGraph = source.openGraph) == null ? void 0 : _source_openGraph.hasOwnProperty('images'))) { - const resolvedOpenGraph = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveOpenGraph"])({ - ...target.openGraph, - images: openGraph - }, metadataBase, pathname, { - ...metadataContext, - isStaticMetadataRouteFile: true - }, titleTemplates.openGraph); - target.openGraph = convertUrlsToStrings(resolvedOpenGraph); - } - if (manifest) { - target.manifest = manifest; - } - return target; -} -/** - * Merges the given metadata with the resolved metadata. Returns a new object. - */ async function mergeMetadata(route, pathname, { metadata, resolvedMetadata, staticFilesMetadata, titleTemplates, metadataContext, buildState, leafSegmentStaticIcons }) { - const newResolvedMetadata = structuredClone(resolvedMetadata); - const metadataBase = normalizeMetadataBase((metadata == null ? void 0 : metadata.metadataBase) !== undefined ? metadata.metadataBase : resolvedMetadata.metadataBase); - for(const key_ in metadata){ - const key = key_; - switch(key){ - case 'title': - { - newResolvedMetadata.title = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTitle"])(metadata.title, titleTemplates.title); - break; - } - case 'alternates': - { - newResolvedMetadata.alternates = convertUrlsToStrings(await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAlternates"])(metadata.alternates, metadataBase, pathname, metadataContext)); - break; - } - case 'openGraph': - { - newResolvedMetadata.openGraph = convertUrlsToStrings(await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveOpenGraph"])(metadata.openGraph, metadataBase, pathname, metadataContext, titleTemplates.openGraph)); - break; - } - case 'twitter': - { - newResolvedMetadata.twitter = convertUrlsToStrings((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTwitter"])(metadata.twitter, metadataBase, metadataContext, titleTemplates.twitter)); - break; - } - case 'facebook': - newResolvedMetadata.facebook = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveFacebook"])(metadata.facebook); - break; - case 'verification': - newResolvedMetadata.verification = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveVerification"])(metadata.verification); - break; - case 'icons': - { - newResolvedMetadata.icons = convertUrlsToStrings((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$icons$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveIcons"])(metadata.icons)); - break; - } - case 'appleWebApp': - newResolvedMetadata.appleWebApp = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAppleWebApp"])(metadata.appleWebApp); - break; - case 'appLinks': - newResolvedMetadata.appLinks = convertUrlsToStrings((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAppLinks"])(metadata.appLinks)); - break; - case 'robots': - { - newResolvedMetadata.robots = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveRobots"])(metadata.robots); - break; - } - case 'archives': - case 'assets': - case 'bookmarks': - case 'keywords': - { - newResolvedMetadata[key] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(metadata[key]); - break; - } - case 'authors': - { - newResolvedMetadata[key] = convertUrlsToStrings((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(metadata.authors)); - break; - } - case 'itunes': - { - newResolvedMetadata[key] = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveItunes"])(metadata.itunes, metadataBase, pathname, metadataContext); - break; - } - case 'pagination': - { - newResolvedMetadata.pagination = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolvePagination"])(metadata.pagination, metadataBase, pathname, metadataContext); - break; - } - // directly assign fields that fallback to null - case 'abstract': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'applicationName': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'description': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'generator': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'creator': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'publisher': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'category': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'classification': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'referrer': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'formatDetection': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'manifest': - newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null; - break; - case 'pinterest': - newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null; - break; - case 'other': - newResolvedMetadata.other = Object.assign({}, newResolvedMetadata.other, metadata.other); - break; - case 'metadataBase': - newResolvedMetadata.metadataBase = metadataBase ? metadataBase.toString() : null; - break; - case 'apple-touch-fullscreen': - { - buildState.warnings.add(`Use appleWebApp instead\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`); - break; - } - case 'apple-touch-icon-precomposed': - { - buildState.warnings.add(`Use icons.apple instead\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`); - break; - } - case 'themeColor': - case 'colorScheme': - case 'viewport': - if (metadata[key] != null) { - buildState.warnings.add(`Unsupported metadata ${key} is configured in metadata export in ${route}. Please move it to viewport export instead.\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-viewport`); - } - break; - default: - { - key; - } - } - } - return mergeStaticMetadata(metadataBase, metadata, newResolvedMetadata, staticFilesMetadata, metadataContext, titleTemplates, leafSegmentStaticIcons, pathname); -} -/** - * Merges the given viewport with the resolved viewport. Returns a new object. - */ function mergeViewport({ resolvedViewport, viewport }) { - const newResolvedViewport = structuredClone(resolvedViewport); - if (viewport) { - for(const key_ in viewport){ - const key = key_; - switch(key){ - case 'themeColor': - { - newResolvedViewport.themeColor = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveThemeColor"])(viewport.themeColor); - break; - } - case 'colorScheme': - newResolvedViewport.colorScheme = viewport.colorScheme || null; - break; - case 'width': - case 'height': - case 'initialScale': - case 'minimumScale': - case 'maximumScale': - case 'userScalable': - case 'viewportFit': - case 'interactiveWidget': - // always override the target with the source - // @ts-ignore viewport properties - newResolvedViewport[key] = viewport[key]; - break; - default: - key; - } - } - } - return newResolvedViewport; -} -function getDefinedViewport(mod, props, tracingProps) { - if (typeof mod.generateViewport === 'function') { - const { route } = tracingProps; - const segmentProps = createSegmentProps(mod.generateViewport, props); - return Object.assign((parent)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ResolveMetadataSpan"].generateViewport, { - spanName: `generateViewport ${route}`, - attributes: { - 'next.page': route - } - }, ()=>mod.generateViewport(segmentProps, parent)), { - $$original: mod.generateViewport - }); - } - return mod.viewport || null; -} -function getDefinedMetadata(mod, props, tracingProps) { - if (typeof mod.generateMetadata === 'function') { - const { route } = tracingProps; - const segmentProps = createSegmentProps(mod.generateMetadata, props); - return Object.assign((parent)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ResolveMetadataSpan"].generateMetadata, { - spanName: `generateMetadata ${route}`, - attributes: { - 'next.page': route - } - }, ()=>mod.generateMetadata(segmentProps, parent)), { - $$original: mod.generateMetadata - }); - } - return mod.metadata || null; -} -/** - * If `fn` is a `'use cache'` function, we add special markers to the props, - * that the cache wrapper reads and removes, before passing the props to the - * user function. - */ function createSegmentProps(fn, props) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$client$2d$and$2d$server$2d$references$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isUseCacheFunction"])(fn) ? 'searchParams' in props ? { - ...props, - $$isPage: true - } : { - ...props, - $$isLayout: true - } : props; -} -async function collectStaticImagesFiles(metadata, props, type) { - var _this; - if (!(metadata == null ? void 0 : metadata[type])) return undefined; - const iconPromises = metadata[type].map(async (imageModule)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$interop$2d$default$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["interopDefault"])(await imageModule(props))); - return (iconPromises == null ? void 0 : iconPromises.length) > 0 ? (_this = await Promise.all(iconPromises)) == null ? void 0 : _this.flat() : undefined; -} -async function resolveStaticMetadata(modules, props) { - const { metadata } = modules; - if (!metadata) return null; - const [icon, apple, openGraph, twitter] = await Promise.all([ - collectStaticImagesFiles(metadata, props, 'icon'), - collectStaticImagesFiles(metadata, props, 'apple'), - collectStaticImagesFiles(metadata, props, 'openGraph'), - collectStaticImagesFiles(metadata, props, 'twitter') - ]); - const staticMetadata = { - icon, - apple, - openGraph, - twitter, - manifest: metadata.manifest - }; - return staticMetadata; -} -// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata] -async function collectMetadata({ tree, metadataItems, errorMetadataItem, props, route, errorConvention }) { - let mod; - let modType; - const hasErrorConventionComponent = Boolean(errorConvention && tree[2][errorConvention]); - if (errorConvention) { - mod = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getComponentTypeModule"])(tree, 'layout'); - modType = errorConvention; - } else { - const { mod: layoutOrPageMod, modType: layoutOrPageModType } = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getLayoutOrPageModule"])(tree); - mod = layoutOrPageMod; - modType = layoutOrPageModType; - } - if (modType) { - route += `/${modType}`; - } - const staticFilesMetadata = await resolveStaticMetadata(tree[2], props); - const metadataExport = mod ? getDefinedMetadata(mod, props, { - route - }) : null; - metadataItems.push([ - metadataExport, - staticFilesMetadata - ]); - if (hasErrorConventionComponent && errorConvention) { - const errorMod = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getComponentTypeModule"])(tree, errorConvention); - const errorMetadataExport = errorMod ? getDefinedMetadata(errorMod, props, { - route - }) : null; - errorMetadataItem[0] = errorMetadataExport; - errorMetadataItem[1] = staticFilesMetadata; - } -} -// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata] -async function collectViewport({ tree, viewportItems, errorViewportItemRef, props, route, errorConvention }) { - let mod; - let modType; - const hasErrorConventionComponent = Boolean(errorConvention && tree[2][errorConvention]); - if (errorConvention) { - mod = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getComponentTypeModule"])(tree, 'layout'); - modType = errorConvention; - } else { - const { mod: layoutOrPageMod, modType: layoutOrPageModType } = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getLayoutOrPageModule"])(tree); - mod = layoutOrPageMod; - modType = layoutOrPageModType; - } - if (modType) { - route += `/${modType}`; - } - const viewportExport = mod ? getDefinedViewport(mod, props, { - route - }) : null; - viewportItems.push(viewportExport); - if (hasErrorConventionComponent && errorConvention) { - const errorMod = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getComponentTypeModule"])(tree, errorConvention); - const errorViewportExport = errorMod ? getDefinedViewport(errorMod, props, { - route - }) : null; - errorViewportItemRef.current = errorViewportExport; - } -} -const resolveMetadataItems = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(async function(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore) { - const parentParams = {}; - const metadataItems = []; - const errorMetadataItem = [ - null, - null - ]; - const treePrefix = undefined; - return resolveMetadataItemsImpl(metadataItems, tree, treePrefix, parentParams, searchParams, errorConvention, errorMetadataItem, getDynamicParamFromSegment, workStore); -}); -async function resolveMetadataItemsImpl(metadataItems, tree, /** Provided tree can be nested subtree, this argument says what is the path of such subtree */ treePrefix, parentParams, searchParams, errorConvention, errorMetadataItem, getDynamicParamFromSegment, workStore) { - const [segment, parallelRoutes, { page }] = tree; - const currentTreePrefix = treePrefix && treePrefix.length ? [ - ...treePrefix, - segment - ] : [ - segment - ]; - const isPage = typeof page !== 'undefined'; - // Handle dynamic segment params. - const segmentParam = getDynamicParamFromSegment(segment); - /** - * Create object holding the parent params and current params - */ let currentParams = parentParams; - if (segmentParam && segmentParam.value !== null) { - currentParams = { - ...parentParams, - [segmentParam.param]: segmentParam.value - }; - } - const params = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerParamsForMetadata"])(currentParams, workStore); - const props = isPage ? { - params, - searchParams - } : { - params - }; - await collectMetadata({ - tree, - metadataItems, - errorMetadataItem, - errorConvention, - props, - route: currentTreePrefix // __PAGE__ shouldn't be shown in a route - .filter((s)=>s !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]).join('/') - }); - for(const key in parallelRoutes){ - const childTree = parallelRoutes[key]; - await resolveMetadataItemsImpl(metadataItems, childTree, currentTreePrefix, currentParams, searchParams, errorConvention, errorMetadataItem, getDynamicParamFromSegment, workStore); - } - if (Object.keys(parallelRoutes).length === 0 && errorConvention) { - // If there are no parallel routes, place error metadata as the last item. - // e.g. layout -> layout -> not-found - metadataItems.push(errorMetadataItem); - } - return metadataItems; -} -const resolveViewportItems = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(async function(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore) { - const parentParams = {}; - const viewportItems = []; - const errorViewportItemRef = { - current: null - }; - const treePrefix = undefined; - return resolveViewportItemsImpl(viewportItems, tree, treePrefix, parentParams, searchParams, errorConvention, errorViewportItemRef, getDynamicParamFromSegment, workStore); -}); -async function resolveViewportItemsImpl(viewportItems, tree, /** Provided tree can be nested subtree, this argument says what is the path of such subtree */ treePrefix, parentParams, searchParams, errorConvention, errorViewportItemRef, getDynamicParamFromSegment, workStore) { - const [segment, parallelRoutes, { page }] = tree; - const currentTreePrefix = treePrefix && treePrefix.length ? [ - ...treePrefix, - segment - ] : [ - segment - ]; - const isPage = typeof page !== 'undefined'; - // Handle dynamic segment params. - const segmentParam = getDynamicParamFromSegment(segment); - /** - * Create object holding the parent params and current params - */ let currentParams = parentParams; - if (segmentParam && segmentParam.value !== null) { - currentParams = { - ...parentParams, - [segmentParam.param]: segmentParam.value - }; - } - const params = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerParamsForMetadata"])(currentParams, workStore); - let layerProps; - if (isPage) { - layerProps = { - params, - searchParams - }; - } else { - layerProps = { - params - }; - } - await collectViewport({ - tree, - viewportItems, - errorViewportItemRef, - errorConvention, - props: layerProps, - route: currentTreePrefix // __PAGE__ shouldn't be shown in a route - .filter((s)=>s !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]).join('/') - }); - for(const key in parallelRoutes){ - const childTree = parallelRoutes[key]; - await resolveViewportItemsImpl(viewportItems, childTree, currentTreePrefix, currentParams, searchParams, errorConvention, errorViewportItemRef, getDynamicParamFromSegment, workStore); - } - if (Object.keys(parallelRoutes).length === 0 && errorConvention) { - // If there are no parallel routes, place error metadata as the last item. - // e.g. layout -> layout -> not-found - viewportItems.push(errorViewportItemRef.current); - } - return viewportItems; -} -const isTitleTruthy = (title)=>!!(title == null ? void 0 : title.absolute); -const hasTitle = (metadata)=>isTitleTruthy(metadata == null ? void 0 : metadata.title); -function inheritFromMetadata(target, metadata) { - if (target) { - if (!hasTitle(target) && hasTitle(metadata)) { - target.title = metadata.title; - } - if (!target.description && metadata.description) { - target.description = metadata.description; - } - } -} -// eslint-disable-next-line @typescript-eslint/no-unused-vars -const commonOgKeys = [ - 'title', - 'description', - 'images' -]; -function postProcessMetadata(metadata, favicon, titleTemplates, metadataContext) { - const { openGraph, twitter } = metadata; - if (openGraph) { - // If there's openGraph information but not configured in twitter, - // inherit them from openGraph metadata. - let autoFillProps = {}; - const hasTwTitle = hasTitle(twitter); - const hasTwDescription = twitter == null ? void 0 : twitter.description; - const hasTwImages = Boolean((twitter == null ? void 0 : twitter.hasOwnProperty('images')) && twitter.images); - if (!hasTwTitle) { - if (isTitleTruthy(openGraph.title)) { - autoFillProps.title = openGraph.title; - } else if (metadata.title && isTitleTruthy(metadata.title)) { - autoFillProps.title = metadata.title; - } - } - if (!hasTwDescription) autoFillProps.description = openGraph.description || metadata.description || undefined; - if (!hasTwImages) autoFillProps.images = openGraph.images; - if (Object.keys(autoFillProps).length > 0) { - const partialTwitter = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTwitter"])(autoFillProps, normalizeMetadataBase(metadata.metadataBase), metadataContext, titleTemplates.twitter); - if (metadata.twitter) { - metadata.twitter = Object.assign({}, metadata.twitter, { - ...!hasTwTitle && { - title: partialTwitter == null ? void 0 : partialTwitter.title - }, - ...!hasTwDescription && { - description: partialTwitter == null ? void 0 : partialTwitter.description - }, - ...!hasTwImages && { - images: partialTwitter == null ? void 0 : partialTwitter.images - } - }); - } else { - metadata.twitter = convertUrlsToStrings(partialTwitter); - } - } - } - // If there's no title and description configured in openGraph or twitter, - // use the title and description from metadata. - inheritFromMetadata(openGraph, metadata); - inheritFromMetadata(twitter, metadata); - if (favicon) { - if (!metadata.icons) { - metadata.icons = { - icon: [], - apple: [] - }; - } - metadata.icons.icon.unshift(favicon); - } - return metadata; -} -function prerenderMetadata(metadataItems) { - // If the index is a function then it is a resolver and the next slot - // is the corresponding result. If the index is not a function it is the result - // itself. - const resolversAndResults = []; - for(let i = 0; i < metadataItems.length; i++){ - const metadataExport = metadataItems[i][0]; - getResult(resolversAndResults, metadataExport); - } - return resolversAndResults; -} -function prerenderViewport(viewportItems) { - // If the index is a function then it is a resolver and the next slot - // is the corresponding result. If the index is not a function it is the result - // itself. - const resolversAndResults = []; - for(let i = 0; i < viewportItems.length; i++){ - const viewportExport = viewportItems[i]; - getResult(resolversAndResults, viewportExport); - } - return resolversAndResults; -} -const noop = ()=>{}; -function getResult(resolversAndResults, exportForResult) { - if (typeof exportForResult === 'function') { - // If the function is a 'use cache' function that uses the parent data as - // the second argument, we don't want to eagerly execute it during - // metadata/viewport pre-rendering, as the parent data might also be - // computed from another 'use cache' function. To ensure that the hanging - // input abort signal handling works in this case (i.e. the depending - // function waits for the cached input to resolve while encoding its args), - // they must be called sequentially. This can be accomplished by wrapping - // the call in a lazy promise, so that the original function is only called - // when the result is actually awaited. - const useCacheFunctionInfo = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$client$2d$and$2d$server$2d$references$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getUseCacheFunctionInfo"])(exportForResult.$$original); - if (useCacheFunctionInfo && useCacheFunctionInfo.usedArgs[1]) { - const promise = new Promise((resolve)=>resolversAndResults.push(resolve)); - resolversAndResults.push((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lazy$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createLazyResult"])(async ()=>exportForResult(promise))); - } else { - let result; - if (useCacheFunctionInfo) { - resolversAndResults.push(noop); - // @ts-expect-error We intentionally omit the parent argument, because - // we know from the check above that the 'use cache' function does not - // use it. - result = exportForResult(); - } else { - result = exportForResult(new Promise((resolve)=>resolversAndResults.push(resolve))); - } - resolversAndResults.push(result); - if (result instanceof Promise) { - // since we eager execute generateMetadata and - // they can reject at anytime we need to ensure - // we attach the catch handler right away to - // prevent unhandled rejections crashing the process - result.catch((err)=>{ - return { - __nextError: err - }; - }); - } - } - } else if (typeof exportForResult === 'object') { - resolversAndResults.push(exportForResult); - } else { - resolversAndResults.push(null); - } -} -function freezeInDev(obj) { - if ("TURBOPACK compile-time truthy", 1) { - return __turbopack_context__.r("[project]/node_modules/next/dist/esm/shared/lib/deep-freeze.js [app-rsc] (ecmascript)").deepFreeze(obj); - } - //TURBOPACK unreachable - ; -} -async function accumulateMetadata(route, metadataItems, pathname, metadataContext) { - let resolvedMetadata = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$default$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDefaultMetadata"])(); - let titleTemplates = { - title: null, - twitter: null, - openGraph: null - }; - const buildState = { - warnings: new Set() - }; - let favicon; - // Collect the static icons in the most leaf node, - // since we don't collect all the static metadata icons in the parent segments. - const leafSegmentStaticIcons = { - icon: [], - apple: [] - }; - const resolversAndResults = prerenderMetadata(metadataItems); - let resultIndex = 0; - for(let i = 0; i < metadataItems.length; i++){ - var _staticFilesMetadata_icon; - const staticFilesMetadata = metadataItems[i][1]; - // Treat favicon as special case, it should be the first icon in the list - // i <= 1 represents root layout, and if current page is also at root - if (i <= 1 && isFavicon(staticFilesMetadata == null ? void 0 : (_staticFilesMetadata_icon = staticFilesMetadata.icon) == null ? void 0 : _staticFilesMetadata_icon[0])) { - var _staticFilesMetadata_icon1; - const iconMod = staticFilesMetadata == null ? void 0 : (_staticFilesMetadata_icon1 = staticFilesMetadata.icon) == null ? void 0 : _staticFilesMetadata_icon1.shift(); - if (i === 0) favicon = iconMod; - } - let pendingMetadata = resolversAndResults[resultIndex++]; - if (typeof pendingMetadata === 'function') { - // This metadata item had a `generateMetadata` and - // we need to provide the currently resolved metadata - // to it before we continue; - const resolveParentMetadata = pendingMetadata; - // we know that the next item is a result if this item - // was a resolver - pendingMetadata = resolversAndResults[resultIndex++]; - resolveParentMetadata(freezeInDev(resolvedMetadata)); - } - // Otherwise the item was either null or a static export - let metadata; - if (isPromiseLike(pendingMetadata)) { - metadata = await pendingMetadata; - } else { - metadata = pendingMetadata; - } - resolvedMetadata = await mergeMetadata(route, pathname, { - resolvedMetadata, - metadata, - metadataContext, - staticFilesMetadata, - titleTemplates, - buildState, - leafSegmentStaticIcons - }); - // If the layout is the same layer with page, skip the leaf layout and leaf page - // The leaf layout and page are the last two items - if (i < metadataItems.length - 2) { - var _resolvedMetadata_title, _resolvedMetadata_openGraph, _resolvedMetadata_twitter; - titleTemplates = { - title: ((_resolvedMetadata_title = resolvedMetadata.title) == null ? void 0 : _resolvedMetadata_title.template) || null, - openGraph: ((_resolvedMetadata_openGraph = resolvedMetadata.openGraph) == null ? void 0 : _resolvedMetadata_openGraph.title.template) || null, - twitter: ((_resolvedMetadata_twitter = resolvedMetadata.twitter) == null ? void 0 : _resolvedMetadata_twitter.title.template) || null - }; - } - } - if (leafSegmentStaticIcons.icon.length > 0 || leafSegmentStaticIcons.apple.length > 0) { - if (!resolvedMetadata.icons) { - resolvedMetadata.icons = { - icon: [], - apple: [] - }; - if (leafSegmentStaticIcons.icon.length > 0) { - resolvedMetadata.icons.icon.unshift(...leafSegmentStaticIcons.icon); - } - if (leafSegmentStaticIcons.apple.length > 0) { - resolvedMetadata.icons.apple.unshift(...leafSegmentStaticIcons.apple); - } - } - } - // Only log warnings if there are any, and only once after the metadata resolving process is finished - if (buildState.warnings.size > 0) { - for (const warning of buildState.warnings){ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["warn"](warning); - } - } - return postProcessMetadata(resolvedMetadata, favicon, titleTemplates, metadataContext); -} -async function accumulateViewport(viewportItems) { - let resolvedViewport = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$default$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDefaultViewport"])(); - const resolversAndResults = prerenderViewport(viewportItems); - let i = 0; - while(i < resolversAndResults.length){ - let pendingViewport = resolversAndResults[i++]; - if (typeof pendingViewport === 'function') { - // this viewport item had a `generateViewport` and - // we need to provide the currently resolved viewport - // to it before we continue; - const resolveParentViewport = pendingViewport; - // we know that the next item is a result if this item - // was a resolver - pendingViewport = resolversAndResults[i++]; - resolveParentViewport(freezeInDev(resolvedViewport)); - } - // Otherwise the item was either null or a static export - let viewport; - if (isPromiseLike(pendingViewport)) { - viewport = await pendingViewport; - } else { - viewport = pendingViewport; - } - resolvedViewport = mergeViewport({ - resolvedViewport, - viewport - }); - } - return resolvedViewport; -} -async function resolveMetadata(tree, pathname, searchParams, errorConvention, getDynamicParamFromSegment, workStore, metadataContext) { - const metadataItems = await resolveMetadataItems(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore); - return accumulateMetadata(workStore.route, metadataItems, pathname, metadataContext); -} -async function resolveViewport(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore) { - const viewportItems = await resolveViewportItems(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore); - return accumulateViewport(viewportItems); -} -function isPromiseLike(value) { - return typeof value === 'object' && value !== null && typeof value.then === 'function'; -} //# sourceMappingURL=resolve-metadata.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTTPAccessErrorStatus", - ()=>HTTPAccessErrorStatus, - "HTTP_ERROR_FALLBACK_ERROR_CODE", - ()=>HTTP_ERROR_FALLBACK_ERROR_CODE, - "getAccessFallbackErrorTypeByStatus", - ()=>getAccessFallbackErrorTypeByStatus, - "getAccessFallbackHTTPStatus", - ()=>getAccessFallbackHTTPStatus, - "isHTTPAccessFallbackError", - ()=>isHTTPAccessFallbackError -]); -const HTTPAccessErrorStatus = { - NOT_FOUND: 404, - FORBIDDEN: 403, - UNAUTHORIZED: 401 -}; -const ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus)); -const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'; -function isHTTPAccessFallbackError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const [prefix, httpStatus] = error.digest.split(';'); - return prefix === HTTP_ERROR_FALLBACK_ERROR_CODE && ALLOWED_CODES.has(Number(httpStatus)); -} -function getAccessFallbackHTTPStatus(error) { - const httpStatus = error.digest.split(';')[1]; - return Number(httpStatus); -} -function getAccessFallbackErrorTypeByStatus(status) { - switch(status){ - case 401: - return 'unauthorized'; - case 403: - return 'forbidden'; - case 404: - return 'not-found'; - default: - return; - } -} //# sourceMappingURL=http-access-fallback.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/pathname.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createServerPathnameForMetadata", - ()=>createServerPathnameForMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -; -; -; -; -function createServerPathnameForMetadata(underlyingPathname, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - { - return createPrerenderPathname(underlyingPathname, workStore, workUnitStore); - } - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createServerPathnameForMetadata should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E740", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, createRenderPathname(underlyingPathname)); - case 'request': - return createRenderPathname(underlyingPathname); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderPathname(underlyingPathname, workStore, prerenderStore) { - switch(prerenderStore.type){ - case 'prerender-client': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderPathname was called inside a client component scope.'), "__NEXT_ERROR_CODE", { - value: "E694", - enumerable: false, - configurable: true - }); - case 'prerender': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`pathname`'); - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return makeErroringPathname(workStore, prerenderStore.dynamicTracking); - } - break; - } - case 'prerender-legacy': - break; - default: - prerenderStore; - } - // We don't have any fallback params so we have an entirely static safe params object - return Promise.resolve(underlyingPathname); -} -function makeErroringPathname(workStore, dynamicTracking) { - let reject = null; - const promise = new Promise((_, re)=>{ - reject = re; - }); - const originalThen = promise.then.bind(promise); - // We instrument .then so that we can generate a tracking event only if you actually - // await this promise, not just that it is created. - promise.then = (onfulfilled, onrejected)=>{ - if (reject) { - try { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, 'metadata relative url resolving', dynamicTracking); - } catch (error) { - reject(error); - reject = null; - } - } - return originalThen(onfulfilled, onrejected); - }; - // We wrap in a noop proxy to trick the runtime into thinking it - // isn't a native promise (it's not really). This is so that awaiting - // the promise will call the `then` property triggering the lazy postpone - return new Proxy(promise, {}); -} -function createRenderPathname(underlyingPathname) { - return Promise.resolve(underlyingPathname); -} //# sourceMappingURL=pathname.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isPostpone", - ()=>isPostpone -]); -const REACT_POSTPONE_TYPE = Symbol.for('react.postpone'); -function isPostpone(error) { - return typeof error === 'object' && error !== null && error.$$typeof === REACT_POSTPONE_TYPE; -} //# sourceMappingURL=is-postpone.js.map -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js")); -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/lib/metadata/metadata.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createMetadataComponents", - ()=>createMetadataComponents -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/basic.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$alternate$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/alternate.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/opengraph.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icons$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/icons.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolve$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolve-metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/search-params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$pathname$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/pathname.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -function createMetadataComponents({ tree, pathname, parsedQuery, metadataContext, getDynamicParamFromSegment, errorType, workStore, serveStreamingMetadata }) { - const searchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerSearchParamsForMetadata"])(parsedQuery, workStore); - const pathnameForMetadata = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$pathname$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerPathnameForMetadata"])(pathname, workStore); - async function Viewport() { - const tags = await getResolvedViewport(tree, searchParams, getDynamicParamFromSegment, workStore, errorType).catch((viewportErr)=>{ - // When Legacy PPR is enabled viewport can reject with a Postpone type - // This will go away once Legacy PPR is removed and dynamic metadata will - // stay pending until after the prerender is complete when it is dynamic - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isPostpone"])(viewportErr)) { - throw viewportErr; - } - if (!errorType && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(viewportErr)) { - return getNotFoundViewport(tree, searchParams, getDynamicParamFromSegment, workStore).catch(()=>null); - } - // We're going to throw the error from the metadata outlet so we just render null here instead - return null; - }); - return tags; - } - Viewport.displayName = 'Next.Viewport'; - function ViewportWrapper() { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ViewportBoundary"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(Viewport, {}) - }); - } - async function Metadata() { - const tags = await getResolvedMetadata(tree, pathnameForMetadata, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorType).catch((metadataErr)=>{ - // When Legacy PPR is enabled metadata can reject with a Postpone type - // This will go away once Legacy PPR is removed and dynamic metadata will - // stay pending until after the prerender is complete when it is dynamic - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isPostpone"])(metadataErr)) { - throw metadataErr; - } - if (!errorType && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(metadataErr)) { - return getNotFoundMetadata(tree, pathnameForMetadata, searchParams, getDynamicParamFromSegment, metadataContext, workStore).catch(()=>null); - } - // We're going to throw the error from the metadata outlet so we just render null here instead - return null; - }); - return tags; - } - Metadata.displayName = 'Next.Metadata'; - function MetadataWrapper() { - // TODO: We shouldn't change what we render based on whether we are streaming or not. - // If we aren't streaming we should just block the response until we have resolved the - // metadata. - if (!serveStreamingMetadata) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetadataBoundary"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(Metadata, {}) - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("div", { - hidden: true, - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetadataBoundary"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Suspense"], { - name: "Next.Metadata", - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(Metadata, {}) - }) - }) - }); - } - function MetadataOutlet() { - const pendingOutlet = Promise.all([ - getResolvedMetadata(tree, pathnameForMetadata, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorType), - getResolvedViewport(tree, searchParams, getDynamicParamFromSegment, workStore, errorType) - ]).then(()=>null); - // TODO: We shouldn't change what we render based on whether we are streaming or not. - // If we aren't streaming we should just block the response until we have resolved the - // metadata. - if (!serveStreamingMetadata) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["OutletBoundary"], { - children: pendingOutlet - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["OutletBoundary"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Suspense"], { - name: "Next.MetadataOutlet", - children: pendingOutlet - }) - }); - } - MetadataOutlet.displayName = 'Next.MetadataOutlet'; - return { - Viewport: ViewportWrapper, - Metadata: MetadataWrapper, - MetadataOutlet - }; -} -const getResolvedMetadata = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(getResolvedMetadataImpl); -async function getResolvedMetadataImpl(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorType) { - const errorConvention = errorType === 'redirect' ? undefined : errorType; - return renderMetadata(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorConvention); -} -const getNotFoundMetadata = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(getNotFoundMetadataImpl); -async function getNotFoundMetadataImpl(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore) { - const notFoundErrorConvention = 'not-found'; - return renderMetadata(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore, notFoundErrorConvention); -} -const getResolvedViewport = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(getResolvedViewportImpl); -async function getResolvedViewportImpl(tree, searchParams, getDynamicParamFromSegment, workStore, errorType) { - const errorConvention = errorType === 'redirect' ? undefined : errorType; - return renderViewport(tree, searchParams, getDynamicParamFromSegment, workStore, errorConvention); -} -const getNotFoundViewport = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(getNotFoundViewportImpl); -async function getNotFoundViewportImpl(tree, searchParams, getDynamicParamFromSegment, workStore) { - const notFoundErrorConvention = 'not-found'; - return renderViewport(tree, searchParams, getDynamicParamFromSegment, workStore, notFoundErrorConvention); -} -async function renderMetadata(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorConvention) { - const resolvedMetadata = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolve$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveMetadata"])(tree, pathname, searchParams, errorConvention, getDynamicParamFromSegment, workStore, metadataContext); - const elements = createMetadataElements(resolvedMetadata); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Fragment"], { - children: elements.map((el, index)=>{ - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneElement"])(el, { - key: index - }); - }) - }); -} -async function renderViewport(tree, searchParams, getDynamicParamFromSegment, workStore, errorConvention) { - const resolvedViewport = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolve$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveViewport"])(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore); - const elements = createViewportElements(resolvedViewport); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Fragment"], { - children: elements.map((el, index)=>{ - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneElement"])(el, { - key: index - }); - }) - }); -} -function createMetadataElements(metadata) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BasicMeta"])({ - metadata - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$alternate$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AlternatesMetadata"])({ - alternates: metadata.alternates - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ItunesMeta"])({ - itunes: metadata.itunes - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FacebookMeta"])({ - facebook: metadata.facebook - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PinterestMeta"])({ - pinterest: metadata.pinterest - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FormatDetectionMeta"])({ - formatDetection: metadata.formatDetection - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["VerificationMeta"])({ - verification: metadata.verification - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AppleWebAppMeta"])({ - appleWebApp: metadata.appleWebApp - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["OpenGraphMetadata"])({ - openGraph: metadata.openGraph - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["TwitterMetadata"])({ - twitter: metadata.twitter - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AppLinksMeta"])({ - appLinks: metadata.appLinks - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icons$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IconsMetadata"])({ - icons: metadata.icons - }) - ]); -} -function createViewportElements(viewport) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ViewportMeta"])({ - viewport: viewport - }) - ]); -} //# sourceMappingURL=metadata.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactDOM; //# sourceMappingURL=react-dom.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/rsc/preloads.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "preconnect", - ()=>preconnect, - "preloadFont", - ()=>preloadFont, - "preloadStyle", - ()=>preloadStyle -]); -/* - -Files in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader. - -*/ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$dom$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js [app-rsc] (ecmascript)"); -; -function preloadStyle(href, crossOrigin, nonce) { - const opts = { - as: 'style' - }; - if (typeof crossOrigin === 'string') { - opts.crossOrigin = crossOrigin; - } - if (typeof nonce === 'string') { - opts.nonce = nonce; - } - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$dom$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].preload(href, opts); -} -function preloadFont(href, type, crossOrigin, nonce) { - const opts = { - as: 'font', - type - }; - if (typeof crossOrigin === 'string') { - opts.crossOrigin = crossOrigin; - } - if (typeof nonce === 'string') { - opts.nonce = nonce; - } - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$dom$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].preload(href, opts); -} -function preconnect(href, crossOrigin, nonce) { - const opts = {}; - if (typeof crossOrigin === 'string') { - opts.crossOrigin = crossOrigin; - } - if (typeof nonce === 'string') { - opts.nonce = nonce; - } - ; - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$dom$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].preconnect(href, opts); -} //# sourceMappingURL=preloads.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/rsc/postpone.js [app-rsc] (ecmascript) <locals>", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([]); -/* - -Files in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader. - -*/ // When postpone is available in canary React we can switch to importing it directly -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); //# sourceMappingURL=postpone.js.map -; -}), -"[project]/node_modules/next/dist/esm/server/app-render/rsc/taint.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "taintObjectReference", - ()=>taintObjectReference, - "taintUniqueValue", - ()=>taintUniqueValue -]); -/* - -Files in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader. - -*/ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -; -function notImplemented() { - throw Object.defineProperty(new Error('Taint can only be used with the taint flag.'), "__NEXT_ERROR_CODE", { - value: "E354", - enumerable: false, - configurable: true - }); -} -const taintObjectReference = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : notImplemented; -const taintUniqueValue = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : notImplemented; //# sourceMappingURL=taint.js.map -}), -"[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.node.development.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * @license React - * react-server-dom-turbopack-client.node.development.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ "production" !== ("TURBOPACK compile-time value", "development") && function() { - function resolveClientReference(bundlerConfig, metadata) { - if (bundlerConfig) { - var moduleExports = bundlerConfig[metadata[0]]; - if (bundlerConfig = moduleExports && moduleExports[metadata[2]]) moduleExports = bundlerConfig.name; - else { - bundlerConfig = moduleExports && moduleExports["*"]; - if (!bundlerConfig) throw Error('Could not find the module "' + metadata[0] + '" in the React Server Consumer Manifest. This is probably a bug in the React Server Components bundler.'); - moduleExports = metadata[2]; - } - return 4 === metadata.length ? [ - bundlerConfig.id, - bundlerConfig.chunks, - moduleExports, - 1 - ] : [ - bundlerConfig.id, - bundlerConfig.chunks, - moduleExports - ]; - } - return metadata; - } - function resolveServerReference(bundlerConfig, id) { - var name = "", resolvedModuleData = bundlerConfig[id]; - if (resolvedModuleData) name = resolvedModuleData.name; - else { - var idx = id.lastIndexOf("#"); - -1 !== idx && (name = id.slice(idx + 1), resolvedModuleData = bundlerConfig[id.slice(0, idx)]); - if (!resolvedModuleData) throw Error('Could not find the module "' + id + '" in the React Server Manifest. This is probably a bug in the React Server Components bundler.'); - } - return resolvedModuleData.async ? [ - resolvedModuleData.id, - resolvedModuleData.chunks, - name, - 1 - ] : [ - resolvedModuleData.id, - resolvedModuleData.chunks, - name - ]; - } - function requireAsyncModule(id) { - var promise = globalThis.__next_require__(id); - if ("function" !== typeof promise.then || "fulfilled" === promise.status) return null; - promise.then(function(value) { - promise.status = "fulfilled"; - promise.value = value; - }, function(reason) { - promise.status = "rejected"; - promise.reason = reason; - }); - return promise; - } - function ignoreReject() {} - function preloadModule(metadata) { - for(var chunks = metadata[1], promises = [], i = 0; i < chunks.length; i++){ - var thenable = globalThis.__next_chunk_load__(chunks[i]); - loadedChunks.has(thenable) || promises.push(thenable); - if (!instrumentedChunks.has(thenable)) { - var resolve = loadedChunks.add.bind(loadedChunks, thenable); - thenable.then(resolve, ignoreReject); - instrumentedChunks.add(thenable); - } - } - return 4 === metadata.length ? 0 === promises.length ? requireAsyncModule(metadata[0]) : Promise.all(promises).then(function() { - return requireAsyncModule(metadata[0]); - }) : 0 < promises.length ? Promise.all(promises) : null; - } - function requireModule(metadata) { - var moduleExports = globalThis.__next_require__(metadata[0]); - if (4 === metadata.length && "function" === typeof moduleExports.then) if ("fulfilled" === moduleExports.status) moduleExports = moduleExports.value; - else throw moduleExports.reason; - if ("*" === metadata[2]) return moduleExports; - if ("" === metadata[2]) return moduleExports.__esModule ? moduleExports.default : moduleExports; - if (hasOwnProperty.call(moduleExports, metadata[2])) return moduleExports[metadata[2]]; - } - function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) { - if (null !== moduleLoading) for(var i = 0; i < chunks.length; i++){ - var nonce = nonce$jscomp$0, JSCompiler_temp_const = ReactDOMSharedInternals.d, JSCompiler_temp_const$jscomp$0 = JSCompiler_temp_const.X, JSCompiler_temp_const$jscomp$1 = moduleLoading.prefix + chunks[i]; - var JSCompiler_inline_result = moduleLoading.crossOrigin; - JSCompiler_inline_result = "string" === typeof JSCompiler_inline_result ? "use-credentials" === JSCompiler_inline_result ? JSCompiler_inline_result : "" : void 0; - JSCompiler_temp_const$jscomp$0.call(JSCompiler_temp_const, JSCompiler_temp_const$jscomp$1, { - crossOrigin: JSCompiler_inline_result, - nonce: nonce - }); - } - } - function getIteratorFn(maybeIterable) { - if (null === maybeIterable || "object" !== typeof maybeIterable) return null; - maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; - return "function" === typeof maybeIterable ? maybeIterable : null; - } - function isObjectPrototype(object) { - if (!object) return !1; - var ObjectPrototype = Object.prototype; - if (object === ObjectPrototype) return !0; - if (getPrototypeOf(object)) return !1; - object = Object.getOwnPropertyNames(object); - for(var i = 0; i < object.length; i++)if (!(object[i] in ObjectPrototype)) return !1; - return !0; - } - function isSimpleObject(object) { - if (!isObjectPrototype(getPrototypeOf(object))) return !1; - for(var names = Object.getOwnPropertyNames(object), i = 0; i < names.length; i++){ - var descriptor = Object.getOwnPropertyDescriptor(object, names[i]); - if (!descriptor || !descriptor.enumerable && ("key" !== names[i] && "ref" !== names[i] || "function" !== typeof descriptor.get)) return !1; - } - return !0; - } - function objectName(object) { - object = Object.prototype.toString.call(object); - return object.slice(8, object.length - 1); - } - function describeKeyForErrorMessage(key) { - var encodedKey = JSON.stringify(key); - return '"' + key + '"' === encodedKey ? key : encodedKey; - } - function describeValueForErrorMessage(value) { - switch(typeof value){ - case "string": - return JSON.stringify(10 >= value.length ? value : value.slice(0, 10) + "..."); - case "object": - if (isArrayImpl(value)) return "[...]"; - if (null !== value && value.$$typeof === CLIENT_REFERENCE_TAG) return "client"; - value = objectName(value); - return "Object" === value ? "{...}" : value; - case "function": - return value.$$typeof === CLIENT_REFERENCE_TAG ? "client" : (value = value.displayName || value.name) ? "function " + value : "function"; - default: - return String(value); - } - } - function describeElementType(type) { - if ("string" === typeof type) return type; - switch(type){ - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch(type.$$typeof){ - case REACT_FORWARD_REF_TYPE: - return describeElementType(type.render); - case REACT_MEMO_TYPE: - return describeElementType(type.type); - case REACT_LAZY_TYPE: - var payload = type._payload; - type = type._init; - try { - return describeElementType(type(payload)); - } catch (x) {} - } - return ""; - } - function describeObjectForErrorMessage(objectOrArray, expandedName) { - var objKind = objectName(objectOrArray); - if ("Object" !== objKind && "Array" !== objKind) return objKind; - var start = -1, length = 0; - if (isArrayImpl(objectOrArray)) if (jsxChildrenParents.has(objectOrArray)) { - var type = jsxChildrenParents.get(objectOrArray); - objKind = "<" + describeElementType(type) + ">"; - for(var i = 0; i < objectOrArray.length; i++){ - var value = objectOrArray[i]; - value = "string" === typeof value ? value : "object" === typeof value && null !== value ? "{" + describeObjectForErrorMessage(value) + "}" : "{" + describeValueForErrorMessage(value) + "}"; - "" + i === expandedName ? (start = objKind.length, length = value.length, objKind += value) : objKind = 15 > value.length && 40 > objKind.length + value.length ? objKind + value : objKind + "{...}"; - } - objKind += "</" + describeElementType(type) + ">"; - } else { - objKind = "["; - for(type = 0; type < objectOrArray.length; type++)0 < type && (objKind += ", "), i = objectOrArray[type], i = "object" === typeof i && null !== i ? describeObjectForErrorMessage(i) : describeValueForErrorMessage(i), "" + type === expandedName ? (start = objKind.length, length = i.length, objKind += i) : objKind = 10 > i.length && 40 > objKind.length + i.length ? objKind + i : objKind + "..."; - objKind += "]"; - } - else if (objectOrArray.$$typeof === REACT_ELEMENT_TYPE) objKind = "<" + describeElementType(objectOrArray.type) + "/>"; - else { - if (objectOrArray.$$typeof === CLIENT_REFERENCE_TAG) return "client"; - if (jsxPropsParents.has(objectOrArray)) { - objKind = jsxPropsParents.get(objectOrArray); - objKind = "<" + (describeElementType(objKind) || "..."); - type = Object.keys(objectOrArray); - for(i = 0; i < type.length; i++){ - objKind += " "; - value = type[i]; - objKind += describeKeyForErrorMessage(value) + "="; - var _value2 = objectOrArray[value]; - var _substr2 = value === expandedName && "object" === typeof _value2 && null !== _value2 ? describeObjectForErrorMessage(_value2) : describeValueForErrorMessage(_value2); - "string" !== typeof _value2 && (_substr2 = "{" + _substr2 + "}"); - value === expandedName ? (start = objKind.length, length = _substr2.length, objKind += _substr2) : objKind = 10 > _substr2.length && 40 > objKind.length + _substr2.length ? objKind + _substr2 : objKind + "..."; - } - objKind += ">"; - } else { - objKind = "{"; - type = Object.keys(objectOrArray); - for(i = 0; i < type.length; i++)0 < i && (objKind += ", "), value = type[i], objKind += describeKeyForErrorMessage(value) + ": ", _value2 = objectOrArray[value], _value2 = "object" === typeof _value2 && null !== _value2 ? describeObjectForErrorMessage(_value2) : describeValueForErrorMessage(_value2), value === expandedName ? (start = objKind.length, length = _value2.length, objKind += _value2) : objKind = 10 > _value2.length && 40 > objKind.length + _value2.length ? objKind + _value2 : objKind + "..."; - objKind += "}"; - } - } - return void 0 === expandedName ? objKind : -1 < start && 0 < length ? (objectOrArray = " ".repeat(start) + "^".repeat(length), "\n " + objKind + "\n " + objectOrArray) : "\n " + objKind; - } - function serializeNumber(number) { - return Number.isFinite(number) ? 0 === number && -Infinity === 1 / number ? "$-0" : number : Infinity === number ? "$Infinity" : -Infinity === number ? "$-Infinity" : "$NaN"; - } - function processReply(root, formFieldPrefix, temporaryReferences, resolve, reject) { - function serializeTypedArray(tag, typedArray) { - typedArray = new Blob([ - new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength) - ]); - var blobId = nextPartId++; - null === formData && (formData = new FormData()); - formData.append(formFieldPrefix + blobId, typedArray); - return "$" + tag + blobId.toString(16); - } - function serializeBinaryReader(reader) { - function progress(entry) { - entry.done ? (entry = nextPartId++, data.append(formFieldPrefix + entry, new Blob(buffer)), data.append(formFieldPrefix + streamId, '"$o' + entry.toString(16) + '"'), data.append(formFieldPrefix + streamId, "C"), pendingParts--, 0 === pendingParts && resolve(data)) : (buffer.push(entry.value), reader.read(new Uint8Array(1024)).then(progress, reject)); - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++, buffer = []; - reader.read(new Uint8Array(1024)).then(progress, reject); - return "$r" + streamId.toString(16); - } - function serializeReader(reader) { - function progress(entry) { - if (entry.done) data.append(formFieldPrefix + streamId, "C"), pendingParts--, 0 === pendingParts && resolve(data); - else try { - var partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, partJSON); - reader.read().then(progress, reject); - } catch (x) { - reject(x); - } - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++; - reader.read().then(progress, reject); - return "$R" + streamId.toString(16); - } - function serializeReadableStream(stream) { - try { - var binaryReader = stream.getReader({ - mode: "byob" - }); - } catch (x) { - return serializeReader(stream.getReader()); - } - return serializeBinaryReader(binaryReader); - } - function serializeAsyncIterable(iterable, iterator) { - function progress(entry) { - if (entry.done) { - if (void 0 === entry.value) data.append(formFieldPrefix + streamId, "C"); - else try { - var partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, "C" + partJSON); - } catch (x) { - reject(x); - return; - } - pendingParts--; - 0 === pendingParts && resolve(data); - } else try { - var _partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, _partJSON); - iterator.next().then(progress, reject); - } catch (x$0) { - reject(x$0); - } - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++; - iterable = iterable === iterator; - iterator.next().then(progress, reject); - return "$" + (iterable ? "x" : "X") + streamId.toString(16); - } - function resolveToJSON(key, value) { - "__proto__" === key && console.error("Expected not to serialize an object with own property `__proto__`. When parsed this property will be omitted.%s", describeObjectForErrorMessage(this, key)); - var originalValue = this[key]; - "object" !== typeof originalValue || originalValue === value || originalValue instanceof Date || ("Object" !== objectName(originalValue) ? console.error("Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s", objectName(originalValue), describeObjectForErrorMessage(this, key)) : console.error("Only plain objects can be passed to Server Functions from the Client. Objects with toJSON methods are not supported. Convert it manually to a simple value before passing it to props.%s", describeObjectForErrorMessage(this, key))); - if (null === value) return null; - if ("object" === typeof value) { - switch(value.$$typeof){ - case REACT_ELEMENT_TYPE: - if (void 0 !== temporaryReferences && -1 === key.indexOf(":")) { - var parentReference = writtenObjects.get(this); - if (void 0 !== parentReference) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - } - throw Error("React Element cannot be passed to Server Functions from the Client without a temporary reference set. Pass a TemporaryReferenceSet to the options." + describeObjectForErrorMessage(this, key)); - case REACT_LAZY_TYPE: - originalValue = value._payload; - var init = value._init; - null === formData && (formData = new FormData()); - pendingParts++; - try { - parentReference = init(originalValue); - var lazyId = nextPartId++, partJSON = serializeModel(parentReference, lazyId); - formData.append(formFieldPrefix + lazyId, partJSON); - return "$" + lazyId.toString(16); - } catch (x) { - if ("object" === typeof x && null !== x && "function" === typeof x.then) { - pendingParts++; - var _lazyId = nextPartId++; - parentReference = function() { - try { - var _partJSON2 = serializeModel(value, _lazyId), _data = formData; - _data.append(formFieldPrefix + _lazyId, _partJSON2); - pendingParts--; - 0 === pendingParts && resolve(_data); - } catch (reason) { - reject(reason); - } - }; - x.then(parentReference, parentReference); - return "$" + _lazyId.toString(16); - } - reject(x); - return null; - } finally{ - pendingParts--; - } - } - parentReference = writtenObjects.get(value); - if ("function" === typeof value.then) { - if (void 0 !== parentReference) if (modelRoot === value) modelRoot = null; - else return parentReference; - null === formData && (formData = new FormData()); - pendingParts++; - var promiseId = nextPartId++; - key = "$@" + promiseId.toString(16); - writtenObjects.set(value, key); - value.then(function(partValue) { - try { - var previousReference = writtenObjects.get(partValue); - var _partJSON3 = void 0 !== previousReference ? JSON.stringify(previousReference) : serializeModel(partValue, promiseId); - partValue = formData; - partValue.append(formFieldPrefix + promiseId, _partJSON3); - pendingParts--; - 0 === pendingParts && resolve(partValue); - } catch (reason) { - reject(reason); - } - }, reject); - return key; - } - if (void 0 !== parentReference) if (modelRoot === value) modelRoot = null; - else return parentReference; - else -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference && (parentReference = parentReference + ":" + key, writtenObjects.set(value, parentReference), void 0 !== temporaryReferences && temporaryReferences.set(parentReference, value))); - if (isArrayImpl(value)) return value; - if (value instanceof FormData) { - null === formData && (formData = new FormData()); - var _data3 = formData; - key = nextPartId++; - var prefix = formFieldPrefix + key + "_"; - value.forEach(function(originalValue, originalKey) { - _data3.append(prefix + originalKey, originalValue); - }); - return "$K" + key.toString(16); - } - if (value instanceof Map) return key = nextPartId++, parentReference = serializeModel(Array.from(value), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$Q" + key.toString(16); - if (value instanceof Set) return key = nextPartId++, parentReference = serializeModel(Array.from(value), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$W" + key.toString(16); - if (value instanceof ArrayBuffer) return key = new Blob([ - value - ]), parentReference = nextPartId++, null === formData && (formData = new FormData()), formData.append(formFieldPrefix + parentReference, key), "$A" + parentReference.toString(16); - if (value instanceof Int8Array) return serializeTypedArray("O", value); - if (value instanceof Uint8Array) return serializeTypedArray("o", value); - if (value instanceof Uint8ClampedArray) return serializeTypedArray("U", value); - if (value instanceof Int16Array) return serializeTypedArray("S", value); - if (value instanceof Uint16Array) return serializeTypedArray("s", value); - if (value instanceof Int32Array) return serializeTypedArray("L", value); - if (value instanceof Uint32Array) return serializeTypedArray("l", value); - if (value instanceof Float32Array) return serializeTypedArray("G", value); - if (value instanceof Float64Array) return serializeTypedArray("g", value); - if (value instanceof BigInt64Array) return serializeTypedArray("M", value); - if (value instanceof BigUint64Array) return serializeTypedArray("m", value); - if (value instanceof DataView) return serializeTypedArray("V", value); - if ("function" === typeof Blob && value instanceof Blob) return null === formData && (formData = new FormData()), key = nextPartId++, formData.append(formFieldPrefix + key, value), "$B" + key.toString(16); - if (parentReference = getIteratorFn(value)) return parentReference = parentReference.call(value), parentReference === value ? (key = nextPartId++, parentReference = serializeModel(Array.from(parentReference), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$i" + key.toString(16)) : Array.from(parentReference); - if ("function" === typeof ReadableStream && value instanceof ReadableStream) return serializeReadableStream(value); - parentReference = value[ASYNC_ITERATOR]; - if ("function" === typeof parentReference) return serializeAsyncIterable(value, parentReference.call(value)); - parentReference = getPrototypeOf(value); - if (parentReference !== ObjectPrototype && (null === parentReference || null !== getPrototypeOf(parentReference))) { - if (void 0 === temporaryReferences) throw Error("Only plain objects, and a few built-ins, can be passed to Server Functions. Classes or null prototypes are not supported." + describeObjectForErrorMessage(this, key)); - return "$T"; - } - value.$$typeof === REACT_CONTEXT_TYPE ? console.error("React Context Providers cannot be passed to Server Functions from the Client.%s", describeObjectForErrorMessage(this, key)) : "Object" !== objectName(value) ? console.error("Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s", objectName(value), describeObjectForErrorMessage(this, key)) : isSimpleObject(value) ? Object.getOwnPropertySymbols && (parentReference = Object.getOwnPropertySymbols(value), 0 < parentReference.length && console.error("Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s", parentReference[0].description, describeObjectForErrorMessage(this, key))) : console.error("Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s", describeObjectForErrorMessage(this, key)); - return value; - } - if ("string" === typeof value) { - if ("Z" === value[value.length - 1] && this[key] instanceof Date) return "$D" + value; - key = "$" === value[0] ? "$" + value : value; - return key; - } - if ("boolean" === typeof value) return value; - if ("number" === typeof value) return serializeNumber(value); - if ("undefined" === typeof value) return "$undefined"; - if ("function" === typeof value) { - parentReference = knownServerReferences.get(value); - if (void 0 !== parentReference) { - key = writtenObjects.get(value); - if (void 0 !== key) return key; - key = JSON.stringify({ - id: parentReference.id, - bound: parentReference.bound - }, resolveToJSON); - null === formData && (formData = new FormData()); - parentReference = nextPartId++; - formData.set(formFieldPrefix + parentReference, key); - key = "$h" + parentReference.toString(16); - writtenObjects.set(value, key); - return key; - } - if (void 0 !== temporaryReferences && -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference)) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - throw Error("Client Functions cannot be passed directly to Server Functions. Only Functions passed from the Server can be passed back again."); - } - if ("symbol" === typeof value) { - if (void 0 !== temporaryReferences && -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference)) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - throw Error("Symbols cannot be passed to a Server Function without a temporary reference set. Pass a TemporaryReferenceSet to the options." + describeObjectForErrorMessage(this, key)); - } - if ("bigint" === typeof value) return "$n" + value.toString(10); - throw Error("Type " + typeof value + " is not supported as an argument to a Server Function."); - } - function serializeModel(model, id) { - "object" === typeof model && null !== model && (id = "$" + id.toString(16), writtenObjects.set(model, id), void 0 !== temporaryReferences && temporaryReferences.set(id, model)); - modelRoot = model; - return JSON.stringify(model, resolveToJSON); - } - var nextPartId = 1, pendingParts = 0, formData = null, writtenObjects = new WeakMap(), modelRoot = root, json = serializeModel(root, 0); - null === formData ? resolve(json) : (formData.set(formFieldPrefix + "0", json), 0 === pendingParts && resolve(formData)); - return function() { - 0 < pendingParts && (pendingParts = 0, null === formData ? resolve(json) : resolve(formData)); - }; - } - function encodeFormData(reference) { - var resolve, reject, thenable = new Promise(function(res, rej) { - resolve = res; - reject = rej; - }); - processReply(reference, "", void 0, function(body) { - if ("string" === typeof body) { - var data = new FormData(); - data.append("0", body); - body = data; - } - thenable.status = "fulfilled"; - thenable.value = body; - resolve(body); - }, function(e) { - thenable.status = "rejected"; - thenable.reason = e; - reject(e); - }); - return thenable; - } - function defaultEncodeFormAction(identifierPrefix) { - var referenceClosure = knownServerReferences.get(this); - if (!referenceClosure) throw Error("Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React."); - var data = null; - if (null !== referenceClosure.bound) { - data = boundCache.get(referenceClosure); - data || (data = encodeFormData({ - id: referenceClosure.id, - bound: referenceClosure.bound - }), boundCache.set(referenceClosure, data)); - if ("rejected" === data.status) throw data.reason; - if ("fulfilled" !== data.status) throw data; - referenceClosure = data.value; - var prefixedData = new FormData(); - referenceClosure.forEach(function(value, key) { - prefixedData.append("$ACTION_" + identifierPrefix + ":" + key, value); - }); - data = prefixedData; - referenceClosure = "$ACTION_REF_" + identifierPrefix; - } else referenceClosure = "$ACTION_ID_" + referenceClosure.id; - return { - name: referenceClosure, - method: "POST", - encType: "multipart/form-data", - data: data - }; - } - function isSignatureEqual(referenceId, numberOfBoundArgs) { - var referenceClosure = knownServerReferences.get(this); - if (!referenceClosure) throw Error("Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React."); - if (referenceClosure.id !== referenceId) return !1; - var boundPromise = referenceClosure.bound; - if (null === boundPromise) return 0 === numberOfBoundArgs; - switch(boundPromise.status){ - case "fulfilled": - return boundPromise.value.length === numberOfBoundArgs; - case "pending": - throw boundPromise; - case "rejected": - throw boundPromise.reason; - default: - throw "string" !== typeof boundPromise.status && (boundPromise.status = "pending", boundPromise.then(function(boundArgs) { - boundPromise.status = "fulfilled"; - boundPromise.value = boundArgs; - }, function(error) { - boundPromise.status = "rejected"; - boundPromise.reason = error; - })), boundPromise; - } - } - function createFakeServerFunction(name, filename, sourceMap, line, col, environmentName, innerFunction) { - name || (name = "<anonymous>"); - var encodedName = JSON.stringify(name); - 1 >= line ? (line = encodedName.length + 7, col = "s=>({" + encodedName + " ".repeat(col < line ? 0 : col - line) + ":(...args) => s(...args)})\n/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */") : col = "/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */" + "\n".repeat(line - 2) + "server=>({" + encodedName + ":\n" + " ".repeat(1 > col ? 0 : col - 1) + "(...args) => server(...args)})"; - filename.startsWith("/") && (filename = "file://" + filename); - sourceMap ? (col += "\n//# sourceURL=about://React/" + encodeURIComponent(environmentName) + "/" + encodeURI(filename) + "?s" + fakeServerFunctionIdx++, col += "\n//# sourceMappingURL=" + sourceMap) : filename && (col += "\n//# sourceURL=" + filename); - try { - return (0, eval)(col)(innerFunction)[name]; - } catch (x) { - return innerFunction; - } - } - function registerBoundServerReference(reference, id, bound, encodeFormAction) { - knownServerReferences.has(reference) || (knownServerReferences.set(reference, { - id: id, - originalBind: reference.bind, - bound: bound - }), Object.defineProperties(reference, { - $$FORM_ACTION: { - value: void 0 === encodeFormAction ? defaultEncodeFormAction : function() { - var referenceClosure = knownServerReferences.get(this); - if (!referenceClosure) throw Error("Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React."); - var boundPromise = referenceClosure.bound; - null === boundPromise && (boundPromise = Promise.resolve([])); - return encodeFormAction(referenceClosure.id, boundPromise); - } - }, - $$IS_SIGNATURE_EQUAL: { - value: isSignatureEqual - }, - bind: { - value: bind - } - })); - } - function bind() { - var referenceClosure = knownServerReferences.get(this); - if (!referenceClosure) return FunctionBind.apply(this, arguments); - var newFn = referenceClosure.originalBind.apply(this, arguments); - null != arguments[0] && console.error('Cannot bind "this" of a Server Action. Pass null or undefined as the first argument to .bind().'); - var args = ArraySlice.call(arguments, 1), boundPromise = null; - boundPromise = null !== referenceClosure.bound ? Promise.resolve(referenceClosure.bound).then(function(boundArgs) { - return boundArgs.concat(args); - }) : Promise.resolve(args); - knownServerReferences.set(newFn, { - id: referenceClosure.id, - originalBind: newFn.bind, - bound: boundPromise - }); - Object.defineProperties(newFn, { - $$FORM_ACTION: { - value: this.$$FORM_ACTION - }, - $$IS_SIGNATURE_EQUAL: { - value: isSignatureEqual - }, - bind: { - value: bind - } - }); - return newFn; - } - function createBoundServerReference(metaData, callServer, encodeFormAction, findSourceMapURL) { - function action() { - var args = Array.prototype.slice.call(arguments); - return bound ? "fulfilled" === bound.status ? callServer(id, bound.value.concat(args)) : Promise.resolve(bound).then(function(boundArgs) { - return callServer(id, boundArgs.concat(args)); - }) : callServer(id, args); - } - var id = metaData.id, bound = metaData.bound, location = metaData.location; - if (location) { - var functionName = metaData.name || "", filename = location[1], line = location[2]; - location = location[3]; - metaData = metaData.env || "Server"; - findSourceMapURL = null == findSourceMapURL ? null : findSourceMapURL(filename, metaData); - action = createFakeServerFunction(functionName, filename, findSourceMapURL, line, location, metaData, action); - } - registerBoundServerReference(action, id, bound, encodeFormAction); - return action; - } - function parseStackLocation(error) { - error = error.stack; - error.startsWith("Error: react-stack-top-frame\n") && (error = error.slice(29)); - var endOfFirst = error.indexOf("\n"); - if (-1 !== endOfFirst) { - var endOfSecond = error.indexOf("\n", endOfFirst + 1); - endOfFirst = -1 === endOfSecond ? error.slice(endOfFirst + 1) : error.slice(endOfFirst + 1, endOfSecond); - } else endOfFirst = error; - error = v8FrameRegExp.exec(endOfFirst); - if (!error && (error = jscSpiderMonkeyFrameRegExp.exec(endOfFirst), !error)) return null; - endOfFirst = error[1] || ""; - "<anonymous>" === endOfFirst && (endOfFirst = ""); - endOfSecond = error[2] || error[5] || ""; - "<anonymous>" === endOfSecond && (endOfSecond = ""); - return [ - endOfFirst, - endOfSecond, - +(error[3] || error[6]), - +(error[4] || error[7]) - ]; - } - function createServerReference$1(id, callServer, encodeFormAction, findSourceMapURL, functionName) { - function action() { - var args = Array.prototype.slice.call(arguments); - return callServer(id, args); - } - var location = parseStackLocation(Error("react-stack-top-frame")); - if (null !== location) { - var filename = location[1], line = location[2]; - location = location[3]; - findSourceMapURL = null == findSourceMapURL ? null : findSourceMapURL(filename, "Client"); - action = createFakeServerFunction(functionName || "", filename, findSourceMapURL, line, location, "Client", action); - } - registerBoundServerReference(action, id, null, encodeFormAction); - return action; - } - function getComponentNameFromType(type) { - if (null == type) return null; - if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null; - if ("string" === typeof type) return type; - switch(type){ - case REACT_FRAGMENT_TYPE: - return "Fragment"; - case REACT_PROFILER_TYPE: - return "Profiler"; - case REACT_STRICT_MODE_TYPE: - return "StrictMode"; - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_ACTIVITY_TYPE: - return "Activity"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof){ - case REACT_PORTAL_TYPE: - return "Portal"; - case REACT_CONTEXT_TYPE: - return type.displayName || "Context"; - case REACT_CONSUMER_TYPE: - return (type._context.displayName || "Context") + ".Consumer"; - case REACT_FORWARD_REF_TYPE: - var innerType = type.render; - type = type.displayName; - type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"); - return type; - case REACT_MEMO_TYPE: - return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo"; - case REACT_LAZY_TYPE: - innerType = type._payload; - type = type._init; - try { - return getComponentNameFromType(type(innerType)); - } catch (x) {} - } - return null; - } - function getArrayKind(array) { - for(var kind = 0, i = 0; i < array.length && 100 > i; i++){ - var value = array[i]; - if ("object" === typeof value && null !== value) if (isArrayImpl(value) && 2 === value.length && "string" === typeof value[0]) { - if (0 !== kind && 3 !== kind) return 1; - kind = 3; - } else return 1; - else { - if ("function" === typeof value || "string" === typeof value && 50 < value.length || 0 !== kind && 2 !== kind) return 1; - kind = 2; - } - } - return kind; - } - function addObjectToProperties(object, properties, indent, prefix) { - var addedProperties = 0, key; - for(key in object)if (hasOwnProperty.call(object, key) && "_" !== key[0] && (addedProperties++, addValueToProperties(key, object[key], properties, indent, prefix), 100 <= addedProperties)) { - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + "Only 100 properties are shown. React will not log more properties of this object.", - "" - ]); - break; - } - } - function addValueToProperties(propertyName, value, properties, indent, prefix) { - switch(typeof value){ - case "object": - if (null === value) { - value = "null"; - break; - } else { - if (value.$$typeof === REACT_ELEMENT_TYPE) { - var typeName = getComponentNameFromType(value.type) || "\u2026", key = value.key; - value = value.props; - var propsKeys = Object.keys(value), propsLength = propsKeys.length; - if (null == key && 0 === propsLength) { - value = "<" + typeName + " />"; - break; - } - if (3 > indent || 1 === propsLength && "children" === propsKeys[0] && null == key) { - value = "<" + typeName + " \u2026 />"; - break; - } - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "<" + typeName - ]); - null !== key && addValueToProperties("key", key, properties, indent + 1, prefix); - propertyName = !1; - key = 0; - for(var propKey in value)if (key++, "children" === propKey ? null != value.children && (!isArrayImpl(value.children) || 0 < value.children.length) && (propertyName = !0) : hasOwnProperty.call(value, propKey) && "_" !== propKey[0] && addValueToProperties(propKey, value[propKey], properties, indent + 1, prefix), 100 <= key) break; - properties.push([ - "", - propertyName ? ">\u2026</" + typeName + ">" : "/>" - ]); - return; - } - typeName = Object.prototype.toString.call(value); - propKey = typeName.slice(8, typeName.length - 1); - if ("Array" === propKey) { - if (typeName = 100 < value.length, key = getArrayKind(value), 2 === key || 0 === key) { - value = JSON.stringify(typeName ? value.slice(0, 100).concat("\u2026") : value); - break; - } else if (3 === key) { - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "" - ]); - for(propertyName = 0; propertyName < value.length && 100 > propertyName; propertyName++)propKey = value[propertyName], addValueToProperties(propKey[0], propKey[1], properties, indent + 1, prefix); - typeName && addValueToProperties(100..toString(), "\u2026", properties, indent + 1, prefix); - return; - } - } - if ("Promise" === propKey) { - if ("fulfilled" === value.status) { - if (typeName = properties.length, addValueToProperties(propertyName, value.value, properties, indent, prefix), properties.length > typeName) { - properties = properties[typeName]; - properties[1] = "Promise<" + (properties[1] || "Object") + ">"; - return; - } - } else if ("rejected" === value.status && (typeName = properties.length, addValueToProperties(propertyName, value.reason, properties, indent, prefix), properties.length > typeName)) { - properties = properties[typeName]; - properties[1] = "Rejected Promise<" + properties[1] + ">"; - return; - } - properties.push([ - "\u00a0\u00a0".repeat(indent) + propertyName, - "Promise" - ]); - return; - } - "Object" === propKey && (typeName = Object.getPrototypeOf(value)) && "function" === typeof typeName.constructor && (propKey = typeName.constructor.name); - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "Object" === propKey ? 3 > indent ? "" : "\u2026" : propKey - ]); - 3 > indent && addObjectToProperties(value, properties, indent + 1, prefix); - return; - } - case "function": - value = "" === value.name ? "() => {}" : value.name + "() {}"; - break; - case "string": - value = "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects." === value ? "\u2026" : JSON.stringify(value); - break; - case "undefined": - value = "undefined"; - break; - case "boolean": - value = value ? "true" : "false"; - break; - default: - value = String(value); - } - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - value - ]); - } - function getIODescription(value) { - try { - switch(typeof value){ - case "function": - return value.name || ""; - case "object": - if (null === value) return ""; - if (value instanceof Error) return String(value.message); - if ("string" === typeof value.url) return value.url; - if ("string" === typeof value.href) return value.href; - if ("string" === typeof value.src) return value.src; - if ("string" === typeof value.currentSrc) return value.currentSrc; - if ("string" === typeof value.command) return value.command; - if ("object" === typeof value.request && null !== value.request && "string" === typeof value.request.url) return value.request.url; - if ("object" === typeof value.response && null !== value.response && "string" === typeof value.response.url) return value.response.url; - if ("string" === typeof value.id || "number" === typeof value.id || "bigint" === typeof value.id) return String(value.id); - if ("string" === typeof value.name) return value.name; - var str = value.toString(); - return str.startsWith("[object ") || 5 > str.length || 500 < str.length ? "" : str; - case "string": - return 5 > value.length || 500 < value.length ? "" : value; - case "number": - case "bigint": - return String(value); - default: - return ""; - } - } catch (x) { - return ""; - } - } - function markAllTracksInOrder() { - supportsUserTiming && (console.timeStamp("Server Requests Track", 0.001, 0.001, "Server Requests \u269b", void 0, "primary-light"), console.timeStamp("Server Components Track", 0.001, 0.001, "Primary", "Server Components \u269b", "primary-light")); - } - function getIOColor(functionName) { - switch(functionName.charCodeAt(0) % 3){ - case 0: - return "tertiary-light"; - case 1: - return "tertiary"; - default: - return "tertiary-dark"; - } - } - function getIOLongName(ioInfo, description, env, rootEnv) { - ioInfo = ioInfo.name; - description = "" === description ? ioInfo : ioInfo + " (" + description + ")"; - return env === rootEnv || void 0 === env ? description : description + " [" + env + "]"; - } - function getIOShortName(ioInfo, description, env, rootEnv) { - ioInfo = ioInfo.name; - env = env === rootEnv || void 0 === env ? "" : " [" + env + "]"; - var desc = ""; - rootEnv = 30 - ioInfo.length - env.length; - if (1 < rootEnv) { - var l = description.length; - if (0 < l && l <= rootEnv) desc = " (" + description + ")"; - else if (description.startsWith("http://") || description.startsWith("https://") || description.startsWith("/")) { - var queryIdx = description.indexOf("?"); - -1 === queryIdx && (queryIdx = description.length); - 47 === description.charCodeAt(queryIdx - 1) && queryIdx--; - desc = description.lastIndexOf("/", queryIdx - 1); - queryIdx - desc < rootEnv ? desc = " (\u2026" + description.slice(desc, queryIdx) + ")" : (l = description.slice(desc, desc + rootEnv / 2), description = description.slice(queryIdx - rootEnv / 2, queryIdx), desc = " (" + (0 < desc ? "\u2026" : "") + l + "\u2026" + description + ")"); - } - } - return ioInfo + desc + env; - } - function logComponentAwait(asyncInfo, trackIdx, startTime, endTime, rootEnv, value) { - if (supportsUserTiming && 0 < endTime) { - var description = getIODescription(value), name = getIOShortName(asyncInfo.awaited, description, asyncInfo.env, rootEnv), entryName = "await " + name; - name = getIOColor(name); - var debugTask = asyncInfo.debugTask || asyncInfo.awaited.debugTask; - if (debugTask) { - var properties = []; - "object" === typeof value && null !== value ? addObjectToProperties(value, properties, 0, "") : void 0 !== value && addValueToProperties("awaited value", value, properties, 0, ""); - asyncInfo = getIOLongName(asyncInfo.awaited, description, asyncInfo.env, rootEnv); - debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: name, - track: trackNames[trackIdx], - trackGroup: "Server Components \u269b", - properties: properties, - tooltipText: asyncInfo - } - } - })); - performance.clearMeasures(entryName); - } else console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, trackNames[trackIdx], "Server Components \u269b", name); - } - } - function logIOInfoErrored(ioInfo, rootEnv, error) { - var startTime = ioInfo.start, endTime = ioInfo.end; - if (supportsUserTiming && 0 <= endTime) { - var description = getIODescription(error), entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv), debugTask = ioInfo.debugTask; - entryName = "\u200b" + entryName; - debugTask ? (error = [ - [ - "rejected with", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ] - ], ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv) + " Rejected", debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: "error", - track: "Server Requests \u269b", - properties: error, - tooltipText: ioInfo - } - } - })), performance.clearMeasures(entryName)) : console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, "Server Requests \u269b", void 0, "error"); - } - } - function logIOInfo(ioInfo, rootEnv, value) { - var startTime = ioInfo.start, endTime = ioInfo.end; - if (supportsUserTiming && 0 <= endTime) { - var description = getIODescription(value), entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv), color = getIOColor(entryName), debugTask = ioInfo.debugTask; - entryName = "\u200b" + entryName; - if (debugTask) { - var properties = []; - "object" === typeof value && null !== value ? addObjectToProperties(value, properties, 0, "") : void 0 !== value && addValueToProperties("Resolved", value, properties, 0, ""); - ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv); - debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: color, - track: "Server Requests \u269b", - properties: properties, - tooltipText: ioInfo - } - } - })); - performance.clearMeasures(entryName); - } else console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, "Server Requests \u269b", void 0, color); - } - } - function prepareStackTrace(error, structuredStackTrace) { - error = (error.name || "Error") + ": " + (error.message || ""); - for(var i = 0; i < structuredStackTrace.length; i++)error += "\n at " + structuredStackTrace[i].toString(); - return error; - } - function ReactPromise(status, value, reason) { - this.status = status; - this.value = value; - this.reason = reason; - this._children = []; - this._debugChunk = null; - this._debugInfo = []; - } - function unwrapWeakResponse(weakResponse) { - weakResponse = weakResponse.weak.deref(); - if (void 0 === weakResponse) throw Error("We did not expect to receive new data after GC:ing the response."); - return weakResponse; - } - function closeDebugChannel(debugChannel) { - debugChannel.callback && debugChannel.callback(""); - } - function readChunk(chunk) { - switch(chunk.status){ - case "resolved_model": - initializeModelChunk(chunk); - break; - case "resolved_module": - initializeModuleChunk(chunk); - } - switch(chunk.status){ - case "fulfilled": - return chunk.value; - case "pending": - case "blocked": - case "halted": - throw chunk; - default: - throw chunk.reason; - } - } - function getRoot(weakResponse) { - weakResponse = unwrapWeakResponse(weakResponse); - return getChunk(weakResponse, 0); - } - function createPendingChunk(response) { - 0 === response._pendingChunks++ && (response._weakResponse.response = response, null !== response._pendingInitialRender && (clearTimeout(response._pendingInitialRender), response._pendingInitialRender = null)); - return new ReactPromise("pending", null, null); - } - function releasePendingChunk(response, chunk) { - "pending" === chunk.status && 0 === --response._pendingChunks && (response._weakResponse.response = null, response._pendingInitialRender = setTimeout(flushInitialRenderPerformance.bind(null, response), 100)); - } - function filterDebugInfo(response, value) { - if (null !== response._debugEndTime) { - response = response._debugEndTime - performance.timeOrigin; - for(var debugInfo = [], i = 0; i < value._debugInfo.length; i++){ - var info = value._debugInfo[i]; - if ("number" === typeof info.time && info.time > response) break; - debugInfo.push(info); - } - value._debugInfo = debugInfo; - } - } - function moveDebugInfoFromChunkToInnerValue(chunk, value) { - value = resolveLazy(value); - "object" !== typeof value || null === value || !isArrayImpl(value) && "function" !== typeof value[ASYNC_ITERATOR] && value.$$typeof !== REACT_ELEMENT_TYPE && value.$$typeof !== REACT_LAZY_TYPE || (chunk = chunk._debugInfo.splice(0), isArrayImpl(value._debugInfo) ? value._debugInfo.unshift.apply(value._debugInfo, chunk) : Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: chunk - })); - } - function wakeChunk(response, listeners, value, chunk) { - for(var i = 0; i < listeners.length; i++){ - var listener = listeners[i]; - "function" === typeof listener ? listener(value) : fulfillReference(response, listener, value, chunk); - } - filterDebugInfo(response, chunk); - moveDebugInfoFromChunkToInnerValue(chunk, value); - } - function rejectChunk(response, listeners, error) { - for(var i = 0; i < listeners.length; i++){ - var listener = listeners[i]; - "function" === typeof listener ? listener(error) : rejectReference(response, listener.handler, error); - } - } - function resolveBlockedCycle(resolvedChunk, reference) { - var referencedChunk = reference.handler.chunk; - if (null === referencedChunk) return null; - if (referencedChunk === resolvedChunk) return reference.handler; - reference = referencedChunk.value; - if (null !== reference) for(referencedChunk = 0; referencedChunk < reference.length; referencedChunk++){ - var listener = reference[referencedChunk]; - if ("function" !== typeof listener && (listener = resolveBlockedCycle(resolvedChunk, listener), null !== listener)) return listener; - } - return null; - } - function wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners) { - switch(chunk.status){ - case "fulfilled": - wakeChunk(response, resolveListeners, chunk.value, chunk); - break; - case "blocked": - for(var i = 0; i < resolveListeners.length; i++){ - var listener = resolveListeners[i]; - if ("function" !== typeof listener) { - var cyclicHandler = resolveBlockedCycle(chunk, listener); - if (null !== cyclicHandler) switch(fulfillReference(response, listener, cyclicHandler.value, chunk), resolveListeners.splice(i, 1), i--, null !== rejectListeners && (listener = rejectListeners.indexOf(listener), -1 !== listener && rejectListeners.splice(listener, 1)), chunk.status){ - case "fulfilled": - wakeChunk(response, resolveListeners, chunk.value, chunk); - return; - case "rejected": - null !== rejectListeners && rejectChunk(response, rejectListeners, chunk.reason); - return; - } - } - } - case "pending": - if (chunk.value) for(response = 0; response < resolveListeners.length; response++)chunk.value.push(resolveListeners[response]); - else chunk.value = resolveListeners; - if (chunk.reason) { - if (rejectListeners) for(resolveListeners = 0; resolveListeners < rejectListeners.length; resolveListeners++)chunk.reason.push(rejectListeners[resolveListeners]); - } else chunk.reason = rejectListeners; - break; - case "rejected": - rejectListeners && rejectChunk(response, rejectListeners, chunk.reason); - } - } - function triggerErrorOnChunk(response, chunk, error) { - if ("pending" !== chunk.status && "blocked" !== chunk.status) chunk.reason.error(error); - else { - releasePendingChunk(response, chunk); - var listeners = chunk.reason; - if ("pending" === chunk.status && null != chunk._debugChunk) { - var prevHandler = initializingHandler, prevChunk = initializingChunk; - initializingHandler = null; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - try { - initializeDebugChunk(response, chunk); - } finally{ - initializingHandler = prevHandler, initializingChunk = prevChunk; - } - } - chunk.status = "rejected"; - chunk.reason = error; - null !== listeners && rejectChunk(response, listeners, error); - } - } - function createResolvedModelChunk(response, value) { - return new ReactPromise("resolved_model", value, response); - } - function createResolvedIteratorResultChunk(response, value, done) { - return new ReactPromise("resolved_model", (done ? '{"done":true,"value":' : '{"done":false,"value":') + value + "}", response); - } - function resolveIteratorResultChunk(response, chunk, value, done) { - resolveModelChunk(response, chunk, (done ? '{"done":true,"value":' : '{"done":false,"value":') + value + "}"); - } - function resolveModelChunk(response, chunk, value) { - if ("pending" !== chunk.status) chunk.reason.enqueueModel(value); - else { - releasePendingChunk(response, chunk); - var resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "resolved_model"; - chunk.value = value; - chunk.reason = response; - null !== resolveListeners && (initializeModelChunk(chunk), wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners)); - } - } - function resolveModuleChunk(response, chunk, value) { - if ("pending" === chunk.status || "blocked" === chunk.status) { - releasePendingChunk(response, chunk); - var resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "resolved_module"; - chunk.value = value; - chunk.reason = null; - value = []; - null !== value && chunk._debugInfo.push.apply(chunk._debugInfo, value); - null !== resolveListeners && (initializeModuleChunk(chunk), wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners)); - } - } - function initializeDebugChunk(response, chunk) { - var debugChunk = chunk._debugChunk; - if (null !== debugChunk) { - var debugInfo = chunk._debugInfo; - try { - if ("resolved_model" === debugChunk.status) { - for(var idx = debugInfo.length, c = debugChunk._debugChunk; null !== c;)"fulfilled" !== c.status && idx++, c = c._debugChunk; - initializeModelChunk(debugChunk); - switch(debugChunk.status){ - case "fulfilled": - debugInfo[idx] = initializeDebugInfo(response, debugChunk.value); - break; - case "blocked": - case "pending": - waitForReference(debugChunk, debugInfo, "" + idx, response, initializeDebugInfo, [ - "" - ], !0); - break; - default: - throw debugChunk.reason; - } - } else switch(debugChunk.status){ - case "fulfilled": - break; - case "blocked": - case "pending": - waitForReference(debugChunk, {}, "debug", response, initializeDebugInfo, [ - "" - ], !0); - break; - default: - throw debugChunk.reason; - } - } catch (error) { - triggerErrorOnChunk(response, chunk, error); - } - } - } - function initializeModelChunk(chunk) { - var prevHandler = initializingHandler, prevChunk = initializingChunk; - initializingHandler = null; - var resolvedModel = chunk.value, response = chunk.reason; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - initializeDebugChunk(response, chunk); - try { - var value = JSON.parse(resolvedModel, response._fromJSON), resolveListeners = chunk.value; - if (null !== resolveListeners) for(chunk.value = null, chunk.reason = null, resolvedModel = 0; resolvedModel < resolveListeners.length; resolvedModel++){ - var listener = resolveListeners[resolvedModel]; - "function" === typeof listener ? listener(value) : fulfillReference(response, listener, value, chunk); - } - if (null !== initializingHandler) { - if (initializingHandler.errored) throw initializingHandler.reason; - if (0 < initializingHandler.deps) { - initializingHandler.value = value; - initializingHandler.chunk = chunk; - return; - } - } - chunk.status = "fulfilled"; - chunk.value = value; - filterDebugInfo(response, chunk); - moveDebugInfoFromChunkToInnerValue(chunk, value); - } catch (error) { - chunk.status = "rejected", chunk.reason = error; - } finally{ - initializingHandler = prevHandler, initializingChunk = prevChunk; - } - } - function initializeModuleChunk(chunk) { - try { - var value = requireModule(chunk.value); - chunk.status = "fulfilled"; - chunk.value = value; - } catch (error) { - chunk.status = "rejected", chunk.reason = error; - } - } - function reportGlobalError(weakResponse, error) { - if (void 0 !== weakResponse.weak.deref()) { - var response = unwrapWeakResponse(weakResponse); - response._closed = !0; - response._closedReason = error; - response._chunks.forEach(function(chunk) { - "pending" === chunk.status ? triggerErrorOnChunk(response, chunk, error) : "fulfilled" === chunk.status && null !== chunk.reason && chunk.reason.error(error); - }); - weakResponse = response._debugChannel; - void 0 !== weakResponse && (closeDebugChannel(weakResponse), response._debugChannel = void 0, null !== debugChannelRegistry && debugChannelRegistry.unregister(response)); - } - } - function nullRefGetter() { - return null; - } - function getTaskName(type) { - if (type === REACT_FRAGMENT_TYPE) return "<>"; - if ("function" === typeof type) return '"use client"'; - if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE) return type._init === readChunk ? '"use client"' : "<...>"; - try { - var name = getComponentNameFromType(type); - return name ? "<" + name + ">" : "<...>"; - } catch (x) { - return "<...>"; - } - } - function initializeElement(response, element, lazyNode) { - var stack = element._debugStack, owner = element._owner; - null === owner && (element._owner = response._debugRootOwner); - var env = response._rootEnvironmentName; - null !== owner && null != owner.env && (env = owner.env); - var normalizedStackTrace = null; - null === owner && null != response._debugRootStack ? normalizedStackTrace = response._debugRootStack : null !== stack && (normalizedStackTrace = createFakeJSXCallStackInDEV(response, stack, env)); - element._debugStack = normalizedStackTrace; - normalizedStackTrace = null; - supportsCreateTask && null !== stack && (normalizedStackTrace = console.createTask.bind(console, getTaskName(element.type)), stack = buildFakeCallStack(response, stack, env, !1, normalizedStackTrace), env = null === owner ? null : initializeFakeTask(response, owner), null === env ? (env = response._debugRootTask, normalizedStackTrace = null != env ? env.run(stack) : stack()) : normalizedStackTrace = env.run(stack)); - element._debugTask = normalizedStackTrace; - null !== owner && initializeFakeStack(response, owner); - null !== lazyNode && (lazyNode._store && lazyNode._store.validated && !element._store.validated && (element._store.validated = lazyNode._store.validated), "fulfilled" === lazyNode._payload.status && lazyNode._debugInfo && (response = lazyNode._debugInfo.splice(0), element._debugInfo ? element._debugInfo.unshift.apply(element._debugInfo, response) : Object.defineProperty(element, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: response - }))); - Object.freeze(element.props); - } - function createLazyChunkWrapper(chunk, validated) { - var lazyType = { - $$typeof: REACT_LAZY_TYPE, - _payload: chunk, - _init: readChunk - }; - lazyType._debugInfo = chunk._debugInfo; - lazyType._store = { - validated: validated - }; - return lazyType; - } - function getChunk(response, id) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk || (chunk = response._closed ? new ReactPromise("rejected", null, response._closedReason) : createPendingChunk(response), chunks.set(id, chunk)); - return chunk; - } - function fulfillReference(response, reference, value, fulfilledChunk) { - var handler = reference.handler, parentObject = reference.parentObject, key = reference.key, map = reference.map, path = reference.path; - try { - for(var i = 1; i < path.length; i++){ - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var referencedChunk = value._payload; - if (referencedChunk === handler.chunk) value = handler.value; - else { - switch(referencedChunk.status){ - case "resolved_model": - initializeModelChunk(referencedChunk); - break; - case "resolved_module": - initializeModuleChunk(referencedChunk); - } - switch(referencedChunk.status){ - case "fulfilled": - value = referencedChunk.value; - continue; - case "blocked": - var cyclicHandler = resolveBlockedCycle(referencedChunk, reference); - if (null !== cyclicHandler) { - value = cyclicHandler.value; - continue; - } - case "pending": - path.splice(0, i - 1); - null === referencedChunk.value ? referencedChunk.value = [ - reference - ] : referencedChunk.value.push(reference); - null === referencedChunk.reason ? referencedChunk.reason = [ - reference - ] : referencedChunk.reason.push(reference); - return; - case "halted": - return; - default: - rejectReference(response, reference.handler, referencedChunk.reason); - return; - } - } - } - var name = path[i]; - if ("object" === typeof value && null !== value && hasOwnProperty.call(value, name)) value = value[name]; - else throw Error("Invalid reference."); - } - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var _referencedChunk = value._payload; - if (_referencedChunk === handler.chunk) value = handler.value; - else { - switch(_referencedChunk.status){ - case "resolved_model": - initializeModelChunk(_referencedChunk); - break; - case "resolved_module": - initializeModuleChunk(_referencedChunk); - } - switch(_referencedChunk.status){ - case "fulfilled": - value = _referencedChunk.value; - continue; - } - break; - } - } - var mappedValue = map(response, value, parentObject, key); - "__proto__" !== key && (parentObject[key] = mappedValue); - "" === key && null === handler.value && (handler.value = mappedValue); - if (parentObject[0] === REACT_ELEMENT_TYPE && "object" === typeof handler.value && null !== handler.value && handler.value.$$typeof === REACT_ELEMENT_TYPE) { - var element = handler.value; - switch(key){ - case "3": - transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - element.props = mappedValue; - break; - case "4": - element._owner = mappedValue; - break; - case "5": - element._debugStack = mappedValue; - break; - default: - transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - } - } else reference.isDebug || transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - } catch (error) { - rejectReference(response, reference.handler, error); - return; - } - handler.deps--; - 0 === handler.deps && (reference = handler.chunk, null !== reference && "blocked" === reference.status && (value = reference.value, reference.status = "fulfilled", reference.value = handler.value, reference.reason = handler.reason, null !== value ? wakeChunk(response, value, handler.value, reference) : (handler = handler.value, filterDebugInfo(response, reference), moveDebugInfoFromChunkToInnerValue(reference, handler)))); - } - function rejectReference(response, handler, error) { - if (!handler.errored) { - var blockedValue = handler.value; - handler.errored = !0; - handler.value = null; - handler.reason = error; - handler = handler.chunk; - if (null !== handler && "blocked" === handler.status) { - if ("object" === typeof blockedValue && null !== blockedValue && blockedValue.$$typeof === REACT_ELEMENT_TYPE) { - var erroredComponent = { - name: getComponentNameFromType(blockedValue.type) || "", - owner: blockedValue._owner - }; - erroredComponent.debugStack = blockedValue._debugStack; - supportsCreateTask && (erroredComponent.debugTask = blockedValue._debugTask); - handler._debugInfo.push(erroredComponent); - } - triggerErrorOnChunk(response, handler, error); - } - } - } - function waitForReference(referencedChunk, parentObject, key, response, map, path, isAwaitingDebugInfo) { - if (!(void 0 !== response._debugChannel && response._debugChannel.hasReadable || "pending" !== referencedChunk.status || parentObject[0] !== REACT_ELEMENT_TYPE || "4" !== key && "5" !== key)) return null; - initializingHandler ? (response = initializingHandler, response.deps++) : response = initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }; - parentObject = { - handler: response, - parentObject: parentObject, - key: key, - map: map, - path: path - }; - parentObject.isDebug = isAwaitingDebugInfo; - null === referencedChunk.value ? referencedChunk.value = [ - parentObject - ] : referencedChunk.value.push(parentObject); - null === referencedChunk.reason ? referencedChunk.reason = [ - parentObject - ] : referencedChunk.reason.push(parentObject); - return null; - } - function loadServerReference(response, metaData, parentObject, key) { - if (!response._serverReferenceConfig) return createBoundServerReference(metaData, response._callServer, response._encodeFormAction, response._debugFindSourceMapURL); - var serverReference = resolveServerReference(response._serverReferenceConfig, metaData.id), promise = preloadModule(serverReference); - if (promise) metaData.bound && (promise = Promise.all([ - promise, - metaData.bound - ])); - else if (metaData.bound) promise = Promise.resolve(metaData.bound); - else return promise = requireModule(serverReference), registerBoundServerReference(promise, metaData.id, metaData.bound, response._encodeFormAction), promise; - if (initializingHandler) { - var handler = initializingHandler; - handler.deps++; - } else handler = initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }; - promise.then(function() { - var resolvedValue = requireModule(serverReference); - if (metaData.bound) { - var boundArgs = metaData.bound.value.slice(0); - boundArgs.unshift(null); - resolvedValue = resolvedValue.bind.apply(resolvedValue, boundArgs); - } - registerBoundServerReference(resolvedValue, metaData.id, metaData.bound, response._encodeFormAction); - "__proto__" !== key && (parentObject[key] = resolvedValue); - "" === key && null === handler.value && (handler.value = resolvedValue); - if (parentObject[0] === REACT_ELEMENT_TYPE && "object" === typeof handler.value && null !== handler.value && handler.value.$$typeof === REACT_ELEMENT_TYPE) switch(boundArgs = handler.value, key){ - case "3": - boundArgs.props = resolvedValue; - break; - case "4": - boundArgs._owner = resolvedValue; - } - handler.deps--; - 0 === handler.deps && (resolvedValue = handler.chunk, null !== resolvedValue && "blocked" === resolvedValue.status && (boundArgs = resolvedValue.value, resolvedValue.status = "fulfilled", resolvedValue.value = handler.value, resolvedValue.reason = null, null !== boundArgs ? wakeChunk(response, boundArgs, handler.value, resolvedValue) : (boundArgs = handler.value, filterDebugInfo(response, resolvedValue), moveDebugInfoFromChunkToInnerValue(resolvedValue, boundArgs)))); - }, function(error) { - if (!handler.errored) { - var blockedValue = handler.value; - handler.errored = !0; - handler.value = null; - handler.reason = error; - var chunk = handler.chunk; - if (null !== chunk && "blocked" === chunk.status) { - if ("object" === typeof blockedValue && null !== blockedValue && blockedValue.$$typeof === REACT_ELEMENT_TYPE) { - var erroredComponent = { - name: getComponentNameFromType(blockedValue.type) || "", - owner: blockedValue._owner - }; - erroredComponent.debugStack = blockedValue._debugStack; - supportsCreateTask && (erroredComponent.debugTask = blockedValue._debugTask); - chunk._debugInfo.push(erroredComponent); - } - triggerErrorOnChunk(response, chunk, error); - } - } - }); - return null; - } - function resolveLazy(value) { - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var payload = value._payload; - if ("fulfilled" === payload.status) value = payload.value; - else break; - } - return value; - } - function transferReferencedDebugInfo(parentChunk, referencedChunk) { - if (null !== parentChunk) { - referencedChunk = referencedChunk._debugInfo; - parentChunk = parentChunk._debugInfo; - for(var i = 0; i < referencedChunk.length; ++i){ - var debugInfoEntry = referencedChunk[i]; - null == debugInfoEntry.name && parentChunk.push(debugInfoEntry); - } - } - } - function getOutlinedModel(response, reference, parentObject, key, map) { - var path = reference.split(":"); - reference = parseInt(path[0], 16); - reference = getChunk(response, reference); - null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(reference); - switch(reference.status){ - case "resolved_model": - initializeModelChunk(reference); - break; - case "resolved_module": - initializeModuleChunk(reference); - } - switch(reference.status){ - case "fulfilled": - for(var value = reference.value, i = 1; i < path.length; i++){ - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - value = value._payload; - switch(value.status){ - case "resolved_model": - initializeModelChunk(value); - break; - case "resolved_module": - initializeModuleChunk(value); - } - switch(value.status){ - case "fulfilled": - value = value.value; - break; - case "blocked": - case "pending": - return waitForReference(value, parentObject, key, response, map, path.slice(i - 1), !1); - case "halted": - return initializingHandler ? (parentObject = initializingHandler, parentObject.deps++) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }, null; - default: - return initializingHandler ? (initializingHandler.errored = !0, initializingHandler.value = null, initializingHandler.reason = value.reason) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: value.reason, - deps: 0, - errored: !0 - }, null; - } - } - value = value[path[i]]; - } - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - path = value._payload; - switch(path.status){ - case "resolved_model": - initializeModelChunk(path); - break; - case "resolved_module": - initializeModuleChunk(path); - } - switch(path.status){ - case "fulfilled": - value = path.value; - continue; - } - break; - } - response = map(response, value, parentObject, key); - (parentObject[0] !== REACT_ELEMENT_TYPE || "4" !== key && "5" !== key) && transferReferencedDebugInfo(initializingChunk, reference); - return response; - case "pending": - case "blocked": - return waitForReference(reference, parentObject, key, response, map, path, !1); - case "halted": - return initializingHandler ? (parentObject = initializingHandler, parentObject.deps++) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }, null; - default: - return initializingHandler ? (initializingHandler.errored = !0, initializingHandler.value = null, initializingHandler.reason = reference.reason) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: reference.reason, - deps: 0, - errored: !0 - }, null; - } - } - function createMap(response, model) { - return new Map(model); - } - function createSet(response, model) { - return new Set(model); - } - function createBlob(response, model) { - return new Blob(model.slice(1), { - type: model[0] - }); - } - function createFormData(response, model) { - response = new FormData(); - for(var i = 0; i < model.length; i++)response.append(model[i][0], model[i][1]); - return response; - } - function applyConstructor(response, model, parentObject) { - Object.setPrototypeOf(parentObject, model.prototype); - } - function defineLazyGetter(response, chunk, parentObject, key) { - "__proto__" !== key && Object.defineProperty(parentObject, key, { - get: function() { - "resolved_model" === chunk.status && initializeModelChunk(chunk); - switch(chunk.status){ - case "fulfilled": - return chunk.value; - case "rejected": - throw chunk.reason; - } - return "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects."; - }, - enumerable: !0, - configurable: !1 - }); - return null; - } - function extractIterator(response, model) { - return model[Symbol.iterator](); - } - function createModel(response, model) { - return model; - } - function getInferredFunctionApproximate(code) { - code = code.startsWith("Object.defineProperty(") ? code.slice(22) : code.startsWith("(") ? code.slice(1) : code; - if (code.startsWith("async function")) { - var idx = code.indexOf("(", 14); - if (-1 !== idx) return code = code.slice(14, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":async function(){}})")[code]; - } else if (code.startsWith("function")) { - if (idx = code.indexOf("(", 8), -1 !== idx) return code = code.slice(8, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":function(){}})")[code]; - } else if (code.startsWith("class") && (idx = code.indexOf("{", 5), -1 !== idx)) return code = code.slice(5, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":class{}})")[code]; - return function() {}; - } - function parseModelString(response, parentObject, key, value) { - if ("$" === value[0]) { - if ("$" === value) return null !== initializingHandler && "0" === key && (initializingHandler = { - parent: initializingHandler, - chunk: null, - value: null, - reason: null, - deps: 0, - errored: !1 - }), REACT_ELEMENT_TYPE; - switch(value[1]){ - case "$": - return value.slice(1); - case "L": - return parentObject = parseInt(value.slice(2), 16), response = getChunk(response, parentObject), null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(response), createLazyChunkWrapper(response, 0); - case "@": - return parentObject = parseInt(value.slice(2), 16), response = getChunk(response, parentObject), null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(response), response; - case "S": - return Symbol.for(value.slice(2)); - case "h": - var ref = value.slice(2); - return getOutlinedModel(response, ref, parentObject, key, loadServerReference); - case "T": - parentObject = "$" + value.slice(2); - response = response._tempRefs; - if (null == response) throw Error("Missing a temporary reference set but the RSC response returned a temporary reference. Pass a temporaryReference option with the set that was used with the reply."); - return response.get(parentObject); - case "Q": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createMap); - case "W": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createSet); - case "B": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createBlob); - case "K": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createFormData); - case "Z": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, resolveErrorDev); - case "i": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, extractIterator); - case "I": - return Infinity; - case "-": - return "$-0" === value ? -0 : -Infinity; - case "N": - return NaN; - case "u": - return; - case "D": - return new Date(Date.parse(value.slice(2))); - case "n": - return BigInt(value.slice(2)); - case "P": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, applyConstructor); - case "E": - response = value.slice(2); - try { - if (!mightHaveStaticConstructor.test(response)) return (0, eval)(response); - } catch (x) {} - try { - if (ref = getInferredFunctionApproximate(response), response.startsWith("Object.defineProperty(")) { - var idx = response.lastIndexOf(',"name",{value:"'); - if (-1 !== idx) { - var name = JSON.parse(response.slice(idx + 16 - 1, response.length - 2)); - Object.defineProperty(ref, "name", { - value: name - }); - } - } - } catch (_) { - ref = function() {}; - } - return ref; - case "Y": - if (2 < value.length && (ref = response._debugChannel && response._debugChannel.callback)) { - if ("@" === value[2]) return parentObject = value.slice(3), key = parseInt(parentObject, 16), response._chunks.has(key) || ref("P:" + parentObject), getChunk(response, key); - value = value.slice(2); - idx = parseInt(value, 16); - response._chunks.has(idx) || ref("Q:" + value); - ref = getChunk(response, idx); - return "fulfilled" === ref.status ? ref.value : defineLazyGetter(response, ref, parentObject, key); - } - "__proto__" !== key && Object.defineProperty(parentObject, key, { - get: function() { - return "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects."; - }, - enumerable: !0, - configurable: !1 - }); - return null; - default: - return ref = value.slice(1), getOutlinedModel(response, ref, parentObject, key, createModel); - } - } - return value; - } - function missingCall() { - throw Error('Trying to call a function from "use server" but the callServer option was not implemented in your router runtime.'); - } - function markIOStarted() { - this._debugIOStarted = !0; - } - function ResponseInstance(bundlerConfig, serverReferenceConfig, moduleLoading, callServer, encodeFormAction, nonce, temporaryReferences, findSourceMapURL, replayConsole, environmentName, debugStartTime, debugEndTime, debugChannel) { - var chunks = new Map(); - this._bundlerConfig = bundlerConfig; - this._serverReferenceConfig = serverReferenceConfig; - this._moduleLoading = moduleLoading; - this._callServer = void 0 !== callServer ? callServer : missingCall; - this._encodeFormAction = encodeFormAction; - this._nonce = nonce; - this._chunks = chunks; - this._stringDecoder = new util.TextDecoder(); - this._fromJSON = null; - this._closed = !1; - this._closedReason = null; - this._tempRefs = temporaryReferences; - this._timeOrigin = 0; - this._pendingInitialRender = null; - this._pendingChunks = 0; - this._weakResponse = { - weak: new WeakRef(this), - response: this - }; - this._debugRootOwner = bundlerConfig = void 0 === ReactSharedInteralsServer || null === ReactSharedInteralsServer.A ? null : ReactSharedInteralsServer.A.getOwner(); - this._debugRootStack = null !== bundlerConfig ? Error("react-stack-top-frame") : null; - environmentName = void 0 === environmentName ? "Server" : environmentName; - supportsCreateTask && (this._debugRootTask = console.createTask('"use ' + environmentName.toLowerCase() + '"')); - this._debugStartTime = null == debugStartTime ? performance.now() : debugStartTime; - this._debugIOStarted = !1; - setTimeout(markIOStarted.bind(this), 0); - this._debugEndTime = null == debugEndTime ? null : debugEndTime; - this._debugFindSourceMapURL = findSourceMapURL; - this._debugChannel = debugChannel; - this._blockedConsole = null; - this._replayConsole = replayConsole; - this._rootEnvironmentName = environmentName; - debugChannel && (null === debugChannelRegistry ? (closeDebugChannel(debugChannel), this._debugChannel = void 0) : debugChannelRegistry.register(this, debugChannel, this)); - replayConsole && markAllTracksInOrder(); - this._fromJSON = createFromJSONCallback(this); - } - function createStreamState(weakResponse, streamDebugValue) { - var streamState = { - _rowState: 0, - _rowID: 0, - _rowTag: 0, - _rowLength: 0, - _buffer: [] - }; - weakResponse = unwrapWeakResponse(weakResponse); - var debugValuePromise = Promise.resolve(streamDebugValue); - debugValuePromise.status = "fulfilled"; - debugValuePromise.value = streamDebugValue; - streamState._debugInfo = { - name: "rsc stream", - start: weakResponse._debugStartTime, - end: weakResponse._debugStartTime, - byteSize: 0, - value: debugValuePromise, - owner: weakResponse._debugRootOwner, - debugStack: weakResponse._debugRootStack, - debugTask: weakResponse._debugRootTask - }; - streamState._debugTargetChunkSize = MIN_CHUNK_SIZE; - return streamState; - } - function incrementChunkDebugInfo(streamState, chunkLength) { - var debugInfo = streamState._debugInfo, endTime = performance.now(), previousEndTime = debugInfo.end; - chunkLength = debugInfo.byteSize + chunkLength; - chunkLength > streamState._debugTargetChunkSize || endTime > previousEndTime + 10 ? (streamState._debugInfo = { - name: debugInfo.name, - start: debugInfo.start, - end: endTime, - byteSize: chunkLength, - value: debugInfo.value, - owner: debugInfo.owner, - debugStack: debugInfo.debugStack, - debugTask: debugInfo.debugTask - }, streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE) : (debugInfo.end = endTime, debugInfo.byteSize = chunkLength); - } - function addAsyncInfo(chunk, asyncInfo) { - var value = resolveLazy(chunk.value); - "object" !== typeof value || null === value || !isArrayImpl(value) && "function" !== typeof value[ASYNC_ITERATOR] && value.$$typeof !== REACT_ELEMENT_TYPE && value.$$typeof !== REACT_LAZY_TYPE ? chunk._debugInfo.push(asyncInfo) : isArrayImpl(value._debugInfo) ? value._debugInfo.push(asyncInfo) : Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: [ - asyncInfo - ] - }); - } - function resolveChunkDebugInfo(response, streamState, chunk) { - response._debugIOStarted && (response = { - awaited: streamState._debugInfo - }, "pending" === chunk.status || "blocked" === chunk.status ? (response = addAsyncInfo.bind(null, chunk, response), chunk.then(response, response)) : addAsyncInfo(chunk, response)); - } - function resolveBuffer(response, id, buffer, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk && "pending" !== chunk.status ? chunk.reason.enqueueValue(buffer) : (chunk && releasePendingChunk(response, chunk), buffer = new ReactPromise("fulfilled", buffer, null), resolveChunkDebugInfo(response, streamState, buffer), chunks.set(id, buffer)); - } - function resolveModule(response, id, model, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - model = JSON.parse(model, response._fromJSON); - var clientReference = resolveClientReference(response._bundlerConfig, model); - prepareDestinationWithChunks(response._moduleLoading, model[1], response._nonce); - if (model = preloadModule(clientReference)) { - if (chunk) { - releasePendingChunk(response, chunk); - var blockedChunk = chunk; - blockedChunk.status = "blocked"; - } else blockedChunk = new ReactPromise("blocked", null, null), chunks.set(id, blockedChunk); - resolveChunkDebugInfo(response, streamState, blockedChunk); - model.then(function() { - return resolveModuleChunk(response, blockedChunk, clientReference); - }, function(error) { - return triggerErrorOnChunk(response, blockedChunk, error); - }); - } else chunk ? (resolveChunkDebugInfo(response, streamState, chunk), resolveModuleChunk(response, chunk, clientReference)) : (chunk = new ReactPromise("resolved_module", clientReference, null), resolveChunkDebugInfo(response, streamState, chunk), chunks.set(id, chunk)); - } - function resolveStream(response, id, stream, controller, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - if (chunk) { - if (resolveChunkDebugInfo(response, streamState, chunk), "pending" === chunk.status) { - id = chunk.value; - if (null != chunk._debugChunk) { - streamState = initializingHandler; - chunks = initializingChunk; - initializingHandler = null; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - try { - if (initializeDebugChunk(response, chunk), null !== initializingHandler && !initializingHandler.errored && 0 < initializingHandler.deps) { - initializingHandler.value = stream; - initializingHandler.reason = controller; - initializingHandler.chunk = chunk; - return; - } - } finally{ - initializingHandler = streamState, initializingChunk = chunks; - } - } - chunk.status = "fulfilled"; - chunk.value = stream; - chunk.reason = controller; - null !== id ? wakeChunk(response, id, chunk.value, chunk) : (filterDebugInfo(response, chunk), moveDebugInfoFromChunkToInnerValue(chunk, stream)); - } - } else 0 === response._pendingChunks++ && (response._weakResponse.response = response), stream = new ReactPromise("fulfilled", stream, controller), resolveChunkDebugInfo(response, streamState, stream), chunks.set(id, stream); - } - function startReadableStream(response, id, type, streamState) { - var controller = null, closed = !1; - type = new ReadableStream({ - type: type, - start: function(c) { - controller = c; - } - }); - var previousBlockedChunk = null; - resolveStream(response, id, type, { - enqueueValue: function(value) { - null === previousBlockedChunk ? controller.enqueue(value) : previousBlockedChunk.then(function() { - controller.enqueue(value); - }); - }, - enqueueModel: function(json) { - if (null === previousBlockedChunk) { - var chunk = createResolvedModelChunk(response, json); - initializeModelChunk(chunk); - "fulfilled" === chunk.status ? controller.enqueue(chunk.value) : (chunk.then(function(v) { - return controller.enqueue(v); - }, function(e) { - return controller.error(e); - }), previousBlockedChunk = chunk); - } else { - chunk = previousBlockedChunk; - var _chunk3 = createPendingChunk(response); - _chunk3.then(function(v) { - return controller.enqueue(v); - }, function(e) { - return controller.error(e); - }); - previousBlockedChunk = _chunk3; - chunk.then(function() { - previousBlockedChunk === _chunk3 && (previousBlockedChunk = null); - resolveModelChunk(response, _chunk3, json); - }); - } - }, - close: function() { - if (!closed) if (closed = !0, null === previousBlockedChunk) controller.close(); - else { - var blockedChunk = previousBlockedChunk; - previousBlockedChunk = null; - blockedChunk.then(function() { - return controller.close(); - }); - } - }, - error: function(error) { - if (!closed) if (closed = !0, null === previousBlockedChunk) controller.error(error); - else { - var blockedChunk = previousBlockedChunk; - previousBlockedChunk = null; - blockedChunk.then(function() { - return controller.error(error); - }); - } - } - }, streamState); - } - function asyncIterator() { - return this; - } - function createIterator(next) { - next = { - next: next - }; - next[ASYNC_ITERATOR] = asyncIterator; - return next; - } - function startAsyncIterable(response, id, iterator, streamState) { - var buffer = [], closed = !1, nextWriteIndex = 0, iterable = {}; - iterable[ASYNC_ITERATOR] = function() { - var nextReadIndex = 0; - return createIterator(function(arg) { - if (void 0 !== arg) throw Error("Values cannot be passed to next() of AsyncIterables passed to Client Components."); - if (nextReadIndex === buffer.length) { - if (closed) return new ReactPromise("fulfilled", { - done: !0, - value: void 0 - }, null); - buffer[nextReadIndex] = createPendingChunk(response); - } - return buffer[nextReadIndex++]; - }); - }; - resolveStream(response, id, iterator ? iterable[ASYNC_ITERATOR]() : iterable, { - enqueueValue: function(value) { - if (nextWriteIndex === buffer.length) buffer[nextWriteIndex] = new ReactPromise("fulfilled", { - done: !1, - value: value - }, null); - else { - var chunk = buffer[nextWriteIndex], resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "fulfilled"; - chunk.value = { - done: !1, - value: value - }; - chunk.reason = null; - null !== resolveListeners && wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners); - } - nextWriteIndex++; - }, - enqueueModel: function(value) { - nextWriteIndex === buffer.length ? buffer[nextWriteIndex] = createResolvedIteratorResultChunk(response, value, !1) : resolveIteratorResultChunk(response, buffer[nextWriteIndex], value, !1); - nextWriteIndex++; - }, - close: function(value) { - if (!closed) for(closed = !0, nextWriteIndex === buffer.length ? buffer[nextWriteIndex] = createResolvedIteratorResultChunk(response, value, !0) : resolveIteratorResultChunk(response, buffer[nextWriteIndex], value, !0), nextWriteIndex++; nextWriteIndex < buffer.length;)resolveIteratorResultChunk(response, buffer[nextWriteIndex++], '"$undefined"', !0); - }, - error: function(error) { - if (!closed) for(closed = !0, nextWriteIndex === buffer.length && (buffer[nextWriteIndex] = createPendingChunk(response)); nextWriteIndex < buffer.length;)triggerErrorOnChunk(response, buffer[nextWriteIndex++], error); - } - }, streamState); - } - function resolveErrorDev(response, errorInfo) { - var name = errorInfo.name, env = errorInfo.env; - var error = buildFakeCallStack(response, errorInfo.stack, env, !1, Error.bind(null, errorInfo.message || "An error occurred in the Server Components render but no message was provided")); - var ownerTask = null; - null != errorInfo.owner && (errorInfo = errorInfo.owner.slice(1), errorInfo = getOutlinedModel(response, errorInfo, {}, "", createModel), null !== errorInfo && (ownerTask = initializeFakeTask(response, errorInfo))); - null === ownerTask ? (response = getRootTask(response, env), error = null != response ? response.run(error) : error()) : error = ownerTask.run(error); - error.name = name; - error.environmentName = env; - return error; - } - function createFakeFunction(name, filename, sourceMap, line, col, enclosingLine, enclosingCol, environmentName) { - name || (name = "<anonymous>"); - var encodedName = JSON.stringify(name); - 1 > enclosingLine ? enclosingLine = 0 : enclosingLine--; - 1 > enclosingCol ? enclosingCol = 0 : enclosingCol--; - 1 > line ? line = 0 : line--; - 1 > col ? col = 0 : col--; - if (line < enclosingLine || line === enclosingLine && col < enclosingCol) enclosingCol = enclosingLine = 0; - 1 > line ? (line = encodedName.length + 3, enclosingCol -= line, 0 > enclosingCol && (enclosingCol = 0), col = col - enclosingCol - line - 3, 0 > col && (col = 0), encodedName = "({" + encodedName + ":" + " ".repeat(enclosingCol) + "_=>" + " ".repeat(col) + "_()})") : 1 > enclosingLine ? (enclosingCol -= encodedName.length + 3, 0 > enclosingCol && (enclosingCol = 0), encodedName = "({" + encodedName + ":" + " ".repeat(enclosingCol) + "_=>" + "\n".repeat(line - enclosingLine) + " ".repeat(col) + "_()})") : enclosingLine === line ? (col = col - enclosingCol - 3, 0 > col && (col = 0), encodedName = "\n".repeat(enclosingLine - 1) + "({" + encodedName + ":\n" + " ".repeat(enclosingCol) + "_=>" + " ".repeat(col) + "_()})") : encodedName = "\n".repeat(enclosingLine - 1) + "({" + encodedName + ":\n" + " ".repeat(enclosingCol) + "_=>" + "\n".repeat(line - enclosingLine) + " ".repeat(col) + "_()})"; - encodedName = 1 > enclosingLine ? encodedName + "\n/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */" : "/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */" + encodedName; - filename.startsWith("/") && (filename = "file://" + filename); - sourceMap ? (encodedName += "\n//# sourceURL=about://React/" + encodeURIComponent(environmentName) + "/" + encodeURI(filename) + "?" + fakeFunctionIdx++, encodedName += "\n//# sourceMappingURL=" + sourceMap) : encodedName = filename ? encodedName + ("\n//# sourceURL=" + encodeURI(filename)) : encodedName + "\n//# sourceURL=<anonymous>"; - try { - var fn = (0, eval)(encodedName)[name]; - } catch (x) { - fn = function(_) { - return _(); - }; - } - return fn; - } - function buildFakeCallStack(response, stack, environmentName, useEnclosingLine, innerCall) { - for(var i = 0; i < stack.length; i++){ - var frame = stack[i], frameKey = frame.join("-") + "-" + environmentName + (useEnclosingLine ? "-e" : "-n"), fn = fakeFunctionCache.get(frameKey); - if (void 0 === fn) { - fn = frame[0]; - var filename = frame[1], line = frame[2], col = frame[3], enclosingLine = frame[4]; - frame = frame[5]; - var findSourceMapURL = response._debugFindSourceMapURL; - findSourceMapURL = findSourceMapURL ? findSourceMapURL(filename, environmentName) : null; - fn = createFakeFunction(fn, filename, findSourceMapURL, line, col, useEnclosingLine ? line : enclosingLine, useEnclosingLine ? col : frame, environmentName); - fakeFunctionCache.set(frameKey, fn); - } - innerCall = fn.bind(null, innerCall); - } - return innerCall; - } - function getRootTask(response, childEnvironmentName) { - var rootTask = response._debugRootTask; - return rootTask ? response._rootEnvironmentName !== childEnvironmentName ? (response = console.createTask.bind(console, '"use ' + childEnvironmentName.toLowerCase() + '"'), rootTask.run(response)) : rootTask : null; - } - function initializeFakeTask(response, debugInfo) { - if (!supportsCreateTask || null == debugInfo.stack) return null; - var cachedEntry = debugInfo.debugTask; - if (void 0 !== cachedEntry) return cachedEntry; - var useEnclosingLine = void 0 === debugInfo.key, stack = debugInfo.stack, env = null == debugInfo.env ? response._rootEnvironmentName : debugInfo.env; - cachedEntry = null == debugInfo.owner || null == debugInfo.owner.env ? response._rootEnvironmentName : debugInfo.owner.env; - var ownerTask = null == debugInfo.owner ? null : initializeFakeTask(response, debugInfo.owner); - env = env !== cachedEntry ? '"use ' + env.toLowerCase() + '"' : void 0 !== debugInfo.key ? "<" + (debugInfo.name || "...") + ">" : void 0 !== debugInfo.name ? debugInfo.name || "unknown" : "await " + (debugInfo.awaited.name || "unknown"); - env = console.createTask.bind(console, env); - useEnclosingLine = buildFakeCallStack(response, stack, cachedEntry, useEnclosingLine, env); - null === ownerTask ? (response = getRootTask(response, cachedEntry), response = null != response ? response.run(useEnclosingLine) : useEnclosingLine()) : response = ownerTask.run(useEnclosingLine); - return debugInfo.debugTask = response; - } - function fakeJSXCallSite() { - return Error("react-stack-top-frame"); - } - function initializeFakeStack(response, debugInfo) { - if (void 0 === debugInfo.debugStack) { - null != debugInfo.stack && (debugInfo.debugStack = createFakeJSXCallStackInDEV(response, debugInfo.stack, null == debugInfo.env ? "" : debugInfo.env)); - var owner = debugInfo.owner; - null != owner && (initializeFakeStack(response, owner), void 0 === owner.debugLocation && null != debugInfo.debugStack && (owner.debugLocation = debugInfo.debugStack)); - } - } - function initializeDebugInfo(response, debugInfo) { - void 0 !== debugInfo.stack && initializeFakeTask(response, debugInfo); - if (null == debugInfo.owner && null != response._debugRootOwner) { - var _componentInfoOrAsyncInfo = debugInfo; - _componentInfoOrAsyncInfo.owner = response._debugRootOwner; - _componentInfoOrAsyncInfo.stack = null; - _componentInfoOrAsyncInfo.debugStack = response._debugRootStack; - _componentInfoOrAsyncInfo.debugTask = response._debugRootTask; - } else void 0 !== debugInfo.stack && initializeFakeStack(response, debugInfo); - "number" === typeof debugInfo.time && (debugInfo = { - time: debugInfo.time + response._timeOrigin - }); - return debugInfo; - } - function getCurrentStackInDEV() { - var owner = currentOwnerInDEV; - if (null === owner) return ""; - try { - var info = ""; - if (owner.owner || "string" !== typeof owner.name) { - for(; owner;){ - var ownerStack = owner.debugStack; - if (null != ownerStack) { - if (owner = owner.owner) { - var JSCompiler_temp_const = info; - var error = ownerStack, prevPrepareStackTrace = Error.prepareStackTrace; - Error.prepareStackTrace = prepareStackTrace; - var stack = error.stack; - Error.prepareStackTrace = prevPrepareStackTrace; - stack.startsWith("Error: react-stack-top-frame\n") && (stack = stack.slice(29)); - var idx = stack.indexOf("\n"); - -1 !== idx && (stack = stack.slice(idx + 1)); - idx = stack.indexOf("react_stack_bottom_frame"); - -1 !== idx && (idx = stack.lastIndexOf("\n", idx)); - var JSCompiler_inline_result = -1 !== idx ? stack = stack.slice(0, idx) : ""; - info = JSCompiler_temp_const + ("\n" + JSCompiler_inline_result); - } - } else break; - } - var JSCompiler_inline_result$jscomp$0 = info; - } else { - JSCompiler_temp_const = owner.name; - if (void 0 === prefix) try { - throw Error(); - } catch (x) { - prefix = (error = x.stack.trim().match(/\n( *(at )?)/)) && error[1] || "", suffix = -1 < x.stack.indexOf("\n at") ? " (<anonymous>)" : -1 < x.stack.indexOf("@") ? "@unknown:0:0" : ""; - } - JSCompiler_inline_result$jscomp$0 = "\n" + prefix + JSCompiler_temp_const + suffix; - } - } catch (x) { - JSCompiler_inline_result$jscomp$0 = "\nError generating stack: " + x.message + "\n" + x.stack; - } - return JSCompiler_inline_result$jscomp$0; - } - function resolveConsoleEntry(response, json) { - if (response._replayConsole) { - var blockedChunk = response._blockedConsole; - if (null == blockedChunk) blockedChunk = createResolvedModelChunk(response, json), initializeModelChunk(blockedChunk), "fulfilled" === blockedChunk.status ? replayConsoleWithCallStackInDEV(response, blockedChunk.value) : (blockedChunk.then(function(v) { - return replayConsoleWithCallStackInDEV(response, v); - }, function() {}), response._blockedConsole = blockedChunk); - else { - var _chunk4 = createPendingChunk(response); - _chunk4.then(function(v) { - return replayConsoleWithCallStackInDEV(response, v); - }, function() {}); - response._blockedConsole = _chunk4; - var unblock = function() { - response._blockedConsole === _chunk4 && (response._blockedConsole = null); - resolveModelChunk(response, _chunk4, json); - }; - blockedChunk.then(unblock, unblock); - } - } - } - function initializeIOInfo(response, ioInfo) { - void 0 !== ioInfo.stack && (initializeFakeTask(response, ioInfo), initializeFakeStack(response, ioInfo)); - ioInfo.start += response._timeOrigin; - ioInfo.end += response._timeOrigin; - if (response._replayConsole) { - response = response._rootEnvironmentName; - var promise = ioInfo.value; - if (promise) switch(promise.status){ - case "fulfilled": - logIOInfo(ioInfo, response, promise.value); - break; - case "rejected": - logIOInfoErrored(ioInfo, response, promise.reason); - break; - default: - promise.then(logIOInfo.bind(null, ioInfo, response), logIOInfoErrored.bind(null, ioInfo, response)); - } - else logIOInfo(ioInfo, response, void 0); - } - } - function resolveIOInfo(response, id, model) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk ? (resolveModelChunk(response, chunk, model), "resolved_model" === chunk.status && initializeModelChunk(chunk)) : (chunk = createResolvedModelChunk(response, model), chunks.set(id, chunk), initializeModelChunk(chunk)); - "fulfilled" === chunk.status ? initializeIOInfo(response, chunk.value) : chunk.then(function(v) { - initializeIOInfo(response, v); - }, function() {}); - } - function mergeBuffer(buffer, lastChunk) { - for(var l = buffer.length, byteLength = lastChunk.length, i = 0; i < l; i++)byteLength += buffer[i].byteLength; - byteLength = new Uint8Array(byteLength); - for(var _i3 = i = 0; _i3 < l; _i3++){ - var chunk = buffer[_i3]; - byteLength.set(chunk, i); - i += chunk.byteLength; - } - byteLength.set(lastChunk, i); - return byteLength; - } - function resolveTypedArray(response, id, buffer, lastChunk, constructor, bytesPerElement, streamState) { - buffer = 0 === buffer.length && 0 === lastChunk.byteOffset % bytesPerElement ? lastChunk : mergeBuffer(buffer, lastChunk); - constructor = new constructor(buffer.buffer, buffer.byteOffset, buffer.byteLength / bytesPerElement); - resolveBuffer(response, id, constructor, streamState); - } - function flushComponentPerformance(response$jscomp$0, root, trackIdx$jscomp$6, trackTime, parentEndTime) { - if (!isArrayImpl(root._children)) { - var previousResult = root._children, previousEndTime = previousResult.endTime; - if (-Infinity < parentEndTime && parentEndTime < previousEndTime && null !== previousResult.component) { - var componentInfo = previousResult.component, trackIdx = trackIdx$jscomp$6, startTime = parentEndTime; - if (supportsUserTiming && 0 <= previousEndTime && 10 > trackIdx) { - var color = componentInfo.env === response$jscomp$0._rootEnvironmentName ? "primary-light" : "secondary-light", entryName = componentInfo.name + " [deduped]", debugTask = componentInfo.debugTask; - debugTask ? debugTask.run(console.timeStamp.bind(console, entryName, 0 > startTime ? 0 : startTime, previousEndTime, trackNames[trackIdx], "Server Components \u269b", color)) : console.timeStamp(entryName, 0 > startTime ? 0 : startTime, previousEndTime, trackNames[trackIdx], "Server Components \u269b", color); - } - } - previousResult.track = trackIdx$jscomp$6; - return previousResult; - } - var children = root._children; - var debugInfo = root._debugInfo; - if (0 === debugInfo.length && "fulfilled" === root.status) { - var resolvedValue = resolveLazy(root.value); - "object" === typeof resolvedValue && null !== resolvedValue && (isArrayImpl(resolvedValue) || "function" === typeof resolvedValue[ASYNC_ITERATOR] || resolvedValue.$$typeof === REACT_ELEMENT_TYPE || resolvedValue.$$typeof === REACT_LAZY_TYPE) && isArrayImpl(resolvedValue._debugInfo) && (debugInfo = resolvedValue._debugInfo); - } - if (debugInfo) { - for(var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++){ - var info = debugInfo[i]; - "number" === typeof info.time && (startTime$jscomp$0 = info.time); - if ("string" === typeof info.name) { - startTime$jscomp$0 < trackTime && trackIdx$jscomp$6++; - trackTime = startTime$jscomp$0; - break; - } - } - for(var _i4 = debugInfo.length - 1; 0 <= _i4; _i4--){ - var _info = debugInfo[_i4]; - if ("number" === typeof _info.time && _info.time > parentEndTime) { - parentEndTime = _info.time; - break; - } - } - } - var result = { - track: trackIdx$jscomp$6, - endTime: -Infinity, - component: null - }; - root._children = result; - for(var childrenEndTime = -Infinity, childTrackIdx = trackIdx$jscomp$6, childTrackTime = trackTime, _i5 = 0; _i5 < children.length; _i5++){ - var childResult = flushComponentPerformance(response$jscomp$0, children[_i5], childTrackIdx, childTrackTime, parentEndTime); - null !== childResult.component && (result.component = childResult.component); - childTrackIdx = childResult.track; - var childEndTime = childResult.endTime; - childEndTime > childTrackTime && (childTrackTime = childEndTime); - childEndTime > childrenEndTime && (childrenEndTime = childEndTime); - } - if (debugInfo) for(var componentEndTime = 0, isLastComponent = !0, endTime = -1, endTimeIdx = -1, _i6 = debugInfo.length - 1; 0 <= _i6; _i6--){ - var _info2 = debugInfo[_i6]; - if ("number" === typeof _info2.time) { - 0 === componentEndTime && (componentEndTime = _info2.time); - var time = _info2.time; - if (-1 < endTimeIdx) for(var j = endTimeIdx - 1; j > _i6; j--){ - var candidateInfo = debugInfo[j]; - if ("string" === typeof candidateInfo.name) { - componentEndTime > childrenEndTime && (childrenEndTime = componentEndTime); - var componentInfo$jscomp$0 = candidateInfo, response = response$jscomp$0, componentInfo$jscomp$1 = componentInfo$jscomp$0, trackIdx$jscomp$0 = trackIdx$jscomp$6, startTime$jscomp$1 = time, componentEndTime$jscomp$0 = componentEndTime, childrenEndTime$jscomp$0 = childrenEndTime; - if (isLastComponent && "rejected" === root.status && root.reason !== response._closedReason) { - var componentInfo$jscomp$2 = componentInfo$jscomp$1, trackIdx$jscomp$1 = trackIdx$jscomp$0, startTime$jscomp$2 = startTime$jscomp$1, childrenEndTime$jscomp$1 = childrenEndTime$jscomp$0, error = root.reason; - if (supportsUserTiming) { - var env = componentInfo$jscomp$2.env, name = componentInfo$jscomp$2.name, entryName$jscomp$0 = env === response._rootEnvironmentName || void 0 === env ? name : name + " [" + env + "]", measureName = "\u200b" + entryName$jscomp$0, properties = [ - [ - "Error", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ] - ]; - null != componentInfo$jscomp$2.key && addValueToProperties("key", componentInfo$jscomp$2.key, properties, 0, ""); - null != componentInfo$jscomp$2.props && addObjectToProperties(componentInfo$jscomp$2.props, properties, 0, ""); - performance.measure(measureName, { - start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2, - end: childrenEndTime$jscomp$1, - detail: { - devtools: { - color: "error", - track: trackNames[trackIdx$jscomp$1], - trackGroup: "Server Components \u269b", - tooltipText: entryName$jscomp$0 + " Errored", - properties: properties - } - } - }); - performance.clearMeasures(measureName); - } - } else { - var componentInfo$jscomp$3 = componentInfo$jscomp$1, trackIdx$jscomp$2 = trackIdx$jscomp$0, startTime$jscomp$3 = startTime$jscomp$1, childrenEndTime$jscomp$2 = childrenEndTime$jscomp$0; - if (supportsUserTiming && 0 <= childrenEndTime$jscomp$2 && 10 > trackIdx$jscomp$2) { - var env$jscomp$0 = componentInfo$jscomp$3.env, name$jscomp$0 = componentInfo$jscomp$3.name, isPrimaryEnv = env$jscomp$0 === response._rootEnvironmentName, selfTime = componentEndTime$jscomp$0 - startTime$jscomp$3, color$jscomp$0 = 0.5 > selfTime ? isPrimaryEnv ? "primary-light" : "secondary-light" : 50 > selfTime ? isPrimaryEnv ? "primary" : "secondary" : 500 > selfTime ? isPrimaryEnv ? "primary-dark" : "secondary-dark" : "error", debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask, measureName$jscomp$0 = "\u200b" + (isPrimaryEnv || void 0 === env$jscomp$0 ? name$jscomp$0 : name$jscomp$0 + " [" + env$jscomp$0 + "]"); - if (debugTask$jscomp$0) { - var properties$jscomp$0 = []; - null != componentInfo$jscomp$3.key && addValueToProperties("key", componentInfo$jscomp$3.key, properties$jscomp$0, 0, ""); - null != componentInfo$jscomp$3.props && addObjectToProperties(componentInfo$jscomp$3.props, properties$jscomp$0, 0, ""); - debugTask$jscomp$0.run(performance.measure.bind(performance, measureName$jscomp$0, { - start: 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3, - end: childrenEndTime$jscomp$2, - detail: { - devtools: { - color: color$jscomp$0, - track: trackNames[trackIdx$jscomp$2], - trackGroup: "Server Components \u269b", - properties: properties$jscomp$0 - } - } - })); - performance.clearMeasures(measureName$jscomp$0); - } else console.timeStamp(measureName$jscomp$0, 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3, childrenEndTime$jscomp$2, trackNames[trackIdx$jscomp$2], "Server Components \u269b", color$jscomp$0); - } - } - componentEndTime = time; - result.component = componentInfo$jscomp$0; - isLastComponent = !1; - } else if (candidateInfo.awaited && null != candidateInfo.awaited.env) { - endTime > childrenEndTime && (childrenEndTime = endTime); - var asyncInfo = candidateInfo, env$jscomp$1 = response$jscomp$0._rootEnvironmentName, promise = asyncInfo.awaited.value; - if (promise) { - var thenable = promise; - switch(thenable.status){ - case "fulfilled": - logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, thenable.value); - break; - case "rejected": - var asyncInfo$jscomp$0 = asyncInfo, trackIdx$jscomp$3 = trackIdx$jscomp$6, startTime$jscomp$4 = time, endTime$jscomp$0 = endTime, rootEnv = env$jscomp$1, error$jscomp$0 = thenable.reason; - if (supportsUserTiming && 0 < endTime$jscomp$0) { - var description = getIODescription(error$jscomp$0), entryName$jscomp$1 = "await " + getIOShortName(asyncInfo$jscomp$0.awaited, description, asyncInfo$jscomp$0.env, rootEnv), debugTask$jscomp$1 = asyncInfo$jscomp$0.debugTask || asyncInfo$jscomp$0.awaited.debugTask; - if (debugTask$jscomp$1) { - var properties$jscomp$1 = [ - [ - "Rejected", - "object" === typeof error$jscomp$0 && null !== error$jscomp$0 && "string" === typeof error$jscomp$0.message ? String(error$jscomp$0.message) : String(error$jscomp$0) - ] - ], tooltipText = getIOLongName(asyncInfo$jscomp$0.awaited, description, asyncInfo$jscomp$0.env, rootEnv) + " Rejected"; - debugTask$jscomp$1.run(performance.measure.bind(performance, entryName$jscomp$1, { - start: 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4, - end: endTime$jscomp$0, - detail: { - devtools: { - color: "error", - track: trackNames[trackIdx$jscomp$3], - trackGroup: "Server Components \u269b", - properties: properties$jscomp$1, - tooltipText: tooltipText - } - } - })); - performance.clearMeasures(entryName$jscomp$1); - } else console.timeStamp(entryName$jscomp$1, 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4, endTime$jscomp$0, trackNames[trackIdx$jscomp$3], "Server Components \u269b", "error"); - } - break; - default: - logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, void 0); - } - } else logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, void 0); - } - } - else { - endTime = time; - for(var _j = debugInfo.length - 1; _j > _i6; _j--){ - var _candidateInfo = debugInfo[_j]; - if ("string" === typeof _candidateInfo.name) { - componentEndTime > childrenEndTime && (childrenEndTime = componentEndTime); - var _componentInfo = _candidateInfo, _env = response$jscomp$0._rootEnvironmentName, componentInfo$jscomp$4 = _componentInfo, trackIdx$jscomp$4 = trackIdx$jscomp$6, startTime$jscomp$5 = time, childrenEndTime$jscomp$3 = childrenEndTime; - if (supportsUserTiming) { - var env$jscomp$2 = componentInfo$jscomp$4.env, name$jscomp$1 = componentInfo$jscomp$4.name, entryName$jscomp$2 = env$jscomp$2 === _env || void 0 === env$jscomp$2 ? name$jscomp$1 : name$jscomp$1 + " [" + env$jscomp$2 + "]", measureName$jscomp$1 = "\u200b" + entryName$jscomp$2, properties$jscomp$2 = [ - [ - "Aborted", - "The stream was aborted before this Component finished rendering." - ] - ]; - null != componentInfo$jscomp$4.key && addValueToProperties("key", componentInfo$jscomp$4.key, properties$jscomp$2, 0, ""); - null != componentInfo$jscomp$4.props && addObjectToProperties(componentInfo$jscomp$4.props, properties$jscomp$2, 0, ""); - performance.measure(measureName$jscomp$1, { - start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5, - end: childrenEndTime$jscomp$3, - detail: { - devtools: { - color: "warning", - track: trackNames[trackIdx$jscomp$4], - trackGroup: "Server Components \u269b", - tooltipText: entryName$jscomp$2 + " Aborted", - properties: properties$jscomp$2 - } - } - }); - performance.clearMeasures(measureName$jscomp$1); - } - componentEndTime = time; - result.component = _componentInfo; - isLastComponent = !1; - } else if (_candidateInfo.awaited && null != _candidateInfo.awaited.env) { - var _asyncInfo = _candidateInfo, _env2 = response$jscomp$0._rootEnvironmentName; - _asyncInfo.awaited.end > endTime && (endTime = _asyncInfo.awaited.end); - endTime > childrenEndTime && (childrenEndTime = endTime); - var asyncInfo$jscomp$1 = _asyncInfo, trackIdx$jscomp$5 = trackIdx$jscomp$6, startTime$jscomp$6 = time, endTime$jscomp$1 = endTime, rootEnv$jscomp$0 = _env2; - if (supportsUserTiming && 0 < endTime$jscomp$1) { - var entryName$jscomp$3 = "await " + getIOShortName(asyncInfo$jscomp$1.awaited, "", asyncInfo$jscomp$1.env, rootEnv$jscomp$0), debugTask$jscomp$2 = asyncInfo$jscomp$1.debugTask || asyncInfo$jscomp$1.awaited.debugTask; - if (debugTask$jscomp$2) { - var tooltipText$jscomp$0 = getIOLongName(asyncInfo$jscomp$1.awaited, "", asyncInfo$jscomp$1.env, rootEnv$jscomp$0) + " Aborted"; - debugTask$jscomp$2.run(performance.measure.bind(performance, entryName$jscomp$3, { - start: 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6, - end: endTime$jscomp$1, - detail: { - devtools: { - color: "warning", - track: trackNames[trackIdx$jscomp$5], - trackGroup: "Server Components \u269b", - properties: [ - [ - "Aborted", - "The stream was aborted before this Promise resolved." - ] - ], - tooltipText: tooltipText$jscomp$0 - } - } - })); - performance.clearMeasures(entryName$jscomp$3); - } else console.timeStamp(entryName$jscomp$3, 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6, endTime$jscomp$1, trackNames[trackIdx$jscomp$5], "Server Components \u269b", "warning"); - } - } - } - } - endTime = time; - endTimeIdx = _i6; - } - } - result.endTime = childrenEndTime; - return result; - } - function flushInitialRenderPerformance(response) { - if (response._replayConsole) { - var rootChunk = getChunk(response, 0); - isArrayImpl(rootChunk._children) && (markAllTracksInOrder(), flushComponentPerformance(response, rootChunk, 0, -Infinity, -Infinity)); - } - } - function processFullBinaryRow(response, streamState, id, tag, buffer, chunk) { - switch(tag){ - case 65: - resolveBuffer(response, id, mergeBuffer(buffer, chunk).buffer, streamState); - return; - case 79: - resolveTypedArray(response, id, buffer, chunk, Int8Array, 1, streamState); - return; - case 111: - resolveBuffer(response, id, 0 === buffer.length ? chunk : mergeBuffer(buffer, chunk), streamState); - return; - case 85: - resolveTypedArray(response, id, buffer, chunk, Uint8ClampedArray, 1, streamState); - return; - case 83: - resolveTypedArray(response, id, buffer, chunk, Int16Array, 2, streamState); - return; - case 115: - resolveTypedArray(response, id, buffer, chunk, Uint16Array, 2, streamState); - return; - case 76: - resolveTypedArray(response, id, buffer, chunk, Int32Array, 4, streamState); - return; - case 108: - resolveTypedArray(response, id, buffer, chunk, Uint32Array, 4, streamState); - return; - case 71: - resolveTypedArray(response, id, buffer, chunk, Float32Array, 4, streamState); - return; - case 103: - resolveTypedArray(response, id, buffer, chunk, Float64Array, 8, streamState); - return; - case 77: - resolveTypedArray(response, id, buffer, chunk, BigInt64Array, 8, streamState); - return; - case 109: - resolveTypedArray(response, id, buffer, chunk, BigUint64Array, 8, streamState); - return; - case 86: - resolveTypedArray(response, id, buffer, chunk, DataView, 1, streamState); - return; - } - for(var stringDecoder = response._stringDecoder, row = "", i = 0; i < buffer.length; i++)row += stringDecoder.decode(buffer[i], decoderOptions); - row += stringDecoder.decode(chunk); - processFullStringRow(response, streamState, id, tag, row); - } - function processFullStringRow(response, streamState, id, tag, row) { - switch(tag){ - case 73: - resolveModule(response, id, row, streamState); - break; - case 72: - id = row[0]; - streamState = row.slice(1); - response = JSON.parse(streamState, response._fromJSON); - streamState = ReactDOMSharedInternals.d; - switch(id){ - case "D": - streamState.D(response); - break; - case "C": - "string" === typeof response ? streamState.C(response) : streamState.C(response[0], response[1]); - break; - case "L": - id = response[0]; - row = response[1]; - 3 === response.length ? streamState.L(id, row, response[2]) : streamState.L(id, row); - break; - case "m": - "string" === typeof response ? streamState.m(response) : streamState.m(response[0], response[1]); - break; - case "X": - "string" === typeof response ? streamState.X(response) : streamState.X(response[0], response[1]); - break; - case "S": - "string" === typeof response ? streamState.S(response) : streamState.S(response[0], 0 === response[1] ? void 0 : response[1], 3 === response.length ? response[2] : void 0); - break; - case "M": - "string" === typeof response ? streamState.M(response) : streamState.M(response[0], response[1]); - } - break; - case 69: - tag = response._chunks; - var chunk = tag.get(id); - row = JSON.parse(row); - var error = resolveErrorDev(response, row); - error.digest = row.digest; - chunk ? (resolveChunkDebugInfo(response, streamState, chunk), triggerErrorOnChunk(response, chunk, error)) : (row = new ReactPromise("rejected", null, error), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - break; - case 84: - tag = response._chunks; - (chunk = tag.get(id)) && "pending" !== chunk.status ? chunk.reason.enqueueValue(row) : (chunk && releasePendingChunk(response, chunk), row = new ReactPromise("fulfilled", row, null), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - break; - case 78: - response._timeOrigin = +row - performance.timeOrigin; - break; - case 68: - id = getChunk(response, id); - "fulfilled" !== id.status && "rejected" !== id.status && "halted" !== id.status && "blocked" !== id.status && "resolved_module" !== id.status && (streamState = id._debugChunk, tag = createResolvedModelChunk(response, row), tag._debugChunk = streamState, id._debugChunk = tag, initializeDebugChunk(response, id), "blocked" !== tag.status || void 0 !== response._debugChannel && response._debugChannel.hasReadable || '"' !== row[0] || "$" !== row[1] || (streamState = row.slice(2, row.length - 1).split(":"), streamState = parseInt(streamState[0], 16), "pending" === getChunk(response, streamState).status && (id._debugChunk = null))); - break; - case 74: - resolveIOInfo(response, id, row); - break; - case 87: - resolveConsoleEntry(response, row); - break; - case 82: - startReadableStream(response, id, void 0, streamState); - break; - case 114: - startReadableStream(response, id, "bytes", streamState); - break; - case 88: - startAsyncIterable(response, id, !1, streamState); - break; - case 120: - startAsyncIterable(response, id, !0, streamState); - break; - case 67: - (id = response._chunks.get(id)) && "fulfilled" === id.status && (0 === --response._pendingChunks && (response._weakResponse.response = null), id.reason.close("" === row ? '"$undefined"' : row)); - break; - default: - if ("" === row) { - if (streamState = response._chunks, (row = streamState.get(id)) || streamState.set(id, row = createPendingChunk(response)), "pending" === row.status || "blocked" === row.status) releasePendingChunk(response, row), response = row, response.status = "halted", response.value = null, response.reason = null; - } else tag = response._chunks, (chunk = tag.get(id)) ? (resolveChunkDebugInfo(response, streamState, chunk), resolveModelChunk(response, chunk, row)) : (row = createResolvedModelChunk(response, row), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - } - } - function processBinaryChunk(weakResponse, streamState, chunk) { - if (void 0 !== weakResponse.weak.deref()) { - weakResponse = unwrapWeakResponse(weakResponse); - var i = 0, rowState = streamState._rowState, rowID = streamState._rowID, rowTag = streamState._rowTag, rowLength = streamState._rowLength, buffer = streamState._buffer, chunkLength = chunk.length; - for(incrementChunkDebugInfo(streamState, chunkLength); i < chunkLength;){ - var lastIdx = -1; - switch(rowState){ - case 0: - lastIdx = chunk[i++]; - 58 === lastIdx ? rowState = 1 : rowID = rowID << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 1: - rowState = chunk[i]; - 84 === rowState || 65 === rowState || 79 === rowState || 111 === rowState || 98 === rowState || 85 === rowState || 83 === rowState || 115 === rowState || 76 === rowState || 108 === rowState || 71 === rowState || 103 === rowState || 77 === rowState || 109 === rowState || 86 === rowState ? (rowTag = rowState, rowState = 2, i++) : 64 < rowState && 91 > rowState || 35 === rowState || 114 === rowState || 120 === rowState ? (rowTag = rowState, rowState = 3, i++) : (rowTag = 0, rowState = 3); - continue; - case 2: - lastIdx = chunk[i++]; - 44 === lastIdx ? rowState = 4 : rowLength = rowLength << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 3: - lastIdx = chunk.indexOf(10, i); - break; - case 4: - lastIdx = i + rowLength, lastIdx > chunk.length && (lastIdx = -1); - } - var offset = chunk.byteOffset + i; - if (-1 < lastIdx) rowLength = new Uint8Array(chunk.buffer, offset, lastIdx - i), 98 === rowTag ? resolveBuffer(weakResponse, rowID, lastIdx === chunkLength ? rowLength : rowLength.slice(), streamState) : processFullBinaryRow(weakResponse, streamState, rowID, rowTag, buffer, rowLength), i = lastIdx, 3 === rowState && i++, rowLength = rowID = rowTag = rowState = 0, buffer.length = 0; - else { - chunk = new Uint8Array(chunk.buffer, offset, chunk.byteLength - i); - 98 === rowTag ? (rowLength -= chunk.byteLength, resolveBuffer(weakResponse, rowID, chunk, streamState)) : (buffer.push(chunk), rowLength -= chunk.byteLength); - break; - } - } - streamState._rowState = rowState; - streamState._rowID = rowID; - streamState._rowTag = rowTag; - streamState._rowLength = rowLength; - } - } - function createFromJSONCallback(response) { - return function(key, value) { - if ("__proto__" !== key) { - if ("string" === typeof value) return parseModelString(response, this, key, value); - if ("object" === typeof value && null !== value) { - if (value[0] === REACT_ELEMENT_TYPE) b: { - var owner = value[4], stack = value[5]; - key = value[6]; - value = { - $$typeof: REACT_ELEMENT_TYPE, - type: value[1], - key: value[2], - props: value[3], - _owner: void 0 === owner ? null : owner - }; - Object.defineProperty(value, "ref", { - enumerable: !1, - get: nullRefGetter - }); - value._store = {}; - Object.defineProperty(value._store, "validated", { - configurable: !1, - enumerable: !1, - writable: !0, - value: key - }); - Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: null - }); - Object.defineProperty(value, "_debugStack", { - configurable: !1, - enumerable: !1, - writable: !0, - value: void 0 === stack ? null : stack - }); - Object.defineProperty(value, "_debugTask", { - configurable: !1, - enumerable: !1, - writable: !0, - value: null - }); - if (null !== initializingHandler) { - owner = initializingHandler; - initializingHandler = owner.parent; - if (owner.errored) { - stack = new ReactPromise("rejected", null, owner.reason); - initializeElement(response, value, null); - owner = { - name: getComponentNameFromType(value.type) || "", - owner: value._owner - }; - owner.debugStack = value._debugStack; - supportsCreateTask && (owner.debugTask = value._debugTask); - stack._debugInfo = [ - owner - ]; - key = createLazyChunkWrapper(stack, key); - break b; - } - if (0 < owner.deps) { - stack = new ReactPromise("blocked", null, null); - owner.value = value; - owner.chunk = stack; - key = createLazyChunkWrapper(stack, key); - value = initializeElement.bind(null, response, value, key); - stack.then(value, value); - break b; - } - } - initializeElement(response, value, null); - key = value; - } - else key = value; - return key; - } - return value; - } - }; - } - function close(weakResponse) { - reportGlobalError(weakResponse, Error("Connection closed.")); - } - function noServerCall$1() { - throw Error("Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead."); - } - function createResponseFromOptions(options) { - return new ResponseInstance(options.serverConsumerManifest.moduleMap, options.serverConsumerManifest.serverModuleMap, options.serverConsumerManifest.moduleLoading, noServerCall$1, options.encodeFormAction, "string" === typeof options.nonce ? options.nonce : void 0, options && options.temporaryReferences ? options.temporaryReferences : void 0, options && options.findSourceMapURL ? options.findSourceMapURL : void 0, options ? !0 === options.replayConsoleLogs : !1, options && options.environmentName ? options.environmentName : void 0, options && null != options.startTime ? options.startTime : void 0, options && null != options.endTime ? options.endTime : void 0, options && void 0 !== options.debugChannel ? { - hasReadable: void 0 !== options.debugChannel.readable, - callback: null - } : void 0)._weakResponse; - } - function startReadingFromStream$1(response, stream, onDone, debugValue) { - function progress(_ref) { - var value = _ref.value; - if (_ref.done) return onDone(); - processBinaryChunk(response, streamState, value); - return reader.read().then(progress).catch(error); - } - function error(e) { - reportGlobalError(response, e); - } - var streamState = createStreamState(response, debugValue), reader = stream.getReader(); - reader.read().then(progress).catch(error); - } - function noServerCall() { - throw Error("Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead."); - } - function startReadingFromStream(response$jscomp$0, stream, onEnd) { - var streamState = createStreamState(response$jscomp$0, stream); - stream.on("data", function(chunk) { - if ("string" === typeof chunk) { - if (void 0 !== response$jscomp$0.weak.deref()) { - var response = unwrapWeakResponse(response$jscomp$0), i = 0, rowState = streamState._rowState, rowID = streamState._rowID, rowTag = streamState._rowTag, rowLength = streamState._rowLength, buffer = streamState._buffer, chunkLength = chunk.length; - for(incrementChunkDebugInfo(streamState, chunkLength); i < chunkLength;){ - var lastIdx = -1; - switch(rowState){ - case 0: - lastIdx = chunk.charCodeAt(i++); - 58 === lastIdx ? rowState = 1 : rowID = rowID << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 1: - rowState = chunk.charCodeAt(i); - 84 === rowState || 65 === rowState || 79 === rowState || 111 === rowState || 85 === rowState || 83 === rowState || 115 === rowState || 76 === rowState || 108 === rowState || 71 === rowState || 103 === rowState || 77 === rowState || 109 === rowState || 86 === rowState ? (rowTag = rowState, rowState = 2, i++) : 64 < rowState && 91 > rowState || 114 === rowState || 120 === rowState ? (rowTag = rowState, rowState = 3, i++) : (rowTag = 0, rowState = 3); - continue; - case 2: - lastIdx = chunk.charCodeAt(i++); - 44 === lastIdx ? rowState = 4 : rowLength = rowLength << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 3: - lastIdx = chunk.indexOf("\n", i); - break; - case 4: - if (84 !== rowTag) throw Error("Binary RSC chunks cannot be encoded as strings. This is a bug in the wiring of the React streams."); - if (rowLength < chunk.length || chunk.length > 3 * rowLength) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - lastIdx = chunk.length; - } - if (-1 < lastIdx) { - if (0 < buffer.length) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - i = chunk.slice(i, lastIdx); - processFullStringRow(response, streamState, rowID, rowTag, i); - i = lastIdx; - 3 === rowState && i++; - rowLength = rowID = rowTag = rowState = 0; - buffer.length = 0; - } else if (chunk.length !== i) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - } - streamState._rowState = rowState; - streamState._rowID = rowID; - streamState._rowTag = rowTag; - streamState._rowLength = rowLength; - } - } else processBinaryChunk(response$jscomp$0, streamState, chunk); - }); - stream.on("error", function(error) { - reportGlobalError(response$jscomp$0, error); - }); - stream.on("end", onEnd); - } - var util = __turbopack_context__.r("[externals]/util [external] (util, cjs)"), ReactDOM = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js [app-rsc] (ecmascript)"), React = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"), decoderOptions = { - stream: !0 - }, bind$1 = Function.prototype.bind, hasOwnProperty = Object.prototype.hasOwnProperty, instrumentedChunks = new WeakSet(), loadedChunks = new WeakSet(), ReactDOMSharedInternals = ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator, ASYNC_ITERATOR = Symbol.asyncIterator, isArrayImpl = Array.isArray, getPrototypeOf = Object.getPrototypeOf, jsxPropsParents = new WeakMap(), jsxChildrenParents = new WeakMap(), CLIENT_REFERENCE_TAG = Symbol.for("react.client.reference"), ObjectPrototype = Object.prototype, knownServerReferences = new WeakMap(), boundCache = new WeakMap(), fakeServerFunctionIdx = 0, FunctionBind = Function.prototype.bind, ArraySlice = Array.prototype.slice, v8FrameRegExp = /^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/, jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/, REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), supportsUserTiming = "undefined" !== typeof console && "function" === typeof console.timeStamp && "undefined" !== typeof performance && "function" === typeof performance.measure, trackNames = "Primary Parallel Parallel\u200b Parallel\u200b\u200b Parallel\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b".split(" "), prefix, suffix; - new ("function" === typeof WeakMap ? WeakMap : Map)(); - var ReactSharedInteralsServer = React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE || ReactSharedInteralsServer; - ReactPromise.prototype = Object.create(Promise.prototype); - ReactPromise.prototype.then = function(resolve, reject) { - var _this = this; - switch(this.status){ - case "resolved_model": - initializeModelChunk(this); - break; - case "resolved_module": - initializeModuleChunk(this); - } - var resolveCallback = resolve, rejectCallback = reject, wrapperPromise = new Promise(function(res, rej) { - resolve = function(value) { - wrapperPromise._debugInfo = _this._debugInfo; - res(value); - }; - reject = function(reason) { - wrapperPromise._debugInfo = _this._debugInfo; - rej(reason); - }; - }); - wrapperPromise.then(resolveCallback, rejectCallback); - switch(this.status){ - case "fulfilled": - "function" === typeof resolve && resolve(this.value); - break; - case "pending": - case "blocked": - "function" === typeof resolve && (null === this.value && (this.value = []), this.value.push(resolve)); - "function" === typeof reject && (null === this.reason && (this.reason = []), this.reason.push(reject)); - break; - case "halted": - break; - default: - "function" === typeof reject && reject(this.reason); - } - }; - var debugChannelRegistry = "function" === typeof FinalizationRegistry ? new FinalizationRegistry(closeDebugChannel) : null, initializingHandler = null, initializingChunk = null, mightHaveStaticConstructor = /\bclass\b.*\bstatic\b/, MIN_CHUNK_SIZE = 65536, supportsCreateTask = !!console.createTask, fakeFunctionCache = new Map(), fakeFunctionIdx = 0, createFakeJSXCallStack = { - react_stack_bottom_frame: function(response, stack, environmentName) { - return buildFakeCallStack(response, stack, environmentName, !1, fakeJSXCallSite)(); - } - }, createFakeJSXCallStackInDEV = createFakeJSXCallStack.react_stack_bottom_frame.bind(createFakeJSXCallStack), currentOwnerInDEV = null, replayConsoleWithCallStack = { - react_stack_bottom_frame: function(response, payload) { - var methodName = payload[0], stackTrace = payload[1], owner = payload[2], env = payload[3]; - payload = payload.slice(4); - var prevStack = ReactSharedInternals.getCurrentStack; - ReactSharedInternals.getCurrentStack = getCurrentStackInDEV; - currentOwnerInDEV = null === owner ? response._debugRootOwner : owner; - try { - a: { - var offset = 0; - switch(methodName){ - case "dir": - case "dirxml": - case "groupEnd": - case "table": - var JSCompiler_inline_result = bind$1.apply(console[methodName], [ - console - ].concat(payload)); - break a; - case "assert": - offset = 1; - } - var newArgs = payload.slice(0); - "string" === typeof newArgs[offset] ? newArgs.splice(offset, 1, "\u001b[0m\u001b[7m%c%s\u001b[0m%c " + newArgs[offset], "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", " " + env + " ", "") : newArgs.splice(offset, 0, "\u001b[0m\u001b[7m%c%s\u001b[0m%c", "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", " " + env + " ", ""); - newArgs.unshift(console); - JSCompiler_inline_result = bind$1.apply(console[methodName], newArgs); - } - var callStack = buildFakeCallStack(response, stackTrace, env, !1, JSCompiler_inline_result); - if (null != owner) { - var task = initializeFakeTask(response, owner); - initializeFakeStack(response, owner); - if (null !== task) { - task.run(callStack); - return; - } - } - var rootTask = getRootTask(response, env); - null != rootTask ? rootTask.run(callStack) : callStack(); - } finally{ - currentOwnerInDEV = null, ReactSharedInternals.getCurrentStack = prevStack; - } - } - }, replayConsoleWithCallStackInDEV = replayConsoleWithCallStack.react_stack_bottom_frame.bind(replayConsoleWithCallStack); - exports.createFromFetch = function(promiseForResponse, options) { - var response = createResponseFromOptions(options); - promiseForResponse.then(function(r) { - if (options && options.debugChannel && options.debugChannel.readable) { - var streamDoneCount = 0, handleDone = function() { - 2 === ++streamDoneCount && close(response); - }; - startReadingFromStream$1(response, options.debugChannel.readable, handleDone); - startReadingFromStream$1(response, r.body, handleDone, r); - } else startReadingFromStream$1(response, r.body, close.bind(null, response), r); - }, function(e) { - reportGlobalError(response, e); - }); - return getRoot(response); - }; - exports.createFromNodeStream = function(stream, serverConsumerManifest, options) { - var response = new ResponseInstance(serverConsumerManifest.moduleMap, serverConsumerManifest.serverModuleMap, serverConsumerManifest.moduleLoading, noServerCall, options ? options.encodeFormAction : void 0, options && "string" === typeof options.nonce ? options.nonce : void 0, void 0, options && options.findSourceMapURL ? options.findSourceMapURL : void 0, options ? !0 === options.replayConsoleLogs : !1, options && options.environmentName ? options.environmentName : void 0, options && null != options.startTime ? options.startTime : void 0, options && null != options.endTime ? options.endTime : void 0, options && void 0 !== options.debugChannel ? { - hasReadable: !0, - callback: null - } : void 0)._weakResponse; - if (options && options.debugChannel) { - var streamEndedCount = 0; - serverConsumerManifest = function() { - 2 === ++streamEndedCount && close(response); - }; - startReadingFromStream(response, options.debugChannel, serverConsumerManifest); - startReadingFromStream(response, stream, serverConsumerManifest); - } else startReadingFromStream(response, stream, close.bind(null, response)); - return getRoot(response); - }; - exports.createFromReadableStream = function(stream, options) { - var response = createResponseFromOptions(options); - if (options && options.debugChannel && options.debugChannel.readable) { - var streamDoneCount = 0, handleDone = function() { - 2 === ++streamDoneCount && close(response); - }; - startReadingFromStream$1(response, options.debugChannel.readable, handleDone); - startReadingFromStream$1(response, stream, handleDone, stream); - } else startReadingFromStream$1(response, stream, close.bind(null, response), stream); - return getRoot(response); - }; - exports.createServerReference = function(id) { - return createServerReference$1(id, noServerCall$1); - }; - exports.createTemporaryReferenceSet = function() { - return new Map(); - }; - exports.encodeReply = function(value, options) { - return new Promise(function(resolve, reject) { - var abort = processReply(value, "", options && options.temporaryReferences ? options.temporaryReferences : void 0, resolve, reject); - if (options && options.signal) { - var signal = options.signal; - if (signal.aborted) abort(signal.reason); - else { - var listener = function() { - abort(signal.reason); - signal.removeEventListener("abort", listener); - }; - signal.addEventListener("abort", listener); - } - } - }); - }; - exports.registerServerReference = function(reference, id, encodeFormAction) { - registerBoundServerReference(reference, id, null, encodeFormAction); - return reference; - }; -}(); -}), -"[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.node.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.node.development.js [app-rsc] (ecmascript)"); -} -}), -"[project]/node_modules/next/dist/esm/lib/detached-promise.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * A `Promise.withResolvers` implementation that exposes the `resolve` and - * `reject` functions on a `Promise`. - * - * @see https://tc39.es/proposal-promise-with-resolvers/ - */ __turbopack_context__.s([ - "DetachedPromise", - ()=>DetachedPromise -]); -class DetachedPromise { - constructor(){ - let resolve; - let reject; - // Create the promise and assign the resolvers to the object. - this.promise = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - // We know that resolvers is defined because the Promise constructor runs - // synchronously. - this.resolve = resolve; - this.reject = reject; - } -} //# sourceMappingURL=detached-promise.js.map -}), -"[project]/node_modules/next/dist/esm/server/stream-utils/encoded-tags.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ENCODED_TAGS", - ()=>ENCODED_TAGS -]); -const ENCODED_TAGS = { - // opening tags do not have the closing `>` since they can contain other attributes such as `<body className=''>` - OPENING: { - // <html - HTML: new Uint8Array([ - 60, - 104, - 116, - 109, - 108 - ]), - // <body - BODY: new Uint8Array([ - 60, - 98, - 111, - 100, - 121 - ]) - }, - CLOSED: { - // </head> - HEAD: new Uint8Array([ - 60, - 47, - 104, - 101, - 97, - 100, - 62 - ]), - // </body> - BODY: new Uint8Array([ - 60, - 47, - 98, - 111, - 100, - 121, - 62 - ]), - // </html> - HTML: new Uint8Array([ - 60, - 47, - 104, - 116, - 109, - 108, - 62 - ]), - // </body></html> - BODY_AND_HTML: new Uint8Array([ - 60, - 47, - 98, - 111, - 100, - 121, - 62, - 60, - 47, - 104, - 116, - 109, - 108, - 62 - ]) - }, - META: { - // Only the match the prefix cause the suffix can be different wether it's xml compatible or not ">" or "/>" - // <meta name="«nxt-icon»" - // This is a special mark that will be replaced by the icon insertion script tag. - ICON_MARK: new Uint8Array([ - 60, - 109, - 101, - 116, - 97, - 32, - 110, - 97, - 109, - 101, - 61, - 34, - 194, - 171, - 110, - 120, - 116, - 45, - 105, - 99, - 111, - 110, - 194, - 187, - 34 - ]) - } -}; //# sourceMappingURL=encoded-tags.js.map -}), -"[project]/node_modules/next/dist/esm/server/stream-utils/uint8array-helpers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Find the starting index of Uint8Array `b` within Uint8Array `a`. - */ __turbopack_context__.s([ - "indexOfUint8Array", - ()=>indexOfUint8Array, - "isEquivalentUint8Arrays", - ()=>isEquivalentUint8Arrays, - "removeFromUint8Array", - ()=>removeFromUint8Array -]); -function indexOfUint8Array(a, b) { - if (b.length === 0) return 0; - if (a.length === 0 || b.length > a.length) return -1; - // start iterating through `a` - for(let i = 0; i <= a.length - b.length; i++){ - let completeMatch = true; - // from index `i`, iterate through `b` and check for mismatch - for(let j = 0; j < b.length; j++){ - // if the values do not match, then this isn't a complete match, exit `b` iteration early and iterate to next index of `a`. - if (a[i + j] !== b[j]) { - completeMatch = false; - break; - } - } - if (completeMatch) { - return i; - } - } - return -1; -} -function isEquivalentUint8Arrays(a, b) { - if (a.length !== b.length) return false; - for(let i = 0; i < a.length; i++){ - if (a[i] !== b[i]) return false; - } - return true; -} -function removeFromUint8Array(a, b) { - const tagIndex = indexOfUint8Array(a, b); - if (tagIndex === 0) return a.subarray(b.length); - if (tagIndex > -1) { - const removed = new Uint8Array(a.length - b.length); - removed.set(a.slice(0, tagIndex)); - removed.set(a.slice(tagIndex + b.length), tagIndex); - return removed; - } else { - return a; - } -} //# sourceMappingURL=uint8array-helpers.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/errors/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "MISSING_ROOT_TAGS_ERROR", - ()=>MISSING_ROOT_TAGS_ERROR -]); -const MISSING_ROOT_TAGS_ERROR = 'NEXT_MISSING_ROOT_TAGS'; //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment-cache/output-export-prefetch-encoding.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "insertBuildIdComment", - ()=>insertBuildIdComment -]); -// In output: export mode, the build id is added to the start of the HTML -// document, directly after the doctype declaration. During a prefetch, the -// client performs a range request to get the build id, so it can check whether -// the target page belongs to the same build. -// -// The first 64 bytes of the document are requested. The exact number isn't -// too important; it must be larger than the build id + doctype + closing and -// ending comment markers, but it doesn't need to match the end of the -// comment exactly. -// -// Build ids are 21 bytes long in the default implementation, though this -// can be overridden in the Next.js config. For the purposes of this check, -// it's OK to only match the start of the id, so we'll truncate it if exceeds -// a certain length. -const DOCTYPE_PREFIX = '<!DOCTYPE html>' // 15 bytes -; -const MAX_BUILD_ID_LENGTH = 24; -function escapeBuildId(buildId) { - // If the build id is longer than the given limit, it's OK for our purposes - // to only match the beginning. - const truncated = buildId.slice(0, MAX_BUILD_ID_LENGTH); - // Replace hyphens with underscores so it doesn't break the HTML comment. - // (Unlikely, but if this did happen it would break the whole document.) - return truncated.replace(/-/g, '_'); -} -function insertBuildIdComment(originalHtml, buildId) { - if (buildId.includes('-->') || // React always inserts a doctype at the start of the document. Skip if it - // isn't present. Shouldn't happen; suggests an issue elsewhere. - !originalHtml.startsWith(DOCTYPE_PREFIX)) { - // Return the original HTML unchanged. This means the document will not - // be prefetched. - // TODO: The build id comment is currently only used during prefetches, but - // if we eventually use this mechanism for regular navigations, we may need - // to error during build if we fail to insert it for some reason. - return originalHtml; - } - // The comment must be inserted after the doctype. - return originalHtml.replace(DOCTYPE_PREFIX, DOCTYPE_PREFIX + '<!--' + escapeBuildId(buildId) + '-->'); -} //# sourceMappingURL=output-export-prefetch-encoding.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/hash.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// http://www.cse.yorku.ca/~oz/hash.html -// More specifically, 32-bit hash via djbxor -// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765) -// This is due to number type differences between rust for turbopack to js number types, -// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching -// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation -// as can gaurantee determinstic output from 32bit hash. -__turbopack_context__.s([ - "djb2Hash", - ()=>djb2Hash, - "hexHash", - ()=>hexHash -]); -function djb2Hash(str) { - let hash = 5381; - for(let i = 0; i < str.length; i++){ - const char = str.charCodeAt(i); - hash = (hash << 5) + hash + char & 0xffffffff; - } - return hash >>> 0; -} -function hexHash(str) { - return djb2Hash(str).toString(36).slice(0, 5); -} //# sourceMappingURL=hash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "computeCacheBustingSearchParam", - ()=>computeCacheBustingSearchParam -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$hash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/hash.js [app-rsc] (ecmascript)"); -; -function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) { - if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) { - return ''; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$hash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["hexHash"])([ - prefetchHeader || '0', - segmentPrefetchHeader || '0', - stateTreeHeader || '0', - nextUrlHeader || '0' - ].join(',')); -} //# sourceMappingURL=cache-busting-search-param.js.map -}), -"[project]/node_modules/next/dist/esm/server/stream-utils/node-web-streams-helper.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "chainStreams", - ()=>chainStreams, - "continueDynamicHTMLResume", - ()=>continueDynamicHTMLResume, - "continueDynamicPrerender", - ()=>continueDynamicPrerender, - "continueFizzStream", - ()=>continueFizzStream, - "continueStaticFallbackPrerender", - ()=>continueStaticFallbackPrerender, - "continueStaticPrerender", - ()=>continueStaticPrerender, - "createBufferedTransformStream", - ()=>createBufferedTransformStream, - "createDocumentClosingStream", - ()=>createDocumentClosingStream, - "createRootLayoutValidatorStream", - ()=>createRootLayoutValidatorStream, - "renderToInitialFizzStream", - ()=>renderToInitialFizzStream, - "streamFromBuffer", - ()=>streamFromBuffer, - "streamFromString", - ()=>streamFromString, - "streamToBuffer", - ()=>streamToBuffer, - "streamToString", - ()=>streamToString, - "streamToUint8Array", - ()=>streamToUint8Array -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/detached-promise.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/encoded-tags.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/uint8array-helpers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$errors$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/errors/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$output$2d$export$2d$prefetch$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/output-export-prefetch-encoding.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -function voidCatch() { -// this catcher is designed to be used with pipeTo where we expect the underlying -// pipe implementation to forward errors but we don't want the pipeTo promise to reject -// and be unhandled -} -// We can share the same encoder instance everywhere -// Notably we cannot do the same for TextDecoder because it is stateful -// when handling streaming data -const encoder = new TextEncoder(); -function chainStreams(...streams) { - // If we have no streams, return an empty stream. This behavior is - // intentional as we're now providing the `RenderResult.EMPTY` value. - if (streams.length === 0) { - return new ReadableStream({ - start (controller) { - controller.close(); - } - }); - } - // If we only have 1 stream we fast path it by returning just this stream - if (streams.length === 1) { - return streams[0]; - } - const { readable, writable } = new TransformStream(); - // We always initiate pipeTo immediately. We know we have at least 2 streams - // so we need to avoid closing the writable when this one finishes. - let promise = streams[0].pipeTo(writable, { - preventClose: true - }); - let i = 1; - for(; i < streams.length - 1; i++){ - const nextStream = streams[i]; - promise = promise.then(()=>nextStream.pipeTo(writable, { - preventClose: true - })); - } - // We can omit the length check because we halted before the last stream and there - // is at least two streams so the lastStream here will always be defined - const lastStream = streams[i]; - promise = promise.then(()=>lastStream.pipeTo(writable)); - // Catch any errors from the streams and ignore them, they will be handled - // by whatever is consuming the readable stream. - promise.catch(voidCatch); - return readable; -} -function streamFromString(str) { - return new ReadableStream({ - start (controller) { - controller.enqueue(encoder.encode(str)); - controller.close(); - } - }); -} -function streamFromBuffer(chunk) { - return new ReadableStream({ - start (controller) { - controller.enqueue(chunk); - controller.close(); - } - }); -} -async function streamToChunks(stream) { - const reader = stream.getReader(); - const chunks = []; - while(true){ - const { done, value } = await reader.read(); - if (done) { - break; - } - chunks.push(value); - } - return chunks; -} -function concatUint8Arrays(chunks) { - const totalLength = chunks.reduce((sum, chunk)=>sum + chunk.length, 0); - const result = new Uint8Array(totalLength); - let offset = 0; - for (const chunk of chunks){ - result.set(chunk, offset); - offset += chunk.length; - } - return result; -} -async function streamToUint8Array(stream) { - return concatUint8Arrays(await streamToChunks(stream)); -} -async function streamToBuffer(stream) { - return Buffer.concat(await streamToChunks(stream)); -} -async function streamToString(stream, signal) { - const decoder = new TextDecoder('utf-8', { - fatal: true - }); - let string = ''; - for await (const chunk of stream){ - if (signal == null ? void 0 : signal.aborted) { - return string; - } - string += decoder.decode(chunk, { - stream: true - }); - } - string += decoder.decode(); - return string; -} -function createBufferedTransformStream(options = {}) { - const { maxBufferByteLength = Infinity } = options; - let bufferedChunks = []; - let bufferByteLength = 0; - let pending; - const flush = (controller)=>{ - try { - if (bufferedChunks.length === 0) { - return; - } - const chunk = new Uint8Array(bufferByteLength); - let copiedBytes = 0; - for(let i = 0; i < bufferedChunks.length; i++){ - const bufferedChunk = bufferedChunks[i]; - chunk.set(bufferedChunk, copiedBytes); - copiedBytes += bufferedChunk.byteLength; - } - // We just wrote all the buffered chunks so we need to reset the bufferedChunks array - // and our bufferByteLength to prepare for the next round of buffered chunks - bufferedChunks.length = 0; - bufferByteLength = 0; - controller.enqueue(chunk); - } catch { - // If an error occurs while enqueuing, it can't be due to this - // transformer. It's most likely caused by the controller having been - // errored (for example, if the stream was cancelled). - } - }; - const scheduleFlush = (controller)=>{ - if (pending) { - return; - } - const detached = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - pending = detached; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleImmediate"])(()=>{ - try { - flush(controller); - } finally{ - pending = undefined; - detached.resolve(); - } - }); - }; - return new TransformStream({ - transform (chunk, controller) { - // Combine the previous buffer with the new chunk. - bufferedChunks.push(chunk); - bufferByteLength += chunk.byteLength; - if (bufferByteLength >= maxBufferByteLength) { - flush(controller); - } else { - scheduleFlush(controller); - } - }, - flush () { - return pending == null ? void 0 : pending.promise; - } - }); -} -function createPrefetchCommentStream(isBuildTimePrerendering, buildId) { - // Insert an extra comment at the beginning of the HTML document. This must - // come after the DOCTYPE, which is inserted by React. - // - // The first chunk sent by React will contain the doctype. After that, we can - // pass through the rest of the chunks as-is. - let didTransformFirstChunk = false; - return new TransformStream({ - transform (chunk, controller) { - if (isBuildTimePrerendering && !didTransformFirstChunk) { - didTransformFirstChunk = true; - const decoder = new TextDecoder('utf-8', { - fatal: true - }); - const chunkStr = decoder.decode(chunk, { - stream: true - }); - const updatedChunkStr = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$output$2d$export$2d$prefetch$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["insertBuildIdComment"])(chunkStr, buildId); - controller.enqueue(encoder.encode(updatedChunkStr)); - return; - } - controller.enqueue(chunk); - } - }); -} -function renderToInitialFizzStream({ ReactDOMServer, element, streamOptions }) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AppRenderSpan"].renderToReadableStream, async ()=>ReactDOMServer.renderToReadableStream(element, streamOptions)); -} -function createMetadataTransformStream(insert) { - let chunkIndex = -1; - let isMarkRemoved = false; - return new TransformStream({ - async transform (chunk, controller) { - let iconMarkIndex = -1; - let closedHeadIndex = -1; - chunkIndex++; - if (isMarkRemoved) { - controller.enqueue(chunk); - return; - } - let iconMarkLength = 0; - // Only search for the closed head tag once - if (iconMarkIndex === -1) { - iconMarkIndex = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].META.ICON_MARK); - if (iconMarkIndex === -1) { - controller.enqueue(chunk); - return; - } else { - // When we found the `<meta name="«nxt-icon»"` tag prefix, we will remove it from the chunk. - // Its close tag could either be `/>` or `>`, checking the next char to ensure we cover both cases. - iconMarkLength = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].META.ICON_MARK.length; - // Check if next char is /, this is for xml mode. - if (chunk[iconMarkIndex + iconMarkLength] === 47) { - iconMarkLength += 2; - } else { - // The last char is `>` - iconMarkLength++; - } - } - } - // Check if icon mark is inside <head> tag in the first chunk. - if (chunkIndex === 0) { - closedHeadIndex = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HEAD); - if (iconMarkIndex !== -1) { - // The mark icon is located in the 1st chunk before the head tag. - // We do not need to insert the script tag in this case because it's in the head. - // Just remove the icon mark from the chunk. - if (iconMarkIndex < closedHeadIndex) { - const replaced = new Uint8Array(chunk.length - iconMarkLength); - // Remove the icon mark from the chunk. - replaced.set(chunk.subarray(0, iconMarkIndex)); - replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex); - chunk = replaced; - } else { - // The icon mark is after the head tag, replace and insert the script tag at that position. - const insertion = await insert(); - const encodedInsertion = encoder.encode(insertion); - const insertionLength = encodedInsertion.length; - const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength); - replaced.set(chunk.subarray(0, iconMarkIndex)); - replaced.set(encodedInsertion, iconMarkIndex); - replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength); - chunk = replaced; - } - isMarkRemoved = true; - } - // If there's no icon mark located, it will be handled later when if present in the following chunks. - } else { - // When it's appeared in the following chunks, we'll need to - // remove the mark and then insert the script tag at that position. - const insertion = await insert(); - const encodedInsertion = encoder.encode(insertion); - const insertionLength = encodedInsertion.length; - // Replace the icon mark with the hoist script or empty string. - const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength); - // Set the first part of the chunk, before the icon mark. - replaced.set(chunk.subarray(0, iconMarkIndex)); - // Set the insertion after the icon mark. - replaced.set(encodedInsertion, iconMarkIndex); - // Set the rest of the chunk after the icon mark. - replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength); - chunk = replaced; - isMarkRemoved = true; - } - controller.enqueue(chunk); - } - }); -} -function createHeadInsertionTransformStream(insert) { - let inserted = false; - // We need to track if this transform saw any bytes because if it didn't - // we won't want to insert any server HTML at all - let hasBytes = false; - return new TransformStream({ - async transform (chunk, controller) { - hasBytes = true; - const insertion = await insert(); - if (inserted) { - if (insertion) { - const encodedInsertion = encoder.encode(insertion); - controller.enqueue(encodedInsertion); - } - controller.enqueue(chunk); - } else { - // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for. - const index = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HEAD); - // In fully static rendering or non PPR rendering cases: - // `/head>` will always be found in the chunk in first chunk rendering. - if (index !== -1) { - if (insertion) { - const encodedInsertion = encoder.encode(insertion); - // Get the total count of the bytes in the chunk and the insertion - // e.g. - // chunk = <head><meta charset="utf-8"></head> - // insertion = <script>...</script> - // output = <head><meta charset="utf-8"> [ <script>...</script> ] </head> - const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length); - // Append the first part of the chunk, before the head tag - insertedHeadContent.set(chunk.slice(0, index)); - // Append the server inserted content - insertedHeadContent.set(encodedInsertion, index); - // Append the rest of the chunk - insertedHeadContent.set(chunk.slice(index), index + encodedInsertion.length); - controller.enqueue(insertedHeadContent); - } else { - controller.enqueue(chunk); - } - inserted = true; - } else { - // This will happens in PPR rendering during next start, when the page is partially rendered. - // When the page resumes, the head tag will be found in the middle of the chunk. - // Where we just need to append the insertion and chunk to the current stream. - // e.g. - // PPR-static: <head>...</head><body> [ resume content ] </body> - // PPR-resume: [ insertion ] [ rest content ] - if (insertion) { - controller.enqueue(encoder.encode(insertion)); - } - controller.enqueue(chunk); - inserted = true; - } - } - }, - async flush (controller) { - // Check before closing if there's anything remaining to insert. - if (hasBytes) { - const insertion = await insert(); - if (insertion) { - controller.enqueue(encoder.encode(insertion)); - } - } - } - }); -} -function createClientResumeScriptInsertionTransformStream() { - const segmentPath = '/_full'; - const cacheBustingHeader = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["computeCacheBustingSearchParam"])('1', '/_full', undefined, undefined // headers[NEXT_URL] - ); - const searchStr = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]}=${cacheBustingHeader}`; - const NEXT_CLIENT_RESUME_SCRIPT = `<script>__NEXT_CLIENT_RESUME=fetch(location.pathname+'?${searchStr}',{credentials:'same-origin',headers:{'${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_HEADER"]}': '1','${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]}': '1','${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_ROUTER_SEGMENT_PREFETCH_HEADER"]}': '${segmentPath}'}})</script>`; - let didAlreadyInsert = false; - return new TransformStream({ - transform (chunk, controller) { - if (didAlreadyInsert) { - // Already inserted the script into the head. Pass through. - controller.enqueue(chunk); - return; - } - // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for. - const headClosingTagIndex = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HEAD); - if (headClosingTagIndex === -1) { - // In fully static rendering or non PPR rendering cases: - // `/head>` will always be found in the chunk in first chunk rendering. - controller.enqueue(chunk); - return; - } - const encodedInsertion = encoder.encode(NEXT_CLIENT_RESUME_SCRIPT); - // Get the total count of the bytes in the chunk and the insertion - // e.g. - // chunk = <head><meta charset="utf-8"></head> - // insertion = <script>...</script> - // output = <head><meta charset="utf-8"> [ <script>...</script> ] </head> - const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length); - // Append the first part of the chunk, before the head tag - insertedHeadContent.set(chunk.slice(0, headClosingTagIndex)); - // Append the server inserted content - insertedHeadContent.set(encodedInsertion, headClosingTagIndex); - // Append the rest of the chunk - insertedHeadContent.set(chunk.slice(headClosingTagIndex), headClosingTagIndex + encodedInsertion.length); - controller.enqueue(insertedHeadContent); - didAlreadyInsert = true; - } - }); -} -// Suffix after main body content - scripts before </body>, -// but wait for the major chunks to be enqueued. -function createDeferredSuffixStream(suffix) { - let flushed = false; - let pending; - const flush = (controller)=>{ - const detached = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - pending = detached; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleImmediate"])(()=>{ - try { - controller.enqueue(encoder.encode(suffix)); - } catch { - // If an error occurs while enqueuing it can't be due to this - // transformers fault. It's likely due to the controller being - // errored due to the stream being cancelled. - } finally{ - pending = undefined; - detached.resolve(); - } - }); - }; - return new TransformStream({ - transform (chunk, controller) { - controller.enqueue(chunk); - // If we've already flushed, we're done. - if (flushed) return; - // Schedule the flush to happen. - flushed = true; - flush(controller); - }, - flush (controller) { - if (pending) return pending.promise; - if (flushed) return; - // Flush now. - controller.enqueue(encoder.encode(suffix)); - } - }); -} -function createFlightDataInjectionTransformStream(stream, delayDataUntilFirstHtmlChunk) { - let htmlStreamFinished = false; - let pull = null; - let donePulling = false; - function startOrContinuePulling(controller) { - if (!pull) { - pull = startPulling(controller); - } - return pull; - } - async function startPulling(controller) { - const reader = stream.getReader(); - if (delayDataUntilFirstHtmlChunk) { - // NOTE: streaming flush - // We are buffering here for the inlined data stream because the - // "shell" stream might be chunkenized again by the underlying stream - // implementation, e.g. with a specific high-water mark. To ensure it's - // the safe timing to pipe the data stream, this extra tick is - // necessary. - // We don't start reading until we've left the current Task to ensure - // that it's inserted after flushing the shell. Note that this implementation - // might get stale if impl details of Fizz change in the future. - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["atLeastOneTask"])(); - } - try { - while(true){ - const { done, value } = await reader.read(); - if (done) { - donePulling = true; - return; - } - // We want to prioritize HTML over RSC data. - // The SSR render is based on the same RSC stream, so when we get a new RSC chunk, - // we're likely to produce an HTML chunk as well, so give it a chance to flush first. - if (!delayDataUntilFirstHtmlChunk && !htmlStreamFinished) { - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["atLeastOneTask"])(); - } - controller.enqueue(value); - } - } catch (err) { - controller.error(err); - } - } - return new TransformStream({ - start (controller) { - if (!delayDataUntilFirstHtmlChunk) { - startOrContinuePulling(controller); - } - }, - transform (chunk, controller) { - controller.enqueue(chunk); - // Start the streaming if it hasn't already been started yet. - if (delayDataUntilFirstHtmlChunk) { - startOrContinuePulling(controller); - } - }, - flush (controller) { - htmlStreamFinished = true; - if (donePulling) { - return; - } - return startOrContinuePulling(controller); - } - }); -} -const CLOSE_TAG = '</body></html>'; -/** - * This transform stream moves the suffix to the end of the stream, so results - * like `</body></html><script>...</script>` will be transformed to - * `<script>...</script></body></html>`. - */ function createMoveSuffixStream() { - let foundSuffix = false; - return new TransformStream({ - transform (chunk, controller) { - if (foundSuffix) { - return controller.enqueue(chunk); - } - const index = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML); - if (index > -1) { - foundSuffix = true; - // If the whole chunk is the suffix, then don't write anything, it will - // be written in the flush. - if (chunk.length === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML.length) { - return; - } - // Write out the part before the suffix. - const before = chunk.slice(0, index); - controller.enqueue(before); - // In the case where the suffix is in the middle of the chunk, we need - // to split the chunk into two parts. - if (chunk.length > __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML.length + index) { - // Write out the part after the suffix. - const after = chunk.slice(index + __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML.length); - controller.enqueue(after); - } - } else { - controller.enqueue(chunk); - } - }, - flush (controller) { - // Even if we didn't find the suffix, the HTML is not valid if we don't - // add it, so insert it at the end. - controller.enqueue(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML); - } - }); -} -function createStripDocumentClosingTagsTransform() { - return new TransformStream({ - transform (chunk, controller) { - // We rely on the assumption that chunks will never break across a code unit. - // This is reasonable because we currently concat all of React's output from a single - // flush into one chunk before streaming it forward which means the chunk will represent - // a single coherent utf-8 string. This is not safe to use if we change our streaming to no - // longer do this large buffered chunk - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isEquivalentUint8Arrays"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isEquivalentUint8Arrays"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isEquivalentUint8Arrays"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HTML)) { - // the entire chunk is the closing tags; return without enqueueing anything. - return; - } - // We assume these tags will go at together at the end of the document and that - // they won't appear anywhere else in the document. This is not really a safe assumption - // but until we revamp our streaming infra this is a performant way to string the tags - chunk = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removeFromUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY); - chunk = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removeFromUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HTML); - controller.enqueue(chunk); - } - }); -} -function createRootLayoutValidatorStream() { - let foundHtml = false; - let foundBody = false; - return new TransformStream({ - async transform (chunk, controller) { - // Peek into the streamed chunk to see if the tags are present. - if (!foundHtml && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].OPENING.HTML) > -1) { - foundHtml = true; - } - if (!foundBody && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].OPENING.BODY) > -1) { - foundBody = true; - } - controller.enqueue(chunk); - }, - flush (controller) { - const missingTags = []; - if (!foundHtml) missingTags.push('html'); - if (!foundBody) missingTags.push('body'); - if (!missingTags.length) return; - controller.enqueue(encoder.encode(`<html id="__next_error__"> - <template - data-next-error-message="Missing ${missingTags.map((c)=>`<${c}>`).join(missingTags.length > 1 ? ' and ' : '')} tags in the root layout.\nRead more at https://nextjs.org/docs/messages/missing-root-layout-tags" - data-next-error-digest="${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$errors$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MISSING_ROOT_TAGS_ERROR"]}" - data-next-error-stack="" - ></template> - `)); - } - }); -} -function chainTransformers(readable, transformers) { - let stream = readable; - for (const transformer of transformers){ - if (!transformer) continue; - stream = stream.pipeThrough(transformer); - } - return stream; -} -async function continueFizzStream(renderStream, { suffix, inlinedDataStream, isStaticGeneration, isBuildTimePrerendering, buildId, getServerInsertedHTML, getServerInsertedMetadata, validateRootLayout }) { - // Suffix itself might contain close tags at the end, so we need to split it. - const suffixUnclosed = suffix ? suffix.split(CLOSE_TAG, 1)[0] : null; - if (isStaticGeneration) { - // If we're generating static HTML we need to wait for it to resolve before continuing. - await renderStream.allReady; - } else { - // Otherwise, we want to make sure Fizz is done with all microtasky work - // before we start pulling the stream and cause a flush. - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])(); - } - return chainTransformers(renderStream, [ - // Buffer everything to avoid flushing too frequently - createBufferedTransformStream(), - // Add build id comment to start of the HTML document (in export mode) - createPrefetchCommentStream(isBuildTimePrerendering, buildId), - // Transform metadata - createMetadataTransformStream(getServerInsertedMetadata), - // Insert suffix content - suffixUnclosed != null && suffixUnclosed.length > 0 ? createDeferredSuffixStream(suffixUnclosed) : null, - // Insert the inlined data (Flight data, form state, etc.) stream into the HTML - inlinedDataStream ? createFlightDataInjectionTransformStream(inlinedDataStream, true) : null, - // Validate the root layout for missing html or body tags - validateRootLayout ? createRootLayoutValidatorStream() : null, - // Close tags should always be deferred to the end - createMoveSuffixStream(), - // Special head insertions - // TODO-APP: Insert server side html to end of head in app layout rendering, to avoid - // hydration errors. Remove this once it's ready to be handled by react itself. - createHeadInsertionTransformStream(getServerInsertedHTML) - ]); -} -async function continueDynamicPrerender(prerenderStream, { getServerInsertedHTML, getServerInsertedMetadata }) { - return prerenderStream // Buffer everything to avoid flushing too frequently - .pipeThrough(createBufferedTransformStream()).pipeThrough(createStripDocumentClosingTagsTransform()) // Insert generated tags to head - .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML)) // Transform metadata - .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata)); -} -async function continueStaticPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, isBuildTimePrerendering, buildId }) { - return prerenderStream // Buffer everything to avoid flushing too frequently - .pipeThrough(createBufferedTransformStream()) // Add build id comment to start of the HTML document (in export mode) - .pipeThrough(createPrefetchCommentStream(isBuildTimePrerendering, buildId)) // Insert generated tags to head - .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML)) // Transform metadata - .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata)) // Insert the inlined data (Flight data, form state, etc.) stream into the HTML - .pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, true)) // Close tags should always be deferred to the end - .pipeThrough(createMoveSuffixStream()); -} -async function continueStaticFallbackPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, isBuildTimePrerendering, buildId }) { - // Same as `continueStaticPrerender`, but also inserts an additional script - // to instruct the client to start fetching the hydration data as early - // as possible. - return prerenderStream // Buffer everything to avoid flushing too frequently - .pipeThrough(createBufferedTransformStream()) // Add build id comment to start of the HTML document (in export mode) - .pipeThrough(createPrefetchCommentStream(isBuildTimePrerendering, buildId)) // Insert generated tags to head - .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML)) // Insert the client resume script into the head - .pipeThrough(createClientResumeScriptInsertionTransformStream()) // Transform metadata - .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata)) // Insert the inlined data (Flight data, form state, etc.) stream into the HTML - .pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, true)) // Close tags should always be deferred to the end - .pipeThrough(createMoveSuffixStream()); -} -async function continueDynamicHTMLResume(renderStream, { delayDataUntilFirstHtmlChunk, inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata }) { - return renderStream // Buffer everything to avoid flushing too frequently - .pipeThrough(createBufferedTransformStream()) // Insert generated tags to head - .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML)) // Transform metadata - .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata)) // Insert the inlined data (Flight data, form state, etc.) stream into the HTML - .pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, delayDataUntilFirstHtmlChunk)) // Close tags should always be deferred to the end - .pipeThrough(createMoveSuffixStream()); -} -function createDocumentClosingStream() { - return streamFromString(CLOSE_TAG); -} //# sourceMappingURL=node-web-streams-helper.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HEAD_REQUEST_KEY", - ()=>HEAD_REQUEST_KEY, - "ROOT_SEGMENT_REQUEST_KEY", - ()=>ROOT_SEGMENT_REQUEST_KEY, - "appendSegmentRequestKeyPart", - ()=>appendSegmentRequestKeyPart, - "convertSegmentPathToStaticExportFilename", - ()=>convertSegmentPathToStaticExportFilename, - "createSegmentRequestKeyPart", - ()=>createSegmentRequestKeyPart -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -; -const ROOT_SEGMENT_REQUEST_KEY = ''; -const HEAD_REQUEST_KEY = '/_head'; -function createSegmentRequestKeyPart(segment) { - if (typeof segment === 'string') { - if (segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - // The Flight Router State type sometimes includes the search params in - // the page segment. However, the Segment Cache tracks this as a separate - // key. So, we strip the search params here, and then add them back when - // the cache entry is turned back into a FlightRouterState. This is an - // unfortunate consequence of the FlightRouteState being used both as a - // transport type and as a cache key; we'll address this once more of the - // Segment Cache implementation has settled. - // TODO: We should hoist the search params out of the FlightRouterState - // type entirely, This is our plan for dynamic route params, too. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - } - const safeName = // But params typically don't include the leading slash. We should use - // a different encoding to avoid this special case. - segment === '/_not-found' ? '_not-found' : encodeToFilesystemAndURLSafeString(segment); - // Since this is not a dynamic segment, it's fully encoded. It does not - // need to be "hydrated" with a param value. - return safeName; - } - const name = segment[0]; - const paramType = segment[2]; - const safeName = encodeToFilesystemAndURLSafeString(name); - const encodedName = '$' + paramType + '$' + safeName; - return encodedName; -} -function appendSegmentRequestKeyPart(parentRequestKey, parallelRouteKey, childRequestKeyPart) { - // Aside from being filesystem safe, segment keys are also designed so that - // each segment and parallel route creates its own subdirectory. Roughly in - // the same shape as the source app directory. This is mostly just for easier - // debugging (you can open up the build folder and navigate the output); if - // we wanted to do we could just use a flat structure. - // Omit the parallel route key for children, since this is the most - // common case. Saves some bytes (and it's what the app directory does). - const slotKey = parallelRouteKey === 'children' ? childRequestKeyPart : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`; - return parentRequestKey + '/' + slotKey; -} -// Define a regex pattern to match the most common characters found in a route -// param. It excludes anything that might not be cross-platform filesystem -// compatible, like |. It does not need to be precise because the fallback is to -// just base64url-encode the whole parameter, which is fine; we just don't do it -// by default for compactness, and for easier debugging. -const simpleParamValueRegex = /^[a-zA-Z0-9\-_@]+$/; -function encodeToFilesystemAndURLSafeString(value) { - if (simpleParamValueRegex.test(value)) { - return value; - } - // If there are any unsafe characters, base64url-encode the entire value. - // We also add a ! prefix so it doesn't collide with the simple case. - const base64url = btoa(value).replace(/\+/g, '-') // Replace '+' with '-' - .replace(/\//g, '_') // Replace '/' with '_' - .replace(/=+$/, '') // Remove trailing '=' - ; - return '!' + base64url; -} -function convertSegmentPathToStaticExportFilename(segmentPath) { - return `__next${segmentPath.replace(/\//g, '.')}.txt`; -} //# sourceMappingURL=segment-value-encoding.js.map -}), -"[project]/node_modules/next/dist/compiled/string-hash/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 328: (e)=>{ - function hash(e) { - var r = 5381, _ = e.length; - while(_){ - r = r * 33 ^ e.charCodeAt(--_); - } - return r >>> 0; - } - e.exports = hash; - } - }; - var r = {}; - function __nccwpck_require__(_) { - var a = r[_]; - if (a !== undefined) { - return a.exports; - } - var t = r[_] = { - exports: {} - }; - var i = true; - try { - e[_](t, t.exports, __nccwpck_require__); - i = false; - } finally{ - if (i) delete r[_]; - } - return t.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/string-hash") + "/"; - var _ = __nccwpck_require__(328); - module.exports = _; -})(); -}), -"[project]/node_modules/next/dist/esm/lib/format-server-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "formatServerError", - ()=>formatServerError, - "getStackWithoutErrorMessage", - ()=>getStackWithoutErrorMessage -]); -const invalidServerComponentReactHooks = [ - 'useDeferredValue', - 'useEffect', - 'useImperativeHandle', - 'useInsertionEffect', - 'useLayoutEffect', - 'useReducer', - 'useRef', - 'useState', - 'useSyncExternalStore', - 'useTransition', - 'experimental_useOptimistic', - 'useOptimistic' -]; -function setMessage(error, message) { - error.message = message; - if (error.stack) { - const lines = error.stack.split('\n'); - lines[0] = message; - error.stack = lines.join('\n'); - } -} -function getStackWithoutErrorMessage(error) { - const stack = error.stack; - if (!stack) return ''; - return stack.replace(/^[^\n]*\n/, ''); -} -function formatServerError(error) { - if (typeof (error == null ? void 0 : error.message) !== 'string') return; - if (error.message.includes('Class extends value undefined is not a constructor or null')) { - const addedMessage = 'This might be caused by a React Class Component being rendered in a Server Component, React Class Components only works in Client Components. Read more: https://nextjs.org/docs/messages/class-component-in-server-component'; - // If this error instance already has the message, don't add it again - if (error.message.includes(addedMessage)) return; - setMessage(error, `${error.message} - -${addedMessage}`); - return; - } - if (error.message.includes('createContext is not a function')) { - setMessage(error, 'createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/context-in-server-component'); - return; - } - for (const clientHook of invalidServerComponentReactHooks){ - const regex = new RegExp(`\\b${clientHook}\\b.*is not a function`); - if (regex.test(error.message)) { - setMessage(error, `${clientHook} only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/react-client-hook-in-server-component`); - return; - } - } -} //# sourceMappingURL=format-server-error.js.map -}), -"[project]/node_modules/next/dist/esm/server/request-meta.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// FIXME: (wyattjoh) this is a temporary solution to allow us to pass data between bundled modules -__turbopack_context__.s([ - "NEXT_REQUEST_META", - ()=>NEXT_REQUEST_META, - "addRequestMeta", - ()=>addRequestMeta, - "getRequestMeta", - ()=>getRequestMeta, - "removeRequestMeta", - ()=>removeRequestMeta, - "setRequestMeta", - ()=>setRequestMeta -]); -const NEXT_REQUEST_META = Symbol.for('NextInternalRequestMeta'); -function getRequestMeta(req, key) { - const meta = req[NEXT_REQUEST_META] || {}; - return typeof key === 'string' ? meta[key] : meta; -} -function setRequestMeta(req, meta) { - req[NEXT_REQUEST_META] = meta; - return meta; -} -function addRequestMeta(request, key, value) { - const meta = getRequestMeta(request); - meta[key] = value; - return setRequestMeta(request, meta); -} -function removeRequestMeta(request, key) { - const meta = getRequestMeta(request); - delete meta[key]; - return setRequestMeta(request, meta); -} //# sourceMappingURL=request-meta.js.map -}), -"[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ACTION_SUFFIX", - ()=>ACTION_SUFFIX, - "APP_DIR_ALIAS", - ()=>APP_DIR_ALIAS, - "CACHE_ONE_YEAR", - ()=>CACHE_ONE_YEAR, - "DOT_NEXT_ALIAS", - ()=>DOT_NEXT_ALIAS, - "ESLINT_DEFAULT_DIRS", - ()=>ESLINT_DEFAULT_DIRS, - "GSP_NO_RETURNED_VALUE", - ()=>GSP_NO_RETURNED_VALUE, - "GSSP_COMPONENT_MEMBER_ERROR", - ()=>GSSP_COMPONENT_MEMBER_ERROR, - "GSSP_NO_RETURNED_VALUE", - ()=>GSSP_NO_RETURNED_VALUE, - "HTML_CONTENT_TYPE_HEADER", - ()=>HTML_CONTENT_TYPE_HEADER, - "INFINITE_CACHE", - ()=>INFINITE_CACHE, - "INSTRUMENTATION_HOOK_FILENAME", - ()=>INSTRUMENTATION_HOOK_FILENAME, - "JSON_CONTENT_TYPE_HEADER", - ()=>JSON_CONTENT_TYPE_HEADER, - "MATCHED_PATH_HEADER", - ()=>MATCHED_PATH_HEADER, - "MIDDLEWARE_FILENAME", - ()=>MIDDLEWARE_FILENAME, - "MIDDLEWARE_LOCATION_REGEXP", - ()=>MIDDLEWARE_LOCATION_REGEXP, - "NEXT_BODY_SUFFIX", - ()=>NEXT_BODY_SUFFIX, - "NEXT_CACHE_IMPLICIT_TAG_ID", - ()=>NEXT_CACHE_IMPLICIT_TAG_ID, - "NEXT_CACHE_REVALIDATED_TAGS_HEADER", - ()=>NEXT_CACHE_REVALIDATED_TAGS_HEADER, - "NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER", - ()=>NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER, - "NEXT_CACHE_SOFT_TAG_MAX_LENGTH", - ()=>NEXT_CACHE_SOFT_TAG_MAX_LENGTH, - "NEXT_CACHE_TAGS_HEADER", - ()=>NEXT_CACHE_TAGS_HEADER, - "NEXT_CACHE_TAG_MAX_ITEMS", - ()=>NEXT_CACHE_TAG_MAX_ITEMS, - "NEXT_CACHE_TAG_MAX_LENGTH", - ()=>NEXT_CACHE_TAG_MAX_LENGTH, - "NEXT_DATA_SUFFIX", - ()=>NEXT_DATA_SUFFIX, - "NEXT_INTERCEPTION_MARKER_PREFIX", - ()=>NEXT_INTERCEPTION_MARKER_PREFIX, - "NEXT_META_SUFFIX", - ()=>NEXT_META_SUFFIX, - "NEXT_QUERY_PARAM_PREFIX", - ()=>NEXT_QUERY_PARAM_PREFIX, - "NEXT_RESUME_HEADER", - ()=>NEXT_RESUME_HEADER, - "NON_STANDARD_NODE_ENV", - ()=>NON_STANDARD_NODE_ENV, - "PAGES_DIR_ALIAS", - ()=>PAGES_DIR_ALIAS, - "PRERENDER_REVALIDATE_HEADER", - ()=>PRERENDER_REVALIDATE_HEADER, - "PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER", - ()=>PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER, - "PROXY_FILENAME", - ()=>PROXY_FILENAME, - "PROXY_LOCATION_REGEXP", - ()=>PROXY_LOCATION_REGEXP, - "PUBLIC_DIR_MIDDLEWARE_CONFLICT", - ()=>PUBLIC_DIR_MIDDLEWARE_CONFLICT, - "ROOT_DIR_ALIAS", - ()=>ROOT_DIR_ALIAS, - "RSC_ACTION_CLIENT_WRAPPER_ALIAS", - ()=>RSC_ACTION_CLIENT_WRAPPER_ALIAS, - "RSC_ACTION_ENCRYPTION_ALIAS", - ()=>RSC_ACTION_ENCRYPTION_ALIAS, - "RSC_ACTION_PROXY_ALIAS", - ()=>RSC_ACTION_PROXY_ALIAS, - "RSC_ACTION_VALIDATE_ALIAS", - ()=>RSC_ACTION_VALIDATE_ALIAS, - "RSC_CACHE_WRAPPER_ALIAS", - ()=>RSC_CACHE_WRAPPER_ALIAS, - "RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS", - ()=>RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS, - "RSC_MOD_REF_PROXY_ALIAS", - ()=>RSC_MOD_REF_PROXY_ALIAS, - "RSC_SEGMENTS_DIR_SUFFIX", - ()=>RSC_SEGMENTS_DIR_SUFFIX, - "RSC_SEGMENT_SUFFIX", - ()=>RSC_SEGMENT_SUFFIX, - "RSC_SUFFIX", - ()=>RSC_SUFFIX, - "SERVER_PROPS_EXPORT_ERROR", - ()=>SERVER_PROPS_EXPORT_ERROR, - "SERVER_PROPS_GET_INIT_PROPS_CONFLICT", - ()=>SERVER_PROPS_GET_INIT_PROPS_CONFLICT, - "SERVER_PROPS_SSG_CONFLICT", - ()=>SERVER_PROPS_SSG_CONFLICT, - "SERVER_RUNTIME", - ()=>SERVER_RUNTIME, - "SSG_FALLBACK_EXPORT_ERROR", - ()=>SSG_FALLBACK_EXPORT_ERROR, - "SSG_GET_INITIAL_PROPS_CONFLICT", - ()=>SSG_GET_INITIAL_PROPS_CONFLICT, - "STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR", - ()=>STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR, - "TEXT_PLAIN_CONTENT_TYPE_HEADER", - ()=>TEXT_PLAIN_CONTENT_TYPE_HEADER, - "UNSTABLE_REVALIDATE_RENAME_ERROR", - ()=>UNSTABLE_REVALIDATE_RENAME_ERROR, - "WEBPACK_LAYERS", - ()=>WEBPACK_LAYERS, - "WEBPACK_RESOURCE_QUERIES", - ()=>WEBPACK_RESOURCE_QUERIES, - "WEB_SOCKET_MAX_RECONNECTIONS", - ()=>WEB_SOCKET_MAX_RECONNECTIONS -]); -const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'; -const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'; -const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'; -const NEXT_QUERY_PARAM_PREFIX = 'nxtP'; -const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'; -const MATCHED_PATH_HEADER = 'x-matched-path'; -const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'; -const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER = 'x-prerender-revalidate-if-generated'; -const RSC_SEGMENTS_DIR_SUFFIX = '.segments'; -const RSC_SEGMENT_SUFFIX = '.segment.rsc'; -const RSC_SUFFIX = '.rsc'; -const ACTION_SUFFIX = '.action'; -const NEXT_DATA_SUFFIX = '.json'; -const NEXT_META_SUFFIX = '.meta'; -const NEXT_BODY_SUFFIX = '.body'; -const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'; -const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'; -const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER = 'x-next-revalidate-tag-token'; -const NEXT_RESUME_HEADER = 'next-resume'; -const NEXT_CACHE_TAG_MAX_ITEMS = 128; -const NEXT_CACHE_TAG_MAX_LENGTH = 256; -const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024; -const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'; -const CACHE_ONE_YEAR = 31536000; -const INFINITE_CACHE = 0xfffffffe; -const MIDDLEWARE_FILENAME = 'middleware'; -const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`; -const PROXY_FILENAME = 'proxy'; -const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`; -const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'; -const PAGES_DIR_ALIAS = 'private-next-pages'; -const DOT_NEXT_ALIAS = 'private-dot-next'; -const ROOT_DIR_ALIAS = 'private-next-root-dir'; -const APP_DIR_ALIAS = 'private-next-app-dir'; -const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'; -const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'; -const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'; -const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'; -const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS = 'private-next-rsc-track-dynamic-import'; -const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'; -const RSC_ACTION_CLIENT_WRAPPER_ALIAS = 'private-next-rsc-action-client-wrapper'; -const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`; -const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`; -const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`; -const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`; -const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`; -const SERVER_PROPS_EXPORT_ERROR = `pages with \`getServerSideProps\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`; -const GSP_NO_RETURNED_VALUE = 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'; -const GSSP_NO_RETURNED_VALUE = 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'; -const UNSTABLE_REVALIDATE_RENAME_ERROR = 'The `unstable_revalidate` property is available for general use.\n' + 'Please use `revalidate` instead.'; -const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`; -const NON_STANDARD_NODE_ENV = `You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`; -const SSG_FALLBACK_EXPORT_ERROR = `Pages with \`fallback\` enabled in \`getStaticPaths\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`; -const ESLINT_DEFAULT_DIRS = [ - 'app', - 'pages', - 'components', - 'lib', - 'src' -]; -const SERVER_RUNTIME = { - edge: 'edge', - experimentalEdge: 'experimental-edge', - nodejs: 'nodejs' -}; -const WEB_SOCKET_MAX_RECONNECTIONS = 12; -/** - * The names of the webpack layers. These layers are the primitives for the - * webpack chunks. - */ const WEBPACK_LAYERS_NAMES = { - /** - * The layer for the shared code between the client and server bundles. - */ shared: 'shared', - /** - * The layer for server-only runtime and picking up `react-server` export conditions. - * Including app router RSC pages and app router custom routes and metadata routes. - */ reactServerComponents: 'rsc', - /** - * Server Side Rendering layer for app (ssr). - */ serverSideRendering: 'ssr', - /** - * The browser client bundle layer for actions. - */ actionBrowser: 'action-browser', - /** - * The Node.js bundle layer for the API routes. - */ apiNode: 'api-node', - /** - * The Edge Lite bundle layer for the API routes. - */ apiEdge: 'api-edge', - /** - * The layer for the middleware code. - */ middleware: 'middleware', - /** - * The layer for the instrumentation hooks. - */ instrument: 'instrument', - /** - * The layer for assets on the edge. - */ edgeAsset: 'edge-asset', - /** - * The browser client bundle layer for App directory. - */ appPagesBrowser: 'app-pages-browser', - /** - * The browser client bundle layer for Pages directory. - */ pagesDirBrowser: 'pages-dir-browser', - /** - * The Edge Lite bundle layer for Pages directory. - */ pagesDirEdge: 'pages-dir-edge', - /** - * The Node.js bundle layer for Pages directory. - */ pagesDirNode: 'pages-dir-node' -}; -const WEBPACK_LAYERS = { - ...WEBPACK_LAYERS_NAMES, - GROUP: { - builtinReact: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser - ], - serverOnly: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - neutralTarget: [ - // pages api - WEBPACK_LAYERS_NAMES.apiNode, - WEBPACK_LAYERS_NAMES.apiEdge - ], - clientOnly: [ - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser - ], - bundled: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.shared, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - appPages: [ - // app router pages and layouts - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.actionBrowser - ] - } -}; -const WEBPACK_RESOURCE_QUERIES = { - edgeSSREntry: '__next_edge_ssr_entry__', - metadata: '__next_metadata__', - metadataRoute: '__next_metadata_route__', - metadataImageMeta: '__next_metadata_image_meta__' -}; -; - //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "fromNodeOutgoingHttpHeaders", - ()=>fromNodeOutgoingHttpHeaders, - "normalizeNextQueryParam", - ()=>normalizeNextQueryParam, - "splitCookiesString", - ()=>splitCookiesString, - "toNodeOutgoingHttpHeaders", - ()=>toNodeOutgoingHttpHeaders, - "validateURL", - ()=>validateURL -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -; -function fromNodeOutgoingHttpHeaders(nodeHeaders) { - const headers = new Headers(); - for (let [key, value] of Object.entries(nodeHeaders)){ - const values = Array.isArray(value) ? value : [ - value - ]; - for (let v of values){ - if (typeof v === 'undefined') continue; - if (typeof v === 'number') { - v = v.toString(); - } - headers.append(key, v); - } - } - return headers; -} -function splitCookiesString(cookiesString) { - var cookiesStrings = []; - var pos = 0; - var start; - var ch; - var lastComma; - var nextStart; - var cookiesSeparatorFound; - function skipWhitespace() { - while(pos < cookiesString.length && /\s/.test(cookiesString.charAt(pos))){ - pos += 1; - } - return pos < cookiesString.length; - } - function notSpecialChar() { - ch = cookiesString.charAt(pos); - return ch !== '=' && ch !== ';' && ch !== ','; - } - while(pos < cookiesString.length){ - start = pos; - cookiesSeparatorFound = false; - while(skipWhitespace()){ - ch = cookiesString.charAt(pos); - if (ch === ',') { - // ',' is a cookie separator if we have later first '=', not ';' or ',' - lastComma = pos; - pos += 1; - skipWhitespace(); - nextStart = pos; - while(pos < cookiesString.length && notSpecialChar()){ - pos += 1; - } - // currently special character - if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') { - // we found cookies separator - cookiesSeparatorFound = true; - // pos is inside the next cookie, so back up and return it. - pos = nextStart; - cookiesStrings.push(cookiesString.substring(start, lastComma)); - start = pos; - } else { - // in param ',' or param separator ';', - // we continue from that comma - pos = lastComma + 1; - } - } else { - pos += 1; - } - } - if (!cookiesSeparatorFound || pos >= cookiesString.length) { - cookiesStrings.push(cookiesString.substring(start, cookiesString.length)); - } - } - return cookiesStrings; -} -function toNodeOutgoingHttpHeaders(headers) { - const nodeHeaders = {}; - const cookies = []; - if (headers) { - for (const [key, value] of headers.entries()){ - if (key.toLowerCase() === 'set-cookie') { - // We may have gotten a comma joined string of cookies, or multiple - // set-cookie headers. We need to merge them into one header array - // to represent all the cookies. - cookies.push(...splitCookiesString(value)); - nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies; - } else { - nodeHeaders[key] = value; - } - } - } - return nodeHeaders; -} -function validateURL(url) { - try { - return String(new URL(String(url))); - } catch (error) { - throw Object.defineProperty(new Error(`URL is malformed "${String(url)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`, { - cause: error - }), "__NEXT_ERROR_CODE", { - value: "E61", - enumerable: false, - configurable: true - }); - } -} -function normalizeNextQueryParam(key) { - const prefixes = [ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_QUERY_PARAM_PREFIX"], - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_INTERCEPTION_MARKER_PREFIX"] - ]; - for (const prefix of prefixes){ - if (key !== prefix && key.startsWith(prefix)) { - return key.substring(prefix.length); - } - } - return null; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/i18n/detect-domain-locale.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "detectDomainLocale", - ()=>detectDomainLocale -]); -function detectDomainLocale(domainItems, hostname, detectedLocale) { - if (!domainItems) return; - if (detectedLocale) { - detectedLocale = detectedLocale.toLowerCase(); - } - for (const item of domainItems){ - // remove port if present - const domainHostname = item.domain?.split(':', 1)[0].toLowerCase(); - if (hostname === domainHostname || detectedLocale === item.defaultLocale.toLowerCase() || item.locales?.some((locale)=>locale.toLowerCase() === detectedLocale)) { - return item; - } - } -} //# sourceMappingURL=detect-domain-locale.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Removes the trailing slash for a given route or page path. Preserves the - * root page. Examples: - * - `/foo/bar/` -> `/foo/bar` - * - `/foo/bar` -> `/foo/bar` - * - `/` -> `/` - */ __turbopack_context__.s([ - "removeTrailingSlash", - ()=>removeTrailingSlash -]); -function removeTrailingSlash(route) { - return route.replace(/\/$/, '') || '/'; -} //# sourceMappingURL=remove-trailing-slash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Given a path this function will find the pathname, query and hash and return - * them. This is useful to parse full paths on the client side. - * @param path A path to parse e.g. /foo/bar?id=1#hash - */ __turbopack_context__.s([ - "parsePath", - ()=>parsePath -]); -function parsePath(path) { - const hashIndex = path.indexOf('#'); - const queryIndex = path.indexOf('?'); - const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex); - if (hasQuery || hashIndex > -1) { - return { - pathname: path.substring(0, hasQuery ? queryIndex : hashIndex), - query: hasQuery ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined) : '', - hash: hashIndex > -1 ? path.slice(hashIndex) : '' - }; - } - return { - pathname: path, - query: '', - hash: '' - }; -} //# sourceMappingURL=parse-path.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-prefix.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "addPathPrefix", - ()=>addPathPrefix -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js [app-rsc] (ecmascript)"); -; -function addPathPrefix(path, prefix) { - if (!path.startsWith('/') || !prefix) { - return path; - } - const { pathname, query, hash } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parsePath"])(path); - return `${prefix}${pathname}${query}${hash}`; -} //# sourceMappingURL=add-path-prefix.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-suffix.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "addPathSuffix", - ()=>addPathSuffix -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js [app-rsc] (ecmascript)"); -; -function addPathSuffix(path, suffix) { - if (!path.startsWith('/') || !suffix) { - return path; - } - const { pathname, query, hash } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parsePath"])(path); - return `${pathname}${suffix}${query}${hash}`; -} //# sourceMappingURL=add-path-suffix.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "pathHasPrefix", - ()=>pathHasPrefix -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js [app-rsc] (ecmascript)"); -; -function pathHasPrefix(path, prefix) { - if (typeof path !== 'string') { - return false; - } - const { pathname } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parsePath"])(path); - return pathname === prefix || pathname.startsWith(prefix + '/'); -} //# sourceMappingURL=path-has-prefix.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-locale.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "addLocale", - ()=>addLocale -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)"); -; -; -function addLocale(path, locale, defaultLocale, ignorePrefix) { - // If no locale was given or the locale is the default locale, we don't need - // to prefix the path. - if (!locale || locale === defaultLocale) return path; - const lower = path.toLowerCase(); - // If the path is an API path or the path already has the locale prefix, we - // don't need to prefix the path. - if (!ignorePrefix) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(lower, '/api')) return path; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(lower, `/${locale.toLowerCase()}`)) return path; - } - // Add the locale prefix to the path. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathPrefix"])(path, `/${locale}`); -} //# sourceMappingURL=add-locale.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/format-next-pathname-info.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "formatNextPathnameInfo", - ()=>formatNextPathnameInfo -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$trailing$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$suffix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-suffix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$locale$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-locale.js [app-rsc] (ecmascript)"); -; -; -; -; -function formatNextPathnameInfo(info) { - let pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$locale$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addLocale"])(info.pathname, info.locale, info.buildId ? undefined : info.defaultLocale, info.ignorePrefix); - if (info.buildId || !info.trailingSlash) { - pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$trailing$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removeTrailingSlash"])(pathname); - } - if (info.buildId) { - pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$suffix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathSuffix"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathPrefix"])(pathname, `/_next/data/${info.buildId}`), info.pathname === '/' ? 'index.json' : '.json'); - } - pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathPrefix"])(pathname, info.basePath); - return !info.buildId && info.trailingSlash ? !pathname.endsWith('/') ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$suffix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathSuffix"])(pathname, '/') : pathname : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$trailing$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removeTrailingSlash"])(pathname); -} //# sourceMappingURL=format-next-pathname-info.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/get-hostname.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Takes an object with a hostname property (like a parsed URL) and some - * headers that may contain Host and returns the preferred hostname. - * @param parsed An object containing a hostname property. - * @param headers A dictionary with headers containing a `host`. - */ __turbopack_context__.s([ - "getHostname", - ()=>getHostname -]); -function getHostname(parsed, headers) { - // Get the hostname from the headers if it exists, otherwise use the parsed - // hostname. - let hostname; - if (headers?.host && !Array.isArray(headers.host)) { - hostname = headers.host.toString().split(':', 1)[0]; - } else if (parsed.hostname) { - hostname = parsed.hostname; - } else return; - return hostname.toLowerCase(); -} //# sourceMappingURL=get-hostname.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/i18n/normalize-locale-path.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "normalizeLocalePath", - ()=>normalizeLocalePath -]); -/** - * A cache of lowercased locales for each list of locales. This is stored as a - * WeakMap so if the locales are garbage collected, the cache entry will be - * removed as well. - */ const cache = new WeakMap(); -function normalizeLocalePath(pathname, locales) { - // If locales is undefined, return the pathname as is. - if (!locales) return { - pathname - }; - // Get the cached lowercased locales or create a new cache entry. - let lowercasedLocales = cache.get(locales); - if (!lowercasedLocales) { - lowercasedLocales = locales.map((locale)=>locale.toLowerCase()); - cache.set(locales, lowercasedLocales); - } - let detectedLocale; - // The first segment will be empty, because it has a leading `/`. If - // there is no further segment, there is no locale (or it's the default). - const segments = pathname.split('/', 2); - // If there's no second segment (ie, the pathname is just `/`), there's no - // locale. - if (!segments[1]) return { - pathname - }; - // The second segment will contain the locale part if any. - const segment = segments[1].toLowerCase(); - // See if the segment matches one of the locales. If it doesn't, there is - // no locale (or it's the default). - const index = lowercasedLocales.indexOf(segment); - if (index < 0) return { - pathname - }; - // Return the case-sensitive locale. - detectedLocale = locales[index]; - // Remove the `/${locale}` part of the pathname. - pathname = pathname.slice(detectedLocale.length + 1) || '/'; - return { - pathname, - detectedLocale - }; -} //# sourceMappingURL=normalize-locale-path.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-path-prefix.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "removePathPrefix", - ()=>removePathPrefix -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)"); -; -function removePathPrefix(path, prefix) { - // If the path doesn't start with the prefix we can return it as is. This - // protects us from situations where the prefix is a substring of the path - // prefix such as: - // - // For prefix: /blog - // - // /blog -> true - // /blog/ -> true - // /blog/1 -> true - // /blogging -> false - // /blogging/ -> false - // /blogging/1 -> false - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(path, prefix)) { - return path; - } - // Remove the prefix from the path via slicing. - const withoutPrefix = path.slice(prefix.length); - // If the path without the prefix starts with a `/` we can return it as is. - if (withoutPrefix.startsWith('/')) { - return withoutPrefix; - } - // If the path without the prefix doesn't start with a `/` we need to add it - // back to the path to make sure it's a valid path. - return `/${withoutPrefix}`; -} //# sourceMappingURL=remove-path-prefix.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/get-next-pathname-info.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getNextPathnameInfo", - ()=>getNextPathnameInfo -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$normalize$2d$locale$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/i18n/normalize-locale-path.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-path-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)"); -; -; -; -function getNextPathnameInfo(pathname, options) { - const { basePath, i18n, trailingSlash } = options.nextConfig ?? {}; - const info = { - pathname, - trailingSlash: pathname !== '/' ? pathname.endsWith('/') : trailingSlash - }; - if (basePath && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(info.pathname, basePath)) { - info.pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removePathPrefix"])(info.pathname, basePath); - info.basePath = basePath; - } - let pathnameNoDataPrefix = info.pathname; - if (info.pathname.startsWith('/_next/data/') && info.pathname.endsWith('.json')) { - const paths = info.pathname.replace(/^\/_next\/data\//, '').replace(/\.json$/, '').split('/'); - const buildId = paths[0]; - info.buildId = buildId; - pathnameNoDataPrefix = paths[1] !== 'index' ? `/${paths.slice(1).join('/')}` : '/'; - // update pathname with normalized if enabled although - // we use normalized to populate locale info still - if (options.parseData === true) { - info.pathname = pathnameNoDataPrefix; - } - } - // If provided, use the locale route normalizer to detect the locale instead - // of the function below. - if (i18n) { - let result = options.i18nProvider ? options.i18nProvider.analyze(info.pathname) : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$normalize$2d$locale$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeLocalePath"])(info.pathname, i18n.locales); - info.locale = result.detectedLocale; - info.pathname = result.pathname ?? info.pathname; - if (!result.detectedLocale && info.buildId) { - result = options.i18nProvider ? options.i18nProvider.analyze(pathnameNoDataPrefix) : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$normalize$2d$locale$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeLocalePath"])(pathnameNoDataPrefix, i18n.locales); - if (result.detectedLocale) { - info.locale = result.detectedLocale; - } - } - } - return info; -} //# sourceMappingURL=get-next-pathname-info.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/next-url.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "NextURL", - ()=>NextURL -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$detect$2d$domain$2d$locale$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/i18n/detect-domain-locale.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$format$2d$next$2d$pathname$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/format-next-pathname-info.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$get$2d$hostname$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/get-hostname.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$get$2d$next$2d$pathname$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/get-next-pathname-info.js [app-rsc] (ecmascript)"); -; -; -; -; -const REGEX_LOCALHOST_HOSTNAME = /(?!^https?:\/\/)(127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)/; -function parseURL(url, base) { - return new URL(String(url).replace(REGEX_LOCALHOST_HOSTNAME, 'localhost'), base && String(base).replace(REGEX_LOCALHOST_HOSTNAME, 'localhost')); -} -const Internal = Symbol('NextURLInternal'); -class NextURL { - constructor(input, baseOrOpts, opts){ - let base; - let options; - if (typeof baseOrOpts === 'object' && 'pathname' in baseOrOpts || typeof baseOrOpts === 'string') { - base = baseOrOpts; - options = opts || {}; - } else { - options = opts || baseOrOpts || {}; - } - this[Internal] = { - url: parseURL(input, base ?? options.base), - options: options, - basePath: '' - }; - this.analyze(); - } - analyze() { - var _this_Internal_options_nextConfig_i18n, _this_Internal_options_nextConfig, _this_Internal_domainLocale, _this_Internal_options_nextConfig_i18n1, _this_Internal_options_nextConfig1; - const info = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$get$2d$next$2d$pathname$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getNextPathnameInfo"])(this[Internal].url.pathname, { - nextConfig: this[Internal].options.nextConfig, - parseData: !("TURBOPACK compile-time value", void 0), - i18nProvider: this[Internal].options.i18nProvider - }); - const hostname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$get$2d$hostname$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getHostname"])(this[Internal].url, this[Internal].options.headers); - this[Internal].domainLocale = this[Internal].options.i18nProvider ? this[Internal].options.i18nProvider.detectDomainLocale(hostname) : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$detect$2d$domain$2d$locale$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["detectDomainLocale"])((_this_Internal_options_nextConfig = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n = _this_Internal_options_nextConfig.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n.domains, hostname); - const defaultLocale = ((_this_Internal_domainLocale = this[Internal].domainLocale) == null ? void 0 : _this_Internal_domainLocale.defaultLocale) || ((_this_Internal_options_nextConfig1 = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n1 = _this_Internal_options_nextConfig1.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n1.defaultLocale); - this[Internal].url.pathname = info.pathname; - this[Internal].defaultLocale = defaultLocale; - this[Internal].basePath = info.basePath ?? ''; - this[Internal].buildId = info.buildId; - this[Internal].locale = info.locale ?? defaultLocale; - this[Internal].trailingSlash = info.trailingSlash; - } - formatPathname() { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$format$2d$next$2d$pathname$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["formatNextPathnameInfo"])({ - basePath: this[Internal].basePath, - buildId: this[Internal].buildId, - defaultLocale: !this[Internal].options.forceLocale ? this[Internal].defaultLocale : undefined, - locale: this[Internal].locale, - pathname: this[Internal].url.pathname, - trailingSlash: this[Internal].trailingSlash - }); - } - formatSearch() { - return this[Internal].url.search; - } - get buildId() { - return this[Internal].buildId; - } - set buildId(buildId) { - this[Internal].buildId = buildId; - } - get locale() { - return this[Internal].locale ?? ''; - } - set locale(locale) { - var _this_Internal_options_nextConfig_i18n, _this_Internal_options_nextConfig; - if (!this[Internal].locale || !((_this_Internal_options_nextConfig = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n = _this_Internal_options_nextConfig.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n.locales.includes(locale))) { - throw Object.defineProperty(new TypeError(`The NextURL configuration includes no locale "${locale}"`), "__NEXT_ERROR_CODE", { - value: "E597", - enumerable: false, - configurable: true - }); - } - this[Internal].locale = locale; - } - get defaultLocale() { - return this[Internal].defaultLocale; - } - get domainLocale() { - return this[Internal].domainLocale; - } - get searchParams() { - return this[Internal].url.searchParams; - } - get host() { - return this[Internal].url.host; - } - set host(value) { - this[Internal].url.host = value; - } - get hostname() { - return this[Internal].url.hostname; - } - set hostname(value) { - this[Internal].url.hostname = value; - } - get port() { - return this[Internal].url.port; - } - set port(value) { - this[Internal].url.port = value; - } - get protocol() { - return this[Internal].url.protocol; - } - set protocol(value) { - this[Internal].url.protocol = value; - } - get href() { - const pathname = this.formatPathname(); - const search = this.formatSearch(); - return `${this.protocol}//${this.host}${pathname}${search}${this.hash}`; - } - set href(url) { - this[Internal].url = parseURL(url); - this.analyze(); - } - get origin() { - return this[Internal].url.origin; - } - get pathname() { - return this[Internal].url.pathname; - } - set pathname(value) { - this[Internal].url.pathname = value; - } - get hash() { - return this[Internal].url.hash; - } - set hash(value) { - this[Internal].url.hash = value; - } - get search() { - return this[Internal].url.search; - } - set search(value) { - this[Internal].url.search = value; - } - get password() { - return this[Internal].url.password; - } - set password(value) { - this[Internal].url.password = value; - } - get username() { - return this[Internal].url.username; - } - set username(value) { - this[Internal].url.username = value; - } - get basePath() { - return this[Internal].basePath; - } - set basePath(value) { - this[Internal].basePath = value.startsWith('/') ? value : `/${value}`; - } - toString() { - return this.href; - } - toJSON() { - return this.href; - } - [Symbol.for('edge-runtime.inspect.custom')]() { - return { - href: this.href, - origin: this.origin, - protocol: this.protocol, - username: this.username, - password: this.password, - host: this.host, - hostname: this.hostname, - port: this.port, - pathname: this.pathname, - search: this.search, - searchParams: this.searchParams, - hash: this.hash - }; - } - clone() { - return new NextURL(String(this), this[Internal].options); - } -} //# sourceMappingURL=next-url.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "PageSignatureError", - ()=>PageSignatureError, - "RemovedPageError", - ()=>RemovedPageError, - "RemovedUAError", - ()=>RemovedUAError -]); -class PageSignatureError extends Error { - constructor({ page }){ - super(`The middleware "${page}" accepts an async API directly with the form: - - export function middleware(request, event) { - return NextResponse.redirect('/new-location') - } - - Read more: https://nextjs.org/docs/messages/middleware-new-signature - `); - } -} -class RemovedPageError extends Error { - constructor(){ - super(`The request.page has been deprecated in favour of \`URLPattern\`. - Read more: https://nextjs.org/docs/messages/middleware-request-page - `); - } -} -class RemovedUAError extends Error { - constructor(){ - super(`The request.ua has been removed in favour of \`userAgent\` function. - Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent - `); - } -} //# sourceMappingURL=error.js.map -}), -"[project]/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __defProp = Object.defineProperty; -var __getOwnPropDesc = Object.getOwnPropertyDescriptor; -var __getOwnPropNames = Object.getOwnPropertyNames; -var __hasOwnProp = Object.prototype.hasOwnProperty; -var __export = (target, all)=>{ - for(var name in all)__defProp(target, name, { - get: all[name], - enumerable: true - }); -}; -var __copyProps = (to, from, except, desc)=>{ - if (from && typeof from === "object" || typeof from === "function") { - for (let key of __getOwnPropNames(from))if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { - get: ()=>from[key], - enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable - }); - } - return to; -}; -var __toCommonJS = (mod)=>__copyProps(__defProp({}, "__esModule", { - value: true - }), mod); -// src/index.ts -var src_exports = {}; -__export(src_exports, { - RequestCookies: ()=>RequestCookies, - ResponseCookies: ()=>ResponseCookies, - parseCookie: ()=>parseCookie, - parseSetCookie: ()=>parseSetCookie, - stringifyCookie: ()=>stringifyCookie -}); -module.exports = __toCommonJS(src_exports); -// src/serialize.ts -function stringifyCookie(c) { - var _a; - const attrs = [ - "path" in c && c.path && `Path=${c.path}`, - "expires" in c && (c.expires || c.expires === 0) && `Expires=${(typeof c.expires === "number" ? new Date(c.expires) : c.expires).toUTCString()}`, - "maxAge" in c && typeof c.maxAge === "number" && `Max-Age=${c.maxAge}`, - "domain" in c && c.domain && `Domain=${c.domain}`, - "secure" in c && c.secure && "Secure", - "httpOnly" in c && c.httpOnly && "HttpOnly", - "sameSite" in c && c.sameSite && `SameSite=${c.sameSite}`, - "partitioned" in c && c.partitioned && "Partitioned", - "priority" in c && c.priority && `Priority=${c.priority}` - ].filter(Boolean); - const stringified = `${c.name}=${encodeURIComponent((_a = c.value) != null ? _a : "")}`; - return attrs.length === 0 ? stringified : `${stringified}; ${attrs.join("; ")}`; -} -function parseCookie(cookie) { - const map = /* @__PURE__ */ new Map(); - for (const pair of cookie.split(/; */)){ - if (!pair) continue; - const splitAt = pair.indexOf("="); - if (splitAt === -1) { - map.set(pair, "true"); - continue; - } - const [key, value] = [ - pair.slice(0, splitAt), - pair.slice(splitAt + 1) - ]; - try { - map.set(key, decodeURIComponent(value != null ? value : "true")); - } catch {} - } - return map; -} -function parseSetCookie(setCookie) { - if (!setCookie) { - return void 0; - } - const [[name, value], ...attributes] = parseCookie(setCookie); - const { domain, expires, httponly, maxage, path, samesite, secure, partitioned, priority } = Object.fromEntries(attributes.map(([key, value2])=>[ - key.toLowerCase().replace(/-/g, ""), - value2 - ])); - const cookie = { - name, - value: decodeURIComponent(value), - domain, - ...expires && { - expires: new Date(expires) - }, - ...httponly && { - httpOnly: true - }, - ...typeof maxage === "string" && { - maxAge: Number(maxage) - }, - path, - ...samesite && { - sameSite: parseSameSite(samesite) - }, - ...secure && { - secure: true - }, - ...priority && { - priority: parsePriority(priority) - }, - ...partitioned && { - partitioned: true - } - }; - return compact(cookie); -} -function compact(t) { - const newT = {}; - for(const key in t){ - if (t[key]) { - newT[key] = t[key]; - } - } - return newT; -} -var SAME_SITE = [ - "strict", - "lax", - "none" -]; -function parseSameSite(string) { - string = string.toLowerCase(); - return SAME_SITE.includes(string) ? string : void 0; -} -var PRIORITY = [ - "low", - "medium", - "high" -]; -function parsePriority(string) { - string = string.toLowerCase(); - return PRIORITY.includes(string) ? string : void 0; -} -function splitCookiesString(cookiesString) { - if (!cookiesString) return []; - var cookiesStrings = []; - var pos = 0; - var start; - var ch; - var lastComma; - var nextStart; - var cookiesSeparatorFound; - function skipWhitespace() { - while(pos < cookiesString.length && /\s/.test(cookiesString.charAt(pos))){ - pos += 1; - } - return pos < cookiesString.length; - } - function notSpecialChar() { - ch = cookiesString.charAt(pos); - return ch !== "=" && ch !== ";" && ch !== ","; - } - while(pos < cookiesString.length){ - start = pos; - cookiesSeparatorFound = false; - while(skipWhitespace()){ - ch = cookiesString.charAt(pos); - if (ch === ",") { - lastComma = pos; - pos += 1; - skipWhitespace(); - nextStart = pos; - while(pos < cookiesString.length && notSpecialChar()){ - pos += 1; - } - if (pos < cookiesString.length && cookiesString.charAt(pos) === "=") { - cookiesSeparatorFound = true; - pos = nextStart; - cookiesStrings.push(cookiesString.substring(start, lastComma)); - start = pos; - } else { - pos = lastComma + 1; - } - } else { - pos += 1; - } - } - if (!cookiesSeparatorFound || pos >= cookiesString.length) { - cookiesStrings.push(cookiesString.substring(start, cookiesString.length)); - } - } - return cookiesStrings; -} -// src/request-cookies.ts -var RequestCookies = class { - constructor(requestHeaders){ - /** @internal */ this._parsed = /* @__PURE__ */ new Map(); - this._headers = requestHeaders; - const header = requestHeaders.get("cookie"); - if (header) { - const parsed = parseCookie(header); - for (const [name, value] of parsed){ - this._parsed.set(name, { - name, - value - }); - } - } - } - [Symbol.iterator]() { - return this._parsed[Symbol.iterator](); - } - /** - * The amount of cookies received from the client - */ get size() { - return this._parsed.size; - } - get(...args) { - const name = typeof args[0] === "string" ? args[0] : args[0].name; - return this._parsed.get(name); - } - getAll(...args) { - var _a; - const all = Array.from(this._parsed); - if (!args.length) { - return all.map(([_, value])=>value); - } - const name = typeof args[0] === "string" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name; - return all.filter(([n])=>n === name).map(([_, value])=>value); - } - has(name) { - return this._parsed.has(name); - } - set(...args) { - const [name, value] = args.length === 1 ? [ - args[0].name, - args[0].value - ] : args; - const map = this._parsed; - map.set(name, { - name, - value - }); - this._headers.set("cookie", Array.from(map).map(([_, value2])=>stringifyCookie(value2)).join("; ")); - return this; - } - /** - * Delete the cookies matching the passed name or names in the request. - */ delete(names) { - const map = this._parsed; - const result = !Array.isArray(names) ? map.delete(names) : names.map((name)=>map.delete(name)); - this._headers.set("cookie", Array.from(map).map(([_, value])=>stringifyCookie(value)).join("; ")); - return result; - } - /** - * Delete all the cookies in the cookies in the request. - */ clear() { - this.delete(Array.from(this._parsed.keys())); - return this; - } - /** - * Format the cookies in the request as a string for logging - */ [Symbol.for("edge-runtime.inspect.custom")]() { - return `RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`; - } - toString() { - return [ - ...this._parsed.values() - ].map((v)=>`${v.name}=${encodeURIComponent(v.value)}`).join("; "); - } -}; -// src/response-cookies.ts -var ResponseCookies = class { - constructor(responseHeaders){ - /** @internal */ this._parsed = /* @__PURE__ */ new Map(); - var _a, _b, _c; - this._headers = responseHeaders; - const setCookie = (_c = (_b = (_a = responseHeaders.getSetCookie) == null ? void 0 : _a.call(responseHeaders)) != null ? _b : responseHeaders.get("set-cookie")) != null ? _c : []; - const cookieStrings = Array.isArray(setCookie) ? setCookie : splitCookiesString(setCookie); - for (const cookieString of cookieStrings){ - const parsed = parseSetCookie(cookieString); - if (parsed) this._parsed.set(parsed.name, parsed); - } - } - /** - * {@link https://wicg.github.io/cookie-store/#CookieStore-get CookieStore#get} without the Promise. - */ get(...args) { - const key = typeof args[0] === "string" ? args[0] : args[0].name; - return this._parsed.get(key); - } - /** - * {@link https://wicg.github.io/cookie-store/#CookieStore-getAll CookieStore#getAll} without the Promise. - */ getAll(...args) { - var _a; - const all = Array.from(this._parsed.values()); - if (!args.length) { - return all; - } - const key = typeof args[0] === "string" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name; - return all.filter((c)=>c.name === key); - } - has(name) { - return this._parsed.has(name); - } - /** - * {@link https://wicg.github.io/cookie-store/#CookieStore-set CookieStore#set} without the Promise. - */ set(...args) { - const [name, value, cookie] = args.length === 1 ? [ - args[0].name, - args[0].value, - args[0] - ] : args; - const map = this._parsed; - map.set(name, normalizeCookie({ - name, - value, - ...cookie - })); - replace(map, this._headers); - return this; - } - /** - * {@link https://wicg.github.io/cookie-store/#CookieStore-delete CookieStore#delete} without the Promise. - */ delete(...args) { - const [name, options] = typeof args[0] === "string" ? [ - args[0] - ] : [ - args[0].name, - args[0] - ]; - return this.set({ - ...options, - name, - value: "", - expires: /* @__PURE__ */ new Date(0) - }); - } - [Symbol.for("edge-runtime.inspect.custom")]() { - return `ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`; - } - toString() { - return [ - ...this._parsed.values() - ].map(stringifyCookie).join("; "); - } -}; -function replace(bag, headers) { - headers.delete("set-cookie"); - for (const [, value] of bag){ - const serialized = stringifyCookie(value); - headers.append("set-cookie", serialized); - } -} -function normalizeCookie(cookie = { - name: "", - value: "" -}) { - if (typeof cookie.expires === "number") { - cookie.expires = new Date(cookie.expires); - } - if (cookie.maxAge) { - cookie.expires = new Date(Date.now() + cookie.maxAge * 1e3); - } - if (cookie.path === null || cookie.path === void 0) { - cookie.path = "/"; - } - return cookie; -} -// Annotate the CommonJS export names for ESM import in node: -0 && (module.exports = { - RequestCookies, - ResponseCookies, - parseCookie, - parseSetCookie, - stringifyCookie -}); -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/cookies.js [app-rsc] (ecmascript) <locals>", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f40$edge$2d$runtime$2f$cookies$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js [app-rsc] (ecmascript)"); //# sourceMappingURL=cookies.js.map -; -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/request.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "INTERNALS", - ()=>INTERNALS, - "NextRequest", - ()=>NextRequest -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$next$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/next-url.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$cookies$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/cookies.js [app-rsc] (ecmascript) <locals>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f40$edge$2d$runtime$2f$cookies$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js [app-rsc] (ecmascript)"); -; -; -; -; -const INTERNALS = Symbol('internal request'); -class NextRequest extends Request { - constructor(input, init = {}){ - const url = typeof input !== 'string' && 'url' in input ? input.url : String(input); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["validateURL"])(url); - // node Request instance requires duplex option when a body - // is present or it errors, we don't handle this for - // Request being passed in since it would have already - // errored if this wasn't configured - if ("TURBOPACK compile-time truthy", 1) { - if (init.body && init.duplex !== 'half') { - init.duplex = 'half'; - } - } - if (input instanceof Request) super(input, init); - else super(url, init); - const nextUrl = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$next$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextURL"](url, { - headers: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["toNodeOutgoingHttpHeaders"])(this.headers), - nextConfig: init.nextConfig - }); - this[INTERNALS] = { - cookies: new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f40$edge$2d$runtime$2f$cookies$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RequestCookies"](this.headers), - nextUrl, - url: ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : nextUrl.toString() - }; - } - [Symbol.for('edge-runtime.inspect.custom')]() { - return { - cookies: this.cookies, - nextUrl: this.nextUrl, - url: this.url, - // rest of props come from Request - bodyUsed: this.bodyUsed, - cache: this.cache, - credentials: this.credentials, - destination: this.destination, - headers: Object.fromEntries(this.headers), - integrity: this.integrity, - keepalive: this.keepalive, - method: this.method, - mode: this.mode, - redirect: this.redirect, - referrer: this.referrer, - referrerPolicy: this.referrerPolicy, - signal: this.signal - }; - } - get cookies() { - return this[INTERNALS].cookies; - } - get nextUrl() { - return this[INTERNALS].nextUrl; - } - /** - * @deprecated - * `page` has been deprecated in favour of `URLPattern`. - * Read more: https://nextjs.org/docs/messages/middleware-request-page - */ get page() { - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RemovedPageError"](); - } - /** - * @deprecated - * `ua` has been removed in favour of \`userAgent\` function. - * Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent - */ get ua() { - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RemovedUAError"](); - } - get url() { - return this[INTERNALS].url; - } -} //# sourceMappingURL=request.js.map -}), -"[project]/node_modules/next/dist/esm/server/base-http/helpers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * This file provides some helpers that should be used in conjunction with - * explicit environment checks. When combined with the environment checks, it - * will ensure that the correct typings are used as well as enable code - * elimination. - */ /** - * Type guard to determine if a request is a WebNextRequest. This does not - * actually check the type of the request, but rather the runtime environment. - * It's expected that when the runtime environment is the edge runtime, that any - * base request is a WebNextRequest. - */ __turbopack_context__.s([ - "isNodeNextRequest", - ()=>isNodeNextRequest, - "isNodeNextResponse", - ()=>isNodeNextResponse, - "isWebNextRequest", - ()=>isWebNextRequest, - "isWebNextResponse", - ()=>isWebNextResponse -]); -const isWebNextRequest = (req)=>("TURBOPACK compile-time value", "nodejs") === 'edge'; -const isWebNextResponse = (res)=>("TURBOPACK compile-time value", "nodejs") === 'edge'; -const isNodeNextRequest = (req)=>("TURBOPACK compile-time value", "nodejs") !== 'edge'; -const isNodeNextResponse = (res)=>("TURBOPACK compile-time value", "nodejs") !== 'edge'; //# sourceMappingURL=helpers.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/next-request.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "NextRequestAdapter", - ()=>NextRequestAdapter, - "ResponseAborted", - ()=>ResponseAborted, - "ResponseAbortedName", - ()=>ResponseAbortedName, - "createAbortController", - ()=>createAbortController, - "signalFromNodeResponse", - ()=>signalFromNodeResponse -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request-meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/request.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/base-http/helpers.js [app-rsc] (ecmascript)"); -; -; -; -; -const ResponseAbortedName = 'ResponseAborted'; -class ResponseAborted extends Error { - constructor(...args){ - super(...args), this.name = ResponseAbortedName; - } -} -function createAbortController(response) { - const controller = new AbortController(); - // If `finish` fires first, then `res.end()` has been called and the close is - // just us finishing the stream on our side. If `close` fires first, then we - // know the client disconnected before we finished. - response.once('close', ()=>{ - if (response.writableFinished) return; - controller.abort(new ResponseAborted()); - }); - return controller; -} -function signalFromNodeResponse(response) { - const { errored, destroyed } = response; - if (errored || destroyed) { - return AbortSignal.abort(errored ?? new ResponseAborted()); - } - const { signal } = createAbortController(response); - return signal; -} -class NextRequestAdapter { - static fromBaseNextRequest(request, signal) { - if (// environment variable check provides dead code elimination. - ("TURBOPACK compile-time value", "nodejs") === 'edge' && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isWebNextRequest"])(request)) //TURBOPACK unreachable - ; - else if (// environment variable check provides dead code elimination. - ("TURBOPACK compile-time value", "nodejs") !== 'edge' && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isNodeNextRequest"])(request)) { - return NextRequestAdapter.fromNodeNextRequest(request, signal); - } else { - throw Object.defineProperty(new Error('Invariant: Unsupported NextRequest type'), "__NEXT_ERROR_CODE", { - value: "E345", - enumerable: false, - configurable: true - }); - } - } - static fromNodeNextRequest(request, signal) { - // HEAD and GET requests can not have a body. - let body = null; - if (request.method !== 'GET' && request.method !== 'HEAD' && request.body) { - // @ts-expect-error - this is handled by undici, when streams/web land use it instead - body = request.body; - } - let url; - if (request.url.startsWith('http')) { - url = new URL(request.url); - } else { - // Grab the full URL from the request metadata. - const base = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(request, 'initURL'); - if (!base || !base.startsWith('http')) { - // Because the URL construction relies on the fact that the URL provided - // is absolute, we need to provide a base URL. We can't use the request - // URL because it's relative, so we use a dummy URL instead. - url = new URL(request.url, 'http://n'); - } else { - url = new URL(request.url, base); - } - } - return new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextRequest"](url, { - method: request.method, - headers: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["fromNodeOutgoingHttpHeaders"])(request.headers), - duplex: 'half', - signal, - // geo - // ip - // nextConfig - // body can not be passed if request was aborted - // or we get a Request body was disturbed error - ...signal.aborted ? {} : { - body - } - }); - } - static fromWebNextRequest(request) { - // HEAD and GET requests can not have a body. - let body = null; - if (request.method !== 'GET' && request.method !== 'HEAD') { - body = request.body; - } - return new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextRequest"](request.url, { - method: request.method, - headers: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["fromNodeOutgoingHttpHeaders"])(request.headers), - duplex: 'half', - signal: request.request.signal, - // geo - // ip - // nextConfig - // body can not be passed if request was aborted - // or we get a Request body was disturbed error - ...request.request.signal.aborted ? {} : { - body - } - }); - } -} //# sourceMappingURL=next-request.js.map -}), -"[project]/node_modules/next/dist/esm/server/client-component-renderer-logger.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getClientComponentLoaderMetrics", - ()=>getClientComponentLoaderMetrics, - "wrapClientComponentLoader", - ()=>wrapClientComponentLoader -]); -// Combined load times for loading client components -let clientComponentLoadStart = 0; -let clientComponentLoadTimes = 0; -let clientComponentLoadCount = 0; -function wrapClientComponentLoader(ComponentMod) { - if (!('performance' in globalThis)) { - return ComponentMod.__next_app__; - } - return { - require: (...args)=>{ - const startTime = performance.now(); - if (clientComponentLoadStart === 0) { - clientComponentLoadStart = startTime; - } - try { - clientComponentLoadCount += 1; - return ComponentMod.__next_app__.require(...args); - } finally{ - clientComponentLoadTimes += performance.now() - startTime; - } - }, - loadChunk: (...args)=>{ - const startTime = performance.now(); - const result = ComponentMod.__next_app__.loadChunk(...args); - // Avoid wrapping `loadChunk`'s result in an extra promise in case something like React depends on its identity. - // We only need to know when it's settled. - result.finally(()=>{ - clientComponentLoadTimes += performance.now() - startTime; - }); - return result; - } - }; -} -function getClientComponentLoaderMetrics(options = {}) { - const metrics = clientComponentLoadStart === 0 ? undefined : { - clientComponentLoadStart, - clientComponentLoadTimes, - clientComponentLoadCount - }; - if (options.reset) { - clientComponentLoadStart = 0; - clientComponentLoadTimes = 0; - clientComponentLoadCount = 0; - } - return metrics; -} //# sourceMappingURL=client-component-renderer-logger.js.map -}), -"[project]/node_modules/next/dist/esm/server/pipe-readable.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isAbortError", - ()=>isAbortError, - "pipeToNodeResponse", - ()=>pipeToNodeResponse -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$next$2d$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/next-request.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/detached-promise.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$client$2d$component$2d$renderer$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/client-component-renderer-logger.js [app-rsc] (ecmascript)"); -; -; -; -; -; -function isAbortError(e) { - return (e == null ? void 0 : e.name) === 'AbortError' || (e == null ? void 0 : e.name) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$next$2d$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ResponseAbortedName"]; -} -function createWriterFromResponse(res, waitUntilForEnd) { - let started = false; - // Create a promise that will resolve once the response has drained. See - // https://nodejs.org/api/stream.html#stream_event_drain - let drained = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - function onDrain() { - drained.resolve(); - } - res.on('drain', onDrain); - // If the finish event fires, it means we shouldn't block and wait for the - // drain event. - res.once('close', ()=>{ - res.off('drain', onDrain); - drained.resolve(); - }); - // Create a promise that will resolve once the response has finished. See - // https://nodejs.org/api/http.html#event-finish_1 - const finished = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - res.once('finish', ()=>{ - finished.resolve(); - }); - // Create a writable stream that will write to the response. - return new WritableStream({ - write: async (chunk)=>{ - // You'd think we'd want to use `start` instead of placing this in `write` - // but this ensures that we don't actually flush the headers until we've - // started writing chunks. - if (!started) { - started = true; - if ('performance' in globalThis && process.env.NEXT_OTEL_PERFORMANCE_PREFIX) { - const metrics = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$client$2d$component$2d$renderer$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getClientComponentLoaderMetrics"])(); - if (metrics) { - performance.measure(`${process.env.NEXT_OTEL_PERFORMANCE_PREFIX}:next-client-component-loading`, { - start: metrics.clientComponentLoadStart, - end: metrics.clientComponentLoadStart + metrics.clientComponentLoadTimes - }); - } - } - res.flushHeaders(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextNodeServerSpan"].startResponse, { - spanName: 'start response' - }, ()=>undefined); - } - try { - const ok = res.write(chunk); - // Added by the `compression` middleware, this is a function that will - // flush the partially-compressed response to the client. - if ('flush' in res && typeof res.flush === 'function') { - res.flush(); - } - // If the write returns false, it means there's some backpressure, so - // wait until it's streamed before continuing. - if (!ok) { - await drained.promise; - // Reset the drained promise so that we can wait for the next drain event. - drained = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - } - } catch (err) { - res.end(); - throw Object.defineProperty(new Error('failed to write chunk to response', { - cause: err - }), "__NEXT_ERROR_CODE", { - value: "E321", - enumerable: false, - configurable: true - }); - } - }, - abort: (err)=>{ - if (res.writableFinished) return; - res.destroy(err); - }, - close: async ()=>{ - // if a waitUntil promise was passed, wait for it to resolve before - // ending the response. - if (waitUntilForEnd) { - await waitUntilForEnd; - } - if (res.writableFinished) return; - res.end(); - return finished.promise; - } - }); -} -async function pipeToNodeResponse(readable, res, waitUntilForEnd) { - try { - // If the response has already errored, then just return now. - const { errored, destroyed } = res; - if (errored || destroyed) return; - // Create a new AbortController so that we can abort the readable if the - // client disconnects. - const controller = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$next$2d$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createAbortController"])(res); - const writer = createWriterFromResponse(res, waitUntilForEnd); - await readable.pipeTo(writer, { - signal: controller.signal - }); - } catch (err) { - // If this isn't related to an abort error, re-throw it. - if (isAbortError(err)) return; - throw Object.defineProperty(new Error('failed to pipe response', { - cause: err - }), "__NEXT_ERROR_CODE", { - value: "E180", - enumerable: false, - configurable: true - }); - } -} //# sourceMappingURL=pipe-readable.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RedirectStatusCode", - ()=>RedirectStatusCode -]); -var RedirectStatusCode = /*#__PURE__*/ function(RedirectStatusCode) { - RedirectStatusCode[RedirectStatusCode["SeeOther"] = 303] = "SeeOther"; - RedirectStatusCode[RedirectStatusCode["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - RedirectStatusCode[RedirectStatusCode["PermanentRedirect"] = 308] = "PermanentRedirect"; - return RedirectStatusCode; -}({}); //# sourceMappingURL=redirect-status-code.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "REDIRECT_ERROR_CODE", - ()=>REDIRECT_ERROR_CODE, - "RedirectType", - ()=>RedirectType, - "isRedirectError", - ()=>isRedirectError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-rsc] (ecmascript)"); -; -const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'; -var RedirectType = /*#__PURE__*/ function(RedirectType) { - RedirectType["push"] = "push"; - RedirectType["replace"] = "replace"; - return RedirectType; -}({}); -function isRedirectError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const digest = error.digest.split(';'); - const [errorCode, type] = digest; - const destination = digest.slice(2, -2).join(';'); - const status = digest.at(-2); - const statusCode = Number(status); - return errorCode === REDIRECT_ERROR_CODE && (type === 'replace' || type === 'push') && typeof destination === 'string' && !isNaN(statusCode) && statusCode in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RedirectStatusCode"]; -} //# sourceMappingURL=redirect-error.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isNextRouterError", - ()=>isNextRouterError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-rsc] (ecmascript)"); -; -; -function isNextRouterError(error) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isRedirectError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(error); -} //# sourceMappingURL=is-next-router-error.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/is-plain-object.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getObjectClassLabel", - ()=>getObjectClassLabel, - "isPlainObject", - ()=>isPlainObject -]); -function getObjectClassLabel(value) { - return Object.prototype.toString.call(value); -} -function isPlainObject(value) { - if (getObjectClassLabel(value) !== '[object Object]') { - return false; - } - const prototype = Object.getPrototypeOf(value); - /** - * this used to be previously: - * - * `return prototype === null || prototype === Object.prototype` - * - * but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail. - * - * It was changed to the current implementation since it's resilient to serialization. - */ return prototype === null || prototype.hasOwnProperty('isPrototypeOf'); -} //# sourceMappingURL=is-plain-object.js.map -}), -"[project]/node_modules/next/dist/esm/lib/is-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>isError, - "getProperError", - ()=>getProperError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$plain$2d$object$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/is-plain-object.js [app-rsc] (ecmascript)"); -; -/** - * This is a safe stringify function that handles circular references. - * We're using a simpler version here to avoid introducing - * the dependency `safe-stable-stringify` into production bundle. - * - * This helper is used both in development and production. - */ function safeStringifyLite(obj) { - const seen = new WeakSet(); - return JSON.stringify(obj, (_key, value)=>{ - // If value is an object and already seen, replace with "[Circular]" - if (typeof value === 'object' && value !== null) { - if (seen.has(value)) { - return '[Circular]'; - } - seen.add(value); - } - return value; - }); -} -function isError(err) { - return typeof err === 'object' && err !== null && 'name' in err && 'message' in err; -} -function getProperError(err) { - if (isError(err)) { - return err; - } - if ("TURBOPACK compile-time truthy", 1) { - // provide better error for case where `throw undefined` - // is called in development - if (typeof err === 'undefined') { - return Object.defineProperty(new Error('An undefined error was thrown, ' + 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'), "__NEXT_ERROR_CODE", { - value: "E98", - enumerable: false, - configurable: true - }); - } - if (err === null) { - return Object.defineProperty(new Error('A null error was thrown, ' + 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'), "__NEXT_ERROR_CODE", { - value: "E336", - enumerable: false, - configurable: true - }); - } - } - return Object.defineProperty(new Error((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$plain$2d$object$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isPlainObject"])(err) ? safeStringifyLite(err) : err + ''), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=is-error.js.map -}), -"[project]/node_modules/next/dist/esm/lib/error-telemetry-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDigestWithErrorCode", - ()=>createDigestWithErrorCode, - "extractNextErrorCode", - ()=>extractNextErrorCode -]); -const ERROR_CODE_DELIMITER = '@'; -const createDigestWithErrorCode = (thrownValue, originalDigest)=>{ - if (typeof thrownValue === 'object' && thrownValue !== null && '__NEXT_ERROR_CODE' in thrownValue) { - return `${originalDigest}${ERROR_CODE_DELIMITER}${thrownValue.__NEXT_ERROR_CODE}`; - } - return originalDigest; -}; -const extractNextErrorCode = (error)=>{ - if (typeof error === 'object' && error !== null && '__NEXT_ERROR_CODE' in error && typeof error.__NEXT_ERROR_CODE === 'string') { - return error.__NEXT_ERROR_CODE; - } - if (typeof error === 'object' && error !== null && 'digest' in error && typeof error.digest === 'string') { - const segments = error.digest.split(ERROR_CODE_DELIMITER); - const errorCode = segments.find((segment)=>segment.startsWith('E')); - return errorCode; - } - return undefined; -}; //# sourceMappingURL=error-telemetry-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/react-large-shell-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// TODO: isWellKnownError -> isNextInternalError -// isReactLargeShellError -> isWarning -__turbopack_context__.s([ - "isReactLargeShellError", - ()=>isReactLargeShellError -]); -function isReactLargeShellError(error) { - return typeof error === 'object' && error !== null && 'message' in error && typeof error.message === 'string' && error.message.startsWith('This rendered a large document (>'); -} //# sourceMappingURL=react-large-shell-error.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/create-error-handler.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createHTMLErrorHandler", - ()=>createHTMLErrorHandler, - "createReactServerErrorHandler", - ()=>createReactServerErrorHandler, - "getDigestForWellKnownError", - ()=>getDigestForWellKnownError, - "isUserLandError", - ()=>isUserLandError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$string$2d$hash$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/string-hash/index.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$format$2d$server$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/format-server-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/pipe-readable.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$is$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/is-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$error$2d$telemetry$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/error-telemetry-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/react-large-shell-error.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -function getDigestForWellKnownError(error) { - // If we're bailing out to CSR, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isBailoutToCSRError"])(error)) return error.digest; - // If this is a navigation error, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isNextRouterError"])(error)) return error.digest; - // If this error occurs, we know that we should be stopping the static - // render. This is only thrown in static generation when PPR is not enabled, - // which causes the whole page to be marked as dynamic. We don't need to - // tell the user about this error, as it's not actionable. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isDynamicServerError"])(error)) return error.digest; - // If this is a prerender interrupted error, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isPrerenderInterruptedError"])(error)) return error.digest; - return undefined; -} -function createReactServerErrorHandler(shouldFormatError, isNextExport, reactServerErrors, onReactServerRenderError, spanToRecordOn) { - return (thrownValue)=>{ - var _err_message; - if (typeof thrownValue === 'string') { - // TODO-APP: look at using webcrypto instead. Requires a promise to be awaited. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$string$2d$hash$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"])(thrownValue).toString(); - } - // If the response was closed, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAbortError"])(thrownValue)) return; - const digest = getDigestForWellKnownError(thrownValue); - if (digest) { - return digest; - } - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isReactLargeShellError"])(thrownValue)) { - // TODO: Aggregate - console.error(thrownValue); - return undefined; - } - let err = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$is$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getProperError"])(thrownValue); - let silenceLog = false; - // If the error already has a digest, respect the original digest, - // so it won't get re-generated into another new error. - if (err.digest) { - if (("TURBOPACK compile-time value", "development") === 'production' && reactServerErrors.has(err.digest)) //TURBOPACK unreachable - ; - else { - // Either we're in development (where we want to keep the transported - // error with environmentName), or the error is not in reactServerErrors - // but has a digest from other means. Keep the error as-is. - } - } else { - err.digest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$error$2d$telemetry$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDigestWithErrorCode"])(err, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$string$2d$hash$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"])(err.message + (err.stack || '')).toString()); - } - // @TODO by putting this here and not at the top it is possible that - // we don't error the build in places we actually expect to - if (!reactServerErrors.has(err.digest)) { - reactServerErrors.set(err.digest, err); - } - // Format server errors in development to add more helpful error messages - if (shouldFormatError) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$format$2d$server$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["formatServerError"])(err); - } - // Don't log the suppressed error during export - if (!(isNextExport && (err == null ? void 0 : (_err_message = err.message) == null ? void 0 : _err_message.includes('The specific message is omitted in production builds to avoid leaking sensitive details.')))) { - // Record exception on the provided span if available, otherwise try active span. - const span = spanToRecordOn ?? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().getActiveScopeSpan(); - if (span) { - span.recordException(err); - span.setAttribute('error.type', err.name); - span.setStatus({ - code: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SpanStatusCode"].ERROR, - message: err.message - }); - } - onReactServerRenderError(err, silenceLog); - } - return err.digest; - }; -} -function createHTMLErrorHandler(shouldFormatError, isNextExport, reactServerErrors, allCapturedErrors, onHTMLRenderSSRError, spanToRecordOn) { - return (thrownValue, errorInfo)=>{ - var _err_message; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isReactLargeShellError"])(thrownValue)) { - // TODO: Aggregate - console.error(thrownValue); - return undefined; - } - let isSSRError = true; - allCapturedErrors.push(thrownValue); - // If the response was closed, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAbortError"])(thrownValue)) return; - const digest = getDigestForWellKnownError(thrownValue); - if (digest) { - return digest; - } - const err = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$is$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getProperError"])(thrownValue); - // If the error already has a digest, respect the original digest, - // so it won't get re-generated into another new error. - if (err.digest) { - if (reactServerErrors.has(err.digest)) { - // This error is likely an obfuscated error from react-server. - // We recover the original error here. - thrownValue = reactServerErrors.get(err.digest); - isSSRError = false; - } else { - // The error is not from react-server but has a digest - // from other means so we don't need to produce a new one - } - } else { - err.digest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$error$2d$telemetry$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDigestWithErrorCode"])(err, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$string$2d$hash$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"])(err.message + ((errorInfo == null ? void 0 : errorInfo.componentStack) || err.stack || '')).toString()); - } - // Format server errors in development to add more helpful error messages - if (shouldFormatError) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$format$2d$server$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["formatServerError"])(err); - } - // Don't log the suppressed error during export - if (!(isNextExport && (err == null ? void 0 : (_err_message = err.message) == null ? void 0 : _err_message.includes('The specific message is omitted in production builds to avoid leaking sensitive details.')))) { - // HTML errors contain RSC errors as well, filter them out before reporting - if (isSSRError) { - // Record exception on the provided span if available, otherwise try active span. - const span = spanToRecordOn ?? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().getActiveScopeSpan(); - if (span) { - span.recordException(err); - span.setAttribute('error.type', err.name); - span.setStatus({ - code: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SpanStatusCode"].ERROR, - message: err.message - }); - } - onHTMLRenderSSRError(err, errorInfo); - } - } - return err.digest; - }; -} -function isUserLandError(err) { - return !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAbortError"])(err) && !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isBailoutToCSRError"])(err) && !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isNextRouterError"])(err); -} //# sourceMappingURL=create-error-handler.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/prospective-render-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Phase", - ()=>Phase, - "printDebugThrownValueForProspectiveRender", - ()=>printDebugThrownValueForProspectiveRender -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$create$2d$error$2d$handler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/create-error-handler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/react-large-shell-error.js [app-rsc] (ecmascript)"); -; -; -var Phase = /*#__PURE__*/ function(Phase) { - Phase["ProspectiveRender"] = "the prospective render"; - Phase["SegmentCollection"] = "segment collection"; - return Phase; -}({}); -function printDebugThrownValueForProspectiveRender(thrownValue, route, phase) { - // We don't need to print well-known Next.js errors. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$create$2d$error$2d$handler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getDigestForWellKnownError"])(thrownValue)) { - return; - } - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isReactLargeShellError"])(thrownValue)) { - // TODO: Aggregate - console.error(thrownValue); - return undefined; - } - let message; - if (typeof thrownValue === 'object' && thrownValue !== null && typeof thrownValue.message === 'string') { - message = thrownValue.message; - if (typeof thrownValue.stack === 'string') { - const originalErrorStack = thrownValue.stack; - const stackStart = originalErrorStack.indexOf('\n'); - if (stackStart > -1) { - const error = Object.defineProperty(new Error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. - -Original Error: ${message}`), "__NEXT_ERROR_CODE", { - value: "E949", - enumerable: false, - configurable: true - }); - error.stack = 'Error: ' + error.message + originalErrorStack.slice(stackStart); - console.error(error); - return; - } - } - } else if (typeof thrownValue === 'string') { - message = thrownValue; - } - if (message) { - console.error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. No stack was provided. - -Original Message: ${message}`); - return; - } - console.error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. The thrown value is logged just following this message`); - console.error(thrownValue); - return; -} //# sourceMappingURL=prospective-render-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/source-maps.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "devirtualizeReactServerURL", - ()=>devirtualizeReactServerURL, - "filterStackFrameDEV", - ()=>filterStackFrameDEV, - "findApplicableSourceMapPayload", - ()=>findApplicableSourceMapPayload, - "findSourceMapURLDEV", - ()=>findSourceMapURLDEV, - "ignoreListAnonymousStackFramesIfSandwiched", - ()=>ignoreListAnonymousStackFramesIfSandwiched, - "sourceMapIgnoreListsEverything", - ()=>sourceMapIgnoreListsEverything -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/lru-cache.js [app-rsc] (ecmascript)"); -; -function noSourceMap() { - return undefined; -} -// Edge runtime does not implement `module` -const findSourceMap = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : __turbopack_context__.r("[externals]/module [external] (module, cjs)").findSourceMap; -function sourceMapIgnoreListsEverything(sourceMap) { - return sourceMap.ignoreList !== undefined && sourceMap.sources.length === sourceMap.ignoreList.length; -} -function findApplicableSourceMapPayload(line0, column0, payload) { - if ('sections' in payload) { - if (payload.sections.length === 0) { - return undefined; - } - // Sections must not overlap and must be sorted: https://tc39.es/source-map/#section-object - // Therefore the last section that has an offset less than or equal to the frame is the applicable one. - const sections = payload.sections; - let left = 0; - let right = sections.length - 1; - let result = null; - while(left <= right){ - // fast Math.floor - const middle = ~~((left + right) / 2); - const section = sections[middle]; - const offset = section.offset; - if (offset.line < line0 || offset.line === line0 && offset.column <= column0) { - result = section; - left = middle + 1; - } else { - right = middle - 1; - } - } - return result === null ? undefined : result.map; - } else { - return payload; - } -} -const didWarnAboutInvalidSourceMapDEV = new Set(); -function filterStackFrameDEV(sourceURL, functionName, line1, column1) { - if (sourceURL === '') { - // The default implementation filters out <anonymous> stack frames - // but we want to retain them because current Server Components and - // built-in Components in parent stacks don't have source location. - // Filter out frames that show up in Promises to get good names in React's - // Server Request track until we come up with a better heuristic. - return functionName !== 'new Promise'; - } - if (sourceURL.startsWith('node:') || sourceURL.includes('node_modules')) { - return false; - } - try { - // Node.js loads source maps eagerly so this call is cheap. - // TODO: ESM sourcemaps are O(1) but CommonJS sourcemaps are O(Number of CJS modules). - // Make sure this doesn't adversely affect performance when CJS is used by Next.js. - const sourceMap = findSourceMap(sourceURL); - if (sourceMap === undefined) { - // No source map assoicated. - // TODO: Node.js types should reflect that `findSourceMap` can return `undefined`. - return true; - } - const sourceMapPayload = findApplicableSourceMapPayload(line1 - 1, column1 - 1, sourceMap.payload); - if (sourceMapPayload === undefined) { - // No source map section applicable to the frame. - return true; - } - return !sourceMapIgnoreListsEverything(sourceMapPayload); - } catch (cause) { - if ("TURBOPACK compile-time truthy", 1) { - // TODO: Share cache with patch-error-inspect - if (!didWarnAboutInvalidSourceMapDEV.has(sourceURL)) { - didWarnAboutInvalidSourceMapDEV.add(sourceURL); - // We should not log an actual error instance here because that will re-enter - // this codepath during error inspection and could lead to infinite recursion. - console.error(`${sourceURL}: Invalid source map. Only conformant source maps can be used to filter stack frames. Cause: ${cause}`); - } - } - return true; - } -} -const invalidSourceMap = Symbol('invalid-source-map'); -const sourceMapURLs = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LRUCache"](512 * 1024 * 1024, (url)=>url === invalidSourceMap ? 8 * 1024 : url.length); -function findSourceMapURLDEV(scriptNameOrSourceURL) { - let sourceMapURL = sourceMapURLs.get(scriptNameOrSourceURL); - if (sourceMapURL === undefined) { - let sourceMapPayload; - try { - var _findSourceMap; - sourceMapPayload = (_findSourceMap = findSourceMap(scriptNameOrSourceURL)) == null ? void 0 : _findSourceMap.payload; - } catch (cause) { - console.error(`${scriptNameOrSourceURL}: Invalid source map. Only conformant source maps can be used to find the original code. Cause: ${cause}`); - } - if (sourceMapPayload === undefined) { - sourceMapURL = invalidSourceMap; - } else { - // TODO: Might be more efficient to extract the relevant section from Index Maps. - // Unclear if that search is worth the smaller payload we have to stringify. - const sourceMapJSON = JSON.stringify(sourceMapPayload); - const sourceMapURLData = Buffer.from(sourceMapJSON, 'utf8').toString('base64'); - sourceMapURL = `data:application/json;base64,${sourceMapURLData}`; - } - sourceMapURLs.set(scriptNameOrSourceURL, sourceMapURL); - } - return sourceMapURL === invalidSourceMap ? null : sourceMapURL; -} -function devirtualizeReactServerURL(sourceURL) { - if (sourceURL.startsWith('about://React/')) { - // about://React/Server/file://<filename>?42 => file://<filename> - const envIdx = sourceURL.indexOf('/', 'about://React/'.length); - const suffixIdx = sourceURL.lastIndexOf('?'); - if (envIdx > -1 && suffixIdx > -1) { - return decodeURI(sourceURL.slice(envIdx + 1, suffixIdx)); - } - } - return sourceURL; -} -function isAnonymousFrameLikelyJSNative(methodName) { - // Anonymous frames can also be produced in React parent stacks either from - // host components or Server Components. We don't want to ignore those. - // This could hide user-space methods that are named like native JS methods but - // should you really do that? - return methodName.startsWith('JSON.') || // E.g. Promise.withResolves - methodName.startsWith('Function.') || // various JS built-ins - methodName.startsWith('Promise.') || methodName.startsWith('Array.') || methodName.startsWith('Set.') || methodName.startsWith('Map.'); -} -function ignoreListAnonymousStackFramesIfSandwiched(frames, isAnonymousFrame, isIgnoredFrame, getMethodName, /** only passes frames for which `isAnonymousFrame` and their method is a native JS method or `isIgnoredFrame` return true */ ignoreFrame) { - for(let i = 1; i < frames.length; i++){ - const currentFrame = frames[i]; - if (!(isAnonymousFrame(currentFrame) && isAnonymousFrameLikelyJSNative(getMethodName(currentFrame)))) { - continue; - } - const previousFrameIsIgnored = isIgnoredFrame(frames[i - 1]); - if (previousFrameIsIgnored && i < frames.length - 1) { - let ignoreSandwich = false; - let j = i + 1; - for(j; j < frames.length; j++){ - const nextFrame = frames[j]; - const nextFrameIsAnonymous = isAnonymousFrame(nextFrame) && isAnonymousFrameLikelyJSNative(getMethodName(nextFrame)); - if (nextFrameIsAnonymous) { - continue; - } - const nextFrameIsIgnored = isIgnoredFrame(nextFrame); - if (nextFrameIsIgnored) { - ignoreSandwich = true; - break; - } - } - if (ignoreSandwich) { - for(i; i < j; i++){ - ignoreFrame(frames[i]); - } - } - } - } -} //# sourceMappingURL=source-maps.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/collect-segment-data.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "collectSegmentData", - ()=>collectSegmentData -]); -/* eslint-disable @next/internal/no-ambiguous-jsx -- Bundled in entry-base so it gets the right JSX runtime. */ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$react$2d$server$2d$dom$2d$turbopack$2f$client$2e$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.node.js [app-rsc] (ecmascript)"); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/node-web-streams-helper.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$create$2d$error$2d$handler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/create-error-handler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$prospective$2d$render$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/prospective-render-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -; -; -; -; -; -; -; -; -; -const filterStackFrame = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/lib/source-maps.js [app-rsc] (ecmascript)").filterStackFrameDEV : "TURBOPACK unreachable"; -const findSourceMapURL = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/lib/source-maps.js [app-rsc] (ecmascript)").findSourceMapURLDEV : "TURBOPACK unreachable"; -function onSegmentPrerenderError(error) { - const digest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$create$2d$error$2d$handler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getDigestForWellKnownError"])(error); - if (digest) { - return digest; - } - // We don't need to log the errors because we would have already done that - // when generating the original Flight stream for the whole page. - if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$prospective$2d$render$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["printDebugThrownValueForProspectiveRender"])(error, (workStore == null ? void 0 : workStore.route) ?? 'unknown route', __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$prospective$2d$render$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Phase"].SegmentCollection); - } -} -async function collectSegmentData(isCacheComponentsEnabled, fullPageDataBuffer, staleTime, clientModules, serverConsumerManifest) { - // Traverse the router tree and generate a prefetch response for each segment. - // A mutable map to collect the results as we traverse the route tree. - const resultMap = new Map(); - // Before we start, warm up the module cache by decoding the page data once. - // Then we can assume that any remaining async tasks that occur the next time - // are due to hanging promises caused by dynamic data access. Note we only - // have to do this once per page, not per individual segment. - // - try { - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$react$2d$server$2d$dom$2d$turbopack$2f$client$2e$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createFromReadableStream"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromBuffer"])(fullPageDataBuffer), { - findSourceMapURL, - serverConsumerManifest - }); - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])(); - } catch {} - // Create an abort controller that we'll use to stop the stream. - const abortController = new AbortController(); - const onCompletedProcessingRouteTree = async ()=>{ - // Since all we're doing is decoding and re-encoding a cached prerender, if - // serializing the stream takes longer than a microtask, it must because of - // hanging promises caused by dynamic data. - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])(); - abortController.abort(); - }; - // Generate a stream for the route tree prefetch. While we're walking the - // tree, we'll also spawn additional tasks to generate the segment prefetches. - // The promises for these tasks are pushed to a mutable array that we will - // await once the route tree is fully rendered. - const segmentTasks = []; - const { prelude: treeStream } = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["prerender"])(// we need to use a component so that when we decode the original stream - // inside of it, the side effects are transferred to the new stream. - // @ts-expect-error - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(PrefetchTreeData, { - isClientParamParsingEnabled: isCacheComponentsEnabled, - fullPageDataBuffer: fullPageDataBuffer, - serverConsumerManifest: serverConsumerManifest, - clientModules: clientModules, - staleTime: staleTime, - segmentTasks: segmentTasks, - onCompletedProcessingRouteTree: onCompletedProcessingRouteTree - }), clientModules, { - filterStackFrame, - signal: abortController.signal, - onError: onSegmentPrerenderError - }); - // Write the route tree to a special `/_tree` segment. - const treeBuffer = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamToBuffer"])(treeStream); - resultMap.set('/_tree', treeBuffer); - // Also output the entire full page data response - resultMap.set('/_full', fullPageDataBuffer); - // Now that we've finished rendering the route tree, all the segment tasks - // should have been spawned. Await them in parallel and write the segment - // prefetches to the result map. - for (const [segmentPath, buffer] of (await Promise.all(segmentTasks))){ - resultMap.set(segmentPath, buffer); - } - return resultMap; -} -async function PrefetchTreeData({ isClientParamParsingEnabled, fullPageDataBuffer, serverConsumerManifest, clientModules, staleTime, segmentTasks, onCompletedProcessingRouteTree }) { - // We're currently rendering a Flight response for the route tree prefetch. - // Inside this component, decode the Flight stream for the whole page. This is - // a hack to transfer the side effects from the original Flight stream (e.g. - // Float preloads) onto the Flight stream for the tree prefetch. - // TODO: React needs a better way to do this. Needed for Server Actions, too. - const initialRSCPayload = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$react$2d$server$2d$dom$2d$turbopack$2f$client$2e$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createFromReadableStream"])(createUnclosingPrefetchStream((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromBuffer"])(fullPageDataBuffer)), { - findSourceMapURL, - serverConsumerManifest - }); - const buildId = initialRSCPayload.b; - // FlightDataPath is an unsound type, hence the additional checks. - const flightDataPaths = initialRSCPayload.f; - if (flightDataPaths.length !== 1 && flightDataPaths[0].length !== 3) { - console.error('Internal Next.js error: InitialRSCPayload does not match the expected ' + 'shape for a prerendered page during segment prefetch generation.'); - return null; - } - const flightRouterState = flightDataPaths[0][0]; - const seedData = flightDataPaths[0][1]; - const head = flightDataPaths[0][2]; - // Compute the route metadata tree by traversing the FlightRouterState. As we - // walk the tree, we will also spawn a task to produce a prefetch response for - // each segment. - const tree = collectSegmentDataImpl(isClientParamParsingEnabled, flightRouterState, buildId, seedData, clientModules, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"], segmentTasks); - // Also spawn a task to produce a prefetch response for the "head" segment. - // The head contains metadata, like the title; it's not really a route - // segment, but it contains RSC data, so it's treated like a segment by - // the client cache. - segmentTasks.push((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])().then(()=>renderSegmentPrefetch(buildId, head, null, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HEAD_REQUEST_KEY"], clientModules))); - // Notify the abort controller that we're done processing the route tree. - // Anything async that happens after this point must be due to hanging - // promises in the original stream. - onCompletedProcessingRouteTree(); - // Render the route tree to a special `/_tree` segment. - const treePrefetch = { - buildId, - tree, - staleTime - }; - return treePrefetch; -} -function collectSegmentDataImpl(isClientParamParsingEnabled, route, buildId, seedData, clientModules, requestKey, segmentTasks) { - // Metadata about the segment. Sent as part of the tree prefetch. Null if - // there are no children. - let slotMetadata = null; - const children = route[1]; - const seedDataChildren = seedData !== null ? seedData[1] : null; - for(const parallelRouteKey in children){ - const childRoute = children[parallelRouteKey]; - const childSegment = childRoute[0]; - const childSeedData = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null; - const childRequestKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["appendSegmentRequestKeyPart"])(requestKey, parallelRouteKey, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createSegmentRequestKeyPart"])(childSegment)); - const childTree = collectSegmentDataImpl(isClientParamParsingEnabled, childRoute, buildId, childSeedData, clientModules, childRequestKey, segmentTasks); - if (slotMetadata === null) { - slotMetadata = {}; - } - slotMetadata[parallelRouteKey] = childTree; - } - const hasRuntimePrefetch = seedData !== null ? seedData[4] : false; - if (seedData !== null) { - // Spawn a task to write the segment data to a new Flight stream. - segmentTasks.push(// current task to escape the current rendering context. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])().then(()=>renderSegmentPrefetch(buildId, seedData[0], seedData[2], requestKey, clientModules))); - } else { - // This segment does not have any seed data. Skip generating a prefetch - // response for it. We'll still include it in the route tree, though. - // TODO: We should encode in the route tree whether a segment is missing - // so we don't attempt to fetch it for no reason. As of now this shouldn't - // ever happen in practice, though. - } - const segment = route[0]; - let name; - let paramType = null; - let paramKey = null; - if (typeof segment === 'string') { - name = segment; - paramKey = segment; - paramType = null; - } else { - name = segment[0]; - paramKey = segment[1]; - paramType = segment[2]; - } - // Metadata about the segment. Sent to the client as part of the - // tree prefetch. - return { - name, - paramType, - // This value is ommitted from the prefetch response when cacheComponents - // is enabled. - paramKey: isClientParamParsingEnabled ? null : paramKey, - hasRuntimePrefetch, - slots: slotMetadata, - isRootLayout: route[4] === true - }; -} -async function renderSegmentPrefetch(buildId, rsc, loading, requestKey, clientModules) { - // Render the segment data to a stream. - // In the future, this is where we can include additional metadata, like the - // stale time and cache tags. - const segmentPrefetch = { - buildId, - rsc, - loading, - isPartial: await isPartialRSCData(rsc, clientModules) - }; - // Since all we're doing is decoding and re-encoding a cached prerender, if - // it takes longer than a microtask, it must because of hanging promises - // caused by dynamic data. Abort the stream at the end of the current task. - const abortController = new AbortController(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])().then(()=>abortController.abort()); - const { prelude: segmentStream } = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["prerender"])(segmentPrefetch, clientModules, { - filterStackFrame, - signal: abortController.signal, - onError: onSegmentPrerenderError - }); - const segmentBuffer = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamToBuffer"])(segmentStream); - if (requestKey === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"]) { - return [ - '/_index', - segmentBuffer - ]; - } else { - return [ - requestKey, - segmentBuffer - ]; - } -} -async function isPartialRSCData(rsc, clientModules) { - // We can determine if a segment contains only partial data if it takes longer - // than a task to encode, because dynamic data is encoded as an infinite - // promise. We must do this in a separate Flight prerender from the one that - // actually generates the prefetch stream because we need to include - // `isPartial` in the stream itself. - let isPartial = false; - const abortController = new AbortController(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])().then(()=>{ - // If we haven't yet finished the outer task, then it must be because we - // accessed dynamic data. - isPartial = true; - abortController.abort(); - }); - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["prerender"])(rsc, clientModules, { - filterStackFrame, - signal: abortController.signal, - onError () {} - }); - return isPartial; -} -function createUnclosingPrefetchStream(originalFlightStream) { - // When PPR is enabled, prefetch streams may contain references that never - // resolve, because that's how we encode dynamic data access. In the decoded - // object returned by the Flight client, these are reified into hanging - // promises that suspend during render, which is effectively what we want. - // The UI resolves when it switches to the dynamic data stream - // (via useDeferredValue(dynamic, static)). - // - // However, the Flight implementation currently errors if the server closes - // the response before all the references are resolved. As a cheat to work - // around this, we wrap the original stream in a new stream that never closes, - // and therefore doesn't error. - const reader = originalFlightStream.getReader(); - return new ReadableStream({ - async pull (controller) { - while(true){ - const { done, value } = await reader.read(); - if (!done) { - // Pass to the target stream and keep consuming the Flight response - // from the server. - controller.enqueue(value); - continue; - } - // The server stream has closed. Exit, but intentionally do not close - // the target stream. - return; - } - } - }); -} //# sourceMappingURL=collect-segment-data.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/clone-response.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "cloneResponse", - ()=>cloneResponse -]); -const noop = ()=>{}; -let registry; -if (globalThis.FinalizationRegistry) { - registry = new FinalizationRegistry((weakRef)=>{ - const stream = weakRef.deref(); - if (stream && !stream.locked) { - stream.cancel('Response object has been garbage collected').then(noop); - } - }); -} -function cloneResponse(original) { - // If the response has no body, then we can just return the original response - // twice because it's immutable. - if (!original.body) { - return [ - original, - original - ]; - } - const [body1, body2] = original.body.tee(); - const cloned1 = new Response(body1, { - status: original.status, - statusText: original.statusText, - headers: original.headers - }); - Object.defineProperty(cloned1, 'url', { - value: original.url, - // How the original response.url behaves - configurable: true, - enumerable: true, - writable: false - }); - // The Fetch Standard allows users to skip consuming the response body by - // relying on garbage collection to release connection resources. - // https://github.com/nodejs/undici?tab=readme-ov-file#garbage-collection - // - // To cancel the stream you then need to cancel both resulting branches. - // Teeing a stream will generally lock it for the duration, preventing other - // readers from locking it. - // https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/tee - // cloned2 is stored in a react cache and cloned for subsequent requests. - // It is the original request, and is is garbage collected by a - // FinalizationRegistry in Undici, but since we're tee-ing the stream - // ourselves, we need to cancel clone1's stream (the response returned from - // our dedupe fetch) when clone1 is reclaimed, otherwise we leak memory. - if (registry && cloned1.body) { - registry.register(cloned1, new WeakRef(cloned1.body)); - } - const cloned2 = new Response(body2, { - status: original.status, - statusText: original.statusText, - headers: original.headers - }); - Object.defineProperty(cloned2, 'url', { - value: original.url, - // How the original response.url behaves - configurable: true, - enumerable: true, - writable: false - }); - return [ - cloned1, - cloned2 - ]; -} //# sourceMappingURL=clone-response.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/dedupe-fetch.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDedupeFetch", - ()=>createDedupeFetch -]); -/** - * Based on https://github.com/facebook/react/blob/d4e78c42a94be027b4dc7ed2659a5fddfbf9bd4e/packages/react/src/ReactFetch.js - */ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/clone-response.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -; -; -; -const simpleCacheKey = '["GET",[],null,"follow",null,null,null,null]' // generateCacheKey(new Request('https://blank')); -; -// Headers that should not affect deduplication -// traceparent and tracestate are used for distributed tracing and should not affect cache keys -const headersToExcludeInCacheKey = new Set([ - 'traceparent', - 'tracestate' -]); -function generateCacheKey(request) { - // We pick the fields that goes into the key used to dedupe requests. - // We don't include the `cache` field, because we end up using whatever - // caching resulted from the first request. - // Notably we currently don't consider non-standard (or future) options. - // This might not be safe. TODO: warn for non-standard extensions differing. - // IF YOU CHANGE THIS UPDATE THE simpleCacheKey ABOVE. - const filteredHeaders = Array.from(request.headers.entries()).filter(([key])=>!headersToExcludeInCacheKey.has(key.toLowerCase())); - return JSON.stringify([ - request.method, - filteredHeaders, - request.mode, - request.redirect, - request.credentials, - request.referrer, - request.referrerPolicy, - request.integrity - ]); -} -function createDedupeFetch(originalFetch) { - const getCacheEntries = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"]((url)=>[]); - return function dedupeFetch(resource, options) { - if (options && options.signal) { - // If we're passed a signal, then we assume that - // someone else controls the lifetime of this object and opts out of - // caching. It's effectively the opt-out mechanism. - // Ideally we should be able to check this on the Request but - // it always gets initialized with its own signal so we don't - // know if it's supposed to override - unless we also override the - // Request constructor. - return originalFetch(resource, options); - } - // Normalize the Request - let url; - let cacheKey; - if (typeof resource === 'string' && !options) { - // Fast path. - cacheKey = simpleCacheKey; - url = resource; - } else { - // Normalize the request. - // if resource is not a string or a URL (its an instance of Request) - // then do not instantiate a new Request but instead - // reuse the request as to not disturb the body in the event it's a ReadableStream. - const request = typeof resource === 'string' || resource instanceof URL ? new Request(resource, options) : resource; - if (request.method !== 'GET' && request.method !== 'HEAD' || request.keepalive) { - // We currently don't dedupe requests that might have side-effects. Those - // have to be explicitly cached. We assume that the request doesn't have a - // body if it's GET or HEAD. - // keepalive gets treated the same as if you passed a custom cache signal. - return originalFetch(resource, options); - } - cacheKey = generateCacheKey(request); - url = request.url; - } - const cacheEntries = getCacheEntries(url); - for(let i = 0, j = cacheEntries.length; i < j; i += 1){ - const [key, promise] = cacheEntries[i]; - if (key === cacheKey) { - return promise.then(()=>{ - const response = cacheEntries[i][2]; - if (!response) throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('No cached response'), "__NEXT_ERROR_CODE", { - value: "E579", - enumerable: false, - configurable: true - }); - // We're cloning the response using this utility because there exists - // a bug in the undici library around response cloning. See the - // following pull request for more details: - // https://github.com/vercel/next.js/pull/73274 - const [cloned1, cloned2] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneResponse"])(response); - cacheEntries[i][2] = cloned2; - return cloned1; - }); - } - } - // We pass the original arguments here in case normalizing the Request - // doesn't include all the options in this environment. - const promise = originalFetch(resource, options); - const entry = [ - cacheKey, - promise, - null - ]; - cacheEntries.push(entry); - return promise.then((response)=>{ - // We're cloning the response using this utility because there exists - // a bug in the undici library around response cloning. See the - // following pull request for more details: - // https://github.com/vercel/next.js/pull/73274 - const [cloned1, cloned2] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneResponse"])(response); - entry[2] = cloned2; - return cloned1; - }); - }; -} //# sourceMappingURL=dedupe-fetch.js.map -}), -"[project]/node_modules/next/dist/esm/lib/batcher.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Batcher", - ()=>Batcher -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/detached-promise.js [app-rsc] (ecmascript)"); -; -class Batcher { - constructor(cacheKeyFn, /** - * A function that will be called to schedule the wrapped function to be - * executed. This defaults to a function that will execute the function - * immediately. - */ schedulerFn = (fn)=>fn()){ - this.cacheKeyFn = cacheKeyFn; - this.schedulerFn = schedulerFn; - this.pending = new Map(); - } - static create(options) { - return new Batcher(options == null ? void 0 : options.cacheKeyFn, options == null ? void 0 : options.schedulerFn); - } - /** - * Wraps a function in a promise that will be resolved or rejected only once - * for a given key. This will allow multiple calls to the function to be - * made, but only one will be executed at a time. The result of the first - * call will be returned to all callers. - * - * @param key the key to use for the cache - * @param fn the function to wrap - * @returns a promise that resolves to the result of the function - */ async batch(key, fn) { - const cacheKey = this.cacheKeyFn ? await this.cacheKeyFn(key) : key; - if (cacheKey === null) { - return fn({ - resolve: (value)=>Promise.resolve(value), - key - }); - } - const pending = this.pending.get(cacheKey); - if (pending) return pending; - const { promise, resolve, reject } = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - this.pending.set(cacheKey, promise); - this.schedulerFn(async ()=>{ - try { - const result = await fn({ - resolve, - key - }); - // Resolving a promise multiple times is a no-op, so we can safely - // resolve all pending promises with the same result. - resolve(result); - } catch (err) { - reject(err); - } finally{ - this.pending.delete(cacheKey); - } - }); - return promise; - } -} //# sourceMappingURL=batcher.js.map -}), -"[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "CachedRouteKind", - ()=>CachedRouteKind, - "IncrementalCacheKind", - ()=>IncrementalCacheKind -]); -var CachedRouteKind = /*#__PURE__*/ function(CachedRouteKind) { - CachedRouteKind["APP_PAGE"] = "APP_PAGE"; - CachedRouteKind["APP_ROUTE"] = "APP_ROUTE"; - CachedRouteKind["PAGES"] = "PAGES"; - CachedRouteKind["FETCH"] = "FETCH"; - CachedRouteKind["REDIRECT"] = "REDIRECT"; - CachedRouteKind["IMAGE"] = "IMAGE"; - return CachedRouteKind; -}({}); -var IncrementalCacheKind = /*#__PURE__*/ function(IncrementalCacheKind) { - IncrementalCacheKind["APP_PAGE"] = "APP_PAGE"; - IncrementalCacheKind["APP_ROUTE"] = "APP_ROUTE"; - IncrementalCacheKind["PAGES"] = "PAGES"; - IncrementalCacheKind["FETCH"] = "FETCH"; - IncrementalCacheKind["IMAGE"] = "IMAGE"; - return IncrementalCacheKind; -}({}); //# sourceMappingURL=types.js.map -}), -"[project]/node_modules/next/dist/esm/server/render-result.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>RenderResult -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/node-web-streams-helper.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/pipe-readable.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -; -; -; -class RenderResult { - static #_ = /** - * A render result that represents an empty response. This is used to - * represent a response that was not found or was already sent. - */ this.EMPTY = new RenderResult(null, { - metadata: {}, - contentType: null - }); - /** - * Creates a new RenderResult instance from a static response. - * - * @param value the static response value - * @param contentType the content type of the response - * @returns a new RenderResult instance - */ static fromStatic(value, contentType) { - return new RenderResult(value, { - metadata: {}, - contentType - }); - } - constructor(response, { contentType, waitUntil, metadata }){ - this.response = response; - this.contentType = contentType; - this.metadata = metadata; - this.waitUntil = waitUntil; - } - assignMetadata(metadata) { - Object.assign(this.metadata, metadata); - } - /** - * Returns true if the response is null. It can be null if the response was - * not found or was already sent. - */ get isNull() { - return this.response === null; - } - /** - * Returns false if the response is a string. It can be a string if the page - * was prerendered. If it's not, then it was generated dynamically. - */ get isDynamic() { - return typeof this.response !== 'string'; - } - toUnchunkedString(stream = false) { - if (this.response === null) { - // If the response is null, return an empty string. This behavior is - // intentional as we're now providing the `RenderResult.EMPTY` value. - return ''; - } - if (typeof this.response !== 'string') { - if (!stream) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('dynamic responses cannot be unchunked. This is a bug in Next.js'), "__NEXT_ERROR_CODE", { - value: "E732", - enumerable: false, - configurable: true - }); - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamToString"])(this.readable); - } - return this.response; - } - /** - * Returns a readable stream of the response. - */ get readable() { - if (this.response === null) { - // If the response is null, return an empty stream. This behavior is - // intentional as we're now providing the `RenderResult.EMPTY` value. - return new ReadableStream({ - start (controller) { - controller.close(); - } - }); - } - if (typeof this.response === 'string') { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromString"])(this.response); - } - if (Buffer.isBuffer(this.response)) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromBuffer"])(this.response); - } - // If the response is an array of streams, then chain them together. - if (Array.isArray(this.response)) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["chainStreams"])(...this.response); - } - return this.response; - } - /** - * Coerces the response to an array of streams. This will convert the response - * to an array of streams if it is not already one. - * - * @returns An array of streams - */ coerce() { - if (this.response === null) { - // If the response is null, return an empty stream. This behavior is - // intentional as we're now providing the `RenderResult.EMPTY` value. - return []; - } - if (typeof this.response === 'string') { - return [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromString"])(this.response) - ]; - } else if (Array.isArray(this.response)) { - return this.response; - } else if (Buffer.isBuffer(this.response)) { - return [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromBuffer"])(this.response) - ]; - } else { - return [ - this.response - ]; - } - } - /** - * Unshifts a new stream to the response. This will convert the response to an - * array of streams if it is not already one and will add the new stream to - * the start of the array. When this response is piped, all of the streams - * will be piped one after the other. - * - * @param readable The new stream to unshift - */ unshift(readable) { - // Coerce the response to an array of streams. - this.response = this.coerce(); - // Add the new stream to the start of the array. - this.response.unshift(readable); - } - /** - * Chains a new stream to the response. This will convert the response to an - * array of streams if it is not already one and will add the new stream to - * the end. When this response is piped, all of the streams will be piped - * one after the other. - * - * @param readable The new stream to chain - */ push(readable) { - // Coerce the response to an array of streams. - this.response = this.coerce(); - // Add the new stream to the end of the array. - this.response.push(readable); - } - /** - * Pipes the response to a writable stream. This will close/cancel the - * writable stream if an error is encountered. If this doesn't throw, then - * the writable stream will be closed or aborted. - * - * @param writable Writable stream to pipe the response to - */ async pipeTo(writable) { - try { - await this.readable.pipeTo(writable, { - // We want to close the writable stream ourselves so that we can wait - // for the waitUntil promise to resolve before closing it. If an error - // is encountered, we'll abort the writable stream if we swallowed the - // error. - preventClose: true - }); - // If there is a waitUntil promise, wait for it to resolve before - // closing the writable stream. - if (this.waitUntil) await this.waitUntil; - // Close the writable stream. - await writable.close(); - } catch (err) { - // If this is an abort error, we should abort the writable stream (as we - // took ownership of it when we started piping). We don't need to re-throw - // because we handled the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAbortError"])(err)) { - // Abort the writable stream if an error is encountered. - await writable.abort(err); - return; - } - // We're not aborting the writer here as when this method throws it's not - // clear as to how so the caller should assume it's their responsibility - // to clean up the writer. - throw err; - } - } - /** - * Pipes the response to a node response. This will close/cancel the node - * response if an error is encountered. - * - * @param res - */ async pipeToNodeResponse(res) { - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pipeToNodeResponse"])(this.readable, res, this.waitUntil); - } -} //# sourceMappingURL=render-result.js.map -}), -"[project]/node_modules/next/dist/esm/server/response-cache/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "fromResponseCacheEntry", - ()=>fromResponseCacheEntry, - "routeKindToIncrementalCacheKind", - ()=>routeKindToIncrementalCacheKind, - "toResponseCacheEntry", - ()=>toResponseCacheEntry -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/render-result.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -; -; -; -; -async function fromResponseCacheEntry(cacheEntry) { - var _cacheEntry_value, _cacheEntry_value1; - return { - ...cacheEntry, - value: ((_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES ? { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES, - html: await cacheEntry.value.html.toUnchunkedString(true), - pageData: cacheEntry.value.pageData, - headers: cacheEntry.value.headers, - status: cacheEntry.value.status - } : ((_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE ? { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE, - html: await cacheEntry.value.html.toUnchunkedString(true), - postponed: cacheEntry.value.postponed, - rscData: cacheEntry.value.rscData, - headers: cacheEntry.value.headers, - status: cacheEntry.value.status, - segmentData: cacheEntry.value.segmentData - } : cacheEntry.value - }; -} -async function toResponseCacheEntry(response) { - var _response_value, _response_value1; - if (!response) return null; - return { - isMiss: response.isMiss, - isStale: response.isStale, - cacheControl: response.cacheControl, - value: ((_response_value = response.value) == null ? void 0 : _response_value.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES ? { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES, - html: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].fromStatic(response.value.html, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_CONTENT_TYPE_HEADER"]), - pageData: response.value.pageData, - headers: response.value.headers, - status: response.value.status - } : ((_response_value1 = response.value) == null ? void 0 : _response_value1.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE ? { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE, - html: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].fromStatic(response.value.html, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_CONTENT_TYPE_HEADER"]), - rscData: response.value.rscData, - headers: response.value.headers, - status: response.value.status, - postponed: response.value.postponed, - segmentData: response.value.segmentData - } : response.value - }; -} -function routeKindToIncrementalCacheKind(routeKind) { - switch(routeKind){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].PAGES: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].PAGES; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].APP_PAGE: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].APP_PAGE; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].IMAGE: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].IMAGE; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].APP_ROUTE: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].APP_ROUTE; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].PAGES_API: - // Pages Router API routes are not cached in the incremental cache. - throw Object.defineProperty(new Error(`Unexpected route kind ${routeKind}`), "__NEXT_ERROR_CODE", { - value: "E64", - enumerable: false, - configurable: true - }); - default: - return routeKind; - } -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/response-cache/index.js [app-rsc] (ecmascript) <locals>", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>ResponseCache -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$batcher$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/batcher.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/lru-cache.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/output/log.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)"); -; -; -; -; -; -/** - * Parses an environment variable as a positive integer, returning the fallback - * if the value is missing, not a number, or not positive. - */ function parsePositiveInt(envValue, fallback) { - if (!envValue) return fallback; - const parsed = parseInt(envValue, 10); - return Number.isFinite(parsed) && parsed > 0 ? parsed : fallback; -} -/** - * Default TTL (in milliseconds) for minimal mode response cache entries. - * Used for cache hit validation as a fallback for providers that don't - * send the x-invocation-id header yet. - * - * 10 seconds chosen because: - * - Long enough to dedupe rapid successive requests (e.g., page + data) - * - Short enough to not serve stale data across unrelated requests - * - * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_TTL` environment variable. - */ const DEFAULT_TTL_MS = parsePositiveInt(process.env.NEXT_PRIVATE_RESPONSE_CACHE_TTL, 10000); -/** - * Default maximum number of entries in the response cache. - * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE` environment variable. - */ const DEFAULT_MAX_SIZE = parsePositiveInt(process.env.NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE, 150); -/** - * Separator used in compound cache keys to join pathname and invocationID. - * Using null byte (\0) since it cannot appear in valid URL paths or UUIDs. - */ const KEY_SEPARATOR = '\0'; -/** - * Sentinel value used for TTL-based cache entries (when invocationID is undefined). - * Chosen to be a clearly reserved marker for internal cache keys. - */ const TTL_SENTINEL = '__ttl_sentinel__'; -/** - * Creates a compound cache key from pathname and invocationID. - */ function createCacheKey(pathname, invocationID) { - return `${pathname}${KEY_SEPARATOR}${invocationID ?? TTL_SENTINEL}`; -} -/** - * Extracts the invocationID from a compound cache key. - * Returns undefined if the key used TTL_SENTINEL. - */ function extractInvocationID(compoundKey) { - const separatorIndex = compoundKey.lastIndexOf(KEY_SEPARATOR); - if (separatorIndex === -1) return undefined; - const invocationID = compoundKey.slice(separatorIndex + 1); - return invocationID === TTL_SENTINEL ? undefined : invocationID; -} -; -class ResponseCache { - constructor(minimal_mode, maxSize = DEFAULT_MAX_SIZE, ttl = DEFAULT_TTL_MS){ - this.getBatcher = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$batcher$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Batcher"].create({ - // Ensure on-demand revalidate doesn't block normal requests, it should be - // safe to run an on-demand revalidate for the same key as a normal request. - cacheKeyFn: ({ key, isOnDemandRevalidate })=>`${key}-${isOnDemandRevalidate ? '1' : '0'}`, - // We wait to do any async work until after we've added our promise to - // `pendingResponses` to ensure that any any other calls will reuse the - // same promise until we've fully finished our work. - schedulerFn: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"] - }); - this.revalidateBatcher = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$batcher$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Batcher"].create({ - // We wait to do any async work until after we've added our promise to - // `pendingResponses` to ensure that any any other calls will reuse the - // same promise until we've fully finished our work. - schedulerFn: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"] - }); - /** - * Set of invocation IDs that have had cache entries evicted. - * Used to detect when the cache size may be too small. - * Bounded to prevent memory growth. - */ this.evictedInvocationIDs = new Set(); - this.minimal_mode = minimal_mode; - this.maxSize = maxSize; - this.ttl = ttl; - // Create the LRU cache with eviction tracking - this.cache = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LRUCache"](maxSize, undefined, (compoundKey)=>{ - const invocationID = extractInvocationID(compoundKey); - if (invocationID) { - // Bound to 100 entries to prevent unbounded memory growth. - // FIFO eviction is acceptable here because: - // 1. Invocations are short-lived (single request lifecycle), so older - // invocations are unlikely to still be active after 100 newer ones - // 2. This warning mechanism is best-effort for developer guidance— - // missing occasional eviction warnings doesn't affect correctness - // 3. If a long-running invocation is somehow evicted and then has - // another cache entry evicted, it will simply be re-added - if (this.evictedInvocationIDs.size >= 100) { - const first = this.evictedInvocationIDs.values().next().value; - if (first) this.evictedInvocationIDs.delete(first); - } - this.evictedInvocationIDs.add(invocationID); - } - }); - } - /** - * Gets the response cache entry for the given key. - * - * @param key - The key to get the response cache entry for. - * @param responseGenerator - The response generator to use to generate the response cache entry. - * @param context - The context for the get request. - * @returns The response cache entry. - */ async get(key, responseGenerator, context) { - // If there is no key for the cache, we can't possibly look this up in the - // cache so just return the result of the response generator. - if (!key) { - return responseGenerator({ - hasResolved: false, - previousCacheEntry: null - }); - } - // Check minimal mode cache before doing any other work. - if (this.minimal_mode) { - const cacheKey = createCacheKey(key, context.invocationID); - const cachedItem = this.cache.get(cacheKey); - if (cachedItem) { - // With invocationID: exact match found - always a hit - // With TTL mode: must check expiration - if (context.invocationID !== undefined) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["toResponseCacheEntry"])(cachedItem.entry); - } - // TTL mode: check expiration - const now = Date.now(); - if (cachedItem.expiresAt > now) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["toResponseCacheEntry"])(cachedItem.entry); - } - // TTL expired - clean up - this.cache.remove(cacheKey); - } - // Warn if this invocation had entries evicted - indicates cache may be too small. - if (context.invocationID && this.evictedInvocationIDs.has(context.invocationID)) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["warnOnce"])(`Response cache entry was evicted for invocation ${context.invocationID}. ` + `Consider increasing NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE (current: ${this.maxSize}).`); - } - } - const { incrementalCache, isOnDemandRevalidate = false, isFallback = false, isRoutePPREnabled = false, isPrefetch = false, waitUntil, routeKind, invocationID } = context; - const response = await this.getBatcher.batch({ - key, - isOnDemandRevalidate - }, ({ resolve })=>{ - const promise = this.handleGet(key, responseGenerator, { - incrementalCache, - isOnDemandRevalidate, - isFallback, - isRoutePPREnabled, - isPrefetch, - routeKind, - invocationID - }, resolve); - // We need to ensure background revalidates are passed to waitUntil. - if (waitUntil) waitUntil(promise); - return promise; - }); - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["toResponseCacheEntry"])(response); - } - /** - * Handles the get request for the response cache. - * - * @param key - The key to get the response cache entry for. - * @param responseGenerator - The response generator to use to generate the response cache entry. - * @param context - The context for the get request. - * @param resolve - The resolve function to use to resolve the response cache entry. - * @returns The response cache entry. - */ async handleGet(key, responseGenerator, context, resolve) { - let previousIncrementalCacheEntry = null; - let resolved = false; - try { - // Get the previous cache entry if not in minimal mode - previousIncrementalCacheEntry = !this.minimal_mode ? await context.incrementalCache.get(key, { - kind: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["routeKindToIncrementalCacheKind"])(context.routeKind), - isRoutePPREnabled: context.isRoutePPREnabled, - isFallback: context.isFallback - }) : null; - if (previousIncrementalCacheEntry && !context.isOnDemandRevalidate) { - resolve(previousIncrementalCacheEntry); - resolved = true; - if (!previousIncrementalCacheEntry.isStale || context.isPrefetch) { - // The cached value is still valid, so we don't need to update it yet. - return previousIncrementalCacheEntry; - } - } - // Revalidate the cache entry - const incrementalResponseCacheEntry = await this.revalidate(key, context.incrementalCache, context.isRoutePPREnabled, context.isFallback, responseGenerator, previousIncrementalCacheEntry, previousIncrementalCacheEntry !== null && !context.isOnDemandRevalidate, undefined, context.invocationID); - // Handle null response - if (!incrementalResponseCacheEntry) { - // Remove the cache item if it was set so we don't use it again. - if (this.minimal_mode) { - const cacheKey = createCacheKey(key, context.invocationID); - this.cache.remove(cacheKey); - } - return null; - } - // Resolve for on-demand revalidation or if not already resolved - if (context.isOnDemandRevalidate && !resolved) { - return incrementalResponseCacheEntry; - } - return incrementalResponseCacheEntry; - } catch (err) { - // If we've already resolved the cache entry, we can't reject as we - // already resolved the cache entry so log the error here. - if (resolved) { - console.error(err); - return null; - } - throw err; - } - } - /** - * Revalidates the cache entry for the given key. - * - * @param key - The key to revalidate the cache entry for. - * @param incrementalCache - The incremental cache to use to revalidate the cache entry. - * @param isRoutePPREnabled - Whether the route is PPR enabled. - * @param isFallback - Whether the route is a fallback. - * @param responseGenerator - The response generator to use to generate the response cache entry. - * @param previousIncrementalCacheEntry - The previous cache entry to use to revalidate the cache entry. - * @param hasResolved - Whether the response has been resolved. - * @param waitUntil - Optional function to register background work. - * @param invocationID - The invocation ID for cache key scoping. - * @returns The revalidated cache entry. - */ async revalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, waitUntil, invocationID) { - return this.revalidateBatcher.batch(key, ()=>{ - const promise = this.handleRevalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, invocationID); - // We need to ensure background revalidates are passed to waitUntil. - if (waitUntil) waitUntil(promise); - return promise; - }); - } - async handleRevalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, invocationID) { - try { - // Generate the response cache entry using the response generator. - const responseCacheEntry = await responseGenerator({ - hasResolved, - previousCacheEntry: previousIncrementalCacheEntry, - isRevalidating: true - }); - if (!responseCacheEntry) { - return null; - } - // Convert the response cache entry to an incremental response cache entry. - const incrementalResponseCacheEntry = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["fromResponseCacheEntry"])({ - ...responseCacheEntry, - isMiss: !previousIncrementalCacheEntry - }); - // We want to persist the result only if it has a cache control value - // defined. - if (incrementalResponseCacheEntry.cacheControl) { - if (this.minimal_mode) { - // Set TTL expiration for cache hit validation. Entries are validated - // by invocationID when available, with TTL as a fallback for providers - // that don't send x-invocation-id. Memory is managed by LRU eviction. - const cacheKey = createCacheKey(key, invocationID); - this.cache.set(cacheKey, { - entry: incrementalResponseCacheEntry, - expiresAt: Date.now() + this.ttl - }); - } else { - await incrementalCache.set(key, incrementalResponseCacheEntry.value, { - cacheControl: incrementalResponseCacheEntry.cacheControl, - isRoutePPREnabled, - isFallback - }); - } - } - return incrementalResponseCacheEntry; - } catch (err) { - // When a path is erroring we automatically re-set the existing cache - // with new revalidate and expire times to prevent non-stop retrying. - if (previousIncrementalCacheEntry == null ? void 0 : previousIncrementalCacheEntry.cacheControl) { - const revalidate = Math.min(Math.max(previousIncrementalCacheEntry.cacheControl.revalidate || 3, 3), 30); - const expire = previousIncrementalCacheEntry.cacheControl.expire === undefined ? undefined : Math.max(revalidate + 3, previousIncrementalCacheEntry.cacheControl.expire); - await incrementalCache.set(key, previousIncrementalCacheEntry.value, { - cacheControl: { - revalidate: revalidate, - expire: expire - }, - isRoutePPREnabled, - isFallback - }); - } - // We haven't resolved yet, so let's throw to indicate an error. - throw err; - } - } -} //# sourceMappingURL=index.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/patch-fetch.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "NEXT_PATCH_SYMBOL", - ()=>NEXT_PATCH_SYMBOL, - "createPatchedFetcher", - ()=>createPatchedFetcher, - "patchFetch", - ()=>patchFetch, - "validateRevalidate", - ()=>validateRevalidate, - "validateTags", - ()=>validateTags -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$dedupe$2d$fetch$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/dedupe-fetch.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/index.js [app-rsc] (ecmascript) <locals>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/clone-response.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -const isEdgeRuntime = ("TURBOPACK compile-time value", "nodejs") === 'edge'; -const NEXT_PATCH_SYMBOL = Symbol.for('next-patch'); -function isFetchPatched() { - return globalThis[NEXT_PATCH_SYMBOL] === true; -} -function validateRevalidate(revalidateVal, route) { - try { - let normalizedRevalidate = undefined; - if (revalidateVal === false) { - normalizedRevalidate = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"]; - } else if (typeof revalidateVal === 'number' && !isNaN(revalidateVal) && revalidateVal > -1) { - normalizedRevalidate = revalidateVal; - } else if (typeof revalidateVal !== 'undefined') { - throw Object.defineProperty(new Error(`Invalid revalidate value "${revalidateVal}" on "${route}", must be a non-negative number or false`), "__NEXT_ERROR_CODE", { - value: "E179", - enumerable: false, - configurable: true - }); - } - return normalizedRevalidate; - } catch (err) { - // handle client component error from attempting to check revalidate value - if (err instanceof Error && err.message.includes('Invalid revalidate')) { - throw err; - } - return undefined; - } -} -function validateTags(tags, description) { - const validTags = []; - const invalidTags = []; - for(let i = 0; i < tags.length; i++){ - const tag = tags[i]; - if (typeof tag !== 'string') { - invalidTags.push({ - tag, - reason: 'invalid type, must be a string' - }); - } else if (tag.length > __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAG_MAX_LENGTH"]) { - invalidTags.push({ - tag, - reason: `exceeded max length of ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAG_MAX_LENGTH"]}` - }); - } else { - validTags.push(tag); - } - if (validTags.length > __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAG_MAX_ITEMS"]) { - console.warn(`Warning: exceeded max tag count for ${description}, dropped tags:`, tags.slice(i).join(', ')); - break; - } - } - if (invalidTags.length > 0) { - console.warn(`Warning: invalid tags passed to ${description}: `); - for (const { tag, reason } of invalidTags){ - console.log(`tag: "${tag}" ${reason}`); - } - } - return validTags; -} -function trackFetchMetric(workStore, ctx) { - if (!workStore.shouldTrackFetchMetrics) { - return; - } - workStore.fetchMetrics ??= []; - workStore.fetchMetrics.push({ - ...ctx, - end: performance.timeOrigin + performance.now(), - idx: workStore.nextFetchId || 0 - }); -} -async function createCachedPrerenderResponse(res, cacheKey, incrementalCacheContext, incrementalCache, revalidate, handleUnlock) { - // We are prerendering at build time or revalidate time with cacheComponents so we - // need to buffer the response so we can guarantee it can be read in a - // microtask. - const bodyBuffer = await res.arrayBuffer(); - const fetchedData = { - headers: Object.fromEntries(res.headers.entries()), - body: Buffer.from(bodyBuffer).toString('base64'), - status: res.status, - url: res.url - }; - // We can skip setting the serverComponentsHmrCache because we aren't in dev - // mode. - if (incrementalCacheContext) { - await incrementalCache.set(cacheKey, { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].FETCH, - data: fetchedData, - revalidate - }, incrementalCacheContext); - } - await handleUnlock(); - // We return a new Response to the caller. - return new Response(bodyBuffer, { - headers: res.headers, - status: res.status, - statusText: res.statusText - }); -} -async function createCachedDynamicResponse(workStore, res, cacheKey, incrementalCacheContext, incrementalCache, serverComponentsHmrCache, revalidate, input, handleUnlock) { - // We're cloning the response using this utility because there exists a bug in - // the undici library around response cloning. See the following pull request - // for more details: https://github.com/vercel/next.js/pull/73274 - const [cloned1, cloned2] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneResponse"])(res); - // We are dynamically rendering including dev mode. We want to return the - // response to the caller as soon as possible because it might stream over a - // very long time. - const cacheSetPromise = cloned1.arrayBuffer().then(async (arrayBuffer)=>{ - const bodyBuffer = Buffer.from(arrayBuffer); - const fetchedData = { - headers: Object.fromEntries(cloned1.headers.entries()), - body: bodyBuffer.toString('base64'), - status: cloned1.status, - url: cloned1.url - }; - serverComponentsHmrCache == null ? void 0 : serverComponentsHmrCache.set(cacheKey, fetchedData); - if (incrementalCacheContext) { - await incrementalCache.set(cacheKey, { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].FETCH, - data: fetchedData, - revalidate - }, incrementalCacheContext); - } - }).catch((error)=>console.warn(`Failed to set fetch cache`, input, error)).finally(handleUnlock); - const pendingRevalidateKey = `cache-set-${cacheKey}`; - const pendingRevalidates = workStore.pendingRevalidates ??= {}; - let pendingRevalidatePromise = Promise.resolve(); - if (pendingRevalidateKey in pendingRevalidates) { - // There is already a pending revalidate entry that we need to await to - // avoid race conditions. - pendingRevalidatePromise = pendingRevalidates[pendingRevalidateKey]; - } - pendingRevalidates[pendingRevalidateKey] = pendingRevalidatePromise.then(()=>cacheSetPromise).finally(()=>{ - // If the pending revalidate is not present in the store, then we have - // nothing to delete. - if (!(pendingRevalidates == null ? void 0 : pendingRevalidates[pendingRevalidateKey])) { - return; - } - delete pendingRevalidates[pendingRevalidateKey]; - }); - return cloned2; -} -function createPatchedFetcher(originFetch, { workAsyncStorage, workUnitAsyncStorage }) { - // Create the patched fetch function. - const patched = async function fetch(input, init) { - var _init_method, _init_next; - let url; - try { - url = new URL(input instanceof Request ? input.url : input); - url.username = ''; - url.password = ''; - } catch { - // Error caused by malformed URL should be handled by native fetch - url = undefined; - } - const fetchUrl = (url == null ? void 0 : url.href) ?? ''; - const method = (init == null ? void 0 : (_init_method = init.method) == null ? void 0 : _init_method.toUpperCase()) || 'GET'; - // Do create a new span trace for internal fetches in the - // non-verbose mode. - const isInternal = (init == null ? void 0 : (_init_next = init.next) == null ? void 0 : _init_next.internal) === true; - const hideSpan = process.env.NEXT_OTEL_FETCH_DISABLED === '1'; - // We don't track fetch metrics for internal fetches - // so it's not critical that we have a start time, as it won't be recorded. - // This is to workaround a flaky issue where performance APIs might - // not be available and will require follow-up investigation. - const fetchStart = isInternal ? undefined : performance.timeOrigin + performance.now(); - const workStore = workAsyncStorage.getStore(); - const workUnitStore = workUnitAsyncStorage.getStore(); - let cacheSignal = workUnitStore ? (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["getCacheSignal"])(workUnitStore) : null; - if (cacheSignal) { - cacheSignal.beginRead(); - } - const result = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(isInternal ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextNodeServerSpan"].internalFetch : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AppRenderSpan"].fetch, { - hideSpan, - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SpanKind"].CLIENT, - spanName: [ - 'fetch', - method, - fetchUrl - ].filter(Boolean).join(' '), - attributes: { - 'http.url': fetchUrl, - 'http.method': method, - 'net.peer.name': url == null ? void 0 : url.hostname, - 'net.peer.port': (url == null ? void 0 : url.port) || undefined - } - }, async ()=>{ - var _getRequestMeta; - // If this is an internal fetch, we should not do any special treatment. - if (isInternal) { - return originFetch(input, init); - } - // If the workStore is not available, we can't do any - // special treatment of fetch, therefore fallback to the original - // fetch implementation. - if (!workStore) { - return originFetch(input, init); - } - // We should also fallback to the original fetch implementation if we - // are in draft mode, it does not constitute a static generation. - if (workStore.isDraftMode) { - return originFetch(input, init); - } - const isRequestInput = input && typeof input === 'object' && typeof input.method === 'string'; - const getRequestMeta = (field)=>{ - // If request input is present but init is not, retrieve from input first. - const value = init == null ? void 0 : init[field]; - return value || (isRequestInput ? input[field] : null); - }; - let finalRevalidate = undefined; - const getNextField = (field)=>{ - var _init_next, _init_next1, _input_next; - return typeof (init == null ? void 0 : (_init_next = init.next) == null ? void 0 : _init_next[field]) !== 'undefined' ? init == null ? void 0 : (_init_next1 = init.next) == null ? void 0 : _init_next1[field] : isRequestInput ? (_input_next = input.next) == null ? void 0 : _input_next[field] : undefined; - }; - // RequestInit doesn't keep extra fields e.g. next so it's - // only available if init is used separate - const originalFetchRevalidate = getNextField('revalidate'); - let currentFetchRevalidate = originalFetchRevalidate; - const tags = validateTags(getNextField('tags') || [], `fetch ${input.toString()}`); - let revalidateStore; - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - // TODO: Stop accumulating tags in client prerender. (fallthrough) - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - revalidateStore = workUnitStore; - break; - case 'request': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - if (revalidateStore) { - if (Array.isArray(tags)) { - // Collect tags onto parent caches or parent prerenders. - const collectedTags = revalidateStore.tags ?? (revalidateStore.tags = []); - for (const tag of tags){ - if (!collectedTags.includes(tag)) { - collectedTags.push(tag); - } - } - } - } - const implicitTags = workUnitStore == null ? void 0 : workUnitStore.implicitTags; - let pageFetchCacheMode = workStore.fetchCache; - if (workUnitStore) { - switch(workUnitStore.type){ - case 'unstable-cache': - // Inside unstable-cache we treat it the same as force-no-store on - // the page. - pageFetchCacheMode = 'force-no-store'; - break; - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - case 'cache': - case 'private-cache': - break; - default: - workUnitStore; - } - } - const isUsingNoStore = !!workStore.isUnstableNoStore; - let currentFetchCacheConfig = getRequestMeta('cache'); - let cacheReason = ''; - let cacheWarning; - if (typeof currentFetchCacheConfig === 'string' && typeof currentFetchRevalidate !== 'undefined') { - // If the revalidate value conflicts with the cache value, we should warn the user and unset the conflicting values. - const isConflictingRevalidate = currentFetchCacheConfig === 'force-cache' && currentFetchRevalidate === 0 || // revalidate: >0 or revalidate: false and cache: no-store - currentFetchCacheConfig === 'no-store' && (currentFetchRevalidate > 0 || currentFetchRevalidate === false); - if (isConflictingRevalidate) { - cacheWarning = `Specified "cache: ${currentFetchCacheConfig}" and "revalidate: ${currentFetchRevalidate}", only one should be specified.`; - currentFetchCacheConfig = undefined; - currentFetchRevalidate = undefined; - } - } - const hasExplicitFetchCacheOptOut = currentFetchCacheConfig === 'no-cache' || currentFetchCacheConfig === 'no-store' || // the fetch isn't explicitly caching and the segment level cache config signals not to cache - // note: `pageFetchCacheMode` is also set by being in an unstable_cache context. - pageFetchCacheMode === 'force-no-store' || pageFetchCacheMode === 'only-no-store'; - // If no explicit fetch cache mode is set, but dynamic = `force-dynamic` is set, - // we shouldn't consider caching the fetch. This is because the `dynamic` cache - // is considered a "top-level" cache mode, whereas something like `fetchCache` is more - // fine-grained. Top-level modes are responsible for setting reasonable defaults for the - // other configurations. - const noFetchConfigAndForceDynamic = !pageFetchCacheMode && !currentFetchCacheConfig && !currentFetchRevalidate && workStore.forceDynamic; - if (// which will signal the cache to not revalidate - currentFetchCacheConfig === 'force-cache' && typeof currentFetchRevalidate === 'undefined') { - currentFetchRevalidate = false; - } else if (hasExplicitFetchCacheOptOut || noFetchConfigAndForceDynamic) { - currentFetchRevalidate = 0; - } - if (currentFetchCacheConfig === 'no-cache' || currentFetchCacheConfig === 'no-store') { - cacheReason = `cache: ${currentFetchCacheConfig}`; - } - finalRevalidate = validateRevalidate(currentFetchRevalidate, workStore.route); - const _headers = getRequestMeta('headers'); - const initHeaders = typeof (_headers == null ? void 0 : _headers.get) === 'function' ? _headers : new Headers(_headers || {}); - const hasUnCacheableHeader = initHeaders.get('authorization') || initHeaders.get('cookie'); - const isUnCacheableMethod = ![ - 'get', - 'head' - ].includes(((_getRequestMeta = getRequestMeta('method')) == null ? void 0 : _getRequestMeta.toLowerCase()) || 'get'); - /** - * We automatically disable fetch caching under the following conditions: - * - Fetch cache configs are not set. Specifically: - * - A page fetch cache mode is not set (export const fetchCache=...) - * - A fetch cache mode is not set in the fetch call (fetch(url, { cache: ... })) - * or the fetch cache mode is set to 'default' - * - A fetch revalidate value is not set in the fetch call (fetch(url, { revalidate: ... })) - * - OR the fetch comes after a configuration that triggered dynamic rendering (e.g., reading cookies()) - * and the fetch was considered uncacheable (e.g., POST method or has authorization headers) - */ const hasNoExplicitCacheConfig = pageFetchCacheMode == undefined && // eslint-disable-next-line eqeqeq - (currentFetchCacheConfig == undefined || // when considering whether to opt into the default "no-cache" fetch semantics, - // a "default" cache config should be treated the same as no cache config - currentFetchCacheConfig === 'default') && // eslint-disable-next-line eqeqeq - currentFetchRevalidate == undefined; - let autoNoCache = Boolean((hasUnCacheableHeader || isUnCacheableMethod) && (revalidateStore == null ? void 0 : revalidateStore.revalidate) === 0); - let isImplicitBuildTimeCache = false; - if (!autoNoCache && hasNoExplicitCacheConfig) { - // We don't enable automatic no-cache behavior during build-time - // prerendering so that we can still leverage the fetch cache between - // export workers. - if (workStore.isBuildTimePrerendering) { - isImplicitBuildTimeCache = true; - } else { - autoNoCache = true; - } - } - // If we have no cache config, and we're in Dynamic I/O prerendering, - // it'll be a dynamic call. We don't have to issue that dynamic call. - if (hasNoExplicitCacheConfig && workUnitStore !== undefined) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - // While we don't want to do caching in the client scope we know the - // fetch will be dynamic for cacheComponents so we may as well avoid the - // call here. (fallthrough) - case 'prerender-client': - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, 'fetch()'); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - switch(pageFetchCacheMode){ - case 'force-no-store': - { - cacheReason = 'fetchCache = force-no-store'; - break; - } - case 'only-no-store': - { - if (currentFetchCacheConfig === 'force-cache' || typeof finalRevalidate !== 'undefined' && finalRevalidate > 0) { - throw Object.defineProperty(new Error(`cache: 'force-cache' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-no-store'`), "__NEXT_ERROR_CODE", { - value: "E448", - enumerable: false, - configurable: true - }); - } - cacheReason = 'fetchCache = only-no-store'; - break; - } - case 'only-cache': - { - if (currentFetchCacheConfig === 'no-store') { - throw Object.defineProperty(new Error(`cache: 'no-store' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-cache'`), "__NEXT_ERROR_CODE", { - value: "E521", - enumerable: false, - configurable: true - }); - } - break; - } - case 'force-cache': - { - if (typeof currentFetchRevalidate === 'undefined' || currentFetchRevalidate === 0) { - cacheReason = 'fetchCache = force-cache'; - finalRevalidate = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"]; - } - break; - } - case 'default-cache': - case 'default-no-store': - case 'auto': - case undefined: - break; - default: - pageFetchCacheMode; - } - if (typeof finalRevalidate === 'undefined') { - if (pageFetchCacheMode === 'default-cache' && !isUsingNoStore) { - finalRevalidate = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"]; - cacheReason = 'fetchCache = default-cache'; - } else if (pageFetchCacheMode === 'default-no-store') { - finalRevalidate = 0; - cacheReason = 'fetchCache = default-no-store'; - } else if (isUsingNoStore) { - finalRevalidate = 0; - cacheReason = 'noStore call'; - } else if (autoNoCache) { - finalRevalidate = 0; - cacheReason = 'auto no cache'; - } else { - // TODO: should we consider this case an invariant? - cacheReason = 'auto cache'; - finalRevalidate = revalidateStore ? revalidateStore.revalidate : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"]; - } - } else if (!cacheReason) { - cacheReason = `revalidate: ${finalRevalidate}`; - } - if (// `revalidate: 0` values - !(workStore.forceStatic && finalRevalidate === 0) && // we don't consider autoNoCache to switch to dynamic for ISR - !autoNoCache && // If the revalidate value isn't currently set or the value is less - // than the current revalidate value, we should update the revalidate - // value. - revalidateStore && finalRevalidate < revalidateStore.revalidate) { - // If we were setting the revalidate value to 0, we should try to - // postpone instead first. - if (finalRevalidate === 0) { - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, 'fetch()'); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["markCurrentScopeAsDynamic"])(workStore, workUnitStore, `revalidate: 0 fetch ${input} ${workStore.route}`); - } - // We only want to set the revalidate store's revalidate time if it - // was explicitly set for the fetch call, i.e. - // originalFetchRevalidate. - if (revalidateStore && originalFetchRevalidate === finalRevalidate) { - revalidateStore.revalidate = finalRevalidate; - } - } - const isCacheableRevalidate = typeof finalRevalidate === 'number' && finalRevalidate > 0; - let cacheKey; - const { incrementalCache } = workStore; - let isHmrRefresh = false; - let serverComponentsHmrCache; - if (workUnitStore) { - switch(workUnitStore.type){ - case 'request': - case 'cache': - case 'private-cache': - isHmrRefresh = workUnitStore.isHmrRefresh ?? false; - serverComponentsHmrCache = workUnitStore.serverComponentsHmrCache; - break; - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - case 'prerender-ppr': - case 'prerender-legacy': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - if (incrementalCache && (isCacheableRevalidate || serverComponentsHmrCache)) { - try { - cacheKey = await incrementalCache.generateCacheKey(fetchUrl, isRequestInput ? input : init); - } catch (err) { - console.error(`Failed to generate cache key for`, input); - } - } - const fetchIdx = workStore.nextFetchId ?? 1; - workStore.nextFetchId = fetchIdx + 1; - let handleUnlock = ()=>{}; - const doOriginalFetch = async (isStale, cacheReasonOverride)=>{ - const requestInputFields = [ - 'cache', - 'credentials', - 'headers', - 'integrity', - 'keepalive', - 'method', - 'mode', - 'redirect', - 'referrer', - 'referrerPolicy', - 'window', - 'duplex', - // don't pass through signal when revalidating - ...isStale ? [] : [ - 'signal' - ] - ]; - if (isRequestInput) { - const reqInput = input; - const reqOptions = { - body: reqInput._ogBody || reqInput.body - }; - for (const field of requestInputFields){ - // @ts-expect-error custom fields - reqOptions[field] = reqInput[field]; - } - input = new Request(reqInput.url, reqOptions); - } else if (init) { - const { _ogBody, body, signal, ...otherInput } = init; - init = { - ...otherInput, - body: _ogBody || body, - signal: isStale ? undefined : signal - }; - } - // add metadata to init without editing the original - const clonedInit = { - ...init, - next: { - ...init == null ? void 0 : init.next, - fetchType: 'origin', - fetchIdx - } - }; - return originFetch(input, clonedInit).then(async (res)=>{ - if (!isStale && fetchStart) { - trackFetchMetric(workStore, { - start: fetchStart, - url: fetchUrl, - cacheReason: cacheReasonOverride || cacheReason, - cacheStatus: finalRevalidate === 0 || cacheReasonOverride ? 'skip' : 'miss', - cacheWarning, - status: res.status, - method: clonedInit.method || 'GET' - }); - } - if (res.status === 200 && incrementalCache && cacheKey && (isCacheableRevalidate || serverComponentsHmrCache)) { - const normalizedRevalidate = finalRevalidate >= __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"] ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CACHE_ONE_YEAR"] : finalRevalidate; - const incrementalCacheConfig = isCacheableRevalidate ? { - fetchCache: true, - fetchUrl, - fetchIdx, - tags, - isImplicitBuildTimeCache - } : undefined; - switch(workUnitStore == null ? void 0 : workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - return createCachedPrerenderResponse(res, cacheKey, incrementalCacheConfig, incrementalCache, normalizedRevalidate, handleUnlock); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering && workUnitStore.cacheSignal) { - // We're filling caches for a staged render, - // so we need to wait for the response to finish instead of streaming. - return createCachedPrerenderResponse(res, cacheKey, incrementalCacheConfig, incrementalCache, normalizedRevalidate, handleUnlock); - } - // fallthrough - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - case undefined: - return createCachedDynamicResponse(workStore, res, cacheKey, incrementalCacheConfig, incrementalCache, serverComponentsHmrCache, normalizedRevalidate, input, handleUnlock); - default: - workUnitStore; - } - } - // we had response that we determined shouldn't be cached so we return it - // and don't cache it. This also needs to unlock the cache lock we acquired. - await handleUnlock(); - return res; - }).catch((error)=>{ - handleUnlock(); - throw error; - }); - }; - let cacheReasonOverride; - let isForegroundRevalidate = false; - let isHmrRefreshCache = false; - if (cacheKey && incrementalCache) { - let cachedFetchData; - if (isHmrRefresh && serverComponentsHmrCache) { - cachedFetchData = serverComponentsHmrCache.get(cacheKey); - isHmrRefreshCache = true; - } - if (isCacheableRevalidate && !cachedFetchData) { - handleUnlock = await incrementalCache.lock(cacheKey); - const entry = workStore.isOnDemandRevalidate ? null : await incrementalCache.get(cacheKey, { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].FETCH, - revalidate: finalRevalidate, - fetchUrl, - fetchIdx, - tags, - softTags: implicitTags == null ? void 0 : implicitTags.tags - }); - if (hasNoExplicitCacheConfig && workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - // We sometimes use the cache to dedupe fetches that do not - // specify a cache configuration. In these cases we want to - // make sure we still exclude them from prerenders if - // cacheComponents is on so we introduce an artificial task boundary - // here. - await getTimeoutBoundary(); - break; - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - if (entry) { - await handleUnlock(); - } else { - // in dev, incremental cache response will be null in case the browser adds `cache-control: no-cache` in the request headers - // TODO: it seems like we also hit this after revalidates in dev? - cacheReasonOverride = 'cache-control: no-cache (hard refresh)'; - } - if ((entry == null ? void 0 : entry.value) && entry.value.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].FETCH) { - // when stale and is revalidating we wait for fresh data - // so the revalidated entry has the updated data - if (workStore.isStaticGeneration && entry.isStale) { - isForegroundRevalidate = true; - } else { - if (entry.isStale) { - workStore.pendingRevalidates ??= {}; - if (!workStore.pendingRevalidates[cacheKey]) { - const pendingRevalidate = doOriginalFetch(true).then(async (response)=>({ - body: await response.arrayBuffer(), - headers: response.headers, - status: response.status, - statusText: response.statusText - })).finally(()=>{ - workStore.pendingRevalidates ??= {}; - delete workStore.pendingRevalidates[cacheKey || '']; - }); - // Attach the empty catch here so we don't get a "unhandled - // promise rejection" warning. - pendingRevalidate.catch(console.error); - workStore.pendingRevalidates[cacheKey] = pendingRevalidate; - } - } - cachedFetchData = entry.value.data; - } - } - } - if (cachedFetchData) { - if (fetchStart) { - trackFetchMetric(workStore, { - start: fetchStart, - url: fetchUrl, - cacheReason, - cacheStatus: isHmrRefreshCache ? 'hmr' : 'hit', - cacheWarning, - status: cachedFetchData.status || 200, - method: (init == null ? void 0 : init.method) || 'GET' - }); - } - const response = new Response(Buffer.from(cachedFetchData.body, 'base64'), { - headers: cachedFetchData.headers, - status: cachedFetchData.status - }); - Object.defineProperty(response, 'url', { - value: cachedFetchData.url - }); - return response; - } - } - if ((workStore.isStaticGeneration || ("TURBOPACK compile-time value", "development") === 'development' && ("TURBOPACK compile-time value", false) && workUnitStore && // eslint-disable-next-line no-restricted-syntax - workUnitStore.type === 'request' && workUnitStore.stagedRendering) && init && typeof init === 'object') { - const { cache } = init; - // Delete `cache` property as Cloudflare Workers will throw an error - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - if (cache === 'no-store') { - // If enabled, we should bail out of static generation. - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, 'fetch()'); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["markCurrentScopeAsDynamic"])(workStore, workUnitStore, `no-store fetch ${input} ${workStore.route}`); - } - const hasNextConfig = 'next' in init; - const { next = {} } = init; - if (typeof next.revalidate === 'number' && revalidateStore && next.revalidate < revalidateStore.revalidate) { - if (next.revalidate === 0) { - // If enabled, we should bail out of static generation. - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, 'fetch()'); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'cache': - case 'private-cache': - case 'unstable-cache': - case 'prerender-legacy': - case 'prerender-ppr': - break; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["markCurrentScopeAsDynamic"])(workStore, workUnitStore, `revalidate: 0 fetch ${input} ${workStore.route}`); - } - if (!workStore.forceStatic || next.revalidate !== 0) { - revalidateStore.revalidate = next.revalidate; - } - } - if (hasNextConfig) delete init.next; - } - // if we are revalidating the whole page via time or on-demand and - // the fetch cache entry is stale we should still de-dupe the - // origin hit if it's a cache-able entry - if (cacheKey && isForegroundRevalidate) { - const pendingRevalidateKey = cacheKey; - workStore.pendingRevalidates ??= {}; - let pendingRevalidate = workStore.pendingRevalidates[pendingRevalidateKey]; - if (pendingRevalidate) { - const revalidatedResult = await pendingRevalidate; - return new Response(revalidatedResult.body, { - headers: revalidatedResult.headers, - status: revalidatedResult.status, - statusText: revalidatedResult.statusText - }); - } - // We used to just resolve the Response and clone it however for - // static generation with cacheComponents we need the response to be able to - // be resolved in a microtask and cloning the response will never have - // a body that can resolve in a microtask in node (as observed through - // experimentation) So instead we await the body and then when it is - // available we construct manually cloned Response objects with the - // body as an ArrayBuffer. This will be resolvable in a microtask - // making it compatible with cacheComponents. - const pendingResponse = doOriginalFetch(true, cacheReasonOverride) // We're cloning the response using this utility because there - // exists a bug in the undici library around response cloning. - // See the following pull request for more details: - // https://github.com/vercel/next.js/pull/73274 - .then(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneResponse"]); - pendingRevalidate = pendingResponse.then(async (responses)=>{ - const response = responses[0]; - return { - body: await response.arrayBuffer(), - headers: response.headers, - status: response.status, - statusText: response.statusText - }; - }).finally(()=>{ - var _workStore_pendingRevalidates; - // If the pending revalidate is not present in the store, then - // we have nothing to delete. - if (!((_workStore_pendingRevalidates = workStore.pendingRevalidates) == null ? void 0 : _workStore_pendingRevalidates[pendingRevalidateKey])) { - return; - } - delete workStore.pendingRevalidates[pendingRevalidateKey]; - }); - // Attach the empty catch here so we don't get a "unhandled promise - // rejection" warning - pendingRevalidate.catch(()=>{}); - workStore.pendingRevalidates[pendingRevalidateKey] = pendingRevalidate; - return pendingResponse.then((responses)=>responses[1]); - } else { - return doOriginalFetch(false, cacheReasonOverride); - } - }); - if (cacheSignal) { - try { - return await result; - } finally{ - if (cacheSignal) { - cacheSignal.endRead(); - } - } - } - return result; - }; - // Attach the necessary properties to the patched fetch function. - // We don't use this to determine if the fetch function has been patched, - // but for external consumers to determine if the fetch function has been - // patched. - patched.__nextPatched = true; - patched.__nextGetStaticStore = ()=>workAsyncStorage; - patched._nextOriginalFetch = originFetch; - globalThis[NEXT_PATCH_SYMBOL] = true; - // Assign the function name also as a name property, so that it's preserved - // even when mangling is enabled. - Object.defineProperty(patched, 'name', { - value: 'fetch', - writable: false - }); - return patched; -} -function patchFetch(options) { - // If we've already patched fetch, we should not patch it again. - if (isFetchPatched()) return; - // Grab the original fetch function. We'll attach this so we can use it in - // the patched fetch function. - const original = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$dedupe$2d$fetch$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDedupeFetch"])(globalThis.fetch); - // Set the global fetch to the patched fetch. - globalThis.fetch = createPatchedFetcher(original, options); -} -let currentTimeoutBoundary = null; -function getTimeoutBoundary() { - if (!currentTimeoutBoundary) { - currentTimeoutBoundary = new Promise((r)=>{ - setTimeout(()=>{ - currentTimeoutBoundary = null; - r(); - }, 0); - }); - } - return currentTimeoutBoundary; -} //# sourceMappingURL=patch-fetch.js.map -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy) <module evaluation>", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js <module evaluation>")); -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js")); -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$next$2d$devtools$2f$userspace$2f$app$2f$segment$2d$explorer$2d$node$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy) <module evaluation>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$next$2d$devtools$2f$userspace$2f$app$2f$segment$2d$explorer$2d$node$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$next$2d$devtools$2f$userspace$2f$app$2f$segment$2d$explorer$2d$node$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript) <locals>", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "SegmentViewNode", - ()=>SegmentViewNode, - "SegmentViewStateNode", - ()=>SegmentViewStateNode, - "patchFetch", - ()=>patchFetch -]); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js [app-rsc] (ecmascript)"); -// TODO: Just re-export `* as ReactServer` -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/search-params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/preloads.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$postpone$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/postpone.js [app-rsc] (ecmascript) <locals>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$taint$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/taint.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$collect$2d$segment$2d$data$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/collect-segment-data.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$patch$2d$fetch$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/patch-fetch.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -let SegmentViewNode = ()=>null; -let SegmentViewStateNode = ()=>null; -if ("TURBOPACK compile-time truthy", 1) { - const mod = __turbopack_context__.r("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (ecmascript)"); - SegmentViewNode = mod.SegmentViewNode; - SegmentViewStateNode = mod.SegmentViewStateNode; -} -// hot-reloader modules are not bundled so we need to inject `__next__clear_chunk_cache__` -// into globalThis from this file which is bundled. -if ("TURBOPACK compile-time truthy", 1) { - globalThis.__next__clear_chunk_cache__ = /*TURBOPACK member replacement*/ __turbopack_context__.C; -} else //TURBOPACK unreachable -; -function patchFetch() { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$patch$2d$fetch$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["patchFetch"])({ - workAsyncStorage: __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"], - workUnitAsyncStorage: __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"] - }); -} -; - //# sourceMappingURL=entry-base.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ClientPageRoot", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ClientPageRoot"], - "ClientSegmentRoot", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ClientSegmentRoot"], - "Fragment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Fragment"], - "HTTPAccessFallbackBoundary", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTTPAccessFallbackBoundary"], - "LayoutRouter", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"], - "Postpone", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Postpone"], - "RenderFromTemplateContext", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"], - "RootLayoutBoundary", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RootLayoutBoundary"], - "SegmentViewNode", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["SegmentViewNode"], - "SegmentViewStateNode", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["SegmentViewStateNode"], - "actionAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["actionAsyncStorage"], - "captureOwnerStack", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["captureOwnerStack"], - "collectSegmentData", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$collect$2d$segment$2d$data$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["collectSegmentData"], - "createElement", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createElement"], - "createMetadataComponents", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createMetadataComponents"], - "createPrerenderParamsForClientSegment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createPrerenderParamsForClientSegment"], - "createPrerenderSearchParamsForClientPage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createPrerenderSearchParamsForClientPage"], - "createServerParamsForServerSegment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerParamsForServerSegment"], - "createServerSearchParamsForServerPage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerSearchParamsForServerPage"], - "createTemporaryReferenceSet", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createTemporaryReferenceSet"], - "decodeAction", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["decodeAction"], - "decodeFormState", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["decodeFormState"], - "decodeReply", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["decodeReply"], - "patchFetch", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["patchFetch"], - "preconnect", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["preconnect"], - "preloadFont", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["preloadFont"], - "preloadStyle", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["preloadStyle"], - "prerender", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["prerender"], - "renderToReadableStream", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["renderToReadableStream"], - "serverHooks", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__, - "taintObjectReference", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$taint$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["taintObjectReference"], - "workAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"], - "workUnitAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"] -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript) <locals>"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/search-params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/preloads.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$taint$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/taint.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$collect$2d$segment$2d$data$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/collect-segment-data.js [app-rsc] (ecmascript)"); -}), -]; - -//# sourceMappingURL=node_modules_91333dfc._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_91333dfc._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_91333dfc._.js.map deleted file mode 100644 index d7a8766..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_91333dfc._.js.map +++ /dev/null @@ -1,193 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/normalize-path-sep.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is no backslash\n * escaping slashes in the path. Example:\n * - `foo\\/bar\\/baz` -> `foo/bar/baz`\n */\nexport function normalizePathSep(path: string): string {\n return path.replace(/\\\\/g, '/')\n}\n"],"names":["normalizePathSep","path","replace"],"mappings":"AAAA;;;;CAIC;;;+BACeA,oBAAAA;;;eAAAA;;;AAAT,SAASA,iBAAiBC,IAAY;IAC3C,OAAOA,KAAKC,OAAO,CAAC,OAAO;AAC7B","ignoreList":[0]}}, - {"offset": {"line": 24, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n"],"names":["ensureLeadingSlash","path","startsWith"],"mappings":"AAAA;;;CAGC;;;+BACeA,sBAAAA;;;eAAAA;;;AAAT,SAASA,mBAAmBC,IAAY;IAC7C,OAAOA,KAAKC,UAAU,CAAC,OAAOD,OAAO,CAAC,CAAC,EAAEA,MAAM;AACjD","ignoreList":[0]}}, - {"offset": {"line": 43, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment.ts"],"sourcesContent":["import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record<string, string | string[] | undefined>\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n"],"names":["DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","computeSelectedLayoutSegment","getSegmentValue","getSelectedLayoutSegmentPath","isGroupSegment","isParallelRouteSegment","segment","Array","isArray","endsWith","startsWith","searchParams","isPageSegment","includes","stringifiedQuery","JSON","stringify","segments","parallelRouteKey","length","rawSegment","tree","first","segmentPath","node","parallelRoutes","children","Object","values","segmentValue","push"],"mappings":";;;;;;;;;;;;;;;;;;;;;IAuFaA,mBAAmB,EAAA;eAAnBA;;IACAC,qBAAqB,EAAA;eAArBA;;IAFAC,gBAAgB,EAAA;eAAhBA;;IAvEGC,4BAA4B,EAAA;eAA5BA;;IAgBAC,4BAA4B,EAAA;eAA5BA;;IA7BAC,eAAe,EAAA;eAAfA;;IAiDAC,4BAA4B,EAAA;eAA5BA;;IA7CAC,cAAc,EAAA;eAAdA;;IAKAC,sBAAsB,EAAA;eAAtBA;;;AATT,SAASH,gBAAgBI,OAAgB;IAC9C,OAAOC,MAAMC,OAAO,CAACF,WAAWA,OAAO,CAAC,EAAE,GAAGA;AAC/C;AAEO,SAASF,eAAeE,OAAe;IAC5C,sCAAsC;IACtC,OAAOA,OAAO,CAAC,EAAE,KAAK,OAAOA,QAAQG,QAAQ,CAAC;AAChD;AAEO,SAASJ,uBAAuBC,OAAe;IACpD,OAAOA,QAAQI,UAAU,CAAC,QAAQJ,YAAY;AAChD;AAEO,SAASN,6BACdM,OAAgB,EAChBK,YAA2D;IAE3D,MAAMC,gBAAgBN,QAAQO,QAAQ,CAACd;IAEvC,IAAIa,eAAe;QACjB,MAAME,mBAAmBC,KAAKC,SAAS,CAACL;QACxC,OAAOG,qBAAqB,OACxBf,mBAAmB,MAAMe,mBACzBf;IACN;IAEA,OAAOO;AACT;AAEO,SAASL,6BACdgB,QAAyB,EACzBC,gBAAwB;IAExB,IAAI,CAACD,YAAYA,SAASE,MAAM,KAAK,GAAG;QACtC,OAAO;IACT;IAEA,iFAAiF;IACjF,MAAMC,aACJF,qBAAqB,aACjBD,QAAQ,CAAC,EAAE,GACXA,QAAQ,CAACA,SAASE,MAAM,GAAG,EAAE;IAEnC,sGAAsG;IACtG,oEAAoE;IACpE,OAAOC,eAAevB,sBAAsB,OAAOuB;AACrD;AAGO,SAASjB,6BACdkB,IAAuB,EACvBH,gBAAwB,EACxBI,QAAQ,IAAI,EACZC,cAAwB,EAAE;IAE1B,IAAIC;IACJ,IAAIF,OAAO;QACT,kEAAkE;QAClEE,OAAOH,IAAI,CAAC,EAAE,CAACH,iBAAiB;IAClC,OAAO;QACL,oGAAoG;QACpG,MAAMO,iBAAiBJ,IAAI,CAAC,EAAE;QAC9BG,OAAOC,eAAeC,QAAQ,IAAIC,OAAOC,MAAM,CAACH,eAAe,CAAC,EAAE;IACpE;IAEA,IAAI,CAACD,MAAM,OAAOD;IAClB,MAAMjB,UAAUkB,IAAI,CAAC,EAAE;IAEvB,IAAIK,eAAe3B,gBAAgBI;IAEnC,IAAI,CAACuB,gBAAgBA,aAAanB,UAAU,CAACX,mBAAmB;QAC9D,OAAOwB;IACT;IAEAA,YAAYO,IAAI,CAACD;IAEjB,OAAO1B,6BACLqB,MACAN,kBACA,OACAK;AAEJ;AAEO,MAAMxB,mBAAmB;AACzB,MAAMF,sBAAsB;AAC5B,MAAMC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 146, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/app-paths.ts"],"sourcesContent":["import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n"],"names":["normalizeAppPath","normalizeRscURL","route","ensureLeadingSlash","split","reduce","pathname","segment","index","segments","isGroupSegment","length","url","replace"],"mappings":";;;;;;;;;;;;;;IAsBgBA,gBAAgB,EAAA;eAAhBA;;IAmCAC,eAAe,EAAA;eAAfA;;;oCAzDmB;yBACJ;AAqBxB,SAASD,iBAAiBE,KAAa;IAC5C,OAAOC,CAAAA,GAAAA,oBAAAA,kBAAkB,EACvBD,MAAME,KAAK,CAAC,KAAKC,MAAM,CAAC,CAACC,UAAUC,SAASC,OAAOC;QACjD,8BAA8B;QAC9B,IAAI,CAACF,SAAS;YACZ,OAAOD;QACT;QAEA,sBAAsB;QACtB,IAAII,CAAAA,GAAAA,SAAAA,cAAc,EAACH,UAAU;YAC3B,OAAOD;QACT;QAEA,iCAAiC;QACjC,IAAIC,OAAO,CAAC,EAAE,KAAK,KAAK;YACtB,OAAOD;QACT;QAEA,uDAAuD;QACvD,IACGC,CAAAA,YAAY,UAAUA,YAAY,OAAM,KACzCC,UAAUC,SAASE,MAAM,GAAG,GAC5B;YACA,OAAOL;QACT;QAEA,OAAO,GAAGA,SAAS,CAAC,EAAEC,SAAS;IACjC,GAAG;AAEP;AAMO,SAASN,gBAAgBW,GAAW;IACzC,OAAOA,IAAIC,OAAO,CAChB,eACA,AACA,8BAD8B;AAGlC","ignoreList":[0]}}, - {"offset": {"line": 197, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/is-app-route-route.ts"],"sourcesContent":["export function isAppRouteRoute(route: string): boolean {\n return route.endsWith('/route')\n}\n"],"names":["isAppRouteRoute","route","endsWith"],"mappings":";;;+BAAgBA,mBAAAA;;;eAAAA;;;AAAT,SAASA,gBAAgBC,KAAa;IAC3C,OAAOA,MAAMC,QAAQ,CAAC;AACxB","ignoreList":[0]}}, - {"offset": {"line": 213, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/is-metadata-route.ts"],"sourcesContent":["import type { PageExtensions } from '../../build/page-extensions-type'\nimport { normalizePathSep } from '../../shared/lib/page-path/normalize-path-sep'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { isAppRouteRoute } from '../is-app-route-route'\n\nexport const STATIC_METADATA_IMAGES = {\n icon: {\n filename: 'icon',\n extensions: ['ico', 'jpg', 'jpeg', 'png', 'svg'],\n },\n apple: {\n filename: 'apple-icon',\n extensions: ['jpg', 'jpeg', 'png'],\n },\n favicon: {\n filename: 'favicon',\n extensions: ['ico'],\n },\n openGraph: {\n filename: 'opengraph-image',\n extensions: ['jpg', 'jpeg', 'png', 'gif'],\n },\n twitter: {\n filename: 'twitter-image',\n extensions: ['jpg', 'jpeg', 'png', 'gif'],\n },\n} as const\n\n// Match routes that are metadata routes, e.g. /sitemap.xml, /favicon.<ext>, /<icon>.<ext>, etc.\n// TODO-METADATA: support more metadata routes with more extensions\nexport const DEFAULT_METADATA_ROUTE_EXTENSIONS = ['js', 'jsx', 'ts', 'tsx']\n\n// Match the file extension with the dynamic multi-routes extensions\n// e.g. ([xml, js], null) -> can match `/sitemap.xml/route`, `sitemap.js/route`\n// e.g. ([png], [ts]) -> can match `/opengraph-image.png`, `/opengraph-image.ts`\nexport const getExtensionRegexString = (\n staticExtensions: readonly string[],\n dynamicExtensions: readonly string[] | null\n) => {\n let result: string\n // If there's no possible multi dynamic routes, will not match any <name>[].<ext> files\n if (!dynamicExtensions || dynamicExtensions.length === 0) {\n result = `(\\\\.(?:${staticExtensions.join('|')}))`\n } else {\n result = `(?:\\\\.(${staticExtensions.join('|')})|(\\\\.(${dynamicExtensions.join('|')})))`\n }\n return result\n}\n\n/**\n * Matches the static metadata files, e.g. /robots.txt, /sitemap.xml, /favicon.ico, etc.\n * @param appDirRelativePath the relative file path to app/\n * @returns if the path is a static metadata file route\n */\nexport function isStaticMetadataFile(appDirRelativePath: string) {\n return isMetadataRouteFile(appDirRelativePath, [], true)\n}\n\n// Pre-compiled static regexes for common cases\nconst FAVICON_REGEX = /^[\\\\/]favicon\\.ico$/\nconst ROBOTS_TXT_REGEX = /^[\\\\/]robots\\.txt$/\nconst MANIFEST_JSON_REGEX = /^[\\\\/]manifest\\.json$/\nconst MANIFEST_WEBMANIFEST_REGEX = /^[\\\\/]manifest\\.webmanifest$/\nconst SITEMAP_XML_REGEX = /[\\\\/]sitemap\\.xml$/\n\n// Cache for compiled regex patterns based on parameters\nconst compiledRegexCache = new Map<string, RegExp[]>()\n\n// Fast path checks for common metadata files\nfunction fastPathCheck(normalizedPath: string): boolean | null {\n // Check favicon.ico first (most common)\n if (FAVICON_REGEX.test(normalizedPath)) return true\n\n // Check other common static files\n if (ROBOTS_TXT_REGEX.test(normalizedPath)) return true\n if (MANIFEST_JSON_REGEX.test(normalizedPath)) return true\n if (MANIFEST_WEBMANIFEST_REGEX.test(normalizedPath)) return true\n if (SITEMAP_XML_REGEX.test(normalizedPath)) return true\n\n // Quick negative check - if it doesn't contain any metadata keywords, skip\n if (\n !normalizedPath.includes('robots') &&\n !normalizedPath.includes('manifest') &&\n !normalizedPath.includes('sitemap') &&\n !normalizedPath.includes('icon') &&\n !normalizedPath.includes('apple-icon') &&\n !normalizedPath.includes('opengraph-image') &&\n !normalizedPath.includes('twitter-image') &&\n !normalizedPath.includes('favicon')\n ) {\n return false\n }\n\n return null // Continue with full regex matching\n}\n\nfunction getCompiledRegexes(\n pageExtensions: PageExtensions,\n strictlyMatchExtensions: boolean\n): RegExp[] {\n // Create cache key\n const cacheKey = `${pageExtensions.join(',')}|${strictlyMatchExtensions}`\n\n const cached = compiledRegexCache.get(cacheKey)\n if (cached) {\n return cached\n }\n\n // Pre-compute common strings\n const trailingMatcher = strictlyMatchExtensions ? '$' : '?$'\n const variantsMatcher = '\\\\d?'\n const groupSuffix = strictlyMatchExtensions ? '' : '(-\\\\w{6})?'\n const suffixMatcher = variantsMatcher + groupSuffix\n\n // Pre-compute extension arrays to avoid repeated concatenation\n const robotsExts =\n pageExtensions.length > 0 ? [...pageExtensions, 'txt'] : ['txt']\n const manifestExts =\n pageExtensions.length > 0\n ? [...pageExtensions, 'webmanifest', 'json']\n : ['webmanifest', 'json']\n\n const regexes = [\n new RegExp(\n `^[\\\\\\\\/]robots${getExtensionRegexString(robotsExts, null)}${trailingMatcher}`\n ),\n new RegExp(\n `^[\\\\\\\\/]manifest${getExtensionRegexString(manifestExts, null)}${trailingMatcher}`\n ),\n // FAVICON_REGEX removed - already handled in fastPathCheck\n new RegExp(\n `[\\\\\\\\/]sitemap${getExtensionRegexString(['xml'], pageExtensions)}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]icon${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.icon.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]apple-icon${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.apple.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]opengraph-image${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.openGraph.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]twitter-image${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.twitter.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n ]\n\n compiledRegexCache.set(cacheKey, regexes)\n return regexes\n}\n\n/**\n * Determine if the file is a metadata route file entry\n * @param appDirRelativePath the relative file path to app/\n * @param pageExtensions the js extensions, such as ['js', 'jsx', 'ts', 'tsx']\n * @param strictlyMatchExtensions if it's true, match the file with page extension, otherwise match the file with default corresponding extension\n * @returns if the file is a metadata route file\n */\nexport function isMetadataRouteFile(\n appDirRelativePath: string,\n pageExtensions: PageExtensions,\n strictlyMatchExtensions: boolean\n): boolean {\n // Early exit for empty or obviously non-metadata paths\n if (!appDirRelativePath || appDirRelativePath.length < 2) {\n return false\n }\n\n const normalizedPath = normalizePathSep(appDirRelativePath)\n\n // Fast path check for common cases\n const fastResult = fastPathCheck(normalizedPath)\n if (fastResult !== null) {\n return fastResult\n }\n\n // Get compiled regexes from cache\n const regexes = getCompiledRegexes(pageExtensions, strictlyMatchExtensions)\n\n // Use for loop instead of .some() for better performance\n for (let i = 0; i < regexes.length; i++) {\n if (regexes[i].test(normalizedPath)) {\n return true\n }\n }\n\n return false\n}\n\n// Check if the route is a static metadata route, with /route suffix\n// e.g. /favicon.ico/route, /icon.png/route, etc.\n// But skip the text routes like robots.txt since they might also be dynamic.\n// Checking route path is not enough to determine if text routes is dynamic.\nexport function isStaticMetadataRoute(route: string) {\n // extract ext with regex\n const pathname = route.replace(/\\/route$/, '')\n\n const matched =\n isAppRouteRoute(route) &&\n isMetadataRouteFile(pathname, [], true) &&\n // These routes can either be built by static or dynamic entrypoints,\n // so we assume they're dynamic\n pathname !== '/robots.txt' &&\n pathname !== '/manifest.webmanifest' &&\n !pathname.endsWith('/sitemap.xml')\n\n return matched\n}\n\n/**\n * Determine if a page or pathname is a metadata page.\n *\n * The input is a page or pathname, which can be with or without page suffix /foo/page or /foo.\n * But it will not contain the /route suffix.\n *\n * .e.g\n * /robots -> true\n * /sitemap -> true\n * /foo -> false\n */\nexport function isMetadataPage(page: string) {\n const matched = !isAppRouteRoute(page) && isMetadataRouteFile(page, [], false)\n\n return matched\n}\n\n/*\n * Determine if a Next.js route is a metadata route.\n * `route` will has a route suffix.\n *\n * e.g.\n * /app/robots/route -> true\n * /robots/route -> true\n * /sitemap/[__metadata_id__]/route -> true\n * /app/sitemap/page -> false\n * /icon-a102f4/route -> true\n */\nexport function isMetadataRoute(route: string): boolean {\n let page = normalizeAppPath(route)\n .replace(/^\\/?app\\//, '')\n // Remove the dynamic route id\n .replace('/[__metadata_id__]', '')\n // Remove the /route suffix\n .replace(/\\/route$/, '')\n\n if (page[0] !== '/') page = '/' + page\n\n const matched = isAppRouteRoute(route) && isMetadataRouteFile(page, [], false)\n\n return matched\n}\n"],"names":["DEFAULT_METADATA_ROUTE_EXTENSIONS","STATIC_METADATA_IMAGES","getExtensionRegexString","isMetadataPage","isMetadataRoute","isMetadataRouteFile","isStaticMetadataFile","isStaticMetadataRoute","icon","filename","extensions","apple","favicon","openGraph","twitter","staticExtensions","dynamicExtensions","result","length","join","appDirRelativePath","FAVICON_REGEX","ROBOTS_TXT_REGEX","MANIFEST_JSON_REGEX","MANIFEST_WEBMANIFEST_REGEX","SITEMAP_XML_REGEX","compiledRegexCache","Map","fastPathCheck","normalizedPath","test","includes","getCompiledRegexes","pageExtensions","strictlyMatchExtensions","cacheKey","cached","get","trailingMatcher","variantsMatcher","groupSuffix","suffixMatcher","robotsExts","manifestExts","regexes","RegExp","set","normalizePathSep","fastResult","i","route","pathname","replace","matched","isAppRouteRoute","endsWith","page","normalizeAppPath"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 435, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/isomorphic/path.js"],"sourcesContent":["/**\n * This module is for next.js server internal usage of path module.\n * It will use native path module for nodejs runtime.\n * It will use path-browserify polyfill for edge runtime.\n */\nlet path\n\nif (process.env.NEXT_RUNTIME === 'edge') {\n path = require('next/dist/compiled/path-browserify')\n} else {\n path = require('path')\n}\n\nmodule.exports = path\n"],"names":["path","process","env","NEXT_RUNTIME","require","module","exports"],"mappings":"AAAA;;;;CAIC,GACD,IAAIA;AAEJ,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACLH,OAAOI,QAAQ;AACjB;AAEAC,OAAOC,OAAO,GAAGN","ignoreList":[0]}}, - {"offset": {"line": 450, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/i18n/normalize-locale-path.ts"],"sourcesContent":["export interface PathLocale {\n detectedLocale?: string\n pathname: string\n}\n\n/**\n * A cache of lowercased locales for each list of locales. This is stored as a\n * WeakMap so if the locales are garbage collected, the cache entry will be\n * removed as well.\n */\nconst cache = new WeakMap<readonly string[], readonly string[]>()\n\n/**\n * For a pathname that may include a locale from a list of locales, it\n * removes the locale from the pathname returning it alongside with the\n * detected locale.\n *\n * @param pathname A pathname that may include a locale.\n * @param locales A list of locales.\n * @returns The detected locale and pathname without locale\n */\nexport function normalizeLocalePath(\n pathname: string,\n locales?: readonly string[]\n): PathLocale {\n // If locales is undefined, return the pathname as is.\n if (!locales) return { pathname }\n\n // Get the cached lowercased locales or create a new cache entry.\n let lowercasedLocales = cache.get(locales)\n if (!lowercasedLocales) {\n lowercasedLocales = locales.map((locale) => locale.toLowerCase())\n cache.set(locales, lowercasedLocales)\n }\n\n let detectedLocale: string | undefined\n\n // The first segment will be empty, because it has a leading `/`. If\n // there is no further segment, there is no locale (or it's the default).\n const segments = pathname.split('/', 2)\n\n // If there's no second segment (ie, the pathname is just `/`), there's no\n // locale.\n if (!segments[1]) return { pathname }\n\n // The second segment will contain the locale part if any.\n const segment = segments[1].toLowerCase()\n\n // See if the segment matches one of the locales. If it doesn't, there is\n // no locale (or it's the default).\n const index = lowercasedLocales.indexOf(segment)\n if (index < 0) return { pathname }\n\n // Return the case-sensitive locale.\n detectedLocale = locales[index]\n\n // Remove the `/${locale}` part of the pathname.\n pathname = pathname.slice(detectedLocale.length + 1) || '/'\n\n return { pathname, detectedLocale }\n}\n"],"names":["normalizeLocalePath","cache","WeakMap","pathname","locales","lowercasedLocales","get","map","locale","toLowerCase","set","detectedLocale","segments","split","segment","index","indexOf","slice","length"],"mappings":";;;+BAqBgBA,uBAAAA;;;eAAAA;;;AAhBhB;;;;CAIC,GACD,MAAMC,QAAQ,IAAIC;AAWX,SAASF,oBACdG,QAAgB,EAChBC,OAA2B;IAE3B,sDAAsD;IACtD,IAAI,CAACA,SAAS,OAAO;QAAED;IAAS;IAEhC,iEAAiE;IACjE,IAAIE,oBAAoBJ,MAAMK,GAAG,CAACF;IAClC,IAAI,CAACC,mBAAmB;QACtBA,oBAAoBD,QAAQG,GAAG,CAAC,CAACC,SAAWA,OAAOC,WAAW;QAC9DR,MAAMS,GAAG,CAACN,SAASC;IACrB;IAEA,IAAIM;IAEJ,oEAAoE;IACpE,yEAAyE;IACzE,MAAMC,WAAWT,SAASU,KAAK,CAAC,KAAK;IAErC,0EAA0E;IAC1E,UAAU;IACV,IAAI,CAACD,QAAQ,CAAC,EAAE,EAAE,OAAO;QAAET;IAAS;IAEpC,0DAA0D;IAC1D,MAAMW,UAAUF,QAAQ,CAAC,EAAE,CAACH,WAAW;IAEvC,yEAAyE;IACzE,mCAAmC;IACnC,MAAMM,QAAQV,kBAAkBW,OAAO,CAACF;IACxC,IAAIC,QAAQ,GAAG,OAAO;QAAEZ;IAAS;IAEjC,oCAAoC;IACpCQ,iBAAiBP,OAAO,CAACW,MAAM;IAE/B,gDAAgD;IAChDZ,WAAWA,SAASc,KAAK,CAACN,eAAeO,MAAM,GAAG,MAAM;IAExD,OAAO;QAAEf;QAAUQ;IAAe;AACpC","ignoreList":[0]}}, - {"offset": {"line": 504, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js"],"sourcesContent":["(()=>{\"use strict\";if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var e={};(()=>{var n=e;Object.defineProperty(n,\"__esModule\",{value:true});n.pathToRegexp=n.tokensToRegexp=n.regexpToFunction=n.match=n.tokensToFunction=n.compile=n.parse=void 0;function lexer(e){var n=[];var r=0;while(r<e.length){var t=e[r];if(t===\"*\"||t===\"+\"||t===\"?\"){n.push({type:\"MODIFIER\",index:r,value:e[r++]});continue}if(t===\"\\\\\"){n.push({type:\"ESCAPED_CHAR\",index:r++,value:e[r++]});continue}if(t===\"{\"){n.push({type:\"OPEN\",index:r,value:e[r++]});continue}if(t===\"}\"){n.push({type:\"CLOSE\",index:r,value:e[r++]});continue}if(t===\":\"){var a=\"\";var i=r+1;while(i<e.length){var o=e.charCodeAt(i);if(o>=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122||o===95){a+=e[i++];continue}break}if(!a)throw new TypeError(\"Missing parameter name at \".concat(r));n.push({type:\"NAME\",index:r,value:a});r=i;continue}if(t===\"(\"){var c=1;var f=\"\";var i=r+1;if(e[i]===\"?\"){throw new TypeError('Pattern cannot start with \"?\" at '.concat(i))}while(i<e.length){if(e[i]===\"\\\\\"){f+=e[i++]+e[i++];continue}if(e[i]===\")\"){c--;if(c===0){i++;break}}else if(e[i]===\"(\"){c++;if(e[i+1]!==\"?\"){throw new TypeError(\"Capturing groups are not allowed at \".concat(i))}}f+=e[i++]}if(c)throw new TypeError(\"Unbalanced pattern at \".concat(r));if(!f)throw new TypeError(\"Missing pattern at \".concat(r));n.push({type:\"PATTERN\",index:r,value:f});r=i;continue}n.push({type:\"CHAR\",index:r,value:e[r++]})}n.push({type:\"END\",index:r,value:\"\"});return n}function parse(e,n){if(n===void 0){n={}}var r=lexer(e);var t=n.prefixes,a=t===void 0?\"./\":t,i=n.delimiter,o=i===void 0?\"/#?\":i;var c=[];var f=0;var u=0;var p=\"\";var tryConsume=function(e){if(u<r.length&&r[u].type===e)return r[u++].value};var mustConsume=function(e){var n=tryConsume(e);if(n!==undefined)return n;var t=r[u],a=t.type,i=t.index;throw new TypeError(\"Unexpected \".concat(a,\" at \").concat(i,\", expected \").concat(e))};var consumeText=function(){var e=\"\";var n;while(n=tryConsume(\"CHAR\")||tryConsume(\"ESCAPED_CHAR\")){e+=n}return e};var isSafe=function(e){for(var n=0,r=o;n<r.length;n++){var t=r[n];if(e.indexOf(t)>-1)return true}return false};var safePattern=function(e){var n=c[c.length-1];var r=e||(n&&typeof n===\"string\"?n:\"\");if(n&&!r){throw new TypeError('Must have text between two parameters, missing text after \"'.concat(n.name,'\"'))}if(!r||isSafe(r))return\"[^\".concat(escapeString(o),\"]+?\");return\"(?:(?!\".concat(escapeString(r),\")[^\").concat(escapeString(o),\"])+?\")};while(u<r.length){var v=tryConsume(\"CHAR\");var s=tryConsume(\"NAME\");var d=tryConsume(\"PATTERN\");if(s||d){var g=v||\"\";if(a.indexOf(g)===-1){p+=g;g=\"\"}if(p){c.push(p);p=\"\"}c.push({name:s||f++,prefix:g,suffix:\"\",pattern:d||safePattern(g),modifier:tryConsume(\"MODIFIER\")||\"\"});continue}var x=v||tryConsume(\"ESCAPED_CHAR\");if(x){p+=x;continue}if(p){c.push(p);p=\"\"}var h=tryConsume(\"OPEN\");if(h){var g=consumeText();var l=tryConsume(\"NAME\")||\"\";var m=tryConsume(\"PATTERN\")||\"\";var T=consumeText();mustConsume(\"CLOSE\");c.push({name:l||(m?f++:\"\"),pattern:l&&!m?safePattern(g):m,prefix:g,suffix:T,modifier:tryConsume(\"MODIFIER\")||\"\"});continue}mustConsume(\"END\")}return c}n.parse=parse;function compile(e,n){return tokensToFunction(parse(e,n),n)}n.compile=compile;function tokensToFunction(e,n){if(n===void 0){n={}}var r=flags(n);var t=n.encode,a=t===void 0?function(e){return e}:t,i=n.validate,o=i===void 0?true:i;var c=e.map((function(e){if(typeof e===\"object\"){return new RegExp(\"^(?:\".concat(e.pattern,\")$\"),r)}}));return function(n){var r=\"\";for(var t=0;t<e.length;t++){var i=e[t];if(typeof i===\"string\"){r+=i;continue}var f=n?n[i.name]:undefined;var u=i.modifier===\"?\"||i.modifier===\"*\";var p=i.modifier===\"*\"||i.modifier===\"+\";if(Array.isArray(f)){if(!p){throw new TypeError('Expected \"'.concat(i.name,'\" to not repeat, but got an array'))}if(f.length===0){if(u)continue;throw new TypeError('Expected \"'.concat(i.name,'\" to not be empty'))}for(var v=0;v<f.length;v++){var s=a(f[v],i);if(o&&!c[t].test(s)){throw new TypeError('Expected all \"'.concat(i.name,'\" to match \"').concat(i.pattern,'\", but got \"').concat(s,'\"'))}r+=i.prefix+s+i.suffix}continue}if(typeof f===\"string\"||typeof f===\"number\"){var s=a(String(f),i);if(o&&!c[t].test(s)){throw new TypeError('Expected \"'.concat(i.name,'\" to match \"').concat(i.pattern,'\", but got \"').concat(s,'\"'))}r+=i.prefix+s+i.suffix;continue}if(u)continue;var d=p?\"an array\":\"a string\";throw new TypeError('Expected \"'.concat(i.name,'\" to be ').concat(d))}return r}}n.tokensToFunction=tokensToFunction;function match(e,n){var r=[];var t=pathToRegexp(e,r,n);return regexpToFunction(t,r,n)}n.match=match;function regexpToFunction(e,n,r){if(r===void 0){r={}}var t=r.decode,a=t===void 0?function(e){return e}:t;return function(r){var t=e.exec(r);if(!t)return false;var i=t[0],o=t.index;var c=Object.create(null);var _loop_1=function(e){if(t[e]===undefined)return\"continue\";var r=n[e-1];if(r.modifier===\"*\"||r.modifier===\"+\"){c[r.name]=t[e].split(r.prefix+r.suffix).map((function(e){return a(e,r)}))}else{c[r.name]=a(t[e],r)}};for(var f=1;f<t.length;f++){_loop_1(f)}return{path:i,index:o,params:c}}}n.regexpToFunction=regexpToFunction;function escapeString(e){return e.replace(/([.+*?=^!:${}()[\\]|/\\\\])/g,\"\\\\$1\")}function flags(e){return e&&e.sensitive?\"\":\"i\"}function regexpToRegexp(e,n){if(!n)return e;var r=/\\((?:\\?<(.*?)>)?(?!\\?)/g;var t=0;var a=r.exec(e.source);while(a){n.push({name:a[1]||t++,prefix:\"\",suffix:\"\",modifier:\"\",pattern:\"\"});a=r.exec(e.source)}return e}function arrayToRegexp(e,n,r){var t=e.map((function(e){return pathToRegexp(e,n,r).source}));return new RegExp(\"(?:\".concat(t.join(\"|\"),\")\"),flags(r))}function stringToRegexp(e,n,r){return tokensToRegexp(parse(e,r),n,r)}function tokensToRegexp(e,n,r){if(r===void 0){r={}}var t=r.strict,a=t===void 0?false:t,i=r.start,o=i===void 0?true:i,c=r.end,f=c===void 0?true:c,u=r.encode,p=u===void 0?function(e){return e}:u,v=r.delimiter,s=v===void 0?\"/#?\":v,d=r.endsWith,g=d===void 0?\"\":d;var x=\"[\".concat(escapeString(g),\"]|$\");var h=\"[\".concat(escapeString(s),\"]\");var l=o?\"^\":\"\";for(var m=0,T=e;m<T.length;m++){var E=T[m];if(typeof E===\"string\"){l+=escapeString(p(E))}else{var w=escapeString(p(E.prefix));var y=escapeString(p(E.suffix));if(E.pattern){if(n)n.push(E);if(w||y){if(E.modifier===\"+\"||E.modifier===\"*\"){var R=E.modifier===\"*\"?\"?\":\"\";l+=\"(?:\".concat(w,\"((?:\").concat(E.pattern,\")(?:\").concat(y).concat(w,\"(?:\").concat(E.pattern,\"))*)\").concat(y,\")\").concat(R)}else{l+=\"(?:\".concat(w,\"(\").concat(E.pattern,\")\").concat(y,\")\").concat(E.modifier)}}else{if(E.modifier===\"+\"||E.modifier===\"*\"){throw new TypeError('Can not repeat \"'.concat(E.name,'\" without a prefix and suffix'))}l+=\"(\".concat(E.pattern,\")\").concat(E.modifier)}}else{l+=\"(?:\".concat(w).concat(y,\")\").concat(E.modifier)}}}if(f){if(!a)l+=\"\".concat(h,\"?\");l+=!r.endsWith?\"$\":\"(?=\".concat(x,\")\")}else{var A=e[e.length-1];var _=typeof A===\"string\"?h.indexOf(A[A.length-1])>-1:A===undefined;if(!a){l+=\"(?:\".concat(h,\"(?=\").concat(x,\"))?\")}if(!_){l+=\"(?=\".concat(h,\"|\").concat(x,\")\")}}return new RegExp(l,flags(r))}n.tokensToRegexp=tokensToRegexp;function pathToRegexp(e,n,r){if(e instanceof RegExp)return regexpToRegexp(e,n);if(Array.isArray(e))return arrayToRegexp(e,n,r);return stringToRegexp(e,n,r)}n.pathToRegexp=pathToRegexp})();module.exports=e})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 915, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/path-match.ts"],"sourcesContent":["import type { Key } from 'next/dist/compiled/path-to-regexp'\nimport { regexpToFunction } from 'next/dist/compiled/path-to-regexp'\nimport { pathToRegexp } from 'next/dist/compiled/path-to-regexp'\n\ninterface Options {\n /**\n * A transformer function that will be applied to the regexp generated\n * from the provided path and path-to-regexp.\n */\n regexModifier?: (regex: string) => string\n /**\n * When true the function will remove all unnamed parameters\n * from the matched parameters.\n */\n removeUnnamedParams?: boolean\n /**\n * When true the regexp won't allow an optional trailing delimiter\n * to match.\n */\n strict?: boolean\n\n /**\n * When true the matcher will be case-sensitive, defaults to false\n */\n sensitive?: boolean\n}\n\nexport type PatchMatcher = (\n pathname: string,\n params?: Record<string, any>\n) => Record<string, any> | false\n\n/**\n * Generates a path matcher function for a given path and options based on\n * path-to-regexp. By default the match will be case insensitive, non strict\n * and delimited by `/`.\n */\nexport function getPathMatch(path: string, options?: Options): PatchMatcher {\n const keys: Key[] = []\n const regexp = pathToRegexp(path, keys, {\n delimiter: '/',\n sensitive:\n typeof options?.sensitive === 'boolean' ? options.sensitive : false,\n strict: options?.strict,\n })\n\n const matcher = regexpToFunction<Record<string, any>>(\n options?.regexModifier\n ? new RegExp(options.regexModifier(regexp.source), regexp.flags)\n : regexp,\n keys\n )\n\n /**\n * A matcher function that will check if a given pathname matches the path\n * given in the builder function. When the path does not match it will return\n * `false` but if it does it will return an object with the matched params\n * merged with the params provided in the second argument.\n */\n return (pathname, params) => {\n // If no pathname is provided it's not a match.\n if (typeof pathname !== 'string') return false\n\n const match = matcher(pathname)\n\n // If the path did not match `false` will be returned.\n if (!match) return false\n\n /**\n * If unnamed params are not allowed they must be removed from\n * the matched parameters. path-to-regexp uses \"string\" for named and\n * \"number\" for unnamed parameters.\n */\n if (options?.removeUnnamedParams) {\n for (const key of keys) {\n if (typeof key.name === 'number') {\n delete match.params[key.name]\n }\n }\n }\n\n return { ...params, ...match.params }\n }\n}\n"],"names":["getPathMatch","path","options","keys","regexp","pathToRegexp","delimiter","sensitive","strict","matcher","regexpToFunction","regexModifier","RegExp","source","flags","pathname","params","match","removeUnnamedParams","key","name"],"mappings":";;;+BAqCgBA,gBAAAA;;;eAAAA;;;8BApCiB;AAoC1B,SAASA,aAAaC,IAAY,EAAEC,OAAiB;IAC1D,MAAMC,OAAc,EAAE;IACtB,MAAMC,SAASC,CAAAA,GAAAA,cAAAA,YAAY,EAACJ,MAAME,MAAM;QACtCG,WAAW;QACXC,WACE,OAAOL,SAASK,cAAc,YAAYL,QAAQK,SAAS,GAAG;QAChEC,QAAQN,SAASM;IACnB;IAEA,MAAMC,UAAUC,CAAAA,GAAAA,cAAAA,gBAAgB,EAC9BR,SAASS,gBACL,IAAIC,OAAOV,QAAQS,aAAa,CAACP,OAAOS,MAAM,GAAGT,OAAOU,KAAK,IAC7DV,QACJD;IAGF;;;;;GAKC,GACD,OAAO,CAACY,UAAUC;QAChB,+CAA+C;QAC/C,IAAI,OAAOD,aAAa,UAAU,OAAO;QAEzC,MAAME,QAAQR,QAAQM;QAEtB,sDAAsD;QACtD,IAAI,CAACE,OAAO,OAAO;QAEnB;;;;KAIC,GACD,IAAIf,SAASgB,qBAAqB;YAChC,KAAK,MAAMC,OAAOhB,KAAM;gBACtB,IAAI,OAAOgB,IAAIC,IAAI,KAAK,UAAU;oBAChC,OAAOH,MAAMD,MAAM,CAACG,IAAIC,IAAI,CAAC;gBAC/B;YACF;QACF;QAEA,OAAO;YAAE,GAAGJ,MAAM;YAAE,GAAGC,MAAMD,MAAM;QAAC;IACtC;AACF","ignoreList":[0]}}, - {"offset": {"line": 965, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/constants.ts"],"sourcesContent":["import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\n\n// in seconds\nexport const CACHE_ONE_YEAR = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record<string, ServerRuntime> = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n"],"names":["ACTION_SUFFIX","APP_DIR_ALIAS","CACHE_ONE_YEAR","DOT_NEXT_ALIAS","ESLINT_DEFAULT_DIRS","GSP_NO_RETURNED_VALUE","GSSP_COMPONENT_MEMBER_ERROR","GSSP_NO_RETURNED_VALUE","HTML_CONTENT_TYPE_HEADER","INFINITE_CACHE","INSTRUMENTATION_HOOK_FILENAME","JSON_CONTENT_TYPE_HEADER","MATCHED_PATH_HEADER","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","NEXT_BODY_SUFFIX","NEXT_CACHE_IMPLICIT_TAG_ID","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_DATA_SUFFIX","NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_META_SUFFIX","NEXT_QUERY_PARAM_PREFIX","NEXT_RESUME_HEADER","NON_STANDARD_NODE_ENV","PAGES_DIR_ALIAS","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","PROXY_FILENAME","PROXY_LOCATION_REGEXP","PUBLIC_DIR_MIDDLEWARE_CONFLICT","ROOT_DIR_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","SERVER_PROPS_EXPORT_ERROR","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","SERVER_RUNTIME","SSG_FALLBACK_EXPORT_ERROR","SSG_GET_INITIAL_PROPS_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","TEXT_PLAIN_CONTENT_TYPE_HEADER","UNSTABLE_REVALIDATE_RENAME_ERROR","WEBPACK_LAYERS","WEBPACK_RESOURCE_QUERIES","WEB_SOCKET_MAX_RECONNECTIONS","edge","experimentalEdge","nodejs","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","edgeSSREntry","metadata","metadataRoute","metadataImageMeta"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1371, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-routes.ts"],"sourcesContent":["import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format /<intercepting route>/(..|...|..)(..)/<intercepted route>`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n"],"names":["INTERCEPTION_ROUTE_MARKERS","extractInterceptionRouteInformation","isInterceptionRouteAppPath","path","split","find","segment","m","startsWith","undefined","interceptingRoute","marker","interceptedRoute","Error","normalizeAppPath","slice","concat","join","splitInterceptingRoute","length"],"mappings":";;;;;;;;;;;;;;;IAGaA,0BAA0B,EAAA;eAA1BA;;IAmCGC,mCAAmC,EAAA;eAAnCA;;IA1BAC,0BAA0B,EAAA;eAA1BA;;;0BAZiB;AAG1B,MAAMF,6BAA6B;IACxC;IACA;IACA;IACA;CACD;AAIM,SAASE,2BAA2BC,IAAY;IACrD,wCAAwC;IACxC,OACEA,KACGC,KAAK,CAAC,KACNC,IAAI,CAAC,CAACC,UACLN,2BAA2BK,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD,SACtDE;AAEZ;AAiBO,SAASR,oCACdE,IAAY;IAEZ,IAAIO;IACJ,IAAIC;IACJ,IAAIC;IAEJ,KAAK,MAAMN,WAAWH,KAAKC,KAAK,CAAC,KAAM;QACrCO,SAASX,2BAA2BK,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD;QACnE,IAAII,QAAQ;;YACT,CAACD,mBAAmBE,iBAAiB,GAAGT,KAAKC,KAAK,CAACO,QAAQ;YAC5D;QACF;IACF;IAEA,IAAI,CAACD,qBAAqB,CAACC,UAAU,CAACC,kBAAkB;QACtD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,4BAA4B,EAAEV,KAAK,iFAAiF,CAAC,GADlH,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEAO,oBAAoBI,CAAAA,GAAAA,UAAAA,gBAAgB,EAACJ,mBAAmB,iDAAiD;;IAEzG,OAAQC;QACN,KAAK;YACH,oIAAoI;YACpI,IAAID,sBAAsB,KAAK;gBAC7BE,mBAAmB,CAAC,CAAC,EAAEA,kBAAkB;YAC3C,OAAO;gBACLA,mBAAmBF,oBAAoB,MAAME;YAC/C;YACA;QACF,KAAK;YACH,uHAAuH;YACvH,IAAIF,sBAAsB,KAAK;gBAC7B,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,CAAC,4BAA4B,EAAEV,KAAK,4DAA4D,CAAC,GAD7F,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YACAS,mBAAmBF,kBAChBN,KAAK,CAAC,KACNW,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACJ,kBACPK,IAAI,CAAC;YACR;QACF,KAAK;YACH,kIAAkI;YAClIL,mBAAmB,MAAMA;YACzB;QACF,KAAK;YACH,iIAAiI;YAEjI,MAAMM,yBAAyBR,kBAAkBN,KAAK,CAAC;YACvD,IAAIc,uBAAuBC,MAAM,IAAI,GAAG;gBACtC,MAAM,OAAA,cAEL,CAFK,IAAIN,MACR,CAAC,4BAA4B,EAAEV,KAAK,+DAA+D,CAAC,GADhG,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEAS,mBAAmBM,uBAChBH,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACJ,kBACPK,IAAI,CAAC;YACR;QACF;YACE,MAAM,OAAA,cAAyC,CAAzC,IAAIJ,MAAM,iCAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAAwC;IAClD;IAEA,OAAO;QAAEH;QAAmBE;IAAiB;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 1480, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/escape-regexp.ts"],"sourcesContent":["// regexp is based on https://github.com/sindresorhus/escape-string-regexp\nconst reHasRegExp = /[|\\\\{}()[\\]^$+*?.-]/\nconst reReplaceRegExp = /[|\\\\{}()[\\]^$+*?.-]/g\n\nexport function escapeStringRegexp(str: string) {\n // see also: https://github.com/lodash/lodash/blob/2da024c3b4f9947a48517639de7560457cd4ec6c/escapeRegExp.js#L23\n if (reHasRegExp.test(str)) {\n return str.replace(reReplaceRegExp, '\\\\$&')\n }\n return str\n}\n"],"names":["escapeStringRegexp","reHasRegExp","reReplaceRegExp","str","test","replace"],"mappings":"AAAA,0EAA0E;;;;+BAI1DA,sBAAAA;;;eAAAA;;;AAHhB,MAAMC,cAAc;AACpB,MAAMC,kBAAkB;AAEjB,SAASF,mBAAmBG,GAAW;IAC5C,+GAA+G;IAC/G,IAAIF,YAAYG,IAAI,CAACD,MAAM;QACzB,OAAOA,IAAIE,OAAO,CAACH,iBAAiB;IACtC;IACA,OAAOC;AACT","ignoreList":[0]}}, - {"offset": {"line": 1503, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/remove-trailing-slash.ts"],"sourcesContent":["/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */\nexport function removeTrailingSlash(route: string) {\n return route.replace(/\\/$/, '') || '/'\n}\n"],"names":["removeTrailingSlash","route","replace"],"mappings":"AAAA;;;;;;CAMC;;;+BACeA,uBAAAA;;;eAAAA;;;AAAT,SAASA,oBAAoBC,KAAa;IAC/C,OAAOA,MAAMC,OAAO,CAAC,OAAO,OAAO;AACrC","ignoreList":[0]}}, - {"offset": {"line": 1525, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/invariant-error.ts"],"sourcesContent":["export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n"],"names":["InvariantError","Error","constructor","message","options","endsWith","name"],"mappings":";;;+BAAaA,kBAAAA;;;eAAAA;;;AAAN,MAAMA,uBAAuBC;IAClCC,YAAYC,OAAe,EAAEC,OAAsB,CAAE;QACnD,KAAK,CACH,CAAC,WAAW,EAAED,QAAQE,QAAQ,CAAC,OAAOF,UAAUA,UAAU,IAAI,0BAA0B,CAAC,EACzFC;QAEF,IAAI,CAACE,IAAI,GAAG;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 1544, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-loader-tree.ts"],"sourcesContent":["import { DEFAULT_SEGMENT_KEY } from '../../segment'\nimport type { LoaderTree } from '../../../../server/lib/app-dir-module'\n\nexport function parseLoaderTree(tree: LoaderTree) {\n const [segment, parallelRoutes, modules] = tree\n const { layout, template } = modules\n let { page } = modules\n // a __DEFAULT__ segment means that this route didn't match any of the\n // segments in the route, so we should use the default page\n page = segment === DEFAULT_SEGMENT_KEY ? modules.defaultPage : page\n\n const conventionPath = layout?.[1] || template?.[1] || page?.[1]\n\n return {\n page,\n segment,\n modules,\n /* it can be either layout / template / page */\n conventionPath,\n parallelRoutes,\n }\n}\n"],"names":["parseLoaderTree","tree","segment","parallelRoutes","modules","layout","template","page","DEFAULT_SEGMENT_KEY","defaultPage","conventionPath"],"mappings":";;;+BAGgBA,mBAAAA;;;eAAAA;;;yBAHoB;AAG7B,SAASA,gBAAgBC,IAAgB;IAC9C,MAAM,CAACC,SAASC,gBAAgBC,QAAQ,GAAGH;IAC3C,MAAM,EAAEI,MAAM,EAAEC,QAAQ,EAAE,GAAGF;IAC7B,IAAI,EAAEG,IAAI,EAAE,GAAGH;IACf,sEAAsE;IACtE,2DAA2D;IAC3DG,OAAOL,YAAYM,SAAAA,mBAAmB,GAAGJ,QAAQK,WAAW,GAAGF;IAE/D,MAAMG,iBAAiBL,QAAQ,CAAC,EAAE,IAAIC,UAAU,CAAC,EAAE,IAAIC,MAAM,CAAC,EAAE;IAEhE,OAAO;QACLA;QACAL;QACAE;QACA,6CAA6C,GAC7CM;QACAP;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1574, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/get-segment-param.tsx"],"sourcesContent":["import { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport type { DynamicParamTypes } from '../../app-router-types'\n\nexport type SegmentParam = {\n paramName: string\n paramType: DynamicParamTypes\n}\n\n/**\n * Parse dynamic route segment to type of parameter\n */\nexport function getSegmentParam(segment: string): SegmentParam | null {\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((marker) =>\n segment.startsWith(marker)\n )\n\n // if an interception marker is part of the path segment, we need to jump ahead\n // to the relevant portion for param parsing\n if (interceptionMarker) {\n segment = segment.slice(interceptionMarker.length)\n }\n\n if (segment.startsWith('[[...') && segment.endsWith(']]')) {\n return {\n // TODO-APP: Optional catchall does not currently work with parallel routes,\n // so for now aren't handling a potential interception marker.\n paramType: 'optional-catchall',\n paramName: segment.slice(5, -2),\n }\n }\n\n if (segment.startsWith('[...') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `catchall-intercepted-${interceptionMarker}`\n : 'catchall',\n paramName: segment.slice(4, -1),\n }\n }\n\n if (segment.startsWith('[') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `dynamic-intercepted-${interceptionMarker}`\n : 'dynamic',\n paramName: segment.slice(1, -1),\n }\n }\n\n return null\n}\n\nexport function isCatchAll(\n type: DynamicParamTypes\n): type is\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall' {\n return (\n type === 'catchall' ||\n type === 'catchall-intercepted-(..)(..)' ||\n type === 'catchall-intercepted-(.)' ||\n type === 'catchall-intercepted-(..)' ||\n type === 'catchall-intercepted-(...)' ||\n type === 'optional-catchall'\n )\n}\n\nexport function getParamProperties(paramType: DynamicParamTypes): {\n repeat: boolean\n optional: boolean\n} {\n let repeat = false\n let optional = false\n\n switch (paramType) {\n case 'catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n repeat = true\n break\n case 'optional-catchall':\n repeat = true\n optional = true\n break\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n break\n default:\n paramType satisfies never\n }\n\n return { repeat, optional }\n}\n"],"names":["getParamProperties","getSegmentParam","isCatchAll","segment","interceptionMarker","INTERCEPTION_ROUTE_MARKERS","find","marker","startsWith","slice","length","endsWith","paramType","paramName","type","repeat","optional"],"mappings":";;;;;;;;;;;;;;;IAuEgBA,kBAAkB,EAAA;eAAlBA;;IA5DAC,eAAe,EAAA;eAAfA;;IAyCAC,UAAU,EAAA;eAAVA;;;oCApD2B;AAWpC,SAASD,gBAAgBE,OAAe;IAC7C,MAAMC,qBAAqBC,oBAAAA,0BAA0B,CAACC,IAAI,CAAC,CAACC,SAC1DJ,QAAQK,UAAU,CAACD;IAGrB,+EAA+E;IAC/E,4CAA4C;IAC5C,IAAIH,oBAAoB;QACtBD,UAAUA,QAAQM,KAAK,CAACL,mBAAmBM,MAAM;IACnD;IAEA,IAAIP,QAAQK,UAAU,CAAC,YAAYL,QAAQQ,QAAQ,CAAC,OAAO;QACzD,OAAO;YACL,4EAA4E;YAC5E,8DAA8D;YAC9DC,WAAW;YACXC,WAAWV,QAAQM,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,IAAIN,QAAQK,UAAU,CAAC,WAAWL,QAAQQ,QAAQ,CAAC,MAAM;QACvD,OAAO;YACLC,WAAWR,qBACP,CAAC,qBAAqB,EAAEA,oBAAoB,GAC5C;YACJS,WAAWV,QAAQM,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,IAAIN,QAAQK,UAAU,CAAC,QAAQL,QAAQQ,QAAQ,CAAC,MAAM;QACpD,OAAO;YACLC,WAAWR,qBACP,CAAC,oBAAoB,EAAEA,oBAAoB,GAC3C;YACJS,WAAWV,QAAQM,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,OAAO;AACT;AAEO,SAASP,WACdY,IAAuB;IAQvB,OACEA,SAAS,cACTA,SAAS,mCACTA,SAAS,8BACTA,SAAS,+BACTA,SAAS,gCACTA,SAAS;AAEb;AAEO,SAASd,mBAAmBY,SAA4B;IAI7D,IAAIG,SAAS;IACb,IAAIC,WAAW;IAEf,OAAQJ;QACN,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACHG,SAAS;YACT;QACF,KAAK;YACHA,SAAS;YACTC,WAAW;YACX;QACF,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACH;QACF;YACEJ;IACJ;IAEA,OAAO;QAAEG;QAAQC;IAAS;AAC5B","ignoreList":[0]}}, - {"offset": {"line": 1665, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/routes/app.ts"],"sourcesContent":["import { InvariantError } from '../../invariant-error'\nimport { getSegmentParam, type SegmentParam } from '../utils/get-segment-param'\nimport {\n INTERCEPTION_ROUTE_MARKERS,\n type InterceptionMarker,\n} from '../utils/interception-routes'\n\nexport type RouteGroupAppRouteSegment = {\n type: 'route-group'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type ParallelRouteAppRouteSegment = {\n type: 'parallel-route'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type StaticAppRouteSegment = {\n type: 'static'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type DynamicAppRouteSegment = {\n type: 'dynamic'\n name: string\n param: SegmentParam\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\n/**\n * Represents a single segment in a route path.\n * Can be either static (e.g., \"blog\") or dynamic (e.g., \"[slug]\").\n */\nexport type AppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n | RouteGroupAppRouteSegment\n | ParallelRouteAppRouteSegment\n\nexport type NormalizedAppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n\nexport function parseAppRouteSegment(segment: string): AppRouteSegment | null {\n if (segment === '') {\n return null\n }\n\n // Check if the segment starts with an interception marker\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n\n const param = getSegmentParam(segment)\n if (param) {\n return {\n type: 'dynamic',\n name: segment,\n param,\n interceptionMarker,\n }\n } else if (segment.startsWith('(') && segment.endsWith(')')) {\n return {\n type: 'route-group',\n name: segment,\n interceptionMarker,\n }\n } else if (segment.startsWith('@')) {\n return {\n type: 'parallel-route',\n name: segment,\n interceptionMarker,\n }\n } else {\n return {\n type: 'static',\n name: segment,\n interceptionMarker,\n }\n }\n}\n\nexport type AppRoute = {\n normalized: boolean\n pathname: string\n segments: AppRouteSegment[]\n dynamicSegments: DynamicAppRouteSegment[]\n interceptionMarker: InterceptionMarker | undefined\n interceptingRoute: AppRoute | undefined\n interceptedRoute: AppRoute | undefined\n}\n\nexport type NormalizedAppRoute = Omit<AppRoute, 'normalized' | 'segments'> & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n}\n\nexport function isNormalizedAppRoute(\n route: InterceptionAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isNormalizedAppRoute(\n route: AppRoute | InterceptionAppRoute\n): route is NormalizedAppRoute {\n return route.normalized\n}\n\nexport type InterceptionAppRoute = Omit<\n AppRoute,\n 'interceptionMarker' | 'interceptingRoute' | 'interceptedRoute'\n> & {\n interceptionMarker: InterceptionMarker\n interceptingRoute: AppRoute\n interceptedRoute: AppRoute\n}\n\nexport type NormalizedInterceptionAppRoute = Omit<\n InterceptionAppRoute,\n | 'normalized'\n | 'segments'\n | 'interceptionMarker'\n | 'interceptingRoute'\n | 'interceptedRoute'\n> & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n interceptionMarker: InterceptionMarker\n interceptingRoute: NormalizedAppRoute\n interceptedRoute: NormalizedAppRoute\n}\n\nexport function isInterceptionAppRoute(\n route: NormalizedAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isInterceptionAppRoute(\n route: AppRoute\n): route is InterceptionAppRoute {\n return (\n route.interceptionMarker !== undefined &&\n route.interceptingRoute !== undefined &&\n route.interceptedRoute !== undefined\n )\n}\n\nexport function parseAppRoute(\n pathname: string,\n normalized: true\n): NormalizedAppRoute\nexport function parseAppRoute(pathname: string, normalized: false): AppRoute\nexport function parseAppRoute(\n pathname: string,\n normalized: boolean\n): AppRoute | NormalizedAppRoute {\n const pathnameSegments = pathname.split('/').filter(Boolean)\n\n // Build segments array with static and dynamic segments\n const segments: AppRouteSegment[] = []\n\n // Parse if this is an interception route.\n let interceptionMarker: InterceptionMarker | undefined\n let interceptingRoute: AppRoute | NormalizedAppRoute | undefined\n let interceptedRoute: AppRoute | NormalizedAppRoute | undefined\n\n for (const segment of pathnameSegments) {\n // Parse the segment into an AppSegment.\n const appSegment = parseAppRouteSegment(segment)\n if (!appSegment) {\n continue\n }\n\n if (\n normalized &&\n (appSegment.type === 'route-group' ||\n appSegment.type === 'parallel-route')\n ) {\n throw new InvariantError(\n `${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`\n )\n }\n\n segments.push(appSegment)\n\n if (appSegment.interceptionMarker) {\n const parts = pathname.split(appSegment.interceptionMarker)\n if (parts.length !== 2) {\n throw new Error(`Invalid interception route: ${pathname}`)\n }\n\n interceptingRoute = normalized\n ? parseAppRoute(parts[0], true)\n : parseAppRoute(parts[0], false)\n interceptedRoute = normalized\n ? parseAppRoute(parts[1], true)\n : parseAppRoute(parts[1], false)\n interceptionMarker = appSegment.interceptionMarker\n }\n }\n\n const dynamicSegments = segments.filter(\n (segment) => segment.type === 'dynamic'\n )\n\n return {\n normalized,\n pathname,\n segments,\n dynamicSegments,\n interceptionMarker,\n interceptingRoute,\n interceptedRoute,\n }\n}\n"],"names":["isInterceptionAppRoute","isNormalizedAppRoute","parseAppRoute","parseAppRouteSegment","segment","interceptionMarker","INTERCEPTION_ROUTE_MARKERS","find","m","startsWith","param","getSegmentParam","type","name","endsWith","route","normalized","undefined","interceptingRoute","interceptedRoute","pathname","pathnameSegments","split","filter","Boolean","segments","appSegment","InvariantError","push","parts","length","Error","dynamicSegments"],"mappings":";;;;;;;;;;;;;;;;IAwJgBA,sBAAsB,EAAA;eAAtBA;;IAjCAC,oBAAoB,EAAA;eAApBA;;IAgDAC,aAAa,EAAA;eAAbA;;IAzGAC,oBAAoB,EAAA;eAApBA;;;gCA9De;iCACoB;oCAI5C;AAyDA,SAASA,qBAAqBC,OAAe;IAClD,IAAIA,YAAY,IAAI;QAClB,OAAO;IACT;IAEA,0DAA0D;IAC1D,MAAMC,qBAAqBC,oBAAAA,0BAA0B,CAACC,IAAI,CAAC,CAACC,IAC1DJ,QAAQK,UAAU,CAACD;IAGrB,MAAME,QAAQC,CAAAA,GAAAA,iBAAAA,eAAe,EAACP;IAC9B,IAAIM,OAAO;QACT,OAAO;YACLE,MAAM;YACNC,MAAMT;YACNM;YACAL;QACF;IACF,OAAO,IAAID,QAAQK,UAAU,CAAC,QAAQL,QAAQU,QAAQ,CAAC,MAAM;QAC3D,OAAO;YACLF,MAAM;YACNC,MAAMT;YACNC;QACF;IACF,OAAO,IAAID,QAAQK,UAAU,CAAC,MAAM;QAClC,OAAO;YACLG,MAAM;YACNC,MAAMT;YACNC;QACF;IACF,OAAO;QACL,OAAO;YACLO,MAAM;YACNC,MAAMT;YACNC;QACF;IACF;AACF;AAoBO,SAASJ,qBACdc,KAAsC;IAEtC,OAAOA,MAAMC,UAAU;AACzB;AA6BO,SAAShB,uBACde,KAAe;IAEf,OACEA,MAAMV,kBAAkB,KAAKY,aAC7BF,MAAMG,iBAAiB,KAAKD,aAC5BF,MAAMI,gBAAgB,KAAKF;AAE/B;AAOO,SAASf,cACdkB,QAAgB,EAChBJ,UAAmB;IAEnB,MAAMK,mBAAmBD,SAASE,KAAK,CAAC,KAAKC,MAAM,CAACC;IAEpD,wDAAwD;IACxD,MAAMC,WAA8B,EAAE;IAEtC,0CAA0C;IAC1C,IAAIpB;IACJ,IAAIa;IACJ,IAAIC;IAEJ,KAAK,MAAMf,WAAWiB,iBAAkB;QACtC,wCAAwC;QACxC,MAAMK,aAAavB,qBAAqBC;QACxC,IAAI,CAACsB,YAAY;YACf;QACF;QAEA,IACEV,cACCU,CAAAA,WAAWd,IAAI,KAAK,iBACnBc,WAAWd,IAAI,KAAK,gBAAe,GACrC;YACA,MAAM,OAAA,cAEL,CAFK,IAAIe,gBAAAA,cAAc,CACtB,GAAGP,SAAS,2FAA2F,CAAC,GADpG,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEAK,SAASG,IAAI,CAACF;QAEd,IAAIA,WAAWrB,kBAAkB,EAAE;YACjC,MAAMwB,QAAQT,SAASE,KAAK,CAACI,WAAWrB,kBAAkB;YAC1D,IAAIwB,MAAMC,MAAM,KAAK,GAAG;gBACtB,MAAM,OAAA,cAAoD,CAApD,IAAIC,MAAM,CAAC,4BAA4B,EAAEX,UAAU,GAAnD,qBAAA;2BAAA;gCAAA;kCAAA;gBAAmD;YAC3D;YAEAF,oBAAoBF,aAChBd,cAAc2B,KAAK,CAAC,EAAE,EAAE,QACxB3B,cAAc2B,KAAK,CAAC,EAAE,EAAE;YAC5BV,mBAAmBH,aACfd,cAAc2B,KAAK,CAAC,EAAE,EAAE,QACxB3B,cAAc2B,KAAK,CAAC,EAAE,EAAE;YAC5BxB,qBAAqBqB,WAAWrB,kBAAkB;QACpD;IACF;IAEA,MAAM2B,kBAAkBP,SAASF,MAAM,CACrC,CAACnB,UAAYA,QAAQQ,IAAI,KAAK;IAGhC,OAAO;QACLI;QACAI;QACAK;QACAO;QACA3B;QACAa;QACAC;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1788, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-prefix-from-param-type.ts"],"sourcesContent":["import type { DynamicParamTypes } from '../../app-router-types'\n\nexport function interceptionPrefixFromParamType(\n paramType: DynamicParamTypes\n): string | null {\n switch (paramType) {\n case 'catchall-intercepted-(..)(..)':\n case 'dynamic-intercepted-(..)(..)':\n return '(..)(..)'\n case 'catchall-intercepted-(.)':\n case 'dynamic-intercepted-(.)':\n return '(.)'\n case 'catchall-intercepted-(..)':\n case 'dynamic-intercepted-(..)':\n return '(..)'\n case 'catchall-intercepted-(...)':\n case 'dynamic-intercepted-(...)':\n return '(...)'\n case 'catchall':\n case 'dynamic':\n case 'optional-catchall':\n default:\n return null\n }\n}\n"],"names":["interceptionPrefixFromParamType","paramType"],"mappings":";;;+BAEgBA,mCAAAA;;;eAAAA;;;AAAT,SAASA,gCACdC,SAA4B;IAE5B,OAAQA;QACN,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;QACL,KAAK;QACL;YACE,OAAO;IACX;AACF","ignoreList":[0]}}, - {"offset": {"line": 1822, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/resolve-param-value.ts"],"sourcesContent":["import type { Params } from '../../../../server/request/params'\nimport type { DynamicParamTypes } from '../../app-router-types'\nimport { InvariantError } from '../../invariant-error'\nimport type {\n NormalizedAppRoute,\n NormalizedAppRouteSegment,\n} from '../routes/app'\nimport { interceptionPrefixFromParamType } from './interception-prefix-from-param-type'\n\n/**\n * Extracts the param value from a path segment, handling interception markers\n * based on the expected param type.\n *\n * @param pathSegment - The path segment to extract the value from\n * @param params - The current params object for resolving dynamic param references\n * @param paramType - The expected param type which may include interception marker info\n * @returns The extracted param value\n */\nfunction getParamValueFromSegment(\n pathSegment: NormalizedAppRouteSegment,\n params: Params,\n paramType: DynamicParamTypes\n): string {\n // If the segment is dynamic, resolve it from the params object\n if (pathSegment.type === 'dynamic') {\n return params[pathSegment.param.paramName] as string\n }\n\n // If the paramType indicates this is an intercepted param, strip the marker\n // that matches the interception marker in the param type\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (interceptionPrefix === pathSegment.interceptionMarker) {\n return pathSegment.name.replace(pathSegment.interceptionMarker, '')\n }\n\n // For static segments, use the name\n return pathSegment.name\n}\n\n/**\n * Resolves a route parameter value from the route segments at the given depth.\n * This shared logic is used by both extractPathnameRouteParamSegmentsFromLoaderTree\n * and resolveRouteParamsFromTree.\n *\n * @param paramName - The parameter name to resolve\n * @param paramType - The parameter type (dynamic, catchall, etc.)\n * @param depth - The current depth in the route tree\n * @param route - The normalized route containing segments\n * @param params - The current params object (used to resolve embedded param references)\n * @param options - Configuration options\n * @returns The resolved parameter value, or undefined if it cannot be resolved\n */\nexport function resolveParamValue(\n paramName: string,\n paramType: DynamicParamTypes,\n depth: number,\n route: NormalizedAppRoute,\n params: Params\n): string | string[] | undefined {\n switch (paramType) {\n case 'catchall':\n case 'optional-catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n // For catchall routes, derive from pathname using depth to determine\n // which segments to use\n const processedSegments: string[] = []\n\n // Process segments to handle any embedded dynamic params\n for (let index = depth; index < route.segments.length; index++) {\n const pathSegment = route.segments[index]\n\n if (pathSegment.type === 'static') {\n let value = pathSegment.name\n\n // For intercepted catch-all params, strip the marker from the first segment\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (\n interceptionPrefix &&\n index === depth &&\n interceptionPrefix === pathSegment.interceptionMarker\n ) {\n // Strip the interception marker from the value\n value = value.replace(pathSegment.interceptionMarker, '')\n }\n\n processedSegments.push(value)\n } else {\n // If the segment is a param placeholder, check if we have its value\n if (!params.hasOwnProperty(pathSegment.param.paramName)) {\n // If the segment is an optional catchall, we can break out of the\n // loop because it's optional!\n if (pathSegment.param.paramType === 'optional-catchall') {\n break\n }\n\n // Unknown param placeholder in pathname - can't derive full value\n return undefined\n }\n\n // If the segment matches a param, use the param value\n // We don't encode values here as that's handled during retrieval.\n const paramValue = params[pathSegment.param.paramName]\n if (Array.isArray(paramValue)) {\n processedSegments.push(...paramValue)\n } else {\n processedSegments.push(paramValue as string)\n }\n }\n }\n\n if (processedSegments.length > 0) {\n return processedSegments\n } else if (paramType === 'optional-catchall') {\n return undefined\n } else {\n // We shouldn't be able to match a catchall segment without any path\n // segments if it's not an optional catchall\n throw new InvariantError(\n `Unexpected empty path segments match for a route \"${route.pathname}\" with param \"${paramName}\" of type \"${paramType}\"`\n )\n }\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n // For regular dynamic parameters, take the segment at this depth\n if (depth < route.segments.length) {\n const pathSegment = route.segments[depth]\n\n // Check if the segment at this depth is a placeholder for an unknown param\n if (\n pathSegment.type === 'dynamic' &&\n !params.hasOwnProperty(pathSegment.param.paramName)\n ) {\n // The segment is a placeholder like [category] and we don't have the value\n return undefined\n }\n\n // If the segment matches a param, use the param value from params object\n // Otherwise it's a static segment, just use it directly\n // We don't encode values here as that's handled during retrieval\n return getParamValueFromSegment(pathSegment, params, paramType)\n }\n\n return undefined\n\n default:\n paramType satisfies never\n }\n}\n"],"names":["resolveParamValue","getParamValueFromSegment","pathSegment","params","paramType","type","param","paramName","interceptionPrefix","interceptionPrefixFromParamType","interceptionMarker","name","replace","depth","route","processedSegments","index","segments","length","value","push","hasOwnProperty","undefined","paramValue","Array","isArray","InvariantError","pathname"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1939, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/get-dynamic-param.ts"],"sourcesContent":["import type { DynamicParam } from '../../../../server/app-render/app-render'\nimport type { LoaderTree } from '../../../../server/lib/app-dir-module'\nimport type { OpaqueFallbackRouteParams } from '../../../../server/request/fallback-params'\nimport type { Params } from '../../../../server/request/params'\nimport type { DynamicParamTypesShort } from '../../app-router-types'\nimport { InvariantError } from '../../invariant-error'\nimport { parseLoaderTree } from './parse-loader-tree'\nimport { parseAppRoute, parseAppRouteSegment } from '../routes/app'\nimport { resolveParamValue } from './resolve-param-value'\n\n/**\n * Gets the value of a param from the params object. This correctly handles the\n * case where the param is a fallback route param and encodes the resulting\n * value.\n *\n * @param interpolatedParams - The params object.\n * @param segmentKey - The key of the segment.\n * @param fallbackRouteParams - The fallback route params.\n * @returns The value of the param.\n */\nfunction getParamValue(\n interpolatedParams: Params,\n segmentKey: string,\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n) {\n let value = interpolatedParams[segmentKey]\n\n if (fallbackRouteParams?.has(segmentKey)) {\n // We know that the fallback route params has the segment key because we\n // checked that above.\n const [searchValue] = fallbackRouteParams.get(segmentKey)!\n value = searchValue\n } else if (Array.isArray(value)) {\n value = value.map((i) => encodeURIComponent(i))\n } else if (typeof value === 'string') {\n value = encodeURIComponent(value)\n }\n\n return value\n}\n\nexport function interpolateParallelRouteParams(\n loaderTree: LoaderTree,\n params: Params,\n pagePath: string,\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n): Params {\n const interpolated = structuredClone(params)\n\n // Stack-based traversal with depth tracking\n const stack: Array<{ tree: LoaderTree; depth: number }> = [\n { tree: loaderTree, depth: 0 },\n ]\n\n // Parse the route from the provided page path.\n const route = parseAppRoute(pagePath, true)\n\n while (stack.length > 0) {\n const { tree, depth } = stack.pop()!\n const { segment, parallelRoutes } = parseLoaderTree(tree)\n\n const appSegment = parseAppRouteSegment(segment)\n\n if (\n appSegment?.type === 'dynamic' &&\n !interpolated.hasOwnProperty(appSegment.param.paramName) &&\n // If the param is in the fallback route params, we don't need to\n // interpolate it because it's already marked as being unknown.\n !fallbackRouteParams?.has(appSegment.param.paramName)\n ) {\n const { paramName, paramType } = appSegment.param\n\n const paramValue = resolveParamValue(\n paramName,\n paramType,\n depth,\n route,\n interpolated\n )\n\n if (paramValue !== undefined) {\n interpolated[paramName] = paramValue\n } else if (paramType !== 'optional-catchall') {\n throw new InvariantError(\n `Could not resolve param value for segment: ${paramName}`\n )\n }\n }\n\n // Calculate next depth - increment if this is not a route group and not empty\n let nextDepth = depth\n if (\n appSegment &&\n appSegment.type !== 'route-group' &&\n appSegment.type !== 'parallel-route'\n ) {\n nextDepth++\n }\n\n // Add all parallel routes to the stack for processing\n for (const parallelRoute of Object.values(parallelRoutes)) {\n stack.push({ tree: parallelRoute, depth: nextDepth })\n }\n }\n\n return interpolated\n}\n\n/**\n *\n * Shared logic on client and server for creating a dynamic param value.\n *\n * This code needs to be shared with the client so it can extract dynamic route\n * params from the URL without a server request.\n *\n * Because everything in this module is sent to the client, we should aim to\n * keep this code as simple as possible. The special case handling for catchall\n * and optional is, alas, unfortunate.\n */\nexport function getDynamicParam(\n interpolatedParams: Params,\n segmentKey: string,\n dynamicParamType: DynamicParamTypesShort,\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n): DynamicParam {\n let value: string | string[] | undefined = getParamValue(\n interpolatedParams,\n segmentKey,\n fallbackRouteParams\n )\n\n // handle the case where an optional catchall does not have a value,\n // e.g. `/dashboard/[[...slug]]` when requesting `/dashboard`\n if (!value || value.length === 0) {\n if (dynamicParamType === 'oc') {\n return {\n param: segmentKey,\n value: null,\n type: dynamicParamType,\n treeSegment: [segmentKey, '', dynamicParamType],\n }\n }\n\n throw new InvariantError(\n `Missing value for segment key: \"${segmentKey}\" with dynamic param type: ${dynamicParamType}`\n )\n }\n\n return {\n param: segmentKey,\n // The value that is passed to user code.\n value,\n // The value that is rendered in the router tree.\n treeSegment: [\n segmentKey,\n Array.isArray(value) ? value.join('/') : value,\n dynamicParamType,\n ],\n type: dynamicParamType,\n }\n}\n\n/**\n * Regular expression pattern used to match route parameters.\n * Matches both single parameters and parameter groups.\n * Examples:\n * - `[[...slug]]` matches parameter group with key 'slug', repeat: true, optional: true\n * - `[...slug]` matches parameter group with key 'slug', repeat: true, optional: false\n * - `[[foo]]` matches parameter with key 'foo', repeat: false, optional: true\n * - `[bar]` matches parameter with key 'bar', repeat: false, optional: false\n */\nexport const PARAMETER_PATTERN = /^([^[]*)\\[((?:\\[[^\\]]*\\])|[^\\]]+)\\](.*)$/\n\n/**\n * Parses a given parameter from a route to a data structure that can be used\n * to generate the parametrized route.\n * Examples:\n * - `[[...slug]]` -> `{ key: 'slug', repeat: true, optional: true }`\n * - `[...slug]` -> `{ key: 'slug', repeat: true, optional: false }`\n * - `[[foo]]` -> `{ key: 'foo', repeat: false, optional: true }`\n * - `[bar]` -> `{ key: 'bar', repeat: false, optional: false }`\n * - `fizz` -> `{ key: 'fizz', repeat: false, optional: false }`\n * @param param - The parameter to parse.\n * @returns The parsed parameter as a data structure.\n */\nexport function parseParameter(param: string) {\n const match = param.match(PARAMETER_PATTERN)\n\n if (!match) {\n return parseMatchedParameter(param)\n }\n\n return parseMatchedParameter(match[2])\n}\n\n/**\n * Parses a matched parameter from the PARAMETER_PATTERN regex to a data structure that can be used\n * to generate the parametrized route.\n * Examples:\n * - `[...slug]` -> `{ key: 'slug', repeat: true, optional: true }`\n * - `...slug` -> `{ key: 'slug', repeat: true, optional: false }`\n * - `[foo]` -> `{ key: 'foo', repeat: false, optional: true }`\n * - `bar` -> `{ key: 'bar', repeat: false, optional: false }`\n * @param param - The matched parameter to parse.\n * @returns The parsed parameter as a data structure.\n */\nexport function parseMatchedParameter(param: string) {\n const optional = param.startsWith('[') && param.endsWith(']')\n if (optional) {\n param = param.slice(1, -1)\n }\n const repeat = param.startsWith('...')\n if (repeat) {\n param = param.slice(3)\n }\n return { key: param, repeat, optional }\n}\n"],"names":["PARAMETER_PATTERN","getDynamicParam","interpolateParallelRouteParams","parseMatchedParameter","parseParameter","getParamValue","interpolatedParams","segmentKey","fallbackRouteParams","value","has","searchValue","get","Array","isArray","map","i","encodeURIComponent","loaderTree","params","pagePath","interpolated","structuredClone","stack","tree","depth","route","parseAppRoute","length","pop","segment","parallelRoutes","parseLoaderTree","appSegment","parseAppRouteSegment","type","hasOwnProperty","param","paramName","paramType","paramValue","resolveParamValue","undefined","InvariantError","nextDepth","parallelRoute","Object","values","push","dynamicParamType","treeSegment","join","match","optional","startsWith","endsWith","slice","repeat","key"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2107, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/route-regex.ts"],"sourcesContent":["import {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../../../lib/constants'\nimport { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport { escapeStringRegexp } from '../../escape-regexp'\nimport { removeTrailingSlash } from './remove-trailing-slash'\nimport { PARAMETER_PATTERN, parseMatchedParameter } from './get-dynamic-param'\n\nexport interface Group {\n pos: number\n repeat: boolean\n optional: boolean\n}\n\nexport interface RouteRegex {\n groups: { [groupName: string]: Group }\n re: RegExp\n}\n\nexport type RegexReference = {\n names: Record<string, string>\n intercepted: Record<string, string>\n}\n\ntype GetNamedRouteRegexOptions = {\n /**\n * Whether to prefix the route keys with the NEXT_INTERCEPTION_MARKER_PREFIX\n * or NEXT_QUERY_PARAM_PREFIX. This is only relevant when creating the\n * routes-manifest during the build.\n */\n prefixRouteKeys: boolean\n\n /**\n * Whether to include the suffix in the route regex. This means that when you\n * have something like `/[...slug].json` the `.json` part will be included\n * in the regex, yielding `/(.*).json` as the regex.\n */\n includeSuffix?: boolean\n\n /**\n * Whether to include the prefix in the route regex. This means that when you\n * have something like `/[...slug].json` the `/` part will be included\n * in the regex, yielding `^/(.*).json$` as the regex.\n *\n * Note that interception markers will already be included without the need\n */\n includePrefix?: boolean\n\n /**\n * Whether to exclude the optional trailing slash from the route regex.\n */\n excludeOptionalTrailingSlash?: boolean\n\n /**\n * Whether to backtrack duplicate keys. This is only relevant when creating\n * the routes-manifest during the build.\n */\n backreferenceDuplicateKeys?: boolean\n\n /**\n * If provided, this will be used as the reference for the dynamic parameter\n * keys instead of generating them in context. This is currently only used for\n * interception routes.\n */\n reference?: RegexReference\n}\n\ntype GetRouteRegexOptions = {\n /**\n * Whether to include extra parts in the route regex. This means that when you\n * have something like `/[...slug].json` the `.json` part will be included\n * in the regex, yielding `/(.*).json` as the regex.\n */\n includeSuffix?: boolean\n\n /**\n * Whether to include the prefix in the route regex. This means that when you\n * have something like `/[...slug].json` the `/` part will be included\n * in the regex, yielding `^/(.*).json$` as the regex.\n *\n * Note that interception markers will already be included without the need\n * of adding this option.\n */\n includePrefix?: boolean\n\n /**\n * Whether to exclude the optional trailing slash from the route regex.\n */\n excludeOptionalTrailingSlash?: boolean\n}\n\nfunction getParametrizedRoute(\n route: string,\n includeSuffix: boolean,\n includePrefix: boolean\n) {\n const groups: { [groupName: string]: Group } = {}\n let groupIndex = 1\n\n const segments: string[] = []\n for (const segment of removeTrailingSlash(route).slice(1).split('/')) {\n const markerMatch = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n const paramMatches = segment.match(PARAMETER_PATTERN) // Check for parameters\n\n if (markerMatch && paramMatches && paramMatches[2]) {\n const { key, optional, repeat } = parseMatchedParameter(paramMatches[2])\n groups[key] = { pos: groupIndex++, repeat, optional }\n segments.push(`/${escapeStringRegexp(markerMatch)}([^/]+?)`)\n } else if (paramMatches && paramMatches[2]) {\n const { key, repeat, optional } = parseMatchedParameter(paramMatches[2])\n groups[key] = { pos: groupIndex++, repeat, optional }\n\n if (includePrefix && paramMatches[1]) {\n segments.push(`/${escapeStringRegexp(paramMatches[1])}`)\n }\n\n let s = repeat ? (optional ? '(?:/(.+?))?' : '/(.+?)') : '/([^/]+?)'\n\n // Remove the leading slash if includePrefix already added it.\n if (includePrefix && paramMatches[1]) {\n s = s.substring(1)\n }\n\n segments.push(s)\n } else {\n segments.push(`/${escapeStringRegexp(segment)}`)\n }\n\n // If there's a suffix, add it to the segments if it's enabled.\n if (includeSuffix && paramMatches && paramMatches[3]) {\n segments.push(escapeStringRegexp(paramMatches[3]))\n }\n }\n\n return {\n parameterizedRoute: segments.join(''),\n groups,\n }\n}\n\n/**\n * From a normalized route this function generates a regular expression and\n * a corresponding groups object intended to be used to store matching groups\n * from the regular expression.\n */\nexport function getRouteRegex(\n normalizedRoute: string,\n {\n includeSuffix = false,\n includePrefix = false,\n excludeOptionalTrailingSlash = false,\n }: GetRouteRegexOptions = {}\n): RouteRegex {\n const { parameterizedRoute, groups } = getParametrizedRoute(\n normalizedRoute,\n includeSuffix,\n includePrefix\n )\n\n let re = parameterizedRoute\n if (!excludeOptionalTrailingSlash) {\n re += '(?:/)?'\n }\n\n return {\n re: new RegExp(`^${re}$`),\n groups: groups,\n }\n}\n\n/**\n * Builds a function to generate a minimal routeKey using only a-z and minimal\n * number of characters.\n */\nfunction buildGetSafeRouteKey() {\n let i = 0\n\n return () => {\n let routeKey = ''\n let j = ++i\n while (j > 0) {\n routeKey += String.fromCharCode(97 + ((j - 1) % 26))\n j = Math.floor((j - 1) / 26)\n }\n return routeKey\n }\n}\n\nfunction getSafeKeyFromSegment({\n interceptionMarker,\n getSafeRouteKey,\n segment,\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n}: {\n interceptionMarker?: string\n getSafeRouteKey: () => string\n segment: string\n routeKeys: Record<string, string>\n keyPrefix?: string\n backreferenceDuplicateKeys: boolean\n}) {\n const { key, optional, repeat } = parseMatchedParameter(segment)\n\n // replace any non-word characters since they can break\n // the named regex\n let cleanedKey = key.replace(/\\W/g, '')\n\n if (keyPrefix) {\n cleanedKey = `${keyPrefix}${cleanedKey}`\n }\n let invalidKey = false\n\n // check if the key is still invalid and fallback to using a known\n // safe key\n if (cleanedKey.length === 0 || cleanedKey.length > 30) {\n invalidKey = true\n }\n if (!isNaN(parseInt(cleanedKey.slice(0, 1)))) {\n invalidKey = true\n }\n\n if (invalidKey) {\n cleanedKey = getSafeRouteKey()\n }\n\n const duplicateKey = cleanedKey in routeKeys\n\n if (keyPrefix) {\n routeKeys[cleanedKey] = `${keyPrefix}${key}`\n } else {\n routeKeys[cleanedKey] = key\n }\n\n // if the segment has an interception marker, make sure that's part of the regex pattern\n // this is to ensure that the route with the interception marker doesn't incorrectly match\n // the non-intercepted route (ie /app/(.)[username] should not match /app/[username])\n const interceptionPrefix = interceptionMarker\n ? escapeStringRegexp(interceptionMarker)\n : ''\n\n let pattern: string\n if (duplicateKey && backreferenceDuplicateKeys) {\n // Use a backreference to the key to ensure that the key is the same value\n // in each of the placeholders.\n pattern = `\\\\k<${cleanedKey}>`\n } else if (repeat) {\n pattern = `(?<${cleanedKey}>.+?)`\n } else {\n pattern = `(?<${cleanedKey}>[^/]+?)`\n }\n\n return {\n key,\n pattern: optional\n ? `(?:/${interceptionPrefix}${pattern})?`\n : `/${interceptionPrefix}${pattern}`,\n cleanedKey: cleanedKey,\n optional,\n repeat,\n }\n}\n\nfunction getNamedParametrizedRoute(\n route: string,\n prefixRouteKeys: boolean,\n includeSuffix: boolean,\n includePrefix: boolean,\n backreferenceDuplicateKeys: boolean,\n reference: RegexReference = { names: {}, intercepted: {} }\n) {\n const getSafeRouteKey = buildGetSafeRouteKey()\n const routeKeys: { [named: string]: string } = {}\n\n const segments: string[] = []\n const inverseParts: string[] = []\n\n // Ensure we don't mutate the original reference object.\n reference = structuredClone(reference)\n\n for (const segment of removeTrailingSlash(route).slice(1).split('/')) {\n const hasInterceptionMarker = INTERCEPTION_ROUTE_MARKERS.some((m) =>\n segment.startsWith(m)\n )\n\n const paramMatches = segment.match(PARAMETER_PATTERN) // Check for parameters\n\n const interceptionMarker = hasInterceptionMarker\n ? paramMatches?.[1]\n : undefined\n\n let keyPrefix: string | undefined\n if (interceptionMarker && paramMatches?.[2]) {\n keyPrefix = prefixRouteKeys ? NEXT_INTERCEPTION_MARKER_PREFIX : undefined\n reference.intercepted[paramMatches[2]] = interceptionMarker\n } else if (paramMatches?.[2] && reference.intercepted[paramMatches[2]]) {\n keyPrefix = prefixRouteKeys ? NEXT_INTERCEPTION_MARKER_PREFIX : undefined\n } else {\n keyPrefix = prefixRouteKeys ? NEXT_QUERY_PARAM_PREFIX : undefined\n }\n\n if (interceptionMarker && paramMatches && paramMatches[2]) {\n // If there's an interception marker, add it to the segments.\n const { key, pattern, cleanedKey, repeat, optional } =\n getSafeKeyFromSegment({\n getSafeRouteKey,\n interceptionMarker,\n segment: paramMatches[2],\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n })\n\n segments.push(pattern)\n inverseParts.push(\n `/${paramMatches[1]}:${reference.names[key] ?? cleanedKey}${repeat ? (optional ? '*' : '+') : ''}`\n )\n reference.names[key] ??= cleanedKey\n } else if (paramMatches && paramMatches[2]) {\n // If there's a prefix, add it to the segments if it's enabled.\n if (includePrefix && paramMatches[1]) {\n segments.push(`/${escapeStringRegexp(paramMatches[1])}`)\n inverseParts.push(`/${paramMatches[1]}`)\n }\n\n const { key, pattern, cleanedKey, repeat, optional } =\n getSafeKeyFromSegment({\n getSafeRouteKey,\n segment: paramMatches[2],\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n })\n\n // Remove the leading slash if includePrefix already added it.\n let s = pattern\n if (includePrefix && paramMatches[1]) {\n s = s.substring(1)\n }\n\n segments.push(s)\n inverseParts.push(\n `/:${reference.names[key] ?? cleanedKey}${repeat ? (optional ? '*' : '+') : ''}`\n )\n reference.names[key] ??= cleanedKey\n } else {\n segments.push(`/${escapeStringRegexp(segment)}`)\n inverseParts.push(`/${segment}`)\n }\n\n // If there's a suffix, add it to the segments if it's enabled.\n if (includeSuffix && paramMatches && paramMatches[3]) {\n segments.push(escapeStringRegexp(paramMatches[3]))\n inverseParts.push(paramMatches[3])\n }\n }\n\n return {\n namedParameterizedRoute: segments.join(''),\n routeKeys,\n pathToRegexpPattern: inverseParts.join(''),\n reference,\n }\n}\n\n/**\n * This function extends `getRouteRegex` generating also a named regexp where\n * each group is named along with a routeKeys object that indexes the assigned\n * named group with its corresponding key. When the routeKeys need to be\n * prefixed to uniquely identify internally the \"prefixRouteKey\" arg should\n * be \"true\" currently this is only the case when creating the routes-manifest\n * during the build\n */\nexport function getNamedRouteRegex(\n normalizedRoute: string,\n options: GetNamedRouteRegexOptions\n) {\n const result = getNamedParametrizedRoute(\n normalizedRoute,\n options.prefixRouteKeys,\n options.includeSuffix ?? false,\n options.includePrefix ?? false,\n options.backreferenceDuplicateKeys ?? false,\n options.reference\n )\n\n let namedRegex = result.namedParameterizedRoute\n if (!options.excludeOptionalTrailingSlash) {\n namedRegex += '(?:/)?'\n }\n\n return {\n ...getRouteRegex(normalizedRoute, options),\n namedRegex: `^${namedRegex}$`,\n routeKeys: result.routeKeys,\n pathToRegexpPattern: result.pathToRegexpPattern,\n reference: result.reference,\n }\n}\n\n/**\n * Generates a named regexp.\n * This is intended to be using for build time only.\n */\nexport function getNamedMiddlewareRegex(\n normalizedRoute: string,\n options: {\n catchAll?: boolean\n }\n) {\n const { parameterizedRoute } = getParametrizedRoute(\n normalizedRoute,\n false,\n false\n )\n const { catchAll = true } = options\n if (parameterizedRoute === '/') {\n let catchAllRegex = catchAll ? '.*' : ''\n return {\n namedRegex: `^/${catchAllRegex}$`,\n }\n }\n\n const { namedParameterizedRoute } = getNamedParametrizedRoute(\n normalizedRoute,\n false,\n false,\n false,\n false,\n undefined\n )\n let catchAllGroupedRegex = catchAll ? '(?:(/.*)?)' : ''\n return {\n namedRegex: `^${namedParameterizedRoute}${catchAllGroupedRegex}$`,\n }\n}\n"],"names":["getNamedMiddlewareRegex","getNamedRouteRegex","getRouteRegex","getParametrizedRoute","route","includeSuffix","includePrefix","groups","groupIndex","segments","segment","removeTrailingSlash","slice","split","markerMatch","INTERCEPTION_ROUTE_MARKERS","find","m","startsWith","paramMatches","match","PARAMETER_PATTERN","key","optional","repeat","parseMatchedParameter","pos","push","escapeStringRegexp","s","substring","parameterizedRoute","join","normalizedRoute","excludeOptionalTrailingSlash","re","RegExp","buildGetSafeRouteKey","i","routeKey","j","String","fromCharCode","Math","floor","getSafeKeyFromSegment","interceptionMarker","getSafeRouteKey","routeKeys","keyPrefix","backreferenceDuplicateKeys","cleanedKey","replace","invalidKey","length","isNaN","parseInt","duplicateKey","interceptionPrefix","pattern","getNamedParametrizedRoute","prefixRouteKeys","reference","names","intercepted","inverseParts","structuredClone","hasInterceptionMarker","some","undefined","NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_QUERY_PARAM_PREFIX","namedParameterizedRoute","pathToRegexpPattern","options","result","namedRegex","catchAll","catchAllRegex","catchAllGroupedRegex"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2364, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils.ts"],"sourcesContent":["import type { HtmlProps } from './html-context.shared-runtime'\nimport type { ComponentType, JSX } from 'react'\nimport type { DomainLocale } from '../../server/config'\nimport type { Env } from '@next/env'\nimport type { IncomingMessage, ServerResponse } from 'http'\nimport type { NextRouter } from './router/router'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { PreviewData } from '../../types'\nimport type { COMPILER_NAMES } from './constants'\nimport type fs from 'fs'\n\nexport type NextComponentType<\n Context extends BaseContext = NextPageContext,\n InitialProps = {},\n Props = {},\n> = ComponentType<Props> & {\n /**\n * Used for initial page load data population. Data returned from `getInitialProps` is serialized when server rendered.\n * Make sure to return plain `Object` without using `Date`, `Map`, `Set`.\n * @param context Context of `page`\n */\n getInitialProps?(context: Context): InitialProps | Promise<InitialProps>\n}\n\nexport type DocumentType = NextComponentType<\n DocumentContext,\n DocumentInitialProps,\n DocumentProps\n>\n\nexport type AppType<P = {}> = NextComponentType<\n AppContextType,\n P,\n AppPropsType<any, P>\n>\n\nexport type AppTreeType = ComponentType<\n AppInitialProps & { [name: string]: any }\n>\n\n/**\n * Web vitals provided to _app.reportWebVitals by Core Web Vitals plugin developed by Google Chrome team.\n * https://nextjs.org/blog/next-9-4#integrated-web-vitals-reporting\n */\nexport const WEB_VITALS = ['CLS', 'FCP', 'FID', 'INP', 'LCP', 'TTFB'] as const\nexport type NextWebVitalsMetric = {\n id: string\n startTime: number\n value: number\n attribution?: { [key: string]: unknown }\n} & (\n | {\n label: 'web-vital'\n name: (typeof WEB_VITALS)[number]\n }\n | {\n label: 'custom'\n name:\n | 'Next.js-hydration'\n | 'Next.js-route-change-to-render'\n | 'Next.js-render'\n }\n)\n\nexport type Enhancer<C> = (Component: C) => C\n\nexport type ComponentsEnhancer =\n | {\n enhanceApp?: Enhancer<AppType>\n enhanceComponent?: Enhancer<NextComponentType>\n }\n | Enhancer<NextComponentType>\n\nexport type RenderPageResult = {\n html: string\n head?: Array<JSX.Element | null>\n}\n\nexport type RenderPage = (\n options?: ComponentsEnhancer\n) => DocumentInitialProps | Promise<DocumentInitialProps>\n\nexport type BaseContext = {\n res?: ServerResponse\n [k: string]: any\n}\n\nexport type NEXT_DATA = {\n props: Record<string, any>\n page: string\n query: ParsedUrlQuery\n buildId: string\n assetPrefix?: string\n nextExport?: boolean\n autoExport?: boolean\n isFallback?: boolean\n isExperimentalCompile?: boolean\n dynamicIds?: (string | number)[]\n err?: Error & {\n statusCode?: number\n source?: typeof COMPILER_NAMES.server | typeof COMPILER_NAMES.edgeServer\n }\n gsp?: boolean\n gssp?: boolean\n customServer?: boolean\n gip?: boolean\n appGip?: boolean\n locale?: string\n locales?: readonly string[]\n defaultLocale?: string\n domainLocales?: readonly DomainLocale[]\n scriptLoader?: any[]\n isPreview?: boolean\n notFoundSrcPage?: string\n}\n\n/**\n * `Next` context\n */\nexport interface NextPageContext {\n /**\n * Error object if encountered during rendering\n */\n err?: (Error & { statusCode?: number }) | null\n /**\n * `HTTP` request object.\n */\n req?: IncomingMessage\n /**\n * `HTTP` response object.\n */\n res?: ServerResponse\n /**\n * Path section of `URL`.\n */\n pathname: string\n /**\n * Query string section of `URL` parsed as an object.\n */\n query: ParsedUrlQuery\n /**\n * `String` of the actual path including query.\n */\n asPath?: string\n /**\n * The currently active locale\n */\n locale?: string\n /**\n * All configured locales\n */\n locales?: readonly string[]\n /**\n * The configured default locale\n */\n defaultLocale?: string\n /**\n * `Component` the tree of the App to use if needing to render separately\n */\n AppTree: AppTreeType\n}\n\nexport type AppContextType<Router extends NextRouter = NextRouter> = {\n Component: NextComponentType<NextPageContext>\n AppTree: AppTreeType\n ctx: NextPageContext\n router: Router\n}\n\nexport type AppInitialProps<PageProps = any> = {\n pageProps: PageProps\n}\n\nexport type AppPropsType<\n Router extends NextRouter = NextRouter,\n PageProps = {},\n> = AppInitialProps<PageProps> & {\n Component: NextComponentType<NextPageContext, any, any>\n router: Router\n __N_SSG?: boolean\n __N_SSP?: boolean\n}\n\nexport type DocumentContext = NextPageContext & {\n renderPage: RenderPage\n defaultGetInitialProps(\n ctx: DocumentContext,\n options?: { nonce?: string }\n ): Promise<DocumentInitialProps>\n}\n\nexport type DocumentInitialProps = RenderPageResult & {\n styles?: React.ReactElement[] | Iterable<React.ReactNode> | JSX.Element\n}\n\nexport type DocumentProps = DocumentInitialProps & HtmlProps\n\n/**\n * Next `API` route request\n */\nexport interface NextApiRequest extends IncomingMessage {\n /**\n * Object of `query` values from url\n */\n query: Partial<{\n [key: string]: string | string[]\n }>\n /**\n * Object of `cookies` from header\n */\n cookies: Partial<{\n [key: string]: string\n }>\n\n body: any\n\n env: Env\n\n draftMode?: boolean\n\n preview?: boolean\n /**\n * Preview data set on the request, if any\n * */\n previewData?: PreviewData\n}\n\n/**\n * Send body of response\n */\ntype Send<T> = (body: T) => void\n\n/**\n * Next `API` route response\n */\nexport type NextApiResponse<Data = any> = ServerResponse & {\n /**\n * Send data `any` data in response\n */\n send: Send<Data>\n /**\n * Send data `json` data in response\n */\n json: Send<Data>\n status: (statusCode: number) => NextApiResponse<Data>\n redirect(url: string): NextApiResponse<Data>\n redirect(status: number, url: string): NextApiResponse<Data>\n\n /**\n * Set draft mode\n */\n setDraftMode: (options: { enable: boolean }) => NextApiResponse<Data>\n\n /**\n * Set preview data for Next.js' prerender mode\n */\n setPreviewData: (\n data: object | string,\n options?: {\n /**\n * Specifies the number (in seconds) for the preview session to last for.\n * The given number will be converted to an integer by rounding down.\n * By default, no maximum age is set and the preview session finishes\n * when the client shuts down (browser is closed).\n */\n maxAge?: number\n /**\n * Specifies the path for the preview session to work under. By default,\n * the path is considered the \"default path\", i.e., any pages under \"/\".\n */\n path?: string\n }\n ) => NextApiResponse<Data>\n\n /**\n * Clear preview data for Next.js' prerender mode\n */\n clearPreviewData: (options?: { path?: string }) => NextApiResponse<Data>\n\n /**\n * Revalidate a specific page and regenerate it using On-Demand Incremental\n * Static Regeneration.\n * The path should be an actual path, not a rewritten path. E.g. for\n * \"/blog/[slug]\" this should be \"/blog/post-1\".\n * @link https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration#on-demand-revalidation-with-revalidatepath\n */\n revalidate: (\n urlPath: string,\n opts?: {\n unstable_onlyGenerated?: boolean\n }\n ) => Promise<void>\n}\n\n/**\n * Next `API` route handler\n */\nexport type NextApiHandler<T = any> = (\n req: NextApiRequest,\n res: NextApiResponse<T>\n) => unknown | Promise<unknown>\n\n/**\n * Utils\n */\nexport function execOnce<T extends (...args: any[]) => ReturnType<T>>(\n fn: T\n): T {\n let used = false\n let result: ReturnType<T>\n\n return ((...args: any[]) => {\n if (!used) {\n used = true\n result = fn(...args)\n }\n return result\n }) as T\n}\n\n// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1\n// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3\nconst ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\\d+\\-.]*?:/\nexport const isAbsoluteUrl = (url: string) => ABSOLUTE_URL_REGEX.test(url)\n\nexport function getLocationOrigin() {\n const { protocol, hostname, port } = window.location\n return `${protocol}//${hostname}${port ? ':' + port : ''}`\n}\n\nexport function getURL() {\n const { href } = window.location\n const origin = getLocationOrigin()\n return href.substring(origin.length)\n}\n\nexport function getDisplayName<P>(Component: ComponentType<P>) {\n return typeof Component === 'string'\n ? Component\n : Component.displayName || Component.name || 'Unknown'\n}\n\nexport function isResSent(res: ServerResponse) {\n return res.finished || res.headersSent\n}\n\nexport function normalizeRepeatedSlashes(url: string) {\n const urlParts = url.split('?')\n const urlNoQuery = urlParts[0]\n\n return (\n urlNoQuery\n // first we replace any non-encoded backslashes with forward\n // then normalize repeated forward slashes\n .replace(/\\\\/g, '/')\n .replace(/\\/\\/+/g, '/') +\n (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : '')\n )\n}\n\nexport async function loadGetInitialProps<\n C extends BaseContext,\n IP = {},\n P = {},\n>(App: NextComponentType<C, IP, P>, ctx: C): Promise<IP> {\n if (process.env.NODE_ENV !== 'production') {\n if (App.prototype?.getInitialProps) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`\n throw new Error(message)\n }\n }\n // when called from _app `ctx` is nested in `ctx`\n const res = ctx.res || (ctx.ctx && ctx.ctx.res)\n\n if (!App.getInitialProps) {\n if (ctx.ctx && ctx.Component) {\n // @ts-ignore pageProps default\n return {\n pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx),\n }\n }\n return {} as IP\n }\n\n const props = await App.getInitialProps(ctx)\n\n if (res && isResSent(res)) {\n return props\n }\n\n if (!props) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" should resolve to an object. But found \"${props}\" instead.`\n throw new Error(message)\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (Object.keys(props).length === 0 && !ctx.ctx) {\n console.warn(\n `${getDisplayName(\n App\n )} returned an empty object from \\`getInitialProps\\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`\n )\n }\n }\n\n return props\n}\n\nexport const SP = typeof performance !== 'undefined'\nexport const ST =\n SP &&\n (['mark', 'measure', 'getEntriesByName'] as const).every(\n (method) => typeof performance[method] === 'function'\n )\n\nexport class DecodeError extends Error {}\nexport class NormalizeError extends Error {}\nexport class PageNotFoundError extends Error {\n code: string\n\n constructor(page: string) {\n super()\n this.code = 'ENOENT'\n this.name = 'PageNotFoundError'\n this.message = `Cannot find module for page: ${page}`\n }\n}\n\nexport class MissingStaticPage extends Error {\n constructor(page: string, message: string) {\n super()\n this.message = `Failed to load static file for page: ${page} ${message}`\n }\n}\n\nexport class MiddlewareNotFoundError extends Error {\n code: string\n constructor() {\n super()\n this.code = 'ENOENT'\n this.message = `Cannot find the middleware module`\n }\n}\n\nexport interface CacheFs {\n existsSync: typeof fs.existsSync\n readFile: typeof fs.promises.readFile\n readFileSync: typeof fs.readFileSync\n writeFile(f: string, d: any): Promise<void>\n mkdir(dir: string): Promise<void | string>\n stat(f: string): Promise<{ mtime: Date }>\n}\n\nexport function stringifyError(error: Error) {\n return JSON.stringify({ message: error.message, stack: error.stack })\n}\n"],"names":["DecodeError","MiddlewareNotFoundError","MissingStaticPage","NormalizeError","PageNotFoundError","SP","ST","WEB_VITALS","execOnce","getDisplayName","getLocationOrigin","getURL","isAbsoluteUrl","isResSent","loadGetInitialProps","normalizeRepeatedSlashes","stringifyError","fn","used","result","args","ABSOLUTE_URL_REGEX","url","test","protocol","hostname","port","window","location","href","origin","substring","length","Component","displayName","name","res","finished","headersSent","urlParts","split","urlNoQuery","replace","slice","join","App","ctx","process","env","NODE_ENV","prototype","getInitialProps","message","Error","pageProps","props","Object","keys","console","warn","performance","every","method","constructor","page","code","error","JSON","stringify","stack"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2572, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/route-pattern-normalizer.ts"],"sourcesContent":["import type { Token } from 'next/dist/compiled/path-to-regexp'\n\n/**\n * Route pattern normalization utilities for path-to-regexp compatibility.\n *\n * path-to-regexp 6.3.0+ introduced stricter validation that rejects certain\n * patterns commonly used in Next.js interception routes. This module provides\n * normalization functions to make Next.js route patterns compatible with the\n * updated library while preserving all functionality.\n */\n\n/**\n * Internal separator used to normalize adjacent parameter patterns.\n * This unique marker is inserted between adjacent parameters and stripped out\n * during parameter extraction to avoid conflicts with real URL content.\n */\nexport const PARAM_SEPARATOR = '_NEXTSEP_'\n\n/**\n * Detects if a route pattern needs normalization for path-to-regexp compatibility.\n */\nexport function hasAdjacentParameterIssues(route: string): boolean {\n if (typeof route !== 'string') return false\n\n // Check for interception route markers followed immediately by parameters\n // Pattern: /(.):param, /(..):param, /(...):param, /(.)(.):param etc.\n // These patterns cause \"Must have text between two parameters\" errors\n if (/\\/\\(\\.{1,3}\\):[^/\\s]+/.test(route)) {\n return true\n }\n\n // Check for basic adjacent parameters without separators\n // Pattern: :param1:param2 (but not :param* or other URL patterns)\n if (/:[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*/.test(route)) {\n return true\n }\n\n return false\n}\n\n/**\n * Normalizes route patterns that have adjacent parameters without text between them.\n * Inserts a unique separator that can be safely stripped out later.\n */\nexport function normalizeAdjacentParameters(route: string): string {\n let normalized = route\n\n // Handle interception route patterns: (.):param -> (.)_NEXTSEP_:param\n normalized = normalized.replace(\n /(\\([^)]*\\)):([^/\\s]+)/g,\n `$1${PARAM_SEPARATOR}:$2`\n )\n\n // Handle other adjacent parameter patterns: :param1:param2 -> :param1_NEXTSEP_:param2\n normalized = normalized.replace(/:([^:/\\s)]+)(?=:)/g, `:$1${PARAM_SEPARATOR}`)\n\n return normalized\n}\n\n/**\n * Normalizes tokens that have repeating modifiers (* or +) but empty prefix and suffix.\n *\n * path-to-regexp 6.3.0+ introduced validation that throws:\n * \"Can not repeat without prefix/suffix\"\n *\n * This occurs when a token has modifier: '*' or '+' with both prefix: '' and suffix: ''\n */\nexport function normalizeTokensForRegexp(tokens: Token[]): Token[] {\n return tokens.map((token) => {\n // Token union type: Token = string | TokenObject\n // Literal path segments are strings, parameters/wildcards are objects\n if (\n typeof token === 'object' &&\n token !== null &&\n // Not all token objects have 'modifier' property (e.g., simple text tokens)\n 'modifier' in token &&\n // Only repeating modifiers (* or +) cause the validation error\n // Other modifiers like '?' (optional) are fine\n (token.modifier === '*' || token.modifier === '+') &&\n // Token objects can have different shapes depending on route pattern\n 'prefix' in token &&\n 'suffix' in token &&\n // Both prefix and suffix must be empty strings\n // This is what causes the validation error in path-to-regexp\n token.prefix === '' &&\n token.suffix === ''\n ) {\n // Add minimal prefix to satisfy path-to-regexp validation\n // We use '/' as it's the most common path delimiter and won't break route matching\n // The prefix gets used in regex generation but doesn't affect parameter extraction\n return {\n ...token,\n prefix: '/',\n }\n }\n return token\n })\n}\n\n/**\n * Strips normalization separators from compiled pathname.\n * This removes separators that were inserted by normalizeAdjacentParameters\n * to satisfy path-to-regexp validation.\n *\n * Only removes separators in the specific contexts where they were inserted:\n * - After interception route markers: (.)_NEXTSEP_ -> (.)\n *\n * This targeted approach ensures we don't accidentally remove the separator\n * from legitimate user content.\n */\nexport function stripNormalizedSeparators(pathname: string): string {\n // Remove separator after interception route markers\n // Pattern: (.)_NEXTSEP_ -> (.), (..)_NEXTSEP_ -> (..), etc.\n // The separator appears after the closing paren of interception markers\n return pathname.replace(new RegExp(`\\\\)${PARAM_SEPARATOR}`, 'g'), ')')\n}\n\n/**\n * Strips normalization separators from extracted route parameters.\n * Used by both server and client code to clean up parameters after route matching.\n */\nexport function stripParameterSeparators(\n params: Record<string, any>\n): Record<string, any> {\n const cleaned: Record<string, any> = {}\n\n for (const [key, value] of Object.entries(params)) {\n if (typeof value === 'string') {\n // Remove the separator if it appears at the start of parameter values\n cleaned[key] = value.replace(new RegExp(`^${PARAM_SEPARATOR}`), '')\n } else if (Array.isArray(value)) {\n // Handle array parameters (from repeated route segments)\n cleaned[key] = value.map((item) =>\n typeof item === 'string'\n ? item.replace(new RegExp(`^${PARAM_SEPARATOR}`), '')\n : item\n )\n } else {\n cleaned[key] = value\n }\n }\n\n return cleaned\n}\n"],"names":["PARAM_SEPARATOR","hasAdjacentParameterIssues","normalizeAdjacentParameters","normalizeTokensForRegexp","stripNormalizedSeparators","stripParameterSeparators","route","test","normalized","replace","tokens","map","token","modifier","prefix","suffix","pathname","RegExp","params","cleaned","key","value","Object","entries","Array","isArray","item"],"mappings":";;;;;;;;;;;;;;;;;;IAgBaA,eAAe,EAAA;eAAfA;;IAKGC,0BAA0B,EAAA;eAA1BA;;IAuBAC,2BAA2B,EAAA;eAA3BA;;IAuBAC,wBAAwB,EAAA;eAAxBA;;IA2CAC,yBAAyB,EAAA;eAAzBA;;IAWAC,wBAAwB,EAAA;eAAxBA;;;AAzGT,MAAML,kBAAkB;AAKxB,SAASC,2BAA2BK,KAAa;IACtD,IAAI,OAAOA,UAAU,UAAU,OAAO;IAEtC,0EAA0E;IAC1E,qEAAqE;IACrE,sEAAsE;IACtE,IAAI,wBAAwBC,IAAI,CAACD,QAAQ;QACvC,OAAO;IACT;IAEA,yDAAyD;IACzD,kEAAkE;IAClE,IAAI,iDAAiDC,IAAI,CAACD,QAAQ;QAChE,OAAO;IACT;IAEA,OAAO;AACT;AAMO,SAASJ,4BAA4BI,KAAa;IACvD,IAAIE,aAAaF;IAEjB,sEAAsE;IACtEE,aAAaA,WAAWC,OAAO,CAC7B,0BACA,CAAC,EAAE,EAAET,gBAAgB,GAAG,CAAC;IAG3B,sFAAsF;IACtFQ,aAAaA,WAAWC,OAAO,CAAC,sBAAsB,CAAC,GAAG,EAAET,iBAAiB;IAE7E,OAAOQ;AACT;AAUO,SAASL,yBAAyBO,MAAe;IACtD,OAAOA,OAAOC,GAAG,CAAC,CAACC;QACjB,iDAAiD;QACjD,sEAAsE;QACtE,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,4EAA4E;QAC5E,cAAcA,SACd,+DAA+D;QAC/D,+CAA+C;QAC9CA,CAAAA,MAAMC,QAAQ,KAAK,OAAOD,MAAMC,QAAQ,KAAK,GAAE,KAChD,qEAAqE;QACrE,YAAYD,SACZ,YAAYA,SACZ,+CAA+C;QAC/C,6DAA6D;QAC7DA,MAAME,MAAM,KAAK,MACjBF,MAAMG,MAAM,KAAK,IACjB;YACA,0DAA0D;YAC1D,mFAAmF;YACnF,mFAAmF;YACnF,OAAO;gBACL,GAAGH,KAAK;gBACRE,QAAQ;YACV;QACF;QACA,OAAOF;IACT;AACF;AAaO,SAASR,0BAA0BY,QAAgB;IACxD,oDAAoD;IACpD,4DAA4D;IAC5D,wEAAwE;IACxE,OAAOA,SAASP,OAAO,CAAC,IAAIQ,OAAO,CAAC,GAAG,EAAEjB,iBAAiB,EAAE,MAAM;AACpE;AAMO,SAASK,yBACda,MAA2B;IAE3B,MAAMC,UAA+B,CAAC;IAEtC,KAAK,MAAM,CAACC,KAAKC,MAAM,IAAIC,OAAOC,OAAO,CAACL,QAAS;QACjD,IAAI,OAAOG,UAAU,UAAU;YAC7B,sEAAsE;YACtEF,OAAO,CAACC,IAAI,GAAGC,MAAMZ,OAAO,CAAC,IAAIQ,OAAO,CAAC,CAAC,EAAEjB,iBAAiB,GAAG;QAClE,OAAO,IAAIwB,MAAMC,OAAO,CAACJ,QAAQ;YAC/B,yDAAyD;YACzDF,OAAO,CAACC,IAAI,GAAGC,MAAMV,GAAG,CAAC,CAACe,OACxB,OAAOA,SAAS,WACZA,KAAKjB,OAAO,CAAC,IAAIQ,OAAO,CAAC,CAAC,EAAEjB,iBAAiB,GAAG,MAChD0B;QAER,OAAO;YACLP,OAAO,CAACC,IAAI,GAAGC;QACjB;IACF;IAEA,OAAOF;AACT","ignoreList":[0]}}, - {"offset": {"line": 2680, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/route-match-utils.ts"],"sourcesContent":["/**\n * Client-safe utilities for route matching that don't import server-side\n * utilities to avoid bundling issues with Turbopack\n */\n\nimport type {\n Key,\n TokensToRegexpOptions,\n ParseOptions,\n TokensToFunctionOptions,\n} from 'next/dist/compiled/path-to-regexp'\nimport {\n pathToRegexp,\n compile,\n regexpToFunction,\n} from 'next/dist/compiled/path-to-regexp'\nimport {\n hasAdjacentParameterIssues,\n normalizeAdjacentParameters,\n stripParameterSeparators,\n stripNormalizedSeparators,\n} from '../../../../lib/route-pattern-normalizer'\n\n/**\n * Client-safe wrapper around pathToRegexp that handles path-to-regexp 6.3.0+ validation errors.\n * This includes both \"Can not repeat without prefix/suffix\" and \"Must have text between parameters\" errors.\n */\nexport function safePathToRegexp(\n route: string | RegExp | Array<string | RegExp>,\n keys?: Key[],\n options?: TokensToRegexpOptions & ParseOptions\n): RegExp {\n if (typeof route !== 'string') {\n return pathToRegexp(route, keys, options)\n }\n\n // Check if normalization is needed and cache the result\n const needsNormalization = hasAdjacentParameterIssues(route)\n const routeToUse = needsNormalization\n ? normalizeAdjacentParameters(route)\n : route\n\n try {\n return pathToRegexp(routeToUse, keys, options)\n } catch (error) {\n // Only try normalization if we haven't already normalized\n if (!needsNormalization) {\n try {\n const normalizedRoute = normalizeAdjacentParameters(route)\n return pathToRegexp(normalizedRoute, keys, options)\n } catch (retryError) {\n // If that doesn't work, fall back to original error\n throw error\n }\n }\n throw error\n }\n}\n\n/**\n * Client-safe wrapper around compile that handles path-to-regexp 6.3.0+ validation errors.\n * No server-side error reporting to avoid bundling issues.\n * When normalization is applied, the returned compiler function automatically strips\n * the internal separator from the output URL.\n */\nexport function safeCompile(\n route: string,\n options?: TokensToFunctionOptions & ParseOptions\n) {\n // Check if normalization is needed and cache the result\n const needsNormalization = hasAdjacentParameterIssues(route)\n const routeToUse = needsNormalization\n ? normalizeAdjacentParameters(route)\n : route\n\n try {\n const compiler = compile(routeToUse, options)\n\n // If we normalized the route, wrap the compiler to strip separators from output\n // The normalization inserts _NEXTSEP_ as a literal string in the pattern to satisfy\n // path-to-regexp validation, but we don't want it in the final compiled URL\n if (needsNormalization) {\n return (params: any) => {\n return stripNormalizedSeparators(compiler(params))\n }\n }\n\n return compiler\n } catch (error) {\n // Only try normalization if we haven't already normalized\n if (!needsNormalization) {\n try {\n const normalizedRoute = normalizeAdjacentParameters(route)\n const compiler = compile(normalizedRoute, options)\n\n // Wrap the compiler to strip separators from output\n return (params: any) => {\n return stripNormalizedSeparators(compiler(params))\n }\n } catch (retryError) {\n // If that doesn't work, fall back to original error\n throw error\n }\n }\n throw error\n }\n}\n\n/**\n * Client-safe wrapper around regexpToFunction that automatically cleans parameters.\n */\nexport function safeRegexpToFunction<\n T extends Record<string, any> = Record<string, any>,\n>(regexp: RegExp, keys?: Key[]): (pathname: string) => { params: T } | false {\n const originalMatcher = regexpToFunction<T>(regexp, keys || [])\n\n return (pathname: string) => {\n const result = originalMatcher(pathname)\n if (!result) return false\n\n // Clean parameters before returning\n return {\n ...result,\n params: stripParameterSeparators(result.params as any) as T,\n }\n }\n}\n\n/**\n * Safe wrapper for route matcher functions that automatically cleans parameters.\n * This is client-safe and doesn't import path-to-regexp.\n */\nexport function safeRouteMatcher<T extends Record<string, any>>(\n matcherFn: (pathname: string) => false | T\n): (pathname: string) => false | T {\n return (pathname: string) => {\n const result = matcherFn(pathname)\n if (!result) return false\n\n // Clean parameters before returning\n return stripParameterSeparators(result) as T\n }\n}\n"],"names":["safeCompile","safePathToRegexp","safeRegexpToFunction","safeRouteMatcher","route","keys","options","pathToRegexp","needsNormalization","hasAdjacentParameterIssues","routeToUse","normalizeAdjacentParameters","error","normalizedRoute","retryError","compiler","compile","params","stripNormalizedSeparators","regexp","originalMatcher","regexpToFunction","pathname","result","stripParameterSeparators","matcherFn"],"mappings":"AAAA;;;CAGC;;;;;;;;;;;;;;;;IA8DeA,WAAW,EAAA;eAAXA;;IAtCAC,gBAAgB,EAAA;eAAhBA;;IAoFAC,oBAAoB,EAAA;eAApBA;;IAqBAC,gBAAgB,EAAA;eAAhBA;;;8BArHT;wCAMA;AAMA,SAASF,iBACdG,KAA+C,EAC/CC,IAAY,EACZC,OAA8C;IAE9C,IAAI,OAAOF,UAAU,UAAU;QAC7B,OAAOG,CAAAA,GAAAA,cAAAA,YAAY,EAACH,OAAOC,MAAMC;IACnC;IAEA,wDAAwD;IACxD,MAAME,qBAAqBC,CAAAA,GAAAA,wBAAAA,0BAA0B,EAACL;IACtD,MAAMM,aAAaF,qBACfG,CAAAA,GAAAA,wBAAAA,2BAA2B,EAACP,SAC5BA;IAEJ,IAAI;QACF,OAAOG,CAAAA,GAAAA,cAAAA,YAAY,EAACG,YAAYL,MAAMC;IACxC,EAAE,OAAOM,OAAO;QACd,0DAA0D;QAC1D,IAAI,CAACJ,oBAAoB;YACvB,IAAI;gBACF,MAAMK,kBAAkBF,CAAAA,GAAAA,wBAAAA,2BAA2B,EAACP;gBACpD,OAAOG,CAAAA,GAAAA,cAAAA,YAAY,EAACM,iBAAiBR,MAAMC;YAC7C,EAAE,OAAOQ,YAAY;gBACnB,oDAAoD;gBACpD,MAAMF;YACR;QACF;QACA,MAAMA;IACR;AACF;AAQO,SAASZ,YACdI,KAAa,EACbE,OAAgD;IAEhD,wDAAwD;IACxD,MAAME,qBAAqBC,CAAAA,GAAAA,wBAAAA,0BAA0B,EAACL;IACtD,MAAMM,aAAaF,qBACfG,CAAAA,GAAAA,wBAAAA,2BAA2B,EAACP,SAC5BA;IAEJ,IAAI;QACF,MAAMW,WAAWC,CAAAA,GAAAA,cAAAA,OAAO,EAACN,YAAYJ;QAErC,gFAAgF;QAChF,oFAAoF;QACpF,4EAA4E;QAC5E,IAAIE,oBAAoB;YACtB,OAAO,CAACS;gBACN,OAAOC,CAAAA,GAAAA,wBAAAA,yBAAyB,EAACH,SAASE;YAC5C;QACF;QAEA,OAAOF;IACT,EAAE,OAAOH,OAAO;QACd,0DAA0D;QAC1D,IAAI,CAACJ,oBAAoB;YACvB,IAAI;gBACF,MAAMK,kBAAkBF,CAAAA,GAAAA,wBAAAA,2BAA2B,EAACP;gBACpD,MAAMW,WAAWC,CAAAA,GAAAA,cAAAA,OAAO,EAACH,iBAAiBP;gBAE1C,oDAAoD;gBACpD,OAAO,CAACW;oBACN,OAAOC,CAAAA,GAAAA,wBAAAA,yBAAyB,EAACH,SAASE;gBAC5C;YACF,EAAE,OAAOH,YAAY;gBACnB,oDAAoD;gBACpD,MAAMF;YACR;QACF;QACA,MAAMA;IACR;AACF;AAKO,SAASV,qBAEdiB,MAAc,EAAEd,IAAY;IAC5B,MAAMe,kBAAkBC,CAAAA,GAAAA,cAAAA,gBAAgB,EAAIF,QAAQd,QAAQ,EAAE;IAE9D,OAAO,CAACiB;QACN,MAAMC,SAASH,gBAAgBE;QAC/B,IAAI,CAACC,QAAQ,OAAO;QAEpB,oCAAoC;QACpC,OAAO;YACL,GAAGA,MAAM;YACTN,QAAQO,CAAAA,GAAAA,wBAAAA,wBAAwB,EAACD,OAAON,MAAM;QAChD;IACF;AACF;AAMO,SAASd,iBACdsB,SAA0C;IAE1C,OAAO,CAACH;QACN,MAAMC,SAASE,UAAUH;QACzB,IAAI,CAACC,QAAQ,OAAO;QAEpB,oCAAoC;QACpC,OAAOC,CAAAA,GAAAA,wBAAAA,wBAAwB,EAACD;IAClC;AACF","ignoreList":[0]}}, - {"offset": {"line": 2794, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/route-matcher.ts"],"sourcesContent":["import type { Group } from './route-regex'\nimport { DecodeError } from '../../utils'\nimport type { Params } from '../../../../server/request/params'\nimport { safeRouteMatcher } from './route-match-utils'\n\nexport interface RouteMatchFn {\n (pathname: string): false | Params\n}\n\ntype RouteMatcherOptions = {\n // We only use the exec method of the RegExp object. This helps us avoid using\n // type assertions that the passed in properties are of the correct type.\n re: Pick<RegExp, 'exec'>\n groups: Record<string, Group>\n}\n\nexport function getRouteMatcher({\n re,\n groups,\n}: RouteMatcherOptions): RouteMatchFn {\n const rawMatcher = (pathname: string) => {\n const routeMatch = re.exec(pathname)\n if (!routeMatch) return false\n\n const decode = (param: string) => {\n try {\n return decodeURIComponent(param)\n } catch {\n throw new DecodeError('failed to decode param')\n }\n }\n\n const params: Params = {}\n for (const [key, group] of Object.entries(groups)) {\n const match = routeMatch[group.pos]\n if (match !== undefined) {\n if (group.repeat) {\n params[key] = match.split('/').map((entry) => decode(entry))\n } else {\n params[key] = decode(match)\n }\n }\n }\n\n return params\n }\n\n // Wrap with safe matcher to handle parameter cleaning\n return safeRouteMatcher(rawMatcher)\n}\n"],"names":["getRouteMatcher","re","groups","rawMatcher","pathname","routeMatch","exec","decode","param","decodeURIComponent","DecodeError","params","key","group","Object","entries","match","pos","undefined","repeat","split","map","entry","safeRouteMatcher"],"mappings":";;;+BAgBgBA,mBAAAA;;;eAAAA;;;uBAfY;iCAEK;AAa1B,SAASA,gBAAgB,EAC9BC,EAAE,EACFC,MAAM,EACc;IACpB,MAAMC,aAAa,CAACC;QAClB,MAAMC,aAAaJ,GAAGK,IAAI,CAACF;QAC3B,IAAI,CAACC,YAAY,OAAO;QAExB,MAAME,SAAS,CAACC;YACd,IAAI;gBACF,OAAOC,mBAAmBD;YAC5B,EAAE,OAAM;gBACN,MAAM,OAAA,cAAyC,CAAzC,IAAIE,OAAAA,WAAW,CAAC,2BAAhB,qBAAA;2BAAA;gCAAA;kCAAA;gBAAwC;YAChD;QACF;QAEA,MAAMC,SAAiB,CAAC;QACxB,KAAK,MAAM,CAACC,KAAKC,MAAM,IAAIC,OAAOC,OAAO,CAACb,QAAS;YACjD,MAAMc,QAAQX,UAAU,CAACQ,MAAMI,GAAG,CAAC;YACnC,IAAID,UAAUE,WAAW;gBACvB,IAAIL,MAAMM,MAAM,EAAE;oBAChBR,MAAM,CAACC,IAAI,GAAGI,MAAMI,KAAK,CAAC,KAAKC,GAAG,CAAC,CAACC,QAAUf,OAAOe;gBACvD,OAAO;oBACLX,MAAM,CAACC,IAAI,GAAGL,OAAOS;gBACvB;YACF;QACF;QAEA,OAAOL;IACT;IAEA,sDAAsD;IACtD,OAAOY,CAAAA,GAAAA,iBAAAA,gBAAgB,EAACpB;AAC1B","ignoreList":[0]}}, - {"offset": {"line": 2840, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/querystring.ts"],"sourcesContent":["import type { ParsedUrlQuery } from 'querystring'\n\nexport function searchParamsToUrlQuery(\n searchParams: URLSearchParams\n): ParsedUrlQuery {\n const query: ParsedUrlQuery = {}\n for (const [key, value] of searchParams.entries()) {\n const existing = query[key]\n if (typeof existing === 'undefined') {\n query[key] = value\n } else if (Array.isArray(existing)) {\n existing.push(value)\n } else {\n query[key] = [existing, value]\n }\n }\n return query\n}\n\nfunction stringifyUrlQueryParam(param: unknown): string {\n if (typeof param === 'string') {\n return param\n }\n\n if (\n (typeof param === 'number' && !isNaN(param)) ||\n typeof param === 'boolean'\n ) {\n return String(param)\n } else {\n return ''\n }\n}\n\nexport function urlQueryToSearchParams(query: ParsedUrlQuery): URLSearchParams {\n const searchParams = new URLSearchParams()\n for (const [key, value] of Object.entries(query)) {\n if (Array.isArray(value)) {\n for (const item of value) {\n searchParams.append(key, stringifyUrlQueryParam(item))\n }\n } else {\n searchParams.set(key, stringifyUrlQueryParam(value))\n }\n }\n return searchParams\n}\n\nexport function assign(\n target: URLSearchParams,\n ...searchParamsList: URLSearchParams[]\n): URLSearchParams {\n for (const searchParams of searchParamsList) {\n for (const key of searchParams.keys()) {\n target.delete(key)\n }\n\n for (const [key, value] of searchParams.entries()) {\n target.append(key, value)\n }\n }\n\n return target\n}\n"],"names":["assign","searchParamsToUrlQuery","urlQueryToSearchParams","searchParams","query","key","value","entries","existing","Array","isArray","push","stringifyUrlQueryParam","param","isNaN","String","URLSearchParams","Object","item","append","set","target","searchParamsList","keys","delete"],"mappings":";;;;;;;;;;;;;;;IAgDgBA,MAAM,EAAA;eAANA;;IA9CAC,sBAAsB,EAAA;eAAtBA;;IAgCAC,sBAAsB,EAAA;eAAtBA;;;AAhCT,SAASD,uBACdE,YAA6B;IAE7B,MAAMC,QAAwB,CAAC;IAC/B,KAAK,MAAM,CAACC,KAAKC,MAAM,IAAIH,aAAaI,OAAO,GAAI;QACjD,MAAMC,WAAWJ,KAAK,CAACC,IAAI;QAC3B,IAAI,OAAOG,aAAa,aAAa;YACnCJ,KAAK,CAACC,IAAI,GAAGC;QACf,OAAO,IAAIG,MAAMC,OAAO,CAACF,WAAW;YAClCA,SAASG,IAAI,CAACL;QAChB,OAAO;YACLF,KAAK,CAACC,IAAI,GAAG;gBAACG;gBAAUF;aAAM;QAChC;IACF;IACA,OAAOF;AACT;AAEA,SAASQ,uBAAuBC,KAAc;IAC5C,IAAI,OAAOA,UAAU,UAAU;QAC7B,OAAOA;IACT;IAEA,IACG,OAAOA,UAAU,YAAY,CAACC,MAAMD,UACrC,OAAOA,UAAU,WACjB;QACA,OAAOE,OAAOF;IAChB,OAAO;QACL,OAAO;IACT;AACF;AAEO,SAASX,uBAAuBE,KAAqB;IAC1D,MAAMD,eAAe,IAAIa;IACzB,KAAK,MAAM,CAACX,KAAKC,MAAM,IAAIW,OAAOV,OAAO,CAACH,OAAQ;QAChD,IAAIK,MAAMC,OAAO,CAACJ,QAAQ;YACxB,KAAK,MAAMY,QAAQZ,MAAO;gBACxBH,aAAagB,MAAM,CAACd,KAAKO,uBAAuBM;YAClD;QACF,OAAO;YACLf,aAAaiB,GAAG,CAACf,KAAKO,uBAAuBN;QAC/C;IACF;IACA,OAAOH;AACT;AAEO,SAASH,OACdqB,MAAuB,EACvB,GAAGC,gBAAmC;IAEtC,KAAK,MAAMnB,gBAAgBmB,iBAAkB;QAC3C,KAAK,MAAMjB,OAAOF,aAAaoB,IAAI,GAAI;YACrCF,OAAOG,MAAM,CAACnB;QAChB;QAEA,KAAK,MAAM,CAACA,KAAKC,MAAM,IAAIH,aAAaI,OAAO,GAAI;YACjDc,OAAOF,MAAM,CAACd,KAAKC;QACrB;IACF;IAEA,OAAOe;AACT","ignoreList":[0]}}, - {"offset": {"line": 2920, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-relative-url.ts"],"sourcesContent":["import type { ParsedUrlQuery } from 'querystring'\nimport { getLocationOrigin } from '../../utils'\nimport { searchParamsToUrlQuery } from './querystring'\n\nexport interface ParsedRelativeUrl {\n hash: string\n href: string\n pathname: string\n query: ParsedUrlQuery\n search: string\n slashes: undefined\n}\n\n/**\n * Parses path-relative urls (e.g. `/hello/world?foo=bar`). If url isn't path-relative\n * (e.g. `./hello`) then at least base must be.\n * Absolute urls are rejected with one exception, in the browser, absolute urls that are on\n * the current origin will be parsed as relative\n */\nexport function parseRelativeUrl(\n url: string,\n base?: string,\n parseQuery?: true\n): ParsedRelativeUrl\nexport function parseRelativeUrl(\n url: string,\n base: string | undefined,\n parseQuery: false\n): Omit<ParsedRelativeUrl, 'query'>\nexport function parseRelativeUrl(\n url: string,\n base?: string,\n parseQuery = true\n): ParsedRelativeUrl | Omit<ParsedRelativeUrl, 'query'> {\n const globalBase = new URL(\n typeof window === 'undefined' ? 'http://n' : getLocationOrigin()\n )\n\n const resolvedBase = base\n ? new URL(base, globalBase)\n : url.startsWith('.')\n ? new URL(\n typeof window === 'undefined' ? 'http://n' : window.location.href\n )\n : globalBase\n\n const { pathname, searchParams, search, hash, href, origin } = new URL(\n url,\n resolvedBase\n )\n\n if (origin !== globalBase.origin) {\n throw new Error(`invariant: invalid relative URL, router received ${url}`)\n }\n\n return {\n pathname,\n query: parseQuery ? searchParamsToUrlQuery(searchParams) : undefined,\n search,\n hash,\n href: href.slice(origin.length),\n // We don't know for relative URLs at this point since we set a custom, internal\n // base that isn't surfaced to users.\n slashes: undefined,\n }\n}\n"],"names":["parseRelativeUrl","url","base","parseQuery","globalBase","URL","window","getLocationOrigin","resolvedBase","startsWith","location","href","pathname","searchParams","search","hash","origin","Error","query","searchParamsToUrlQuery","undefined","slice","length","slashes"],"mappings":";;;+BA6BgBA,oBAAAA;;;eAAAA;;;uBA5BkB;6BACK;AA2BhC,SAASA,iBACdC,GAAW,EACXC,IAAa,EACbC,aAAa,IAAI;IAEjB,MAAMC,aAAa,IAAIC,IACrB,OAAOC,WAAW,qBAAc,aAAaC,IAAAA,wBAAiB;IAGhE,MAAMC,eAAeN,OACjB,IAAIG,IAAIH,MAAME,cACdH,IAAIQ,UAAU,CAAC,OACb,IAAIJ,IACF,OAAOC,WAAW,qBAAc,aAAaA,OAAOI,QAAQ,CAACC,IAAI,OAEnEP;IAEN,MAAM,EAAEQ,QAAQ,EAAEC,YAAY,EAAEC,MAAM,EAAEC,IAAI,EAAEJ,IAAI,EAAEK,MAAM,EAAE,GAAG,IAAIX,IACjEJ,KACAO;IAGF,IAAIQ,WAAWZ,WAAWY,MAAM,EAAE;QAChC,MAAM,OAAA,cAAoE,CAApE,IAAIC,MAAM,CAAC,iDAAiD,EAAEhB,KAAK,GAAnE,qBAAA;mBAAA;wBAAA;0BAAA;QAAmE;IAC3E;IAEA,OAAO;QACLW;QACAM,OAAOf,aAAagB,CAAAA,GAAAA,aAAAA,sBAAsB,EAACN,gBAAgBO;QAC3DN;QACAC;QACAJ,MAAMA,KAAKU,KAAK,CAACL,OAAOM,MAAM;QAC9B,gFAAgF;QAChF,qCAAqC;QACrCC,SAASH;IACX;AACF","ignoreList":[0]}}, - {"offset": {"line": 2957, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-url.ts"],"sourcesContent":["import type { ParsedUrlQuery } from 'querystring'\n\nimport { searchParamsToUrlQuery } from './querystring'\nimport { parseRelativeUrl } from './parse-relative-url'\n\nexport interface ParsedUrl {\n hash: string\n hostname?: string | null\n href: string\n pathname: string\n port?: string | null\n protocol?: string | null\n query: ParsedUrlQuery\n origin?: string | null\n search: string\n slashes: boolean | undefined\n}\n\nexport function parseUrl(url: string): ParsedUrl {\n if (url.startsWith('/')) {\n return parseRelativeUrl(url)\n }\n\n const parsedURL = new URL(url)\n return {\n hash: parsedURL.hash,\n hostname: parsedURL.hostname,\n href: parsedURL.href,\n pathname: parsedURL.pathname,\n port: parsedURL.port,\n protocol: parsedURL.protocol,\n query: searchParamsToUrlQuery(parsedURL.searchParams),\n search: parsedURL.search,\n origin: parsedURL.origin,\n slashes:\n parsedURL.href.slice(\n parsedURL.protocol.length,\n parsedURL.protocol.length + 2\n ) === '//',\n }\n}\n"],"names":["parseUrl","url","startsWith","parseRelativeUrl","parsedURL","URL","hash","hostname","href","pathname","port","protocol","query","searchParamsToUrlQuery","searchParams","search","origin","slashes","slice","length"],"mappings":";;;+BAkBgBA,YAAAA;;;eAAAA;;;6BAhBuB;kCACN;AAe1B,SAASA,SAASC,GAAW;IAClC,IAAIA,IAAIC,UAAU,CAAC,MAAM;QACvB,OAAOC,CAAAA,GAAAA,kBAAAA,gBAAgB,EAACF;IAC1B;IAEA,MAAMG,YAAY,IAAIC,IAAIJ;IAC1B,OAAO;QACLK,MAAMF,UAAUE,IAAI;QACpBC,UAAUH,UAAUG,QAAQ;QAC5BC,MAAMJ,UAAUI,IAAI;QACpBC,UAAUL,UAAUK,QAAQ;QAC5BC,MAAMN,UAAUM,IAAI;QACpBC,UAAUP,UAAUO,QAAQ;QAC5BC,OAAOC,CAAAA,GAAAA,aAAAA,sBAAsB,EAACT,UAAUU,YAAY;QACpDC,QAAQX,UAAUW,MAAM;QACxBC,QAAQZ,UAAUY,MAAM;QACxBC,SACEb,UAAUI,IAAI,CAACU,KAAK,CAClBd,UAAUO,QAAQ,CAACQ,MAAM,EACzBf,UAAUO,QAAQ,CAACQ,MAAM,GAAG,OACxB;IACV;AACF","ignoreList":[0]}}, - {"offset": {"line": 2989, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/cookie/index.js"],"sourcesContent":["(()=>{\"use strict\";if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var e={};(()=>{var r=e;\n/*!\n * cookie\n * Copyright(c) 2012-2014 Roman Shtylman\n * Copyright(c) 2015 Douglas Christopher Wilson\n * MIT Licensed\n */r.parse=parse;r.serialize=serialize;var i=decodeURIComponent;var t=encodeURIComponent;var a=/; */;var n=/^[\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+$/;function parse(e,r){if(typeof e!==\"string\"){throw new TypeError(\"argument str must be a string\")}var t={};var n=r||{};var o=e.split(a);var s=n.decode||i;for(var p=0;p<o.length;p++){var f=o[p];var u=f.indexOf(\"=\");if(u<0){continue}var v=f.substr(0,u).trim();var c=f.substr(++u,f.length).trim();if('\"'==c[0]){c=c.slice(1,-1)}if(undefined==t[v]){t[v]=tryDecode(c,s)}}return t}function serialize(e,r,i){var a=i||{};var o=a.encode||t;if(typeof o!==\"function\"){throw new TypeError(\"option encode is invalid\")}if(!n.test(e)){throw new TypeError(\"argument name is invalid\")}var s=o(r);if(s&&!n.test(s)){throw new TypeError(\"argument val is invalid\")}var p=e+\"=\"+s;if(null!=a.maxAge){var f=a.maxAge-0;if(isNaN(f)||!isFinite(f)){throw new TypeError(\"option maxAge is invalid\")}p+=\"; Max-Age=\"+Math.floor(f)}if(a.domain){if(!n.test(a.domain)){throw new TypeError(\"option domain is invalid\")}p+=\"; Domain=\"+a.domain}if(a.path){if(!n.test(a.path)){throw new TypeError(\"option path is invalid\")}p+=\"; Path=\"+a.path}if(a.expires){if(typeof a.expires.toUTCString!==\"function\"){throw new TypeError(\"option expires is invalid\")}p+=\"; Expires=\"+a.expires.toUTCString()}if(a.httpOnly){p+=\"; HttpOnly\"}if(a.secure){p+=\"; Secure\"}if(a.sameSite){var u=typeof a.sameSite===\"string\"?a.sameSite.toLowerCase():a.sameSite;switch(u){case true:p+=\"; SameSite=Strict\";break;case\"lax\":p+=\"; SameSite=Lax\";break;case\"strict\":p+=\"; SameSite=Strict\";break;case\"none\":p+=\"; SameSite=None\";break;default:throw new TypeError(\"option sameSite is invalid\")}}return p}function tryDecode(e,r){try{return r(e)}catch(r){return e}}})();module.exports=e})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3111, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/api-utils/get-cookie-parser.ts"],"sourcesContent":["import type { NextApiRequestCookies } from '.'\n\n/**\n * Parse cookies from the `headers` of request\n * @param req request object\n */\n\nexport function getCookieParser(headers: {\n [key: string]: string | string[] | null | undefined\n}): () => NextApiRequestCookies {\n return function parseCookie(): NextApiRequestCookies {\n const { cookie } = headers\n\n if (!cookie) {\n return {}\n }\n\n const { parse: parseCookieFn } =\n require('next/dist/compiled/cookie') as typeof import('next/dist/compiled/cookie')\n return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie)\n }\n}\n"],"names":["getCookieParser","headers","parseCookie","cookie","parse","parseCookieFn","require","Array","isArray","join"],"mappings":";;;+BAOgBA,mBAAAA;;;eAAAA;;;AAAT,SAASA,gBAAgBC,OAE/B;IACC,OAAO,SAASC;QACd,MAAM,EAAEC,MAAM,EAAE,GAAGF;QAEnB,IAAI,CAACE,QAAQ;YACX,OAAO,CAAC;QACV;QAEA,MAAM,EAAEC,OAAOC,aAAa,EAAE,GAC5BC,QAAQ;QACV,OAAOD,cAAcE,MAAMC,OAAO,CAACL,UAAUA,OAAOM,IAAI,CAAC,QAAQN;IACnE;AACF","ignoreList":[0]}}, - {"offset": {"line": 3134, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/prepare-destination.ts"],"sourcesContent":["import type { IncomingMessage } from 'http'\nimport type { Key } from 'next/dist/compiled/path-to-regexp'\nimport type { NextParsedUrlQuery } from '../../../../server/request-meta'\nimport type { RouteHas } from '../../../../lib/load-custom-routes'\nimport type { BaseNextRequest } from '../../../../server/base-http'\n\nimport { escapeStringRegexp } from '../../escape-regexp'\nimport { parseUrl } from './parse-url'\nimport {\n INTERCEPTION_ROUTE_MARKERS,\n isInterceptionRouteAppPath,\n} from './interception-routes'\nimport { getCookieParser } from '../../../../server/api-utils/get-cookie-parser'\nimport type { Params } from '../../../../server/request/params'\nimport { safePathToRegexp, safeCompile } from './route-match-utils'\n\n/**\n * Ensure only a-zA-Z are used for param names for proper interpolating\n * with path-to-regexp\n */\nfunction getSafeParamName(paramName: string) {\n let newParamName = ''\n\n for (let i = 0; i < paramName.length; i++) {\n const charCode = paramName.charCodeAt(i)\n\n if (\n (charCode > 64 && charCode < 91) || // A-Z\n (charCode > 96 && charCode < 123) // a-z\n ) {\n newParamName += paramName[i]\n }\n }\n return newParamName\n}\n\nfunction escapeSegment(str: string, segmentName: string) {\n return str.replace(\n new RegExp(`:${escapeStringRegexp(segmentName)}`, 'g'),\n `__ESC_COLON_${segmentName}`\n )\n}\n\nfunction unescapeSegments(str: string) {\n return str.replace(/__ESC_COLON_/gi, ':')\n}\n\nexport function matchHas(\n req: BaseNextRequest | IncomingMessage,\n query: Params,\n has: RouteHas[] = [],\n missing: RouteHas[] = []\n): false | Params {\n const params: Params = {}\n\n const hasMatch = (hasItem: RouteHas) => {\n let value\n let key = hasItem.key\n\n switch (hasItem.type) {\n case 'header': {\n key = key!.toLowerCase()\n value = req.headers[key] as string\n break\n }\n case 'cookie': {\n if ('cookies' in req) {\n value = req.cookies[hasItem.key]\n } else {\n const cookies = getCookieParser(req.headers)()\n value = cookies[hasItem.key]\n }\n\n break\n }\n case 'query': {\n value = query[key!]\n break\n }\n case 'host': {\n const { host } = req?.headers || {}\n // remove port from host if present\n const hostname = host?.split(':', 1)[0].toLowerCase()\n value = hostname\n break\n }\n default: {\n break\n }\n }\n\n if (!hasItem.value && value) {\n params[getSafeParamName(key!)] = value\n return true\n } else if (value) {\n const matcher = new RegExp(`^${hasItem.value}$`)\n const matches = Array.isArray(value)\n ? value.slice(-1)[0].match(matcher)\n : value.match(matcher)\n\n if (matches) {\n if (Array.isArray(matches)) {\n if (matches.groups) {\n Object.keys(matches.groups).forEach((groupKey) => {\n params[groupKey] = matches.groups![groupKey]\n })\n } else if (hasItem.type === 'host' && matches[0]) {\n params.host = matches[0]\n }\n }\n return true\n }\n }\n return false\n }\n\n const allMatch =\n has.every((item) => hasMatch(item)) &&\n !missing.some((item) => hasMatch(item))\n\n if (allMatch) {\n return params\n }\n return false\n}\n\nexport function compileNonPath(value: string, params: Params): string {\n if (!value.includes(':')) {\n return value\n }\n\n for (const key of Object.keys(params)) {\n if (value.includes(`:${key}`)) {\n value = value\n .replace(\n new RegExp(`:${key}\\\\*`, 'g'),\n `:${key}--ESCAPED_PARAM_ASTERISKS`\n )\n .replace(\n new RegExp(`:${key}\\\\?`, 'g'),\n `:${key}--ESCAPED_PARAM_QUESTION`\n )\n .replace(new RegExp(`:${key}\\\\+`, 'g'), `:${key}--ESCAPED_PARAM_PLUS`)\n .replace(\n new RegExp(`:${key}(?!\\\\w)`, 'g'),\n `--ESCAPED_PARAM_COLON${key}`\n )\n }\n }\n value = value\n .replace(/(:|\\*|\\?|\\+|\\(|\\)|\\{|\\})/g, '\\\\$1')\n .replace(/--ESCAPED_PARAM_PLUS/g, '+')\n .replace(/--ESCAPED_PARAM_COLON/g, ':')\n .replace(/--ESCAPED_PARAM_QUESTION/g, '?')\n .replace(/--ESCAPED_PARAM_ASTERISKS/g, '*')\n\n // the value needs to start with a forward-slash to be compiled\n // correctly\n return safeCompile(`/${value}`, { validate: false })(params).slice(1)\n}\n\nexport function parseDestination(args: {\n destination: string\n params: Readonly<Params>\n query: Readonly<NextParsedUrlQuery>\n}) {\n let escaped = args.destination\n for (const param of Object.keys({ ...args.params, ...args.query })) {\n if (!param) continue\n\n escaped = escapeSegment(escaped, param)\n }\n\n const parsed = parseUrl(escaped)\n\n let pathname = parsed.pathname\n if (pathname) {\n pathname = unescapeSegments(pathname)\n }\n\n let href = parsed.href\n if (href) {\n href = unescapeSegments(href)\n }\n\n let hostname = parsed.hostname\n if (hostname) {\n hostname = unescapeSegments(hostname)\n }\n\n let hash = parsed.hash\n if (hash) {\n hash = unescapeSegments(hash)\n }\n\n let search = parsed.search\n if (search) {\n search = unescapeSegments(search)\n }\n\n let origin = parsed.origin\n if (origin) {\n origin = unescapeSegments(origin)\n }\n\n return {\n ...parsed,\n pathname,\n hostname,\n href,\n hash,\n search,\n origin,\n }\n}\n\nexport function prepareDestination(args: {\n appendParamsToQuery: boolean\n destination: string\n params: Params\n query: NextParsedUrlQuery\n}) {\n const parsedDestination = parseDestination(args)\n\n const {\n hostname: destHostname,\n query: destQuery,\n search: destSearch,\n } = parsedDestination\n\n // The following code assumes that the pathname here includes the hash if it's\n // present.\n let destPath = parsedDestination.pathname\n if (parsedDestination.hash) {\n destPath = `${destPath}${parsedDestination.hash}`\n }\n\n const destParams: (string | number)[] = []\n\n const destPathParamKeys: Key[] = []\n safePathToRegexp(destPath, destPathParamKeys)\n for (const key of destPathParamKeys) {\n destParams.push(key.name)\n }\n\n if (destHostname) {\n const destHostnameParamKeys: Key[] = []\n safePathToRegexp(destHostname, destHostnameParamKeys)\n for (const key of destHostnameParamKeys) {\n destParams.push(key.name)\n }\n }\n\n const destPathCompiler = safeCompile(\n destPath,\n // we don't validate while compiling the destination since we should\n // have already validated before we got to this point and validating\n // breaks compiling destinations with named pattern params from the source\n // e.g. /something:hello(.*) -> /another/:hello is broken with validation\n // since compile validation is meant for reversing and not for inserting\n // params from a separate path-regex into another\n { validate: false }\n )\n\n let destHostnameCompiler\n if (destHostname) {\n destHostnameCompiler = safeCompile(destHostname, { validate: false })\n }\n\n // update any params in query values\n for (const [key, strOrArray] of Object.entries(destQuery)) {\n // the value needs to start with a forward-slash to be compiled\n // correctly\n if (Array.isArray(strOrArray)) {\n destQuery[key] = strOrArray.map((value) =>\n compileNonPath(unescapeSegments(value), args.params)\n )\n } else if (typeof strOrArray === 'string') {\n destQuery[key] = compileNonPath(unescapeSegments(strOrArray), args.params)\n }\n }\n\n // add path params to query if it's not a redirect and not\n // already defined in destination query or path\n let paramKeys = Object.keys(args.params).filter(\n (name) => name !== 'nextInternalLocale'\n )\n\n if (\n args.appendParamsToQuery &&\n !paramKeys.some((key) => destParams.includes(key))\n ) {\n for (const key of paramKeys) {\n if (!(key in destQuery)) {\n destQuery[key] = args.params[key]\n }\n }\n }\n\n let newUrl\n\n // The compiler also that the interception route marker is an unnamed param, hence '0',\n // so we need to add it to the params object.\n if (isInterceptionRouteAppPath(destPath)) {\n for (const segment of destPath.split('/')) {\n const marker = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n if (marker) {\n if (marker === '(..)(..)') {\n args.params['0'] = '(..)'\n args.params['1'] = '(..)'\n } else {\n args.params['0'] = marker\n }\n break\n }\n }\n }\n\n try {\n newUrl = destPathCompiler(args.params)\n\n const [pathname, hash] = newUrl.split('#', 2)\n if (destHostnameCompiler) {\n parsedDestination.hostname = destHostnameCompiler(args.params)\n }\n parsedDestination.pathname = pathname\n parsedDestination.hash = `${hash ? '#' : ''}${hash || ''}`\n parsedDestination.search = destSearch\n ? compileNonPath(destSearch, args.params)\n : ''\n } catch (err: any) {\n if (err.message.match(/Expected .*? to not repeat, but got an array/)) {\n throw new Error(\n `To use a multi-match in the destination you must add \\`*\\` at the end of the param name to signify it should repeat. https://nextjs.org/docs/messages/invalid-multi-match`\n )\n }\n throw err\n }\n\n // Query merge order lowest priority to highest\n // 1. initial URL query values\n // 2. path segment values\n // 3. destination specified query values\n parsedDestination.query = {\n ...args.query,\n ...parsedDestination.query,\n }\n\n return {\n newUrl,\n destQuery,\n parsedDestination,\n }\n}\n"],"names":["compileNonPath","matchHas","parseDestination","prepareDestination","getSafeParamName","paramName","newParamName","i","length","charCode","charCodeAt","escapeSegment","str","segmentName","replace","RegExp","escapeStringRegexp","unescapeSegments","req","query","has","missing","params","hasMatch","hasItem","value","key","type","toLowerCase","headers","cookies","getCookieParser","host","hostname","split","matcher","matches","Array","isArray","slice","match","groups","Object","keys","forEach","groupKey","allMatch","every","item","some","includes","safeCompile","validate","args","escaped","destination","param","parsed","parseUrl","pathname","href","hash","search","origin","parsedDestination","destHostname","destQuery","destSearch","destPath","destParams","destPathParamKeys","safePathToRegexp","push","name","destHostnameParamKeys","destPathCompiler","destHostnameCompiler","strOrArray","entries","map","paramKeys","filter","appendParamsToQuery","newUrl","isInterceptionRouteAppPath","segment","marker","INTERCEPTION_ROUTE_MARKERS","find","m","startsWith","err","message","Error"],"mappings":";;;;;;;;;;;;;;;;IA8HgBA,cAAc,EAAA;eAAdA;;IA/EAC,QAAQ,EAAA;eAARA;;IAkHAC,gBAAgB,EAAA;eAAhBA;;IAuDAC,kBAAkB,EAAA;eAAlBA;;;8BAlNmB;0BACV;oCAIlB;iCACyB;iCAEc;AAE9C;;;CAGC,GACD,SAASC,iBAAiBC,SAAiB;IACzC,IAAIC,eAAe;IAEnB,IAAK,IAAIC,IAAI,GAAGA,IAAIF,UAAUG,MAAM,EAAED,IAAK;QACzC,MAAME,WAAWJ,UAAUK,UAAU,CAACH;QAEtC,IACGE,WAAW,MAAMA,WAAW,MAAO,MAAM;QACzCA,WAAW,MAAMA,WAAW,IAAK,MAAM;UACxC;YACAH,gBAAgBD,SAAS,CAACE,EAAE;QAC9B;IACF;IACA,OAAOD;AACT;AAEA,SAASK,cAAcC,GAAW,EAAEC,WAAmB;IACrD,OAAOD,IAAIE,OAAO,CAChB,IAAIC,OAAO,CAAC,CAAC,EAAEC,CAAAA,GAAAA,cAAAA,kBAAkB,EAACH,cAAc,EAAE,MAClD,CAAC,YAAY,EAAEA,aAAa;AAEhC;AAEA,SAASI,iBAAiBL,GAAW;IACnC,OAAOA,IAAIE,OAAO,CAAC,kBAAkB;AACvC;AAEO,SAASb,SACdiB,GAAsC,EACtCC,KAAa,EACbC,MAAkB,EAAE,EACpBC,UAAsB,EAAE;IAExB,MAAMC,SAAiB,CAAC;IAExB,MAAMC,WAAW,CAACC;QAChB,IAAIC;QACJ,IAAIC,MAAMF,QAAQE,GAAG;QAErB,OAAQF,QAAQG,IAAI;YAClB,KAAK;gBAAU;oBACbD,MAAMA,IAAKE,WAAW;oBACtBH,QAAQP,IAAIW,OAAO,CAACH,IAAI;oBACxB;gBACF;YACA,KAAK;gBAAU;oBACb,IAAI,aAAaR,KAAK;wBACpBO,QAAQP,IAAIY,OAAO,CAACN,QAAQE,GAAG,CAAC;oBAClC,OAAO;wBACL,MAAMI,UAAUC,CAAAA,GAAAA,iBAAAA,eAAe,EAACb,IAAIW,OAAO;wBAC3CJ,QAAQK,OAAO,CAACN,QAAQE,GAAG,CAAC;oBAC9B;oBAEA;gBACF;YACA,KAAK;gBAAS;oBACZD,QAAQN,KAAK,CAACO,IAAK;oBACnB;gBACF;YACA,KAAK;gBAAQ;oBACX,MAAM,EAAEM,IAAI,EAAE,GAAGd,KAAKW,WAAW,CAAC;oBAClC,mCAAmC;oBACnC,MAAMI,WAAWD,MAAME,MAAM,KAAK,EAAE,CAAC,EAAE,CAACN;oBACxCH,QAAQQ;oBACR;gBACF;YACA;gBAAS;oBACP;gBACF;QACF;QAEA,IAAI,CAACT,QAAQC,KAAK,IAAIA,OAAO;YAC3BH,MAAM,CAAClB,iBAAiBsB,KAAM,GAAGD;YACjC,OAAO;QACT,OAAO,IAAIA,OAAO;YAChB,MAAMU,UAAU,IAAIpB,OAAO,CAAC,CAAC,EAAES,QAAQC,KAAK,CAAC,CAAC,CAAC;YAC/C,MAAMW,UAAUC,MAAMC,OAAO,CAACb,SAC1BA,MAAMc,KAAK,CAAC,CAAC,EAAE,CAAC,EAAE,CAACC,KAAK,CAACL,WACzBV,MAAMe,KAAK,CAACL;YAEhB,IAAIC,SAAS;gBACX,IAAIC,MAAMC,OAAO,CAACF,UAAU;oBAC1B,IAAIA,QAAQK,MAAM,EAAE;wBAClBC,OAAOC,IAAI,CAACP,QAAQK,MAAM,EAAEG,OAAO,CAAC,CAACC;4BACnCvB,MAAM,CAACuB,SAAS,GAAGT,QAAQK,MAAO,CAACI,SAAS;wBAC9C;oBACF,OAAO,IAAIrB,QAAQG,IAAI,KAAK,UAAUS,OAAO,CAAC,EAAE,EAAE;wBAChDd,OAAOU,IAAI,GAAGI,OAAO,CAAC,EAAE;oBAC1B;gBACF;gBACA,OAAO;YACT;QACF;QACA,OAAO;IACT;IAEA,MAAMU,WACJ1B,IAAI2B,KAAK,CAAC,CAACC,OAASzB,SAASyB,UAC7B,CAAC3B,QAAQ4B,IAAI,CAAC,CAACD,OAASzB,SAASyB;IAEnC,IAAIF,UAAU;QACZ,OAAOxB;IACT;IACA,OAAO;AACT;AAEO,SAAStB,eAAeyB,KAAa,EAAEH,MAAc;IAC1D,IAAI,CAACG,MAAMyB,QAAQ,CAAC,MAAM;QACxB,OAAOzB;IACT;IAEA,KAAK,MAAMC,OAAOgB,OAAOC,IAAI,CAACrB,QAAS;QACrC,IAAIG,MAAMyB,QAAQ,CAAC,CAAC,CAAC,EAAExB,KAAK,GAAG;YAC7BD,QAAQA,MACLX,OAAO,CACN,IAAIC,OAAO,CAAC,CAAC,EAAEW,IAAI,GAAG,CAAC,EAAE,MACzB,CAAC,CAAC,EAAEA,IAAI,yBAAyB,CAAC,EAEnCZ,OAAO,CACN,IAAIC,OAAO,CAAC,CAAC,EAAEW,IAAI,GAAG,CAAC,EAAE,MACzB,CAAC,CAAC,EAAEA,IAAI,wBAAwB,CAAC,EAElCZ,OAAO,CAAC,IAAIC,OAAO,CAAC,CAAC,EAAEW,IAAI,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC,EAAEA,IAAI,oBAAoB,CAAC,EACpEZ,OAAO,CACN,IAAIC,OAAO,CAAC,CAAC,EAAEW,IAAI,OAAO,CAAC,EAAE,MAC7B,CAAC,qBAAqB,EAAEA,KAAK;QAEnC;IACF;IACAD,QAAQA,MACLX,OAAO,CAAC,6BAA6B,QACrCA,OAAO,CAAC,yBAAyB,KACjCA,OAAO,CAAC,0BAA0B,KAClCA,OAAO,CAAC,6BAA6B,KACrCA,OAAO,CAAC,8BAA8B;IAEzC,+DAA+D;IAC/D,YAAY;IACZ,OAAOqC,CAAAA,GAAAA,iBAAAA,WAAW,EAAC,CAAC,CAAC,EAAE1B,OAAO,EAAE;QAAE2B,UAAU;IAAM,GAAG9B,QAAQiB,KAAK,CAAC;AACrE;AAEO,SAASrC,iBAAiBmD,IAIhC;IACC,IAAIC,UAAUD,KAAKE,WAAW;IAC9B,KAAK,MAAMC,SAASd,OAAOC,IAAI,CAAC;QAAE,GAAGU,KAAK/B,MAAM;QAAE,GAAG+B,KAAKlC,KAAK;IAAC,GAAI;QAClE,IAAI,CAACqC,OAAO;QAEZF,UAAU3C,cAAc2C,SAASE;IACnC;IAEA,MAAMC,SAASC,CAAAA,GAAAA,UAAAA,QAAQ,EAACJ;IAExB,IAAIK,WAAWF,OAAOE,QAAQ;IAC9B,IAAIA,UAAU;QACZA,WAAW1C,iBAAiB0C;IAC9B;IAEA,IAAIC,OAAOH,OAAOG,IAAI;IACtB,IAAIA,MAAM;QACRA,OAAO3C,iBAAiB2C;IAC1B;IAEA,IAAI3B,WAAWwB,OAAOxB,QAAQ;IAC9B,IAAIA,UAAU;QACZA,WAAWhB,iBAAiBgB;IAC9B;IAEA,IAAI4B,OAAOJ,OAAOI,IAAI;IACtB,IAAIA,MAAM;QACRA,OAAO5C,iBAAiB4C;IAC1B;IAEA,IAAIC,SAASL,OAAOK,MAAM;IAC1B,IAAIA,QAAQ;QACVA,SAAS7C,iBAAiB6C;IAC5B;IAEA,IAAIC,SAASN,OAAOM,MAAM;IAC1B,IAAIA,QAAQ;QACVA,SAAS9C,iBAAiB8C;IAC5B;IAEA,OAAO;QACL,GAAGN,MAAM;QACTE;QACA1B;QACA2B;QACAC;QACAC;QACAC;IACF;AACF;AAEO,SAAS5D,mBAAmBkD,IAKlC;IACC,MAAMW,oBAAoB9D,iBAAiBmD;IAE3C,MAAM,EACJpB,UAAUgC,YAAY,EACtB9C,OAAO+C,SAAS,EAChBJ,QAAQK,UAAU,EACnB,GAAGH;IAEJ,8EAA8E;IAC9E,WAAW;IACX,IAAII,WAAWJ,kBAAkBL,QAAQ;IACzC,IAAIK,kBAAkBH,IAAI,EAAE;QAC1BO,WAAW,GAAGA,WAAWJ,kBAAkBH,IAAI,EAAE;IACnD;IAEA,MAAMQ,aAAkC,EAAE;IAE1C,MAAMC,oBAA2B,EAAE;IACnCC,CAAAA,GAAAA,iBAAAA,gBAAgB,EAACH,UAAUE;IAC3B,KAAK,MAAM5C,OAAO4C,kBAAmB;QACnCD,WAAWG,IAAI,CAAC9C,IAAI+C,IAAI;IAC1B;IAEA,IAAIR,cAAc;QAChB,MAAMS,wBAA+B,EAAE;QACvCH,CAAAA,GAAAA,iBAAAA,gBAAgB,EAACN,cAAcS;QAC/B,KAAK,MAAMhD,OAAOgD,sBAAuB;YACvCL,WAAWG,IAAI,CAAC9C,IAAI+C,IAAI;QAC1B;IACF;IAEA,MAAME,mBAAmBxB,CAAAA,GAAAA,iBAAAA,WAAW,EAClCiB,UAEA,AADA,oEACoE,AADA;IAEpE,0EAA0E;IAC1E,yEAAyE;IACzE,wEAAwE;IACxE,iDAAiD;IACjD;QAAEhB,UAAU;IAAM;IAGpB,IAAIwB;IACJ,IAAIX,cAAc;QAChBW,uBAAuBzB,CAAAA,GAAAA,iBAAAA,WAAW,EAACc,cAAc;YAAEb,UAAU;QAAM;IACrE;IAEA,oCAAoC;IACpC,KAAK,MAAM,CAAC1B,KAAKmD,WAAW,IAAInC,OAAOoC,OAAO,CAACZ,WAAY;QACzD,+DAA+D;QAC/D,YAAY;QACZ,IAAI7B,MAAMC,OAAO,CAACuC,aAAa;YAC7BX,SAAS,CAACxC,IAAI,GAAGmD,WAAWE,GAAG,CAAC,CAACtD,QAC/BzB,eAAeiB,iBAAiBQ,QAAQ4B,KAAK/B,MAAM;QAEvD,OAAO,IAAI,OAAOuD,eAAe,UAAU;YACzCX,SAAS,CAACxC,IAAI,GAAG1B,eAAeiB,iBAAiB4D,aAAaxB,KAAK/B,MAAM;QAC3E;IACF;IAEA,0DAA0D;IAC1D,+CAA+C;IAC/C,IAAI0D,YAAYtC,OAAOC,IAAI,CAACU,KAAK/B,MAAM,EAAE2D,MAAM,CAC7C,CAACR,OAASA,SAAS;IAGrB,IACEpB,KAAK6B,mBAAmB,IACxB,CAACF,UAAU/B,IAAI,CAAC,CAACvB,MAAQ2C,WAAWnB,QAAQ,CAACxB,OAC7C;QACA,KAAK,MAAMA,OAAOsD,UAAW;YAC3B,IAAI,CAAEtD,CAAAA,OAAOwC,SAAQ,GAAI;gBACvBA,SAAS,CAACxC,IAAI,GAAG2B,KAAK/B,MAAM,CAACI,IAAI;YACnC;QACF;IACF;IAEA,IAAIyD;IAEJ,uFAAuF;IACvF,6CAA6C;IAC7C,IAAIC,CAAAA,GAAAA,oBAAAA,0BAA0B,EAAChB,WAAW;QACxC,KAAK,MAAMiB,WAAWjB,SAASlC,KAAK,CAAC,KAAM;YACzC,MAAMoD,SAASC,oBAAAA,0BAA0B,CAACC,IAAI,CAAC,CAACC,IAC9CJ,QAAQK,UAAU,CAACD;YAErB,IAAIH,QAAQ;gBACV,IAAIA,WAAW,YAAY;oBACzBjC,KAAK/B,MAAM,CAAC,IAAI,GAAG;oBACnB+B,KAAK/B,MAAM,CAAC,IAAI,GAAG;gBACrB,OAAO;oBACL+B,KAAK/B,MAAM,CAAC,IAAI,GAAGgE;gBACrB;gBACA;YACF;QACF;IACF;IAEA,IAAI;QACFH,SAASR,iBAAiBtB,KAAK/B,MAAM;QAErC,MAAM,CAACqC,UAAUE,KAAK,GAAGsB,OAAOjD,KAAK,CAAC,KAAK;QAC3C,IAAI0C,sBAAsB;YACxBZ,kBAAkB/B,QAAQ,GAAG2C,qBAAqBvB,KAAK/B,MAAM;QAC/D;QACA0C,kBAAkBL,QAAQ,GAAGA;QAC7BK,kBAAkBH,IAAI,GAAG,GAAGA,OAAO,MAAM,KAAKA,QAAQ,IAAI;QAC1DG,kBAAkBF,MAAM,GAAGK,aACvBnE,eAAemE,YAAYd,KAAK/B,MAAM,IACtC;IACN,EAAE,OAAOqE,KAAU;QACjB,IAAIA,IAAIC,OAAO,CAACpD,KAAK,CAAC,iDAAiD;YACrE,MAAM,OAAA,cAEL,CAFK,IAAIqD,MACR,CAAC,yKAAyK,CAAC,GADvK,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QACA,MAAMF;IACR;IAEA,+CAA+C;IAC/C,8BAA8B;IAC9B,yBAAyB;IACzB,wCAAwC;IACxC3B,kBAAkB7C,KAAK,GAAG;QACxB,GAAGkC,KAAKlC,KAAK;QACb,GAAG6C,kBAAkB7C,KAAK;IAC5B;IAEA,OAAO;QACLgE;QACAjB;QACAF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 3426, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/utils.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\nimport {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../lib/constants'\n\n/**\n * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any\n * headers with multiple values will be joined with a comma and space. Any\n * headers that have an undefined value will be ignored and others will be\n * coerced to strings.\n *\n * @param nodeHeaders the headers object to convert\n * @returns the converted headers object\n */\nexport function fromNodeOutgoingHttpHeaders(\n nodeHeaders: OutgoingHttpHeaders\n): Headers {\n const headers = new Headers()\n for (let [key, value] of Object.entries(nodeHeaders)) {\n const values = Array.isArray(value) ? value : [value]\n for (let v of values) {\n if (typeof v === 'undefined') continue\n if (typeof v === 'number') {\n v = v.toString()\n }\n\n headers.append(key, v)\n }\n }\n return headers\n}\n\n/*\n Set-Cookie header field-values are sometimes comma joined in one string. This splits them without choking on commas\n that are within a single set-cookie field-value, such as in the Expires portion.\n This is uncommon, but explicitly allowed - see https://tools.ietf.org/html/rfc2616#section-4.2\n Node.js does this for every header *except* set-cookie - see https://github.com/nodejs/node/blob/d5e363b77ebaf1caf67cd7528224b651c86815c1/lib/_http_incoming.js#L128\n React Native's fetch does this for *every* header, including set-cookie.\n \n Based on: https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25\n Credits to: https://github.com/tomball for original and https://github.com/chrusart for JavaScript implementation\n*/\nexport function splitCookiesString(cookiesString: string) {\n var cookiesStrings = []\n var pos = 0\n var start\n var ch\n var lastComma\n var nextStart\n var cookiesSeparatorFound\n\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1\n }\n return pos < cookiesString.length\n }\n\n function notSpecialChar() {\n ch = cookiesString.charAt(pos)\n\n return ch !== '=' && ch !== ';' && ch !== ','\n }\n\n while (pos < cookiesString.length) {\n start = pos\n cookiesSeparatorFound = false\n\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos)\n if (ch === ',') {\n // ',' is a cookie separator if we have later first '=', not ';' or ','\n lastComma = pos\n pos += 1\n\n skipWhitespace()\n nextStart = pos\n\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1\n }\n\n // currently special character\n if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') {\n // we found cookies separator\n cookiesSeparatorFound = true\n // pos is inside the next cookie, so back up and return it.\n pos = nextStart\n cookiesStrings.push(cookiesString.substring(start, lastComma))\n start = pos\n } else {\n // in param ',' or param separator ';',\n // we continue from that comma\n pos = lastComma + 1\n }\n } else {\n pos += 1\n }\n }\n\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length))\n }\n }\n\n return cookiesStrings\n}\n\n/**\n * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is\n * required to support the set-cookie header, which may have multiple values.\n *\n * @param headers the headers object to convert\n * @returns the converted headers object\n */\nexport function toNodeOutgoingHttpHeaders(\n headers: Headers\n): OutgoingHttpHeaders {\n const nodeHeaders: OutgoingHttpHeaders = {}\n const cookies: string[] = []\n if (headers) {\n for (const [key, value] of headers.entries()) {\n if (key.toLowerCase() === 'set-cookie') {\n // We may have gotten a comma joined string of cookies, or multiple\n // set-cookie headers. We need to merge them into one header array\n // to represent all the cookies.\n cookies.push(...splitCookiesString(value))\n nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies\n } else {\n nodeHeaders[key] = value\n }\n }\n }\n return nodeHeaders\n}\n\n/**\n * Validate the correctness of a user-provided URL.\n */\nexport function validateURL(url: string | URL): string {\n try {\n return String(new URL(String(url)))\n } catch (error: any) {\n throw new Error(\n `URL is malformed \"${String(\n url\n )}\". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,\n { cause: error }\n )\n }\n}\n\n/**\n * Normalizes `nxtP` and `nxtI` query param values to remove the prefix.\n * This function does not mutate the input key.\n */\nexport function normalizeNextQueryParam(key: string): null | string {\n const prefixes = [NEXT_QUERY_PARAM_PREFIX, NEXT_INTERCEPTION_MARKER_PREFIX]\n for (const prefix of prefixes) {\n if (key !== prefix && key.startsWith(prefix)) {\n return key.substring(prefix.length)\n }\n }\n return null\n}\n"],"names":["fromNodeOutgoingHttpHeaders","normalizeNextQueryParam","splitCookiesString","toNodeOutgoingHttpHeaders","validateURL","nodeHeaders","headers","Headers","key","value","Object","entries","values","Array","isArray","v","toString","append","cookiesString","cookiesStrings","pos","start","ch","lastComma","nextStart","cookiesSeparatorFound","skipWhitespace","length","test","charAt","notSpecialChar","push","substring","cookies","toLowerCase","url","String","URL","error","Error","cause","prefixes","NEXT_QUERY_PARAM_PREFIX","NEXT_INTERCEPTION_MARKER_PREFIX","prefix","startsWith"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3578, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/decode-query-path-parameter.ts"],"sourcesContent":["/**\n * Decodes a query path parameter.\n *\n * @param value - The value to decode.\n * @returns The decoded value.\n */\nexport function decodeQueryPathParameter(value: string) {\n // When deployed to Vercel, the value may be encoded, so this attempts to\n // decode it and returns the original value if it fails.\n try {\n return decodeURIComponent(value)\n } catch {\n return value\n }\n}\n"],"names":["decodeQueryPathParameter","value","decodeURIComponent"],"mappings":"AAAA;;;;;CAKC;;;+BACeA,4BAAAA;;;eAAAA;;;AAAT,SAASA,yBAAyBC,KAAa;IACpD,yEAAyE;IACzE,wDAAwD;IACxD,IAAI;QACF,OAAOC,mBAAmBD;IAC5B,EAAE,OAAM;QACN,OAAOA;IACT;AACF","ignoreList":[0]}}, - {"offset": {"line": 3605, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-headers.ts"],"sourcesContent":["export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n"],"names":["ACTION_HEADER","FLIGHT_HEADERS","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_ACTION_REVALIDATED_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_HMR_REFRESH_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_RSC_UNION_QUERY","NEXT_URL","RSC_CONTENT_TYPE_HEADER","RSC_HEADER"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IACaA,aAAa,EAAA;eAAbA;;IAiBAC,cAAc,EAAA;eAAdA;;IAeAC,4BAA4B,EAAA;eAA5BA;;IAKAC,8BAA8B,EAAA;eAA9BA;;IATAC,wBAAwB,EAAA;eAAxBA;;IAfAC,4BAA4B,EAAA;eAA5BA;;IADAC,uBAAuB,EAAA;eAAvBA;;IAsBAC,2BAA2B,EAAA;eAA3BA;;IAHAC,wBAAwB,EAAA;eAAxBA;;IAEAC,sBAAsB,EAAA;eAAtBA;;IAJAC,0BAA0B,EAAA;eAA1BA;;IACAC,2BAA2B,EAAA;eAA3BA;;IAzBAC,2BAA2B,EAAA;eAA3BA;;IAKAC,mCAAmC,EAAA;eAAnCA;;IAiBAC,6BAA6B,EAAA;eAA7BA;;IAvBAC,6BAA6B,EAAA;eAA7BA;;IAqBAC,oBAAoB,EAAA;eAApBA;;IAXAC,QAAQ,EAAA;eAARA;;IACAC,uBAAuB,EAAA;eAAvBA;;IAhBAC,UAAU,EAAA;eAAVA;;;AAAN,MAAMA,aAAa;AACnB,MAAMnB,gBAAgB;AAItB,MAAMe,gCAAgC;AACtC,MAAMH,8BAA8B;AAKpC,MAAMC,sCACX;AACK,MAAMP,0BAA0B;AAChC,MAAMD,+BAA+B;AACrC,MAAMY,WAAW;AACjB,MAAMC,0BAA0B;AAEhC,MAAMjB,iBAAiB;IAC5BkB;IACAJ;IACAH;IACAN;IACAO;CACD;AAEM,MAAMG,uBAAuB;AAE7B,MAAMF,gCAAgC;AACtC,MAAMV,2BAA2B;AACjC,MAAMM,6BAA6B;AACnC,MAAMC,8BAA8B;AACpC,MAAMH,2BAA2B;AACjC,MAAMN,+BAA+B;AACrC,MAAMO,yBAAyB;AAC/B,MAAMF,8BAA8B;AAGpC,MAAMJ,iCAAiC","ignoreList":[0]}}, - {"offset": {"line": 3735, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/url.ts"],"sourcesContent":["import type { UrlWithParsedQuery } from 'url'\nimport { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\n\nconst DUMMY_ORIGIN = 'http://n'\n\nexport function isFullStringUrl(url: string) {\n return /https?:\\/\\//.test(url)\n}\n\nexport function parseUrl(url: string): URL | undefined {\n let parsed: URL | undefined = undefined\n try {\n parsed = new URL(url, DUMMY_ORIGIN)\n } catch {}\n return parsed\n}\n\nexport function parseReqUrl(url: string): UrlWithParsedQuery | undefined {\n const parsedUrl: URL | undefined = parseUrl(url)\n\n if (!parsedUrl) {\n return\n }\n\n const query: Record<string, string | string[]> = {}\n\n for (const key of parsedUrl.searchParams.keys()) {\n const values = parsedUrl.searchParams.getAll(key)\n query[key] = values.length > 1 ? values : values[0]\n }\n\n const legacyUrl: UrlWithParsedQuery = {\n query,\n hash: parsedUrl.hash,\n search: parsedUrl.search,\n path: parsedUrl.pathname,\n pathname: parsedUrl.pathname,\n href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`,\n host: '',\n hostname: '',\n auth: '',\n protocol: '',\n slashes: null,\n port: '',\n }\n return legacyUrl\n}\n\nexport function stripNextRscUnionQuery(relativeUrl: string): string {\n const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN)\n urlInstance.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n return urlInstance.pathname + urlInstance.search\n}\n"],"names":["isFullStringUrl","parseReqUrl","parseUrl","stripNextRscUnionQuery","DUMMY_ORIGIN","url","test","parsed","undefined","URL","parsedUrl","query","key","searchParams","keys","values","getAll","length","legacyUrl","hash","search","path","pathname","href","host","hostname","auth","protocol","slashes","port","relativeUrl","urlInstance","delete","NEXT_RSC_UNION_QUERY"],"mappings":";;;;;;;;;;;;;;;;IAKgBA,eAAe,EAAA;eAAfA;;IAYAC,WAAW,EAAA;eAAXA;;IARAC,QAAQ,EAAA;eAARA;;IAuCAC,sBAAsB,EAAA;eAAtBA;;;kCA/CqB;AAErC,MAAMC,eAAe;AAEd,SAASJ,gBAAgBK,GAAW;IACzC,OAAO,cAAcC,IAAI,CAACD;AAC5B;AAEO,SAASH,SAASG,GAAW;IAClC,IAAIE,SAA0BC;IAC9B,IAAI;QACFD,SAAS,IAAIE,IAAIJ,KAAKD;IACxB,EAAE,OAAM,CAAC;IACT,OAAOG;AACT;AAEO,SAASN,YAAYI,GAAW;IACrC,MAAMK,YAA6BR,SAASG;IAE5C,IAAI,CAACK,WAAW;QACd;IACF;IAEA,MAAMC,QAA2C,CAAC;IAElD,KAAK,MAAMC,OAAOF,UAAUG,YAAY,CAACC,IAAI,GAAI;QAC/C,MAAMC,SAASL,UAAUG,YAAY,CAACG,MAAM,CAACJ;QAC7CD,KAAK,CAACC,IAAI,GAAGG,OAAOE,MAAM,GAAG,IAAIF,SAASA,MAAM,CAAC,EAAE;IACrD;IAEA,MAAMG,YAAgC;QACpCP;QACAQ,MAAMT,UAAUS,IAAI;QACpBC,QAAQV,UAAUU,MAAM;QACxBC,MAAMX,UAAUY,QAAQ;QACxBA,UAAUZ,UAAUY,QAAQ;QAC5BC,MAAM,GAAGb,UAAUY,QAAQ,GAAGZ,UAAUU,MAAM,GAAGV,UAAUS,IAAI,EAAE;QACjEK,MAAM;QACNC,UAAU;QACVC,MAAM;QACNC,UAAU;QACVC,SAAS;QACTC,MAAM;IACR;IACA,OAAOX;AACT;AAEO,SAASf,uBAAuB2B,WAAmB;IACxD,MAAMC,cAAc,IAAItB,IAAIqB,aAAa1B;IACzC2B,YAAYlB,YAAY,CAACmB,MAAM,CAACC,kBAAAA,oBAAoB;IAEpD,OAAOF,YAAYT,QAAQ,GAAGS,YAAYX,MAAM;AAClD","ignoreList":[0]}}, - {"offset": {"line": 3811, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n"],"names":[],"mappings":"AAEA,SAAS,yBAAyB,WAAW;IACzC,IAAI,OAAO,YAAY,YAAY,OAAO;IAE1C,IAAI,oBAAoB,IAAI;IAC5B,IAAI,mBAAmB,IAAI;IAE3B,OAAO,CAAC,2BAA2B,SAAS,WAAW;QACnD,OAAO,cAAc,mBAAmB;IAC5C,CAAC,EAAE;AACP;AACA,SAAS,0BAA0B,GAAG,EAAE,WAAW;IAC/C,IAAI,CAAC,eAAe,OAAO,IAAI,UAAU,EAAE,OAAO;IAClD,IAAI,QAAQ,QAAQ,OAAO,QAAQ,YAAY,OAAO,QAAQ,YAAY,OAAO;QAAE,SAAS;IAAI;IAEhG,IAAI,QAAQ,yBAAyB;IAErC,IAAI,SAAS,MAAM,GAAG,CAAC,MAAM,OAAO,MAAM,GAAG,CAAC;IAE9C,IAAI,SAAS;QAAE,WAAW;IAAK;IAC/B,IAAI,wBAAwB,OAAO,cAAc,IAAI,OAAO,wBAAwB;IAEpF,IAAK,IAAI,OAAO,IAAK;QACjB,IAAI,QAAQ,aAAa,OAAO,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,MAAM;YACrE,IAAI,OAAO,wBAAwB,OAAO,wBAAwB,CAAC,KAAK,OAAO;YAC/E,IAAI,QAAQ,CAAC,KAAK,GAAG,IAAI,KAAK,GAAG,GAAG,OAAO,cAAc,CAAC,QAAQ,KAAK;iBAClE,MAAM,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI;QAC/B;IACJ;IAEA,OAAO,OAAO,GAAG;IAEjB,IAAI,OAAO,MAAM,GAAG,CAAC,KAAK;IAE1B,OAAO;AACX;AACA,QAAQ,CAAC,GAAG","ignoreList":[0]}}, - {"offset": {"line": 3846, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/format-url.ts"],"sourcesContent":["// Format function modified from nodejs\n// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nimport type { UrlObject } from 'url'\nimport type { ParsedUrlQuery } from 'querystring'\nimport * as querystring from './querystring'\n\nconst slashedProtocols = /https?|ftp|gopher|file/\n\nexport function formatUrl(urlObj: UrlObject) {\n let { auth, hostname } = urlObj\n let protocol = urlObj.protocol || ''\n let pathname = urlObj.pathname || ''\n let hash = urlObj.hash || ''\n let query = urlObj.query || ''\n let host: string | false = false\n\n auth = auth ? encodeURIComponent(auth).replace(/%3A/i, ':') + '@' : ''\n\n if (urlObj.host) {\n host = auth + urlObj.host\n } else if (hostname) {\n host = auth + (~hostname.indexOf(':') ? `[${hostname}]` : hostname)\n if (urlObj.port) {\n host += ':' + urlObj.port\n }\n }\n\n if (query && typeof query === 'object') {\n query = String(querystring.urlQueryToSearchParams(query as ParsedUrlQuery))\n }\n\n let search = urlObj.search || (query && `?${query}`) || ''\n\n if (protocol && !protocol.endsWith(':')) protocol += ':'\n\n if (\n urlObj.slashes ||\n ((!protocol || slashedProtocols.test(protocol)) && host !== false)\n ) {\n host = '//' + (host || '')\n if (pathname && pathname[0] !== '/') pathname = '/' + pathname\n } else if (!host) {\n host = ''\n }\n\n if (hash && hash[0] !== '#') hash = '#' + hash\n if (search && search[0] !== '?') search = '?' + search\n\n pathname = pathname.replace(/[?#]/g, encodeURIComponent)\n search = search.replace('#', '%23')\n\n return `${protocol}${host}${pathname}${search}${hash}`\n}\n\nexport const urlObjectKeys = [\n 'auth',\n 'hash',\n 'host',\n 'hostname',\n 'href',\n 'path',\n 'pathname',\n 'port',\n 'protocol',\n 'query',\n 'search',\n 'slashes',\n]\n\nexport function formatWithValidation(url: UrlObject): string {\n if (process.env.NODE_ENV === 'development') {\n if (url !== null && typeof url === 'object') {\n Object.keys(url).forEach((key) => {\n if (!urlObjectKeys.includes(key)) {\n console.warn(\n `Unknown key passed via urlObject into url.format: ${key}`\n )\n }\n })\n }\n }\n\n return formatUrl(url)\n}\n"],"names":["formatUrl","formatWithValidation","urlObjectKeys","slashedProtocols","urlObj","auth","hostname","protocol","pathname","hash","query","host","encodeURIComponent","replace","indexOf","port","String","querystring","urlQueryToSearchParams","search","endsWith","slashes","test","url","process","env","NODE_ENV","Object","keys","forEach","key","includes","console","warn"],"mappings":"AAAA,uCAAuC;AACvC,sDAAsD;AACtD,EAAE;AACF,0EAA0E;AAC1E,gEAAgE;AAChE,sEAAsE;AACtE,sEAAsE;AACtE,4EAA4E;AAC5E,qEAAqE;AACrE,wBAAwB;AACxB,EAAE;AACF,0EAA0E;AAC1E,yDAAyD;AACzD,EAAE;AACF,0EAA0E;AAC1E,6DAA6D;AAC7D,4EAA4E;AAC5E,2EAA2E;AAC3E,wEAAwE;AACxE,4EAA4E;AAC5E,yCAAyC;;;;;;;;;;;;;;;;IAQzBA,SAAS,EAAA;eAATA;;IA6DAC,oBAAoB,EAAA;eAApBA;;IAfHC,aAAa,EAAA;eAAbA;;;;uEAlDgB;AAE7B,MAAMC,mBAAmB;AAElB,SAASH,UAAUI,MAAiB;IACzC,IAAI,EAAEC,IAAI,EAAEC,QAAQ,EAAE,GAAGF;IACzB,IAAIG,WAAWH,OAAOG,QAAQ,IAAI;IAClC,IAAIC,WAAWJ,OAAOI,QAAQ,IAAI;IAClC,IAAIC,OAAOL,OAAOK,IAAI,IAAI;IAC1B,IAAIC,QAAQN,OAAOM,KAAK,IAAI;IAC5B,IAAIC,OAAuB;IAE3BN,OAAOA,OAAOO,mBAAmBP,MAAMQ,OAAO,CAAC,QAAQ,OAAO,MAAM;IAEpE,IAAIT,OAAOO,IAAI,EAAE;QACfA,OAAON,OAAOD,OAAOO,IAAI;IAC3B,OAAO,IAAIL,UAAU;QACnBK,OAAON,OAAQ,CAAA,CAACC,SAASQ,OAAO,CAAC,OAAO,CAAC,CAAC,EAAER,SAAS,CAAC,CAAC,GAAGA,QAAO;QACjE,IAAIF,OAAOW,IAAI,EAAE;YACfJ,QAAQ,MAAMP,OAAOW,IAAI;QAC3B;IACF;IAEA,IAAIL,SAAS,OAAOA,UAAU,UAAU;QACtCA,QAAQM,OAAOC,aAAYC,sBAAsB,CAACR;IACpD;IAEA,IAAIS,SAASf,OAAOe,MAAM,IAAKT,SAAS,CAAC,CAAC,EAAEA,OAAO,IAAK;IAExD,IAAIH,YAAY,CAACA,SAASa,QAAQ,CAAC,MAAMb,YAAY;IAErD,IACEH,OAAOiB,OAAO,IACZ,CAAA,CAACd,YAAYJ,iBAAiBmB,IAAI,CAACf,SAAQ,KAAMI,SAAS,OAC5D;QACAA,OAAO,OAAQA,CAAAA,QAAQ,EAAC;QACxB,IAAIH,YAAYA,QAAQ,CAAC,EAAE,KAAK,KAAKA,WAAW,MAAMA;IACxD,OAAO,IAAI,CAACG,MAAM;QAChBA,OAAO;IACT;IAEA,IAAIF,QAAQA,IAAI,CAAC,EAAE,KAAK,KAAKA,OAAO,MAAMA;IAC1C,IAAIU,UAAUA,MAAM,CAAC,EAAE,KAAK,KAAKA,SAAS,MAAMA;IAEhDX,WAAWA,SAASK,OAAO,CAAC,SAASD;IACrCO,SAASA,OAAON,OAAO,CAAC,KAAK;IAE7B,OAAO,GAAGN,WAAWI,OAAOH,WAAWW,SAASV,MAAM;AACxD;AAEO,MAAMP,gBAAgB;IAC3B;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;CACD;AAEM,SAASD,qBAAqBsB,GAAc;IACjD,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAe;QAC1C,IAAIH,QAAQ,QAAQ,OAAOA,QAAQ,UAAU;YAC3CI,OAAOC,IAAI,CAACL,KAAKM,OAAO,CAAC,CAACC;gBACxB,IAAI,CAAC5B,cAAc6B,QAAQ,CAACD,MAAM;oBAChCE,QAAQC,IAAI,CACV,CAAC,kDAAkD,EAAEH,KAAK;gBAE9D;YACF;QACF;IACF;IAEA,OAAO9B,UAAUuB;AACnB","ignoreList":[0]}}, - {"offset": {"line": 3958, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/server-utils.ts"],"sourcesContent":["import type { Rewrite } from '../lib/load-custom-routes'\nimport type { RouteMatchFn } from '../shared/lib/router/utils/route-matcher'\nimport type { NextConfig } from './config'\nimport type { BaseNextRequest } from './base-http'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { UrlWithParsedQuery } from 'url'\n\nimport { normalizeLocalePath } from '../shared/lib/i18n/normalize-locale-path'\nimport { getPathMatch } from '../shared/lib/router/utils/path-match'\nimport { getNamedRouteRegex } from '../shared/lib/router/utils/route-regex'\nimport { getRouteMatcher } from '../shared/lib/router/utils/route-matcher'\nimport {\n matchHas,\n prepareDestination,\n} from '../shared/lib/router/utils/prepare-destination'\nimport { removeTrailingSlash } from '../shared/lib/router/utils/remove-trailing-slash'\nimport { normalizeRscURL } from '../shared/lib/router/utils/app-paths'\nimport {\n NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER,\n NEXT_CACHE_REVALIDATED_TAGS_HEADER,\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../lib/constants'\nimport { normalizeNextQueryParam } from './web/utils'\nimport type { IncomingHttpHeaders, IncomingMessage } from 'http'\nimport { decodeQueryPathParameter } from './lib/decode-query-path-parameter'\nimport type { DeepReadonly } from '../shared/lib/deep-readonly'\nimport { parseReqUrl } from '../lib/url'\nimport { formatUrl } from '../shared/lib/router/utils/format-url'\n\nfunction filterInternalQuery(\n query: Record<string, undefined | string | string[]>,\n paramKeys: string[]\n) {\n // this is used to pass query information in rewrites\n // but should not be exposed in final query\n delete query['nextInternalLocale']\n\n for (const key in query) {\n const isNextQueryPrefix =\n key !== NEXT_QUERY_PARAM_PREFIX && key.startsWith(NEXT_QUERY_PARAM_PREFIX)\n\n const isNextInterceptionMarkerPrefix =\n key !== NEXT_INTERCEPTION_MARKER_PREFIX &&\n key.startsWith(NEXT_INTERCEPTION_MARKER_PREFIX)\n\n if (\n isNextQueryPrefix ||\n isNextInterceptionMarkerPrefix ||\n paramKeys.includes(key)\n ) {\n delete query[key]\n }\n }\n}\n\nexport function normalizeCdnUrl(\n req: BaseNextRequest | IncomingMessage,\n paramKeys: string[]\n) {\n // make sure to normalize req.url from CDNs to strip dynamic and rewrite\n // params from the query which are added during routing\n const _parsedUrl = parseReqUrl(req.url!)\n\n // we can't normalize if we can't parse\n if (!_parsedUrl) {\n return req.url\n }\n delete (_parsedUrl as any).search\n filterInternalQuery(_parsedUrl.query, paramKeys)\n\n req.url = formatUrl(_parsedUrl)\n}\n\nexport function interpolateDynamicPath(\n pathname: string,\n params: ParsedUrlQuery,\n defaultRouteRegex?: ReturnType<typeof getNamedRouteRegex> | undefined\n) {\n if (!defaultRouteRegex) return pathname\n\n for (const param of Object.keys(defaultRouteRegex.groups)) {\n const { optional, repeat } = defaultRouteRegex.groups[param]\n let builtParam = `[${repeat ? '...' : ''}${param}]`\n\n if (optional) {\n builtParam = `[${builtParam}]`\n }\n\n let paramValue: string\n const value = params[param]\n\n if (Array.isArray(value)) {\n paramValue = value.map((v) => v && encodeURIComponent(v)).join('/')\n } else if (value) {\n paramValue = encodeURIComponent(value)\n } else {\n paramValue = ''\n }\n\n if (paramValue || optional) {\n pathname = pathname.replaceAll(builtParam, paramValue)\n }\n }\n\n return pathname\n}\n\nexport function normalizeDynamicRouteParams(\n query: ParsedUrlQuery,\n defaultRouteRegex: ReturnType<typeof getNamedRouteRegex>,\n defaultRouteMatches: ParsedUrlQuery,\n ignoreMissingOptional: boolean\n) {\n let hasValidParams = true\n let params: ParsedUrlQuery = {}\n\n for (const key of Object.keys(defaultRouteRegex.groups)) {\n let value: string | string[] | undefined = query[key]\n\n if (typeof value === 'string') {\n value = normalizeRscURL(value)\n } else if (Array.isArray(value)) {\n value = value.map(normalizeRscURL)\n }\n\n // if the value matches the default value we can't rely\n // on the parsed params, this is used to signal if we need\n // to parse x-now-route-matches or not\n const defaultValue = defaultRouteMatches![key]\n const isOptional = defaultRouteRegex!.groups[key].optional\n\n const isDefaultValue = Array.isArray(defaultValue)\n ? defaultValue.some((defaultVal) => {\n return Array.isArray(value)\n ? value.some((val) => val.includes(defaultVal))\n : value?.includes(defaultVal)\n })\n : value?.includes(defaultValue as string)\n\n if (\n isDefaultValue ||\n (typeof value === 'undefined' && !(isOptional && ignoreMissingOptional))\n ) {\n return { params: {}, hasValidParams: false }\n }\n\n // non-provided optional values should be undefined so normalize\n // them to undefined\n if (\n isOptional &&\n (!value ||\n (Array.isArray(value) &&\n value.length === 1 &&\n // fallback optional catch-all SSG pages have\n // [[...paramName]] for the root path on Vercel\n (value[0] === 'index' || value[0] === `[[...${key}]]`)) ||\n value === 'index' ||\n value === `[[...${key}]]`)\n ) {\n value = undefined\n delete query[key]\n }\n\n // query values from the proxy aren't already split into arrays\n // so make sure to normalize catch-all values\n if (\n value &&\n typeof value === 'string' &&\n defaultRouteRegex!.groups[key].repeat\n ) {\n value = value.split('/')\n }\n\n if (value) {\n params[key] = value\n }\n }\n\n return {\n params,\n hasValidParams,\n }\n}\n\nexport function getServerUtils({\n page,\n i18n,\n basePath,\n rewrites,\n pageIsDynamic,\n trailingSlash,\n caseSensitive,\n}: {\n page: string\n i18n?: NextConfig['i18n']\n basePath: string\n rewrites: DeepReadonly<{\n fallback?: ReadonlyArray<Rewrite>\n afterFiles?: ReadonlyArray<Rewrite>\n beforeFiles?: ReadonlyArray<Rewrite>\n }>\n pageIsDynamic: boolean\n trailingSlash?: boolean\n caseSensitive: boolean\n}) {\n let defaultRouteRegex: ReturnType<typeof getNamedRouteRegex> | undefined\n let dynamicRouteMatcher: RouteMatchFn | undefined\n let defaultRouteMatches: ParsedUrlQuery | undefined\n\n if (pageIsDynamic) {\n defaultRouteRegex = getNamedRouteRegex(page, {\n prefixRouteKeys: false,\n })\n dynamicRouteMatcher = getRouteMatcher(defaultRouteRegex)\n defaultRouteMatches = dynamicRouteMatcher(page) as ParsedUrlQuery\n }\n\n function handleRewrites(\n req: BaseNextRequest | IncomingMessage,\n parsedUrl: DeepReadonly<UrlWithParsedQuery>\n ) {\n // Here we deep clone the parsedUrl to avoid mutating the original. We also\n // cast this to a mutable type so we can mutate it within this scope.\n const rewrittenParsedUrl = structuredClone(parsedUrl) as UrlWithParsedQuery\n const rewriteParams: Record<string, string> = {}\n let fsPathname = rewrittenParsedUrl.pathname\n\n const matchesPage = () => {\n const fsPathnameNoSlash = removeTrailingSlash(fsPathname || '')\n return (\n fsPathnameNoSlash === removeTrailingSlash(page) ||\n dynamicRouteMatcher?.(fsPathnameNoSlash)\n )\n }\n\n const checkRewrite = (rewrite: DeepReadonly<Rewrite>): boolean => {\n const matcher = getPathMatch(\n rewrite.source + (trailingSlash ? '(/)?' : ''),\n {\n removeUnnamedParams: true,\n strict: true,\n sensitive: !!caseSensitive,\n }\n )\n\n if (!rewrittenParsedUrl.pathname) return false\n\n let params = matcher(rewrittenParsedUrl.pathname)\n\n if ((rewrite.has || rewrite.missing) && params) {\n const hasParams = matchHas(\n req,\n rewrittenParsedUrl.query,\n rewrite.has as Rewrite['has'],\n rewrite.missing as Rewrite['missing']\n )\n\n if (hasParams) {\n Object.assign(params, hasParams)\n } else {\n params = false\n }\n }\n\n if (params) {\n const { parsedDestination, destQuery } = prepareDestination({\n appendParamsToQuery: true,\n destination: rewrite.destination,\n params: params,\n query: rewrittenParsedUrl.query,\n })\n\n // if the rewrite destination is external break rewrite chain\n if (parsedDestination.protocol) {\n return true\n }\n\n Object.assign(rewriteParams, destQuery, params)\n Object.assign(rewrittenParsedUrl.query, parsedDestination.query)\n delete (parsedDestination as any).query\n\n Object.assign(rewrittenParsedUrl, parsedDestination)\n\n fsPathname = rewrittenParsedUrl.pathname\n if (!fsPathname) return false\n\n if (basePath) {\n fsPathname = fsPathname.replace(new RegExp(`^${basePath}`), '') || '/'\n }\n\n if (i18n) {\n const result = normalizeLocalePath(fsPathname, i18n.locales)\n fsPathname = result.pathname\n rewrittenParsedUrl.query.nextInternalLocale =\n result.detectedLocale || params.nextInternalLocale\n }\n\n if (fsPathname === page) {\n return true\n }\n\n if (pageIsDynamic && dynamicRouteMatcher) {\n const dynamicParams = dynamicRouteMatcher(fsPathname)\n if (dynamicParams) {\n rewrittenParsedUrl.query = {\n ...rewrittenParsedUrl.query,\n ...dynamicParams,\n }\n return true\n }\n }\n }\n\n return false\n }\n\n for (const rewrite of rewrites.beforeFiles || []) {\n checkRewrite(rewrite)\n }\n\n if (fsPathname !== page) {\n let finished = false\n\n for (const rewrite of rewrites.afterFiles || []) {\n finished = checkRewrite(rewrite)\n if (finished) break\n }\n\n if (!finished && !matchesPage()) {\n for (const rewrite of rewrites.fallback || []) {\n finished = checkRewrite(rewrite)\n if (finished) break\n }\n }\n }\n\n return { rewriteParams, rewrittenParsedUrl }\n }\n\n function getParamsFromRouteMatches(routeMatchesHeader: string) {\n // If we don't have a default route regex, we can't get params from route\n // matches\n if (!defaultRouteRegex) return null\n\n const { groups, routeKeys } = defaultRouteRegex\n\n const matcher = getRouteMatcher({\n re: {\n // Simulate a RegExp match from the \\`req.url\\` input\n exec: (str: string) => {\n // Normalize all the prefixed query params.\n const obj: Record<string, string> = Object.fromEntries(\n new URLSearchParams(str)\n )\n for (const [key, value] of Object.entries(obj)) {\n const normalizedKey = normalizeNextQueryParam(key)\n if (!normalizedKey) continue\n\n obj[normalizedKey] = value\n delete obj[key]\n }\n\n // Use all the named route keys.\n const result = {} as RegExpExecArray\n for (const keyName of Object.keys(routeKeys)) {\n const paramName = routeKeys[keyName]\n\n // If this param name is not a valid parameter name, then skip it.\n if (!paramName) continue\n\n const group = groups[paramName]\n const value = obj[keyName]\n\n // When we're missing a required param, we can't match the route.\n if (!group.optional && !value) return null\n\n result[group.pos] = value\n }\n\n return result\n },\n },\n groups,\n })\n\n const routeMatches = matcher(routeMatchesHeader)\n if (!routeMatches) return null\n\n return routeMatches\n }\n\n function normalizeQueryParams(\n query: Record<string, string | string[] | undefined>,\n routeParamKeys: Set<string>\n ) {\n // this is used to pass query information in rewrites\n // but should not be exposed in final query\n delete query['nextInternalLocale']\n\n for (const [key, value] of Object.entries(query)) {\n const normalizedKey = normalizeNextQueryParam(key)\n if (!normalizedKey) continue\n\n // Remove the prefixed key from the query params because we want\n // to consume it for the dynamic route matcher.\n delete query[key]\n routeParamKeys.add(normalizedKey)\n\n if (typeof value === 'undefined') continue\n\n query[normalizedKey] = Array.isArray(value)\n ? value.map((v) => decodeQueryPathParameter(v))\n : decodeQueryPathParameter(value)\n }\n }\n\n return {\n handleRewrites,\n defaultRouteRegex,\n dynamicRouteMatcher,\n defaultRouteMatches,\n normalizeQueryParams,\n getParamsFromRouteMatches,\n /**\n * Normalize dynamic route params.\n *\n * @param query - The query params to normalize.\n * @param ignoreMissingOptional - Whether to ignore missing optional params.\n * @returns The normalized params and whether they are valid.\n */\n normalizeDynamicRouteParams: (\n query: ParsedUrlQuery,\n ignoreMissingOptional: boolean\n ) => {\n if (!defaultRouteRegex || !defaultRouteMatches) {\n return { params: {}, hasValidParams: false }\n }\n\n return normalizeDynamicRouteParams(\n query,\n defaultRouteRegex,\n defaultRouteMatches,\n ignoreMissingOptional\n )\n },\n\n normalizeCdnUrl: (\n req: BaseNextRequest | IncomingMessage,\n paramKeys: string[]\n ) => normalizeCdnUrl(req, paramKeys),\n\n interpolateDynamicPath: (\n pathname: string,\n params: Record<string, undefined | string | string[]>\n ) => interpolateDynamicPath(pathname, params, defaultRouteRegex),\n\n filterInternalQuery: (query: ParsedUrlQuery, paramKeys: string[]) =>\n filterInternalQuery(query, paramKeys),\n }\n}\n\nexport function getPreviouslyRevalidatedTags(\n headers: IncomingHttpHeaders,\n previewModeId: string | undefined\n): string[] {\n return typeof headers[NEXT_CACHE_REVALIDATED_TAGS_HEADER] === 'string' &&\n headers[NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER] === previewModeId\n ? headers[NEXT_CACHE_REVALIDATED_TAGS_HEADER].split(',')\n : []\n}\n"],"names":["getPreviouslyRevalidatedTags","getServerUtils","interpolateDynamicPath","normalizeCdnUrl","normalizeDynamicRouteParams","filterInternalQuery","query","paramKeys","key","isNextQueryPrefix","NEXT_QUERY_PARAM_PREFIX","startsWith","isNextInterceptionMarkerPrefix","NEXT_INTERCEPTION_MARKER_PREFIX","includes","req","_parsedUrl","parseReqUrl","url","search","formatUrl","pathname","params","defaultRouteRegex","param","Object","keys","groups","optional","repeat","builtParam","paramValue","value","Array","isArray","map","v","encodeURIComponent","join","replaceAll","defaultRouteMatches","ignoreMissingOptional","hasValidParams","normalizeRscURL","defaultValue","isOptional","isDefaultValue","some","defaultVal","val","length","undefined","split","page","i18n","basePath","rewrites","pageIsDynamic","trailingSlash","caseSensitive","dynamicRouteMatcher","getNamedRouteRegex","prefixRouteKeys","getRouteMatcher","handleRewrites","parsedUrl","rewrittenParsedUrl","structuredClone","rewriteParams","fsPathname","matchesPage","fsPathnameNoSlash","removeTrailingSlash","checkRewrite","rewrite","matcher","getPathMatch","source","removeUnnamedParams","strict","sensitive","has","missing","hasParams","matchHas","assign","parsedDestination","destQuery","prepareDestination","appendParamsToQuery","destination","protocol","replace","RegExp","result","normalizeLocalePath","locales","nextInternalLocale","detectedLocale","dynamicParams","beforeFiles","finished","afterFiles","fallback","getParamsFromRouteMatches","routeMatchesHeader","routeKeys","re","exec","str","obj","fromEntries","URLSearchParams","entries","normalizedKey","normalizeNextQueryParam","keyName","paramName","group","pos","routeMatches","normalizeQueryParams","routeParamKeys","add","decodeQueryPathParameter","headers","previewModeId","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4282, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/hash.ts"],"sourcesContent":["// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n"],"names":["djb2Hash","hexHash","str","hash","i","length","char","charCodeAt","toString","slice"],"mappings":"AAAA,wCAAwC;AACxC,4CAA4C;AAC5C,iHAAiH;AACjH,wFAAwF;AACxF,gGAAgG;AAChG,wHAAwH;AACxH,wDAAwD;;;;;;;;;;;;;;;IACxCA,QAAQ,EAAA;eAARA;;IASAC,OAAO,EAAA;eAAPA;;;AATT,SAASD,SAASE,GAAW;IAClC,IAAIC,OAAO;IACX,IAAK,IAAIC,IAAI,GAAGA,IAAIF,IAAIG,MAAM,EAAED,IAAK;QACnC,MAAME,OAAOJ,IAAIK,UAAU,CAACH;QAC5BD,OAASA,CAAAA,QAAQ,CAAA,IAAKA,OAAOG,OAAQ;IACvC;IACA,OAAOH,SAAS;AAClB;AAEO,SAASF,QAAQC,GAAW;IACjC,OAAOF,SAASE,KAAKM,QAAQ,CAAC,IAAIC,KAAK,CAAC,GAAG;AAC7C","ignoreList":[0]}}, - {"offset": {"line": 4325, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/get-metadata-route.ts"],"sourcesContent":["import { isMetadataPage } from './is-metadata-route'\nimport path from '../../shared/lib/isomorphic/path'\nimport { interpolateDynamicPath } from '../../server/server-utils'\nimport { getNamedRouteRegex } from '../../shared/lib/router/utils/route-regex'\nimport { djb2Hash } from '../../shared/lib/hash'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { normalizePathSep } from '../../shared/lib/page-path/normalize-path-sep'\nimport {\n isGroupSegment,\n isParallelRouteSegment,\n} from '../../shared/lib/segment'\n\n/*\n * If there's special convention like (...) or @ in the page path,\n * Give it a unique hash suffix to avoid conflicts\n *\n * e.g.\n * /opengraph-image -> /opengraph-image\n * /(post)/opengraph-image.tsx -> /opengraph-image-[0-9a-z]{6}\n *\n * Sitemap is an exception, it should not have a suffix.\n * Each sitemap contains all the urls of sub routes, we don't have the case of duplicates `/(group)/sitemap.[ext]` and `/sitemap.[ext]` since they should be the same.\n * Hence we always normalize the urls for sitemap and do not append hash suffix, and ensure user-land only contains one sitemap per pathname.\n *\n * /sitemap -> /sitemap\n * /(post)/sitemap -> /sitemap\n */\nfunction getMetadataRouteSuffix(page: string) {\n // Remove the last segment and get the parent pathname\n // e.g. /parent/a/b/c -> /parent/a/b\n // e.g. /parent/opengraph-image -> /parent\n const parentPathname = path.dirname(page)\n // Only apply suffix to metadata routes except for sitemaps\n if (page.endsWith('/sitemap') || page.endsWith('/sitemap.xml')) {\n return ''\n }\n\n // Calculate the hash suffix based on the parent path\n let suffix = ''\n // Check if there's any special characters in the parent pathname.\n const segments = parentPathname.split('/')\n if (\n segments.some((seg) => isGroupSegment(seg) || isParallelRouteSegment(seg))\n ) {\n // Hash the parent path to get a unique suffix\n suffix = djb2Hash(parentPathname).toString(36).slice(0, 6)\n }\n return suffix\n}\n\n/**\n * Fill the dynamic segment in the metadata route\n *\n * Example:\n * fillMetadataSegment('/a/[slug]', { params: { slug: 'b' } }, 'open-graph') -> '/a/b/open-graph'\n *\n */\nexport function fillMetadataSegment(\n segment: string,\n params: any,\n lastSegment: string\n) {\n const pathname = normalizeAppPath(segment)\n const routeRegex = getNamedRouteRegex(pathname, {\n prefixRouteKeys: false,\n })\n const route = interpolateDynamicPath(pathname, params, routeRegex)\n const { name, ext } = path.parse(lastSegment)\n const pagePath = path.posix.join(segment, name)\n const suffix = getMetadataRouteSuffix(pagePath)\n const routeSuffix = suffix ? `-${suffix}` : ''\n\n return normalizePathSep(path.join(route, `${name}${routeSuffix}${ext}`))\n}\n\n/**\n * Map metadata page key to the corresponding route\n *\n * static file page key: /app/robots.txt -> /robots.xml -> /robots.txt/route\n * dynamic route page key: /app/robots.tsx -> /robots -> /robots.txt/route\n *\n * @param page\n * @returns\n */\nexport function normalizeMetadataRoute(page: string) {\n if (!isMetadataPage(page)) {\n return page\n }\n let route = page\n let suffix = ''\n if (page === '/robots') {\n route += '.txt'\n } else if (page === '/manifest') {\n route += '.webmanifest'\n } else {\n suffix = getMetadataRouteSuffix(page)\n }\n // Support both /<metadata-route.ext> and custom routes /<metadata-route>/route.ts.\n // If it's a metadata file route, we need to append /[id]/route to the page.\n if (!route.endsWith('/route')) {\n const { dir, name: baseName, ext } = path.parse(route)\n route = path.posix.join(\n dir,\n `${baseName}${suffix ? `-${suffix}` : ''}${ext}`,\n 'route'\n )\n }\n\n return route\n}\n\n// Normalize metadata route page to either a single route or a dynamic route.\n// e.g. Input: /sitemap/route\n// when isDynamic is false, single route -> /sitemap.xml/route\n// when isDynamic is false, dynamic route -> /sitemap/[__metadata_id__]/route\n// also works for pathname such as /sitemap -> /sitemap.xml, but will not append /route suffix\nexport function normalizeMetadataPageToRoute(page: string, isDynamic: boolean) {\n const isRoute = page.endsWith('/route')\n const routePagePath = isRoute ? page.slice(0, -'/route'.length) : page\n const metadataRouteExtension = routePagePath.endsWith('/sitemap')\n ? '.xml'\n : ''\n const mapped = isDynamic\n ? `${routePagePath}/[__metadata_id__]`\n : `${routePagePath}${metadataRouteExtension}`\n\n return mapped + (isRoute ? '/route' : '')\n}\n"],"names":["fillMetadataSegment","normalizeMetadataPageToRoute","normalizeMetadataRoute","getMetadataRouteSuffix","page","parentPathname","path","dirname","endsWith","suffix","segments","split","some","seg","isGroupSegment","isParallelRouteSegment","djb2Hash","toString","slice","segment","params","lastSegment","pathname","normalizeAppPath","routeRegex","getNamedRouteRegex","prefixRouteKeys","route","interpolateDynamicPath","name","ext","parse","pagePath","posix","join","routeSuffix","normalizePathSep","isMetadataPage","dir","baseName","isDynamic","isRoute","routePagePath","length","metadataRouteExtension","mapped"],"mappings":";;;;;;;;;;;;;;;IAyDgBA,mBAAmB,EAAA;eAAnBA;;IA2DAC,4BAA4B,EAAA;eAA5BA;;IAhCAC,sBAAsB,EAAA;eAAtBA;;;iCApFe;6DACd;6BACsB;4BACJ;sBACV;0BACQ;kCACA;yBAI1B;;;;;;AAEP;;;;;;;;;;;;;;CAcC,GACD,SAASC,uBAAuBC,IAAY;IAC1C,sDAAsD;IACtD,oCAAoC;IACpC,0CAA0C;IAC1C,MAAMC,iBAAiBC,MAAAA,OAAI,CAACC,OAAO,CAACH;IACpC,2DAA2D;IAC3D,IAAIA,KAAKI,QAAQ,CAAC,eAAeJ,KAAKI,QAAQ,CAAC,iBAAiB;QAC9D,OAAO;IACT;IAEA,qDAAqD;IACrD,IAAIC,SAAS;IACb,kEAAkE;IAClE,MAAMC,WAAWL,eAAeM,KAAK,CAAC;IACtC,IACED,SAASE,IAAI,CAAC,CAACC,MAAQC,CAAAA,GAAAA,SAAAA,cAAc,EAACD,QAAQE,CAAAA,GAAAA,SAAAA,sBAAsB,EAACF,OACrE;QACA,8CAA8C;QAC9CJ,SAASO,CAAAA,GAAAA,MAAAA,QAAQ,EAACX,gBAAgBY,QAAQ,CAAC,IAAIC,KAAK,CAAC,GAAG;IAC1D;IACA,OAAOT;AACT;AASO,SAAST,oBACdmB,OAAe,EACfC,MAAW,EACXC,WAAmB;IAEnB,MAAMC,WAAWC,CAAAA,GAAAA,UAAAA,gBAAgB,EAACJ;IAClC,MAAMK,aAAaC,CAAAA,GAAAA,YAAAA,kBAAkB,EAACH,UAAU;QAC9CI,iBAAiB;IACnB;IACA,MAAMC,QAAQC,CAAAA,GAAAA,aAAAA,sBAAsB,EAACN,UAAUF,QAAQI;IACvD,MAAM,EAAEK,IAAI,EAAEC,GAAG,EAAE,GAAGxB,MAAAA,OAAI,CAACyB,KAAK,CAACV;IACjC,MAAMW,WAAW1B,MAAAA,OAAI,CAAC2B,KAAK,CAACC,IAAI,CAACf,SAASU;IAC1C,MAAMpB,SAASN,uBAAuB6B;IACtC,MAAMG,cAAc1B,SAAS,CAAC,CAAC,EAAEA,QAAQ,GAAG;IAE5C,OAAO2B,CAAAA,GAAAA,kBAAAA,gBAAgB,EAAC9B,MAAAA,OAAI,CAAC4B,IAAI,CAACP,OAAO,GAAGE,OAAOM,cAAcL,KAAK;AACxE;AAWO,SAAS5B,uBAAuBE,IAAY;IACjD,IAAI,CAACiC,CAAAA,GAAAA,iBAAAA,cAAc,EAACjC,OAAO;QACzB,OAAOA;IACT;IACA,IAAIuB,QAAQvB;IACZ,IAAIK,SAAS;IACb,IAAIL,SAAS,WAAW;QACtBuB,SAAS;IACX,OAAO,IAAIvB,SAAS,aAAa;QAC/BuB,SAAS;IACX,OAAO;QACLlB,SAASN,uBAAuBC;IAClC;IACA,mFAAmF;IACnF,4EAA4E;IAC5E,IAAI,CAACuB,MAAMnB,QAAQ,CAAC,WAAW;QAC7B,MAAM,EAAE8B,GAAG,EAAET,MAAMU,QAAQ,EAAET,GAAG,EAAE,GAAGxB,MAAAA,OAAI,CAACyB,KAAK,CAACJ;QAChDA,QAAQrB,MAAAA,OAAI,CAAC2B,KAAK,CAACC,IAAI,CACrBI,KACA,GAAGC,WAAW9B,SAAS,CAAC,CAAC,EAAEA,QAAQ,GAAG,KAAKqB,KAAK,EAChD;IAEJ;IAEA,OAAOH;AACT;AAOO,SAAS1B,6BAA6BG,IAAY,EAAEoC,SAAkB;IAC3E,MAAMC,UAAUrC,KAAKI,QAAQ,CAAC;IAC9B,MAAMkC,gBAAgBD,UAAUrC,KAAKc,KAAK,CAAC,GAAG,CAAC,SAASyB,MAAM,IAAIvC;IAClE,MAAMwC,yBAAyBF,cAAclC,QAAQ,CAAC,cAClD,SACA;IACJ,MAAMqC,SAASL,YACX,GAAGE,cAAc,kBAAkB,CAAC,GACpC,GAAGA,gBAAgBE,wBAAwB;IAE/C,OAAOC,SAAUJ,CAAAA,UAAU,WAAW,EAAC;AACzC","ignoreList":[0]}}, - {"offset": {"line": 4440, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-kind.ts"],"sourcesContent":["export const enum RouteKind {\n /**\n * `PAGES` represents all the React pages that are under `pages/`.\n */\n PAGES = 'PAGES',\n /**\n * `PAGES_API` represents all the API routes under `pages/api/`.\n */\n PAGES_API = 'PAGES_API',\n /**\n * `APP_PAGE` represents all the React pages that are under `app/` with the\n * filename of `page.{j,t}s{,x}`.\n */\n APP_PAGE = 'APP_PAGE',\n /**\n * `APP_ROUTE` represents all the API routes and metadata routes that are under `app/` with the\n * filename of `route.{j,t}s{,x}`.\n */\n APP_ROUTE = 'APP_ROUTE',\n\n /**\n * `IMAGE` represents all the images that are generated by `next/image`.\n */\n IMAGE = 'IMAGE',\n}\n"],"names":["RouteKind"],"mappings":";;;;AAAO,IAAWA,YAAAA,WAAAA,GAAAA,SAAAA,SAAAA;IAChB;;GAEC,GAAA,SAAA,CAAA,QAAA,GAAA;IAED;;GAEC,GAAA,SAAA,CAAA,YAAA,GAAA;IAED;;;GAGC,GAAA,SAAA,CAAA,WAAA,GAAA;IAED;;;GAGC,GAAA,SAAA,CAAA,YAAA,GAAA;IAGD;;GAEC,GAAA,SAAA,CAAA,QAAA,GAAA;WAtBeA;MAwBjB","ignoreList":[0]}}, - {"offset": {"line": 4468, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK"],"mappings":"AAAA,IAAIA,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACL,IAAIF,QAAQC,GAAG,CAACK,yBAAyB,EAAE;;SAcpC;QACL,IAAIN,QAAQC,GAAG,CAACM,QAAQ,KAAK,WAAe;YAC1C,IAAIP,QAAQC,GAAG,CAACO,SAAS,eAAE;gBACzBL,OAAOC,OAAO,GAAGC,QAAQ;YAC3B,OAAO;;QAGT,OAAO;;IAOT;AACF","ignoreList":[0]}}, - {"offset": {"line": 4487, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactServerDOMTurbopackServer\n"],"names":["module","exports","require","vendored","ReactServerDOMTurbopackServer"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,6BAA6B","ignoreList":[0]}}, - {"offset": {"line": 4491, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/client/components/builtin/global-error.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4497, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/client/components/builtin/global-error.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/components/builtin/global-error.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4504, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/global-error.tsx"],"sourcesContent":["'use client'\n\nimport { HandleISRError } from '../handle-isr-error'\n\nconst styles = {\n error: {\n // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52\n fontFamily:\n 'system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"',\n height: '100vh',\n textAlign: 'center',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n text: {\n fontSize: '14px',\n fontWeight: 400,\n lineHeight: '28px',\n margin: '0 8px',\n },\n} as const\n\nexport type GlobalErrorComponent = React.ComponentType<{\n error: any\n}>\nfunction DefaultGlobalError({ error }: { error: any }) {\n const digest: string | undefined = error?.digest\n return (\n <html id=\"__next_error__\">\n <head></head>\n <body>\n <HandleISRError error={error} />\n <div style={styles.error}>\n <div>\n <h2 style={styles.text}>\n Application error: a {digest ? 'server' : 'client'}-side exception\n has occurred while loading {window.location.hostname} (see the{' '}\n {digest ? 'server logs' : 'browser console'} for more\n information).\n </h2>\n {digest ? <p style={styles.text}>{`Digest: ${digest}`}</p> : null}\n </div>\n </div>\n </body>\n </html>\n )\n}\n\n// Exported so that the import signature in the loaders can be identical to user\n// supplied custom global error signatures.\nexport default DefaultGlobalError\n"],"names":["styles","error","fontFamily","height","textAlign","display","flexDirection","alignItems","justifyContent","text","fontSize","fontWeight","lineHeight","margin","DefaultGlobalError","digest","html","id","head","body","HandleISRError","div","style","h2","window","location","hostname","p"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4512, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactServerDOMTurbopackStatic\n"],"names":["module","exports","require","vendored","ReactServerDOMTurbopackStatic"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,6BAA6B","ignoreList":[0]}}, - {"offset": {"line": 4517, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.React\n"],"names":["module","exports","require","vendored","React"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,KAAK","ignoreList":[0]}}, - {"offset": {"line": 4521, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/layout-router.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4527, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/layout-router.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/layout-router.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4534, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/layout-router.tsx"],"sourcesContent":["'use client'\n\nimport type { CacheNode } from '../../shared/lib/app-router-types'\nimport type { LoadingModuleData } from '../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n} from '../../shared/lib/app-router-types'\nimport type { ErrorComponent } from './error-boundary'\nimport type { FocusAndScrollRef } from './router-reducer/router-reducer-types'\n\nimport React, {\n Activity,\n useContext,\n use,\n Suspense,\n useDeferredValue,\n type JSX,\n type ActivityProps,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport {\n LayoutRouterContext,\n GlobalLayoutRouterContext,\n TemplateContext,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport { unresolvedThenable } from './unresolved-thenable'\nimport { ErrorBoundary } from './error-boundary'\nimport { matchSegment } from './match-segments'\nimport { disableSmoothScrollDuringRouteTransition } from '../../shared/lib/router/utils/disable-smooth-scroll'\nimport { RedirectBoundary } from './redirect-boundary'\nimport { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary'\nimport { createRouterCacheKey } from './router-reducer/create-router-cache-key'\nimport { useRouterBFCache, type RouterBFCacheEntry } from './bfcache'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport {\n NavigationPromisesContext,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport { getParamValueFromCacheKey } from '../route-params'\nimport type { Params } from '../../server/request/params'\nimport { isDeferredRsc } from './router-reducer/ppr-navigations'\n\nconst __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = (\n ReactDOM as any\n).__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE\n\n// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available\n/**\n * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning\n */\nfunction findDOMNode(\n instance: React.ReactInstance | null | undefined\n): Element | Text | null {\n // Tree-shake for server bundle\n if (typeof window === 'undefined') return null\n\n // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init.\n // We need to lazily reference it.\n const internal_reactDOMfindDOMNode =\n __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode\n return internal_reactDOMfindDOMNode(instance)\n}\n\nconst rectProperties = [\n 'bottom',\n 'height',\n 'left',\n 'right',\n 'top',\n 'width',\n 'x',\n 'y',\n] as const\n/**\n * Check if a HTMLElement is hidden or fixed/sticky position\n */\nfunction shouldSkipElement(element: HTMLElement) {\n // we ignore fixed or sticky positioned elements since they'll likely pass the \"in-viewport\" check\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if (['sticky', 'fixed'].includes(getComputedStyle(element).position)) {\n return true\n }\n\n // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent`\n // because `offsetParent` doesn't consider document/body\n const rect = element.getBoundingClientRect()\n return rectProperties.every((item) => rect[item] === 0)\n}\n\n/**\n * Check if the top corner of the HTMLElement is in the viewport.\n */\nfunction topOfElementInViewport(element: HTMLElement, viewportHeight: number) {\n const rect = element.getBoundingClientRect()\n return rect.top >= 0 && rect.top <= viewportHeight\n}\n\n/**\n * Find the DOM node for a hash fragment.\n * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior.\n * If the hash fragment is an id, the page has to scroll to the element with that id.\n * If the hash fragment is a name, the page has to scroll to the first element with that name.\n */\nfunction getHashFragmentDomNode(hashFragment: string) {\n // If the hash fragment is `top` the page has to scroll to the top of the page.\n if (hashFragment === 'top') {\n return document.body\n }\n\n // If the hash fragment is an id, the page has to scroll to the element with that id.\n return (\n document.getElementById(hashFragment) ??\n // If the hash fragment is a name, the page has to scroll to the first element with that name.\n document.getElementsByName(hashFragment)[0]\n )\n}\ninterface ScrollAndFocusHandlerProps {\n focusAndScrollRef: FocusAndScrollRef\n children: React.ReactNode\n segmentPath: FlightSegmentPath\n}\nclass InnerScrollAndFocusHandler extends React.Component<ScrollAndFocusHandlerProps> {\n handlePotentialScroll = () => {\n // Handle scroll and focus, it's only applied once in the first useEffect that triggers that changed.\n const { focusAndScrollRef, segmentPath } = this.props\n\n if (focusAndScrollRef.apply) {\n // segmentPaths is an array of segment paths that should be scrolled to\n // if the current segment path is not in the array, the scroll is not applied\n // unless the array is empty, in which case the scroll is always applied\n if (\n focusAndScrollRef.segmentPaths.length !== 0 &&\n !focusAndScrollRef.segmentPaths.some((scrollRefSegmentPath) =>\n segmentPath.every((segment, index) =>\n matchSegment(segment, scrollRefSegmentPath[index])\n )\n )\n ) {\n return\n }\n\n let domNode:\n | ReturnType<typeof getHashFragmentDomNode>\n | ReturnType<typeof findDOMNode> = null\n const hashFragment = focusAndScrollRef.hashFragment\n\n if (hashFragment) {\n domNode = getHashFragmentDomNode(hashFragment)\n }\n\n // `findDOMNode` is tricky because it returns just the first child if the component is a fragment.\n // This already caused a bug where the first child was a <link/> in head.\n if (!domNode) {\n domNode = findDOMNode(this)\n }\n\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (!(domNode instanceof Element)) {\n return\n }\n\n // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior.\n // If the element is skipped, try to select the next sibling and try again.\n while (!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)) {\n if (process.env.NODE_ENV !== 'production') {\n if (domNode.parentElement?.localName === 'head') {\n // TODO: We enter this state when metadata was rendered as part of the page or via Next.js.\n // This is always a bug in Next.js and caused by React hoisting metadata.\n // We need to replace `findDOMNode` in favor of Fragment Refs (when available) so that we can skip over metadata.\n }\n }\n\n // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead.\n if (domNode.nextElementSibling === null) {\n return\n }\n domNode = domNode.nextElementSibling\n }\n\n // State is mutated to ensure that the focus and scroll is applied only once.\n focusAndScrollRef.apply = false\n focusAndScrollRef.hashFragment = null\n focusAndScrollRef.segmentPaths = []\n\n disableSmoothScrollDuringRouteTransition(\n () => {\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n ;(domNode as HTMLElement).scrollIntoView()\n\n return\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement\n const viewportHeight = htmlElement.clientHeight\n\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n return\n }\n\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `<html/>` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0\n\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n ;(domNode as HTMLElement).scrollIntoView()\n }\n },\n {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange,\n }\n )\n\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false\n\n // Set focus on the element\n domNode.focus()\n }\n }\n\n componentDidMount() {\n this.handlePotentialScroll()\n }\n\n componentDidUpdate() {\n // Because this property is overwritten in handlePotentialScroll it's fine to always run it when true as it'll be set to false for subsequent renders.\n if (this.props.focusAndScrollRef.apply) {\n this.handlePotentialScroll()\n }\n }\n\n render() {\n return this.props.children\n }\n}\n\nfunction ScrollAndFocusHandler({\n segmentPath,\n children,\n}: {\n segmentPath: FlightSegmentPath\n children: React.ReactNode\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n return (\n <InnerScrollAndFocusHandler\n segmentPath={segmentPath}\n focusAndScrollRef={context.focusAndScrollRef}\n >\n {children}\n </InnerScrollAndFocusHandler>\n )\n}\n\n/**\n * InnerLayoutRouter handles rendering the provided segment based on the cache.\n */\nfunction InnerLayoutRouter({\n tree,\n segmentPath,\n debugNameContext,\n cacheNode: maybeCacheNode,\n params,\n url,\n isActive,\n}: {\n tree: FlightRouterState\n segmentPath: FlightSegmentPath\n debugNameContext: string\n cacheNode: CacheNode | null\n params: Params\n url: string\n isActive: boolean\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n const parentNavPromises = useContext(NavigationPromisesContext)\n\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n const cacheNode =\n maybeCacheNode !== null\n ? maybeCacheNode\n : // This segment is not in the cache. Suspend indefinitely.\n //\n // This should only be reachable for inactive/hidden segments, during\n // prerendering The active segment should always be consistent with the\n // CacheNode tree. Regardless, if we don't have a matching CacheNode, we\n // must suspend rather than render nothing, to prevent showing an\n // inconsistent route.\n\n (use(unresolvedThenable) as never)\n\n // `rsc` represents the renderable node for this segment.\n\n // If this segment has a `prefetchRsc`, it's the statically prefetched data.\n // We should use that on initial render instead of `rsc`. Then we'll switch\n // to `rsc` when the dynamic response streams in.\n //\n // If no prefetch data is available, then we go straight to rendering `rsc`.\n const resolvedPrefetchRsc =\n cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc\n\n // We use `useDeferredValue` to handle switching between the prefetched and\n // final values. The second argument is returned on initial render, then it\n // re-renders with the first argument.\n const rsc: any = useDeferredValue(cacheNode.rsc, resolvedPrefetchRsc)\n\n // `rsc` is either a React node or a promise for a React node, except we\n // special case `null` to represent that this segment's data is missing. If\n // it's a promise, we need to unwrap it so we can determine whether or not the\n // data is missing.\n let resolvedRsc: React.ReactNode\n if (isDeferredRsc(rsc)) {\n const unwrappedRsc = use(rsc)\n if (unwrappedRsc === null) {\n // If the promise was resolved to `null`, it means the data for this\n // segment was not returned by the server. Suspend indefinitely. When this\n // happens, the router is responsible for triggering a new state update to\n // un-suspend this segment.\n use(unresolvedThenable) as never\n }\n resolvedRsc = unwrappedRsc\n } else {\n // This is not a deferred RSC promise. Don't need to unwrap it.\n if (rsc === null) {\n use(unresolvedThenable) as never\n }\n resolvedRsc = rsc\n }\n\n // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide\n // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`.\n // Promises are cached outside of render to survive suspense retries.\n let navigationPromises: NavigationPromises | null = null\n if (process.env.NODE_ENV !== 'production') {\n const { createNestedLayoutNavigationPromises } =\n require('./navigation-devtools') as typeof import('./navigation-devtools')\n\n navigationPromises = createNestedLayoutNavigationPromises(\n tree,\n parentNavPromises\n )\n }\n\n let children = resolvedRsc\n\n if (navigationPromises) {\n children = (\n <NavigationPromisesContext.Provider value={navigationPromises}>\n {resolvedRsc}\n </NavigationPromisesContext.Provider>\n )\n }\n\n children = (\n // The layout router context narrows down tree and childNodes at each level.\n <LayoutRouterContext.Provider\n value={{\n parentTree: tree,\n parentCacheNode: cacheNode,\n parentSegmentPath: segmentPath,\n parentParams: params,\n debugNameContext: debugNameContext,\n\n // TODO-APP: overriding of url for parallel routes\n url: url,\n isActive: isActive,\n }}\n >\n {children}\n </LayoutRouterContext.Provider>\n )\n\n return children\n}\n\n/**\n * Renders suspense boundary with the provided \"loading\" property as the fallback.\n * If no loading property is provided it renders the children without a suspense boundary.\n */\nfunction LoadingBoundary({\n name,\n loading,\n children,\n}: {\n name: ActivityProps['name']\n loading: LoadingModuleData | Promise<LoadingModuleData>\n children: React.ReactNode\n}): JSX.Element {\n // If loading is a promise, unwrap it. This happens in cases where we haven't\n // yet received the loading data from the server — which includes whether or\n // not this layout has a loading component at all.\n //\n // It's OK to suspend here instead of inside the fallback because this\n // promise will resolve simultaneously with the data for the segment itself.\n // So it will never suspend for longer than it would have if we didn't use\n // a Suspense fallback at all.\n let loadingModuleData\n if (\n typeof loading === 'object' &&\n loading !== null &&\n typeof (loading as any).then === 'function'\n ) {\n const promiseForLoading = loading as Promise<LoadingModuleData>\n loadingModuleData = use(promiseForLoading)\n } else {\n loadingModuleData = loading as LoadingModuleData\n }\n\n if (loadingModuleData) {\n const loadingRsc = loadingModuleData[0]\n const loadingStyles = loadingModuleData[1]\n const loadingScripts = loadingModuleData[2]\n return (\n <Suspense\n name={name}\n fallback={\n <>\n {loadingStyles}\n {loadingScripts}\n {loadingRsc}\n </>\n }\n >\n {children}\n </Suspense>\n )\n }\n\n return <>{children}</>\n}\n\n/**\n * OuterLayoutRouter handles the current segment as well as <Offscreen> rendering of other segments.\n * It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes.\n */\nexport default function OuterLayoutRouter({\n parallelRouterKey,\n error,\n errorStyles,\n errorScripts,\n templateStyles,\n templateScripts,\n template,\n notFound,\n forbidden,\n unauthorized,\n segmentViewBoundaries,\n}: {\n parallelRouterKey: string\n error: ErrorComponent | undefined\n errorStyles: React.ReactNode | undefined\n errorScripts: React.ReactNode | undefined\n templateStyles: React.ReactNode | undefined\n templateScripts: React.ReactNode | undefined\n template: React.ReactNode\n notFound: React.ReactNode | undefined\n forbidden: React.ReactNode | undefined\n unauthorized: React.ReactNode | undefined\n segmentViewBoundaries?: React.ReactNode\n}) {\n const context = useContext(LayoutRouterContext)\n if (!context) {\n throw new Error('invariant expected layout router to be mounted')\n }\n\n const {\n parentTree,\n parentCacheNode,\n parentSegmentPath,\n parentParams,\n url,\n isActive,\n debugNameContext,\n } = context\n\n // Get the CacheNode for this segment by reading it from the parent segment's\n // child map.\n const parentParallelRoutes = parentCacheNode.parallelRoutes\n let segmentMap = parentParallelRoutes.get(parallelRouterKey)\n // If the parallel router cache node does not exist yet, create it.\n // This writes to the cache when there is no item in the cache yet. It never *overwrites* existing cache items which is why it's safe in concurrent mode.\n if (!segmentMap) {\n segmentMap = new Map()\n parentParallelRoutes.set(parallelRouterKey, segmentMap)\n }\n const parentTreeSegment = parentTree[0]\n const segmentPath =\n parentSegmentPath === null\n ? // TODO: The root segment value is currently omitted from the segment\n // path. This has led to a bunch of special cases scattered throughout\n // the code. We should clean this up.\n [parallelRouterKey]\n : parentSegmentPath.concat([parentTreeSegment, parallelRouterKey])\n\n // The \"state\" key of a segment is the one passed to React — it represents the\n // identity of the UI tree. Whenever the state key changes, the tree is\n // recreated and the state is reset. In the App Router model, search params do\n // not cause state to be lost, so two segments with the same segment path but\n // different search params should have the same state key.\n //\n // The \"cache\" key of a segment, however, *does* include the search params, if\n // it's possible that the segment accessed the search params on the server.\n // (This only applies to page segments; layout segments cannot access search\n // params on the server.)\n const activeTree = parentTree[1][parallelRouterKey]\n if (activeTree === undefined) {\n // Could not find a matching segment. The client tree is inconsistent with\n // the server tree. Suspend indefinitely; the router will have already\n // detected the inconsistency when handling the server response, and\n // triggered a refresh of the page to recover.\n use(unresolvedThenable) as never\n }\n\n const activeSegment = activeTree[0]\n const activeStateKey = createRouterCacheKey(activeSegment, true) // no search params\n\n // At each level of the route tree, not only do we render the currently\n // active segment — we also render the last N segments that were active at\n // this level inside a hidden <Activity> boundary, to preserve their state\n // if or when the user navigates to them again.\n //\n // bfcacheEntry is a linked list of FlightRouterStates.\n let bfcacheEntry: RouterBFCacheEntry | null = useRouterBFCache(\n activeTree,\n activeStateKey\n )\n let children: Array<React.ReactNode> = []\n do {\n const tree = bfcacheEntry.tree\n const stateKey = bfcacheEntry.stateKey\n const segment = tree[0]\n const cacheKey = createRouterCacheKey(segment)\n\n // Read segment path from the parallel router cache node.\n const cacheNode = segmentMap.get(cacheKey) ?? null\n\n /*\n - Error boundary\n - Only renders error boundary if error component is provided.\n - Rendered for each segment to ensure they have their own error state.\n - When gracefully degrade for bots, skip rendering error boundary.\n - Loading boundary\n - Only renders suspense boundary if loading components is provided.\n - Rendered for each segment to ensure they have their own loading state.\n - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch.\n */\n\n let segmentBoundaryTriggerNode: React.ReactNode = null\n let segmentViewStateNode: React.ReactNode = null\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentBoundaryTriggerNode, SegmentViewStateNode } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n const pagePrefix = normalizeAppPath(url)\n segmentViewStateNode = (\n <SegmentViewStateNode key={pagePrefix} page={pagePrefix} />\n )\n\n segmentBoundaryTriggerNode = (\n <>\n <SegmentBoundaryTriggerNode />\n </>\n )\n }\n\n let params = parentParams\n if (Array.isArray(segment)) {\n // This segment contains a route param. Accumulate these as we traverse\n // down the router tree. The result represents the set of params that\n // the layout/page components are permitted to access below this point.\n const paramName = segment[0]\n const paramCacheKey = segment[1]\n const paramType = segment[2]\n const paramValue = getParamValueFromCacheKey(paramCacheKey, paramType)\n if (paramValue !== null) {\n params = {\n ...parentParams,\n [paramName]: paramValue,\n }\n }\n }\n\n const debugName = getBoundaryDebugNameFromSegment(segment)\n // `debugNameContext` represents the nearest non-\"virtual\" parent segment.\n // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments.\n // So if `debugName` is undefined, the context is passed through unchanged.\n const childDebugNameContext = debugName ?? debugNameContext\n\n // In practical terms, clicking this name in the Suspense DevTools\n // should select the child slots of that layout.\n //\n // So the name we apply to the Activity boundary is actually based on\n // the nearest parent segments.\n //\n // We skip over \"virtual\" parents, i.e. ones inserted by Next.js that\n // don't correspond to application-defined code.\n const isVirtual = debugName === undefined\n const debugNameToDisplay = isVirtual ? undefined : debugNameContext\n\n // TODO: The loading module data for a segment is stored on the parent, then\n // applied to each of that parent segment's parallel route slots. In the\n // simple case where there's only one parallel route (the `children` slot),\n // this is no different from if the loading module data where stored on the\n // child directly. But I'm not sure this actually makes sense when there are\n // multiple parallel routes. It's not a huge issue because you always have\n // the option to define a narrower loading boundary for a particular slot. But\n // this sort of smells like an implementation accident to me.\n const loadingModuleData = parentCacheNode.loading\n let child = (\n <TemplateContext.Provider\n key={stateKey}\n value={\n <ScrollAndFocusHandler segmentPath={segmentPath}>\n <ErrorBoundary\n errorComponent={error}\n errorStyles={errorStyles}\n errorScripts={errorScripts}\n >\n <LoadingBoundary\n name={debugNameToDisplay}\n loading={loadingModuleData}\n >\n <HTTPAccessFallbackBoundary\n notFound={notFound}\n forbidden={forbidden}\n unauthorized={unauthorized}\n >\n <RedirectBoundary>\n <InnerLayoutRouter\n url={url}\n tree={tree}\n params={params}\n cacheNode={cacheNode}\n segmentPath={segmentPath}\n debugNameContext={childDebugNameContext}\n isActive={isActive && stateKey === activeStateKey}\n />\n {segmentBoundaryTriggerNode}\n </RedirectBoundary>\n </HTTPAccessFallbackBoundary>\n </LoadingBoundary>\n </ErrorBoundary>\n {segmentViewStateNode}\n </ScrollAndFocusHandler>\n }\n >\n {templateStyles}\n {templateScripts}\n {template}\n </TemplateContext.Provider>\n )\n\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentStateProvider } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n child = (\n <SegmentStateProvider key={stateKey}>\n {child}\n {segmentViewBoundaries}\n </SegmentStateProvider>\n )\n }\n\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n child = (\n <Activity\n name={debugNameToDisplay}\n key={stateKey}\n mode={stateKey === activeStateKey ? 'visible' : 'hidden'}\n >\n {child}\n </Activity>\n )\n }\n\n children.push(child)\n\n bfcacheEntry = bfcacheEntry.next\n } while (bfcacheEntry !== null)\n\n return children\n}\n\nfunction getBoundaryDebugNameFromSegment(segment: Segment): string | undefined {\n if (segment === '/') {\n // Reached the root\n return '/'\n }\n if (typeof segment === 'string') {\n if (isVirtualLayout(segment)) {\n return undefined\n } else {\n return segment + '/'\n }\n }\n const paramCacheKey = segment[1]\n return paramCacheKey + '/'\n}\n\nfunction isVirtualLayout(segment: string): boolean {\n return (\n // This is inserted by the loader. We should consider encoding these\n // in a more special way instead of checking the name, to distinguish them\n // from app-defined groups.\n segment === '(slot)'\n )\n}\n"],"names":["React","Activity","useContext","use","Suspense","useDeferredValue","ReactDOM","LayoutRouterContext","GlobalLayoutRouterContext","TemplateContext","unresolvedThenable","ErrorBoundary","matchSegment","disableSmoothScrollDuringRouteTransition","RedirectBoundary","HTTPAccessFallbackBoundary","createRouterCacheKey","useRouterBFCache","normalizeAppPath","NavigationPromisesContext","getParamValueFromCacheKey","isDeferredRsc","__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","findDOMNode","instance","window","internal_reactDOMfindDOMNode","rectProperties","shouldSkipElement","element","includes","getComputedStyle","position","rect","getBoundingClientRect","every","item","topOfElementInViewport","viewportHeight","top","getHashFragmentDomNode","hashFragment","document","body","getElementById","getElementsByName","InnerScrollAndFocusHandler","Component","componentDidMount","handlePotentialScroll","componentDidUpdate","props","focusAndScrollRef","apply","render","children","segmentPath","segmentPaths","length","some","scrollRefSegmentPath","segment","index","domNode","Element","HTMLElement","process","env","NODE_ENV","parentElement","localName","nextElementSibling","scrollIntoView","htmlElement","documentElement","clientHeight","scrollTop","dontForceLayout","onlyHashChange","focus","ScrollAndFocusHandler","context","Error","InnerLayoutRouter","tree","debugNameContext","cacheNode","maybeCacheNode","params","url","isActive","parentNavPromises","resolvedPrefetchRsc","prefetchRsc","rsc","resolvedRsc","unwrappedRsc","navigationPromises","createNestedLayoutNavigationPromises","require","Provider","value","parentTree","parentCacheNode","parentSegmentPath","parentParams","LoadingBoundary","name","loading","loadingModuleData","then","promiseForLoading","loadingRsc","loadingStyles","loadingScripts","fallback","OuterLayoutRouter","parallelRouterKey","error","errorStyles","errorScripts","templateStyles","templateScripts","template","notFound","forbidden","unauthorized","segmentViewBoundaries","parentParallelRoutes","parallelRoutes","segmentMap","get","Map","set","parentTreeSegment","concat","activeTree","undefined","activeSegment","activeStateKey","bfcacheEntry","stateKey","cacheKey","segmentBoundaryTriggerNode","segmentViewStateNode","SegmentBoundaryTriggerNode","SegmentViewStateNode","pagePrefix","page","Array","isArray","paramName","paramCacheKey","paramType","paramValue","debugName","getBoundaryDebugNameFromSegment","childDebugNameContext","isVirtual","debugNameToDisplay","child","errorComponent","SegmentStateProvider","__NEXT_CACHE_COMPONENTS","mode","push","next","isVirtualLayout"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4541, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/render-from-template-context.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4547, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/render-from-template-context.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4554, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/render-from-template-context.tsx"],"sourcesContent":["'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport { TemplateContext } from '../../shared/lib/app-router-context.shared-runtime'\n\nexport default function RenderFromTemplateContext(): JSX.Element {\n const children = useContext(TemplateContext)\n return <>{children}</>\n}\n"],"names":["React","useContext","TemplateContext","RenderFromTemplateContext","children"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4561, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/client-page.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4567, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/client-page.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-page.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4574, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-page.tsx"],"sourcesContent":["'use client'\n\nimport type { ParsedUrlQuery } from 'querystring'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\nimport { urlSearchParamsToParsedUrlQuery } from '../route-params'\nimport { SearchParamsContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * When the Page is a client component we send the params and searchParams to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Page component.\n *\n * additionally we may send promises representing the params and searchParams. We don't ever use these passed\n * values but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations.\n * It is up to the caller to decide if the promises are needed.\n */\nexport function ClientPageRoot({\n Component,\n serverProvidedParams,\n}: {\n Component: React.ComponentType<any>\n serverProvidedParams: null | {\n searchParams: ParsedUrlQuery\n params: Params\n promises: Array<Promise<any>> | null\n }\n}) {\n let searchParams: ParsedUrlQuery\n let params: Params\n if (serverProvidedParams !== null) {\n searchParams = serverProvidedParams.searchParams\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params as\n // props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n\n // This is an intentional behavior change: when Cache Components is enabled,\n // client segments receive the \"canonical\" search params, not the\n // rewritten ones. Users should either call useSearchParams directly or pass\n // the rewritten ones in from a Server Component.\n // TODO: Log a deprecation error when this object is accessed\n searchParams = urlSearchParamsToParsedUrlQuery(use(SearchParamsContext)!)\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientSearchParams: Promise<ParsedUrlQuery>\n let clientParams: Promise<Params>\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling searchParams in a client Page.'\n )\n }\n\n const { createSearchParamsFromClient } =\n require('../../server/request/search-params') as typeof import('../../server/request/search-params')\n clientSearchParams = createSearchParamsFromClient(searchParams, store)\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return <Component params={clientParams} searchParams={clientSearchParams} />\n } else {\n const { createRenderSearchParamsFromClient } =\n require('../request/search-params.browser') as typeof import('../request/search-params.browser')\n const clientSearchParams = createRenderSearchParamsFromClient(searchParams)\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n\n return <Component params={clientParams} searchParams={clientSearchParams} />\n }\n}\n"],"names":["InvariantError","LayoutRouterContext","use","urlSearchParamsToParsedUrlQuery","SearchParamsContext","ClientPageRoot","Component","serverProvidedParams","searchParams","params","layoutRouterContext","parentParams","window","workAsyncStorage","require","clientSearchParams","clientParams","store","getStore","createSearchParamsFromClient","createParamsFromClient","createRenderSearchParamsFromClient","createRenderParamsFromClient"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4581, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/client-segment.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4587, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/client-segment.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-segment.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4594, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-segment.tsx"],"sourcesContent":["'use client'\n\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\n\n/**\n * When the Page is a client component we send the params to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Segment component.\n *\n * additionally we may send a promise representing params. We don't ever use this passed\n * value but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations\n * such as when cacheComponents is enabled. It is up to the caller to decide if the promises are needed.\n */\nexport function ClientSegmentRoot({\n Component,\n slots,\n serverProvidedParams,\n}: {\n Component: React.ComponentType<any>\n slots: { [key: string]: React.ReactNode }\n serverProvidedParams: null | {\n params: Params\n promises: Array<Promise<any>> | null\n }\n}) {\n let params: Params\n if (serverProvidedParams !== null) {\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params\n // as props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientParams: Promise<Params>\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling params in a client segment such as a Layout or Template.'\n )\n }\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return <Component {...slots} params={clientParams} />\n } else {\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n return <Component {...slots} params={clientParams} />\n }\n}\n"],"names":["InvariantError","LayoutRouterContext","use","ClientSegmentRoot","Component","slots","serverProvidedParams","params","layoutRouterContext","parentParams","window","workAsyncStorage","require","clientParams","store","getStore","createParamsFromClient","createRenderParamsFromClient"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4602, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/reflect.ts"],"sourcesContent":["export class ReflectAdapter {\n static get<T extends object>(\n target: T,\n prop: string | symbol,\n receiver: unknown\n ): any {\n const value = Reflect.get(target, prop, receiver)\n if (typeof value === 'function') {\n return value.bind(target)\n }\n\n return value\n }\n\n static set<T extends object>(\n target: T,\n prop: string | symbol,\n value: any,\n receiver: any\n ): boolean {\n return Reflect.set(target, prop, value, receiver)\n }\n\n static has<T extends object>(target: T, prop: string | symbol): boolean {\n return Reflect.has(target, prop)\n }\n\n static deleteProperty<T extends object>(\n target: T,\n prop: string | symbol\n ): boolean {\n return Reflect.deleteProperty(target, prop)\n }\n}\n"],"names":["ReflectAdapter","get","target","prop","receiver","value","Reflect","bind","set","has","deleteProperty"],"mappings":";;;;AAAO,MAAMA;IACX,OAAOC,IACLC,MAAS,EACTC,IAAqB,EACrBC,QAAiB,EACZ;QACL,MAAMC,QAAQC,QAAQL,GAAG,CAACC,QAAQC,MAAMC;QACxC,IAAI,OAAOC,UAAU,YAAY;YAC/B,OAAOA,MAAME,IAAI,CAACL;QACpB;QAEA,OAAOG;IACT;IAEA,OAAOG,IACLN,MAAS,EACTC,IAAqB,EACrBE,KAAU,EACVD,QAAa,EACJ;QACT,OAAOE,QAAQE,GAAG,CAACN,QAAQC,MAAME,OAAOD;IAC1C;IAEA,OAAOK,IAAsBP,MAAS,EAAEC,IAAqB,EAAW;QACtE,OAAOG,QAAQG,GAAG,CAACP,QAAQC;IAC7B;IAEA,OAAOO,eACLR,MAAS,EACTC,IAAqB,EACZ;QACT,OAAOG,QAAQI,cAAc,CAACR,QAAQC;IACxC;AACF","ignoreList":[0]}}, - {"offset": {"line": 4628, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/hooks-server-context.ts"],"sourcesContent":["const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'\n\nexport class DynamicServerError extends Error {\n digest: typeof DYNAMIC_ERROR_CODE = DYNAMIC_ERROR_CODE\n\n constructor(public readonly description: string) {\n super(`Dynamic server usage: ${description}`)\n }\n}\n\nexport function isDynamicServerError(err: unknown): err is DynamicServerError {\n if (\n typeof err !== 'object' ||\n err === null ||\n !('digest' in err) ||\n typeof err.digest !== 'string'\n ) {\n return false\n }\n\n return err.digest === DYNAMIC_ERROR_CODE\n}\n"],"names":["DYNAMIC_ERROR_CODE","DynamicServerError","Error","constructor","description","digest","isDynamicServerError","err"],"mappings":";;;;;;AAAA,MAAMA,qBAAqB;AAEpB,MAAMC,2BAA2BC;IAGtCC,YAA4BC,WAAmB,CAAE;QAC/C,KAAK,CAAC,CAAC,sBAAsB,EAAEA,aAAa,GAAA,IAAA,CADlBA,WAAAA,GAAAA,aAAAA,IAAAA,CAF5BC,MAAAA,GAAoCL;IAIpC;AACF;AAEO,SAASM,qBAAqBC,GAAY;IAC/C,IACE,OAAOA,QAAQ,YACfA,QAAQ,QACR,CAAE,CAAA,YAAYA,GAAE,KAChB,OAAOA,IAAIF,MAAM,KAAK,UACtB;QACA,OAAO;IACT;IAEA,OAAOE,IAAIF,MAAM,KAAKL;AACxB","ignoreList":[0]}}, - {"offset": {"line": 4650, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/static-generation-bailout.ts"],"sourcesContent":["const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'\n\nexport class StaticGenBailoutError extends Error {\n public readonly code = NEXT_STATIC_GEN_BAILOUT\n}\n\nexport function isStaticGenBailoutError(\n error: unknown\n): error is StaticGenBailoutError {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false\n }\n\n return error.code === NEXT_STATIC_GEN_BAILOUT\n}\n"],"names":["NEXT_STATIC_GEN_BAILOUT","StaticGenBailoutError","Error","code","isStaticGenBailoutError","error"],"mappings":";;;;;;AAAA,MAAMA,0BAA0B;AAEzB,MAAMC,8BAA8BC;;QAApC,KAAA,IAAA,OAAA,IAAA,CACWC,IAAAA,GAAOH;;AACzB;AAEO,SAASI,wBACdC,KAAc;IAEd,IAAI,OAAOA,UAAU,YAAYA,UAAU,QAAQ,CAAE,CAAA,UAAUA,KAAI,GAAI;QACrE,OAAO;IACT;IAEA,OAAOA,MAAMF,IAAI,KAAKH;AACxB","ignoreList":[0]}}, - {"offset": {"line": 4672, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/dynamic-rendering-utils.ts"],"sourcesContent":["import type { NonStaticRenderStage } from './app-render/staged-rendering'\nimport type { RequestStore } from './app-render/work-unit-async-storage.external'\n\nexport function isHangingPromiseRejectionError(\n err: unknown\n): err is HangingPromiseRejectionError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === HANGING_PROMISE_REJECTION\n}\n\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'\n\nclass HangingPromiseRejectionError extends Error {\n public readonly digest = HANGING_PROMISE_REJECTION\n\n constructor(\n public readonly route: string,\n public readonly expression: string\n ) {\n super(\n `During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`\n )\n }\n}\n\ntype AbortListeners = Array<(err: unknown) => void>\nconst abortListenersBySignal = new WeakMap<AbortSignal, AbortListeners>()\n\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */\nexport function makeHangingPromise<T>(\n signal: AbortSignal,\n route: string,\n expression: string\n): Promise<T> {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression))\n } else {\n const hangingPromise = new Promise<T>((_, reject) => {\n const boundRejection = reject.bind(\n null,\n new HangingPromiseRejectionError(route, expression)\n )\n let currentListeners = abortListenersBySignal.get(signal)\n if (currentListeners) {\n currentListeners.push(boundRejection)\n } else {\n const listeners = [boundRejection]\n abortListenersBySignal.set(signal, listeners)\n signal.addEventListener(\n 'abort',\n () => {\n for (let i = 0; i < listeners.length; i++) {\n listeners[i]()\n }\n },\n { once: true }\n )\n }\n })\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject)\n return hangingPromise\n }\n}\n\nfunction ignoreReject() {}\n\nexport function makeDevtoolsIOAwarePromise<T>(\n underlying: T,\n requestStore: RequestStore,\n stage: NonStaticRenderStage\n): Promise<T> {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(\n stage,\n undefined,\n underlying\n )\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise<T>((resolve) => {\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(() => {\n resolve(underlying)\n }, 0)\n })\n}\n"],"names":["isHangingPromiseRejectionError","err","digest","HANGING_PROMISE_REJECTION","HangingPromiseRejectionError","Error","constructor","route","expression","abortListenersBySignal","WeakMap","makeHangingPromise","signal","aborted","Promise","reject","hangingPromise","_","boundRejection","bind","currentListeners","get","push","listeners","set","addEventListener","i","length","once","catch","ignoreReject","makeDevtoolsIOAwarePromise","underlying","requestStore","stage","stagedRendering","delayUntilStage","undefined","resolve","setTimeout"],"mappings":";;;;;;;;AAGO,SAASA,+BACdC,GAAY;IAEZ,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIC,MAAM,KAAKC;AACxB;AAEA,MAAMA,4BAA4B;AAElC,MAAMC,qCAAqCC;IAGzCC,YACkBC,KAAa,EACbC,UAAkB,CAClC;QACA,KAAK,CACH,CAAC,qBAAqB,EAAEA,WAAW,qGAAqG,EAAEA,WAAW,8KAA8K,EAAED,MAAM,EAAE,CAAC,GAAA,IAAA,CAJhUA,KAAAA,GAAAA,OAAAA,IAAAA,CACAC,UAAAA,GAAAA,YAAAA,IAAAA,CAJFN,MAAAA,GAASC;IASzB;AACF;AAGA,MAAMM,yBAAyB,IAAIC;AAS5B,SAASC,mBACdC,MAAmB,EACnBL,KAAa,EACbC,UAAkB;IAElB,IAAII,OAAOC,OAAO,EAAE;QAClB,OAAOC,QAAQC,MAAM,CAAC,IAAIX,6BAA6BG,OAAOC;IAChE,OAAO;QACL,MAAMQ,iBAAiB,IAAIF,QAAW,CAACG,GAAGF;YACxC,MAAMG,iBAAiBH,OAAOI,IAAI,CAChC,MACA,IAAIf,6BAA6BG,OAAOC;YAE1C,IAAIY,mBAAmBX,uBAAuBY,GAAG,CAACT;YAClD,IAAIQ,kBAAkB;gBACpBA,iBAAiBE,IAAI,CAACJ;YACxB,OAAO;gBACL,MAAMK,YAAY;oBAACL;iBAAe;gBAClCT,uBAAuBe,GAAG,CAACZ,QAAQW;gBACnCX,OAAOa,gBAAgB,CACrB,SACA;oBACE,IAAK,IAAIC,IAAI,GAAGA,IAAIH,UAAUI,MAAM,EAAED,IAAK;wBACzCH,SAAS,CAACG,EAAE;oBACd;gBACF,GACA;oBAAEE,MAAM;gBAAK;YAEjB;QACF;QACA,2GAA2G;QAC3G,6GAA6G;QAC7G,yFAAyF;QACzFZ,eAAea,KAAK,CAACC;QACrB,OAAOd;IACT;AACF;AAEA,SAASc,gBAAgB;AAElB,SAASC,2BACdC,UAAa,EACbC,YAA0B,EAC1BC,KAA2B;IAE3B,IAAID,aAAaE,eAAe,EAAE;QAChC,iFAAiF;QACjF,OAAOF,aAAaE,eAAe,CAACC,eAAe,CACjDF,OACAG,WACAL;IAEJ;IACA,kEAAkE;IAClE,2EAA2E;IAC3E,OAAO,IAAIlB,QAAW,CAACwB;QACrB,sFAAsF;QACtFC,WAAW;YACTD,QAAQN;QACV,GAAG;IACL;AACF","ignoreList":[0]}}, - {"offset": {"line": 4742, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-constants.tsx"],"sourcesContent":["export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'\n"],"names":["METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME"],"mappings":";;;;;;;;;;AAAO,MAAMA,yBAAyB,6BAA4B;AAC3D,MAAMC,yBAAyB,6BAA4B;AAC3D,MAAMC,uBAAuB,2BAA0B;AACvD,MAAMC,4BAA4B,gCAA+B","ignoreList":[0]}}, - {"offset": {"line": 4760, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/scheduler.ts"],"sourcesContent":["export type ScheduledFn<T = void> = () => T | PromiseLike<T>\nexport type SchedulerFn<T = void> = (cb: ScheduledFn<T>) => void\n\n/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */\nexport const scheduleOnNextTick = (cb: ScheduledFn<void>) => {\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(() => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n process.nextTick(cb)\n }\n })\n}\n\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */\nexport const scheduleImmediate = (cb: ScheduledFn<void>): void => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n setImmediate(cb)\n }\n}\n\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */\nexport function atLeastOneTask() {\n return new Promise<void>((resolve) => scheduleImmediate(resolve))\n}\n\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */\nexport function waitAtLeastOneReactRenderTask(): Promise<void> {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r) => setTimeout(r, 0))\n } else {\n return new Promise((r) => setImmediate(r))\n }\n}\n"],"names":["scheduleOnNextTick","cb","Promise","resolve","then","process","env","NEXT_RUNTIME","setTimeout","nextTick","scheduleImmediate","setImmediate","atLeastOneTask","waitAtLeastOneReactRenderTask","r"],"mappings":"AAGA;;;;;CAKC,GACD;;;;;;;;;;AAAO,MAAMA,qBAAqB,CAACC;IACjC,6EAA6E;IAC7E,4EAA4E;IAC5E,uCAAuC;IACvC,EAAE;IACF,kLAAkL;IAClL,EAAE;IACFC,QAAQC,OAAO,GAAGC,IAAI,CAAC;QACrB,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;aAElC;YACLF,QAAQI,QAAQ,CAACR;QACnB;IACF;AACF,EAAC;AAQM,MAAMS,oBAAoB,CAACT;IAChC,IAAII,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACLI,aAAaV;IACf;AACF,EAAC;AAOM,SAASW;IACd,OAAO,IAAIV,QAAc,CAACC,UAAYO,kBAAkBP;AAC1D;AAWO,SAASU;IACd,IAAIR,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACL,OAAO,IAAIL,QAAQ,CAACY,IAAMH,aAAaG;IACzC;AACF","ignoreList":[0]}}, - {"offset": {"line": 4811, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/lazy-dynamic/bailout-to-csr.ts"],"sourcesContent":["// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'\n\n/** An error that should be thrown when we want to bail out to client-side rendering. */\nexport class BailoutToCSRError extends Error {\n public readonly digest = BAILOUT_TO_CSR\n\n constructor(public readonly reason: string) {\n super(`Bail out to client-side rendering: ${reason}`)\n }\n}\n\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */\nexport function isBailoutToCSRError(err: unknown): err is BailoutToCSRError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === BAILOUT_TO_CSR\n}\n"],"names":["BAILOUT_TO_CSR","BailoutToCSRError","Error","constructor","reason","digest","isBailoutToCSRError","err"],"mappings":";;;;;;AAAA,+GAA+G;AAC/G,MAAMA,iBAAiB;AAGhB,MAAMC,0BAA0BC;IAGrCC,YAA4BC,MAAc,CAAE;QAC1C,KAAK,CAAC,CAAC,mCAAmC,EAAEA,QAAQ,GAAA,IAAA,CAD1BA,MAAAA,GAAAA,QAAAA,IAAAA,CAFZC,MAAAA,GAASL;IAIzB;AACF;AAGO,SAASM,oBAAoBC,GAAY;IAC9C,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIF,MAAM,KAAKL;AACxB","ignoreList":[0]}}, - {"offset": {"line": 4834, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/invariant-error.ts"],"sourcesContent":["export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n"],"names":["InvariantError","Error","constructor","message","options","endsWith","name"],"mappings":";;;;AAAO,MAAMA,uBAAuBC;IAClCC,YAAYC,OAAe,EAAEC,OAAsB,CAAE;QACnD,KAAK,CACH,CAAC,WAAW,EAAED,QAAQE,QAAQ,CAAC,OAAOF,UAAUA,UAAU,IAAI,0BAA0B,CAAC,EACzFC;QAEF,IAAI,CAACE,IAAI,GAAG;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 4848, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/dynamic-rendering.ts"],"sourcesContent":["/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */\n\nimport type { WorkStore } from '../app-render/work-async-storage.external'\nimport type {\n WorkUnitStore,\n PrerenderStoreLegacy,\n PrerenderStoreModern,\n PrerenderStoreModernRuntime,\n} from '../app-render/work-unit-async-storage.external'\n\n// Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react'\n\nimport { DynamicServerError } from '../../client/components/hooks-server-context'\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport {\n getRuntimeStagePromise,\n throwForMissingRequestStore,\n workUnitAsyncStorage,\n} from './work-unit-async-storage.external'\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from '../../lib/framework/boundary-constants'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nconst hasPostpone = typeof React.unstable_postpone === 'function'\n\nexport type DynamicAccess = {\n /**\n * If debugging, this will contain the stack trace of where the dynamic access\n * occurred. This is used to provide more information to the user about why\n * their page is being rendered dynamically.\n */\n stack?: string\n\n /**\n * The expression that was accessed dynamically.\n */\n expression: string\n}\n\n// Stores dynamic reasons used during an RSC render.\nexport type DynamicTrackingState = {\n /**\n * When true, stack information will also be tracked during dynamic access.\n */\n readonly isDebugDynamicAccesses: boolean | undefined\n\n /**\n * The dynamic accesses that occurred during the render.\n */\n readonly dynamicAccesses: Array<DynamicAccess>\n\n syncDynamicErrorWithStack: null | Error\n}\n\n// Stores dynamic reasons used during an SSR render.\nexport type DynamicValidationState = {\n hasSuspenseAboveBody: boolean\n hasDynamicMetadata: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array<Error>\n}\n\nexport function createDynamicTrackingState(\n isDebugDynamicAccesses: boolean | undefined\n): DynamicTrackingState {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null,\n }\n}\n\nexport function createDynamicValidationState(): DynamicValidationState {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n }\n}\n\nexport function getFirstDynamicReason(\n trackingState: DynamicTrackingState\n): undefined | string {\n return trackingState.dynamicAccesses[0]?.expression\n}\n\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */\nexport function markCurrentScopeAsDynamic(\n store: WorkStore,\n workUnitStore: undefined | Exclude<WorkUnitStore, PrerenderStoreModern>,\n expression: string\n): void {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return\n\n if (store.dynamicShouldError) {\n throw new StaticGenBailoutError(\n `Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n }\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-ppr':\n return postponeWithTracking(\n store.route,\n expression,\n workUnitStore.dynamicTracking\n )\n case 'prerender-legacy':\n workUnitStore.revalidate = 0\n\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */\nexport function throwToInterruptStaticGeneration(\n expression: string,\n store: WorkStore,\n prerenderStore: PrerenderStoreLegacy\n): never {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n\n prerenderStore.revalidate = 0\n\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n}\n\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */\nexport function trackDynamicDataInDynamicRender(workUnitStore: WorkUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n break\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n}\n\nfunction abortOnSynchronousDynamicDataAccess(\n route: string,\n expression: string,\n prerenderStore: PrerenderStoreModern\n): void {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n\n const error = createPrerenderInterruptedError(reason)\n\n prerenderStore.controller.abort(error)\n\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function abortOnSynchronousPlatformIOAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): void {\n const dynamicTracking = prerenderStore.dynamicTracking\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n}\n\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */\nexport function abortAndThrowOnSynchronousRequestDataAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): never {\n const prerenderSignal = prerenderStore.controller.signal\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n }\n throw createPrerenderInterruptedError(\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n )\n}\n\n/**\n * This component will call `React.postpone` that throws the postponed error.\n */\ntype PostponeProps = {\n reason: string\n route: string\n}\nexport function Postpone({ reason, route }: PostponeProps): never {\n const prerenderStore = workUnitAsyncStorage.getStore()\n const dynamicTracking =\n prerenderStore && prerenderStore.type === 'prerender-ppr'\n ? prerenderStore.dynamicTracking\n : null\n postponeWithTracking(route, reason, dynamicTracking)\n}\n\nexport function postponeWithTracking(\n route: string,\n expression: string,\n dynamicTracking: null | DynamicTrackingState\n): never {\n assertPostpone()\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n\n React.unstable_postpone(createPostponeReason(route, expression))\n}\n\nfunction createPostponeReason(route: string, expression: string) {\n return (\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` +\n `React throws this special object to indicate where. It should not be caught by ` +\n `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`\n )\n}\n\nexport function isDynamicPostpone(err: unknown) {\n if (\n typeof err === 'object' &&\n err !== null &&\n typeof (err as any).message === 'string'\n ) {\n return isDynamicPostponeReason((err as any).message)\n }\n return false\n}\n\nfunction isDynamicPostponeReason(reason: string) {\n return (\n reason.includes(\n 'needs to bail out of prerendering at this point because it used'\n ) &&\n reason.includes(\n 'Learn more: https://nextjs.org/docs/messages/ppr-caught-error'\n )\n )\n}\n\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw new Error(\n 'Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'\n )\n}\n\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'\n\nfunction createPrerenderInterruptedError(message: string): Error {\n const error = new Error(message)\n ;(error as any).digest = NEXT_PRERENDER_INTERRUPTED\n return error\n}\n\ntype DigestError = Error & {\n digest: string\n}\n\nexport function isPrerenderInterruptedError(\n error: unknown\n): error is DigestError {\n return (\n typeof error === 'object' &&\n error !== null &&\n (error as any).digest === NEXT_PRERENDER_INTERRUPTED &&\n 'name' in error &&\n 'message' in error &&\n error instanceof Error\n )\n}\n\nexport function accessedDynamicData(\n dynamicAccesses: Array<DynamicAccess>\n): boolean {\n return dynamicAccesses.length > 0\n}\n\nexport function consumeDynamicAccess(\n serverDynamic: DynamicTrackingState,\n clientDynamic: DynamicTrackingState\n): DynamicTrackingState['dynamicAccesses'] {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses)\n return serverDynamic.dynamicAccesses\n}\n\nexport function formatDynamicAPIAccesses(\n dynamicAccesses: Array<DynamicAccess>\n): string[] {\n return dynamicAccesses\n .filter(\n (access): access is Required<DynamicAccess> =>\n typeof access.stack === 'string' && access.stack.length > 0\n )\n .map(({ expression, stack }) => {\n stack = stack\n .split('\\n')\n // Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4)\n .filter((line) => {\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false\n }\n\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' (<anonymous>)')) {\n return false\n }\n\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false\n }\n\n return true\n })\n .join('\\n')\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`\n })\n}\n\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw new Error(\n `Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`\n )\n }\n}\n\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */\nexport function createRenderInBrowserAbortSignal(): AbortSignal {\n const controller = new AbortController()\n controller.abort(new BailoutToCSRError('Render in Browser'))\n return controller.signal\n}\n\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */\nexport function createHangingInputAbortSignal(\n workUnitStore: WorkUnitStore\n): AbortSignal | undefined {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController()\n\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(() => {\n controller.abort()\n })\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n const runtimeStagePromise = getRuntimeStagePromise(workUnitStore)\n if (runtimeStagePromise) {\n runtimeStagePromise.then(() =>\n scheduleOnNextTick(() => controller.abort())\n )\n } else {\n scheduleOnNextTick(() => controller.abort())\n }\n }\n\n return controller.signal\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n return undefined\n default:\n workUnitStore satisfies never\n }\n}\n\nexport function annotateDynamicAccess(\n expression: string,\n prerenderStore: PrerenderStoreModern\n) {\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function useDynamicRouteParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workStore && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-client':\n case 'prerender': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(\n workStore.route,\n expression,\n workUnitStore.dynamicTracking\n )\n }\n break\n }\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\nexport function useDynamicSearchParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n if (!workStore) {\n // We assume pages router context and just return\n return\n }\n\n if (!workUnitStore) {\n throwForMissingRequestStore(expression)\n }\n\n switch (workUnitStore.type) {\n case 'prerender-client': {\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n break\n }\n case 'prerender-legacy':\n case 'prerender-ppr': {\n if (workStore.forceStatic) {\n return\n }\n throw new BailoutToCSRError(expression)\n }\n case 'prerender':\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'request':\n return\n default:\n workUnitStore satisfies never\n }\n}\n\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(<anonymous>\\)/\n\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags =\n 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'\n\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense (<anonymous>)\n// at __next_root_layout_boundary__ (<anonymous>)\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense (<anonymous>)\n// at SomeComponent (<anonymous>)\n// at __next_root_layout_boundary__ (<anonymous>)\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(\n `\\\\n\\\\s+at Suspense \\\\(<anonymous>\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(<anonymous>\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`\n)\n\nconst hasMetadataRegex = new RegExp(\n `\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasViewportRegex = new RegExp(\n `\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`)\n\nexport function trackAllowedDynamicAccess(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true\n return\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message =\n `Route \"${workStore.route}\": Uncached data was accessed outside of ` +\n '<Suspense>. This delays the entire page from rendering, resulting in a ' +\n 'slow user experience. Learn more: ' +\n 'https://nextjs.org/docs/messages/blocking-route'\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInRuntimeShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`<Suspense>\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInStaticShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`<Suspense>\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n */\nfunction createErrorWithComponentOrOwnerStack(\n message: string,\n componentStack: string\n) {\n const ownerStack =\n process.env.NODE_ENV !== 'production' && React.captureOwnerStack\n ? React.captureOwnerStack()\n : null\n\n const error = new Error(message)\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack = error.name + ': ' + message + (ownerStack || componentStack)\n return error\n}\n\nexport enum PreludeState {\n Full = 0,\n Empty = 1,\n Errored = 2,\n}\n\nexport function logDisallowedDynamicError(\n workStore: WorkStore,\n error: Error\n): void {\n console.error(error)\n\n if (!workStore.dev) {\n if (workStore.hasReadableErrorStacks) {\n console.error(\n `To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`\n )\n } else {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`)\n }\n }\n}\n\nexport function throwIfDisallowedDynamic(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n serverDynamic: DynamicTrackingState\n): void {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(\n workStore,\n serverDynamic.syncDynamicErrorWithStack\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude !== PreludeState.Full) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return\n }\n\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n for (let i = 0; i < dynamicErrors.length; i++) {\n logDisallowedDynamicError(workStore, dynamicErrors[i])\n }\n\n throw new StaticGenBailoutError()\n }\n\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`\n )\n throw new StaticGenBailoutError()\n }\n } else {\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.hasDynamicMetadata\n ) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n )\n throw new StaticGenBailoutError()\n }\n }\n}\n\nexport function getStaticShellDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState\n): Array<Error> {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return []\n }\n\n if (prelude !== PreludeState.Full) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicErrors.length === 0 &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n\nexport function delayUntilRuntimeStage<T>(\n prerenderStore: PrerenderStoreModernRuntime,\n result: Promise<T>\n): Promise<T> {\n if (prerenderStore.runtimeStagePromise) {\n return prerenderStore.runtimeStagePromise.then(() => result)\n }\n return result\n}\n"],"names":["React","DynamicServerError","StaticGenBailoutError","getRuntimeStagePromise","throwForMissingRequestStore","workUnitAsyncStorage","workAsyncStorage","makeHangingPromise","METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","scheduleOnNextTick","BailoutToCSRError","InvariantError","hasPostpone","unstable_postpone","createDynamicTrackingState","isDebugDynamicAccesses","dynamicAccesses","syncDynamicErrorWithStack","createDynamicValidationState","hasSuspenseAboveBody","hasDynamicMetadata","dynamicMetadata","hasDynamicViewport","hasAllowedDynamic","dynamicErrors","getFirstDynamicReason","trackingState","expression","markCurrentScopeAsDynamic","store","workUnitStore","type","forceDynamic","forceStatic","dynamicShouldError","route","postponeWithTracking","dynamicTracking","revalidate","err","dynamicUsageDescription","dynamicUsageStack","stack","process","env","NODE_ENV","usedDynamic","throwToInterruptStaticGeneration","prerenderStore","trackDynamicDataInDynamicRender","abortOnSynchronousDynamicDataAccess","reason","error","createPrerenderInterruptedError","controller","abort","push","Error","undefined","abortOnSynchronousPlatformIOAccess","errorWithStack","abortAndThrowOnSynchronousRequestDataAccess","prerenderSignal","signal","aborted","Postpone","getStore","assertPostpone","createPostponeReason","isDynamicPostpone","message","isDynamicPostponeReason","includes","NEXT_PRERENDER_INTERRUPTED","digest","isPrerenderInterruptedError","accessedDynamicData","length","consumeDynamicAccess","serverDynamic","clientDynamic","formatDynamicAPIAccesses","filter","access","map","split","slice","line","join","createRenderInBrowserAbortSignal","AbortController","createHangingInputAbortSignal","cacheSignal","inputReady","then","runtimeStagePromise","annotateDynamicAccess","useDynamicRouteParams","workStore","fallbackParams","fallbackRouteParams","size","use","renderSignal","useDynamicSearchParams","hasSuspenseRegex","bodyAndImplicitTags","hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex","RegExp","hasMetadataRegex","hasViewportRegex","hasOutletRegex","trackAllowedDynamicAccess","componentStack","dynamicValidation","test","createErrorWithComponentOrOwnerStack","trackDynamicHoleInRuntimeShell","trackDynamicHoleInStaticShell","ownerStack","captureOwnerStack","name","PreludeState","logDisallowedDynamicError","console","dev","hasReadableErrorStacks","throwIfDisallowedDynamic","prelude","i","getStaticShellDisallowedDynamicReasons","delayUntilRuntimeStage","result"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 5616, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/create-deduped-by-callsite-server-error-logger.ts"],"sourcesContent":["import * as React from 'react'\n\nconst errorRef: { current: null | Error } = { current: null }\n\n// React.cache is currently only available in canary/experimental React channels.\nconst cache =\n typeof React.cache === 'function'\n ? React.cache\n : (fn: (key: unknown) => void) => fn\n\n// When Cache Components is enabled, we record these as errors so that they\n// are captured by the dev overlay as it's more critical to fix these\n// when enabled.\nconst logErrorOrWarn = process.env.__NEXT_CACHE_COMPONENTS\n ? console.error\n : console.warn\n\n// We don't want to dedupe across requests.\n// The developer might've just attempted to fix the warning so we should warn again if it still happens.\nconst flushCurrentErrorIfNew = cache(\n // eslint-disable-next-line @typescript-eslint/no-unused-vars -- cache key\n (key: unknown) => {\n try {\n logErrorOrWarn(errorRef.current)\n } finally {\n errorRef.current = null\n }\n }\n)\n\n/**\n * Creates a function that logs an error message that is deduped by the userland\n * callsite.\n * This requires no indirection between the call of this function and the userland\n * callsite i.e. there's only a single library frame above this.\n * Do not use on the Client where sourcemaps and ignore listing might be enabled.\n * Only use that for warnings need a fix independent of the callstack.\n *\n * @param getMessage\n * @returns\n */\nexport function createDedupedByCallsiteServerErrorLoggerDev<Args extends any[]>(\n getMessage: (...args: Args) => Error\n) {\n return function logDedupedError(...args: Args) {\n const message = getMessage(...args)\n\n if (process.env.NODE_ENV !== 'production') {\n const callStackFrames = new Error().stack?.split('\\n')\n if (callStackFrames === undefined || callStackFrames.length < 4) {\n logErrorOrWarn(message)\n } else {\n // Error:\n // logDedupedError\n // asyncApiBeingAccessedSynchronously\n // <userland callsite>\n // TODO: This breaks if sourcemaps with ignore lists are enabled.\n const key = callStackFrames[4]\n errorRef.current = message\n flushCurrentErrorIfNew(key)\n }\n } else {\n logErrorOrWarn(message)\n }\n }\n}\n"],"names":["React","errorRef","current","cache","fn","logErrorOrWarn","process","env","__NEXT_CACHE_COMPONENTS","console","error","warn","flushCurrentErrorIfNew","key","createDedupedByCallsiteServerErrorLoggerDev","getMessage","logDedupedError","args","message","NODE_ENV","callStackFrames","Error","stack","split","undefined","length"],"mappings":";;;;AAAA,YAAYA,WAAW,QAAO;;AAE9B,MAAMC,WAAsC;IAAEC,SAAS;AAAK;AAE5D,iFAAiF;AACjF,MAAMC,QACJ,OAAOH,MAAMG,wMAAK,KAAK,aACnBH,MAAMG,wMAAK,GACX,CAACC,KAA+BA;AAEtC,2EAA2E;AAC3E,qEAAqE;AACrE,gBAAgB;AAChB,MAAMC,iBAAiBC,QAAQC,GAAG,CAACC,uBAAuB,GACtDC,QAAQC,KAAK,aACbD,QAAQE,IAAI;AAEhB,2CAA2C;AAC3C,wGAAwG;AACxG,MAAMC,yBAAyBT,MAC7B,AACA,CAACU,yEADyE;IAExE,IAAI;QACFR,eAAeJ,SAASC,OAAO;IACjC,SAAU;QACRD,SAASC,OAAO,GAAG;IACrB;AACF;AAcK,SAASY,4CACdC,UAAoC;IAEpC,OAAO,SAASC,gBAAgB,GAAGC,IAAU;QAC3C,MAAMC,UAAUH,cAAcE;QAE9B,IAAIX,QAAQC,GAAG,CAACY,QAAQ,KAAK,WAAc;gBACjB;YAAxB,MAAMC,kBAAAA,CAAkB,SAAA,IAAIC,QAAQC,KAAK,KAAA,OAAA,KAAA,IAAjB,OAAmBC,KAAK,CAAC;YACjD,IAAIH,oBAAoBI,aAAaJ,gBAAgBK,MAAM,GAAG,GAAG;gBAC/DpB,eAAea;YACjB,OAAO;gBACL,SAAS;gBACT,oBAAoB;gBACpB,uCAAuC;gBACvC,wBAAwB;gBACxB,iEAAiE;gBACjE,MAAML,MAAMO,eAAe,CAAC,EAAE;gBAC9BnB,SAASC,OAAO,GAAGgB;gBACnBN,uBAAuBC;YACzB;QACF,OAAO;;IAGT;AACF","ignoreList":[0]}}, - {"offset": {"line": 5666, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/reflect-utils.ts"],"sourcesContent":["// This regex will have fast negatives meaning valid identifiers may not pass\n// this test. However this is only used during static generation to provide hints\n// about why a page bailed out of some or all prerendering and we can use bracket notation\n// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']`\n// even if this would have been fine too `searchParams.ಠ_ಠ`\nconst isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/\n\nexport function describeStringPropertyAccess(target: string, prop: string) {\n if (isDefinitelyAValidIdentifier.test(prop)) {\n return `\\`${target}.${prop}\\``\n }\n return `\\`${target}[${JSON.stringify(prop)}]\\``\n}\n\nexport function describeHasCheckingStringProperty(\n target: string,\n prop: string\n) {\n const stringifiedProp = JSON.stringify(prop)\n return `\\`Reflect.has(${target}, ${stringifiedProp})\\`, \\`${stringifiedProp} in ${target}\\`, or similar`\n}\n\nexport const wellKnownProperties = new Set([\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toString',\n 'valueOf',\n 'toLocaleString',\n\n // Promise prototype\n 'then',\n 'catch',\n 'finally',\n\n // React Promise extension\n 'status',\n // 'value',\n // 'error',\n\n // React introspection\n 'displayName',\n '_debugInfo',\n\n // Common tested properties\n 'toJSON',\n '$$typeof',\n '__esModule',\n])\n"],"names":["isDefinitelyAValidIdentifier","describeStringPropertyAccess","target","prop","test","JSON","stringify","describeHasCheckingStringProperty","stringifiedProp","wellKnownProperties","Set"],"mappings":";;;;;;;;AAAA,6EAA6E;AAC7E,iFAAiF;AACjF,0FAA0F;AAC1F,uFAAuF;AACvF,2DAA2D;AAC3D,MAAMA,+BAA+B;AAE9B,SAASC,6BAA6BC,MAAc,EAAEC,IAAY;IACvE,IAAIH,6BAA6BI,IAAI,CAACD,OAAO;QAC3C,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEC,KAAK,EAAE,CAAC;IAChC;IACA,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEG,KAAKC,SAAS,CAACH,MAAM,GAAG,CAAC;AACjD;AAEO,SAASI,kCACdL,MAAc,EACdC,IAAY;IAEZ,MAAMK,kBAAkBH,KAAKC,SAAS,CAACH;IACvC,OAAO,CAAC,cAAc,EAAED,OAAO,EAAE,EAAEM,gBAAgB,OAAO,EAAEA,gBAAgB,IAAI,EAAEN,OAAO,cAAc,CAAC;AAC1G;AAEO,MAAMO,sBAAsB,IAAIC,IAAI;IACzC;IACA;IACA;IACA;IACA;IACA;IAEA,oBAAoB;IACpB;IACA;IACA;IAEA,0BAA0B;IAC1B;IACA,WAAW;IACX,WAAW;IAEX,sBAAsB;IACtB;IACA;IAEA,2BAA2B;IAC3B;IACA;IACA;CACD,EAAC","ignoreList":[0]}}, - {"offset": {"line": 5717, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/utils.ts"],"sourcesContent":["import { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport { afterTaskAsyncStorage } from '../app-render/after-task-async-storage.external'\nimport type { WorkStore } from '../app-render/work-async-storage.external'\n\nexport function throwWithStaticGenerationBailoutErrorWithDynamicError(\n route: string,\n expression: string\n): never {\n throw new StaticGenBailoutError(\n `Route ${route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n}\n\nexport function throwForSearchParamsAccessInUseCache(\n workStore: WorkStore,\n constructorOpt: Function\n): never {\n const error = new Error(\n `Route ${workStore.route} used \\`searchParams\\` inside \"use cache\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\`searchParams\\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`\n )\n\n Error.captureStackTrace(error, constructorOpt)\n workStore.invalidDynamicUsageError ??= error\n\n throw error\n}\n\nexport function isRequestAPICallableInsideAfter() {\n const afterTaskStore = afterTaskAsyncStorage.getStore()\n return afterTaskStore?.rootTaskSpawnPhase === 'action'\n}\n"],"names":["StaticGenBailoutError","afterTaskAsyncStorage","throwWithStaticGenerationBailoutErrorWithDynamicError","route","expression","throwForSearchParamsAccessInUseCache","workStore","constructorOpt","error","Error","captureStackTrace","invalidDynamicUsageError","isRequestAPICallableInsideAfter","afterTaskStore","getStore","rootTaskSpawnPhase"],"mappings":";;;;;;;;AAAA,SAASA,qBAAqB,QAAQ,oDAAmD;AACzF,SAASC,qBAAqB,QAAQ,kDAAiD;;;AAGhF,SAASC,sDACdC,KAAa,EACbC,UAAkB;IAElB,MAAM,OAAA,cAEL,CAFK,IAAIJ,uNAAAA,CACR,CAAC,MAAM,EAAEG,MAAM,4EAA4E,EAAEC,WAAW,0HAA0H,CAAC,GAD/N,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAEO,SAASC,qCACdC,SAAoB,EACpBC,cAAwB;IAExB,MAAMC,QAAQ,OAAA,cAEb,CAFa,IAAIC,MAChB,CAAC,MAAM,EAAEH,UAAUH,KAAK,CAAC,2XAA2X,CAAC,GADzY,qBAAA;eAAA;oBAAA;sBAAA;IAEd;IAEAM,MAAMC,iBAAiB,CAACF,OAAOD;IAC/BD,UAAUK,wBAAwB,KAAKH;IAEvC,MAAMA;AACR;AAEO,SAASI;IACd,MAAMC,iBAAiBZ,8SAAAA,CAAsBa,QAAQ;IACrD,OAAOD,CAAAA,kBAAAA,OAAAA,KAAAA,IAAAA,eAAgBE,kBAAkB,MAAK;AAChD","ignoreList":[0]}}, - {"offset": {"line": 5754, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/promise-with-resolvers.ts"],"sourcesContent":["export function createPromiseWithResolvers<T>(): PromiseWithResolvers<T> {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike<T>) => void\n let reject: (reason: any) => void\n const promise = new Promise<T>((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n"],"names":["createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej"],"mappings":";;;;AAAO,SAASA;IACd,iDAAiD;IACjD,IAAIC;IACJ,IAAIC;IACJ,MAAMC,UAAU,IAAIC,QAAW,CAACC,KAAKC;QACnCL,UAAUI;QACVH,SAASI;IACX;IACA,OAAO;QAAEL,SAASA;QAAUC,QAAQA;QAASC;IAAQ;AACvD","ignoreList":[0]}}, - {"offset": {"line": 5776, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/staged-rendering.ts"],"sourcesContent":["import { InvariantError } from '../../shared/lib/invariant-error'\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers'\n\nexport enum RenderStage {\n Before = 1,\n Static = 2,\n Runtime = 3,\n Dynamic = 4,\n Abandoned = 5,\n}\n\nexport type NonStaticRenderStage = RenderStage.Runtime | RenderStage.Dynamic\n\nexport class StagedRenderingController {\n currentStage: RenderStage = RenderStage.Before\n\n staticInterruptReason: Error | null = null\n runtimeInterruptReason: Error | null = null\n staticStageEndTime: number = Infinity\n runtimeStageEndTime: number = Infinity\n\n private runtimeStageListeners: Array<() => void> = []\n private dynamicStageListeners: Array<() => void> = []\n\n private runtimeStagePromise = createPromiseWithResolvers<void>()\n private dynamicStagePromise = createPromiseWithResolvers<void>()\n\n private mayAbandon: boolean = false\n\n constructor(\n private abortSignal: AbortSignal | null = null,\n private hasRuntimePrefetch: boolean\n ) {\n if (abortSignal) {\n abortSignal.addEventListener(\n 'abort',\n () => {\n const { reason } = abortSignal\n if (this.currentStage < RenderStage.Runtime) {\n this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.runtimeStagePromise.reject(reason)\n }\n if (\n this.currentStage < RenderStage.Dynamic ||\n this.currentStage === RenderStage.Abandoned\n ) {\n this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.dynamicStagePromise.reject(reason)\n }\n },\n { once: true }\n )\n\n this.mayAbandon = true\n }\n }\n\n onStage(stage: NonStaticRenderStage, callback: () => void) {\n if (this.currentStage >= stage) {\n callback()\n } else if (stage === RenderStage.Runtime) {\n this.runtimeStageListeners.push(callback)\n } else if (stage === RenderStage.Dynamic) {\n this.dynamicStageListeners.push(callback)\n } else {\n // This should never happen\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n\n canSyncInterrupt() {\n // If we haven't started the render yet, it can't be interrupted.\n if (this.currentStage === RenderStage.Before) {\n return false\n }\n\n const boundaryStage = this.hasRuntimePrefetch\n ? RenderStage.Dynamic\n : RenderStage.Runtime\n return this.currentStage < boundaryStage\n }\n\n syncInterruptCurrentStageWithReason(reason: Error) {\n if (this.currentStage === RenderStage.Before) {\n return\n }\n\n // If Sync IO occurs during the initial (abandonable) render, we'll retry it,\n // so we want a slightly different flow.\n // See the implementation of `abandonRenderImpl` for more explanation.\n if (this.mayAbandon) {\n return this.abandonRenderImpl()\n }\n\n // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage\n // and capture the interruption reason.\n switch (this.currentStage) {\n case RenderStage.Static: {\n this.staticInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n return\n }\n case RenderStage.Runtime: {\n // We only error for Sync IO in the runtime stage if the route\n // is configured to use runtime prefetching.\n // We do this to reflect the fact that during a runtime prefetch,\n // Sync IO aborts aborts the render.\n // Note that `canSyncInterrupt` should prevent us from getting here at all\n // if runtime prefetching isn't enabled.\n if (this.hasRuntimePrefetch) {\n this.runtimeInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n }\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Abandoned:\n default:\n }\n }\n\n getStaticInterruptReason() {\n return this.staticInterruptReason\n }\n\n getRuntimeInterruptReason() {\n return this.runtimeInterruptReason\n }\n\n getStaticStageEndTime() {\n return this.staticStageEndTime\n }\n\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime\n }\n\n abandonRender() {\n if (!this.mayAbandon) {\n throw new InvariantError(\n '`abandonRender` called on a stage controller that cannot be abandoned.'\n )\n }\n\n this.abandonRenderImpl()\n }\n\n private abandonRenderImpl() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the Runtime stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this\n switch (currentStage) {\n case RenderStage.Static: {\n this.currentStage = RenderStage.Abandoned\n this.resolveRuntimeStage()\n return\n }\n case RenderStage.Runtime: {\n this.currentStage = RenderStage.Abandoned\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Before:\n case RenderStage.Abandoned:\n break\n default: {\n currentStage satisfies never\n }\n }\n }\n\n advanceStage(\n stage: RenderStage.Static | RenderStage.Runtime | RenderStage.Dynamic\n ) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return\n }\n\n let currentStage = this.currentStage\n this.currentStage = stage\n\n if (currentStage < RenderStage.Runtime && stage >= RenderStage.Runtime) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin\n this.resolveRuntimeStage()\n }\n if (currentStage < RenderStage.Dynamic && stage >= RenderStage.Dynamic) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin\n this.resolveDynamicStage()\n return\n }\n }\n\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */\n private resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners\n for (let i = 0; i < runtimeListeners.length; i++) {\n runtimeListeners[i]()\n }\n runtimeListeners.length = 0\n this.runtimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */\n private resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners\n for (let i = 0; i < dynamicListeners.length; i++) {\n dynamicListeners[i]()\n }\n dynamicListeners.length = 0\n this.dynamicStagePromise.resolve()\n }\n\n private getStagePromise(stage: NonStaticRenderStage): Promise<void> {\n switch (stage) {\n case RenderStage.Runtime: {\n return this.runtimeStagePromise.promise\n }\n case RenderStage.Dynamic: {\n return this.dynamicStagePromise.promise\n }\n default: {\n stage satisfies never\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n }\n\n waitForStage(stage: NonStaticRenderStage) {\n return this.getStagePromise(stage)\n }\n\n delayUntilStage<T>(\n stage: NonStaticRenderStage,\n displayName: string | undefined,\n resolvedValue: T\n ) {\n const ioTriggerPromise = this.getStagePromise(stage)\n\n const promise = makeDevtoolsIOPromiseFromIOTrigger(\n ioTriggerPromise,\n displayName,\n resolvedValue\n )\n\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject)\n }\n return promise\n }\n}\n\nfunction ignoreReject() {}\n\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger<T>(\n ioTrigger: Promise<any>,\n displayName: string | undefined,\n resolvedValue: T\n): Promise<T> {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise<T>((resolve, reject) => {\n ioTrigger.then(resolve.bind(null, resolvedValue), reject)\n })\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName\n }\n return promise\n}\n"],"names":["InvariantError","createPromiseWithResolvers","RenderStage","StagedRenderingController","constructor","abortSignal","hasRuntimePrefetch","currentStage","staticInterruptReason","runtimeInterruptReason","staticStageEndTime","Infinity","runtimeStageEndTime","runtimeStageListeners","dynamicStageListeners","runtimeStagePromise","dynamicStagePromise","mayAbandon","addEventListener","reason","promise","catch","ignoreReject","reject","once","onStage","stage","callback","push","canSyncInterrupt","boundaryStage","syncInterruptCurrentStageWithReason","abandonRenderImpl","advanceStage","getStaticInterruptReason","getRuntimeInterruptReason","getStaticStageEndTime","getRuntimeStageEndTime","abandonRender","resolveRuntimeStage","performance","now","timeOrigin","resolveDynamicStage","runtimeListeners","i","length","resolve","dynamicListeners","getStagePromise","waitForStage","delayUntilStage","displayName","resolvedValue","ioTriggerPromise","makeDevtoolsIOPromiseFromIOTrigger","ioTrigger","Promise","then","bind","undefined"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 6037, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/search-params.ts"],"sourcesContent":["import type { WorkStore } from '../app-render/work-async-storage.external'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n annotateDynamicAccess,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStoreLegacy,\n type PrerenderStorePPR,\n type PrerenderStoreModern,\n type PrerenderStoreModernRuntime,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport {\n describeStringPropertyAccess,\n describeHasCheckingStringProperty,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n throwWithStaticGenerationBailoutErrorWithDynamicError,\n throwForSearchParamsAccessInUseCache,\n} from './utils'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type SearchParams = { [key: string]: string | string[] | undefined }\n\nexport function createSearchParamsFromClient(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise<SearchParams> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'prerender-runtime':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in cache contexts.'\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport const createServerSearchParamsForMetadata =\n createServerSearchParamsForServerPage\n\nexport function createServerSearchParamsForServerPage(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise<SearchParams> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerSearchParamsForServerPage should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderSearchParams(\n underlyingSearchParams,\n workUnitStore\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderSearchParamsForClientPage(\n workStore: WorkStore\n): Promise<SearchParams> {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We're prerendering in a mode that aborts (cacheComponents) and should stall\n // the promise to ensure the RSC side is considered dynamic\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n return Promise.resolve({})\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nfunction createStaticPrerenderSearchParams(\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise<SearchParams> {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We are in a cacheComponents (PPR or otherwise) prerender\n return makeHangingSearchParams(workStore, prerenderStore)\n case 'prerender-ppr':\n case 'prerender-legacy':\n // We are in a legacy static generation and need to interrupt the\n // prerender when search params are accessed.\n return makeErroringSearchParams(workStore, prerenderStore)\n default:\n return prerenderStore satisfies never\n }\n}\n\nfunction createRuntimePrerenderSearchParams(\n underlyingSearchParams: SearchParams,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise<SearchParams> {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedSearchParams(underlyingSearchParams)\n )\n}\n\nfunction createRenderSearchParams(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<SearchParams> {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n } else {\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n return makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n return makeUntrackedSearchParams(underlyingSearchParams)\n }\n }\n}\n\ninterface CacheLifetime {}\nconst CachedSearchParams = new WeakMap<CacheLifetime, Promise<SearchParams>>()\n\nconst CachedSearchParamsForUseCache = new WeakMap<\n CacheLifetime,\n Promise<SearchParams>\n>()\n\nfunction makeHangingSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreModern\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParams.get(prerenderStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = makeHangingPromise<SearchParams>(\n prerenderStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n switch (prop) {\n case 'then': {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n case 'status': {\n const expression =\n '`use(searchParams)`, `searchParams.status`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n default: {\n return ReflectAdapter.get(target, prop, receiver)\n }\n }\n },\n })\n\n CachedSearchParams.set(prerenderStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeErroringSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreLegacy | PrerenderStorePPR\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParams.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const underlyingSearchParams = {}\n // For search params we don't construct a ReactPromise because we want to interrupt\n // rendering on any property access that was not set from outside and so we only want\n // to have properties like value and status if React sets them.\n const promise = Promise.resolve(underlyingSearchParams)\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (typeof prop === 'string' && prop === 'then') {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n if (workStore.dynamicShouldError) {\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n } else if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParams.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\n/**\n * This is a variation of `makeErroringSearchParams` that always throws an\n * error on access, because accessing searchParams inside of `\"use cache\"` is\n * not allowed.\n */\nexport function makeErroringSearchParamsForUseCache(\n workStore: WorkStore\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve({})\n\n const proxiedPromise = new Proxy(promise, {\n get: function get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it. We know it\n // isn't a dynamic access because it can only be something that was\n // previously written to the promise and thus not an underlying\n // searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (\n typeof prop === 'string' &&\n (prop === 'then' || !wellKnownProperties.has(prop))\n ) {\n throwForSearchParamsAccessInUseCache(workStore, get)\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParamsForUseCache.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeUntrackedSearchParams(\n underlyingSearchParams: SearchParams\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve(underlyingSearchParams)\n CachedSearchParams.set(underlyingSearchParams, promise)\n\n return promise\n}\n\nfunction makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<SearchParams> {\n if (requestStore.asyncApiPromises) {\n // Do not cache the resulting promise. If we do, we'll only show the first \"awaited at\"\n // across all segments that receive searchParams.\n return makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n const promise = makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n CachedSearchParams.set(requestStore, promise)\n return promise\n }\n}\n\nfunction makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<SearchParams> {\n const promiseInitialized = { current: false }\n const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams,\n workStore,\n promiseInitialized\n )\n\n let promise: Promise<SearchParams>\n if (requestStore.asyncApiPromises) {\n // We wrap each instance of searchParams in a `new Promise()`.\n // This is important when all awaits are in third party which would otherwise\n // track all the way to the internal params.\n const sharedSearchParamsParent =\n requestStore.asyncApiPromises.sharedSearchParamsParent\n promise = new Promise((resolve, reject) => {\n sharedSearchParamsParent.then(() => resolve(proxiedUnderlying), reject)\n })\n // @ts-expect-error\n promise.displayName = 'searchParams'\n } else {\n promise = makeDevtoolsIOAwarePromise(\n proxiedUnderlying,\n requestStore,\n RenderStage.Runtime\n )\n }\n promise.then(\n () => {\n promiseInitialized.current = true\n },\n // If we're in staged rendering, this promise will reject if the render\n // is aborted before it can reach the runtime stage.\n // In that case, we have to prevent an unhandled rejection from the promise\n // created by this `.then()` call.\n // This does not affect the `promiseInitialized` logic above,\n // because `proxiedUnderlying` will not be used to resolve the promise,\n // so there's no risk of any of its properties being accessed and triggering\n // an undesireable warning.\n ignoreReject\n )\n\n return instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams,\n promise,\n workStore\n )\n}\n\nfunction ignoreReject() {}\n\nfunction instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n promiseInitialized: { current: boolean }\n) {\n // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying\n // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender\n // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking\n // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger\n // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce\n // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise.\n return new Proxy(underlyingSearchParams, {\n get(target, prop, receiver) {\n if (typeof prop === 'string' && promiseInitialized.current) {\n if (workStore.dynamicShouldError) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (workStore.dynamicShouldError) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n if (workStore.dynamicShouldError) {\n const expression =\n '`{...searchParams}`, `Object.keys(searchParams)`, or similar'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n return Reflect.ownKeys(target)\n },\n })\n}\n\nfunction instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams: SearchParams,\n promise: Promise<SearchParams>,\n workStore: WorkStore\n) {\n // Track which properties we should warn for.\n const proxiedProperties = new Set<string>()\n\n Object.keys(underlyingSearchParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (prop === 'then' && workStore.dynamicShouldError) {\n const expression = '`searchParams.then`'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return Reflect.set(target, prop, value, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n const expression = '`Object.keys(searchParams)` or similar'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createSearchAccessError\n)\n\nfunction createSearchAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`searchParams\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["ReflectAdapter","throwToInterruptStaticGeneration","postponeWithTracking","annotateDynamicAccess","delayUntilRuntimeStage","workUnitAsyncStorage","throwInvariantForMissingStore","InvariantError","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","describeStringPropertyAccess","describeHasCheckingStringProperty","wellKnownProperties","throwWithStaticGenerationBailoutErrorWithDynamicError","throwForSearchParamsAccessInUseCache","RenderStage","createSearchParamsFromClient","underlyingSearchParams","workStore","workUnitStore","getStore","type","createStaticPrerenderSearchParams","createRenderSearchParams","createServerSearchParamsForMetadata","createServerSearchParamsForServerPage","createRuntimePrerenderSearchParams","createPrerenderSearchParamsForClientPage","forceStatic","Promise","resolve","renderSignal","route","prerenderStore","makeHangingSearchParams","makeErroringSearchParams","makeUntrackedSearchParams","requestStore","process","env","NODE_ENV","makeUntrackedSearchParamsWithDevWarnings","CachedSearchParams","WeakMap","CachedSearchParamsForUseCache","cachedSearchParams","get","promise","proxiedPromise","Proxy","target","prop","receiver","Object","hasOwn","expression","set","dynamicShouldError","dynamicTracking","makeErroringSearchParamsForUseCache","has","asyncApiPromises","makeUntrackedSearchParamsWithDevWarningsImpl","promiseInitialized","current","proxiedUnderlying","instrumentSearchParamsObjectWithDevWarnings","sharedSearchParamsParent","reject","then","displayName","Runtime","ignoreReject","instrumentSearchParamsPromiseWithDevWarnings","Reflect","ownKeys","proxiedProperties","Set","keys","forEach","add","warnForSyncAccess","value","delete","createSearchAccessError","prefix","Error"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 6456, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/params.ts"],"sourcesContent":["import {\n workAsyncStorage,\n type WorkStore,\n} from '../app-render/work-async-storage.external'\nimport type { OpaqueFallbackRouteParams } from './fallback-params'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStorePPR,\n type PrerenderStoreLegacy,\n type StaticPrerenderStoreModern,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type PrerenderStoreModernRuntime,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n describeStringPropertyAccess,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport { dynamicAccessAsyncStorage } from '../app-render/dynamic-access-async-storage.external'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type ParamValue = string | Array<string> | undefined\nexport type Params = Record<string, ParamValue>\n\nexport function createParamsFromClient(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise<Params> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createParamsFromClient should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createParamsFromClient should not be called in a runtime prerender.'\n )\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport type CreateServerParamsForMetadata = typeof createServerParamsForMetadata\nexport const createServerParamsForMetadata = createServerParamsForServerSegment\n\n// routes always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerParamsForRoute(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise<Params> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForRoute should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createServerParamsForServerSegment(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise<Params> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForServerSegment should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderParamsForClientSegment(\n underlyingParams: Params\n): Promise<Params> {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError(\n 'Missing workStore in createPrerenderParamsForClientSegment'\n )\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams) {\n for (let key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`params`'\n )\n }\n }\n }\n break\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderParamsForClientSegment should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'prerender-runtime':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n // We're prerendering in a mode that does not abort. We resolve the promise without\n // any tracking because we're just transporting a value from server to client where the tracking\n // will be applied.\n return Promise.resolve(underlyingParams)\n}\n\nfunction createStaticPrerenderParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise<Params> {\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingParams(\n underlyingParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n return makeErroringParams(\n underlyingParams,\n fallbackParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-legacy':\n break\n default:\n prerenderStore satisfies never\n }\n\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRuntimePrerenderParams(\n underlyingParams: Params,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise<Params> {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedParams(underlyingParams)\n )\n}\n\nfunction createRenderParamsInProd(underlyingParams: Params): Promise<Params> {\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRenderParamsInDev(\n underlyingParams: Params,\n devFallbackParams: OpaqueFallbackRouteParams | null | undefined,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<Params> {\n let hasFallbackParams = false\n if (devFallbackParams) {\n for (let key in underlyingParams) {\n if (devFallbackParams.has(key)) {\n hasFallbackParams = true\n break\n }\n }\n }\n\n return makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams,\n hasFallbackParams,\n workStore,\n requestStore\n )\n}\n\ninterface CacheLifetime {}\nconst CachedParams = new WeakMap<CacheLifetime, Promise<Params>>()\n\nconst fallbackParamsProxyHandler: ProxyHandler<Promise<Params>> = {\n get: function get(target, prop, receiver) {\n if (prop === 'then' || prop === 'catch' || prop === 'finally') {\n const originalMethod = ReflectAdapter.get(target, prop, receiver)\n\n return {\n [prop]: (...args: unknown[]) => {\n const store = dynamicAccessAsyncStorage.getStore()\n\n if (store) {\n store.abortController.abort(\n new Error(`Accessed fallback \\`params\\` during prerendering.`)\n )\n }\n\n return new Proxy(\n originalMethod.apply(target, args),\n fallbackParamsProxyHandler\n )\n },\n }[prop]\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n}\n\nfunction makeHangingParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStoreModern\n): Promise<Params> {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = new Proxy(\n makeHangingPromise<Params>(\n prerenderStore.renderSignal,\n workStore.route,\n '`params`'\n ),\n fallbackParamsProxyHandler\n )\n\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeErroringParams(\n underlyingParams: Params,\n fallbackParams: OpaqueFallbackRouteParams,\n workStore: WorkStore,\n prerenderStore: PrerenderStorePPR | PrerenderStoreLegacy\n): Promise<Params> {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const augmentedUnderlying = { ...underlyingParams }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = Promise.resolve(augmentedUnderlying)\n CachedParams.set(underlyingParams, promise)\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n if (fallbackParams.has(prop)) {\n Object.defineProperty(augmentedUnderlying, prop, {\n get() {\n const expression = describeStringPropertyAccess('params', prop)\n // In most dynamic APIs we also throw if `dynamic = \"error\"` however\n // for params is only dynamic when we're generating a fallback shell\n // and even when `dynamic = \"error\"` we still support generating dynamic\n // fallback shells\n // TODO remove this comment when cacheComponents is the default since there\n // will be no `dynamic = \"error\"`\n if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n },\n enumerable: true,\n })\n }\n }\n })\n\n return promise\n}\n\nfunction makeUntrackedParams(underlyingParams: Params): Promise<Params> {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = Promise.resolve(underlyingParams)\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams: Params,\n hasFallbackParams: boolean,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<Params> {\n if (requestStore.asyncApiPromises && hasFallbackParams) {\n // We wrap each instance of params in a `new Promise()`, because deduping\n // them across requests doesn't work anyway and this let us show each\n // await a different set of values. This is important when all awaits\n // are in third party which would otherwise track all the way to the\n // internal params.\n const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent\n const promise: Promise<Params> = new Promise((resolve, reject) => {\n sharedParamsParent.then(() => resolve(underlyingParams), reject)\n })\n // @ts-expect-error\n promise.displayName = 'params'\n return instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n }\n\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = hasFallbackParams\n ? makeDevtoolsIOAwarePromise(\n underlyingParams,\n requestStore,\n RenderStage.Runtime\n )\n : // We don't want to force an environment transition when this params is not part of the fallback params set\n Promise.resolve(underlyingParams)\n\n const proxiedPromise = instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n CachedParams.set(underlyingParams, proxiedPromise)\n return proxiedPromise\n}\n\nfunction instrumentParamsPromiseWithDevWarnings(\n underlyingParams: Params,\n promise: Promise<Params>,\n workStore: WorkStore\n): Promise<Params> {\n // Track which properties we should warn for.\n const proxiedProperties = new Set<string>()\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (typeof prop === 'string') {\n if (\n // We are accessing a property that was proxied to the promise instance\n proxiedProperties.has(prop)\n ) {\n const expression = describeStringPropertyAccess('params', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return ReflectAdapter.set(target, prop, value, receiver)\n },\n ownKeys(target) {\n const expression = '`...params` or similar expression'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createParamsAccessError\n)\n\nfunction createParamsAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`params\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["workAsyncStorage","ReflectAdapter","throwToInterruptStaticGeneration","postponeWithTracking","delayUntilRuntimeStage","workUnitAsyncStorage","throwInvariantForMissingStore","InvariantError","describeStringPropertyAccess","wellKnownProperties","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","dynamicAccessAsyncStorage","RenderStage","createParamsFromClient","underlyingParams","workStore","workUnitStore","getStore","type","createStaticPrerenderParams","process","env","NODE_ENV","devFallbackParams","createRenderParamsInDev","createRenderParamsInProd","createServerParamsForMetadata","createServerParamsForServerSegment","createServerParamsForRoute","createRuntimePrerenderParams","createPrerenderParamsForClientSegment","fallbackParams","fallbackRouteParams","key","has","renderSignal","route","Promise","resolve","prerenderStore","makeHangingParams","makeErroringParams","makeUntrackedParams","requestStore","hasFallbackParams","makeDynamicallyTrackedParamsWithDevWarnings","CachedParams","WeakMap","fallbackParamsProxyHandler","get","target","prop","receiver","originalMethod","args","store","abortController","abort","Error","Proxy","apply","cachedParams","promise","set","augmentedUnderlying","Object","keys","forEach","defineProperty","expression","dynamicTracking","enumerable","asyncApiPromises","sharedParamsParent","reject","then","displayName","instrumentParamsPromiseWithDevWarnings","Runtime","proxiedPromise","proxiedProperties","Set","add","warnForSyncAccess","value","delete","ownKeys","Reflect","createParamsAccessError","prefix"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 6856, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 6862, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 6869, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/error-boundary.tsx"],"sourcesContent":["'use client'\n\n/**\n * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a\n * fallback component for HTTP errors.\n *\n * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors.\n *\n * e.g. 404\n * 404 represents not found, and the fallback component pair contains the component and its styles.\n *\n */\n\nimport React, { useContext } from 'react'\nimport { useUntrackedPathname } from '../navigation-untracked'\nimport {\n HTTPAccessErrorStatus,\n getAccessFallbackHTTPStatus,\n getAccessFallbackErrorTypeByStatus,\n isHTTPAccessFallbackError,\n} from './http-access-fallback'\nimport { warnOnce } from '../../../shared/lib/utils/warn-once'\nimport { MissingSlotContext } from '../../../shared/lib/app-router-context.shared-runtime'\n\ninterface HTTPAccessFallbackBoundaryProps {\n notFound?: React.ReactNode\n forbidden?: React.ReactNode\n unauthorized?: React.ReactNode\n // TODO: Make this required once `React.createElement` understands that positional args go into children\n children?: React.ReactNode\n missingSlots?: Set<string>\n}\n\ninterface HTTPAccessFallbackErrorBoundaryProps\n extends HTTPAccessFallbackBoundaryProps {\n pathname: string | null\n missingSlots?: Set<string>\n}\n\ninterface HTTPAccessBoundaryState {\n triggeredStatus: number | undefined\n previousPathname: string | null\n}\n\nclass HTTPAccessFallbackErrorBoundary extends React.Component<\n HTTPAccessFallbackErrorBoundaryProps,\n HTTPAccessBoundaryState\n> {\n constructor(props: HTTPAccessFallbackErrorBoundaryProps) {\n super(props)\n this.state = {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n\n componentDidCatch(): void {\n if (\n process.env.NODE_ENV === 'development' &&\n this.props.missingSlots &&\n this.props.missingSlots.size > 0 &&\n // A missing children slot is the typical not-found case, so no need to warn\n !this.props.missingSlots.has('children')\n ) {\n let warningMessage =\n 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\\n' +\n 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\\n\\n'\n\n const formattedSlots = Array.from(this.props.missingSlots)\n .sort((a, b) => a.localeCompare(b))\n .map((slot) => `@${slot}`)\n .join(', ')\n\n warningMessage += 'Missing slots: ' + formattedSlots\n\n warnOnce(warningMessage)\n }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isHTTPAccessFallbackError(error)) {\n const httpStatus = getAccessFallbackHTTPStatus(error)\n return {\n triggeredStatus: httpStatus,\n }\n }\n // Re-throw if error is not for 404\n throw error\n }\n\n static getDerivedStateFromProps(\n props: HTTPAccessFallbackErrorBoundaryProps,\n state: HTTPAccessBoundaryState\n ): HTTPAccessBoundaryState | null {\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.triggeredStatus) {\n return {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n return {\n triggeredStatus: state.triggeredStatus,\n previousPathname: props.pathname,\n }\n }\n\n render() {\n const { notFound, forbidden, unauthorized, children } = this.props\n const { triggeredStatus } = this.state\n const errorComponents = {\n [HTTPAccessErrorStatus.NOT_FOUND]: notFound,\n [HTTPAccessErrorStatus.FORBIDDEN]: forbidden,\n [HTTPAccessErrorStatus.UNAUTHORIZED]: unauthorized,\n }\n\n if (triggeredStatus) {\n const isNotFound =\n triggeredStatus === HTTPAccessErrorStatus.NOT_FOUND && notFound\n const isForbidden =\n triggeredStatus === HTTPAccessErrorStatus.FORBIDDEN && forbidden\n const isUnauthorized =\n triggeredStatus === HTTPAccessErrorStatus.UNAUTHORIZED && unauthorized\n\n // If there's no matched boundary in this layer, keep throwing the error by rendering the children\n if (!(isNotFound || isForbidden || isUnauthorized)) {\n return children\n }\n\n return (\n <>\n <meta name=\"robots\" content=\"noindex\" />\n {process.env.NODE_ENV === 'development' && (\n <meta\n name=\"boundary-next-error\"\n content={getAccessFallbackErrorTypeByStatus(triggeredStatus)}\n />\n )}\n {errorComponents[triggeredStatus]}\n </>\n )\n }\n\n return children\n }\n}\n\nexport function HTTPAccessFallbackBoundary({\n notFound,\n forbidden,\n unauthorized,\n children,\n}: HTTPAccessFallbackBoundaryProps) {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these error can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n const missingSlots = useContext(MissingSlotContext)\n const hasErrorFallback = !!(notFound || forbidden || unauthorized)\n\n if (hasErrorFallback) {\n return (\n <HTTPAccessFallbackErrorBoundary\n pathname={pathname}\n notFound={notFound}\n forbidden={forbidden}\n unauthorized={unauthorized}\n missingSlots={missingSlots}\n >\n {children}\n </HTTPAccessFallbackErrorBoundary>\n )\n }\n\n return <>{children}</>\n}\n"],"names":["React","useContext","useUntrackedPathname","HTTPAccessErrorStatus","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","isHTTPAccessFallbackError","warnOnce","MissingSlotContext","HTTPAccessFallbackErrorBoundary","Component","constructor","props","state","triggeredStatus","undefined","previousPathname","pathname","componentDidCatch","process","env","NODE_ENV","missingSlots","size","has","warningMessage","formattedSlots","Array","from","sort","a","b","localeCompare","map","slot","join","getDerivedStateFromError","error","httpStatus","getDerivedStateFromProps","render","notFound","forbidden","unauthorized","children","errorComponents","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","isNotFound","isForbidden","isUnauthorized","meta","name","content","HTTPAccessFallbackBoundary","hasErrorFallback"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 6877, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactJsxRuntime\n"],"names":["module","exports","require","vendored","ReactJsxRuntime"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,eAAe","ignoreList":[0]}}, - {"offset": {"line": 6882, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/non-nullable.ts"],"sourcesContent":["export function nonNullable<T>(value: T): value is NonNullable<T> {\n return value !== null && value !== undefined\n}\n"],"names":["nonNullable","value","undefined"],"mappings":";;;;AAAO,SAASA,YAAeC,KAAQ;IACrC,OAAOA,UAAU,QAAQA,UAAUC;AACrC","ignoreList":[0]}}, - {"offset": {"line": 6893, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/meta.tsx"],"sourcesContent":["import React from 'react'\nimport { nonNullable } from '../../non-nullable'\n\nexport function Meta({\n name,\n property,\n content,\n media,\n}: {\n name?: string\n property?: string\n media?: string\n content: string | number | URL | null | undefined\n}): React.ReactElement | null {\n if (typeof content !== 'undefined' && content !== null && content !== '') {\n return (\n <meta\n {...(name ? { name } : { property })}\n {...(media ? { media } : undefined)}\n content={typeof content === 'string' ? content : content.toString()}\n />\n )\n }\n return null\n}\n\nexport function MetaFilter<T extends {} | {}[]>(\n items: (T | null)[]\n): NonNullable<T>[] {\n const acc: NonNullable<T>[] = []\n for (const item of items) {\n if (Array.isArray(item)) {\n acc.push(...item.filter(nonNullable))\n } else if (nonNullable(item)) {\n acc.push(item)\n }\n }\n return acc\n}\n\ntype ExtendMetaContent = Record<\n string,\n undefined | string | URL | number | boolean | null | undefined\n>\ntype MultiMetaContent =\n | (ExtendMetaContent | string | URL | number)[]\n | null\n | undefined\n\nfunction camelToSnake(camelCaseStr: string) {\n return camelCaseStr.replace(/([A-Z])/g, function (match) {\n return '_' + match.toLowerCase()\n })\n}\n\nconst aliasPropPrefixes = new Set([\n 'og:image',\n 'twitter:image',\n 'og:video',\n 'og:audio',\n])\nfunction getMetaKey(prefix: string, key: string) {\n // Use `twitter:image` and `og:image` instead of `twitter:image:url` and `og:image:url`\n // to be more compatible as it's a more common format.\n // `og:video` & `og:audio` do not have a `:url` suffix alias\n if (aliasPropPrefixes.has(prefix) && key === 'url') {\n return prefix\n }\n if (prefix.startsWith('og:') || prefix.startsWith('twitter:')) {\n key = camelToSnake(key)\n }\n return prefix + ':' + key\n}\n\nfunction ExtendMeta({\n content,\n namePrefix,\n propertyPrefix,\n}: {\n content?: ExtendMetaContent\n namePrefix?: string\n propertyPrefix?: string\n}) {\n if (!content) return null\n return MetaFilter(\n Object.entries(content).map(([k, v]) => {\n return typeof v === 'undefined'\n ? null\n : Meta({\n ...(propertyPrefix && { property: getMetaKey(propertyPrefix, k) }),\n ...(namePrefix && { name: getMetaKey(namePrefix, k) }),\n content: typeof v === 'string' ? v : v?.toString(),\n })\n })\n )\n}\n\nexport function MultiMeta({\n propertyPrefix,\n namePrefix,\n contents,\n}: {\n propertyPrefix?: string\n namePrefix?: string\n contents?: MultiMetaContent | null\n}) {\n if (typeof contents === 'undefined' || contents === null) {\n return null\n }\n\n return MetaFilter(\n contents.map((content) => {\n if (\n typeof content === 'string' ||\n typeof content === 'number' ||\n content instanceof URL\n ) {\n return Meta({\n ...(propertyPrefix\n ? { property: propertyPrefix }\n : { name: namePrefix }),\n content,\n })\n } else {\n return ExtendMeta({\n namePrefix,\n propertyPrefix,\n content,\n })\n }\n })\n )\n}\n"],"names":["React","nonNullable","Meta","name","property","content","media","meta","undefined","toString","MetaFilter","items","acc","item","Array","isArray","push","filter","camelToSnake","camelCaseStr","replace","match","toLowerCase","aliasPropPrefixes","Set","getMetaKey","prefix","key","has","startsWith","ExtendMeta","namePrefix","propertyPrefix","Object","entries","map","k","v","MultiMeta","contents","URL"],"mappings":";;;;;;;;;AAAA,OAAOA,WAAW,QAAO;AACzB,SAASC,WAAW,QAAQ,qBAAoB;;;;AAEzC,SAASC,KAAK,EACnBC,IAAI,EACJC,QAAQ,EACRC,OAAO,EACPC,KAAK,EAMN;IACC,IAAI,OAAOD,YAAY,eAAeA,YAAY,QAAQA,YAAY,IAAI;QACxE,OAAA,WAAA,OACE,8NAAA,EAACE,QAAAA;YACE,GAAIJ,OAAO;gBAAEA;YAAK,IAAI;gBAAEC;YAAS,CAAC;YAClC,GAAIE,QAAQ;gBAAEA;YAAM,IAAIE,SAAS;YAClCH,SAAS,OAAOA,YAAY,WAAWA,UAAUA,QAAQI,QAAQ;;IAGvE;IACA,OAAO;AACT;AAEO,SAASC,WACdC,KAAmB;IAEnB,MAAMC,MAAwB,EAAE;IAChC,KAAK,MAAMC,QAAQF,MAAO;QACxB,IAAIG,MAAMC,OAAO,CAACF,OAAO;YACvBD,IAAII,IAAI,IAAIH,KAAKI,MAAM,CAAChB,4KAAAA;QAC1B,OAAO,QAAIA,4KAAAA,EAAYY,OAAO;YAC5BD,IAAII,IAAI,CAACH;QACX;IACF;IACA,OAAOD;AACT;AAWA,SAASM,aAAaC,YAAoB;IACxC,OAAOA,aAAaC,OAAO,CAAC,YAAY,SAAUC,KAAK;QACrD,OAAO,MAAMA,MAAMC,WAAW;IAChC;AACF;AAEA,MAAMC,oBAAoB,IAAIC,IAAI;IAChC;IACA;IACA;IACA;CACD;AACD,SAASC,WAAWC,MAAc,EAAEC,GAAW;IAC7C,uFAAuF;IACvF,sDAAsD;IACtD,4DAA4D;IAC5D,IAAIJ,kBAAkBK,GAAG,CAACF,WAAWC,QAAQ,OAAO;QAClD,OAAOD;IACT;IACA,IAAIA,OAAOG,UAAU,CAAC,UAAUH,OAAOG,UAAU,CAAC,aAAa;QAC7DF,MAAMT,aAAaS;IACrB;IACA,OAAOD,SAAS,MAAMC;AACxB;AAEA,SAASG,WAAW,EAClBzB,OAAO,EACP0B,UAAU,EACVC,cAAc,EAKf;IACC,IAAI,CAAC3B,SAAS,OAAO;IACrB,OAAOK,WACLuB,OAAOC,OAAO,CAAC7B,SAAS8B,GAAG,CAAC,CAAC,CAACC,GAAGC,EAAE;QACjC,OAAO,OAAOA,MAAM,cAChB,OACAnC,KAAK;YACH,GAAI8B,kBAAkB;gBAAE5B,UAAUqB,WAAWO,gBAAgBI;YAAG,CAAC;YACjE,GAAIL,cAAc;gBAAE5B,MAAMsB,WAAWM,YAAYK;YAAG,CAAC;YACrD/B,SAAS,OAAOgC,MAAM,WAAWA,IAAIA,KAAAA,OAAAA,KAAAA,IAAAA,EAAG5B,QAAQ;QAClD;IACN;AAEJ;AAEO,SAAS6B,UAAU,EACxBN,cAAc,EACdD,UAAU,EACVQ,QAAQ,EAKT;IACC,IAAI,OAAOA,aAAa,eAAeA,aAAa,MAAM;QACxD,OAAO;IACT;IAEA,OAAO7B,WACL6B,SAASJ,GAAG,CAAC,CAAC9B;QACZ,IACE,OAAOA,YAAY,YACnB,OAAOA,YAAY,YACnBA,mBAAmBmC,KACnB;YACA,OAAOtC,KAAK;gBACV,GAAI8B,iBACA;oBAAE5B,UAAU4B;gBAAe,IAC3B;oBAAE7B,MAAM4B;gBAAW,CAAC;gBACxB1B;YACF;QACF,OAAO;YACL,OAAOyB,WAAW;gBAChBC;gBACAC;gBACA3B;YACF;QACF;IACF;AAEJ","ignoreList":[0]}}, - {"offset": {"line": 6998, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/constants.ts"],"sourcesContent":["import type { ViewportLayout } from './types/extra-types'\nimport type { Icons } from './types/metadata-types'\n\nexport const ViewportMetaKeys: { [k in keyof ViewportLayout]: string } = {\n width: 'width',\n height: 'height',\n initialScale: 'initial-scale',\n minimumScale: 'minimum-scale',\n maximumScale: 'maximum-scale',\n viewportFit: 'viewport-fit',\n userScalable: 'user-scalable',\n interactiveWidget: 'interactive-widget',\n} as const\n\nexport const IconKeys: (keyof Icons)[] = ['icon', 'shortcut', 'apple', 'other']\n"],"names":["ViewportMetaKeys","width","height","initialScale","minimumScale","maximumScale","viewportFit","userScalable","interactiveWidget","IconKeys"],"mappings":";;;;;;AAGO,MAAMA,mBAA4D;IACvEC,OAAO;IACPC,QAAQ;IACRC,cAAc;IACdC,cAAc;IACdC,cAAc;IACdC,aAAa;IACbC,cAAc;IACdC,mBAAmB;AACrB,EAAU;AAEH,MAAMC,WAA4B;IAAC;IAAQ;IAAY;IAAS;CAAQ,CAAA","ignoreList":[0]}}, - {"offset": {"line": 7024, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/utils.ts"],"sourcesContent":["function resolveArray<T>(value: T | T[]): T[] {\n if (Array.isArray(value)) {\n return value as any\n }\n return [value] as any\n}\n\nfunction resolveAsArrayOrUndefined<T>(\n value: T | T[] | undefined | null\n): T extends undefined | null ? undefined : T[] {\n if (typeof value === 'undefined' || value === null) {\n return undefined as any\n }\n return resolveArray(value) as any\n}\n\nfunction getOrigin(url: string | URL): string | undefined {\n let origin = undefined\n if (typeof url === 'string') {\n try {\n url = new URL(url)\n origin = url.origin\n } catch {}\n }\n return origin\n}\n\nexport { resolveAsArrayOrUndefined, resolveArray, getOrigin }\n"],"names":["resolveArray","value","Array","isArray","resolveAsArrayOrUndefined","undefined","getOrigin","url","origin","URL"],"mappings":";;;;;;;;AAAA,SAASA,aAAgBC,KAAc;IACrC,IAAIC,MAAMC,OAAO,CAACF,QAAQ;QACxB,OAAOA;IACT;IACA,OAAO;QAACA;KAAM;AAChB;AAEA,SAASG,0BACPH,KAAiC;IAEjC,IAAI,OAAOA,UAAU,eAAeA,UAAU,MAAM;QAClD,OAAOI;IACT;IACA,OAAOL,aAAaC;AACtB;AAEA,SAASK,UAAUC,GAAiB;IAClC,IAAIC,SAASH;IACb,IAAI,OAAOE,QAAQ,UAAU;QAC3B,IAAI;YACFA,MAAM,IAAIE,IAAIF;YACdC,SAASD,IAAIC,MAAM;QACrB,EAAE,OAAM,CAAC;IACX;IACA,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 7062, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/basic.tsx"],"sourcesContent":["import type {\n ResolvedMetadata,\n ResolvedViewport,\n Viewport,\n} from '../types/metadata-interface'\nimport type { ViewportLayout } from '../types/extra-types'\n\nimport { Meta, MetaFilter, MultiMeta } from './meta'\nimport { ViewportMetaKeys } from '../constants'\nimport { getOrigin } from './utils'\n\n// convert viewport object to string for viewport meta tag\nfunction resolveViewportLayout(viewport: Viewport) {\n let resolved: string | null = null\n\n if (viewport && typeof viewport === 'object') {\n resolved = ''\n for (const viewportKey_ in ViewportMetaKeys) {\n const viewportKey = viewportKey_ as keyof ViewportLayout\n if (viewportKey in viewport) {\n let value = viewport[viewportKey]\n if (typeof value === 'boolean') {\n value = value ? 'yes' : 'no'\n } else if (!value && viewportKey === 'initialScale') {\n value = undefined\n }\n if (value) {\n if (resolved) resolved += ', '\n resolved += `${ViewportMetaKeys[viewportKey]}=${value}`\n }\n }\n }\n }\n return resolved\n}\n\nexport function ViewportMeta({ viewport }: { viewport: ResolvedViewport }) {\n return MetaFilter([\n <meta charSet=\"utf-8\" />,\n Meta({ name: 'viewport', content: resolveViewportLayout(viewport) }),\n ...(viewport.themeColor\n ? viewport.themeColor.map((themeColor) =>\n Meta({\n name: 'theme-color',\n content: themeColor.color,\n media: themeColor.media,\n })\n )\n : []),\n Meta({ name: 'color-scheme', content: viewport.colorScheme }),\n ])\n}\n\nexport function BasicMeta({ metadata }: { metadata: ResolvedMetadata }) {\n const manifestOrigin = metadata.manifest\n ? getOrigin(metadata.manifest)\n : undefined\n\n return MetaFilter([\n metadata.title !== null && metadata.title.absolute ? (\n <title>{metadata.title.absolute}\n ) : null,\n Meta({ name: 'description', content: metadata.description }),\n Meta({ name: 'application-name', content: metadata.applicationName }),\n ...(metadata.authors\n ? metadata.authors.map((author) => [\n author.url ? (\n \n ) : null,\n Meta({ name: 'author', content: author.name }),\n ])\n : []),\n metadata.manifest ? (\n \n ) : null,\n Meta({ name: 'generator', content: metadata.generator }),\n Meta({ name: 'keywords', content: metadata.keywords?.join(',') }),\n Meta({ name: 'referrer', content: metadata.referrer }),\n Meta({ name: 'creator', content: metadata.creator }),\n Meta({ name: 'publisher', content: metadata.publisher }),\n Meta({ name: 'robots', content: metadata.robots?.basic }),\n Meta({ name: 'googlebot', content: metadata.robots?.googleBot }),\n Meta({ name: 'abstract', content: metadata.abstract }),\n ...(metadata.archives\n ? metadata.archives.map((archive) => (\n \n ))\n : []),\n ...(metadata.assets\n ? metadata.assets.map((asset) => )\n : []),\n ...(metadata.bookmarks\n ? metadata.bookmarks.map((bookmark) => (\n \n ))\n : []),\n ...(metadata.pagination\n ? [\n metadata.pagination.previous ? (\n \n ) : null,\n metadata.pagination.next ? (\n \n ) : null,\n ]\n : []),\n Meta({ name: 'category', content: metadata.category }),\n Meta({ name: 'classification', content: metadata.classification }),\n ...(metadata.other\n ? Object.entries(metadata.other).map(([name, content]) => {\n if (Array.isArray(content)) {\n return content.map((contentItem) =>\n Meta({ name, content: contentItem })\n )\n } else {\n return Meta({ name, content })\n }\n })\n : []),\n ])\n}\n\nexport function ItunesMeta({ itunes }: { itunes: ResolvedMetadata['itunes'] }) {\n if (!itunes) return null\n const { appId, appArgument } = itunes\n let content = `app-id=${appId}`\n if (appArgument) {\n content += `, app-argument=${appArgument}`\n }\n return \n}\n\nexport function FacebookMeta({\n facebook,\n}: {\n facebook: ResolvedMetadata['facebook']\n}) {\n if (!facebook) return null\n\n const { appId, admins } = facebook\n\n return MetaFilter([\n appId ? : null,\n ...(admins\n ? admins.map((admin) => )\n : []),\n ])\n}\n\nexport function PinterestMeta({\n pinterest,\n}: {\n pinterest: ResolvedMetadata['pinterest']\n}) {\n if (!pinterest || pinterest.richPin === undefined) return null\n\n const { richPin } = pinterest\n\n return \n}\n\nconst formatDetectionKeys = [\n 'telephone',\n 'date',\n 'address',\n 'email',\n 'url',\n] as const\nexport function FormatDetectionMeta({\n formatDetection,\n}: {\n formatDetection: ResolvedMetadata['formatDetection']\n}) {\n if (!formatDetection) return null\n let content = ''\n for (const key of formatDetectionKeys) {\n if (formatDetection[key] === false) {\n if (content) content += ', '\n content += `${key}=no`\n }\n }\n return content ? : null\n}\n\nexport function AppleWebAppMeta({\n appleWebApp,\n}: {\n appleWebApp: ResolvedMetadata['appleWebApp']\n}) {\n if (!appleWebApp) return null\n\n const { capable, title, startupImage, statusBarStyle } = appleWebApp\n\n return MetaFilter([\n capable ? Meta({ name: 'mobile-web-app-capable', content: 'yes' }) : null,\n Meta({ name: 'apple-mobile-web-app-title', content: title }),\n startupImage\n ? startupImage.map((image) => (\n \n ))\n : null,\n statusBarStyle\n ? Meta({\n name: 'apple-mobile-web-app-status-bar-style',\n content: statusBarStyle,\n })\n : null,\n ])\n}\n\nexport function VerificationMeta({\n verification,\n}: {\n verification: ResolvedMetadata['verification']\n}) {\n if (!verification) return null\n\n return MetaFilter([\n MultiMeta({\n namePrefix: 'google-site-verification',\n contents: verification.google,\n }),\n MultiMeta({ namePrefix: 'y_key', contents: verification.yahoo }),\n MultiMeta({\n namePrefix: 'yandex-verification',\n contents: verification.yandex,\n }),\n MultiMeta({ namePrefix: 'me', contents: verification.me }),\n ...(verification.other\n ? Object.entries(verification.other).map(([key, value]) =>\n MultiMeta({ namePrefix: key, contents: value })\n )\n : []),\n ])\n}\n"],"names":["Meta","MetaFilter","MultiMeta","ViewportMetaKeys","getOrigin","resolveViewportLayout","viewport","resolved","viewportKey_","viewportKey","value","undefined","ViewportMeta","meta","charSet","name","content","themeColor","map","color","media","colorScheme","BasicMeta","metadata","manifestOrigin","manifest","title","absolute","description","applicationName","authors","author","url","link","rel","href","toString","crossOrigin","process","env","VERCEL_ENV","generator","keywords","join","referrer","creator","publisher","robots","basic","googleBot","abstract","archives","archive","assets","asset","bookmarks","bookmark","pagination","previous","next","category","classification","other","Object","entries","Array","isArray","contentItem","ItunesMeta","itunes","appId","appArgument","FacebookMeta","facebook","admins","property","admin","PinterestMeta","pinterest","richPin","formatDetectionKeys","FormatDetectionMeta","formatDetection","key","AppleWebAppMeta","appleWebApp","capable","startupImage","statusBarStyle","image","VerificationMeta","verification","namePrefix","contents","google","yahoo","yandex","me"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7347, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/alternate.tsx"],"sourcesContent":["import type { ResolvedMetadata } from '../types/metadata-interface'\nimport type { AlternateLinkDescriptor } from '../types/alternative-urls-types'\n\nimport React from 'react'\nimport { MetaFilter } from './meta'\n\nfunction AlternateLink({\n descriptor,\n ...props\n}: {\n descriptor: AlternateLinkDescriptor\n} & React.LinkHTMLAttributes) {\n if (!descriptor.url) return null\n return (\n \n )\n}\n\nexport function AlternatesMetadata({\n alternates,\n}: {\n alternates: ResolvedMetadata['alternates']\n}) {\n if (!alternates) return null\n\n const { canonical, languages, media, types } = alternates\n\n return MetaFilter([\n canonical\n ? AlternateLink({ rel: 'canonical', descriptor: canonical })\n : null,\n languages\n ? Object.entries(languages).flatMap(([locale, descriptors]) =>\n descriptors?.map((descriptor) =>\n AlternateLink({ rel: 'alternate', hrefLang: locale, descriptor })\n )\n )\n : null,\n media\n ? Object.entries(media).flatMap(([mediaName, descriptors]) =>\n descriptors?.map((descriptor) =>\n AlternateLink({ rel: 'alternate', media: mediaName, descriptor })\n )\n )\n : null,\n types\n ? Object.entries(types).flatMap(([type, descriptors]) =>\n descriptors?.map((descriptor) =>\n AlternateLink({ rel: 'alternate', type, descriptor })\n )\n )\n : null,\n ])\n}\n"],"names":["React","MetaFilter","AlternateLink","descriptor","props","url","link","title","href","toString","AlternatesMetadata","alternates","canonical","languages","media","types","rel","Object","entries","flatMap","locale","descriptors","map","hrefLang","mediaName","type"],"mappings":";;;;;AAGA,OAAOA,WAAW,QAAO;AACzB,SAASC,UAAU,QAAQ,SAAQ;;;;AAEnC,SAASC,cAAc,EACrBC,UAAU,EACV,GAAGC,OAGwC;IAC3C,IAAI,CAACD,WAAWE,GAAG,EAAE,OAAO;IAC5B,OAAA,WAAA,OACE,8NAAA,EAACC,QAAAA;QACE,GAAGF,KAAK;QACR,GAAID,WAAWI,KAAK,IAAI;YAAEA,OAAOJ,WAAWI,KAAK;QAAC,CAAC;QACpDC,MAAML,WAAWE,GAAG,CAACI,QAAQ;;AAGnC;AAEO,SAASC,mBAAmB,EACjCC,UAAU,EAGX;IACC,IAAI,CAACA,YAAY,OAAO;IAExB,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAEC,KAAK,EAAEC,KAAK,EAAE,GAAGJ;IAE/C,WAAOV,wLAAAA,EAAW;QAChBW,YACIV,cAAc;YAAEc,KAAK;YAAab,YAAYS;QAAU,KACxD;QACJC,YACII,OAAOC,OAAO,CAACL,WAAWM,OAAO,CAAC,CAAC,CAACC,QAAQC,YAAY,GACtDA,eAAAA,OAAAA,KAAAA,IAAAA,YAAaC,GAAG,CAAC,CAACnB,aAChBD,cAAc;oBAAEc,KAAK;oBAAaO,UAAUH;oBAAQjB;gBAAW,OAGnE;QACJW,QACIG,OAAOC,OAAO,CAACJ,OAAOK,OAAO,CAAC,CAAC,CAACK,WAAWH,YAAY,GACrDA,eAAAA,OAAAA,KAAAA,IAAAA,YAAaC,GAAG,CAAC,CAACnB,aAChBD,cAAc;oBAAEc,KAAK;oBAAaF,OAAOU;oBAAWrB;gBAAW,OAGnE;QACJY,QACIE,OAAOC,OAAO,CAACH,OAAOI,OAAO,CAAC,CAAC,CAACM,MAAMJ,YAAY,GAChDA,eAAAA,OAAAA,KAAAA,IAAAA,YAAaC,GAAG,CAAC,CAACnB,aAChBD,cAAc;oBAAEc,KAAK;oBAAaS;oBAAMtB;gBAAW,OAGvD;KACL;AACH","ignoreList":[0]}}, - {"offset": {"line": 7396, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/opengraph.tsx"],"sourcesContent":["import type { ResolvedMetadata } from '../types/metadata-interface'\nimport type { TwitterAppDescriptor } from '../types/twitter-types'\n\nimport { Meta, MetaFilter, MultiMeta } from './meta'\n\nexport function OpenGraphMetadata({\n openGraph,\n}: {\n openGraph: ResolvedMetadata['openGraph']\n}) {\n if (!openGraph) {\n return null\n }\n\n let typedOpenGraph\n if ('type' in openGraph) {\n const openGraphType = openGraph.type\n switch (openGraphType) {\n case 'website':\n typedOpenGraph = [Meta({ property: 'og:type', content: 'website' })]\n break\n case 'article':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'article' }),\n Meta({\n property: 'article:published_time',\n content: openGraph.publishedTime?.toString(),\n }),\n Meta({\n property: 'article:modified_time',\n content: openGraph.modifiedTime?.toString(),\n }),\n Meta({\n property: 'article:expiration_time',\n content: openGraph.expirationTime?.toString(),\n }),\n MultiMeta({\n propertyPrefix: 'article:author',\n contents: openGraph.authors,\n }),\n Meta({ property: 'article:section', content: openGraph.section }),\n MultiMeta({\n propertyPrefix: 'article:tag',\n contents: openGraph.tags,\n }),\n ]\n break\n case 'book':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'book' }),\n Meta({ property: 'book:isbn', content: openGraph.isbn }),\n Meta({\n property: 'book:release_date',\n content: openGraph.releaseDate,\n }),\n MultiMeta({\n propertyPrefix: 'book:author',\n contents: openGraph.authors,\n }),\n MultiMeta({ propertyPrefix: 'book:tag', contents: openGraph.tags }),\n ]\n break\n case 'profile':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'profile' }),\n Meta({\n property: 'profile:first_name',\n content: openGraph.firstName,\n }),\n Meta({ property: 'profile:last_name', content: openGraph.lastName }),\n Meta({ property: 'profile:username', content: openGraph.username }),\n Meta({ property: 'profile:gender', content: openGraph.gender }),\n ]\n break\n case 'music.song':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'music.song' }),\n Meta({\n property: 'music:duration',\n content: openGraph.duration?.toString(),\n }),\n MultiMeta({\n propertyPrefix: 'music:album',\n contents: openGraph.albums,\n }),\n MultiMeta({\n propertyPrefix: 'music:musician',\n contents: openGraph.musicians,\n }),\n ]\n break\n case 'music.album':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'music.album' }),\n MultiMeta({\n propertyPrefix: 'music:song',\n contents: openGraph.songs,\n }),\n MultiMeta({\n propertyPrefix: 'music:musician',\n contents: openGraph.musicians,\n }),\n Meta({\n property: 'music:release_date',\n content: openGraph.releaseDate,\n }),\n ]\n break\n case 'music.playlist':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'music.playlist' }),\n MultiMeta({\n propertyPrefix: 'music:song',\n contents: openGraph.songs,\n }),\n MultiMeta({\n propertyPrefix: 'music:creator',\n contents: openGraph.creators,\n }),\n ]\n break\n case 'music.radio_station':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'music.radio_station' }),\n MultiMeta({\n propertyPrefix: 'music:creator',\n contents: openGraph.creators,\n }),\n ]\n break\n\n case 'video.movie':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'video.movie' }),\n MultiMeta({\n propertyPrefix: 'video:actor',\n contents: openGraph.actors,\n }),\n MultiMeta({\n propertyPrefix: 'video:director',\n contents: openGraph.directors,\n }),\n MultiMeta({\n propertyPrefix: 'video:writer',\n contents: openGraph.writers,\n }),\n Meta({ property: 'video:duration', content: openGraph.duration }),\n Meta({\n property: 'video:release_date',\n content: openGraph.releaseDate,\n }),\n MultiMeta({ propertyPrefix: 'video:tag', contents: openGraph.tags }),\n ]\n break\n case 'video.episode':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'video.episode' }),\n MultiMeta({\n propertyPrefix: 'video:actor',\n contents: openGraph.actors,\n }),\n MultiMeta({\n propertyPrefix: 'video:director',\n contents: openGraph.directors,\n }),\n MultiMeta({\n propertyPrefix: 'video:writer',\n contents: openGraph.writers,\n }),\n Meta({ property: 'video:duration', content: openGraph.duration }),\n Meta({\n property: 'video:release_date',\n content: openGraph.releaseDate,\n }),\n MultiMeta({ propertyPrefix: 'video:tag', contents: openGraph.tags }),\n Meta({ property: 'video:series', content: openGraph.series }),\n ]\n break\n case 'video.tv_show':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'video.tv_show' }),\n ]\n break\n case 'video.other':\n typedOpenGraph = [Meta({ property: 'og:type', content: 'video.other' })]\n break\n\n default:\n const _exhaustiveCheck: never = openGraphType\n throw new Error(`Invalid OpenGraph type: ${_exhaustiveCheck}`)\n }\n }\n\n return MetaFilter([\n Meta({ property: 'og:determiner', content: openGraph.determiner }),\n Meta({ property: 'og:title', content: openGraph.title?.absolute }),\n Meta({ property: 'og:description', content: openGraph.description }),\n Meta({ property: 'og:url', content: openGraph.url?.toString() }),\n Meta({ property: 'og:site_name', content: openGraph.siteName }),\n Meta({ property: 'og:locale', content: openGraph.locale }),\n Meta({ property: 'og:country_name', content: openGraph.countryName }),\n Meta({ property: 'og:ttl', content: openGraph.ttl?.toString() }),\n MultiMeta({ propertyPrefix: 'og:image', contents: openGraph.images }),\n MultiMeta({ propertyPrefix: 'og:video', contents: openGraph.videos }),\n MultiMeta({ propertyPrefix: 'og:audio', contents: openGraph.audio }),\n MultiMeta({ propertyPrefix: 'og:email', contents: openGraph.emails }),\n MultiMeta({\n propertyPrefix: 'og:phone_number',\n contents: openGraph.phoneNumbers,\n }),\n MultiMeta({\n propertyPrefix: 'og:fax_number',\n contents: openGraph.faxNumbers,\n }),\n MultiMeta({\n propertyPrefix: 'og:locale:alternate',\n contents: openGraph.alternateLocale,\n }),\n ...(typedOpenGraph ? typedOpenGraph : []),\n ])\n}\n\nfunction TwitterAppItem({\n app,\n type,\n}: {\n app: TwitterAppDescriptor\n type: 'iphone' | 'ipad' | 'googleplay'\n}) {\n return [\n Meta({ name: `twitter:app:name:${type}`, content: app.name }),\n Meta({ name: `twitter:app:id:${type}`, content: app.id[type] }),\n Meta({\n name: `twitter:app:url:${type}`,\n content: app.url?.[type]?.toString(),\n }),\n ]\n}\n\nexport function TwitterMetadata({\n twitter,\n}: {\n twitter: ResolvedMetadata['twitter']\n}) {\n if (!twitter) return null\n const { card } = twitter\n\n return MetaFilter([\n Meta({ name: 'twitter:card', content: card }),\n Meta({ name: 'twitter:site', content: twitter.site }),\n Meta({ name: 'twitter:site:id', content: twitter.siteId }),\n Meta({ name: 'twitter:creator', content: twitter.creator }),\n Meta({ name: 'twitter:creator:id', content: twitter.creatorId }),\n Meta({ name: 'twitter:title', content: twitter.title?.absolute }),\n Meta({ name: 'twitter:description', content: twitter.description }),\n MultiMeta({ namePrefix: 'twitter:image', contents: twitter.images }),\n ...(card === 'player'\n ? twitter.players.flatMap((player) => [\n Meta({\n name: 'twitter:player',\n content: player.playerUrl.toString(),\n }),\n Meta({\n name: 'twitter:player:stream',\n content: player.streamUrl.toString(),\n }),\n Meta({ name: 'twitter:player:width', content: player.width }),\n Meta({ name: 'twitter:player:height', content: player.height }),\n ])\n : []),\n ...(card === 'app'\n ? [\n TwitterAppItem({ app: twitter.app, type: 'iphone' }),\n TwitterAppItem({ app: twitter.app, type: 'ipad' }),\n TwitterAppItem({ app: twitter.app, type: 'googleplay' }),\n ]\n : []),\n ])\n}\n\nexport function AppLinksMeta({\n appLinks,\n}: {\n appLinks: ResolvedMetadata['appLinks']\n}) {\n if (!appLinks) return null\n return MetaFilter([\n MultiMeta({ propertyPrefix: 'al:ios', contents: appLinks.ios }),\n MultiMeta({ propertyPrefix: 'al:iphone', contents: appLinks.iphone }),\n MultiMeta({ propertyPrefix: 'al:ipad', contents: appLinks.ipad }),\n MultiMeta({ propertyPrefix: 'al:android', contents: appLinks.android }),\n MultiMeta({\n propertyPrefix: 'al:windows_phone',\n contents: appLinks.windows_phone,\n }),\n MultiMeta({ propertyPrefix: 'al:windows', contents: appLinks.windows }),\n MultiMeta({\n propertyPrefix: 'al:windows_universal',\n contents: appLinks.windows_universal,\n }),\n MultiMeta({ propertyPrefix: 'al:web', contents: appLinks.web }),\n ])\n}\n"],"names":["Meta","MetaFilter","MultiMeta","OpenGraphMetadata","openGraph","typedOpenGraph","openGraphType","type","property","content","publishedTime","toString","modifiedTime","expirationTime","propertyPrefix","contents","authors","section","tags","isbn","releaseDate","firstName","lastName","username","gender","duration","albums","musicians","songs","creators","actors","directors","writers","series","_exhaustiveCheck","Error","determiner","title","absolute","description","url","siteName","locale","countryName","ttl","images","videos","audio","emails","phoneNumbers","faxNumbers","alternateLocale","TwitterAppItem","app","name","id","TwitterMetadata","twitter","card","site","siteId","creator","creatorId","namePrefix","players","flatMap","player","playerUrl","streamUrl","width","height","AppLinksMeta","appLinks","ios","iphone","ipad","android","windows_phone","windows","windows_universal","web"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7858, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 7864, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 7871, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/icon-mark.tsx"],"sourcesContent":["'use client'\n\n// This is a client component that only renders during SSR,\n// but will be replaced during streaming with an icon insertion script tag.\n// We don't want it to be presented anywhere so it's only visible during streaming,\n// right after the icon meta tags so that browser can pick it up as soon as it's rendered.\n// Note: we don't just emit the script here because we only need the script if it's not in the head,\n// and we need it to be hoistable alongside the other metadata but sync scripts are not hoistable.\nexport const IconMark = () => {\n if (typeof window !== 'undefined') {\n return null\n }\n return \n}\n"],"names":["IconMark","window","meta","name"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 7879, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/icons.tsx"],"sourcesContent":["import type { ResolvedMetadata } from '../types/metadata-interface'\nimport type { Icon, IconDescriptor } from '../types/metadata-types'\nimport { IconMark } from './icon-mark'\n\nimport { MetaFilter } from './meta'\n\nfunction IconDescriptorLink({ icon }: { icon: IconDescriptor }) {\n const { url, rel = 'icon', ...props } = icon\n\n return \n}\n\nfunction IconLink({ rel, icon }: { rel?: string; icon: Icon }) {\n if (typeof icon === 'object' && !(icon instanceof URL)) {\n if (!icon.rel && rel) icon.rel = rel\n return IconDescriptorLink({ icon })\n } else {\n const href = icon.toString()\n return \n }\n}\n\nexport function IconsMetadata({ icons }: { icons: ResolvedMetadata['icons'] }) {\n if (!icons) return null\n\n const shortcutList = icons.shortcut\n const iconList = icons.icon\n const appleList = icons.apple\n const otherList = icons.other\n\n const hasIcon = Boolean(\n shortcutList?.length ||\n iconList?.length ||\n appleList?.length ||\n otherList?.length\n )\n if (!hasIcon) return null\n\n return MetaFilter([\n shortcutList\n ? shortcutList.map((icon) => IconLink({ rel: 'shortcut icon', icon }))\n : null,\n iconList ? iconList.map((icon) => IconLink({ rel: 'icon', icon })) : null,\n appleList\n ? appleList.map((icon) => IconLink({ rel: 'apple-touch-icon', icon }))\n : null,\n otherList ? otherList.map((icon) => IconDescriptorLink({ icon })) : null,\n hasIcon ? : null,\n ])\n}\n"],"names":["IconMark","MetaFilter","IconDescriptorLink","icon","url","rel","props","link","href","toString","IconLink","URL","IconsMetadata","icons","shortcutList","shortcut","iconList","appleList","apple","otherList","other","hasIcon","Boolean","length","map"],"mappings":";;;;;AAEA,SAASA,QAAQ,QAAQ,cAAa;AAEtC,SAASC,UAAU,QAAQ,SAAQ;;;;AAEnC,SAASC,mBAAmB,EAAEC,IAAI,EAA4B;IAC5D,MAAM,EAAEC,GAAG,EAAEC,MAAM,MAAM,EAAE,GAAGC,OAAO,GAAGH;IAExC,OAAA,WAAA,OAAO,8NAAA,EAACI,QAAAA;QAAKF,KAAKA;QAAKG,MAAMJ,IAAIK,QAAQ;QAAK,GAAGH,KAAK;;AACxD;AAEA,SAASI,SAAS,EAAEL,GAAG,EAAEF,IAAI,EAAgC;IAC3D,IAAI,OAAOA,SAAS,YAAY,CAAEA,CAAAA,gBAAgBQ,GAAE,GAAI;QACtD,IAAI,CAACR,KAAKE,GAAG,IAAIA,KAAKF,KAAKE,GAAG,GAAGA;QACjC,OAAOH,mBAAmB;YAAEC;QAAK;IACnC,OAAO;QACL,MAAMK,OAAOL,KAAKM,QAAQ;QAC1B,OAAA,WAAA,OAAO,8NAAA,EAACF,QAAAA;YAAKF,KAAKA;YAAKG,MAAMA;;IAC/B;AACF;AAEO,SAASI,cAAc,EAAEC,KAAK,EAAwC;IAC3E,IAAI,CAACA,OAAO,OAAO;IAEnB,MAAMC,eAAeD,MAAME,QAAQ;IACnC,MAAMC,WAAWH,MAAMV,IAAI;IAC3B,MAAMc,YAAYJ,MAAMK,KAAK;IAC7B,MAAMC,YAAYN,MAAMO,KAAK;IAE7B,MAAMC,UAAUC,QACdR,CAAAA,gBAAAA,OAAAA,KAAAA,IAAAA,aAAcS,MAAM,KAAA,CAClBP,YAAAA,OAAAA,KAAAA,IAAAA,SAAUO,MAAM,KAAA,CAChBN,aAAAA,OAAAA,KAAAA,IAAAA,UAAWM,MAAM,KAAA,CACjBJ,aAAAA,OAAAA,KAAAA,IAAAA,UAAWI,MAAM;IAErB,IAAI,CAACF,SAAS,OAAO;IAErB,WAAOpB,wLAAAA,EAAW;QAChBa,eACIA,aAAaU,GAAG,CAAC,CAACrB,OAASO,SAAS;gBAAEL,KAAK;gBAAiBF;YAAK,MACjE;QACJa,WAAWA,SAASQ,GAAG,CAAC,CAACrB,OAASO,SAAS;gBAAEL,KAAK;gBAAQF;YAAK,MAAM;QACrEc,YACIA,UAAUO,GAAG,CAAC,CAACrB,OAASO,SAAS;gBAAEL,KAAK;gBAAoBF;YAAK,MACjE;QACJgB,YAAYA,UAAUK,GAAG,CAAC,CAACrB,OAASD,mBAAmB;gBAAEC;YAAK,MAAM;QACpEkB,UAAAA,WAAAA,OAAU,8NAAA,EAACrB,8LAAAA,EAAAA,CAAAA,KAAc;KAC1B;AACH","ignoreList":[0]}}, - {"offset": {"line": 7941, "column": 0}, "map": {"version":3,"sources":[],"names":[],"mappings":""}}, - {"offset": {"line": 7945, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/default-metadata.tsx"],"sourcesContent":["import type {\n ResolvedMetadata,\n ResolvedViewport,\n} from './types/metadata-interface'\n\nexport function createDefaultViewport(): ResolvedViewport {\n return {\n // name=viewport\n width: 'device-width',\n initialScale: 1,\n // visual metadata\n themeColor: null,\n colorScheme: null,\n }\n}\n\nexport function createDefaultMetadata(): ResolvedMetadata {\n return {\n // Deprecated ones\n viewport: null,\n themeColor: null,\n colorScheme: null,\n\n metadataBase: null,\n // Other values are all null\n title: null,\n description: null,\n applicationName: null,\n authors: null,\n generator: null,\n keywords: null,\n referrer: null,\n creator: null,\n publisher: null,\n robots: null,\n manifest: null,\n alternates: {\n canonical: null,\n languages: null,\n media: null,\n types: null,\n },\n icons: null,\n openGraph: null,\n twitter: null,\n verification: {},\n appleWebApp: null,\n formatDetection: null,\n itunes: null,\n facebook: null,\n pinterest: null,\n abstract: null,\n appLinks: null,\n archives: null,\n assets: null,\n bookmarks: null,\n category: null,\n classification: null,\n pagination: {\n previous: null,\n next: null,\n },\n other: {},\n }\n}\n"],"names":["createDefaultViewport","width","initialScale","themeColor","colorScheme","createDefaultMetadata","viewport","metadataBase","title","description","applicationName","authors","generator","keywords","referrer","creator","publisher","robots","manifest","alternates","canonical","languages","media","types","icons","openGraph","twitter","verification","appleWebApp","formatDetection","itunes","facebook","pinterest","abstract","appLinks","archives","assets","bookmarks","category","classification","pagination","previous","next","other"],"mappings":";;;;;;AAKO,SAASA;IACd,OAAO;QACL,gBAAgB;QAChBC,OAAO;QACPC,cAAc;QACd,kBAAkB;QAClBC,YAAY;QACZC,aAAa;IACf;AACF;AAEO,SAASC;IACd,OAAO;QACL,kBAAkB;QAClBC,UAAU;QACVH,YAAY;QACZC,aAAa;QAEbG,cAAc;QACd,4BAA4B;QAC5BC,OAAO;QACPC,aAAa;QACbC,iBAAiB;QACjBC,SAAS;QACTC,WAAW;QACXC,UAAU;QACVC,UAAU;QACVC,SAAS;QACTC,WAAW;QACXC,QAAQ;QACRC,UAAU;QACVC,YAAY;YACVC,WAAW;YACXC,WAAW;YACXC,OAAO;YACPC,OAAO;QACT;QACAC,OAAO;QACPC,WAAW;QACXC,SAAS;QACTC,cAAc,CAAC;QACfC,aAAa;QACbC,iBAAiB;QACjBC,QAAQ;QACRC,UAAU;QACVC,WAAW;QACXC,UAAU;QACVC,UAAU;QACVC,UAAU;QACVC,QAAQ;QACRC,WAAW;QACXC,UAAU;QACVC,gBAAgB;QAChBC,YAAY;YACVC,UAAU;YACVC,MAAM;QACR;QACAC,OAAO,CAAC;IACV;AACF","ignoreList":[0]}}, - {"offset": {"line": 8012, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/isomorphic/path.js"],"sourcesContent":["/**\n * This module is for next.js server internal usage of path module.\n * It will use native path module for nodejs runtime.\n * It will use path-browserify polyfill for edge runtime.\n */\nlet path\n\nif (process.env.NEXT_RUNTIME === 'edge') {\n path = require('next/dist/compiled/path-browserify')\n} else {\n path = require('path')\n}\n\nmodule.exports = path\n"],"names":["path","process","env","NEXT_RUNTIME","require","module","exports"],"mappings":"AAAA;;;;CAIC,GACD,IAAIA;AAEJ,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACLH,OAAOI,QAAQ;AACjB;AAEAC,OAAOC,OAAO,GAAGN","ignoreList":[0]}}, - {"offset": {"line": 8027, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-url.ts"],"sourcesContent":["import path from '../../../shared/lib/isomorphic/path'\nimport type { MetadataContext } from '../types/resolvers'\n\nexport type MetadataBaseURL = URL | null\n\nfunction isStringOrURL(icon: any): icon is string | URL {\n return typeof icon === 'string' || icon instanceof URL\n}\n\nfunction createLocalMetadataBase() {\n // Check if experimental HTTPS is enabled\n const isExperimentalHttps = Boolean(process.env.__NEXT_EXPERIMENTAL_HTTPS)\n const protocol = isExperimentalHttps ? 'https' : 'http'\n return new URL(`${protocol}://localhost:${process.env.PORT || 3000}`)\n}\n\nfunction getPreviewDeploymentUrl(): URL | undefined {\n const origin = process.env.VERCEL_BRANCH_URL || process.env.VERCEL_URL\n return origin ? new URL(`https://${origin}`) : undefined\n}\n\nfunction getProductionDeploymentUrl(): URL | undefined {\n const origin = process.env.VERCEL_PROJECT_PRODUCTION_URL\n return origin ? new URL(`https://${origin}`) : undefined\n}\n\n/**\n * Given an optional user-provided metadataBase, this determines what the metadataBase should\n * fallback to. Specifically:\n * - In dev, it should always be localhost\n * - In Vercel preview builds, it should be the preview build ID\n * - In start, it should be the user-provided metadataBase value. Otherwise,\n * it'll fall back to the Vercel production deployment, and localhost as a last resort.\n */\nexport function getSocialImageMetadataBaseFallback(\n metadataBase: MetadataBaseURL\n): URL {\n const defaultMetadataBase = createLocalMetadataBase()\n const previewDeploymentUrl = getPreviewDeploymentUrl()\n const productionDeploymentUrl = getProductionDeploymentUrl()\n\n let fallbackMetadataBase\n if (process.env.NODE_ENV === 'development') {\n fallbackMetadataBase = defaultMetadataBase\n } else {\n fallbackMetadataBase =\n process.env.NODE_ENV === 'production' &&\n previewDeploymentUrl &&\n process.env.VERCEL_ENV === 'preview'\n ? previewDeploymentUrl\n : metadataBase || productionDeploymentUrl || defaultMetadataBase\n }\n\n return fallbackMetadataBase\n}\n\nfunction resolveUrl(url: null | undefined, metadataBase: MetadataBaseURL): null\nfunction resolveUrl(url: string | URL, metadataBase: MetadataBaseURL): URL\nfunction resolveUrl(\n url: string | MetadataBaseURL | undefined,\n metadataBase: MetadataBaseURL\n): MetadataBaseURL\nfunction resolveUrl(\n url: string | MetadataBaseURL | undefined,\n metadataBase: MetadataBaseURL\n): MetadataBaseURL {\n if (url instanceof URL) return url\n if (!url) return null\n\n try {\n // If we can construct a URL instance from url, ignore metadataBase\n const parsedUrl = new URL(url)\n return parsedUrl\n } catch {}\n\n if (!metadataBase) {\n metadataBase = createLocalMetadataBase()\n }\n\n // Handle relative or absolute paths\n const pathname = metadataBase.pathname || ''\n const joinedPath = path.posix.join(pathname, url)\n\n return new URL(joinedPath, metadataBase)\n}\n\n// Resolve with `pathname` if `url` is a relative path.\nfunction resolveRelativeUrl(url: string | URL, pathname: string): string | URL {\n if (typeof url === 'string' && url.startsWith('./')) {\n return path.posix.resolve(pathname, url)\n }\n return url\n}\n\n// The regex is matching logic from packages/next/src/lib/load-custom-routes.ts\nconst FILE_REGEX =\n /^(?:\\/((?!\\.well-known(?:\\/.*)?)(?:[^/]+\\/)*[^/]+\\.\\w+))(\\/?|$)/i\nfunction isFilePattern(pathname: string): boolean {\n return FILE_REGEX.test(pathname)\n}\n\n// Resolve `pathname` if `url` is a relative path the compose with `metadataBase`.\nfunction resolveAbsoluteUrlWithPathname(\n url: string | URL,\n metadataBase: MetadataBaseURL,\n pathname: string,\n { trailingSlash }: MetadataContext\n): string {\n // Resolve url with pathname that always starts with `/`\n url = resolveRelativeUrl(url, pathname)\n\n // Convert string url or URL instance to absolute url string,\n // if there's case needs to be resolved with metadataBase\n let resolvedUrl = ''\n const result = metadataBase ? resolveUrl(url, metadataBase) : url\n if (typeof result === 'string') {\n resolvedUrl = result\n } else {\n resolvedUrl =\n result.pathname === '/' && result.searchParams.size === 0\n ? result.origin\n : result.href\n }\n\n // Add trailing slash if it's enabled for urls matches the condition\n // - Not external, same origin with metadataBase\n // - Doesn't have query\n if (trailingSlash && !resolvedUrl.endsWith('/')) {\n let isRelative = resolvedUrl.startsWith('/')\n let hasQuery = resolvedUrl.includes('?')\n let isExternal = false\n let isFileUrl = false\n\n if (!isRelative) {\n try {\n const parsedUrl = new URL(resolvedUrl)\n isExternal =\n metadataBase != null && parsedUrl.origin !== metadataBase.origin\n isFileUrl = isFilePattern(parsedUrl.pathname)\n } catch {\n // If it's not a valid URL, treat it as external\n isExternal = true\n }\n if (\n // Do not apply trailing slash for file like urls, aligning with the behavior with `trailingSlash`\n !isFileUrl &&\n !isExternal &&\n !hasQuery\n )\n return `${resolvedUrl}/`\n }\n }\n\n return resolvedUrl\n}\n\nexport {\n isStringOrURL,\n resolveUrl,\n resolveRelativeUrl,\n resolveAbsoluteUrlWithPathname,\n}\n"],"names":["path","isStringOrURL","icon","URL","createLocalMetadataBase","isExperimentalHttps","Boolean","process","env","__NEXT_EXPERIMENTAL_HTTPS","protocol","PORT","getPreviewDeploymentUrl","origin","VERCEL_BRANCH_URL","VERCEL_URL","undefined","getProductionDeploymentUrl","VERCEL_PROJECT_PRODUCTION_URL","getSocialImageMetadataBaseFallback","metadataBase","defaultMetadataBase","previewDeploymentUrl","productionDeploymentUrl","fallbackMetadataBase","NODE_ENV","VERCEL_ENV","resolveUrl","url","parsedUrl","pathname","joinedPath","posix","join","resolveRelativeUrl","startsWith","resolve","FILE_REGEX","isFilePattern","test","resolveAbsoluteUrlWithPathname","trailingSlash","resolvedUrl","result","searchParams","size","href","endsWith","isRelative","hasQuery","includes","isExternal","isFileUrl"],"mappings":";;;;;;;;;;;;AAAA,OAAOA,UAAU,sCAAqC;;AAKtD,SAASC,cAAcC,IAAS;IAC9B,OAAO,OAAOA,SAAS,YAAYA,gBAAgBC;AACrD;AAEA,SAASC;IACP,yCAAyC;IACzC,MAAMC,sBAAsBC,QAAQC,QAAQC,GAAG,CAACC,yBAAyB;IACzE,MAAMC,WAAWL,sBAAsB,UAAU;IACjD,OAAO,IAAIF,IAAI,GAAGO,SAAS,aAAa,EAAEH,QAAQC,GAAG,CAACG,IAAI,IAAI,MAAM;AACtE;AAEA,SAASC;IACP,MAAMC,SAASN,QAAQC,GAAG,CAACM,iBAAiB,IAAIP,QAAQC,GAAG,CAACO,UAAU;IACtE,OAAOF,SAAS,IAAIV,IAAI,CAAC,QAAQ,EAAEU,QAAQ,IAAIG;AACjD;AAEA,SAASC;IACP,MAAMJ,SAASN,QAAQC,GAAG,CAACU,6BAA6B;IACxD,OAAOL,SAAS,IAAIV,IAAI,CAAC,QAAQ,EAAEU,QAAQ,IAAIG;AACjD;AAUO,SAASG,mCACdC,YAA6B;IAE7B,MAAMC,sBAAsBjB;IAC5B,MAAMkB,uBAAuBV;IAC7B,MAAMW,0BAA0BN;IAEhC,IAAIO;IACJ,IAAIjB,QAAQC,GAAG,CAACiB,QAAQ,KAAK,WAAe;QAC1CD,uBAAuBH;IACzB,OAAO;;IASP,OAAOG;AACT;AAQA,SAASG,WACPC,GAAyC,EACzCR,YAA6B;IAE7B,IAAIQ,eAAezB,KAAK,OAAOyB;IAC/B,IAAI,CAACA,KAAK,OAAO;IAEjB,IAAI;QACF,mEAAmE;QACnE,MAAMC,YAAY,IAAI1B,IAAIyB;QAC1B,OAAOC;IACT,EAAE,OAAM,CAAC;IAET,IAAI,CAACT,cAAc;QACjBA,eAAehB;IACjB;IAEA,oCAAoC;IACpC,MAAM0B,WAAWV,aAAaU,QAAQ,IAAI;IAC1C,MAAMC,aAAa/B,qLAAAA,CAAKgC,KAAK,CAACC,IAAI,CAACH,UAAUF;IAE7C,OAAO,IAAIzB,IAAI4B,YAAYX;AAC7B;AAEA,uDAAuD;AACvD,SAASc,mBAAmBN,GAAiB,EAAEE,QAAgB;IAC7D,IAAI,OAAOF,QAAQ,YAAYA,IAAIO,UAAU,CAAC,OAAO;QACnD,OAAOnC,qLAAAA,CAAKgC,KAAK,CAACI,OAAO,CAACN,UAAUF;IACtC;IACA,OAAOA;AACT;AAEA,+EAA+E;AAC/E,MAAMS,aACJ;AACF,SAASC,cAAcR,QAAgB;IACrC,OAAOO,WAAWE,IAAI,CAACT;AACzB;AAEA,kFAAkF;AAClF,SAASU,+BACPZ,GAAiB,EACjBR,YAA6B,EAC7BU,QAAgB,EAChB,EAAEW,aAAa,EAAmB;IAElC,wDAAwD;IACxDb,MAAMM,mBAAmBN,KAAKE;IAE9B,6DAA6D;IAC7D,yDAAyD;IACzD,IAAIY,cAAc;IAClB,MAAMC,SAASvB,eAAeO,WAAWC,KAAKR,gBAAgBQ;IAC9D,IAAI,OAAOe,WAAW,UAAU;QAC9BD,cAAcC;IAChB,OAAO;QACLD,cACEC,OAAOb,QAAQ,KAAK,OAAOa,OAAOC,YAAY,CAACC,IAAI,KAAK,IACpDF,OAAO9B,MAAM,GACb8B,OAAOG,IAAI;IACnB;IAEA,oEAAoE;IACpE,gDAAgD;IAChD,uBAAuB;IACvB,IAAIL,iBAAiB,CAACC,YAAYK,QAAQ,CAAC,MAAM;QAC/C,IAAIC,aAAaN,YAAYP,UAAU,CAAC;QACxC,IAAIc,WAAWP,YAAYQ,QAAQ,CAAC;QACpC,IAAIC,aAAa;QACjB,IAAIC,YAAY;QAEhB,IAAI,CAACJ,YAAY;YACf,IAAI;gBACF,MAAMnB,YAAY,IAAI1B,IAAIuC;gBAC1BS,aACE/B,gBAAgB,QAAQS,UAAUhB,MAAM,KAAKO,aAAaP,MAAM;gBAClEuC,YAAYd,cAAcT,UAAUC,QAAQ;YAC9C,EAAE,OAAM;gBACN,gDAAgD;gBAChDqB,aAAa;YACf;YACA,IACE,AACA,CAACC,aACD,CAACD,cACD,CAACF,UAED,OAAO,GAAGP,YAAY,CAAC,CAAC,kCAL0E;QAMtG;IACF;IAEA,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 8138, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-title.ts"],"sourcesContent":["import type { Metadata } from '../types/metadata-interface'\nimport type { AbsoluteTemplateString } from '../types/metadata-types'\n\nfunction resolveTitleTemplate(\n template: string | null | undefined,\n title: string\n) {\n return template ? template.replace(/%s/g, title) : title\n}\n\nexport function resolveTitle(\n title: Metadata['title'],\n stashedTemplate: string | null | undefined\n): AbsoluteTemplateString {\n let resolved\n const template =\n typeof title !== 'string' && title && 'template' in title\n ? title.template\n : null\n\n if (typeof title === 'string') {\n resolved = resolveTitleTemplate(stashedTemplate, title)\n } else if (title) {\n if ('default' in title) {\n resolved = resolveTitleTemplate(stashedTemplate, title.default)\n }\n if ('absolute' in title && title.absolute) {\n resolved = title.absolute\n }\n }\n\n if (title && typeof title !== 'string') {\n return {\n template,\n absolute: resolved || '',\n }\n } else {\n return { absolute: resolved || title || '', template }\n }\n}\n"],"names":["resolveTitleTemplate","template","title","replace","resolveTitle","stashedTemplate","resolved","default","absolute"],"mappings":";;;;AAGA,SAASA,qBACPC,QAAmC,EACnCC,KAAa;IAEb,OAAOD,WAAWA,SAASE,OAAO,CAAC,OAAOD,SAASA;AACrD;AAEO,SAASE,aACdF,KAAwB,EACxBG,eAA0C;IAE1C,IAAIC;IACJ,MAAML,WACJ,OAAOC,UAAU,YAAYA,SAAS,cAAcA,QAChDA,MAAMD,QAAQ,GACd;IAEN,IAAI,OAAOC,UAAU,UAAU;QAC7BI,WAAWN,qBAAqBK,iBAAiBH;IACnD,OAAO,IAAIA,OAAO;QAChB,IAAI,aAAaA,OAAO;YACtBI,WAAWN,qBAAqBK,iBAAiBH,MAAMK,OAAO;QAChE;QACA,IAAI,cAAcL,SAASA,MAAMM,QAAQ,EAAE;YACzCF,WAAWJ,MAAMM,QAAQ;QAC3B;IACF;IAEA,IAAIN,SAAS,OAAOA,UAAU,UAAU;QACtC,OAAO;YACLD;YACAO,UAAUF,YAAY;QACxB;IACF,OAAO;QACL,OAAO;YAAEE,UAAUF,YAAYJ,SAAS;YAAID;QAAS;IACvD;AACF","ignoreList":[0]}}, - {"offset": {"line": 8174, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-headers.ts"],"sourcesContent":["export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n"],"names":["RSC_HEADER","ACTION_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_HMR_REFRESH_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_URL","RSC_CONTENT_TYPE_HEADER","FLIGHT_HEADERS","NEXT_RSC_UNION_QUERY","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_ACTION_REVALIDATED_HEADER"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAO,MAAMA,aAAa,MAAc;AACjC,MAAMC,gBAAgB,cAAsB;AAI5C,MAAMC,gCAAgC,yBAAiC;AACvE,MAAMC,8BAA8B,uBAA+B;AAKnE,MAAMC,sCACX,+BAAuC;AAClC,MAAMC,0BAA0B,mBAA2B;AAC3D,MAAMC,+BAA+B,4BAAoC;AACzE,MAAMC,WAAW,WAAmB;AACpC,MAAMC,0BAA0B,mBAA2B;AAE3D,MAAMC,iBAAiB;IAC5BT;IACAE;IACAC;IACAE;IACAD;CACD,CAAS;AAEH,MAAMM,uBAAuB,OAAe;AAE5C,MAAMC,gCAAgC,sBAA8B;AACpE,MAAMC,2BAA2B,qBAA6B;AAC9D,MAAMC,6BAA6B,0BAAkC;AACrE,MAAMC,8BAA8B,2BAAmC;AACvE,MAAMC,2BAA2B,qBAA6B;AAC9D,MAAMC,+BAA+B,4BAAoC;AACzE,MAAMC,yBAAyB,sBAA8B;AAC7D,MAAMC,8BAA8B,2BAAmC;AAGvE,MAAMC,iCAAiC,uBAA+B","ignoreList":[0]}}, - {"offset": {"line": 8246, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/url.ts"],"sourcesContent":["import type { UrlWithParsedQuery } from 'url'\nimport { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\n\nconst DUMMY_ORIGIN = 'http://n'\n\nexport function isFullStringUrl(url: string) {\n return /https?:\\/\\//.test(url)\n}\n\nexport function parseUrl(url: string): URL | undefined {\n let parsed: URL | undefined = undefined\n try {\n parsed = new URL(url, DUMMY_ORIGIN)\n } catch {}\n return parsed\n}\n\nexport function parseReqUrl(url: string): UrlWithParsedQuery | undefined {\n const parsedUrl: URL | undefined = parseUrl(url)\n\n if (!parsedUrl) {\n return\n }\n\n const query: Record = {}\n\n for (const key of parsedUrl.searchParams.keys()) {\n const values = parsedUrl.searchParams.getAll(key)\n query[key] = values.length > 1 ? values : values[0]\n }\n\n const legacyUrl: UrlWithParsedQuery = {\n query,\n hash: parsedUrl.hash,\n search: parsedUrl.search,\n path: parsedUrl.pathname,\n pathname: parsedUrl.pathname,\n href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`,\n host: '',\n hostname: '',\n auth: '',\n protocol: '',\n slashes: null,\n port: '',\n }\n return legacyUrl\n}\n\nexport function stripNextRscUnionQuery(relativeUrl: string): string {\n const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN)\n urlInstance.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n return urlInstance.pathname + urlInstance.search\n}\n"],"names":["NEXT_RSC_UNION_QUERY","DUMMY_ORIGIN","isFullStringUrl","url","test","parseUrl","parsed","undefined","URL","parseReqUrl","parsedUrl","query","key","searchParams","keys","values","getAll","length","legacyUrl","hash","search","path","pathname","href","host","hostname","auth","protocol","slashes","port","stripNextRscUnionQuery","relativeUrl","urlInstance","delete"],"mappings":";;;;;;;;;;AACA,SAASA,oBAAoB,QAAQ,0CAAyC;;AAE9E,MAAMC,eAAe;AAEd,SAASC,gBAAgBC,GAAW;IACzC,OAAO,cAAcC,IAAI,CAACD;AAC5B;AAEO,SAASE,SAASF,GAAW;IAClC,IAAIG,SAA0BC;IAC9B,IAAI;QACFD,SAAS,IAAIE,IAAIL,KAAKF;IACxB,EAAE,OAAM,CAAC;IACT,OAAOK;AACT;AAEO,SAASG,YAAYN,GAAW;IACrC,MAAMO,YAA6BL,SAASF;IAE5C,IAAI,CAACO,WAAW;QACd;IACF;IAEA,MAAMC,QAA2C,CAAC;IAElD,KAAK,MAAMC,OAAOF,UAAUG,YAAY,CAACC,IAAI,GAAI;QAC/C,MAAMC,SAASL,UAAUG,YAAY,CAACG,MAAM,CAACJ;QAC7CD,KAAK,CAACC,IAAI,GAAGG,OAAOE,MAAM,GAAG,IAAIF,SAASA,MAAM,CAAC,EAAE;IACrD;IAEA,MAAMG,YAAgC;QACpCP;QACAQ,MAAMT,UAAUS,IAAI;QACpBC,QAAQV,UAAUU,MAAM;QACxBC,MAAMX,UAAUY,QAAQ;QACxBA,UAAUZ,UAAUY,QAAQ;QAC5BC,MAAM,GAAGb,UAAUY,QAAQ,GAAGZ,UAAUU,MAAM,GAAGV,UAAUS,IAAI,EAAE;QACjEK,MAAM;QACNC,UAAU;QACVC,MAAM;QACNC,UAAU;QACVC,SAAS;QACTC,MAAM;IACR;IACA,OAAOX;AACT;AAEO,SAASY,uBAAuBC,WAAmB;IACxD,MAAMC,cAAc,IAAIxB,IAAIuB,aAAa9B;IACzC+B,YAAYnB,YAAY,CAACoB,MAAM,CAACjC,+MAAAA;IAEhC,OAAOgC,YAAYV,QAAQ,GAAGU,YAAYZ,MAAM;AAClD","ignoreList":[0]}}, - {"offset": {"line": 8304, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/picocolors.ts"],"sourcesContent":["// ISC License\n\n// Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov\n\n// Permission to use, copy, modify, and/or distribute this software for any\n// purpose with or without fee is hereby granted, provided that the above\n// copyright notice and this permission notice appear in all copies.\n\n// THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n// https://github.com/alexeyraspopov/picocolors/blob/b6261487e7b81aaab2440e397a356732cad9e342/picocolors.js#L1\n\nconst { env, stdout } = globalThis?.process ?? {}\n\nconst enabled =\n env &&\n !env.NO_COLOR &&\n (env.FORCE_COLOR || (stdout?.isTTY && !env.CI && env.TERM !== 'dumb'))\n\nconst replaceClose = (\n str: string,\n close: string,\n replace: string,\n index: number\n): string => {\n const start = str.substring(0, index) + replace\n const end = str.substring(index + close.length)\n const nextIndex = end.indexOf(close)\n return ~nextIndex\n ? start + replaceClose(end, close, replace, nextIndex)\n : start + end\n}\n\nconst formatter = (open: string, close: string, replace = open) => {\n if (!enabled) return String\n return (input: string) => {\n const string = '' + input\n const index = string.indexOf(close, open.length)\n return ~index\n ? open + replaceClose(string, close, replace, index) + close\n : open + string + close\n }\n}\n\nexport const reset = enabled ? (s: string) => `\\x1b[0m${s}\\x1b[0m` : String\nexport const bold = formatter('\\x1b[1m', '\\x1b[22m', '\\x1b[22m\\x1b[1m')\nexport const dim = formatter('\\x1b[2m', '\\x1b[22m', '\\x1b[22m\\x1b[2m')\nexport const italic = formatter('\\x1b[3m', '\\x1b[23m')\nexport const underline = formatter('\\x1b[4m', '\\x1b[24m')\nexport const inverse = formatter('\\x1b[7m', '\\x1b[27m')\nexport const hidden = formatter('\\x1b[8m', '\\x1b[28m')\nexport const strikethrough = formatter('\\x1b[9m', '\\x1b[29m')\nexport const black = formatter('\\x1b[30m', '\\x1b[39m')\nexport const red = formatter('\\x1b[31m', '\\x1b[39m')\nexport const green = formatter('\\x1b[32m', '\\x1b[39m')\nexport const yellow = formatter('\\x1b[33m', '\\x1b[39m')\nexport const blue = formatter('\\x1b[34m', '\\x1b[39m')\nexport const magenta = formatter('\\x1b[35m', '\\x1b[39m')\nexport const purple = formatter('\\x1b[38;2;173;127;168m', '\\x1b[39m')\nexport const cyan = formatter('\\x1b[36m', '\\x1b[39m')\nexport const white = formatter('\\x1b[37m', '\\x1b[39m')\nexport const gray = formatter('\\x1b[90m', '\\x1b[39m')\nexport const bgBlack = formatter('\\x1b[40m', '\\x1b[49m')\nexport const bgRed = formatter('\\x1b[41m', '\\x1b[49m')\nexport const bgGreen = formatter('\\x1b[42m', '\\x1b[49m')\nexport const bgYellow = formatter('\\x1b[43m', '\\x1b[49m')\nexport const bgBlue = formatter('\\x1b[44m', '\\x1b[49m')\nexport const bgMagenta = formatter('\\x1b[45m', '\\x1b[49m')\nexport const bgCyan = formatter('\\x1b[46m', '\\x1b[49m')\nexport const bgWhite = formatter('\\x1b[47m', '\\x1b[49m')\n"],"names":["globalThis","env","stdout","process","enabled","NO_COLOR","FORCE_COLOR","isTTY","CI","TERM","replaceClose","str","close","replace","index","start","substring","end","length","nextIndex","indexOf","formatter","open","String","input","string","reset","s","bold","dim","italic","underline","inverse","hidden","strikethrough","black","red","green","yellow","blue","magenta","purple","cyan","white","gray","bgBlack","bgRed","bgGreen","bgYellow","bgBlue","bgMagenta","bgCyan","bgWhite"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,cAAc;AAEd,wEAAwE;AAExE,2EAA2E;AAC3E,yEAAyE;AACzE,oEAAoE;AAEpE,2EAA2E;AAC3E,mEAAmE;AACnE,0EAA0E;AAC1E,yEAAyE;AACzE,wEAAwE;AACxE,0EAA0E;AAC1E,iEAAiE;AACjE,EAAE;AACF,8GAA8G;IAEtFA;AAAxB,MAAM,EAAEC,GAAG,EAAEC,MAAM,EAAE,GAAGF,CAAAA,CAAAA,cAAAA,UAAAA,KAAAA,OAAAA,KAAAA,IAAAA,YAAYG,OAAO,KAAI,CAAC;AAEhD,MAAMC,UACJH,OACA,CAACA,IAAII,QAAQ,IACZJ,CAAAA,IAAIK,WAAW,IAAKJ,CAAAA,UAAAA,OAAAA,KAAAA,IAAAA,OAAQK,KAAK,KAAI,CAACN,IAAIO,EAAE,IAAIP,IAAIQ,IAAI,KAAK,MAAM;AAEtE,MAAMC,eAAe,CACnBC,KACAC,OACAC,SACAC;IAEA,MAAMC,QAAQJ,IAAIK,SAAS,CAAC,GAAGF,SAASD;IACxC,MAAMI,MAAMN,IAAIK,SAAS,CAACF,QAAQF,MAAMM,MAAM;IAC9C,MAAMC,YAAYF,IAAIG,OAAO,CAACR;IAC9B,OAAO,CAACO,YACJJ,QAAQL,aAAaO,KAAKL,OAAOC,SAASM,aAC1CJ,QAAQE;AACd;AAEA,MAAMI,YAAY,CAACC,MAAcV,OAAeC,UAAUS,IAAI;IAC5D,IAAI,CAAClB,SAAS,OAAOmB;IACrB,OAAO,CAACC;QACN,MAAMC,SAAS,KAAKD;QACpB,MAAMV,QAAQW,OAAOL,OAAO,CAACR,OAAOU,KAAKJ,MAAM;QAC/C,OAAO,CAACJ,QACJQ,OAAOZ,aAAae,QAAQb,OAAOC,SAASC,SAASF,QACrDU,OAAOG,SAASb;IACtB;AACF;AAEO,MAAMc,QAAQtB,UAAU,CAACuB,IAAc,CAAC,OAAO,EAAEA,EAAE,OAAO,CAAC,GAAGJ,OAAM;AACpE,MAAMK,OAAOP,UAAU,WAAW,YAAY,mBAAkB;AAChE,MAAMQ,MAAMR,UAAU,WAAW,YAAY,mBAAkB;AAC/D,MAAMS,SAAST,UAAU,WAAW,YAAW;AAC/C,MAAMU,YAAYV,UAAU,WAAW,YAAW;AAClD,MAAMW,UAAUX,UAAU,WAAW,YAAW;AAChD,MAAMY,SAASZ,UAAU,WAAW,YAAW;AAC/C,MAAMa,gBAAgBb,UAAU,WAAW,YAAW;AACtD,MAAMc,QAAQd,UAAU,YAAY,YAAW;AAC/C,MAAMe,MAAMf,UAAU,YAAY,YAAW;AAC7C,MAAMgB,QAAQhB,UAAU,YAAY,YAAW;AAC/C,MAAMiB,SAASjB,UAAU,YAAY,YAAW;AAChD,MAAMkB,OAAOlB,UAAU,YAAY,YAAW;AAC9C,MAAMmB,UAAUnB,UAAU,YAAY,YAAW;AACjD,MAAMoB,SAASpB,UAAU,0BAA0B,YAAW;AAC9D,MAAMqB,OAAOrB,UAAU,YAAY,YAAW;AAC9C,MAAMsB,QAAQtB,UAAU,YAAY,YAAW;AAC/C,MAAMuB,OAAOvB,UAAU,YAAY,YAAW;AAC9C,MAAMwB,UAAUxB,UAAU,YAAY,YAAW;AACjD,MAAMyB,QAAQzB,UAAU,YAAY,YAAW;AAC/C,MAAM0B,UAAU1B,UAAU,YAAY,YAAW;AACjD,MAAM2B,WAAW3B,UAAU,YAAY,YAAW;AAClD,MAAM4B,SAAS5B,UAAU,YAAY,YAAW;AAChD,MAAM6B,YAAY7B,UAAU,YAAY,YAAW;AACnD,MAAM8B,SAAS9B,UAAU,YAAY,YAAW;AAChD,MAAM+B,UAAU/B,UAAU,YAAY,YAAW","ignoreList":[0]}}, - {"offset": {"line": 8419, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/lru-cache.ts"],"sourcesContent":["/**\n * Node in the doubly-linked list used for LRU tracking.\n * Each node represents a cache entry with bidirectional pointers.\n */\nclass LRUNode {\n public readonly key: string\n public data: T\n public size: number\n public prev: LRUNode | SentinelNode | null = null\n public next: LRUNode | SentinelNode | null = null\n\n constructor(key: string, data: T, size: number) {\n this.key = key\n this.data = data\n this.size = size\n }\n}\n\n/**\n * Sentinel node used for head/tail boundaries.\n * These nodes don't contain actual cache data but simplify list operations.\n */\nclass SentinelNode {\n public prev: LRUNode | SentinelNode | null = null\n public next: LRUNode | SentinelNode | null = null\n}\n\n/**\n * LRU (Least Recently Used) Cache implementation using a doubly-linked list\n * and hash map for O(1) operations.\n *\n * Algorithm:\n * - Uses a doubly-linked list to maintain access order (most recent at head)\n * - Hash map provides O(1) key-to-node lookup\n * - Sentinel head/tail nodes simplify edge case handling\n * - Size-based eviction supports custom size calculation functions\n *\n * Data Structure Layout:\n * HEAD <-> [most recent] <-> ... <-> [least recent] <-> TAIL\n *\n * Operations:\n * - get(): Move accessed node to head (mark as most recent)\n * - set(): Add new node at head, evict from tail if over capacity\n * - Eviction: Remove least recent node (tail.prev) when size exceeds limit\n */\nexport class LRUCache {\n private readonly cache: Map> = new Map()\n private readonly head: SentinelNode\n private readonly tail: SentinelNode\n private totalSize: number = 0\n private readonly maxSize: number\n private readonly calculateSize: ((value: T) => number) | undefined\n private readonly onEvict: ((key: string, value: T) => void) | undefined\n\n constructor(\n maxSize: number,\n calculateSize?: (value: T) => number,\n onEvict?: (key: string, value: T) => void\n ) {\n this.maxSize = maxSize\n this.calculateSize = calculateSize\n this.onEvict = onEvict\n\n // Create sentinel nodes to simplify doubly-linked list operations\n // HEAD <-> TAIL (empty list)\n this.head = new SentinelNode()\n this.tail = new SentinelNode()\n this.head.next = this.tail\n this.tail.prev = this.head\n }\n\n /**\n * Adds a node immediately after the head (marks as most recently used).\n * Used when inserting new items or when an item is accessed.\n * PRECONDITION: node must be disconnected (prev/next should be null)\n */\n private addToHead(node: LRUNode): void {\n node.prev = this.head\n node.next = this.head.next\n // head.next is always non-null (points to tail or another node)\n this.head.next!.prev = node\n this.head.next = node\n }\n\n /**\n * Removes a node from its current position in the doubly-linked list.\n * Updates the prev/next pointers of adjacent nodes to maintain list integrity.\n * PRECONDITION: node must be connected (prev/next are non-null)\n */\n private removeNode(node: LRUNode): void {\n // Connected nodes always have non-null prev/next\n node.prev!.next = node.next\n node.next!.prev = node.prev\n }\n\n /**\n * Moves an existing node to the head position (marks as most recently used).\n * This is the core LRU operation - accessed items become most recent.\n */\n private moveToHead(node: LRUNode): void {\n this.removeNode(node)\n this.addToHead(node)\n }\n\n /**\n * Removes and returns the least recently used node (the one before tail).\n * This is called during eviction when the cache exceeds capacity.\n * PRECONDITION: cache is not empty (ensured by caller)\n */\n private removeTail(): LRUNode {\n const lastNode = this.tail.prev as LRUNode\n // tail.prev is always non-null and always LRUNode when cache is not empty\n this.removeNode(lastNode)\n return lastNode\n }\n\n /**\n * Sets a key-value pair in the cache.\n * If the key exists, updates the value and moves to head.\n * If new, adds at head and evicts from tail if necessary.\n *\n * Time Complexity:\n * - O(1) for uniform item sizes\n * - O(k) where k is the number of items evicted (can be O(N) for variable sizes)\n */\n public set(key: string, value: T): void {\n const size = this.calculateSize?.(value) ?? 1\n if (size > this.maxSize) {\n console.warn('Single item size exceeds maxSize')\n return\n }\n\n const existing = this.cache.get(key)\n if (existing) {\n // Update existing node: adjust size and move to head (most recent)\n existing.data = value\n this.totalSize = this.totalSize - existing.size + size\n existing.size = size\n this.moveToHead(existing)\n } else {\n // Add new node at head (most recent position)\n const newNode = new LRUNode(key, value, size)\n this.cache.set(key, newNode)\n this.addToHead(newNode)\n this.totalSize += size\n }\n\n // Evict least recently used items until under capacity\n while (this.totalSize > this.maxSize && this.cache.size > 0) {\n const tail = this.removeTail()\n this.cache.delete(tail.key)\n this.totalSize -= tail.size\n this.onEvict?.(tail.key, tail.data)\n }\n }\n\n /**\n * Checks if a key exists in the cache.\n * This is a pure query operation - does NOT update LRU order.\n *\n * Time Complexity: O(1)\n */\n public has(key: string): boolean {\n return this.cache.has(key)\n }\n\n /**\n * Retrieves a value by key and marks it as most recently used.\n * Moving to head maintains the LRU property for future evictions.\n *\n * Time Complexity: O(1)\n */\n public get(key: string): T | undefined {\n const node = this.cache.get(key)\n if (!node) return undefined\n\n // Mark as most recently used by moving to head\n this.moveToHead(node)\n\n return node.data\n }\n\n /**\n * Returns an iterator over the cache entries. The order is outputted in the\n * order of most recently used to least recently used.\n */\n public *[Symbol.iterator](): IterableIterator<[string, T]> {\n let current = this.head.next\n while (current && current !== this.tail) {\n // Between head and tail, current is always LRUNode\n const node = current as LRUNode\n yield [node.key, node.data]\n current = current.next\n }\n }\n\n /**\n * Removes a specific key from the cache.\n * Updates both the hash map and doubly-linked list.\n *\n * Note: This is an explicit removal and does NOT trigger the `onEvict`\n * callback. Use this for intentional deletions where eviction tracking\n * is not needed.\n *\n * Time Complexity: O(1)\n */\n public remove(key: string): void {\n const node = this.cache.get(key)\n if (!node) return\n\n this.removeNode(node)\n this.cache.delete(key)\n this.totalSize -= node.size\n }\n\n /**\n * Returns the number of items in the cache.\n */\n public get size(): number {\n return this.cache.size\n }\n\n /**\n * Returns the current total size of all cached items.\n * This uses the custom size calculation if provided.\n */\n public get currentSize(): number {\n return this.totalSize\n }\n}\n"],"names":["LRUNode","constructor","key","data","size","prev","next","SentinelNode","LRUCache","maxSize","calculateSize","onEvict","cache","Map","totalSize","head","tail","addToHead","node","removeNode","moveToHead","removeTail","lastNode","set","value","console","warn","existing","get","newNode","delete","has","undefined","Symbol","iterator","current","remove","currentSize"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 8598, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/output/log.ts"],"sourcesContent":["import { bold, green, magenta, red, yellow, white } from '../../lib/picocolors'\nimport { LRUCache } from '../../server/lib/lru-cache'\n\nexport const prefixes = {\n wait: white(bold('○')),\n error: red(bold('⨯')),\n warn: yellow(bold('⚠')),\n ready: '▲', // no color\n info: white(bold(' ')),\n event: green(bold('✓')),\n trace: magenta(bold('»')),\n} as const\n\nconst LOGGING_METHOD = {\n log: 'log',\n warn: 'warn',\n error: 'error',\n} as const\n\nfunction prefixedLog(prefixType: keyof typeof prefixes, ...message: any[]) {\n if ((message[0] === '' || message[0] === undefined) && message.length === 1) {\n message.shift()\n }\n\n const consoleMethod: keyof typeof LOGGING_METHOD =\n prefixType in LOGGING_METHOD\n ? LOGGING_METHOD[prefixType as keyof typeof LOGGING_METHOD]\n : 'log'\n\n const prefix = prefixes[prefixType]\n // If there's no message, don't print the prefix but a new line\n if (message.length === 0) {\n console[consoleMethod]('')\n } else {\n // Ensure if there's ANSI escape codes it's concatenated into one string.\n // Chrome DevTool can only handle color if it's in one string.\n if (message.length === 1 && typeof message[0] === 'string') {\n console[consoleMethod](prefix + ' ' + message[0])\n } else {\n console[consoleMethod](prefix, ...message)\n }\n }\n}\n\nexport function bootstrap(message: string) {\n console.log(message)\n}\n\nexport function wait(...message: any[]) {\n prefixedLog('wait', ...message)\n}\n\nexport function error(...message: any[]) {\n prefixedLog('error', ...message)\n}\n\nexport function warn(...message: any[]) {\n prefixedLog('warn', ...message)\n}\n\nexport function ready(...message: any[]) {\n prefixedLog('ready', ...message)\n}\n\nexport function info(...message: any[]) {\n prefixedLog('info', ...message)\n}\n\nexport function event(...message: any[]) {\n prefixedLog('event', ...message)\n}\n\nexport function trace(...message: any[]) {\n prefixedLog('trace', ...message)\n}\n\nconst warnOnceCache = new LRUCache(10_000, (value) => value.length)\nexport function warnOnce(...message: any[]) {\n const key = message.join(' ')\n if (!warnOnceCache.has(key)) {\n warnOnceCache.set(key, key)\n warn(...message)\n }\n}\n\nconst errorOnceCache = new LRUCache(10_000, (value) => value.length)\nexport function errorOnce(...message: any[]) {\n const key = message.join(' ')\n if (!errorOnceCache.has(key)) {\n errorOnceCache.set(key, key)\n error(...message)\n }\n}\n"],"names":["bold","green","magenta","red","yellow","white","LRUCache","prefixes","wait","error","warn","ready","info","event","trace","LOGGING_METHOD","log","prefixedLog","prefixType","message","undefined","length","shift","consoleMethod","prefix","console","bootstrap","warnOnceCache","value","warnOnce","key","join","has","set","errorOnceCache","errorOnce"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,SAASA,IAAI,EAAEC,KAAK,EAAEC,OAAO,EAAEC,GAAG,EAAEC,MAAM,EAAEC,KAAK,QAAQ,uBAAsB;AAC/E,SAASC,QAAQ,QAAQ,6BAA4B;;;AAE9C,MAAMC,WAAW;IACtBC,UAAMH,iKAAAA,MAAML,gKAAAA,EAAK;IACjBS,WAAON,+JAAAA,MAAIH,gKAAAA,EAAK;IAChBU,UAAMN,kKAAAA,MAAOJ,gKAAAA,EAAK;IAClBW,OAAO;IACPC,UAAMP,iKAAAA,MAAML,gKAAAA,EAAK;IACjBa,WAAOZ,iKAAAA,MAAMD,gKAAAA,EAAK;IAClBc,WAAOZ,mKAAAA,MAAQF,gKAAAA,EAAK;AACtB,EAAU;AAEV,MAAMe,iBAAiB;IACrBC,KAAK;IACLN,MAAM;IACND,OAAO;AACT;AAEA,SAASQ,YAAYC,UAAiC,EAAE,GAAGC,OAAc;IACvE,IAAKA,CAAAA,OAAO,CAAC,EAAE,KAAK,MAAMA,OAAO,CAAC,EAAE,KAAKC,SAAQ,KAAMD,QAAQE,MAAM,KAAK,GAAG;QAC3EF,QAAQG,KAAK;IACf;IAEA,MAAMC,gBACJL,cAAcH,iBACVA,cAAc,CAACG,WAA0C,GACzD;IAEN,MAAMM,SAASjB,QAAQ,CAACW,WAAW;IACnC,+DAA+D;IAC/D,IAAIC,QAAQE,MAAM,KAAK,GAAG;QACxBI,OAAO,CAACF,cAAc,CAAC;IACzB,OAAO;QACL,yEAAyE;QACzE,8DAA8D;QAC9D,IAAIJ,QAAQE,MAAM,KAAK,KAAK,OAAOF,OAAO,CAAC,EAAE,KAAK,UAAU;YAC1DM,OAAO,CAACF,cAAc,CAACC,SAAS,MAAML,OAAO,CAAC,EAAE;QAClD,OAAO;YACLM,OAAO,CAACF,cAAc,CAACC,WAAWL;QACpC;IACF;AACF;AAEO,SAASO,UAAUP,OAAe;IACvCM,QAAQT,GAAG,CAACG;AACd;AAEO,SAASX,KAAK,GAAGW,OAAc;IACpCF,YAAY,WAAWE;AACzB;AAEO,SAASV,MAAM,GAAGU,OAAc;IACrCF,YAAY,YAAYE;AAC1B;AAEO,SAAST,KAAK,GAAGS,OAAc;IACpCF,YAAY,WAAWE;AACzB;AAEO,SAASR,MAAM,GAAGQ,OAAc;IACrCF,YAAY,YAAYE;AAC1B;AAEO,SAASP,KAAK,GAAGO,OAAc;IACpCF,YAAY,WAAWE;AACzB;AAEO,SAASN,MAAM,GAAGM,OAAc;IACrCF,YAAY,YAAYE;AAC1B;AAEO,SAASL,MAAM,GAAGK,OAAc;IACrCF,YAAY,YAAYE;AAC1B;AAEA,MAAMQ,gBAAgB,IAAIrB,gLAAAA,CAAiB,OAAQ,CAACsB,QAAUA,MAAMP,MAAM;AACnE,SAASQ,SAAS,GAAGV,OAAc;IACxC,MAAMW,MAAMX,QAAQY,IAAI,CAAC;IACzB,IAAI,CAACJ,cAAcK,GAAG,CAACF,MAAM;QAC3BH,cAAcM,GAAG,CAACH,KAAKA;QACvBpB,QAAQS;IACV;AACF;AAEA,MAAMe,iBAAiB,IAAI5B,gLAAAA,CAAiB,OAAQ,CAACsB,QAAUA,MAAMP,MAAM;AACpE,SAASc,UAAU,GAAGhB,OAAc;IACzC,MAAMW,MAAMX,QAAQY,IAAI,CAAC;IACzB,IAAI,CAACG,eAAeF,GAAG,CAACF,MAAM;QAC5BI,eAAeD,GAAG,CAACH,KAAKA;QACxBrB,SAASU;IACX;AACF","ignoreList":[0]}}, - {"offset": {"line": 8703, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-opengraph.ts"],"sourcesContent":["import type { ResolvedMetadataWithURLs } from '../types/metadata-interface'\nimport type {\n OpenGraphType,\n OpenGraph,\n ResolvedOpenGraph,\n} from '../types/opengraph-types'\nimport type {\n FieldResolverExtraArgs,\n AsyncFieldResolverExtraArgs,\n MetadataContext,\n} from '../types/resolvers'\nimport type { ResolvedTwitterMetadata, Twitter } from '../types/twitter-types'\nimport { resolveArray, resolveAsArrayOrUndefined } from '../generate/utils'\nimport {\n getSocialImageMetadataBaseFallback,\n isStringOrURL,\n resolveUrl,\n resolveAbsoluteUrlWithPathname,\n type MetadataBaseURL,\n} from './resolve-url'\nimport { resolveTitle } from './resolve-title'\nimport { isFullStringUrl } from '../../url'\nimport { warnOnce } from '../../../build/output/log'\n\ntype FlattenArray = T extends (infer U)[] ? U : T\n\nconst OgTypeFields = {\n article: ['authors', 'tags'],\n song: ['albums', 'musicians'],\n playlist: ['albums', 'musicians'],\n radio: ['creators'],\n video: ['actors', 'directors', 'writers', 'tags'],\n basic: [\n 'emails',\n 'phoneNumbers',\n 'faxNumbers',\n 'alternateLocale',\n 'audio',\n 'videos',\n ],\n} as const\n\nfunction resolveAndValidateImage(\n item: FlattenArray,\n metadataBase: MetadataBaseURL,\n isStaticMetadataRouteFile: boolean | undefined\n) {\n if (!item) return undefined\n const isItemUrl = isStringOrURL(item)\n const inputUrl = isItemUrl ? item : item.url\n if (!inputUrl) return undefined\n\n // process.env.VERCEL is set to \"1\" when System Environment Variables are\n // exposed. When exposed, validation is not necessary since we are falling back to\n // process.env.VERCEL_PROJECT_PRODUCTION_URL, process.env.VERCEL_BRANCH_URL, or\n // process.env.VERCEL_URL for the `metadataBase`. process.env.VERCEL is undefined\n // when System Environment Variables are not exposed. When not exposed, we cannot\n // detect in the build environment if the deployment is a Vercel deployment or not.\n //\n // x-ref: https://vercel.com/docs/projects/environment-variables/system-environment-variables#system-environment-variables\n const isUsingVercelSystemEnvironmentVariables = Boolean(process.env.VERCEL)\n\n const isRelativeUrl =\n typeof inputUrl === 'string' && !isFullStringUrl(inputUrl)\n\n // When no explicit metadataBase is specified by the user, we'll override it with the fallback metadata\n // under the following conditions:\n // - The provided URL is relative (ie ./og-image).\n // - The image is statically generated by Next.js (such as the special `opengraph-image` route)\n // In both cases, we want to ensure that across all environments, the ogImage is a fully qualified URL.\n // In the `opengraph-image` case, since the user isn't explicitly passing a relative path, this ensures\n // the ogImage will be properly discovered across different environments without the user needing to\n // have a bunch of `process.env` checks when defining their `metadataBase`.\n if (isRelativeUrl && (!metadataBase || isStaticMetadataRouteFile)) {\n const fallbackMetadataBase =\n getSocialImageMetadataBaseFallback(metadataBase)\n\n // When not using Vercel environment variables for URL injection, we aren't able to determine\n // a fallback value for `metadataBase`. For self-hosted setups, we want to warn\n // about this since the only fallback we'll be able to generate is `localhost`.\n // In development, we'll only warn for relative metadata that isn't part of the static\n // metadata conventions (eg `opengraph-image`), as otherwise it's currently very noisy\n // for common cases. Eventually we should remove this warning all together in favor of\n // devtools.\n const shouldWarn =\n !isUsingVercelSystemEnvironmentVariables &&\n !metadataBase &&\n (process.env.NODE_ENV === 'production' || !isStaticMetadataRouteFile)\n\n if (shouldWarn) {\n warnOnce(\n `metadataBase property in metadata export is not set for resolving social open graph or twitter images, using \"${fallbackMetadataBase.origin}\". See https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase`\n )\n }\n\n metadataBase = fallbackMetadataBase\n }\n\n return isItemUrl\n ? {\n url: resolveUrl(inputUrl, metadataBase),\n }\n : {\n ...item,\n // Update image descriptor url\n url: resolveUrl(inputUrl, metadataBase),\n }\n}\n\nexport function resolveImages(\n images: Twitter['images'],\n metadataBase: MetadataBaseURL,\n isStaticMetadataRouteFile: boolean\n): NonNullable['images']\nexport function resolveImages(\n images: OpenGraph['images'],\n metadataBase: MetadataBaseURL,\n isStaticMetadataRouteFile: boolean\n): NonNullable['images']\nexport function resolveImages(\n images: OpenGraph['images'] | Twitter['images'],\n metadataBase: MetadataBaseURL,\n isStaticMetadataRouteFile: boolean\n):\n | NonNullable['images']\n | NonNullable['images'] {\n const resolvedImages = resolveAsArrayOrUndefined(images)\n if (!resolvedImages) return resolvedImages\n\n const nonNullableImages = []\n for (const item of resolvedImages) {\n const resolvedItem = resolveAndValidateImage(\n item,\n metadataBase,\n isStaticMetadataRouteFile\n )\n if (!resolvedItem) continue\n\n nonNullableImages.push(resolvedItem)\n }\n\n return nonNullableImages\n}\n\nconst ogTypeToFields: Record = {\n article: OgTypeFields.article,\n book: OgTypeFields.article,\n 'music.song': OgTypeFields.song,\n 'music.album': OgTypeFields.song,\n 'music.playlist': OgTypeFields.playlist,\n 'music.radio_station': OgTypeFields.radio,\n 'video.movie': OgTypeFields.video,\n 'video.episode': OgTypeFields.video,\n}\n\nfunction getFieldsByOgType(ogType: OpenGraphType | undefined) {\n if (!ogType || !(ogType in ogTypeToFields)) return OgTypeFields.basic\n return ogTypeToFields[ogType].concat(OgTypeFields.basic)\n}\n\nexport const resolveOpenGraph: AsyncFieldResolverExtraArgs<\n 'openGraph',\n [MetadataBaseURL, Promise, MetadataContext, string | null]\n> = async (\n openGraph,\n metadataBase,\n pathname,\n metadataContext,\n titleTemplate\n) => {\n if (!openGraph) return null\n\n function resolveProps(target: ResolvedOpenGraph, og: OpenGraph) {\n const ogType = og && 'type' in og ? og.type : undefined\n const keys = getFieldsByOgType(ogType)\n for (const k of keys) {\n const key = k as keyof ResolvedOpenGraph\n if (key in og && key !== 'url') {\n const value = og[key]\n // TODO: improve typing inferring\n ;(target as any)[key] = value ? resolveArray(value) : null\n }\n }\n target.images = resolveImages(\n og.images,\n metadataBase,\n metadataContext.isStaticMetadataRouteFile\n )\n }\n\n const resolved = {\n ...openGraph,\n title: resolveTitle(openGraph.title, titleTemplate),\n } as ResolvedOpenGraph\n resolveProps(resolved, openGraph)\n\n resolved.url = openGraph.url\n ? resolveAbsoluteUrlWithPathname(\n openGraph.url,\n metadataBase,\n await pathname,\n metadataContext\n )\n : null\n\n return resolved\n}\n\nconst TwitterBasicInfoKeys = [\n 'site',\n 'siteId',\n 'creator',\n 'creatorId',\n 'description',\n] as const\n\nexport const resolveTwitter: FieldResolverExtraArgs<\n 'twitter',\n [MetadataBaseURL, MetadataContext, string | null]\n> = (twitter, metadataBase, metadataContext, titleTemplate) => {\n if (!twitter) return null\n let card = 'card' in twitter ? twitter.card : undefined\n const resolved = {\n ...twitter,\n title: resolveTitle(twitter.title, titleTemplate),\n } as ResolvedTwitterMetadata\n for (const infoKey of TwitterBasicInfoKeys) {\n resolved[infoKey] = twitter[infoKey] || null\n }\n\n resolved.images = resolveImages(\n twitter.images,\n metadataBase,\n metadataContext.isStaticMetadataRouteFile\n )\n\n card = card || (resolved.images?.length ? 'summary_large_image' : 'summary')\n resolved.card = card\n\n if ('card' in resolved) {\n switch (resolved.card) {\n case 'player': {\n resolved.players = resolveAsArrayOrUndefined(resolved.players) || []\n break\n }\n case 'app': {\n resolved.app = resolved.app || {}\n break\n }\n case 'summary':\n case 'summary_large_image':\n break\n default:\n resolved satisfies never\n }\n }\n\n return resolved\n}\n"],"names":["resolveArray","resolveAsArrayOrUndefined","getSocialImageMetadataBaseFallback","isStringOrURL","resolveUrl","resolveAbsoluteUrlWithPathname","resolveTitle","isFullStringUrl","warnOnce","OgTypeFields","article","song","playlist","radio","video","basic","resolveAndValidateImage","item","metadataBase","isStaticMetadataRouteFile","undefined","isItemUrl","inputUrl","url","isUsingVercelSystemEnvironmentVariables","Boolean","process","env","VERCEL","isRelativeUrl","fallbackMetadataBase","shouldWarn","NODE_ENV","origin","resolveImages","images","resolvedImages","nonNullableImages","resolvedItem","push","ogTypeToFields","book","getFieldsByOgType","ogType","concat","resolveOpenGraph","openGraph","pathname","metadataContext","titleTemplate","resolveProps","target","og","type","keys","k","key","value","resolved","title","TwitterBasicInfoKeys","resolveTwitter","twitter","card","infoKey","length","players","app"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 8891, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment.ts"],"sourcesContent":["import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n"],"names":["getSegmentValue","segment","Array","isArray","isGroupSegment","endsWith","isParallelRouteSegment","startsWith","addSearchParamsIfPageSegment","searchParams","isPageSegment","includes","PAGE_SEGMENT_KEY","stringifiedQuery","JSON","stringify","computeSelectedLayoutSegment","segments","parallelRouteKey","length","rawSegment","DEFAULT_SEGMENT_KEY","getSelectedLayoutSegmentPath","tree","first","segmentPath","node","parallelRoutes","children","Object","values","segmentValue","push","NOT_FOUND_SEGMENT_KEY"],"mappings":";;;;;;;;;;;;;;;;;;;;AAEO,SAASA,gBAAgBC,OAAgB;IAC9C,OAAOC,MAAMC,OAAO,CAACF,WAAWA,OAAO,CAAC,EAAE,GAAGA;AAC/C;AAEO,SAASG,eAAeH,OAAe;IAC5C,sCAAsC;IACtC,OAAOA,OAAO,CAAC,EAAE,KAAK,OAAOA,QAAQI,QAAQ,CAAC;AAChD;AAEO,SAASC,uBAAuBL,OAAe;IACpD,OAAOA,QAAQM,UAAU,CAAC,QAAQN,YAAY;AAChD;AAEO,SAASO,6BACdP,OAAgB,EAChBQ,YAA2D;IAE3D,MAAMC,gBAAgBT,QAAQU,QAAQ,CAACC;IAEvC,IAAIF,eAAe;QACjB,MAAMG,mBAAmBC,KAAKC,SAAS,CAACN;QACxC,OAAOI,qBAAqB,OACxBD,mBAAmB,MAAMC,mBACzBD;IACN;IAEA,OAAOX;AACT;AAEO,SAASe,6BACdC,QAAyB,EACzBC,gBAAwB;IAExB,IAAI,CAACD,YAAYA,SAASE,MAAM,KAAK,GAAG;QACtC,OAAO;IACT;IAEA,iFAAiF;IACjF,MAAMC,aACJF,qBAAqB,aACjBD,QAAQ,CAAC,EAAE,GACXA,QAAQ,CAACA,SAASE,MAAM,GAAG,EAAE;IAEnC,sGAAsG;IACtG,oEAAoE;IACpE,OAAOC,eAAeC,sBAAsB,OAAOD;AACrD;AAGO,SAASE,6BACdC,IAAuB,EACvBL,gBAAwB,EACxBM,QAAQ,IAAI,EACZC,cAAwB,EAAE;IAE1B,IAAIC;IACJ,IAAIF,OAAO;QACT,kEAAkE;QAClEE,OAAOH,IAAI,CAAC,EAAE,CAACL,iBAAiB;IAClC,OAAO;QACL,oGAAoG;QACpG,MAAMS,iBAAiBJ,IAAI,CAAC,EAAE;QAC9BG,OAAOC,eAAeC,QAAQ,IAAIC,OAAOC,MAAM,CAACH,eAAe,CAAC,EAAE;IACpE;IAEA,IAAI,CAACD,MAAM,OAAOD;IAClB,MAAMxB,UAAUyB,IAAI,CAAC,EAAE;IAEvB,IAAIK,eAAe/B,gBAAgBC;IAEnC,IAAI,CAAC8B,gBAAgBA,aAAaxB,UAAU,CAACK,mBAAmB;QAC9D,OAAOa;IACT;IAEAA,YAAYO,IAAI,CAACD;IAEjB,OAAOT,6BACLI,MACAR,kBACA,OACAO;AAEJ;AAEO,MAAMb,mBAAmB,WAAU;AACnC,MAAMS,sBAAsB,cAAa;AACzC,MAAMY,wBAAwB,cAAa","ignoreList":[0]}}, - {"offset": {"line": 8965, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/app-dir-module.ts"],"sourcesContent":["import type { AppDirModules } from '../../build/webpack/loaders/next-app-loader'\nimport { DEFAULT_SEGMENT_KEY } from '../../shared/lib/segment'\n\n/**\n * LoaderTree is generated in next-app-loader.\n */\nexport type LoaderTree = [\n segment: string,\n parallelRoutes: { [parallelRouterKey: string]: LoaderTree },\n modules: AppDirModules,\n]\n\nexport async function getLayoutOrPageModule(loaderTree: LoaderTree) {\n const { layout, page, defaultPage } = loaderTree[2]\n const isLayout = typeof layout !== 'undefined'\n const isPage = typeof page !== 'undefined'\n const isDefaultPage =\n typeof defaultPage !== 'undefined' && loaderTree[0] === DEFAULT_SEGMENT_KEY\n\n let mod = undefined\n let modType: 'layout' | 'page' | undefined = undefined\n let filePath = undefined\n\n if (isLayout) {\n mod = await layout[0]()\n modType = 'layout'\n filePath = layout[1]\n } else if (isPage) {\n mod = await page[0]()\n modType = 'page'\n filePath = page[1]\n } else if (isDefaultPage) {\n mod = await defaultPage[0]()\n modType = 'page'\n filePath = defaultPage[1]\n }\n\n return { mod, modType, filePath }\n}\n\nexport async function getComponentTypeModule(\n loaderTree: LoaderTree,\n moduleType: 'layout' | 'not-found' | 'forbidden' | 'unauthorized'\n) {\n const { [moduleType]: module } = loaderTree[2]\n if (typeof module !== 'undefined') {\n return await module[0]()\n }\n return undefined\n}\n"],"names":["DEFAULT_SEGMENT_KEY","getLayoutOrPageModule","loaderTree","layout","page","defaultPage","isLayout","isPage","isDefaultPage","mod","undefined","modType","filePath","getComponentTypeModule","moduleType","module"],"mappings":";;;;;;AACA,SAASA,mBAAmB,QAAQ,2BAA0B;;AAWvD,eAAeC,sBAAsBC,UAAsB;IAChE,MAAM,EAAEC,MAAM,EAAEC,IAAI,EAAEC,WAAW,EAAE,GAAGH,UAAU,CAAC,EAAE;IACnD,MAAMI,WAAW,OAAOH,WAAW;IACnC,MAAMI,SAAS,OAAOH,SAAS;IAC/B,MAAMI,gBACJ,OAAOH,gBAAgB,eAAeH,UAAU,CAAC,EAAE,KAAKF,sLAAAA;IAE1D,IAAIS,MAAMC;IACV,IAAIC,UAAyCD;IAC7C,IAAIE,WAAWF;IAEf,IAAIJ,UAAU;QACZG,MAAM,MAAMN,MAAM,CAAC,EAAE;QACrBQ,UAAU;QACVC,WAAWT,MAAM,CAAC,EAAE;IACtB,OAAO,IAAII,QAAQ;QACjBE,MAAM,MAAML,IAAI,CAAC,EAAE;QACnBO,UAAU;QACVC,WAAWR,IAAI,CAAC,EAAE;IACpB,OAAO,IAAII,eAAe;QACxBC,MAAM,MAAMJ,WAAW,CAAC,EAAE;QAC1BM,UAAU;QACVC,WAAWP,WAAW,CAAC,EAAE;IAC3B;IAEA,OAAO;QAAEI;QAAKE;QAASC;IAAS;AAClC;AAEO,eAAeC,uBACpBX,UAAsB,EACtBY,UAAiE;IAEjE,MAAM,EAAE,CAACA,WAAW,EAAEC,MAAM,EAAE,GAAGb,UAAU,CAAC,EAAE;IAC9C,IAAI,OAAOa,WAAW,aAAa;QACjC,OAAO,MAAMA,MAAM,CAAC,EAAE;IACxB;IACA,OAAOL;AACT","ignoreList":[0]}}, - {"offset": {"line": 9011, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/interop-default.ts"],"sourcesContent":["export function interopDefault(mod: any) {\n return mod.default || mod\n}\n"],"names":["interopDefault","mod","default"],"mappings":";;;;AAAO,SAASA,eAAeC,GAAQ;IACrC,OAAOA,IAAIC,OAAO,IAAID;AACxB","ignoreList":[0]}}, - {"offset": {"line": 9022, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-basics.ts"],"sourcesContent":["import type { AlternateLinkDescriptor } from '../types/alternative-urls-types'\nimport type {\n Metadata,\n ResolvedMetadataWithURLs,\n Viewport,\n} from '../types/metadata-interface'\nimport type { ResolvedVerification } from '../types/metadata-types'\nimport type {\n FieldResolver,\n AsyncFieldResolverExtraArgs,\n MetadataContext,\n} from '../types/resolvers'\nimport { resolveAsArrayOrUndefined } from '../generate/utils'\nimport {\n resolveAbsoluteUrlWithPathname,\n type MetadataBaseURL,\n} from './resolve-url'\n\nfunction resolveAlternateUrl(\n url: string | URL,\n metadataBase: MetadataBaseURL,\n pathname: string,\n metadataContext: MetadataContext\n) {\n // If alter native url is an URL instance,\n // we treat it as a URL base and resolve with current pathname\n if (url instanceof URL) {\n const newUrl = new URL(pathname, url)\n url.searchParams.forEach((value, key) =>\n newUrl.searchParams.set(key, value)\n )\n url = newUrl\n }\n return resolveAbsoluteUrlWithPathname(\n url,\n metadataBase,\n pathname,\n metadataContext\n )\n}\n\nexport const resolveThemeColor: FieldResolver<'themeColor', Viewport> = (\n themeColor\n) => {\n if (!themeColor) return null\n const themeColorDescriptors: Viewport['themeColor'] = []\n\n resolveAsArrayOrUndefined(themeColor)?.forEach((descriptor) => {\n if (typeof descriptor === 'string')\n themeColorDescriptors.push({ color: descriptor })\n else if (typeof descriptor === 'object')\n themeColorDescriptors.push({\n color: descriptor.color,\n media: descriptor.media,\n })\n })\n\n return themeColorDescriptors\n}\n\nasync function resolveUrlValuesOfObject(\n obj:\n | Record<\n string,\n string | URL | AlternateLinkDescriptor[] | null | undefined\n >\n | null\n | undefined,\n metadataBase: MetadataBaseURL,\n pathname: Promise,\n metadataContext: MetadataContext\n): Promise> {\n if (!obj) return null\n\n const result: Record = {}\n for (const [key, value] of Object.entries(obj)) {\n if (typeof value === 'string' || value instanceof URL) {\n const pathnameForUrl = await pathname\n result[key] = [\n {\n url: resolveAlternateUrl(\n value,\n metadataBase,\n pathnameForUrl,\n metadataContext\n ),\n },\n ]\n } else if (value && value.length) {\n result[key] = []\n const pathnameForUrl = await pathname\n value.forEach((item, index) => {\n const url = resolveAlternateUrl(\n item.url,\n metadataBase,\n pathnameForUrl,\n metadataContext\n )\n result[key][index] = {\n url,\n title: item.title,\n }\n })\n }\n }\n return result\n}\n\nasync function resolveCanonicalUrl(\n urlOrDescriptor: string | URL | null | AlternateLinkDescriptor | undefined,\n metadataBase: MetadataBaseURL,\n pathname: Promise,\n metadataContext: MetadataContext\n): Promise {\n if (!urlOrDescriptor) return null\n\n const url =\n typeof urlOrDescriptor === 'string' || urlOrDescriptor instanceof URL\n ? urlOrDescriptor\n : urlOrDescriptor.url\n\n const pathnameForUrl = await pathname\n\n // Return string url because structureClone can't handle URL instance\n return {\n url: resolveAlternateUrl(\n url,\n metadataBase,\n pathnameForUrl,\n metadataContext\n ),\n }\n}\n\nexport const resolveAlternates: AsyncFieldResolverExtraArgs<\n 'alternates',\n [MetadataBaseURL, Promise, MetadataContext]\n> = async (alternates, metadataBase, pathname, context) => {\n if (!alternates) return null\n\n const canonical = await resolveCanonicalUrl(\n alternates.canonical,\n metadataBase,\n pathname,\n context\n )\n const languages = await resolveUrlValuesOfObject(\n alternates.languages,\n metadataBase,\n pathname,\n context\n )\n const media = await resolveUrlValuesOfObject(\n alternates.media,\n metadataBase,\n pathname,\n context\n )\n const types = await resolveUrlValuesOfObject(\n alternates.types,\n metadataBase,\n pathname,\n context\n )\n\n return {\n canonical,\n languages,\n media,\n types,\n }\n}\n\nconst robotsKeys = [\n 'noarchive',\n 'nosnippet',\n 'noimageindex',\n 'nocache',\n 'notranslate',\n 'indexifembedded',\n 'nositelinkssearchbox',\n 'unavailable_after',\n 'max-video-preview',\n 'max-image-preview',\n 'max-snippet',\n] as const\nconst resolveRobotsValue: (robots: Metadata['robots']) => string | null = (\n robots\n) => {\n if (!robots) return null\n if (typeof robots === 'string') return robots\n\n const values: string[] = []\n\n if (robots.index) values.push('index')\n else if (typeof robots.index === 'boolean') values.push('noindex')\n\n if (robots.follow) values.push('follow')\n else if (typeof robots.follow === 'boolean') values.push('nofollow')\n\n for (const key of robotsKeys) {\n const value = robots[key]\n if (typeof value !== 'undefined' && value !== false) {\n values.push(typeof value === 'boolean' ? key : `${key}:${value}`)\n }\n }\n\n return values.join(', ')\n}\n\nexport const resolveRobots: FieldResolver<'robots'> = (robots) => {\n if (!robots) return null\n return {\n basic: resolveRobotsValue(robots),\n googleBot:\n typeof robots !== 'string' ? resolveRobotsValue(robots.googleBot) : null,\n }\n}\n\nconst VerificationKeys = ['google', 'yahoo', 'yandex', 'me', 'other'] as const\nexport const resolveVerification: FieldResolver<'verification'> = (\n verification\n) => {\n if (!verification) return null\n const res: ResolvedVerification = {}\n\n for (const key of VerificationKeys) {\n const value = verification[key]\n if (value) {\n if (key === 'other') {\n res.other = {}\n for (const otherKey in verification.other) {\n const otherValue = resolveAsArrayOrUndefined(\n verification.other[otherKey]\n )\n if (otherValue) res.other[otherKey] = otherValue\n }\n } else res[key] = resolveAsArrayOrUndefined(value) as (string | number)[]\n }\n }\n return res\n}\n\nexport const resolveAppleWebApp: FieldResolver<'appleWebApp'> = (appWebApp) => {\n if (!appWebApp) return null\n if (appWebApp === true) {\n return {\n capable: true,\n }\n }\n\n const startupImages = appWebApp.startupImage\n ? resolveAsArrayOrUndefined(appWebApp.startupImage)?.map((item) =>\n typeof item === 'string' ? { url: item } : item\n )\n : null\n\n return {\n capable: 'capable' in appWebApp ? !!appWebApp.capable : true,\n title: appWebApp.title || null,\n startupImage: startupImages,\n statusBarStyle: appWebApp.statusBarStyle || 'default',\n }\n}\n\nexport const resolveAppLinks: FieldResolver<'appLinks'> = (appLinks) => {\n if (!appLinks) return null\n for (const key in appLinks) {\n // @ts-ignore // TODO: type infer\n appLinks[key] = resolveAsArrayOrUndefined(appLinks[key])\n }\n return appLinks as ResolvedMetadataWithURLs['appLinks']\n}\n\nexport const resolveItunes: AsyncFieldResolverExtraArgs<\n 'itunes',\n [MetadataBaseURL, Promise, MetadataContext]\n> = async (itunes, metadataBase, pathname, context) => {\n if (!itunes) return null\n return {\n appId: itunes.appId,\n appArgument: itunes.appArgument\n ? resolveAlternateUrl(\n itunes.appArgument,\n metadataBase,\n await pathname,\n context\n )\n : undefined,\n }\n}\n\nexport const resolveFacebook: FieldResolver<'facebook'> = (facebook) => {\n if (!facebook) return null\n return {\n appId: facebook.appId,\n admins: resolveAsArrayOrUndefined(facebook.admins),\n }\n}\n\nexport const resolvePagination: AsyncFieldResolverExtraArgs<\n 'pagination',\n [MetadataBaseURL, Promise, MetadataContext]\n> = async (pagination, metadataBase, pathname, context) => {\n return {\n previous: pagination?.previous\n ? resolveAlternateUrl(\n pagination.previous,\n metadataBase,\n await pathname,\n context\n )\n : null,\n next: pagination?.next\n ? resolveAlternateUrl(\n pagination.next,\n metadataBase,\n await pathname,\n context\n )\n : null,\n }\n}\n"],"names":["resolveAsArrayOrUndefined","resolveAbsoluteUrlWithPathname","resolveAlternateUrl","url","metadataBase","pathname","metadataContext","URL","newUrl","searchParams","forEach","value","key","set","resolveThemeColor","themeColor","themeColorDescriptors","descriptor","push","color","media","resolveUrlValuesOfObject","obj","result","Object","entries","pathnameForUrl","length","item","index","title","resolveCanonicalUrl","urlOrDescriptor","resolveAlternates","alternates","context","canonical","languages","types","robotsKeys","resolveRobotsValue","robots","values","follow","join","resolveRobots","basic","googleBot","VerificationKeys","resolveVerification","verification","res","other","otherKey","otherValue","resolveAppleWebApp","appWebApp","capable","startupImages","startupImage","map","statusBarStyle","resolveAppLinks","appLinks","resolveItunes","itunes","appId","appArgument","undefined","resolveFacebook","facebook","admins","resolvePagination","pagination","previous","next"],"mappings":";;;;;;;;;;;;;;;;;;;;AAYA,SAASA,yBAAyB,QAAQ,oBAAmB;AAC7D,SACEC,8BAA8B,QAEzB,gBAAe;;;AAEtB,SAASC,oBACPC,GAAiB,EACjBC,YAA6B,EAC7BC,QAAgB,EAChBC,eAAgC;IAEhC,0CAA0C;IAC1C,8DAA8D;IAC9D,IAAIH,eAAeI,KAAK;QACtB,MAAMC,SAAS,IAAID,IAAIF,UAAUF;QACjCA,IAAIM,YAAY,CAACC,OAAO,CAAC,CAACC,OAAOC,MAC/BJ,OAAOC,YAAY,CAACI,GAAG,CAACD,KAAKD;QAE/BR,MAAMK;IACR;IACA,WAAOP,uNAAAA,EACLE,KACAC,cACAC,UACAC;AAEJ;AAEO,MAAMQ,oBAA2D,CACtEC;QAKAf;IAHA,IAAI,CAACe,YAAY,OAAO;IACxB,MAAMC,wBAAgD,EAAE;KAExDhB,iCAAAA,wMAAAA,EAA0Be,WAAAA,KAAAA,OAAAA,KAAAA,IAA1Bf,2BAAuCU,OAAO,CAAC,CAACO;QAC9C,IAAI,OAAOA,eAAe,UACxBD,sBAAsBE,IAAI,CAAC;YAAEC,OAAOF;QAAW;aAC5C,IAAI,OAAOA,eAAe,UAC7BD,sBAAsBE,IAAI,CAAC;YACzBC,OAAOF,WAAWE,KAAK;YACvBC,OAAOH,WAAWG,KAAK;QACzB;IACJ;IAEA,OAAOJ;AACT,EAAC;AAED,eAAeK,yBACbC,GAMa,EACblB,YAA6B,EAC7BC,QAAyB,EACzBC,eAAgC;IAEhC,IAAI,CAACgB,KAAK,OAAO;IAEjB,MAAMC,SAAoD,CAAC;IAC3D,KAAK,MAAM,CAACX,KAAKD,MAAM,IAAIa,OAAOC,OAAO,CAACH,KAAM;QAC9C,IAAI,OAAOX,UAAU,YAAYA,iBAAiBJ,KAAK;YACrD,MAAMmB,iBAAiB,MAAMrB;YAC7BkB,MAAM,CAACX,IAAI,GAAG;gBACZ;oBACET,KAAKD,oBACHS,OACAP,cACAsB,gBACApB;gBAEJ;aACD;QACH,OAAO,IAAIK,SAASA,MAAMgB,MAAM,EAAE;YAChCJ,MAAM,CAACX,IAAI,GAAG,EAAE;YAChB,MAAMc,iBAAiB,MAAMrB;YAC7BM,MAAMD,OAAO,CAAC,CAACkB,MAAMC;gBACnB,MAAM1B,MAAMD,oBACV0B,KAAKzB,GAAG,EACRC,cACAsB,gBACApB;gBAEFiB,MAAM,CAACX,IAAI,CAACiB,MAAM,GAAG;oBACnB1B;oBACA2B,OAAOF,KAAKE,KAAK;gBACnB;YACF;QACF;IACF;IACA,OAAOP;AACT;AAEA,eAAeQ,oBACbC,eAA0E,EAC1E5B,YAA6B,EAC7BC,QAAyB,EACzBC,eAAgC;IAEhC,IAAI,CAAC0B,iBAAiB,OAAO;IAE7B,MAAM7B,MACJ,OAAO6B,oBAAoB,YAAYA,2BAA2BzB,MAC9DyB,kBACAA,gBAAgB7B,GAAG;IAEzB,MAAMuB,iBAAiB,MAAMrB;IAE7B,qEAAqE;IACrE,OAAO;QACLF,KAAKD,oBACHC,KACAC,cACAsB,gBACApB;IAEJ;AACF;AAEO,MAAM2B,oBAGT,OAAOC,YAAY9B,cAAcC,UAAU8B;IAC7C,IAAI,CAACD,YAAY,OAAO;IAExB,MAAME,YAAY,MAAML,oBACtBG,WAAWE,SAAS,EACpBhC,cACAC,UACA8B;IAEF,MAAME,YAAY,MAAMhB,yBACtBa,WAAWG,SAAS,EACpBjC,cACAC,UACA8B;IAEF,MAAMf,QAAQ,MAAMC,yBAClBa,WAAWd,KAAK,EAChBhB,cACAC,UACA8B;IAEF,MAAMG,QAAQ,MAAMjB,yBAClBa,WAAWI,KAAK,EAChBlC,cACAC,UACA8B;IAGF,OAAO;QACLC;QACAC;QACAjB;QACAkB;IACF;AACF,EAAC;AAED,MAAMC,aAAa;IACjB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;CACD;AACD,MAAMC,qBAAoE,CACxEC;IAEA,IAAI,CAACA,QAAQ,OAAO;IACpB,IAAI,OAAOA,WAAW,UAAU,OAAOA;IAEvC,MAAMC,SAAmB,EAAE;IAE3B,IAAID,OAAOZ,KAAK,EAAEa,OAAOxB,IAAI,CAAC;SACzB,IAAI,OAAOuB,OAAOZ,KAAK,KAAK,WAAWa,OAAOxB,IAAI,CAAC;IAExD,IAAIuB,OAAOE,MAAM,EAAED,OAAOxB,IAAI,CAAC;SAC1B,IAAI,OAAOuB,OAAOE,MAAM,KAAK,WAAWD,OAAOxB,IAAI,CAAC;IAEzD,KAAK,MAAMN,OAAO2B,WAAY;QAC5B,MAAM5B,QAAQ8B,MAAM,CAAC7B,IAAI;QACzB,IAAI,OAAOD,UAAU,eAAeA,UAAU,OAAO;YACnD+B,OAAOxB,IAAI,CAAC,OAAOP,UAAU,YAAYC,MAAM,GAAGA,IAAI,CAAC,EAAED,OAAO;QAClE;IACF;IAEA,OAAO+B,OAAOE,IAAI,CAAC;AACrB;AAEO,MAAMC,gBAAyC,CAACJ;IACrD,IAAI,CAACA,QAAQ,OAAO;IACpB,OAAO;QACLK,OAAON,mBAAmBC;QAC1BM,WACE,OAAON,WAAW,WAAWD,mBAAmBC,OAAOM,SAAS,IAAI;IACxE;AACF,EAAC;AAED,MAAMC,mBAAmB;IAAC;IAAU;IAAS;IAAU;IAAM;CAAQ;AAC9D,MAAMC,sBAAqD,CAChEC;IAEA,IAAI,CAACA,cAAc,OAAO;IAC1B,MAAMC,MAA4B,CAAC;IAEnC,KAAK,MAAMvC,OAAOoC,iBAAkB;QAClC,MAAMrC,QAAQuC,YAAY,CAACtC,IAAI;QAC/B,IAAID,OAAO;YACT,IAAIC,QAAQ,SAAS;gBACnBuC,IAAIC,KAAK,GAAG,CAAC;gBACb,IAAK,MAAMC,YAAYH,aAAaE,KAAK,CAAE;oBACzC,MAAME,iBAAatD,wMAAAA,EACjBkD,aAAaE,KAAK,CAACC,SAAS;oBAE9B,IAAIC,YAAYH,IAAIC,KAAK,CAACC,SAAS,GAAGC;gBACxC;YACF,OAAOH,GAAG,CAACvC,IAAI,OAAGZ,wMAAAA,EAA0BW;QAC9C;IACF;IACA,OAAOwC;AACT,EAAC;AAEM,MAAMI,qBAAmD,CAACC;QAS3DxD;IARJ,IAAI,CAACwD,WAAW,OAAO;IACvB,IAAIA,cAAc,MAAM;QACtB,OAAO;YACLC,SAAS;QACX;IACF;IAEA,MAAMC,gBAAgBF,UAAUG,YAAY,GAAA,CACxC3D,iCAAAA,wMAAAA,EAA0BwD,UAAUG,YAAY,CAAA,KAAA,OAAA,KAAA,IAAhD3D,2BAAmD4D,GAAG,CAAC,CAAChC,OACtD,OAAOA,SAAS,WAAW;YAAEzB,KAAKyB;QAAK,IAAIA,QAE7C;IAEJ,OAAO;QACL6B,SAAS,aAAaD,YAAY,CAAC,CAACA,UAAUC,OAAO,GAAG;QACxD3B,OAAO0B,UAAU1B,KAAK,IAAI;QAC1B6B,cAAcD;QACdG,gBAAgBL,UAAUK,cAAc,IAAI;IAC9C;AACF,EAAC;AAEM,MAAMC,kBAA6C,CAACC;IACzD,IAAI,CAACA,UAAU,OAAO;IACtB,IAAK,MAAMnD,OAAOmD,SAAU;QAC1B,iCAAiC;QACjCA,QAAQ,CAACnD,IAAI,OAAGZ,wMAAAA,EAA0B+D,QAAQ,CAACnD,IAAI;IACzD;IACA,OAAOmD;AACT,EAAC;AAEM,MAAMC,gBAGT,OAAOC,QAAQ7D,cAAcC,UAAU8B;IACzC,IAAI,CAAC8B,QAAQ,OAAO;IACpB,OAAO;QACLC,OAAOD,OAAOC,KAAK;QACnBC,aAAaF,OAAOE,WAAW,GAC3BjE,oBACE+D,OAAOE,WAAW,EAClB/D,cACA,MAAMC,UACN8B,WAEFiC;IACN;AACF,EAAC;AAEM,MAAMC,kBAA6C,CAACC;IACzD,IAAI,CAACA,UAAU,OAAO;IACtB,OAAO;QACLJ,OAAOI,SAASJ,KAAK;QACrBK,YAAQvE,wMAAAA,EAA0BsE,SAASC,MAAM;IACnD;AACF,EAAC;AAEM,MAAMC,oBAGT,OAAOC,YAAYrE,cAAcC,UAAU8B;IAC7C,OAAO;QACLuC,UAAUD,CAAAA,cAAAA,OAAAA,KAAAA,IAAAA,WAAYC,QAAQ,IAC1BxE,oBACEuE,WAAWC,QAAQ,EACnBtE,cACA,MAAMC,UACN8B,WAEF;QACJwC,MAAMF,CAAAA,cAAAA,OAAAA,KAAAA,IAAAA,WAAYE,IAAI,IAClBzE,oBACEuE,WAAWE,IAAI,EACfvE,cACA,MAAMC,UACN8B,WAEF;IACN;AACF,EAAC","ignoreList":[0]}}, - {"offset": {"line": 9228, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-icons.ts"],"sourcesContent":["import type { ResolvedMetadataWithURLs } from '../types/metadata-interface'\nimport type { Icon, IconDescriptor } from '../types/metadata-types'\nimport type { FieldResolver } from '../types/resolvers'\nimport { resolveAsArrayOrUndefined } from '../generate/utils'\nimport { isStringOrURL } from './resolve-url'\nimport { IconKeys } from '../constants'\n\nexport function resolveIcon(icon: Icon): IconDescriptor {\n if (isStringOrURL(icon)) return { url: icon }\n else if (Array.isArray(icon)) return icon\n return icon\n}\n\nexport const resolveIcons: FieldResolver<'icons'> = (icons) => {\n if (!icons) {\n return null\n }\n\n const resolved: ResolvedMetadataWithURLs['icons'] = {\n icon: [],\n apple: [],\n }\n if (Array.isArray(icons)) {\n resolved.icon = icons.map(resolveIcon).filter(Boolean)\n } else if (isStringOrURL(icons)) {\n resolved.icon = [resolveIcon(icons)]\n } else {\n for (const key of IconKeys) {\n const values = resolveAsArrayOrUndefined(icons[key])\n if (values) resolved[key] = values.map(resolveIcon)\n }\n }\n return resolved\n}\n"],"names":["resolveAsArrayOrUndefined","isStringOrURL","IconKeys","resolveIcon","icon","url","Array","isArray","resolveIcons","icons","resolved","apple","map","filter","Boolean","key","values"],"mappings":";;;;;;AAGA,SAASA,yBAAyB,QAAQ,oBAAmB;AAC7D,SAASC,aAAa,QAAQ,gBAAe;AAC7C,SAASC,QAAQ,QAAQ,eAAc;;;;AAEhC,SAASC,YAAYC,IAAU;IACpC,QAAIH,sMAAAA,EAAcG,OAAO,OAAO;QAAEC,KAAKD;IAAK;SACvC,IAAIE,MAAMC,OAAO,CAACH,OAAO,OAAOA;IACrC,OAAOA;AACT;AAEO,MAAMI,eAAuC,CAACC;IACnD,IAAI,CAACA,OAAO;QACV,OAAO;IACT;IAEA,MAAMC,WAA8C;QAClDN,MAAM,EAAE;QACRO,OAAO,EAAE;IACX;IACA,IAAIL,MAAMC,OAAO,CAACE,QAAQ;QACxBC,SAASN,IAAI,GAAGK,MAAMG,GAAG,CAACT,aAAaU,MAAM,CAACC;IAChD,OAAO,QAAIb,sMAAAA,EAAcQ,QAAQ;QAC/BC,SAASN,IAAI,GAAG;YAACD,YAAYM;SAAO;IACtC,OAAO;QACL,KAAK,MAAMM,OAAOb,+KAAAA,CAAU;YAC1B,MAAMc,aAAShB,wMAAAA,EAA0BS,KAAK,CAACM,IAAI;YACnD,IAAIC,QAAQN,QAAQ,CAACK,IAAI,GAAGC,OAAOJ,GAAG,CAACT;QACzC;IACF;IACA,OAAOO;AACT,EAAC","ignoreList":[0]}}, - {"offset": {"line": 9273, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/trace/constants.ts"],"sourcesContent":["/**\n * Contains predefined constants for the trace span name in next/server.\n *\n * Currently, next/server/tracer is internal implementation only for tracking\n * next.js's implementation only with known span names defined here.\n **/\n\n// eslint typescript has a bug with TS enums\n\nenum BaseServerSpan {\n handleRequest = 'BaseServer.handleRequest',\n run = 'BaseServer.run',\n pipe = 'BaseServer.pipe',\n getStaticHTML = 'BaseServer.getStaticHTML',\n render = 'BaseServer.render',\n renderToResponseWithComponents = 'BaseServer.renderToResponseWithComponents',\n renderToResponse = 'BaseServer.renderToResponse',\n renderToHTML = 'BaseServer.renderToHTML',\n renderError = 'BaseServer.renderError',\n renderErrorToResponse = 'BaseServer.renderErrorToResponse',\n renderErrorToHTML = 'BaseServer.renderErrorToHTML',\n render404 = 'BaseServer.render404',\n}\n\nenum LoadComponentsSpan {\n loadDefaultErrorComponents = 'LoadComponents.loadDefaultErrorComponents',\n loadComponents = 'LoadComponents.loadComponents',\n}\n\nenum NextServerSpan {\n getRequestHandler = 'NextServer.getRequestHandler',\n getRequestHandlerWithMetadata = 'NextServer.getRequestHandlerWithMetadata',\n getServer = 'NextServer.getServer',\n getServerRequestHandler = 'NextServer.getServerRequestHandler',\n createServer = 'createServer.createServer',\n}\n\nenum NextNodeServerSpan {\n compression = 'NextNodeServer.compression',\n getBuildId = 'NextNodeServer.getBuildId',\n createComponentTree = 'NextNodeServer.createComponentTree',\n clientComponentLoading = 'NextNodeServer.clientComponentLoading',\n getLayoutOrPageModule = 'NextNodeServer.getLayoutOrPageModule',\n generateStaticRoutes = 'NextNodeServer.generateStaticRoutes',\n generateFsStaticRoutes = 'NextNodeServer.generateFsStaticRoutes',\n generatePublicRoutes = 'NextNodeServer.generatePublicRoutes',\n generateImageRoutes = 'NextNodeServer.generateImageRoutes.route',\n sendRenderResult = 'NextNodeServer.sendRenderResult',\n proxyRequest = 'NextNodeServer.proxyRequest',\n runApi = 'NextNodeServer.runApi',\n render = 'NextNodeServer.render',\n renderHTML = 'NextNodeServer.renderHTML',\n imageOptimizer = 'NextNodeServer.imageOptimizer',\n getPagePath = 'NextNodeServer.getPagePath',\n getRoutesManifest = 'NextNodeServer.getRoutesManifest',\n findPageComponents = 'NextNodeServer.findPageComponents',\n getFontManifest = 'NextNodeServer.getFontManifest',\n getServerComponentManifest = 'NextNodeServer.getServerComponentManifest',\n getRequestHandler = 'NextNodeServer.getRequestHandler',\n renderToHTML = 'NextNodeServer.renderToHTML',\n renderError = 'NextNodeServer.renderError',\n renderErrorToHTML = 'NextNodeServer.renderErrorToHTML',\n render404 = 'NextNodeServer.render404',\n startResponse = 'NextNodeServer.startResponse',\n\n // nested inner span, does not require parent scope name\n route = 'route',\n onProxyReq = 'onProxyReq',\n apiResolver = 'apiResolver',\n internalFetch = 'internalFetch',\n}\n\nenum StartServerSpan {\n startServer = 'startServer.startServer',\n}\n\nenum RenderSpan {\n getServerSideProps = 'Render.getServerSideProps',\n getStaticProps = 'Render.getStaticProps',\n renderToString = 'Render.renderToString',\n renderDocument = 'Render.renderDocument',\n createBodyResult = 'Render.createBodyResult',\n}\n\nenum AppRenderSpan {\n renderToString = 'AppRender.renderToString',\n renderToReadableStream = 'AppRender.renderToReadableStream',\n getBodyResult = 'AppRender.getBodyResult',\n fetch = 'AppRender.fetch',\n}\n\nenum RouterSpan {\n executeRoute = 'Router.executeRoute',\n}\n\nenum NodeSpan {\n runHandler = 'Node.runHandler',\n}\n\nenum AppRouteRouteHandlersSpan {\n runHandler = 'AppRouteRouteHandlers.runHandler',\n}\n\nenum ResolveMetadataSpan {\n generateMetadata = 'ResolveMetadata.generateMetadata',\n generateViewport = 'ResolveMetadata.generateViewport',\n}\n\nenum MiddlewareSpan {\n execute = 'Middleware.execute',\n}\n\ntype SpanTypes =\n | `${BaseServerSpan}`\n | `${LoadComponentsSpan}`\n | `${NextServerSpan}`\n | `${StartServerSpan}`\n | `${NextNodeServerSpan}`\n | `${RenderSpan}`\n | `${RouterSpan}`\n | `${AppRenderSpan}`\n | `${NodeSpan}`\n | `${AppRouteRouteHandlersSpan}`\n | `${ResolveMetadataSpan}`\n | `${MiddlewareSpan}`\n\n// This list is used to filter out spans that are not relevant to the user\nexport const NextVanillaSpanAllowlist = new Set([\n MiddlewareSpan.execute,\n BaseServerSpan.handleRequest,\n RenderSpan.getServerSideProps,\n RenderSpan.getStaticProps,\n AppRenderSpan.fetch,\n AppRenderSpan.getBodyResult,\n RenderSpan.renderDocument,\n NodeSpan.runHandler,\n AppRouteRouteHandlersSpan.runHandler,\n ResolveMetadataSpan.generateMetadata,\n ResolveMetadataSpan.generateViewport,\n NextNodeServerSpan.createComponentTree,\n NextNodeServerSpan.findPageComponents,\n NextNodeServerSpan.getLayoutOrPageModule,\n NextNodeServerSpan.startResponse,\n NextNodeServerSpan.clientComponentLoading,\n])\n\n// These Spans are allowed to be always logged\n// when the otel log prefix env is set\nexport const LogSpanAllowList = new Set([\n NextNodeServerSpan.findPageComponents,\n NextNodeServerSpan.createComponentTree,\n NextNodeServerSpan.clientComponentLoading,\n])\n\nexport {\n BaseServerSpan,\n LoadComponentsSpan,\n NextServerSpan,\n NextNodeServerSpan,\n StartServerSpan,\n RenderSpan,\n RouterSpan,\n AppRenderSpan,\n NodeSpan,\n AppRouteRouteHandlersSpan,\n ResolveMetadataSpan,\n MiddlewareSpan,\n}\n\nexport type { SpanTypes }\n"],"names":["BaseServerSpan","LoadComponentsSpan","NextServerSpan","NextNodeServerSpan","StartServerSpan","RenderSpan","AppRenderSpan","RouterSpan","NodeSpan","AppRouteRouteHandlersSpan","ResolveMetadataSpan","MiddlewareSpan","NextVanillaSpanAllowlist","Set","LogSpanAllowList"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;EAKE,GAEF,4CAA4C;AAE5C,IAAKA,iBAAAA,WAAAA,GAAAA,SAAAA,cAAAA;;;;;;;;;;;;;WAAAA;EAAAA,kBAAAA,CAAAA;AAeL,IAAKC,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;WAAAA;EAAAA,sBAAAA,CAAAA;AAKL,IAAKC,iBAAAA,WAAAA,GAAAA,SAAAA,cAAAA;;;;;;WAAAA;EAAAA,kBAAAA,CAAAA;AAQL,IAAKC,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4BH,wDAAwD;;;;;WA5BrDA;EAAAA,sBAAAA,CAAAA;AAmCL,IAAKC,kBAAAA,WAAAA,GAAAA,SAAAA,eAAAA;;WAAAA;EAAAA,mBAAAA,CAAAA;AAIL,IAAKC,aAAAA,WAAAA,GAAAA,SAAAA,UAAAA;;;;;;WAAAA;EAAAA,cAAAA,CAAAA;AAQL,IAAKC,gBAAAA,WAAAA,GAAAA,SAAAA,aAAAA;;;;;WAAAA;EAAAA,iBAAAA,CAAAA;AAOL,IAAKC,aAAAA,WAAAA,GAAAA,SAAAA,UAAAA;;WAAAA;EAAAA,cAAAA,CAAAA;AAIL,IAAKC,WAAAA,WAAAA,GAAAA,SAAAA,QAAAA;;WAAAA;EAAAA,YAAAA,CAAAA;AAIL,IAAKC,4BAAAA,WAAAA,GAAAA,SAAAA,yBAAAA;;WAAAA;EAAAA,6BAAAA,CAAAA;AAIL,IAAKC,sBAAAA,WAAAA,GAAAA,SAAAA,mBAAAA;;;WAAAA;EAAAA,uBAAAA,CAAAA;AAKL,IAAKC,iBAAAA,WAAAA,GAAAA,SAAAA,cAAAA;;WAAAA;EAAAA,kBAAAA,CAAAA;AAmBE,MAAMC,2BAA2B,IAAIC,IAAI;;;;;;;;;;;;;;;;;CAiB/C,EAAC;AAIK,MAAMC,mBAAmB,IAAID,IAAI;;;;CAIvC,EAAC","ignoreList":[0]}}, - {"offset": {"line": 9440, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/is-thenable.ts"],"sourcesContent":["/**\n * Check to see if a value is Thenable.\n *\n * @param promise the maybe-thenable value\n * @returns true if the value is thenable\n */\nexport function isThenable(\n promise: Promise | T\n): promise is Promise {\n return (\n promise !== null &&\n typeof promise === 'object' &&\n 'then' in promise &&\n typeof promise.then === 'function'\n )\n}\n"],"names":["isThenable","promise","then"],"mappings":"AAAA;;;;;CAKC,GACD;;;;AAAO,SAASA,WACdC,OAAuB;IAEvB,OACEA,YAAY,QACZ,OAAOA,YAAY,YACnB,UAAUA,WACV,OAAOA,QAAQC,IAAI,KAAK;AAE5B","ignoreList":[0]}}, - {"offset": {"line": 9455, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/%40opentelemetry/api/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={491:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ContextAPI=void 0;const n=r(223);const a=r(172);const o=r(930);const i=\"context\";const c=new n.NoopContextManager;class ContextAPI{constructor(){}static getInstance(){if(!this._instance){this._instance=new ContextAPI}return this._instance}setGlobalContextManager(e){return(0,a.registerGlobal)(i,e,o.DiagAPI.instance())}active(){return this._getContextManager().active()}with(e,t,r,...n){return this._getContextManager().with(e,t,r,...n)}bind(e,t){return this._getContextManager().bind(e,t)}_getContextManager(){return(0,a.getGlobal)(i)||c}disable(){this._getContextManager().disable();(0,a.unregisterGlobal)(i,o.DiagAPI.instance())}}t.ContextAPI=ContextAPI},930:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagAPI=void 0;const n=r(56);const a=r(912);const o=r(957);const i=r(172);const c=\"diag\";class DiagAPI{constructor(){function _logProxy(e){return function(...t){const r=(0,i.getGlobal)(\"diag\");if(!r)return;return r[e](...t)}}const e=this;const setLogger=(t,r={logLevel:o.DiagLogLevel.INFO})=>{var n,c,s;if(t===e){const t=new Error(\"Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation\");e.error((n=t.stack)!==null&&n!==void 0?n:t.message);return false}if(typeof r===\"number\"){r={logLevel:r}}const u=(0,i.getGlobal)(\"diag\");const l=(0,a.createLogLevelDiagLogger)((c=r.logLevel)!==null&&c!==void 0?c:o.DiagLogLevel.INFO,t);if(u&&!r.suppressOverrideMessage){const e=(s=(new Error).stack)!==null&&s!==void 0?s:\"\";u.warn(`Current logger will be overwritten from ${e}`);l.warn(`Current logger will overwrite one already registered from ${e}`)}return(0,i.registerGlobal)(\"diag\",l,e,true)};e.setLogger=setLogger;e.disable=()=>{(0,i.unregisterGlobal)(c,e)};e.createComponentLogger=e=>new n.DiagComponentLogger(e);e.verbose=_logProxy(\"verbose\");e.debug=_logProxy(\"debug\");e.info=_logProxy(\"info\");e.warn=_logProxy(\"warn\");e.error=_logProxy(\"error\")}static instance(){if(!this._instance){this._instance=new DiagAPI}return this._instance}}t.DiagAPI=DiagAPI},653:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.MetricsAPI=void 0;const n=r(660);const a=r(172);const o=r(930);const i=\"metrics\";class MetricsAPI{constructor(){}static getInstance(){if(!this._instance){this._instance=new MetricsAPI}return this._instance}setGlobalMeterProvider(e){return(0,a.registerGlobal)(i,e,o.DiagAPI.instance())}getMeterProvider(){return(0,a.getGlobal)(i)||n.NOOP_METER_PROVIDER}getMeter(e,t,r){return this.getMeterProvider().getMeter(e,t,r)}disable(){(0,a.unregisterGlobal)(i,o.DiagAPI.instance())}}t.MetricsAPI=MetricsAPI},181:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.PropagationAPI=void 0;const n=r(172);const a=r(874);const o=r(194);const i=r(277);const c=r(369);const s=r(930);const u=\"propagation\";const l=new a.NoopTextMapPropagator;class PropagationAPI{constructor(){this.createBaggage=c.createBaggage;this.getBaggage=i.getBaggage;this.getActiveBaggage=i.getActiveBaggage;this.setBaggage=i.setBaggage;this.deleteBaggage=i.deleteBaggage}static getInstance(){if(!this._instance){this._instance=new PropagationAPI}return this._instance}setGlobalPropagator(e){return(0,n.registerGlobal)(u,e,s.DiagAPI.instance())}inject(e,t,r=o.defaultTextMapSetter){return this._getGlobalPropagator().inject(e,t,r)}extract(e,t,r=o.defaultTextMapGetter){return this._getGlobalPropagator().extract(e,t,r)}fields(){return this._getGlobalPropagator().fields()}disable(){(0,n.unregisterGlobal)(u,s.DiagAPI.instance())}_getGlobalPropagator(){return(0,n.getGlobal)(u)||l}}t.PropagationAPI=PropagationAPI},997:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceAPI=void 0;const n=r(172);const a=r(846);const o=r(139);const i=r(607);const c=r(930);const s=\"trace\";class TraceAPI{constructor(){this._proxyTracerProvider=new a.ProxyTracerProvider;this.wrapSpanContext=o.wrapSpanContext;this.isSpanContextValid=o.isSpanContextValid;this.deleteSpan=i.deleteSpan;this.getSpan=i.getSpan;this.getActiveSpan=i.getActiveSpan;this.getSpanContext=i.getSpanContext;this.setSpan=i.setSpan;this.setSpanContext=i.setSpanContext}static getInstance(){if(!this._instance){this._instance=new TraceAPI}return this._instance}setGlobalTracerProvider(e){const t=(0,n.registerGlobal)(s,this._proxyTracerProvider,c.DiagAPI.instance());if(t){this._proxyTracerProvider.setDelegate(e)}return t}getTracerProvider(){return(0,n.getGlobal)(s)||this._proxyTracerProvider}getTracer(e,t){return this.getTracerProvider().getTracer(e,t)}disable(){(0,n.unregisterGlobal)(s,c.DiagAPI.instance());this._proxyTracerProvider=new a.ProxyTracerProvider}}t.TraceAPI=TraceAPI},277:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.deleteBaggage=t.setBaggage=t.getActiveBaggage=t.getBaggage=void 0;const n=r(491);const a=r(780);const o=(0,a.createContextKey)(\"OpenTelemetry Baggage Key\");function getBaggage(e){return e.getValue(o)||undefined}t.getBaggage=getBaggage;function getActiveBaggage(){return getBaggage(n.ContextAPI.getInstance().active())}t.getActiveBaggage=getActiveBaggage;function setBaggage(e,t){return e.setValue(o,t)}t.setBaggage=setBaggage;function deleteBaggage(e){return e.deleteValue(o)}t.deleteBaggage=deleteBaggage},993:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.BaggageImpl=void 0;class BaggageImpl{constructor(e){this._entries=e?new Map(e):new Map}getEntry(e){const t=this._entries.get(e);if(!t){return undefined}return Object.assign({},t)}getAllEntries(){return Array.from(this._entries.entries()).map((([e,t])=>[e,t]))}setEntry(e,t){const r=new BaggageImpl(this._entries);r._entries.set(e,t);return r}removeEntry(e){const t=new BaggageImpl(this._entries);t._entries.delete(e);return t}removeEntries(...e){const t=new BaggageImpl(this._entries);for(const r of e){t._entries.delete(r)}return t}clear(){return new BaggageImpl}}t.BaggageImpl=BaggageImpl},830:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.baggageEntryMetadataSymbol=void 0;t.baggageEntryMetadataSymbol=Symbol(\"BaggageEntryMetadata\")},369:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.baggageEntryMetadataFromString=t.createBaggage=void 0;const n=r(930);const a=r(993);const o=r(830);const i=n.DiagAPI.instance();function createBaggage(e={}){return new a.BaggageImpl(new Map(Object.entries(e)))}t.createBaggage=createBaggage;function baggageEntryMetadataFromString(e){if(typeof e!==\"string\"){i.error(`Cannot create baggage metadata from unknown type: ${typeof e}`);e=\"\"}return{__TYPE__:o.baggageEntryMetadataSymbol,toString(){return e}}}t.baggageEntryMetadataFromString=baggageEntryMetadataFromString},67:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.context=void 0;const n=r(491);t.context=n.ContextAPI.getInstance()},223:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopContextManager=void 0;const n=r(780);class NoopContextManager{active(){return n.ROOT_CONTEXT}with(e,t,r,...n){return t.call(r,...n)}bind(e,t){return t}enable(){return this}disable(){return this}}t.NoopContextManager=NoopContextManager},780:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ROOT_CONTEXT=t.createContextKey=void 0;function createContextKey(e){return Symbol.for(e)}t.createContextKey=createContextKey;class BaseContext{constructor(e){const t=this;t._currentContext=e?new Map(e):new Map;t.getValue=e=>t._currentContext.get(e);t.setValue=(e,r)=>{const n=new BaseContext(t._currentContext);n._currentContext.set(e,r);return n};t.deleteValue=e=>{const r=new BaseContext(t._currentContext);r._currentContext.delete(e);return r}}}t.ROOT_CONTEXT=new BaseContext},506:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.diag=void 0;const n=r(930);t.diag=n.DiagAPI.instance()},56:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagComponentLogger=void 0;const n=r(172);class DiagComponentLogger{constructor(e){this._namespace=e.namespace||\"DiagComponentLogger\"}debug(...e){return logProxy(\"debug\",this._namespace,e)}error(...e){return logProxy(\"error\",this._namespace,e)}info(...e){return logProxy(\"info\",this._namespace,e)}warn(...e){return logProxy(\"warn\",this._namespace,e)}verbose(...e){return logProxy(\"verbose\",this._namespace,e)}}t.DiagComponentLogger=DiagComponentLogger;function logProxy(e,t,r){const a=(0,n.getGlobal)(\"diag\");if(!a){return}r.unshift(t);return a[e](...r)}},972:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagConsoleLogger=void 0;const r=[{n:\"error\",c:\"error\"},{n:\"warn\",c:\"warn\"},{n:\"info\",c:\"info\"},{n:\"debug\",c:\"debug\"},{n:\"verbose\",c:\"trace\"}];class DiagConsoleLogger{constructor(){function _consoleFunc(e){return function(...t){if(console){let r=console[e];if(typeof r!==\"function\"){r=console.log}if(typeof r===\"function\"){return r.apply(console,t)}}}}for(let e=0;e{Object.defineProperty(t,\"__esModule\",{value:true});t.createLogLevelDiagLogger=void 0;const n=r(957);function createLogLevelDiagLogger(e,t){if(en.DiagLogLevel.ALL){e=n.DiagLogLevel.ALL}t=t||{};function _filterFunc(r,n){const a=t[r];if(typeof a===\"function\"&&e>=n){return a.bind(t)}return function(){}}return{error:_filterFunc(\"error\",n.DiagLogLevel.ERROR),warn:_filterFunc(\"warn\",n.DiagLogLevel.WARN),info:_filterFunc(\"info\",n.DiagLogLevel.INFO),debug:_filterFunc(\"debug\",n.DiagLogLevel.DEBUG),verbose:_filterFunc(\"verbose\",n.DiagLogLevel.VERBOSE)}}t.createLogLevelDiagLogger=createLogLevelDiagLogger},957:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagLogLevel=void 0;var r;(function(e){e[e[\"NONE\"]=0]=\"NONE\";e[e[\"ERROR\"]=30]=\"ERROR\";e[e[\"WARN\"]=50]=\"WARN\";e[e[\"INFO\"]=60]=\"INFO\";e[e[\"DEBUG\"]=70]=\"DEBUG\";e[e[\"VERBOSE\"]=80]=\"VERBOSE\";e[e[\"ALL\"]=9999]=\"ALL\"})(r=t.DiagLogLevel||(t.DiagLogLevel={}))},172:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.unregisterGlobal=t.getGlobal=t.registerGlobal=void 0;const n=r(200);const a=r(521);const o=r(130);const i=a.VERSION.split(\".\")[0];const c=Symbol.for(`opentelemetry.js.api.${i}`);const s=n._globalThis;function registerGlobal(e,t,r,n=false){var o;const i=s[c]=(o=s[c])!==null&&o!==void 0?o:{version:a.VERSION};if(!n&&i[e]){const t=new Error(`@opentelemetry/api: Attempted duplicate registration of API: ${e}`);r.error(t.stack||t.message);return false}if(i.version!==a.VERSION){const t=new Error(`@opentelemetry/api: Registration of version v${i.version} for ${e} does not match previously registered API v${a.VERSION}`);r.error(t.stack||t.message);return false}i[e]=t;r.debug(`@opentelemetry/api: Registered a global for ${e} v${a.VERSION}.`);return true}t.registerGlobal=registerGlobal;function getGlobal(e){var t,r;const n=(t=s[c])===null||t===void 0?void 0:t.version;if(!n||!(0,o.isCompatible)(n)){return}return(r=s[c])===null||r===void 0?void 0:r[e]}t.getGlobal=getGlobal;function unregisterGlobal(e,t){t.debug(`@opentelemetry/api: Unregistering a global for ${e} v${a.VERSION}.`);const r=s[c];if(r){delete r[e]}}t.unregisterGlobal=unregisterGlobal},130:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.isCompatible=t._makeCompatibilityCheck=void 0;const n=r(521);const a=/^(\\d+)\\.(\\d+)\\.(\\d+)(-(.+))?$/;function _makeCompatibilityCheck(e){const t=new Set([e]);const r=new Set;const n=e.match(a);if(!n){return()=>false}const o={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(o.prerelease!=null){return function isExactmatch(t){return t===e}}function _reject(e){r.add(e);return false}function _accept(e){t.add(e);return true}return function isCompatible(e){if(t.has(e)){return true}if(r.has(e)){return false}const n=e.match(a);if(!n){return _reject(e)}const i={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(i.prerelease!=null){return _reject(e)}if(o.major!==i.major){return _reject(e)}if(o.major===0){if(o.minor===i.minor&&o.patch<=i.patch){return _accept(e)}return _reject(e)}if(o.minor<=i.minor){return _accept(e)}return _reject(e)}}t._makeCompatibilityCheck=_makeCompatibilityCheck;t.isCompatible=_makeCompatibilityCheck(n.VERSION)},886:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.metrics=void 0;const n=r(653);t.metrics=n.MetricsAPI.getInstance()},901:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ValueType=void 0;var r;(function(e){e[e[\"INT\"]=0]=\"INT\";e[e[\"DOUBLE\"]=1]=\"DOUBLE\"})(r=t.ValueType||(t.ValueType={}))},102:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.createNoopMeter=t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=t.NOOP_OBSERVABLE_GAUGE_METRIC=t.NOOP_OBSERVABLE_COUNTER_METRIC=t.NOOP_UP_DOWN_COUNTER_METRIC=t.NOOP_HISTOGRAM_METRIC=t.NOOP_COUNTER_METRIC=t.NOOP_METER=t.NoopObservableUpDownCounterMetric=t.NoopObservableGaugeMetric=t.NoopObservableCounterMetric=t.NoopObservableMetric=t.NoopHistogramMetric=t.NoopUpDownCounterMetric=t.NoopCounterMetric=t.NoopMetric=t.NoopMeter=void 0;class NoopMeter{constructor(){}createHistogram(e,r){return t.NOOP_HISTOGRAM_METRIC}createCounter(e,r){return t.NOOP_COUNTER_METRIC}createUpDownCounter(e,r){return t.NOOP_UP_DOWN_COUNTER_METRIC}createObservableGauge(e,r){return t.NOOP_OBSERVABLE_GAUGE_METRIC}createObservableCounter(e,r){return t.NOOP_OBSERVABLE_COUNTER_METRIC}createObservableUpDownCounter(e,r){return t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC}addBatchObservableCallback(e,t){}removeBatchObservableCallback(e){}}t.NoopMeter=NoopMeter;class NoopMetric{}t.NoopMetric=NoopMetric;class NoopCounterMetric extends NoopMetric{add(e,t){}}t.NoopCounterMetric=NoopCounterMetric;class NoopUpDownCounterMetric extends NoopMetric{add(e,t){}}t.NoopUpDownCounterMetric=NoopUpDownCounterMetric;class NoopHistogramMetric extends NoopMetric{record(e,t){}}t.NoopHistogramMetric=NoopHistogramMetric;class NoopObservableMetric{addCallback(e){}removeCallback(e){}}t.NoopObservableMetric=NoopObservableMetric;class NoopObservableCounterMetric extends NoopObservableMetric{}t.NoopObservableCounterMetric=NoopObservableCounterMetric;class NoopObservableGaugeMetric extends NoopObservableMetric{}t.NoopObservableGaugeMetric=NoopObservableGaugeMetric;class NoopObservableUpDownCounterMetric extends NoopObservableMetric{}t.NoopObservableUpDownCounterMetric=NoopObservableUpDownCounterMetric;t.NOOP_METER=new NoopMeter;t.NOOP_COUNTER_METRIC=new NoopCounterMetric;t.NOOP_HISTOGRAM_METRIC=new NoopHistogramMetric;t.NOOP_UP_DOWN_COUNTER_METRIC=new NoopUpDownCounterMetric;t.NOOP_OBSERVABLE_COUNTER_METRIC=new NoopObservableCounterMetric;t.NOOP_OBSERVABLE_GAUGE_METRIC=new NoopObservableGaugeMetric;t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=new NoopObservableUpDownCounterMetric;function createNoopMeter(){return t.NOOP_METER}t.createNoopMeter=createNoopMeter},660:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NOOP_METER_PROVIDER=t.NoopMeterProvider=void 0;const n=r(102);class NoopMeterProvider{getMeter(e,t,r){return n.NOOP_METER}}t.NoopMeterProvider=NoopMeterProvider;t.NOOP_METER_PROVIDER=new NoopMeterProvider},200:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){if(n===undefined)n=r;Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){if(n===undefined)n=r;e[n]=t[r]});var a=this&&this.__exportStar||function(e,t){for(var r in e)if(r!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,r))n(t,e,r)};Object.defineProperty(t,\"__esModule\",{value:true});a(r(46),t)},651:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t._globalThis=void 0;t._globalThis=typeof globalThis===\"object\"?globalThis:global},46:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){if(n===undefined)n=r;Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){if(n===undefined)n=r;e[n]=t[r]});var a=this&&this.__exportStar||function(e,t){for(var r in e)if(r!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,r))n(t,e,r)};Object.defineProperty(t,\"__esModule\",{value:true});a(r(651),t)},939:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.propagation=void 0;const n=r(181);t.propagation=n.PropagationAPI.getInstance()},874:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTextMapPropagator=void 0;class NoopTextMapPropagator{inject(e,t){}extract(e,t){return e}fields(){return[]}}t.NoopTextMapPropagator=NoopTextMapPropagator},194:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.defaultTextMapSetter=t.defaultTextMapGetter=void 0;t.defaultTextMapGetter={get(e,t){if(e==null){return undefined}return e[t]},keys(e){if(e==null){return[]}return Object.keys(e)}};t.defaultTextMapSetter={set(e,t,r){if(e==null){return}e[t]=r}}},845:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.trace=void 0;const n=r(997);t.trace=n.TraceAPI.getInstance()},403:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NonRecordingSpan=void 0;const n=r(476);class NonRecordingSpan{constructor(e=n.INVALID_SPAN_CONTEXT){this._spanContext=e}spanContext(){return this._spanContext}setAttribute(e,t){return this}setAttributes(e){return this}addEvent(e,t){return this}setStatus(e){return this}updateName(e){return this}end(e){}isRecording(){return false}recordException(e,t){}}t.NonRecordingSpan=NonRecordingSpan},614:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTracer=void 0;const n=r(491);const a=r(607);const o=r(403);const i=r(139);const c=n.ContextAPI.getInstance();class NoopTracer{startSpan(e,t,r=c.active()){const n=Boolean(t===null||t===void 0?void 0:t.root);if(n){return new o.NonRecordingSpan}const s=r&&(0,a.getSpanContext)(r);if(isSpanContext(s)&&(0,i.isSpanContextValid)(s)){return new o.NonRecordingSpan(s)}else{return new o.NonRecordingSpan}}startActiveSpan(e,t,r,n){let o;let i;let s;if(arguments.length<2){return}else if(arguments.length===2){s=t}else if(arguments.length===3){o=t;s=r}else{o=t;i=r;s=n}const u=i!==null&&i!==void 0?i:c.active();const l=this.startSpan(e,o,u);const g=(0,a.setSpan)(u,l);return c.with(g,s,undefined,l)}}t.NoopTracer=NoopTracer;function isSpanContext(e){return typeof e===\"object\"&&typeof e[\"spanId\"]===\"string\"&&typeof e[\"traceId\"]===\"string\"&&typeof e[\"traceFlags\"]===\"number\"}},124:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTracerProvider=void 0;const n=r(614);class NoopTracerProvider{getTracer(e,t,r){return new n.NoopTracer}}t.NoopTracerProvider=NoopTracerProvider},125:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ProxyTracer=void 0;const n=r(614);const a=new n.NoopTracer;class ProxyTracer{constructor(e,t,r,n){this._provider=e;this.name=t;this.version=r;this.options=n}startSpan(e,t,r){return this._getTracer().startSpan(e,t,r)}startActiveSpan(e,t,r,n){const a=this._getTracer();return Reflect.apply(a.startActiveSpan,a,arguments)}_getTracer(){if(this._delegate){return this._delegate}const e=this._provider.getDelegateTracer(this.name,this.version,this.options);if(!e){return a}this._delegate=e;return this._delegate}}t.ProxyTracer=ProxyTracer},846:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ProxyTracerProvider=void 0;const n=r(125);const a=r(124);const o=new a.NoopTracerProvider;class ProxyTracerProvider{getTracer(e,t,r){var a;return(a=this.getDelegateTracer(e,t,r))!==null&&a!==void 0?a:new n.ProxyTracer(this,e,t,r)}getDelegate(){var e;return(e=this._delegate)!==null&&e!==void 0?e:o}setDelegate(e){this._delegate=e}getDelegateTracer(e,t,r){var n;return(n=this._delegate)===null||n===void 0?void 0:n.getTracer(e,t,r)}}t.ProxyTracerProvider=ProxyTracerProvider},996:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SamplingDecision=void 0;var r;(function(e){e[e[\"NOT_RECORD\"]=0]=\"NOT_RECORD\";e[e[\"RECORD\"]=1]=\"RECORD\";e[e[\"RECORD_AND_SAMPLED\"]=2]=\"RECORD_AND_SAMPLED\"})(r=t.SamplingDecision||(t.SamplingDecision={}))},607:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.getSpanContext=t.setSpanContext=t.deleteSpan=t.setSpan=t.getActiveSpan=t.getSpan=void 0;const n=r(780);const a=r(403);const o=r(491);const i=(0,n.createContextKey)(\"OpenTelemetry Context Key SPAN\");function getSpan(e){return e.getValue(i)||undefined}t.getSpan=getSpan;function getActiveSpan(){return getSpan(o.ContextAPI.getInstance().active())}t.getActiveSpan=getActiveSpan;function setSpan(e,t){return e.setValue(i,t)}t.setSpan=setSpan;function deleteSpan(e){return e.deleteValue(i)}t.deleteSpan=deleteSpan;function setSpanContext(e,t){return setSpan(e,new a.NonRecordingSpan(t))}t.setSpanContext=setSpanContext;function getSpanContext(e){var t;return(t=getSpan(e))===null||t===void 0?void 0:t.spanContext()}t.getSpanContext=getSpanContext},325:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceStateImpl=void 0;const n=r(564);const a=32;const o=512;const i=\",\";const c=\"=\";class TraceStateImpl{constructor(e){this._internalState=new Map;if(e)this._parse(e)}set(e,t){const r=this._clone();if(r._internalState.has(e)){r._internalState.delete(e)}r._internalState.set(e,t);return r}unset(e){const t=this._clone();t._internalState.delete(e);return t}get(e){return this._internalState.get(e)}serialize(){return this._keys().reduce(((e,t)=>{e.push(t+c+this.get(t));return e}),[]).join(i)}_parse(e){if(e.length>o)return;this._internalState=e.split(i).reverse().reduce(((e,t)=>{const r=t.trim();const a=r.indexOf(c);if(a!==-1){const o=r.slice(0,a);const i=r.slice(a+1,t.length);if((0,n.validateKey)(o)&&(0,n.validateValue)(i)){e.set(o,i)}else{}}return e}),new Map);if(this._internalState.size>a){this._internalState=new Map(Array.from(this._internalState.entries()).reverse().slice(0,a))}}_keys(){return Array.from(this._internalState.keys()).reverse()}_clone(){const e=new TraceStateImpl;e._internalState=new Map(this._internalState);return e}}t.TraceStateImpl=TraceStateImpl},564:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.validateValue=t.validateKey=void 0;const r=\"[_0-9a-z-*/]\";const n=`[a-z]${r}{0,255}`;const a=`[a-z0-9]${r}{0,240}@[a-z]${r}{0,13}`;const o=new RegExp(`^(?:${n}|${a})$`);const i=/^[ -~]{0,255}[!-~]$/;const c=/,|=/;function validateKey(e){return o.test(e)}t.validateKey=validateKey;function validateValue(e){return i.test(e)&&!c.test(e)}t.validateValue=validateValue},98:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.createTraceState=void 0;const n=r(325);function createTraceState(e){return new n.TraceStateImpl(e)}t.createTraceState=createTraceState},476:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.INVALID_SPAN_CONTEXT=t.INVALID_TRACEID=t.INVALID_SPANID=void 0;const n=r(475);t.INVALID_SPANID=\"0000000000000000\";t.INVALID_TRACEID=\"00000000000000000000000000000000\";t.INVALID_SPAN_CONTEXT={traceId:t.INVALID_TRACEID,spanId:t.INVALID_SPANID,traceFlags:n.TraceFlags.NONE}},357:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SpanKind=void 0;var r;(function(e){e[e[\"INTERNAL\"]=0]=\"INTERNAL\";e[e[\"SERVER\"]=1]=\"SERVER\";e[e[\"CLIENT\"]=2]=\"CLIENT\";e[e[\"PRODUCER\"]=3]=\"PRODUCER\";e[e[\"CONSUMER\"]=4]=\"CONSUMER\"})(r=t.SpanKind||(t.SpanKind={}))},139:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.wrapSpanContext=t.isSpanContextValid=t.isValidSpanId=t.isValidTraceId=void 0;const n=r(476);const a=r(403);const o=/^([0-9a-f]{32})$/i;const i=/^[0-9a-f]{16}$/i;function isValidTraceId(e){return o.test(e)&&e!==n.INVALID_TRACEID}t.isValidTraceId=isValidTraceId;function isValidSpanId(e){return i.test(e)&&e!==n.INVALID_SPANID}t.isValidSpanId=isValidSpanId;function isSpanContextValid(e){return isValidTraceId(e.traceId)&&isValidSpanId(e.spanId)}t.isSpanContextValid=isSpanContextValid;function wrapSpanContext(e){return new a.NonRecordingSpan(e)}t.wrapSpanContext=wrapSpanContext},847:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SpanStatusCode=void 0;var r;(function(e){e[e[\"UNSET\"]=0]=\"UNSET\";e[e[\"OK\"]=1]=\"OK\";e[e[\"ERROR\"]=2]=\"ERROR\"})(r=t.SpanStatusCode||(t.SpanStatusCode={}))},475:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceFlags=void 0;var r;(function(e){e[e[\"NONE\"]=0]=\"NONE\";e[e[\"SAMPLED\"]=1]=\"SAMPLED\"})(r=t.TraceFlags||(t.TraceFlags={}))},521:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.VERSION=void 0;t.VERSION=\"1.6.0\"}};var t={};function __nccwpck_require__(r){var n=t[r];if(n!==undefined){return n.exports}var a=t[r]={exports:{}};var o=true;try{e[r].call(a.exports,a,a.exports,__nccwpck_require__);o=false}finally{if(o)delete t[r]}return a.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var r={};(()=>{var e=r;Object.defineProperty(e,\"__esModule\",{value:true});e.trace=e.propagation=e.metrics=e.diag=e.context=e.INVALID_SPAN_CONTEXT=e.INVALID_TRACEID=e.INVALID_SPANID=e.isValidSpanId=e.isValidTraceId=e.isSpanContextValid=e.createTraceState=e.TraceFlags=e.SpanStatusCode=e.SpanKind=e.SamplingDecision=e.ProxyTracerProvider=e.ProxyTracer=e.defaultTextMapSetter=e.defaultTextMapGetter=e.ValueType=e.createNoopMeter=e.DiagLogLevel=e.DiagConsoleLogger=e.ROOT_CONTEXT=e.createContextKey=e.baggageEntryMetadataFromString=void 0;var t=__nccwpck_require__(369);Object.defineProperty(e,\"baggageEntryMetadataFromString\",{enumerable:true,get:function(){return t.baggageEntryMetadataFromString}});var n=__nccwpck_require__(780);Object.defineProperty(e,\"createContextKey\",{enumerable:true,get:function(){return n.createContextKey}});Object.defineProperty(e,\"ROOT_CONTEXT\",{enumerable:true,get:function(){return n.ROOT_CONTEXT}});var a=__nccwpck_require__(972);Object.defineProperty(e,\"DiagConsoleLogger\",{enumerable:true,get:function(){return a.DiagConsoleLogger}});var o=__nccwpck_require__(957);Object.defineProperty(e,\"DiagLogLevel\",{enumerable:true,get:function(){return o.DiagLogLevel}});var i=__nccwpck_require__(102);Object.defineProperty(e,\"createNoopMeter\",{enumerable:true,get:function(){return i.createNoopMeter}});var c=__nccwpck_require__(901);Object.defineProperty(e,\"ValueType\",{enumerable:true,get:function(){return c.ValueType}});var s=__nccwpck_require__(194);Object.defineProperty(e,\"defaultTextMapGetter\",{enumerable:true,get:function(){return s.defaultTextMapGetter}});Object.defineProperty(e,\"defaultTextMapSetter\",{enumerable:true,get:function(){return s.defaultTextMapSetter}});var u=__nccwpck_require__(125);Object.defineProperty(e,\"ProxyTracer\",{enumerable:true,get:function(){return u.ProxyTracer}});var l=__nccwpck_require__(846);Object.defineProperty(e,\"ProxyTracerProvider\",{enumerable:true,get:function(){return l.ProxyTracerProvider}});var g=__nccwpck_require__(996);Object.defineProperty(e,\"SamplingDecision\",{enumerable:true,get:function(){return g.SamplingDecision}});var p=__nccwpck_require__(357);Object.defineProperty(e,\"SpanKind\",{enumerable:true,get:function(){return p.SpanKind}});var d=__nccwpck_require__(847);Object.defineProperty(e,\"SpanStatusCode\",{enumerable:true,get:function(){return d.SpanStatusCode}});var _=__nccwpck_require__(475);Object.defineProperty(e,\"TraceFlags\",{enumerable:true,get:function(){return _.TraceFlags}});var f=__nccwpck_require__(98);Object.defineProperty(e,\"createTraceState\",{enumerable:true,get:function(){return f.createTraceState}});var b=__nccwpck_require__(139);Object.defineProperty(e,\"isSpanContextValid\",{enumerable:true,get:function(){return b.isSpanContextValid}});Object.defineProperty(e,\"isValidTraceId\",{enumerable:true,get:function(){return b.isValidTraceId}});Object.defineProperty(e,\"isValidSpanId\",{enumerable:true,get:function(){return b.isValidSpanId}});var v=__nccwpck_require__(476);Object.defineProperty(e,\"INVALID_SPANID\",{enumerable:true,get:function(){return v.INVALID_SPANID}});Object.defineProperty(e,\"INVALID_TRACEID\",{enumerable:true,get:function(){return v.INVALID_TRACEID}});Object.defineProperty(e,\"INVALID_SPAN_CONTEXT\",{enumerable:true,get:function(){return v.INVALID_SPAN_CONTEXT}});const O=__nccwpck_require__(67);Object.defineProperty(e,\"context\",{enumerable:true,get:function(){return O.context}});const P=__nccwpck_require__(506);Object.defineProperty(e,\"diag\",{enumerable:true,get:function(){return P.diag}});const N=__nccwpck_require__(886);Object.defineProperty(e,\"metrics\",{enumerable:true,get:function(){return N.metrics}});const S=__nccwpck_require__(939);Object.defineProperty(e,\"propagation\",{enumerable:true,get:function(){return S.propagation}});const C=__nccwpck_require__(845);Object.defineProperty(e,\"trace\",{enumerable:true,get:function(){return C.trace}});e[\"default\"]={context:O.context,diag:P.diag,metrics:N.metrics,propagation:S.propagation,trace:C.trace}})();module.exports=r})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 10941, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/trace/tracer.ts"],"sourcesContent":["import type { FetchEventResult } from '../../web/types'\nimport type { TextMapSetter } from '@opentelemetry/api'\nimport type { SpanTypes } from './constants'\nimport { LogSpanAllowList, NextVanillaSpanAllowlist } from './constants'\n\nimport type {\n ContextAPI,\n Span,\n SpanOptions,\n Tracer,\n AttributeValue,\n TextMapGetter,\n} from 'next/dist/compiled/@opentelemetry/api'\nimport { isThenable } from '../../../shared/lib/is-thenable'\n\nconst NEXT_OTEL_PERFORMANCE_PREFIX = process.env.NEXT_OTEL_PERFORMANCE_PREFIX\n\nlet api: typeof import('next/dist/compiled/@opentelemetry/api')\n\n// we want to allow users to use their own version of @opentelemetry/api if they\n// want to, so we try to require it first, and if it fails we fall back to the\n// version that is bundled with Next.js\n// this is because @opentelemetry/api has to be synced with the version of\n// @opentelemetry/tracing that is used, and we don't want to force users to use\n// the version that is bundled with Next.js.\n// the API is ~stable, so this should be fine\nif (process.env.NEXT_RUNTIME === 'edge') {\n api = require('@opentelemetry/api') as typeof import('@opentelemetry/api')\n} else {\n try {\n api = require('@opentelemetry/api') as typeof import('@opentelemetry/api')\n } catch (err) {\n api =\n require('next/dist/compiled/@opentelemetry/api') as typeof import('next/dist/compiled/@opentelemetry/api')\n }\n}\n\nconst { context, propagation, trace, SpanStatusCode, SpanKind, ROOT_CONTEXT } =\n api\n\nexport class BubbledError extends Error {\n constructor(\n public readonly bubble?: boolean,\n public readonly result?: FetchEventResult\n ) {\n super()\n }\n}\n\nexport function isBubbledError(error: unknown): error is BubbledError {\n if (typeof error !== 'object' || error === null) return false\n return error instanceof BubbledError\n}\n\nconst closeSpanWithError = (span: Span, error?: Error) => {\n if (isBubbledError(error) && error.bubble) {\n span.setAttribute('next.bubble', true)\n } else {\n if (error) {\n span.recordException(error)\n span.setAttribute('error.type', error.name)\n }\n span.setStatus({ code: SpanStatusCode.ERROR, message: error?.message })\n }\n span.end()\n}\n\ntype TracerSpanOptions = Omit & {\n parentSpan?: Span\n spanName?: string\n attributes?: Partial>\n hideSpan?: boolean\n}\n\ninterface NextTracer {\n getContext(): ContextAPI\n\n /**\n * Instruments a function by automatically creating a span activated on its\n * scope.\n *\n * The span will automatically be finished when one of these conditions is\n * met:\n *\n * * The function returns a promise, in which case the span will finish when\n * the promise is resolved or rejected.\n * * The function takes a callback as its second parameter, in which case the\n * span will finish when that callback is called.\n * * The function doesn't accept a callback and doesn't return a promise, in\n * which case the span will finish at the end of the function execution.\n *\n */\n trace(\n type: SpanTypes,\n fn: (span?: Span, done?: (error?: Error) => any) => Promise\n ): Promise\n trace(\n type: SpanTypes,\n fn: (span?: Span, done?: (error?: Error) => any) => T\n ): T\n trace(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: (span?: Span, done?: (error?: Error) => any) => Promise\n ): Promise\n trace(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: (span?: Span, done?: (error?: Error) => any) => T\n ): T\n\n /**\n * Wrap a function to automatically create a span activated on its\n * scope when it's called.\n *\n * The span will automatically be finished when one of these conditions is\n * met:\n *\n * * The function returns a promise, in which case the span will finish when\n * the promise is resolved or rejected.\n * * The function takes a callback as its last parameter, in which case the\n * span will finish when that callback is called.\n * * The function doesn't accept a callback and doesn't return a promise, in\n * which case the span will finish at the end of the function execution.\n */\n wrap) => any>(type: SpanTypes, fn: T): T\n wrap) => any>(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: T\n ): T\n wrap) => any>(\n type: SpanTypes,\n options: (...args: any[]) => TracerSpanOptions,\n fn: T\n ): T\n\n /**\n * Starts and returns a new Span representing a logical unit of work.\n *\n * This method do NOT modify the current Context by default. In result, any inner span will not\n * automatically set its parent context to the span created by this method unless manually activate\n * context via `tracer.getContext().with`. `trace`, or `wrap` is generally recommended as it gracefully\n * handles context activation. (ref: https://github.com/open-telemetry/opentelemetry-js/issues/1923)\n */\n startSpan(type: SpanTypes): Span\n startSpan(type: SpanTypes, options: TracerSpanOptions): Span\n\n /**\n * Returns currently activated span if current context is in the scope of the span.\n * Returns undefined otherwise.\n */\n getActiveScopeSpan(): Span | undefined\n\n /**\n * Returns trace propagation data for the currently active context. The format is equal to data provided\n * through the OpenTelemetry propagator API.\n */\n getTracePropagationData(): ClientTraceDataEntry[]\n\n /**\n * Executes a function with the given span set as the active span in the context.\n * This allows child spans created within the function to automatically parent to this span.\n */\n withSpan(span: Span, fn: () => T): T\n}\n\ntype NextAttributeNames =\n | 'next.route'\n | 'next.page'\n | 'next.rsc'\n | 'next.segment'\n | 'next.span_name'\n | 'next.span_type'\n | 'next.clientComponentLoadCount'\ntype OTELAttributeNames = `http.${string}` | `net.${string}`\ntype AttributeNames = NextAttributeNames | OTELAttributeNames\n\n/** we use this map to propagate attributes from nested spans to the top span */\nconst rootSpanAttributesStore = new Map<\n number,\n Map\n>()\nconst rootSpanIdKey = api.createContextKey('next.rootSpanId')\nlet lastSpanId = 0\nconst getSpanId = () => lastSpanId++\n\nexport interface ClientTraceDataEntry {\n key: string\n value: string\n}\n\nconst clientTraceDataSetter: TextMapSetter = {\n set(carrier, key, value) {\n carrier.push({\n key,\n value,\n })\n },\n}\n\nclass NextTracerImpl implements NextTracer {\n /**\n * Returns an instance to the trace with configured name.\n * Since wrap / trace can be defined in any place prior to actual trace subscriber initialization,\n * This should be lazily evaluated.\n */\n private getTracerInstance(): Tracer {\n return trace.getTracer('next.js', '0.0.1')\n }\n\n public getContext(): ContextAPI {\n return context\n }\n\n public getTracePropagationData(): ClientTraceDataEntry[] {\n const activeContext = context.active()\n const entries: ClientTraceDataEntry[] = []\n propagation.inject(activeContext, entries, clientTraceDataSetter)\n return entries\n }\n\n public getActiveScopeSpan(): Span | undefined {\n return trace.getSpan(context?.active())\n }\n\n public withPropagatedContext(\n carrier: C,\n fn: () => T,\n getter?: TextMapGetter\n ): T {\n const activeContext = context.active()\n if (trace.getSpanContext(activeContext)) {\n // Active span is already set, too late to propagate.\n return fn()\n }\n const remoteContext = propagation.extract(activeContext, carrier, getter)\n return context.with(remoteContext, fn)\n }\n\n // Trace, wrap implementation is inspired by datadog trace implementation\n // (https://datadoghq.dev/dd-trace-js/interfaces/tracer.html#trace).\n public trace(\n type: SpanTypes,\n fn: (span?: Span, done?: (error?: Error) => any) => Promise\n ): Promise\n public trace(\n type: SpanTypes,\n fn: (span?: Span, done?: (error?: Error) => any) => T\n ): T\n public trace(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: (span?: Span, done?: (error?: Error) => any) => Promise\n ): Promise\n public trace(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: (span?: Span, done?: (error?: Error) => any) => T\n ): T\n public trace(...args: Array) {\n const [type, fnOrOptions, fnOrEmpty] = args\n\n // coerce options form overload\n const {\n fn,\n options,\n }: {\n fn: (span?: Span, done?: (error?: Error) => any) => T | Promise\n options: TracerSpanOptions\n } =\n typeof fnOrOptions === 'function'\n ? {\n fn: fnOrOptions,\n options: {},\n }\n : {\n fn: fnOrEmpty,\n options: { ...fnOrOptions },\n }\n\n const spanName = options.spanName ?? type\n\n if (\n (!NextVanillaSpanAllowlist.has(type) &&\n process.env.NEXT_OTEL_VERBOSE !== '1') ||\n options.hideSpan\n ) {\n return fn()\n }\n\n // Trying to get active scoped span to assign parent. If option specifies parent span manually, will try to use it.\n let spanContext = this.getSpanContext(\n options?.parentSpan ?? this.getActiveScopeSpan()\n )\n\n if (!spanContext) {\n spanContext = context?.active() ?? ROOT_CONTEXT\n }\n // Check if there's already a root span in the store for this trace\n // We are intentionally not checking whether there is an active context\n // from outside of nextjs to ensure that we can provide the same level\n // of telemetry when using a custom server\n const existingRootSpanId = spanContext.getValue(rootSpanIdKey)\n const isRootSpan =\n typeof existingRootSpanId !== 'number' ||\n !rootSpanAttributesStore.has(existingRootSpanId)\n\n const spanId = getSpanId()\n\n options.attributes = {\n 'next.span_name': spanName,\n 'next.span_type': type,\n ...options.attributes,\n }\n\n return context.with(spanContext.setValue(rootSpanIdKey, spanId), () =>\n this.getTracerInstance().startActiveSpan(\n spanName,\n options,\n (span: Span) => {\n let startTime: number | undefined\n if (\n NEXT_OTEL_PERFORMANCE_PREFIX &&\n type &&\n LogSpanAllowList.has(type)\n ) {\n startTime =\n 'performance' in globalThis && 'measure' in performance\n ? globalThis.performance.now()\n : undefined\n }\n\n let cleanedUp = false\n const onCleanup = () => {\n if (cleanedUp) return\n cleanedUp = true\n rootSpanAttributesStore.delete(spanId)\n if (startTime) {\n performance.measure(\n `${NEXT_OTEL_PERFORMANCE_PREFIX}:next-${(\n type.split('.').pop() || ''\n ).replace(\n /[A-Z]/g,\n (match: string) => '-' + match.toLowerCase()\n )}`,\n {\n start: startTime,\n end: performance.now(),\n }\n )\n }\n }\n\n if (isRootSpan) {\n rootSpanAttributesStore.set(\n spanId,\n new Map(\n Object.entries(options.attributes ?? {}) as [\n AttributeNames,\n AttributeValue | undefined,\n ][]\n )\n )\n }\n if (fn.length > 1) {\n try {\n return fn(span, (err) => closeSpanWithError(span, err))\n } catch (err: any) {\n closeSpanWithError(span, err)\n throw err\n } finally {\n onCleanup()\n }\n }\n\n try {\n const result = fn(span)\n if (isThenable(result)) {\n // If there's error make sure it throws\n return result\n .then((res) => {\n span.end()\n // Need to pass down the promise result,\n // it could be react stream response with error { error, stream }\n return res\n })\n .catch((err) => {\n closeSpanWithError(span, err)\n throw err\n })\n .finally(onCleanup)\n } else {\n span.end()\n onCleanup()\n }\n\n return result\n } catch (err: any) {\n closeSpanWithError(span, err)\n onCleanup()\n throw err\n }\n }\n )\n )\n }\n\n public wrap) => any>(type: SpanTypes, fn: T): T\n public wrap) => any>(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: T\n ): T\n public wrap) => any>(\n type: SpanTypes,\n options: (...args: any[]) => TracerSpanOptions,\n fn: T\n ): T\n public wrap(...args: Array) {\n const tracer = this\n const [name, options, fn] =\n args.length === 3 ? args : [args[0], {}, args[1]]\n\n if (\n !NextVanillaSpanAllowlist.has(name) &&\n process.env.NEXT_OTEL_VERBOSE !== '1'\n ) {\n return fn\n }\n\n return function (this: any) {\n let optionsObj = options\n if (typeof optionsObj === 'function' && typeof fn === 'function') {\n optionsObj = optionsObj.apply(this, arguments)\n }\n\n const lastArgId = arguments.length - 1\n const cb = arguments[lastArgId]\n\n if (typeof cb === 'function') {\n const scopeBoundCb = tracer.getContext().bind(context.active(), cb)\n return tracer.trace(name, optionsObj, (_span, done) => {\n arguments[lastArgId] = function (err: any) {\n done?.(err)\n return scopeBoundCb.apply(this, arguments)\n }\n\n return fn.apply(this, arguments)\n })\n } else {\n return tracer.trace(name, optionsObj, () => fn.apply(this, arguments))\n }\n }\n }\n\n public startSpan(type: SpanTypes): Span\n public startSpan(type: SpanTypes, options: TracerSpanOptions): Span\n public startSpan(...args: Array): Span {\n const [type, options]: [string, TracerSpanOptions | undefined] = args as any\n\n const spanContext = this.getSpanContext(\n options?.parentSpan ?? this.getActiveScopeSpan()\n )\n return this.getTracerInstance().startSpan(type, options, spanContext)\n }\n\n private getSpanContext(parentSpan?: Span) {\n const spanContext = parentSpan\n ? trace.setSpan(context.active(), parentSpan)\n : undefined\n\n return spanContext\n }\n\n public getRootSpanAttributes() {\n const spanId = context.active().getValue(rootSpanIdKey) as number\n return rootSpanAttributesStore.get(spanId)\n }\n\n public setRootSpanAttribute(key: AttributeNames, value: AttributeValue) {\n const spanId = context.active().getValue(rootSpanIdKey) as number\n const attributes = rootSpanAttributesStore.get(spanId)\n if (attributes && !attributes.has(key)) {\n attributes.set(key, value)\n }\n }\n\n public withSpan(span: Span, fn: () => T): T {\n const spanContext = trace.setSpan(context.active(), span)\n return context.with(spanContext, fn)\n }\n}\n\nconst getTracer = (() => {\n const tracer = new NextTracerImpl()\n\n return () => tracer\n})()\n\nexport { getTracer, SpanStatusCode, SpanKind }\nexport type { NextTracer, Span, SpanOptions, ContextAPI, TracerSpanOptions }\n"],"names":["LogSpanAllowList","NextVanillaSpanAllowlist","isThenable","NEXT_OTEL_PERFORMANCE_PREFIX","process","env","api","NEXT_RUNTIME","require","err","context","propagation","trace","SpanStatusCode","SpanKind","ROOT_CONTEXT","BubbledError","Error","constructor","bubble","result","isBubbledError","error","closeSpanWithError","span","setAttribute","recordException","name","setStatus","code","ERROR","message","end","rootSpanAttributesStore","Map","rootSpanIdKey","createContextKey","lastSpanId","getSpanId","clientTraceDataSetter","set","carrier","key","value","push","NextTracerImpl","getTracerInstance","getTracer","getContext","getTracePropagationData","activeContext","active","entries","inject","getActiveScopeSpan","getSpan","withPropagatedContext","fn","getter","getSpanContext","remoteContext","extract","with","args","type","fnOrOptions","fnOrEmpty","options","spanName","has","NEXT_OTEL_VERBOSE","hideSpan","spanContext","parentSpan","existingRootSpanId","getValue","isRootSpan","spanId","attributes","setValue","startActiveSpan","startTime","globalThis","performance","now","undefined","cleanedUp","onCleanup","delete","measure","split","pop","replace","match","toLowerCase","start","Object","length","then","res","catch","finally","wrap","tracer","optionsObj","apply","arguments","lastArgId","cb","scopeBoundCb","bind","_span","done","startSpan","setSpan","getRootSpanAttributes","get","setRootSpanAttribute","withSpan"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 11195, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/server-reference-info.ts"],"sourcesContent":["export interface ServerReferenceInfo {\n type: 'server-action' | 'use-cache'\n usedArgs: [boolean, boolean, boolean, boolean, boolean, boolean]\n hasRestArgs: boolean\n}\n\n/**\n * Extracts info about the server reference for the given server reference ID by\n * parsing the first byte of the hex-encoded ID.\n *\n * ```\n * Bit positions: [7] [6] [5] [4] [3] [2] [1] [0]\n * Bits: typeBit argMask restArgs\n * ```\n *\n * If the `typeBit` is `1` the server reference represents a `\"use cache\"`\n * function, otherwise a server action.\n *\n * The `argMask` encodes whether the function uses the argument at the\n * respective position.\n *\n * The `restArgs` bit indicates whether the function uses a rest parameter. It's\n * also set to 1 if the function has more than 6 args.\n *\n * @param id hex-encoded server reference ID\n */\nexport function extractInfoFromServerReferenceId(\n id: string\n): ServerReferenceInfo {\n const infoByte = parseInt(id.slice(0, 2), 16)\n const typeBit = (infoByte >> 7) & 0x1\n const argMask = (infoByte >> 1) & 0x3f\n const restArgs = infoByte & 0x1\n const usedArgs = Array(6)\n\n for (let index = 0; index < 6; index++) {\n const bitPosition = 5 - index\n const bit = (argMask >> bitPosition) & 0x1\n usedArgs[index] = bit === 1\n }\n\n return {\n type: typeBit === 1 ? 'use-cache' : 'server-action',\n usedArgs: usedArgs as [\n boolean,\n boolean,\n boolean,\n boolean,\n boolean,\n boolean,\n ],\n hasRestArgs: restArgs === 1,\n }\n}\n\n/**\n * Creates a sparse array containing only the used arguments based on the\n * provided action info.\n */\nexport function omitUnusedArgs(\n args: unknown[],\n info: ServerReferenceInfo\n): unknown[] {\n const filteredArgs = new Array(args.length)\n\n for (let index = 0; index < args.length; index++) {\n if (\n (index < 6 && info.usedArgs[index]) ||\n // This assumes that the server reference info byte has the restArgs bit\n // set to 1 if there are more than 6 args.\n (index >= 6 && info.hasRestArgs)\n ) {\n filteredArgs[index] = args[index]\n }\n }\n\n return filteredArgs\n}\n"],"names":["extractInfoFromServerReferenceId","id","infoByte","parseInt","slice","typeBit","argMask","restArgs","usedArgs","Array","index","bitPosition","bit","type","hasRestArgs","omitUnusedArgs","args","info","filteredArgs","length"],"mappings":"AAMA;;;;;;;;;;;;;;;;;;;CAmBC,GACD;;;;;;AAAO,SAASA,iCACdC,EAAU;IAEV,MAAMC,WAAWC,SAASF,GAAGG,KAAK,CAAC,GAAG,IAAI;IAC1C,MAAMC,UAAWH,YAAY,IAAK;IAClC,MAAMI,UAAWJ,YAAY,IAAK;IAClC,MAAMK,WAAWL,WAAW;IAC5B,MAAMM,WAAWC,MAAM;IAEvB,IAAK,IAAIC,QAAQ,GAAGA,QAAQ,GAAGA,QAAS;QACtC,MAAMC,cAAc,IAAID;QACxB,MAAME,MAAON,WAAWK,cAAe;QACvCH,QAAQ,CAACE,MAAM,GAAGE,QAAQ;IAC5B;IAEA,OAAO;QACLC,MAAMR,YAAY,IAAI,cAAc;QACpCG,UAAUA;QAQVM,aAAaP,aAAa;IAC5B;AACF;AAMO,SAASQ,eACdC,IAAe,EACfC,IAAyB;IAEzB,MAAMC,eAAe,IAAIT,MAAMO,KAAKG,MAAM;IAE1C,IAAK,IAAIT,QAAQ,GAAGA,QAAQM,KAAKG,MAAM,EAAET,QAAS;QAChD,IACGA,QAAQ,KAAKO,KAAKT,QAAQ,CAACE,MAAM,IAClC,wEAAwE;QACxE,0CAA0C;QACzCA,SAAS,KAAKO,KAAKH,WAAW,EAC/B;YACAI,YAAY,CAACR,MAAM,GAAGM,IAAI,CAACN,MAAM;QACnC;IACF;IAEA,OAAOQ;AACT","ignoreList":[0]}}, - {"offset": {"line": 11252, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/client-and-server-references.ts"],"sourcesContent":["import {\n extractInfoFromServerReferenceId,\n type ServerReferenceInfo,\n} from '../shared/lib/server-reference-info'\n\n// Only contains the properties we're interested in.\nexport interface ServerReference {\n $$typeof: Symbol\n $$id: string\n}\n\nexport type ServerFunction = ServerReference &\n ((...args: unknown[]) => Promise)\n\nexport function isServerReference(\n value: T & Partial\n): value is T & ServerFunction {\n return value.$$typeof === Symbol.for('react.server.reference')\n}\n\nexport function isUseCacheFunction(\n value: T & Partial\n): value is T & ServerFunction {\n if (!isServerReference(value)) {\n return false\n }\n\n const { type } = extractInfoFromServerReferenceId(value.$$id)\n\n return type === 'use-cache'\n}\n\nexport function getUseCacheFunctionInfo(\n value: T & Partial\n): ServerReferenceInfo | null {\n if (!isServerReference(value)) {\n return null\n }\n\n const info = extractInfoFromServerReferenceId(value.$$id)\n\n return info.type === 'use-cache' ? info : null\n}\n\nexport function isClientReference(mod: any): boolean {\n const defaultExport = mod?.default || mod\n return defaultExport?.$$typeof === Symbol.for('react.client.reference')\n}\n"],"names":["extractInfoFromServerReferenceId","isServerReference","value","$$typeof","Symbol","for","isUseCacheFunction","type","$$id","getUseCacheFunctionInfo","info","isClientReference","mod","defaultExport","default"],"mappings":";;;;;;;;;;AAAA,SACEA,gCAAgC,QAE3B,sCAAqC;;AAWrC,SAASC,kBACdC,KAAmC;IAEnC,OAAOA,MAAMC,QAAQ,KAAKC,OAAOC,GAAG,CAAC;AACvC;AAEO,SAASC,mBACdJ,KAAmC;IAEnC,IAAI,CAACD,kBAAkBC,QAAQ;QAC7B,OAAO;IACT;IAEA,MAAM,EAAEK,IAAI,EAAE,OAAGP,uNAAAA,EAAiCE,MAAMM,IAAI;IAE5D,OAAOD,SAAS;AAClB;AAEO,SAASE,wBACdP,KAAmC;IAEnC,IAAI,CAACD,kBAAkBC,QAAQ;QAC7B,OAAO;IACT;IAEA,MAAMQ,WAAOV,uNAAAA,EAAiCE,MAAMM,IAAI;IAExD,OAAOE,KAAKH,IAAI,KAAK,cAAcG,OAAO;AAC5C;AAEO,SAASC,kBAAkBC,GAAQ;IACxC,MAAMC,gBAAgBD,CAAAA,OAAAA,OAAAA,KAAAA,IAAAA,IAAKE,OAAO,KAAIF;IACtC,OAAOC,CAAAA,iBAAAA,OAAAA,KAAAA,IAAAA,cAAeV,QAAQ,MAAKC,OAAOC,GAAG,CAAC;AAChD","ignoreList":[0]}}, - {"offset": {"line": 11289, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/lazy-result.ts"],"sourcesContent":["export type LazyResult = PromiseLike & { value?: TValue }\nexport type ResolvedLazyResult = PromiseLike & { value: TValue }\n\n/**\n * Calls the given function only when the returned promise-like object is\n * awaited. Afterwards, it provides the resolved value synchronously as `value`\n * property.\n */\nexport function createLazyResult(\n fn: () => Promise | TValue\n): LazyResult {\n let pendingResult: Promise | undefined\n\n const result: LazyResult = {\n then(onfulfilled, onrejected) {\n if (!pendingResult) {\n pendingResult = Promise.resolve(fn())\n }\n\n pendingResult\n .then((value) => {\n result.value = value\n })\n .catch(() => {\n // The externally awaited result will be rejected via `onrejected`. We\n // don't need to handle it here. But we do want to avoid an unhandled\n // rejection.\n })\n\n return pendingResult.then(onfulfilled, onrejected)\n },\n }\n\n return result\n}\n\nexport function isResolvedLazyResult(\n result: LazyResult\n): result is ResolvedLazyResult {\n return result.hasOwnProperty('value')\n}\n"],"names":["createLazyResult","fn","pendingResult","result","then","onfulfilled","onrejected","Promise","resolve","value","catch","isResolvedLazyResult","hasOwnProperty"],"mappings":"AAGA;;;;CAIC,GACD;;;;;;AAAO,SAASA,iBACdC,EAAkC;IAElC,IAAIC;IAEJ,MAAMC,SAA6B;QACjCC,MAAKC,WAAW,EAAEC,UAAU;YAC1B,IAAI,CAACJ,eAAe;gBAClBA,gBAAgBK,QAAQC,OAAO,CAACP;YAClC;YAEAC,cACGE,IAAI,CAAC,CAACK;gBACLN,OAAOM,KAAK,GAAGA;YACjB,GACCC,KAAK,CAAC;YACL,sEAAsE;YACtE,qEAAqE;YACrE,aAAa;YACf;YAEF,OAAOR,cAAcE,IAAI,CAACC,aAAaC;QACzC;IACF;IAEA,OAAOH;AACT;AAEO,SAASQ,qBACdR,MAA0B;IAE1B,OAAOA,OAAOS,cAAc,CAAC;AAC/B","ignoreList":[0]}}, - {"offset": {"line": 11325, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/deep-freeze.ts"],"sourcesContent":["import type { DeepReadonly } from './deep-readonly'\n\n/**\n * Recursively freezes an object and all of its properties. This prevents the\n * object from being modified at runtime. When the JS runtime is running in\n * strict mode, any attempts to modify a frozen object will throw an error.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze\n * @param obj The object to freeze.\n */\nexport function deepFreeze(obj: T): DeepReadonly {\n // If the object is already frozen, there's no need to freeze it again.\n if (Object.isFrozen(obj)) return obj as DeepReadonly\n\n // An array is an object, but we also want to freeze each element in the array\n // as well.\n if (Array.isArray(obj)) {\n for (const item of obj) {\n if (!item || typeof item !== 'object') continue\n deepFreeze(item)\n }\n\n return Object.freeze(obj) as DeepReadonly\n }\n\n for (const value of Object.values(obj)) {\n if (!value || typeof value !== 'object') continue\n deepFreeze(value)\n }\n\n return Object.freeze(obj) as DeepReadonly\n}\n"],"names":["deepFreeze","obj","Object","isFrozen","Array","isArray","item","freeze","value","values"],"mappings":"AAEA;;;;;;;CAOC,GACD;;;;AAAO,SAASA,WAA6BC,GAAM;IACjD,uEAAuE;IACvE,IAAIC,OAAOC,QAAQ,CAACF,MAAM,OAAOA;IAEjC,8EAA8E;IAC9E,WAAW;IACX,IAAIG,MAAMC,OAAO,CAACJ,MAAM;QACtB,KAAK,MAAMK,QAAQL,IAAK;YACtB,IAAI,CAACK,QAAQ,OAAOA,SAAS,UAAU;YACvCN,WAAWM;QACb;QAEA,OAAOJ,OAAOK,MAAM,CAACN;IACvB;IAEA,KAAK,MAAMO,SAASN,OAAOO,MAAM,CAACR,KAAM;QACtC,IAAI,CAACO,SAAS,OAAOA,UAAU,UAAU;QACzCR,WAAWQ;IACb;IAEA,OAAON,OAAOK,MAAM,CAACN;AACvB","ignoreList":[0]}}, - {"offset": {"line": 11358, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolve-metadata.ts"],"sourcesContent":["import type {\n Metadata,\n ResolvedMetadata,\n ResolvedViewport,\n ResolvingMetadata,\n ResolvingViewport,\n Viewport,\n WithStringifiedURLs,\n} from './types/metadata-interface'\nimport type { MetadataImageModule } from '../../build/webpack/loaders/metadata/types'\nimport type { GetDynamicParamFromSegment } from '../../server/app-render/app-render'\nimport type { Twitter } from './types/twitter-types'\nimport type { OpenGraph } from './types/opengraph-types'\nimport type { AppDirModules } from '../../build/webpack/loaders/next-app-loader'\nimport type { MetadataContext } from './types/resolvers'\nimport type { LoaderTree } from '../../server/lib/app-dir-module'\nimport type {\n AbsoluteTemplateString,\n IconDescriptor,\n ResolvedIcons,\n} from './types/metadata-types'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { StaticMetadata } from './types/icons'\nimport type { WorkStore } from '../../server/app-render/work-async-storage.external'\nimport type { Params } from '../../server/request/params'\nimport type { SearchParams } from '../../server/request/search-params'\n\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport 'server-only'\n\nimport { cache } from 'react'\nimport {\n createDefaultMetadata,\n createDefaultViewport,\n} from './default-metadata'\nimport { resolveOpenGraph, resolveTwitter } from './resolvers/resolve-opengraph'\nimport { resolveTitle } from './resolvers/resolve-title'\nimport { resolveAsArrayOrUndefined } from './generate/utils'\nimport {\n getComponentTypeModule,\n getLayoutOrPageModule,\n} from '../../server/lib/app-dir-module'\nimport { interopDefault } from '../interop-default'\nimport {\n resolveAlternates,\n resolveAppleWebApp,\n resolveAppLinks,\n resolveRobots,\n resolveThemeColor,\n resolveVerification,\n resolveItunes,\n resolveFacebook,\n resolvePagination,\n} from './resolvers/resolve-basics'\nimport { resolveIcons } from './resolvers/resolve-icons'\nimport { getTracer } from '../../server/lib/trace/tracer'\nimport { ResolveMetadataSpan } from '../../server/lib/trace/constants'\nimport { PAGE_SEGMENT_KEY } from '../../shared/lib/segment'\nimport * as Log from '../../build/output/log'\nimport { createServerParamsForMetadata } from '../../server/request/params'\nimport type { MetadataBaseURL } from './resolvers/resolve-url'\nimport {\n getUseCacheFunctionInfo,\n isUseCacheFunction,\n} from '../client-and-server-references'\nimport type {\n UseCacheLayoutProps,\n UseCachePageProps,\n} from '../../server/use-cache/use-cache-wrapper'\nimport { createLazyResult } from '../../server/lib/lazy-result'\n\ntype StaticIcons = Pick\n\ntype Resolved = T extends Metadata ? ResolvedMetadata : ResolvedViewport\n\ntype InstrumentedResolver = ((\n parent: Promise>\n) => TData | Promise) & {\n $$original: (\n props: unknown,\n parent: Promise>\n ) => TData | Promise\n}\n\ntype MetadataResolver = InstrumentedResolver\ntype ViewportResolver = InstrumentedResolver\n\nexport type MetadataErrorType = 'not-found' | 'forbidden' | 'unauthorized'\n\nexport type MetadataItems = Array<\n [Metadata | MetadataResolver | null, StaticMetadata]\n>\n\nexport type ViewportItems = Array\n\ntype TitleTemplates = {\n title: string | null\n twitter: string | null\n openGraph: string | null\n}\n\ntype BuildState = {\n warnings: Set\n}\n\ntype LayoutProps = {\n params: Promise\n}\n\ntype PageProps = {\n params: Promise\n searchParams: Promise\n}\n\ntype SegmentProps = LayoutProps | PageProps\ntype UseCacheSegmentProps = UseCacheLayoutProps | UseCachePageProps\n\nfunction isFavicon(icon: IconDescriptor | undefined): boolean {\n if (!icon) {\n return false\n }\n\n // turbopack appends a hash to all images\n return (\n (icon.url === '/favicon.ico' ||\n icon.url.toString().startsWith('/favicon.ico?')) &&\n icon.type === 'image/x-icon'\n )\n}\n\nfunction convertUrlsToStrings(input: T): WithStringifiedURLs {\n if (input instanceof URL) {\n return input.toString() as unknown as WithStringifiedURLs\n } else if (Array.isArray(input)) {\n return input.map((item) =>\n convertUrlsToStrings(item)\n ) as WithStringifiedURLs\n } else if (input && typeof input === 'object') {\n const result: Record = {}\n for (const [key, value] of Object.entries(input)) {\n result[key] = convertUrlsToStrings(value)\n }\n return result as WithStringifiedURLs\n }\n return input as WithStringifiedURLs\n}\n\nfunction normalizeMetadataBase(metadataBase: string | URL | null): URL | null {\n if (typeof metadataBase === 'string') {\n try {\n metadataBase = new URL(metadataBase)\n } catch {\n throw new Error(`metadataBase is not a valid URL: ${metadataBase}`)\n }\n }\n return metadataBase\n}\n\nasync function mergeStaticMetadata(\n metadataBase: MetadataBaseURL,\n source: Metadata | null,\n target: ResolvedMetadata,\n staticFilesMetadata: StaticMetadata,\n metadataContext: MetadataContext,\n titleTemplates: TitleTemplates,\n leafSegmentStaticIcons: StaticIcons,\n pathname: Promise\n): Promise {\n if (!staticFilesMetadata) return target\n const { icon, apple, openGraph, twitter, manifest } = staticFilesMetadata\n\n // Keep updating the static icons in the most leaf node\n\n if (icon) {\n leafSegmentStaticIcons.icon = icon\n }\n if (apple) {\n leafSegmentStaticIcons.apple = apple\n }\n\n // file based metadata is specified and current level metadata twitter.images is not specified\n if (twitter && !source?.twitter?.hasOwnProperty('images')) {\n const resolvedTwitter = resolveTwitter(\n { ...target.twitter, images: twitter } as Twitter,\n metadataBase,\n { ...metadataContext, isStaticMetadataRouteFile: true },\n titleTemplates.twitter\n )\n target.twitter = convertUrlsToStrings(resolvedTwitter)\n }\n\n // file based metadata is specified and current level metadata openGraph.images is not specified\n if (openGraph && !source?.openGraph?.hasOwnProperty('images')) {\n const resolvedOpenGraph = await resolveOpenGraph(\n { ...target.openGraph, images: openGraph } as OpenGraph,\n metadataBase,\n pathname,\n { ...metadataContext, isStaticMetadataRouteFile: true },\n titleTemplates.openGraph\n )\n target.openGraph = convertUrlsToStrings(resolvedOpenGraph)\n }\n if (manifest) {\n target.manifest = manifest\n }\n\n return target\n}\n\n/**\n * Merges the given metadata with the resolved metadata. Returns a new object.\n */\nasync function mergeMetadata(\n route: string,\n pathname: Promise,\n {\n metadata,\n resolvedMetadata,\n staticFilesMetadata,\n titleTemplates,\n metadataContext,\n buildState,\n leafSegmentStaticIcons,\n }: {\n metadata: Metadata | null\n resolvedMetadata: ResolvedMetadata\n staticFilesMetadata: StaticMetadata\n titleTemplates: TitleTemplates\n metadataContext: MetadataContext\n buildState: BuildState\n leafSegmentStaticIcons: StaticIcons\n }\n): Promise {\n const newResolvedMetadata = structuredClone(resolvedMetadata)\n\n const metadataBase = normalizeMetadataBase(\n metadata?.metadataBase !== undefined\n ? metadata.metadataBase\n : resolvedMetadata.metadataBase\n )\n\n for (const key_ in metadata) {\n const key = key_ as keyof Metadata\n\n switch (key) {\n case 'title': {\n newResolvedMetadata.title = resolveTitle(\n metadata.title,\n titleTemplates.title\n )\n break\n }\n case 'alternates': {\n newResolvedMetadata.alternates = convertUrlsToStrings(\n await resolveAlternates(\n metadata.alternates,\n metadataBase,\n pathname,\n metadataContext\n )\n )\n break\n }\n case 'openGraph': {\n newResolvedMetadata.openGraph = convertUrlsToStrings(\n await resolveOpenGraph(\n metadata.openGraph,\n metadataBase,\n pathname,\n metadataContext,\n titleTemplates.openGraph\n )\n )\n break\n }\n case 'twitter': {\n newResolvedMetadata.twitter = convertUrlsToStrings(\n resolveTwitter(\n metadata.twitter,\n metadataBase,\n metadataContext,\n titleTemplates.twitter\n )\n )\n break\n }\n case 'facebook':\n newResolvedMetadata.facebook = resolveFacebook(metadata.facebook)\n break\n case 'verification':\n newResolvedMetadata.verification = resolveVerification(\n metadata.verification\n )\n break\n\n case 'icons': {\n newResolvedMetadata.icons = convertUrlsToStrings(\n resolveIcons(metadata.icons)\n )\n break\n }\n case 'appleWebApp':\n newResolvedMetadata.appleWebApp = resolveAppleWebApp(\n metadata.appleWebApp\n )\n break\n case 'appLinks':\n newResolvedMetadata.appLinks = convertUrlsToStrings(\n resolveAppLinks(metadata.appLinks)\n )\n break\n case 'robots': {\n newResolvedMetadata.robots = resolveRobots(metadata.robots)\n break\n }\n case 'archives':\n case 'assets':\n case 'bookmarks':\n case 'keywords': {\n newResolvedMetadata[key] = resolveAsArrayOrUndefined(metadata[key])\n break\n }\n case 'authors': {\n newResolvedMetadata[key] = convertUrlsToStrings(\n resolveAsArrayOrUndefined(metadata.authors)\n )\n break\n }\n case 'itunes': {\n newResolvedMetadata[key] = await resolveItunes(\n metadata.itunes,\n metadataBase,\n pathname,\n metadataContext\n )\n break\n }\n case 'pagination': {\n newResolvedMetadata.pagination = await resolvePagination(\n metadata.pagination,\n metadataBase,\n pathname,\n metadataContext\n )\n break\n }\n // directly assign fields that fallback to null\n case 'abstract':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'applicationName':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'description':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'generator':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'creator':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'publisher':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'category':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'classification':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'referrer':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'formatDetection':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'manifest':\n newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null\n break\n case 'pinterest':\n newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null\n break\n case 'other':\n newResolvedMetadata.other = Object.assign(\n {},\n newResolvedMetadata.other,\n metadata.other\n )\n break\n case 'metadataBase':\n newResolvedMetadata.metadataBase = metadataBase\n ? metadataBase.toString()\n : null\n break\n\n case 'apple-touch-fullscreen': {\n buildState.warnings.add(\n `Use appleWebApp instead\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`\n )\n break\n }\n case 'apple-touch-icon-precomposed': {\n buildState.warnings.add(\n `Use icons.apple instead\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`\n )\n break\n }\n case 'themeColor':\n case 'colorScheme':\n case 'viewport':\n if (metadata[key] != null) {\n buildState.warnings.add(\n `Unsupported metadata ${key} is configured in metadata export in ${route}. Please move it to viewport export instead.\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-viewport`\n )\n }\n break\n default: {\n key satisfies never\n }\n }\n }\n\n return mergeStaticMetadata(\n metadataBase,\n metadata,\n newResolvedMetadata,\n staticFilesMetadata,\n metadataContext,\n titleTemplates,\n leafSegmentStaticIcons,\n pathname\n )\n}\n\n/**\n * Merges the given viewport with the resolved viewport. Returns a new object.\n */\nfunction mergeViewport({\n resolvedViewport,\n viewport,\n}: {\n resolvedViewport: ResolvedViewport\n viewport: Viewport | null\n}): ResolvedViewport {\n const newResolvedViewport = structuredClone(resolvedViewport)\n\n if (viewport) {\n for (const key_ in viewport) {\n const key = key_ as keyof Viewport\n\n switch (key) {\n case 'themeColor': {\n newResolvedViewport.themeColor = resolveThemeColor(\n viewport.themeColor\n )\n break\n }\n case 'colorScheme':\n newResolvedViewport.colorScheme = viewport.colorScheme || null\n break\n case 'width':\n case 'height':\n case 'initialScale':\n case 'minimumScale':\n case 'maximumScale':\n case 'userScalable':\n case 'viewportFit':\n case 'interactiveWidget':\n // always override the target with the source\n // @ts-ignore viewport properties\n newResolvedViewport[key] = viewport[key]\n break\n default:\n key satisfies never\n }\n }\n }\n\n return newResolvedViewport\n}\n\nfunction getDefinedViewport(\n mod: any,\n props: SegmentProps,\n tracingProps: { route: string }\n): Viewport | ViewportResolver | null {\n if (typeof mod.generateViewport === 'function') {\n const { route } = tracingProps\n const segmentProps = createSegmentProps(mod.generateViewport, props)\n\n return Object.assign(\n (parent: ResolvingViewport) =>\n getTracer().trace(\n ResolveMetadataSpan.generateViewport,\n {\n spanName: `generateViewport ${route}`,\n attributes: {\n 'next.page': route,\n },\n },\n () => mod.generateViewport(segmentProps, parent)\n ),\n { $$original: mod.generateViewport }\n )\n }\n return mod.viewport || null\n}\n\nfunction getDefinedMetadata(\n mod: any,\n props: SegmentProps,\n tracingProps: { route: string }\n): Metadata | MetadataResolver | null {\n if (typeof mod.generateMetadata === 'function') {\n const { route } = tracingProps\n const segmentProps = createSegmentProps(mod.generateMetadata, props)\n\n return Object.assign(\n (parent: ResolvingMetadata) =>\n getTracer().trace(\n ResolveMetadataSpan.generateMetadata,\n {\n spanName: `generateMetadata ${route}`,\n attributes: {\n 'next.page': route,\n },\n },\n () => mod.generateMetadata(segmentProps, parent)\n ),\n { $$original: mod.generateMetadata }\n )\n }\n return mod.metadata || null\n}\n\n/**\n * If `fn` is a `'use cache'` function, we add special markers to the props,\n * that the cache wrapper reads and removes, before passing the props to the\n * user function.\n */\nfunction createSegmentProps(\n fn: Function,\n props: SegmentProps\n): SegmentProps | UseCacheSegmentProps {\n return isUseCacheFunction(fn)\n ? 'searchParams' in props\n ? { ...props, $$isPage: true }\n : { ...props, $$isLayout: true }\n : props\n}\n\nasync function collectStaticImagesFiles(\n metadata: AppDirModules['metadata'],\n props: SegmentProps,\n type: keyof NonNullable\n) {\n if (!metadata?.[type]) return undefined\n\n const iconPromises = metadata[type as 'icon' | 'apple'].map(\n async (imageModule: (p: any) => Promise) =>\n interopDefault(await imageModule(props))\n )\n\n return iconPromises?.length > 0\n ? (await Promise.all(iconPromises))?.flat()\n : undefined\n}\n\nasync function resolveStaticMetadata(\n modules: AppDirModules,\n props: SegmentProps\n): Promise {\n const { metadata } = modules\n if (!metadata) return null\n\n const [icon, apple, openGraph, twitter] = await Promise.all([\n collectStaticImagesFiles(metadata, props, 'icon'),\n collectStaticImagesFiles(metadata, props, 'apple'),\n collectStaticImagesFiles(metadata, props, 'openGraph'),\n collectStaticImagesFiles(metadata, props, 'twitter'),\n ])\n\n const staticMetadata = {\n icon,\n apple,\n openGraph,\n twitter,\n manifest: metadata.manifest,\n }\n\n return staticMetadata\n}\n\n// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata]\nasync function collectMetadata({\n tree,\n metadataItems,\n errorMetadataItem,\n props,\n route,\n errorConvention,\n}: {\n tree: LoaderTree\n metadataItems: MetadataItems\n errorMetadataItem: MetadataItems[number]\n props: SegmentProps\n route: string\n errorConvention?: MetadataErrorType\n}) {\n let mod\n let modType\n const hasErrorConventionComponent = Boolean(\n errorConvention && tree[2][errorConvention]\n )\n if (errorConvention) {\n mod = await getComponentTypeModule(tree, 'layout')\n modType = errorConvention\n } else {\n const { mod: layoutOrPageMod, modType: layoutOrPageModType } =\n await getLayoutOrPageModule(tree)\n mod = layoutOrPageMod\n modType = layoutOrPageModType\n }\n\n if (modType) {\n route += `/${modType}`\n }\n\n const staticFilesMetadata = await resolveStaticMetadata(tree[2], props)\n const metadataExport = mod ? getDefinedMetadata(mod, props, { route }) : null\n\n metadataItems.push([metadataExport, staticFilesMetadata])\n\n if (hasErrorConventionComponent && errorConvention) {\n const errorMod = await getComponentTypeModule(tree, errorConvention)\n const errorMetadataExport = errorMod\n ? getDefinedMetadata(errorMod, props, { route })\n : null\n\n errorMetadataItem[0] = errorMetadataExport\n errorMetadataItem[1] = staticFilesMetadata\n }\n}\n\n// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata]\nasync function collectViewport({\n tree,\n viewportItems,\n errorViewportItemRef,\n props,\n route,\n errorConvention,\n}: {\n tree: LoaderTree\n viewportItems: ViewportItems\n errorViewportItemRef: ErrorViewportItemRef\n props: SegmentProps\n route: string\n errorConvention?: MetadataErrorType\n}) {\n let mod\n let modType\n const hasErrorConventionComponent = Boolean(\n errorConvention && tree[2][errorConvention]\n )\n if (errorConvention) {\n mod = await getComponentTypeModule(tree, 'layout')\n modType = errorConvention\n } else {\n const { mod: layoutOrPageMod, modType: layoutOrPageModType } =\n await getLayoutOrPageModule(tree)\n mod = layoutOrPageMod\n modType = layoutOrPageModType\n }\n\n if (modType) {\n route += `/${modType}`\n }\n\n const viewportExport = mod ? getDefinedViewport(mod, props, { route }) : null\n\n viewportItems.push(viewportExport)\n\n if (hasErrorConventionComponent && errorConvention) {\n const errorMod = await getComponentTypeModule(tree, errorConvention)\n const errorViewportExport = errorMod\n ? getDefinedViewport(errorMod, props, { route })\n : null\n\n errorViewportItemRef.current = errorViewportExport\n }\n}\n\nconst resolveMetadataItems = cache(async function (\n tree: LoaderTree,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n) {\n const parentParams = {}\n const metadataItems: MetadataItems = []\n const errorMetadataItem: MetadataItems[number] = [null, null]\n const treePrefix = undefined\n return resolveMetadataItemsImpl(\n metadataItems,\n tree,\n treePrefix,\n parentParams,\n searchParams,\n errorConvention,\n errorMetadataItem,\n getDynamicParamFromSegment,\n workStore\n )\n})\n\nasync function resolveMetadataItemsImpl(\n metadataItems: MetadataItems,\n tree: LoaderTree,\n /** Provided tree can be nested subtree, this argument says what is the path of such subtree */\n treePrefix: undefined | string[],\n parentParams: Params,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n errorMetadataItem: MetadataItems[number],\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n): Promise {\n const [segment, parallelRoutes, { page }] = tree\n const currentTreePrefix =\n treePrefix && treePrefix.length ? [...treePrefix, segment] : [segment]\n const isPage = typeof page !== 'undefined'\n\n // Handle dynamic segment params.\n const segmentParam = getDynamicParamFromSegment(segment)\n /**\n * Create object holding the parent params and current params\n */\n let currentParams = parentParams\n if (segmentParam && segmentParam.value !== null) {\n currentParams = {\n ...parentParams,\n [segmentParam.param]: segmentParam.value,\n }\n }\n\n const params = createServerParamsForMetadata(currentParams, workStore)\n const props: SegmentProps = isPage ? { params, searchParams } : { params }\n\n await collectMetadata({\n tree,\n metadataItems,\n errorMetadataItem,\n errorConvention,\n props,\n route: currentTreePrefix\n // __PAGE__ shouldn't be shown in a route\n .filter((s) => s !== PAGE_SEGMENT_KEY)\n .join('/'),\n })\n\n for (const key in parallelRoutes) {\n const childTree = parallelRoutes[key]\n await resolveMetadataItemsImpl(\n metadataItems,\n childTree,\n currentTreePrefix,\n currentParams,\n searchParams,\n errorConvention,\n errorMetadataItem,\n getDynamicParamFromSegment,\n workStore\n )\n }\n\n if (Object.keys(parallelRoutes).length === 0 && errorConvention) {\n // If there are no parallel routes, place error metadata as the last item.\n // e.g. layout -> layout -> not-found\n metadataItems.push(errorMetadataItem)\n }\n\n return metadataItems\n}\n\ntype ErrorViewportItemRef = { current: ViewportItems[number] }\nconst resolveViewportItems = cache(async function (\n tree: LoaderTree,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n) {\n const parentParams = {}\n const viewportItems: ViewportItems = []\n const errorViewportItemRef: ErrorViewportItemRef = {\n current: null,\n }\n const treePrefix = undefined\n return resolveViewportItemsImpl(\n viewportItems,\n tree,\n treePrefix,\n parentParams,\n searchParams,\n errorConvention,\n errorViewportItemRef,\n getDynamicParamFromSegment,\n workStore\n )\n})\n\nasync function resolveViewportItemsImpl(\n viewportItems: ViewportItems,\n tree: LoaderTree,\n /** Provided tree can be nested subtree, this argument says what is the path of such subtree */\n treePrefix: undefined | string[],\n parentParams: Params,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n errorViewportItemRef: ErrorViewportItemRef,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n): Promise {\n const [segment, parallelRoutes, { page }] = tree\n const currentTreePrefix =\n treePrefix && treePrefix.length ? [...treePrefix, segment] : [segment]\n const isPage = typeof page !== 'undefined'\n\n // Handle dynamic segment params.\n const segmentParam = getDynamicParamFromSegment(segment)\n /**\n * Create object holding the parent params and current params\n */\n let currentParams = parentParams\n if (segmentParam && segmentParam.value !== null) {\n currentParams = {\n ...parentParams,\n [segmentParam.param]: segmentParam.value,\n }\n }\n\n const params = createServerParamsForMetadata(currentParams, workStore)\n\n let layerProps: LayoutProps | PageProps\n if (isPage) {\n layerProps = {\n params,\n searchParams,\n }\n } else {\n layerProps = {\n params,\n }\n }\n\n await collectViewport({\n tree,\n viewportItems,\n errorViewportItemRef,\n errorConvention,\n props: layerProps,\n route: currentTreePrefix\n // __PAGE__ shouldn't be shown in a route\n .filter((s) => s !== PAGE_SEGMENT_KEY)\n .join('/'),\n })\n\n for (const key in parallelRoutes) {\n const childTree = parallelRoutes[key]\n await resolveViewportItemsImpl(\n viewportItems,\n childTree,\n currentTreePrefix,\n currentParams,\n searchParams,\n errorConvention,\n errorViewportItemRef,\n getDynamicParamFromSegment,\n workStore\n )\n }\n\n if (Object.keys(parallelRoutes).length === 0 && errorConvention) {\n // If there are no parallel routes, place error metadata as the last item.\n // e.g. layout -> layout -> not-found\n viewportItems.push(errorViewportItemRef.current)\n }\n\n return viewportItems\n}\n\ntype WithTitle = { title?: AbsoluteTemplateString | null }\ntype WithDescription = { description?: string | null }\n\nconst isTitleTruthy = (title: AbsoluteTemplateString | null | undefined) =>\n !!title?.absolute\nconst hasTitle = (metadata: WithTitle | null) => isTitleTruthy(metadata?.title)\n\nfunction inheritFromMetadata(\n target: (WithTitle & WithDescription) | null,\n metadata: ResolvedMetadata\n) {\n if (target) {\n if (!hasTitle(target) && hasTitle(metadata)) {\n target.title = metadata.title\n }\n if (!target.description && metadata.description) {\n target.description = metadata.description\n }\n }\n}\n\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\nconst commonOgKeys = ['title', 'description', 'images'] as const\nfunction postProcessMetadata(\n metadata: ResolvedMetadata,\n favicon: any,\n titleTemplates: TitleTemplates,\n metadataContext: MetadataContext\n): ResolvedMetadata {\n const { openGraph, twitter } = metadata\n\n if (openGraph) {\n // If there's openGraph information but not configured in twitter,\n // inherit them from openGraph metadata.\n let autoFillProps: Partial<{\n [Key in (typeof commonOgKeys)[number]]: NonNullable<\n ResolvedMetadata['openGraph']\n >[Key]\n }> = {}\n const hasTwTitle = hasTitle(twitter)\n const hasTwDescription = twitter?.description\n const hasTwImages = Boolean(\n twitter?.hasOwnProperty('images') && twitter.images\n )\n if (!hasTwTitle) {\n if (isTitleTruthy(openGraph.title)) {\n autoFillProps.title = openGraph.title\n } else if (metadata.title && isTitleTruthy(metadata.title)) {\n autoFillProps.title = metadata.title\n }\n }\n if (!hasTwDescription)\n autoFillProps.description =\n openGraph.description || metadata.description || undefined\n if (!hasTwImages) autoFillProps.images = openGraph.images\n\n if (Object.keys(autoFillProps).length > 0) {\n const partialTwitter = resolveTwitter(\n autoFillProps,\n normalizeMetadataBase(metadata.metadataBase),\n metadataContext,\n titleTemplates.twitter\n )\n if (metadata.twitter) {\n metadata.twitter = Object.assign({}, metadata.twitter, {\n ...(!hasTwTitle && { title: partialTwitter?.title }),\n ...(!hasTwDescription && {\n description: partialTwitter?.description,\n }),\n ...(!hasTwImages && { images: partialTwitter?.images }),\n })\n } else {\n metadata.twitter = convertUrlsToStrings(partialTwitter)\n }\n }\n }\n\n // If there's no title and description configured in openGraph or twitter,\n // use the title and description from metadata.\n inheritFromMetadata(openGraph, metadata)\n inheritFromMetadata(twitter, metadata)\n\n if (favicon) {\n if (!metadata.icons) {\n metadata.icons = {\n icon: [],\n apple: [],\n }\n }\n\n metadata.icons.icon.unshift(favicon)\n }\n\n return metadata\n}\n\ntype Result = null | T | Promise | PromiseLike\n\nfunction prerenderMetadata(metadataItems: MetadataItems) {\n // If the index is a function then it is a resolver and the next slot\n // is the corresponding result. If the index is not a function it is the result\n // itself.\n const resolversAndResults: Array<\n ((value: ResolvedMetadata) => void) | Result\n > = []\n for (let i = 0; i < metadataItems.length; i++) {\n const metadataExport = metadataItems[i][0]\n getResult(resolversAndResults, metadataExport)\n }\n return resolversAndResults\n}\n\nfunction prerenderViewport(viewportItems: ViewportItems) {\n // If the index is a function then it is a resolver and the next slot\n // is the corresponding result. If the index is not a function it is the result\n // itself.\n const resolversAndResults: Array<\n ((value: ResolvedViewport) => void) | Result\n > = []\n for (let i = 0; i < viewportItems.length; i++) {\n const viewportExport = viewportItems[i]\n getResult(resolversAndResults, viewportExport)\n }\n return resolversAndResults\n}\n\nconst noop = () => {}\n\nfunction getResult(\n resolversAndResults: Array<\n ((value: Resolved) => void) | Result\n >,\n exportForResult: null | TData | InstrumentedResolver\n) {\n if (typeof exportForResult === 'function') {\n // If the function is a 'use cache' function that uses the parent data as\n // the second argument, we don't want to eagerly execute it during\n // metadata/viewport pre-rendering, as the parent data might also be\n // computed from another 'use cache' function. To ensure that the hanging\n // input abort signal handling works in this case (i.e. the depending\n // function waits for the cached input to resolve while encoding its args),\n // they must be called sequentially. This can be accomplished by wrapping\n // the call in a lazy promise, so that the original function is only called\n // when the result is actually awaited.\n const useCacheFunctionInfo = getUseCacheFunctionInfo(\n exportForResult.$$original\n )\n if (useCacheFunctionInfo && useCacheFunctionInfo.usedArgs[1]) {\n const promise = new Promise>((resolve) =>\n resolversAndResults.push(resolve)\n )\n resolversAndResults.push(\n createLazyResult(async () => exportForResult(promise))\n )\n } else {\n let result: TData | Promise\n if (useCacheFunctionInfo) {\n resolversAndResults.push(noop)\n // @ts-expect-error We intentionally omit the parent argument, because\n // we know from the check above that the 'use cache' function does not\n // use it.\n result = exportForResult()\n } else {\n result = exportForResult(\n new Promise>((resolve) =>\n resolversAndResults.push(resolve)\n )\n )\n }\n resolversAndResults.push(result)\n if (result instanceof Promise) {\n // since we eager execute generateMetadata and\n // they can reject at anytime we need to ensure\n // we attach the catch handler right away to\n // prevent unhandled rejections crashing the process\n result.catch((err) => {\n return {\n __nextError: err,\n }\n })\n }\n }\n } else if (typeof exportForResult === 'object') {\n resolversAndResults.push(exportForResult)\n } else {\n resolversAndResults.push(null)\n }\n}\n\nfunction freezeInDev(obj: T): T {\n if (process.env.NODE_ENV === 'development') {\n return (\n require('../../shared/lib/deep-freeze') as typeof import('../../shared/lib/deep-freeze')\n ).deepFreeze(obj) as T\n }\n\n return obj\n}\n\nexport async function accumulateMetadata(\n route: string,\n metadataItems: MetadataItems,\n pathname: Promise,\n metadataContext: MetadataContext\n): Promise {\n let resolvedMetadata = createDefaultMetadata()\n\n let titleTemplates: TitleTemplates = {\n title: null,\n twitter: null,\n openGraph: null,\n }\n\n const buildState = {\n warnings: new Set(),\n }\n\n let favicon\n\n // Collect the static icons in the most leaf node,\n // since we don't collect all the static metadata icons in the parent segments.\n const leafSegmentStaticIcons = {\n icon: [],\n apple: [],\n }\n\n const resolversAndResults = prerenderMetadata(metadataItems)\n let resultIndex = 0\n\n for (let i = 0; i < metadataItems.length; i++) {\n const staticFilesMetadata = metadataItems[i][1]\n // Treat favicon as special case, it should be the first icon in the list\n // i <= 1 represents root layout, and if current page is also at root\n if (i <= 1 && isFavicon(staticFilesMetadata?.icon?.[0])) {\n const iconMod = staticFilesMetadata?.icon?.shift()\n if (i === 0) favicon = iconMod\n }\n\n let pendingMetadata = resolversAndResults[resultIndex++]\n if (typeof pendingMetadata === 'function') {\n // This metadata item had a `generateMetadata` and\n // we need to provide the currently resolved metadata\n // to it before we continue;\n const resolveParentMetadata = pendingMetadata\n // we know that the next item is a result if this item\n // was a resolver\n pendingMetadata = resolversAndResults[resultIndex++] as Result\n\n resolveParentMetadata(freezeInDev(resolvedMetadata))\n }\n // Otherwise the item was either null or a static export\n\n let metadata: Metadata | null\n if (isPromiseLike(pendingMetadata)) {\n metadata = await pendingMetadata\n } else {\n metadata = pendingMetadata\n }\n\n resolvedMetadata = await mergeMetadata(route, pathname, {\n resolvedMetadata,\n metadata,\n metadataContext,\n staticFilesMetadata,\n titleTemplates,\n buildState,\n leafSegmentStaticIcons,\n })\n\n // If the layout is the same layer with page, skip the leaf layout and leaf page\n // The leaf layout and page are the last two items\n if (i < metadataItems.length - 2) {\n titleTemplates = {\n title: resolvedMetadata.title?.template || null,\n openGraph: resolvedMetadata.openGraph?.title.template || null,\n twitter: resolvedMetadata.twitter?.title.template || null,\n }\n }\n }\n\n if (\n leafSegmentStaticIcons.icon.length > 0 ||\n leafSegmentStaticIcons.apple.length > 0\n ) {\n if (!resolvedMetadata.icons) {\n resolvedMetadata.icons = {\n icon: [],\n apple: [],\n }\n if (leafSegmentStaticIcons.icon.length > 0) {\n resolvedMetadata.icons.icon.unshift(...leafSegmentStaticIcons.icon)\n }\n if (leafSegmentStaticIcons.apple.length > 0) {\n resolvedMetadata.icons.apple.unshift(...leafSegmentStaticIcons.apple)\n }\n }\n }\n\n // Only log warnings if there are any, and only once after the metadata resolving process is finished\n if (buildState.warnings.size > 0) {\n for (const warning of buildState.warnings) {\n Log.warn(warning)\n }\n }\n\n return postProcessMetadata(\n resolvedMetadata,\n favicon,\n titleTemplates,\n metadataContext\n )\n}\n\nexport async function accumulateViewport(\n viewportItems: ViewportItems\n): Promise {\n let resolvedViewport: ResolvedViewport = createDefaultViewport()\n\n const resolversAndResults = prerenderViewport(viewportItems)\n let i = 0\n\n while (i < resolversAndResults.length) {\n let pendingViewport = resolversAndResults[i++]\n if (typeof pendingViewport === 'function') {\n // this viewport item had a `generateViewport` and\n // we need to provide the currently resolved viewport\n // to it before we continue;\n const resolveParentViewport = pendingViewport\n // we know that the next item is a result if this item\n // was a resolver\n pendingViewport = resolversAndResults[i++] as Result\n\n resolveParentViewport(freezeInDev(resolvedViewport))\n }\n // Otherwise the item was either null or a static export\n\n let viewport: Viewport | null\n if (isPromiseLike(pendingViewport)) {\n viewport = await pendingViewport\n } else {\n viewport = pendingViewport\n }\n\n resolvedViewport = mergeViewport({ resolvedViewport, viewport })\n }\n\n return resolvedViewport\n}\n\n// Exposed API for metadata component, that directly resolve the loader tree and related context as resolved metadata.\nexport async function resolveMetadata(\n tree: LoaderTree,\n pathname: Promise,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore,\n metadataContext: MetadataContext\n): Promise {\n const metadataItems = await resolveMetadataItems(\n tree,\n searchParams,\n errorConvention,\n getDynamicParamFromSegment,\n workStore\n )\n return accumulateMetadata(\n workStore.route,\n metadataItems,\n pathname,\n metadataContext\n )\n}\n\n// Exposed API for viewport component, that directly resolve the loader tree and related context as resolved viewport.\nexport async function resolveViewport(\n tree: LoaderTree,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n): Promise {\n const viewportItems = await resolveViewportItems(\n tree,\n searchParams,\n errorConvention,\n getDynamicParamFromSegment,\n workStore\n )\n return accumulateViewport(viewportItems)\n}\n\nfunction isPromiseLike(\n value: unknown | PromiseLike\n): value is PromiseLike {\n return (\n typeof value === 'object' &&\n value !== null &&\n typeof (value as PromiseLike).then === 'function'\n )\n}\n"],"names":["cache","createDefaultMetadata","createDefaultViewport","resolveOpenGraph","resolveTwitter","resolveTitle","resolveAsArrayOrUndefined","getComponentTypeModule","getLayoutOrPageModule","interopDefault","resolveAlternates","resolveAppleWebApp","resolveAppLinks","resolveRobots","resolveThemeColor","resolveVerification","resolveItunes","resolveFacebook","resolvePagination","resolveIcons","getTracer","ResolveMetadataSpan","PAGE_SEGMENT_KEY","Log","createServerParamsForMetadata","getUseCacheFunctionInfo","isUseCacheFunction","createLazyResult","isFavicon","icon","url","toString","startsWith","type","convertUrlsToStrings","input","URL","Array","isArray","map","item","result","key","value","Object","entries","normalizeMetadataBase","metadataBase","Error","mergeStaticMetadata","source","target","staticFilesMetadata","metadataContext","titleTemplates","leafSegmentStaticIcons","pathname","apple","openGraph","twitter","manifest","hasOwnProperty","resolvedTwitter","images","isStaticMetadataRouteFile","resolvedOpenGraph","mergeMetadata","route","metadata","resolvedMetadata","buildState","newResolvedMetadata","structuredClone","undefined","key_","title","alternates","facebook","verification","icons","appleWebApp","appLinks","robots","authors","itunes","pagination","other","assign","warnings","add","mergeViewport","resolvedViewport","viewport","newResolvedViewport","themeColor","colorScheme","getDefinedViewport","mod","props","tracingProps","generateViewport","segmentProps","createSegmentProps","parent","trace","spanName","attributes","$$original","getDefinedMetadata","generateMetadata","fn","$$isPage","$$isLayout","collectStaticImagesFiles","iconPromises","imageModule","length","Promise","all","flat","resolveStaticMetadata","modules","staticMetadata","collectMetadata","tree","metadataItems","errorMetadataItem","errorConvention","modType","hasErrorConventionComponent","Boolean","layoutOrPageMod","layoutOrPageModType","metadataExport","push","errorMod","errorMetadataExport","collectViewport","viewportItems","errorViewportItemRef","viewportExport","errorViewportExport","current","resolveMetadataItems","searchParams","getDynamicParamFromSegment","workStore","parentParams","treePrefix","resolveMetadataItemsImpl","segment","parallelRoutes","page","currentTreePrefix","isPage","segmentParam","currentParams","param","params","filter","s","join","childTree","keys","resolveViewportItems","resolveViewportItemsImpl","layerProps","isTitleTruthy","absolute","hasTitle","inheritFromMetadata","description","commonOgKeys","postProcessMetadata","favicon","autoFillProps","hasTwTitle","hasTwDescription","hasTwImages","partialTwitter","unshift","prerenderMetadata","resolversAndResults","i","getResult","prerenderViewport","noop","exportForResult","useCacheFunctionInfo","usedArgs","promise","resolve","catch","err","__nextError","freezeInDev","obj","process","env","NODE_ENV","require","deepFreeze","accumulateMetadata","Set","resultIndex","iconMod","shift","pendingMetadata","resolveParentMetadata","isPromiseLike","template","size","warning","warn","accumulateViewport","pendingViewport","resolveParentViewport","resolveMetadata","resolveViewport","then"],"mappings":";;;;;;;;;;AA2BA,6DAA6D;AAC7D,OAAO,cAAa;AAEpB,SAASA,KAAK,QAAQ,QAAO;AAC7B,SACEC,qBAAqB,EACrBC,qBAAqB,QAChB,qBAAoB;AAC3B,SAASC,gBAAgB,EAAEC,cAAc,QAAQ,gCAA+B;AAChF,SAASC,YAAY,QAAQ,4BAA2B;AACxD,SAASC,yBAAyB,QAAQ,mBAAkB;AAC5D,SACEC,sBAAsB,EACtBC,qBAAqB,QAChB,kCAAiC;AACxC,SAASC,cAAc,QAAQ,qBAAoB;AACnD,SACEC,iBAAiB,EACjBC,kBAAkB,EAClBC,eAAe,EACfC,aAAa,EACbC,iBAAiB,EACjBC,mBAAmB,EACnBC,aAAa,EACbC,eAAe,EACfC,iBAAiB,QACZ,6BAA4B;AACnC,SAASC,YAAY,QAAQ,4BAA2B;AACxD,SAASC,SAAS,QAAQ,gCAA+B;AACzD,SAASC,mBAAmB,QAAQ,mCAAkC;AACtE,SAASC,gBAAgB,QAAQ,2BAA0B;AAC3D,YAAYC,SAAS,yBAAwB;AAC7C,SAASC,6BAA6B,QAAQ,8BAA6B;AAE3E,SACEC,uBAAuB,EACvBC,kBAAkB,QACb,kCAAiC;AAKxC,SAASC,gBAAgB,QAAQ,+BAA8B;;;;;;;;;;;;;;;;;;AAgD/D,SAASC,UAAUC,IAAgC;IACjD,IAAI,CAACA,MAAM;QACT,OAAO;IACT;IAEA,yCAAyC;IACzC,OACGA,CAAAA,KAAKC,GAAG,KAAK,kBACZD,KAAKC,GAAG,CAACC,QAAQ,GAAGC,UAAU,CAAC,gBAAe,KAChDH,KAAKI,IAAI,KAAK;AAElB;AAEA,SAASC,qBAAwBC,KAAQ;IACvC,IAAIA,iBAAiBC,KAAK;QACxB,OAAOD,MAAMJ,QAAQ;IACvB,OAAO,IAAIM,MAAMC,OAAO,CAACH,QAAQ;QAC/B,OAAOA,MAAMI,GAAG,CAAC,CAACC,OAChBN,qBAAqBM;IAEzB,OAAO,IAAIL,SAAS,OAAOA,UAAU,UAAU;QAC7C,MAAMM,SAAkC,CAAC;QACzC,KAAK,MAAM,CAACC,KAAKC,MAAM,IAAIC,OAAOC,OAAO,CAACV,OAAQ;YAChDM,MAAM,CAACC,IAAI,GAAGR,qBAAqBS;QACrC;QACA,OAAOF;IACT;IACA,OAAON;AACT;AAEA,SAASW,sBAAsBC,YAAiC;IAC9D,IAAI,OAAOA,iBAAiB,UAAU;QACpC,IAAI;YACFA,eAAe,IAAIX,IAAIW;QACzB,EAAE,OAAM;YACN,MAAM,OAAA,cAA6D,CAA7D,IAAIC,MAAM,CAAC,iCAAiC,EAAED,cAAc,GAA5D,qBAAA;uBAAA;4BAAA;8BAAA;YAA4D;QACpE;IACF;IACA,OAAOA;AACT;AAEA,eAAeE,oBACbF,YAA6B,EAC7BG,MAAuB,EACvBC,MAAwB,EACxBC,mBAAmC,EACnCC,eAAgC,EAChCC,cAA8B,EAC9BC,sBAAmC,EACnCC,QAAyB;QAeTN,iBAWEA;IAxBlB,IAAI,CAACE,qBAAqB,OAAOD;IACjC,MAAM,EAAEtB,IAAI,EAAE4B,KAAK,EAAEC,SAAS,EAAEC,OAAO,EAAEC,QAAQ,EAAE,GAAGR;IAEtD,uDAAuD;IAEvD,IAAIvB,MAAM;QACR0B,uBAAuB1B,IAAI,GAAGA;IAChC;IACA,IAAI4B,OAAO;QACTF,uBAAuBE,KAAK,GAAGA;IACjC;IAEA,8FAA8F;IAC9F,IAAIE,WAAW,CAAA,CAACT,UAAAA,OAAAA,KAAAA,IAAAA,CAAAA,kBAAAA,OAAQS,OAAO,KAAA,OAAA,KAAA,IAAfT,gBAAiBW,cAAc,CAAC,SAAA,GAAW;QACzD,MAAMC,sBAAkB1D,6MAAAA,EACtB;YAAE,GAAG+C,OAAOQ,OAAO;YAAEI,QAAQJ;QAAQ,GACrCZ,cACA;YAAE,GAAGM,eAAe;YAAEW,2BAA2B;QAAK,GACtDV,eAAeK,OAAO;QAExBR,OAAOQ,OAAO,GAAGzB,qBAAqB4B;IACxC;IAEA,gGAAgG;IAChG,IAAIJ,aAAa,CAAA,CAACR,UAAAA,OAAAA,KAAAA,IAAAA,CAAAA,oBAAAA,OAAQQ,SAAS,KAAA,OAAA,KAAA,IAAjBR,kBAAmBW,cAAc,CAAC,SAAA,GAAW;QAC7D,MAAMI,oBAAoB,UAAM9D,+MAAAA,EAC9B;YAAE,GAAGgD,OAAOO,SAAS;YAAEK,QAAQL;QAAU,GACzCX,cACAS,UACA;YAAE,GAAGH,eAAe;YAAEW,2BAA2B;QAAK,GACtDV,eAAeI,SAAS;QAE1BP,OAAOO,SAAS,GAAGxB,qBAAqB+B;IAC1C;IACA,IAAIL,UAAU;QACZT,OAAOS,QAAQ,GAAGA;IACpB;IAEA,OAAOT;AACT;AAEA;;CAEC,GACD,eAAee,cACbC,KAAa,EACbX,QAAyB,EACzB,EACEY,QAAQ,EACRC,gBAAgB,EAChBjB,mBAAmB,EACnBE,cAAc,EACdD,eAAe,EACfiB,UAAU,EACVf,sBAAsB,EASvB;IAED,MAAMgB,sBAAsBC,gBAAgBH;IAE5C,MAAMtB,eAAeD,sBACnBsB,CAAAA,YAAAA,OAAAA,KAAAA,IAAAA,SAAUrB,YAAY,MAAK0B,YACvBL,SAASrB,YAAY,GACrBsB,iBAAiBtB,YAAY;IAGnC,IAAK,MAAM2B,QAAQN,SAAU;QAC3B,MAAM1B,MAAMgC;QAEZ,OAAQhC;YACN,KAAK;gBAAS;oBACZ6B,oBAAoBI,KAAK,OAAGtE,uMAAAA,EAC1B+D,SAASO,KAAK,EACdrB,eAAeqB,KAAK;oBAEtB;gBACF;YACA,KAAK;gBAAc;oBACjBJ,oBAAoBK,UAAU,GAAG1C,qBAC/B,UAAMxB,6MAAAA,EACJ0D,SAASQ,UAAU,EACnB7B,cACAS,UACAH;oBAGJ;gBACF;YACA,KAAK;gBAAa;oBAChBkB,oBAAoBb,SAAS,GAAGxB,qBAC9B,UAAM/B,+MAAAA,EACJiE,SAASV,SAAS,EAClBX,cACAS,UACAH,iBACAC,eAAeI,SAAS;oBAG5B;gBACF;YACA,KAAK;gBAAW;oBACda,oBAAoBZ,OAAO,GAAGzB,yBAC5B9B,6MAAAA,EACEgE,SAAST,OAAO,EAChBZ,cACAM,iBACAC,eAAeK,OAAO;oBAG1B;gBACF;YACA,KAAK;gBACHY,oBAAoBM,QAAQ,OAAG5D,2MAAAA,EAAgBmD,SAASS,QAAQ;gBAChE;YACF,KAAK;gBACHN,oBAAoBO,YAAY,OAAG/D,+MAAAA,EACjCqD,SAASU,YAAY;gBAEvB;YAEF,KAAK;gBAAS;oBACZP,oBAAoBQ,KAAK,GAAG7C,yBAC1Bf,uMAAAA,EAAaiD,SAASW,KAAK;oBAE7B;gBACF;YACA,KAAK;gBACHR,oBAAoBS,WAAW,OAAGrE,8MAAAA,EAChCyD,SAASY,WAAW;gBAEtB;YACF,KAAK;gBACHT,oBAAoBU,QAAQ,GAAG/C,yBAC7BtB,2MAAAA,EAAgBwD,SAASa,QAAQ;gBAEnC;YACF,KAAK;gBAAU;oBACbV,oBAAoBW,MAAM,OAAGrE,yMAAAA,EAAcuD,SAASc,MAAM;oBAC1D;gBACF;YACA,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;gBAAY;oBACfX,mBAAmB,CAAC7B,IAAI,OAAGpC,wMAAAA,EAA0B8D,QAAQ,CAAC1B,IAAI;oBAClE;gBACF;YACA,KAAK;gBAAW;oBACd6B,mBAAmB,CAAC7B,IAAI,GAAGR,yBACzB5B,wMAAAA,EAA0B8D,SAASe,OAAO;oBAE5C;gBACF;YACA,KAAK;gBAAU;oBACbZ,mBAAmB,CAAC7B,IAAI,GAAG,UAAM1B,yMAAAA,EAC/BoD,SAASgB,MAAM,EACfrC,cACAS,UACAH;oBAEF;gBACF;YACA,KAAK;gBAAc;oBACjBkB,oBAAoBc,UAAU,GAAG,UAAMnE,6MAAAA,EACrCkD,SAASiB,UAAU,EACnBtC,cACAS,UACAH;oBAEF;gBACF;YACA,+CAA+C;YAC/C,KAAK;gBACHkB,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAG0B,QAAQ,CAAC1B,IAAI,IAAI;gBAC5C;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAGR,qBAAqBkC,QAAQ,CAAC1B,IAAI,KAAK;gBAClE;YACF,KAAK;gBACH6B,mBAAmB,CAAC7B,IAAI,GAAGR,qBAAqBkC,QAAQ,CAAC1B,IAAI,KAAK;gBAClE;YACF,KAAK;gBACH6B,oBAAoBe,KAAK,GAAG1C,OAAO2C,MAAM,CACvC,CAAC,GACDhB,oBAAoBe,KAAK,EACzBlB,SAASkB,KAAK;gBAEhB;YACF,KAAK;gBACHf,oBAAoBxB,YAAY,GAAGA,eAC/BA,aAAahB,QAAQ,KACrB;gBACJ;YAEF,KAAK;gBAA0B;oBAC7BuC,WAAWkB,QAAQ,CAACC,GAAG,CACrB,CAAC,yGAAyG,CAAC;oBAE7G;gBACF;YACA,KAAK;gBAAgC;oBACnCnB,WAAWkB,QAAQ,CAACC,GAAG,CACrB,CAAC,yGAAyG,CAAC;oBAE7G;gBACF;YACA,KAAK;YACL,KAAK;YACL,KAAK;gBACH,IAAIrB,QAAQ,CAAC1B,IAAI,IAAI,MAAM;oBACzB4B,WAAWkB,QAAQ,CAACC,GAAG,CACrB,CAAC,qBAAqB,EAAE/C,IAAI,qCAAqC,EAAEyB,MAAM,8HAA8H,CAAC;gBAE5M;gBACA;YACF;gBAAS;oBACPzB;gBACF;QACF;IACF;IAEA,OAAOO,oBACLF,cACAqB,UACAG,qBACAnB,qBACAC,iBACAC,gBACAC,wBACAC;AAEJ;AAEA;;CAEC,GACD,SAASkC,cAAc,EACrBC,gBAAgB,EAChBC,QAAQ,EAIT;IACC,MAAMC,sBAAsBrB,gBAAgBmB;IAE5C,IAAIC,UAAU;QACZ,IAAK,MAAMlB,QAAQkB,SAAU;YAC3B,MAAMlD,MAAMgC;YAEZ,OAAQhC;gBACN,KAAK;oBAAc;wBACjBmD,oBAAoBC,UAAU,OAAGhF,6MAAAA,EAC/B8E,SAASE,UAAU;wBAErB;oBACF;gBACA,KAAK;oBACHD,oBAAoBE,WAAW,GAAGH,SAASG,WAAW,IAAI;oBAC1D;gBACF,KAAK;gBACL,KAAK;gBACL,KAAK;gBACL,KAAK;gBACL,KAAK;gBACL,KAAK;gBACL,KAAK;gBACL,KAAK;oBACH,6CAA6C;oBAC7C,iCAAiC;oBACjCF,mBAAmB,CAACnD,IAAI,GAAGkD,QAAQ,CAAClD,IAAI;oBACxC;gBACF;oBACEA;YACJ;QACF;IACF;IAEA,OAAOmD;AACT;AAEA,SAASG,mBACPC,GAAQ,EACRC,KAAmB,EACnBC,YAA+B;IAE/B,IAAI,OAAOF,IAAIG,gBAAgB,KAAK,YAAY;QAC9C,MAAM,EAAEjC,KAAK,EAAE,GAAGgC;QAClB,MAAME,eAAeC,mBAAmBL,IAAIG,gBAAgB,EAAEF;QAE9D,OAAOtD,OAAO2C,MAAM,CAClB,CAACgB,aACCnF,oLAAAA,IAAYoF,KAAK,CACfnF,iMAAAA,CAAoB+E,gBAAgB,EACpC;gBACEK,UAAU,CAAC,iBAAiB,EAAEtC,OAAO;gBACrCuC,YAAY;oBACV,aAAavC;gBACf;YACF,GACA,IAAM8B,IAAIG,gBAAgB,CAACC,cAAcE,UAE7C;YAAEI,YAAYV,IAAIG,gBAAgB;QAAC;IAEvC;IACA,OAAOH,IAAIL,QAAQ,IAAI;AACzB;AAEA,SAASgB,mBACPX,GAAQ,EACRC,KAAmB,EACnBC,YAA+B;IAE/B,IAAI,OAAOF,IAAIY,gBAAgB,KAAK,YAAY;QAC9C,MAAM,EAAE1C,KAAK,EAAE,GAAGgC;QAClB,MAAME,eAAeC,mBAAmBL,IAAIY,gBAAgB,EAAEX;QAE9D,OAAOtD,OAAO2C,MAAM,CAClB,CAACgB,aACCnF,oLAAAA,IAAYoF,KAAK,CACfnF,iMAAAA,CAAoBwF,gBAAgB,EACpC;gBACEJ,UAAU,CAAC,iBAAiB,EAAEtC,OAAO;gBACrCuC,YAAY;oBACV,aAAavC;gBACf;YACF,GACA,IAAM8B,IAAIY,gBAAgB,CAACR,cAAcE,UAE7C;YAAEI,YAAYV,IAAIY,gBAAgB;QAAC;IAEvC;IACA,OAAOZ,IAAI7B,QAAQ,IAAI;AACzB;AAEA;;;;CAIC,GACD,SAASkC,mBACPQ,EAAY,EACZZ,KAAmB;IAEnB,WAAOxE,yMAAAA,EAAmBoF,MACtB,kBAAkBZ,QAChB;QAAE,GAAGA,KAAK;QAAEa,UAAU;IAAK,IAC3B;QAAE,GAAGb,KAAK;QAAEc,YAAY;IAAK,IAC/Bd;AACN;AAEA,eAAee,yBACb7C,QAAmC,EACnC8B,KAAmB,EACnBjE,IAAkD;QAU7C;IARL,IAAI,CAAA,CAACmC,YAAAA,OAAAA,KAAAA,IAAAA,QAAU,CAACnC,KAAK,GAAE,OAAOwC;IAE9B,MAAMyC,eAAe9C,QAAQ,CAACnC,KAAyB,CAACM,GAAG,CACzD,OAAO4E,kBACL1G,kLAAAA,EAAe,MAAM0G,YAAYjB;IAGrC,OAAOgB,CAAAA,gBAAAA,OAAAA,KAAAA,IAAAA,aAAcE,MAAM,IAAG,IAAA,CACzB,QAAA,MAAMC,QAAQC,GAAG,CAACJ,aAAAA,KAAAA,OAAAA,KAAAA,IAAlB,MAAkCK,IAAI,KACvC9C;AACN;AAEA,eAAe+C,sBACbC,OAAsB,EACtBvB,KAAmB;IAEnB,MAAM,EAAE9B,QAAQ,EAAE,GAAGqD;IACrB,IAAI,CAACrD,UAAU,OAAO;IAEtB,MAAM,CAACvC,MAAM4B,OAAOC,WAAWC,QAAQ,GAAG,MAAM0D,QAAQC,GAAG,CAAC;QAC1DL,yBAAyB7C,UAAU8B,OAAO;QAC1Ce,yBAAyB7C,UAAU8B,OAAO;QAC1Ce,yBAAyB7C,UAAU8B,OAAO;QAC1Ce,yBAAyB7C,UAAU8B,OAAO;KAC3C;IAED,MAAMwB,iBAAiB;QACrB7F;QACA4B;QACAC;QACAC;QACAC,UAAUQ,SAASR,QAAQ;IAC7B;IAEA,OAAO8D;AACT;AAEA,4FAA4F;AAC5F,eAAeC,gBAAgB,EAC7BC,IAAI,EACJC,aAAa,EACbC,iBAAiB,EACjB5B,KAAK,EACL/B,KAAK,EACL4D,eAAe,EAQhB;IACC,IAAI9B;IACJ,IAAI+B;IACJ,MAAMC,8BAA8BC,QAClCH,mBAAmBH,IAAI,CAAC,EAAE,CAACG,gBAAgB;IAE7C,IAAIA,iBAAiB;QACnB9B,MAAM,UAAM1F,sMAAAA,EAAuBqH,MAAM;QACzCI,UAAUD;IACZ,OAAO;QACL,MAAM,EAAE9B,KAAKkC,eAAe,EAAEH,SAASI,mBAAmB,EAAE,GAC1D,UAAM5H,qMAAAA,EAAsBoH;QAC9B3B,MAAMkC;QACNH,UAAUI;IACZ;IAEA,IAAIJ,SAAS;QACX7D,SAAS,CAAC,CAAC,EAAE6D,SAAS;IACxB;IAEA,MAAM5E,sBAAsB,MAAMoE,sBAAsBI,IAAI,CAAC,EAAE,EAAE1B;IACjE,MAAMmC,iBAAiBpC,MAAMW,mBAAmBX,KAAKC,OAAO;QAAE/B;IAAM,KAAK;IAEzE0D,cAAcS,IAAI,CAAC;QAACD;QAAgBjF;KAAoB;IAExD,IAAI6E,+BAA+BF,iBAAiB;QAClD,MAAMQ,WAAW,UAAMhI,sMAAAA,EAAuBqH,MAAMG;QACpD,MAAMS,sBAAsBD,WACxB3B,mBAAmB2B,UAAUrC,OAAO;YAAE/B;QAAM,KAC5C;QAEJ2D,iBAAiB,CAAC,EAAE,GAAGU;QACvBV,iBAAiB,CAAC,EAAE,GAAG1E;IACzB;AACF;AAEA,4FAA4F;AAC5F,eAAeqF,gBAAgB,EAC7Bb,IAAI,EACJc,aAAa,EACbC,oBAAoB,EACpBzC,KAAK,EACL/B,KAAK,EACL4D,eAAe,EAQhB;IACC,IAAI9B;IACJ,IAAI+B;IACJ,MAAMC,8BAA8BC,QAClCH,mBAAmBH,IAAI,CAAC,EAAE,CAACG,gBAAgB;IAE7C,IAAIA,iBAAiB;QACnB9B,MAAM,UAAM1F,sMAAAA,EAAuBqH,MAAM;QACzCI,UAAUD;IACZ,OAAO;QACL,MAAM,EAAE9B,KAAKkC,eAAe,EAAEH,SAASI,mBAAmB,EAAE,GAC1D,UAAM5H,qMAAAA,EAAsBoH;QAC9B3B,MAAMkC;QACNH,UAAUI;IACZ;IAEA,IAAIJ,SAAS;QACX7D,SAAS,CAAC,CAAC,EAAE6D,SAAS;IACxB;IAEA,MAAMY,iBAAiB3C,MAAMD,mBAAmBC,KAAKC,OAAO;QAAE/B;IAAM,KAAK;IAEzEuE,cAAcJ,IAAI,CAACM;IAEnB,IAAIX,+BAA+BF,iBAAiB;QAClD,MAAMQ,WAAW,UAAMhI,sMAAAA,EAAuBqH,MAAMG;QACpD,MAAMc,sBAAsBN,WACxBvC,mBAAmBuC,UAAUrC,OAAO;YAAE/B;QAAM,KAC5C;QAEJwE,qBAAqBG,OAAO,GAAGD;IACjC;AACF;AAEA,MAAME,2BAAuB/I,8MAAAA,EAAM,eACjC4H,IAAgB,EAChBoB,YAAqC,EACrCjB,eAA8C,EAC9CkB,0BAAsD,EACtDC,SAAoB;IAEpB,MAAMC,eAAe,CAAC;IACtB,MAAMtB,gBAA+B,EAAE;IACvC,MAAMC,oBAA2C;QAAC;QAAM;KAAK;IAC7D,MAAMsB,aAAa3E;IACnB,OAAO4E,yBACLxB,eACAD,MACAwB,YACAD,cACAH,cACAjB,iBACAD,mBACAmB,4BACAC;AAEJ;AAEA,eAAeG,yBACbxB,aAA4B,EAC5BD,IAAgB,EAChB,6FAA6F,GAC7FwB,UAAgC,EAChCD,YAAoB,EACpBH,YAAqC,EACrCjB,eAA8C,EAC9CD,iBAAwC,EACxCmB,0BAAsD,EACtDC,SAAoB;IAEpB,MAAM,CAACI,SAASC,gBAAgB,EAAEC,IAAI,EAAE,CAAC,GAAG5B;IAC5C,MAAM6B,oBACJL,cAAcA,WAAWhC,MAAM,GAAG;WAAIgC;QAAYE;KAAQ,GAAG;QAACA;KAAQ;IACxE,MAAMI,SAAS,OAAOF,SAAS;IAE/B,iCAAiC;IACjC,MAAMG,eAAeV,2BAA2BK;IAChD;;GAEC,GACD,IAAIM,gBAAgBT;IACpB,IAAIQ,gBAAgBA,aAAahH,KAAK,KAAK,MAAM;QAC/CiH,gBAAgB;YACd,GAAGT,YAAY;YACf,CAACQ,aAAaE,KAAK,CAAC,EAAEF,aAAahH,KAAK;QAC1C;IACF;IAEA,MAAMmH,aAAStI,mMAAAA,EAA8BoI,eAAeV;IAC5D,MAAMhD,QAAsBwD,SAAS;QAAEI;QAAQd;IAAa,IAAI;QAAEc;IAAO;IAEzE,MAAMnC,gBAAgB;QACpBC;QACAC;QACAC;QACAC;QACA7B;QACA/B,OAAOsF,kBACL,yCAAyC;SACxCM,MAAM,CAAC,CAACC,IAAMA,MAAM1I,mLAAAA,EACpB2I,IAAI,CAAC;IACV;IAEA,IAAK,MAAMvH,OAAO6G,eAAgB;QAChC,MAAMW,YAAYX,cAAc,CAAC7G,IAAI;QACrC,MAAM2G,yBACJxB,eACAqC,WACAT,mBACAG,eACAZ,cACAjB,iBACAD,mBACAmB,4BACAC;IAEJ;IAEA,IAAItG,OAAOuH,IAAI,CAACZ,gBAAgBnC,MAAM,KAAK,KAAKW,iBAAiB;QAC/D,0EAA0E;QAC1E,qCAAqC;QACrCF,cAAcS,IAAI,CAACR;IACrB;IAEA,OAAOD;AACT;AAGA,MAAMuC,2BAAuBpK,8MAAAA,EAAM,eACjC4H,IAAgB,EAChBoB,YAAqC,EACrCjB,eAA8C,EAC9CkB,0BAAsD,EACtDC,SAAoB;IAEpB,MAAMC,eAAe,CAAC;IACtB,MAAMT,gBAA+B,EAAE;IACvC,MAAMC,uBAA6C;QACjDG,SAAS;IACX;IACA,MAAMM,aAAa3E;IACnB,OAAO4F,yBACL3B,eACAd,MACAwB,YACAD,cACAH,cACAjB,iBACAY,sBACAM,4BACAC;AAEJ;AAEA,eAAemB,yBACb3B,aAA4B,EAC5Bd,IAAgB,EAChB,6FAA6F,GAC7FwB,UAAgC,EAChCD,YAAoB,EACpBH,YAAqC,EACrCjB,eAA8C,EAC9CY,oBAA0C,EAC1CM,0BAAsD,EACtDC,SAAoB;IAEpB,MAAM,CAACI,SAASC,gBAAgB,EAAEC,IAAI,EAAE,CAAC,GAAG5B;IAC5C,MAAM6B,oBACJL,cAAcA,WAAWhC,MAAM,GAAG;WAAIgC;QAAYE;KAAQ,GAAG;QAACA;KAAQ;IACxE,MAAMI,SAAS,OAAOF,SAAS;IAE/B,iCAAiC;IACjC,MAAMG,eAAeV,2BAA2BK;IAChD;;GAEC,GACD,IAAIM,gBAAgBT;IACpB,IAAIQ,gBAAgBA,aAAahH,KAAK,KAAK,MAAM;QAC/CiH,gBAAgB;YACd,GAAGT,YAAY;YACf,CAACQ,aAAaE,KAAK,CAAC,EAAEF,aAAahH,KAAK;QAC1C;IACF;IAEA,MAAMmH,aAAStI,mMAAAA,EAA8BoI,eAAeV;IAE5D,IAAIoB;IACJ,IAAIZ,QAAQ;QACVY,aAAa;YACXR;YACAd;QACF;IACF,OAAO;QACLsB,aAAa;YACXR;QACF;IACF;IAEA,MAAMrB,gBAAgB;QACpBb;QACAc;QACAC;QACAZ;QACA7B,OAAOoE;QACPnG,OAAOsF,kBACL,yCAAyC;SACxCM,MAAM,CAAC,CAACC,IAAMA,MAAM1I,mLAAAA,EACpB2I,IAAI,CAAC;IACV;IAEA,IAAK,MAAMvH,OAAO6G,eAAgB;QAChC,MAAMW,YAAYX,cAAc,CAAC7G,IAAI;QACrC,MAAM2H,yBACJ3B,eACAwB,WACAT,mBACAG,eACAZ,cACAjB,iBACAY,sBACAM,4BACAC;IAEJ;IAEA,IAAItG,OAAOuH,IAAI,CAACZ,gBAAgBnC,MAAM,KAAK,KAAKW,iBAAiB;QAC/D,0EAA0E;QAC1E,qCAAqC;QACrCW,cAAcJ,IAAI,CAACK,qBAAqBG,OAAO;IACjD;IAEA,OAAOJ;AACT;AAKA,MAAM6B,gBAAgB,CAAC5F,QACrB,CAAC,CAAA,CAACA,SAAAA,OAAAA,KAAAA,IAAAA,MAAO6F,QAAQ;AACnB,MAAMC,WAAW,CAACrG,WAA+BmG,cAAcnG,YAAAA,OAAAA,KAAAA,IAAAA,SAAUO,KAAK;AAE9E,SAAS+F,oBACPvH,MAA4C,EAC5CiB,QAA0B;IAE1B,IAAIjB,QAAQ;QACV,IAAI,CAACsH,SAAStH,WAAWsH,SAASrG,WAAW;YAC3CjB,OAAOwB,KAAK,GAAGP,SAASO,KAAK;QAC/B;QACA,IAAI,CAACxB,OAAOwH,WAAW,IAAIvG,SAASuG,WAAW,EAAE;YAC/CxH,OAAOwH,WAAW,GAAGvG,SAASuG,WAAW;QAC3C;IACF;AACF;AAEA,6DAA6D;AAC7D,MAAMC,eAAe;IAAC;IAAS;IAAe;CAAS;AACvD,SAASC,oBACPzG,QAA0B,EAC1B0G,OAAY,EACZxH,cAA8B,EAC9BD,eAAgC;IAEhC,MAAM,EAAEK,SAAS,EAAEC,OAAO,EAAE,GAAGS;IAE/B,IAAIV,WAAW;QACb,kEAAkE;QAClE,wCAAwC;QACxC,IAAIqH,gBAIC,CAAC;QACN,MAAMC,aAAaP,SAAS9G;QAC5B,MAAMsH,mBAAmBtH,WAAAA,OAAAA,KAAAA,IAAAA,QAASgH,WAAW;QAC7C,MAAMO,cAAchD,QAClBvE,CAAAA,WAAAA,OAAAA,KAAAA,IAAAA,QAASE,cAAc,CAAC,SAAA,KAAaF,QAAQI,MAAM;QAErD,IAAI,CAACiH,YAAY;YACf,IAAIT,cAAc7G,UAAUiB,KAAK,GAAG;gBAClCoG,cAAcpG,KAAK,GAAGjB,UAAUiB,KAAK;YACvC,OAAO,IAAIP,SAASO,KAAK,IAAI4F,cAAcnG,SAASO,KAAK,GAAG;gBAC1DoG,cAAcpG,KAAK,GAAGP,SAASO,KAAK;YACtC;QACF;QACA,IAAI,CAACsG,kBACHF,cAAcJ,WAAW,GACvBjH,UAAUiH,WAAW,IAAIvG,SAASuG,WAAW,IAAIlG;QACrD,IAAI,CAACyG,aAAaH,cAAchH,MAAM,GAAGL,UAAUK,MAAM;QAEzD,IAAInB,OAAOuH,IAAI,CAACY,eAAe3D,MAAM,GAAG,GAAG;YACzC,MAAM+D,qBAAiB/K,6MAAAA,EACrB2K,eACAjI,sBAAsBsB,SAASrB,YAAY,GAC3CM,iBACAC,eAAeK,OAAO;YAExB,IAAIS,SAAST,OAAO,EAAE;gBACpBS,SAAST,OAAO,GAAGf,OAAO2C,MAAM,CAAC,CAAC,GAAGnB,SAAST,OAAO,EAAE;oBACrD,GAAI,CAACqH,cAAc;wBAAErG,KAAK,EAAEwG,kBAAAA,OAAAA,KAAAA,IAAAA,eAAgBxG,KAAK;oBAAC,CAAC;oBACnD,GAAI,CAACsG,oBAAoB;wBACvBN,WAAW,EAAEQ,kBAAAA,OAAAA,KAAAA,IAAAA,eAAgBR,WAAW;oBAC1C,CAAC;oBACD,GAAI,CAACO,eAAe;wBAAEnH,MAAM,EAAEoH,kBAAAA,OAAAA,KAAAA,IAAAA,eAAgBpH,MAAM;oBAAC,CAAC;gBACxD;YACF,OAAO;gBACLK,SAAST,OAAO,GAAGzB,qBAAqBiJ;YAC1C;QACF;IACF;IAEA,0EAA0E;IAC1E,+CAA+C;IAC/CT,oBAAoBhH,WAAWU;IAC/BsG,oBAAoB/G,SAASS;IAE7B,IAAI0G,SAAS;QACX,IAAI,CAAC1G,SAASW,KAAK,EAAE;YACnBX,SAASW,KAAK,GAAG;gBACflD,MAAM,EAAE;gBACR4B,OAAO,EAAE;YACX;QACF;QAEAW,SAASW,KAAK,CAAClD,IAAI,CAACuJ,OAAO,CAACN;IAC9B;IAEA,OAAO1G;AACT;AAIA,SAASiH,kBAAkBxD,aAA4B;IACrD,qEAAqE;IACrE,+EAA+E;IAC/E,UAAU;IACV,MAAMyD,sBAEF,EAAE;IACN,IAAK,IAAIC,IAAI,GAAGA,IAAI1D,cAAcT,MAAM,EAAEmE,IAAK;QAC7C,MAAMlD,iBAAiBR,aAAa,CAAC0D,EAAE,CAAC,EAAE;QAC1CC,UAAoBF,qBAAqBjD;IAC3C;IACA,OAAOiD;AACT;AAEA,SAASG,kBAAkB/C,aAA4B;IACrD,qEAAqE;IACrE,+EAA+E;IAC/E,UAAU;IACV,MAAM4C,sBAEF,EAAE;IACN,IAAK,IAAIC,IAAI,GAAGA,IAAI7C,cAActB,MAAM,EAAEmE,IAAK;QAC7C,MAAM3C,iBAAiBF,aAAa,CAAC6C,EAAE;QACvCC,UAAoBF,qBAAqB1C;IAC3C;IACA,OAAO0C;AACT;AAEA,MAAMI,OAAO,KAAO;AAEpB,SAASF,UACPF,mBAEC,EACDK,eAA2D;IAE3D,IAAI,OAAOA,oBAAoB,YAAY;QACzC,yEAAyE;QACzE,kEAAkE;QAClE,oEAAoE;QACpE,yEAAyE;QACzE,qEAAqE;QACrE,2EAA2E;QAC3E,yEAAyE;QACzE,2EAA2E;QAC3E,uCAAuC;QACvC,MAAMC,2BAAuBnK,8MAAAA,EAC3BkK,gBAAgBhF,UAAU;QAE5B,IAAIiF,wBAAwBA,qBAAqBC,QAAQ,CAAC,EAAE,EAAE;YAC5D,MAAMC,UAAU,IAAIzE,QAAyB,CAAC0E,UAC5CT,oBAAoBhD,IAAI,CAACyD;YAE3BT,oBAAoBhD,IAAI,KACtB3G,0LAAAA,EAAiB,UAAYgK,gBAAgBG;QAEjD,OAAO;YACL,IAAIrJ;YACJ,IAAImJ,sBAAsB;gBACxBN,oBAAoBhD,IAAI,CAACoD;gBACzB,sEAAsE;gBACtE,sEAAsE;gBACtE,UAAU;gBACVjJ,SAASkJ;YACX,OAAO;gBACLlJ,SAASkJ,gBACP,IAAItE,QAAyB,CAAC0E,UAC5BT,oBAAoBhD,IAAI,CAACyD;YAG/B;YACAT,oBAAoBhD,IAAI,CAAC7F;YACzB,IAAIA,kBAAkB4E,SAAS;gBAC7B,8CAA8C;gBAC9C,+CAA+C;gBAC/C,4CAA4C;gBAC5C,oDAAoD;gBACpD5E,OAAOuJ,KAAK,CAAC,CAACC;oBACZ,OAAO;wBACLC,aAAaD;oBACf;gBACF;YACF;QACF;IACF,OAAO,IAAI,OAAON,oBAAoB,UAAU;QAC9CL,oBAAoBhD,IAAI,CAACqD;IAC3B,OAAO;QACLL,oBAAoBhD,IAAI,CAAC;IAC3B;AACF;AAEA,SAAS6D,YAA8BC,GAAM;IAC3C,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAe;QAC1C,OACEC,QAAQ,yGACRC,UAAU,CAACL;IACf;;;AAGF;AAEO,eAAeM,mBACpBvI,KAAa,EACb0D,aAA4B,EAC5BrE,QAAyB,EACzBH,eAAgC;IAEhC,IAAIgB,uBAAmBpE,sMAAAA;IAEvB,IAAIqD,iBAAiC;QACnCqB,OAAO;QACPhB,SAAS;QACTD,WAAW;IACb;IAEA,MAAMY,aAAa;QACjBkB,UAAU,IAAImH;IAChB;IAEA,IAAI7B;IAEJ,kDAAkD;IAClD,+EAA+E;IAC/E,MAAMvH,yBAAyB;QAC7B1B,MAAM,EAAE;QACR4B,OAAO,EAAE;IACX;IAEA,MAAM6H,sBAAsBD,kBAAkBxD;IAC9C,IAAI+E,cAAc;IAElB,IAAK,IAAIrB,IAAI,GAAGA,IAAI1D,cAAcT,MAAM,EAAEmE,IAAK;YAIrBnI;QAHxB,MAAMA,sBAAsByE,aAAa,CAAC0D,EAAE,CAAC,EAAE;QAC/C,yEAAyE;QACzE,qEAAqE;QACrE,IAAIA,KAAK,KAAK3J,UAAUwB,uBAAAA,OAAAA,KAAAA,IAAAA,CAAAA,4BAAAA,oBAAqBvB,IAAI,KAAA,OAAA,KAAA,IAAzBuB,yBAA2B,CAAC,EAAE,GAAG;gBACvCA;YAAhB,MAAMyJ,UAAUzJ,uBAAAA,OAAAA,KAAAA,IAAAA,CAAAA,6BAAAA,oBAAqBvB,IAAI,KAAA,OAAA,KAAA,IAAzBuB,2BAA2B0J,KAAK;YAChD,IAAIvB,MAAM,GAAGT,UAAU+B;QACzB;QAEA,IAAIE,kBAAkBzB,mBAAmB,CAACsB,cAAc;QACxD,IAAI,OAAOG,oBAAoB,YAAY;YACzC,kDAAkD;YAClD,qDAAqD;YACrD,4BAA4B;YAC5B,MAAMC,wBAAwBD;YAC9B,sDAAsD;YACtD,iBAAiB;YACjBA,kBAAkBzB,mBAAmB,CAACsB,cAAc;YAEpDI,sBAAsBb,YAAY9H;QACpC;QACA,wDAAwD;QAExD,IAAID;QACJ,IAAI6I,cAAcF,kBAAkB;YAClC3I,WAAW,MAAM2I;QACnB,OAAO;YACL3I,WAAW2I;QACb;QAEA1I,mBAAmB,MAAMH,cAAcC,OAAOX,UAAU;YACtDa;YACAD;YACAf;YACAD;YACAE;YACAgB;YACAf;QACF;QAEA,gFAAgF;QAChF,kDAAkD;QAClD,IAAIgI,IAAI1D,cAAcT,MAAM,GAAG,GAAG;gBAEvB/C,yBACIA,6BACFA;YAHXf,iBAAiB;gBACfqB,OAAON,CAAAA,CAAAA,0BAAAA,iBAAiBM,KAAK,KAAA,OAAA,KAAA,IAAtBN,wBAAwB6I,QAAQ,KAAI;gBAC3CxJ,WAAWW,CAAAA,CAAAA,8BAAAA,iBAAiBX,SAAS,KAAA,OAAA,KAAA,IAA1BW,4BAA4BM,KAAK,CAACuI,QAAQ,KAAI;gBACzDvJ,SAASU,CAAAA,CAAAA,4BAAAA,iBAAiBV,OAAO,KAAA,OAAA,KAAA,IAAxBU,0BAA0BM,KAAK,CAACuI,QAAQ,KAAI;YACvD;QACF;IACF;IAEA,IACE3J,uBAAuB1B,IAAI,CAACuF,MAAM,GAAG,KACrC7D,uBAAuBE,KAAK,CAAC2D,MAAM,GAAG,GACtC;QACA,IAAI,CAAC/C,iBAAiBU,KAAK,EAAE;YAC3BV,iBAAiBU,KAAK,GAAG;gBACvBlD,MAAM,EAAE;gBACR4B,OAAO,EAAE;YACX;YACA,IAAIF,uBAAuB1B,IAAI,CAACuF,MAAM,GAAG,GAAG;gBAC1C/C,iBAAiBU,KAAK,CAAClD,IAAI,CAACuJ,OAAO,IAAI7H,uBAAuB1B,IAAI;YACpE;YACA,IAAI0B,uBAAuBE,KAAK,CAAC2D,MAAM,GAAG,GAAG;gBAC3C/C,iBAAiBU,KAAK,CAACtB,KAAK,CAAC2H,OAAO,IAAI7H,uBAAuBE,KAAK;YACtE;QACF;IACF;IAEA,qGAAqG;IACrG,IAAIa,WAAWkB,QAAQ,CAAC2H,IAAI,GAAG,GAAG;QAChC,KAAK,MAAMC,WAAW9I,WAAWkB,QAAQ,CAAE;YACzCjE,IAAI8L,iKAAI,CAACD;QACX;IACF;IAEA,OAAOvC,oBACLxG,kBACAyG,SACAxH,gBACAD;AAEJ;AAEO,eAAeiK,mBACpB5E,aAA4B;IAE5B,IAAI/C,uBAAqCzF,sMAAAA;IAEzC,MAAMoL,sBAAsBG,kBAAkB/C;IAC9C,IAAI6C,IAAI;IAER,MAAOA,IAAID,oBAAoBlE,MAAM,CAAE;QACrC,IAAImG,kBAAkBjC,mBAAmB,CAACC,IAAI;QAC9C,IAAI,OAAOgC,oBAAoB,YAAY;YACzC,kDAAkD;YAClD,qDAAqD;YACrD,4BAA4B;YAC5B,MAAMC,wBAAwBD;YAC9B,sDAAsD;YACtD,iBAAiB;YACjBA,kBAAkBjC,mBAAmB,CAACC,IAAI;YAE1CiC,sBAAsBrB,YAAYxG;QACpC;QACA,wDAAwD;QAExD,IAAIC;QACJ,IAAIqH,cAAcM,kBAAkB;YAClC3H,WAAW,MAAM2H;QACnB,OAAO;YACL3H,WAAW2H;QACb;QAEA5H,mBAAmBD,cAAc;YAAEC;YAAkBC;QAAS;IAChE;IAEA,OAAOD;AACT;AAGO,eAAe8H,gBACpB7F,IAAgB,EAChBpE,QAAyB,EACzBwF,YAAqC,EACrCjB,eAA8C,EAC9CkB,0BAAsD,EACtDC,SAAoB,EACpB7F,eAAgC;IAEhC,MAAMwE,gBAAgB,MAAMkB,qBAC1BnB,MACAoB,cACAjB,iBACAkB,4BACAC;IAEF,OAAOwD,mBACLxD,UAAU/E,KAAK,EACf0D,eACArE,UACAH;AAEJ;AAGO,eAAeqK,gBACpB9F,IAAgB,EAChBoB,YAAqC,EACrCjB,eAA8C,EAC9CkB,0BAAsD,EACtDC,SAAoB;IAEpB,MAAMR,gBAAgB,MAAM0B,qBAC1BxC,MACAoB,cACAjB,iBACAkB,4BACAC;IAEF,OAAOoE,mBAAmB5E;AAC5B;AAEA,SAASuE,cACPtK,KAA+B;IAE/B,OACE,OAAOA,UAAU,YACjBA,UAAU,QACV,OAAQA,MAA+BgL,IAAI,KAAK;AAEpD","ignoreList":[0]}}, - {"offset": {"line": 12177, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/http-access-fallback.ts"],"sourcesContent":["export const HTTPAccessErrorStatus = {\n NOT_FOUND: 404,\n FORBIDDEN: 403,\n UNAUTHORIZED: 401,\n}\n\nconst ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus))\n\nexport const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'\n\nexport type HTTPAccessFallbackError = Error & {\n digest: `${typeof HTTP_ERROR_FALLBACK_ERROR_CODE};${string}`\n}\n\n/**\n * Checks an error to determine if it's an error generated by\n * the HTTP navigation APIs `notFound()`, `forbidden()` or `unauthorized()`.\n *\n * @param error the error that may reference a HTTP access error\n * @returns true if the error is a HTTP access error\n */\nexport function isHTTPAccessFallbackError(\n error: unknown\n): error is HTTPAccessFallbackError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n const [prefix, httpStatus] = error.digest.split(';')\n\n return (\n prefix === HTTP_ERROR_FALLBACK_ERROR_CODE &&\n ALLOWED_CODES.has(Number(httpStatus))\n )\n}\n\nexport function getAccessFallbackHTTPStatus(\n error: HTTPAccessFallbackError\n): number {\n const httpStatus = error.digest.split(';')[1]\n return Number(httpStatus)\n}\n\nexport function getAccessFallbackErrorTypeByStatus(\n status: number\n): 'not-found' | 'forbidden' | 'unauthorized' | undefined {\n switch (status) {\n case 401:\n return 'unauthorized'\n case 403:\n return 'forbidden'\n case 404:\n return 'not-found'\n default:\n return\n }\n}\n"],"names":["HTTPAccessErrorStatus","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","ALLOWED_CODES","Set","Object","values","HTTP_ERROR_FALLBACK_ERROR_CODE","isHTTPAccessFallbackError","error","digest","prefix","httpStatus","split","has","Number","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","status"],"mappings":";;;;;;;;;;;;AAAO,MAAMA,wBAAwB;IACnCC,WAAW;IACXC,WAAW;IACXC,cAAc;AAChB,EAAC;AAED,MAAMC,gBAAgB,IAAIC,IAAIC,OAAOC,MAAM,CAACP;AAErC,MAAMQ,iCAAiC,2BAA0B;AAajE,SAASC,0BACdC,KAAc;IAEd,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IACA,MAAM,CAACC,QAAQC,WAAW,GAAGH,MAAMC,MAAM,CAACG,KAAK,CAAC;IAEhD,OACEF,WAAWJ,kCACXJ,cAAcW,GAAG,CAACC,OAAOH;AAE7B;AAEO,SAASI,4BACdP,KAA8B;IAE9B,MAAMG,aAAaH,MAAMC,MAAM,CAACG,KAAK,CAAC,IAAI,CAAC,EAAE;IAC7C,OAAOE,OAAOH;AAChB;AAEO,SAASK,mCACdC,MAAc;IAEd,OAAQA;QACN,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT;YACE;IACJ;AACF","ignoreList":[0]}}, - {"offset": {"line": 12223, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/pathname.ts"],"sourcesContent":["import type { WorkStore } from '../app-render/work-async-storage.external'\n\nimport {\n delayUntilRuntimeStage,\n postponeWithTracking,\n type DynamicTrackingState,\n} from '../app-render/dynamic-rendering'\n\nimport {\n throwInvariantForMissingStore,\n workUnitAsyncStorage,\n type StaticPrerenderStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nexport function createServerPathnameForMetadata(\n underlyingPathname: string,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy': {\n return createPrerenderPathname(\n underlyingPathname,\n workStore,\n workUnitStore\n )\n }\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerPathnameForMetadata should not be called in cache contexts.'\n )\n\n case 'prerender-runtime':\n return delayUntilRuntimeStage(\n workUnitStore,\n createRenderPathname(underlyingPathname)\n )\n case 'request':\n return createRenderPathname(underlyingPathname)\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nfunction createPrerenderPathname(\n underlyingPathname: string,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise {\n switch (prerenderStore.type) {\n case 'prerender-client':\n throw new InvariantError(\n 'createPrerenderPathname was called inside a client component scope.'\n )\n case 'prerender': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`pathname`'\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return makeErroringPathname(workStore, prerenderStore.dynamicTracking)\n }\n break\n }\n case 'prerender-legacy':\n break\n default:\n prerenderStore satisfies never\n }\n\n // We don't have any fallback params so we have an entirely static safe params object\n return Promise.resolve(underlyingPathname)\n}\n\nfunction makeErroringPathname(\n workStore: WorkStore,\n dynamicTracking: null | DynamicTrackingState\n): Promise {\n let reject: null | ((reason: unknown) => void) = null\n const promise = new Promise((_, re) => {\n reject = re\n })\n\n const originalThen = promise.then.bind(promise)\n\n // We instrument .then so that we can generate a tracking event only if you actually\n // await this promise, not just that it is created.\n promise.then = (onfulfilled, onrejected) => {\n if (reject) {\n try {\n postponeWithTracking(\n workStore.route,\n 'metadata relative url resolving',\n dynamicTracking\n )\n } catch (error) {\n reject(error)\n reject = null\n }\n }\n return originalThen(onfulfilled, onrejected)\n }\n\n // We wrap in a noop proxy to trick the runtime into thinking it\n // isn't a native promise (it's not really). This is so that awaiting\n // the promise will call the `then` property triggering the lazy postpone\n return new Proxy(promise, {})\n}\n\nfunction createRenderPathname(underlyingPathname: string): Promise {\n return Promise.resolve(underlyingPathname)\n}\n"],"names":["delayUntilRuntimeStage","postponeWithTracking","throwInvariantForMissingStore","workUnitAsyncStorage","makeHangingPromise","InvariantError","createServerPathnameForMetadata","underlyingPathname","workStore","workUnitStore","getStore","type","createPrerenderPathname","createRenderPathname","prerenderStore","fallbackParams","fallbackRouteParams","size","renderSignal","route","makeErroringPathname","dynamicTracking","Promise","resolve","reject","promise","_","re","originalThen","then","bind","onfulfilled","onrejected","error","Proxy"],"mappings":";;;;AAEA,SACEA,sBAAsB,EACtBC,oBAAoB,QAEf,kCAAiC;AAExC,SACEC,6BAA6B,EAC7BC,oBAAoB,QAEf,iDAAgD;AACvD,SAASC,kBAAkB,QAAQ,6BAA4B;AAC/D,SAASC,cAAc,QAAQ,mCAAkC;;;;;AAE1D,SAASC,gCACdC,kBAA0B,EAC1BC,SAAoB;IAEpB,MAAMC,gBAAgBN,2SAAAA,CAAqBO,QAAQ;IACnD,IAAID,eAAe;QACjB,OAAQA,cAAcE,IAAI;YACxB,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;gBAAoB;oBACvB,OAAOC,wBACLL,oBACAC,WACAC;gBAEJ;YACA,KAAK;YACL,KAAK;YACL,KAAK;gBACH,MAAM,OAAA,cAEL,CAFK,IAAIJ,4LAAAA,CACR,4EADI,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YAEF,KAAK;gBACH,WAAOL,gNAAAA,EACLS,eACAI,qBAAqBN;YAEzB,KAAK;gBACH,OAAOM,qBAAqBN;YAC9B;gBACEE;QACJ;IACF;QACAP,oTAAAA;AACF;AAEA,SAASU,wBACPL,kBAA0B,EAC1BC,SAAoB,EACpBM,cAAoC;IAEpC,OAAQA,eAAeH,IAAI;QACzB,KAAK;YACH,MAAM,OAAA,cAEL,CAFK,IAAIN,4LAAAA,CACR,wEADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF,KAAK;YAAa;gBAChB,MAAMU,iBAAiBD,eAAeE,mBAAmB;gBACzD,IAAID,kBAAkBA,eAAeE,IAAI,GAAG,GAAG;oBAC7C,WAAOb,oMAAAA,EACLU,eAAeI,YAAY,EAC3BV,UAAUW,KAAK,EACf;gBAEJ;gBACA;YACF;QACA,KAAK;YAAiB;gBACpB,MAAMJ,iBAAiBD,eAAeE,mBAAmB;gBACzD,IAAID,kBAAkBA,eAAeE,IAAI,GAAG,GAAG;oBAC7C,OAAOG,qBAAqBZ,WAAWM,eAAeO,eAAe;gBACvE;gBACA;YACF;QACA,KAAK;YACH;QACF;YACEP;IACJ;IAEA,qFAAqF;IACrF,OAAOQ,QAAQC,OAAO,CAAChB;AACzB;AAEA,SAASa,qBACPZ,SAAoB,EACpBa,eAA4C;IAE5C,IAAIG,SAA6C;IACjD,MAAMC,UAAU,IAAIH,QAAW,CAACI,GAAGC;QACjCH,SAASG;IACX;IAEA,MAAMC,eAAeH,QAAQI,IAAI,CAACC,IAAI,CAACL;IAEvC,oFAAoF;IACpF,mDAAmD;IACnDA,QAAQI,IAAI,GAAG,CAACE,aAAaC;QAC3B,IAAIR,QAAQ;YACV,IAAI;oBACFvB,8MAAAA,EACEO,UAAUW,KAAK,EACf,mCACAE;YAEJ,EAAE,OAAOY,OAAO;gBACdT,OAAOS;gBACPT,SAAS;YACX;QACF;QACA,OAAOI,aAAaG,aAAaC;IACnC;IAEA,gEAAgE;IAChE,qEAAqE;IACrE,yEAAyE;IACzE,OAAO,IAAIE,MAAMT,SAAS,CAAC;AAC7B;AAEA,SAASZ,qBAAqBN,kBAA0B;IACtD,OAAOe,QAAQC,OAAO,CAAChB;AACzB","ignoreList":[0]}}, - {"offset": {"line": 12327, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/router-utils/is-postpone.ts"],"sourcesContent":["const REACT_POSTPONE_TYPE: symbol = Symbol.for('react.postpone')\n\nexport function isPostpone(error: any): boolean {\n return (\n typeof error === 'object' &&\n error !== null &&\n error.$$typeof === REACT_POSTPONE_TYPE\n )\n}\n"],"names":["REACT_POSTPONE_TYPE","Symbol","for","isPostpone","error","$$typeof"],"mappings":";;;;AAAA,MAAMA,sBAA8BC,OAAOC,GAAG,CAAC;AAExC,SAASC,WAAWC,KAAU;IACnC,OACE,OAAOA,UAAU,YACjBA,UAAU,QACVA,MAAMC,QAAQ,KAAKL;AAEvB","ignoreList":[0]}}, - {"offset": {"line": 12338, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/lib/framework/boundary-components.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 12344, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/lib/framework/boundary-components.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 12351, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-components.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from './boundary-constants'\n\n// We use a namespace object to allow us to recover the name of the function\n// at runtime even when production bundling/minification is used.\nconst NameSpace = {\n [METADATA_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [VIEWPORT_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [OUTLET_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [ROOT_LAYOUT_BOUNDARY_NAME]: function ({\n children,\n }: {\n children: ReactNode\n }) {\n return children\n },\n}\n\nexport const MetadataBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[METADATA_BOUNDARY_NAME.slice(0) as typeof METADATA_BOUNDARY_NAME]\n\nexport const ViewportBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[VIEWPORT_BOUNDARY_NAME.slice(0) as typeof VIEWPORT_BOUNDARY_NAME]\n\nexport const OutletBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[OUTLET_BOUNDARY_NAME.slice(0) as typeof OUTLET_BOUNDARY_NAME]\n\nexport const RootLayoutBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[\n ROOT_LAYOUT_BOUNDARY_NAME.slice(0) as typeof ROOT_LAYOUT_BOUNDARY_NAME\n ]\n"],"names":["METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","NameSpace","children","MetadataBoundary","slice","ViewportBoundary","OutletBoundary","RootLayoutBoundary"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 12359, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/metadata.tsx"],"sourcesContent":["import React, { Suspense, cache, cloneElement } from 'react'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { GetDynamicParamFromSegment } from '../../server/app-render/app-render'\nimport type { LoaderTree } from '../../server/lib/app-dir-module'\nimport type { SearchParams } from '../../server/request/search-params'\nimport {\n AppleWebAppMeta,\n FormatDetectionMeta,\n ItunesMeta,\n BasicMeta,\n ViewportMeta,\n VerificationMeta,\n FacebookMeta,\n PinterestMeta,\n} from './generate/basic'\nimport { AlternatesMetadata } from './generate/alternate'\nimport {\n OpenGraphMetadata,\n TwitterMetadata,\n AppLinksMeta,\n} from './generate/opengraph'\nimport { IconsMetadata } from './generate/icons'\nimport {\n type MetadataErrorType,\n resolveMetadata,\n resolveViewport,\n} from './resolve-metadata'\nimport { MetaFilter } from './generate/meta'\nimport type {\n ResolvedMetadata,\n ResolvedViewport,\n} from './types/metadata-interface'\nimport { isHTTPAccessFallbackError } from '../../client/components/http-access-fallback/http-access-fallback'\nimport type { MetadataContext } from './types/resolvers'\nimport type { WorkStore } from '../../server/app-render/work-async-storage.external'\nimport { createServerSearchParamsForMetadata } from '../../server/request/search-params'\nimport { createServerPathnameForMetadata } from '../../server/request/pathname'\nimport { isPostpone } from '../../server/lib/router-utils/is-postpone'\n\nimport {\n MetadataBoundary,\n ViewportBoundary,\n OutletBoundary,\n} from '../framework/boundary-components'\n\n// Use a promise to share the status of the metadata resolving,\n// returning two components `MetadataTree` and `MetadataOutlet`\n// `MetadataTree` is the one that will be rendered at first in the content sequence for metadata tags.\n// `MetadataOutlet` is the one that will be rendered under error boundaries for metadata resolving errors.\n// In this way we can let the metadata tags always render successfully,\n// and the error will be caught by the error boundary and trigger fallbacks.\nexport function createMetadataComponents({\n tree,\n pathname,\n parsedQuery,\n metadataContext,\n getDynamicParamFromSegment,\n errorType,\n workStore,\n serveStreamingMetadata,\n}: {\n tree: LoaderTree\n pathname: string\n parsedQuery: SearchParams\n metadataContext: MetadataContext\n getDynamicParamFromSegment: GetDynamicParamFromSegment\n errorType?: MetadataErrorType | 'redirect'\n workStore: WorkStore\n serveStreamingMetadata: boolean\n}): {\n Viewport: React.ComponentType\n Metadata: React.ComponentType\n MetadataOutlet: React.ComponentType\n} {\n const searchParams = createServerSearchParamsForMetadata(\n parsedQuery,\n workStore\n )\n const pathnameForMetadata = createServerPathnameForMetadata(\n pathname,\n workStore\n )\n\n async function Viewport() {\n const tags = await getResolvedViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore,\n errorType\n ).catch((viewportErr) => {\n // When Legacy PPR is enabled viewport can reject with a Postpone type\n // This will go away once Legacy PPR is removed and dynamic metadata will\n // stay pending until after the prerender is complete when it is dynamic\n if (isPostpone(viewportErr)) {\n throw viewportErr\n }\n if (!errorType && isHTTPAccessFallbackError(viewportErr)) {\n return getNotFoundViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore\n ).catch(() => null)\n }\n // We're going to throw the error from the metadata outlet so we just render null here instead\n return null\n })\n\n return tags\n }\n Viewport.displayName = 'Next.Viewport'\n\n function ViewportWrapper() {\n return (\n \n \n \n )\n }\n\n async function Metadata() {\n const tags = await getResolvedMetadata(\n tree,\n pathnameForMetadata,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore,\n errorType\n ).catch((metadataErr) => {\n // When Legacy PPR is enabled metadata can reject with a Postpone type\n // This will go away once Legacy PPR is removed and dynamic metadata will\n // stay pending until after the prerender is complete when it is dynamic\n if (isPostpone(metadataErr)) {\n throw metadataErr\n }\n if (!errorType && isHTTPAccessFallbackError(metadataErr)) {\n return getNotFoundMetadata(\n tree,\n pathnameForMetadata,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore\n ).catch(() => null)\n }\n // We're going to throw the error from the metadata outlet so we just render null here instead\n return null\n })\n\n return tags\n }\n Metadata.displayName = 'Next.Metadata'\n\n function MetadataWrapper() {\n // TODO: We shouldn't change what we render based on whether we are streaming or not.\n // If we aren't streaming we should just block the response until we have resolved the\n // metadata.\n if (!serveStreamingMetadata) {\n return (\n \n \n \n )\n }\n return (\n \n )\n }\n\n function MetadataOutlet() {\n const pendingOutlet = Promise.all([\n getResolvedMetadata(\n tree,\n pathnameForMetadata,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore,\n errorType\n ),\n getResolvedViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore,\n errorType\n ),\n ]).then(() => null)\n\n // TODO: We shouldn't change what we render based on whether we are streaming or not.\n // If we aren't streaming we should just block the response until we have resolved the\n // metadata.\n if (!serveStreamingMetadata) {\n return {pendingOutlet}\n }\n return (\n \n {pendingOutlet}\n \n )\n }\n MetadataOutlet.displayName = 'Next.MetadataOutlet'\n\n return {\n Viewport: ViewportWrapper,\n Metadata: MetadataWrapper,\n MetadataOutlet,\n }\n}\n\nconst getResolvedMetadata = cache(getResolvedMetadataImpl)\nasync function getResolvedMetadataImpl(\n tree: LoaderTree,\n pathname: Promise,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n metadataContext: MetadataContext,\n workStore: WorkStore,\n errorType?: MetadataErrorType | 'redirect'\n): Promise {\n const errorConvention = errorType === 'redirect' ? undefined : errorType\n return renderMetadata(\n tree,\n pathname,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore,\n errorConvention\n )\n}\n\nconst getNotFoundMetadata = cache(getNotFoundMetadataImpl)\nasync function getNotFoundMetadataImpl(\n tree: LoaderTree,\n pathname: Promise,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n metadataContext: MetadataContext,\n workStore: WorkStore\n): Promise {\n const notFoundErrorConvention = 'not-found'\n return renderMetadata(\n tree,\n pathname,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore,\n notFoundErrorConvention\n )\n}\n\nconst getResolvedViewport = cache(getResolvedViewportImpl)\nasync function getResolvedViewportImpl(\n tree: LoaderTree,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore,\n errorType?: MetadataErrorType | 'redirect'\n): Promise {\n const errorConvention = errorType === 'redirect' ? undefined : errorType\n return renderViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore,\n errorConvention\n )\n}\n\nconst getNotFoundViewport = cache(getNotFoundViewportImpl)\nasync function getNotFoundViewportImpl(\n tree: LoaderTree,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n): Promise {\n const notFoundErrorConvention = 'not-found'\n return renderViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore,\n notFoundErrorConvention\n )\n}\n\nasync function renderMetadata(\n tree: LoaderTree,\n pathname: Promise,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n metadataContext: MetadataContext,\n workStore: WorkStore,\n errorConvention?: MetadataErrorType\n) {\n const resolvedMetadata = await resolveMetadata(\n tree,\n pathname,\n searchParams,\n errorConvention,\n getDynamicParamFromSegment,\n workStore,\n metadataContext\n )\n const elements: Array =\n createMetadataElements(resolvedMetadata)\n return (\n <>\n {elements.map((el, index) => {\n return cloneElement(el as React.ReactElement, { key: index })\n })}\n \n )\n}\n\nasync function renderViewport(\n tree: LoaderTree,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore,\n errorConvention?: MetadataErrorType\n) {\n const resolvedViewport = await resolveViewport(\n tree,\n searchParams,\n errorConvention,\n getDynamicParamFromSegment,\n workStore\n )\n\n const elements: Array =\n createViewportElements(resolvedViewport)\n return (\n <>\n {elements.map((el, index) => {\n return cloneElement(el as React.ReactElement, { key: index })\n })}\n \n )\n}\n\nfunction createMetadataElements(metadata: ResolvedMetadata) {\n return MetaFilter([\n BasicMeta({ metadata }),\n AlternatesMetadata({ alternates: metadata.alternates }),\n ItunesMeta({ itunes: metadata.itunes }),\n FacebookMeta({ facebook: metadata.facebook }),\n PinterestMeta({ pinterest: metadata.pinterest }),\n FormatDetectionMeta({ formatDetection: metadata.formatDetection }),\n VerificationMeta({ verification: metadata.verification }),\n AppleWebAppMeta({ appleWebApp: metadata.appleWebApp }),\n OpenGraphMetadata({ openGraph: metadata.openGraph }),\n TwitterMetadata({ twitter: metadata.twitter }),\n AppLinksMeta({ appLinks: metadata.appLinks }),\n IconsMetadata({ icons: metadata.icons }),\n ])\n}\n\nfunction createViewportElements(viewport: ResolvedViewport) {\n return MetaFilter([ViewportMeta({ viewport: viewport })])\n}\n"],"names":["React","Suspense","cache","cloneElement","AppleWebAppMeta","FormatDetectionMeta","ItunesMeta","BasicMeta","ViewportMeta","VerificationMeta","FacebookMeta","PinterestMeta","AlternatesMetadata","OpenGraphMetadata","TwitterMetadata","AppLinksMeta","IconsMetadata","resolveMetadata","resolveViewport","MetaFilter","isHTTPAccessFallbackError","createServerSearchParamsForMetadata","createServerPathnameForMetadata","isPostpone","MetadataBoundary","ViewportBoundary","OutletBoundary","createMetadataComponents","tree","pathname","parsedQuery","metadataContext","getDynamicParamFromSegment","errorType","workStore","serveStreamingMetadata","searchParams","pathnameForMetadata","Viewport","tags","getResolvedViewport","catch","viewportErr","getNotFoundViewport","displayName","ViewportWrapper","Metadata","getResolvedMetadata","metadataErr","getNotFoundMetadata","MetadataWrapper","div","hidden","name","MetadataOutlet","pendingOutlet","Promise","all","then","getResolvedMetadataImpl","errorConvention","undefined","renderMetadata","getNotFoundMetadataImpl","notFoundErrorConvention","getResolvedViewportImpl","renderViewport","getNotFoundViewportImpl","resolvedMetadata","elements","createMetadataElements","map","el","index","key","resolvedViewport","createViewportElements","metadata","alternates","itunes","facebook","pinterest","formatDetection","verification","appleWebApp","openGraph","twitter","appLinks","icons","viewport"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 12570, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-dom.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactDOM\n"],"names":["module","exports","require","vendored","ReactDOM"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,QAAQ","ignoreList":[0]}}, - {"offset": {"line": 12575, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/rsc/preloads.ts"],"sourcesContent":["/*\n\nFiles in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.\n\n*/\n\nimport ReactDOM from 'react-dom'\n\nexport function preloadStyle(\n href: string,\n crossOrigin: string | undefined,\n nonce: string | undefined\n) {\n const opts: any = { as: 'style' }\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce\n }\n ReactDOM.preload(href, opts)\n}\n\nexport function preloadFont(\n href: string,\n type: string,\n crossOrigin: string | undefined,\n nonce: string | undefined\n) {\n const opts: any = { as: 'font', type }\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce\n }\n ReactDOM.preload(href, opts)\n}\n\nexport function preconnect(\n href: string,\n crossOrigin: string | undefined,\n nonce: string | undefined\n) {\n const opts: any = {}\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce\n }\n ;(ReactDOM as any).preconnect(href, opts)\n}\n"],"names":["ReactDOM","preloadStyle","href","crossOrigin","nonce","opts","as","preload","preloadFont","type","preconnect"],"mappings":";;;;;;;;AAAA;;;;AAIA,GAEA,OAAOA,cAAc,YAAW;;AAEzB,SAASC,aACdC,IAAY,EACZC,WAA+B,EAC/BC,KAAyB;IAEzB,MAAMC,OAAY;QAAEC,IAAI;IAAQ;IAChC,IAAI,OAAOH,gBAAgB,UAAU;QACnCE,KAAKF,WAAW,GAAGA;IACrB;IACA,IAAI,OAAOC,UAAU,UAAU;QAC7BC,KAAKD,KAAK,GAAGA;IACf;IACAJ,uNAAAA,CAASO,OAAO,CAACL,MAAMG;AACzB;AAEO,SAASG,YACdN,IAAY,EACZO,IAAY,EACZN,WAA+B,EAC/BC,KAAyB;IAEzB,MAAMC,OAAY;QAAEC,IAAI;QAAQG;IAAK;IACrC,IAAI,OAAON,gBAAgB,UAAU;QACnCE,KAAKF,WAAW,GAAGA;IACrB;IACA,IAAI,OAAOC,UAAU,UAAU;QAC7BC,KAAKD,KAAK,GAAGA;IACf;IACAJ,uNAAAA,CAASO,OAAO,CAACL,MAAMG;AACzB;AAEO,SAASK,WACdR,IAAY,EACZC,WAA+B,EAC/BC,KAAyB;IAEzB,MAAMC,OAAY,CAAC;IACnB,IAAI,OAAOF,gBAAgB,UAAU;QACnCE,KAAKF,WAAW,GAAGA;IACrB;IACA,IAAI,OAAOC,UAAU,UAAU;QAC7BC,KAAKD,KAAK,GAAGA;IACf;;IACEJ,uNAAAA,CAAiBU,UAAU,CAACR,MAAMG;AACtC","ignoreList":[0]}}, - {"offset": {"line": 12629, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/rsc/postpone.ts"],"sourcesContent":["/*\n\nFiles in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.\n\n*/\n\n// When postpone is available in canary React we can switch to importing it directly\nexport { Postpone } from '../dynamic-rendering'\n"],"names":["Postpone"],"mappings":";AAAA;;;;AAIA,GAEA,oFAAoF;AACpF,SAASA,QAAQ,QAAQ,uBAAsB","ignoreList":[0]}}, - {"offset": {"line": 12641, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/rsc/taint.ts"],"sourcesContent":["/*\n\nFiles in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.\n\n*/\n\nimport * as React from 'react'\n\ntype Reference = object\ntype TaintableUniqueValue = string | bigint | ArrayBufferView\n\nfunction notImplemented() {\n throw new Error('Taint can only be used with the taint flag.')\n}\n\nexport const taintObjectReference: (\n message: string | undefined,\n object: Reference\n) => void = process.env.__NEXT_EXPERIMENTAL_REACT\n ? // @ts-ignore\n React.experimental_taintObjectReference\n : notImplemented\nexport const taintUniqueValue: (\n message: string | undefined,\n lifetime: Reference,\n value: TaintableUniqueValue\n) => void = process.env.__NEXT_EXPERIMENTAL_REACT\n ? // @ts-ignore\n React.experimental_taintUniqueValue\n : notImplemented\n"],"names":["React","notImplemented","Error","taintObjectReference","process","env","__NEXT_EXPERIMENTAL_REACT","experimental_taintObjectReference","taintUniqueValue","experimental_taintUniqueValue"],"mappings":";;;;;;AAAA;;;;AAIA,GAEA,YAAYA,WAAW,QAAO;;AAK9B,SAASC;IACP,MAAM,OAAA,cAAwD,CAAxD,IAAIC,MAAM,gDAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAuD;AAC/D;AAEO,MAAMC,uBAGDC,QAAQC,GAAG,CAACC,yBAAyB,CAE7CN,MAAMO,oBACNN,aADuC,EACzB;AACX,MAAMO,mBAIDJ,QAAQC,GAAG,CAACC,yBAAyB,CAE7CN,MAAMS,oBACNR,SADmC,MACrB","ignoreList":[0]}}, - {"offset": {"line": 12666, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.node.development.js"],"sourcesContent":["/**\n * @license React\n * react-server-dom-turbopack-client.node.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function resolveClientReference(bundlerConfig, metadata) {\n if (bundlerConfig) {\n var moduleExports = bundlerConfig[metadata[0]];\n if ((bundlerConfig = moduleExports && moduleExports[metadata[2]]))\n moduleExports = bundlerConfig.name;\n else {\n bundlerConfig = moduleExports && moduleExports[\"*\"];\n if (!bundlerConfig)\n throw Error(\n 'Could not find the module \"' +\n metadata[0] +\n '\" in the React Server Consumer Manifest. This is probably a bug in the React Server Components bundler.'\n );\n moduleExports = metadata[2];\n }\n return 4 === metadata.length\n ? [bundlerConfig.id, bundlerConfig.chunks, moduleExports, 1]\n : [bundlerConfig.id, bundlerConfig.chunks, moduleExports];\n }\n return metadata;\n }\n function resolveServerReference(bundlerConfig, id) {\n var name = \"\",\n resolvedModuleData = bundlerConfig[id];\n if (resolvedModuleData) name = resolvedModuleData.name;\n else {\n var idx = id.lastIndexOf(\"#\");\n -1 !== idx &&\n ((name = id.slice(idx + 1)),\n (resolvedModuleData = bundlerConfig[id.slice(0, idx)]));\n if (!resolvedModuleData)\n throw Error(\n 'Could not find the module \"' +\n id +\n '\" in the React Server Manifest. This is probably a bug in the React Server Components bundler.'\n );\n }\n return resolvedModuleData.async\n ? [resolvedModuleData.id, resolvedModuleData.chunks, name, 1]\n : [resolvedModuleData.id, resolvedModuleData.chunks, name];\n }\n function requireAsyncModule(id) {\n var promise = globalThis.__next_require__(id);\n if (\"function\" !== typeof promise.then || \"fulfilled\" === promise.status)\n return null;\n promise.then(\n function (value) {\n promise.status = \"fulfilled\";\n promise.value = value;\n },\n function (reason) {\n promise.status = \"rejected\";\n promise.reason = reason;\n }\n );\n return promise;\n }\n function ignoreReject() {}\n function preloadModule(metadata) {\n for (\n var chunks = metadata[1], promises = [], i = 0;\n i < chunks.length;\n i++\n ) {\n var thenable = globalThis.__next_chunk_load__(chunks[i]);\n loadedChunks.has(thenable) || promises.push(thenable);\n if (!instrumentedChunks.has(thenable)) {\n var resolve = loadedChunks.add.bind(loadedChunks, thenable);\n thenable.then(resolve, ignoreReject);\n instrumentedChunks.add(thenable);\n }\n }\n return 4 === metadata.length\n ? 0 === promises.length\n ? requireAsyncModule(metadata[0])\n : Promise.all(promises).then(function () {\n return requireAsyncModule(metadata[0]);\n })\n : 0 < promises.length\n ? Promise.all(promises)\n : null;\n }\n function requireModule(metadata) {\n var moduleExports = globalThis.__next_require__(metadata[0]);\n if (4 === metadata.length && \"function\" === typeof moduleExports.then)\n if (\"fulfilled\" === moduleExports.status)\n moduleExports = moduleExports.value;\n else throw moduleExports.reason;\n if (\"*\" === metadata[2]) return moduleExports;\n if (\"\" === metadata[2])\n return moduleExports.__esModule ? moduleExports.default : moduleExports;\n if (hasOwnProperty.call(moduleExports, metadata[2]))\n return moduleExports[metadata[2]];\n }\n function prepareDestinationWithChunks(\n moduleLoading,\n chunks,\n nonce$jscomp$0\n ) {\n if (null !== moduleLoading)\n for (var i = 0; i < chunks.length; i++) {\n var nonce = nonce$jscomp$0,\n JSCompiler_temp_const = ReactDOMSharedInternals.d,\n JSCompiler_temp_const$jscomp$0 = JSCompiler_temp_const.X,\n JSCompiler_temp_const$jscomp$1 = moduleLoading.prefix + chunks[i];\n var JSCompiler_inline_result = moduleLoading.crossOrigin;\n JSCompiler_inline_result =\n \"string\" === typeof JSCompiler_inline_result\n ? \"use-credentials\" === JSCompiler_inline_result\n ? JSCompiler_inline_result\n : \"\"\n : void 0;\n JSCompiler_temp_const$jscomp$0.call(\n JSCompiler_temp_const,\n JSCompiler_temp_const$jscomp$1,\n { crossOrigin: JSCompiler_inline_result, nonce: nonce }\n );\n }\n }\n function getIteratorFn(maybeIterable) {\n if (null === maybeIterable || \"object\" !== typeof maybeIterable)\n return null;\n maybeIterable =\n (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||\n maybeIterable[\"@@iterator\"];\n return \"function\" === typeof maybeIterable ? maybeIterable : null;\n }\n function isObjectPrototype(object) {\n if (!object) return !1;\n var ObjectPrototype = Object.prototype;\n if (object === ObjectPrototype) return !0;\n if (getPrototypeOf(object)) return !1;\n object = Object.getOwnPropertyNames(object);\n for (var i = 0; i < object.length; i++)\n if (!(object[i] in ObjectPrototype)) return !1;\n return !0;\n }\n function isSimpleObject(object) {\n if (!isObjectPrototype(getPrototypeOf(object))) return !1;\n for (\n var names = Object.getOwnPropertyNames(object), i = 0;\n i < names.length;\n i++\n ) {\n var descriptor = Object.getOwnPropertyDescriptor(object, names[i]);\n if (\n !descriptor ||\n (!descriptor.enumerable &&\n ((\"key\" !== names[i] && \"ref\" !== names[i]) ||\n \"function\" !== typeof descriptor.get))\n )\n return !1;\n }\n return !0;\n }\n function objectName(object) {\n object = Object.prototype.toString.call(object);\n return object.slice(8, object.length - 1);\n }\n function describeKeyForErrorMessage(key) {\n var encodedKey = JSON.stringify(key);\n return '\"' + key + '\"' === encodedKey ? key : encodedKey;\n }\n function describeValueForErrorMessage(value) {\n switch (typeof value) {\n case \"string\":\n return JSON.stringify(\n 10 >= value.length ? value : value.slice(0, 10) + \"...\"\n );\n case \"object\":\n if (isArrayImpl(value)) return \"[...]\";\n if (null !== value && value.$$typeof === CLIENT_REFERENCE_TAG)\n return \"client\";\n value = objectName(value);\n return \"Object\" === value ? \"{...}\" : value;\n case \"function\":\n return value.$$typeof === CLIENT_REFERENCE_TAG\n ? \"client\"\n : (value = value.displayName || value.name)\n ? \"function \" + value\n : \"function\";\n default:\n return String(value);\n }\n }\n function describeElementType(type) {\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeElementType(type.render);\n case REACT_MEMO_TYPE:\n return describeElementType(type.type);\n case REACT_LAZY_TYPE:\n var payload = type._payload;\n type = type._init;\n try {\n return describeElementType(type(payload));\n } catch (x) {}\n }\n return \"\";\n }\n function describeObjectForErrorMessage(objectOrArray, expandedName) {\n var objKind = objectName(objectOrArray);\n if (\"Object\" !== objKind && \"Array\" !== objKind) return objKind;\n var start = -1,\n length = 0;\n if (isArrayImpl(objectOrArray))\n if (jsxChildrenParents.has(objectOrArray)) {\n var type = jsxChildrenParents.get(objectOrArray);\n objKind = \"<\" + describeElementType(type) + \">\";\n for (var i = 0; i < objectOrArray.length; i++) {\n var value = objectOrArray[i];\n value =\n \"string\" === typeof value\n ? value\n : \"object\" === typeof value && null !== value\n ? \"{\" + describeObjectForErrorMessage(value) + \"}\"\n : \"{\" + describeValueForErrorMessage(value) + \"}\";\n \"\" + i === expandedName\n ? ((start = objKind.length),\n (length = value.length),\n (objKind += value))\n : (objKind =\n 15 > value.length && 40 > objKind.length + value.length\n ? objKind + value\n : objKind + \"{...}\");\n }\n objKind += \"\";\n } else {\n objKind = \"[\";\n for (type = 0; type < objectOrArray.length; type++)\n 0 < type && (objKind += \", \"),\n (i = objectOrArray[type]),\n (i =\n \"object\" === typeof i && null !== i\n ? describeObjectForErrorMessage(i)\n : describeValueForErrorMessage(i)),\n \"\" + type === expandedName\n ? ((start = objKind.length),\n (length = i.length),\n (objKind += i))\n : (objKind =\n 10 > i.length && 40 > objKind.length + i.length\n ? objKind + i\n : objKind + \"...\");\n objKind += \"]\";\n }\n else if (objectOrArray.$$typeof === REACT_ELEMENT_TYPE)\n objKind = \"<\" + describeElementType(objectOrArray.type) + \"/>\";\n else {\n if (objectOrArray.$$typeof === CLIENT_REFERENCE_TAG) return \"client\";\n if (jsxPropsParents.has(objectOrArray)) {\n objKind = jsxPropsParents.get(objectOrArray);\n objKind = \"<\" + (describeElementType(objKind) || \"...\");\n type = Object.keys(objectOrArray);\n for (i = 0; i < type.length; i++) {\n objKind += \" \";\n value = type[i];\n objKind += describeKeyForErrorMessage(value) + \"=\";\n var _value2 = objectOrArray[value];\n var _substr2 =\n value === expandedName &&\n \"object\" === typeof _value2 &&\n null !== _value2\n ? describeObjectForErrorMessage(_value2)\n : describeValueForErrorMessage(_value2);\n \"string\" !== typeof _value2 && (_substr2 = \"{\" + _substr2 + \"}\");\n value === expandedName\n ? ((start = objKind.length),\n (length = _substr2.length),\n (objKind += _substr2))\n : (objKind =\n 10 > _substr2.length && 40 > objKind.length + _substr2.length\n ? objKind + _substr2\n : objKind + \"...\");\n }\n objKind += \">\";\n } else {\n objKind = \"{\";\n type = Object.keys(objectOrArray);\n for (i = 0; i < type.length; i++)\n 0 < i && (objKind += \", \"),\n (value = type[i]),\n (objKind += describeKeyForErrorMessage(value) + \": \"),\n (_value2 = objectOrArray[value]),\n (_value2 =\n \"object\" === typeof _value2 && null !== _value2\n ? describeObjectForErrorMessage(_value2)\n : describeValueForErrorMessage(_value2)),\n value === expandedName\n ? ((start = objKind.length),\n (length = _value2.length),\n (objKind += _value2))\n : (objKind =\n 10 > _value2.length && 40 > objKind.length + _value2.length\n ? objKind + _value2\n : objKind + \"...\");\n objKind += \"}\";\n }\n }\n return void 0 === expandedName\n ? objKind\n : -1 < start && 0 < length\n ? ((objectOrArray = \" \".repeat(start) + \"^\".repeat(length)),\n \"\\n \" + objKind + \"\\n \" + objectOrArray)\n : \"\\n \" + objKind;\n }\n function serializeNumber(number) {\n return Number.isFinite(number)\n ? 0 === number && -Infinity === 1 / number\n ? \"$-0\"\n : number\n : Infinity === number\n ? \"$Infinity\"\n : -Infinity === number\n ? \"$-Infinity\"\n : \"$NaN\";\n }\n function processReply(\n root,\n formFieldPrefix,\n temporaryReferences,\n resolve,\n reject\n ) {\n function serializeTypedArray(tag, typedArray) {\n typedArray = new Blob([\n new Uint8Array(\n typedArray.buffer,\n typedArray.byteOffset,\n typedArray.byteLength\n )\n ]);\n var blobId = nextPartId++;\n null === formData && (formData = new FormData());\n formData.append(formFieldPrefix + blobId, typedArray);\n return \"$\" + tag + blobId.toString(16);\n }\n function serializeBinaryReader(reader) {\n function progress(entry) {\n entry.done\n ? ((entry = nextPartId++),\n data.append(formFieldPrefix + entry, new Blob(buffer)),\n data.append(\n formFieldPrefix + streamId,\n '\"$o' + entry.toString(16) + '\"'\n ),\n data.append(formFieldPrefix + streamId, \"C\"),\n pendingParts--,\n 0 === pendingParts && resolve(data))\n : (buffer.push(entry.value),\n reader.read(new Uint8Array(1024)).then(progress, reject));\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++,\n buffer = [];\n reader.read(new Uint8Array(1024)).then(progress, reject);\n return \"$r\" + streamId.toString(16);\n }\n function serializeReader(reader) {\n function progress(entry) {\n if (entry.done)\n data.append(formFieldPrefix + streamId, \"C\"),\n pendingParts--,\n 0 === pendingParts && resolve(data);\n else\n try {\n var partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, partJSON);\n reader.read().then(progress, reject);\n } catch (x) {\n reject(x);\n }\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++;\n reader.read().then(progress, reject);\n return \"$R\" + streamId.toString(16);\n }\n function serializeReadableStream(stream) {\n try {\n var binaryReader = stream.getReader({ mode: \"byob\" });\n } catch (x) {\n return serializeReader(stream.getReader());\n }\n return serializeBinaryReader(binaryReader);\n }\n function serializeAsyncIterable(iterable, iterator) {\n function progress(entry) {\n if (entry.done) {\n if (void 0 === entry.value)\n data.append(formFieldPrefix + streamId, \"C\");\n else\n try {\n var partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, \"C\" + partJSON);\n } catch (x) {\n reject(x);\n return;\n }\n pendingParts--;\n 0 === pendingParts && resolve(data);\n } else\n try {\n var _partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, _partJSON);\n iterator.next().then(progress, reject);\n } catch (x$0) {\n reject(x$0);\n }\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++;\n iterable = iterable === iterator;\n iterator.next().then(progress, reject);\n return \"$\" + (iterable ? \"x\" : \"X\") + streamId.toString(16);\n }\n function resolveToJSON(key, value) {\n \"__proto__\" === key &&\n console.error(\n \"Expected not to serialize an object with own property `__proto__`. When parsed this property will be omitted.%s\",\n describeObjectForErrorMessage(this, key)\n );\n var originalValue = this[key];\n \"object\" !== typeof originalValue ||\n originalValue === value ||\n originalValue instanceof Date ||\n (\"Object\" !== objectName(originalValue)\n ? console.error(\n \"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s\",\n objectName(originalValue),\n describeObjectForErrorMessage(this, key)\n )\n : console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Objects with toJSON methods are not supported. Convert it manually to a simple value before passing it to props.%s\",\n describeObjectForErrorMessage(this, key)\n ));\n if (null === value) return null;\n if (\"object\" === typeof value) {\n switch (value.$$typeof) {\n case REACT_ELEMENT_TYPE:\n if (void 0 !== temporaryReferences && -1 === key.indexOf(\":\")) {\n var parentReference = writtenObjects.get(this);\n if (void 0 !== parentReference)\n return (\n temporaryReferences.set(parentReference + \":\" + key, value),\n \"$T\"\n );\n }\n throw Error(\n \"React Element cannot be passed to Server Functions from the Client without a temporary reference set. Pass a TemporaryReferenceSet to the options.\" +\n describeObjectForErrorMessage(this, key)\n );\n case REACT_LAZY_TYPE:\n originalValue = value._payload;\n var init = value._init;\n null === formData && (formData = new FormData());\n pendingParts++;\n try {\n parentReference = init(originalValue);\n var lazyId = nextPartId++,\n partJSON = serializeModel(parentReference, lazyId);\n formData.append(formFieldPrefix + lazyId, partJSON);\n return \"$\" + lazyId.toString(16);\n } catch (x) {\n if (\n \"object\" === typeof x &&\n null !== x &&\n \"function\" === typeof x.then\n ) {\n pendingParts++;\n var _lazyId = nextPartId++;\n parentReference = function () {\n try {\n var _partJSON2 = serializeModel(value, _lazyId),\n _data = formData;\n _data.append(formFieldPrefix + _lazyId, _partJSON2);\n pendingParts--;\n 0 === pendingParts && resolve(_data);\n } catch (reason) {\n reject(reason);\n }\n };\n x.then(parentReference, parentReference);\n return \"$\" + _lazyId.toString(16);\n }\n reject(x);\n return null;\n } finally {\n pendingParts--;\n }\n }\n parentReference = writtenObjects.get(value);\n if (\"function\" === typeof value.then) {\n if (void 0 !== parentReference)\n if (modelRoot === value) modelRoot = null;\n else return parentReference;\n null === formData && (formData = new FormData());\n pendingParts++;\n var promiseId = nextPartId++;\n key = \"$@\" + promiseId.toString(16);\n writtenObjects.set(value, key);\n value.then(function (partValue) {\n try {\n var previousReference = writtenObjects.get(partValue);\n var _partJSON3 =\n void 0 !== previousReference\n ? JSON.stringify(previousReference)\n : serializeModel(partValue, promiseId);\n partValue = formData;\n partValue.append(formFieldPrefix + promiseId, _partJSON3);\n pendingParts--;\n 0 === pendingParts && resolve(partValue);\n } catch (reason) {\n reject(reason);\n }\n }, reject);\n return key;\n }\n if (void 0 !== parentReference)\n if (modelRoot === value) modelRoot = null;\n else return parentReference;\n else\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference &&\n ((parentReference = parentReference + \":\" + key),\n writtenObjects.set(value, parentReference),\n void 0 !== temporaryReferences &&\n temporaryReferences.set(parentReference, value)));\n if (isArrayImpl(value)) return value;\n if (value instanceof FormData) {\n null === formData && (formData = new FormData());\n var _data3 = formData;\n key = nextPartId++;\n var prefix = formFieldPrefix + key + \"_\";\n value.forEach(function (originalValue, originalKey) {\n _data3.append(prefix + originalKey, originalValue);\n });\n return \"$K\" + key.toString(16);\n }\n if (value instanceof Map)\n return (\n (key = nextPartId++),\n (parentReference = serializeModel(Array.from(value), key)),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$Q\" + key.toString(16)\n );\n if (value instanceof Set)\n return (\n (key = nextPartId++),\n (parentReference = serializeModel(Array.from(value), key)),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$W\" + key.toString(16)\n );\n if (value instanceof ArrayBuffer)\n return (\n (key = new Blob([value])),\n (parentReference = nextPartId++),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + parentReference, key),\n \"$A\" + parentReference.toString(16)\n );\n if (value instanceof Int8Array)\n return serializeTypedArray(\"O\", value);\n if (value instanceof Uint8Array)\n return serializeTypedArray(\"o\", value);\n if (value instanceof Uint8ClampedArray)\n return serializeTypedArray(\"U\", value);\n if (value instanceof Int16Array)\n return serializeTypedArray(\"S\", value);\n if (value instanceof Uint16Array)\n return serializeTypedArray(\"s\", value);\n if (value instanceof Int32Array)\n return serializeTypedArray(\"L\", value);\n if (value instanceof Uint32Array)\n return serializeTypedArray(\"l\", value);\n if (value instanceof Float32Array)\n return serializeTypedArray(\"G\", value);\n if (value instanceof Float64Array)\n return serializeTypedArray(\"g\", value);\n if (value instanceof BigInt64Array)\n return serializeTypedArray(\"M\", value);\n if (value instanceof BigUint64Array)\n return serializeTypedArray(\"m\", value);\n if (value instanceof DataView) return serializeTypedArray(\"V\", value);\n if (\"function\" === typeof Blob && value instanceof Blob)\n return (\n null === formData && (formData = new FormData()),\n (key = nextPartId++),\n formData.append(formFieldPrefix + key, value),\n \"$B\" + key.toString(16)\n );\n if ((parentReference = getIteratorFn(value)))\n return (\n (parentReference = parentReference.call(value)),\n parentReference === value\n ? ((key = nextPartId++),\n (parentReference = serializeModel(\n Array.from(parentReference),\n key\n )),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$i\" + key.toString(16))\n : Array.from(parentReference)\n );\n if (\n \"function\" === typeof ReadableStream &&\n value instanceof ReadableStream\n )\n return serializeReadableStream(value);\n parentReference = value[ASYNC_ITERATOR];\n if (\"function\" === typeof parentReference)\n return serializeAsyncIterable(value, parentReference.call(value));\n parentReference = getPrototypeOf(value);\n if (\n parentReference !== ObjectPrototype &&\n (null === parentReference ||\n null !== getPrototypeOf(parentReference))\n ) {\n if (void 0 === temporaryReferences)\n throw Error(\n \"Only plain objects, and a few built-ins, can be passed to Server Functions. Classes or null prototypes are not supported.\" +\n describeObjectForErrorMessage(this, key)\n );\n return \"$T\";\n }\n value.$$typeof === REACT_CONTEXT_TYPE\n ? console.error(\n \"React Context Providers cannot be passed to Server Functions from the Client.%s\",\n describeObjectForErrorMessage(this, key)\n )\n : \"Object\" !== objectName(value)\n ? console.error(\n \"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s\",\n objectName(value),\n describeObjectForErrorMessage(this, key)\n )\n : isSimpleObject(value)\n ? Object.getOwnPropertySymbols &&\n ((parentReference = Object.getOwnPropertySymbols(value)),\n 0 < parentReference.length &&\n console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s\",\n parentReference[0].description,\n describeObjectForErrorMessage(this, key)\n ))\n : console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s\",\n describeObjectForErrorMessage(this, key)\n );\n return value;\n }\n if (\"string\" === typeof value) {\n if (\"Z\" === value[value.length - 1] && this[key] instanceof Date)\n return \"$D\" + value;\n key = \"$\" === value[0] ? \"$\" + value : value;\n return key;\n }\n if (\"boolean\" === typeof value) return value;\n if (\"number\" === typeof value) return serializeNumber(value);\n if (\"undefined\" === typeof value) return \"$undefined\";\n if (\"function\" === typeof value) {\n parentReference = knownServerReferences.get(value);\n if (void 0 !== parentReference) {\n key = writtenObjects.get(value);\n if (void 0 !== key) return key;\n key = JSON.stringify(\n { id: parentReference.id, bound: parentReference.bound },\n resolveToJSON\n );\n null === formData && (formData = new FormData());\n parentReference = nextPartId++;\n formData.set(formFieldPrefix + parentReference, key);\n key = \"$h\" + parentReference.toString(16);\n writtenObjects.set(value, key);\n return key;\n }\n if (\n void 0 !== temporaryReferences &&\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference)\n )\n return (\n temporaryReferences.set(parentReference + \":\" + key, value), \"$T\"\n );\n throw Error(\n \"Client Functions cannot be passed directly to Server Functions. Only Functions passed from the Server can be passed back again.\"\n );\n }\n if (\"symbol\" === typeof value) {\n if (\n void 0 !== temporaryReferences &&\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference)\n )\n return (\n temporaryReferences.set(parentReference + \":\" + key, value), \"$T\"\n );\n throw Error(\n \"Symbols cannot be passed to a Server Function without a temporary reference set. Pass a TemporaryReferenceSet to the options.\" +\n describeObjectForErrorMessage(this, key)\n );\n }\n if (\"bigint\" === typeof value) return \"$n\" + value.toString(10);\n throw Error(\n \"Type \" +\n typeof value +\n \" is not supported as an argument to a Server Function.\"\n );\n }\n function serializeModel(model, id) {\n \"object\" === typeof model &&\n null !== model &&\n ((id = \"$\" + id.toString(16)),\n writtenObjects.set(model, id),\n void 0 !== temporaryReferences && temporaryReferences.set(id, model));\n modelRoot = model;\n return JSON.stringify(model, resolveToJSON);\n }\n var nextPartId = 1,\n pendingParts = 0,\n formData = null,\n writtenObjects = new WeakMap(),\n modelRoot = root,\n json = serializeModel(root, 0);\n null === formData\n ? resolve(json)\n : (formData.set(formFieldPrefix + \"0\", json),\n 0 === pendingParts && resolve(formData));\n return function () {\n 0 < pendingParts &&\n ((pendingParts = 0),\n null === formData ? resolve(json) : resolve(formData));\n };\n }\n function encodeFormData(reference) {\n var resolve,\n reject,\n thenable = new Promise(function (res, rej) {\n resolve = res;\n reject = rej;\n });\n processReply(\n reference,\n \"\",\n void 0,\n function (body) {\n if (\"string\" === typeof body) {\n var data = new FormData();\n data.append(\"0\", body);\n body = data;\n }\n thenable.status = \"fulfilled\";\n thenable.value = body;\n resolve(body);\n },\n function (e) {\n thenable.status = \"rejected\";\n thenable.reason = e;\n reject(e);\n }\n );\n return thenable;\n }\n function defaultEncodeFormAction(identifierPrefix) {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n var data = null;\n if (null !== referenceClosure.bound) {\n data = boundCache.get(referenceClosure);\n data ||\n ((data = encodeFormData({\n id: referenceClosure.id,\n bound: referenceClosure.bound\n })),\n boundCache.set(referenceClosure, data));\n if (\"rejected\" === data.status) throw data.reason;\n if (\"fulfilled\" !== data.status) throw data;\n referenceClosure = data.value;\n var prefixedData = new FormData();\n referenceClosure.forEach(function (value, key) {\n prefixedData.append(\"$ACTION_\" + identifierPrefix + \":\" + key, value);\n });\n data = prefixedData;\n referenceClosure = \"$ACTION_REF_\" + identifierPrefix;\n } else referenceClosure = \"$ACTION_ID_\" + referenceClosure.id;\n return {\n name: referenceClosure,\n method: \"POST\",\n encType: \"multipart/form-data\",\n data: data\n };\n }\n function isSignatureEqual(referenceId, numberOfBoundArgs) {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n if (referenceClosure.id !== referenceId) return !1;\n var boundPromise = referenceClosure.bound;\n if (null === boundPromise) return 0 === numberOfBoundArgs;\n switch (boundPromise.status) {\n case \"fulfilled\":\n return boundPromise.value.length === numberOfBoundArgs;\n case \"pending\":\n throw boundPromise;\n case \"rejected\":\n throw boundPromise.reason;\n default:\n throw (\n (\"string\" !== typeof boundPromise.status &&\n ((boundPromise.status = \"pending\"),\n boundPromise.then(\n function (boundArgs) {\n boundPromise.status = \"fulfilled\";\n boundPromise.value = boundArgs;\n },\n function (error) {\n boundPromise.status = \"rejected\";\n boundPromise.reason = error;\n }\n )),\n boundPromise)\n );\n }\n }\n function createFakeServerFunction(\n name,\n filename,\n sourceMap,\n line,\n col,\n environmentName,\n innerFunction\n ) {\n name || (name = \"\");\n var encodedName = JSON.stringify(name);\n 1 >= line\n ? ((line = encodedName.length + 7),\n (col =\n \"s=>({\" +\n encodedName +\n \" \".repeat(col < line ? 0 : col - line) +\n \":(...args) => s(...args)})\\n/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */\"))\n : (col =\n \"/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */\" +\n \"\\n\".repeat(line - 2) +\n \"server=>({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(1 > col ? 0 : col - 1) +\n \"(...args) => server(...args)})\");\n filename.startsWith(\"/\") && (filename = \"file://\" + filename);\n sourceMap\n ? ((col +=\n \"\\n//# sourceURL=about://React/\" +\n encodeURIComponent(environmentName) +\n \"/\" +\n encodeURI(filename) +\n \"?s\" +\n fakeServerFunctionIdx++),\n (col += \"\\n//# sourceMappingURL=\" + sourceMap))\n : filename && (col += \"\\n//# sourceURL=\" + filename);\n try {\n return (0, eval)(col)(innerFunction)[name];\n } catch (x) {\n return innerFunction;\n }\n }\n function registerBoundServerReference(\n reference,\n id,\n bound,\n encodeFormAction\n ) {\n knownServerReferences.has(reference) ||\n (knownServerReferences.set(reference, {\n id: id,\n originalBind: reference.bind,\n bound: bound\n }),\n Object.defineProperties(reference, {\n $$FORM_ACTION: {\n value:\n void 0 === encodeFormAction\n ? defaultEncodeFormAction\n : function () {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n var boundPromise = referenceClosure.bound;\n null === boundPromise &&\n (boundPromise = Promise.resolve([]));\n return encodeFormAction(referenceClosure.id, boundPromise);\n }\n },\n $$IS_SIGNATURE_EQUAL: { value: isSignatureEqual },\n bind: { value: bind }\n }));\n }\n function bind() {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure) return FunctionBind.apply(this, arguments);\n var newFn = referenceClosure.originalBind.apply(this, arguments);\n null != arguments[0] &&\n console.error(\n 'Cannot bind \"this\" of a Server Action. Pass null or undefined as the first argument to .bind().'\n );\n var args = ArraySlice.call(arguments, 1),\n boundPromise = null;\n boundPromise =\n null !== referenceClosure.bound\n ? Promise.resolve(referenceClosure.bound).then(function (boundArgs) {\n return boundArgs.concat(args);\n })\n : Promise.resolve(args);\n knownServerReferences.set(newFn, {\n id: referenceClosure.id,\n originalBind: newFn.bind,\n bound: boundPromise\n });\n Object.defineProperties(newFn, {\n $$FORM_ACTION: { value: this.$$FORM_ACTION },\n $$IS_SIGNATURE_EQUAL: { value: isSignatureEqual },\n bind: { value: bind }\n });\n return newFn;\n }\n function createBoundServerReference(\n metaData,\n callServer,\n encodeFormAction,\n findSourceMapURL\n ) {\n function action() {\n var args = Array.prototype.slice.call(arguments);\n return bound\n ? \"fulfilled\" === bound.status\n ? callServer(id, bound.value.concat(args))\n : Promise.resolve(bound).then(function (boundArgs) {\n return callServer(id, boundArgs.concat(args));\n })\n : callServer(id, args);\n }\n var id = metaData.id,\n bound = metaData.bound,\n location = metaData.location;\n if (location) {\n var functionName = metaData.name || \"\",\n filename = location[1],\n line = location[2];\n location = location[3];\n metaData = metaData.env || \"Server\";\n findSourceMapURL =\n null == findSourceMapURL\n ? null\n : findSourceMapURL(filename, metaData);\n action = createFakeServerFunction(\n functionName,\n filename,\n findSourceMapURL,\n line,\n location,\n metaData,\n action\n );\n }\n registerBoundServerReference(action, id, bound, encodeFormAction);\n return action;\n }\n function parseStackLocation(error) {\n error = error.stack;\n error.startsWith(\"Error: react-stack-top-frame\\n\") &&\n (error = error.slice(29));\n var endOfFirst = error.indexOf(\"\\n\");\n if (-1 !== endOfFirst) {\n var endOfSecond = error.indexOf(\"\\n\", endOfFirst + 1);\n endOfFirst =\n -1 === endOfSecond\n ? error.slice(endOfFirst + 1)\n : error.slice(endOfFirst + 1, endOfSecond);\n } else endOfFirst = error;\n error = v8FrameRegExp.exec(endOfFirst);\n if (\n !error &&\n ((error = jscSpiderMonkeyFrameRegExp.exec(endOfFirst)), !error)\n )\n return null;\n endOfFirst = error[1] || \"\";\n \"\" === endOfFirst && (endOfFirst = \"\");\n endOfSecond = error[2] || error[5] || \"\";\n \"\" === endOfSecond && (endOfSecond = \"\");\n return [\n endOfFirst,\n endOfSecond,\n +(error[3] || error[6]),\n +(error[4] || error[7])\n ];\n }\n function createServerReference$1(\n id,\n callServer,\n encodeFormAction,\n findSourceMapURL,\n functionName\n ) {\n function action() {\n var args = Array.prototype.slice.call(arguments);\n return callServer(id, args);\n }\n var location = parseStackLocation(Error(\"react-stack-top-frame\"));\n if (null !== location) {\n var filename = location[1],\n line = location[2];\n location = location[3];\n findSourceMapURL =\n null == findSourceMapURL\n ? null\n : findSourceMapURL(filename, \"Client\");\n action = createFakeServerFunction(\n functionName || \"\",\n filename,\n findSourceMapURL,\n line,\n location,\n \"Client\",\n action\n );\n }\n registerBoundServerReference(action, id, null, encodeFormAction);\n return action;\n }\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function getArrayKind(array) {\n for (var kind = 0, i = 0; i < array.length && 100 > i; i++) {\n var value = array[i];\n if (\"object\" === typeof value && null !== value)\n if (\n isArrayImpl(value) &&\n 2 === value.length &&\n \"string\" === typeof value[0]\n ) {\n if (0 !== kind && 3 !== kind) return 1;\n kind = 3;\n } else return 1;\n else {\n if (\n \"function\" === typeof value ||\n (\"string\" === typeof value && 50 < value.length) ||\n (0 !== kind && 2 !== kind)\n )\n return 1;\n kind = 2;\n }\n }\n return kind;\n }\n function addObjectToProperties(object, properties, indent, prefix) {\n var addedProperties = 0,\n key;\n for (key in object)\n if (\n hasOwnProperty.call(object, key) &&\n \"_\" !== key[0] &&\n (addedProperties++,\n addValueToProperties(key, object[key], properties, indent, prefix),\n 100 <= addedProperties)\n ) {\n properties.push([\n prefix +\n \"\\u00a0\\u00a0\".repeat(indent) +\n \"Only 100 properties are shown. React will not log more properties of this object.\",\n \"\"\n ]);\n break;\n }\n }\n function addValueToProperties(\n propertyName,\n value,\n properties,\n indent,\n prefix\n ) {\n switch (typeof value) {\n case \"object\":\n if (null === value) {\n value = \"null\";\n break;\n } else {\n if (value.$$typeof === REACT_ELEMENT_TYPE) {\n var typeName = getComponentNameFromType(value.type) || \"\\u2026\",\n key = value.key;\n value = value.props;\n var propsKeys = Object.keys(value),\n propsLength = propsKeys.length;\n if (null == key && 0 === propsLength) {\n value = \"<\" + typeName + \" />\";\n break;\n }\n if (\n 3 > indent ||\n (1 === propsLength &&\n \"children\" === propsKeys[0] &&\n null == key)\n ) {\n value = \"<\" + typeName + \" \\u2026 />\";\n break;\n }\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"<\" + typeName\n ]);\n null !== key &&\n addValueToProperties(\n \"key\",\n key,\n properties,\n indent + 1,\n prefix\n );\n propertyName = !1;\n key = 0;\n for (var propKey in value)\n if (\n (key++,\n \"children\" === propKey\n ? null != value.children &&\n (!isArrayImpl(value.children) ||\n 0 < value.children.length) &&\n (propertyName = !0)\n : hasOwnProperty.call(value, propKey) &&\n \"_\" !== propKey[0] &&\n addValueToProperties(\n propKey,\n value[propKey],\n properties,\n indent + 1,\n prefix\n ),\n 100 <= key)\n )\n break;\n properties.push([\n \"\",\n propertyName ? \">\\u2026\" : \"/>\"\n ]);\n return;\n }\n typeName = Object.prototype.toString.call(value);\n propKey = typeName.slice(8, typeName.length - 1);\n if (\"Array\" === propKey)\n if (\n ((typeName = 100 < value.length),\n (key = getArrayKind(value)),\n 2 === key || 0 === key)\n ) {\n value = JSON.stringify(\n typeName ? value.slice(0, 100).concat(\"\\u2026\") : value\n );\n break;\n } else if (3 === key) {\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"\"\n ]);\n for (\n propertyName = 0;\n propertyName < value.length && 100 > propertyName;\n propertyName++\n )\n (propKey = value[propertyName]),\n addValueToProperties(\n propKey[0],\n propKey[1],\n properties,\n indent + 1,\n prefix\n );\n typeName &&\n addValueToProperties(\n (100).toString(),\n \"\\u2026\",\n properties,\n indent + 1,\n prefix\n );\n return;\n }\n if (\"Promise\" === propKey) {\n if (\"fulfilled\" === value.status) {\n if (\n ((typeName = properties.length),\n addValueToProperties(\n propertyName,\n value.value,\n properties,\n indent,\n prefix\n ),\n properties.length > typeName)\n ) {\n properties = properties[typeName];\n properties[1] =\n \"Promise<\" + (properties[1] || \"Object\") + \">\";\n return;\n }\n } else if (\n \"rejected\" === value.status &&\n ((typeName = properties.length),\n addValueToProperties(\n propertyName,\n value.reason,\n properties,\n indent,\n prefix\n ),\n properties.length > typeName)\n ) {\n properties = properties[typeName];\n properties[1] = \"Rejected Promise<\" + properties[1] + \">\";\n return;\n }\n properties.push([\n \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"Promise\"\n ]);\n return;\n }\n \"Object\" === propKey &&\n (typeName = Object.getPrototypeOf(value)) &&\n \"function\" === typeof typeName.constructor &&\n (propKey = typeName.constructor.name);\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"Object\" === propKey ? (3 > indent ? \"\" : \"\\u2026\") : propKey\n ]);\n 3 > indent &&\n addObjectToProperties(value, properties, indent + 1, prefix);\n return;\n }\n case \"function\":\n value = \"\" === value.name ? \"() => {}\" : value.name + \"() {}\";\n break;\n case \"string\":\n value =\n \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\" ===\n value\n ? \"\\u2026\"\n : JSON.stringify(value);\n break;\n case \"undefined\":\n value = \"undefined\";\n break;\n case \"boolean\":\n value = value ? \"true\" : \"false\";\n break;\n default:\n value = String(value);\n }\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n value\n ]);\n }\n function getIODescription(value) {\n try {\n switch (typeof value) {\n case \"function\":\n return value.name || \"\";\n case \"object\":\n if (null === value) return \"\";\n if (value instanceof Error) return String(value.message);\n if (\"string\" === typeof value.url) return value.url;\n if (\"string\" === typeof value.href) return value.href;\n if (\"string\" === typeof value.src) return value.src;\n if (\"string\" === typeof value.currentSrc) return value.currentSrc;\n if (\"string\" === typeof value.command) return value.command;\n if (\n \"object\" === typeof value.request &&\n null !== value.request &&\n \"string\" === typeof value.request.url\n )\n return value.request.url;\n if (\n \"object\" === typeof value.response &&\n null !== value.response &&\n \"string\" === typeof value.response.url\n )\n return value.response.url;\n if (\n \"string\" === typeof value.id ||\n \"number\" === typeof value.id ||\n \"bigint\" === typeof value.id\n )\n return String(value.id);\n if (\"string\" === typeof value.name) return value.name;\n var str = value.toString();\n return str.startsWith(\"[object \") ||\n 5 > str.length ||\n 500 < str.length\n ? \"\"\n : str;\n case \"string\":\n return 5 > value.length || 500 < value.length ? \"\" : value;\n case \"number\":\n case \"bigint\":\n return String(value);\n default:\n return \"\";\n }\n } catch (x) {\n return \"\";\n }\n }\n function markAllTracksInOrder() {\n supportsUserTiming &&\n (console.timeStamp(\n \"Server Requests Track\",\n 0.001,\n 0.001,\n \"Server Requests \\u269b\",\n void 0,\n \"primary-light\"\n ),\n console.timeStamp(\n \"Server Components Track\",\n 0.001,\n 0.001,\n \"Primary\",\n \"Server Components \\u269b\",\n \"primary-light\"\n ));\n }\n function getIOColor(functionName) {\n switch (functionName.charCodeAt(0) % 3) {\n case 0:\n return \"tertiary-light\";\n case 1:\n return \"tertiary\";\n default:\n return \"tertiary-dark\";\n }\n }\n function getIOLongName(ioInfo, description, env, rootEnv) {\n ioInfo = ioInfo.name;\n description =\n \"\" === description ? ioInfo : ioInfo + \" (\" + description + \")\";\n return env === rootEnv || void 0 === env\n ? description\n : description + \" [\" + env + \"]\";\n }\n function getIOShortName(ioInfo, description, env, rootEnv) {\n ioInfo = ioInfo.name;\n env = env === rootEnv || void 0 === env ? \"\" : \" [\" + env + \"]\";\n var desc = \"\";\n rootEnv = 30 - ioInfo.length - env.length;\n if (1 < rootEnv) {\n var l = description.length;\n if (0 < l && l <= rootEnv) desc = \" (\" + description + \")\";\n else if (\n description.startsWith(\"http://\") ||\n description.startsWith(\"https://\") ||\n description.startsWith(\"/\")\n ) {\n var queryIdx = description.indexOf(\"?\");\n -1 === queryIdx && (queryIdx = description.length);\n 47 === description.charCodeAt(queryIdx - 1) && queryIdx--;\n desc = description.lastIndexOf(\"/\", queryIdx - 1);\n queryIdx - desc < rootEnv\n ? (desc = \" (\\u2026\" + description.slice(desc, queryIdx) + \")\")\n : ((l = description.slice(desc, desc + rootEnv / 2)),\n (description = description.slice(\n queryIdx - rootEnv / 2,\n queryIdx\n )),\n (desc =\n \" (\" +\n (0 < desc ? \"\\u2026\" : \"\") +\n l +\n \"\\u2026\" +\n description +\n \")\"));\n }\n }\n return ioInfo + desc + env;\n }\n function logComponentAwait(\n asyncInfo,\n trackIdx,\n startTime,\n endTime,\n rootEnv,\n value\n ) {\n if (supportsUserTiming && 0 < endTime) {\n var description = getIODescription(value),\n name = getIOShortName(\n asyncInfo.awaited,\n description,\n asyncInfo.env,\n rootEnv\n ),\n entryName = \"await \" + name;\n name = getIOColor(name);\n var debugTask = asyncInfo.debugTask || asyncInfo.awaited.debugTask;\n if (debugTask) {\n var properties = [];\n \"object\" === typeof value && null !== value\n ? addObjectToProperties(value, properties, 0, \"\")\n : void 0 !== value &&\n addValueToProperties(\"awaited value\", value, properties, 0, \"\");\n asyncInfo = getIOLongName(\n asyncInfo.awaited,\n description,\n asyncInfo.env,\n rootEnv\n );\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: name,\n track: trackNames[trackIdx],\n trackGroup: \"Server Components \\u269b\",\n properties: properties,\n tooltipText: asyncInfo\n }\n }\n })\n );\n performance.clearMeasures(entryName);\n } else\n console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n name\n );\n }\n }\n function logIOInfoErrored(ioInfo, rootEnv, error) {\n var startTime = ioInfo.start,\n endTime = ioInfo.end;\n if (supportsUserTiming && 0 <= endTime) {\n var description = getIODescription(error),\n entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),\n debugTask = ioInfo.debugTask;\n entryName = \"\\u200b\" + entryName;\n debugTask\n ? ((error = [\n [\n \"rejected with\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]\n ]),\n (ioInfo =\n getIOLongName(ioInfo, description, ioInfo.env, rootEnv) +\n \" Rejected\"),\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: \"error\",\n track: \"Server Requests \\u269b\",\n properties: error,\n tooltipText: ioInfo\n }\n }\n })\n ),\n performance.clearMeasures(entryName))\n : console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n \"Server Requests \\u269b\",\n void 0,\n \"error\"\n );\n }\n }\n function logIOInfo(ioInfo, rootEnv, value) {\n var startTime = ioInfo.start,\n endTime = ioInfo.end;\n if (supportsUserTiming && 0 <= endTime) {\n var description = getIODescription(value),\n entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),\n color = getIOColor(entryName),\n debugTask = ioInfo.debugTask;\n entryName = \"\\u200b\" + entryName;\n if (debugTask) {\n var properties = [];\n \"object\" === typeof value && null !== value\n ? addObjectToProperties(value, properties, 0, \"\")\n : void 0 !== value &&\n addValueToProperties(\"Resolved\", value, properties, 0, \"\");\n ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv);\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: color,\n track: \"Server Requests \\u269b\",\n properties: properties,\n tooltipText: ioInfo\n }\n }\n })\n );\n performance.clearMeasures(entryName);\n } else\n console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n \"Server Requests \\u269b\",\n void 0,\n color\n );\n }\n }\n function prepareStackTrace(error, structuredStackTrace) {\n error = (error.name || \"Error\") + \": \" + (error.message || \"\");\n for (var i = 0; i < structuredStackTrace.length; i++)\n error += \"\\n at \" + structuredStackTrace[i].toString();\n return error;\n }\n function ReactPromise(status, value, reason) {\n this.status = status;\n this.value = value;\n this.reason = reason;\n this._children = [];\n this._debugChunk = null;\n this._debugInfo = [];\n }\n function unwrapWeakResponse(weakResponse) {\n weakResponse = weakResponse.weak.deref();\n if (void 0 === weakResponse)\n throw Error(\n \"We did not expect to receive new data after GC:ing the response.\"\n );\n return weakResponse;\n }\n function closeDebugChannel(debugChannel) {\n debugChannel.callback && debugChannel.callback(\"\");\n }\n function readChunk(chunk) {\n switch (chunk.status) {\n case \"resolved_model\":\n initializeModelChunk(chunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(chunk);\n }\n switch (chunk.status) {\n case \"fulfilled\":\n return chunk.value;\n case \"pending\":\n case \"blocked\":\n case \"halted\":\n throw chunk;\n default:\n throw chunk.reason;\n }\n }\n function getRoot(weakResponse) {\n weakResponse = unwrapWeakResponse(weakResponse);\n return getChunk(weakResponse, 0);\n }\n function createPendingChunk(response) {\n 0 === response._pendingChunks++ &&\n ((response._weakResponse.response = response),\n null !== response._pendingInitialRender &&\n (clearTimeout(response._pendingInitialRender),\n (response._pendingInitialRender = null)));\n return new ReactPromise(\"pending\", null, null);\n }\n function releasePendingChunk(response, chunk) {\n \"pending\" === chunk.status &&\n 0 === --response._pendingChunks &&\n ((response._weakResponse.response = null),\n (response._pendingInitialRender = setTimeout(\n flushInitialRenderPerformance.bind(null, response),\n 100\n )));\n }\n function filterDebugInfo(response, value) {\n if (null !== response._debugEndTime) {\n response = response._debugEndTime - performance.timeOrigin;\n for (var debugInfo = [], i = 0; i < value._debugInfo.length; i++) {\n var info = value._debugInfo[i];\n if (\"number\" === typeof info.time && info.time > response) break;\n debugInfo.push(info);\n }\n value._debugInfo = debugInfo;\n }\n }\n function moveDebugInfoFromChunkToInnerValue(chunk, value) {\n value = resolveLazy(value);\n \"object\" !== typeof value ||\n null === value ||\n (!isArrayImpl(value) &&\n \"function\" !== typeof value[ASYNC_ITERATOR] &&\n value.$$typeof !== REACT_ELEMENT_TYPE &&\n value.$$typeof !== REACT_LAZY_TYPE) ||\n ((chunk = chunk._debugInfo.splice(0)),\n isArrayImpl(value._debugInfo)\n ? value._debugInfo.unshift.apply(value._debugInfo, chunk)\n : Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: chunk\n }));\n }\n function wakeChunk(response, listeners, value, chunk) {\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n \"function\" === typeof listener\n ? listener(value)\n : fulfillReference(response, listener, value, chunk);\n }\n filterDebugInfo(response, chunk);\n moveDebugInfoFromChunkToInnerValue(chunk, value);\n }\n function rejectChunk(response, listeners, error) {\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n \"function\" === typeof listener\n ? listener(error)\n : rejectReference(response, listener.handler, error);\n }\n }\n function resolveBlockedCycle(resolvedChunk, reference) {\n var referencedChunk = reference.handler.chunk;\n if (null === referencedChunk) return null;\n if (referencedChunk === resolvedChunk) return reference.handler;\n reference = referencedChunk.value;\n if (null !== reference)\n for (\n referencedChunk = 0;\n referencedChunk < reference.length;\n referencedChunk++\n ) {\n var listener = reference[referencedChunk];\n if (\n \"function\" !== typeof listener &&\n ((listener = resolveBlockedCycle(resolvedChunk, listener)),\n null !== listener)\n )\n return listener;\n }\n return null;\n }\n function wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ) {\n switch (chunk.status) {\n case \"fulfilled\":\n wakeChunk(response, resolveListeners, chunk.value, chunk);\n break;\n case \"blocked\":\n for (var i = 0; i < resolveListeners.length; i++) {\n var listener = resolveListeners[i];\n if (\"function\" !== typeof listener) {\n var cyclicHandler = resolveBlockedCycle(chunk, listener);\n if (null !== cyclicHandler)\n switch (\n (fulfillReference(\n response,\n listener,\n cyclicHandler.value,\n chunk\n ),\n resolveListeners.splice(i, 1),\n i--,\n null !== rejectListeners &&\n ((listener = rejectListeners.indexOf(listener)),\n -1 !== listener && rejectListeners.splice(listener, 1)),\n chunk.status)\n ) {\n case \"fulfilled\":\n wakeChunk(response, resolveListeners, chunk.value, chunk);\n return;\n case \"rejected\":\n null !== rejectListeners &&\n rejectChunk(response, rejectListeners, chunk.reason);\n return;\n }\n }\n }\n case \"pending\":\n if (chunk.value)\n for (response = 0; response < resolveListeners.length; response++)\n chunk.value.push(resolveListeners[response]);\n else chunk.value = resolveListeners;\n if (chunk.reason) {\n if (rejectListeners)\n for (\n resolveListeners = 0;\n resolveListeners < rejectListeners.length;\n resolveListeners++\n )\n chunk.reason.push(rejectListeners[resolveListeners]);\n } else chunk.reason = rejectListeners;\n break;\n case \"rejected\":\n rejectListeners &&\n rejectChunk(response, rejectListeners, chunk.reason);\n }\n }\n function triggerErrorOnChunk(response, chunk, error) {\n if (\"pending\" !== chunk.status && \"blocked\" !== chunk.status)\n chunk.reason.error(error);\n else {\n releasePendingChunk(response, chunk);\n var listeners = chunk.reason;\n if (\"pending\" === chunk.status && null != chunk._debugChunk) {\n var prevHandler = initializingHandler,\n prevChunk = initializingChunk;\n initializingHandler = null;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n try {\n initializeDebugChunk(response, chunk);\n } finally {\n (initializingHandler = prevHandler),\n (initializingChunk = prevChunk);\n }\n }\n chunk.status = \"rejected\";\n chunk.reason = error;\n null !== listeners && rejectChunk(response, listeners, error);\n }\n }\n function createResolvedModelChunk(response, value) {\n return new ReactPromise(\"resolved_model\", value, response);\n }\n function createResolvedIteratorResultChunk(response, value, done) {\n return new ReactPromise(\n \"resolved_model\",\n (done ? '{\"done\":true,\"value\":' : '{\"done\":false,\"value\":') +\n value +\n \"}\",\n response\n );\n }\n function resolveIteratorResultChunk(response, chunk, value, done) {\n resolveModelChunk(\n response,\n chunk,\n (done ? '{\"done\":true,\"value\":' : '{\"done\":false,\"value\":') +\n value +\n \"}\"\n );\n }\n function resolveModelChunk(response, chunk, value) {\n if (\"pending\" !== chunk.status) chunk.reason.enqueueModel(value);\n else {\n releasePendingChunk(response, chunk);\n var resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"resolved_model\";\n chunk.value = value;\n chunk.reason = response;\n null !== resolveListeners &&\n (initializeModelChunk(chunk),\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ));\n }\n }\n function resolveModuleChunk(response, chunk, value) {\n if (\"pending\" === chunk.status || \"blocked\" === chunk.status) {\n releasePendingChunk(response, chunk);\n var resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"resolved_module\";\n chunk.value = value;\n chunk.reason = null;\n value = [];\n null !== value && chunk._debugInfo.push.apply(chunk._debugInfo, value);\n null !== resolveListeners &&\n (initializeModuleChunk(chunk),\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ));\n }\n }\n function initializeDebugChunk(response, chunk) {\n var debugChunk = chunk._debugChunk;\n if (null !== debugChunk) {\n var debugInfo = chunk._debugInfo;\n try {\n if (\"resolved_model\" === debugChunk.status) {\n for (\n var idx = debugInfo.length, c = debugChunk._debugChunk;\n null !== c;\n\n )\n \"fulfilled\" !== c.status && idx++, (c = c._debugChunk);\n initializeModelChunk(debugChunk);\n switch (debugChunk.status) {\n case \"fulfilled\":\n debugInfo[idx] = initializeDebugInfo(\n response,\n debugChunk.value\n );\n break;\n case \"blocked\":\n case \"pending\":\n waitForReference(\n debugChunk,\n debugInfo,\n \"\" + idx,\n response,\n initializeDebugInfo,\n [\"\"],\n !0\n );\n break;\n default:\n throw debugChunk.reason;\n }\n } else\n switch (debugChunk.status) {\n case \"fulfilled\":\n break;\n case \"blocked\":\n case \"pending\":\n waitForReference(\n debugChunk,\n {},\n \"debug\",\n response,\n initializeDebugInfo,\n [\"\"],\n !0\n );\n break;\n default:\n throw debugChunk.reason;\n }\n } catch (error) {\n triggerErrorOnChunk(response, chunk, error);\n }\n }\n }\n function initializeModelChunk(chunk) {\n var prevHandler = initializingHandler,\n prevChunk = initializingChunk;\n initializingHandler = null;\n var resolvedModel = chunk.value,\n response = chunk.reason;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n initializeDebugChunk(response, chunk);\n try {\n var value = JSON.parse(resolvedModel, response._fromJSON),\n resolveListeners = chunk.value;\n if (null !== resolveListeners)\n for (\n chunk.value = null, chunk.reason = null, resolvedModel = 0;\n resolvedModel < resolveListeners.length;\n resolvedModel++\n ) {\n var listener = resolveListeners[resolvedModel];\n \"function\" === typeof listener\n ? listener(value)\n : fulfillReference(response, listener, value, chunk);\n }\n if (null !== initializingHandler) {\n if (initializingHandler.errored) throw initializingHandler.reason;\n if (0 < initializingHandler.deps) {\n initializingHandler.value = value;\n initializingHandler.chunk = chunk;\n return;\n }\n }\n chunk.status = \"fulfilled\";\n chunk.value = value;\n filterDebugInfo(response, chunk);\n moveDebugInfoFromChunkToInnerValue(chunk, value);\n } catch (error) {\n (chunk.status = \"rejected\"), (chunk.reason = error);\n } finally {\n (initializingHandler = prevHandler), (initializingChunk = prevChunk);\n }\n }\n function initializeModuleChunk(chunk) {\n try {\n var value = requireModule(chunk.value);\n chunk.status = \"fulfilled\";\n chunk.value = value;\n } catch (error) {\n (chunk.status = \"rejected\"), (chunk.reason = error);\n }\n }\n function reportGlobalError(weakResponse, error) {\n if (void 0 !== weakResponse.weak.deref()) {\n var response = unwrapWeakResponse(weakResponse);\n response._closed = !0;\n response._closedReason = error;\n response._chunks.forEach(function (chunk) {\n \"pending\" === chunk.status\n ? triggerErrorOnChunk(response, chunk, error)\n : \"fulfilled\" === chunk.status &&\n null !== chunk.reason &&\n chunk.reason.error(error);\n });\n weakResponse = response._debugChannel;\n void 0 !== weakResponse &&\n (closeDebugChannel(weakResponse),\n (response._debugChannel = void 0),\n null !== debugChannelRegistry &&\n debugChannelRegistry.unregister(response));\n }\n }\n function nullRefGetter() {\n return null;\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\"function\" === typeof type) return '\"use client\"';\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return type._init === readChunk ? '\"use client\"' : \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function initializeElement(response, element, lazyNode) {\n var stack = element._debugStack,\n owner = element._owner;\n null === owner && (element._owner = response._debugRootOwner);\n var env = response._rootEnvironmentName;\n null !== owner && null != owner.env && (env = owner.env);\n var normalizedStackTrace = null;\n null === owner && null != response._debugRootStack\n ? (normalizedStackTrace = response._debugRootStack)\n : null !== stack &&\n (normalizedStackTrace = createFakeJSXCallStackInDEV(\n response,\n stack,\n env\n ));\n element._debugStack = normalizedStackTrace;\n normalizedStackTrace = null;\n supportsCreateTask &&\n null !== stack &&\n ((normalizedStackTrace = console.createTask.bind(\n console,\n getTaskName(element.type)\n )),\n (stack = buildFakeCallStack(\n response,\n stack,\n env,\n !1,\n normalizedStackTrace\n )),\n (env = null === owner ? null : initializeFakeTask(response, owner)),\n null === env\n ? ((env = response._debugRootTask),\n (normalizedStackTrace = null != env ? env.run(stack) : stack()))\n : (normalizedStackTrace = env.run(stack)));\n element._debugTask = normalizedStackTrace;\n null !== owner && initializeFakeStack(response, owner);\n null !== lazyNode &&\n (lazyNode._store &&\n lazyNode._store.validated &&\n !element._store.validated &&\n (element._store.validated = lazyNode._store.validated),\n \"fulfilled\" === lazyNode._payload.status &&\n lazyNode._debugInfo &&\n ((response = lazyNode._debugInfo.splice(0)),\n element._debugInfo\n ? element._debugInfo.unshift.apply(element._debugInfo, response)\n : Object.defineProperty(element, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: response\n })));\n Object.freeze(element.props);\n }\n function createLazyChunkWrapper(chunk, validated) {\n var lazyType = {\n $$typeof: REACT_LAZY_TYPE,\n _payload: chunk,\n _init: readChunk\n };\n lazyType._debugInfo = chunk._debugInfo;\n lazyType._store = { validated: validated };\n return lazyType;\n }\n function getChunk(response, id) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk ||\n ((chunk = response._closed\n ? new ReactPromise(\"rejected\", null, response._closedReason)\n : createPendingChunk(response)),\n chunks.set(id, chunk));\n return chunk;\n }\n function fulfillReference(response, reference, value, fulfilledChunk) {\n var handler = reference.handler,\n parentObject = reference.parentObject,\n key = reference.key,\n map = reference.map,\n path = reference.path;\n try {\n for (var i = 1; i < path.length; i++) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var referencedChunk = value._payload;\n if (referencedChunk === handler.chunk) value = handler.value;\n else {\n switch (referencedChunk.status) {\n case \"resolved_model\":\n initializeModelChunk(referencedChunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(referencedChunk);\n }\n switch (referencedChunk.status) {\n case \"fulfilled\":\n value = referencedChunk.value;\n continue;\n case \"blocked\":\n var cyclicHandler = resolveBlockedCycle(\n referencedChunk,\n reference\n );\n if (null !== cyclicHandler) {\n value = cyclicHandler.value;\n continue;\n }\n case \"pending\":\n path.splice(0, i - 1);\n null === referencedChunk.value\n ? (referencedChunk.value = [reference])\n : referencedChunk.value.push(reference);\n null === referencedChunk.reason\n ? (referencedChunk.reason = [reference])\n : referencedChunk.reason.push(reference);\n return;\n case \"halted\":\n return;\n default:\n rejectReference(\n response,\n reference.handler,\n referencedChunk.reason\n );\n return;\n }\n }\n }\n var name = path[i];\n if (\n \"object\" === typeof value &&\n null !== value &&\n hasOwnProperty.call(value, name)\n )\n value = value[name];\n else throw Error(\"Invalid reference.\");\n }\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var _referencedChunk = value._payload;\n if (_referencedChunk === handler.chunk) value = handler.value;\n else {\n switch (_referencedChunk.status) {\n case \"resolved_model\":\n initializeModelChunk(_referencedChunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(_referencedChunk);\n }\n switch (_referencedChunk.status) {\n case \"fulfilled\":\n value = _referencedChunk.value;\n continue;\n }\n break;\n }\n }\n var mappedValue = map(response, value, parentObject, key);\n \"__proto__\" !== key && (parentObject[key] = mappedValue);\n \"\" === key && null === handler.value && (handler.value = mappedValue);\n if (\n parentObject[0] === REACT_ELEMENT_TYPE &&\n \"object\" === typeof handler.value &&\n null !== handler.value &&\n handler.value.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var element = handler.value;\n switch (key) {\n case \"3\":\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n element.props = mappedValue;\n break;\n case \"4\":\n element._owner = mappedValue;\n break;\n case \"5\":\n element._debugStack = mappedValue;\n break;\n default:\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n }\n } else\n reference.isDebug ||\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n } catch (error) {\n rejectReference(response, reference.handler, error);\n return;\n }\n handler.deps--;\n 0 === handler.deps &&\n ((reference = handler.chunk),\n null !== reference &&\n \"blocked\" === reference.status &&\n ((value = reference.value),\n (reference.status = \"fulfilled\"),\n (reference.value = handler.value),\n (reference.reason = handler.reason),\n null !== value\n ? wakeChunk(response, value, handler.value, reference)\n : ((handler = handler.value),\n filterDebugInfo(response, reference),\n moveDebugInfoFromChunkToInnerValue(reference, handler))));\n }\n function rejectReference(response, handler, error) {\n if (!handler.errored) {\n var blockedValue = handler.value;\n handler.errored = !0;\n handler.value = null;\n handler.reason = error;\n handler = handler.chunk;\n if (null !== handler && \"blocked\" === handler.status) {\n if (\n \"object\" === typeof blockedValue &&\n null !== blockedValue &&\n blockedValue.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var erroredComponent = {\n name: getComponentNameFromType(blockedValue.type) || \"\",\n owner: blockedValue._owner\n };\n erroredComponent.debugStack = blockedValue._debugStack;\n supportsCreateTask &&\n (erroredComponent.debugTask = blockedValue._debugTask);\n handler._debugInfo.push(erroredComponent);\n }\n triggerErrorOnChunk(response, handler, error);\n }\n }\n }\n function waitForReference(\n referencedChunk,\n parentObject,\n key,\n response,\n map,\n path,\n isAwaitingDebugInfo\n ) {\n if (\n !(\n (void 0 !== response._debugChannel &&\n response._debugChannel.hasReadable) ||\n \"pending\" !== referencedChunk.status ||\n parentObject[0] !== REACT_ELEMENT_TYPE ||\n (\"4\" !== key && \"5\" !== key)\n )\n )\n return null;\n initializingHandler\n ? ((response = initializingHandler), response.deps++)\n : (response = initializingHandler =\n {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n });\n parentObject = {\n handler: response,\n parentObject: parentObject,\n key: key,\n map: map,\n path: path\n };\n parentObject.isDebug = isAwaitingDebugInfo;\n null === referencedChunk.value\n ? (referencedChunk.value = [parentObject])\n : referencedChunk.value.push(parentObject);\n null === referencedChunk.reason\n ? (referencedChunk.reason = [parentObject])\n : referencedChunk.reason.push(parentObject);\n return null;\n }\n function loadServerReference(response, metaData, parentObject, key) {\n if (!response._serverReferenceConfig)\n return createBoundServerReference(\n metaData,\n response._callServer,\n response._encodeFormAction,\n response._debugFindSourceMapURL\n );\n var serverReference = resolveServerReference(\n response._serverReferenceConfig,\n metaData.id\n ),\n promise = preloadModule(serverReference);\n if (promise)\n metaData.bound && (promise = Promise.all([promise, metaData.bound]));\n else if (metaData.bound) promise = Promise.resolve(metaData.bound);\n else\n return (\n (promise = requireModule(serverReference)),\n registerBoundServerReference(\n promise,\n metaData.id,\n metaData.bound,\n response._encodeFormAction\n ),\n promise\n );\n if (initializingHandler) {\n var handler = initializingHandler;\n handler.deps++;\n } else\n handler = initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n };\n promise.then(\n function () {\n var resolvedValue = requireModule(serverReference);\n if (metaData.bound) {\n var boundArgs = metaData.bound.value.slice(0);\n boundArgs.unshift(null);\n resolvedValue = resolvedValue.bind.apply(resolvedValue, boundArgs);\n }\n registerBoundServerReference(\n resolvedValue,\n metaData.id,\n metaData.bound,\n response._encodeFormAction\n );\n \"__proto__\" !== key && (parentObject[key] = resolvedValue);\n \"\" === key &&\n null === handler.value &&\n (handler.value = resolvedValue);\n if (\n parentObject[0] === REACT_ELEMENT_TYPE &&\n \"object\" === typeof handler.value &&\n null !== handler.value &&\n handler.value.$$typeof === REACT_ELEMENT_TYPE\n )\n switch (((boundArgs = handler.value), key)) {\n case \"3\":\n boundArgs.props = resolvedValue;\n break;\n case \"4\":\n boundArgs._owner = resolvedValue;\n }\n handler.deps--;\n 0 === handler.deps &&\n ((resolvedValue = handler.chunk),\n null !== resolvedValue &&\n \"blocked\" === resolvedValue.status &&\n ((boundArgs = resolvedValue.value),\n (resolvedValue.status = \"fulfilled\"),\n (resolvedValue.value = handler.value),\n (resolvedValue.reason = null),\n null !== boundArgs\n ? wakeChunk(response, boundArgs, handler.value, resolvedValue)\n : ((boundArgs = handler.value),\n filterDebugInfo(response, resolvedValue),\n moveDebugInfoFromChunkToInnerValue(\n resolvedValue,\n boundArgs\n ))));\n },\n function (error) {\n if (!handler.errored) {\n var blockedValue = handler.value;\n handler.errored = !0;\n handler.value = null;\n handler.reason = error;\n var chunk = handler.chunk;\n if (null !== chunk && \"blocked\" === chunk.status) {\n if (\n \"object\" === typeof blockedValue &&\n null !== blockedValue &&\n blockedValue.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var erroredComponent = {\n name: getComponentNameFromType(blockedValue.type) || \"\",\n owner: blockedValue._owner\n };\n erroredComponent.debugStack = blockedValue._debugStack;\n supportsCreateTask &&\n (erroredComponent.debugTask = blockedValue._debugTask);\n chunk._debugInfo.push(erroredComponent);\n }\n triggerErrorOnChunk(response, chunk, error);\n }\n }\n }\n );\n return null;\n }\n function resolveLazy(value) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var payload = value._payload;\n if (\"fulfilled\" === payload.status) value = payload.value;\n else break;\n }\n return value;\n }\n function transferReferencedDebugInfo(parentChunk, referencedChunk) {\n if (null !== parentChunk) {\n referencedChunk = referencedChunk._debugInfo;\n parentChunk = parentChunk._debugInfo;\n for (var i = 0; i < referencedChunk.length; ++i) {\n var debugInfoEntry = referencedChunk[i];\n null == debugInfoEntry.name && parentChunk.push(debugInfoEntry);\n }\n }\n }\n function getOutlinedModel(response, reference, parentObject, key, map) {\n var path = reference.split(\":\");\n reference = parseInt(path[0], 16);\n reference = getChunk(response, reference);\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(reference);\n switch (reference.status) {\n case \"resolved_model\":\n initializeModelChunk(reference);\n break;\n case \"resolved_module\":\n initializeModuleChunk(reference);\n }\n switch (reference.status) {\n case \"fulfilled\":\n for (var value = reference.value, i = 1; i < path.length; i++) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n value = value._payload;\n switch (value.status) {\n case \"resolved_model\":\n initializeModelChunk(value);\n break;\n case \"resolved_module\":\n initializeModuleChunk(value);\n }\n switch (value.status) {\n case \"fulfilled\":\n value = value.value;\n break;\n case \"blocked\":\n case \"pending\":\n return waitForReference(\n value,\n parentObject,\n key,\n response,\n map,\n path.slice(i - 1),\n !1\n );\n case \"halted\":\n return (\n initializingHandler\n ? ((parentObject = initializingHandler),\n parentObject.deps++)\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n }),\n null\n );\n default:\n return (\n initializingHandler\n ? ((initializingHandler.errored = !0),\n (initializingHandler.value = null),\n (initializingHandler.reason = value.reason))\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: value.reason,\n deps: 0,\n errored: !0\n }),\n null\n );\n }\n }\n value = value[path[i]];\n }\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n path = value._payload;\n switch (path.status) {\n case \"resolved_model\":\n initializeModelChunk(path);\n break;\n case \"resolved_module\":\n initializeModuleChunk(path);\n }\n switch (path.status) {\n case \"fulfilled\":\n value = path.value;\n continue;\n }\n break;\n }\n response = map(response, value, parentObject, key);\n (parentObject[0] !== REACT_ELEMENT_TYPE ||\n (\"4\" !== key && \"5\" !== key)) &&\n transferReferencedDebugInfo(initializingChunk, reference);\n return response;\n case \"pending\":\n case \"blocked\":\n return waitForReference(\n reference,\n parentObject,\n key,\n response,\n map,\n path,\n !1\n );\n case \"halted\":\n return (\n initializingHandler\n ? ((parentObject = initializingHandler), parentObject.deps++)\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n }),\n null\n );\n default:\n return (\n initializingHandler\n ? ((initializingHandler.errored = !0),\n (initializingHandler.value = null),\n (initializingHandler.reason = reference.reason))\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: reference.reason,\n deps: 0,\n errored: !0\n }),\n null\n );\n }\n }\n function createMap(response, model) {\n return new Map(model);\n }\n function createSet(response, model) {\n return new Set(model);\n }\n function createBlob(response, model) {\n return new Blob(model.slice(1), { type: model[0] });\n }\n function createFormData(response, model) {\n response = new FormData();\n for (var i = 0; i < model.length; i++)\n response.append(model[i][0], model[i][1]);\n return response;\n }\n function applyConstructor(response, model, parentObject) {\n Object.setPrototypeOf(parentObject, model.prototype);\n }\n function defineLazyGetter(response, chunk, parentObject, key) {\n \"__proto__\" !== key &&\n Object.defineProperty(parentObject, key, {\n get: function () {\n \"resolved_model\" === chunk.status && initializeModelChunk(chunk);\n switch (chunk.status) {\n case \"fulfilled\":\n return chunk.value;\n case \"rejected\":\n throw chunk.reason;\n }\n return \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\";\n },\n enumerable: !0,\n configurable: !1\n });\n return null;\n }\n function extractIterator(response, model) {\n return model[Symbol.iterator]();\n }\n function createModel(response, model) {\n return model;\n }\n function getInferredFunctionApproximate(code) {\n code = code.startsWith(\"Object.defineProperty(\")\n ? code.slice(22)\n : code.startsWith(\"(\")\n ? code.slice(1)\n : code;\n if (code.startsWith(\"async function\")) {\n var idx = code.indexOf(\"(\", 14);\n if (-1 !== idx)\n return (\n (code = code.slice(14, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":async function(){}})\")[\n code\n ]\n );\n } else if (code.startsWith(\"function\")) {\n if (((idx = code.indexOf(\"(\", 8)), -1 !== idx))\n return (\n (code = code.slice(8, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":function(){}})\")[code]\n );\n } else if (\n code.startsWith(\"class\") &&\n ((idx = code.indexOf(\"{\", 5)), -1 !== idx)\n )\n return (\n (code = code.slice(5, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":class{}})\")[code]\n );\n return function () {};\n }\n function parseModelString(response, parentObject, key, value) {\n if (\"$\" === value[0]) {\n if (\"$\" === value)\n return (\n null !== initializingHandler &&\n \"0\" === key &&\n (initializingHandler = {\n parent: initializingHandler,\n chunk: null,\n value: null,\n reason: null,\n deps: 0,\n errored: !1\n }),\n REACT_ELEMENT_TYPE\n );\n switch (value[1]) {\n case \"$\":\n return value.slice(1);\n case \"L\":\n return (\n (parentObject = parseInt(value.slice(2), 16)),\n (response = getChunk(response, parentObject)),\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(response),\n createLazyChunkWrapper(response, 0)\n );\n case \"@\":\n return (\n (parentObject = parseInt(value.slice(2), 16)),\n (response = getChunk(response, parentObject)),\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(response),\n response\n );\n case \"S\":\n return Symbol.for(value.slice(2));\n case \"h\":\n var ref = value.slice(2);\n return getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n loadServerReference\n );\n case \"T\":\n parentObject = \"$\" + value.slice(2);\n response = response._tempRefs;\n if (null == response)\n throw Error(\n \"Missing a temporary reference set but the RSC response returned a temporary reference. Pass a temporaryReference option with the set that was used with the reply.\"\n );\n return response.get(parentObject);\n case \"Q\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createMap)\n );\n case \"W\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createSet)\n );\n case \"B\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createBlob)\n );\n case \"K\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createFormData)\n );\n case \"Z\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n resolveErrorDev\n )\n );\n case \"i\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n extractIterator\n )\n );\n case \"I\":\n return Infinity;\n case \"-\":\n return \"$-0\" === value ? -0 : -Infinity;\n case \"N\":\n return NaN;\n case \"u\":\n return;\n case \"D\":\n return new Date(Date.parse(value.slice(2)));\n case \"n\":\n return BigInt(value.slice(2));\n case \"P\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n applyConstructor\n )\n );\n case \"E\":\n response = value.slice(2);\n try {\n if (!mightHaveStaticConstructor.test(response))\n return (0, eval)(response);\n } catch (x) {}\n try {\n if (\n ((ref = getInferredFunctionApproximate(response)),\n response.startsWith(\"Object.defineProperty(\"))\n ) {\n var idx = response.lastIndexOf(',\"name\",{value:\"');\n if (-1 !== idx) {\n var name = JSON.parse(\n response.slice(idx + 16 - 1, response.length - 2)\n );\n Object.defineProperty(ref, \"name\", { value: name });\n }\n }\n } catch (_) {\n ref = function () {};\n }\n return ref;\n case \"Y\":\n if (\n 2 < value.length &&\n (ref = response._debugChannel && response._debugChannel.callback)\n ) {\n if (\"@\" === value[2])\n return (\n (parentObject = value.slice(3)),\n (key = parseInt(parentObject, 16)),\n response._chunks.has(key) || ref(\"P:\" + parentObject),\n getChunk(response, key)\n );\n value = value.slice(2);\n idx = parseInt(value, 16);\n response._chunks.has(idx) || ref(\"Q:\" + value);\n ref = getChunk(response, idx);\n return \"fulfilled\" === ref.status\n ? ref.value\n : defineLazyGetter(response, ref, parentObject, key);\n }\n \"__proto__\" !== key &&\n Object.defineProperty(parentObject, key, {\n get: function () {\n return \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\";\n },\n enumerable: !0,\n configurable: !1\n });\n return null;\n default:\n return (\n (ref = value.slice(1)),\n getOutlinedModel(response, ref, parentObject, key, createModel)\n );\n }\n }\n return value;\n }\n function missingCall() {\n throw Error(\n 'Trying to call a function from \"use server\" but the callServer option was not implemented in your router runtime.'\n );\n }\n function markIOStarted() {\n this._debugIOStarted = !0;\n }\n function ResponseInstance(\n bundlerConfig,\n serverReferenceConfig,\n moduleLoading,\n callServer,\n encodeFormAction,\n nonce,\n temporaryReferences,\n findSourceMapURL,\n replayConsole,\n environmentName,\n debugStartTime,\n debugEndTime,\n debugChannel\n ) {\n var chunks = new Map();\n this._bundlerConfig = bundlerConfig;\n this._serverReferenceConfig = serverReferenceConfig;\n this._moduleLoading = moduleLoading;\n this._callServer = void 0 !== callServer ? callServer : missingCall;\n this._encodeFormAction = encodeFormAction;\n this._nonce = nonce;\n this._chunks = chunks;\n this._stringDecoder = new util.TextDecoder();\n this._fromJSON = null;\n this._closed = !1;\n this._closedReason = null;\n this._tempRefs = temporaryReferences;\n this._timeOrigin = 0;\n this._pendingInitialRender = null;\n this._pendingChunks = 0;\n this._weakResponse = { weak: new WeakRef(this), response: this };\n this._debugRootOwner = bundlerConfig =\n void 0 === ReactSharedInteralsServer ||\n null === ReactSharedInteralsServer.A\n ? null\n : ReactSharedInteralsServer.A.getOwner();\n this._debugRootStack =\n null !== bundlerConfig ? Error(\"react-stack-top-frame\") : null;\n environmentName = void 0 === environmentName ? \"Server\" : environmentName;\n supportsCreateTask &&\n (this._debugRootTask = console.createTask(\n '\"use ' + environmentName.toLowerCase() + '\"'\n ));\n this._debugStartTime =\n null == debugStartTime ? performance.now() : debugStartTime;\n this._debugIOStarted = !1;\n setTimeout(markIOStarted.bind(this), 0);\n this._debugEndTime = null == debugEndTime ? null : debugEndTime;\n this._debugFindSourceMapURL = findSourceMapURL;\n this._debugChannel = debugChannel;\n this._blockedConsole = null;\n this._replayConsole = replayConsole;\n this._rootEnvironmentName = environmentName;\n debugChannel &&\n (null === debugChannelRegistry\n ? (closeDebugChannel(debugChannel), (this._debugChannel = void 0))\n : debugChannelRegistry.register(this, debugChannel, this));\n replayConsole && markAllTracksInOrder();\n this._fromJSON = createFromJSONCallback(this);\n }\n function createStreamState(weakResponse, streamDebugValue) {\n var streamState = {\n _rowState: 0,\n _rowID: 0,\n _rowTag: 0,\n _rowLength: 0,\n _buffer: []\n };\n weakResponse = unwrapWeakResponse(weakResponse);\n var debugValuePromise = Promise.resolve(streamDebugValue);\n debugValuePromise.status = \"fulfilled\";\n debugValuePromise.value = streamDebugValue;\n streamState._debugInfo = {\n name: \"rsc stream\",\n start: weakResponse._debugStartTime,\n end: weakResponse._debugStartTime,\n byteSize: 0,\n value: debugValuePromise,\n owner: weakResponse._debugRootOwner,\n debugStack: weakResponse._debugRootStack,\n debugTask: weakResponse._debugRootTask\n };\n streamState._debugTargetChunkSize = MIN_CHUNK_SIZE;\n return streamState;\n }\n function incrementChunkDebugInfo(streamState, chunkLength) {\n var debugInfo = streamState._debugInfo,\n endTime = performance.now(),\n previousEndTime = debugInfo.end;\n chunkLength = debugInfo.byteSize + chunkLength;\n chunkLength > streamState._debugTargetChunkSize ||\n endTime > previousEndTime + 10\n ? ((streamState._debugInfo = {\n name: debugInfo.name,\n start: debugInfo.start,\n end: endTime,\n byteSize: chunkLength,\n value: debugInfo.value,\n owner: debugInfo.owner,\n debugStack: debugInfo.debugStack,\n debugTask: debugInfo.debugTask\n }),\n (streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE))\n : ((debugInfo.end = endTime), (debugInfo.byteSize = chunkLength));\n }\n function addAsyncInfo(chunk, asyncInfo) {\n var value = resolveLazy(chunk.value);\n \"object\" !== typeof value ||\n null === value ||\n (!isArrayImpl(value) &&\n \"function\" !== typeof value[ASYNC_ITERATOR] &&\n value.$$typeof !== REACT_ELEMENT_TYPE &&\n value.$$typeof !== REACT_LAZY_TYPE)\n ? chunk._debugInfo.push(asyncInfo)\n : isArrayImpl(value._debugInfo)\n ? value._debugInfo.push(asyncInfo)\n : Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: [asyncInfo]\n });\n }\n function resolveChunkDebugInfo(response, streamState, chunk) {\n response._debugIOStarted &&\n ((response = { awaited: streamState._debugInfo }),\n \"pending\" === chunk.status || \"blocked\" === chunk.status\n ? ((response = addAsyncInfo.bind(null, chunk, response)),\n chunk.then(response, response))\n : addAsyncInfo(chunk, response));\n }\n function resolveBuffer(response, id, buffer, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk && \"pending\" !== chunk.status\n ? chunk.reason.enqueueValue(buffer)\n : (chunk && releasePendingChunk(response, chunk),\n (buffer = new ReactPromise(\"fulfilled\", buffer, null)),\n resolveChunkDebugInfo(response, streamState, buffer),\n chunks.set(id, buffer));\n }\n function resolveModule(response, id, model, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n model = JSON.parse(model, response._fromJSON);\n var clientReference = resolveClientReference(\n response._bundlerConfig,\n model\n );\n prepareDestinationWithChunks(\n response._moduleLoading,\n model[1],\n response._nonce\n );\n if ((model = preloadModule(clientReference))) {\n if (chunk) {\n releasePendingChunk(response, chunk);\n var blockedChunk = chunk;\n blockedChunk.status = \"blocked\";\n } else\n (blockedChunk = new ReactPromise(\"blocked\", null, null)),\n chunks.set(id, blockedChunk);\n resolveChunkDebugInfo(response, streamState, blockedChunk);\n model.then(\n function () {\n return resolveModuleChunk(response, blockedChunk, clientReference);\n },\n function (error) {\n return triggerErrorOnChunk(response, blockedChunk, error);\n }\n );\n } else\n chunk\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n resolveModuleChunk(response, chunk, clientReference))\n : ((chunk = new ReactPromise(\n \"resolved_module\",\n clientReference,\n null\n )),\n resolveChunkDebugInfo(response, streamState, chunk),\n chunks.set(id, chunk));\n }\n function resolveStream(response, id, stream, controller, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n if (chunk) {\n if (\n (resolveChunkDebugInfo(response, streamState, chunk),\n \"pending\" === chunk.status)\n ) {\n id = chunk.value;\n if (null != chunk._debugChunk) {\n streamState = initializingHandler;\n chunks = initializingChunk;\n initializingHandler = null;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n try {\n if (\n (initializeDebugChunk(response, chunk),\n null !== initializingHandler &&\n !initializingHandler.errored &&\n 0 < initializingHandler.deps)\n ) {\n initializingHandler.value = stream;\n initializingHandler.reason = controller;\n initializingHandler.chunk = chunk;\n return;\n }\n } finally {\n (initializingHandler = streamState), (initializingChunk = chunks);\n }\n }\n chunk.status = \"fulfilled\";\n chunk.value = stream;\n chunk.reason = controller;\n null !== id\n ? wakeChunk(response, id, chunk.value, chunk)\n : (filterDebugInfo(response, chunk),\n moveDebugInfoFromChunkToInnerValue(chunk, stream));\n }\n } else\n 0 === response._pendingChunks++ &&\n (response._weakResponse.response = response),\n (stream = new ReactPromise(\"fulfilled\", stream, controller)),\n resolveChunkDebugInfo(response, streamState, stream),\n chunks.set(id, stream);\n }\n function startReadableStream(response, id, type, streamState) {\n var controller = null,\n closed = !1;\n type = new ReadableStream({\n type: type,\n start: function (c) {\n controller = c;\n }\n });\n var previousBlockedChunk = null;\n resolveStream(\n response,\n id,\n type,\n {\n enqueueValue: function (value) {\n null === previousBlockedChunk\n ? controller.enqueue(value)\n : previousBlockedChunk.then(function () {\n controller.enqueue(value);\n });\n },\n enqueueModel: function (json) {\n if (null === previousBlockedChunk) {\n var chunk = createResolvedModelChunk(response, json);\n initializeModelChunk(chunk);\n \"fulfilled\" === chunk.status\n ? controller.enqueue(chunk.value)\n : (chunk.then(\n function (v) {\n return controller.enqueue(v);\n },\n function (e) {\n return controller.error(e);\n }\n ),\n (previousBlockedChunk = chunk));\n } else {\n chunk = previousBlockedChunk;\n var _chunk3 = createPendingChunk(response);\n _chunk3.then(\n function (v) {\n return controller.enqueue(v);\n },\n function (e) {\n return controller.error(e);\n }\n );\n previousBlockedChunk = _chunk3;\n chunk.then(function () {\n previousBlockedChunk === _chunk3 &&\n (previousBlockedChunk = null);\n resolveModelChunk(response, _chunk3, json);\n });\n }\n },\n close: function () {\n if (!closed)\n if (((closed = !0), null === previousBlockedChunk))\n controller.close();\n else {\n var blockedChunk = previousBlockedChunk;\n previousBlockedChunk = null;\n blockedChunk.then(function () {\n return controller.close();\n });\n }\n },\n error: function (error) {\n if (!closed)\n if (((closed = !0), null === previousBlockedChunk))\n controller.error(error);\n else {\n var blockedChunk = previousBlockedChunk;\n previousBlockedChunk = null;\n blockedChunk.then(function () {\n return controller.error(error);\n });\n }\n }\n },\n streamState\n );\n }\n function asyncIterator() {\n return this;\n }\n function createIterator(next) {\n next = { next: next };\n next[ASYNC_ITERATOR] = asyncIterator;\n return next;\n }\n function startAsyncIterable(response, id, iterator, streamState) {\n var buffer = [],\n closed = !1,\n nextWriteIndex = 0,\n iterable = {};\n iterable[ASYNC_ITERATOR] = function () {\n var nextReadIndex = 0;\n return createIterator(function (arg) {\n if (void 0 !== arg)\n throw Error(\n \"Values cannot be passed to next() of AsyncIterables passed to Client Components.\"\n );\n if (nextReadIndex === buffer.length) {\n if (closed)\n return new ReactPromise(\n \"fulfilled\",\n { done: !0, value: void 0 },\n null\n );\n buffer[nextReadIndex] = createPendingChunk(response);\n }\n return buffer[nextReadIndex++];\n });\n };\n resolveStream(\n response,\n id,\n iterator ? iterable[ASYNC_ITERATOR]() : iterable,\n {\n enqueueValue: function (value) {\n if (nextWriteIndex === buffer.length)\n buffer[nextWriteIndex] = new ReactPromise(\n \"fulfilled\",\n { done: !1, value: value },\n null\n );\n else {\n var chunk = buffer[nextWriteIndex],\n resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"fulfilled\";\n chunk.value = { done: !1, value: value };\n chunk.reason = null;\n null !== resolveListeners &&\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n );\n }\n nextWriteIndex++;\n },\n enqueueModel: function (value) {\n nextWriteIndex === buffer.length\n ? (buffer[nextWriteIndex] = createResolvedIteratorResultChunk(\n response,\n value,\n !1\n ))\n : resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex],\n value,\n !1\n );\n nextWriteIndex++;\n },\n close: function (value) {\n if (!closed)\n for (\n closed = !0,\n nextWriteIndex === buffer.length\n ? (buffer[nextWriteIndex] =\n createResolvedIteratorResultChunk(response, value, !0))\n : resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex],\n value,\n !0\n ),\n nextWriteIndex++;\n nextWriteIndex < buffer.length;\n\n )\n resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex++],\n '\"$undefined\"',\n !0\n );\n },\n error: function (error) {\n if (!closed)\n for (\n closed = !0,\n nextWriteIndex === buffer.length &&\n (buffer[nextWriteIndex] = createPendingChunk(response));\n nextWriteIndex < buffer.length;\n\n )\n triggerErrorOnChunk(response, buffer[nextWriteIndex++], error);\n }\n },\n streamState\n );\n }\n function resolveErrorDev(response, errorInfo) {\n var name = errorInfo.name,\n env = errorInfo.env;\n var error = buildFakeCallStack(\n response,\n errorInfo.stack,\n env,\n !1,\n Error.bind(\n null,\n errorInfo.message ||\n \"An error occurred in the Server Components render but no message was provided\"\n )\n );\n var ownerTask = null;\n null != errorInfo.owner &&\n ((errorInfo = errorInfo.owner.slice(1)),\n (errorInfo = getOutlinedModel(\n response,\n errorInfo,\n {},\n \"\",\n createModel\n )),\n null !== errorInfo &&\n (ownerTask = initializeFakeTask(response, errorInfo)));\n null === ownerTask\n ? ((response = getRootTask(response, env)),\n (error = null != response ? response.run(error) : error()))\n : (error = ownerTask.run(error));\n error.name = name;\n error.environmentName = env;\n return error;\n }\n function createFakeFunction(\n name,\n filename,\n sourceMap,\n line,\n col,\n enclosingLine,\n enclosingCol,\n environmentName\n ) {\n name || (name = \"\");\n var encodedName = JSON.stringify(name);\n 1 > enclosingLine ? (enclosingLine = 0) : enclosingLine--;\n 1 > enclosingCol ? (enclosingCol = 0) : enclosingCol--;\n 1 > line ? (line = 0) : line--;\n 1 > col ? (col = 0) : col--;\n if (\n line < enclosingLine ||\n (line === enclosingLine && col < enclosingCol)\n )\n enclosingCol = enclosingLine = 0;\n 1 > line\n ? ((line = encodedName.length + 3),\n (enclosingCol -= line),\n 0 > enclosingCol && (enclosingCol = 0),\n (col = col - enclosingCol - line - 3),\n 0 > col && (col = 0),\n (encodedName =\n \"({\" +\n encodedName +\n \":\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \" \".repeat(col) +\n \"_()})\"))\n : 1 > enclosingLine\n ? ((enclosingCol -= encodedName.length + 3),\n 0 > enclosingCol && (enclosingCol = 0),\n (encodedName =\n \"({\" +\n encodedName +\n \":\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \"\\n\".repeat(line - enclosingLine) +\n \" \".repeat(col) +\n \"_()})\"))\n : enclosingLine === line\n ? ((col = col - enclosingCol - 3),\n 0 > col && (col = 0),\n (encodedName =\n \"\\n\".repeat(enclosingLine - 1) +\n \"({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \" \".repeat(col) +\n \"_()})\"))\n : (encodedName =\n \"\\n\".repeat(enclosingLine - 1) +\n \"({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \"\\n\".repeat(line - enclosingLine) +\n \" \".repeat(col) +\n \"_()})\");\n encodedName =\n 1 > enclosingLine\n ? encodedName +\n \"\\n/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */\"\n : \"/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */\" +\n encodedName;\n filename.startsWith(\"/\") && (filename = \"file://\" + filename);\n sourceMap\n ? ((encodedName +=\n \"\\n//# sourceURL=about://React/\" +\n encodeURIComponent(environmentName) +\n \"/\" +\n encodeURI(filename) +\n \"?\" +\n fakeFunctionIdx++),\n (encodedName += \"\\n//# sourceMappingURL=\" + sourceMap))\n : (encodedName = filename\n ? encodedName + (\"\\n//# sourceURL=\" + encodeURI(filename))\n : encodedName + \"\\n//# sourceURL=\");\n try {\n var fn = (0, eval)(encodedName)[name];\n } catch (x) {\n fn = function (_) {\n return _();\n };\n }\n return fn;\n }\n function buildFakeCallStack(\n response,\n stack,\n environmentName,\n useEnclosingLine,\n innerCall\n ) {\n for (var i = 0; i < stack.length; i++) {\n var frame = stack[i],\n frameKey =\n frame.join(\"-\") +\n \"-\" +\n environmentName +\n (useEnclosingLine ? \"-e\" : \"-n\"),\n fn = fakeFunctionCache.get(frameKey);\n if (void 0 === fn) {\n fn = frame[0];\n var filename = frame[1],\n line = frame[2],\n col = frame[3],\n enclosingLine = frame[4];\n frame = frame[5];\n var findSourceMapURL = response._debugFindSourceMapURL;\n findSourceMapURL = findSourceMapURL\n ? findSourceMapURL(filename, environmentName)\n : null;\n fn = createFakeFunction(\n fn,\n filename,\n findSourceMapURL,\n line,\n col,\n useEnclosingLine ? line : enclosingLine,\n useEnclosingLine ? col : frame,\n environmentName\n );\n fakeFunctionCache.set(frameKey, fn);\n }\n innerCall = fn.bind(null, innerCall);\n }\n return innerCall;\n }\n function getRootTask(response, childEnvironmentName) {\n var rootTask = response._debugRootTask;\n return rootTask\n ? response._rootEnvironmentName !== childEnvironmentName\n ? ((response = console.createTask.bind(\n console,\n '\"use ' + childEnvironmentName.toLowerCase() + '\"'\n )),\n rootTask.run(response))\n : rootTask\n : null;\n }\n function initializeFakeTask(response, debugInfo) {\n if (!supportsCreateTask || null == debugInfo.stack) return null;\n var cachedEntry = debugInfo.debugTask;\n if (void 0 !== cachedEntry) return cachedEntry;\n var useEnclosingLine = void 0 === debugInfo.key,\n stack = debugInfo.stack,\n env =\n null == debugInfo.env ? response._rootEnvironmentName : debugInfo.env;\n cachedEntry =\n null == debugInfo.owner || null == debugInfo.owner.env\n ? response._rootEnvironmentName\n : debugInfo.owner.env;\n var ownerTask =\n null == debugInfo.owner\n ? null\n : initializeFakeTask(response, debugInfo.owner);\n env =\n env !== cachedEntry\n ? '\"use ' + env.toLowerCase() + '\"'\n : void 0 !== debugInfo.key\n ? \"<\" + (debugInfo.name || \"...\") + \">\"\n : void 0 !== debugInfo.name\n ? debugInfo.name || \"unknown\"\n : \"await \" + (debugInfo.awaited.name || \"unknown\");\n env = console.createTask.bind(console, env);\n useEnclosingLine = buildFakeCallStack(\n response,\n stack,\n cachedEntry,\n useEnclosingLine,\n env\n );\n null === ownerTask\n ? ((response = getRootTask(response, cachedEntry)),\n (response =\n null != response\n ? response.run(useEnclosingLine)\n : useEnclosingLine()))\n : (response = ownerTask.run(useEnclosingLine));\n return (debugInfo.debugTask = response);\n }\n function fakeJSXCallSite() {\n return Error(\"react-stack-top-frame\");\n }\n function initializeFakeStack(response, debugInfo) {\n if (void 0 === debugInfo.debugStack) {\n null != debugInfo.stack &&\n (debugInfo.debugStack = createFakeJSXCallStackInDEV(\n response,\n debugInfo.stack,\n null == debugInfo.env ? \"\" : debugInfo.env\n ));\n var owner = debugInfo.owner;\n null != owner &&\n (initializeFakeStack(response, owner),\n void 0 === owner.debugLocation &&\n null != debugInfo.debugStack &&\n (owner.debugLocation = debugInfo.debugStack));\n }\n }\n function initializeDebugInfo(response, debugInfo) {\n void 0 !== debugInfo.stack && initializeFakeTask(response, debugInfo);\n if (null == debugInfo.owner && null != response._debugRootOwner) {\n var _componentInfoOrAsyncInfo = debugInfo;\n _componentInfoOrAsyncInfo.owner = response._debugRootOwner;\n _componentInfoOrAsyncInfo.stack = null;\n _componentInfoOrAsyncInfo.debugStack = response._debugRootStack;\n _componentInfoOrAsyncInfo.debugTask = response._debugRootTask;\n } else\n void 0 !== debugInfo.stack && initializeFakeStack(response, debugInfo);\n \"number\" === typeof debugInfo.time &&\n (debugInfo = { time: debugInfo.time + response._timeOrigin });\n return debugInfo;\n }\n function getCurrentStackInDEV() {\n var owner = currentOwnerInDEV;\n if (null === owner) return \"\";\n try {\n var info = \"\";\n if (owner.owner || \"string\" !== typeof owner.name) {\n for (; owner; ) {\n var ownerStack = owner.debugStack;\n if (null != ownerStack) {\n if ((owner = owner.owner)) {\n var JSCompiler_temp_const = info;\n var error = ownerStack,\n prevPrepareStackTrace = Error.prepareStackTrace;\n Error.prepareStackTrace = prepareStackTrace;\n var stack = error.stack;\n Error.prepareStackTrace = prevPrepareStackTrace;\n stack.startsWith(\"Error: react-stack-top-frame\\n\") &&\n (stack = stack.slice(29));\n var idx = stack.indexOf(\"\\n\");\n -1 !== idx && (stack = stack.slice(idx + 1));\n idx = stack.indexOf(\"react_stack_bottom_frame\");\n -1 !== idx && (idx = stack.lastIndexOf(\"\\n\", idx));\n var JSCompiler_inline_result =\n -1 !== idx ? (stack = stack.slice(0, idx)) : \"\";\n info =\n JSCompiler_temp_const + (\"\\n\" + JSCompiler_inline_result);\n }\n } else break;\n }\n var JSCompiler_inline_result$jscomp$0 = info;\n } else {\n JSCompiler_temp_const = owner.name;\n if (void 0 === prefix)\n try {\n throw Error();\n } catch (x) {\n (prefix =\n ((error = x.stack.trim().match(/\\n( *(at )?)/)) && error[1]) ||\n \"\"),\n (suffix =\n -1 < x.stack.indexOf(\"\\n at\")\n ? \" ()\"\n : -1 < x.stack.indexOf(\"@\")\n ? \"@unknown:0:0\"\n : \"\");\n }\n JSCompiler_inline_result$jscomp$0 =\n \"\\n\" + prefix + JSCompiler_temp_const + suffix;\n }\n } catch (x) {\n JSCompiler_inline_result$jscomp$0 =\n \"\\nError generating stack: \" + x.message + \"\\n\" + x.stack;\n }\n return JSCompiler_inline_result$jscomp$0;\n }\n function resolveConsoleEntry(response, json) {\n if (response._replayConsole) {\n var blockedChunk = response._blockedConsole;\n if (null == blockedChunk)\n (blockedChunk = createResolvedModelChunk(response, json)),\n initializeModelChunk(blockedChunk),\n \"fulfilled\" === blockedChunk.status\n ? replayConsoleWithCallStackInDEV(response, blockedChunk.value)\n : (blockedChunk.then(\n function (v) {\n return replayConsoleWithCallStackInDEV(response, v);\n },\n function () {}\n ),\n (response._blockedConsole = blockedChunk));\n else {\n var _chunk4 = createPendingChunk(response);\n _chunk4.then(\n function (v) {\n return replayConsoleWithCallStackInDEV(response, v);\n },\n function () {}\n );\n response._blockedConsole = _chunk4;\n var unblock = function () {\n response._blockedConsole === _chunk4 &&\n (response._blockedConsole = null);\n resolveModelChunk(response, _chunk4, json);\n };\n blockedChunk.then(unblock, unblock);\n }\n }\n }\n function initializeIOInfo(response, ioInfo) {\n void 0 !== ioInfo.stack &&\n (initializeFakeTask(response, ioInfo),\n initializeFakeStack(response, ioInfo));\n ioInfo.start += response._timeOrigin;\n ioInfo.end += response._timeOrigin;\n if (response._replayConsole) {\n response = response._rootEnvironmentName;\n var promise = ioInfo.value;\n if (promise)\n switch (promise.status) {\n case \"fulfilled\":\n logIOInfo(ioInfo, response, promise.value);\n break;\n case \"rejected\":\n logIOInfoErrored(ioInfo, response, promise.reason);\n break;\n default:\n promise.then(\n logIOInfo.bind(null, ioInfo, response),\n logIOInfoErrored.bind(null, ioInfo, response)\n );\n }\n else logIOInfo(ioInfo, response, void 0);\n }\n }\n function resolveIOInfo(response, id, model) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk\n ? (resolveModelChunk(response, chunk, model),\n \"resolved_model\" === chunk.status && initializeModelChunk(chunk))\n : ((chunk = createResolvedModelChunk(response, model)),\n chunks.set(id, chunk),\n initializeModelChunk(chunk));\n \"fulfilled\" === chunk.status\n ? initializeIOInfo(response, chunk.value)\n : chunk.then(\n function (v) {\n initializeIOInfo(response, v);\n },\n function () {}\n );\n }\n function mergeBuffer(buffer, lastChunk) {\n for (\n var l = buffer.length, byteLength = lastChunk.length, i = 0;\n i < l;\n i++\n )\n byteLength += buffer[i].byteLength;\n byteLength = new Uint8Array(byteLength);\n for (var _i3 = (i = 0); _i3 < l; _i3++) {\n var chunk = buffer[_i3];\n byteLength.set(chunk, i);\n i += chunk.byteLength;\n }\n byteLength.set(lastChunk, i);\n return byteLength;\n }\n function resolveTypedArray(\n response,\n id,\n buffer,\n lastChunk,\n constructor,\n bytesPerElement,\n streamState\n ) {\n buffer =\n 0 === buffer.length && 0 === lastChunk.byteOffset % bytesPerElement\n ? lastChunk\n : mergeBuffer(buffer, lastChunk);\n constructor = new constructor(\n buffer.buffer,\n buffer.byteOffset,\n buffer.byteLength / bytesPerElement\n );\n resolveBuffer(response, id, constructor, streamState);\n }\n function flushComponentPerformance(\n response$jscomp$0,\n root,\n trackIdx$jscomp$6,\n trackTime,\n parentEndTime\n ) {\n if (!isArrayImpl(root._children)) {\n var previousResult = root._children,\n previousEndTime = previousResult.endTime;\n if (\n -Infinity < parentEndTime &&\n parentEndTime < previousEndTime &&\n null !== previousResult.component\n ) {\n var componentInfo = previousResult.component,\n trackIdx = trackIdx$jscomp$6,\n startTime = parentEndTime;\n if (supportsUserTiming && 0 <= previousEndTime && 10 > trackIdx) {\n var color =\n componentInfo.env === response$jscomp$0._rootEnvironmentName\n ? \"primary-light\"\n : \"secondary-light\",\n entryName = componentInfo.name + \" [deduped]\",\n debugTask = componentInfo.debugTask;\n debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n entryName,\n 0 > startTime ? 0 : startTime,\n previousEndTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n color\n )\n )\n : console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n previousEndTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n color\n );\n }\n }\n previousResult.track = trackIdx$jscomp$6;\n return previousResult;\n }\n var children = root._children;\n var debugInfo = root._debugInfo;\n if (0 === debugInfo.length && \"fulfilled\" === root.status) {\n var resolvedValue = resolveLazy(root.value);\n \"object\" === typeof resolvedValue &&\n null !== resolvedValue &&\n (isArrayImpl(resolvedValue) ||\n \"function\" === typeof resolvedValue[ASYNC_ITERATOR] ||\n resolvedValue.$$typeof === REACT_ELEMENT_TYPE ||\n resolvedValue.$$typeof === REACT_LAZY_TYPE) &&\n isArrayImpl(resolvedValue._debugInfo) &&\n (debugInfo = resolvedValue._debugInfo);\n }\n if (debugInfo) {\n for (var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++) {\n var info = debugInfo[i];\n \"number\" === typeof info.time && (startTime$jscomp$0 = info.time);\n if (\"string\" === typeof info.name) {\n startTime$jscomp$0 < trackTime && trackIdx$jscomp$6++;\n trackTime = startTime$jscomp$0;\n break;\n }\n }\n for (var _i4 = debugInfo.length - 1; 0 <= _i4; _i4--) {\n var _info = debugInfo[_i4];\n if (\"number\" === typeof _info.time && _info.time > parentEndTime) {\n parentEndTime = _info.time;\n break;\n }\n }\n }\n var result = {\n track: trackIdx$jscomp$6,\n endTime: -Infinity,\n component: null\n };\n root._children = result;\n for (\n var childrenEndTime = -Infinity,\n childTrackIdx = trackIdx$jscomp$6,\n childTrackTime = trackTime,\n _i5 = 0;\n _i5 < children.length;\n _i5++\n ) {\n var childResult = flushComponentPerformance(\n response$jscomp$0,\n children[_i5],\n childTrackIdx,\n childTrackTime,\n parentEndTime\n );\n null !== childResult.component &&\n (result.component = childResult.component);\n childTrackIdx = childResult.track;\n var childEndTime = childResult.endTime;\n childEndTime > childTrackTime && (childTrackTime = childEndTime);\n childEndTime > childrenEndTime && (childrenEndTime = childEndTime);\n }\n if (debugInfo)\n for (\n var componentEndTime = 0,\n isLastComponent = !0,\n endTime = -1,\n endTimeIdx = -1,\n _i6 = debugInfo.length - 1;\n 0 <= _i6;\n _i6--\n ) {\n var _info2 = debugInfo[_i6];\n if (\"number\" === typeof _info2.time) {\n 0 === componentEndTime && (componentEndTime = _info2.time);\n var time = _info2.time;\n if (-1 < endTimeIdx)\n for (var j = endTimeIdx - 1; j > _i6; j--) {\n var candidateInfo = debugInfo[j];\n if (\"string\" === typeof candidateInfo.name) {\n componentEndTime > childrenEndTime &&\n (childrenEndTime = componentEndTime);\n var componentInfo$jscomp$0 = candidateInfo,\n response = response$jscomp$0,\n componentInfo$jscomp$1 = componentInfo$jscomp$0,\n trackIdx$jscomp$0 = trackIdx$jscomp$6,\n startTime$jscomp$1 = time,\n componentEndTime$jscomp$0 = componentEndTime,\n childrenEndTime$jscomp$0 = childrenEndTime;\n if (\n isLastComponent &&\n \"rejected\" === root.status &&\n root.reason !== response._closedReason\n ) {\n var componentInfo$jscomp$2 = componentInfo$jscomp$1,\n trackIdx$jscomp$1 = trackIdx$jscomp$0,\n startTime$jscomp$2 = startTime$jscomp$1,\n childrenEndTime$jscomp$1 = childrenEndTime$jscomp$0,\n error = root.reason;\n if (supportsUserTiming) {\n var env = componentInfo$jscomp$2.env,\n name = componentInfo$jscomp$2.name,\n entryName$jscomp$0 =\n env === response._rootEnvironmentName ||\n void 0 === env\n ? name\n : name + \" [\" + env + \"]\",\n measureName = \"\\u200b\" + entryName$jscomp$0,\n properties = [\n [\n \"Error\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]\n ];\n null != componentInfo$jscomp$2.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$2.key,\n properties,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$2.props &&\n addObjectToProperties(\n componentInfo$jscomp$2.props,\n properties,\n 0,\n \"\"\n );\n performance.measure(measureName, {\n start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2,\n end: childrenEndTime$jscomp$1,\n detail: {\n devtools: {\n color: \"error\",\n track: trackNames[trackIdx$jscomp$1],\n trackGroup: \"Server Components \\u269b\",\n tooltipText: entryName$jscomp$0 + \" Errored\",\n properties: properties\n }\n }\n });\n performance.clearMeasures(measureName);\n }\n } else {\n var componentInfo$jscomp$3 = componentInfo$jscomp$1,\n trackIdx$jscomp$2 = trackIdx$jscomp$0,\n startTime$jscomp$3 = startTime$jscomp$1,\n childrenEndTime$jscomp$2 = childrenEndTime$jscomp$0;\n if (\n supportsUserTiming &&\n 0 <= childrenEndTime$jscomp$2 &&\n 10 > trackIdx$jscomp$2\n ) {\n var env$jscomp$0 = componentInfo$jscomp$3.env,\n name$jscomp$0 = componentInfo$jscomp$3.name,\n isPrimaryEnv =\n env$jscomp$0 === response._rootEnvironmentName,\n selfTime =\n componentEndTime$jscomp$0 - startTime$jscomp$3,\n color$jscomp$0 =\n 0.5 > selfTime\n ? isPrimaryEnv\n ? \"primary-light\"\n : \"secondary-light\"\n : 50 > selfTime\n ? isPrimaryEnv\n ? \"primary\"\n : \"secondary\"\n : 500 > selfTime\n ? isPrimaryEnv\n ? \"primary-dark\"\n : \"secondary-dark\"\n : \"error\",\n debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask,\n measureName$jscomp$0 =\n \"\\u200b\" +\n (isPrimaryEnv || void 0 === env$jscomp$0\n ? name$jscomp$0\n : name$jscomp$0 + \" [\" + env$jscomp$0 + \"]\");\n if (debugTask$jscomp$0) {\n var properties$jscomp$0 = [];\n null != componentInfo$jscomp$3.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$3.key,\n properties$jscomp$0,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$3.props &&\n addObjectToProperties(\n componentInfo$jscomp$3.props,\n properties$jscomp$0,\n 0,\n \"\"\n );\n debugTask$jscomp$0.run(\n performance.measure.bind(\n performance,\n measureName$jscomp$0,\n {\n start:\n 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,\n end: childrenEndTime$jscomp$2,\n detail: {\n devtools: {\n color: color$jscomp$0,\n track: trackNames[trackIdx$jscomp$2],\n trackGroup: \"Server Components \\u269b\",\n properties: properties$jscomp$0\n }\n }\n }\n )\n );\n performance.clearMeasures(measureName$jscomp$0);\n } else\n console.timeStamp(\n measureName$jscomp$0,\n 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,\n childrenEndTime$jscomp$2,\n trackNames[trackIdx$jscomp$2],\n \"Server Components \\u269b\",\n color$jscomp$0\n );\n }\n }\n componentEndTime = time;\n result.component = componentInfo$jscomp$0;\n isLastComponent = !1;\n } else if (\n candidateInfo.awaited &&\n null != candidateInfo.awaited.env\n ) {\n endTime > childrenEndTime && (childrenEndTime = endTime);\n var asyncInfo = candidateInfo,\n env$jscomp$1 = response$jscomp$0._rootEnvironmentName,\n promise = asyncInfo.awaited.value;\n if (promise) {\n var thenable = promise;\n switch (thenable.status) {\n case \"fulfilled\":\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n thenable.value\n );\n break;\n case \"rejected\":\n var asyncInfo$jscomp$0 = asyncInfo,\n trackIdx$jscomp$3 = trackIdx$jscomp$6,\n startTime$jscomp$4 = time,\n endTime$jscomp$0 = endTime,\n rootEnv = env$jscomp$1,\n error$jscomp$0 = thenable.reason;\n if (supportsUserTiming && 0 < endTime$jscomp$0) {\n var description = getIODescription(error$jscomp$0),\n entryName$jscomp$1 =\n \"await \" +\n getIOShortName(\n asyncInfo$jscomp$0.awaited,\n description,\n asyncInfo$jscomp$0.env,\n rootEnv\n ),\n debugTask$jscomp$1 =\n asyncInfo$jscomp$0.debugTask ||\n asyncInfo$jscomp$0.awaited.debugTask;\n if (debugTask$jscomp$1) {\n var properties$jscomp$1 = [\n [\n \"Rejected\",\n \"object\" === typeof error$jscomp$0 &&\n null !== error$jscomp$0 &&\n \"string\" === typeof error$jscomp$0.message\n ? String(error$jscomp$0.message)\n : String(error$jscomp$0)\n ]\n ],\n tooltipText =\n getIOLongName(\n asyncInfo$jscomp$0.awaited,\n description,\n asyncInfo$jscomp$0.env,\n rootEnv\n ) + \" Rejected\";\n debugTask$jscomp$1.run(\n performance.measure.bind(\n performance,\n entryName$jscomp$1,\n {\n start:\n 0 > startTime$jscomp$4\n ? 0\n : startTime$jscomp$4,\n end: endTime$jscomp$0,\n detail: {\n devtools: {\n color: \"error\",\n track: trackNames[trackIdx$jscomp$3],\n trackGroup: \"Server Components \\u269b\",\n properties: properties$jscomp$1,\n tooltipText: tooltipText\n }\n }\n }\n )\n );\n performance.clearMeasures(entryName$jscomp$1);\n } else\n console.timeStamp(\n entryName$jscomp$1,\n 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4,\n endTime$jscomp$0,\n trackNames[trackIdx$jscomp$3],\n \"Server Components \\u269b\",\n \"error\"\n );\n }\n break;\n default:\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n void 0\n );\n }\n } else\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n void 0\n );\n }\n }\n else {\n endTime = time;\n for (var _j = debugInfo.length - 1; _j > _i6; _j--) {\n var _candidateInfo = debugInfo[_j];\n if (\"string\" === typeof _candidateInfo.name) {\n componentEndTime > childrenEndTime &&\n (childrenEndTime = componentEndTime);\n var _componentInfo = _candidateInfo,\n _env = response$jscomp$0._rootEnvironmentName,\n componentInfo$jscomp$4 = _componentInfo,\n trackIdx$jscomp$4 = trackIdx$jscomp$6,\n startTime$jscomp$5 = time,\n childrenEndTime$jscomp$3 = childrenEndTime;\n if (supportsUserTiming) {\n var env$jscomp$2 = componentInfo$jscomp$4.env,\n name$jscomp$1 = componentInfo$jscomp$4.name,\n entryName$jscomp$2 =\n env$jscomp$2 === _env || void 0 === env$jscomp$2\n ? name$jscomp$1\n : name$jscomp$1 + \" [\" + env$jscomp$2 + \"]\",\n measureName$jscomp$1 = \"\\u200b\" + entryName$jscomp$2,\n properties$jscomp$2 = [\n [\n \"Aborted\",\n \"The stream was aborted before this Component finished rendering.\"\n ]\n ];\n null != componentInfo$jscomp$4.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$4.key,\n properties$jscomp$2,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$4.props &&\n addObjectToProperties(\n componentInfo$jscomp$4.props,\n properties$jscomp$2,\n 0,\n \"\"\n );\n performance.measure(measureName$jscomp$1, {\n start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5,\n end: childrenEndTime$jscomp$3,\n detail: {\n devtools: {\n color: \"warning\",\n track: trackNames[trackIdx$jscomp$4],\n trackGroup: \"Server Components \\u269b\",\n tooltipText: entryName$jscomp$2 + \" Aborted\",\n properties: properties$jscomp$2\n }\n }\n });\n performance.clearMeasures(measureName$jscomp$1);\n }\n componentEndTime = time;\n result.component = _componentInfo;\n isLastComponent = !1;\n } else if (\n _candidateInfo.awaited &&\n null != _candidateInfo.awaited.env\n ) {\n var _asyncInfo = _candidateInfo,\n _env2 = response$jscomp$0._rootEnvironmentName;\n _asyncInfo.awaited.end > endTime &&\n (endTime = _asyncInfo.awaited.end);\n endTime > childrenEndTime && (childrenEndTime = endTime);\n var asyncInfo$jscomp$1 = _asyncInfo,\n trackIdx$jscomp$5 = trackIdx$jscomp$6,\n startTime$jscomp$6 = time,\n endTime$jscomp$1 = endTime,\n rootEnv$jscomp$0 = _env2;\n if (supportsUserTiming && 0 < endTime$jscomp$1) {\n var entryName$jscomp$3 =\n \"await \" +\n getIOShortName(\n asyncInfo$jscomp$1.awaited,\n \"\",\n asyncInfo$jscomp$1.env,\n rootEnv$jscomp$0\n ),\n debugTask$jscomp$2 =\n asyncInfo$jscomp$1.debugTask ||\n asyncInfo$jscomp$1.awaited.debugTask;\n if (debugTask$jscomp$2) {\n var tooltipText$jscomp$0 =\n getIOLongName(\n asyncInfo$jscomp$1.awaited,\n \"\",\n asyncInfo$jscomp$1.env,\n rootEnv$jscomp$0\n ) + \" Aborted\";\n debugTask$jscomp$2.run(\n performance.measure.bind(\n performance,\n entryName$jscomp$3,\n {\n start:\n 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,\n end: endTime$jscomp$1,\n detail: {\n devtools: {\n color: \"warning\",\n track: trackNames[trackIdx$jscomp$5],\n trackGroup: \"Server Components \\u269b\",\n properties: [\n [\n \"Aborted\",\n \"The stream was aborted before this Promise resolved.\"\n ]\n ],\n tooltipText: tooltipText$jscomp$0\n }\n }\n }\n )\n );\n performance.clearMeasures(entryName$jscomp$3);\n } else\n console.timeStamp(\n entryName$jscomp$3,\n 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,\n endTime$jscomp$1,\n trackNames[trackIdx$jscomp$5],\n \"Server Components \\u269b\",\n \"warning\"\n );\n }\n }\n }\n }\n endTime = time;\n endTimeIdx = _i6;\n }\n }\n result.endTime = childrenEndTime;\n return result;\n }\n function flushInitialRenderPerformance(response) {\n if (response._replayConsole) {\n var rootChunk = getChunk(response, 0);\n isArrayImpl(rootChunk._children) &&\n (markAllTracksInOrder(),\n flushComponentPerformance(\n response,\n rootChunk,\n 0,\n -Infinity,\n -Infinity\n ));\n }\n }\n function processFullBinaryRow(\n response,\n streamState,\n id,\n tag,\n buffer,\n chunk\n ) {\n switch (tag) {\n case 65:\n resolveBuffer(\n response,\n id,\n mergeBuffer(buffer, chunk).buffer,\n streamState\n );\n return;\n case 79:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int8Array,\n 1,\n streamState\n );\n return;\n case 111:\n resolveBuffer(\n response,\n id,\n 0 === buffer.length ? chunk : mergeBuffer(buffer, chunk),\n streamState\n );\n return;\n case 85:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint8ClampedArray,\n 1,\n streamState\n );\n return;\n case 83:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int16Array,\n 2,\n streamState\n );\n return;\n case 115:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint16Array,\n 2,\n streamState\n );\n return;\n case 76:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int32Array,\n 4,\n streamState\n );\n return;\n case 108:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint32Array,\n 4,\n streamState\n );\n return;\n case 71:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Float32Array,\n 4,\n streamState\n );\n return;\n case 103:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Float64Array,\n 8,\n streamState\n );\n return;\n case 77:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n BigInt64Array,\n 8,\n streamState\n );\n return;\n case 109:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n BigUint64Array,\n 8,\n streamState\n );\n return;\n case 86:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n DataView,\n 1,\n streamState\n );\n return;\n }\n for (\n var stringDecoder = response._stringDecoder, row = \"\", i = 0;\n i < buffer.length;\n i++\n )\n row += stringDecoder.decode(buffer[i], decoderOptions);\n row += stringDecoder.decode(chunk);\n processFullStringRow(response, streamState, id, tag, row);\n }\n function processFullStringRow(response, streamState, id, tag, row) {\n switch (tag) {\n case 73:\n resolveModule(response, id, row, streamState);\n break;\n case 72:\n id = row[0];\n streamState = row.slice(1);\n response = JSON.parse(streamState, response._fromJSON);\n streamState = ReactDOMSharedInternals.d;\n switch (id) {\n case \"D\":\n streamState.D(response);\n break;\n case \"C\":\n \"string\" === typeof response\n ? streamState.C(response)\n : streamState.C(response[0], response[1]);\n break;\n case \"L\":\n id = response[0];\n row = response[1];\n 3 === response.length\n ? streamState.L(id, row, response[2])\n : streamState.L(id, row);\n break;\n case \"m\":\n \"string\" === typeof response\n ? streamState.m(response)\n : streamState.m(response[0], response[1]);\n break;\n case \"X\":\n \"string\" === typeof response\n ? streamState.X(response)\n : streamState.X(response[0], response[1]);\n break;\n case \"S\":\n \"string\" === typeof response\n ? streamState.S(response)\n : streamState.S(\n response[0],\n 0 === response[1] ? void 0 : response[1],\n 3 === response.length ? response[2] : void 0\n );\n break;\n case \"M\":\n \"string\" === typeof response\n ? streamState.M(response)\n : streamState.M(response[0], response[1]);\n }\n break;\n case 69:\n tag = response._chunks;\n var chunk = tag.get(id);\n row = JSON.parse(row);\n var error = resolveErrorDev(response, row);\n error.digest = row.digest;\n chunk\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n triggerErrorOnChunk(response, chunk, error))\n : ((row = new ReactPromise(\"rejected\", null, error)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n break;\n case 84:\n tag = response._chunks;\n (chunk = tag.get(id)) && \"pending\" !== chunk.status\n ? chunk.reason.enqueueValue(row)\n : (chunk && releasePendingChunk(response, chunk),\n (row = new ReactPromise(\"fulfilled\", row, null)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n break;\n case 78:\n response._timeOrigin = +row - performance.timeOrigin;\n break;\n case 68:\n id = getChunk(response, id);\n \"fulfilled\" !== id.status &&\n \"rejected\" !== id.status &&\n \"halted\" !== id.status &&\n \"blocked\" !== id.status &&\n \"resolved_module\" !== id.status &&\n ((streamState = id._debugChunk),\n (tag = createResolvedModelChunk(response, row)),\n (tag._debugChunk = streamState),\n (id._debugChunk = tag),\n initializeDebugChunk(response, id),\n \"blocked\" !== tag.status ||\n (void 0 !== response._debugChannel &&\n response._debugChannel.hasReadable) ||\n '\"' !== row[0] ||\n \"$\" !== row[1] ||\n ((streamState = row.slice(2, row.length - 1).split(\":\")),\n (streamState = parseInt(streamState[0], 16)),\n \"pending\" === getChunk(response, streamState).status &&\n (id._debugChunk = null)));\n break;\n case 74:\n resolveIOInfo(response, id, row);\n break;\n case 87:\n resolveConsoleEntry(response, row);\n break;\n case 82:\n startReadableStream(response, id, void 0, streamState);\n break;\n case 114:\n startReadableStream(response, id, \"bytes\", streamState);\n break;\n case 88:\n startAsyncIterable(response, id, !1, streamState);\n break;\n case 120:\n startAsyncIterable(response, id, !0, streamState);\n break;\n case 67:\n (id = response._chunks.get(id)) &&\n \"fulfilled\" === id.status &&\n (0 === --response._pendingChunks &&\n (response._weakResponse.response = null),\n id.reason.close(\"\" === row ? '\"$undefined\"' : row));\n break;\n default:\n if (\"\" === row) {\n if (\n ((streamState = response._chunks),\n (row = streamState.get(id)) ||\n streamState.set(id, (row = createPendingChunk(response))),\n \"pending\" === row.status || \"blocked\" === row.status)\n )\n releasePendingChunk(response, row),\n (response = row),\n (response.status = \"halted\"),\n (response.value = null),\n (response.reason = null);\n } else\n (tag = response._chunks),\n (chunk = tag.get(id))\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n resolveModelChunk(response, chunk, row))\n : ((row = createResolvedModelChunk(response, row)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n }\n }\n function processBinaryChunk(weakResponse, streamState, chunk) {\n if (void 0 !== weakResponse.weak.deref()) {\n weakResponse = unwrapWeakResponse(weakResponse);\n var i = 0,\n rowState = streamState._rowState,\n rowID = streamState._rowID,\n rowTag = streamState._rowTag,\n rowLength = streamState._rowLength,\n buffer = streamState._buffer,\n chunkLength = chunk.length;\n for (\n incrementChunkDebugInfo(streamState, chunkLength);\n i < chunkLength;\n\n ) {\n var lastIdx = -1;\n switch (rowState) {\n case 0:\n lastIdx = chunk[i++];\n 58 === lastIdx\n ? (rowState = 1)\n : (rowID =\n (rowID << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 1:\n rowState = chunk[i];\n 84 === rowState ||\n 65 === rowState ||\n 79 === rowState ||\n 111 === rowState ||\n 98 === rowState ||\n 85 === rowState ||\n 83 === rowState ||\n 115 === rowState ||\n 76 === rowState ||\n 108 === rowState ||\n 71 === rowState ||\n 103 === rowState ||\n 77 === rowState ||\n 109 === rowState ||\n 86 === rowState\n ? ((rowTag = rowState), (rowState = 2), i++)\n : (64 < rowState && 91 > rowState) ||\n 35 === rowState ||\n 114 === rowState ||\n 120 === rowState\n ? ((rowTag = rowState), (rowState = 3), i++)\n : ((rowTag = 0), (rowState = 3));\n continue;\n case 2:\n lastIdx = chunk[i++];\n 44 === lastIdx\n ? (rowState = 4)\n : (rowLength =\n (rowLength << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 3:\n lastIdx = chunk.indexOf(10, i);\n break;\n case 4:\n (lastIdx = i + rowLength),\n lastIdx > chunk.length && (lastIdx = -1);\n }\n var offset = chunk.byteOffset + i;\n if (-1 < lastIdx)\n (rowLength = new Uint8Array(chunk.buffer, offset, lastIdx - i)),\n 98 === rowTag\n ? resolveBuffer(\n weakResponse,\n rowID,\n lastIdx === chunkLength ? rowLength : rowLength.slice(),\n streamState\n )\n : processFullBinaryRow(\n weakResponse,\n streamState,\n rowID,\n rowTag,\n buffer,\n rowLength\n ),\n (i = lastIdx),\n 3 === rowState && i++,\n (rowLength = rowID = rowTag = rowState = 0),\n (buffer.length = 0);\n else {\n chunk = new Uint8Array(chunk.buffer, offset, chunk.byteLength - i);\n 98 === rowTag\n ? ((rowLength -= chunk.byteLength),\n resolveBuffer(weakResponse, rowID, chunk, streamState))\n : (buffer.push(chunk), (rowLength -= chunk.byteLength));\n break;\n }\n }\n streamState._rowState = rowState;\n streamState._rowID = rowID;\n streamState._rowTag = rowTag;\n streamState._rowLength = rowLength;\n }\n }\n function createFromJSONCallback(response) {\n return function (key, value) {\n if (\"__proto__\" !== key) {\n if (\"string\" === typeof value)\n return parseModelString(response, this, key, value);\n if (\"object\" === typeof value && null !== value) {\n if (value[0] === REACT_ELEMENT_TYPE)\n b: {\n var owner = value[4],\n stack = value[5];\n key = value[6];\n value = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: value[1],\n key: value[2],\n props: value[3],\n _owner: void 0 === owner ? null : owner\n };\n Object.defineProperty(value, \"ref\", {\n enumerable: !1,\n get: nullRefGetter\n });\n value._store = {};\n Object.defineProperty(value._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: key\n });\n Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(value, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: void 0 === stack ? null : stack\n });\n Object.defineProperty(value, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n if (null !== initializingHandler) {\n owner = initializingHandler;\n initializingHandler = owner.parent;\n if (owner.errored) {\n stack = new ReactPromise(\"rejected\", null, owner.reason);\n initializeElement(response, value, null);\n owner = {\n name: getComponentNameFromType(value.type) || \"\",\n owner: value._owner\n };\n owner.debugStack = value._debugStack;\n supportsCreateTask && (owner.debugTask = value._debugTask);\n stack._debugInfo = [owner];\n key = createLazyChunkWrapper(stack, key);\n break b;\n }\n if (0 < owner.deps) {\n stack = new ReactPromise(\"blocked\", null, null);\n owner.value = value;\n owner.chunk = stack;\n key = createLazyChunkWrapper(stack, key);\n value = initializeElement.bind(null, response, value, key);\n stack.then(value, value);\n break b;\n }\n }\n initializeElement(response, value, null);\n key = value;\n }\n else key = value;\n return key;\n }\n return value;\n }\n };\n }\n function close(weakResponse) {\n reportGlobalError(weakResponse, Error(\"Connection closed.\"));\n }\n function noServerCall$1() {\n throw Error(\n \"Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead.\"\n );\n }\n function createResponseFromOptions(options) {\n return new ResponseInstance(\n options.serverConsumerManifest.moduleMap,\n options.serverConsumerManifest.serverModuleMap,\n options.serverConsumerManifest.moduleLoading,\n noServerCall$1,\n options.encodeFormAction,\n \"string\" === typeof options.nonce ? options.nonce : void 0,\n options && options.temporaryReferences\n ? options.temporaryReferences\n : void 0,\n options && options.findSourceMapURL ? options.findSourceMapURL : void 0,\n options ? !0 === options.replayConsoleLogs : !1,\n options && options.environmentName ? options.environmentName : void 0,\n options && null != options.startTime ? options.startTime : void 0,\n options && null != options.endTime ? options.endTime : void 0,\n options && void 0 !== options.debugChannel\n ? {\n hasReadable: void 0 !== options.debugChannel.readable,\n callback: null\n }\n : void 0\n )._weakResponse;\n }\n function startReadingFromStream$1(response, stream, onDone, debugValue) {\n function progress(_ref) {\n var value = _ref.value;\n if (_ref.done) return onDone();\n processBinaryChunk(response, streamState, value);\n return reader.read().then(progress).catch(error);\n }\n function error(e) {\n reportGlobalError(response, e);\n }\n var streamState = createStreamState(response, debugValue),\n reader = stream.getReader();\n reader.read().then(progress).catch(error);\n }\n function noServerCall() {\n throw Error(\n \"Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead.\"\n );\n }\n function startReadingFromStream(response$jscomp$0, stream, onEnd) {\n var streamState = createStreamState(response$jscomp$0, stream);\n stream.on(\"data\", function (chunk) {\n if (\"string\" === typeof chunk) {\n if (void 0 !== response$jscomp$0.weak.deref()) {\n var response = unwrapWeakResponse(response$jscomp$0),\n i = 0,\n rowState = streamState._rowState,\n rowID = streamState._rowID,\n rowTag = streamState._rowTag,\n rowLength = streamState._rowLength,\n buffer = streamState._buffer,\n chunkLength = chunk.length;\n for (\n incrementChunkDebugInfo(streamState, chunkLength);\n i < chunkLength;\n\n ) {\n var lastIdx = -1;\n switch (rowState) {\n case 0:\n lastIdx = chunk.charCodeAt(i++);\n 58 === lastIdx\n ? (rowState = 1)\n : (rowID =\n (rowID << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 1:\n rowState = chunk.charCodeAt(i);\n 84 === rowState ||\n 65 === rowState ||\n 79 === rowState ||\n 111 === rowState ||\n 85 === rowState ||\n 83 === rowState ||\n 115 === rowState ||\n 76 === rowState ||\n 108 === rowState ||\n 71 === rowState ||\n 103 === rowState ||\n 77 === rowState ||\n 109 === rowState ||\n 86 === rowState\n ? ((rowTag = rowState), (rowState = 2), i++)\n : (64 < rowState && 91 > rowState) ||\n 114 === rowState ||\n 120 === rowState\n ? ((rowTag = rowState), (rowState = 3), i++)\n : ((rowTag = 0), (rowState = 3));\n continue;\n case 2:\n lastIdx = chunk.charCodeAt(i++);\n 44 === lastIdx\n ? (rowState = 4)\n : (rowLength =\n (rowLength << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 3:\n lastIdx = chunk.indexOf(\"\\n\", i);\n break;\n case 4:\n if (84 !== rowTag)\n throw Error(\n \"Binary RSC chunks cannot be encoded as strings. This is a bug in the wiring of the React streams.\"\n );\n if (rowLength < chunk.length || chunk.length > 3 * rowLength)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n lastIdx = chunk.length;\n }\n if (-1 < lastIdx) {\n if (0 < buffer.length)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n i = chunk.slice(i, lastIdx);\n processFullStringRow(response, streamState, rowID, rowTag, i);\n i = lastIdx;\n 3 === rowState && i++;\n rowLength = rowID = rowTag = rowState = 0;\n buffer.length = 0;\n } else if (chunk.length !== i)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n }\n streamState._rowState = rowState;\n streamState._rowID = rowID;\n streamState._rowTag = rowTag;\n streamState._rowLength = rowLength;\n }\n } else processBinaryChunk(response$jscomp$0, streamState, chunk);\n });\n stream.on(\"error\", function (error) {\n reportGlobalError(response$jscomp$0, error);\n });\n stream.on(\"end\", onEnd);\n }\n var util = require(\"util\"),\n ReactDOM = require(\"react-dom\"),\n React = require(\"react\"),\n decoderOptions = { stream: !0 },\n bind$1 = Function.prototype.bind,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n instrumentedChunks = new WeakSet(),\n loadedChunks = new WeakSet(),\n ReactDOMSharedInternals =\n ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_VIEW_TRANSITION_TYPE = Symbol.for(\"react.view_transition\"),\n MAYBE_ITERATOR_SYMBOL = Symbol.iterator,\n ASYNC_ITERATOR = Symbol.asyncIterator,\n isArrayImpl = Array.isArray,\n getPrototypeOf = Object.getPrototypeOf,\n jsxPropsParents = new WeakMap(),\n jsxChildrenParents = new WeakMap(),\n CLIENT_REFERENCE_TAG = Symbol.for(\"react.client.reference\"),\n ObjectPrototype = Object.prototype,\n knownServerReferences = new WeakMap(),\n boundCache = new WeakMap(),\n fakeServerFunctionIdx = 0,\n FunctionBind = Function.prototype.bind,\n ArraySlice = Array.prototype.slice,\n v8FrameRegExp =\n /^ {3} at (?:(.+) \\((.+):(\\d+):(\\d+)\\)|(?:async )?(.+):(\\d+):(\\d+))$/,\n jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\\d+):(\\d+)/,\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n supportsUserTiming =\n \"undefined\" !== typeof console &&\n \"function\" === typeof console.timeStamp &&\n \"undefined\" !== typeof performance &&\n \"function\" === typeof performance.measure,\n trackNames =\n \"Primary Parallel Parallel\\u200b Parallel\\u200b\\u200b Parallel\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\".split(\n \" \"\n ),\n prefix,\n suffix;\n new (\"function\" === typeof WeakMap ? WeakMap : Map)();\n var ReactSharedInteralsServer =\n React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE ||\n ReactSharedInteralsServer;\n ReactPromise.prototype = Object.create(Promise.prototype);\n ReactPromise.prototype.then = function (resolve, reject) {\n var _this = this;\n switch (this.status) {\n case \"resolved_model\":\n initializeModelChunk(this);\n break;\n case \"resolved_module\":\n initializeModuleChunk(this);\n }\n var resolveCallback = resolve,\n rejectCallback = reject,\n wrapperPromise = new Promise(function (res, rej) {\n resolve = function (value) {\n wrapperPromise._debugInfo = _this._debugInfo;\n res(value);\n };\n reject = function (reason) {\n wrapperPromise._debugInfo = _this._debugInfo;\n rej(reason);\n };\n });\n wrapperPromise.then(resolveCallback, rejectCallback);\n switch (this.status) {\n case \"fulfilled\":\n \"function\" === typeof resolve && resolve(this.value);\n break;\n case \"pending\":\n case \"blocked\":\n \"function\" === typeof resolve &&\n (null === this.value && (this.value = []),\n this.value.push(resolve));\n \"function\" === typeof reject &&\n (null === this.reason && (this.reason = []),\n this.reason.push(reject));\n break;\n case \"halted\":\n break;\n default:\n \"function\" === typeof reject && reject(this.reason);\n }\n };\n var debugChannelRegistry =\n \"function\" === typeof FinalizationRegistry\n ? new FinalizationRegistry(closeDebugChannel)\n : null,\n initializingHandler = null,\n initializingChunk = null,\n mightHaveStaticConstructor = /\\bclass\\b.*\\bstatic\\b/,\n MIN_CHUNK_SIZE = 65536,\n supportsCreateTask = !!console.createTask,\n fakeFunctionCache = new Map(),\n fakeFunctionIdx = 0,\n createFakeJSXCallStack = {\n react_stack_bottom_frame: function (response, stack, environmentName) {\n return buildFakeCallStack(\n response,\n stack,\n environmentName,\n !1,\n fakeJSXCallSite\n )();\n }\n },\n createFakeJSXCallStackInDEV =\n createFakeJSXCallStack.react_stack_bottom_frame.bind(\n createFakeJSXCallStack\n ),\n currentOwnerInDEV = null,\n replayConsoleWithCallStack = {\n react_stack_bottom_frame: function (response, payload) {\n var methodName = payload[0],\n stackTrace = payload[1],\n owner = payload[2],\n env = payload[3];\n payload = payload.slice(4);\n var prevStack = ReactSharedInternals.getCurrentStack;\n ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;\n currentOwnerInDEV = null === owner ? response._debugRootOwner : owner;\n try {\n a: {\n var offset = 0;\n switch (methodName) {\n case \"dir\":\n case \"dirxml\":\n case \"groupEnd\":\n case \"table\":\n var JSCompiler_inline_result = bind$1.apply(\n console[methodName],\n [console].concat(payload)\n );\n break a;\n case \"assert\":\n offset = 1;\n }\n var newArgs = payload.slice(0);\n \"string\" === typeof newArgs[offset]\n ? newArgs.splice(\n offset,\n 1,\n \"\\u001b[0m\\u001b[7m%c%s\\u001b[0m%c \" + newArgs[offset],\n \"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px\",\n \" \" + env + \" \",\n \"\"\n )\n : newArgs.splice(\n offset,\n 0,\n \"\\u001b[0m\\u001b[7m%c%s\\u001b[0m%c\",\n \"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px\",\n \" \" + env + \" \",\n \"\"\n );\n newArgs.unshift(console);\n JSCompiler_inline_result = bind$1.apply(\n console[methodName],\n newArgs\n );\n }\n var callStack = buildFakeCallStack(\n response,\n stackTrace,\n env,\n !1,\n JSCompiler_inline_result\n );\n if (null != owner) {\n var task = initializeFakeTask(response, owner);\n initializeFakeStack(response, owner);\n if (null !== task) {\n task.run(callStack);\n return;\n }\n }\n var rootTask = getRootTask(response, env);\n null != rootTask ? rootTask.run(callStack) : callStack();\n } finally {\n (currentOwnerInDEV = null),\n (ReactSharedInternals.getCurrentStack = prevStack);\n }\n }\n },\n replayConsoleWithCallStackInDEV =\n replayConsoleWithCallStack.react_stack_bottom_frame.bind(\n replayConsoleWithCallStack\n );\n exports.createFromFetch = function (promiseForResponse, options) {\n var response = createResponseFromOptions(options);\n promiseForResponse.then(\n function (r) {\n if (\n options &&\n options.debugChannel &&\n options.debugChannel.readable\n ) {\n var streamDoneCount = 0,\n handleDone = function () {\n 2 === ++streamDoneCount && close(response);\n };\n startReadingFromStream$1(\n response,\n options.debugChannel.readable,\n handleDone\n );\n startReadingFromStream$1(response, r.body, handleDone, r);\n } else\n startReadingFromStream$1(\n response,\n r.body,\n close.bind(null, response),\n r\n );\n },\n function (e) {\n reportGlobalError(response, e);\n }\n );\n return getRoot(response);\n };\n exports.createFromNodeStream = function (\n stream,\n serverConsumerManifest,\n options\n ) {\n var response = new ResponseInstance(\n serverConsumerManifest.moduleMap,\n serverConsumerManifest.serverModuleMap,\n serverConsumerManifest.moduleLoading,\n noServerCall,\n options ? options.encodeFormAction : void 0,\n options && \"string\" === typeof options.nonce ? options.nonce : void 0,\n void 0,\n options && options.findSourceMapURL ? options.findSourceMapURL : void 0,\n options ? !0 === options.replayConsoleLogs : !1,\n options && options.environmentName ? options.environmentName : void 0,\n options && null != options.startTime ? options.startTime : void 0,\n options && null != options.endTime ? options.endTime : void 0,\n options && void 0 !== options.debugChannel\n ? { hasReadable: !0, callback: null }\n : void 0\n )._weakResponse;\n if (options && options.debugChannel) {\n var streamEndedCount = 0;\n serverConsumerManifest = function () {\n 2 === ++streamEndedCount && close(response);\n };\n startReadingFromStream(\n response,\n options.debugChannel,\n serverConsumerManifest\n );\n startReadingFromStream(response, stream, serverConsumerManifest);\n } else\n startReadingFromStream(response, stream, close.bind(null, response));\n return getRoot(response);\n };\n exports.createFromReadableStream = function (stream, options) {\n var response = createResponseFromOptions(options);\n if (options && options.debugChannel && options.debugChannel.readable) {\n var streamDoneCount = 0,\n handleDone = function () {\n 2 === ++streamDoneCount && close(response);\n };\n startReadingFromStream$1(\n response,\n options.debugChannel.readable,\n handleDone\n );\n startReadingFromStream$1(response, stream, handleDone, stream);\n } else\n startReadingFromStream$1(\n response,\n stream,\n close.bind(null, response),\n stream\n );\n return getRoot(response);\n };\n exports.createServerReference = function (id) {\n return createServerReference$1(id, noServerCall$1);\n };\n exports.createTemporaryReferenceSet = function () {\n return new Map();\n };\n exports.encodeReply = function (value, options) {\n return new Promise(function (resolve, reject) {\n var abort = processReply(\n value,\n \"\",\n options && options.temporaryReferences\n ? options.temporaryReferences\n : void 0,\n resolve,\n reject\n );\n if (options && options.signal) {\n var signal = options.signal;\n if (signal.aborted) abort(signal.reason);\n else {\n var listener = function () {\n abort(signal.reason);\n signal.removeEventListener(\"abort\", listener);\n };\n signal.addEventListener(\"abort\", listener);\n }\n }\n });\n };\n exports.registerServerReference = function (\n reference,\n id,\n encodeFormAction\n ) {\n registerBoundServerReference(reference, id, null, encodeFormAction);\n return reference;\n };\n })();\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 15576, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-server-dom-turbopack/client.node.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-server-dom-turbopack-client.node.production.js');\n} else {\n module.exports = require('./cjs/react-server-dom-turbopack-client.node.development.js');\n}\n"],"names":[],"mappings":"AAEA;;KAEO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 15585, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/detached-promise.ts"],"sourcesContent":["/**\n * A `Promise.withResolvers` implementation that exposes the `resolve` and\n * `reject` functions on a `Promise`.\n *\n * @see https://tc39.es/proposal-promise-with-resolvers/\n */\nexport class DetachedPromise {\n public readonly resolve: (value: T | PromiseLike) => void\n public readonly reject: (reason: any) => void\n public readonly promise: Promise\n\n constructor() {\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n\n // Create the promise and assign the resolvers to the object.\n this.promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n\n // We know that resolvers is defined because the Promise constructor runs\n // synchronously.\n this.resolve = resolve!\n this.reject = reject!\n }\n}\n"],"names":["DetachedPromise","constructor","resolve","reject","promise","Promise","res","rej"],"mappings":"AAAA;;;;;CAKC,GACD;;;;AAAO,MAAMA;IAKXC,aAAc;QACZ,IAAIC;QACJ,IAAIC;QAEJ,6DAA6D;QAC7D,IAAI,CAACC,OAAO,GAAG,IAAIC,QAAW,CAACC,KAAKC;YAClCL,UAAUI;YACVH,SAASI;QACX;QAEA,yEAAyE;QACzE,iBAAiB;QACjB,IAAI,CAACL,OAAO,GAAGA;QACf,IAAI,CAACC,MAAM,GAAGA;IAChB;AACF","ignoreList":[0]}}, - {"offset": {"line": 15613, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/stream-utils/encoded-tags.ts"],"sourcesContent":["export const ENCODED_TAGS = {\n // opening tags do not have the closing `>` since they can contain other attributes such as ``\n OPENING: {\n // \n HEAD: new Uint8Array([60, 47, 104, 101, 97, 100, 62]),\n // \n BODY: new Uint8Array([60, 47, 98, 111, 100, 121, 62]),\n // \n HTML: new Uint8Array([60, 47, 104, 116, 109, 108, 62]),\n // \n BODY_AND_HTML: new Uint8Array([\n 60, 47, 98, 111, 100, 121, 62, 60, 47, 104, 116, 109, 108, 62,\n ]),\n },\n META: {\n // Only the match the prefix cause the suffix can be different wether it's xml compatible or not \">\" or \"/>\"\n // a.length) return -1\n\n // start iterating through `a`\n for (let i = 0; i <= a.length - b.length; i++) {\n let completeMatch = true\n // from index `i`, iterate through `b` and check for mismatch\n for (let j = 0; j < b.length; j++) {\n // if the values do not match, then this isn't a complete match, exit `b` iteration early and iterate to next index of `a`.\n if (a[i + j] !== b[j]) {\n completeMatch = false\n break\n }\n }\n\n if (completeMatch) {\n return i\n }\n }\n\n return -1\n}\n\n/**\n * Check if two Uint8Arrays are strictly equivalent.\n */\nexport function isEquivalentUint8Arrays(a: Uint8Array, b: Uint8Array) {\n if (a.length !== b.length) return false\n\n for (let i = 0; i < a.length; i++) {\n if (a[i] !== b[i]) return false\n }\n\n return true\n}\n\n/**\n * Remove Uint8Array `b` from Uint8Array `a`.\n *\n * If `b` is not in `a`, `a` is returned unchanged.\n *\n * Otherwise, the function returns a new Uint8Array instance with size `a.length - b.length`\n */\nexport function removeFromUint8Array(a: Uint8Array, b: Uint8Array) {\n const tagIndex = indexOfUint8Array(a, b)\n if (tagIndex === 0) return a.subarray(b.length)\n if (tagIndex > -1) {\n const removed = new Uint8Array(a.length - b.length)\n removed.set(a.slice(0, tagIndex))\n removed.set(a.slice(tagIndex + b.length), tagIndex)\n return removed\n } else {\n return a\n }\n}\n"],"names":["indexOfUint8Array","a","b","length","i","completeMatch","j","isEquivalentUint8Arrays","removeFromUint8Array","tagIndex","subarray","removed","Uint8Array","set","slice"],"mappings":"AAAA;;CAEC,GACD;;;;;;;;AAAO,SAASA,kBAAkBC,CAAa,EAAEC,CAAa;IAC5D,IAAIA,EAAEC,MAAM,KAAK,GAAG,OAAO;IAC3B,IAAIF,EAAEE,MAAM,KAAK,KAAKD,EAAEC,MAAM,GAAGF,EAAEE,MAAM,EAAE,OAAO,CAAC;IAEnD,8BAA8B;IAC9B,IAAK,IAAIC,IAAI,GAAGA,KAAKH,EAAEE,MAAM,GAAGD,EAAEC,MAAM,EAAEC,IAAK;QAC7C,IAAIC,gBAAgB;QACpB,6DAA6D;QAC7D,IAAK,IAAIC,IAAI,GAAGA,IAAIJ,EAAEC,MAAM,EAAEG,IAAK;YACjC,2HAA2H;YAC3H,IAAIL,CAAC,CAACG,IAAIE,EAAE,KAAKJ,CAAC,CAACI,EAAE,EAAE;gBACrBD,gBAAgB;gBAChB;YACF;QACF;QAEA,IAAIA,eAAe;YACjB,OAAOD;QACT;IACF;IAEA,OAAO,CAAC;AACV;AAKO,SAASG,wBAAwBN,CAAa,EAAEC,CAAa;IAClE,IAAID,EAAEE,MAAM,KAAKD,EAAEC,MAAM,EAAE,OAAO;IAElC,IAAK,IAAIC,IAAI,GAAGA,IAAIH,EAAEE,MAAM,EAAEC,IAAK;QACjC,IAAIH,CAAC,CAACG,EAAE,KAAKF,CAAC,CAACE,EAAE,EAAE,OAAO;IAC5B;IAEA,OAAO;AACT;AASO,SAASI,qBAAqBP,CAAa,EAAEC,CAAa;IAC/D,MAAMO,WAAWT,kBAAkBC,GAAGC;IACtC,IAAIO,aAAa,GAAG,OAAOR,EAAES,QAAQ,CAACR,EAAEC,MAAM;IAC9C,IAAIM,WAAW,CAAC,GAAG;QACjB,MAAME,UAAU,IAAIC,WAAWX,EAAEE,MAAM,GAAGD,EAAEC,MAAM;QAClDQ,QAAQE,GAAG,CAACZ,EAAEa,KAAK,CAAC,GAAGL;QACvBE,QAAQE,GAAG,CAACZ,EAAEa,KAAK,CAACL,WAAWP,EAAEC,MAAM,GAAGM;QAC1C,OAAOE;IACT,OAAO;QACL,OAAOV;IACT;AACF","ignoreList":[0]}}, - {"offset": {"line": 15776, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/errors/constants.ts"],"sourcesContent":["export const MISSING_ROOT_TAGS_ERROR = 'NEXT_MISSING_ROOT_TAGS'\n"],"names":["MISSING_ROOT_TAGS_ERROR"],"mappings":";;;;AAAO,MAAMA,0BAA0B,yBAAwB","ignoreList":[0]}}, - {"offset": {"line": 15785, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment-cache/output-export-prefetch-encoding.ts"],"sourcesContent":["// In output: export mode, the build id is added to the start of the HTML\n// document, directly after the doctype declaration. During a prefetch, the\n// client performs a range request to get the build id, so it can check whether\n// the target page belongs to the same build.\n//\n// The first 64 bytes of the document are requested. The exact number isn't\n// too important; it must be larger than the build id + doctype + closing and\n// ending comment markers, but it doesn't need to match the end of the\n// comment exactly.\n//\n// Build ids are 21 bytes long in the default implementation, though this\n// can be overridden in the Next.js config. For the purposes of this check,\n// it's OK to only match the start of the id, so we'll truncate it if exceeds\n// a certain length.\n\nconst DOCTYPE_PREFIX = '' // 15 bytes\nconst MAX_BUILD_ID_LENGTH = 24\n\nfunction escapeBuildId(buildId: string) {\n // If the build id is longer than the given limit, it's OK for our purposes\n // to only match the beginning.\n const truncated = buildId.slice(0, MAX_BUILD_ID_LENGTH)\n // Replace hyphens with underscores so it doesn't break the HTML comment.\n // (Unlikely, but if this did happen it would break the whole document.)\n return truncated.replace(/-/g, '_')\n}\n\nexport function insertBuildIdComment(originalHtml: string, buildId: string) {\n if (\n // Skip if the build id contains a closing comment marker.\n buildId.includes('-->') ||\n // React always inserts a doctype at the start of the document. Skip if it\n // isn't present. Shouldn't happen; suggests an issue elsewhere.\n !originalHtml.startsWith(DOCTYPE_PREFIX)\n ) {\n // Return the original HTML unchanged. This means the document will not\n // be prefetched.\n // TODO: The build id comment is currently only used during prefetches, but\n // if we eventually use this mechanism for regular navigations, we may need\n // to error during build if we fail to insert it for some reason.\n return originalHtml\n }\n // The comment must be inserted after the doctype.\n return originalHtml.replace(\n DOCTYPE_PREFIX,\n DOCTYPE_PREFIX + ''\n )\n}\n"],"names":["DOCTYPE_PREFIX","MAX_BUILD_ID_LENGTH","escapeBuildId","buildId","truncated","slice","replace","insertBuildIdComment","originalHtml","includes","startsWith"],"mappings":";;;;AAAA,yEAAyE;AACzE,2EAA2E;AAC3E,+EAA+E;AAC/E,6CAA6C;AAC7C,EAAE;AACF,2EAA2E;AAC3E,6EAA6E;AAC7E,sEAAsE;AACtE,mBAAmB;AACnB,EAAE;AACF,yEAAyE;AACzE,2EAA2E;AAC3E,6EAA6E;AAC7E,oBAAoB;AAEpB,MAAMA,iBAAiB,kBAAkB,WAAW;;AACpD,MAAMC,sBAAsB;AAE5B,SAASC,cAAcC,OAAe;IACpC,2EAA2E;IAC3E,+BAA+B;IAC/B,MAAMC,YAAYD,QAAQE,KAAK,CAAC,GAAGJ;IACnC,yEAAyE;IACzE,wEAAwE;IACxE,OAAOG,UAAUE,OAAO,CAAC,MAAM;AACjC;AAEO,SAASC,qBAAqBC,YAAoB,EAAEL,OAAe;IACxE,IACE,AACAA,QAAQM,QAAQ,CAAC,UACjB,+BAF0D,2CAEgB;IAC1E,gEAAgE;IAChE,CAACD,aAAaE,UAAU,CAACV,iBACzB;QACA,uEAAuE;QACvE,iBAAiB;QACjB,2EAA2E;QAC3E,2EAA2E;QAC3E,iEAAiE;QACjE,OAAOQ;IACT;IACA,kDAAkD;IAClD,OAAOA,aAAaF,OAAO,CACzBN,gBACAA,iBAAiB,SAASE,cAAcC,WAAW;AAEvD","ignoreList":[0]}}, - {"offset": {"line": 15832, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/hash.ts"],"sourcesContent":["// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n"],"names":["djb2Hash","str","hash","i","length","char","charCodeAt","hexHash","toString","slice"],"mappings":"AAAA,wCAAwC;AACxC,4CAA4C;AAC5C,iHAAiH;AACjH,wFAAwF;AACxF,gGAAgG;AAChG,wHAAwH;AACxH,wDAAwD;;;;;;;AACjD,SAASA,SAASC,GAAW;IAClC,IAAIC,OAAO;IACX,IAAK,IAAIC,IAAI,GAAGA,IAAIF,IAAIG,MAAM,EAAED,IAAK;QACnC,MAAME,OAAOJ,IAAIK,UAAU,CAACH;QAC5BD,OAASA,CAAAA,QAAQ,CAAA,IAAKA,OAAOG,OAAQ;IACvC;IACA,OAAOH,SAAS;AAClB;AAEO,SAASK,QAAQN,GAAW;IACjC,OAAOD,SAASC,KAAKO,QAAQ,CAAC,IAAIC,KAAK,CAAC,GAAG;AAC7C","ignoreList":[0]}}, - {"offset": {"line": 15860, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/cache-busting-search-param.ts"],"sourcesContent":["import { hexHash } from '../../hash'\n\nexport function computeCacheBustingSearchParam(\n prefetchHeader: '1' | '2' | '0' | undefined,\n segmentPrefetchHeader: string | string[] | undefined,\n stateTreeHeader: string | string[] | undefined,\n nextUrlHeader: string | string[] | undefined\n): string {\n if (\n (prefetchHeader === undefined || prefetchHeader === '0') &&\n segmentPrefetchHeader === undefined &&\n stateTreeHeader === undefined &&\n nextUrlHeader === undefined\n ) {\n return ''\n }\n return hexHash(\n [\n prefetchHeader || '0',\n segmentPrefetchHeader || '0',\n stateTreeHeader || '0',\n nextUrlHeader || '0',\n ].join(',')\n )\n}\n"],"names":["hexHash","computeCacheBustingSearchParam","prefetchHeader","segmentPrefetchHeader","stateTreeHeader","nextUrlHeader","undefined","join"],"mappings":";;;;AAAA,SAASA,OAAO,QAAQ,aAAY;;AAE7B,SAASC,+BACdC,cAA2C,EAC3CC,qBAAoD,EACpDC,eAA8C,EAC9CC,aAA4C;IAE5C,IACGH,CAAAA,mBAAmBI,aAAaJ,mBAAmB,GAAE,KACtDC,0BAA0BG,aAC1BF,oBAAoBE,aACpBD,kBAAkBC,WAClB;QACA,OAAO;IACT;IACA,WAAON,uKAAAA,EACL;QACEE,kBAAkB;QAClBC,yBAAyB;QACzBC,mBAAmB;QACnBC,iBAAiB;KAClB,CAACE,IAAI,CAAC;AAEX","ignoreList":[0]}}, - {"offset": {"line": 15881, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/stream-utils/node-web-streams-helper.ts"],"sourcesContent":["import type { ReactDOMServerReadableStream } from 'react-dom/server'\nimport { getTracer } from '../lib/trace/tracer'\nimport { AppRenderSpan } from '../lib/trace/constants'\nimport { DetachedPromise } from '../../lib/detached-promise'\nimport {\n scheduleImmediate,\n atLeastOneTask,\n waitAtLeastOneReactRenderTask,\n} from '../../lib/scheduler'\nimport { ENCODED_TAGS } from './encoded-tags'\nimport {\n indexOfUint8Array,\n isEquivalentUint8Arrays,\n removeFromUint8Array,\n} from './uint8array-helpers'\nimport { MISSING_ROOT_TAGS_ERROR } from '../../shared/lib/errors/constants'\nimport { insertBuildIdComment } from '../../shared/lib/segment-cache/output-export-prefetch-encoding'\nimport {\n RSC_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_RSC_UNION_QUERY,\n} from '../../client/components/app-router-headers'\nimport { computeCacheBustingSearchParam } from '../../shared/lib/router/utils/cache-busting-search-param'\n\nfunction voidCatch() {\n // this catcher is designed to be used with pipeTo where we expect the underlying\n // pipe implementation to forward errors but we don't want the pipeTo promise to reject\n // and be unhandled\n}\n\n// We can share the same encoder instance everywhere\n// Notably we cannot do the same for TextDecoder because it is stateful\n// when handling streaming data\nconst encoder = new TextEncoder()\n\nexport function chainStreams(\n ...streams: ReadableStream[]\n): ReadableStream {\n // If we have no streams, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n if (streams.length === 0) {\n return new ReadableStream({\n start(controller) {\n controller.close()\n },\n })\n }\n\n // If we only have 1 stream we fast path it by returning just this stream\n if (streams.length === 1) {\n return streams[0]\n }\n\n const { readable, writable } = new TransformStream()\n\n // We always initiate pipeTo immediately. We know we have at least 2 streams\n // so we need to avoid closing the writable when this one finishes.\n let promise = streams[0].pipeTo(writable, { preventClose: true })\n\n let i = 1\n for (; i < streams.length - 1; i++) {\n const nextStream = streams[i]\n promise = promise.then(() =>\n nextStream.pipeTo(writable, { preventClose: true })\n )\n }\n\n // We can omit the length check because we halted before the last stream and there\n // is at least two streams so the lastStream here will always be defined\n const lastStream = streams[i]\n promise = promise.then(() => lastStream.pipeTo(writable))\n\n // Catch any errors from the streams and ignore them, they will be handled\n // by whatever is consuming the readable stream.\n promise.catch(voidCatch)\n\n return readable\n}\n\nexport function streamFromString(str: string): ReadableStream {\n return new ReadableStream({\n start(controller) {\n controller.enqueue(encoder.encode(str))\n controller.close()\n },\n })\n}\n\nexport function streamFromBuffer(chunk: Buffer): ReadableStream {\n return new ReadableStream({\n start(controller) {\n controller.enqueue(chunk)\n controller.close()\n },\n })\n}\n\nasync function streamToChunks(\n stream: ReadableStream\n): Promise> {\n const reader = stream.getReader()\n const chunks: Array = []\n\n while (true) {\n const { done, value } = await reader.read()\n if (done) {\n break\n }\n\n chunks.push(value)\n }\n\n return chunks\n}\n\nfunction concatUint8Arrays(chunks: Array): Uint8Array {\n const totalLength = chunks.reduce((sum, chunk) => sum + chunk.length, 0)\n const result = new Uint8Array(totalLength)\n let offset = 0\n for (const chunk of chunks) {\n result.set(chunk, offset)\n offset += chunk.length\n }\n return result\n}\n\nexport async function streamToUint8Array(\n stream: ReadableStream\n): Promise {\n return concatUint8Arrays(await streamToChunks(stream))\n}\n\nexport async function streamToBuffer(\n stream: ReadableStream\n): Promise {\n return Buffer.concat(await streamToChunks(stream))\n}\n\nexport async function streamToString(\n stream: ReadableStream,\n signal?: AbortSignal\n): Promise {\n const decoder = new TextDecoder('utf-8', { fatal: true })\n let string = ''\n\n for await (const chunk of stream) {\n if (signal?.aborted) {\n return string\n }\n\n string += decoder.decode(chunk, { stream: true })\n }\n\n string += decoder.decode()\n\n return string\n}\n\nexport type BufferedTransformOptions = {\n /**\n * Flush synchronously once the buffer reaches this many bytes.\n */\n readonly maxBufferByteLength?: number\n}\n\nexport function createBufferedTransformStream(\n options: BufferedTransformOptions = {}\n): TransformStream {\n const { maxBufferByteLength = Infinity } = options\n\n let bufferedChunks: Array = []\n let bufferByteLength: number = 0\n let pending: DetachedPromise | undefined\n\n const flush = (controller: TransformStreamDefaultController) => {\n try {\n if (bufferedChunks.length === 0) {\n return\n }\n\n const chunk = new Uint8Array(bufferByteLength)\n let copiedBytes = 0\n\n for (let i = 0; i < bufferedChunks.length; i++) {\n const bufferedChunk = bufferedChunks[i]\n chunk.set(bufferedChunk, copiedBytes)\n copiedBytes += bufferedChunk.byteLength\n }\n // We just wrote all the buffered chunks so we need to reset the bufferedChunks array\n // and our bufferByteLength to prepare for the next round of buffered chunks\n bufferedChunks.length = 0\n bufferByteLength = 0\n controller.enqueue(chunk)\n } catch {\n // If an error occurs while enqueuing, it can't be due to this\n // transformer. It's most likely caused by the controller having been\n // errored (for example, if the stream was cancelled).\n }\n }\n\n const scheduleFlush = (controller: TransformStreamDefaultController) => {\n if (pending) {\n return\n }\n\n const detached = new DetachedPromise()\n pending = detached\n\n scheduleImmediate(() => {\n try {\n flush(controller)\n } finally {\n pending = undefined\n detached.resolve()\n }\n })\n }\n\n return new TransformStream({\n transform(chunk, controller) {\n // Combine the previous buffer with the new chunk.\n bufferedChunks.push(chunk)\n bufferByteLength += chunk.byteLength\n\n if (bufferByteLength >= maxBufferByteLength) {\n flush(controller)\n } else {\n scheduleFlush(controller)\n }\n },\n flush() {\n return pending?.promise\n },\n })\n}\n\nfunction createPrefetchCommentStream(\n isBuildTimePrerendering: boolean,\n buildId: string\n): TransformStream {\n // Insert an extra comment at the beginning of the HTML document. This must\n // come after the DOCTYPE, which is inserted by React.\n //\n // The first chunk sent by React will contain the doctype. After that, we can\n // pass through the rest of the chunks as-is.\n let didTransformFirstChunk = false\n return new TransformStream({\n transform(chunk, controller) {\n if (isBuildTimePrerendering && !didTransformFirstChunk) {\n didTransformFirstChunk = true\n const decoder = new TextDecoder('utf-8', { fatal: true })\n const chunkStr = decoder.decode(chunk, {\n stream: true,\n })\n const updatedChunkStr = insertBuildIdComment(chunkStr, buildId)\n controller.enqueue(encoder.encode(updatedChunkStr))\n return\n }\n controller.enqueue(chunk)\n },\n })\n}\n\nexport function renderToInitialFizzStream({\n ReactDOMServer,\n element,\n streamOptions,\n}: {\n ReactDOMServer: {\n renderToReadableStream: typeof import('react-dom/server').renderToReadableStream\n }\n element: React.ReactElement\n streamOptions?: Parameters[1]\n}): Promise {\n return getTracer().trace(AppRenderSpan.renderToReadableStream, async () =>\n ReactDOMServer.renderToReadableStream(element, streamOptions)\n )\n}\n\nfunction createMetadataTransformStream(\n insert: () => Promise | string\n): TransformStream {\n let chunkIndex = -1\n let isMarkRemoved = false\n\n return new TransformStream({\n async transform(chunk, controller) {\n let iconMarkIndex = -1\n let closedHeadIndex = -1\n chunkIndex++\n\n if (isMarkRemoved) {\n controller.enqueue(chunk)\n return\n }\n let iconMarkLength = 0\n // Only search for the closed head tag once\n if (iconMarkIndex === -1) {\n iconMarkIndex = indexOfUint8Array(chunk, ENCODED_TAGS.META.ICON_MARK)\n if (iconMarkIndex === -1) {\n controller.enqueue(chunk)\n return\n } else {\n // When we found the `` or `>`, checking the next char to ensure we cover both cases.\n iconMarkLength = ENCODED_TAGS.META.ICON_MARK.length\n // Check if next char is /, this is for xml mode.\n if (chunk[iconMarkIndex + iconMarkLength] === 47) {\n iconMarkLength += 2\n } else {\n // The last char is `>`\n iconMarkLength++\n }\n }\n }\n\n // Check if icon mark is inside tag in the first chunk.\n if (chunkIndex === 0) {\n closedHeadIndex = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD)\n if (iconMarkIndex !== -1) {\n // The mark icon is located in the 1st chunk before the head tag.\n // We do not need to insert the script tag in this case because it's in the head.\n // Just remove the icon mark from the chunk.\n if (iconMarkIndex < closedHeadIndex) {\n const replaced = new Uint8Array(chunk.length - iconMarkLength)\n\n // Remove the icon mark from the chunk.\n replaced.set(chunk.subarray(0, iconMarkIndex))\n replaced.set(\n chunk.subarray(iconMarkIndex + iconMarkLength),\n iconMarkIndex\n )\n chunk = replaced\n } else {\n // The icon mark is after the head tag, replace and insert the script tag at that position.\n const insertion = await insert()\n const encodedInsertion = encoder.encode(insertion)\n const insertionLength = encodedInsertion.length\n const replaced = new Uint8Array(\n chunk.length - iconMarkLength + insertionLength\n )\n replaced.set(chunk.subarray(0, iconMarkIndex))\n replaced.set(encodedInsertion, iconMarkIndex)\n replaced.set(\n chunk.subarray(iconMarkIndex + iconMarkLength),\n iconMarkIndex + insertionLength\n )\n chunk = replaced\n }\n isMarkRemoved = true\n }\n // If there's no icon mark located, it will be handled later when if present in the following chunks.\n } else {\n // When it's appeared in the following chunks, we'll need to\n // remove the mark and then insert the script tag at that position.\n const insertion = await insert()\n const encodedInsertion = encoder.encode(insertion)\n const insertionLength = encodedInsertion.length\n // Replace the icon mark with the hoist script or empty string.\n const replaced = new Uint8Array(\n chunk.length - iconMarkLength + insertionLength\n )\n // Set the first part of the chunk, before the icon mark.\n replaced.set(chunk.subarray(0, iconMarkIndex))\n // Set the insertion after the icon mark.\n replaced.set(encodedInsertion, iconMarkIndex)\n\n // Set the rest of the chunk after the icon mark.\n replaced.set(\n chunk.subarray(iconMarkIndex + iconMarkLength),\n iconMarkIndex + insertionLength\n )\n chunk = replaced\n isMarkRemoved = true\n }\n controller.enqueue(chunk)\n },\n })\n}\n\nfunction createHeadInsertionTransformStream(\n insert: () => Promise\n): TransformStream {\n let inserted = false\n\n // We need to track if this transform saw any bytes because if it didn't\n // we won't want to insert any server HTML at all\n let hasBytes = false\n\n return new TransformStream({\n async transform(chunk, controller) {\n hasBytes = true\n\n const insertion = await insert()\n if (inserted) {\n if (insertion) {\n const encodedInsertion = encoder.encode(insertion)\n controller.enqueue(encodedInsertion)\n }\n controller.enqueue(chunk)\n } else {\n // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.\n const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD)\n // In fully static rendering or non PPR rendering cases:\n // `/head>` will always be found in the chunk in first chunk rendering.\n if (index !== -1) {\n if (insertion) {\n const encodedInsertion = encoder.encode(insertion)\n // Get the total count of the bytes in the chunk and the insertion\n // e.g.\n // chunk = \n // insertion = \n // output = [ ] \n const insertedHeadContent = new Uint8Array(\n chunk.length + encodedInsertion.length\n )\n // Append the first part of the chunk, before the head tag\n insertedHeadContent.set(chunk.slice(0, index))\n // Append the server inserted content\n insertedHeadContent.set(encodedInsertion, index)\n // Append the rest of the chunk\n insertedHeadContent.set(\n chunk.slice(index),\n index + encodedInsertion.length\n )\n controller.enqueue(insertedHeadContent)\n } else {\n controller.enqueue(chunk)\n }\n inserted = true\n } else {\n // This will happens in PPR rendering during next start, when the page is partially rendered.\n // When the page resumes, the head tag will be found in the middle of the chunk.\n // Where we just need to append the insertion and chunk to the current stream.\n // e.g.\n // PPR-static: ... [ resume content ] \n // PPR-resume: [ insertion ] [ rest content ]\n if (insertion) {\n controller.enqueue(encoder.encode(insertion))\n }\n controller.enqueue(chunk)\n inserted = true\n }\n }\n },\n async flush(controller) {\n // Check before closing if there's anything remaining to insert.\n if (hasBytes) {\n const insertion = await insert()\n if (insertion) {\n controller.enqueue(encoder.encode(insertion))\n }\n }\n },\n })\n}\n\nfunction createClientResumeScriptInsertionTransformStream(): TransformStream<\n Uint8Array,\n Uint8Array\n> {\n const segmentPath = '/_full'\n const cacheBustingHeader = computeCacheBustingSearchParam(\n '1', // headers[NEXT_ROUTER_PREFETCH_HEADER]\n '/_full', // headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]\n undefined, // headers[NEXT_ROUTER_STATE_TREE_HEADER]\n undefined // headers[NEXT_URL]\n )\n const searchStr = `${NEXT_RSC_UNION_QUERY}=${cacheBustingHeader}`\n const NEXT_CLIENT_RESUME_SCRIPT = ``\n\n let didAlreadyInsert = false\n return new TransformStream({\n transform(chunk, controller) {\n if (didAlreadyInsert) {\n // Already inserted the script into the head. Pass through.\n controller.enqueue(chunk)\n return\n }\n // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.\n const headClosingTagIndex = indexOfUint8Array(\n chunk,\n ENCODED_TAGS.CLOSED.HEAD\n )\n\n if (headClosingTagIndex === -1) {\n // In fully static rendering or non PPR rendering cases:\n // `/head>` will always be found in the chunk in first chunk rendering.\n controller.enqueue(chunk)\n return\n }\n\n const encodedInsertion = encoder.encode(NEXT_CLIENT_RESUME_SCRIPT)\n // Get the total count of the bytes in the chunk and the insertion\n // e.g.\n // chunk = \n // insertion = \n // output = [ ] \n const insertedHeadContent = new Uint8Array(\n chunk.length + encodedInsertion.length\n )\n // Append the first part of the chunk, before the head tag\n insertedHeadContent.set(chunk.slice(0, headClosingTagIndex))\n // Append the server inserted content\n insertedHeadContent.set(encodedInsertion, headClosingTagIndex)\n // Append the rest of the chunk\n insertedHeadContent.set(\n chunk.slice(headClosingTagIndex),\n headClosingTagIndex + encodedInsertion.length\n )\n\n controller.enqueue(insertedHeadContent)\n didAlreadyInsert = true\n },\n })\n}\n\n// Suffix after main body content - scripts before ,\n// but wait for the major chunks to be enqueued.\nfunction createDeferredSuffixStream(\n suffix: string\n): TransformStream {\n let flushed = false\n let pending: DetachedPromise | undefined\n\n const flush = (controller: TransformStreamDefaultController) => {\n const detached = new DetachedPromise()\n pending = detached\n\n scheduleImmediate(() => {\n try {\n controller.enqueue(encoder.encode(suffix))\n } catch {\n // If an error occurs while enqueuing it can't be due to this\n // transformers fault. It's likely due to the controller being\n // errored due to the stream being cancelled.\n } finally {\n pending = undefined\n detached.resolve()\n }\n })\n }\n\n return new TransformStream({\n transform(chunk, controller) {\n controller.enqueue(chunk)\n\n // If we've already flushed, we're done.\n if (flushed) return\n\n // Schedule the flush to happen.\n flushed = true\n flush(controller)\n },\n flush(controller) {\n if (pending) return pending.promise\n if (flushed) return\n\n // Flush now.\n controller.enqueue(encoder.encode(suffix))\n },\n })\n}\n\nfunction createFlightDataInjectionTransformStream(\n stream: ReadableStream,\n delayDataUntilFirstHtmlChunk: boolean\n): TransformStream {\n let htmlStreamFinished = false\n\n let pull: Promise | null = null\n let donePulling = false\n\n function startOrContinuePulling(\n controller: TransformStreamDefaultController\n ) {\n if (!pull) {\n pull = startPulling(controller)\n }\n return pull\n }\n\n async function startPulling(controller: TransformStreamDefaultController) {\n const reader = stream.getReader()\n\n if (delayDataUntilFirstHtmlChunk) {\n // NOTE: streaming flush\n // We are buffering here for the inlined data stream because the\n // \"shell\" stream might be chunkenized again by the underlying stream\n // implementation, e.g. with a specific high-water mark. To ensure it's\n // the safe timing to pipe the data stream, this extra tick is\n // necessary.\n\n // We don't start reading until we've left the current Task to ensure\n // that it's inserted after flushing the shell. Note that this implementation\n // might get stale if impl details of Fizz change in the future.\n await atLeastOneTask()\n }\n\n try {\n while (true) {\n const { done, value } = await reader.read()\n if (done) {\n donePulling = true\n return\n }\n\n // We want to prioritize HTML over RSC data.\n // The SSR render is based on the same RSC stream, so when we get a new RSC chunk,\n // we're likely to produce an HTML chunk as well, so give it a chance to flush first.\n if (!delayDataUntilFirstHtmlChunk && !htmlStreamFinished) {\n await atLeastOneTask()\n }\n controller.enqueue(value)\n }\n } catch (err) {\n controller.error(err)\n }\n }\n\n return new TransformStream({\n start(controller) {\n if (!delayDataUntilFirstHtmlChunk) {\n startOrContinuePulling(controller)\n }\n },\n transform(chunk, controller) {\n controller.enqueue(chunk)\n\n // Start the streaming if it hasn't already been started yet.\n if (delayDataUntilFirstHtmlChunk) {\n startOrContinuePulling(controller)\n }\n },\n flush(controller) {\n htmlStreamFinished = true\n if (donePulling) {\n return\n }\n return startOrContinuePulling(controller)\n },\n })\n}\n\nconst CLOSE_TAG = ''\n\n/**\n * This transform stream moves the suffix to the end of the stream, so results\n * like `` will be transformed to\n * ``.\n */\nfunction createMoveSuffixStream(): TransformStream {\n let foundSuffix = false\n\n return new TransformStream({\n transform(chunk, controller) {\n if (foundSuffix) {\n return controller.enqueue(chunk)\n }\n\n const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.BODY_AND_HTML)\n if (index > -1) {\n foundSuffix = true\n\n // If the whole chunk is the suffix, then don't write anything, it will\n // be written in the flush.\n if (chunk.length === ENCODED_TAGS.CLOSED.BODY_AND_HTML.length) {\n return\n }\n\n // Write out the part before the suffix.\n const before = chunk.slice(0, index)\n controller.enqueue(before)\n\n // In the case where the suffix is in the middle of the chunk, we need\n // to split the chunk into two parts.\n if (chunk.length > ENCODED_TAGS.CLOSED.BODY_AND_HTML.length + index) {\n // Write out the part after the suffix.\n const after = chunk.slice(\n index + ENCODED_TAGS.CLOSED.BODY_AND_HTML.length\n )\n controller.enqueue(after)\n }\n } else {\n controller.enqueue(chunk)\n }\n },\n flush(controller) {\n // Even if we didn't find the suffix, the HTML is not valid if we don't\n // add it, so insert it at the end.\n controller.enqueue(ENCODED_TAGS.CLOSED.BODY_AND_HTML)\n },\n })\n}\n\nfunction createStripDocumentClosingTagsTransform(): TransformStream<\n Uint8Array,\n Uint8Array\n> {\n return new TransformStream({\n transform(chunk, controller) {\n // We rely on the assumption that chunks will never break across a code unit.\n // This is reasonable because we currently concat all of React's output from a single\n // flush into one chunk before streaming it forward which means the chunk will represent\n // a single coherent utf-8 string. This is not safe to use if we change our streaming to no\n // longer do this large buffered chunk\n if (\n isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.BODY_AND_HTML) ||\n isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.BODY) ||\n isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.HTML)\n ) {\n // the entire chunk is the closing tags; return without enqueueing anything.\n return\n }\n\n // We assume these tags will go at together at the end of the document and that\n // they won't appear anywhere else in the document. This is not really a safe assumption\n // but until we revamp our streaming infra this is a performant way to string the tags\n chunk = removeFromUint8Array(chunk, ENCODED_TAGS.CLOSED.BODY)\n chunk = removeFromUint8Array(chunk, ENCODED_TAGS.CLOSED.HTML)\n\n controller.enqueue(chunk)\n },\n })\n}\n\n/*\n * Checks if the root layout is missing the html or body tags\n * and if so, it will inject a script tag to throw an error in the browser, showing the user\n * the error message in the error overlay.\n */\nexport function createRootLayoutValidatorStream(): TransformStream<\n Uint8Array,\n Uint8Array\n> {\n let foundHtml = false\n let foundBody = false\n return new TransformStream({\n async transform(chunk, controller) {\n // Peek into the streamed chunk to see if the tags are present.\n if (\n !foundHtml &&\n indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.HTML) > -1\n ) {\n foundHtml = true\n }\n\n if (\n !foundBody &&\n indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.BODY) > -1\n ) {\n foundBody = true\n }\n\n controller.enqueue(chunk)\n },\n flush(controller) {\n const missingTags: ('html' | 'body')[] = []\n if (!foundHtml) missingTags.push('html')\n if (!foundBody) missingTags.push('body')\n\n if (!missingTags.length) return\n\n controller.enqueue(\n encoder.encode(\n `\n `<${c}>`)\n .join(\n missingTags.length > 1 ? ' and ' : ''\n )} tags in the root layout.\\nRead more at https://nextjs.org/docs/messages/missing-root-layout-tags\"\n data-next-error-digest=\"${MISSING_ROOT_TAGS_ERROR}\"\n data-next-error-stack=\"\"\n >\n `\n )\n )\n },\n })\n}\n\nfunction chainTransformers(\n readable: ReadableStream,\n transformers: ReadonlyArray | null>\n): ReadableStream {\n let stream = readable\n for (const transformer of transformers) {\n if (!transformer) continue\n\n stream = stream.pipeThrough(transformer)\n }\n return stream\n}\n\nexport type ContinueStreamOptions = {\n inlinedDataStream: ReadableStream | undefined\n isStaticGeneration: boolean\n isBuildTimePrerendering: boolean\n buildId: string\n getServerInsertedHTML: () => Promise\n getServerInsertedMetadata: () => Promise\n validateRootLayout?: boolean\n /**\n * Suffix to inject after the buffered data, but before the close tags.\n */\n suffix?: string | undefined\n}\n\nexport async function continueFizzStream(\n renderStream: ReactDOMServerReadableStream,\n {\n suffix,\n inlinedDataStream,\n isStaticGeneration,\n isBuildTimePrerendering,\n buildId,\n getServerInsertedHTML,\n getServerInsertedMetadata,\n validateRootLayout,\n }: ContinueStreamOptions\n): Promise> {\n // Suffix itself might contain close tags at the end, so we need to split it.\n const suffixUnclosed = suffix ? suffix.split(CLOSE_TAG, 1)[0] : null\n\n if (isStaticGeneration) {\n // If we're generating static HTML we need to wait for it to resolve before continuing.\n await renderStream.allReady\n } else {\n // Otherwise, we want to make sure Fizz is done with all microtasky work\n // before we start pulling the stream and cause a flush.\n await waitAtLeastOneReactRenderTask()\n }\n\n return chainTransformers(renderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n\n // Add build id comment to start of the HTML document (in export mode)\n createPrefetchCommentStream(isBuildTimePrerendering, buildId),\n\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n\n // Insert suffix content\n suffixUnclosed != null && suffixUnclosed.length > 0\n ? createDeferredSuffixStream(suffixUnclosed)\n : null,\n\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n inlinedDataStream\n ? createFlightDataInjectionTransformStream(inlinedDataStream, true)\n : null,\n\n // Validate the root layout for missing html or body tags\n validateRootLayout ? createRootLayoutValidatorStream() : null,\n\n // Close tags should always be deferred to the end\n createMoveSuffixStream(),\n\n // Special head insertions\n // TODO-APP: Insert server side html to end of head in app layout rendering, to avoid\n // hydration errors. Remove this once it's ready to be handled by react itself.\n createHeadInsertionTransformStream(getServerInsertedHTML),\n ])\n}\n\ntype ContinueDynamicPrerenderOptions = {\n getServerInsertedHTML: () => Promise\n getServerInsertedMetadata: () => Promise\n}\n\nexport async function continueDynamicPrerender(\n prerenderStream: ReadableStream,\n {\n getServerInsertedHTML,\n getServerInsertedMetadata,\n }: ContinueDynamicPrerenderOptions\n) {\n return (\n prerenderStream\n // Buffer everything to avoid flushing too frequently\n .pipeThrough(createBufferedTransformStream())\n .pipeThrough(createStripDocumentClosingTagsTransform())\n // Insert generated tags to head\n .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))\n // Transform metadata\n .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))\n )\n}\n\ntype ContinueStaticPrerenderOptions = {\n inlinedDataStream: ReadableStream\n getServerInsertedHTML: () => Promise\n getServerInsertedMetadata: () => Promise\n isBuildTimePrerendering: boolean\n buildId: string\n}\n\nexport async function continueStaticPrerender(\n prerenderStream: ReadableStream,\n {\n inlinedDataStream,\n getServerInsertedHTML,\n getServerInsertedMetadata,\n isBuildTimePrerendering,\n buildId,\n }: ContinueStaticPrerenderOptions\n) {\n return (\n prerenderStream\n // Buffer everything to avoid flushing too frequently\n .pipeThrough(createBufferedTransformStream())\n // Add build id comment to start of the HTML document (in export mode)\n .pipeThrough(\n createPrefetchCommentStream(isBuildTimePrerendering, buildId)\n )\n // Insert generated tags to head\n .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))\n // Transform metadata\n .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n .pipeThrough(\n createFlightDataInjectionTransformStream(inlinedDataStream, true)\n )\n // Close tags should always be deferred to the end\n .pipeThrough(createMoveSuffixStream())\n )\n}\n\nexport async function continueStaticFallbackPrerender(\n prerenderStream: ReadableStream,\n {\n inlinedDataStream,\n getServerInsertedHTML,\n getServerInsertedMetadata,\n isBuildTimePrerendering,\n buildId,\n }: ContinueStaticPrerenderOptions\n) {\n // Same as `continueStaticPrerender`, but also inserts an additional script\n // to instruct the client to start fetching the hydration data as early\n // as possible.\n return (\n prerenderStream\n // Buffer everything to avoid flushing too frequently\n .pipeThrough(createBufferedTransformStream())\n // Add build id comment to start of the HTML document (in export mode)\n .pipeThrough(\n createPrefetchCommentStream(isBuildTimePrerendering, buildId)\n )\n // Insert generated tags to head\n .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))\n // Insert the client resume script into the head\n .pipeThrough(createClientResumeScriptInsertionTransformStream())\n // Transform metadata\n .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n .pipeThrough(\n createFlightDataInjectionTransformStream(inlinedDataStream, true)\n )\n // Close tags should always be deferred to the end\n .pipeThrough(createMoveSuffixStream())\n )\n}\n\ntype ContinueResumeOptions = {\n inlinedDataStream: ReadableStream\n getServerInsertedHTML: () => Promise\n getServerInsertedMetadata: () => Promise\n delayDataUntilFirstHtmlChunk: boolean\n}\n\nexport async function continueDynamicHTMLResume(\n renderStream: ReadableStream,\n {\n delayDataUntilFirstHtmlChunk,\n inlinedDataStream,\n getServerInsertedHTML,\n getServerInsertedMetadata,\n }: ContinueResumeOptions\n) {\n return (\n renderStream\n // Buffer everything to avoid flushing too frequently\n .pipeThrough(createBufferedTransformStream())\n // Insert generated tags to head\n .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))\n // Transform metadata\n .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n .pipeThrough(\n createFlightDataInjectionTransformStream(\n inlinedDataStream,\n delayDataUntilFirstHtmlChunk\n )\n )\n // Close tags should always be deferred to the end\n .pipeThrough(createMoveSuffixStream())\n )\n}\n\nexport function createDocumentClosingStream(): ReadableStream {\n return streamFromString(CLOSE_TAG)\n}\n"],"names":["getTracer","AppRenderSpan","DetachedPromise","scheduleImmediate","atLeastOneTask","waitAtLeastOneReactRenderTask","ENCODED_TAGS","indexOfUint8Array","isEquivalentUint8Arrays","removeFromUint8Array","MISSING_ROOT_TAGS_ERROR","insertBuildIdComment","RSC_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_RSC_UNION_QUERY","computeCacheBustingSearchParam","voidCatch","encoder","TextEncoder","chainStreams","streams","length","ReadableStream","start","controller","close","readable","writable","TransformStream","promise","pipeTo","preventClose","i","nextStream","then","lastStream","catch","streamFromString","str","enqueue","encode","streamFromBuffer","chunk","streamToChunks","stream","reader","getReader","chunks","done","value","read","push","concatUint8Arrays","totalLength","reduce","sum","result","Uint8Array","offset","set","streamToUint8Array","streamToBuffer","Buffer","concat","streamToString","signal","decoder","TextDecoder","fatal","string","aborted","decode","createBufferedTransformStream","options","maxBufferByteLength","Infinity","bufferedChunks","bufferByteLength","pending","flush","copiedBytes","bufferedChunk","byteLength","scheduleFlush","detached","undefined","resolve","transform","createPrefetchCommentStream","isBuildTimePrerendering","buildId","didTransformFirstChunk","chunkStr","updatedChunkStr","renderToInitialFizzStream","ReactDOMServer","element","streamOptions","trace","renderToReadableStream","createMetadataTransformStream","insert","chunkIndex","isMarkRemoved","iconMarkIndex","closedHeadIndex","iconMarkLength","META","ICON_MARK","CLOSED","HEAD","replaced","subarray","insertion","encodedInsertion","insertionLength","createHeadInsertionTransformStream","inserted","hasBytes","index","insertedHeadContent","slice","createClientResumeScriptInsertionTransformStream","segmentPath","cacheBustingHeader","searchStr","NEXT_CLIENT_RESUME_SCRIPT","didAlreadyInsert","headClosingTagIndex","createDeferredSuffixStream","suffix","flushed","createFlightDataInjectionTransformStream","delayDataUntilFirstHtmlChunk","htmlStreamFinished","pull","donePulling","startOrContinuePulling","startPulling","err","error","CLOSE_TAG","createMoveSuffixStream","foundSuffix","BODY_AND_HTML","before","after","createStripDocumentClosingTagsTransform","BODY","HTML","createRootLayoutValidatorStream","foundHtml","foundBody","OPENING","missingTags","map","c","join","chainTransformers","transformers","transformer","pipeThrough","continueFizzStream","renderStream","inlinedDataStream","isStaticGeneration","getServerInsertedHTML","getServerInsertedMetadata","validateRootLayout","suffixUnclosed","split","allReady","continueDynamicPrerender","prerenderStream","continueStaticPrerender","continueStaticFallbackPrerender","continueDynamicHTMLResume","createDocumentClosingStream"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 16588, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment-cache/segment-value-encoding.ts"],"sourcesContent":["import { PAGE_SEGMENT_KEY } from '../segment'\nimport type { Segment as FlightRouterStateSegment } from '../app-router-types'\n\n// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque = T & { __brand: K }\n\nexport type SegmentRequestKeyPart = Opaque<'SegmentRequestKeyPart', string>\nexport type SegmentRequestKey = Opaque<'SegmentRequestKey', string>\n\nexport const ROOT_SEGMENT_REQUEST_KEY = '' as SegmentRequestKey\n\nexport const HEAD_REQUEST_KEY = '/_head' as SegmentRequestKey\n\nexport function createSegmentRequestKeyPart(\n segment: FlightRouterStateSegment\n): SegmentRequestKeyPart {\n if (typeof segment === 'string') {\n if (segment.startsWith(PAGE_SEGMENT_KEY)) {\n // The Flight Router State type sometimes includes the search params in\n // the page segment. However, the Segment Cache tracks this as a separate\n // key. So, we strip the search params here, and then add them back when\n // the cache entry is turned back into a FlightRouterState. This is an\n // unfortunate consequence of the FlightRouteState being used both as a\n // transport type and as a cache key; we'll address this once more of the\n // Segment Cache implementation has settled.\n // TODO: We should hoist the search params out of the FlightRouterState\n // type entirely, This is our plan for dynamic route params, too.\n return PAGE_SEGMENT_KEY as SegmentRequestKeyPart\n }\n const safeName =\n // TODO: FlightRouterState encodes Not Found routes as \"/_not-found\".\n // But params typically don't include the leading slash. We should use\n // a different encoding to avoid this special case.\n segment === '/_not-found'\n ? '_not-found'\n : encodeToFilesystemAndURLSafeString(segment)\n // Since this is not a dynamic segment, it's fully encoded. It does not\n // need to be \"hydrated\" with a param value.\n return safeName as SegmentRequestKeyPart\n }\n\n const name = segment[0]\n const paramType = segment[2]\n const safeName = encodeToFilesystemAndURLSafeString(name)\n\n const encodedName = '$' + paramType + '$' + safeName\n return encodedName as SegmentRequestKeyPart\n}\n\nexport function appendSegmentRequestKeyPart(\n parentRequestKey: SegmentRequestKey,\n parallelRouteKey: string,\n childRequestKeyPart: SegmentRequestKeyPart\n): SegmentRequestKey {\n // Aside from being filesystem safe, segment keys are also designed so that\n // each segment and parallel route creates its own subdirectory. Roughly in\n // the same shape as the source app directory. This is mostly just for easier\n // debugging (you can open up the build folder and navigate the output); if\n // we wanted to do we could just use a flat structure.\n\n // Omit the parallel route key for children, since this is the most\n // common case. Saves some bytes (and it's what the app directory does).\n const slotKey =\n parallelRouteKey === 'children'\n ? childRequestKeyPart\n : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`\n return (parentRequestKey + '/' + slotKey) as SegmentRequestKey\n}\n\n// Define a regex pattern to match the most common characters found in a route\n// param. It excludes anything that might not be cross-platform filesystem\n// compatible, like |. It does not need to be precise because the fallback is to\n// just base64url-encode the whole parameter, which is fine; we just don't do it\n// by default for compactness, and for easier debugging.\nconst simpleParamValueRegex = /^[a-zA-Z0-9\\-_@]+$/\n\nfunction encodeToFilesystemAndURLSafeString(value: string) {\n if (simpleParamValueRegex.test(value)) {\n return value\n }\n // If there are any unsafe characters, base64url-encode the entire value.\n // We also add a ! prefix so it doesn't collide with the simple case.\n const base64url = btoa(value)\n .replace(/\\+/g, '-') // Replace '+' with '-'\n .replace(/\\//g, '_') // Replace '/' with '_'\n .replace(/=+$/, '') // Remove trailing '='\n return '!' + base64url\n}\n\nexport function convertSegmentPathToStaticExportFilename(\n segmentPath: string\n): string {\n return `__next${segmentPath.replace(/\\//g, '.')}.txt`\n}\n"],"names":["PAGE_SEGMENT_KEY","ROOT_SEGMENT_REQUEST_KEY","HEAD_REQUEST_KEY","createSegmentRequestKeyPart","segment","startsWith","safeName","encodeToFilesystemAndURLSafeString","name","paramType","encodedName","appendSegmentRequestKeyPart","parentRequestKey","parallelRouteKey","childRequestKeyPart","slotKey","simpleParamValueRegex","value","test","base64url","btoa","replace","convertSegmentPathToStaticExportFilename","segmentPath"],"mappings":";;;;;;;;;;;;AAAA,SAASA,gBAAgB,QAAQ,aAAY;;AAStC,MAAMC,2BAA2B,GAAuB;AAExD,MAAMC,mBAAmB,SAA6B;AAEtD,SAASC,4BACdC,OAAiC;IAEjC,IAAI,OAAOA,YAAY,UAAU;QAC/B,IAAIA,QAAQC,UAAU,CAACL,mLAAAA,GAAmB;YACxC,uEAAuE;YACvE,yEAAyE;YACzE,wEAAwE;YACxE,sEAAsE;YACtE,uEAAuE;YACvE,yEAAyE;YACzE,4CAA4C;YAC5C,uEAAuE;YACvE,iEAAiE;YACjE,OAAOA,mLAAAA;QACT;QACA,MAAMM,WACJ,AACA,qEADqE,CACC;QACtE,mDAAmD;QACnDF,YAAY,gBACR,eACAG,mCAAmCH;QACzC,uEAAuE;QACvE,4CAA4C;QAC5C,OAAOE;IACT;IAEA,MAAME,OAAOJ,OAAO,CAAC,EAAE;IACvB,MAAMK,YAAYL,OAAO,CAAC,EAAE;IAC5B,MAAME,WAAWC,mCAAmCC;IAEpD,MAAME,cAAc,MAAMD,YAAY,MAAMH;IAC5C,OAAOI;AACT;AAEO,SAASC,4BACdC,gBAAmC,EACnCC,gBAAwB,EACxBC,mBAA0C;IAE1C,2EAA2E;IAC3E,2EAA2E;IAC3E,6EAA6E;IAC7E,2EAA2E;IAC3E,sDAAsD;IAEtD,mEAAmE;IACnE,wEAAwE;IACxE,MAAMC,UACJF,qBAAqB,aACjBC,sBACA,CAAC,CAAC,EAAEP,mCAAmCM,kBAAkB,CAAC,EAAEC,qBAAqB;IACvF,OAAQF,mBAAmB,MAAMG;AACnC;AAEA,8EAA8E;AAC9E,0EAA0E;AAC1E,gFAAgF;AAChF,gFAAgF;AAChF,wDAAwD;AACxD,MAAMC,wBAAwB;AAE9B,SAAST,mCAAmCU,KAAa;IACvD,IAAID,sBAAsBE,IAAI,CAACD,QAAQ;QACrC,OAAOA;IACT;IACA,yEAAyE;IACzE,qEAAqE;IACrE,MAAME,YAAYC,KAAKH,OACpBI,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,IAAI,sBAAsB;;IAC5C,OAAO,MAAMF;AACf;AAEO,SAASG,yCACdC,WAAmB;IAEnB,OAAO,CAAC,MAAM,EAAEA,YAAYF,OAAO,CAAC,OAAO,KAAK,IAAI,CAAC;AACvD","ignoreList":[0]}}, - {"offset": {"line": 16666, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/string-hash/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={328:e=>{function hash(e){var r=5381,_=e.length;while(_){r=r*33^e.charCodeAt(--_)}return r>>>0}e.exports=hash}};var r={};function __nccwpck_require__(_){var a=r[_];if(a!==undefined){return a.exports}var t=r[_]={exports:{}};var i=true;try{e[_](t,t.exports,__nccwpck_require__);i=false}finally{if(i)delete r[_]}return t.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var _=__nccwpck_require__(328);module.exports=_})();"],"names":[],"mappings":"AAAA,CAAC;IAAK;IAAa,IAAI,IAAE;QAAC,KAAI,CAAA;YAAI,SAAS,KAAK,CAAC;gBAAE,IAAI,IAAE,MAAK,IAAE,EAAE,MAAM;gBAAC,MAAM,EAAE;oBAAC,IAAE,IAAE,KAAG,EAAE,UAAU,CAAC,EAAE;gBAAE;gBAAC,OAAO,MAAI;YAAC;YAAC,EAAE,OAAO,GAAC;QAAI;IAAC;IAAE,IAAI,IAAE,CAAC;IAAE,SAAS,oBAAoB,CAAC;QAAE,IAAI,IAAE,CAAC,CAAC,EAAE;QAAC,IAAG,MAAI,WAAU;YAAC,OAAO,EAAE,OAAO;QAAA;QAAC,IAAI,IAAE,CAAC,CAAC,EAAE,GAAC;YAAC,SAAQ,CAAC;QAAC;QAAE,IAAI,IAAE;QAAK,IAAG;YAAC,CAAC,CAAC,EAAE,CAAC,GAAE,EAAE,OAAO,EAAC;YAAqB,IAAE;QAAK,SAAQ;YAAC,IAAG,GAAE,OAAO,CAAC,CAAC,EAAE;QAAA;QAAC,OAAO,EAAE,OAAO;IAAA;IAAC,IAAG,OAAO,wBAAsB,aAAY,oBAAoB,EAAE,GAAC,wFAAU;IAAI,IAAI,IAAE,oBAAoB;IAAK,OAAO,OAAO,GAAC;AAAC,CAAC","ignoreList":[0]}}, - {"offset": {"line": 16706, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/format-server-error.ts"],"sourcesContent":["const invalidServerComponentReactHooks = [\n 'useDeferredValue',\n 'useEffect',\n 'useImperativeHandle',\n 'useInsertionEffect',\n 'useLayoutEffect',\n 'useReducer',\n 'useRef',\n 'useState',\n 'useSyncExternalStore',\n 'useTransition',\n 'experimental_useOptimistic',\n 'useOptimistic',\n]\n\nfunction setMessage(error: Error, message: string): void {\n error.message = message\n if (error.stack) {\n const lines = error.stack.split('\\n')\n lines[0] = message\n error.stack = lines.join('\\n')\n }\n}\n\n/**\n * Input:\n * Error: Something went wrong\n at funcName (/path/to/file.js:10:5)\n at anotherFunc (/path/to/file.js:15:10)\n \n * Output:\n at funcName (/path/to/file.js:10:5)\n at anotherFunc (/path/to/file.js:15:10) \n */\nexport function getStackWithoutErrorMessage(error: Error): string {\n const stack = error.stack\n if (!stack) return ''\n return stack.replace(/^[^\\n]*\\n/, '')\n}\n\nexport function formatServerError(error: Error): void {\n if (typeof error?.message !== 'string') return\n\n if (\n error.message.includes(\n 'Class extends value undefined is not a constructor or null'\n )\n ) {\n const addedMessage =\n 'This might be caused by a React Class Component being rendered in a Server Component, React Class Components only works in Client Components. Read more: https://nextjs.org/docs/messages/class-component-in-server-component'\n\n // If this error instance already has the message, don't add it again\n if (error.message.includes(addedMessage)) return\n\n setMessage(\n error,\n `${error.message}\n\n${addedMessage}`\n )\n return\n }\n\n if (error.message.includes('createContext is not a function')) {\n setMessage(\n error,\n 'createContext only works in Client Components. Add the \"use client\" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/context-in-server-component'\n )\n return\n }\n\n for (const clientHook of invalidServerComponentReactHooks) {\n const regex = new RegExp(`\\\\b${clientHook}\\\\b.*is not a function`)\n if (regex.test(error.message)) {\n setMessage(\n error,\n `${clientHook} only works in Client Components. Add the \"use client\" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/react-client-hook-in-server-component`\n )\n return\n }\n }\n}\n"],"names":["invalidServerComponentReactHooks","setMessage","error","message","stack","lines","split","join","getStackWithoutErrorMessage","replace","formatServerError","includes","addedMessage","clientHook","regex","RegExp","test"],"mappings":";;;;;;AAAA,MAAMA,mCAAmC;IACvC;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;CACD;AAED,SAASC,WAAWC,KAAY,EAAEC,OAAe;IAC/CD,MAAMC,OAAO,GAAGA;IAChB,IAAID,MAAME,KAAK,EAAE;QACf,MAAMC,QAAQH,MAAME,KAAK,CAACE,KAAK,CAAC;QAChCD,KAAK,CAAC,EAAE,GAAGF;QACXD,MAAME,KAAK,GAAGC,MAAME,IAAI,CAAC;IAC3B;AACF;AAYO,SAASC,4BAA4BN,KAAY;IACtD,MAAME,QAAQF,MAAME,KAAK;IACzB,IAAI,CAACA,OAAO,OAAO;IACnB,OAAOA,MAAMK,OAAO,CAAC,aAAa;AACpC;AAEO,SAASC,kBAAkBR,KAAY;IAC5C,IAAI,OAAA,CAAOA,SAAAA,OAAAA,KAAAA,IAAAA,MAAOC,OAAO,MAAK,UAAU;IAExC,IACED,MAAMC,OAAO,CAACQ,QAAQ,CACpB,+DAEF;QACA,MAAMC,eACJ;QAEF,qEAAqE;QACrE,IAAIV,MAAMC,OAAO,CAACQ,QAAQ,CAACC,eAAe;QAE1CX,WACEC,OACA,GAAGA,MAAMC,OAAO,CAAC;;AAEvB,EAAES,cAAc;QAEZ;IACF;IAEA,IAAIV,MAAMC,OAAO,CAACQ,QAAQ,CAAC,oCAAoC;QAC7DV,WACEC,OACA;QAEF;IACF;IAEA,KAAK,MAAMW,cAAcb,iCAAkC;QACzD,MAAMc,QAAQ,IAAIC,OAAO,CAAC,GAAG,EAAEF,WAAW,sBAAsB,CAAC;QACjE,IAAIC,MAAME,IAAI,CAACd,MAAMC,OAAO,GAAG;YAC7BF,WACEC,OACA,GAAGW,WAAW,oLAAoL,CAAC;YAErM;QACF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 16766, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request-meta.ts"],"sourcesContent":["import type { IncomingMessage } from 'http'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { UrlWithParsedQuery } from 'url'\nimport type { BaseNextRequest } from './base-http'\nimport type { CloneableBody } from './body-streams'\nimport type { RouteMatch } from './route-matches/route-match'\nimport type { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\nimport type {\n ResponseCacheEntry,\n ServerComponentsHmrCache,\n} from './response-cache'\nimport type { PagesDevOverlayBridgeType } from '../next-devtools/userspace/pages/pages-dev-overlay-setup'\nimport type { OpaqueFallbackRouteParams } from './request/fallback-params'\nimport type { IncrementalCache } from './lib/incremental-cache'\n\n// FIXME: (wyattjoh) this is a temporary solution to allow us to pass data between bundled modules\nexport const NEXT_REQUEST_META = Symbol.for('NextInternalRequestMeta')\n\nexport type NextIncomingMessage = (BaseNextRequest | IncomingMessage) & {\n [NEXT_REQUEST_META]?: RequestMeta\n}\n\n/**\n * The callback function to call when a response cache entry was generated or\n * looked up in the cache. When it returns true, the server assumes that the\n * handler has already responded to the request and will not do so itself.\n */\nexport type OnCacheEntryHandler = (\n /**\n * The response cache entry that was generated or looked up in the cache.\n */\n cacheEntry: ResponseCacheEntry,\n\n /**\n * The request metadata.\n */\n requestMeta: {\n /**\n * The URL that was used to make the request.\n */\n url: string | undefined\n }\n) => Promise | boolean | void\n\nexport interface RequestMeta {\n /**\n * The query that was used to make the request.\n */\n initQuery?: ParsedUrlQuery\n\n /**\n * The URL that was used to make the request.\n */\n initURL?: string\n\n /**\n * The protocol that was used to make the request.\n */\n initProtocol?: string\n\n /**\n * The body that was read from the request. This is used to allow the body to\n * be read multiple times.\n */\n clonableBody?: CloneableBody\n\n /**\n * True when the request matched a locale domain that was configured in the\n * next.config.js file.\n */\n isLocaleDomain?: boolean\n\n /**\n * True when the request had locale information stripped from the pathname\n * part of the URL.\n */\n didStripLocale?: boolean\n\n /**\n * If the request had it's URL rewritten, this is the URL it was rewritten to.\n */\n rewroteURL?: string\n\n /**\n * The cookies that were added by middleware and were added to the response.\n */\n middlewareCookie?: string[]\n\n /**\n * The match on the request for a given route.\n */\n match?: RouteMatch\n\n /**\n * The incremental cache to use for the request.\n */\n incrementalCache?: IncrementalCache\n\n /**\n * The server components HMR cache, only for dev.\n */\n serverComponentsHmrCache?: ServerComponentsHmrCache\n\n /**\n * Equals the segment path that was used for the prefetch RSC request.\n */\n segmentPrefetchRSCRequest?: string\n\n /**\n * True when the request is for the prefetch flight data.\n */\n isPrefetchRSCRequest?: true\n\n /**\n * True when the request is for the flight data.\n */\n isRSCRequest?: true\n\n /**\n * A search param set by the Next.js client when performing RSC requests.\n * Because some CDNs do not vary their cache entries on our custom headers,\n * this search param represents a hash of the header values. For any cached\n * RSC request, we should verify that the hash matches before responding.\n * Otherwise this can lead to cache poisoning.\n * TODO: Consider not using custom request headers at all, and instead encode\n * everything into the search param.\n */\n cacheBustingSearchParam?: string\n\n /**\n * True when the request is for the `/_next/data` route using the pages\n * router.\n */\n isNextDataReq?: true\n\n /**\n * Postponed state to use for resumption. If present it's assumed that the\n * request is for a page that has postponed (there are no guarantees that the\n * page actually has postponed though as it would incur an additional cache\n * lookup).\n */\n postponed?: string\n\n /**\n * If provided, this will be called when a response cache entry was generated\n * or looked up in the cache.\n *\n * @deprecated Use `onCacheEntryV2` instead.\n */\n onCacheEntry?: OnCacheEntryHandler\n\n /**\n * If provided, this will be called when a response cache entry was generated\n * or looked up in the cache.\n */\n onCacheEntryV2?: OnCacheEntryHandler\n\n /**\n * The previous revalidate before rendering 404 page for notFound: true\n */\n notFoundRevalidate?: number | false\n\n /**\n * In development, the original source page that returned a 404.\n */\n developmentNotFoundSourcePage?: string\n\n /**\n * The path we routed to and should be invoked\n */\n invokePath?: string\n\n /**\n * The specific page output we should be matching\n */\n invokeOutput?: string\n\n /**\n * The status we are invoking the request with from routing\n */\n invokeStatus?: number\n\n /**\n * The routing error we are invoking with\n */\n invokeError?: Error\n\n /**\n * The query parsed for the invocation\n */\n invokeQuery?: Record\n\n /**\n * Whether the request is a middleware invocation\n */\n middlewareInvoke?: boolean\n\n /**\n * Whether the request should render the fallback shell or not.\n */\n renderFallbackShell?: boolean\n\n /**\n * Whether the request is for the custom error page.\n */\n customErrorRender?: true\n\n /**\n * Whether to bubble up the NoFallbackError to the caller when a 404 is\n * returned.\n */\n bubbleNoFallback?: true\n\n /**\n * True when the request had locale information inferred from the default\n * locale.\n */\n localeInferredFromDefault?: true\n\n /**\n * The locale that was inferred or explicitly set for the request.\n */\n locale?: string\n\n /**\n * The default locale that was inferred or explicitly set for the request.\n */\n defaultLocale?: string\n\n /**\n * The relative project dir the server is running in from project root\n */\n relativeProjectDir?: string\n\n /**\n * The dist directory the server is currently using\n */\n distDir?: string\n\n /**\n * The query after resolving routes\n */\n query?: ParsedUrlQuery\n\n /**\n * The params after resolving routes\n */\n params?: ParsedUrlQuery\n\n /**\n * ErrorOverlay component to use in development for pages router\n */\n PagesErrorDebug?: PagesDevOverlayBridgeType\n\n /**\n * Whether server is in minimal mode (this will be replaced with more\n * specific flags in future)\n */\n minimalMode?: boolean\n\n /**\n * DEV only: The fallback params that should be used when validating prerenders during dev\n */\n devFallbackParams?: OpaqueFallbackRouteParams\n\n /**\n * DEV only: Request timings in process.hrtime.bigint()\n */\n devRequestTimingStart?: bigint\n devRequestTimingMiddlewareStart?: bigint\n devRequestTimingMiddlewareEnd?: bigint\n devRequestTimingInternalsEnd?: bigint\n\n /**\n * DEV only: The duration of getStaticPaths/generateStaticParams in process.hrtime.bigint()\n */\n devGenerateStaticParamsDuration?: bigint\n}\n\n/**\n * Gets the request metadata. If no key is provided, the entire metadata object\n * is returned.\n *\n * @param req the request to get the metadata from\n * @param key the key to get from the metadata (optional)\n * @returns the value for the key or the entire metadata object\n */\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key?: undefined\n): RequestMeta\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key: K\n): RequestMeta[K]\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key?: K\n): RequestMeta | RequestMeta[K] {\n const meta = req[NEXT_REQUEST_META] || {}\n return typeof key === 'string' ? meta[key] : meta\n}\n\n/**\n * Sets the request metadata.\n *\n * @param req the request to set the metadata on\n * @param meta the metadata to set\n * @returns the mutated request metadata\n */\nexport function setRequestMeta(req: NextIncomingMessage, meta: RequestMeta) {\n req[NEXT_REQUEST_META] = meta\n return meta\n}\n\n/**\n * Adds a value to the request metadata.\n *\n * @param request the request to mutate\n * @param key the key to set\n * @param value the value to set\n * @returns the mutated request metadata\n */\nexport function addRequestMeta(\n request: NextIncomingMessage,\n key: K,\n value: RequestMeta[K]\n) {\n const meta = getRequestMeta(request)\n meta[key] = value\n return setRequestMeta(request, meta)\n}\n\n/**\n * Removes a key from the request metadata.\n *\n * @param request the request to mutate\n * @param key the key to remove\n * @returns the mutated request metadata\n */\nexport function removeRequestMeta(\n request: NextIncomingMessage,\n key: K\n) {\n const meta = getRequestMeta(request)\n delete meta[key]\n return setRequestMeta(request, meta)\n}\n\ntype NextQueryMetadata = {\n /**\n * The `_rsc` query parameter used for cache busting to ensure that the RSC\n * requests do not get cached by the browser explicitly.\n */\n [NEXT_RSC_UNION_QUERY]?: string\n}\n\nexport type NextParsedUrlQuery = ParsedUrlQuery & NextQueryMetadata\n\nexport interface NextUrlWithParsedQuery extends UrlWithParsedQuery {\n query: NextParsedUrlQuery\n}\n"],"names":["NEXT_REQUEST_META","Symbol","for","getRequestMeta","req","key","meta","setRequestMeta","addRequestMeta","request","value","removeRequestMeta"],"mappings":"AAeA,kGAAkG;;;;;;;;;;;;;AAC3F,MAAMA,oBAAoBC,OAAOC,GAAG,CAAC,2BAA0B;AAuR/D,SAASC,eACdC,GAAwB,EACxBC,GAAO;IAEP,MAAMC,OAAOF,GAAG,CAACJ,kBAAkB,IAAI,CAAC;IACxC,OAAO,OAAOK,QAAQ,WAAWC,IAAI,CAACD,IAAI,GAAGC;AAC/C;AASO,SAASC,eAAeH,GAAwB,EAAEE,IAAiB;IACxEF,GAAG,CAACJ,kBAAkB,GAAGM;IACzB,OAAOA;AACT;AAUO,SAASE,eACdC,OAA4B,EAC5BJ,GAAM,EACNK,KAAqB;IAErB,MAAMJ,OAAOH,eAAeM;IAC5BH,IAAI,CAACD,IAAI,GAAGK;IACZ,OAAOH,eAAeE,SAASH;AACjC;AASO,SAASK,kBACdF,OAA4B,EAC5BJ,GAAM;IAEN,MAAMC,OAAOH,eAAeM;IAC5B,OAAOH,IAAI,CAACD,IAAI;IAChB,OAAOE,eAAeE,SAASH;AACjC","ignoreList":[0]}}, - {"offset": {"line": 16802, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/constants.ts"],"sourcesContent":["import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\n\n// in seconds\nexport const CACHE_ONE_YEAR = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n"],"names":["TEXT_PLAIN_CONTENT_TYPE_HEADER","HTML_CONTENT_TYPE_HEADER","JSON_CONTENT_TYPE_HEADER","NEXT_QUERY_PARAM_PREFIX","NEXT_INTERCEPTION_MARKER_PREFIX","MATCHED_PATH_HEADER","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","ACTION_SUFFIX","NEXT_DATA_SUFFIX","NEXT_META_SUFFIX","NEXT_BODY_SUFFIX","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_RESUME_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_IMPLICIT_TAG_ID","CACHE_ONE_YEAR","INFINITE_CACHE","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","PROXY_FILENAME","PROXY_LOCATION_REGEXP","INSTRUMENTATION_HOOK_FILENAME","PAGES_DIR_ALIAS","DOT_NEXT_ALIAS","ROOT_DIR_ALIAS","APP_DIR_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","PUBLIC_DIR_MIDDLEWARE_CONFLICT","SSG_GET_INITIAL_PROPS_CONFLICT","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","SERVER_PROPS_EXPORT_ERROR","GSP_NO_RETURNED_VALUE","GSSP_NO_RETURNED_VALUE","UNSTABLE_REVALIDATE_RENAME_ERROR","GSSP_COMPONENT_MEMBER_ERROR","NON_STANDARD_NODE_ENV","SSG_FALLBACK_EXPORT_ERROR","ESLINT_DEFAULT_DIRS","SERVER_RUNTIME","edge","experimentalEdge","nodejs","WEB_SOCKET_MAX_RECONNECTIONS","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","WEBPACK_LAYERS","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","WEBPACK_RESOURCE_QUERIES","edgeSSREntry","metadata","metadataRoute","metadataImageMeta"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEO,MAAMA,iCAAiC,aAAY;AACnD,MAAMC,2BAA2B,2BAA0B;AAC3D,MAAMC,2BAA2B,kCAAiC;AAClE,MAAMC,0BAA0B,OAAM;AACtC,MAAMC,kCAAkC,OAAM;AAE9C,MAAMC,sBAAsB,iBAAgB;AAC5C,MAAMC,8BAA8B,yBAAwB;AAC5D,MAAMC,6CACX,sCAAqC;AAEhC,MAAMC,0BAA0B,YAAW;AAC3C,MAAMC,qBAAqB,eAAc;AACzC,MAAMC,aAAa,OAAM;AACzB,MAAMC,gBAAgB,UAAS;AAC/B,MAAMC,mBAAmB,QAAO;AAChC,MAAMC,mBAAmB,QAAO;AAChC,MAAMC,mBAAmB,QAAO;AAEhC,MAAMC,yBAAyB,oBAAmB;AAClD,MAAMC,qCAAqC,0BAAyB;AACpE,MAAMC,yCACX,8BAA6B;AAExB,MAAMC,qBAAqB,cAAa;AAIxC,MAAMC,2BAA2B,IAAG;AACpC,MAAMC,4BAA4B,IAAG;AACrC,MAAMC,iCAAiC,KAAI;AAC3C,MAAMC,6BAA6B,QAAO;AAG1C,MAAMC,iBAAiB,SAAQ;AAK/B,MAAMC,iBAAiB,WAAU;AAGjC,MAAMC,sBAAsB,aAAY;AACxC,MAAMC,6BAA6B,CAAC,SAAS,EAAED,qBAAqB,CAAA;AAGpE,MAAME,iBAAiB,QAAO;AAC9B,MAAMC,wBAAwB,CAAC,SAAS,EAAED,gBAAgB,CAAA;AAG1D,MAAME,gCAAgC,kBAAiB;AAIvD,MAAMC,kBAAkB,qBAAoB;AAC5C,MAAMC,iBAAiB,mBAAkB;AACzC,MAAMC,iBAAiB,wBAAuB;AAC9C,MAAMC,gBAAgB,uBAAsB;AAC5C,MAAMC,0BAA0B,iCAAgC;AAChE,MAAMC,4BAA4B,mCAAkC;AACpE,MAAMC,yBAAyB,oCAAmC;AAClE,MAAMC,0BAA0B,iCAAgC;AAChE,MAAMC,mCACX,wCAAuC;AAClC,MAAMC,8BAA8B,qCAAoC;AACxE,MAAMC,kCACX,yCAAwC;AAEnC,MAAMC,iCAAiC,CAAC,6KAA6K,CAAC,CAAA;AAEtN,MAAMC,iCAAiC,CAAC,mGAAmG,CAAC,CAAA;AAE5I,MAAMC,uCAAuC,CAAC,uFAAuF,CAAC,CAAA;AAEtI,MAAMC,4BAA4B,CAAC,sHAAsH,CAAC,CAAA;AAE1J,MAAMC,6CAA6C,CAAC,uGAAuG,CAAC,CAAA;AAE5J,MAAMC,4BAA4B,CAAC,uHAAuH,CAAC,CAAA;AAE3J,MAAMC,wBACX,6FAA4F;AACvF,MAAMC,yBACX,iGAAgG;AAE3F,MAAMC,mCACX,uEACA,mCAAkC;AAE7B,MAAMC,8BAA8B,CAAC,wJAAwJ,CAAC,CAAA;AAE9L,MAAMC,wBAAwB,CAAC,iNAAiN,CAAC,CAAA;AAEjP,MAAMC,4BAA4B,CAAC,wJAAwJ,CAAC,CAAA;AAE5L,MAAMC,sBAAsB;IAAC;IAAO;IAAS;IAAc;IAAO;CAAM,CAAA;AAExE,MAAMC,iBAAgD;IAC3DC,MAAM;IACNC,kBAAkB;IAClBC,QAAQ;AACV,EAAC;AAEM,MAAMC,+BAA+B,GAAE;AAE9C;;;CAGC,GACD,MAAMC,uBAAuB;IAC3B;;GAEC,GACDC,QAAQ;IACR;;;GAGC,GACDC,uBAAuB;IACvB;;GAEC,GACDC,qBAAqB;IACrB;;GAEC,GACDC,eAAe;IACf;;GAEC,GACDC,SAAS;IACT;;GAEC,GACDC,SAAS;IACT;;GAEC,GACDC,YAAY;IACZ;;GAEC,GACDC,YAAY;IACZ;;GAEC,GACDC,WAAW;IACX;;GAEC,GACDC,iBAAiB;IACjB;;GAEC,GACDC,iBAAiB;IACjB;;GAEC,GACDC,cAAc;IACd;;GAEC,GACDC,cAAc;AAChB;AAKA,MAAMC,iBAAiB;IACrB,GAAGd,oBAAoB;IACvBe,OAAO;QACLC,cAAc;YACZhB,qBAAqBE,qBAAqB;YAC1CF,qBAAqBI,aAAa;SACnC;QACDa,YAAY;YACVjB,qBAAqBE,qBAAqB;YAC1CF,qBAAqBI,aAAa;YAClCJ,qBAAqBQ,UAAU;YAC/BR,qBAAqBO,UAAU;SAChC;QACDW,eAAe;YACb,YAAY;YACZlB,qBAAqBK,OAAO;YAC5BL,qBAAqBM,OAAO;SAC7B;QACDa,YAAY;YACVnB,qBAAqBG,mBAAmB;YACxCH,qBAAqBU,eAAe;SACrC;QACDU,SAAS;YACPpB,qBAAqBE,qBAAqB;YAC1CF,qBAAqBI,aAAa;YAClCJ,qBAAqBG,mBAAmB;YACxCH,qBAAqBU,eAAe;YACpCV,qBAAqBC,MAAM;YAC3BD,qBAAqBQ,UAAU;YAC/BR,qBAAqBO,UAAU;SAChC;QACDc,UAAU;YACR,+BAA+B;YAC/BrB,qBAAqBE,qBAAqB;YAC1CF,qBAAqBG,mBAAmB;YACxCH,qBAAqBU,eAAe;YACpCV,qBAAqBI,aAAa;SACnC;IACH;AACF;AAEA,MAAMkB,2BAA2B;IAC/BC,cAAc;IACdC,UAAU;IACVC,eAAe;IACfC,mBAAmB;AACrB","ignoreList":[0]}}, - {"offset": {"line": 17083, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/utils.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\nimport {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../lib/constants'\n\n/**\n * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any\n * headers with multiple values will be joined with a comma and space. Any\n * headers that have an undefined value will be ignored and others will be\n * coerced to strings.\n *\n * @param nodeHeaders the headers object to convert\n * @returns the converted headers object\n */\nexport function fromNodeOutgoingHttpHeaders(\n nodeHeaders: OutgoingHttpHeaders\n): Headers {\n const headers = new Headers()\n for (let [key, value] of Object.entries(nodeHeaders)) {\n const values = Array.isArray(value) ? value : [value]\n for (let v of values) {\n if (typeof v === 'undefined') continue\n if (typeof v === 'number') {\n v = v.toString()\n }\n\n headers.append(key, v)\n }\n }\n return headers\n}\n\n/*\n Set-Cookie header field-values are sometimes comma joined in one string. This splits them without choking on commas\n that are within a single set-cookie field-value, such as in the Expires portion.\n This is uncommon, but explicitly allowed - see https://tools.ietf.org/html/rfc2616#section-4.2\n Node.js does this for every header *except* set-cookie - see https://github.com/nodejs/node/blob/d5e363b77ebaf1caf67cd7528224b651c86815c1/lib/_http_incoming.js#L128\n React Native's fetch does this for *every* header, including set-cookie.\n \n Based on: https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25\n Credits to: https://github.com/tomball for original and https://github.com/chrusart for JavaScript implementation\n*/\nexport function splitCookiesString(cookiesString: string) {\n var cookiesStrings = []\n var pos = 0\n var start\n var ch\n var lastComma\n var nextStart\n var cookiesSeparatorFound\n\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1\n }\n return pos < cookiesString.length\n }\n\n function notSpecialChar() {\n ch = cookiesString.charAt(pos)\n\n return ch !== '=' && ch !== ';' && ch !== ','\n }\n\n while (pos < cookiesString.length) {\n start = pos\n cookiesSeparatorFound = false\n\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos)\n if (ch === ',') {\n // ',' is a cookie separator if we have later first '=', not ';' or ','\n lastComma = pos\n pos += 1\n\n skipWhitespace()\n nextStart = pos\n\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1\n }\n\n // currently special character\n if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') {\n // we found cookies separator\n cookiesSeparatorFound = true\n // pos is inside the next cookie, so back up and return it.\n pos = nextStart\n cookiesStrings.push(cookiesString.substring(start, lastComma))\n start = pos\n } else {\n // in param ',' or param separator ';',\n // we continue from that comma\n pos = lastComma + 1\n }\n } else {\n pos += 1\n }\n }\n\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length))\n }\n }\n\n return cookiesStrings\n}\n\n/**\n * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is\n * required to support the set-cookie header, which may have multiple values.\n *\n * @param headers the headers object to convert\n * @returns the converted headers object\n */\nexport function toNodeOutgoingHttpHeaders(\n headers: Headers\n): OutgoingHttpHeaders {\n const nodeHeaders: OutgoingHttpHeaders = {}\n const cookies: string[] = []\n if (headers) {\n for (const [key, value] of headers.entries()) {\n if (key.toLowerCase() === 'set-cookie') {\n // We may have gotten a comma joined string of cookies, or multiple\n // set-cookie headers. We need to merge them into one header array\n // to represent all the cookies.\n cookies.push(...splitCookiesString(value))\n nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies\n } else {\n nodeHeaders[key] = value\n }\n }\n }\n return nodeHeaders\n}\n\n/**\n * Validate the correctness of a user-provided URL.\n */\nexport function validateURL(url: string | URL): string {\n try {\n return String(new URL(String(url)))\n } catch (error: any) {\n throw new Error(\n `URL is malformed \"${String(\n url\n )}\". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,\n { cause: error }\n )\n }\n}\n\n/**\n * Normalizes `nxtP` and `nxtI` query param values to remove the prefix.\n * This function does not mutate the input key.\n */\nexport function normalizeNextQueryParam(key: string): null | string {\n const prefixes = [NEXT_QUERY_PARAM_PREFIX, NEXT_INTERCEPTION_MARKER_PREFIX]\n for (const prefix of prefixes) {\n if (key !== prefix && key.startsWith(prefix)) {\n return key.substring(prefix.length)\n }\n }\n return null\n}\n"],"names":["NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_QUERY_PARAM_PREFIX","fromNodeOutgoingHttpHeaders","nodeHeaders","headers","Headers","key","value","Object","entries","values","Array","isArray","v","toString","append","splitCookiesString","cookiesString","cookiesStrings","pos","start","ch","lastComma","nextStart","cookiesSeparatorFound","skipWhitespace","length","test","charAt","notSpecialChar","push","substring","toNodeOutgoingHttpHeaders","cookies","toLowerCase","validateURL","url","String","URL","error","Error","cause","normalizeNextQueryParam","prefixes","prefix","startsWith"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 17215, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/i18n/detect-domain-locale.ts"],"sourcesContent":["import type { DomainLocale } from '../../../server/config-shared'\n\nexport function detectDomainLocale(\n domainItems?: readonly DomainLocale[],\n hostname?: string,\n detectedLocale?: string\n) {\n if (!domainItems) return\n\n if (detectedLocale) {\n detectedLocale = detectedLocale.toLowerCase()\n }\n\n for (const item of domainItems) {\n // remove port if present\n const domainHostname = item.domain?.split(':', 1)[0].toLowerCase()\n if (\n hostname === domainHostname ||\n detectedLocale === item.defaultLocale.toLowerCase() ||\n item.locales?.some((locale) => locale.toLowerCase() === detectedLocale)\n ) {\n return item\n }\n }\n}\n"],"names":["detectDomainLocale","domainItems","hostname","detectedLocale","toLowerCase","item","domainHostname","domain","split","defaultLocale","locales","some","locale"],"mappings":";;;;AAEO,SAASA,mBACdC,WAAqC,EACrCC,QAAiB,EACjBC,cAAuB;IAEvB,IAAI,CAACF,aAAa;IAElB,IAAIE,gBAAgB;QAClBA,iBAAiBA,eAAeC,WAAW;IAC7C;IAEA,KAAK,MAAMC,QAAQJ,YAAa;QAC9B,yBAAyB;QACzB,MAAMK,iBAAiBD,KAAKE,MAAM,EAAEC,MAAM,KAAK,EAAE,CAAC,EAAE,CAACJ;QACrD,IACEF,aAAaI,kBACbH,mBAAmBE,KAAKI,aAAa,CAACL,WAAW,MACjDC,KAAKK,OAAO,EAAEC,KAAK,CAACC,SAAWA,OAAOR,WAAW,OAAOD,iBACxD;YACA,OAAOE;QACT;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 17236, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/remove-trailing-slash.ts"],"sourcesContent":["/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */\nexport function removeTrailingSlash(route: string) {\n return route.replace(/\\/$/, '') || '/'\n}\n"],"names":["removeTrailingSlash","route","replace"],"mappings":"AAAA;;;;;;CAMC,GACD;;;;AAAO,SAASA,oBAAoBC,KAAa;IAC/C,OAAOA,MAAMC,OAAO,CAAC,OAAO,OAAO;AACrC","ignoreList":[0]}}, - {"offset": {"line": 17253, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-path.ts"],"sourcesContent":["/**\n * Given a path this function will find the pathname, query and hash and return\n * them. This is useful to parse full paths on the client side.\n * @param path A path to parse e.g. /foo/bar?id=1#hash\n */\nexport function parsePath(path: string) {\n const hashIndex = path.indexOf('#')\n const queryIndex = path.indexOf('?')\n const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex)\n\n if (hasQuery || hashIndex > -1) {\n return {\n pathname: path.substring(0, hasQuery ? queryIndex : hashIndex),\n query: hasQuery\n ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined)\n : '',\n hash: hashIndex > -1 ? path.slice(hashIndex) : '',\n }\n }\n\n return { pathname: path, query: '', hash: '' }\n}\n"],"names":["parsePath","path","hashIndex","indexOf","queryIndex","hasQuery","pathname","substring","query","undefined","hash","slice"],"mappings":"AAAA;;;;CAIC,GACD;;;;AAAO,SAASA,UAAUC,IAAY;IACpC,MAAMC,YAAYD,KAAKE,OAAO,CAAC;IAC/B,MAAMC,aAAaH,KAAKE,OAAO,CAAC;IAChC,MAAME,WAAWD,aAAa,CAAC,KAAMF,CAAAA,YAAY,KAAKE,aAAaF,SAAQ;IAE3E,IAAIG,YAAYH,YAAY,CAAC,GAAG;QAC9B,OAAO;YACLI,UAAUL,KAAKM,SAAS,CAAC,GAAGF,WAAWD,aAAaF;YACpDM,OAAOH,WACHJ,KAAKM,SAAS,CAACH,YAAYF,YAAY,CAAC,IAAIA,YAAYO,aACxD;YACJC,MAAMR,YAAY,CAAC,IAAID,KAAKU,KAAK,CAACT,aAAa;QACjD;IACF;IAEA,OAAO;QAAEI,UAAUL;QAAMO,OAAO;QAAIE,MAAM;IAAG;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 17282, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/add-path-prefix.ts"],"sourcesContent":["import { parsePath } from './parse-path'\n\n/**\n * Adds the provided prefix to the given path. It first ensures that the path\n * is indeed starting with a slash.\n */\nexport function addPathPrefix(path: string, prefix?: string) {\n if (!path.startsWith('/') || !prefix) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n return `${prefix}${pathname}${query}${hash}`\n}\n"],"names":["parsePath","addPathPrefix","path","prefix","startsWith","pathname","query","hash"],"mappings":";;;;AAAA,SAASA,SAAS,QAAQ,eAAc;;AAMjC,SAASC,cAAcC,IAAY,EAAEC,MAAe;IACzD,IAAI,CAACD,KAAKE,UAAU,CAAC,QAAQ,CAACD,QAAQ;QACpC,OAAOD;IACT;IAEA,MAAM,EAAEG,QAAQ,EAAEC,KAAK,EAAEC,IAAI,EAAE,OAAGP,qMAAAA,EAAUE;IAC5C,OAAO,GAAGC,SAASE,WAAWC,QAAQC,MAAM;AAC9C","ignoreList":[0]}}, - {"offset": {"line": 17299, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/add-path-suffix.ts"],"sourcesContent":["import { parsePath } from './parse-path'\n\n/**\n * Similarly to `addPathPrefix`, this function adds a suffix at the end on the\n * provided path. It also works only for paths ensuring the argument starts\n * with a slash.\n */\nexport function addPathSuffix(path: string, suffix?: string) {\n if (!path.startsWith('/') || !suffix) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n return `${pathname}${suffix}${query}${hash}`\n}\n"],"names":["parsePath","addPathSuffix","path","suffix","startsWith","pathname","query","hash"],"mappings":";;;;AAAA,SAASA,SAAS,QAAQ,eAAc;;AAOjC,SAASC,cAAcC,IAAY,EAAEC,MAAe;IACzD,IAAI,CAACD,KAAKE,UAAU,CAAC,QAAQ,CAACD,QAAQ;QACpC,OAAOD;IACT;IAEA,MAAM,EAAEG,QAAQ,EAAEC,KAAK,EAAEC,IAAI,EAAE,OAAGP,qMAAAA,EAAUE;IAC5C,OAAO,GAAGG,WAAWF,SAASG,QAAQC,MAAM;AAC9C","ignoreList":[0]}}, - {"offset": {"line": 17316, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/path-has-prefix.ts"],"sourcesContent":["import { parsePath } from './parse-path'\n\n/**\n * Checks if a given path starts with a given prefix. It ensures it matches\n * exactly without containing extra chars. e.g. prefix /docs should replace\n * for /docs, /docs/, /docs/a but not /docsss\n * @param path The path to check.\n * @param prefix The prefix to check against.\n */\nexport function pathHasPrefix(path: string, prefix: string) {\n if (typeof path !== 'string') {\n return false\n }\n\n const { pathname } = parsePath(path)\n return pathname === prefix || pathname.startsWith(prefix + '/')\n}\n"],"names":["parsePath","pathHasPrefix","path","prefix","pathname","startsWith"],"mappings":";;;;AAAA,SAASA,SAAS,QAAQ,eAAc;;AASjC,SAASC,cAAcC,IAAY,EAAEC,MAAc;IACxD,IAAI,OAAOD,SAAS,UAAU;QAC5B,OAAO;IACT;IAEA,MAAM,EAAEE,QAAQ,EAAE,OAAGJ,qMAAAA,EAAUE;IAC/B,OAAOE,aAAaD,UAAUC,SAASC,UAAU,CAACF,SAAS;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 17333, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/add-locale.ts"],"sourcesContent":["import { addPathPrefix } from './add-path-prefix'\nimport { pathHasPrefix } from './path-has-prefix'\n\n/**\n * For a given path and a locale, if the locale is given, it will prefix the\n * locale. The path shouldn't be an API path. If a default locale is given the\n * prefix will be omitted if the locale is already the default locale.\n */\nexport function addLocale(\n path: string,\n locale?: string | false,\n defaultLocale?: string,\n ignorePrefix?: boolean\n) {\n // If no locale was given or the locale is the default locale, we don't need\n // to prefix the path.\n if (!locale || locale === defaultLocale) return path\n\n const lower = path.toLowerCase()\n\n // If the path is an API path or the path already has the locale prefix, we\n // don't need to prefix the path.\n if (!ignorePrefix) {\n if (pathHasPrefix(lower, '/api')) return path\n if (pathHasPrefix(lower, `/${locale.toLowerCase()}`)) return path\n }\n\n // Add the locale prefix to the path.\n return addPathPrefix(path, `/${locale}`)\n}\n"],"names":["addPathPrefix","pathHasPrefix","addLocale","path","locale","defaultLocale","ignorePrefix","lower","toLowerCase"],"mappings":";;;;AAAA,SAASA,aAAa,QAAQ,oBAAmB;AACjD,SAASC,aAAa,QAAQ,oBAAmB;;;AAO1C,SAASC,UACdC,IAAY,EACZC,MAAuB,EACvBC,aAAsB,EACtBC,YAAsB;IAEtB,4EAA4E;IAC5E,sBAAsB;IACtB,IAAI,CAACF,UAAUA,WAAWC,eAAe,OAAOF;IAEhD,MAAMI,QAAQJ,KAAKK,WAAW;IAE9B,2EAA2E;IAC3E,iCAAiC;IACjC,IAAI,CAACF,cAAc;QACjB,QAAIL,iNAAAA,EAAcM,OAAO,SAAS,OAAOJ;QACzC,QAAIF,iNAAAA,EAAcM,OAAO,CAAC,CAAC,EAAEH,OAAOI,WAAW,IAAI,GAAG,OAAOL;IAC/D;IAEA,qCAAqC;IACrC,WAAOH,iNAAAA,EAAcG,MAAM,CAAC,CAAC,EAAEC,QAAQ;AACzC","ignoreList":[0]}}, - {"offset": {"line": 17359, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/format-next-pathname-info.ts"],"sourcesContent":["import type { NextPathnameInfo } from './get-next-pathname-info'\nimport { removeTrailingSlash } from './remove-trailing-slash'\nimport { addPathPrefix } from './add-path-prefix'\nimport { addPathSuffix } from './add-path-suffix'\nimport { addLocale } from './add-locale'\n\ninterface ExtendedInfo extends NextPathnameInfo {\n defaultLocale?: string\n ignorePrefix?: boolean\n}\n\nexport function formatNextPathnameInfo(info: ExtendedInfo) {\n let pathname = addLocale(\n info.pathname,\n info.locale,\n info.buildId ? undefined : info.defaultLocale,\n info.ignorePrefix\n )\n\n if (info.buildId || !info.trailingSlash) {\n pathname = removeTrailingSlash(pathname)\n }\n\n if (info.buildId) {\n pathname = addPathSuffix(\n addPathPrefix(pathname, `/_next/data/${info.buildId}`),\n info.pathname === '/' ? 'index.json' : '.json'\n )\n }\n\n pathname = addPathPrefix(pathname, info.basePath)\n return !info.buildId && info.trailingSlash\n ? !pathname.endsWith('/')\n ? addPathSuffix(pathname, '/')\n : pathname\n : removeTrailingSlash(pathname)\n}\n"],"names":["removeTrailingSlash","addPathPrefix","addPathSuffix","addLocale","formatNextPathnameInfo","info","pathname","locale","buildId","undefined","defaultLocale","ignorePrefix","trailingSlash","basePath","endsWith"],"mappings":";;;;AACA,SAASA,mBAAmB,QAAQ,0BAAyB;AAC7D,SAASC,aAAa,QAAQ,oBAAmB;AACjD,SAASC,aAAa,QAAQ,oBAAmB;AACjD,SAASC,SAAS,QAAQ,eAAc;;;;;AAOjC,SAASC,uBAAuBC,IAAkB;IACvD,IAAIC,eAAWH,qMAAAA,EACbE,KAAKC,QAAQ,EACbD,KAAKE,MAAM,EACXF,KAAKG,OAAO,GAAGC,YAAYJ,KAAKK,aAAa,EAC7CL,KAAKM,YAAY;IAGnB,IAAIN,KAAKG,OAAO,IAAI,CAACH,KAAKO,aAAa,EAAE;QACvCN,eAAWN,6NAAAA,EAAoBM;IACjC;IAEA,IAAID,KAAKG,OAAO,EAAE;QAChBF,eAAWJ,iNAAAA,MACTD,iNAAAA,EAAcK,UAAU,CAAC,YAAY,EAAED,KAAKG,OAAO,EAAE,GACrDH,KAAKC,QAAQ,KAAK,MAAM,eAAe;IAE3C;IAEAA,eAAWL,iNAAAA,EAAcK,UAAUD,KAAKQ,QAAQ;IAChD,OAAO,CAACR,KAAKG,OAAO,IAAIH,KAAKO,aAAa,GACtC,CAACN,SAASQ,QAAQ,CAAC,WACjBZ,iNAAAA,EAAcI,UAAU,OACxBA,eACFN,6NAAAA,EAAoBM;AAC1B","ignoreList":[0]}}, - {"offset": {"line": 17386, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/get-hostname.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\n\n/**\n * Takes an object with a hostname property (like a parsed URL) and some\n * headers that may contain Host and returns the preferred hostname.\n * @param parsed An object containing a hostname property.\n * @param headers A dictionary with headers containing a `host`.\n */\nexport function getHostname(\n parsed: { hostname?: string | null },\n headers?: OutgoingHttpHeaders\n): string | undefined {\n // Get the hostname from the headers if it exists, otherwise use the parsed\n // hostname.\n let hostname: string\n if (headers?.host && !Array.isArray(headers.host)) {\n hostname = headers.host.toString().split(':', 1)[0]\n } else if (parsed.hostname) {\n hostname = parsed.hostname\n } else return\n\n return hostname.toLowerCase()\n}\n"],"names":["getHostname","parsed","headers","hostname","host","Array","isArray","toString","split","toLowerCase"],"mappings":"AAEA;;;;;CAKC,GACD;;;;AAAO,SAASA,YACdC,MAAoC,EACpCC,OAA6B;IAE7B,2EAA2E;IAC3E,YAAY;IACZ,IAAIC;IACJ,IAAID,SAASE,QAAQ,CAACC,MAAMC,OAAO,CAACJ,QAAQE,IAAI,GAAG;QACjDD,WAAWD,QAAQE,IAAI,CAACG,QAAQ,GAAGC,KAAK,CAAC,KAAK,EAAE,CAAC,EAAE;IACrD,OAAO,IAAIP,OAAOE,QAAQ,EAAE;QAC1BA,WAAWF,OAAOE,QAAQ;IAC5B,OAAO;IAEP,OAAOA,SAASM,WAAW;AAC7B","ignoreList":[0]}}, - {"offset": {"line": 17410, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/i18n/normalize-locale-path.ts"],"sourcesContent":["export interface PathLocale {\n detectedLocale?: string\n pathname: string\n}\n\n/**\n * A cache of lowercased locales for each list of locales. This is stored as a\n * WeakMap so if the locales are garbage collected, the cache entry will be\n * removed as well.\n */\nconst cache = new WeakMap()\n\n/**\n * For a pathname that may include a locale from a list of locales, it\n * removes the locale from the pathname returning it alongside with the\n * detected locale.\n *\n * @param pathname A pathname that may include a locale.\n * @param locales A list of locales.\n * @returns The detected locale and pathname without locale\n */\nexport function normalizeLocalePath(\n pathname: string,\n locales?: readonly string[]\n): PathLocale {\n // If locales is undefined, return the pathname as is.\n if (!locales) return { pathname }\n\n // Get the cached lowercased locales or create a new cache entry.\n let lowercasedLocales = cache.get(locales)\n if (!lowercasedLocales) {\n lowercasedLocales = locales.map((locale) => locale.toLowerCase())\n cache.set(locales, lowercasedLocales)\n }\n\n let detectedLocale: string | undefined\n\n // The first segment will be empty, because it has a leading `/`. If\n // there is no further segment, there is no locale (or it's the default).\n const segments = pathname.split('/', 2)\n\n // If there's no second segment (ie, the pathname is just `/`), there's no\n // locale.\n if (!segments[1]) return { pathname }\n\n // The second segment will contain the locale part if any.\n const segment = segments[1].toLowerCase()\n\n // See if the segment matches one of the locales. If it doesn't, there is\n // no locale (or it's the default).\n const index = lowercasedLocales.indexOf(segment)\n if (index < 0) return { pathname }\n\n // Return the case-sensitive locale.\n detectedLocale = locales[index]\n\n // Remove the `/${locale}` part of the pathname.\n pathname = pathname.slice(detectedLocale.length + 1) || '/'\n\n return { pathname, detectedLocale }\n}\n"],"names":["cache","WeakMap","normalizeLocalePath","pathname","locales","lowercasedLocales","get","map","locale","toLowerCase","set","detectedLocale","segments","split","segment","index","indexOf","slice","length"],"mappings":";;;;AAKA;;;;CAIC,GACD,MAAMA,QAAQ,IAAIC;AAWX,SAASC,oBACdC,QAAgB,EAChBC,OAA2B;IAE3B,sDAAsD;IACtD,IAAI,CAACA,SAAS,OAAO;QAAED;IAAS;IAEhC,iEAAiE;IACjE,IAAIE,oBAAoBL,MAAMM,GAAG,CAACF;IAClC,IAAI,CAACC,mBAAmB;QACtBA,oBAAoBD,QAAQG,GAAG,CAAC,CAACC,SAAWA,OAAOC,WAAW;QAC9DT,MAAMU,GAAG,CAACN,SAASC;IACrB;IAEA,IAAIM;IAEJ,oEAAoE;IACpE,yEAAyE;IACzE,MAAMC,WAAWT,SAASU,KAAK,CAAC,KAAK;IAErC,0EAA0E;IAC1E,UAAU;IACV,IAAI,CAACD,QAAQ,CAAC,EAAE,EAAE,OAAO;QAAET;IAAS;IAEpC,0DAA0D;IAC1D,MAAMW,UAAUF,QAAQ,CAAC,EAAE,CAACH,WAAW;IAEvC,yEAAyE;IACzE,mCAAmC;IACnC,MAAMM,QAAQV,kBAAkBW,OAAO,CAACF;IACxC,IAAIC,QAAQ,GAAG,OAAO;QAAEZ;IAAS;IAEjC,oCAAoC;IACpCQ,iBAAiBP,OAAO,CAACW,MAAM;IAE/B,gDAAgD;IAChDZ,WAAWA,SAASc,KAAK,CAACN,eAAeO,MAAM,GAAG,MAAM;IAExD,OAAO;QAAEf;QAAUQ;IAAe;AACpC","ignoreList":[0]}}, - {"offset": {"line": 17460, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/remove-path-prefix.ts"],"sourcesContent":["import { pathHasPrefix } from './path-has-prefix'\n\n/**\n * Given a path and a prefix it will remove the prefix when it exists in the\n * given path. It ensures it matches exactly without containing extra chars\n * and if the prefix is not there it will be noop.\n *\n * @param path The path to remove the prefix from.\n * @param prefix The prefix to be removed.\n */\nexport function removePathPrefix(path: string, prefix: string): string {\n // If the path doesn't start with the prefix we can return it as is. This\n // protects us from situations where the prefix is a substring of the path\n // prefix such as:\n //\n // For prefix: /blog\n //\n // /blog -> true\n // /blog/ -> true\n // /blog/1 -> true\n // /blogging -> false\n // /blogging/ -> false\n // /blogging/1 -> false\n if (!pathHasPrefix(path, prefix)) {\n return path\n }\n\n // Remove the prefix from the path via slicing.\n const withoutPrefix = path.slice(prefix.length)\n\n // If the path without the prefix starts with a `/` we can return it as is.\n if (withoutPrefix.startsWith('/')) {\n return withoutPrefix\n }\n\n // If the path without the prefix doesn't start with a `/` we need to add it\n // back to the path to make sure it's a valid path.\n return `/${withoutPrefix}`\n}\n"],"names":["pathHasPrefix","removePathPrefix","path","prefix","withoutPrefix","slice","length","startsWith"],"mappings":";;;;AAAA,SAASA,aAAa,QAAQ,oBAAmB;;AAU1C,SAASC,iBAAiBC,IAAY,EAAEC,MAAc;IAC3D,yEAAyE;IACzE,0EAA0E;IAC1E,kBAAkB;IAClB,EAAE;IACF,oBAAoB;IACpB,EAAE;IACF,kBAAkB;IAClB,mBAAmB;IACnB,oBAAoB;IACpB,uBAAuB;IACvB,wBAAwB;IACxB,yBAAyB;IACzB,IAAI,KAACH,iNAAAA,EAAcE,MAAMC,SAAS;QAChC,OAAOD;IACT;IAEA,+CAA+C;IAC/C,MAAME,gBAAgBF,KAAKG,KAAK,CAACF,OAAOG,MAAM;IAE9C,2EAA2E;IAC3E,IAAIF,cAAcG,UAAU,CAAC,MAAM;QACjC,OAAOH;IACT;IAEA,4EAA4E;IAC5E,mDAAmD;IACnD,OAAO,CAAC,CAAC,EAAEA,eAAe;AAC5B","ignoreList":[0]}}, - {"offset": {"line": 17496, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/get-next-pathname-info.ts"],"sourcesContent":["import { normalizeLocalePath } from '../../i18n/normalize-locale-path'\nimport { removePathPrefix } from './remove-path-prefix'\nimport { pathHasPrefix } from './path-has-prefix'\nimport type { I18NProvider } from '../../../../server/lib/i18n-provider'\n\nexport interface NextPathnameInfo {\n /**\n * The base path in case the pathname included it.\n */\n basePath?: string\n /**\n * The buildId for when the parsed URL is a data URL. Parsing it can be\n * disabled with the `parseData` option.\n */\n buildId?: string\n /**\n * If there was a locale in the pathname, this will hold its value.\n */\n locale?: string\n /**\n * The processed pathname without a base path, locale, or data URL elements\n * when parsing it is enabled.\n */\n pathname: string\n /**\n * A boolean telling if the pathname had a trailingSlash. This can be only\n * true if trailingSlash is enabled.\n */\n trailingSlash?: boolean\n}\n\ninterface Options {\n /**\n * When passed to true, this function will also parse Nextjs data URLs.\n */\n parseData?: boolean\n /**\n * A partial of the Next.js configuration to parse the URL.\n */\n nextConfig?: {\n basePath?: string\n i18n?: { locales?: readonly string[] } | null\n trailingSlash?: boolean\n }\n\n /**\n * If provided, this normalizer will be used to detect the locale instead of\n * the default locale detection.\n */\n i18nProvider?: I18NProvider\n}\n\nexport function getNextPathnameInfo(\n pathname: string,\n options: Options\n): NextPathnameInfo {\n const { basePath, i18n, trailingSlash } = options.nextConfig ?? {}\n const info: NextPathnameInfo = {\n pathname,\n trailingSlash: pathname !== '/' ? pathname.endsWith('/') : trailingSlash,\n }\n\n if (basePath && pathHasPrefix(info.pathname, basePath)) {\n info.pathname = removePathPrefix(info.pathname, basePath)\n info.basePath = basePath\n }\n let pathnameNoDataPrefix = info.pathname\n\n if (\n info.pathname.startsWith('/_next/data/') &&\n info.pathname.endsWith('.json')\n ) {\n const paths = info.pathname\n .replace(/^\\/_next\\/data\\//, '')\n .replace(/\\.json$/, '')\n .split('/')\n\n const buildId = paths[0]\n info.buildId = buildId\n pathnameNoDataPrefix =\n paths[1] !== 'index' ? `/${paths.slice(1).join('/')}` : '/'\n\n // update pathname with normalized if enabled although\n // we use normalized to populate locale info still\n if (options.parseData === true) {\n info.pathname = pathnameNoDataPrefix\n }\n }\n\n // If provided, use the locale route normalizer to detect the locale instead\n // of the function below.\n if (i18n) {\n let result = options.i18nProvider\n ? options.i18nProvider.analyze(info.pathname)\n : normalizeLocalePath(info.pathname, i18n.locales)\n\n info.locale = result.detectedLocale\n info.pathname = result.pathname ?? info.pathname\n\n if (!result.detectedLocale && info.buildId) {\n result = options.i18nProvider\n ? options.i18nProvider.analyze(pathnameNoDataPrefix)\n : normalizeLocalePath(pathnameNoDataPrefix, i18n.locales)\n\n if (result.detectedLocale) {\n info.locale = result.detectedLocale\n }\n }\n }\n return info\n}\n"],"names":["normalizeLocalePath","removePathPrefix","pathHasPrefix","getNextPathnameInfo","pathname","options","basePath","i18n","trailingSlash","nextConfig","info","endsWith","pathnameNoDataPrefix","startsWith","paths","replace","split","buildId","slice","join","parseData","result","i18nProvider","analyze","locales","locale","detectedLocale"],"mappings":";;;;AAAA,SAASA,mBAAmB,QAAQ,mCAAkC;AACtE,SAASC,gBAAgB,QAAQ,uBAAsB;AACvD,SAASC,aAAa,QAAQ,oBAAmB;;;;AAkD1C,SAASC,oBACdC,QAAgB,EAChBC,OAAgB;IAEhB,MAAM,EAAEC,QAAQ,EAAEC,IAAI,EAAEC,aAAa,EAAE,GAAGH,QAAQI,UAAU,IAAI,CAAC;IACjE,MAAMC,OAAyB;QAC7BN;QACAI,eAAeJ,aAAa,MAAMA,SAASO,QAAQ,CAAC,OAAOH;IAC7D;IAEA,IAAIF,gBAAYJ,iNAAAA,EAAcQ,KAAKN,QAAQ,EAAEE,WAAW;QACtDI,KAAKN,QAAQ,OAAGH,uNAAAA,EAAiBS,KAAKN,QAAQ,EAAEE;QAChDI,KAAKJ,QAAQ,GAAGA;IAClB;IACA,IAAIM,uBAAuBF,KAAKN,QAAQ;IAExC,IACEM,KAAKN,QAAQ,CAACS,UAAU,CAAC,mBACzBH,KAAKN,QAAQ,CAACO,QAAQ,CAAC,UACvB;QACA,MAAMG,QAAQJ,KAAKN,QAAQ,CACxBW,OAAO,CAAC,oBAAoB,IAC5BA,OAAO,CAAC,WAAW,IACnBC,KAAK,CAAC;QAET,MAAMC,UAAUH,KAAK,CAAC,EAAE;QACxBJ,KAAKO,OAAO,GAAGA;QACfL,uBACEE,KAAK,CAAC,EAAE,KAAK,UAAU,CAAC,CAAC,EAAEA,MAAMI,KAAK,CAAC,GAAGC,IAAI,CAAC,MAAM,GAAG;QAE1D,sDAAsD;QACtD,kDAAkD;QAClD,IAAId,QAAQe,SAAS,KAAK,MAAM;YAC9BV,KAAKN,QAAQ,GAAGQ;QAClB;IACF;IAEA,4EAA4E;IAC5E,yBAAyB;IACzB,IAAIL,MAAM;QACR,IAAIc,SAAShB,QAAQiB,YAAY,GAC7BjB,QAAQiB,YAAY,CAACC,OAAO,CAACb,KAAKN,QAAQ,QAC1CJ,kNAAAA,EAAoBU,KAAKN,QAAQ,EAAEG,KAAKiB,OAAO;QAEnDd,KAAKe,MAAM,GAAGJ,OAAOK,cAAc;QACnChB,KAAKN,QAAQ,GAAGiB,OAAOjB,QAAQ,IAAIM,KAAKN,QAAQ;QAEhD,IAAI,CAACiB,OAAOK,cAAc,IAAIhB,KAAKO,OAAO,EAAE;YAC1CI,SAAShB,QAAQiB,YAAY,GACzBjB,QAAQiB,YAAY,CAACC,OAAO,CAACX,4BAC7BZ,kNAAAA,EAAoBY,sBAAsBL,KAAKiB,OAAO;YAE1D,IAAIH,OAAOK,cAAc,EAAE;gBACzBhB,KAAKe,MAAM,GAAGJ,OAAOK,cAAc;YACrC;QACF;IACF;IACA,OAAOhB;AACT","ignoreList":[0]}}, - {"offset": {"line": 17547, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/next-url.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\nimport type { DomainLocale, I18NConfig } from '../config-shared'\nimport type { I18NProvider } from '../lib/i18n-provider'\n\nimport { detectDomainLocale } from '../../shared/lib/i18n/detect-domain-locale'\nimport { formatNextPathnameInfo } from '../../shared/lib/router/utils/format-next-pathname-info'\nimport { getHostname } from '../../shared/lib/get-hostname'\nimport { getNextPathnameInfo } from '../../shared/lib/router/utils/get-next-pathname-info'\n\ninterface Options {\n base?: string | URL\n headers?: OutgoingHttpHeaders\n forceLocale?: boolean\n nextConfig?: {\n basePath?: string\n i18n?: I18NConfig | null\n trailingSlash?: boolean\n }\n i18nProvider?: I18NProvider\n}\n\nconst REGEX_LOCALHOST_HOSTNAME =\n /(?!^https?:\\/\\/)(127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\\[::1\\]|localhost)/\n\nfunction parseURL(url: string | URL, base?: string | URL) {\n return new URL(\n String(url).replace(REGEX_LOCALHOST_HOSTNAME, 'localhost'),\n base && String(base).replace(REGEX_LOCALHOST_HOSTNAME, 'localhost')\n )\n}\n\nconst Internal = Symbol('NextURLInternal')\n\nexport class NextURL {\n private [Internal]: {\n basePath: string\n buildId?: string\n flightSearchParameters?: Record\n defaultLocale?: string\n domainLocale?: DomainLocale\n locale?: string\n options: Options\n trailingSlash?: boolean\n url: URL\n }\n\n constructor(input: string | URL, base?: string | URL, opts?: Options)\n constructor(input: string | URL, opts?: Options)\n constructor(\n input: string | URL,\n baseOrOpts?: string | URL | Options,\n opts?: Options\n ) {\n let base: undefined | string | URL\n let options: Options\n\n if (\n (typeof baseOrOpts === 'object' && 'pathname' in baseOrOpts) ||\n typeof baseOrOpts === 'string'\n ) {\n base = baseOrOpts\n options = opts || {}\n } else {\n options = opts || baseOrOpts || {}\n }\n\n this[Internal] = {\n url: parseURL(input, base ?? options.base),\n options: options,\n basePath: '',\n }\n\n this.analyze()\n }\n\n private analyze() {\n const info = getNextPathnameInfo(this[Internal].url.pathname, {\n nextConfig: this[Internal].options.nextConfig,\n parseData: !process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,\n i18nProvider: this[Internal].options.i18nProvider,\n })\n\n const hostname = getHostname(\n this[Internal].url,\n this[Internal].options.headers\n )\n this[Internal].domainLocale = this[Internal].options.i18nProvider\n ? this[Internal].options.i18nProvider.detectDomainLocale(hostname)\n : detectDomainLocale(\n this[Internal].options.nextConfig?.i18n?.domains,\n hostname\n )\n\n const defaultLocale =\n this[Internal].domainLocale?.defaultLocale ||\n this[Internal].options.nextConfig?.i18n?.defaultLocale\n\n this[Internal].url.pathname = info.pathname\n this[Internal].defaultLocale = defaultLocale\n this[Internal].basePath = info.basePath ?? ''\n this[Internal].buildId = info.buildId\n this[Internal].locale = info.locale ?? defaultLocale\n this[Internal].trailingSlash = info.trailingSlash\n }\n\n private formatPathname() {\n return formatNextPathnameInfo({\n basePath: this[Internal].basePath,\n buildId: this[Internal].buildId,\n defaultLocale: !this[Internal].options.forceLocale\n ? this[Internal].defaultLocale\n : undefined,\n locale: this[Internal].locale,\n pathname: this[Internal].url.pathname,\n trailingSlash: this[Internal].trailingSlash,\n })\n }\n\n private formatSearch() {\n return this[Internal].url.search\n }\n\n public get buildId() {\n return this[Internal].buildId\n }\n\n public set buildId(buildId: string | undefined) {\n this[Internal].buildId = buildId\n }\n\n public get locale() {\n return this[Internal].locale ?? ''\n }\n\n public set locale(locale: string) {\n if (\n !this[Internal].locale ||\n !this[Internal].options.nextConfig?.i18n?.locales.includes(locale)\n ) {\n throw new TypeError(\n `The NextURL configuration includes no locale \"${locale}\"`\n )\n }\n\n this[Internal].locale = locale\n }\n\n get defaultLocale() {\n return this[Internal].defaultLocale\n }\n\n get domainLocale() {\n return this[Internal].domainLocale\n }\n\n get searchParams() {\n return this[Internal].url.searchParams\n }\n\n get host() {\n return this[Internal].url.host\n }\n\n set host(value: string) {\n this[Internal].url.host = value\n }\n\n get hostname() {\n return this[Internal].url.hostname\n }\n\n set hostname(value: string) {\n this[Internal].url.hostname = value\n }\n\n get port() {\n return this[Internal].url.port\n }\n\n set port(value: string) {\n this[Internal].url.port = value\n }\n\n get protocol() {\n return this[Internal].url.protocol\n }\n\n set protocol(value: string) {\n this[Internal].url.protocol = value\n }\n\n get href() {\n const pathname = this.formatPathname()\n const search = this.formatSearch()\n return `${this.protocol}//${this.host}${pathname}${search}${this.hash}`\n }\n\n set href(url: string) {\n this[Internal].url = parseURL(url)\n this.analyze()\n }\n\n get origin() {\n return this[Internal].url.origin\n }\n\n get pathname() {\n return this[Internal].url.pathname\n }\n\n set pathname(value: string) {\n this[Internal].url.pathname = value\n }\n\n get hash() {\n return this[Internal].url.hash\n }\n\n set hash(value: string) {\n this[Internal].url.hash = value\n }\n\n get search() {\n return this[Internal].url.search\n }\n\n set search(value: string) {\n this[Internal].url.search = value\n }\n\n get password() {\n return this[Internal].url.password\n }\n\n set password(value: string) {\n this[Internal].url.password = value\n }\n\n get username() {\n return this[Internal].url.username\n }\n\n set username(value: string) {\n this[Internal].url.username = value\n }\n\n get basePath() {\n return this[Internal].basePath\n }\n\n set basePath(value: string) {\n this[Internal].basePath = value.startsWith('/') ? value : `/${value}`\n }\n\n toString() {\n return this.href\n }\n\n toJSON() {\n return this.href\n }\n\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n href: this.href,\n origin: this.origin,\n protocol: this.protocol,\n username: this.username,\n password: this.password,\n host: this.host,\n hostname: this.hostname,\n port: this.port,\n pathname: this.pathname,\n search: this.search,\n searchParams: this.searchParams,\n hash: this.hash,\n }\n }\n\n clone() {\n return new NextURL(String(this), this[Internal].options)\n }\n}\n"],"names":["detectDomainLocale","formatNextPathnameInfo","getHostname","getNextPathnameInfo","REGEX_LOCALHOST_HOSTNAME","parseURL","url","base","URL","String","replace","Internal","Symbol","NextURL","constructor","input","baseOrOpts","opts","options","basePath","analyze","info","pathname","nextConfig","parseData","process","env","__NEXT_NO_MIDDLEWARE_URL_NORMALIZE","i18nProvider","hostname","headers","domainLocale","i18n","domains","defaultLocale","buildId","locale","trailingSlash","formatPathname","forceLocale","undefined","formatSearch","search","locales","includes","TypeError","searchParams","host","value","port","protocol","href","hash","origin","password","username","startsWith","toString","toJSON","for","clone"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 17742, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/error.ts"],"sourcesContent":["export class PageSignatureError extends Error {\n constructor({ page }: { page: string }) {\n super(`The middleware \"${page}\" accepts an async API directly with the form:\n \n export function middleware(request, event) {\n return NextResponse.redirect('/new-location')\n }\n \n Read more: https://nextjs.org/docs/messages/middleware-new-signature\n `)\n }\n}\n\nexport class RemovedPageError extends Error {\n constructor() {\n super(`The request.page has been deprecated in favour of \\`URLPattern\\`.\n Read more: https://nextjs.org/docs/messages/middleware-request-page\n `)\n }\n}\n\nexport class RemovedUAError extends Error {\n constructor() {\n super(`The request.ua has been removed in favour of \\`userAgent\\` function.\n Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n `)\n }\n}\n"],"names":["PageSignatureError","Error","constructor","page","RemovedPageError","RemovedUAError"],"mappings":";;;;;;;;AAAO,MAAMA,2BAA2BC;IACtCC,YAAY,EAAEC,IAAI,EAAoB,CAAE;QACtC,KAAK,CAAC,CAAC,gBAAgB,EAAEA,KAAK;;;;;;;EAOhC,CAAC;IACD;AACF;AAEO,MAAMC,yBAAyBH;IACpCC,aAAc;QACZ,KAAK,CAAC,CAAC;;EAET,CAAC;IACD;AACF;AAEO,MAAMG,uBAAuBJ;IAClCC,aAAc;QACZ,KAAK,CAAC,CAAC;;EAET,CAAC;IACD;AACF","ignoreList":[0]}}, - {"offset": {"line": 17780, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/%40edge-runtime/cookies/index.js"],"sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\n\n// src/index.ts\nvar src_exports = {};\n__export(src_exports, {\n RequestCookies: () => RequestCookies,\n ResponseCookies: () => ResponseCookies,\n parseCookie: () => parseCookie,\n parseSetCookie: () => parseSetCookie,\n stringifyCookie: () => stringifyCookie\n});\nmodule.exports = __toCommonJS(src_exports);\n\n// src/serialize.ts\nfunction stringifyCookie(c) {\n var _a;\n const attrs = [\n \"path\" in c && c.path && `Path=${c.path}`,\n \"expires\" in c && (c.expires || c.expires === 0) && `Expires=${(typeof c.expires === \"number\" ? new Date(c.expires) : c.expires).toUTCString()}`,\n \"maxAge\" in c && typeof c.maxAge === \"number\" && `Max-Age=${c.maxAge}`,\n \"domain\" in c && c.domain && `Domain=${c.domain}`,\n \"secure\" in c && c.secure && \"Secure\",\n \"httpOnly\" in c && c.httpOnly && \"HttpOnly\",\n \"sameSite\" in c && c.sameSite && `SameSite=${c.sameSite}`,\n \"partitioned\" in c && c.partitioned && \"Partitioned\",\n \"priority\" in c && c.priority && `Priority=${c.priority}`\n ].filter(Boolean);\n const stringified = `${c.name}=${encodeURIComponent((_a = c.value) != null ? _a : \"\")}`;\n return attrs.length === 0 ? stringified : `${stringified}; ${attrs.join(\"; \")}`;\n}\nfunction parseCookie(cookie) {\n const map = /* @__PURE__ */ new Map();\n for (const pair of cookie.split(/; */)) {\n if (!pair)\n continue;\n const splitAt = pair.indexOf(\"=\");\n if (splitAt === -1) {\n map.set(pair, \"true\");\n continue;\n }\n const [key, value] = [pair.slice(0, splitAt), pair.slice(splitAt + 1)];\n try {\n map.set(key, decodeURIComponent(value != null ? value : \"true\"));\n } catch {\n }\n }\n return map;\n}\nfunction parseSetCookie(setCookie) {\n if (!setCookie) {\n return void 0;\n }\n const [[name, value], ...attributes] = parseCookie(setCookie);\n const {\n domain,\n expires,\n httponly,\n maxage,\n path,\n samesite,\n secure,\n partitioned,\n priority\n } = Object.fromEntries(\n attributes.map(([key, value2]) => [\n key.toLowerCase().replace(/-/g, \"\"),\n value2\n ])\n );\n const cookie = {\n name,\n value: decodeURIComponent(value),\n domain,\n ...expires && { expires: new Date(expires) },\n ...httponly && { httpOnly: true },\n ...typeof maxage === \"string\" && { maxAge: Number(maxage) },\n path,\n ...samesite && { sameSite: parseSameSite(samesite) },\n ...secure && { secure: true },\n ...priority && { priority: parsePriority(priority) },\n ...partitioned && { partitioned: true }\n };\n return compact(cookie);\n}\nfunction compact(t) {\n const newT = {};\n for (const key in t) {\n if (t[key]) {\n newT[key] = t[key];\n }\n }\n return newT;\n}\nvar SAME_SITE = [\"strict\", \"lax\", \"none\"];\nfunction parseSameSite(string) {\n string = string.toLowerCase();\n return SAME_SITE.includes(string) ? string : void 0;\n}\nvar PRIORITY = [\"low\", \"medium\", \"high\"];\nfunction parsePriority(string) {\n string = string.toLowerCase();\n return PRIORITY.includes(string) ? string : void 0;\n}\nfunction splitCookiesString(cookiesString) {\n if (!cookiesString)\n return [];\n var cookiesStrings = [];\n var pos = 0;\n var start;\n var ch;\n var lastComma;\n var nextStart;\n var cookiesSeparatorFound;\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1;\n }\n return pos < cookiesString.length;\n }\n function notSpecialChar() {\n ch = cookiesString.charAt(pos);\n return ch !== \"=\" && ch !== \";\" && ch !== \",\";\n }\n while (pos < cookiesString.length) {\n start = pos;\n cookiesSeparatorFound = false;\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos);\n if (ch === \",\") {\n lastComma = pos;\n pos += 1;\n skipWhitespace();\n nextStart = pos;\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1;\n }\n if (pos < cookiesString.length && cookiesString.charAt(pos) === \"=\") {\n cookiesSeparatorFound = true;\n pos = nextStart;\n cookiesStrings.push(cookiesString.substring(start, lastComma));\n start = pos;\n } else {\n pos = lastComma + 1;\n }\n } else {\n pos += 1;\n }\n }\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length));\n }\n }\n return cookiesStrings;\n}\n\n// src/request-cookies.ts\nvar RequestCookies = class {\n constructor(requestHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n this._headers = requestHeaders;\n const header = requestHeaders.get(\"cookie\");\n if (header) {\n const parsed = parseCookie(header);\n for (const [name, value] of parsed) {\n this._parsed.set(name, { name, value });\n }\n }\n }\n [Symbol.iterator]() {\n return this._parsed[Symbol.iterator]();\n }\n /**\n * The amount of cookies received from the client\n */\n get size() {\n return this._parsed.size;\n }\n get(...args) {\n const name = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(name);\n }\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed);\n if (!args.length) {\n return all.map(([_, value]) => value);\n }\n const name = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter(([n]) => n === name).map(([_, value]) => value);\n }\n has(name) {\n return this._parsed.has(name);\n }\n set(...args) {\n const [name, value] = args.length === 1 ? [args[0].name, args[0].value] : args;\n const map = this._parsed;\n map.set(name, { name, value });\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value2]) => stringifyCookie(value2)).join(\"; \")\n );\n return this;\n }\n /**\n * Delete the cookies matching the passed name or names in the request.\n */\n delete(names) {\n const map = this._parsed;\n const result = !Array.isArray(names) ? map.delete(names) : names.map((name) => map.delete(name));\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value]) => stringifyCookie(value)).join(\"; \")\n );\n return result;\n }\n /**\n * Delete all the cookies in the cookies in the request.\n */\n clear() {\n this.delete(Array.from(this._parsed.keys()));\n return this;\n }\n /**\n * Format the cookies in the request as a string for logging\n */\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map((v) => `${v.name}=${encodeURIComponent(v.value)}`).join(\"; \");\n }\n};\n\n// src/response-cookies.ts\nvar ResponseCookies = class {\n constructor(responseHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n var _a, _b, _c;\n this._headers = responseHeaders;\n const setCookie = (_c = (_b = (_a = responseHeaders.getSetCookie) == null ? void 0 : _a.call(responseHeaders)) != null ? _b : responseHeaders.get(\"set-cookie\")) != null ? _c : [];\n const cookieStrings = Array.isArray(setCookie) ? setCookie : splitCookiesString(setCookie);\n for (const cookieString of cookieStrings) {\n const parsed = parseSetCookie(cookieString);\n if (parsed)\n this._parsed.set(parsed.name, parsed);\n }\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-get CookieStore#get} without the Promise.\n */\n get(...args) {\n const key = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(key);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-getAll CookieStore#getAll} without the Promise.\n */\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed.values());\n if (!args.length) {\n return all;\n }\n const key = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter((c) => c.name === key);\n }\n has(name) {\n return this._parsed.has(name);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-set CookieStore#set} without the Promise.\n */\n set(...args) {\n const [name, value, cookie] = args.length === 1 ? [args[0].name, args[0].value, args[0]] : args;\n const map = this._parsed;\n map.set(name, normalizeCookie({ name, value, ...cookie }));\n replace(map, this._headers);\n return this;\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-delete CookieStore#delete} without the Promise.\n */\n delete(...args) {\n const [name, options] = typeof args[0] === \"string\" ? [args[0]] : [args[0].name, args[0]];\n return this.set({ ...options, name, value: \"\", expires: /* @__PURE__ */ new Date(0) });\n }\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map(stringifyCookie).join(\"; \");\n }\n};\nfunction replace(bag, headers) {\n headers.delete(\"set-cookie\");\n for (const [, value] of bag) {\n const serialized = stringifyCookie(value);\n headers.append(\"set-cookie\", serialized);\n }\n}\nfunction normalizeCookie(cookie = { name: \"\", value: \"\" }) {\n if (typeof cookie.expires === \"number\") {\n cookie.expires = new Date(cookie.expires);\n }\n if (cookie.maxAge) {\n cookie.expires = new Date(Date.now() + cookie.maxAge * 1e3);\n }\n if (cookie.path === null || cookie.path === void 0) {\n cookie.path = \"/\";\n }\n return cookie;\n}\n// Annotate the CommonJS export names for ESM import in node:\n0 && (module.exports = {\n RequestCookies,\n ResponseCookies,\n parseCookie,\n parseSetCookie,\n stringifyCookie\n});\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 18150, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/cookies.ts"],"sourcesContent":["export {\n RequestCookies,\n ResponseCookies,\n stringifyCookie,\n} from 'next/dist/compiled/@edge-runtime/cookies'\n"],"names":["RequestCookies","ResponseCookies","stringifyCookie"],"mappings":";AAAA,SACEA,cAAc,EACdC,eAAe,EACfC,eAAe,QACV,2CAA0C","ignoreList":[0]}}, - {"offset": {"line": 18157, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/request.ts"],"sourcesContent":["import type { I18NConfig } from '../../config-shared'\nimport { NextURL } from '../next-url'\nimport { toNodeOutgoingHttpHeaders, validateURL } from '../utils'\nimport { RemovedUAError, RemovedPageError } from '../error'\nimport { RequestCookies } from './cookies'\n\nexport const INTERNALS = Symbol('internal request')\n\n/**\n * This class extends the [Web `Request` API](https://developer.mozilla.org/docs/Web/API/Request) with additional convenience methods.\n *\n * Read more: [Next.js Docs: `NextRequest`](https://nextjs.org/docs/app/api-reference/functions/next-request)\n */\nexport class NextRequest extends Request {\n /** @internal */\n [INTERNALS]: {\n cookies: RequestCookies\n url: string\n nextUrl: NextURL\n }\n\n constructor(input: URL | RequestInfo, init: RequestInit = {}) {\n const url =\n typeof input !== 'string' && 'url' in input ? input.url : String(input)\n\n validateURL(url)\n\n // node Request instance requires duplex option when a body\n // is present or it errors, we don't handle this for\n // Request being passed in since it would have already\n // errored if this wasn't configured\n if (process.env.NEXT_RUNTIME !== 'edge') {\n if (init.body && init.duplex !== 'half') {\n init.duplex = 'half'\n }\n }\n\n if (input instanceof Request) super(input, init)\n else super(url, init)\n\n const nextUrl = new NextURL(url, {\n headers: toNodeOutgoingHttpHeaders(this.headers),\n nextConfig: init.nextConfig,\n })\n this[INTERNALS] = {\n cookies: new RequestCookies(this.headers),\n nextUrl,\n url: process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE\n ? url\n : nextUrl.toString(),\n }\n }\n\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n cookies: this.cookies,\n nextUrl: this.nextUrl,\n url: this.url,\n // rest of props come from Request\n bodyUsed: this.bodyUsed,\n cache: this.cache,\n credentials: this.credentials,\n destination: this.destination,\n headers: Object.fromEntries(this.headers),\n integrity: this.integrity,\n keepalive: this.keepalive,\n method: this.method,\n mode: this.mode,\n redirect: this.redirect,\n referrer: this.referrer,\n referrerPolicy: this.referrerPolicy,\n signal: this.signal,\n }\n }\n\n public get cookies() {\n return this[INTERNALS].cookies\n }\n\n public get nextUrl() {\n return this[INTERNALS].nextUrl\n }\n\n /**\n * @deprecated\n * `page` has been deprecated in favour of `URLPattern`.\n * Read more: https://nextjs.org/docs/messages/middleware-request-page\n */\n public get page() {\n throw new RemovedPageError()\n }\n\n /**\n * @deprecated\n * `ua` has been removed in favour of \\`userAgent\\` function.\n * Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n */\n public get ua() {\n throw new RemovedUAError()\n }\n\n public get url() {\n return this[INTERNALS].url\n }\n}\n\nexport interface RequestInit extends globalThis.RequestInit {\n nextConfig?: {\n basePath?: string\n i18n?: I18NConfig | null\n trailingSlash?: boolean\n }\n signal?: AbortSignal\n // see https://github.com/whatwg/fetch/pull/1457\n duplex?: 'half'\n}\n"],"names":["NextURL","toNodeOutgoingHttpHeaders","validateURL","RemovedUAError","RemovedPageError","RequestCookies","INTERNALS","Symbol","NextRequest","Request","constructor","input","init","url","String","process","env","NEXT_RUNTIME","body","duplex","nextUrl","headers","nextConfig","cookies","__NEXT_NO_MIDDLEWARE_URL_NORMALIZE","toString","for","bodyUsed","cache","credentials","destination","Object","fromEntries","integrity","keepalive","method","mode","redirect","referrer","referrerPolicy","signal","page","ua"],"mappings":";;;;;;AACA,SAASA,OAAO,QAAQ,cAAa;AACrC,SAASC,yBAAyB,EAAEC,WAAW,QAAQ,WAAU;AACjE,SAASC,cAAc,EAAEC,gBAAgB,QAAQ,WAAU;;AAC3D,SAASC,cAAc,QAAQ,YAAW;;;;;AAEnC,MAAMC,YAAYC,OAAO,oBAAmB;AAO5C,MAAMC,oBAAoBC;IAQ/BC,YAAYC,KAAwB,EAAEC,OAAoB,CAAC,CAAC,CAAE;QAC5D,MAAMC,MACJ,OAAOF,UAAU,YAAY,SAASA,QAAQA,MAAME,GAAG,GAAGC,OAAOH;YAEnET,4KAAAA,EAAYW;QAEZ,2DAA2D;QAC3D,oDAAoD;QACpD,sDAAsD;QACtD,oCAAoC;QACpC,IAAIE,QAAQC,GAAG,CAACC,YAAY,KAAK,OAAQ;YACvC,IAAIL,KAAKM,IAAI,IAAIN,KAAKO,MAAM,KAAK,QAAQ;gBACvCP,KAAKO,MAAM,GAAG;YAChB;QACF;QAEA,IAAIR,iBAAiBF,SAAS,KAAK,CAACE,OAAOC;aACtC,KAAK,CAACC,KAAKD;QAEhB,MAAMQ,UAAU,IAAIpB,8KAAAA,CAAQa,KAAK;YAC/BQ,aAASpB,0LAAAA,EAA0B,IAAI,CAACoB,OAAO;YAC/CC,YAAYV,KAAKU,UAAU;QAC7B;QACA,IAAI,CAAChB,UAAU,GAAG;YAChBiB,SAAS,IAAIlB,mMAAAA,CAAe,IAAI,CAACgB,OAAO;YACxCD;YACAP,KAAKE,QAAQC,GAAG,CAACQ,0BACbX,QAD+C,kBAE/CO,QAAQK,QAAQ;QACtB;IACF;IAEA,CAAClB,OAAOmB,GAAG,CAAC,+BAA+B,GAAG;QAC5C,OAAO;YACLH,SAAS,IAAI,CAACA,OAAO;YACrBH,SAAS,IAAI,CAACA,OAAO;YACrBP,KAAK,IAAI,CAACA,GAAG;YACb,kCAAkC;YAClCc,UAAU,IAAI,CAACA,QAAQ;YACvBC,OAAO,IAAI,CAACA,KAAK;YACjBC,aAAa,IAAI,CAACA,WAAW;YAC7BC,aAAa,IAAI,CAACA,WAAW;YAC7BT,SAASU,OAAOC,WAAW,CAAC,IAAI,CAACX,OAAO;YACxCY,WAAW,IAAI,CAACA,SAAS;YACzBC,WAAW,IAAI,CAACA,SAAS;YACzBC,QAAQ,IAAI,CAACA,MAAM;YACnBC,MAAM,IAAI,CAACA,IAAI;YACfC,UAAU,IAAI,CAACA,QAAQ;YACvBC,UAAU,IAAI,CAACA,QAAQ;YACvBC,gBAAgB,IAAI,CAACA,cAAc;YACnCC,QAAQ,IAAI,CAACA,MAAM;QACrB;IACF;IAEA,IAAWjB,UAAU;QACnB,OAAO,IAAI,CAACjB,UAAU,CAACiB,OAAO;IAChC;IAEA,IAAWH,UAAU;QACnB,OAAO,IAAI,CAACd,UAAU,CAACc,OAAO;IAChC;IAEA;;;;GAIC,GACD,IAAWqB,OAAO;QAChB,MAAM,IAAIrC,iLAAAA;IACZ;IAEA;;;;GAIC,GACD,IAAWsC,KAAK;QACd,MAAM,IAAIvC,+KAAAA;IACZ;IAEA,IAAWU,MAAM;QACf,OAAO,IAAI,CAACP,UAAU,CAACO,GAAG;IAC5B;AACF","ignoreList":[0]}}, - {"offset": {"line": 18247, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/base-http/helpers.ts"],"sourcesContent":["import type { BaseNextRequest, BaseNextResponse } from './'\nimport type { NodeNextRequest, NodeNextResponse } from './node'\nimport type { WebNextRequest, WebNextResponse } from './web'\n\n/**\n * This file provides some helpers that should be used in conjunction with\n * explicit environment checks. When combined with the environment checks, it\n * will ensure that the correct typings are used as well as enable code\n * elimination.\n */\n\n/**\n * Type guard to determine if a request is a WebNextRequest. This does not\n * actually check the type of the request, but rather the runtime environment.\n * It's expected that when the runtime environment is the edge runtime, that any\n * base request is a WebNextRequest.\n */\nexport const isWebNextRequest = (req: BaseNextRequest): req is WebNextRequest =>\n process.env.NEXT_RUNTIME === 'edge'\n\n/**\n * Type guard to determine if a response is a WebNextResponse. This does not\n * actually check the type of the response, but rather the runtime environment.\n * It's expected that when the runtime environment is the edge runtime, that any\n * base response is a WebNextResponse.\n */\nexport const isWebNextResponse = (\n res: BaseNextResponse\n): res is WebNextResponse => process.env.NEXT_RUNTIME === 'edge'\n\n/**\n * Type guard to determine if a request is a NodeNextRequest. This does not\n * actually check the type of the request, but rather the runtime environment.\n * It's expected that when the runtime environment is the node runtime, that any\n * base request is a NodeNextRequest.\n */\nexport const isNodeNextRequest = (\n req: BaseNextRequest\n): req is NodeNextRequest => process.env.NEXT_RUNTIME !== 'edge'\n\n/**\n * Type guard to determine if a response is a NodeNextResponse. This does not\n * actually check the type of the response, but rather the runtime environment.\n * It's expected that when the runtime environment is the node runtime, that any\n * base response is a NodeNextResponse.\n */\nexport const isNodeNextResponse = (\n res: BaseNextResponse\n): res is NodeNextResponse => process.env.NEXT_RUNTIME !== 'edge'\n"],"names":["isWebNextRequest","req","process","env","NEXT_RUNTIME","isWebNextResponse","res","isNodeNextRequest","isNodeNextResponse"],"mappings":"AAIA;;;;;CAKC,GAED;;;;;CAKC,GACD;;;;;;;;;;AAAO,MAAMA,mBAAmB,CAACC,MAC/BC,QAAQC,GAAG,CAACC,YAAY,uBAAK,OAAM;AAQ9B,MAAMC,oBAAoB,CAC/BC,MAC2BJ,QAAQC,GAAG,CAACC,YAAY,uBAAK,OAAM;AAQzD,MAAMG,oBAAoB,CAC/BN,MAC2BC,QAAQC,GAAG,CAACC,YAAY,uBAAK,OAAM;AAQzD,MAAMI,qBAAqB,CAChCF,MAC4BJ,QAAQC,GAAG,CAACC,YAAY,uBAAK,OAAM","ignoreList":[0]}}, - {"offset": {"line": 18275, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/next-request.ts"],"sourcesContent":["import type { BaseNextRequest } from '../../../base-http'\nimport type { NodeNextRequest } from '../../../base-http/node'\nimport type { WebNextRequest } from '../../../base-http/web'\nimport type { Writable } from 'node:stream'\n\nimport { getRequestMeta } from '../../../request-meta'\nimport { fromNodeOutgoingHttpHeaders } from '../../utils'\nimport { NextRequest } from '../request'\nimport { isNodeNextRequest, isWebNextRequest } from '../../../base-http/helpers'\n\nexport const ResponseAbortedName = 'ResponseAborted'\nexport class ResponseAborted extends Error {\n public readonly name = ResponseAbortedName\n}\n\n/**\n * Creates an AbortController tied to the closing of a ServerResponse (or other\n * appropriate Writable).\n *\n * If the `close` event is fired before the `finish` event, then we'll send the\n * `abort` signal.\n */\nexport function createAbortController(response: Writable): AbortController {\n const controller = new AbortController()\n\n // If `finish` fires first, then `res.end()` has been called and the close is\n // just us finishing the stream on our side. If `close` fires first, then we\n // know the client disconnected before we finished.\n response.once('close', () => {\n if (response.writableFinished) return\n\n controller.abort(new ResponseAborted())\n })\n\n return controller\n}\n\n/**\n * Creates an AbortSignal tied to the closing of a ServerResponse (or other\n * appropriate Writable).\n *\n * This cannot be done with the request (IncomingMessage or Readable) because\n * the `abort` event will not fire if to data has been fully read (because that\n * will \"close\" the readable stream and nothing fires after that).\n */\nexport function signalFromNodeResponse(response: Writable): AbortSignal {\n const { errored, destroyed } = response\n if (errored || destroyed) {\n return AbortSignal.abort(errored ?? new ResponseAborted())\n }\n\n const { signal } = createAbortController(response)\n return signal\n}\n\nexport class NextRequestAdapter {\n public static fromBaseNextRequest(\n request: BaseNextRequest,\n signal: AbortSignal\n ): NextRequest {\n if (\n // The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME === 'edge' &&\n isWebNextRequest(request)\n ) {\n return NextRequestAdapter.fromWebNextRequest(request)\n } else if (\n // The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME !== 'edge' &&\n isNodeNextRequest(request)\n ) {\n return NextRequestAdapter.fromNodeNextRequest(request, signal)\n } else {\n throw new Error('Invariant: Unsupported NextRequest type')\n }\n }\n\n public static fromNodeNextRequest(\n request: NodeNextRequest,\n signal: AbortSignal\n ): NextRequest {\n // HEAD and GET requests can not have a body.\n let body: BodyInit | null = null\n if (request.method !== 'GET' && request.method !== 'HEAD' && request.body) {\n // @ts-expect-error - this is handled by undici, when streams/web land use it instead\n body = request.body\n }\n\n let url: URL\n if (request.url.startsWith('http')) {\n url = new URL(request.url)\n } else {\n // Grab the full URL from the request metadata.\n const base = getRequestMeta(request, 'initURL')\n if (!base || !base.startsWith('http')) {\n // Because the URL construction relies on the fact that the URL provided\n // is absolute, we need to provide a base URL. We can't use the request\n // URL because it's relative, so we use a dummy URL instead.\n url = new URL(request.url, 'http://n')\n } else {\n url = new URL(request.url, base)\n }\n }\n\n return new NextRequest(url, {\n method: request.method,\n headers: fromNodeOutgoingHttpHeaders(request.headers),\n duplex: 'half',\n signal,\n // geo\n // ip\n // nextConfig\n\n // body can not be passed if request was aborted\n // or we get a Request body was disturbed error\n ...(signal.aborted\n ? {}\n : {\n body,\n }),\n })\n }\n\n public static fromWebNextRequest(request: WebNextRequest): NextRequest {\n // HEAD and GET requests can not have a body.\n let body: ReadableStream | null = null\n if (request.method !== 'GET' && request.method !== 'HEAD') {\n body = request.body\n }\n\n return new NextRequest(request.url, {\n method: request.method,\n headers: fromNodeOutgoingHttpHeaders(request.headers),\n duplex: 'half',\n signal: request.request.signal,\n // geo\n // ip\n // nextConfig\n\n // body can not be passed if request was aborted\n // or we get a Request body was disturbed error\n ...(request.request.signal.aborted\n ? {}\n : {\n body,\n }),\n })\n }\n}\n"],"names":["getRequestMeta","fromNodeOutgoingHttpHeaders","NextRequest","isNodeNextRequest","isWebNextRequest","ResponseAbortedName","ResponseAborted","Error","name","createAbortController","response","controller","AbortController","once","writableFinished","abort","signalFromNodeResponse","errored","destroyed","AbortSignal","signal","NextRequestAdapter","fromBaseNextRequest","request","process","env","NEXT_RUNTIME","fromWebNextRequest","fromNodeNextRequest","body","method","url","startsWith","URL","base","headers","duplex","aborted"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 18399, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/client-component-renderer-logger.ts"],"sourcesContent":["import type { AppPageModule } from './route-modules/app-page/module'\n\n// Combined load times for loading client components\nlet clientComponentLoadStart = 0\nlet clientComponentLoadTimes = 0\nlet clientComponentLoadCount = 0\n\nexport function wrapClientComponentLoader(\n ComponentMod: AppPageModule\n): AppPageModule['__next_app__'] {\n if (!('performance' in globalThis)) {\n return ComponentMod.__next_app__\n }\n\n return {\n require: (...args) => {\n const startTime = performance.now()\n\n if (clientComponentLoadStart === 0) {\n clientComponentLoadStart = startTime\n }\n\n try {\n clientComponentLoadCount += 1\n return ComponentMod.__next_app__.require(...args)\n } finally {\n clientComponentLoadTimes += performance.now() - startTime\n }\n },\n loadChunk: (...args) => {\n const startTime = performance.now()\n const result = ComponentMod.__next_app__.loadChunk(...args)\n // Avoid wrapping `loadChunk`'s result in an extra promise in case something like React depends on its identity.\n // We only need to know when it's settled.\n result.finally(() => {\n clientComponentLoadTimes += performance.now() - startTime\n })\n return result\n },\n }\n}\n\nexport function getClientComponentLoaderMetrics(\n options: { reset?: boolean } = {}\n) {\n const metrics =\n clientComponentLoadStart === 0\n ? undefined\n : {\n clientComponentLoadStart,\n clientComponentLoadTimes,\n clientComponentLoadCount,\n }\n\n if (options.reset) {\n clientComponentLoadStart = 0\n clientComponentLoadTimes = 0\n clientComponentLoadCount = 0\n }\n\n return metrics\n}\n"],"names":["clientComponentLoadStart","clientComponentLoadTimes","clientComponentLoadCount","wrapClientComponentLoader","ComponentMod","globalThis","__next_app__","require","args","startTime","performance","now","loadChunk","result","finally","getClientComponentLoaderMetrics","options","metrics","undefined","reset"],"mappings":";;;;;;AAEA,oDAAoD;AACpD,IAAIA,2BAA2B;AAC/B,IAAIC,2BAA2B;AAC/B,IAAIC,2BAA2B;AAExB,SAASC,0BACdC,YAA2B;IAE3B,IAAI,CAAE,CAAA,iBAAiBC,UAAS,GAAI;QAClC,OAAOD,aAAaE,YAAY;IAClC;IAEA,OAAO;QACLC,SAAS,CAAC,GAAGC;YACX,MAAMC,YAAYC,YAAYC,GAAG;YAEjC,IAAIX,6BAA6B,GAAG;gBAClCA,2BAA2BS;YAC7B;YAEA,IAAI;gBACFP,4BAA4B;gBAC5B,OAAOE,aAAaE,YAAY,CAACC,OAAO,IAAIC;YAC9C,SAAU;gBACRP,4BAA4BS,YAAYC,GAAG,KAAKF;YAClD;QACF;QACAG,WAAW,CAAC,GAAGJ;YACb,MAAMC,YAAYC,YAAYC,GAAG;YACjC,MAAME,SAAST,aAAaE,YAAY,CAACM,SAAS,IAAIJ;YACtD,gHAAgH;YAChH,0CAA0C;YAC1CK,OAAOC,OAAO,CAAC;gBACbb,4BAA4BS,YAAYC,GAAG,KAAKF;YAClD;YACA,OAAOI;QACT;IACF;AACF;AAEO,SAASE,gCACdC,UAA+B,CAAC,CAAC;IAEjC,MAAMC,UACJjB,6BAA6B,IACzBkB,YACA;QACElB;QACAC;QACAC;IACF;IAEN,IAAIc,QAAQG,KAAK,EAAE;QACjBnB,2BAA2B;QAC3BC,2BAA2B;QAC3BC,2BAA2B;IAC7B;IAEA,OAAOe;AACT","ignoreList":[0]}}, - {"offset": {"line": 18455, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/pipe-readable.ts"],"sourcesContent":["import type { ServerResponse } from 'node:http'\n\nimport {\n ResponseAbortedName,\n createAbortController,\n} from './web/spec-extension/adapters/next-request'\nimport { DetachedPromise } from '../lib/detached-promise'\nimport { getTracer } from './lib/trace/tracer'\nimport { NextNodeServerSpan } from './lib/trace/constants'\nimport { getClientComponentLoaderMetrics } from './client-component-renderer-logger'\n\nexport function isAbortError(e: any): e is Error & { name: 'AbortError' } {\n return e?.name === 'AbortError' || e?.name === ResponseAbortedName\n}\n\nfunction createWriterFromResponse(\n res: ServerResponse,\n waitUntilForEnd?: Promise\n): WritableStream {\n let started = false\n\n // Create a promise that will resolve once the response has drained. See\n // https://nodejs.org/api/stream.html#stream_event_drain\n let drained = new DetachedPromise()\n function onDrain() {\n drained.resolve()\n }\n res.on('drain', onDrain)\n\n // If the finish event fires, it means we shouldn't block and wait for the\n // drain event.\n res.once('close', () => {\n res.off('drain', onDrain)\n drained.resolve()\n })\n\n // Create a promise that will resolve once the response has finished. See\n // https://nodejs.org/api/http.html#event-finish_1\n const finished = new DetachedPromise()\n res.once('finish', () => {\n finished.resolve()\n })\n\n // Create a writable stream that will write to the response.\n return new WritableStream({\n write: async (chunk) => {\n // You'd think we'd want to use `start` instead of placing this in `write`\n // but this ensures that we don't actually flush the headers until we've\n // started writing chunks.\n if (!started) {\n started = true\n\n if (\n 'performance' in globalThis &&\n process.env.NEXT_OTEL_PERFORMANCE_PREFIX\n ) {\n const metrics = getClientComponentLoaderMetrics()\n if (metrics) {\n performance.measure(\n `${process.env.NEXT_OTEL_PERFORMANCE_PREFIX}:next-client-component-loading`,\n {\n start: metrics.clientComponentLoadStart,\n end:\n metrics.clientComponentLoadStart +\n metrics.clientComponentLoadTimes,\n }\n )\n }\n }\n\n res.flushHeaders()\n getTracer().trace(\n NextNodeServerSpan.startResponse,\n {\n spanName: 'start response',\n },\n () => undefined\n )\n }\n\n try {\n const ok = res.write(chunk)\n\n // Added by the `compression` middleware, this is a function that will\n // flush the partially-compressed response to the client.\n if ('flush' in res && typeof res.flush === 'function') {\n res.flush()\n }\n\n // If the write returns false, it means there's some backpressure, so\n // wait until it's streamed before continuing.\n if (!ok) {\n await drained.promise\n\n // Reset the drained promise so that we can wait for the next drain event.\n drained = new DetachedPromise()\n }\n } catch (err) {\n res.end()\n throw new Error('failed to write chunk to response', { cause: err })\n }\n },\n abort: (err) => {\n if (res.writableFinished) return\n\n res.destroy(err)\n },\n close: async () => {\n // if a waitUntil promise was passed, wait for it to resolve before\n // ending the response.\n if (waitUntilForEnd) {\n await waitUntilForEnd\n }\n\n if (res.writableFinished) return\n\n res.end()\n return finished.promise\n },\n })\n}\n\nexport async function pipeToNodeResponse(\n readable: ReadableStream,\n res: ServerResponse,\n waitUntilForEnd?: Promise\n) {\n try {\n // If the response has already errored, then just return now.\n const { errored, destroyed } = res\n if (errored || destroyed) return\n\n // Create a new AbortController so that we can abort the readable if the\n // client disconnects.\n const controller = createAbortController(res)\n\n const writer = createWriterFromResponse(res, waitUntilForEnd)\n\n await readable.pipeTo(writer, { signal: controller.signal })\n } catch (err: any) {\n // If this isn't related to an abort error, re-throw it.\n if (isAbortError(err)) return\n\n throw new Error('failed to pipe response', { cause: err })\n }\n}\n"],"names":["ResponseAbortedName","createAbortController","DetachedPromise","getTracer","NextNodeServerSpan","getClientComponentLoaderMetrics","isAbortError","e","name","createWriterFromResponse","res","waitUntilForEnd","started","drained","onDrain","resolve","on","once","off","finished","WritableStream","write","chunk","globalThis","process","env","NEXT_OTEL_PERFORMANCE_PREFIX","metrics","performance","measure","start","clientComponentLoadStart","end","clientComponentLoadTimes","flushHeaders","trace","startResponse","spanName","undefined","ok","flush","promise","err","Error","cause","abort","writableFinished","destroy","close","pipeToNodeResponse","readable","errored","destroyed","controller","writer","pipeTo","signal"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 18586, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-status-code.ts"],"sourcesContent":["export enum RedirectStatusCode {\n SeeOther = 303,\n TemporaryRedirect = 307,\n PermanentRedirect = 308,\n}\n"],"names":["RedirectStatusCode"],"mappings":";;;;AAAO,IAAKA,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;;WAAAA;MAIX","ignoreList":[0]}}, - {"offset": {"line": 18600, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-error.ts"],"sourcesContent":["import { RedirectStatusCode } from './redirect-status-code'\n\nexport const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'\n\nexport enum RedirectType {\n push = 'push',\n replace = 'replace',\n}\n\nexport type RedirectError = Error & {\n digest: `${typeof REDIRECT_ERROR_CODE};${RedirectType};${string};${RedirectStatusCode};`\n}\n\n/**\n * Checks an error to determine if it's an error generated by the\n * `redirect(url)` helper.\n *\n * @param error the error that may reference a redirect error\n * @returns true if the error is a redirect error\n */\nexport function isRedirectError(error: unknown): error is RedirectError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n\n const digest = error.digest.split(';')\n const [errorCode, type] = digest\n const destination = digest.slice(2, -2).join(';')\n const status = digest.at(-2)\n\n const statusCode = Number(status)\n\n return (\n errorCode === REDIRECT_ERROR_CODE &&\n (type === 'replace' || type === 'push') &&\n typeof destination === 'string' &&\n !isNaN(statusCode) &&\n statusCode in RedirectStatusCode\n )\n}\n"],"names":["RedirectStatusCode","REDIRECT_ERROR_CODE","RedirectType","isRedirectError","error","digest","split","errorCode","type","destination","slice","join","status","at","statusCode","Number","isNaN"],"mappings":";;;;;;;;AAAA,SAASA,kBAAkB,QAAQ,yBAAwB;;AAEpD,MAAMC,sBAAsB,gBAAe;AAE3C,IAAKC,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;WAAAA;MAGX;AAaM,SAASC,gBAAgBC,KAAc;IAC5C,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IAEA,MAAMA,SAASD,MAAMC,MAAM,CAACC,KAAK,CAAC;IAClC,MAAM,CAACC,WAAWC,KAAK,GAAGH;IAC1B,MAAMI,cAAcJ,OAAOK,KAAK,CAAC,GAAG,CAAC,GAAGC,IAAI,CAAC;IAC7C,MAAMC,SAASP,OAAOQ,EAAE,CAAC,CAAC;IAE1B,MAAMC,aAAaC,OAAOH;IAE1B,OACEL,cAAcN,uBACbO,CAAAA,SAAS,aAAaA,SAAS,MAAK,KACrC,OAAOC,gBAAgB,YACvB,CAACO,MAAMF,eACPA,cAAcd,+MAAAA;AAElB","ignoreList":[0]}}, - {"offset": {"line": 18631, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/is-next-router-error.ts"],"sourcesContent":["import {\n isHTTPAccessFallbackError,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\nimport { isRedirectError, type RedirectError } from './redirect-error'\n\n/**\n * Returns true if the error is a navigation signal error. These errors are\n * thrown by user code to perform navigation operations and interrupt the React\n * render.\n */\nexport function isNextRouterError(\n error: unknown\n): error is RedirectError | HTTPAccessFallbackError {\n return isRedirectError(error) || isHTTPAccessFallbackError(error)\n}\n"],"names":["isHTTPAccessFallbackError","isRedirectError","isNextRouterError","error"],"mappings":";;;;AAAA,SACEA,yBAAyB,QAEpB,8CAA6C;AACpD,SAASC,eAAe,QAA4B,mBAAkB;;;AAO/D,SAASC,kBACdC,KAAc;IAEd,WAAOF,mMAAAA,EAAgBE,cAAUH,oPAAAA,EAA0BG;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 18646, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/is-plain-object.ts"],"sourcesContent":["export function getObjectClassLabel(value: any): string {\n return Object.prototype.toString.call(value)\n}\n\nexport function isPlainObject(value: any): boolean {\n if (getObjectClassLabel(value) !== '[object Object]') {\n return false\n }\n\n const prototype = Object.getPrototypeOf(value)\n\n /**\n * this used to be previously:\n *\n * `return prototype === null || prototype === Object.prototype`\n *\n * but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail.\n *\n * It was changed to the current implementation since it's resilient to serialization.\n */\n return prototype === null || prototype.hasOwnProperty('isPrototypeOf')\n}\n"],"names":["getObjectClassLabel","value","Object","prototype","toString","call","isPlainObject","getPrototypeOf","hasOwnProperty"],"mappings":";;;;;;AAAO,SAASA,oBAAoBC,KAAU;IAC5C,OAAOC,OAAOC,SAAS,CAACC,QAAQ,CAACC,IAAI,CAACJ;AACxC;AAEO,SAASK,cAAcL,KAAU;IACtC,IAAID,oBAAoBC,WAAW,mBAAmB;QACpD,OAAO;IACT;IAEA,MAAME,YAAYD,OAAOK,cAAc,CAACN;IAExC;;;;;;;;GAQC,GACD,OAAOE,cAAc,QAAQA,UAAUK,cAAc,CAAC;AACxD","ignoreList":[0]}}, - {"offset": {"line": 18674, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/is-error.ts"],"sourcesContent":["import { isPlainObject } from '../shared/lib/is-plain-object'\n\n// We allow some additional attached properties for Next.js errors\nexport interface NextError extends Error {\n type?: string\n page?: string\n code?: string | number\n cancelled?: boolean\n digest?: number\n}\n\n/**\n * This is a safe stringify function that handles circular references.\n * We're using a simpler version here to avoid introducing\n * the dependency `safe-stable-stringify` into production bundle.\n *\n * This helper is used both in development and production.\n */\nfunction safeStringifyLite(obj: any) {\n const seen = new WeakSet()\n\n return JSON.stringify(obj, (_key, value) => {\n // If value is an object and already seen, replace with \"[Circular]\"\n if (typeof value === 'object' && value !== null) {\n if (seen.has(value)) {\n return '[Circular]'\n }\n seen.add(value)\n }\n return value\n })\n}\n\n/**\n * Checks whether the given value is a NextError.\n * This can be used to print a more detailed error message with properties like `code` & `digest`.\n */\nexport default function isError(err: unknown): err is NextError {\n return (\n typeof err === 'object' && err !== null && 'name' in err && 'message' in err\n )\n}\n\nexport function getProperError(err: unknown): Error {\n if (isError(err)) {\n return err\n }\n\n if (process.env.NODE_ENV === 'development') {\n // provide better error for case where `throw undefined`\n // is called in development\n if (typeof err === 'undefined') {\n return new Error(\n 'An undefined error was thrown, ' +\n 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'\n )\n }\n\n if (err === null) {\n return new Error(\n 'A null error was thrown, ' +\n 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'\n )\n }\n }\n\n return new Error(isPlainObject(err) ? safeStringifyLite(err) : err + '')\n}\n"],"names":["isPlainObject","safeStringifyLite","obj","seen","WeakSet","JSON","stringify","_key","value","has","add","isError","err","getProperError","process","env","NODE_ENV","Error"],"mappings":";;;;;;AAAA,SAASA,aAAa,QAAQ,gCAA+B;;AAW7D;;;;;;CAMC,GACD,SAASC,kBAAkBC,GAAQ;IACjC,MAAMC,OAAO,IAAIC;IAEjB,OAAOC,KAAKC,SAAS,CAACJ,KAAK,CAACK,MAAMC;QAChC,oEAAoE;QACpE,IAAI,OAAOA,UAAU,YAAYA,UAAU,MAAM;YAC/C,IAAIL,KAAKM,GAAG,CAACD,QAAQ;gBACnB,OAAO;YACT;YACAL,KAAKO,GAAG,CAACF;QACX;QACA,OAAOA;IACT;AACF;AAMe,SAASG,QAAQC,GAAY;IAC1C,OACE,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,UAAUA,OAAO,aAAaA;AAE7E;AAEO,SAASC,eAAeD,GAAY;IACzC,IAAID,QAAQC,MAAM;QAChB,OAAOA;IACT;IAEA,IAAIE,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAe;QAC1C,wDAAwD;QACxD,2BAA2B;QAC3B,IAAI,OAAOJ,QAAQ,aAAa;YAC9B,OAAO,OAAA,cAGN,CAHM,IAAIK,MACT,oCACE,6EAFG,qBAAA;uBAAA;4BAAA;8BAAA;YAGP;QACF;QAEA,IAAIL,QAAQ,MAAM;YAChB,OAAO,OAAA,cAGN,CAHM,IAAIK,MACT,8BACE,6EAFG,qBAAA;uBAAA;4BAAA;8BAAA;YAGP;QACF;IACF;IAEA,OAAO,OAAA,cAAiE,CAAjE,IAAIA,UAAMjB,8LAAAA,EAAcY,OAAOX,kBAAkBW,OAAOA,MAAM,KAA9D,qBAAA;eAAA;oBAAA;sBAAA;IAAgE;AACzE","ignoreList":[0]}}, - {"offset": {"line": 18736, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/error-telemetry-utils.ts"],"sourcesContent":["const ERROR_CODE_DELIMITER = '@'\n\n/**\n * Augments the digest field of errors thrown in React Server Components (RSC) with an error code.\n * Since RSC errors can only be serialized through the digest field, this provides a way to include\n * an additional error code that can be extracted client-side via `extractNextErrorCode`.\n *\n * The error code is appended to the digest string with a semicolon separator, allowing it to be\n * parsed out later while preserving the original digest value.\n */\nexport const createDigestWithErrorCode = (\n thrownValue: unknown,\n originalDigest: string\n): string => {\n if (\n typeof thrownValue === 'object' &&\n thrownValue !== null &&\n '__NEXT_ERROR_CODE' in thrownValue\n ) {\n return `${originalDigest}${ERROR_CODE_DELIMITER}${thrownValue.__NEXT_ERROR_CODE}`\n }\n return originalDigest\n}\n\nexport const extractNextErrorCode = (error: unknown): string | undefined => {\n if (\n typeof error === 'object' &&\n error !== null &&\n '__NEXT_ERROR_CODE' in error &&\n typeof error.__NEXT_ERROR_CODE === 'string'\n ) {\n return error.__NEXT_ERROR_CODE\n }\n\n if (\n typeof error === 'object' &&\n error !== null &&\n 'digest' in error &&\n typeof error.digest === 'string'\n ) {\n const segments = error.digest.split(ERROR_CODE_DELIMITER)\n const errorCode = segments.find((segment) => segment.startsWith('E'))\n return errorCode\n }\n\n return undefined\n}\n"],"names":["ERROR_CODE_DELIMITER","createDigestWithErrorCode","thrownValue","originalDigest","__NEXT_ERROR_CODE","extractNextErrorCode","error","digest","segments","split","errorCode","find","segment","startsWith","undefined"],"mappings":";;;;;;AAAA,MAAMA,uBAAuB;AAUtB,MAAMC,4BAA4B,CACvCC,aACAC;IAEA,IACE,OAAOD,gBAAgB,YACvBA,gBAAgB,QAChB,uBAAuBA,aACvB;QACA,OAAO,GAAGC,iBAAiBH,uBAAuBE,YAAYE,iBAAiB,EAAE;IACnF;IACA,OAAOD;AACT,EAAC;AAEM,MAAME,uBAAuB,CAACC;IACnC,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,uBAAuBA,SACvB,OAAOA,MAAMF,iBAAiB,KAAK,UACnC;QACA,OAAOE,MAAMF,iBAAiB;IAChC;IAEA,IACE,OAAOE,UAAU,YACjBA,UAAU,QACV,YAAYA,SACZ,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,MAAMC,WAAWF,MAAMC,MAAM,CAACE,KAAK,CAACT;QACpC,MAAMU,YAAYF,SAASG,IAAI,CAAC,CAACC,UAAYA,QAAQC,UAAU,CAAC;QAChE,OAAOH;IACT;IAEA,OAAOI;AACT,EAAC","ignoreList":[0]}}, - {"offset": {"line": 18764, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/react-large-shell-error.ts"],"sourcesContent":["// TODO: isWellKnownError -> isNextInternalError\n// isReactLargeShellError -> isWarning\nexport function isReactLargeShellError(\n error: unknown\n): error is Error & { digest?: string } {\n return (\n typeof error === 'object' &&\n error !== null &&\n 'message' in error &&\n typeof error.message === 'string' &&\n error.message.startsWith('This rendered a large document (>')\n )\n}\n"],"names":["isReactLargeShellError","error","message","startsWith"],"mappings":"AAAA,gDAAgD;AAChD,sCAAsC;;;;;AAC/B,SAASA,uBACdC,KAAc;IAEd,OACE,OAAOA,UAAU,YACjBA,UAAU,QACV,aAAaA,SACb,OAAOA,MAAMC,OAAO,KAAK,YACzBD,MAAMC,OAAO,CAACC,UAAU,CAAC;AAE7B","ignoreList":[0]}}, - {"offset": {"line": 18777, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/create-error-handler.tsx"],"sourcesContent":["import type { ErrorInfo } from 'react'\nimport stringHash from 'next/dist/compiled/string-hash'\n\nimport { formatServerError } from '../../lib/format-server-error'\nimport { SpanStatusCode, getTracer } from '../lib/trace/tracer'\n\nimport { isAbortError } from '../pipe-readable'\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { isDynamicServerError } from '../../client/components/hooks-server-context'\nimport { isNextRouterError } from '../../client/components/is-next-router-error'\nimport { isPrerenderInterruptedError } from './dynamic-rendering'\nimport { getProperError } from '../../lib/is-error'\nimport { createDigestWithErrorCode } from '../../lib/error-telemetry-utils'\nimport { isReactLargeShellError } from './react-large-shell-error'\n\ndeclare global {\n var __next_log_error__: undefined | ((err: unknown) => void)\n}\n\ntype RSCErrorHandler = (err: unknown) => string | undefined\ntype SSRErrorHandler = (\n err: unknown,\n errorInfo?: ErrorInfo\n) => string | undefined\n\nexport type DigestedError = Error & { digest: string; environmentName?: string }\n\n/**\n * Returns a digest for well-known Next.js errors, otherwise `undefined`. If a\n * digest is returned this also means that the error does not need to be\n * reported.\n */\nexport function getDigestForWellKnownError(error: unknown): string | undefined {\n // If we're bailing out to CSR, we don't need to log the error.\n if (isBailoutToCSRError(error)) return error.digest\n\n // If this is a navigation error, we don't need to log the error.\n if (isNextRouterError(error)) return error.digest\n\n // If this error occurs, we know that we should be stopping the static\n // render. This is only thrown in static generation when PPR is not enabled,\n // which causes the whole page to be marked as dynamic. We don't need to\n // tell the user about this error, as it's not actionable.\n if (isDynamicServerError(error)) return error.digest\n\n // If this is a prerender interrupted error, we don't need to log the error.\n if (isPrerenderInterruptedError(error)) return error.digest\n\n return undefined\n}\n\nexport function createReactServerErrorHandler(\n shouldFormatError: boolean,\n isNextExport: boolean,\n reactServerErrors: Map,\n onReactServerRenderError: (err: DigestedError, silenceLog: boolean) => void,\n spanToRecordOn?: any\n): RSCErrorHandler {\n return (thrownValue: unknown) => {\n if (typeof thrownValue === 'string') {\n // TODO-APP: look at using webcrypto instead. Requires a promise to be awaited.\n return stringHash(thrownValue).toString()\n }\n\n // If the response was closed, we don't need to log the error.\n if (isAbortError(thrownValue)) return\n\n const digest = getDigestForWellKnownError(thrownValue)\n\n if (digest) {\n return digest\n }\n\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue)\n return undefined\n }\n\n let err = getProperError(thrownValue) as DigestedError\n let silenceLog = false\n\n // If the error already has a digest, respect the original digest,\n // so it won't get re-generated into another new error.\n if (err.digest) {\n if (\n process.env.NODE_ENV === 'production' &&\n reactServerErrors.has(err.digest)\n ) {\n // This error is likely an obfuscated error from another react-server\n // environment (e.g. 'use cache'). We recover the original error here\n // for reporting purposes.\n err = reactServerErrors.get(err.digest)!\n // We don't log it again though, as it was already logged in the\n // original environment.\n silenceLog = true\n } else {\n // Either we're in development (where we want to keep the transported\n // error with environmentName), or the error is not in reactServerErrors\n // but has a digest from other means. Keep the error as-is.\n }\n } else {\n err.digest = createDigestWithErrorCode(\n err,\n // TODO-APP: look at using webcrypto instead. Requires a promise to be awaited.\n stringHash(err.message + (err.stack || '')).toString()\n )\n }\n\n // @TODO by putting this here and not at the top it is possible that\n // we don't error the build in places we actually expect to\n if (!reactServerErrors.has(err.digest)) {\n reactServerErrors.set(err.digest, err)\n }\n\n // Format server errors in development to add more helpful error messages\n if (shouldFormatError) {\n formatServerError(err)\n }\n\n // Don't log the suppressed error during export\n if (\n !(\n isNextExport &&\n err?.message?.includes(\n 'The specific message is omitted in production builds to avoid leaking sensitive details.'\n )\n )\n ) {\n // Record exception on the provided span if available, otherwise try active span.\n const span = spanToRecordOn ?? getTracer().getActiveScopeSpan()\n if (span) {\n span.recordException(err)\n span.setAttribute('error.type', err.name)\n span.setStatus({\n code: SpanStatusCode.ERROR,\n message: err.message,\n })\n }\n\n onReactServerRenderError(err, silenceLog)\n }\n\n return err.digest\n }\n}\n\nexport function createHTMLErrorHandler(\n shouldFormatError: boolean,\n isNextExport: boolean,\n reactServerErrors: Map,\n allCapturedErrors: Array,\n onHTMLRenderSSRError: (err: DigestedError, errorInfo?: ErrorInfo) => void,\n spanToRecordOn?: any\n): SSRErrorHandler {\n return (thrownValue: unknown, errorInfo?: ErrorInfo) => {\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue)\n return undefined\n }\n\n let isSSRError = true\n\n allCapturedErrors.push(thrownValue)\n\n // If the response was closed, we don't need to log the error.\n if (isAbortError(thrownValue)) return\n\n const digest = getDigestForWellKnownError(thrownValue)\n\n if (digest) {\n return digest\n }\n\n const err = getProperError(thrownValue) as DigestedError\n\n // If the error already has a digest, respect the original digest,\n // so it won't get re-generated into another new error.\n if (err.digest) {\n if (reactServerErrors.has(err.digest)) {\n // This error is likely an obfuscated error from react-server.\n // We recover the original error here.\n thrownValue = reactServerErrors.get(err.digest)\n isSSRError = false\n } else {\n // The error is not from react-server but has a digest\n // from other means so we don't need to produce a new one\n }\n } else {\n err.digest = createDigestWithErrorCode(\n err,\n stringHash(\n err.message + (errorInfo?.componentStack || err.stack || '')\n ).toString()\n )\n }\n\n // Format server errors in development to add more helpful error messages\n if (shouldFormatError) {\n formatServerError(err)\n }\n\n // Don't log the suppressed error during export\n if (\n !(\n isNextExport &&\n err?.message?.includes(\n 'The specific message is omitted in production builds to avoid leaking sensitive details.'\n )\n )\n ) {\n // HTML errors contain RSC errors as well, filter them out before reporting\n if (isSSRError) {\n // Record exception on the provided span if available, otherwise try active span.\n const span = spanToRecordOn ?? getTracer().getActiveScopeSpan()\n if (span) {\n span.recordException(err)\n span.setAttribute('error.type', err.name)\n span.setStatus({\n code: SpanStatusCode.ERROR,\n message: err.message,\n })\n }\n\n onHTMLRenderSSRError(err, errorInfo)\n }\n }\n\n return err.digest\n }\n}\n\nexport function isUserLandError(err: any): boolean {\n return (\n !isAbortError(err) && !isBailoutToCSRError(err) && !isNextRouterError(err)\n )\n}\n"],"names":["stringHash","formatServerError","SpanStatusCode","getTracer","isAbortError","isBailoutToCSRError","isDynamicServerError","isNextRouterError","isPrerenderInterruptedError","getProperError","createDigestWithErrorCode","isReactLargeShellError","getDigestForWellKnownError","error","digest","undefined","createReactServerErrorHandler","shouldFormatError","isNextExport","reactServerErrors","onReactServerRenderError","spanToRecordOn","thrownValue","err","toString","console","silenceLog","process","env","NODE_ENV","has","get","message","stack","set","includes","span","getActiveScopeSpan","recordException","setAttribute","name","setStatus","code","ERROR","createHTMLErrorHandler","allCapturedErrors","onHTMLRenderSSRError","errorInfo","isSSRError","push","componentStack","isUserLandError"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 18945, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/prospective-render-utils.ts"],"sourcesContent":["import { getDigestForWellKnownError } from './create-error-handler'\nimport { isReactLargeShellError } from './react-large-shell-error'\n\nexport enum Phase {\n ProspectiveRender = 'the prospective render',\n SegmentCollection = 'segment collection',\n}\n\nexport function printDebugThrownValueForProspectiveRender(\n thrownValue: unknown,\n route: string,\n phase: Phase\n) {\n // We don't need to print well-known Next.js errors.\n if (getDigestForWellKnownError(thrownValue)) {\n return\n }\n\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue)\n return undefined\n }\n\n let message: undefined | string\n if (\n typeof thrownValue === 'object' &&\n thrownValue !== null &&\n typeof (thrownValue as any).message === 'string'\n ) {\n message = (thrownValue as any).message\n if (typeof (thrownValue as any).stack === 'string') {\n const originalErrorStack: string = (thrownValue as any).stack\n const stackStart = originalErrorStack.indexOf('\\n')\n if (stackStart > -1) {\n const error = new Error(\n `Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled.\n \nOriginal Error: ${message}`\n )\n error.stack =\n 'Error: ' + error.message + originalErrorStack.slice(stackStart)\n console.error(error)\n return\n }\n }\n } else if (typeof thrownValue === 'string') {\n message = thrownValue\n }\n\n if (message) {\n console.error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. No stack was provided.\n \nOriginal Message: ${message}`)\n return\n }\n\n console.error(\n `Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. The thrown value is logged just following this message`\n )\n console.error(thrownValue)\n return\n}\n"],"names":["getDigestForWellKnownError","isReactLargeShellError","Phase","printDebugThrownValueForProspectiveRender","thrownValue","route","phase","console","error","undefined","message","stack","originalErrorStack","stackStart","indexOf","Error","slice"],"mappings":";;;;;;AAAA,SAASA,0BAA0B,QAAQ,yBAAwB;AACnE,SAASC,sBAAsB,QAAQ,4BAA2B;;;AAE3D,IAAKC,QAAAA,WAAAA,GAAAA,SAAAA,KAAAA;;;WAAAA;MAGX;AAEM,SAASC,0CACdC,WAAoB,EACpBC,KAAa,EACbC,KAAY;IAEZ,oDAAoD;IACpD,QAAIN,0NAAAA,EAA2BI,cAAc;QAC3C;IACF;IAEA,QAAIH,4NAAAA,EAAuBG,cAAc;QACvC,kBAAkB;QAClBG,QAAQC,KAAK,CAACJ;QACd,OAAOK;IACT;IAEA,IAAIC;IACJ,IACE,OAAON,gBAAgB,YACvBA,gBAAgB,QAChB,OAAQA,YAAoBM,OAAO,KAAK,UACxC;QACAA,UAAWN,YAAoBM,OAAO;QACtC,IAAI,OAAQN,YAAoBO,KAAK,KAAK,UAAU;YAClD,MAAMC,qBAA8BR,YAAoBO,KAAK;YAC7D,MAAME,aAAaD,mBAAmBE,OAAO,CAAC;YAC9C,IAAID,aAAa,CAAC,GAAG;gBACnB,MAAML,QAAQ,OAAA,cAIb,CAJa,IAAIO,MAChB,CAAC,MAAM,EAAEV,MAAM,gBAAgB,EAAEC,MAAM;;gBAEjC,EAAEI,SAAS,GAHL,qBAAA;2BAAA;gCAAA;kCAAA;gBAId;gBACAF,MAAMG,KAAK,GACT,YAAYH,MAAME,OAAO,GAAGE,mBAAmBI,KAAK,CAACH;gBACvDN,QAAQC,KAAK,CAACA;gBACd;YACF;QACF;IACF,OAAO,IAAI,OAAOJ,gBAAgB,UAAU;QAC1CM,UAAUN;IACZ;IAEA,IAAIM,SAAS;QACXH,QAAQC,KAAK,CAAC,CAAC,MAAM,EAAEH,MAAM,gBAAgB,EAAEC,MAAM;;kBAEvC,EAAEI,SAAS;QACzB;IACF;IAEAH,QAAQC,KAAK,CACX,CAAC,MAAM,EAAEH,MAAM,gBAAgB,EAAEC,MAAM,kMAAkM,CAAC;IAE5OC,QAAQC,KAAK,CAACJ;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 19006, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/source-maps.ts"],"sourcesContent":["import type { SourceMap } from 'module'\nimport { LRUCache } from './lru-cache'\n\nfunction noSourceMap(): SourceMap | undefined {\n return undefined\n}\n\n// Edge runtime does not implement `module`\nconst findSourceMap =\n process.env.NEXT_RUNTIME === 'edge'\n ? noSourceMap\n : (require('module') as typeof import('module')).findSourceMap\n\n/**\n * https://tc39.es/source-map/#index-map\n */\ninterface IndexSourceMapSection {\n offset: {\n line: number\n column: number\n }\n map: BasicSourceMapPayload\n}\n\n// TODO(veil): Upstream types\n/** https://tc39.es/ecma426/#sec-index-source-map */\ninterface IndexSourceMap {\n version: number\n file: string\n sections: IndexSourceMapSection[]\n}\n\n/** https://tc39.es/ecma426/#sec-source-map-format */\nexport interface BasicSourceMapPayload {\n version: number\n // TODO: Move to https://github.com/jridgewell/sourcemaps which is actively maintained\n /** WARNING: `file` is optional. */\n file: string\n sourceRoot?: string\n // TODO: Move to https://github.com/jridgewell/sourcemaps which is actively maintained\n /** WARNING: `sources[number]` can be `null`. */\n sources: Array\n names: Array\n mappings: string\n ignoreList?: number[]\n}\n\nexport type ModernSourceMapPayload = BasicSourceMapPayload | IndexSourceMap\n\nexport function sourceMapIgnoreListsEverything(\n sourceMap: BasicSourceMapPayload\n): boolean {\n return (\n sourceMap.ignoreList !== undefined &&\n sourceMap.sources.length === sourceMap.ignoreList.length\n )\n}\n\n/**\n * Finds the sourcemap payload applicable to a given frame.\n * Equal to the input unless an Index Source Map is used.\n * @param line0 - The line number of the frame, 0-based.\n * @param column0 - The column number of the frame, 0-based.\n */\nexport function findApplicableSourceMapPayload(\n line0: number,\n column0: number,\n payload: ModernSourceMapPayload\n): BasicSourceMapPayload | undefined {\n if ('sections' in payload) {\n if (payload.sections.length === 0) {\n return undefined\n }\n\n // Sections must not overlap and must be sorted: https://tc39.es/source-map/#section-object\n // Therefore the last section that has an offset less than or equal to the frame is the applicable one.\n const sections = payload.sections\n let left = 0\n let right = sections.length - 1\n let result: IndexSourceMapSection | null = null\n\n while (left <= right) {\n // fast Math.floor\n const middle = ~~((left + right) / 2)\n const section = sections[middle]\n const offset = section.offset\n\n if (\n offset.line < line0 ||\n (offset.line === line0 && offset.column <= column0)\n ) {\n result = section\n left = middle + 1\n } else {\n right = middle - 1\n }\n }\n\n return result === null ? undefined : result.map\n } else {\n return payload\n }\n}\n\nconst didWarnAboutInvalidSourceMapDEV = new Set()\n\nexport function filterStackFrameDEV(\n sourceURL: string,\n functionName: string,\n line1: number,\n column1: number\n): boolean {\n if (sourceURL === '') {\n // The default implementation filters out stack frames\n // but we want to retain them because current Server Components and\n // built-in Components in parent stacks don't have source location.\n // Filter out frames that show up in Promises to get good names in React's\n // Server Request track until we come up with a better heuristic.\n return functionName !== 'new Promise'\n }\n if (sourceURL.startsWith('node:') || sourceURL.includes('node_modules')) {\n return false\n }\n try {\n // Node.js loads source maps eagerly so this call is cheap.\n // TODO: ESM sourcemaps are O(1) but CommonJS sourcemaps are O(Number of CJS modules).\n // Make sure this doesn't adversely affect performance when CJS is used by Next.js.\n const sourceMap = findSourceMap(sourceURL)\n if (sourceMap === undefined) {\n // No source map assoicated.\n // TODO: Node.js types should reflect that `findSourceMap` can return `undefined`.\n return true\n }\n const sourceMapPayload = findApplicableSourceMapPayload(\n line1 - 1,\n column1 - 1,\n sourceMap.payload\n )\n if (sourceMapPayload === undefined) {\n // No source map section applicable to the frame.\n return true\n }\n return !sourceMapIgnoreListsEverything(sourceMapPayload)\n } catch (cause) {\n if (process.env.NODE_ENV !== 'production') {\n // TODO: Share cache with patch-error-inspect\n if (!didWarnAboutInvalidSourceMapDEV.has(sourceURL)) {\n didWarnAboutInvalidSourceMapDEV.add(sourceURL)\n // We should not log an actual error instance here because that will re-enter\n // this codepath during error inspection and could lead to infinite recursion.\n console.error(\n `${sourceURL}: Invalid source map. Only conformant source maps can be used to filter stack frames. Cause: ${cause}`\n )\n }\n }\n\n return true\n }\n}\n\nconst invalidSourceMap = Symbol('invalid-source-map')\nconst sourceMapURLs = new LRUCache(\n 512 * 1024 * 1024,\n (url) =>\n url === invalidSourceMap\n ? // Ideally we'd account for key length. So we just guestimate a small source map\n // so that we don't create a huge cache with empty source maps.\n 8 * 1024\n : // these URLs contain only ASCII characters so .length is equal to Buffer.byteLength\n url.length\n)\nexport function findSourceMapURLDEV(\n scriptNameOrSourceURL: string\n): string | null {\n let sourceMapURL = sourceMapURLs.get(scriptNameOrSourceURL)\n if (sourceMapURL === undefined) {\n let sourceMapPayload: ModernSourceMapPayload | undefined\n try {\n sourceMapPayload = findSourceMap(scriptNameOrSourceURL)?.payload\n } catch (cause) {\n console.error(\n `${scriptNameOrSourceURL}: Invalid source map. Only conformant source maps can be used to find the original code. Cause: ${cause}`\n )\n }\n\n if (sourceMapPayload === undefined) {\n sourceMapURL = invalidSourceMap\n } else {\n // TODO: Might be more efficient to extract the relevant section from Index Maps.\n // Unclear if that search is worth the smaller payload we have to stringify.\n const sourceMapJSON = JSON.stringify(sourceMapPayload)\n const sourceMapURLData = Buffer.from(sourceMapJSON, 'utf8').toString(\n 'base64'\n )\n sourceMapURL = `data:application/json;base64,${sourceMapURLData}`\n }\n\n sourceMapURLs.set(scriptNameOrSourceURL, sourceMapURL)\n }\n\n return sourceMapURL === invalidSourceMap ? null : sourceMapURL\n}\n\nexport function devirtualizeReactServerURL(sourceURL: string): string {\n if (sourceURL.startsWith('about://React/')) {\n // about://React/Server/file://?42 => file://\n const envIdx = sourceURL.indexOf('/', 'about://React/'.length)\n const suffixIdx = sourceURL.lastIndexOf('?')\n if (envIdx > -1 && suffixIdx > -1) {\n return decodeURI(sourceURL.slice(envIdx + 1, suffixIdx))\n }\n }\n return sourceURL\n}\n\nfunction isAnonymousFrameLikelyJSNative(methodName: string): boolean {\n // Anonymous frames can also be produced in React parent stacks either from\n // host components or Server Components. We don't want to ignore those.\n // This could hide user-space methods that are named like native JS methods but\n // should you really do that?\n return (\n // e.g. JSON.parse\n methodName.startsWith('JSON.') ||\n // E.g. Promise.withResolves\n methodName.startsWith('Function.') ||\n // various JS built-ins\n methodName.startsWith('Promise.') ||\n methodName.startsWith('Array.') ||\n methodName.startsWith('Set.') ||\n methodName.startsWith('Map.')\n )\n}\n\nexport function ignoreListAnonymousStackFramesIfSandwiched(\n frames: Frame[],\n isAnonymousFrame: (frame: Frame) => boolean,\n isIgnoredFrame: (frame: Frame) => boolean,\n getMethodName: (frame: Frame) => string,\n /** only passes frames for which `isAnonymousFrame` and their method is a native JS method or `isIgnoredFrame` return true */\n ignoreFrame: (frame: Frame) => void\n): void {\n for (let i = 1; i < frames.length; i++) {\n const currentFrame = frames[i]\n if (\n !(\n isAnonymousFrame(currentFrame) &&\n isAnonymousFrameLikelyJSNative(getMethodName(currentFrame))\n )\n ) {\n continue\n }\n\n const previousFrameIsIgnored = isIgnoredFrame(frames[i - 1])\n if (previousFrameIsIgnored && i < frames.length - 1) {\n let ignoreSandwich = false\n let j = i + 1\n for (j; j < frames.length; j++) {\n const nextFrame = frames[j]\n const nextFrameIsAnonymous =\n isAnonymousFrame(nextFrame) &&\n isAnonymousFrameLikelyJSNative(getMethodName(nextFrame))\n if (nextFrameIsAnonymous) {\n continue\n }\n\n const nextFrameIsIgnored = isIgnoredFrame(nextFrame)\n if (nextFrameIsIgnored) {\n ignoreSandwich = true\n break\n }\n }\n\n if (ignoreSandwich) {\n for (i; i < j; i++) {\n ignoreFrame(frames[i])\n }\n }\n }\n }\n}\n"],"names":["LRUCache","noSourceMap","undefined","findSourceMap","process","env","NEXT_RUNTIME","require","sourceMapIgnoreListsEverything","sourceMap","ignoreList","sources","length","findApplicableSourceMapPayload","line0","column0","payload","sections","left","right","result","middle","section","offset","line","column","map","didWarnAboutInvalidSourceMapDEV","Set","filterStackFrameDEV","sourceURL","functionName","line1","column1","startsWith","includes","sourceMapPayload","cause","NODE_ENV","has","add","console","error","invalidSourceMap","Symbol","sourceMapURLs","url","findSourceMapURLDEV","scriptNameOrSourceURL","sourceMapURL","get","sourceMapJSON","JSON","stringify","sourceMapURLData","Buffer","from","toString","set","devirtualizeReactServerURL","envIdx","indexOf","suffixIdx","lastIndexOf","decodeURI","slice","isAnonymousFrameLikelyJSNative","methodName","ignoreListAnonymousStackFramesIfSandwiched","frames","isAnonymousFrame","isIgnoredFrame","getMethodName","ignoreFrame","i","currentFrame","previousFrameIsIgnored","ignoreSandwich","j","nextFrame","nextFrameIsAnonymous","nextFrameIsIgnored"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 19179, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/collect-segment-data.tsx"],"sourcesContent":["/* eslint-disable @next/internal/no-ambiguous-jsx -- Bundled in entry-base so it gets the right JSX runtime. */\nimport type {\n CacheNodeSeedData,\n FlightRouterState,\n InitialRSCPayload,\n DynamicParamTypesShort,\n HeadData,\n LoadingModuleData,\n} from '../../shared/lib/app-router-types'\nimport type { ManifestNode } from '../../build/webpack/plugins/flight-manifest-plugin'\n\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { createFromReadableStream } from 'react-server-dom-webpack/client'\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { prerender } from 'react-server-dom-webpack/static'\n\nimport {\n streamFromBuffer,\n streamToBuffer,\n} from '../stream-utils/node-web-streams-helper'\nimport { waitAtLeastOneReactRenderTask } from '../../lib/scheduler'\nimport {\n type SegmentRequestKey,\n createSegmentRequestKeyPart,\n appendSegmentRequestKeyPart,\n ROOT_SEGMENT_REQUEST_KEY,\n HEAD_REQUEST_KEY,\n} from '../../shared/lib/segment-cache/segment-value-encoding'\nimport { getDigestForWellKnownError } from './create-error-handler'\nimport {\n Phase,\n printDebugThrownValueForProspectiveRender,\n} from './prospective-render-utils'\nimport { workAsyncStorage } from './work-async-storage.external'\n\n// Contains metadata about the route tree. The client must fetch this before\n// it can fetch any actual segment data.\nexport type RootTreePrefetch = {\n buildId: string\n tree: TreePrefetch\n staleTime: number\n}\n\nexport type TreePrefetch = {\n name: string\n paramType: DynamicParamTypesShort | null\n // When cacheComponents is enabled, this field is always null.\n // Instead we parse the param on the client, allowing us to omit it from\n // the prefetch response and increase its cacheability.\n paramKey: string | null\n\n // Child segments.\n slots: null | {\n [parallelRouteKey: string]: TreePrefetch\n }\n\n /** Whether this segment should be fetched using a runtime prefetch */\n hasRuntimePrefetch: boolean\n\n // Extra fields that only exist so we can reconstruct a FlightRouterState on\n // the client. We may be able to unify TreePrefetch and FlightRouterState\n // after some refactoring, but in the meantime it would be wasteful to add a\n // bunch of new prefetch-only fields to FlightRouterState. So think of\n // TreePrefetch as a superset of FlightRouterState.\n isRootLayout: boolean\n}\n\nexport type SegmentPrefetch = {\n buildId: string\n rsc: React.ReactNode | null\n loading: LoadingModuleData | Promise\n isPartial: boolean\n}\n\nconst filterStackFrame =\n process.env.NODE_ENV !== 'production'\n ? (require('../lib/source-maps') as typeof import('../lib/source-maps'))\n .filterStackFrameDEV\n : undefined\nconst findSourceMapURL =\n process.env.NODE_ENV !== 'production'\n ? (require('../lib/source-maps') as typeof import('../lib/source-maps'))\n .findSourceMapURLDEV\n : undefined\n\nfunction onSegmentPrerenderError(error: unknown) {\n const digest = getDigestForWellKnownError(error)\n if (digest) {\n return digest\n }\n // We don't need to log the errors because we would have already done that\n // when generating the original Flight stream for the whole page.\n if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {\n const workStore = workAsyncStorage.getStore()\n printDebugThrownValueForProspectiveRender(\n error,\n workStore?.route ?? 'unknown route',\n Phase.SegmentCollection\n )\n }\n}\n\nexport async function collectSegmentData(\n isCacheComponentsEnabled: boolean,\n fullPageDataBuffer: Buffer,\n staleTime: number,\n clientModules: ManifestNode,\n serverConsumerManifest: any\n): Promise> {\n // Traverse the router tree and generate a prefetch response for each segment.\n\n // A mutable map to collect the results as we traverse the route tree.\n const resultMap = new Map()\n\n // Before we start, warm up the module cache by decoding the page data once.\n // Then we can assume that any remaining async tasks that occur the next time\n // are due to hanging promises caused by dynamic data access. Note we only\n // have to do this once per page, not per individual segment.\n //\n try {\n await createFromReadableStream(streamFromBuffer(fullPageDataBuffer), {\n findSourceMapURL,\n serverConsumerManifest,\n })\n await waitAtLeastOneReactRenderTask()\n } catch {}\n\n // Create an abort controller that we'll use to stop the stream.\n const abortController = new AbortController()\n const onCompletedProcessingRouteTree = async () => {\n // Since all we're doing is decoding and re-encoding a cached prerender, if\n // serializing the stream takes longer than a microtask, it must because of\n // hanging promises caused by dynamic data.\n await waitAtLeastOneReactRenderTask()\n abortController.abort()\n }\n\n // Generate a stream for the route tree prefetch. While we're walking the\n // tree, we'll also spawn additional tasks to generate the segment prefetches.\n // The promises for these tasks are pushed to a mutable array that we will\n // await once the route tree is fully rendered.\n const segmentTasks: Array> = []\n const { prelude: treeStream } = await prerender(\n // RootTreePrefetch is not a valid return type for a React component, but\n // we need to use a component so that when we decode the original stream\n // inside of it, the side effects are transferred to the new stream.\n // @ts-expect-error\n ,\n clientModules,\n {\n filterStackFrame,\n signal: abortController.signal,\n onError: onSegmentPrerenderError,\n }\n )\n\n // Write the route tree to a special `/_tree` segment.\n const treeBuffer = await streamToBuffer(treeStream)\n resultMap.set('/_tree' as SegmentRequestKey, treeBuffer)\n\n // Also output the entire full page data response\n resultMap.set('/_full' as SegmentRequestKey, fullPageDataBuffer)\n\n // Now that we've finished rendering the route tree, all the segment tasks\n // should have been spawned. Await them in parallel and write the segment\n // prefetches to the result map.\n for (const [segmentPath, buffer] of await Promise.all(segmentTasks)) {\n resultMap.set(segmentPath, buffer)\n }\n\n return resultMap\n}\n\nasync function PrefetchTreeData({\n isClientParamParsingEnabled,\n fullPageDataBuffer,\n serverConsumerManifest,\n clientModules,\n staleTime,\n segmentTasks,\n onCompletedProcessingRouteTree,\n}: {\n isClientParamParsingEnabled: boolean\n fullPageDataBuffer: Buffer\n serverConsumerManifest: any\n clientModules: ManifestNode\n staleTime: number\n segmentTasks: Array>\n onCompletedProcessingRouteTree: () => void\n}): Promise {\n // We're currently rendering a Flight response for the route tree prefetch.\n // Inside this component, decode the Flight stream for the whole page. This is\n // a hack to transfer the side effects from the original Flight stream (e.g.\n // Float preloads) onto the Flight stream for the tree prefetch.\n // TODO: React needs a better way to do this. Needed for Server Actions, too.\n const initialRSCPayload: InitialRSCPayload = await createFromReadableStream(\n createUnclosingPrefetchStream(streamFromBuffer(fullPageDataBuffer)),\n {\n findSourceMapURL,\n serverConsumerManifest,\n }\n )\n\n const buildId = initialRSCPayload.b\n\n // FlightDataPath is an unsound type, hence the additional checks.\n const flightDataPaths = initialRSCPayload.f\n if (flightDataPaths.length !== 1 && flightDataPaths[0].length !== 3) {\n console.error(\n 'Internal Next.js error: InitialRSCPayload does not match the expected ' +\n 'shape for a prerendered page during segment prefetch generation.'\n )\n return null\n }\n const flightRouterState: FlightRouterState = flightDataPaths[0][0]\n const seedData: CacheNodeSeedData = flightDataPaths[0][1]\n const head: HeadData = flightDataPaths[0][2]\n\n // Compute the route metadata tree by traversing the FlightRouterState. As we\n // walk the tree, we will also spawn a task to produce a prefetch response for\n // each segment.\n const tree = collectSegmentDataImpl(\n isClientParamParsingEnabled,\n flightRouterState,\n buildId,\n seedData,\n clientModules,\n ROOT_SEGMENT_REQUEST_KEY,\n segmentTasks\n )\n\n // Also spawn a task to produce a prefetch response for the \"head\" segment.\n // The head contains metadata, like the title; it's not really a route\n // segment, but it contains RSC data, so it's treated like a segment by\n // the client cache.\n segmentTasks.push(\n waitAtLeastOneReactRenderTask().then(() =>\n renderSegmentPrefetch(\n buildId,\n head,\n null,\n HEAD_REQUEST_KEY,\n clientModules\n )\n )\n )\n\n // Notify the abort controller that we're done processing the route tree.\n // Anything async that happens after this point must be due to hanging\n // promises in the original stream.\n onCompletedProcessingRouteTree()\n\n // Render the route tree to a special `/_tree` segment.\n const treePrefetch: RootTreePrefetch = {\n buildId,\n tree,\n staleTime,\n }\n return treePrefetch\n}\n\nfunction collectSegmentDataImpl(\n isClientParamParsingEnabled: boolean,\n route: FlightRouterState,\n buildId: string,\n seedData: CacheNodeSeedData | null,\n clientModules: ManifestNode,\n requestKey: SegmentRequestKey,\n segmentTasks: Array>\n): TreePrefetch {\n // Metadata about the segment. Sent as part of the tree prefetch. Null if\n // there are no children.\n let slotMetadata: { [parallelRouteKey: string]: TreePrefetch } | null = null\n\n const children = route[1]\n const seedDataChildren = seedData !== null ? seedData[1] : null\n for (const parallelRouteKey in children) {\n const childRoute = children[parallelRouteKey]\n const childSegment = childRoute[0]\n const childSeedData =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n createSegmentRequestKeyPart(childSegment)\n )\n const childTree = collectSegmentDataImpl(\n isClientParamParsingEnabled,\n childRoute,\n buildId,\n childSeedData,\n clientModules,\n childRequestKey,\n segmentTasks\n )\n if (slotMetadata === null) {\n slotMetadata = {}\n }\n slotMetadata[parallelRouteKey] = childTree\n }\n\n const hasRuntimePrefetch = seedData !== null ? seedData[4] : false\n\n if (seedData !== null) {\n // Spawn a task to write the segment data to a new Flight stream.\n segmentTasks.push(\n // Since we're already in the middle of a render, wait until after the\n // current task to escape the current rendering context.\n waitAtLeastOneReactRenderTask().then(() =>\n renderSegmentPrefetch(\n buildId,\n seedData[0],\n seedData[2],\n requestKey,\n clientModules\n )\n )\n )\n } else {\n // This segment does not have any seed data. Skip generating a prefetch\n // response for it. We'll still include it in the route tree, though.\n // TODO: We should encode in the route tree whether a segment is missing\n // so we don't attempt to fetch it for no reason. As of now this shouldn't\n // ever happen in practice, though.\n }\n\n const segment = route[0]\n let name\n let paramType: DynamicParamTypesShort | null = null\n let paramKey: string | null = null\n if (typeof segment === 'string') {\n name = segment\n paramKey = segment\n paramType = null\n } else {\n name = segment[0]\n paramKey = segment[1]\n paramType = segment[2] as DynamicParamTypesShort\n }\n\n // Metadata about the segment. Sent to the client as part of the\n // tree prefetch.\n return {\n name,\n paramType,\n // This value is ommitted from the prefetch response when cacheComponents\n // is enabled.\n paramKey: isClientParamParsingEnabled ? null : paramKey,\n hasRuntimePrefetch,\n slots: slotMetadata,\n isRootLayout: route[4] === true,\n }\n}\n\nasync function renderSegmentPrefetch(\n buildId: string,\n rsc: React.ReactNode,\n loading: LoadingModuleData | Promise,\n requestKey: SegmentRequestKey,\n clientModules: ManifestNode\n): Promise<[SegmentRequestKey, Buffer]> {\n // Render the segment data to a stream.\n // In the future, this is where we can include additional metadata, like the\n // stale time and cache tags.\n const segmentPrefetch: SegmentPrefetch = {\n buildId,\n rsc,\n loading,\n isPartial: await isPartialRSCData(rsc, clientModules),\n }\n // Since all we're doing is decoding and re-encoding a cached prerender, if\n // it takes longer than a microtask, it must because of hanging promises\n // caused by dynamic data. Abort the stream at the end of the current task.\n const abortController = new AbortController()\n waitAtLeastOneReactRenderTask().then(() => abortController.abort())\n const { prelude: segmentStream } = await prerender(\n segmentPrefetch,\n clientModules,\n {\n filterStackFrame,\n signal: abortController.signal,\n onError: onSegmentPrerenderError,\n }\n )\n const segmentBuffer = await streamToBuffer(segmentStream)\n if (requestKey === ROOT_SEGMENT_REQUEST_KEY) {\n return ['/_index' as SegmentRequestKey, segmentBuffer]\n } else {\n return [requestKey, segmentBuffer]\n }\n}\n\nasync function isPartialRSCData(\n rsc: React.ReactNode,\n clientModules: ManifestNode\n): Promise {\n // We can determine if a segment contains only partial data if it takes longer\n // than a task to encode, because dynamic data is encoded as an infinite\n // promise. We must do this in a separate Flight prerender from the one that\n // actually generates the prefetch stream because we need to include\n // `isPartial` in the stream itself.\n let isPartial = false\n const abortController = new AbortController()\n waitAtLeastOneReactRenderTask().then(() => {\n // If we haven't yet finished the outer task, then it must be because we\n // accessed dynamic data.\n isPartial = true\n abortController.abort()\n })\n await prerender(rsc, clientModules, {\n filterStackFrame,\n signal: abortController.signal,\n onError() {},\n })\n return isPartial\n}\n\nfunction createUnclosingPrefetchStream(\n originalFlightStream: ReadableStream\n): ReadableStream {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n continue\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream.\n return\n }\n },\n })\n}\n"],"names":["createFromReadableStream","prerender","streamFromBuffer","streamToBuffer","waitAtLeastOneReactRenderTask","createSegmentRequestKeyPart","appendSegmentRequestKeyPart","ROOT_SEGMENT_REQUEST_KEY","HEAD_REQUEST_KEY","getDigestForWellKnownError","Phase","printDebugThrownValueForProspectiveRender","workAsyncStorage","filterStackFrame","process","env","NODE_ENV","require","filterStackFrameDEV","undefined","findSourceMapURL","findSourceMapURLDEV","onSegmentPrerenderError","error","digest","NEXT_DEBUG_BUILD","__NEXT_VERBOSE_LOGGING","workStore","getStore","route","SegmentCollection","collectSegmentData","isCacheComponentsEnabled","fullPageDataBuffer","staleTime","clientModules","serverConsumerManifest","resultMap","Map","abortController","AbortController","onCompletedProcessingRouteTree","abort","segmentTasks","prelude","treeStream","PrefetchTreeData","isClientParamParsingEnabled","signal","onError","treeBuffer","set","segmentPath","buffer","Promise","all","initialRSCPayload","createUnclosingPrefetchStream","buildId","b","flightDataPaths","f","length","console","flightRouterState","seedData","head","tree","collectSegmentDataImpl","push","then","renderSegmentPrefetch","treePrefetch","requestKey","slotMetadata","children","seedDataChildren","parallelRouteKey","childRoute","childSegment","childSeedData","childRequestKey","childTree","hasRuntimePrefetch","segment","name","paramType","paramKey","slots","isRootLayout","rsc","loading","segmentPrefetch","isPartial","isPartialRSCData","segmentStream","segmentBuffer","originalFlightStream","reader","getReader","ReadableStream","pull","controller","done","value","read","enqueue"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 19460, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/clone-response.ts"],"sourcesContent":["const noop = () => {}\n\nlet registry: FinalizationRegistry> | undefined\n\nif (globalThis.FinalizationRegistry) {\n registry = new FinalizationRegistry((weakRef: WeakRef) => {\n const stream = weakRef.deref()\n if (stream && !stream.locked) {\n stream.cancel('Response object has been garbage collected').then(noop)\n }\n })\n}\n\n/**\n * Clones a response by teeing the body so we can return two independent\n * ReadableStreams from it. This avoids the bug in the undici library around\n * response cloning.\n *\n * After cloning, the original response's body will be consumed and closed.\n *\n * @see https://github.com/vercel/next.js/pull/73274\n *\n * @param original - The original response to clone.\n * @returns A tuple containing two independent clones of the original response.\n */\nexport function cloneResponse(original: Response): [Response, Response] {\n // If the response has no body, then we can just return the original response\n // twice because it's immutable.\n if (!original.body) {\n return [original, original]\n }\n\n const [body1, body2] = original.body.tee()\n\n const cloned1 = new Response(body1, {\n status: original.status,\n statusText: original.statusText,\n headers: original.headers,\n })\n\n Object.defineProperty(cloned1, 'url', {\n value: original.url,\n // How the original response.url behaves\n configurable: true,\n enumerable: true,\n writable: false,\n })\n\n // The Fetch Standard allows users to skip consuming the response body by\n // relying on garbage collection to release connection resources.\n // https://github.com/nodejs/undici?tab=readme-ov-file#garbage-collection\n //\n // To cancel the stream you then need to cancel both resulting branches.\n // Teeing a stream will generally lock it for the duration, preventing other\n // readers from locking it.\n // https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/tee\n\n // cloned2 is stored in a react cache and cloned for subsequent requests.\n // It is the original request, and is is garbage collected by a\n // FinalizationRegistry in Undici, but since we're tee-ing the stream\n // ourselves, we need to cancel clone1's stream (the response returned from\n // our dedupe fetch) when clone1 is reclaimed, otherwise we leak memory.\n if (registry && cloned1.body) {\n registry.register(cloned1, new WeakRef(cloned1.body))\n }\n\n const cloned2 = new Response(body2, {\n status: original.status,\n statusText: original.statusText,\n headers: original.headers,\n })\n\n Object.defineProperty(cloned2, 'url', {\n value: original.url,\n // How the original response.url behaves\n configurable: true,\n enumerable: true,\n writable: false,\n })\n\n return [cloned1, cloned2]\n}\n"],"names":["noop","registry","globalThis","FinalizationRegistry","weakRef","stream","deref","locked","cancel","then","cloneResponse","original","body","body1","body2","tee","cloned1","Response","status","statusText","headers","Object","defineProperty","value","url","configurable","enumerable","writable","register","WeakRef","cloned2"],"mappings":";;;;AAAA,MAAMA,OAAO,KAAO;AAEpB,IAAIC;AAEJ,IAAIC,WAAWC,oBAAoB,EAAE;IACnCF,WAAW,IAAIE,qBAAqB,CAACC;QACnC,MAAMC,SAASD,QAAQE,KAAK;QAC5B,IAAID,UAAU,CAACA,OAAOE,MAAM,EAAE;YAC5BF,OAAOG,MAAM,CAAC,8CAA8CC,IAAI,CAACT;QACnE;IACF;AACF;AAcO,SAASU,cAAcC,QAAkB;IAC9C,6EAA6E;IAC7E,gCAAgC;IAChC,IAAI,CAACA,SAASC,IAAI,EAAE;QAClB,OAAO;YAACD;YAAUA;SAAS;IAC7B;IAEA,MAAM,CAACE,OAAOC,MAAM,GAAGH,SAASC,IAAI,CAACG,GAAG;IAExC,MAAMC,UAAU,IAAIC,SAASJ,OAAO;QAClCK,QAAQP,SAASO,MAAM;QACvBC,YAAYR,SAASQ,UAAU;QAC/BC,SAAST,SAASS,OAAO;IAC3B;IAEAC,OAAOC,cAAc,CAACN,SAAS,OAAO;QACpCO,OAAOZ,SAASa,GAAG;QACnB,wCAAwC;QACxCC,cAAc;QACdC,YAAY;QACZC,UAAU;IACZ;IAEA,yEAAyE;IACzE,iEAAiE;IACjE,yEAAyE;IACzE,EAAE;IACF,wEAAwE;IACxE,4EAA4E;IAC5E,2BAA2B;IAC3B,sEAAsE;IAEtE,yEAAyE;IACzE,+DAA+D;IAC/D,qEAAqE;IACrE,2EAA2E;IAC3E,wEAAwE;IACxE,IAAI1B,YAAYe,QAAQJ,IAAI,EAAE;QAC5BX,SAAS2B,QAAQ,CAACZ,SAAS,IAAIa,QAAQb,QAAQJ,IAAI;IACrD;IAEA,MAAMkB,UAAU,IAAIb,SAASH,OAAO;QAClCI,QAAQP,SAASO,MAAM;QACvBC,YAAYR,SAASQ,UAAU;QAC/BC,SAAST,SAASS,OAAO;IAC3B;IAEAC,OAAOC,cAAc,CAACQ,SAAS,OAAO;QACpCP,OAAOZ,SAASa,GAAG;QACnB,wCAAwC;QACxCC,cAAc;QACdC,YAAY;QACZC,UAAU;IACZ;IAEA,OAAO;QAACX;QAASc;KAAQ;AAC3B","ignoreList":[0]}}, - {"offset": {"line": 19533, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/dedupe-fetch.ts"],"sourcesContent":["/**\n * Based on https://github.com/facebook/react/blob/d4e78c42a94be027b4dc7ed2659a5fddfbf9bd4e/packages/react/src/ReactFetch.js\n */\nimport * as React from 'react'\nimport { cloneResponse } from './clone-response'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nconst simpleCacheKey = '[\"GET\",[],null,\"follow\",null,null,null,null]' // generateCacheKey(new Request('https://blank'));\n\n// Headers that should not affect deduplication\n// traceparent and tracestate are used for distributed tracing and should not affect cache keys\nconst headersToExcludeInCacheKey = new Set(['traceparent', 'tracestate'])\n\nfunction generateCacheKey(request: Request): string {\n // We pick the fields that goes into the key used to dedupe requests.\n // We don't include the `cache` field, because we end up using whatever\n // caching resulted from the first request.\n // Notably we currently don't consider non-standard (or future) options.\n // This might not be safe. TODO: warn for non-standard extensions differing.\n // IF YOU CHANGE THIS UPDATE THE simpleCacheKey ABOVE.\n\n const filteredHeaders = Array.from(request.headers.entries()).filter(\n ([key]) => !headersToExcludeInCacheKey.has(key.toLowerCase())\n )\n\n return JSON.stringify([\n request.method,\n filteredHeaders,\n request.mode,\n request.redirect,\n request.credentials,\n request.referrer,\n request.referrerPolicy,\n request.integrity,\n ])\n}\n\ntype CacheEntry = [\n key: string,\n promise: Promise,\n response: Response | null,\n]\n\nexport function createDedupeFetch(originalFetch: typeof fetch) {\n const getCacheEntries = React.cache(\n // eslint-disable-next-line @typescript-eslint/no-unused-vars -- url is the cache key\n (url: string): CacheEntry[] => []\n )\n\n return function dedupeFetch(\n resource: URL | RequestInfo,\n options?: RequestInit\n ): Promise {\n if (options && options.signal) {\n // If we're passed a signal, then we assume that\n // someone else controls the lifetime of this object and opts out of\n // caching. It's effectively the opt-out mechanism.\n // Ideally we should be able to check this on the Request but\n // it always gets initialized with its own signal so we don't\n // know if it's supposed to override - unless we also override the\n // Request constructor.\n return originalFetch(resource, options)\n }\n // Normalize the Request\n let url: string\n let cacheKey: string\n if (typeof resource === 'string' && !options) {\n // Fast path.\n cacheKey = simpleCacheKey\n url = resource\n } else {\n // Normalize the request.\n // if resource is not a string or a URL (its an instance of Request)\n // then do not instantiate a new Request but instead\n // reuse the request as to not disturb the body in the event it's a ReadableStream.\n const request =\n typeof resource === 'string' || resource instanceof URL\n ? new Request(resource, options)\n : resource\n if (\n (request.method !== 'GET' && request.method !== 'HEAD') ||\n request.keepalive\n ) {\n // We currently don't dedupe requests that might have side-effects. Those\n // have to be explicitly cached. We assume that the request doesn't have a\n // body if it's GET or HEAD.\n // keepalive gets treated the same as if you passed a custom cache signal.\n return originalFetch(resource, options)\n }\n cacheKey = generateCacheKey(request)\n url = request.url\n }\n\n const cacheEntries = getCacheEntries(url)\n for (let i = 0, j = cacheEntries.length; i < j; i += 1) {\n const [key, promise] = cacheEntries[i]\n if (key === cacheKey) {\n return promise.then(() => {\n const response = cacheEntries[i][2]\n if (!response) throw new InvariantError('No cached response')\n\n // We're cloning the response using this utility because there exists\n // a bug in the undici library around response cloning. See the\n // following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(response)\n cacheEntries[i][2] = cloned2\n return cloned1\n })\n }\n }\n\n // We pass the original arguments here in case normalizing the Request\n // doesn't include all the options in this environment.\n const promise = originalFetch(resource, options)\n const entry: CacheEntry = [cacheKey, promise, null]\n cacheEntries.push(entry)\n\n return promise.then((response) => {\n // We're cloning the response using this utility because there exists\n // a bug in the undici library around response cloning. See the\n // following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(response)\n entry[2] = cloned2\n return cloned1\n })\n }\n}\n"],"names":["React","cloneResponse","InvariantError","simpleCacheKey","headersToExcludeInCacheKey","Set","generateCacheKey","request","filteredHeaders","Array","from","headers","entries","filter","key","has","toLowerCase","JSON","stringify","method","mode","redirect","credentials","referrer","referrerPolicy","integrity","createDedupeFetch","originalFetch","getCacheEntries","cache","url","dedupeFetch","resource","options","signal","cacheKey","URL","Request","keepalive","cacheEntries","i","j","length","promise","then","response","cloned1","cloned2","entry","push"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 19653, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/batcher.ts"],"sourcesContent":["import type { SchedulerFn } from './scheduler'\n\nimport { DetachedPromise } from './detached-promise'\n\ntype CacheKeyFn = (\n key: K\n) => PromiseLike | C\n\ntype BatcherOptions = {\n cacheKeyFn?: CacheKeyFn\n schedulerFn?: SchedulerFn\n}\n\ntype WorkFnContext = {\n resolve: (value: V | PromiseLike) => void\n key: K\n}\n\ntype WorkFn = (context: WorkFnContext) => Promise\n\n/**\n * A wrapper for a function that will only allow one call to the function to\n * execute at a time.\n */\nexport class Batcher {\n private readonly pending = new Map>()\n\n protected constructor(\n private readonly cacheKeyFn?: CacheKeyFn,\n /**\n * A function that will be called to schedule the wrapped function to be\n * executed. This defaults to a function that will execute the function\n * immediately.\n */\n private readonly schedulerFn: SchedulerFn = (fn) => fn()\n ) {}\n\n /**\n * Creates a new instance of PendingWrapper. If the key extends a string or\n * number, the key will be used as the cache key. If the key is an object, a\n * cache key function must be provided.\n */\n public static create(\n options?: BatcherOptions\n ): Batcher\n public static create(\n options: BatcherOptions &\n Required, 'cacheKeyFn'>>\n ): Batcher\n public static create(\n options?: BatcherOptions\n ): Batcher {\n return new Batcher(options?.cacheKeyFn, options?.schedulerFn)\n }\n\n /**\n * Wraps a function in a promise that will be resolved or rejected only once\n * for a given key. This will allow multiple calls to the function to be\n * made, but only one will be executed at a time. The result of the first\n * call will be returned to all callers.\n *\n * @param key the key to use for the cache\n * @param fn the function to wrap\n * @returns a promise that resolves to the result of the function\n */\n public async batch(key: K, fn: WorkFn): Promise {\n const cacheKey = (this.cacheKeyFn ? await this.cacheKeyFn(key) : key) as C\n if (cacheKey === null) {\n return fn({ resolve: (value) => Promise.resolve(value), key })\n }\n\n const pending = this.pending.get(cacheKey)\n if (pending) return pending\n\n const { promise, resolve, reject } = new DetachedPromise()\n this.pending.set(cacheKey, promise)\n\n this.schedulerFn(async () => {\n try {\n const result = await fn({ resolve, key })\n\n // Resolving a promise multiple times is a no-op, so we can safely\n // resolve all pending promises with the same result.\n resolve(result)\n } catch (err) {\n reject(err)\n } finally {\n this.pending.delete(cacheKey)\n }\n })\n\n return promise\n }\n}\n"],"names":["DetachedPromise","Batcher","cacheKeyFn","schedulerFn","fn","pending","Map","create","options","batch","key","cacheKey","resolve","value","Promise","get","promise","reject","set","result","err","delete"],"mappings":";;;;AAEA,SAASA,eAAe,QAAQ,qBAAoB;;AAsB7C,MAAMC;IAGX,YACmBC,UAA6B,EAC9C;;;;KAIC,GACgBC,cAAiC,CAACC,KAAOA,IAAI,CAC9D;aAPiBF,UAAAA,GAAAA;aAMAC,WAAAA,GAAAA;aATFE,OAAAA,GAAU,IAAIC;IAU5B;IAcH,OAAcC,OACZC,OAA8B,EACZ;QAClB,OAAO,IAAIP,QAAiBO,WAAAA,OAAAA,KAAAA,IAAAA,QAASN,UAAU,EAAEM,WAAAA,OAAAA,KAAAA,IAAAA,QAASL,WAAW;IACvE;IAEA;;;;;;;;;GASC,GACD,MAAaM,MAAMC,GAAM,EAAEN,EAAgB,EAAc;QACvD,MAAMO,WAAY,IAAI,CAACT,UAAU,GAAG,MAAM,IAAI,CAACA,UAAU,CAACQ,OAAOA;QACjE,IAAIC,aAAa,MAAM;YACrB,OAAOP,GAAG;gBAAEQ,SAAS,CAACC,QAAUC,QAAQF,OAAO,CAACC;gBAAQH;YAAI;QAC9D;QAEA,MAAML,UAAU,IAAI,CAACA,OAAO,CAACU,GAAG,CAACJ;QACjC,IAAIN,SAAS,OAAOA;QAEpB,MAAM,EAAEW,OAAO,EAAEJ,OAAO,EAAEK,MAAM,EAAE,GAAG,IAAIjB,oLAAAA;QACzC,IAAI,CAACK,OAAO,CAACa,GAAG,CAACP,UAAUK;QAE3B,IAAI,CAACb,WAAW,CAAC;YACf,IAAI;gBACF,MAAMgB,SAAS,MAAMf,GAAG;oBAAEQ;oBAASF;gBAAI;gBAEvC,kEAAkE;gBAClE,qDAAqD;gBACrDE,QAAQO;YACV,EAAE,OAAOC,KAAK;gBACZH,OAAOG;YACT,SAAU;gBACR,IAAI,CAACf,OAAO,CAACgB,MAAM,CAACV;YACtB;QACF;QAEA,OAAOK;IACT;AACF","ignoreList":[0]}}, - {"offset": {"line": 19715, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/response-cache/types.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\nimport type RenderResult from '../render-result'\nimport type { CacheControl, Revalidate } from '../lib/cache-control'\nimport type { RouteKind } from '../route-kind'\n\nexport interface ResponseCacheBase {\n get(\n key: string | null,\n responseGenerator: ResponseGenerator,\n context: {\n isOnDemandRevalidate?: boolean\n isPrefetch?: boolean\n incrementalCache: IncrementalCache\n /**\n * This is a hint to the cache to help it determine what kind of route\n * this is so it knows where to look up the cache entry from. If not\n * provided it will test the filesystem to check.\n */\n routeKind: RouteKind\n\n /**\n * True if this is a fallback request.\n */\n isFallback?: boolean\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n }\n ): Promise\n}\n\n// The server components HMR cache might store other data as well in the future,\n// at which point this should be refactored to a discriminated union type.\nexport interface ServerComponentsHmrCache {\n get(key: string): CachedFetchData | undefined\n set(key: string, data: CachedFetchData): void\n}\n\nexport type CachedFetchData = {\n headers: Record\n body: string\n url: string\n status?: number\n}\n\nexport const enum CachedRouteKind {\n APP_PAGE = 'APP_PAGE',\n APP_ROUTE = 'APP_ROUTE',\n PAGES = 'PAGES',\n FETCH = 'FETCH',\n REDIRECT = 'REDIRECT',\n IMAGE = 'IMAGE',\n}\n\nexport interface CachedFetchValue {\n kind: CachedRouteKind.FETCH\n data: CachedFetchData\n // tags are only present with file-system-cache\n // fetch cache stores tags outside of cache entry\n tags?: string[]\n revalidate: number\n}\n\nexport interface CachedRedirectValue {\n kind: CachedRouteKind.REDIRECT\n props: Object\n}\n\nexport interface CachedAppPageValue {\n kind: CachedRouteKind.APP_PAGE\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n html: RenderResult\n rscData: Buffer | undefined\n status: number | undefined\n postponed: string | undefined\n headers: OutgoingHttpHeaders | undefined\n segmentData: Map | undefined\n}\n\nexport interface CachedPageValue {\n kind: CachedRouteKind.PAGES\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n html: RenderResult\n pageData: Object\n status: number | undefined\n headers: OutgoingHttpHeaders | undefined\n}\n\nexport interface CachedRouteValue {\n kind: CachedRouteKind.APP_ROUTE\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n body: Buffer\n status: number\n headers: OutgoingHttpHeaders\n}\n\nexport interface CachedImageValue {\n kind: CachedRouteKind.IMAGE\n etag: string\n upstreamEtag: string\n buffer: Buffer\n extension: string\n isMiss?: boolean\n isStale?: boolean\n}\n\nexport interface IncrementalCachedAppPageValue {\n kind: CachedRouteKind.APP_PAGE\n // this needs to be a string since the cache expects to store\n // the string value\n html: string\n rscData: Buffer | undefined\n headers: OutgoingHttpHeaders | undefined\n postponed: string | undefined\n status: number | undefined\n segmentData: Map | undefined\n}\n\nexport interface IncrementalCachedPageValue {\n kind: CachedRouteKind.PAGES\n // this needs to be a string since the cache expects to store\n // the string value\n html: string\n pageData: Object\n headers: OutgoingHttpHeaders | undefined\n status: number | undefined\n}\n\nexport interface IncrementalResponseCacheEntry {\n cacheControl?: CacheControl\n /**\n * timestamp in milliseconds to revalidate after\n */\n revalidateAfter?: Revalidate\n /**\n * `-1` here dictates a blocking revalidate should be used\n */\n isStale?: boolean | -1\n isMiss?: boolean\n value: Exclude | null\n}\n\nexport interface IncrementalFetchCacheEntry {\n /**\n * `-1` here dictates a blocking revalidate should be used\n */\n isStale?: boolean | -1\n value: CachedFetchValue\n}\n\nexport type IncrementalCacheEntry =\n | IncrementalResponseCacheEntry\n | IncrementalFetchCacheEntry\n\nexport type IncrementalCacheValue =\n | CachedRedirectValue\n | IncrementalCachedPageValue\n | IncrementalCachedAppPageValue\n | CachedImageValue\n | CachedFetchValue\n | CachedRouteValue\n\nexport type ResponseCacheValue =\n | CachedRedirectValue\n | CachedPageValue\n | CachedAppPageValue\n | CachedImageValue\n | CachedRouteValue\n\nexport type ResponseCacheEntry = {\n cacheControl?: CacheControl\n value: ResponseCacheValue | null\n isStale?: boolean | -1\n isMiss?: boolean\n}\n\n/**\n * @param hasResolved whether the responseGenerator has resolved it's promise\n * @param previousCacheEntry the previous cache entry if it exists or the current\n */\nexport type ResponseGenerator = (state: {\n hasResolved: boolean\n previousCacheEntry?: IncrementalResponseCacheEntry | null\n isRevalidating?: boolean\n span?: any\n\n /**\n * When true, this indicates that the response generator is being called in a\n * context where the response must be generated statically.\n *\n * CRITICAL: This should only currently be used when revalidating due to a\n * dynamic RSC request.\n */\n forceStaticRender?: boolean\n}) => Promise\n\nexport const enum IncrementalCacheKind {\n APP_PAGE = 'APP_PAGE',\n APP_ROUTE = 'APP_ROUTE',\n PAGES = 'PAGES',\n FETCH = 'FETCH',\n IMAGE = 'IMAGE',\n}\n\nexport interface GetIncrementalFetchCacheContext {\n kind: IncrementalCacheKind.FETCH\n revalidate?: Revalidate\n fetchUrl?: string\n fetchIdx?: number\n tags?: string[]\n softTags?: string[]\n}\n\nexport interface GetIncrementalResponseCacheContext {\n kind: Exclude\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n\n /**\n * True if this is a fallback request.\n */\n isFallback: boolean\n}\n\nexport interface SetIncrementalFetchCacheContext {\n fetchCache: true\n fetchUrl?: string\n fetchIdx?: number\n tags?: string[]\n isImplicitBuildTimeCache?: boolean\n}\n\nexport interface SetIncrementalResponseCacheContext {\n fetchCache?: false\n cacheControl?: CacheControl\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n\n /**\n * True if this is a fallback request.\n */\n isFallback?: boolean\n}\n\nexport interface IncrementalResponseCache {\n get(\n cacheKey: string,\n ctx: GetIncrementalResponseCacheContext\n ): Promise\n set(\n key: string,\n data: Exclude | null,\n ctx: SetIncrementalResponseCacheContext\n ): Promise\n}\n\nexport interface IncrementalCache extends IncrementalResponseCache {\n get(\n cacheKey: string,\n ctx: GetIncrementalFetchCacheContext\n ): Promise\n get(\n cacheKey: string,\n ctx: GetIncrementalResponseCacheContext\n ): Promise\n set(\n key: string,\n data: CachedFetchValue | null,\n ctx: SetIncrementalFetchCacheContext\n ): Promise\n set(\n key: string,\n data: Exclude | null,\n ctx: SetIncrementalResponseCacheContext\n ): Promise\n revalidateTag(\n tags: string | string[],\n durations?: { expire?: number }\n ): Promise\n}\n"],"names":["CachedRouteKind","IncrementalCacheKind"],"mappings":";;;;;;AA+CO,IAAWA,kBAAAA,WAAAA,GAAAA,SAAAA,eAAAA;;;;;;;WAAAA;MAOjB;AAmJM,IAAWC,uBAAAA,WAAAA,GAAAA,SAAAA,oBAAAA;;;;;;WAAAA;MAMjB","ignoreList":[0]}}, - {"offset": {"line": 19742, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/render-result.ts"],"sourcesContent":["import type { OutgoingHttpHeaders, ServerResponse } from 'http'\nimport type { CacheControl } from './lib/cache-control'\nimport type { FetchMetrics } from './base-http'\n\nimport {\n chainStreams,\n streamFromBuffer,\n streamFromString,\n streamToString,\n} from './stream-utils/node-web-streams-helper'\nimport { isAbortError, pipeToNodeResponse } from './pipe-readable'\nimport type { RenderResumeDataCache } from './resume-data-cache/resume-data-cache'\nimport { InvariantError } from '../shared/lib/invariant-error'\nimport type {\n HTML_CONTENT_TYPE_HEADER,\n JSON_CONTENT_TYPE_HEADER,\n TEXT_PLAIN_CONTENT_TYPE_HEADER,\n} from '../lib/constants'\nimport type { RSC_CONTENT_TYPE_HEADER } from '../client/components/app-router-headers'\n\ntype ContentTypeOption =\n | typeof RSC_CONTENT_TYPE_HEADER // For App Page RSC responses\n | typeof HTML_CONTENT_TYPE_HEADER // For App Page, Pages HTML responses\n | typeof JSON_CONTENT_TYPE_HEADER // For API routes, Next.js data requests\n | typeof TEXT_PLAIN_CONTENT_TYPE_HEADER // For simplified errors\n\nexport type AppPageRenderResultMetadata = {\n flightData?: Buffer\n cacheControl?: CacheControl\n staticBailoutInfo?: {\n stack?: string\n description?: string\n }\n\n /**\n * The postponed state if the render had postponed and needs to be resumed.\n */\n postponed?: string\n\n /**\n * The headers to set on the response that were added by the render.\n */\n headers?: OutgoingHttpHeaders\n statusCode?: number\n fetchTags?: string\n fetchMetrics?: FetchMetrics\n\n segmentData?: Map\n\n /**\n * In development, the resume data cache is warmed up before the render. This\n * is attached to the metadata so that it can be used during the render. When\n * prerendering, the filled resume data cache is also attached to the metadata\n * so that it can be used when prerendering matching fallback shells.\n */\n renderResumeDataCache?: RenderResumeDataCache\n}\n\nexport type PagesRenderResultMetadata = {\n pageData?: any\n cacheControl?: CacheControl\n assetQueryString?: string\n isNotFound?: boolean\n isRedirect?: boolean\n}\n\nexport type StaticRenderResultMetadata = {}\n\nexport type RenderResultMetadata = AppPageRenderResultMetadata &\n PagesRenderResultMetadata &\n StaticRenderResultMetadata\n\nexport type RenderResultResponse =\n | ReadableStream[]\n | ReadableStream\n | string\n | Buffer\n | null\n\nexport type RenderResultOptions<\n Metadata extends RenderResultMetadata = RenderResultMetadata,\n> = {\n contentType: ContentTypeOption | null\n waitUntil?: Promise\n metadata: Metadata\n}\n\nexport default class RenderResult<\n Metadata extends RenderResultMetadata = RenderResultMetadata,\n> {\n /**\n * The detected content type for the response. This is used to set the\n * `Content-Type` header.\n */\n public readonly contentType: ContentTypeOption | null\n\n /**\n * The metadata for the response. This is used to set the revalidation times\n * and other metadata.\n */\n public readonly metadata: Readonly\n\n /**\n * The response itself. This can be a string, a stream, or null. If it's a\n * string, then it's a static response. If it's a stream, then it's a\n * dynamic response. If it's null, then the response was not found or was\n * already sent.\n */\n private response: RenderResultResponse\n\n /**\n * A render result that represents an empty response. This is used to\n * represent a response that was not found or was already sent.\n */\n public static readonly EMPTY = new RenderResult(\n null,\n { metadata: {}, contentType: null }\n )\n\n /**\n * Creates a new RenderResult instance from a static response.\n *\n * @param value the static response value\n * @param contentType the content type of the response\n * @returns a new RenderResult instance\n */\n public static fromStatic(\n value: string | Buffer,\n contentType: ContentTypeOption\n ) {\n return new RenderResult(value, {\n metadata: {},\n contentType,\n })\n }\n\n private readonly waitUntil?: Promise\n\n constructor(\n response: RenderResultResponse,\n { contentType, waitUntil, metadata }: RenderResultOptions\n ) {\n this.response = response\n this.contentType = contentType\n this.metadata = metadata\n this.waitUntil = waitUntil\n }\n\n public assignMetadata(metadata: Metadata) {\n Object.assign(this.metadata, metadata)\n }\n\n /**\n * Returns true if the response is null. It can be null if the response was\n * not found or was already sent.\n */\n public get isNull(): boolean {\n return this.response === null\n }\n\n /**\n * Returns false if the response is a string. It can be a string if the page\n * was prerendered. If it's not, then it was generated dynamically.\n */\n public get isDynamic(): boolean {\n return typeof this.response !== 'string'\n }\n\n /**\n * Returns the response if it is a string. If the page was dynamic, this will\n * return a promise if the `stream` option is true, or it will throw an error.\n *\n * @param stream Whether or not to return a promise if the response is dynamic\n * @returns The response as a string\n */\n public toUnchunkedString(stream?: false): string\n public toUnchunkedString(stream: true): Promise\n public toUnchunkedString(stream = false): Promise | string {\n if (this.response === null) {\n // If the response is null, return an empty string. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return ''\n }\n\n if (typeof this.response !== 'string') {\n if (!stream) {\n throw new InvariantError(\n 'dynamic responses cannot be unchunked. This is a bug in Next.js'\n )\n }\n\n return streamToString(this.readable)\n }\n\n return this.response\n }\n\n /**\n * Returns a readable stream of the response.\n */\n private get readable(): ReadableStream {\n if (this.response === null) {\n // If the response is null, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return new ReadableStream({\n start(controller) {\n controller.close()\n },\n })\n }\n\n if (typeof this.response === 'string') {\n return streamFromString(this.response)\n }\n\n if (Buffer.isBuffer(this.response)) {\n return streamFromBuffer(this.response)\n }\n\n // If the response is an array of streams, then chain them together.\n if (Array.isArray(this.response)) {\n return chainStreams(...this.response)\n }\n\n return this.response\n }\n\n /**\n * Coerces the response to an array of streams. This will convert the response\n * to an array of streams if it is not already one.\n *\n * @returns An array of streams\n */\n private coerce(): ReadableStream[] {\n if (this.response === null) {\n // If the response is null, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return []\n }\n\n if (typeof this.response === 'string') {\n return [streamFromString(this.response)]\n } else if (Array.isArray(this.response)) {\n return this.response\n } else if (Buffer.isBuffer(this.response)) {\n return [streamFromBuffer(this.response)]\n } else {\n return [this.response]\n }\n }\n\n /**\n * Unshifts a new stream to the response. This will convert the response to an\n * array of streams if it is not already one and will add the new stream to\n * the start of the array. When this response is piped, all of the streams\n * will be piped one after the other.\n *\n * @param readable The new stream to unshift\n */\n public unshift(readable: ReadableStream): void {\n // Coerce the response to an array of streams.\n this.response = this.coerce()\n\n // Add the new stream to the start of the array.\n this.response.unshift(readable)\n }\n\n /**\n * Chains a new stream to the response. This will convert the response to an\n * array of streams if it is not already one and will add the new stream to\n * the end. When this response is piped, all of the streams will be piped\n * one after the other.\n *\n * @param readable The new stream to chain\n */\n public push(readable: ReadableStream): void {\n // Coerce the response to an array of streams.\n this.response = this.coerce()\n\n // Add the new stream to the end of the array.\n this.response.push(readable)\n }\n\n /**\n * Pipes the response to a writable stream. This will close/cancel the\n * writable stream if an error is encountered. If this doesn't throw, then\n * the writable stream will be closed or aborted.\n *\n * @param writable Writable stream to pipe the response to\n */\n public async pipeTo(writable: WritableStream): Promise {\n try {\n await this.readable.pipeTo(writable, {\n // We want to close the writable stream ourselves so that we can wait\n // for the waitUntil promise to resolve before closing it. If an error\n // is encountered, we'll abort the writable stream if we swallowed the\n // error.\n preventClose: true,\n })\n\n // If there is a waitUntil promise, wait for it to resolve before\n // closing the writable stream.\n if (this.waitUntil) await this.waitUntil\n\n // Close the writable stream.\n await writable.close()\n } catch (err) {\n // If this is an abort error, we should abort the writable stream (as we\n // took ownership of it when we started piping). We don't need to re-throw\n // because we handled the error.\n if (isAbortError(err)) {\n // Abort the writable stream if an error is encountered.\n await writable.abort(err)\n\n return\n }\n\n // We're not aborting the writer here as when this method throws it's not\n // clear as to how so the caller should assume it's their responsibility\n // to clean up the writer.\n throw err\n }\n }\n\n /**\n * Pipes the response to a node response. This will close/cancel the node\n * response if an error is encountered.\n *\n * @param res\n */\n public async pipeToNodeResponse(res: ServerResponse) {\n await pipeToNodeResponse(this.readable, res, this.waitUntil)\n }\n}\n"],"names":["chainStreams","streamFromBuffer","streamFromString","streamToString","isAbortError","pipeToNodeResponse","InvariantError","RenderResult","EMPTY","metadata","contentType","fromStatic","value","constructor","response","waitUntil","assignMetadata","Object","assign","isNull","isDynamic","toUnchunkedString","stream","readable","ReadableStream","start","controller","close","Buffer","isBuffer","Array","isArray","coerce","unshift","push","pipeTo","writable","preventClose","err","abort","res"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 19936, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/response-cache/utils.ts"],"sourcesContent":["import {\n CachedRouteKind,\n IncrementalCacheKind,\n type CachedAppPageValue,\n type CachedPageValue,\n type IncrementalResponseCacheEntry,\n type ResponseCacheEntry,\n} from './types'\n\nimport RenderResult from '../render-result'\nimport { RouteKind } from '../route-kind'\nimport { HTML_CONTENT_TYPE_HEADER } from '../../lib/constants'\n\nexport async function fromResponseCacheEntry(\n cacheEntry: ResponseCacheEntry\n): Promise {\n return {\n ...cacheEntry,\n value:\n cacheEntry.value?.kind === CachedRouteKind.PAGES\n ? {\n kind: CachedRouteKind.PAGES,\n html: await cacheEntry.value.html.toUnchunkedString(true),\n pageData: cacheEntry.value.pageData,\n headers: cacheEntry.value.headers,\n status: cacheEntry.value.status,\n }\n : cacheEntry.value?.kind === CachedRouteKind.APP_PAGE\n ? {\n kind: CachedRouteKind.APP_PAGE,\n html: await cacheEntry.value.html.toUnchunkedString(true),\n postponed: cacheEntry.value.postponed,\n rscData: cacheEntry.value.rscData,\n headers: cacheEntry.value.headers,\n status: cacheEntry.value.status,\n segmentData: cacheEntry.value.segmentData,\n }\n : cacheEntry.value,\n }\n}\n\nexport async function toResponseCacheEntry(\n response: IncrementalResponseCacheEntry | null\n): Promise {\n if (!response) return null\n\n return {\n isMiss: response.isMiss,\n isStale: response.isStale,\n cacheControl: response.cacheControl,\n value:\n response.value?.kind === CachedRouteKind.PAGES\n ? ({\n kind: CachedRouteKind.PAGES,\n html: RenderResult.fromStatic(\n response.value.html,\n HTML_CONTENT_TYPE_HEADER\n ),\n pageData: response.value.pageData,\n headers: response.value.headers,\n status: response.value.status,\n } satisfies CachedPageValue)\n : response.value?.kind === CachedRouteKind.APP_PAGE\n ? ({\n kind: CachedRouteKind.APP_PAGE,\n html: RenderResult.fromStatic(\n response.value.html,\n HTML_CONTENT_TYPE_HEADER\n ),\n rscData: response.value.rscData,\n headers: response.value.headers,\n status: response.value.status,\n postponed: response.value.postponed,\n segmentData: response.value.segmentData,\n } satisfies CachedAppPageValue)\n : response.value,\n }\n}\n\nexport function routeKindToIncrementalCacheKind(\n routeKind: RouteKind\n): Exclude {\n switch (routeKind) {\n case RouteKind.PAGES:\n return IncrementalCacheKind.PAGES\n case RouteKind.APP_PAGE:\n return IncrementalCacheKind.APP_PAGE\n case RouteKind.IMAGE:\n return IncrementalCacheKind.IMAGE\n case RouteKind.APP_ROUTE:\n return IncrementalCacheKind.APP_ROUTE\n case RouteKind.PAGES_API:\n // Pages Router API routes are not cached in the incremental cache.\n throw new Error(`Unexpected route kind ${routeKind}`)\n default:\n return routeKind satisfies never\n }\n}\n"],"names":["CachedRouteKind","IncrementalCacheKind","RenderResult","RouteKind","HTML_CONTENT_TYPE_HEADER","fromResponseCacheEntry","cacheEntry","value","kind","PAGES","html","toUnchunkedString","pageData","headers","status","APP_PAGE","postponed","rscData","segmentData","toResponseCacheEntry","response","isMiss","isStale","cacheControl","fromStatic","routeKindToIncrementalCacheKind","routeKind","IMAGE","APP_ROUTE","PAGES_API","Error"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 20022, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/response-cache/index.ts"],"sourcesContent":["import type {\n ResponseCacheEntry,\n ResponseGenerator,\n ResponseCacheBase,\n IncrementalResponseCacheEntry,\n IncrementalResponseCache,\n} from './types'\n\nimport { Batcher } from '../../lib/batcher'\nimport { LRUCache } from '../lib/lru-cache'\nimport { warnOnce } from '../../build/output/log'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport {\n fromResponseCacheEntry,\n routeKindToIncrementalCacheKind,\n toResponseCacheEntry,\n} from './utils'\nimport type { RouteKind } from '../route-kind'\n\n/**\n * Parses an environment variable as a positive integer, returning the fallback\n * if the value is missing, not a number, or not positive.\n */\nfunction parsePositiveInt(\n envValue: string | undefined,\n fallback: number\n): number {\n if (!envValue) return fallback\n const parsed = parseInt(envValue, 10)\n return Number.isFinite(parsed) && parsed > 0 ? parsed : fallback\n}\n\n/**\n * Default TTL (in milliseconds) for minimal mode response cache entries.\n * Used for cache hit validation as a fallback for providers that don't\n * send the x-invocation-id header yet.\n *\n * 10 seconds chosen because:\n * - Long enough to dedupe rapid successive requests (e.g., page + data)\n * - Short enough to not serve stale data across unrelated requests\n *\n * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_TTL` environment variable.\n */\nconst DEFAULT_TTL_MS = parsePositiveInt(\n process.env.NEXT_PRIVATE_RESPONSE_CACHE_TTL,\n 10_000\n)\n\n/**\n * Default maximum number of entries in the response cache.\n * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE` environment variable.\n */\nconst DEFAULT_MAX_SIZE = parsePositiveInt(\n process.env.NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE,\n 150\n)\n\n/**\n * Separator used in compound cache keys to join pathname and invocationID.\n * Using null byte (\\0) since it cannot appear in valid URL paths or UUIDs.\n */\nconst KEY_SEPARATOR = '\\0'\n\n/**\n * Sentinel value used for TTL-based cache entries (when invocationID is undefined).\n * Chosen to be a clearly reserved marker for internal cache keys.\n */\nconst TTL_SENTINEL = '__ttl_sentinel__'\n\n/**\n * Entry stored in the LRU cache.\n */\ntype CacheEntry = {\n entry: IncrementalResponseCacheEntry | null\n /**\n * TTL expiration timestamp in milliseconds. Used as a fallback for\n * cache hit validation when providers don't send x-invocation-id.\n * Memory pressure is managed by LRU eviction rather than timers.\n */\n expiresAt: number\n}\n\n/**\n * Creates a compound cache key from pathname and invocationID.\n */\nfunction createCacheKey(\n pathname: string,\n invocationID: string | undefined\n): string {\n return `${pathname}${KEY_SEPARATOR}${invocationID ?? TTL_SENTINEL}`\n}\n\n/**\n * Extracts the invocationID from a compound cache key.\n * Returns undefined if the key used TTL_SENTINEL.\n */\nfunction extractInvocationID(compoundKey: string): string | undefined {\n const separatorIndex = compoundKey.lastIndexOf(KEY_SEPARATOR)\n if (separatorIndex === -1) return undefined\n\n const invocationID = compoundKey.slice(separatorIndex + 1)\n return invocationID === TTL_SENTINEL ? undefined : invocationID\n}\n\nexport * from './types'\n\nexport default class ResponseCache implements ResponseCacheBase {\n private readonly getBatcher = Batcher.create<\n { key: string; isOnDemandRevalidate: boolean },\n IncrementalResponseCacheEntry | null,\n string\n >({\n // Ensure on-demand revalidate doesn't block normal requests, it should be\n // safe to run an on-demand revalidate for the same key as a normal request.\n cacheKeyFn: ({ key, isOnDemandRevalidate }) =>\n `${key}-${isOnDemandRevalidate ? '1' : '0'}`,\n // We wait to do any async work until after we've added our promise to\n // `pendingResponses` to ensure that any any other calls will reuse the\n // same promise until we've fully finished our work.\n schedulerFn: scheduleOnNextTick,\n })\n\n private readonly revalidateBatcher = Batcher.create<\n string,\n IncrementalResponseCacheEntry | null\n >({\n // We wait to do any async work until after we've added our promise to\n // `pendingResponses` to ensure that any any other calls will reuse the\n // same promise until we've fully finished our work.\n schedulerFn: scheduleOnNextTick,\n })\n\n /**\n * LRU cache for minimal mode using compound keys (pathname + invocationID).\n * This allows multiple invocations to cache the same pathname without\n * overwriting each other's entries.\n */\n private readonly cache: LRUCache\n\n /**\n * Set of invocation IDs that have had cache entries evicted.\n * Used to detect when the cache size may be too small.\n * Bounded to prevent memory growth.\n */\n private readonly evictedInvocationIDs: Set = new Set()\n\n /**\n * The configured max size, stored for logging.\n */\n private readonly maxSize: number\n\n /**\n * The configured TTL for cache entries in milliseconds.\n */\n private readonly ttl: number\n\n // we don't use minimal_mode name here as this.minimal_mode is\n // statically replace for server runtimes but we need it to\n // be dynamic here\n private minimal_mode?: boolean\n\n constructor(\n minimal_mode: boolean,\n maxSize: number = DEFAULT_MAX_SIZE,\n ttl: number = DEFAULT_TTL_MS\n ) {\n this.minimal_mode = minimal_mode\n this.maxSize = maxSize\n this.ttl = ttl\n\n // Create the LRU cache with eviction tracking\n this.cache = new LRUCache(maxSize, undefined, (compoundKey) => {\n const invocationID = extractInvocationID(compoundKey)\n if (invocationID) {\n // Bound to 100 entries to prevent unbounded memory growth.\n // FIFO eviction is acceptable here because:\n // 1. Invocations are short-lived (single request lifecycle), so older\n // invocations are unlikely to still be active after 100 newer ones\n // 2. This warning mechanism is best-effort for developer guidance—\n // missing occasional eviction warnings doesn't affect correctness\n // 3. If a long-running invocation is somehow evicted and then has\n // another cache entry evicted, it will simply be re-added\n if (this.evictedInvocationIDs.size >= 100) {\n const first = this.evictedInvocationIDs.values().next().value\n if (first) this.evictedInvocationIDs.delete(first)\n }\n this.evictedInvocationIDs.add(invocationID)\n }\n })\n }\n\n /**\n * Gets the response cache entry for the given key.\n *\n * @param key - The key to get the response cache entry for.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param context - The context for the get request.\n * @returns The response cache entry.\n */\n public async get(\n key: string | null,\n responseGenerator: ResponseGenerator,\n context: {\n routeKind: RouteKind\n isOnDemandRevalidate?: boolean\n isPrefetch?: boolean\n incrementalCache: IncrementalResponseCache\n isRoutePPREnabled?: boolean\n isFallback?: boolean\n waitUntil?: (prom: Promise) => void\n\n /**\n * The invocation ID from the infrastructure. Used to scope the\n * in-memory cache to a single revalidation request in minimal mode.\n */\n invocationID?: string\n }\n ): Promise {\n // If there is no key for the cache, we can't possibly look this up in the\n // cache so just return the result of the response generator.\n if (!key) {\n return responseGenerator({\n hasResolved: false,\n previousCacheEntry: null,\n })\n }\n\n // Check minimal mode cache before doing any other work.\n if (this.minimal_mode) {\n const cacheKey = createCacheKey(key, context.invocationID)\n const cachedItem = this.cache.get(cacheKey)\n\n if (cachedItem) {\n // With invocationID: exact match found - always a hit\n // With TTL mode: must check expiration\n if (context.invocationID !== undefined) {\n return toResponseCacheEntry(cachedItem.entry)\n }\n\n // TTL mode: check expiration\n const now = Date.now()\n if (cachedItem.expiresAt > now) {\n return toResponseCacheEntry(cachedItem.entry)\n }\n\n // TTL expired - clean up\n this.cache.remove(cacheKey)\n }\n\n // Warn if this invocation had entries evicted - indicates cache may be too small.\n if (\n context.invocationID &&\n this.evictedInvocationIDs.has(context.invocationID)\n ) {\n warnOnce(\n `Response cache entry was evicted for invocation ${context.invocationID}. ` +\n `Consider increasing NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE (current: ${this.maxSize}).`\n )\n }\n }\n\n const {\n incrementalCache,\n isOnDemandRevalidate = false,\n isFallback = false,\n isRoutePPREnabled = false,\n isPrefetch = false,\n waitUntil,\n routeKind,\n invocationID,\n } = context\n\n const response = await this.getBatcher.batch(\n { key, isOnDemandRevalidate },\n ({ resolve }) => {\n const promise = this.handleGet(\n key,\n responseGenerator,\n {\n incrementalCache,\n isOnDemandRevalidate,\n isFallback,\n isRoutePPREnabled,\n isPrefetch,\n routeKind,\n invocationID,\n },\n resolve\n )\n\n // We need to ensure background revalidates are passed to waitUntil.\n if (waitUntil) waitUntil(promise)\n\n return promise\n }\n )\n\n return toResponseCacheEntry(response)\n }\n\n /**\n * Handles the get request for the response cache.\n *\n * @param key - The key to get the response cache entry for.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param context - The context for the get request.\n * @param resolve - The resolve function to use to resolve the response cache entry.\n * @returns The response cache entry.\n */\n private async handleGet(\n key: string,\n responseGenerator: ResponseGenerator,\n context: {\n incrementalCache: IncrementalResponseCache\n isOnDemandRevalidate: boolean\n isFallback: boolean\n isRoutePPREnabled: boolean\n isPrefetch: boolean\n routeKind: RouteKind\n invocationID: string | undefined\n },\n resolve: (value: IncrementalResponseCacheEntry | null) => void\n ): Promise {\n let previousIncrementalCacheEntry: IncrementalResponseCacheEntry | null =\n null\n let resolved = false\n\n try {\n // Get the previous cache entry if not in minimal mode\n previousIncrementalCacheEntry = !this.minimal_mode\n ? await context.incrementalCache.get(key, {\n kind: routeKindToIncrementalCacheKind(context.routeKind),\n isRoutePPREnabled: context.isRoutePPREnabled,\n isFallback: context.isFallback,\n })\n : null\n\n if (previousIncrementalCacheEntry && !context.isOnDemandRevalidate) {\n resolve(previousIncrementalCacheEntry)\n resolved = true\n\n if (!previousIncrementalCacheEntry.isStale || context.isPrefetch) {\n // The cached value is still valid, so we don't need to update it yet.\n return previousIncrementalCacheEntry\n }\n }\n\n // Revalidate the cache entry\n const incrementalResponseCacheEntry = await this.revalidate(\n key,\n context.incrementalCache,\n context.isRoutePPREnabled,\n context.isFallback,\n responseGenerator,\n previousIncrementalCacheEntry,\n previousIncrementalCacheEntry !== null && !context.isOnDemandRevalidate,\n undefined,\n context.invocationID\n )\n\n // Handle null response\n if (!incrementalResponseCacheEntry) {\n // Remove the cache item if it was set so we don't use it again.\n if (this.minimal_mode) {\n const cacheKey = createCacheKey(key, context.invocationID)\n this.cache.remove(cacheKey)\n }\n return null\n }\n\n // Resolve for on-demand revalidation or if not already resolved\n if (context.isOnDemandRevalidate && !resolved) {\n return incrementalResponseCacheEntry\n }\n\n return incrementalResponseCacheEntry\n } catch (err) {\n // If we've already resolved the cache entry, we can't reject as we\n // already resolved the cache entry so log the error here.\n if (resolved) {\n console.error(err)\n return null\n }\n\n throw err\n }\n }\n\n /**\n * Revalidates the cache entry for the given key.\n *\n * @param key - The key to revalidate the cache entry for.\n * @param incrementalCache - The incremental cache to use to revalidate the cache entry.\n * @param isRoutePPREnabled - Whether the route is PPR enabled.\n * @param isFallback - Whether the route is a fallback.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param previousIncrementalCacheEntry - The previous cache entry to use to revalidate the cache entry.\n * @param hasResolved - Whether the response has been resolved.\n * @param waitUntil - Optional function to register background work.\n * @param invocationID - The invocation ID for cache key scoping.\n * @returns The revalidated cache entry.\n */\n public async revalidate(\n key: string,\n incrementalCache: IncrementalResponseCache,\n isRoutePPREnabled: boolean,\n isFallback: boolean,\n responseGenerator: ResponseGenerator,\n previousIncrementalCacheEntry: IncrementalResponseCacheEntry | null,\n hasResolved: boolean,\n waitUntil?: (prom: Promise) => void,\n invocationID?: string\n ) {\n return this.revalidateBatcher.batch(key, () => {\n const promise = this.handleRevalidate(\n key,\n incrementalCache,\n isRoutePPREnabled,\n isFallback,\n responseGenerator,\n previousIncrementalCacheEntry,\n hasResolved,\n invocationID\n )\n\n // We need to ensure background revalidates are passed to waitUntil.\n if (waitUntil) waitUntil(promise)\n\n return promise\n })\n }\n\n private async handleRevalidate(\n key: string,\n incrementalCache: IncrementalResponseCache,\n isRoutePPREnabled: boolean,\n isFallback: boolean,\n responseGenerator: ResponseGenerator,\n previousIncrementalCacheEntry: IncrementalResponseCacheEntry | null,\n hasResolved: boolean,\n invocationID: string | undefined\n ) {\n try {\n // Generate the response cache entry using the response generator.\n const responseCacheEntry = await responseGenerator({\n hasResolved,\n previousCacheEntry: previousIncrementalCacheEntry,\n isRevalidating: true,\n })\n if (!responseCacheEntry) {\n return null\n }\n\n // Convert the response cache entry to an incremental response cache entry.\n const incrementalResponseCacheEntry = await fromResponseCacheEntry({\n ...responseCacheEntry,\n isMiss: !previousIncrementalCacheEntry,\n })\n\n // We want to persist the result only if it has a cache control value\n // defined.\n if (incrementalResponseCacheEntry.cacheControl) {\n if (this.minimal_mode) {\n // Set TTL expiration for cache hit validation. Entries are validated\n // by invocationID when available, with TTL as a fallback for providers\n // that don't send x-invocation-id. Memory is managed by LRU eviction.\n const cacheKey = createCacheKey(key, invocationID)\n this.cache.set(cacheKey, {\n entry: incrementalResponseCacheEntry,\n expiresAt: Date.now() + this.ttl,\n })\n } else {\n await incrementalCache.set(key, incrementalResponseCacheEntry.value, {\n cacheControl: incrementalResponseCacheEntry.cacheControl,\n isRoutePPREnabled,\n isFallback,\n })\n }\n }\n\n return incrementalResponseCacheEntry\n } catch (err) {\n // When a path is erroring we automatically re-set the existing cache\n // with new revalidate and expire times to prevent non-stop retrying.\n if (previousIncrementalCacheEntry?.cacheControl) {\n const revalidate = Math.min(\n Math.max(\n previousIncrementalCacheEntry.cacheControl.revalidate || 3,\n 3\n ),\n 30\n )\n const expire =\n previousIncrementalCacheEntry.cacheControl.expire === undefined\n ? undefined\n : Math.max(\n revalidate + 3,\n previousIncrementalCacheEntry.cacheControl.expire\n )\n\n await incrementalCache.set(key, previousIncrementalCacheEntry.value, {\n cacheControl: { revalidate: revalidate, expire: expire },\n isRoutePPREnabled,\n isFallback,\n })\n }\n\n // We haven't resolved yet, so let's throw to indicate an error.\n throw err\n }\n }\n}\n"],"names":["Batcher","LRUCache","warnOnce","scheduleOnNextTick","fromResponseCacheEntry","routeKindToIncrementalCacheKind","toResponseCacheEntry","parsePositiveInt","envValue","fallback","parsed","parseInt","Number","isFinite","DEFAULT_TTL_MS","process","env","NEXT_PRIVATE_RESPONSE_CACHE_TTL","DEFAULT_MAX_SIZE","NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE","KEY_SEPARATOR","TTL_SENTINEL","createCacheKey","pathname","invocationID","extractInvocationID","compoundKey","separatorIndex","lastIndexOf","undefined","slice","ResponseCache","constructor","minimal_mode","maxSize","ttl","getBatcher","create","cacheKeyFn","key","isOnDemandRevalidate","schedulerFn","revalidateBatcher","evictedInvocationIDs","Set","cache","size","first","values","next","value","delete","add","get","responseGenerator","context","hasResolved","previousCacheEntry","cacheKey","cachedItem","entry","now","Date","expiresAt","remove","has","incrementalCache","isFallback","isRoutePPREnabled","isPrefetch","waitUntil","routeKind","response","batch","resolve","promise","handleGet","previousIncrementalCacheEntry","resolved","kind","isStale","incrementalResponseCacheEntry","revalidate","err","console","error","handleRevalidate","responseCacheEntry","isRevalidating","isMiss","cacheControl","set","Math","min","max","expire"],"mappings":";;;;AAQA,SAASA,OAAO,QAAQ,oBAAmB;AAC3C,SAASC,QAAQ,QAAQ,mBAAkB;AAC3C,SAASC,QAAQ,QAAQ,yBAAwB;AACjD,SAASC,kBAAkB,QAAQ,sBAAqB;AACxD,SACEC,sBAAsB,EACtBC,+BAA+B,EAC/BC,oBAAoB,QACf,UAAS;AAwFhB,cAAc,UAAS;;;;;;AArFvB;;;CAGC,GACD,SAASC,iBACPC,QAA4B,EAC5BC,QAAgB;IAEhB,IAAI,CAACD,UAAU,OAAOC;IACtB,MAAMC,SAASC,SAASH,UAAU;IAClC,OAAOI,OAAOC,QAAQ,CAACH,WAAWA,SAAS,IAAIA,SAASD;AAC1D;AAEA;;;;;;;;;;CAUC,GACD,MAAMK,iBAAiBP,iBACrBQ,QAAQC,GAAG,CAACC,+BAA+B,EAC3C;AAGF;;;CAGC,GACD,MAAMC,mBAAmBX,iBACvBQ,QAAQC,GAAG,CAACG,oCAAoC,EAChD;AAGF;;;CAGC,GACD,MAAMC,gBAAgB;AAEtB;;;CAGC,GACD,MAAMC,eAAe;AAerB;;CAEC,GACD,SAASC,eACPC,QAAgB,EAChBC,YAAgC;IAEhC,OAAO,GAAGD,WAAWH,gBAAgBI,gBAAgBH,cAAc;AACrE;AAEA;;;CAGC,GACD,SAASI,oBAAoBC,WAAmB;IAC9C,MAAMC,iBAAiBD,YAAYE,WAAW,CAACR;IAC/C,IAAIO,mBAAmB,CAAC,GAAG,OAAOE;IAElC,MAAML,eAAeE,YAAYI,KAAK,CAACH,iBAAiB;IACxD,OAAOH,iBAAiBH,eAAeQ,YAAYL;AACrD;;AAIe,MAAMO;IAuDnBC,YACEC,YAAqB,EACrBC,UAAkBhB,gBAAgB,EAClCiB,MAAcrB,cAAc,CAC5B;aA1DesB,UAAAA,GAAapC,gKAAAA,CAAQqC,MAAM,CAI1C;YACA,0EAA0E;YAC1E,4EAA4E;YAC5EC,YAAY,CAAC,EAAEC,GAAG,EAAEC,oBAAoB,EAAE,GACxC,GAAGD,IAAI,CAAC,EAAEC,uBAAuB,MAAM,KAAK;YAC9C,sEAAsE;YACtE,uEAAuE;YACvE,oDAAoD;YACpDC,aAAatC,6KAAAA;QACf;aAEiBuC,iBAAAA,GAAoB1C,gKAAAA,CAAQqC,MAAM,CAGjD;YACA,sEAAsE;YACtE,uEAAuE;YACvE,oDAAoD;YACpDI,aAAatC,6KAAAA;QACf;QASA;;;;GAIC,GAAA,IAAA,CACgBwC,oBAAAA,GAAoC,IAAIC;QAsBvD,IAAI,CAACX,YAAY,GAAGA;QACpB,IAAI,CAACC,OAAO,GAAGA;QACf,IAAI,CAACC,GAAG,GAAGA;QAEX,8CAA8C;QAC9C,IAAI,CAACU,KAAK,GAAG,IAAI5C,gLAAAA,CAASiC,SAASL,WAAW,CAACH;YAC7C,MAAMF,eAAeC,oBAAoBC;YACzC,IAAIF,cAAc;gBAChB,2DAA2D;gBAC3D,4CAA4C;gBAC5C,sEAAsE;gBACtE,sEAAsE;gBACtE,mEAAmE;gBACnE,qEAAqE;gBACrE,kEAAkE;gBAClE,6DAA6D;gBAC7D,IAAI,IAAI,CAACmB,oBAAoB,CAACG,IAAI,IAAI,KAAK;oBACzC,MAAMC,QAAQ,IAAI,CAACJ,oBAAoB,CAACK,MAAM,GAAGC,IAAI,GAAGC,KAAK;oBAC7D,IAAIH,OAAO,IAAI,CAACJ,oBAAoB,CAACQ,MAAM,CAACJ;gBAC9C;gBACA,IAAI,CAACJ,oBAAoB,CAACS,GAAG,CAAC5B;YAChC;QACF;IACF;IAEA;;;;;;;GAOC,GACD,MAAa6B,IACXd,GAAkB,EAClBe,iBAAoC,EACpCC,OAcC,EACmC;QACpC,0EAA0E;QAC1E,6DAA6D;QAC7D,IAAI,CAAChB,KAAK;YACR,OAAOe,kBAAkB;gBACvBE,aAAa;gBACbC,oBAAoB;YACtB;QACF;QAEA,wDAAwD;QACxD,IAAI,IAAI,CAACxB,YAAY,EAAE;YACrB,MAAMyB,WAAWpC,eAAeiB,KAAKgB,QAAQ/B,YAAY;YACzD,MAAMmC,aAAa,IAAI,CAACd,KAAK,CAACQ,GAAG,CAACK;YAElC,IAAIC,YAAY;gBACd,sDAAsD;gBACtD,uCAAuC;gBACvC,IAAIJ,QAAQ/B,YAAY,KAAKK,WAAW;oBACtC,WAAOvB,mMAAAA,EAAqBqD,WAAWC,KAAK;gBAC9C;gBAEA,6BAA6B;gBAC7B,MAAMC,MAAMC,KAAKD,GAAG;gBACpB,IAAIF,WAAWI,SAAS,GAAGF,KAAK;oBAC9B,OAAOvD,uMAAAA,EAAqBqD,WAAWC,KAAK;gBAC9C;gBAEA,yBAAyB;gBACzB,IAAI,CAACf,KAAK,CAACmB,MAAM,CAACN;YACpB;YAEA,kFAAkF;YAClF,IACEH,QAAQ/B,YAAY,IACpB,IAAI,CAACmB,oBAAoB,CAACsB,GAAG,CAACV,QAAQ/B,YAAY,GAClD;oBACAtB,yKAAAA,EACE,CAAC,gDAAgD,EAAEqD,QAAQ/B,YAAY,CAAC,EAAE,CAAC,GACzE,CAAC,mEAAmE,EAAE,IAAI,CAACU,OAAO,CAAC,EAAE,CAAC;YAE5F;QACF;QAEA,MAAM,EACJgC,gBAAgB,EAChB1B,uBAAuB,KAAK,EAC5B2B,aAAa,KAAK,EAClBC,oBAAoB,KAAK,EACzBC,aAAa,KAAK,EAClBC,SAAS,EACTC,SAAS,EACT/C,YAAY,EACb,GAAG+B;QAEJ,MAAMiB,WAAW,MAAM,IAAI,CAACpC,UAAU,CAACqC,KAAK,CAC1C;YAAElC;YAAKC;QAAqB,GAC5B,CAAC,EAAEkC,OAAO,EAAE;YACV,MAAMC,UAAU,IAAI,CAACC,SAAS,CAC5BrC,KACAe,mBACA;gBACEY;gBACA1B;gBACA2B;gBACAC;gBACAC;gBACAE;gBACA/C;YACF,GACAkD;YAGF,oEAAoE;YACpE,IAAIJ,WAAWA,UAAUK;YAEzB,OAAOA;QACT;QAGF,WAAOrE,mMAAAA,EAAqBkE;IAC9B;IAEA;;;;;;;;GAQC,GACD,MAAcI,UACZrC,GAAW,EACXe,iBAAoC,EACpCC,OAQC,EACDmB,OAA8D,EACf;QAC/C,IAAIG,gCACF;QACF,IAAIC,WAAW;QAEf,IAAI;YACF,sDAAsD;YACtDD,gCAAgC,CAAC,IAAI,CAAC5C,YAAY,GAC9C,MAAMsB,QAAQW,gBAAgB,CAACb,GAAG,CAACd,KAAK;gBACtCwC,UAAM1E,8MAAAA,EAAgCkD,QAAQgB,SAAS;gBACvDH,mBAAmBb,QAAQa,iBAAiB;gBAC5CD,YAAYZ,QAAQY,UAAU;YAChC,KACA;YAEJ,IAAIU,iCAAiC,CAACtB,QAAQf,oBAAoB,EAAE;gBAClEkC,QAAQG;gBACRC,WAAW;gBAEX,IAAI,CAACD,8BAA8BG,OAAO,IAAIzB,QAAQc,UAAU,EAAE;oBAChE,sEAAsE;oBACtE,OAAOQ;gBACT;YACF;YAEA,6BAA6B;YAC7B,MAAMI,gCAAgC,MAAM,IAAI,CAACC,UAAU,CACzD3C,KACAgB,QAAQW,gBAAgB,EACxBX,QAAQa,iBAAiB,EACzBb,QAAQY,UAAU,EAClBb,mBACAuB,+BACAA,kCAAkC,QAAQ,CAACtB,QAAQf,oBAAoB,EACvEX,WACA0B,QAAQ/B,YAAY;YAGtB,uBAAuB;YACvB,IAAI,CAACyD,+BAA+B;gBAClC,gEAAgE;gBAChE,IAAI,IAAI,CAAChD,YAAY,EAAE;oBACrB,MAAMyB,WAAWpC,eAAeiB,KAAKgB,QAAQ/B,YAAY;oBACzD,IAAI,CAACqB,KAAK,CAACmB,MAAM,CAACN;gBACpB;gBACA,OAAO;YACT;YAEA,gEAAgE;YAChE,IAAIH,QAAQf,oBAAoB,IAAI,CAACsC,UAAU;gBAC7C,OAAOG;YACT;YAEA,OAAOA;QACT,EAAE,OAAOE,KAAK;YACZ,mEAAmE;YACnE,0DAA0D;YAC1D,IAAIL,UAAU;gBACZM,QAAQC,KAAK,CAACF;gBACd,OAAO;YACT;YAEA,MAAMA;QACR;IACF;IAEA;;;;;;;;;;;;;GAaC,GACD,MAAaD,WACX3C,GAAW,EACX2B,gBAA0C,EAC1CE,iBAA0B,EAC1BD,UAAmB,EACnBb,iBAAoC,EACpCuB,6BAAmE,EACnErB,WAAoB,EACpBc,SAAwC,EACxC9C,YAAqB,EACrB;QACA,OAAO,IAAI,CAACkB,iBAAiB,CAAC+B,KAAK,CAAClC,KAAK;YACvC,MAAMoC,UAAU,IAAI,CAACW,gBAAgB,CACnC/C,KACA2B,kBACAE,mBACAD,YACAb,mBACAuB,+BACArB,aACAhC;YAGF,oEAAoE;YACpE,IAAI8C,WAAWA,UAAUK;YAEzB,OAAOA;QACT;IACF;IAEA,MAAcW,iBACZ/C,GAAW,EACX2B,gBAA0C,EAC1CE,iBAA0B,EAC1BD,UAAmB,EACnBb,iBAAoC,EACpCuB,6BAAmE,EACnErB,WAAoB,EACpBhC,YAAgC,EAChC;QACA,IAAI;YACF,kEAAkE;YAClE,MAAM+D,qBAAqB,MAAMjC,kBAAkB;gBACjDE;gBACAC,oBAAoBoB;gBACpBW,gBAAgB;YAClB;YACA,IAAI,CAACD,oBAAoB;gBACvB,OAAO;YACT;YAEA,2EAA2E;YAC3E,MAAMN,gCAAgC,MAAM7E,yMAAAA,EAAuB;gBACjE,GAAGmF,kBAAkB;gBACrBE,QAAQ,CAACZ;YACX;YAEA,qEAAqE;YACrE,WAAW;YACX,IAAII,8BAA8BS,YAAY,EAAE;gBAC9C,IAAI,IAAI,CAACzD,YAAY,EAAE;oBACrB,qEAAqE;oBACrE,uEAAuE;oBACvE,sEAAsE;oBACtE,MAAMyB,WAAWpC,eAAeiB,KAAKf;oBACrC,IAAI,CAACqB,KAAK,CAAC8C,GAAG,CAACjC,UAAU;wBACvBE,OAAOqB;wBACPlB,WAAWD,KAAKD,GAAG,KAAK,IAAI,CAAC1B,GAAG;oBAClC;gBACF,OAAO;oBACL,MAAM+B,iBAAiByB,GAAG,CAACpD,KAAK0C,8BAA8B/B,KAAK,EAAE;wBACnEwC,cAAcT,8BAA8BS,YAAY;wBACxDtB;wBACAD;oBACF;gBACF;YACF;YAEA,OAAOc;QACT,EAAE,OAAOE,KAAK;YACZ,qEAAqE;YACrE,qEAAqE;YACrE,IAAIN,iCAAAA,OAAAA,KAAAA,IAAAA,8BAA+Ba,YAAY,EAAE;gBAC/C,MAAMR,aAAaU,KAAKC,GAAG,CACzBD,KAAKE,GAAG,CACNjB,8BAA8Ba,YAAY,CAACR,UAAU,IAAI,GACzD,IAEF;gBAEF,MAAMa,SACJlB,8BAA8Ba,YAAY,CAACK,MAAM,KAAKlE,YAClDA,YACA+D,KAAKE,GAAG,CACNZ,aAAa,GACbL,8BAA8Ba,YAAY,CAACK,MAAM;gBAGzD,MAAM7B,iBAAiByB,GAAG,CAACpD,KAAKsC,8BAA8B3B,KAAK,EAAE;oBACnEwC,cAAc;wBAAER,YAAYA;wBAAYa,QAAQA;oBAAO;oBACvD3B;oBACAD;gBACF;YACF;YAEA,gEAAgE;YAChE,MAAMgB;QACR;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 20321, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/patch-fetch.ts"],"sourcesContent":["import type {\n WorkAsyncStorage,\n WorkStore,\n} from '../app-render/work-async-storage.external'\n\nimport { AppRenderSpan, NextNodeServerSpan } from './trace/constants'\nimport { getTracer, SpanKind } from './trace/tracer'\nimport {\n CACHE_ONE_YEAR,\n INFINITE_CACHE,\n NEXT_CACHE_TAG_MAX_ITEMS,\n NEXT_CACHE_TAG_MAX_LENGTH,\n} from '../../lib/constants'\nimport { markCurrentScopeAsDynamic } from '../app-render/dynamic-rendering'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport type { FetchMetric } from '../base-http'\nimport { createDedupeFetch } from './dedupe-fetch'\nimport {\n getCacheSignal,\n type RevalidateStore,\n type WorkUnitAsyncStorage,\n} from '../app-render/work-unit-async-storage.external'\nimport {\n CachedRouteKind,\n IncrementalCacheKind,\n type CachedFetchData,\n type ServerComponentsHmrCache,\n type SetIncrementalFetchCacheContext,\n} from '../response-cache'\nimport { cloneResponse } from './clone-response'\nimport type { IncrementalCache } from './incremental-cache'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nconst isEdgeRuntime = process.env.NEXT_RUNTIME === 'edge'\n\ntype Fetcher = typeof fetch\n\ntype PatchedFetcher = Fetcher & {\n readonly __nextPatched: true\n readonly __nextGetStaticStore: () => WorkAsyncStorage\n readonly _nextOriginalFetch: Fetcher\n}\n\nexport const NEXT_PATCH_SYMBOL = Symbol.for('next-patch')\n\nfunction isFetchPatched() {\n return (globalThis as Record)[NEXT_PATCH_SYMBOL] === true\n}\n\nexport function validateRevalidate(\n revalidateVal: unknown,\n route: string\n): undefined | number {\n try {\n let normalizedRevalidate: number | undefined = undefined\n\n if (revalidateVal === false) {\n normalizedRevalidate = INFINITE_CACHE\n } else if (\n typeof revalidateVal === 'number' &&\n !isNaN(revalidateVal) &&\n revalidateVal > -1\n ) {\n normalizedRevalidate = revalidateVal\n } else if (typeof revalidateVal !== 'undefined') {\n throw new Error(\n `Invalid revalidate value \"${revalidateVal}\" on \"${route}\", must be a non-negative number or false`\n )\n }\n return normalizedRevalidate\n } catch (err: any) {\n // handle client component error from attempting to check revalidate value\n if (err instanceof Error && err.message.includes('Invalid revalidate')) {\n throw err\n }\n return undefined\n }\n}\n\nexport function validateTags(tags: any[], description: string) {\n const validTags: string[] = []\n const invalidTags: Array<{\n tag: any\n reason: string\n }> = []\n\n for (let i = 0; i < tags.length; i++) {\n const tag = tags[i]\n\n if (typeof tag !== 'string') {\n invalidTags.push({ tag, reason: 'invalid type, must be a string' })\n } else if (tag.length > NEXT_CACHE_TAG_MAX_LENGTH) {\n invalidTags.push({\n tag,\n reason: `exceeded max length of ${NEXT_CACHE_TAG_MAX_LENGTH}`,\n })\n } else {\n validTags.push(tag)\n }\n\n if (validTags.length > NEXT_CACHE_TAG_MAX_ITEMS) {\n console.warn(\n `Warning: exceeded max tag count for ${description}, dropped tags:`,\n tags.slice(i).join(', ')\n )\n break\n }\n }\n\n if (invalidTags.length > 0) {\n console.warn(`Warning: invalid tags passed to ${description}: `)\n\n for (const { tag, reason } of invalidTags) {\n console.log(`tag: \"${tag}\" ${reason}`)\n }\n }\n return validTags\n}\n\nfunction trackFetchMetric(\n workStore: WorkStore,\n ctx: Omit\n) {\n if (!workStore.shouldTrackFetchMetrics) {\n return\n }\n\n workStore.fetchMetrics ??= []\n\n workStore.fetchMetrics.push({\n ...ctx,\n end: performance.timeOrigin + performance.now(),\n idx: workStore.nextFetchId || 0,\n })\n}\n\nasync function createCachedPrerenderResponse(\n res: Response,\n cacheKey: string,\n incrementalCacheContext: SetIncrementalFetchCacheContext | undefined,\n incrementalCache: IncrementalCache,\n revalidate: number,\n handleUnlock: () => Promise | void\n): Promise {\n // We are prerendering at build time or revalidate time with cacheComponents so we\n // need to buffer the response so we can guarantee it can be read in a\n // microtask.\n const bodyBuffer = await res.arrayBuffer()\n\n const fetchedData = {\n headers: Object.fromEntries(res.headers.entries()),\n body: Buffer.from(bodyBuffer).toString('base64'),\n status: res.status,\n url: res.url,\n }\n\n // We can skip setting the serverComponentsHmrCache because we aren't in dev\n // mode.\n\n if (incrementalCacheContext) {\n await incrementalCache.set(\n cacheKey,\n { kind: CachedRouteKind.FETCH, data: fetchedData, revalidate },\n incrementalCacheContext\n )\n }\n\n await handleUnlock()\n\n // We return a new Response to the caller.\n return new Response(bodyBuffer, {\n headers: res.headers,\n status: res.status,\n statusText: res.statusText,\n })\n}\n\nasync function createCachedDynamicResponse(\n workStore: WorkStore,\n res: Response,\n cacheKey: string,\n incrementalCacheContext: SetIncrementalFetchCacheContext | undefined,\n incrementalCache: IncrementalCache,\n serverComponentsHmrCache: ServerComponentsHmrCache | undefined,\n revalidate: number,\n input: RequestInfo | URL,\n handleUnlock: () => Promise | void\n): Promise {\n // We're cloning the response using this utility because there exists a bug in\n // the undici library around response cloning. See the following pull request\n // for more details: https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(res)\n\n // We are dynamically rendering including dev mode. We want to return the\n // response to the caller as soon as possible because it might stream over a\n // very long time.\n const cacheSetPromise = cloned1\n .arrayBuffer()\n .then(async (arrayBuffer) => {\n const bodyBuffer = Buffer.from(arrayBuffer)\n\n const fetchedData = {\n headers: Object.fromEntries(cloned1.headers.entries()),\n body: bodyBuffer.toString('base64'),\n status: cloned1.status,\n url: cloned1.url,\n }\n\n serverComponentsHmrCache?.set(cacheKey, fetchedData)\n\n if (incrementalCacheContext) {\n await incrementalCache.set(\n cacheKey,\n { kind: CachedRouteKind.FETCH, data: fetchedData, revalidate },\n incrementalCacheContext\n )\n }\n })\n .catch((error) => console.warn(`Failed to set fetch cache`, input, error))\n .finally(handleUnlock)\n\n const pendingRevalidateKey = `cache-set-${cacheKey}`\n const pendingRevalidates = (workStore.pendingRevalidates ??= {})\n\n let pendingRevalidatePromise = Promise.resolve()\n if (pendingRevalidateKey in pendingRevalidates) {\n // There is already a pending revalidate entry that we need to await to\n // avoid race conditions.\n pendingRevalidatePromise = pendingRevalidates[pendingRevalidateKey]\n }\n\n pendingRevalidates[pendingRevalidateKey] = pendingRevalidatePromise\n .then(() => cacheSetPromise)\n .finally(() => {\n // If the pending revalidate is not present in the store, then we have\n // nothing to delete.\n if (!pendingRevalidates?.[pendingRevalidateKey]) {\n return\n }\n\n delete pendingRevalidates[pendingRevalidateKey]\n })\n\n return cloned2\n}\n\ninterface PatchableModule {\n workAsyncStorage: WorkAsyncStorage\n workUnitAsyncStorage: WorkUnitAsyncStorage\n}\n\nexport function createPatchedFetcher(\n originFetch: Fetcher,\n { workAsyncStorage, workUnitAsyncStorage }: PatchableModule\n): PatchedFetcher {\n // Create the patched fetch function.\n const patched = async function fetch(\n input: RequestInfo | URL,\n init: RequestInit | undefined\n ): Promise {\n let url: URL | undefined\n try {\n url = new URL(input instanceof Request ? input.url : input)\n url.username = ''\n url.password = ''\n } catch {\n // Error caused by malformed URL should be handled by native fetch\n url = undefined\n }\n const fetchUrl = url?.href ?? ''\n const method = init?.method?.toUpperCase() || 'GET'\n\n // Do create a new span trace for internal fetches in the\n // non-verbose mode.\n const isInternal = (init?.next as any)?.internal === true\n const hideSpan = process.env.NEXT_OTEL_FETCH_DISABLED === '1'\n // We don't track fetch metrics for internal fetches\n // so it's not critical that we have a start time, as it won't be recorded.\n // This is to workaround a flaky issue where performance APIs might\n // not be available and will require follow-up investigation.\n const fetchStart: number | undefined = isInternal\n ? undefined\n : performance.timeOrigin + performance.now()\n\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n let cacheSignal = workUnitStore ? getCacheSignal(workUnitStore) : null\n if (cacheSignal) {\n cacheSignal.beginRead()\n }\n\n const result = getTracer().trace(\n isInternal ? NextNodeServerSpan.internalFetch : AppRenderSpan.fetch,\n {\n hideSpan,\n kind: SpanKind.CLIENT,\n spanName: ['fetch', method, fetchUrl].filter(Boolean).join(' '),\n attributes: {\n 'http.url': fetchUrl,\n 'http.method': method,\n 'net.peer.name': url?.hostname,\n 'net.peer.port': url?.port || undefined,\n },\n },\n async () => {\n // If this is an internal fetch, we should not do any special treatment.\n if (isInternal) {\n return originFetch(input, init)\n }\n\n // If the workStore is not available, we can't do any\n // special treatment of fetch, therefore fallback to the original\n // fetch implementation.\n if (!workStore) {\n return originFetch(input, init)\n }\n\n // We should also fallback to the original fetch implementation if we\n // are in draft mode, it does not constitute a static generation.\n if (workStore.isDraftMode) {\n return originFetch(input, init)\n }\n\n const isRequestInput =\n input &&\n typeof input === 'object' &&\n typeof (input as Request).method === 'string'\n\n const getRequestMeta = (field: string) => {\n // If request input is present but init is not, retrieve from input first.\n const value = (init as any)?.[field]\n return value || (isRequestInput ? (input as any)[field] : null)\n }\n\n let finalRevalidate: number | undefined = undefined\n const getNextField = (field: 'revalidate' | 'tags') => {\n return typeof init?.next?.[field] !== 'undefined'\n ? init?.next?.[field]\n : isRequestInput\n ? (input as any).next?.[field]\n : undefined\n }\n // RequestInit doesn't keep extra fields e.g. next so it's\n // only available if init is used separate\n const originalFetchRevalidate = getNextField('revalidate')\n let currentFetchRevalidate = originalFetchRevalidate\n const tags: string[] = validateTags(\n getNextField('tags') || [],\n `fetch ${input.toString()}`\n )\n\n let revalidateStore: RevalidateStore | undefined\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n // TODO: Stop accumulating tags in client prerender. (fallthrough)\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n revalidateStore = workUnitStore\n break\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n if (revalidateStore) {\n if (Array.isArray(tags)) {\n // Collect tags onto parent caches or parent prerenders.\n const collectedTags =\n revalidateStore.tags ?? (revalidateStore.tags = [])\n for (const tag of tags) {\n if (!collectedTags.includes(tag)) {\n collectedTags.push(tag)\n }\n }\n }\n }\n\n const implicitTags = workUnitStore?.implicitTags\n\n let pageFetchCacheMode = workStore.fetchCache\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'unstable-cache':\n // Inside unstable-cache we treat it the same as force-no-store on\n // the page.\n pageFetchCacheMode = 'force-no-store'\n break\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n const isUsingNoStore = !!workStore.isUnstableNoStore\n\n let currentFetchCacheConfig = getRequestMeta('cache')\n let cacheReason = ''\n let cacheWarning: string | undefined\n\n if (\n typeof currentFetchCacheConfig === 'string' &&\n typeof currentFetchRevalidate !== 'undefined'\n ) {\n // If the revalidate value conflicts with the cache value, we should warn the user and unset the conflicting values.\n const isConflictingRevalidate =\n // revalidate: 0 and cache: force-cache\n (currentFetchCacheConfig === 'force-cache' &&\n currentFetchRevalidate === 0) ||\n // revalidate: >0 or revalidate: false and cache: no-store\n (currentFetchCacheConfig === 'no-store' &&\n (currentFetchRevalidate > 0 || currentFetchRevalidate === false))\n\n if (isConflictingRevalidate) {\n cacheWarning = `Specified \"cache: ${currentFetchCacheConfig}\" and \"revalidate: ${currentFetchRevalidate}\", only one should be specified.`\n currentFetchCacheConfig = undefined\n currentFetchRevalidate = undefined\n }\n }\n\n const hasExplicitFetchCacheOptOut =\n // fetch config itself signals not to cache\n currentFetchCacheConfig === 'no-cache' ||\n currentFetchCacheConfig === 'no-store' ||\n // the fetch isn't explicitly caching and the segment level cache config signals not to cache\n // note: `pageFetchCacheMode` is also set by being in an unstable_cache context.\n pageFetchCacheMode === 'force-no-store' ||\n pageFetchCacheMode === 'only-no-store'\n\n // If no explicit fetch cache mode is set, but dynamic = `force-dynamic` is set,\n // we shouldn't consider caching the fetch. This is because the `dynamic` cache\n // is considered a \"top-level\" cache mode, whereas something like `fetchCache` is more\n // fine-grained. Top-level modes are responsible for setting reasonable defaults for the\n // other configurations.\n const noFetchConfigAndForceDynamic =\n !pageFetchCacheMode &&\n !currentFetchCacheConfig &&\n !currentFetchRevalidate &&\n workStore.forceDynamic\n\n if (\n // force-cache was specified without a revalidate value. We set the revalidate value to false\n // which will signal the cache to not revalidate\n currentFetchCacheConfig === 'force-cache' &&\n typeof currentFetchRevalidate === 'undefined'\n ) {\n currentFetchRevalidate = false\n } else if (\n hasExplicitFetchCacheOptOut ||\n noFetchConfigAndForceDynamic\n ) {\n currentFetchRevalidate = 0\n }\n\n if (\n currentFetchCacheConfig === 'no-cache' ||\n currentFetchCacheConfig === 'no-store'\n ) {\n cacheReason = `cache: ${currentFetchCacheConfig}`\n }\n\n finalRevalidate = validateRevalidate(\n currentFetchRevalidate,\n workStore.route\n )\n\n const _headers = getRequestMeta('headers')\n const initHeaders: Headers =\n typeof _headers?.get === 'function'\n ? _headers\n : new Headers(_headers || {})\n\n const hasUnCacheableHeader =\n initHeaders.get('authorization') || initHeaders.get('cookie')\n\n const isUnCacheableMethod = !['get', 'head'].includes(\n getRequestMeta('method')?.toLowerCase() || 'get'\n )\n\n /**\n * We automatically disable fetch caching under the following conditions:\n * - Fetch cache configs are not set. Specifically:\n * - A page fetch cache mode is not set (export const fetchCache=...)\n * - A fetch cache mode is not set in the fetch call (fetch(url, { cache: ... }))\n * or the fetch cache mode is set to 'default'\n * - A fetch revalidate value is not set in the fetch call (fetch(url, { revalidate: ... }))\n * - OR the fetch comes after a configuration that triggered dynamic rendering (e.g., reading cookies())\n * and the fetch was considered uncacheable (e.g., POST method or has authorization headers)\n */\n const hasNoExplicitCacheConfig =\n // eslint-disable-next-line eqeqeq\n pageFetchCacheMode == undefined &&\n // eslint-disable-next-line eqeqeq\n (currentFetchCacheConfig == undefined ||\n // when considering whether to opt into the default \"no-cache\" fetch semantics,\n // a \"default\" cache config should be treated the same as no cache config\n currentFetchCacheConfig === 'default') &&\n // eslint-disable-next-line eqeqeq\n currentFetchRevalidate == undefined\n\n let autoNoCache = Boolean(\n (hasUnCacheableHeader || isUnCacheableMethod) &&\n revalidateStore?.revalidate === 0\n )\n\n let isImplicitBuildTimeCache = false\n\n if (!autoNoCache && hasNoExplicitCacheConfig) {\n // We don't enable automatic no-cache behavior during build-time\n // prerendering so that we can still leverage the fetch cache between\n // export workers.\n if (workStore.isBuildTimePrerendering) {\n isImplicitBuildTimeCache = true\n } else {\n autoNoCache = true\n }\n }\n\n // If we have no cache config, and we're in Dynamic I/O prerendering,\n // it'll be a dynamic call. We don't have to issue that dynamic call.\n if (hasNoExplicitCacheConfig && workUnitStore !== undefined) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n // While we don't want to do caching in the client scope we know the\n // fetch will be dynamic for cacheComponents so we may as well avoid the\n // call here. (fallthrough)\n case 'prerender-client':\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n 'fetch()'\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n switch (pageFetchCacheMode) {\n case 'force-no-store': {\n cacheReason = 'fetchCache = force-no-store'\n break\n }\n case 'only-no-store': {\n if (\n currentFetchCacheConfig === 'force-cache' ||\n (typeof finalRevalidate !== 'undefined' && finalRevalidate > 0)\n ) {\n throw new Error(\n `cache: 'force-cache' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-no-store'`\n )\n }\n cacheReason = 'fetchCache = only-no-store'\n break\n }\n case 'only-cache': {\n if (currentFetchCacheConfig === 'no-store') {\n throw new Error(\n `cache: 'no-store' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-cache'`\n )\n }\n break\n }\n case 'force-cache': {\n if (\n typeof currentFetchRevalidate === 'undefined' ||\n currentFetchRevalidate === 0\n ) {\n cacheReason = 'fetchCache = force-cache'\n finalRevalidate = INFINITE_CACHE\n }\n break\n }\n case 'default-cache':\n case 'default-no-store':\n case 'auto':\n case undefined:\n // sometimes we won't match the above cases. the reason we don't move\n // everything to this switch is the use of autoNoCache which is not a fetchCacheMode\n // I suspect this could be unified with fetchCacheMode however in which case we could\n // simplify the switch case and ensure we have an exhaustive switch handling all modes\n break\n default:\n pageFetchCacheMode satisfies never\n }\n\n if (typeof finalRevalidate === 'undefined') {\n if (pageFetchCacheMode === 'default-cache' && !isUsingNoStore) {\n finalRevalidate = INFINITE_CACHE\n cacheReason = 'fetchCache = default-cache'\n } else if (pageFetchCacheMode === 'default-no-store') {\n finalRevalidate = 0\n cacheReason = 'fetchCache = default-no-store'\n } else if (isUsingNoStore) {\n finalRevalidate = 0\n cacheReason = 'noStore call'\n } else if (autoNoCache) {\n finalRevalidate = 0\n cacheReason = 'auto no cache'\n } else {\n // TODO: should we consider this case an invariant?\n cacheReason = 'auto cache'\n finalRevalidate = revalidateStore\n ? revalidateStore.revalidate\n : INFINITE_CACHE\n }\n } else if (!cacheReason) {\n cacheReason = `revalidate: ${finalRevalidate}`\n }\n\n if (\n // when force static is configured we don't bail from\n // `revalidate: 0` values\n !(workStore.forceStatic && finalRevalidate === 0) &&\n // we don't consider autoNoCache to switch to dynamic for ISR\n !autoNoCache &&\n // If the revalidate value isn't currently set or the value is less\n // than the current revalidate value, we should update the revalidate\n // value.\n revalidateStore &&\n finalRevalidate < revalidateStore.revalidate\n ) {\n // If we were setting the revalidate value to 0, we should try to\n // postpone instead first.\n if (finalRevalidate === 0) {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n 'fetch()'\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n markCurrentScopeAsDynamic(\n workStore,\n workUnitStore,\n `revalidate: 0 fetch ${input} ${workStore.route}`\n )\n }\n\n // We only want to set the revalidate store's revalidate time if it\n // was explicitly set for the fetch call, i.e.\n // originalFetchRevalidate.\n if (revalidateStore && originalFetchRevalidate === finalRevalidate) {\n revalidateStore.revalidate = finalRevalidate\n }\n }\n\n const isCacheableRevalidate =\n typeof finalRevalidate === 'number' && finalRevalidate > 0\n\n let cacheKey: string | undefined\n const { incrementalCache } = workStore\n let isHmrRefresh = false\n let serverComponentsHmrCache: ServerComponentsHmrCache | undefined\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'request':\n case 'cache':\n case 'private-cache':\n isHmrRefresh = workUnitStore.isHmrRefresh ?? false\n serverComponentsHmrCache = workUnitStore.serverComponentsHmrCache\n break\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n if (\n incrementalCache &&\n (isCacheableRevalidate || serverComponentsHmrCache)\n ) {\n try {\n cacheKey = await incrementalCache.generateCacheKey(\n fetchUrl,\n isRequestInput ? (input as RequestInit) : init\n )\n } catch (err) {\n console.error(`Failed to generate cache key for`, input)\n }\n }\n\n const fetchIdx = workStore.nextFetchId ?? 1\n workStore.nextFetchId = fetchIdx + 1\n\n let handleUnlock: () => Promise | void = () => {}\n\n const doOriginalFetch = async (\n isStale?: boolean,\n cacheReasonOverride?: string\n ) => {\n const requestInputFields = [\n 'cache',\n 'credentials',\n 'headers',\n 'integrity',\n 'keepalive',\n 'method',\n 'mode',\n 'redirect',\n 'referrer',\n 'referrerPolicy',\n 'window',\n 'duplex',\n\n // don't pass through signal when revalidating\n ...(isStale ? [] : ['signal']),\n ]\n\n if (isRequestInput) {\n const reqInput: Request = input as any\n const reqOptions: RequestInit = {\n body: (reqInput as any)._ogBody || reqInput.body,\n }\n\n for (const field of requestInputFields) {\n // @ts-expect-error custom fields\n reqOptions[field] = reqInput[field]\n }\n input = new Request(reqInput.url, reqOptions)\n } else if (init) {\n const { _ogBody, body, signal, ...otherInput } =\n init as RequestInit & { _ogBody?: any }\n init = {\n ...otherInput,\n body: _ogBody || body,\n signal: isStale ? undefined : signal,\n }\n }\n\n // add metadata to init without editing the original\n const clonedInit = {\n ...init,\n next: { ...init?.next, fetchType: 'origin', fetchIdx },\n }\n\n return originFetch(input, clonedInit)\n .then(async (res) => {\n if (!isStale && fetchStart) {\n trackFetchMetric(workStore, {\n start: fetchStart,\n url: fetchUrl,\n cacheReason: cacheReasonOverride || cacheReason,\n cacheStatus:\n finalRevalidate === 0 || cacheReasonOverride\n ? 'skip'\n : 'miss',\n cacheWarning,\n status: res.status,\n method: clonedInit.method || 'GET',\n })\n }\n if (\n res.status === 200 &&\n incrementalCache &&\n cacheKey &&\n (isCacheableRevalidate || serverComponentsHmrCache)\n ) {\n const normalizedRevalidate =\n finalRevalidate >= INFINITE_CACHE\n ? CACHE_ONE_YEAR\n : finalRevalidate\n\n const incrementalCacheConfig:\n | SetIncrementalFetchCacheContext\n | undefined = isCacheableRevalidate\n ? {\n fetchCache: true,\n fetchUrl,\n fetchIdx,\n tags,\n isImplicitBuildTimeCache,\n }\n : undefined\n\n switch (workUnitStore?.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n return createCachedPrerenderResponse(\n res,\n cacheKey,\n incrementalCacheConfig,\n incrementalCache,\n normalizedRevalidate,\n handleUnlock\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering &&\n workUnitStore.cacheSignal\n ) {\n // We're filling caches for a staged render,\n // so we need to wait for the response to finish instead of streaming.\n return createCachedPrerenderResponse(\n res,\n cacheKey,\n incrementalCacheConfig,\n incrementalCache,\n normalizedRevalidate,\n handleUnlock\n )\n }\n // fallthrough\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case undefined:\n return createCachedDynamicResponse(\n workStore,\n res,\n cacheKey,\n incrementalCacheConfig,\n incrementalCache,\n serverComponentsHmrCache,\n normalizedRevalidate,\n input,\n handleUnlock\n )\n default:\n workUnitStore satisfies never\n }\n }\n\n // we had response that we determined shouldn't be cached so we return it\n // and don't cache it. This also needs to unlock the cache lock we acquired.\n await handleUnlock()\n\n return res\n })\n .catch((error) => {\n handleUnlock()\n throw error\n })\n }\n\n let cacheReasonOverride\n let isForegroundRevalidate = false\n let isHmrRefreshCache = false\n\n if (cacheKey && incrementalCache) {\n let cachedFetchData: CachedFetchData | undefined\n\n if (isHmrRefresh && serverComponentsHmrCache) {\n cachedFetchData = serverComponentsHmrCache.get(cacheKey)\n isHmrRefreshCache = true\n }\n\n if (isCacheableRevalidate && !cachedFetchData) {\n handleUnlock = await incrementalCache.lock(cacheKey)\n const entry = workStore.isOnDemandRevalidate\n ? null\n : await incrementalCache.get(cacheKey, {\n kind: IncrementalCacheKind.FETCH,\n revalidate: finalRevalidate,\n fetchUrl,\n fetchIdx,\n tags,\n softTags: implicitTags?.tags,\n })\n\n if (hasNoExplicitCacheConfig && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n // We sometimes use the cache to dedupe fetches that do not\n // specify a cache configuration. In these cases we want to\n // make sure we still exclude them from prerenders if\n // cacheComponents is on so we introduce an artificial task boundary\n // here.\n await getTimeoutBoundary()\n break\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n if (entry) {\n await handleUnlock()\n } else {\n // in dev, incremental cache response will be null in case the browser adds `cache-control: no-cache` in the request headers\n // TODO: it seems like we also hit this after revalidates in dev?\n cacheReasonOverride = 'cache-control: no-cache (hard refresh)'\n }\n\n if (entry?.value && entry.value.kind === CachedRouteKind.FETCH) {\n // when stale and is revalidating we wait for fresh data\n // so the revalidated entry has the updated data\n if (workStore.isStaticGeneration && entry.isStale) {\n isForegroundRevalidate = true\n } else {\n if (entry.isStale) {\n workStore.pendingRevalidates ??= {}\n if (!workStore.pendingRevalidates[cacheKey]) {\n const pendingRevalidate = doOriginalFetch(true)\n .then(async (response) => ({\n body: await response.arrayBuffer(),\n headers: response.headers,\n status: response.status,\n statusText: response.statusText,\n }))\n .finally(() => {\n workStore.pendingRevalidates ??= {}\n delete workStore.pendingRevalidates[cacheKey || '']\n })\n\n // Attach the empty catch here so we don't get a \"unhandled\n // promise rejection\" warning.\n pendingRevalidate.catch(console.error)\n\n workStore.pendingRevalidates[cacheKey] = pendingRevalidate\n }\n }\n\n cachedFetchData = entry.value.data\n }\n }\n }\n\n if (cachedFetchData) {\n if (fetchStart) {\n trackFetchMetric(workStore, {\n start: fetchStart,\n url: fetchUrl,\n cacheReason,\n cacheStatus: isHmrRefreshCache ? 'hmr' : 'hit',\n cacheWarning,\n status: cachedFetchData.status || 200,\n method: init?.method || 'GET',\n })\n }\n\n const response = new Response(\n Buffer.from(cachedFetchData.body, 'base64'),\n {\n headers: cachedFetchData.headers,\n status: cachedFetchData.status,\n }\n )\n\n Object.defineProperty(response, 'url', {\n value: cachedFetchData.url,\n })\n\n return response\n }\n }\n\n if (\n (workStore.isStaticGeneration ||\n (process.env.NODE_ENV === 'development' &&\n process.env.__NEXT_CACHE_COMPONENTS &&\n workUnitStore &&\n // eslint-disable-next-line no-restricted-syntax\n workUnitStore.type === 'request' &&\n workUnitStore.stagedRendering)) &&\n init &&\n typeof init === 'object'\n ) {\n const { cache } = init\n\n // Delete `cache` property as Cloudflare Workers will throw an error\n if (isEdgeRuntime) delete init.cache\n\n if (cache === 'no-store') {\n // If enabled, we should bail out of static generation.\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n 'fetch()'\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n markCurrentScopeAsDynamic(\n workStore,\n workUnitStore,\n `no-store fetch ${input} ${workStore.route}`\n )\n }\n\n const hasNextConfig = 'next' in init\n const { next = {} } = init\n if (\n typeof next.revalidate === 'number' &&\n revalidateStore &&\n next.revalidate < revalidateStore.revalidate\n ) {\n if (next.revalidate === 0) {\n // If enabled, we should bail out of static generation.\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n 'fetch()'\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'prerender-legacy':\n case 'prerender-ppr':\n break\n default:\n workUnitStore satisfies never\n }\n }\n markCurrentScopeAsDynamic(\n workStore,\n workUnitStore,\n `revalidate: 0 fetch ${input} ${workStore.route}`\n )\n }\n\n if (!workStore.forceStatic || next.revalidate !== 0) {\n revalidateStore.revalidate = next.revalidate\n }\n }\n if (hasNextConfig) delete init.next\n }\n\n // if we are revalidating the whole page via time or on-demand and\n // the fetch cache entry is stale we should still de-dupe the\n // origin hit if it's a cache-able entry\n if (cacheKey && isForegroundRevalidate) {\n const pendingRevalidateKey = cacheKey\n workStore.pendingRevalidates ??= {}\n let pendingRevalidate =\n workStore.pendingRevalidates[pendingRevalidateKey]\n\n if (pendingRevalidate) {\n const revalidatedResult: {\n body: ArrayBuffer\n headers: Headers\n status: number\n statusText: string\n } = await pendingRevalidate\n return new Response(revalidatedResult.body, {\n headers: revalidatedResult.headers,\n status: revalidatedResult.status,\n statusText: revalidatedResult.statusText,\n })\n }\n\n // We used to just resolve the Response and clone it however for\n // static generation with cacheComponents we need the response to be able to\n // be resolved in a microtask and cloning the response will never have\n // a body that can resolve in a microtask in node (as observed through\n // experimentation) So instead we await the body and then when it is\n // available we construct manually cloned Response objects with the\n // body as an ArrayBuffer. This will be resolvable in a microtask\n // making it compatible with cacheComponents.\n const pendingResponse = doOriginalFetch(true, cacheReasonOverride)\n // We're cloning the response using this utility because there\n // exists a bug in the undici library around response cloning.\n // See the following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n .then(cloneResponse)\n\n pendingRevalidate = pendingResponse\n .then(async (responses) => {\n const response = responses[0]\n return {\n body: await response.arrayBuffer(),\n headers: response.headers,\n status: response.status,\n statusText: response.statusText,\n }\n })\n .finally(() => {\n // If the pending revalidate is not present in the store, then\n // we have nothing to delete.\n if (!workStore.pendingRevalidates?.[pendingRevalidateKey]) {\n return\n }\n\n delete workStore.pendingRevalidates[pendingRevalidateKey]\n })\n\n // Attach the empty catch here so we don't get a \"unhandled promise\n // rejection\" warning\n pendingRevalidate.catch(() => {})\n\n workStore.pendingRevalidates[pendingRevalidateKey] = pendingRevalidate\n\n return pendingResponse.then((responses) => responses[1])\n } else {\n return doOriginalFetch(false, cacheReasonOverride)\n }\n }\n )\n\n if (cacheSignal) {\n try {\n return await result\n } finally {\n if (cacheSignal) {\n cacheSignal.endRead()\n }\n }\n }\n return result\n }\n\n // Attach the necessary properties to the patched fetch function.\n // We don't use this to determine if the fetch function has been patched,\n // but for external consumers to determine if the fetch function has been\n // patched.\n patched.__nextPatched = true as const\n patched.__nextGetStaticStore = () => workAsyncStorage\n patched._nextOriginalFetch = originFetch\n ;(globalThis as Record)[NEXT_PATCH_SYMBOL] = true\n\n // Assign the function name also as a name property, so that it's preserved\n // even when mangling is enabled.\n Object.defineProperty(patched, 'name', { value: 'fetch', writable: false })\n\n return patched\n}\n\n// we patch fetch to collect cache information used for\n// determining if a page is static or not\nexport function patchFetch(options: PatchableModule) {\n // If we've already patched fetch, we should not patch it again.\n if (isFetchPatched()) return\n\n // Grab the original fetch function. We'll attach this so we can use it in\n // the patched fetch function.\n const original = createDedupeFetch(globalThis.fetch)\n\n // Set the global fetch to the patched fetch.\n globalThis.fetch = createPatchedFetcher(original, options)\n}\n\nlet currentTimeoutBoundary: null | Promise = null\nfunction getTimeoutBoundary() {\n if (!currentTimeoutBoundary) {\n currentTimeoutBoundary = new Promise((r) => {\n setTimeout(() => {\n currentTimeoutBoundary = null\n r()\n }, 0)\n })\n }\n return currentTimeoutBoundary\n}\n"],"names":["AppRenderSpan","NextNodeServerSpan","getTracer","SpanKind","CACHE_ONE_YEAR","INFINITE_CACHE","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","markCurrentScopeAsDynamic","makeHangingPromise","createDedupeFetch","getCacheSignal","CachedRouteKind","IncrementalCacheKind","cloneResponse","RenderStage","isEdgeRuntime","process","env","NEXT_RUNTIME","NEXT_PATCH_SYMBOL","Symbol","for","isFetchPatched","globalThis","validateRevalidate","revalidateVal","route","normalizedRevalidate","undefined","isNaN","Error","err","message","includes","validateTags","tags","description","validTags","invalidTags","i","length","tag","push","reason","console","warn","slice","join","log","trackFetchMetric","workStore","ctx","shouldTrackFetchMetrics","fetchMetrics","end","performance","timeOrigin","now","idx","nextFetchId","createCachedPrerenderResponse","res","cacheKey","incrementalCacheContext","incrementalCache","revalidate","handleUnlock","bodyBuffer","arrayBuffer","fetchedData","headers","Object","fromEntries","entries","body","Buffer","from","toString","status","url","set","kind","FETCH","data","Response","statusText","createCachedDynamicResponse","serverComponentsHmrCache","input","cloned1","cloned2","cacheSetPromise","then","catch","error","finally","pendingRevalidateKey","pendingRevalidates","pendingRevalidatePromise","Promise","resolve","createPatchedFetcher","originFetch","workAsyncStorage","workUnitAsyncStorage","patched","fetch","init","URL","Request","username","password","fetchUrl","href","method","toUpperCase","isInternal","next","internal","hideSpan","NEXT_OTEL_FETCH_DISABLED","fetchStart","getStore","workUnitStore","cacheSignal","beginRead","result","trace","internalFetch","CLIENT","spanName","filter","Boolean","attributes","hostname","port","getRequestMeta","isDraftMode","isRequestInput","field","value","finalRevalidate","getNextField","originalFetchRevalidate","currentFetchRevalidate","revalidateStore","type","Array","isArray","collectedTags","implicitTags","pageFetchCacheMode","fetchCache","isUsingNoStore","isUnstableNoStore","currentFetchCacheConfig","cacheReason","cacheWarning","isConflictingRevalidate","hasExplicitFetchCacheOptOut","noFetchConfigAndForceDynamic","forceDynamic","_headers","initHeaders","get","Headers","hasUnCacheableHeader","isUnCacheableMethod","toLowerCase","hasNoExplicitCacheConfig","autoNoCache","isImplicitBuildTimeCache","isBuildTimePrerendering","endRead","renderSignal","NODE_ENV","stagedRendering","waitForStage","Dynamic","forceStatic","isCacheableRevalidate","isHmrRefresh","generateCacheKey","fetchIdx","doOriginalFetch","isStale","cacheReasonOverride","requestInputFields","reqInput","reqOptions","_ogBody","signal","otherInput","clonedInit","fetchType","start","cacheStatus","incrementalCacheConfig","isForegroundRevalidate","isHmrRefreshCache","cachedFetchData","lock","entry","isOnDemandRevalidate","softTags","getTimeoutBoundary","isStaticGeneration","pendingRevalidate","response","defineProperty","__NEXT_CACHE_COMPONENTS","cache","hasNextConfig","revalidatedResult","pendingResponse","responses","__nextPatched","__nextGetStaticStore","_nextOriginalFetch","writable","patchFetch","options","original","currentTimeoutBoundary","r","setTimeout"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 21252, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 21258, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 21265, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/segment-explorer-node.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n useState,\n createContext,\n useContext,\n use,\n useMemo,\n useCallback,\n} from 'react'\nimport { useLayoutEffect } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\nimport { notFound } from '../../../client/components/not-found'\n\nexport type SegmentBoundaryType =\n | 'not-found'\n | 'error'\n | 'loading'\n | 'global-error'\n\nexport const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE =\n 'NEXT_DEVTOOLS_SIMULATED_ERROR'\n\nexport type SegmentNodeState = {\n type: string\n pagePath: string\n boundaryType: string | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}\n\nfunction SegmentTrieNode({\n type,\n pagePath,\n}: {\n type: string\n pagePath: string\n}): React.ReactNode {\n const { boundaryType, setBoundaryType } = useSegmentState()\n const nodeState: SegmentNodeState = useMemo(() => {\n return {\n type,\n pagePath,\n boundaryType,\n setBoundaryType,\n }\n }, [type, pagePath, boundaryType, setBoundaryType])\n\n // Use `useLayoutEffect` to ensure the state is updated during suspense.\n // `useEffect` won't work as the state is preserved during suspense.\n useLayoutEffect(() => {\n dispatcher.segmentExplorerNodeAdd(nodeState)\n return () => {\n dispatcher.segmentExplorerNodeRemove(nodeState)\n }\n }, [nodeState])\n\n return null\n}\n\nfunction NotFoundSegmentNode(): React.ReactNode {\n notFound()\n}\n\nfunction ErrorSegmentNode(): React.ReactNode {\n throw new Error(SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE)\n}\n\nconst forever = new Promise(() => {})\nfunction LoadingSegmentNode(): React.ReactNode {\n use(forever)\n return null\n}\n\nexport function SegmentViewStateNode({ page }: { page: string }) {\n useLayoutEffect(() => {\n dispatcher.segmentExplorerUpdateRouteState(page)\n return () => {\n dispatcher.segmentExplorerUpdateRouteState('')\n }\n }, [page])\n return null\n}\n\nexport function SegmentBoundaryTriggerNode() {\n const { boundaryType } = useSegmentState()\n let segmentNode: React.ReactNode = null\n if (boundaryType === 'loading') {\n segmentNode = \n } else if (boundaryType === 'not-found') {\n segmentNode = \n } else if (boundaryType === 'error') {\n segmentNode = \n }\n return segmentNode\n}\n\nexport function SegmentViewNode({\n type,\n pagePath,\n children,\n}: {\n type: string\n pagePath: string\n children?: ReactNode\n}): React.ReactNode {\n const segmentNode = (\n \n )\n\n return (\n <>\n {segmentNode}\n {children}\n \n )\n}\n\nconst SegmentStateContext = createContext<{\n boundaryType: SegmentBoundaryType | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}>({\n boundaryType: null,\n setBoundaryType: () => {},\n})\n\nexport function SegmentStateProvider({ children }: { children: ReactNode }) {\n const [boundaryType, setBoundaryType] = useState(\n null\n )\n\n const [errorBoundaryKey, setErrorBoundaryKey] = useState(0)\n const reloadBoundary = useCallback(\n () => setErrorBoundaryKey((prev) => prev + 1),\n []\n )\n\n const setBoundaryTypeAndReload = useCallback(\n (type: SegmentBoundaryType | null) => {\n if (type === null) {\n reloadBoundary()\n }\n setBoundaryType(type)\n },\n [reloadBoundary]\n )\n\n return (\n \n {children}\n \n )\n}\n\nexport function useSegmentState() {\n return useContext(SegmentStateContext)\n}\n"],"names":["useState","createContext","useContext","use","useMemo","useCallback","useLayoutEffect","dispatcher","notFound","SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE","SegmentTrieNode","type","pagePath","boundaryType","setBoundaryType","useSegmentState","nodeState","segmentExplorerNodeAdd","segmentExplorerNodeRemove","NotFoundSegmentNode","ErrorSegmentNode","Error","forever","Promise","LoadingSegmentNode","SegmentViewStateNode","page","segmentExplorerUpdateRouteState","SegmentBoundaryTriggerNode","segmentNode","SegmentViewNode","children","SegmentStateContext","SegmentStateProvider","errorBoundaryKey","setErrorBoundaryKey","reloadBoundary","prev","setBoundaryTypeAndReload","Provider","value"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 21273, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/entry-base.ts"],"sourcesContent":["// eslint-disable-next-line import/no-extraneous-dependencies\nexport {\n createTemporaryReferenceSet,\n renderToReadableStream,\n decodeReply,\n decodeAction,\n decodeFormState,\n} from 'react-server-dom-webpack/server'\n\n// eslint-disable-next-line import/no-extraneous-dependencies\nexport { prerender } from 'react-server-dom-webpack/static'\n\n// TODO: Just re-export `* as ReactServer`\nexport { captureOwnerStack, createElement, Fragment } from 'react'\n\nexport { default as LayoutRouter } from '../../client/components/layout-router'\nexport { default as RenderFromTemplateContext } from '../../client/components/render-from-template-context'\nexport { workAsyncStorage } from '../app-render/work-async-storage.external'\nexport { workUnitAsyncStorage } from './work-unit-async-storage.external'\nexport { actionAsyncStorage } from '../app-render/action-async-storage.external'\n\nexport { ClientPageRoot } from '../../client/components/client-page'\nexport { ClientSegmentRoot } from '../../client/components/client-segment'\nexport {\n createServerSearchParamsForServerPage,\n createPrerenderSearchParamsForClientPage,\n} from '../request/search-params'\nexport {\n createServerParamsForServerSegment,\n createPrerenderParamsForClientSegment,\n} from '../request/params'\nexport * as serverHooks from '../../client/components/hooks-server-context'\nexport { HTTPAccessFallbackBoundary } from '../../client/components/http-access-fallback/error-boundary'\nexport { createMetadataComponents } from '../../lib/metadata/metadata'\nexport { RootLayoutBoundary } from '../../lib/framework/boundary-components'\n\nexport { preloadStyle, preloadFont, preconnect } from './rsc/preloads'\nexport { Postpone } from './rsc/postpone'\nexport { taintObjectReference } from './rsc/taint'\nexport { collectSegmentData } from './collect-segment-data'\n\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { workUnitAsyncStorage } from './work-unit-async-storage.external'\nimport { patchFetch as _patchFetch } from '../lib/patch-fetch'\n\nlet SegmentViewNode: typeof import('../../next-devtools/userspace/app/segment-explorer-node').SegmentViewNode =\n () => null\nlet SegmentViewStateNode: typeof import('../../next-devtools/userspace/app/segment-explorer-node').SegmentViewStateNode =\n () => null\nif (process.env.NODE_ENV === 'development') {\n const mod =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n SegmentViewNode = mod.SegmentViewNode\n SegmentViewStateNode = mod.SegmentViewStateNode\n}\n\n// For hot-reloader\ndeclare global {\n var __next__clear_chunk_cache__: (() => void) | null | undefined\n var __turbopack_clear_chunk_cache__: () => void | null | undefined\n}\n// hot-reloader modules are not bundled so we need to inject `__next__clear_chunk_cache__`\n// into globalThis from this file which is bundled.\nif (process.env.TURBOPACK) {\n globalThis.__next__clear_chunk_cache__ = __turbopack_clear_chunk_cache__\n} else {\n // Webpack does not have chunks on the server\n globalThis.__next__clear_chunk_cache__ = null\n}\n\n// patchFetch makes use of APIs such as `React.unstable_postpone` which are only available\n// in the experimental channel of React, so export it from here so that it comes from the bundled runtime\nexport function patchFetch() {\n return _patchFetch({\n workAsyncStorage,\n workUnitAsyncStorage,\n })\n}\n\n// Development only\nexport { SegmentViewNode, SegmentViewStateNode }\n"],"names":["createTemporaryReferenceSet","renderToReadableStream","decodeReply","decodeAction","decodeFormState","prerender","captureOwnerStack","createElement","Fragment","default","LayoutRouter","RenderFromTemplateContext","workAsyncStorage","workUnitAsyncStorage","actionAsyncStorage","ClientPageRoot","ClientSegmentRoot","createServerSearchParamsForServerPage","createPrerenderSearchParamsForClientPage","createServerParamsForServerSegment","createPrerenderParamsForClientSegment","serverHooks","HTTPAccessFallbackBoundary","createMetadataComponents","RootLayoutBoundary","preloadStyle","preloadFont","preconnect","Postpone","taintObjectReference","collectSegmentData","patchFetch","_patchFetch","SegmentViewNode","SegmentViewStateNode","process","env","NODE_ENV","mod","require","TURBOPACK","globalThis","__next__clear_chunk_cache__","__turbopack_clear_chunk_cache__"],"mappings":";;;;;;;;AAAA,6DAA6D;AAC7D,SACEA,2BAA2B,EAC3BC,sBAAsB,EACtBC,WAAW,EACXC,YAAY,EACZC,eAAe,QACV,kCAAiC;AAExC,6DAA6D;AAC7D,SAASC,SAAS,QAAQ,kCAAiC;AAE3D,0CAA0C;AAC1C,SAASC,iBAAiB,EAAEC,aAAa,EAAEC,QAAQ,QAAQ,QAAO;AAElE,SAASC,WAAWC,YAAY,QAAQ,wCAAuC;AAC/E,SAASD,WAAWE,yBAAyB,QAAQ,uDAAsD;AAC3G,SAASC,gBAAgB,QAAQ,4CAA2C;AAC5E,SAASC,oBAAoB,QAAQ,qCAAoC;AACzE,SAASC,kBAAkB,QAAQ,8CAA6C;AAEhF,SAASC,cAAc,QAAQ,sCAAqC;AACpE,SAASC,iBAAiB,QAAQ,yCAAwC;AAC1E,SACEC,qCAAqC,EACrCC,wCAAwC,QACnC,2BAA0B;AACjC,SACEC,kCAAkC,EAClCC,qCAAqC,QAChC,oBAAmB;AAC1B,OAAO,KAAKC,WAAW,MAAM,+CAA8C;AAC3E,SAASC,0BAA0B,QAAQ,8DAA6D;AACxG,SAASC,wBAAwB,QAAQ,8BAA6B;AACtE,SAASC,kBAAkB,QAAQ,0CAAyC;AAE5E,SAASC,YAAY,EAAEC,WAAW,EAAEC,UAAU,QAAQ,iBAAgB;AACtE,SAASC,QAAQ,QAAQ,iBAAgB;AACzC,SAASC,oBAAoB,QAAQ,cAAa;AAClD,SAASC,kBAAkB,QAAQ,yBAAwB;AAI3D,SAASC,cAAcC,WAAW,QAAQ,qBAAoB;;;;;;;;;;;;;;;;;;;;;;;;AAE9D,IAAIC,kBACF,IAAM;AACR,IAAIC,uBACF,IAAM;AACR,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAe;IAC1C,MAAMC,MACJC,QAAQ;IACVN,kBAAkBK,IAAIL,eAAe;IACrCC,uBAAuBI,IAAIJ,oBAAoB;AACjD;AAOA,0FAA0F;AAC1F,mDAAmD;AACnD,IAAIC,QAAQC,GAAG,CAACI,SAAS,eAAE;IACzBC,WAAWC,2BAA2B,GAAGC;AAC3C,OAAO;;AAOA,SAASZ;IACd,WAAOC,oLAAAA,EAAY;0BACjBpB,uRAAAA;8BACAC,2SAAAA;IACF;AACF","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e2d1c5df._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e2d1c5df._.js deleted file mode 100644 index aa0bbed..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e2d1c5df._.js +++ /dev/null @@ -1,21426 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is no backslash - * escaping slashes in the path. Example: - * - `foo\/bar\/baz` -> `foo/bar/baz` - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "normalizePathSep", { - enumerable: true, - get: function() { - return normalizePathSep; - } -}); -function normalizePathSep(path) { - return path.replace(/\\/g, '/'); -} //# sourceMappingURL=normalize-path-sep.js.map -}), -"[project]/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is a leading slash. - * If there is not a leading slash, one is added, otherwise it is noop. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ensureLeadingSlash", { - enumerable: true, - get: function() { - return ensureLeadingSlash; - } -}); -function ensureLeadingSlash(path) { - return path.startsWith('/') ? path : `/${path}`; -} //# sourceMappingURL=ensure-leading-slash.js.map -}), -"[project]/node_modules/next/dist/shared/lib/segment.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DEFAULT_SEGMENT_KEY: null, - NOT_FOUND_SEGMENT_KEY: null, - PAGE_SEGMENT_KEY: null, - addSearchParamsIfPageSegment: null, - computeSelectedLayoutSegment: null, - getSegmentValue: null, - getSelectedLayoutSegmentPath: null, - isGroupSegment: null, - isParallelRouteSegment: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DEFAULT_SEGMENT_KEY: function() { - return DEFAULT_SEGMENT_KEY; - }, - NOT_FOUND_SEGMENT_KEY: function() { - return NOT_FOUND_SEGMENT_KEY; - }, - PAGE_SEGMENT_KEY: function() { - return PAGE_SEGMENT_KEY; - }, - addSearchParamsIfPageSegment: function() { - return addSearchParamsIfPageSegment; - }, - computeSelectedLayoutSegment: function() { - return computeSelectedLayoutSegment; - }, - getSegmentValue: function() { - return getSegmentValue; - }, - getSelectedLayoutSegmentPath: function() { - return getSelectedLayoutSegmentPath; - }, - isGroupSegment: function() { - return isGroupSegment; - }, - isParallelRouteSegment: function() { - return isParallelRouteSegment; - } -}); -function getSegmentValue(segment) { - return Array.isArray(segment) ? segment[1] : segment; -} -function isGroupSegment(segment) { - // Use array[0] for performant purpose - return segment[0] === '(' && segment.endsWith(')'); -} -function isParallelRouteSegment(segment) { - return segment.startsWith('@') && segment !== '@children'; -} -function addSearchParamsIfPageSegment(segment, searchParams) { - const isPageSegment = segment.includes(PAGE_SEGMENT_KEY); - if (isPageSegment) { - const stringifiedQuery = JSON.stringify(searchParams); - return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY; - } - return segment; -} -function computeSelectedLayoutSegment(segments, parallelRouteKey) { - if (!segments || segments.length === 0) { - return null; - } - // For 'children', use first segment; for other parallel routes, use last segment - const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1]; - // If the default slot is showing, return null since it's not technically "selected" (it's a fallback) - // Returning an internal value like `__DEFAULT__` would be confusing - return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment; -} -function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) { - let node; - if (first) { - // Use the provided parallel route key on the first parallel route - node = tree[1][parallelRouteKey]; - } else { - // After first parallel route prefer children, if there's no children pick the first parallel route. - const parallelRoutes = tree[1]; - node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]; - } - if (!node) return segmentPath; - const segment = node[0]; - let segmentValue = getSegmentValue(segment); - if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) { - return segmentPath; - } - segmentPath.push(segmentValue); - return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath); -} -const PAGE_SEGMENT_KEY = '__PAGE__'; -const DEFAULT_SEGMENT_KEY = '__DEFAULT__'; -const NOT_FOUND_SEGMENT_KEY = '/_not-found'; //# sourceMappingURL=segment.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - normalizeAppPath: null, - normalizeRscURL: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - normalizeAppPath: function() { - return normalizeAppPath; - }, - normalizeRscURL: function() { - return normalizeRscURL; - } -}); -const _ensureleadingslash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js [app-rsc] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-rsc] (ecmascript)"); -function normalizeAppPath(route) { - return (0, _ensureleadingslash.ensureLeadingSlash)(route.split('/').reduce((pathname, segment, index, segments)=>{ - // Empty segments are ignored. - if (!segment) { - return pathname; - } - // Groups are ignored. - if ((0, _segment.isGroupSegment)(segment)) { - return pathname; - } - // Parallel segments are ignored. - if (segment[0] === '@') { - return pathname; - } - // The last segment (if it's a leaf) should be ignored. - if ((segment === 'page' || segment === 'route') && index === segments.length - 1) { - return pathname; - } - return `${pathname}/${segment}`; - }, '')); -} -function normalizeRscURL(url) { - return url.replace(/\.rsc($|\?)/, '$1'); -} //# sourceMappingURL=app-paths.js.map -}), -"[project]/node_modules/next/dist/lib/is-app-route-route.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "isAppRouteRoute", { - enumerable: true, - get: function() { - return isAppRouteRoute; - } -}); -function isAppRouteRoute(route) { - return route.endsWith('/route'); -} //# sourceMappingURL=is-app-route-route.js.map -}), -"[project]/node_modules/next/dist/lib/metadata/is-metadata-route.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DEFAULT_METADATA_ROUTE_EXTENSIONS: null, - STATIC_METADATA_IMAGES: null, - getExtensionRegexString: null, - isMetadataPage: null, - isMetadataRoute: null, - isMetadataRouteFile: null, - isStaticMetadataFile: null, - isStaticMetadataRoute: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DEFAULT_METADATA_ROUTE_EXTENSIONS: function() { - return DEFAULT_METADATA_ROUTE_EXTENSIONS; - }, - STATIC_METADATA_IMAGES: function() { - return STATIC_METADATA_IMAGES; - }, - getExtensionRegexString: function() { - return getExtensionRegexString; - }, - isMetadataPage: function() { - return isMetadataPage; - }, - isMetadataRoute: function() { - return isMetadataRoute; - }, - isMetadataRouteFile: function() { - return isMetadataRouteFile; - }, - isStaticMetadataFile: function() { - return isStaticMetadataFile; - }, - isStaticMetadataRoute: function() { - return isStaticMetadataRoute; - } -}); -const _normalizepathsep = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js [app-rsc] (ecmascript)"); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -const _isapprouteroute = __turbopack_context__.r("[project]/node_modules/next/dist/lib/is-app-route-route.js [app-rsc] (ecmascript)"); -const STATIC_METADATA_IMAGES = { - icon: { - filename: 'icon', - extensions: [ - 'ico', - 'jpg', - 'jpeg', - 'png', - 'svg' - ] - }, - apple: { - filename: 'apple-icon', - extensions: [ - 'jpg', - 'jpeg', - 'png' - ] - }, - favicon: { - filename: 'favicon', - extensions: [ - 'ico' - ] - }, - openGraph: { - filename: 'opengraph-image', - extensions: [ - 'jpg', - 'jpeg', - 'png', - 'gif' - ] - }, - twitter: { - filename: 'twitter-image', - extensions: [ - 'jpg', - 'jpeg', - 'png', - 'gif' - ] - } -}; -const DEFAULT_METADATA_ROUTE_EXTENSIONS = [ - 'js', - 'jsx', - 'ts', - 'tsx' -]; -const getExtensionRegexString = (staticExtensions, dynamicExtensions)=>{ - let result; - // If there's no possible multi dynamic routes, will not match any []. files - if (!dynamicExtensions || dynamicExtensions.length === 0) { - result = `(\\.(?:${staticExtensions.join('|')}))`; - } else { - result = `(?:\\.(${staticExtensions.join('|')})|(\\.(${dynamicExtensions.join('|')})))`; - } - return result; -}; -function isStaticMetadataFile(appDirRelativePath) { - return isMetadataRouteFile(appDirRelativePath, [], true); -} -// Pre-compiled static regexes for common cases -const FAVICON_REGEX = /^[\\/]favicon\.ico$/; -const ROBOTS_TXT_REGEX = /^[\\/]robots\.txt$/; -const MANIFEST_JSON_REGEX = /^[\\/]manifest\.json$/; -const MANIFEST_WEBMANIFEST_REGEX = /^[\\/]manifest\.webmanifest$/; -const SITEMAP_XML_REGEX = /[\\/]sitemap\.xml$/; -// Cache for compiled regex patterns based on parameters -const compiledRegexCache = new Map(); -// Fast path checks for common metadata files -function fastPathCheck(normalizedPath) { - // Check favicon.ico first (most common) - if (FAVICON_REGEX.test(normalizedPath)) return true; - // Check other common static files - if (ROBOTS_TXT_REGEX.test(normalizedPath)) return true; - if (MANIFEST_JSON_REGEX.test(normalizedPath)) return true; - if (MANIFEST_WEBMANIFEST_REGEX.test(normalizedPath)) return true; - if (SITEMAP_XML_REGEX.test(normalizedPath)) return true; - // Quick negative check - if it doesn't contain any metadata keywords, skip - if (!normalizedPath.includes('robots') && !normalizedPath.includes('manifest') && !normalizedPath.includes('sitemap') && !normalizedPath.includes('icon') && !normalizedPath.includes('apple-icon') && !normalizedPath.includes('opengraph-image') && !normalizedPath.includes('twitter-image') && !normalizedPath.includes('favicon')) { - return false; - } - return null // Continue with full regex matching - ; -} -function getCompiledRegexes(pageExtensions, strictlyMatchExtensions) { - // Create cache key - const cacheKey = `${pageExtensions.join(',')}|${strictlyMatchExtensions}`; - const cached = compiledRegexCache.get(cacheKey); - if (cached) { - return cached; - } - // Pre-compute common strings - const trailingMatcher = strictlyMatchExtensions ? '$' : '?$'; - const variantsMatcher = '\\d?'; - const groupSuffix = strictlyMatchExtensions ? '' : '(-\\w{6})?'; - const suffixMatcher = variantsMatcher + groupSuffix; - // Pre-compute extension arrays to avoid repeated concatenation - const robotsExts = pageExtensions.length > 0 ? [ - ...pageExtensions, - 'txt' - ] : [ - 'txt' - ]; - const manifestExts = pageExtensions.length > 0 ? [ - ...pageExtensions, - 'webmanifest', - 'json' - ] : [ - 'webmanifest', - 'json' - ]; - const regexes = [ - new RegExp(`^[\\\\/]robots${getExtensionRegexString(robotsExts, null)}${trailingMatcher}`), - new RegExp(`^[\\\\/]manifest${getExtensionRegexString(manifestExts, null)}${trailingMatcher}`), - // FAVICON_REGEX removed - already handled in fastPathCheck - new RegExp(`[\\\\/]sitemap${getExtensionRegexString([ - 'xml' - ], pageExtensions)}${trailingMatcher}`), - new RegExp(`[\\\\/]icon${suffixMatcher}${getExtensionRegexString(STATIC_METADATA_IMAGES.icon.extensions, pageExtensions)}${trailingMatcher}`), - new RegExp(`[\\\\/]apple-icon${suffixMatcher}${getExtensionRegexString(STATIC_METADATA_IMAGES.apple.extensions, pageExtensions)}${trailingMatcher}`), - new RegExp(`[\\\\/]opengraph-image${suffixMatcher}${getExtensionRegexString(STATIC_METADATA_IMAGES.openGraph.extensions, pageExtensions)}${trailingMatcher}`), - new RegExp(`[\\\\/]twitter-image${suffixMatcher}${getExtensionRegexString(STATIC_METADATA_IMAGES.twitter.extensions, pageExtensions)}${trailingMatcher}`) - ]; - compiledRegexCache.set(cacheKey, regexes); - return regexes; -} -function isMetadataRouteFile(appDirRelativePath, pageExtensions, strictlyMatchExtensions) { - // Early exit for empty or obviously non-metadata paths - if (!appDirRelativePath || appDirRelativePath.length < 2) { - return false; - } - const normalizedPath = (0, _normalizepathsep.normalizePathSep)(appDirRelativePath); - // Fast path check for common cases - const fastResult = fastPathCheck(normalizedPath); - if (fastResult !== null) { - return fastResult; - } - // Get compiled regexes from cache - const regexes = getCompiledRegexes(pageExtensions, strictlyMatchExtensions); - // Use for loop instead of .some() for better performance - for(let i = 0; i < regexes.length; i++){ - if (regexes[i].test(normalizedPath)) { - return true; - } - } - return false; -} -function isStaticMetadataRoute(route) { - // extract ext with regex - const pathname = route.replace(/\/route$/, ''); - const matched = (0, _isapprouteroute.isAppRouteRoute)(route) && isMetadataRouteFile(pathname, [], true) && // These routes can either be built by static or dynamic entrypoints, - // so we assume they're dynamic - pathname !== '/robots.txt' && pathname !== '/manifest.webmanifest' && !pathname.endsWith('/sitemap.xml'); - return matched; -} -function isMetadataPage(page) { - const matched = !(0, _isapprouteroute.isAppRouteRoute)(page) && isMetadataRouteFile(page, [], false); - return matched; -} -function isMetadataRoute(route) { - let page = (0, _apppaths.normalizeAppPath)(route).replace(/^\/?app\//, '') // Remove the dynamic route id - .replace('/[__metadata_id__]', '') // Remove the /route suffix - .replace(/\/route$/, ''); - if (page[0] !== '/') page = '/' + page; - const matched = (0, _isapprouteroute.isAppRouteRoute)(route) && isMetadataRouteFile(page, [], false); - return matched; -} //# sourceMappingURL=is-metadata-route.js.map -}), -"[project]/node_modules/next/dist/shared/lib/isomorphic/path.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * This module is for next.js server internal usage of path module. - * It will use native path module for nodejs runtime. - * It will use path-browserify polyfill for edge runtime. - */ let path; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - path = __turbopack_context__.r("[externals]/path [external] (path, cjs)"); -} -module.exports = path; //# sourceMappingURL=path.js.map -}), -"[project]/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "normalizeLocalePath", { - enumerable: true, - get: function() { - return normalizeLocalePath; - } -}); -/** - * A cache of lowercased locales for each list of locales. This is stored as a - * WeakMap so if the locales are garbage collected, the cache entry will be - * removed as well. - */ const cache = new WeakMap(); -function normalizeLocalePath(pathname, locales) { - // If locales is undefined, return the pathname as is. - if (!locales) return { - pathname - }; - // Get the cached lowercased locales or create a new cache entry. - let lowercasedLocales = cache.get(locales); - if (!lowercasedLocales) { - lowercasedLocales = locales.map((locale)=>locale.toLowerCase()); - cache.set(locales, lowercasedLocales); - } - let detectedLocale; - // The first segment will be empty, because it has a leading `/`. If - // there is no further segment, there is no locale (or it's the default). - const segments = pathname.split('/', 2); - // If there's no second segment (ie, the pathname is just `/`), there's no - // locale. - if (!segments[1]) return { - pathname - }; - // The second segment will contain the locale part if any. - const segment = segments[1].toLowerCase(); - // See if the segment matches one of the locales. If it doesn't, there is - // no locale (or it's the default). - const index = lowercasedLocales.indexOf(segment); - if (index < 0) return { - pathname - }; - // Return the case-sensitive locale. - detectedLocale = locales[index]; - // Remove the `/${locale}` part of the pathname. - pathname = pathname.slice(detectedLocale.length + 1) || '/'; - return { - pathname, - detectedLocale - }; -} //# sourceMappingURL=normalize-locale-path.js.map -}), -"[project]/node_modules/next/dist/compiled/path-to-regexp/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/path-to-regexp") + "/"; - var e = {}; - (()=>{ - var n = e; - Object.defineProperty(n, "__esModule", { - value: true - }); - n.pathToRegexp = n.tokensToRegexp = n.regexpToFunction = n.match = n.tokensToFunction = n.compile = n.parse = void 0; - function lexer(e) { - var n = []; - var r = 0; - while(r < e.length){ - var t = e[r]; - if (t === "*" || t === "+" || t === "?") { - n.push({ - type: "MODIFIER", - index: r, - value: e[r++] - }); - continue; - } - if (t === "\\") { - n.push({ - type: "ESCAPED_CHAR", - index: r++, - value: e[r++] - }); - continue; - } - if (t === "{") { - n.push({ - type: "OPEN", - index: r, - value: e[r++] - }); - continue; - } - if (t === "}") { - n.push({ - type: "CLOSE", - index: r, - value: e[r++] - }); - continue; - } - if (t === ":") { - var a = ""; - var i = r + 1; - while(i < e.length){ - var o = e.charCodeAt(i); - if (o >= 48 && o <= 57 || o >= 65 && o <= 90 || o >= 97 && o <= 122 || o === 95) { - a += e[i++]; - continue; - } - break; - } - if (!a) throw new TypeError("Missing parameter name at ".concat(r)); - n.push({ - type: "NAME", - index: r, - value: a - }); - r = i; - continue; - } - if (t === "(") { - var c = 1; - var f = ""; - var i = r + 1; - if (e[i] === "?") { - throw new TypeError('Pattern cannot start with "?" at '.concat(i)); - } - while(i < e.length){ - if (e[i] === "\\") { - f += e[i++] + e[i++]; - continue; - } - if (e[i] === ")") { - c--; - if (c === 0) { - i++; - break; - } - } else if (e[i] === "(") { - c++; - if (e[i + 1] !== "?") { - throw new TypeError("Capturing groups are not allowed at ".concat(i)); - } - } - f += e[i++]; - } - if (c) throw new TypeError("Unbalanced pattern at ".concat(r)); - if (!f) throw new TypeError("Missing pattern at ".concat(r)); - n.push({ - type: "PATTERN", - index: r, - value: f - }); - r = i; - continue; - } - n.push({ - type: "CHAR", - index: r, - value: e[r++] - }); - } - n.push({ - type: "END", - index: r, - value: "" - }); - return n; - } - function parse(e, n) { - if (n === void 0) { - n = {}; - } - var r = lexer(e); - var t = n.prefixes, a = t === void 0 ? "./" : t, i = n.delimiter, o = i === void 0 ? "/#?" : i; - var c = []; - var f = 0; - var u = 0; - var p = ""; - var tryConsume = function(e) { - if (u < r.length && r[u].type === e) return r[u++].value; - }; - var mustConsume = function(e) { - var n = tryConsume(e); - if (n !== undefined) return n; - var t = r[u], a = t.type, i = t.index; - throw new TypeError("Unexpected ".concat(a, " at ").concat(i, ", expected ").concat(e)); - }; - var consumeText = function() { - var e = ""; - var n; - while(n = tryConsume("CHAR") || tryConsume("ESCAPED_CHAR")){ - e += n; - } - return e; - }; - var isSafe = function(e) { - for(var n = 0, r = o; n < r.length; n++){ - var t = r[n]; - if (e.indexOf(t) > -1) return true; - } - return false; - }; - var safePattern = function(e) { - var n = c[c.length - 1]; - var r = e || (n && typeof n === "string" ? n : ""); - if (n && !r) { - throw new TypeError('Must have text between two parameters, missing text after "'.concat(n.name, '"')); - } - if (!r || isSafe(r)) return "[^".concat(escapeString(o), "]+?"); - return "(?:(?!".concat(escapeString(r), ")[^").concat(escapeString(o), "])+?"); - }; - while(u < r.length){ - var v = tryConsume("CHAR"); - var s = tryConsume("NAME"); - var d = tryConsume("PATTERN"); - if (s || d) { - var g = v || ""; - if (a.indexOf(g) === -1) { - p += g; - g = ""; - } - if (p) { - c.push(p); - p = ""; - } - c.push({ - name: s || f++, - prefix: g, - suffix: "", - pattern: d || safePattern(g), - modifier: tryConsume("MODIFIER") || "" - }); - continue; - } - var x = v || tryConsume("ESCAPED_CHAR"); - if (x) { - p += x; - continue; - } - if (p) { - c.push(p); - p = ""; - } - var h = tryConsume("OPEN"); - if (h) { - var g = consumeText(); - var l = tryConsume("NAME") || ""; - var m = tryConsume("PATTERN") || ""; - var T = consumeText(); - mustConsume("CLOSE"); - c.push({ - name: l || (m ? f++ : ""), - pattern: l && !m ? safePattern(g) : m, - prefix: g, - suffix: T, - modifier: tryConsume("MODIFIER") || "" - }); - continue; - } - mustConsume("END"); - } - return c; - } - n.parse = parse; - function compile(e, n) { - return tokensToFunction(parse(e, n), n); - } - n.compile = compile; - function tokensToFunction(e, n) { - if (n === void 0) { - n = {}; - } - var r = flags(n); - var t = n.encode, a = t === void 0 ? function(e) { - return e; - } : t, i = n.validate, o = i === void 0 ? true : i; - var c = e.map(function(e) { - if (typeof e === "object") { - return new RegExp("^(?:".concat(e.pattern, ")$"), r); - } - }); - return function(n) { - var r = ""; - for(var t = 0; t < e.length; t++){ - var i = e[t]; - if (typeof i === "string") { - r += i; - continue; - } - var f = n ? n[i.name] : undefined; - var u = i.modifier === "?" || i.modifier === "*"; - var p = i.modifier === "*" || i.modifier === "+"; - if (Array.isArray(f)) { - if (!p) { - throw new TypeError('Expected "'.concat(i.name, '" to not repeat, but got an array')); - } - if (f.length === 0) { - if (u) continue; - throw new TypeError('Expected "'.concat(i.name, '" to not be empty')); - } - for(var v = 0; v < f.length; v++){ - var s = a(f[v], i); - if (o && !c[t].test(s)) { - throw new TypeError('Expected all "'.concat(i.name, '" to match "').concat(i.pattern, '", but got "').concat(s, '"')); - } - r += i.prefix + s + i.suffix; - } - continue; - } - if (typeof f === "string" || typeof f === "number") { - var s = a(String(f), i); - if (o && !c[t].test(s)) { - throw new TypeError('Expected "'.concat(i.name, '" to match "').concat(i.pattern, '", but got "').concat(s, '"')); - } - r += i.prefix + s + i.suffix; - continue; - } - if (u) continue; - var d = p ? "an array" : "a string"; - throw new TypeError('Expected "'.concat(i.name, '" to be ').concat(d)); - } - return r; - }; - } - n.tokensToFunction = tokensToFunction; - function match(e, n) { - var r = []; - var t = pathToRegexp(e, r, n); - return regexpToFunction(t, r, n); - } - n.match = match; - function regexpToFunction(e, n, r) { - if (r === void 0) { - r = {}; - } - var t = r.decode, a = t === void 0 ? function(e) { - return e; - } : t; - return function(r) { - var t = e.exec(r); - if (!t) return false; - var i = t[0], o = t.index; - var c = Object.create(null); - var _loop_1 = function(e) { - if (t[e] === undefined) return "continue"; - var r = n[e - 1]; - if (r.modifier === "*" || r.modifier === "+") { - c[r.name] = t[e].split(r.prefix + r.suffix).map(function(e) { - return a(e, r); - }); - } else { - c[r.name] = a(t[e], r); - } - }; - for(var f = 1; f < t.length; f++){ - _loop_1(f); - } - return { - path: i, - index: o, - params: c - }; - }; - } - n.regexpToFunction = regexpToFunction; - function escapeString(e) { - return e.replace(/([.+*?=^!:${}()[\]|/\\])/g, "\\$1"); - } - function flags(e) { - return e && e.sensitive ? "" : "i"; - } - function regexpToRegexp(e, n) { - if (!n) return e; - var r = /\((?:\?<(.*?)>)?(?!\?)/g; - var t = 0; - var a = r.exec(e.source); - while(a){ - n.push({ - name: a[1] || t++, - prefix: "", - suffix: "", - modifier: "", - pattern: "" - }); - a = r.exec(e.source); - } - return e; - } - function arrayToRegexp(e, n, r) { - var t = e.map(function(e) { - return pathToRegexp(e, n, r).source; - }); - return new RegExp("(?:".concat(t.join("|"), ")"), flags(r)); - } - function stringToRegexp(e, n, r) { - return tokensToRegexp(parse(e, r), n, r); - } - function tokensToRegexp(e, n, r) { - if (r === void 0) { - r = {}; - } - var t = r.strict, a = t === void 0 ? false : t, i = r.start, o = i === void 0 ? true : i, c = r.end, f = c === void 0 ? true : c, u = r.encode, p = u === void 0 ? function(e) { - return e; - } : u, v = r.delimiter, s = v === void 0 ? "/#?" : v, d = r.endsWith, g = d === void 0 ? "" : d; - var x = "[".concat(escapeString(g), "]|$"); - var h = "[".concat(escapeString(s), "]"); - var l = o ? "^" : ""; - for(var m = 0, T = e; m < T.length; m++){ - var E = T[m]; - if (typeof E === "string") { - l += escapeString(p(E)); - } else { - var w = escapeString(p(E.prefix)); - var y = escapeString(p(E.suffix)); - if (E.pattern) { - if (n) n.push(E); - if (w || y) { - if (E.modifier === "+" || E.modifier === "*") { - var R = E.modifier === "*" ? "?" : ""; - l += "(?:".concat(w, "((?:").concat(E.pattern, ")(?:").concat(y).concat(w, "(?:").concat(E.pattern, "))*)").concat(y, ")").concat(R); - } else { - l += "(?:".concat(w, "(").concat(E.pattern, ")").concat(y, ")").concat(E.modifier); - } - } else { - if (E.modifier === "+" || E.modifier === "*") { - throw new TypeError('Can not repeat "'.concat(E.name, '" without a prefix and suffix')); - } - l += "(".concat(E.pattern, ")").concat(E.modifier); - } - } else { - l += "(?:".concat(w).concat(y, ")").concat(E.modifier); - } - } - } - if (f) { - if (!a) l += "".concat(h, "?"); - l += !r.endsWith ? "$" : "(?=".concat(x, ")"); - } else { - var A = e[e.length - 1]; - var _ = typeof A === "string" ? h.indexOf(A[A.length - 1]) > -1 : A === undefined; - if (!a) { - l += "(?:".concat(h, "(?=").concat(x, "))?"); - } - if (!_) { - l += "(?=".concat(h, "|").concat(x, ")"); - } - } - return new RegExp(l, flags(r)); - } - n.tokensToRegexp = tokensToRegexp; - function pathToRegexp(e, n, r) { - if (e instanceof RegExp) return regexpToRegexp(e, n); - if (Array.isArray(e)) return arrayToRegexp(e, n, r); - return stringToRegexp(e, n, r); - } - n.pathToRegexp = pathToRegexp; - })(); - module.exports = e; -})(); -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/path-match.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getPathMatch", { - enumerable: true, - get: function() { - return getPathMatch; - } -}); -const _pathtoregexp = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/path-to-regexp/index.js [app-rsc] (ecmascript)"); -function getPathMatch(path, options) { - const keys = []; - const regexp = (0, _pathtoregexp.pathToRegexp)(path, keys, { - delimiter: '/', - sensitive: typeof options?.sensitive === 'boolean' ? options.sensitive : false, - strict: options?.strict - }); - const matcher = (0, _pathtoregexp.regexpToFunction)(options?.regexModifier ? new RegExp(options.regexModifier(regexp.source), regexp.flags) : regexp, keys); - /** - * A matcher function that will check if a given pathname matches the path - * given in the builder function. When the path does not match it will return - * `false` but if it does it will return an object with the matched params - * merged with the params provided in the second argument. - */ return (pathname, params)=>{ - // If no pathname is provided it's not a match. - if (typeof pathname !== 'string') return false; - const match = matcher(pathname); - // If the path did not match `false` will be returned. - if (!match) return false; - /** - * If unnamed params are not allowed they must be removed from - * the matched parameters. path-to-regexp uses "string" for named and - * "number" for unnamed parameters. - */ if (options?.removeUnnamedParams) { - for (const key of keys){ - if (typeof key.name === 'number') { - delete match.params[key.name]; - } - } - } - return { - ...params, - ...match.params - }; - }; -} //# sourceMappingURL=path-match.js.map -}), -"[project]/node_modules/next/dist/lib/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ACTION_SUFFIX: null, - APP_DIR_ALIAS: null, - CACHE_ONE_YEAR: null, - DOT_NEXT_ALIAS: null, - ESLINT_DEFAULT_DIRS: null, - GSP_NO_RETURNED_VALUE: null, - GSSP_COMPONENT_MEMBER_ERROR: null, - GSSP_NO_RETURNED_VALUE: null, - HTML_CONTENT_TYPE_HEADER: null, - INFINITE_CACHE: null, - INSTRUMENTATION_HOOK_FILENAME: null, - JSON_CONTENT_TYPE_HEADER: null, - MATCHED_PATH_HEADER: null, - MIDDLEWARE_FILENAME: null, - MIDDLEWARE_LOCATION_REGEXP: null, - NEXT_BODY_SUFFIX: null, - NEXT_CACHE_IMPLICIT_TAG_ID: null, - NEXT_CACHE_REVALIDATED_TAGS_HEADER: null, - NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER: null, - NEXT_CACHE_SOFT_TAG_MAX_LENGTH: null, - NEXT_CACHE_TAGS_HEADER: null, - NEXT_CACHE_TAG_MAX_ITEMS: null, - NEXT_CACHE_TAG_MAX_LENGTH: null, - NEXT_DATA_SUFFIX: null, - NEXT_INTERCEPTION_MARKER_PREFIX: null, - NEXT_META_SUFFIX: null, - NEXT_QUERY_PARAM_PREFIX: null, - NEXT_RESUME_HEADER: null, - NON_STANDARD_NODE_ENV: null, - PAGES_DIR_ALIAS: null, - PRERENDER_REVALIDATE_HEADER: null, - PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER: null, - PROXY_FILENAME: null, - PROXY_LOCATION_REGEXP: null, - PUBLIC_DIR_MIDDLEWARE_CONFLICT: null, - ROOT_DIR_ALIAS: null, - RSC_ACTION_CLIENT_WRAPPER_ALIAS: null, - RSC_ACTION_ENCRYPTION_ALIAS: null, - RSC_ACTION_PROXY_ALIAS: null, - RSC_ACTION_VALIDATE_ALIAS: null, - RSC_CACHE_WRAPPER_ALIAS: null, - RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS: null, - RSC_MOD_REF_PROXY_ALIAS: null, - RSC_SEGMENTS_DIR_SUFFIX: null, - RSC_SEGMENT_SUFFIX: null, - RSC_SUFFIX: null, - SERVER_PROPS_EXPORT_ERROR: null, - SERVER_PROPS_GET_INIT_PROPS_CONFLICT: null, - SERVER_PROPS_SSG_CONFLICT: null, - SERVER_RUNTIME: null, - SSG_FALLBACK_EXPORT_ERROR: null, - SSG_GET_INITIAL_PROPS_CONFLICT: null, - STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR: null, - TEXT_PLAIN_CONTENT_TYPE_HEADER: null, - UNSTABLE_REVALIDATE_RENAME_ERROR: null, - WEBPACK_LAYERS: null, - WEBPACK_RESOURCE_QUERIES: null, - WEB_SOCKET_MAX_RECONNECTIONS: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ACTION_SUFFIX: function() { - return ACTION_SUFFIX; - }, - APP_DIR_ALIAS: function() { - return APP_DIR_ALIAS; - }, - CACHE_ONE_YEAR: function() { - return CACHE_ONE_YEAR; - }, - DOT_NEXT_ALIAS: function() { - return DOT_NEXT_ALIAS; - }, - ESLINT_DEFAULT_DIRS: function() { - return ESLINT_DEFAULT_DIRS; - }, - GSP_NO_RETURNED_VALUE: function() { - return GSP_NO_RETURNED_VALUE; - }, - GSSP_COMPONENT_MEMBER_ERROR: function() { - return GSSP_COMPONENT_MEMBER_ERROR; - }, - GSSP_NO_RETURNED_VALUE: function() { - return GSSP_NO_RETURNED_VALUE; - }, - HTML_CONTENT_TYPE_HEADER: function() { - return HTML_CONTENT_TYPE_HEADER; - }, - INFINITE_CACHE: function() { - return INFINITE_CACHE; - }, - INSTRUMENTATION_HOOK_FILENAME: function() { - return INSTRUMENTATION_HOOK_FILENAME; - }, - JSON_CONTENT_TYPE_HEADER: function() { - return JSON_CONTENT_TYPE_HEADER; - }, - MATCHED_PATH_HEADER: function() { - return MATCHED_PATH_HEADER; - }, - MIDDLEWARE_FILENAME: function() { - return MIDDLEWARE_FILENAME; - }, - MIDDLEWARE_LOCATION_REGEXP: function() { - return MIDDLEWARE_LOCATION_REGEXP; - }, - NEXT_BODY_SUFFIX: function() { - return NEXT_BODY_SUFFIX; - }, - NEXT_CACHE_IMPLICIT_TAG_ID: function() { - return NEXT_CACHE_IMPLICIT_TAG_ID; - }, - NEXT_CACHE_REVALIDATED_TAGS_HEADER: function() { - return NEXT_CACHE_REVALIDATED_TAGS_HEADER; - }, - NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER: function() { - return NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER; - }, - NEXT_CACHE_SOFT_TAG_MAX_LENGTH: function() { - return NEXT_CACHE_SOFT_TAG_MAX_LENGTH; - }, - NEXT_CACHE_TAGS_HEADER: function() { - return NEXT_CACHE_TAGS_HEADER; - }, - NEXT_CACHE_TAG_MAX_ITEMS: function() { - return NEXT_CACHE_TAG_MAX_ITEMS; - }, - NEXT_CACHE_TAG_MAX_LENGTH: function() { - return NEXT_CACHE_TAG_MAX_LENGTH; - }, - NEXT_DATA_SUFFIX: function() { - return NEXT_DATA_SUFFIX; - }, - NEXT_INTERCEPTION_MARKER_PREFIX: function() { - return NEXT_INTERCEPTION_MARKER_PREFIX; - }, - NEXT_META_SUFFIX: function() { - return NEXT_META_SUFFIX; - }, - NEXT_QUERY_PARAM_PREFIX: function() { - return NEXT_QUERY_PARAM_PREFIX; - }, - NEXT_RESUME_HEADER: function() { - return NEXT_RESUME_HEADER; - }, - NON_STANDARD_NODE_ENV: function() { - return NON_STANDARD_NODE_ENV; - }, - PAGES_DIR_ALIAS: function() { - return PAGES_DIR_ALIAS; - }, - PRERENDER_REVALIDATE_HEADER: function() { - return PRERENDER_REVALIDATE_HEADER; - }, - PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER: function() { - return PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER; - }, - PROXY_FILENAME: function() { - return PROXY_FILENAME; - }, - PROXY_LOCATION_REGEXP: function() { - return PROXY_LOCATION_REGEXP; - }, - PUBLIC_DIR_MIDDLEWARE_CONFLICT: function() { - return PUBLIC_DIR_MIDDLEWARE_CONFLICT; - }, - ROOT_DIR_ALIAS: function() { - return ROOT_DIR_ALIAS; - }, - RSC_ACTION_CLIENT_WRAPPER_ALIAS: function() { - return RSC_ACTION_CLIENT_WRAPPER_ALIAS; - }, - RSC_ACTION_ENCRYPTION_ALIAS: function() { - return RSC_ACTION_ENCRYPTION_ALIAS; - }, - RSC_ACTION_PROXY_ALIAS: function() { - return RSC_ACTION_PROXY_ALIAS; - }, - RSC_ACTION_VALIDATE_ALIAS: function() { - return RSC_ACTION_VALIDATE_ALIAS; - }, - RSC_CACHE_WRAPPER_ALIAS: function() { - return RSC_CACHE_WRAPPER_ALIAS; - }, - RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS: function() { - return RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS; - }, - RSC_MOD_REF_PROXY_ALIAS: function() { - return RSC_MOD_REF_PROXY_ALIAS; - }, - RSC_SEGMENTS_DIR_SUFFIX: function() { - return RSC_SEGMENTS_DIR_SUFFIX; - }, - RSC_SEGMENT_SUFFIX: function() { - return RSC_SEGMENT_SUFFIX; - }, - RSC_SUFFIX: function() { - return RSC_SUFFIX; - }, - SERVER_PROPS_EXPORT_ERROR: function() { - return SERVER_PROPS_EXPORT_ERROR; - }, - SERVER_PROPS_GET_INIT_PROPS_CONFLICT: function() { - return SERVER_PROPS_GET_INIT_PROPS_CONFLICT; - }, - SERVER_PROPS_SSG_CONFLICT: function() { - return SERVER_PROPS_SSG_CONFLICT; - }, - SERVER_RUNTIME: function() { - return SERVER_RUNTIME; - }, - SSG_FALLBACK_EXPORT_ERROR: function() { - return SSG_FALLBACK_EXPORT_ERROR; - }, - SSG_GET_INITIAL_PROPS_CONFLICT: function() { - return SSG_GET_INITIAL_PROPS_CONFLICT; - }, - STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR: function() { - return STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR; - }, - TEXT_PLAIN_CONTENT_TYPE_HEADER: function() { - return TEXT_PLAIN_CONTENT_TYPE_HEADER; - }, - UNSTABLE_REVALIDATE_RENAME_ERROR: function() { - return UNSTABLE_REVALIDATE_RENAME_ERROR; - }, - WEBPACK_LAYERS: function() { - return WEBPACK_LAYERS; - }, - WEBPACK_RESOURCE_QUERIES: function() { - return WEBPACK_RESOURCE_QUERIES; - }, - WEB_SOCKET_MAX_RECONNECTIONS: function() { - return WEB_SOCKET_MAX_RECONNECTIONS; - } -}); -const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'; -const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'; -const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'; -const NEXT_QUERY_PARAM_PREFIX = 'nxtP'; -const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'; -const MATCHED_PATH_HEADER = 'x-matched-path'; -const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'; -const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER = 'x-prerender-revalidate-if-generated'; -const RSC_SEGMENTS_DIR_SUFFIX = '.segments'; -const RSC_SEGMENT_SUFFIX = '.segment.rsc'; -const RSC_SUFFIX = '.rsc'; -const ACTION_SUFFIX = '.action'; -const NEXT_DATA_SUFFIX = '.json'; -const NEXT_META_SUFFIX = '.meta'; -const NEXT_BODY_SUFFIX = '.body'; -const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'; -const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'; -const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER = 'x-next-revalidate-tag-token'; -const NEXT_RESUME_HEADER = 'next-resume'; -const NEXT_CACHE_TAG_MAX_ITEMS = 128; -const NEXT_CACHE_TAG_MAX_LENGTH = 256; -const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024; -const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'; -const CACHE_ONE_YEAR = 31536000; -const INFINITE_CACHE = 0xfffffffe; -const MIDDLEWARE_FILENAME = 'middleware'; -const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`; -const PROXY_FILENAME = 'proxy'; -const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`; -const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'; -const PAGES_DIR_ALIAS = 'private-next-pages'; -const DOT_NEXT_ALIAS = 'private-dot-next'; -const ROOT_DIR_ALIAS = 'private-next-root-dir'; -const APP_DIR_ALIAS = 'private-next-app-dir'; -const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'; -const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'; -const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'; -const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'; -const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS = 'private-next-rsc-track-dynamic-import'; -const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'; -const RSC_ACTION_CLIENT_WRAPPER_ALIAS = 'private-next-rsc-action-client-wrapper'; -const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`; -const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`; -const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`; -const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`; -const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`; -const SERVER_PROPS_EXPORT_ERROR = `pages with \`getServerSideProps\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`; -const GSP_NO_RETURNED_VALUE = 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'; -const GSSP_NO_RETURNED_VALUE = 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'; -const UNSTABLE_REVALIDATE_RENAME_ERROR = 'The `unstable_revalidate` property is available for general use.\n' + 'Please use `revalidate` instead.'; -const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`; -const NON_STANDARD_NODE_ENV = `You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`; -const SSG_FALLBACK_EXPORT_ERROR = `Pages with \`fallback\` enabled in \`getStaticPaths\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`; -const ESLINT_DEFAULT_DIRS = [ - 'app', - 'pages', - 'components', - 'lib', - 'src' -]; -const SERVER_RUNTIME = { - edge: 'edge', - experimentalEdge: 'experimental-edge', - nodejs: 'nodejs' -}; -const WEB_SOCKET_MAX_RECONNECTIONS = 12; -/** - * The names of the webpack layers. These layers are the primitives for the - * webpack chunks. - */ const WEBPACK_LAYERS_NAMES = { - /** - * The layer for the shared code between the client and server bundles. - */ shared: 'shared', - /** - * The layer for server-only runtime and picking up `react-server` export conditions. - * Including app router RSC pages and app router custom routes and metadata routes. - */ reactServerComponents: 'rsc', - /** - * Server Side Rendering layer for app (ssr). - */ serverSideRendering: 'ssr', - /** - * The browser client bundle layer for actions. - */ actionBrowser: 'action-browser', - /** - * The Node.js bundle layer for the API routes. - */ apiNode: 'api-node', - /** - * The Edge Lite bundle layer for the API routes. - */ apiEdge: 'api-edge', - /** - * The layer for the middleware code. - */ middleware: 'middleware', - /** - * The layer for the instrumentation hooks. - */ instrument: 'instrument', - /** - * The layer for assets on the edge. - */ edgeAsset: 'edge-asset', - /** - * The browser client bundle layer for App directory. - */ appPagesBrowser: 'app-pages-browser', - /** - * The browser client bundle layer for Pages directory. - */ pagesDirBrowser: 'pages-dir-browser', - /** - * The Edge Lite bundle layer for Pages directory. - */ pagesDirEdge: 'pages-dir-edge', - /** - * The Node.js bundle layer for Pages directory. - */ pagesDirNode: 'pages-dir-node' -}; -const WEBPACK_LAYERS = { - ...WEBPACK_LAYERS_NAMES, - GROUP: { - builtinReact: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser - ], - serverOnly: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - neutralTarget: [ - // pages api - WEBPACK_LAYERS_NAMES.apiNode, - WEBPACK_LAYERS_NAMES.apiEdge - ], - clientOnly: [ - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser - ], - bundled: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.shared, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - appPages: [ - // app router pages and layouts - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.actionBrowser - ] - } -}; -const WEBPACK_RESOURCE_QUERIES = { - edgeSSREntry: '__next_edge_ssr_entry__', - metadata: '__next_metadata__', - metadataRoute: '__next_metadata_route__', - metadataImageMeta: '__next_metadata_image_meta__' -}; //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - INTERCEPTION_ROUTE_MARKERS: null, - extractInterceptionRouteInformation: null, - isInterceptionRouteAppPath: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - INTERCEPTION_ROUTE_MARKERS: function() { - return INTERCEPTION_ROUTE_MARKERS; - }, - extractInterceptionRouteInformation: function() { - return extractInterceptionRouteInformation; - }, - isInterceptionRouteAppPath: function() { - return isInterceptionRouteAppPath; - } -}); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -const INTERCEPTION_ROUTE_MARKERS = [ - '(..)(..)', - '(.)', - '(..)', - '(...)' -]; -function isInterceptionRouteAppPath(path) { - // TODO-APP: add more serious validation - return path.split('/').find((segment)=>INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m))) !== undefined; -} -function extractInterceptionRouteInformation(path) { - let interceptingRoute; - let marker; - let interceptedRoute; - for (const segment of path.split('/')){ - marker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - ; - [interceptingRoute, interceptedRoute] = path.split(marker, 2); - break; - } - } - if (!interceptingRoute || !marker || !interceptedRoute) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`), "__NEXT_ERROR_CODE", { - value: "E269", - enumerable: false, - configurable: true - }); - } - interceptingRoute = (0, _apppaths.normalizeAppPath)(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed - ; - switch(marker){ - case '(.)': - // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route - if (interceptingRoute === '/') { - interceptedRoute = `/${interceptedRoute}`; - } else { - interceptedRoute = interceptingRoute + '/' + interceptedRoute; - } - break; - case '(..)': - // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route - if (interceptingRoute === '/') { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`), "__NEXT_ERROR_CODE", { - value: "E207", - enumerable: false, - configurable: true - }); - } - interceptedRoute = interceptingRoute.split('/').slice(0, -1).concat(interceptedRoute).join('/'); - break; - case '(...)': - // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route - interceptedRoute = '/' + interceptedRoute; - break; - case '(..)(..)': - // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route - const splitInterceptingRoute = interceptingRoute.split('/'); - if (splitInterceptingRoute.length <= 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`), "__NEXT_ERROR_CODE", { - value: "E486", - enumerable: false, - configurable: true - }); - } - interceptedRoute = splitInterceptingRoute.slice(0, -2).concat(interceptedRoute).join('/'); - break; - default: - throw Object.defineProperty(new Error('Invariant: unexpected marker'), "__NEXT_ERROR_CODE", { - value: "E112", - enumerable: false, - configurable: true - }); - } - return { - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=interception-routes.js.map -}), -"[project]/node_modules/next/dist/shared/lib/escape-regexp.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// regexp is based on https://github.com/sindresorhus/escape-string-regexp -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "escapeStringRegexp", { - enumerable: true, - get: function() { - return escapeStringRegexp; - } -}); -const reHasRegExp = /[|\\{}()[\]^$+*?.-]/; -const reReplaceRegExp = /[|\\{}()[\]^$+*?.-]/g; -function escapeStringRegexp(str) { - // see also: https://github.com/lodash/lodash/blob/2da024c3b4f9947a48517639de7560457cd4ec6c/escapeRegExp.js#L23 - if (reHasRegExp.test(str)) { - return str.replace(reReplaceRegExp, '\\$&'); - } - return str; -} //# sourceMappingURL=escape-regexp.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Removes the trailing slash for a given route or page path. Preserves the - * root page. Examples: - * - `/foo/bar/` -> `/foo/bar` - * - `/foo/bar` -> `/foo/bar` - * - `/` -> `/` - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "removeTrailingSlash", { - enumerable: true, - get: function() { - return removeTrailingSlash; - } -}); -function removeTrailingSlash(route) { - return route.replace(/\/$/, '') || '/'; -} //# sourceMappingURL=remove-trailing-slash.js.map -}), -"[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "InvariantError", { - enumerable: true, - get: function() { - return InvariantError; - } -}); -class InvariantError extends Error { - constructor(message, options){ - super(`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`, options); - this.name = 'InvariantError'; - } -} //# sourceMappingURL=invariant-error.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "parseLoaderTree", { - enumerable: true, - get: function() { - return parseLoaderTree; - } -}); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-rsc] (ecmascript)"); -function parseLoaderTree(tree) { - const [segment, parallelRoutes, modules] = tree; - const { layout, template } = modules; - let { page } = modules; - // a __DEFAULT__ segment means that this route didn't match any of the - // segments in the route, so we should use the default page - page = segment === _segment.DEFAULT_SEGMENT_KEY ? modules.defaultPage : page; - const conventionPath = layout?.[1] || template?.[1] || page?.[1]; - return { - page, - segment, - modules, - /* it can be either layout / template / page */ conventionPath, - parallelRoutes - }; -} //# sourceMappingURL=parse-loader-tree.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getParamProperties: null, - getSegmentParam: null, - isCatchAll: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getParamProperties: function() { - return getParamProperties; - }, - getSegmentParam: function() { - return getSegmentParam; - }, - isCatchAll: function() { - return isCatchAll; - } -}); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -function getSegmentParam(segment) { - const interceptionMarker = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.find((marker)=>segment.startsWith(marker)); - // if an interception marker is part of the path segment, we need to jump ahead - // to the relevant portion for param parsing - if (interceptionMarker) { - segment = segment.slice(interceptionMarker.length); - } - if (segment.startsWith('[[...') && segment.endsWith(']]')) { - return { - // TODO-APP: Optional catchall does not currently work with parallel routes, - // so for now aren't handling a potential interception marker. - paramType: 'optional-catchall', - paramName: segment.slice(5, -2) - }; - } - if (segment.startsWith('[...') && segment.endsWith(']')) { - return { - paramType: interceptionMarker ? `catchall-intercepted-${interceptionMarker}` : 'catchall', - paramName: segment.slice(4, -1) - }; - } - if (segment.startsWith('[') && segment.endsWith(']')) { - return { - paramType: interceptionMarker ? `dynamic-intercepted-${interceptionMarker}` : 'dynamic', - paramName: segment.slice(1, -1) - }; - } - return null; -} -function isCatchAll(type) { - return type === 'catchall' || type === 'catchall-intercepted-(..)(..)' || type === 'catchall-intercepted-(.)' || type === 'catchall-intercepted-(..)' || type === 'catchall-intercepted-(...)' || type === 'optional-catchall'; -} -function getParamProperties(paramType) { - let repeat = false; - let optional = false; - switch(paramType){ - case 'catchall': - case 'catchall-intercepted-(..)(..)': - case 'catchall-intercepted-(.)': - case 'catchall-intercepted-(..)': - case 'catchall-intercepted-(...)': - repeat = true; - break; - case 'optional-catchall': - repeat = true; - optional = true; - break; - case 'dynamic': - case 'dynamic-intercepted-(..)(..)': - case 'dynamic-intercepted-(.)': - case 'dynamic-intercepted-(..)': - case 'dynamic-intercepted-(...)': - break; - default: - paramType; - } - return { - repeat, - optional - }; -} //# sourceMappingURL=get-segment-param.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/routes/app.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - isInterceptionAppRoute: null, - isNormalizedAppRoute: null, - parseAppRoute: null, - parseAppRouteSegment: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - isInterceptionAppRoute: function() { - return isInterceptionAppRoute; - }, - isNormalizedAppRoute: function() { - return isNormalizedAppRoute; - }, - parseAppRoute: function() { - return parseAppRoute; - }, - parseAppRouteSegment: function() { - return parseAppRouteSegment; - } -}); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -const _getsegmentparam = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js [app-rsc] (ecmascript)"); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -function parseAppRouteSegment(segment) { - if (segment === '') { - return null; - } - // Check if the segment starts with an interception marker - const interceptionMarker = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - const param = (0, _getsegmentparam.getSegmentParam)(segment); - if (param) { - return { - type: 'dynamic', - name: segment, - param, - interceptionMarker - }; - } else if (segment.startsWith('(') && segment.endsWith(')')) { - return { - type: 'route-group', - name: segment, - interceptionMarker - }; - } else if (segment.startsWith('@')) { - return { - type: 'parallel-route', - name: segment, - interceptionMarker - }; - } else { - return { - type: 'static', - name: segment, - interceptionMarker - }; - } -} -function isNormalizedAppRoute(route) { - return route.normalized; -} -function isInterceptionAppRoute(route) { - return route.interceptionMarker !== undefined && route.interceptingRoute !== undefined && route.interceptedRoute !== undefined; -} -function parseAppRoute(pathname, normalized) { - const pathnameSegments = pathname.split('/').filter(Boolean); - // Build segments array with static and dynamic segments - const segments = []; - // Parse if this is an interception route. - let interceptionMarker; - let interceptingRoute; - let interceptedRoute; - for (const segment of pathnameSegments){ - // Parse the segment into an AppSegment. - const appSegment = parseAppRouteSegment(segment); - if (!appSegment) { - continue; - } - if (normalized && (appSegment.type === 'route-group' || appSegment.type === 'parallel-route')) { - throw Object.defineProperty(new _invarianterror.InvariantError(`${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`), "__NEXT_ERROR_CODE", { - value: "E923", - enumerable: false, - configurable: true - }); - } - segments.push(appSegment); - if (appSegment.interceptionMarker) { - const parts = pathname.split(appSegment.interceptionMarker); - if (parts.length !== 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${pathname}`), "__NEXT_ERROR_CODE", { - value: "E924", - enumerable: false, - configurable: true - }); - } - interceptingRoute = normalized ? parseAppRoute(parts[0], true) : parseAppRoute(parts[0], false); - interceptedRoute = normalized ? parseAppRoute(parts[1], true) : parseAppRoute(parts[1], false); - interceptionMarker = appSegment.interceptionMarker; - } - } - const dynamicSegments = segments.filter((segment)=>segment.type === 'dynamic'); - return { - normalized, - pathname, - segments, - dynamicSegments, - interceptionMarker, - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=app.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/interception-prefix-from-param-type.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "interceptionPrefixFromParamType", { - enumerable: true, - get: function() { - return interceptionPrefixFromParamType; - } -}); -function interceptionPrefixFromParamType(paramType) { - switch(paramType){ - case 'catchall-intercepted-(..)(..)': - case 'dynamic-intercepted-(..)(..)': - return '(..)(..)'; - case 'catchall-intercepted-(.)': - case 'dynamic-intercepted-(.)': - return '(.)'; - case 'catchall-intercepted-(..)': - case 'dynamic-intercepted-(..)': - return '(..)'; - case 'catchall-intercepted-(...)': - case 'dynamic-intercepted-(...)': - return '(...)'; - case 'catchall': - case 'dynamic': - case 'optional-catchall': - default: - return null; - } -} //# sourceMappingURL=interception-prefix-from-param-type.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "resolveParamValue", { - enumerable: true, - get: function() { - return resolveParamValue; - } -}); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -const _interceptionprefixfromparamtype = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-prefix-from-param-type.js [app-rsc] (ecmascript)"); -/** - * Extracts the param value from a path segment, handling interception markers - * based on the expected param type. - * - * @param pathSegment - The path segment to extract the value from - * @param params - The current params object for resolving dynamic param references - * @param paramType - The expected param type which may include interception marker info - * @returns The extracted param value - */ function getParamValueFromSegment(pathSegment, params, paramType) { - // If the segment is dynamic, resolve it from the params object - if (pathSegment.type === 'dynamic') { - return params[pathSegment.param.paramName]; - } - // If the paramType indicates this is an intercepted param, strip the marker - // that matches the interception marker in the param type - const interceptionPrefix = (0, _interceptionprefixfromparamtype.interceptionPrefixFromParamType)(paramType); - if (interceptionPrefix === pathSegment.interceptionMarker) { - return pathSegment.name.replace(pathSegment.interceptionMarker, ''); - } - // For static segments, use the name - return pathSegment.name; -} -function resolveParamValue(paramName, paramType, depth, route, params) { - switch(paramType){ - case 'catchall': - case 'optional-catchall': - case 'catchall-intercepted-(..)(..)': - case 'catchall-intercepted-(.)': - case 'catchall-intercepted-(..)': - case 'catchall-intercepted-(...)': - // For catchall routes, derive from pathname using depth to determine - // which segments to use - const processedSegments = []; - // Process segments to handle any embedded dynamic params - for(let index = depth; index < route.segments.length; index++){ - const pathSegment = route.segments[index]; - if (pathSegment.type === 'static') { - let value = pathSegment.name; - // For intercepted catch-all params, strip the marker from the first segment - const interceptionPrefix = (0, _interceptionprefixfromparamtype.interceptionPrefixFromParamType)(paramType); - if (interceptionPrefix && index === depth && interceptionPrefix === pathSegment.interceptionMarker) { - // Strip the interception marker from the value - value = value.replace(pathSegment.interceptionMarker, ''); - } - processedSegments.push(value); - } else { - // If the segment is a param placeholder, check if we have its value - if (!params.hasOwnProperty(pathSegment.param.paramName)) { - // If the segment is an optional catchall, we can break out of the - // loop because it's optional! - if (pathSegment.param.paramType === 'optional-catchall') { - break; - } - // Unknown param placeholder in pathname - can't derive full value - return undefined; - } - // If the segment matches a param, use the param value - // We don't encode values here as that's handled during retrieval. - const paramValue = params[pathSegment.param.paramName]; - if (Array.isArray(paramValue)) { - processedSegments.push(...paramValue); - } else { - processedSegments.push(paramValue); - } - } - } - if (processedSegments.length > 0) { - return processedSegments; - } else if (paramType === 'optional-catchall') { - return undefined; - } else { - // We shouldn't be able to match a catchall segment without any path - // segments if it's not an optional catchall - throw Object.defineProperty(new _invarianterror.InvariantError(`Unexpected empty path segments match for a route "${route.pathname}" with param "${paramName}" of type "${paramType}"`), "__NEXT_ERROR_CODE", { - value: "E931", - enumerable: false, - configurable: true - }); - } - case 'dynamic': - case 'dynamic-intercepted-(..)(..)': - case 'dynamic-intercepted-(.)': - case 'dynamic-intercepted-(..)': - case 'dynamic-intercepted-(...)': - // For regular dynamic parameters, take the segment at this depth - if (depth < route.segments.length) { - const pathSegment = route.segments[depth]; - // Check if the segment at this depth is a placeholder for an unknown param - if (pathSegment.type === 'dynamic' && !params.hasOwnProperty(pathSegment.param.paramName)) { - // The segment is a placeholder like [category] and we don't have the value - return undefined; - } - // If the segment matches a param, use the param value from params object - // Otherwise it's a static segment, just use it directly - // We don't encode values here as that's handled during retrieval - return getParamValueFromSegment(pathSegment, params, paramType); - } - return undefined; - default: - paramType; - } -} //# sourceMappingURL=resolve-param-value.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - PARAMETER_PATTERN: null, - getDynamicParam: null, - interpolateParallelRouteParams: null, - parseMatchedParameter: null, - parseParameter: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - PARAMETER_PATTERN: function() { - return PARAMETER_PATTERN; - }, - getDynamicParam: function() { - return getDynamicParam; - }, - interpolateParallelRouteParams: function() { - return interpolateParallelRouteParams; - }, - parseMatchedParameter: function() { - return parseMatchedParameter; - }, - parseParameter: function() { - return parseParameter; - } -}); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -const _parseloadertree = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)"); -const _app = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/routes/app.js [app-rsc] (ecmascript)"); -const _resolveparamvalue = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)"); -/** - * Gets the value of a param from the params object. This correctly handles the - * case where the param is a fallback route param and encodes the resulting - * value. - * - * @param interpolatedParams - The params object. - * @param segmentKey - The key of the segment. - * @param fallbackRouteParams - The fallback route params. - * @returns The value of the param. - */ function getParamValue(interpolatedParams, segmentKey, fallbackRouteParams) { - let value = interpolatedParams[segmentKey]; - if (fallbackRouteParams?.has(segmentKey)) { - // We know that the fallback route params has the segment key because we - // checked that above. - const [searchValue] = fallbackRouteParams.get(segmentKey); - value = searchValue; - } else if (Array.isArray(value)) { - value = value.map((i)=>encodeURIComponent(i)); - } else if (typeof value === 'string') { - value = encodeURIComponent(value); - } - return value; -} -function interpolateParallelRouteParams(loaderTree, params, pagePath, fallbackRouteParams) { - const interpolated = structuredClone(params); - // Stack-based traversal with depth tracking - const stack = [ - { - tree: loaderTree, - depth: 0 - } - ]; - // Parse the route from the provided page path. - const route = (0, _app.parseAppRoute)(pagePath, true); - while(stack.length > 0){ - const { tree, depth } = stack.pop(); - const { segment, parallelRoutes } = (0, _parseloadertree.parseLoaderTree)(tree); - const appSegment = (0, _app.parseAppRouteSegment)(segment); - if (appSegment?.type === 'dynamic' && !interpolated.hasOwnProperty(appSegment.param.paramName) && // If the param is in the fallback route params, we don't need to - // interpolate it because it's already marked as being unknown. - !fallbackRouteParams?.has(appSegment.param.paramName)) { - const { paramName, paramType } = appSegment.param; - const paramValue = (0, _resolveparamvalue.resolveParamValue)(paramName, paramType, depth, route, interpolated); - if (paramValue !== undefined) { - interpolated[paramName] = paramValue; - } else if (paramType !== 'optional-catchall') { - throw Object.defineProperty(new _invarianterror.InvariantError(`Could not resolve param value for segment: ${paramName}`), "__NEXT_ERROR_CODE", { - value: "E932", - enumerable: false, - configurable: true - }); - } - } - // Calculate next depth - increment if this is not a route group and not empty - let nextDepth = depth; - if (appSegment && appSegment.type !== 'route-group' && appSegment.type !== 'parallel-route') { - nextDepth++; - } - // Add all parallel routes to the stack for processing - for (const parallelRoute of Object.values(parallelRoutes)){ - stack.push({ - tree: parallelRoute, - depth: nextDepth - }); - } - } - return interpolated; -} -function getDynamicParam(interpolatedParams, segmentKey, dynamicParamType, fallbackRouteParams) { - let value = getParamValue(interpolatedParams, segmentKey, fallbackRouteParams); - // handle the case where an optional catchall does not have a value, - // e.g. `/dashboard/[[...slug]]` when requesting `/dashboard` - if (!value || value.length === 0) { - if (dynamicParamType === 'oc') { - return { - param: segmentKey, - value: null, - type: dynamicParamType, - treeSegment: [ - segmentKey, - '', - dynamicParamType - ] - }; - } - throw Object.defineProperty(new _invarianterror.InvariantError(`Missing value for segment key: "${segmentKey}" with dynamic param type: ${dynamicParamType}`), "__NEXT_ERROR_CODE", { - value: "E864", - enumerable: false, - configurable: true - }); - } - return { - param: segmentKey, - // The value that is passed to user code. - value, - // The value that is rendered in the router tree. - treeSegment: [ - segmentKey, - Array.isArray(value) ? value.join('/') : value, - dynamicParamType - ], - type: dynamicParamType - }; -} -const PARAMETER_PATTERN = /^([^[]*)\[((?:\[[^\]]*\])|[^\]]+)\](.*)$/; -function parseParameter(param) { - const match = param.match(PARAMETER_PATTERN); - if (!match) { - return parseMatchedParameter(param); - } - return parseMatchedParameter(match[2]); -} -function parseMatchedParameter(param) { - const optional = param.startsWith('[') && param.endsWith(']'); - if (optional) { - param = param.slice(1, -1); - } - const repeat = param.startsWith('...'); - if (repeat) { - param = param.slice(3); - } - return { - key: param, - repeat, - optional - }; -} //# sourceMappingURL=get-dynamic-param.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/route-regex.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getNamedMiddlewareRegex: null, - getNamedRouteRegex: null, - getRouteRegex: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getNamedMiddlewareRegex: function() { - return getNamedMiddlewareRegex; - }, - getNamedRouteRegex: function() { - return getNamedRouteRegex; - }, - getRouteRegex: function() { - return getRouteRegex; - } -}); -const _constants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/constants.js [app-rsc] (ecmascript)"); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -const _escaperegexp = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/escape-regexp.js [app-rsc] (ecmascript)"); -const _removetrailingslash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)"); -const _getdynamicparam = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js [app-rsc] (ecmascript)"); -function getParametrizedRoute(route, includeSuffix, includePrefix) { - const groups = {}; - let groupIndex = 1; - const segments = []; - for (const segment of (0, _removetrailingslash.removeTrailingSlash)(route).slice(1).split('/')){ - const markerMatch = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - const paramMatches = segment.match(_getdynamicparam.PARAMETER_PATTERN) // Check for parameters - ; - if (markerMatch && paramMatches && paramMatches[2]) { - const { key, optional, repeat } = (0, _getdynamicparam.parseMatchedParameter)(paramMatches[2]); - groups[key] = { - pos: groupIndex++, - repeat, - optional - }; - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(markerMatch)}([^/]+?)`); - } else if (paramMatches && paramMatches[2]) { - const { key, repeat, optional } = (0, _getdynamicparam.parseMatchedParameter)(paramMatches[2]); - groups[key] = { - pos: groupIndex++, - repeat, - optional - }; - if (includePrefix && paramMatches[1]) { - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(paramMatches[1])}`); - } - let s = repeat ? optional ? '(?:/(.+?))?' : '/(.+?)' : '/([^/]+?)'; - // Remove the leading slash if includePrefix already added it. - if (includePrefix && paramMatches[1]) { - s = s.substring(1); - } - segments.push(s); - } else { - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(segment)}`); - } - // If there's a suffix, add it to the segments if it's enabled. - if (includeSuffix && paramMatches && paramMatches[3]) { - segments.push((0, _escaperegexp.escapeStringRegexp)(paramMatches[3])); - } - } - return { - parameterizedRoute: segments.join(''), - groups - }; -} -function getRouteRegex(normalizedRoute, { includeSuffix = false, includePrefix = false, excludeOptionalTrailingSlash = false } = {}) { - const { parameterizedRoute, groups } = getParametrizedRoute(normalizedRoute, includeSuffix, includePrefix); - let re = parameterizedRoute; - if (!excludeOptionalTrailingSlash) { - re += '(?:/)?'; - } - return { - re: new RegExp(`^${re}$`), - groups: groups - }; -} -/** - * Builds a function to generate a minimal routeKey using only a-z and minimal - * number of characters. - */ function buildGetSafeRouteKey() { - let i = 0; - return ()=>{ - let routeKey = ''; - let j = ++i; - while(j > 0){ - routeKey += String.fromCharCode(97 + (j - 1) % 26); - j = Math.floor((j - 1) / 26); - } - return routeKey; - }; -} -function getSafeKeyFromSegment({ interceptionMarker, getSafeRouteKey, segment, routeKeys, keyPrefix, backreferenceDuplicateKeys }) { - const { key, optional, repeat } = (0, _getdynamicparam.parseMatchedParameter)(segment); - // replace any non-word characters since they can break - // the named regex - let cleanedKey = key.replace(/\W/g, ''); - if (keyPrefix) { - cleanedKey = `${keyPrefix}${cleanedKey}`; - } - let invalidKey = false; - // check if the key is still invalid and fallback to using a known - // safe key - if (cleanedKey.length === 0 || cleanedKey.length > 30) { - invalidKey = true; - } - if (!isNaN(parseInt(cleanedKey.slice(0, 1)))) { - invalidKey = true; - } - if (invalidKey) { - cleanedKey = getSafeRouteKey(); - } - const duplicateKey = cleanedKey in routeKeys; - if (keyPrefix) { - routeKeys[cleanedKey] = `${keyPrefix}${key}`; - } else { - routeKeys[cleanedKey] = key; - } - // if the segment has an interception marker, make sure that's part of the regex pattern - // this is to ensure that the route with the interception marker doesn't incorrectly match - // the non-intercepted route (ie /app/(.)[username] should not match /app/[username]) - const interceptionPrefix = interceptionMarker ? (0, _escaperegexp.escapeStringRegexp)(interceptionMarker) : ''; - let pattern; - if (duplicateKey && backreferenceDuplicateKeys) { - // Use a backreference to the key to ensure that the key is the same value - // in each of the placeholders. - pattern = `\\k<${cleanedKey}>`; - } else if (repeat) { - pattern = `(?<${cleanedKey}>.+?)`; - } else { - pattern = `(?<${cleanedKey}>[^/]+?)`; - } - return { - key, - pattern: optional ? `(?:/${interceptionPrefix}${pattern})?` : `/${interceptionPrefix}${pattern}`, - cleanedKey: cleanedKey, - optional, - repeat - }; -} -function getNamedParametrizedRoute(route, prefixRouteKeys, includeSuffix, includePrefix, backreferenceDuplicateKeys, reference = { - names: {}, - intercepted: {} -}) { - const getSafeRouteKey = buildGetSafeRouteKey(); - const routeKeys = {}; - const segments = []; - const inverseParts = []; - // Ensure we don't mutate the original reference object. - reference = structuredClone(reference); - for (const segment of (0, _removetrailingslash.removeTrailingSlash)(route).slice(1).split('/')){ - const hasInterceptionMarker = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.some((m)=>segment.startsWith(m)); - const paramMatches = segment.match(_getdynamicparam.PARAMETER_PATTERN) // Check for parameters - ; - const interceptionMarker = hasInterceptionMarker ? paramMatches?.[1] : undefined; - let keyPrefix; - if (interceptionMarker && paramMatches?.[2]) { - keyPrefix = prefixRouteKeys ? _constants.NEXT_INTERCEPTION_MARKER_PREFIX : undefined; - reference.intercepted[paramMatches[2]] = interceptionMarker; - } else if (paramMatches?.[2] && reference.intercepted[paramMatches[2]]) { - keyPrefix = prefixRouteKeys ? _constants.NEXT_INTERCEPTION_MARKER_PREFIX : undefined; - } else { - keyPrefix = prefixRouteKeys ? _constants.NEXT_QUERY_PARAM_PREFIX : undefined; - } - if (interceptionMarker && paramMatches && paramMatches[2]) { - // If there's an interception marker, add it to the segments. - const { key, pattern, cleanedKey, repeat, optional } = getSafeKeyFromSegment({ - getSafeRouteKey, - interceptionMarker, - segment: paramMatches[2], - routeKeys, - keyPrefix, - backreferenceDuplicateKeys - }); - segments.push(pattern); - inverseParts.push(`/${paramMatches[1]}:${reference.names[key] ?? cleanedKey}${repeat ? optional ? '*' : '+' : ''}`); - reference.names[key] ??= cleanedKey; - } else if (paramMatches && paramMatches[2]) { - // If there's a prefix, add it to the segments if it's enabled. - if (includePrefix && paramMatches[1]) { - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(paramMatches[1])}`); - inverseParts.push(`/${paramMatches[1]}`); - } - const { key, pattern, cleanedKey, repeat, optional } = getSafeKeyFromSegment({ - getSafeRouteKey, - segment: paramMatches[2], - routeKeys, - keyPrefix, - backreferenceDuplicateKeys - }); - // Remove the leading slash if includePrefix already added it. - let s = pattern; - if (includePrefix && paramMatches[1]) { - s = s.substring(1); - } - segments.push(s); - inverseParts.push(`/:${reference.names[key] ?? cleanedKey}${repeat ? optional ? '*' : '+' : ''}`); - reference.names[key] ??= cleanedKey; - } else { - segments.push(`/${(0, _escaperegexp.escapeStringRegexp)(segment)}`); - inverseParts.push(`/${segment}`); - } - // If there's a suffix, add it to the segments if it's enabled. - if (includeSuffix && paramMatches && paramMatches[3]) { - segments.push((0, _escaperegexp.escapeStringRegexp)(paramMatches[3])); - inverseParts.push(paramMatches[3]); - } - } - return { - namedParameterizedRoute: segments.join(''), - routeKeys, - pathToRegexpPattern: inverseParts.join(''), - reference - }; -} -function getNamedRouteRegex(normalizedRoute, options) { - const result = getNamedParametrizedRoute(normalizedRoute, options.prefixRouteKeys, options.includeSuffix ?? false, options.includePrefix ?? false, options.backreferenceDuplicateKeys ?? false, options.reference); - let namedRegex = result.namedParameterizedRoute; - if (!options.excludeOptionalTrailingSlash) { - namedRegex += '(?:/)?'; - } - return { - ...getRouteRegex(normalizedRoute, options), - namedRegex: `^${namedRegex}$`, - routeKeys: result.routeKeys, - pathToRegexpPattern: result.pathToRegexpPattern, - reference: result.reference - }; -} -function getNamedMiddlewareRegex(normalizedRoute, options) { - const { parameterizedRoute } = getParametrizedRoute(normalizedRoute, false, false); - const { catchAll = true } = options; - if (parameterizedRoute === '/') { - let catchAllRegex = catchAll ? '.*' : ''; - return { - namedRegex: `^/${catchAllRegex}$` - }; - } - const { namedParameterizedRoute } = getNamedParametrizedRoute(normalizedRoute, false, false, false, false, undefined); - let catchAllGroupedRegex = catchAll ? '(?:(/.*)?)' : ''; - return { - namedRegex: `^${namedParameterizedRoute}${catchAllGroupedRegex}$` - }; -} //# sourceMappingURL=route-regex.js.map -}), -"[project]/node_modules/next/dist/shared/lib/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DecodeError: null, - MiddlewareNotFoundError: null, - MissingStaticPage: null, - NormalizeError: null, - PageNotFoundError: null, - SP: null, - ST: null, - WEB_VITALS: null, - execOnce: null, - getDisplayName: null, - getLocationOrigin: null, - getURL: null, - isAbsoluteUrl: null, - isResSent: null, - loadGetInitialProps: null, - normalizeRepeatedSlashes: null, - stringifyError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DecodeError: function() { - return DecodeError; - }, - MiddlewareNotFoundError: function() { - return MiddlewareNotFoundError; - }, - MissingStaticPage: function() { - return MissingStaticPage; - }, - NormalizeError: function() { - return NormalizeError; - }, - PageNotFoundError: function() { - return PageNotFoundError; - }, - SP: function() { - return SP; - }, - ST: function() { - return ST; - }, - WEB_VITALS: function() { - return WEB_VITALS; - }, - execOnce: function() { - return execOnce; - }, - getDisplayName: function() { - return getDisplayName; - }, - getLocationOrigin: function() { - return getLocationOrigin; - }, - getURL: function() { - return getURL; - }, - isAbsoluteUrl: function() { - return isAbsoluteUrl; - }, - isResSent: function() { - return isResSent; - }, - loadGetInitialProps: function() { - return loadGetInitialProps; - }, - normalizeRepeatedSlashes: function() { - return normalizeRepeatedSlashes; - }, - stringifyError: function() { - return stringifyError; - } -}); -const WEB_VITALS = [ - 'CLS', - 'FCP', - 'FID', - 'INP', - 'LCP', - 'TTFB' -]; -function execOnce(fn) { - let used = false; - let result; - return (...args)=>{ - if (!used) { - used = true; - result = fn(...args); - } - return result; - }; -} -// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1 -// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3 -const ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\d+\-.]*?:/; -const isAbsoluteUrl = (url)=>ABSOLUTE_URL_REGEX.test(url); -function getLocationOrigin() { - const { protocol, hostname, port } = window.location; - return `${protocol}//${hostname}${port ? ':' + port : ''}`; -} -function getURL() { - const { href } = window.location; - const origin = getLocationOrigin(); - return href.substring(origin.length); -} -function getDisplayName(Component) { - return typeof Component === 'string' ? Component : Component.displayName || Component.name || 'Unknown'; -} -function isResSent(res) { - return res.finished || res.headersSent; -} -function normalizeRepeatedSlashes(url) { - const urlParts = url.split('?'); - const urlNoQuery = urlParts[0]; - return urlNoQuery // first we replace any non-encoded backslashes with forward - // then normalize repeated forward slashes - .replace(/\\/g, '/').replace(/\/\/+/g, '/') + (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : ''); -} -async function loadGetInitialProps(App, ctx) { - if ("TURBOPACK compile-time truthy", 1) { - if (App.prototype?.getInitialProps) { - const message = `"${getDisplayName(App)}.getInitialProps()" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - } - // when called from _app `ctx` is nested in `ctx` - const res = ctx.res || ctx.ctx && ctx.ctx.res; - if (!App.getInitialProps) { - if (ctx.ctx && ctx.Component) { - // @ts-ignore pageProps default - return { - pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx) - }; - } - return {}; - } - const props = await App.getInitialProps(ctx); - if (res && isResSent(res)) { - return props; - } - if (!props) { - const message = `"${getDisplayName(App)}.getInitialProps()" should resolve to an object. But found "${props}" instead.`; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - if (Object.keys(props).length === 0 && !ctx.ctx) { - console.warn(`${getDisplayName(App)} returned an empty object from \`getInitialProps\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`); - } - } - return props; -} -const SP = typeof performance !== 'undefined'; -const ST = SP && [ - 'mark', - 'measure', - 'getEntriesByName' -].every((method)=>typeof performance[method] === 'function'); -class DecodeError extends Error { -} -class NormalizeError extends Error { -} -class PageNotFoundError extends Error { - constructor(page){ - super(); - this.code = 'ENOENT'; - this.name = 'PageNotFoundError'; - this.message = `Cannot find module for page: ${page}`; - } -} -class MissingStaticPage extends Error { - constructor(page, message){ - super(); - this.message = `Failed to load static file for page: ${page} ${message}`; - } -} -class MiddlewareNotFoundError extends Error { - constructor(){ - super(); - this.code = 'ENOENT'; - this.message = `Cannot find the middleware module`; - } -} -function stringifyError(error) { - return JSON.stringify({ - message: error.message, - stack: error.stack - }); -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/lib/route-pattern-normalizer.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - PARAM_SEPARATOR: null, - hasAdjacentParameterIssues: null, - normalizeAdjacentParameters: null, - normalizeTokensForRegexp: null, - stripNormalizedSeparators: null, - stripParameterSeparators: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - PARAM_SEPARATOR: function() { - return PARAM_SEPARATOR; - }, - hasAdjacentParameterIssues: function() { - return hasAdjacentParameterIssues; - }, - normalizeAdjacentParameters: function() { - return normalizeAdjacentParameters; - }, - normalizeTokensForRegexp: function() { - return normalizeTokensForRegexp; - }, - stripNormalizedSeparators: function() { - return stripNormalizedSeparators; - }, - stripParameterSeparators: function() { - return stripParameterSeparators; - } -}); -const PARAM_SEPARATOR = '_NEXTSEP_'; -function hasAdjacentParameterIssues(route) { - if (typeof route !== 'string') return false; - // Check for interception route markers followed immediately by parameters - // Pattern: /(.):param, /(..):param, /(...):param, /(.)(.):param etc. - // These patterns cause "Must have text between two parameters" errors - if (/\/\(\.{1,3}\):[^/\s]+/.test(route)) { - return true; - } - // Check for basic adjacent parameters without separators - // Pattern: :param1:param2 (but not :param* or other URL patterns) - if (/:[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*/.test(route)) { - return true; - } - return false; -} -function normalizeAdjacentParameters(route) { - let normalized = route; - // Handle interception route patterns: (.):param -> (.)_NEXTSEP_:param - normalized = normalized.replace(/(\([^)]*\)):([^/\s]+)/g, `$1${PARAM_SEPARATOR}:$2`); - // Handle other adjacent parameter patterns: :param1:param2 -> :param1_NEXTSEP_:param2 - normalized = normalized.replace(/:([^:/\s)]+)(?=:)/g, `:$1${PARAM_SEPARATOR}`); - return normalized; -} -function normalizeTokensForRegexp(tokens) { - return tokens.map((token)=>{ - // Token union type: Token = string | TokenObject - // Literal path segments are strings, parameters/wildcards are objects - if (typeof token === 'object' && token !== null && // Not all token objects have 'modifier' property (e.g., simple text tokens) - 'modifier' in token && // Only repeating modifiers (* or +) cause the validation error - // Other modifiers like '?' (optional) are fine - (token.modifier === '*' || token.modifier === '+') && // Token objects can have different shapes depending on route pattern - 'prefix' in token && 'suffix' in token && // Both prefix and suffix must be empty strings - // This is what causes the validation error in path-to-regexp - token.prefix === '' && token.suffix === '') { - // Add minimal prefix to satisfy path-to-regexp validation - // We use '/' as it's the most common path delimiter and won't break route matching - // The prefix gets used in regex generation but doesn't affect parameter extraction - return { - ...token, - prefix: '/' - }; - } - return token; - }); -} -function stripNormalizedSeparators(pathname) { - // Remove separator after interception route markers - // Pattern: (.)_NEXTSEP_ -> (.), (..)_NEXTSEP_ -> (..), etc. - // The separator appears after the closing paren of interception markers - return pathname.replace(new RegExp(`\\)${PARAM_SEPARATOR}`, 'g'), ')'); -} -function stripParameterSeparators(params) { - const cleaned = {}; - for (const [key, value] of Object.entries(params)){ - if (typeof value === 'string') { - // Remove the separator if it appears at the start of parameter values - cleaned[key] = value.replace(new RegExp(`^${PARAM_SEPARATOR}`), ''); - } else if (Array.isArray(value)) { - // Handle array parameters (from repeated route segments) - cleaned[key] = value.map((item)=>typeof item === 'string' ? item.replace(new RegExp(`^${PARAM_SEPARATOR}`), '') : item); - } else { - cleaned[key] = value; - } - } - return cleaned; -} //# sourceMappingURL=route-pattern-normalizer.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Client-safe utilities for route matching that don't import server-side - * utilities to avoid bundling issues with Turbopack - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - safeCompile: null, - safePathToRegexp: null, - safeRegexpToFunction: null, - safeRouteMatcher: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - safeCompile: function() { - return safeCompile; - }, - safePathToRegexp: function() { - return safePathToRegexp; - }, - safeRegexpToFunction: function() { - return safeRegexpToFunction; - }, - safeRouteMatcher: function() { - return safeRouteMatcher; - } -}); -const _pathtoregexp = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/path-to-regexp/index.js [app-rsc] (ecmascript)"); -const _routepatternnormalizer = __turbopack_context__.r("[project]/node_modules/next/dist/lib/route-pattern-normalizer.js [app-rsc] (ecmascript)"); -function safePathToRegexp(route, keys, options) { - if (typeof route !== 'string') { - return (0, _pathtoregexp.pathToRegexp)(route, keys, options); - } - // Check if normalization is needed and cache the result - const needsNormalization = (0, _routepatternnormalizer.hasAdjacentParameterIssues)(route); - const routeToUse = needsNormalization ? (0, _routepatternnormalizer.normalizeAdjacentParameters)(route) : route; - try { - return (0, _pathtoregexp.pathToRegexp)(routeToUse, keys, options); - } catch (error) { - // Only try normalization if we haven't already normalized - if (!needsNormalization) { - try { - const normalizedRoute = (0, _routepatternnormalizer.normalizeAdjacentParameters)(route); - return (0, _pathtoregexp.pathToRegexp)(normalizedRoute, keys, options); - } catch (retryError) { - // If that doesn't work, fall back to original error - throw error; - } - } - throw error; - } -} -function safeCompile(route, options) { - // Check if normalization is needed and cache the result - const needsNormalization = (0, _routepatternnormalizer.hasAdjacentParameterIssues)(route); - const routeToUse = needsNormalization ? (0, _routepatternnormalizer.normalizeAdjacentParameters)(route) : route; - try { - const compiler = (0, _pathtoregexp.compile)(routeToUse, options); - // If we normalized the route, wrap the compiler to strip separators from output - // The normalization inserts _NEXTSEP_ as a literal string in the pattern to satisfy - // path-to-regexp validation, but we don't want it in the final compiled URL - if (needsNormalization) { - return (params)=>{ - return (0, _routepatternnormalizer.stripNormalizedSeparators)(compiler(params)); - }; - } - return compiler; - } catch (error) { - // Only try normalization if we haven't already normalized - if (!needsNormalization) { - try { - const normalizedRoute = (0, _routepatternnormalizer.normalizeAdjacentParameters)(route); - const compiler = (0, _pathtoregexp.compile)(normalizedRoute, options); - // Wrap the compiler to strip separators from output - return (params)=>{ - return (0, _routepatternnormalizer.stripNormalizedSeparators)(compiler(params)); - }; - } catch (retryError) { - // If that doesn't work, fall back to original error - throw error; - } - } - throw error; - } -} -function safeRegexpToFunction(regexp, keys) { - const originalMatcher = (0, _pathtoregexp.regexpToFunction)(regexp, keys || []); - return (pathname)=>{ - const result = originalMatcher(pathname); - if (!result) return false; - // Clean parameters before returning - return { - ...result, - params: (0, _routepatternnormalizer.stripParameterSeparators)(result.params) - }; - }; -} -function safeRouteMatcher(matcherFn) { - return (pathname)=>{ - const result = matcherFn(pathname); - if (!result) return false; - // Clean parameters before returning - return (0, _routepatternnormalizer.stripParameterSeparators)(result); - }; -} //# sourceMappingURL=route-match-utils.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/route-matcher.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getRouteMatcher", { - enumerable: true, - get: function() { - return getRouteMatcher; - } -}); -const _utils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils.js [app-rsc] (ecmascript)"); -const _routematchutils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js [app-rsc] (ecmascript)"); -function getRouteMatcher({ re, groups }) { - const rawMatcher = (pathname)=>{ - const routeMatch = re.exec(pathname); - if (!routeMatch) return false; - const decode = (param)=>{ - try { - return decodeURIComponent(param); - } catch { - throw Object.defineProperty(new _utils.DecodeError('failed to decode param'), "__NEXT_ERROR_CODE", { - value: "E528", - enumerable: false, - configurable: true - }); - } - }; - const params = {}; - for (const [key, group] of Object.entries(groups)){ - const match = routeMatch[group.pos]; - if (match !== undefined) { - if (group.repeat) { - params[key] = match.split('/').map((entry)=>decode(entry)); - } else { - params[key] = decode(match); - } - } - } - return params; - }; - // Wrap with safe matcher to handle parameter cleaning - return (0, _routematchutils.safeRouteMatcher)(rawMatcher); -} //# sourceMappingURL=route-matcher.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - assign: null, - searchParamsToUrlQuery: null, - urlQueryToSearchParams: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - assign: function() { - return assign; - }, - searchParamsToUrlQuery: function() { - return searchParamsToUrlQuery; - }, - urlQueryToSearchParams: function() { - return urlQueryToSearchParams; - } -}); -function searchParamsToUrlQuery(searchParams) { - const query = {}; - for (const [key, value] of searchParams.entries()){ - const existing = query[key]; - if (typeof existing === 'undefined') { - query[key] = value; - } else if (Array.isArray(existing)) { - existing.push(value); - } else { - query[key] = [ - existing, - value - ]; - } - } - return query; -} -function stringifyUrlQueryParam(param) { - if (typeof param === 'string') { - return param; - } - if (typeof param === 'number' && !isNaN(param) || typeof param === 'boolean') { - return String(param); - } else { - return ''; - } -} -function urlQueryToSearchParams(query) { - const searchParams = new URLSearchParams(); - for (const [key, value] of Object.entries(query)){ - if (Array.isArray(value)) { - for (const item of value){ - searchParams.append(key, stringifyUrlQueryParam(item)); - } - } else { - searchParams.set(key, stringifyUrlQueryParam(value)); - } - } - return searchParams; -} -function assign(target, ...searchParamsList) { - for (const searchParams of searchParamsList){ - for (const key of searchParams.keys()){ - target.delete(key); - } - for (const [key, value] of searchParams.entries()){ - target.append(key, value); - } - } - return target; -} //# sourceMappingURL=querystring.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "parseRelativeUrl", { - enumerable: true, - get: function() { - return parseRelativeUrl; - } -}); -const _utils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils.js [app-rsc] (ecmascript)"); -const _querystring = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-rsc] (ecmascript)"); -function parseRelativeUrl(url, base, parseQuery = true) { - const globalBase = new URL(("TURBOPACK compile-time truthy", 1) ? 'http://n' : "TURBOPACK unreachable"); - const resolvedBase = base ? new URL(base, globalBase) : url.startsWith('.') ? new URL(("TURBOPACK compile-time truthy", 1) ? 'http://n' : "TURBOPACK unreachable") : globalBase; - const { pathname, searchParams, search, hash, href, origin } = new URL(url, resolvedBase); - if (origin !== globalBase.origin) { - throw Object.defineProperty(new Error(`invariant: invalid relative URL, router received ${url}`), "__NEXT_ERROR_CODE", { - value: "E159", - enumerable: false, - configurable: true - }); - } - return { - pathname, - query: parseQuery ? (0, _querystring.searchParamsToUrlQuery)(searchParams) : undefined, - search, - hash, - href: href.slice(origin.length), - // We don't know for relative URLs at this point since we set a custom, internal - // base that isn't surfaced to users. - slashes: undefined - }; -} //# sourceMappingURL=parse-relative-url.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/parse-url.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "parseUrl", { - enumerable: true, - get: function() { - return parseUrl; - } -}); -const _querystring = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-rsc] (ecmascript)"); -const _parserelativeurl = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js [app-rsc] (ecmascript)"); -function parseUrl(url) { - if (url.startsWith('/')) { - return (0, _parserelativeurl.parseRelativeUrl)(url); - } - const parsedURL = new URL(url); - return { - hash: parsedURL.hash, - hostname: parsedURL.hostname, - href: parsedURL.href, - pathname: parsedURL.pathname, - port: parsedURL.port, - protocol: parsedURL.protocol, - query: (0, _querystring.searchParamsToUrlQuery)(parsedURL.searchParams), - search: parsedURL.search, - origin: parsedURL.origin, - slashes: parsedURL.href.slice(parsedURL.protocol.length, parsedURL.protocol.length + 2) === '//' - }; -} //# sourceMappingURL=parse-url.js.map -}), -"[project]/node_modules/next/dist/compiled/cookie/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/cookie") + "/"; - var e = {}; - (()=>{ - var r = e; - /*! - * cookie - * Copyright(c) 2012-2014 Roman Shtylman - * Copyright(c) 2015 Douglas Christopher Wilson - * MIT Licensed - */ r.parse = parse; - r.serialize = serialize; - var i = decodeURIComponent; - var t = encodeURIComponent; - var a = /; */; - var n = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/; - function parse(e, r) { - if (typeof e !== "string") { - throw new TypeError("argument str must be a string"); - } - var t = {}; - var n = r || {}; - var o = e.split(a); - var s = n.decode || i; - for(var p = 0; p < o.length; p++){ - var f = o[p]; - var u = f.indexOf("="); - if (u < 0) { - continue; - } - var v = f.substr(0, u).trim(); - var c = f.substr(++u, f.length).trim(); - if ('"' == c[0]) { - c = c.slice(1, -1); - } - if (undefined == t[v]) { - t[v] = tryDecode(c, s); - } - } - return t; - } - function serialize(e, r, i) { - var a = i || {}; - var o = a.encode || t; - if (typeof o !== "function") { - throw new TypeError("option encode is invalid"); - } - if (!n.test(e)) { - throw new TypeError("argument name is invalid"); - } - var s = o(r); - if (s && !n.test(s)) { - throw new TypeError("argument val is invalid"); - } - var p = e + "=" + s; - if (null != a.maxAge) { - var f = a.maxAge - 0; - if (isNaN(f) || !isFinite(f)) { - throw new TypeError("option maxAge is invalid"); - } - p += "; Max-Age=" + Math.floor(f); - } - if (a.domain) { - if (!n.test(a.domain)) { - throw new TypeError("option domain is invalid"); - } - p += "; Domain=" + a.domain; - } - if (a.path) { - if (!n.test(a.path)) { - throw new TypeError("option path is invalid"); - } - p += "; Path=" + a.path; - } - if (a.expires) { - if (typeof a.expires.toUTCString !== "function") { - throw new TypeError("option expires is invalid"); - } - p += "; Expires=" + a.expires.toUTCString(); - } - if (a.httpOnly) { - p += "; HttpOnly"; - } - if (a.secure) { - p += "; Secure"; - } - if (a.sameSite) { - var u = typeof a.sameSite === "string" ? a.sameSite.toLowerCase() : a.sameSite; - switch(u){ - case true: - p += "; SameSite=Strict"; - break; - case "lax": - p += "; SameSite=Lax"; - break; - case "strict": - p += "; SameSite=Strict"; - break; - case "none": - p += "; SameSite=None"; - break; - default: - throw new TypeError("option sameSite is invalid"); - } - } - return p; - } - function tryDecode(e, r) { - try { - return r(e); - } catch (r) { - return e; - } - } - })(); - module.exports = e; -})(); -}), -"[project]/node_modules/next/dist/server/api-utils/get-cookie-parser.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getCookieParser", { - enumerable: true, - get: function() { - return getCookieParser; - } -}); -function getCookieParser(headers) { - return function parseCookie() { - const { cookie } = headers; - if (!cookie) { - return {}; - } - const { parse: parseCookieFn } = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/cookie/index.js [app-rsc] (ecmascript)"); - return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie); - }; -} //# sourceMappingURL=get-cookie-parser.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - compileNonPath: null, - matchHas: null, - parseDestination: null, - prepareDestination: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - compileNonPath: function() { - return compileNonPath; - }, - matchHas: function() { - return matchHas; - }, - parseDestination: function() { - return parseDestination; - }, - prepareDestination: function() { - return prepareDestination; - } -}); -const _escaperegexp = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/escape-regexp.js [app-rsc] (ecmascript)"); -const _parseurl = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-url.js [app-rsc] (ecmascript)"); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -const _getcookieparser = __turbopack_context__.r("[project]/node_modules/next/dist/server/api-utils/get-cookie-parser.js [app-rsc] (ecmascript)"); -const _routematchutils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js [app-rsc] (ecmascript)"); -/** - * Ensure only a-zA-Z are used for param names for proper interpolating - * with path-to-regexp - */ function getSafeParamName(paramName) { - let newParamName = ''; - for(let i = 0; i < paramName.length; i++){ - const charCode = paramName.charCodeAt(i); - if (charCode > 64 && charCode < 91 || // A-Z - charCode > 96 && charCode < 123 // a-z - ) { - newParamName += paramName[i]; - } - } - return newParamName; -} -function escapeSegment(str, segmentName) { - return str.replace(new RegExp(`:${(0, _escaperegexp.escapeStringRegexp)(segmentName)}`, 'g'), `__ESC_COLON_${segmentName}`); -} -function unescapeSegments(str) { - return str.replace(/__ESC_COLON_/gi, ':'); -} -function matchHas(req, query, has = [], missing = []) { - const params = {}; - const hasMatch = (hasItem)=>{ - let value; - let key = hasItem.key; - switch(hasItem.type){ - case 'header': - { - key = key.toLowerCase(); - value = req.headers[key]; - break; - } - case 'cookie': - { - if ('cookies' in req) { - value = req.cookies[hasItem.key]; - } else { - const cookies = (0, _getcookieparser.getCookieParser)(req.headers)(); - value = cookies[hasItem.key]; - } - break; - } - case 'query': - { - value = query[key]; - break; - } - case 'host': - { - const { host } = req?.headers || {}; - // remove port from host if present - const hostname = host?.split(':', 1)[0].toLowerCase(); - value = hostname; - break; - } - default: - { - break; - } - } - if (!hasItem.value && value) { - params[getSafeParamName(key)] = value; - return true; - } else if (value) { - const matcher = new RegExp(`^${hasItem.value}$`); - const matches = Array.isArray(value) ? value.slice(-1)[0].match(matcher) : value.match(matcher); - if (matches) { - if (Array.isArray(matches)) { - if (matches.groups) { - Object.keys(matches.groups).forEach((groupKey)=>{ - params[groupKey] = matches.groups[groupKey]; - }); - } else if (hasItem.type === 'host' && matches[0]) { - params.host = matches[0]; - } - } - return true; - } - } - return false; - }; - const allMatch = has.every((item)=>hasMatch(item)) && !missing.some((item)=>hasMatch(item)); - if (allMatch) { - return params; - } - return false; -} -function compileNonPath(value, params) { - if (!value.includes(':')) { - return value; - } - for (const key of Object.keys(params)){ - if (value.includes(`:${key}`)) { - value = value.replace(new RegExp(`:${key}\\*`, 'g'), `:${key}--ESCAPED_PARAM_ASTERISKS`).replace(new RegExp(`:${key}\\?`, 'g'), `:${key}--ESCAPED_PARAM_QUESTION`).replace(new RegExp(`:${key}\\+`, 'g'), `:${key}--ESCAPED_PARAM_PLUS`).replace(new RegExp(`:${key}(?!\\w)`, 'g'), `--ESCAPED_PARAM_COLON${key}`); - } - } - value = value.replace(/(:|\*|\?|\+|\(|\)|\{|\})/g, '\\$1').replace(/--ESCAPED_PARAM_PLUS/g, '+').replace(/--ESCAPED_PARAM_COLON/g, ':').replace(/--ESCAPED_PARAM_QUESTION/g, '?').replace(/--ESCAPED_PARAM_ASTERISKS/g, '*'); - // the value needs to start with a forward-slash to be compiled - // correctly - return (0, _routematchutils.safeCompile)(`/${value}`, { - validate: false - })(params).slice(1); -} -function parseDestination(args) { - let escaped = args.destination; - for (const param of Object.keys({ - ...args.params, - ...args.query - })){ - if (!param) continue; - escaped = escapeSegment(escaped, param); - } - const parsed = (0, _parseurl.parseUrl)(escaped); - let pathname = parsed.pathname; - if (pathname) { - pathname = unescapeSegments(pathname); - } - let href = parsed.href; - if (href) { - href = unescapeSegments(href); - } - let hostname = parsed.hostname; - if (hostname) { - hostname = unescapeSegments(hostname); - } - let hash = parsed.hash; - if (hash) { - hash = unescapeSegments(hash); - } - let search = parsed.search; - if (search) { - search = unescapeSegments(search); - } - let origin = parsed.origin; - if (origin) { - origin = unescapeSegments(origin); - } - return { - ...parsed, - pathname, - hostname, - href, - hash, - search, - origin - }; -} -function prepareDestination(args) { - const parsedDestination = parseDestination(args); - const { hostname: destHostname, query: destQuery, search: destSearch } = parsedDestination; - // The following code assumes that the pathname here includes the hash if it's - // present. - let destPath = parsedDestination.pathname; - if (parsedDestination.hash) { - destPath = `${destPath}${parsedDestination.hash}`; - } - const destParams = []; - const destPathParamKeys = []; - (0, _routematchutils.safePathToRegexp)(destPath, destPathParamKeys); - for (const key of destPathParamKeys){ - destParams.push(key.name); - } - if (destHostname) { - const destHostnameParamKeys = []; - (0, _routematchutils.safePathToRegexp)(destHostname, destHostnameParamKeys); - for (const key of destHostnameParamKeys){ - destParams.push(key.name); - } - } - const destPathCompiler = (0, _routematchutils.safeCompile)(destPath, // have already validated before we got to this point and validating - // breaks compiling destinations with named pattern params from the source - // e.g. /something:hello(.*) -> /another/:hello is broken with validation - // since compile validation is meant for reversing and not for inserting - // params from a separate path-regex into another - { - validate: false - }); - let destHostnameCompiler; - if (destHostname) { - destHostnameCompiler = (0, _routematchutils.safeCompile)(destHostname, { - validate: false - }); - } - // update any params in query values - for (const [key, strOrArray] of Object.entries(destQuery)){ - // the value needs to start with a forward-slash to be compiled - // correctly - if (Array.isArray(strOrArray)) { - destQuery[key] = strOrArray.map((value)=>compileNonPath(unescapeSegments(value), args.params)); - } else if (typeof strOrArray === 'string') { - destQuery[key] = compileNonPath(unescapeSegments(strOrArray), args.params); - } - } - // add path params to query if it's not a redirect and not - // already defined in destination query or path - let paramKeys = Object.keys(args.params).filter((name)=>name !== 'nextInternalLocale'); - if (args.appendParamsToQuery && !paramKeys.some((key)=>destParams.includes(key))) { - for (const key of paramKeys){ - if (!(key in destQuery)) { - destQuery[key] = args.params[key]; - } - } - } - let newUrl; - // The compiler also that the interception route marker is an unnamed param, hence '0', - // so we need to add it to the params object. - if ((0, _interceptionroutes.isInterceptionRouteAppPath)(destPath)) { - for (const segment of destPath.split('/')){ - const marker = _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - if (marker === '(..)(..)') { - args.params['0'] = '(..)'; - args.params['1'] = '(..)'; - } else { - args.params['0'] = marker; - } - break; - } - } - } - try { - newUrl = destPathCompiler(args.params); - const [pathname, hash] = newUrl.split('#', 2); - if (destHostnameCompiler) { - parsedDestination.hostname = destHostnameCompiler(args.params); - } - parsedDestination.pathname = pathname; - parsedDestination.hash = `${hash ? '#' : ''}${hash || ''}`; - parsedDestination.search = destSearch ? compileNonPath(destSearch, args.params) : ''; - } catch (err) { - if (err.message.match(/Expected .*? to not repeat, but got an array/)) { - throw Object.defineProperty(new Error(`To use a multi-match in the destination you must add \`*\` at the end of the param name to signify it should repeat. https://nextjs.org/docs/messages/invalid-multi-match`), "__NEXT_ERROR_CODE", { - value: "E329", - enumerable: false, - configurable: true - }); - } - throw err; - } - // Query merge order lowest priority to highest - // 1. initial URL query values - // 2. path segment values - // 3. destination specified query values - parsedDestination.query = { - ...args.query, - ...parsedDestination.query - }; - return { - newUrl, - destQuery, - parsedDestination - }; -} //# sourceMappingURL=prepare-destination.js.map -}), -"[project]/node_modules/next/dist/server/web/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - fromNodeOutgoingHttpHeaders: null, - normalizeNextQueryParam: null, - splitCookiesString: null, - toNodeOutgoingHttpHeaders: null, - validateURL: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - fromNodeOutgoingHttpHeaders: function() { - return fromNodeOutgoingHttpHeaders; - }, - normalizeNextQueryParam: function() { - return normalizeNextQueryParam; - }, - splitCookiesString: function() { - return splitCookiesString; - }, - toNodeOutgoingHttpHeaders: function() { - return toNodeOutgoingHttpHeaders; - }, - validateURL: function() { - return validateURL; - } -}); -const _constants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/constants.js [app-rsc] (ecmascript)"); -function fromNodeOutgoingHttpHeaders(nodeHeaders) { - const headers = new Headers(); - for (let [key, value] of Object.entries(nodeHeaders)){ - const values = Array.isArray(value) ? value : [ - value - ]; - for (let v of values){ - if (typeof v === 'undefined') continue; - if (typeof v === 'number') { - v = v.toString(); - } - headers.append(key, v); - } - } - return headers; -} -function splitCookiesString(cookiesString) { - var cookiesStrings = []; - var pos = 0; - var start; - var ch; - var lastComma; - var nextStart; - var cookiesSeparatorFound; - function skipWhitespace() { - while(pos < cookiesString.length && /\s/.test(cookiesString.charAt(pos))){ - pos += 1; - } - return pos < cookiesString.length; - } - function notSpecialChar() { - ch = cookiesString.charAt(pos); - return ch !== '=' && ch !== ';' && ch !== ','; - } - while(pos < cookiesString.length){ - start = pos; - cookiesSeparatorFound = false; - while(skipWhitespace()){ - ch = cookiesString.charAt(pos); - if (ch === ',') { - // ',' is a cookie separator if we have later first '=', not ';' or ',' - lastComma = pos; - pos += 1; - skipWhitespace(); - nextStart = pos; - while(pos < cookiesString.length && notSpecialChar()){ - pos += 1; - } - // currently special character - if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') { - // we found cookies separator - cookiesSeparatorFound = true; - // pos is inside the next cookie, so back up and return it. - pos = nextStart; - cookiesStrings.push(cookiesString.substring(start, lastComma)); - start = pos; - } else { - // in param ',' or param separator ';', - // we continue from that comma - pos = lastComma + 1; - } - } else { - pos += 1; - } - } - if (!cookiesSeparatorFound || pos >= cookiesString.length) { - cookiesStrings.push(cookiesString.substring(start, cookiesString.length)); - } - } - return cookiesStrings; -} -function toNodeOutgoingHttpHeaders(headers) { - const nodeHeaders = {}; - const cookies = []; - if (headers) { - for (const [key, value] of headers.entries()){ - if (key.toLowerCase() === 'set-cookie') { - // We may have gotten a comma joined string of cookies, or multiple - // set-cookie headers. We need to merge them into one header array - // to represent all the cookies. - cookies.push(...splitCookiesString(value)); - nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies; - } else { - nodeHeaders[key] = value; - } - } - } - return nodeHeaders; -} -function validateURL(url) { - try { - return String(new URL(String(url))); - } catch (error) { - throw Object.defineProperty(new Error(`URL is malformed "${String(url)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`, { - cause: error - }), "__NEXT_ERROR_CODE", { - value: "E61", - enumerable: false, - configurable: true - }); - } -} -function normalizeNextQueryParam(key) { - const prefixes = [ - _constants.NEXT_QUERY_PARAM_PREFIX, - _constants.NEXT_INTERCEPTION_MARKER_PREFIX - ]; - for (const prefix of prefixes){ - if (key !== prefix && key.startsWith(prefix)) { - return key.substring(prefix.length); - } - } - return null; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/server/lib/decode-query-path-parameter.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Decodes a query path parameter. - * - * @param value - The value to decode. - * @returns The decoded value. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "decodeQueryPathParameter", { - enumerable: true, - get: function() { - return decodeQueryPathParameter; - } -}); -function decodeQueryPathParameter(value) { - // When deployed to Vercel, the value may be encoded, so this attempts to - // decode it and returns the original value if it fails. - try { - return decodeURIComponent(value); - } catch { - return value; - } -} //# sourceMappingURL=decode-query-path-parameter.js.map -}), -"[project]/node_modules/next/dist/client/components/app-router-headers.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ACTION_HEADER: null, - FLIGHT_HEADERS: null, - NEXT_ACTION_NOT_FOUND_HEADER: null, - NEXT_ACTION_REVALIDATED_HEADER: null, - NEXT_DID_POSTPONE_HEADER: null, - NEXT_HMR_REFRESH_HASH_COOKIE: null, - NEXT_HMR_REFRESH_HEADER: null, - NEXT_HTML_REQUEST_ID_HEADER: null, - NEXT_IS_PRERENDER_HEADER: null, - NEXT_REQUEST_ID_HEADER: null, - NEXT_REWRITTEN_PATH_HEADER: null, - NEXT_REWRITTEN_QUERY_HEADER: null, - NEXT_ROUTER_PREFETCH_HEADER: null, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER: null, - NEXT_ROUTER_STALE_TIME_HEADER: null, - NEXT_ROUTER_STATE_TREE_HEADER: null, - NEXT_RSC_UNION_QUERY: null, - NEXT_URL: null, - RSC_CONTENT_TYPE_HEADER: null, - RSC_HEADER: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ACTION_HEADER: function() { - return ACTION_HEADER; - }, - FLIGHT_HEADERS: function() { - return FLIGHT_HEADERS; - }, - NEXT_ACTION_NOT_FOUND_HEADER: function() { - return NEXT_ACTION_NOT_FOUND_HEADER; - }, - NEXT_ACTION_REVALIDATED_HEADER: function() { - return NEXT_ACTION_REVALIDATED_HEADER; - }, - NEXT_DID_POSTPONE_HEADER: function() { - return NEXT_DID_POSTPONE_HEADER; - }, - NEXT_HMR_REFRESH_HASH_COOKIE: function() { - return NEXT_HMR_REFRESH_HASH_COOKIE; - }, - NEXT_HMR_REFRESH_HEADER: function() { - return NEXT_HMR_REFRESH_HEADER; - }, - NEXT_HTML_REQUEST_ID_HEADER: function() { - return NEXT_HTML_REQUEST_ID_HEADER; - }, - NEXT_IS_PRERENDER_HEADER: function() { - return NEXT_IS_PRERENDER_HEADER; - }, - NEXT_REQUEST_ID_HEADER: function() { - return NEXT_REQUEST_ID_HEADER; - }, - NEXT_REWRITTEN_PATH_HEADER: function() { - return NEXT_REWRITTEN_PATH_HEADER; - }, - NEXT_REWRITTEN_QUERY_HEADER: function() { - return NEXT_REWRITTEN_QUERY_HEADER; - }, - NEXT_ROUTER_PREFETCH_HEADER: function() { - return NEXT_ROUTER_PREFETCH_HEADER; - }, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER: function() { - return NEXT_ROUTER_SEGMENT_PREFETCH_HEADER; - }, - NEXT_ROUTER_STALE_TIME_HEADER: function() { - return NEXT_ROUTER_STALE_TIME_HEADER; - }, - NEXT_ROUTER_STATE_TREE_HEADER: function() { - return NEXT_ROUTER_STATE_TREE_HEADER; - }, - NEXT_RSC_UNION_QUERY: function() { - return NEXT_RSC_UNION_QUERY; - }, - NEXT_URL: function() { - return NEXT_URL; - }, - RSC_CONTENT_TYPE_HEADER: function() { - return RSC_CONTENT_TYPE_HEADER; - }, - RSC_HEADER: function() { - return RSC_HEADER; - } -}); -const RSC_HEADER = 'rsc'; -const ACTION_HEADER = 'next-action'; -const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree'; -const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch'; -const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER = 'next-router-segment-prefetch'; -const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh'; -const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__'; -const NEXT_URL = 'next-url'; -const RSC_CONTENT_TYPE_HEADER = 'text/x-component'; -const FLIGHT_HEADERS = [ - RSC_HEADER, - NEXT_ROUTER_STATE_TREE_HEADER, - NEXT_ROUTER_PREFETCH_HEADER, - NEXT_HMR_REFRESH_HEADER, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER -]; -const NEXT_RSC_UNION_QUERY = '_rsc'; -const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time'; -const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed'; -const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path'; -const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query'; -const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender'; -const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found'; -const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id'; -const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id'; -const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated'; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-router-headers.js.map -}), -"[project]/node_modules/next/dist/lib/url.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - isFullStringUrl: null, - parseReqUrl: null, - parseUrl: null, - stripNextRscUnionQuery: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - isFullStringUrl: function() { - return isFullStringUrl; - }, - parseReqUrl: function() { - return parseReqUrl; - }, - parseUrl: function() { - return parseUrl; - }, - stripNextRscUnionQuery: function() { - return stripNextRscUnionQuery; - } -}); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -const DUMMY_ORIGIN = 'http://n'; -function isFullStringUrl(url) { - return /https?:\/\//.test(url); -} -function parseUrl(url) { - let parsed = undefined; - try { - parsed = new URL(url, DUMMY_ORIGIN); - } catch {} - return parsed; -} -function parseReqUrl(url) { - const parsedUrl = parseUrl(url); - if (!parsedUrl) { - return; - } - const query = {}; - for (const key of parsedUrl.searchParams.keys()){ - const values = parsedUrl.searchParams.getAll(key); - query[key] = values.length > 1 ? values : values[0]; - } - const legacyUrl = { - query, - hash: parsedUrl.hash, - search: parsedUrl.search, - path: parsedUrl.pathname, - pathname: parsedUrl.pathname, - href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`, - host: '', - hostname: '', - auth: '', - protocol: '', - slashes: null, - port: '' - }; - return legacyUrl; -} -function stripNextRscUnionQuery(relativeUrl) { - const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN); - urlInstance.searchParams.delete(_approuterheaders.NEXT_RSC_UNION_QUERY); - return urlInstance.pathname + urlInstance.search; -} //# sourceMappingURL=url.js.map -}), -"[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -function _getRequireWildcardCache(nodeInterop) { - if (typeof WeakMap !== "function") return null; - var cacheBabelInterop = new WeakMap(); - var cacheNodeInterop = new WeakMap(); - return (_getRequireWildcardCache = function(nodeInterop) { - return nodeInterop ? cacheNodeInterop : cacheBabelInterop; - })(nodeInterop); -} -function _interop_require_wildcard(obj, nodeInterop) { - if (!nodeInterop && obj && obj.__esModule) return obj; - if (obj === null || typeof obj !== "object" && typeof obj !== "function") return { - default: obj - }; - var cache = _getRequireWildcardCache(nodeInterop); - if (cache && cache.has(obj)) return cache.get(obj); - var newObj = { - __proto__: null - }; - var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; - for(var key in obj){ - if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { - var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; - if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc); - else newObj[key] = obj[key]; - } - } - newObj.default = obj; - if (cache) cache.set(obj, newObj); - return newObj; -} -exports._ = _interop_require_wildcard; -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/format-url.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// Format function modified from nodejs -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - formatUrl: null, - formatWithValidation: null, - urlObjectKeys: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - formatUrl: function() { - return formatUrl; - }, - formatWithValidation: function() { - return formatWithValidation; - }, - urlObjectKeys: function() { - return urlObjectKeys; - } -}); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-rsc] (ecmascript)"); -const _querystring = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-rsc] (ecmascript)")); -const slashedProtocols = /https?|ftp|gopher|file/; -function formatUrl(urlObj) { - let { auth, hostname } = urlObj; - let protocol = urlObj.protocol || ''; - let pathname = urlObj.pathname || ''; - let hash = urlObj.hash || ''; - let query = urlObj.query || ''; - let host = false; - auth = auth ? encodeURIComponent(auth).replace(/%3A/i, ':') + '@' : ''; - if (urlObj.host) { - host = auth + urlObj.host; - } else if (hostname) { - host = auth + (~hostname.indexOf(':') ? `[${hostname}]` : hostname); - if (urlObj.port) { - host += ':' + urlObj.port; - } - } - if (query && typeof query === 'object') { - query = String(_querystring.urlQueryToSearchParams(query)); - } - let search = urlObj.search || query && `?${query}` || ''; - if (protocol && !protocol.endsWith(':')) protocol += ':'; - if (urlObj.slashes || (!protocol || slashedProtocols.test(protocol)) && host !== false) { - host = '//' + (host || ''); - if (pathname && pathname[0] !== '/') pathname = '/' + pathname; - } else if (!host) { - host = ''; - } - if (hash && hash[0] !== '#') hash = '#' + hash; - if (search && search[0] !== '?') search = '?' + search; - pathname = pathname.replace(/[?#]/g, encodeURIComponent); - search = search.replace('#', '%23'); - return `${protocol}${host}${pathname}${search}${hash}`; -} -const urlObjectKeys = [ - 'auth', - 'hash', - 'host', - 'hostname', - 'href', - 'path', - 'pathname', - 'port', - 'protocol', - 'query', - 'search', - 'slashes' -]; -function formatWithValidation(url) { - if ("TURBOPACK compile-time truthy", 1) { - if (url !== null && typeof url === 'object') { - Object.keys(url).forEach((key)=>{ - if (!urlObjectKeys.includes(key)) { - console.warn(`Unknown key passed via urlObject into url.format: ${key}`); - } - }); - } - } - return formatUrl(url); -} //# sourceMappingURL=format-url.js.map -}), -"[project]/node_modules/next/dist/server/server-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getPreviouslyRevalidatedTags: null, - getServerUtils: null, - interpolateDynamicPath: null, - normalizeCdnUrl: null, - normalizeDynamicRouteParams: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getPreviouslyRevalidatedTags: function() { - return getPreviouslyRevalidatedTags; - }, - getServerUtils: function() { - return getServerUtils; - }, - interpolateDynamicPath: function() { - return interpolateDynamicPath; - }, - normalizeCdnUrl: function() { - return normalizeCdnUrl; - }, - normalizeDynamicRouteParams: function() { - return normalizeDynamicRouteParams; - } -}); -const _normalizelocalepath = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js [app-rsc] (ecmascript)"); -const _pathmatch = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/path-match.js [app-rsc] (ecmascript)"); -const _routeregex = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-regex.js [app-rsc] (ecmascript)"); -const _routematcher = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-matcher.js [app-rsc] (ecmascript)"); -const _preparedestination = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js [app-rsc] (ecmascript)"); -const _removetrailingslash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)"); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -const _constants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/constants.js [app-rsc] (ecmascript)"); -const _utils = __turbopack_context__.r("[project]/node_modules/next/dist/server/web/utils.js [app-rsc] (ecmascript)"); -const _decodequerypathparameter = __turbopack_context__.r("[project]/node_modules/next/dist/server/lib/decode-query-path-parameter.js [app-rsc] (ecmascript)"); -const _url = __turbopack_context__.r("[project]/node_modules/next/dist/lib/url.js [app-rsc] (ecmascript)"); -const _formaturl = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/format-url.js [app-rsc] (ecmascript)"); -function filterInternalQuery(query, paramKeys) { - // this is used to pass query information in rewrites - // but should not be exposed in final query - delete query['nextInternalLocale']; - for(const key in query){ - const isNextQueryPrefix = key !== _constants.NEXT_QUERY_PARAM_PREFIX && key.startsWith(_constants.NEXT_QUERY_PARAM_PREFIX); - const isNextInterceptionMarkerPrefix = key !== _constants.NEXT_INTERCEPTION_MARKER_PREFIX && key.startsWith(_constants.NEXT_INTERCEPTION_MARKER_PREFIX); - if (isNextQueryPrefix || isNextInterceptionMarkerPrefix || paramKeys.includes(key)) { - delete query[key]; - } - } -} -function normalizeCdnUrl(req, paramKeys) { - // make sure to normalize req.url from CDNs to strip dynamic and rewrite - // params from the query which are added during routing - const _parsedUrl = (0, _url.parseReqUrl)(req.url); - // we can't normalize if we can't parse - if (!_parsedUrl) { - return req.url; - } - delete _parsedUrl.search; - filterInternalQuery(_parsedUrl.query, paramKeys); - req.url = (0, _formaturl.formatUrl)(_parsedUrl); -} -function interpolateDynamicPath(pathname, params, defaultRouteRegex) { - if (!defaultRouteRegex) return pathname; - for (const param of Object.keys(defaultRouteRegex.groups)){ - const { optional, repeat } = defaultRouteRegex.groups[param]; - let builtParam = `[${repeat ? '...' : ''}${param}]`; - if (optional) { - builtParam = `[${builtParam}]`; - } - let paramValue; - const value = params[param]; - if (Array.isArray(value)) { - paramValue = value.map((v)=>v && encodeURIComponent(v)).join('/'); - } else if (value) { - paramValue = encodeURIComponent(value); - } else { - paramValue = ''; - } - if (paramValue || optional) { - pathname = pathname.replaceAll(builtParam, paramValue); - } - } - return pathname; -} -function normalizeDynamicRouteParams(query, defaultRouteRegex, defaultRouteMatches, ignoreMissingOptional) { - let hasValidParams = true; - let params = {}; - for (const key of Object.keys(defaultRouteRegex.groups)){ - let value = query[key]; - if (typeof value === 'string') { - value = (0, _apppaths.normalizeRscURL)(value); - } else if (Array.isArray(value)) { - value = value.map(_apppaths.normalizeRscURL); - } - // if the value matches the default value we can't rely - // on the parsed params, this is used to signal if we need - // to parse x-now-route-matches or not - const defaultValue = defaultRouteMatches[key]; - const isOptional = defaultRouteRegex.groups[key].optional; - const isDefaultValue = Array.isArray(defaultValue) ? defaultValue.some((defaultVal)=>{ - return Array.isArray(value) ? value.some((val)=>val.includes(defaultVal)) : value == null ? void 0 : value.includes(defaultVal); - }) : value == null ? void 0 : value.includes(defaultValue); - if (isDefaultValue || typeof value === 'undefined' && !(isOptional && ignoreMissingOptional)) { - return { - params: {}, - hasValidParams: false - }; - } - // non-provided optional values should be undefined so normalize - // them to undefined - if (isOptional && (!value || Array.isArray(value) && value.length === 1 && // fallback optional catch-all SSG pages have - // [[...paramName]] for the root path on Vercel - (value[0] === 'index' || value[0] === `[[...${key}]]`) || value === 'index' || value === `[[...${key}]]`)) { - value = undefined; - delete query[key]; - } - // query values from the proxy aren't already split into arrays - // so make sure to normalize catch-all values - if (value && typeof value === 'string' && defaultRouteRegex.groups[key].repeat) { - value = value.split('/'); - } - if (value) { - params[key] = value; - } - } - return { - params, - hasValidParams - }; -} -function getServerUtils({ page, i18n, basePath, rewrites, pageIsDynamic, trailingSlash, caseSensitive }) { - let defaultRouteRegex; - let dynamicRouteMatcher; - let defaultRouteMatches; - if (pageIsDynamic) { - defaultRouteRegex = (0, _routeregex.getNamedRouteRegex)(page, { - prefixRouteKeys: false - }); - dynamicRouteMatcher = (0, _routematcher.getRouteMatcher)(defaultRouteRegex); - defaultRouteMatches = dynamicRouteMatcher(page); - } - function handleRewrites(req, parsedUrl) { - // Here we deep clone the parsedUrl to avoid mutating the original. We also - // cast this to a mutable type so we can mutate it within this scope. - const rewrittenParsedUrl = structuredClone(parsedUrl); - const rewriteParams = {}; - let fsPathname = rewrittenParsedUrl.pathname; - const matchesPage = ()=>{ - const fsPathnameNoSlash = (0, _removetrailingslash.removeTrailingSlash)(fsPathname || ''); - return fsPathnameNoSlash === (0, _removetrailingslash.removeTrailingSlash)(page) || (dynamicRouteMatcher == null ? void 0 : dynamicRouteMatcher(fsPathnameNoSlash)); - }; - const checkRewrite = (rewrite)=>{ - const matcher = (0, _pathmatch.getPathMatch)(rewrite.source + (trailingSlash ? '(/)?' : ''), { - removeUnnamedParams: true, - strict: true, - sensitive: !!caseSensitive - }); - if (!rewrittenParsedUrl.pathname) return false; - let params = matcher(rewrittenParsedUrl.pathname); - if ((rewrite.has || rewrite.missing) && params) { - const hasParams = (0, _preparedestination.matchHas)(req, rewrittenParsedUrl.query, rewrite.has, rewrite.missing); - if (hasParams) { - Object.assign(params, hasParams); - } else { - params = false; - } - } - if (params) { - const { parsedDestination, destQuery } = (0, _preparedestination.prepareDestination)({ - appendParamsToQuery: true, - destination: rewrite.destination, - params: params, - query: rewrittenParsedUrl.query - }); - // if the rewrite destination is external break rewrite chain - if (parsedDestination.protocol) { - return true; - } - Object.assign(rewriteParams, destQuery, params); - Object.assign(rewrittenParsedUrl.query, parsedDestination.query); - delete parsedDestination.query; - Object.assign(rewrittenParsedUrl, parsedDestination); - fsPathname = rewrittenParsedUrl.pathname; - if (!fsPathname) return false; - if (basePath) { - fsPathname = fsPathname.replace(new RegExp(`^${basePath}`), '') || '/'; - } - if (i18n) { - const result = (0, _normalizelocalepath.normalizeLocalePath)(fsPathname, i18n.locales); - fsPathname = result.pathname; - rewrittenParsedUrl.query.nextInternalLocale = result.detectedLocale || params.nextInternalLocale; - } - if (fsPathname === page) { - return true; - } - if (pageIsDynamic && dynamicRouteMatcher) { - const dynamicParams = dynamicRouteMatcher(fsPathname); - if (dynamicParams) { - rewrittenParsedUrl.query = { - ...rewrittenParsedUrl.query, - ...dynamicParams - }; - return true; - } - } - } - return false; - }; - for (const rewrite of rewrites.beforeFiles || []){ - checkRewrite(rewrite); - } - if (fsPathname !== page) { - let finished = false; - for (const rewrite of rewrites.afterFiles || []){ - finished = checkRewrite(rewrite); - if (finished) break; - } - if (!finished && !matchesPage()) { - for (const rewrite of rewrites.fallback || []){ - finished = checkRewrite(rewrite); - if (finished) break; - } - } - } - return { - rewriteParams, - rewrittenParsedUrl - }; - } - function getParamsFromRouteMatches(routeMatchesHeader) { - // If we don't have a default route regex, we can't get params from route - // matches - if (!defaultRouteRegex) return null; - const { groups, routeKeys } = defaultRouteRegex; - const matcher = (0, _routematcher.getRouteMatcher)({ - re: { - // Simulate a RegExp match from the \`req.url\` input - exec: (str)=>{ - // Normalize all the prefixed query params. - const obj = Object.fromEntries(new URLSearchParams(str)); - for (const [key, value] of Object.entries(obj)){ - const normalizedKey = (0, _utils.normalizeNextQueryParam)(key); - if (!normalizedKey) continue; - obj[normalizedKey] = value; - delete obj[key]; - } - // Use all the named route keys. - const result = {}; - for (const keyName of Object.keys(routeKeys)){ - const paramName = routeKeys[keyName]; - // If this param name is not a valid parameter name, then skip it. - if (!paramName) continue; - const group = groups[paramName]; - const value = obj[keyName]; - // When we're missing a required param, we can't match the route. - if (!group.optional && !value) return null; - result[group.pos] = value; - } - return result; - } - }, - groups - }); - const routeMatches = matcher(routeMatchesHeader); - if (!routeMatches) return null; - return routeMatches; - } - function normalizeQueryParams(query, routeParamKeys) { - // this is used to pass query information in rewrites - // but should not be exposed in final query - delete query['nextInternalLocale']; - for (const [key, value] of Object.entries(query)){ - const normalizedKey = (0, _utils.normalizeNextQueryParam)(key); - if (!normalizedKey) continue; - // Remove the prefixed key from the query params because we want - // to consume it for the dynamic route matcher. - delete query[key]; - routeParamKeys.add(normalizedKey); - if (typeof value === 'undefined') continue; - query[normalizedKey] = Array.isArray(value) ? value.map((v)=>(0, _decodequerypathparameter.decodeQueryPathParameter)(v)) : (0, _decodequerypathparameter.decodeQueryPathParameter)(value); - } - } - return { - handleRewrites, - defaultRouteRegex, - dynamicRouteMatcher, - defaultRouteMatches, - normalizeQueryParams, - getParamsFromRouteMatches, - /** - * Normalize dynamic route params. - * - * @param query - The query params to normalize. - * @param ignoreMissingOptional - Whether to ignore missing optional params. - * @returns The normalized params and whether they are valid. - */ normalizeDynamicRouteParams: (query, ignoreMissingOptional)=>{ - if (!defaultRouteRegex || !defaultRouteMatches) { - return { - params: {}, - hasValidParams: false - }; - } - return normalizeDynamicRouteParams(query, defaultRouteRegex, defaultRouteMatches, ignoreMissingOptional); - }, - normalizeCdnUrl: (req, paramKeys)=>normalizeCdnUrl(req, paramKeys), - interpolateDynamicPath: (pathname, params)=>interpolateDynamicPath(pathname, params, defaultRouteRegex), - filterInternalQuery: (query, paramKeys)=>filterInternalQuery(query, paramKeys) - }; -} -function getPreviouslyRevalidatedTags(headers, previewModeId) { - return typeof headers[_constants.NEXT_CACHE_REVALIDATED_TAGS_HEADER] === 'string' && headers[_constants.NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER] === previewModeId ? headers[_constants.NEXT_CACHE_REVALIDATED_TAGS_HEADER].split(',') : []; -} //# sourceMappingURL=server-utils.js.map -}), -"[project]/node_modules/next/dist/shared/lib/hash.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// http://www.cse.yorku.ca/~oz/hash.html -// More specifically, 32-bit hash via djbxor -// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765) -// This is due to number type differences between rust for turbopack to js number types, -// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching -// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation -// as can gaurantee determinstic output from 32bit hash. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - djb2Hash: null, - hexHash: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - djb2Hash: function() { - return djb2Hash; - }, - hexHash: function() { - return hexHash; - } -}); -function djb2Hash(str) { - let hash = 5381; - for(let i = 0; i < str.length; i++){ - const char = str.charCodeAt(i); - hash = (hash << 5) + hash + char & 0xffffffff; - } - return hash >>> 0; -} -function hexHash(str) { - return djb2Hash(str).toString(36).slice(0, 5); -} //# sourceMappingURL=hash.js.map -}), -"[project]/node_modules/next/dist/lib/metadata/get-metadata-route.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - fillMetadataSegment: null, - normalizeMetadataPageToRoute: null, - normalizeMetadataRoute: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - fillMetadataSegment: function() { - return fillMetadataSegment; - }, - normalizeMetadataPageToRoute: function() { - return normalizeMetadataPageToRoute; - }, - normalizeMetadataRoute: function() { - return normalizeMetadataRoute; - } -}); -const _ismetadataroute = __turbopack_context__.r("[project]/node_modules/next/dist/lib/metadata/is-metadata-route.js [app-rsc] (ecmascript)"); -const _path = /*#__PURE__*/ _interop_require_default(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/isomorphic/path.js [app-rsc] (ecmascript)")); -const _serverutils = __turbopack_context__.r("[project]/node_modules/next/dist/server/server-utils.js [app-rsc] (ecmascript)"); -const _routeregex = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/route-regex.js [app-rsc] (ecmascript)"); -const _hash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hash.js [app-rsc] (ecmascript)"); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -const _normalizepathsep = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js [app-rsc] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-rsc] (ecmascript)"); -function _interop_require_default(obj) { - return obj && obj.__esModule ? obj : { - default: obj - }; -} -/* - * If there's special convention like (...) or @ in the page path, - * Give it a unique hash suffix to avoid conflicts - * - * e.g. - * /opengraph-image -> /opengraph-image - * /(post)/opengraph-image.tsx -> /opengraph-image-[0-9a-z]{6} - * - * Sitemap is an exception, it should not have a suffix. - * Each sitemap contains all the urls of sub routes, we don't have the case of duplicates `/(group)/sitemap.[ext]` and `/sitemap.[ext]` since they should be the same. - * Hence we always normalize the urls for sitemap and do not append hash suffix, and ensure user-land only contains one sitemap per pathname. - * - * /sitemap -> /sitemap - * /(post)/sitemap -> /sitemap - */ function getMetadataRouteSuffix(page) { - // Remove the last segment and get the parent pathname - // e.g. /parent/a/b/c -> /parent/a/b - // e.g. /parent/opengraph-image -> /parent - const parentPathname = _path.default.dirname(page); - // Only apply suffix to metadata routes except for sitemaps - if (page.endsWith('/sitemap') || page.endsWith('/sitemap.xml')) { - return ''; - } - // Calculate the hash suffix based on the parent path - let suffix = ''; - // Check if there's any special characters in the parent pathname. - const segments = parentPathname.split('/'); - if (segments.some((seg)=>(0, _segment.isGroupSegment)(seg) || (0, _segment.isParallelRouteSegment)(seg))) { - // Hash the parent path to get a unique suffix - suffix = (0, _hash.djb2Hash)(parentPathname).toString(36).slice(0, 6); - } - return suffix; -} -function fillMetadataSegment(segment, params, lastSegment) { - const pathname = (0, _apppaths.normalizeAppPath)(segment); - const routeRegex = (0, _routeregex.getNamedRouteRegex)(pathname, { - prefixRouteKeys: false - }); - const route = (0, _serverutils.interpolateDynamicPath)(pathname, params, routeRegex); - const { name, ext } = _path.default.parse(lastSegment); - const pagePath = _path.default.posix.join(segment, name); - const suffix = getMetadataRouteSuffix(pagePath); - const routeSuffix = suffix ? `-${suffix}` : ''; - return (0, _normalizepathsep.normalizePathSep)(_path.default.join(route, `${name}${routeSuffix}${ext}`)); -} -function normalizeMetadataRoute(page) { - if (!(0, _ismetadataroute.isMetadataPage)(page)) { - return page; - } - let route = page; - let suffix = ''; - if (page === '/robots') { - route += '.txt'; - } else if (page === '/manifest') { - route += '.webmanifest'; - } else { - suffix = getMetadataRouteSuffix(page); - } - // Support both / and custom routes //route.ts. - // If it's a metadata file route, we need to append /[id]/route to the page. - if (!route.endsWith('/route')) { - const { dir, name: baseName, ext } = _path.default.parse(route); - route = _path.default.posix.join(dir, `${baseName}${suffix ? `-${suffix}` : ''}${ext}`, 'route'); - } - return route; -} -function normalizeMetadataPageToRoute(page, isDynamic) { - const isRoute = page.endsWith('/route'); - const routePagePath = isRoute ? page.slice(0, -'/route'.length) : page; - const metadataRouteExtension = routePagePath.endsWith('/sitemap') ? '.xml' : ''; - const mapped = isDynamic ? `${routePagePath}/[__metadata_id__]` : `${routePagePath}${metadataRouteExtension}`; - return mapped + (isRoute ? '/route' : ''); -} //# sourceMappingURL=get-metadata-route.js.map -}), -"[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RouteKind", - ()=>RouteKind -]); -var RouteKind = /*#__PURE__*/ function(RouteKind) { - /** - * `PAGES` represents all the React pages that are under `pages/`. - */ RouteKind["PAGES"] = "PAGES"; - /** - * `PAGES_API` represents all the API routes under `pages/api/`. - */ RouteKind["PAGES_API"] = "PAGES_API"; - /** - * `APP_PAGE` represents all the React pages that are under `app/` with the - * filename of `page.{j,t}s{,x}`. - */ RouteKind["APP_PAGE"] = "APP_PAGE"; - /** - * `APP_ROUTE` represents all the API routes and metadata routes that are under `app/` with the - * filename of `route.{j,t}s{,x}`. - */ RouteKind["APP_ROUTE"] = "APP_ROUTE"; - /** - * `IMAGE` represents all the images that are generated by `next/image`. - */ RouteKind["IMAGE"] = "IMAGE"; - return RouteKind; -}({}); //# sourceMappingURL=route-kind.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time truthy", 1) { - module.exports = __turbopack_context__.r("[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)"); - } else //TURBOPACK unreachable - ; - } else //TURBOPACK unreachable - ; - } -} //# sourceMappingURL=module.compiled.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactServerDOMTurbopackServer; //# sourceMappingURL=react-server-dom-turbopack-server.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactServerDOMTurbopackStatic; //# sourceMappingURL=react-server-dom-turbopack-static.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].React; //# sourceMappingURL=react.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/layout-router.js ")); -}), -"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/layout-router.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js ")); -}), -"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/client-page.js ")); -}), -"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/client-page.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/client-segment.js ")); -}), -"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/client-segment.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ReflectAdapter", - ()=>ReflectAdapter -]); -class ReflectAdapter { - static get(target, prop, receiver) { - const value = Reflect.get(target, prop, receiver); - if (typeof value === 'function') { - return value.bind(target); - } - return value; - } - static set(target, prop, value, receiver) { - return Reflect.set(target, prop, value, receiver); - } - static has(target, prop) { - return Reflect.has(target, prop); - } - static deleteProperty(target, prop) { - return Reflect.deleteProperty(target, prop); - } -} //# sourceMappingURL=reflect.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DynamicServerError", - ()=>DynamicServerError, - "isDynamicServerError", - ()=>isDynamicServerError -]); -const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'; -class DynamicServerError extends Error { - constructor(description){ - super(`Dynamic server usage: ${description}`), this.description = description, this.digest = DYNAMIC_ERROR_CODE; - } -} -function isDynamicServerError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') { - return false; - } - return err.digest === DYNAMIC_ERROR_CODE; -} //# sourceMappingURL=hooks-server-context.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "StaticGenBailoutError", - ()=>StaticGenBailoutError, - "isStaticGenBailoutError", - ()=>isStaticGenBailoutError -]); -const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'; -class StaticGenBailoutError extends Error { - constructor(...args){ - super(...args), this.code = NEXT_STATIC_GEN_BAILOUT; - } -} -function isStaticGenBailoutError(error) { - if (typeof error !== 'object' || error === null || !('code' in error)) { - return false; - } - return error.code === NEXT_STATIC_GEN_BAILOUT; -} //# sourceMappingURL=static-generation-bailout.js.map -}), -"[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isHangingPromiseRejectionError", - ()=>isHangingPromiseRejectionError, - "makeDevtoolsIOAwarePromise", - ()=>makeDevtoolsIOAwarePromise, - "makeHangingPromise", - ()=>makeHangingPromise -]); -function isHangingPromiseRejectionError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === HANGING_PROMISE_REJECTION; -} -const HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'; -class HangingPromiseRejectionError extends Error { - constructor(route, expression){ - super(`During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${route}".`), this.route = route, this.expression = expression, this.digest = HANGING_PROMISE_REJECTION; - } -} -const abortListenersBySignal = new WeakMap(); -function makeHangingPromise(signal, route, expression) { - if (signal.aborted) { - return Promise.reject(new HangingPromiseRejectionError(route, expression)); - } else { - const hangingPromise = new Promise((_, reject)=>{ - const boundRejection = reject.bind(null, new HangingPromiseRejectionError(route, expression)); - let currentListeners = abortListenersBySignal.get(signal); - if (currentListeners) { - currentListeners.push(boundRejection); - } else { - const listeners = [ - boundRejection - ]; - abortListenersBySignal.set(signal, listeners); - signal.addEventListener('abort', ()=>{ - for(let i = 0; i < listeners.length; i++){ - listeners[i](); - } - }, { - once: true - }); - } - }); - // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so - // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct - // your own promise out of it you'll need to ensure you handle the error when it rejects. - hangingPromise.catch(ignoreReject); - return hangingPromise; - } -} -function ignoreReject() {} -function makeDevtoolsIOAwarePromise(underlying, requestStore, stage) { - if (requestStore.stagedRendering) { - // We resolve each stage in a timeout, so React DevTools will pick this up as IO. - return requestStore.stagedRendering.delayUntilStage(stage, undefined, underlying); - } - // in React DevTools if we resolve in a setTimeout we will observe - // the promise resolution as something that can suspend a boundary or root. - return new Promise((resolve)=>{ - // Must use setTimeout to be considered IO React DevTools. setImmediate will not work. - setTimeout(()=>{ - resolve(underlying); - }, 0); - }); -} //# sourceMappingURL=dynamic-rendering-utils.js.map -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "METADATA_BOUNDARY_NAME", - ()=>METADATA_BOUNDARY_NAME, - "OUTLET_BOUNDARY_NAME", - ()=>OUTLET_BOUNDARY_NAME, - "ROOT_LAYOUT_BOUNDARY_NAME", - ()=>ROOT_LAYOUT_BOUNDARY_NAME, - "VIEWPORT_BOUNDARY_NAME", - ()=>VIEWPORT_BOUNDARY_NAME -]); -const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'; -const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'; -const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'; -const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'; //# sourceMappingURL=boundary-constants.js.map -}), -"[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Schedules a function to be called on the next tick after the other promises - * have been resolved. - * - * @param cb the function to schedule - */ __turbopack_context__.s([ - "atLeastOneTask", - ()=>atLeastOneTask, - "scheduleImmediate", - ()=>scheduleImmediate, - "scheduleOnNextTick", - ()=>scheduleOnNextTick, - "waitAtLeastOneReactRenderTask", - ()=>waitAtLeastOneReactRenderTask -]); -const scheduleOnNextTick = (cb)=>{ - // We use Promise.resolve().then() here so that the operation is scheduled at - // the end of the promise job queue, we then add it to the next process tick - // to ensure it's evaluated afterwards. - // - // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255 - // - Promise.resolve().then(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - process.nextTick(cb); - } - }); -}; -const scheduleImmediate = (cb)=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - setImmediate(cb); - } -}; -function atLeastOneTask() { - return new Promise((resolve)=>scheduleImmediate(resolve)); -} -function waitAtLeastOneReactRenderTask() { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - return new Promise((r)=>setImmediate(r)); - } -} //# sourceMappingURL=scheduler.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "BailoutToCSRError", - ()=>BailoutToCSRError, - "isBailoutToCSRError", - ()=>isBailoutToCSRError -]); -// This has to be a shared module which is shared between client component error boundary and dynamic component -const BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'; -class BailoutToCSRError extends Error { - constructor(reason){ - super(`Bail out to client-side rendering: ${reason}`), this.reason = reason, this.digest = BAILOUT_TO_CSR; - } -} -function isBailoutToCSRError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === BAILOUT_TO_CSR; -} //# sourceMappingURL=bailout-to-csr.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "InvariantError", - ()=>InvariantError -]); -class InvariantError extends Error { - constructor(message, options){ - super(`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`, options); - this.name = 'InvariantError'; - } -} //# sourceMappingURL=invariant-error.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Postpone", - ()=>Postpone, - "PreludeState", - ()=>PreludeState, - "abortAndThrowOnSynchronousRequestDataAccess", - ()=>abortAndThrowOnSynchronousRequestDataAccess, - "abortOnSynchronousPlatformIOAccess", - ()=>abortOnSynchronousPlatformIOAccess, - "accessedDynamicData", - ()=>accessedDynamicData, - "annotateDynamicAccess", - ()=>annotateDynamicAccess, - "consumeDynamicAccess", - ()=>consumeDynamicAccess, - "createDynamicTrackingState", - ()=>createDynamicTrackingState, - "createDynamicValidationState", - ()=>createDynamicValidationState, - "createHangingInputAbortSignal", - ()=>createHangingInputAbortSignal, - "createRenderInBrowserAbortSignal", - ()=>createRenderInBrowserAbortSignal, - "delayUntilRuntimeStage", - ()=>delayUntilRuntimeStage, - "formatDynamicAPIAccesses", - ()=>formatDynamicAPIAccesses, - "getFirstDynamicReason", - ()=>getFirstDynamicReason, - "getStaticShellDisallowedDynamicReasons", - ()=>getStaticShellDisallowedDynamicReasons, - "isDynamicPostpone", - ()=>isDynamicPostpone, - "isPrerenderInterruptedError", - ()=>isPrerenderInterruptedError, - "logDisallowedDynamicError", - ()=>logDisallowedDynamicError, - "markCurrentScopeAsDynamic", - ()=>markCurrentScopeAsDynamic, - "postponeWithTracking", - ()=>postponeWithTracking, - "throwIfDisallowedDynamic", - ()=>throwIfDisallowedDynamic, - "throwToInterruptStaticGeneration", - ()=>throwToInterruptStaticGeneration, - "trackAllowedDynamicAccess", - ()=>trackAllowedDynamicAccess, - "trackDynamicDataInDynamicRender", - ()=>trackDynamicDataInDynamicRender, - "trackDynamicHoleInRuntimeShell", - ()=>trackDynamicHoleInRuntimeShell, - "trackDynamicHoleInStaticShell", - ()=>trackDynamicHoleInStaticShell, - "useDynamicRouteParams", - ()=>useDynamicRouteParams, - "useDynamicSearchParams", - ()=>useDynamicSearchParams -]); -/** - * The functions provided by this module are used to communicate certain properties - * about the currently running code so that Next.js can make decisions on how to handle - * the current execution in different rendering modes such as pre-rendering, resuming, and SSR. - * - * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering. - * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts - * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of - * Dynamic indications. - * - * The first is simply an intention to be dynamic. unstable_noStore is an example of this where - * the currently executing code simply declares that the current scope is dynamic but if you use it - * inside unstable_cache it can still be cached. This type of indication can be removed if we ever - * make the default dynamic to begin with because the only way you would ever be static is inside - * a cache scope which this indication does not affect. - * - * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic - * because it means that it is inappropriate to cache this at all. using a dynamic data source inside - * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should - * read that data outside the cache and pass it in as an argument to the cached function. - */ // Once postpone is in stable we should switch to importing the postpone export directly -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -const hasPostpone = typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].unstable_postpone === 'function'; -function createDynamicTrackingState(isDebugDynamicAccesses) { - return { - isDebugDynamicAccesses, - dynamicAccesses: [], - syncDynamicErrorWithStack: null - }; -} -function createDynamicValidationState() { - return { - hasSuspenseAboveBody: false, - hasDynamicMetadata: false, - dynamicMetadata: null, - hasDynamicViewport: false, - hasAllowedDynamic: false, - dynamicErrors: [] - }; -} -function getFirstDynamicReason(trackingState) { - var _trackingState_dynamicAccesses_; - return (_trackingState_dynamicAccesses_ = trackingState.dynamicAccesses[0]) == null ? void 0 : _trackingState_dynamicAccesses_.expression; -} -function markCurrentScopeAsDynamic(store, workUnitStore, expression) { - if (workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender-legacy': - case 'prerender-ppr': - case 'request': - break; - default: - workUnitStore; - } - } - // If we're forcing dynamic rendering or we're forcing static rendering, we - // don't need to do anything here because the entire page is already dynamic - // or it's static and it should not throw or postpone here. - if (store.forceDynamic || store.forceStatic) return; - if (store.dynamicShouldError) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](`Route ${store.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E553", - enumerable: false, - configurable: true - }); - } - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-ppr': - return postponeWithTracking(store.route, expression, workUnitStore.dynamicTracking); - case 'prerender-legacy': - workUnitStore.revalidate = 0; - // We aren't prerendering, but we are generating a static page. We need - // to bail out of static generation. - const err = Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DynamicServerError"](`Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E550", - enumerable: false, - configurable: true - }); - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } - } -} -function throwToInterruptStaticGeneration(expression, store, prerenderStore) { - // We aren't prerendering but we are generating a static page. We need to bail out of static generation - const err = Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DynamicServerError"](`Route ${store.route} couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E558", - enumerable: false, - configurable: true - }); - prerenderStore.revalidate = 0; - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; -} -function trackDynamicDataInDynamicRender(workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender': - case 'prerender-runtime': - case 'prerender-legacy': - case 'prerender-ppr': - case 'prerender-client': - break; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } -} -function abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore) { - const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`; - const error = createPrerenderInterruptedError(reason); - prerenderStore.controller.abort(error); - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function abortOnSynchronousPlatformIOAccess(route, expression, errorWithStack, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } -} -function abortAndThrowOnSynchronousRequestDataAccess(route, expression, errorWithStack, prerenderStore) { - const prerenderSignal = prerenderStore.controller.signal; - if (prerenderSignal.aborted === false) { - // TODO it would be better to move this aborted check into the callsite so we can avoid making - // the error object when it isn't relevant to the aborting of the prerender however - // since we need the throw semantics regardless of whether we abort it is easier to land - // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer - // to ideal implementation - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } - } - throw createPrerenderInterruptedError(`Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`); -} -function Postpone({ reason, route }) { - const prerenderStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - const dynamicTracking = prerenderStore && prerenderStore.type === 'prerender-ppr' ? prerenderStore.dynamicTracking : null; - postponeWithTracking(route, reason, dynamicTracking); -} -function postponeWithTracking(route, expression, dynamicTracking) { - assertPostpone(); - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].unstable_postpone(createPostponeReason(route, expression)); -} -function createPostponeReason(route, expression) { - return `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` + `React throws this special object to indicate where. It should not be caught by ` + `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`; -} -function isDynamicPostpone(err) { - if (typeof err === 'object' && err !== null && typeof err.message === 'string') { - return isDynamicPostponeReason(err.message); - } - return false; -} -function isDynamicPostponeReason(reason) { - return reason.includes('needs to bail out of prerendering at this point because it used') && reason.includes('Learn more: https://nextjs.org/docs/messages/ppr-caught-error'); -} -if (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) { - throw Object.defineProperty(new Error('Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'), "__NEXT_ERROR_CODE", { - value: "E296", - enumerable: false, - configurable: true - }); -} -const NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'; -function createPrerenderInterruptedError(message) { - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = NEXT_PRERENDER_INTERRUPTED; - return error; -} -function isPrerenderInterruptedError(error) { - return typeof error === 'object' && error !== null && error.digest === NEXT_PRERENDER_INTERRUPTED && 'name' in error && 'message' in error && error instanceof Error; -} -function accessedDynamicData(dynamicAccesses) { - return dynamicAccesses.length > 0; -} -function consumeDynamicAccess(serverDynamic, clientDynamic) { - // We mutate because we only call this once we are no longer writing - // to the dynamicTrackingState and it's more efficient than creating a new - // array. - serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses); - return serverDynamic.dynamicAccesses; -} -function formatDynamicAPIAccesses(dynamicAccesses) { - return dynamicAccesses.filter((access)=>typeof access.stack === 'string' && access.stack.length > 0).map(({ expression, stack })=>{ - stack = stack.split('\n') // Remove the "Error: " prefix from the first line of the stack trace as - // well as the first 4 lines of the stack trace which is the distance - // from the user code and the `new Error().stack` call. - .slice(4).filter((line)=>{ - // Exclude Next.js internals from the stack trace. - if (line.includes('node_modules/next/')) { - return false; - } - // Exclude anonymous functions from the stack trace. - if (line.includes(' ()')) { - return false; - } - // Exclude Node.js internals from the stack trace. - if (line.includes(' (node:')) { - return false; - } - return true; - }).join('\n'); - return `Dynamic API Usage Debug - ${expression}:\n${stack}`; - }); -} -function assertPostpone() { - if (!hasPostpone) { - throw Object.defineProperty(new Error(`Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`), "__NEXT_ERROR_CODE", { - value: "E224", - enumerable: false, - configurable: true - }); - } -} -function createRenderInBrowserAbortSignal() { - const controller = new AbortController(); - controller.abort(Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BailoutToCSRError"]('Render in Browser'), "__NEXT_ERROR_CODE", { - value: "E721", - enumerable: false, - configurable: true - })); - return controller.signal; -} -function createHangingInputAbortSignal(workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - const controller = new AbortController(); - if (workUnitStore.cacheSignal) { - // If we have a cacheSignal it means we're in a prospective render. If - // the input we're waiting on is coming from another cache, we do want - // to wait for it so that we can resolve this cache entry too. - workUnitStore.cacheSignal.inputReady().then(()=>{ - controller.abort(); - }); - } else { - // Otherwise we're in the final render and we should already have all - // our caches filled. - // If the prerender uses stages, we have wait until the runtime stage, - // at which point all runtime inputs will be resolved. - // (otherwise, a runtime prerender might consider `cookies()` hanging - // even though they'd resolve in the next task.) - // - // We might still be waiting on some microtasks so we - // wait one tick before giving up. When we give up, we still want to - // render the content of this cache as deeply as we can so that we can - // suspend as deeply as possible in the tree or not at all if we don't - // end up waiting for the input. - const runtimeStagePromise = (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["getRuntimeStagePromise"])(workUnitStore); - if (runtimeStagePromise) { - runtimeStagePromise.then(()=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(()=>controller.abort())); - } else { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(()=>controller.abort()); - } - } - return controller.signal; - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - case 'cache': - case 'private-cache': - case 'unstable-cache': - return undefined; - default: - workUnitStore; - } -} -function annotateDynamicAccess(expression, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function useDynamicRouteParams(expression) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workStore && workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-client': - case 'prerender': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - // We are in a prerender with cacheComponents semantics. We are going to - // hang here and never resolve. This will cause the currently - // rendering component to effectively be a dynamic hole. - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].use((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, expression)); - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return postponeWithTracking(workStore.route, expression, workUnitStore.dynamicTracking); - } - break; - } - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E771", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'prerender-legacy': - case 'request': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } -} -function useDynamicSearchParams(expression) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (!workStore) { - // We assume pages router context and just return - return; - } - if (!workUnitStore) { - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwForMissingRequestStore"])(expression); - } - switch(workUnitStore.type){ - case 'prerender-client': - { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].use((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, expression)); - break; - } - case 'prerender-legacy': - case 'prerender-ppr': - { - if (workStore.forceStatic) { - return; - } - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BailoutToCSRError"](expression), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - case 'prerender': - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E795", - enumerable: false, - configurable: true - }); - case 'cache': - case 'unstable-cache': - case 'private-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'request': - return; - default: - workUnitStore; - } -} -const hasSuspenseRegex = /\n\s+at Suspense \(\)/; -// Common implicit body tags that React will treat as body when placed directly in html -const bodyAndImplicitTags = 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'; -// Detects when RootLayoutBoundary (our framework marker component) appears -// after Suspense in the component stack, indicating the root layout is wrapped -// within a Suspense boundary. Ensures no body/html/implicit-body components are in between. -// -// Example matches: -// at Suspense () -// at __next_root_layout_boundary__ () -// -// Or with other components in between (but not body/html/implicit-body): -// at Suspense () -// at SomeComponent () -// at __next_root_layout_boundary__ () -const hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(`\\n\\s+at Suspense \\(\\)(?:(?!\\n\\s+at (?:${bodyAndImplicitTags}) \\(\\))[\\s\\S])*?\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ROOT_LAYOUT_BOUNDARY_NAME"]} \\([^\\n]*\\)`); -const hasMetadataRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["METADATA_BOUNDARY_NAME"]}[\\n\\s]`); -const hasViewportRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["VIEWPORT_BOUNDARY_NAME"]}[\\n\\s]`); -const hasOutletRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["OUTLET_BOUNDARY_NAME"]}[\\n\\s]`); -function trackAllowedDynamicAccess(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - dynamicValidation.hasDynamicMetadata = true; - return; - } else if (hasViewportRegex.test(componentStack)) { - dynamicValidation.hasDynamicViewport = true; - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data was accessed outside of ` + '. This delays the entire page from rendering, resulting in a ' + 'slow user experience. Learn more: ' + 'https://nextjs.org/docs/messages/blocking-route'; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInRuntimeShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateMetadata\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInStaticShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateMetadata\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -/** - * In dev mode, we prefer using the owner stack, otherwise the provided - * component stack is used. - */ function createErrorWithComponentOrOwnerStack(message, componentStack) { - const ownerStack = ("TURBOPACK compile-time value", "development") !== 'production' && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].captureOwnerStack ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].captureOwnerStack() : null; - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right - // - error.stack = error.name + ': ' + message + (ownerStack || componentStack); - return error; -} -var PreludeState = /*#__PURE__*/ function(PreludeState) { - PreludeState[PreludeState["Full"] = 0] = "Full"; - PreludeState[PreludeState["Empty"] = 1] = "Empty"; - PreludeState[PreludeState["Errored"] = 2] = "Errored"; - return PreludeState; -}({}); -function logDisallowedDynamicError(workStore, error) { - console.error(error); - if (!workStore.dev) { - if (workStore.hasReadableErrorStacks) { - console.error(`To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error.`); - } else { - console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following: - - Start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error. - - Rerun the production build with \`next build --debug-prerender\` to generate better stack traces.`); - } - } -} -function throwIfDisallowedDynamic(workStore, prelude, dynamicValidation, serverDynamic) { - if (serverDynamic.syncDynamicErrorWithStack) { - logDisallowedDynamicError(workStore, serverDynamic.syncDynamicErrorWithStack); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - if (prelude !== 0) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return; - } - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - for(let i = 0; i < dynamicErrors.length; i++){ - logDisallowedDynamicError(workStore, dynamicErrors[i]); - } - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - // If we got this far then the only other thing that could be blocking - // the root is dynamic Viewport. If this is dynamic then - // you need to opt into that by adding a Suspense boundary above the body - // to indicate your are ok with fully dynamic rendering. - if (dynamicValidation.hasDynamicViewport) { - console.error(`Route "${workStore.route}" has a \`generateViewport\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - console.error(`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - } else { - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.hasDynamicMetadata) { - console.error(`Route "${workStore.route}" has a \`generateMetadata\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - } -} -function getStaticShellDisallowedDynamicReasons(workStore, prelude, dynamicValidation) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return []; - } - if (prelude !== 0) { - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - return dynamicErrors; - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - return [ - Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason.`), "__NEXT_ERROR_CODE", { - value: "E936", - enumerable: false, - configurable: true - }) - ]; - } - } else { - // We have a prelude but we might still have dynamic metadata without any other dynamic access - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicErrors.length === 0 && dynamicValidation.dynamicMetadata) { - return [ - dynamicValidation.dynamicMetadata - ]; - } - } - // We had a non-empty prelude and there are no dynamic holes - return []; -} -function delayUntilRuntimeStage(prerenderStore, result) { - if (prerenderStore.runtimeStagePromise) { - return prerenderStore.runtimeStagePromise.then(()=>result); - } - return result; -} //# sourceMappingURL=dynamic-rendering.js.map -}), -"[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDedupedByCallsiteServerErrorLoggerDev", - ()=>createDedupedByCallsiteServerErrorLoggerDev -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -; -const errorRef = { - current: null -}; -// React.cache is currently only available in canary/experimental React channels. -const cache = typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"] === 'function' ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"] : (fn)=>fn; -// When Cache Components is enabled, we record these as errors so that they -// are captured by the dev overlay as it's more critical to fix these -// when enabled. -const logErrorOrWarn = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : console.warn; -// We don't want to dedupe across requests. -// The developer might've just attempted to fix the warning so we should warn again if it still happens. -const flushCurrentErrorIfNew = cache((key)=>{ - try { - logErrorOrWarn(errorRef.current); - } finally{ - errorRef.current = null; - } -}); -function createDedupedByCallsiteServerErrorLoggerDev(getMessage) { - return function logDedupedError(...args) { - const message = getMessage(...args); - if ("TURBOPACK compile-time truthy", 1) { - var _stack; - const callStackFrames = (_stack = new Error().stack) == null ? void 0 : _stack.split('\n'); - if (callStackFrames === undefined || callStackFrames.length < 4) { - logErrorOrWarn(message); - } else { - // Error: - // logDedupedError - // asyncApiBeingAccessedSynchronously - // - // TODO: This breaks if sourcemaps with ignore lists are enabled. - const key = callStackFrames[4]; - errorRef.current = message; - flushCurrentErrorIfNew(key); - } - } else //TURBOPACK unreachable - ; - }; -} //# sourceMappingURL=create-deduped-by-callsite-server-error-logger.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "describeHasCheckingStringProperty", - ()=>describeHasCheckingStringProperty, - "describeStringPropertyAccess", - ()=>describeStringPropertyAccess, - "wellKnownProperties", - ()=>wellKnownProperties -]); -// This regex will have fast negatives meaning valid identifiers may not pass -// this test. However this is only used during static generation to provide hints -// about why a page bailed out of some or all prerendering and we can use bracket notation -// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']` -// even if this would have been fine too `searchParams.ಠ_ಠ` -const isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/; -function describeStringPropertyAccess(target, prop) { - if (isDefinitelyAValidIdentifier.test(prop)) { - return `\`${target}.${prop}\``; - } - return `\`${target}[${JSON.stringify(prop)}]\``; -} -function describeHasCheckingStringProperty(target, prop) { - const stringifiedProp = JSON.stringify(prop); - return `\`Reflect.has(${target}, ${stringifiedProp})\`, \`${stringifiedProp} in ${target}\`, or similar`; -} -const wellKnownProperties = new Set([ - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toString', - 'valueOf', - 'toLocaleString', - // Promise prototype - 'then', - 'catch', - 'finally', - // React Promise extension - 'status', - // 'value', - // 'error', - // React introspection - 'displayName', - '_debugInfo', - // Common tested properties - 'toJSON', - '$$typeof', - '__esModule' -]); //# sourceMappingURL=reflect-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isRequestAPICallableInsideAfter", - ()=>isRequestAPICallableInsideAfter, - "throwForSearchParamsAccessInUseCache", - ()=>throwForSearchParamsAccessInUseCache, - "throwWithStaticGenerationBailoutErrorWithDynamicError", - ()=>throwWithStaticGenerationBailoutErrorWithDynamicError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/after-task-async-storage.external.js [external] (next/dist/server/app-render/after-task-async-storage.external.js, cjs)"); -; -; -function throwWithStaticGenerationBailoutErrorWithDynamicError(route, expression) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](`Route ${route} with \`dynamic = "error"\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E543", - enumerable: false, - configurable: true - }); -} -function throwForSearchParamsAccessInUseCache(workStore, constructorOpt) { - const error = Object.defineProperty(new Error(`Route ${workStore.route} used \`searchParams\` inside "use cache". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \`searchParams\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`), "__NEXT_ERROR_CODE", { - value: "E842", - enumerable: false, - configurable: true - }); - Error.captureStackTrace(error, constructorOpt); - workStore.invalidDynamicUsageError ??= error; - throw error; -} -function isRequestAPICallableInsideAfter() { - const afterTaskStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["afterTaskAsyncStorage"].getStore(); - return (afterTaskStore == null ? void 0 : afterTaskStore.rootTaskSpawnPhase) === 'action'; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createPromiseWithResolvers", - ()=>createPromiseWithResolvers -]); -function createPromiseWithResolvers() { - // Shim of Stage 4 Promise.withResolvers proposal - let resolve; - let reject; - const promise = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - return { - resolve: resolve, - reject: reject, - promise - }; -} //# sourceMappingURL=promise-with-resolvers.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RenderStage", - ()=>RenderStage, - "StagedRenderingController", - ()=>StagedRenderingController -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-rsc] (ecmascript)"); -; -; -var RenderStage = /*#__PURE__*/ function(RenderStage) { - RenderStage[RenderStage["Before"] = 1] = "Before"; - RenderStage[RenderStage["Static"] = 2] = "Static"; - RenderStage[RenderStage["Runtime"] = 3] = "Runtime"; - RenderStage[RenderStage["Dynamic"] = 4] = "Dynamic"; - RenderStage[RenderStage["Abandoned"] = 5] = "Abandoned"; - return RenderStage; -}({}); -class StagedRenderingController { - constructor(abortSignal = null, hasRuntimePrefetch){ - this.abortSignal = abortSignal; - this.hasRuntimePrefetch = hasRuntimePrefetch; - this.currentStage = 1; - this.staticInterruptReason = null; - this.runtimeInterruptReason = null; - this.staticStageEndTime = Infinity; - this.runtimeStageEndTime = Infinity; - this.runtimeStageListeners = []; - this.dynamicStageListeners = []; - this.runtimeStagePromise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - this.dynamicStagePromise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - this.mayAbandon = false; - if (abortSignal) { - abortSignal.addEventListener('abort', ()=>{ - const { reason } = abortSignal; - if (this.currentStage < 3) { - this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.runtimeStagePromise.reject(reason); - } - if (this.currentStage < 4 || this.currentStage === 5) { - this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.dynamicStagePromise.reject(reason); - } - }, { - once: true - }); - this.mayAbandon = true; - } - } - onStage(stage, callback) { - if (this.currentStage >= stage) { - callback(); - } else if (stage === 3) { - this.runtimeStageListeners.push(callback); - } else if (stage === 4) { - this.dynamicStageListeners.push(callback); - } else { - // This should never happen - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - canSyncInterrupt() { - // If we haven't started the render yet, it can't be interrupted. - if (this.currentStage === 1) { - return false; - } - const boundaryStage = this.hasRuntimePrefetch ? 4 : 3; - return this.currentStage < boundaryStage; - } - syncInterruptCurrentStageWithReason(reason) { - if (this.currentStage === 1) { - return; - } - // If Sync IO occurs during the initial (abandonable) render, we'll retry it, - // so we want a slightly different flow. - // See the implementation of `abandonRenderImpl` for more explanation. - if (this.mayAbandon) { - return this.abandonRenderImpl(); - } - // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage - // and capture the interruption reason. - switch(this.currentStage){ - case 2: - { - this.staticInterruptReason = reason; - this.advanceStage(4); - return; - } - case 3: - { - // We only error for Sync IO in the runtime stage if the route - // is configured to use runtime prefetching. - // We do this to reflect the fact that during a runtime prefetch, - // Sync IO aborts aborts the render. - // Note that `canSyncInterrupt` should prevent us from getting here at all - // if runtime prefetching isn't enabled. - if (this.hasRuntimePrefetch) { - this.runtimeInterruptReason = reason; - this.advanceStage(4); - } - return; - } - case 4: - case 5: - default: - } - } - getStaticInterruptReason() { - return this.staticInterruptReason; - } - getRuntimeInterruptReason() { - return this.runtimeInterruptReason; - } - getStaticStageEndTime() { - return this.staticStageEndTime; - } - getRuntimeStageEndTime() { - return this.runtimeStageEndTime; - } - abandonRender() { - if (!this.mayAbandon) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('`abandonRender` called on a stage controller that cannot be abandoned.'), "__NEXT_ERROR_CODE", { - value: "E938", - enumerable: false, - configurable: true - }); - } - this.abandonRenderImpl(); - } - abandonRenderImpl() { - // In staged rendering, only the initial render is abandonable. - // We can abandon the initial render if - // 1. We notice a cache miss, and need to wait for caches to fill - // 2. A sync IO error occurs, and the render should be interrupted - // (this might be a lazy intitialization of a module, - // so we still want to restart in this case and see if it still occurs) - // In either case, we'll be doing another render after this one, - // so we only want to unblock the Runtime stage, not Dynamic, because - // unblocking the dynamic stage would likely lead to wasted (uncached) IO. - const { currentStage } = this; - switch(currentStage){ - case 2: - { - this.currentStage = 5; - this.resolveRuntimeStage(); - return; - } - case 3: - { - this.currentStage = 5; - return; - } - case 4: - case 1: - case 5: - break; - default: - { - currentStage; - } - } - } - advanceStage(stage) { - // If we're already at the target stage or beyond, do nothing. - // (this can happen e.g. if sync IO advanced us to the dynamic stage) - if (stage <= this.currentStage) { - return; - } - let currentStage = this.currentStage; - this.currentStage = stage; - if (currentStage < 3 && stage >= 3) { - this.staticStageEndTime = performance.now() + performance.timeOrigin; - this.resolveRuntimeStage(); - } - if (currentStage < 4 && stage >= 4) { - this.runtimeStageEndTime = performance.now() + performance.timeOrigin; - this.resolveDynamicStage(); - return; - } - } - /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */ resolveRuntimeStage() { - const runtimeListeners = this.runtimeStageListeners; - for(let i = 0; i < runtimeListeners.length; i++){ - runtimeListeners[i](); - } - runtimeListeners.length = 0; - this.runtimeStagePromise.resolve(); - } - /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */ resolveDynamicStage() { - const dynamicListeners = this.dynamicStageListeners; - for(let i = 0; i < dynamicListeners.length; i++){ - dynamicListeners[i](); - } - dynamicListeners.length = 0; - this.dynamicStagePromise.resolve(); - } - getStagePromise(stage) { - switch(stage){ - case 3: - { - return this.runtimeStagePromise.promise; - } - case 4: - { - return this.dynamicStagePromise.promise; - } - default: - { - stage; - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - } - waitForStage(stage) { - return this.getStagePromise(stage); - } - delayUntilStage(stage, displayName, resolvedValue) { - const ioTriggerPromise = this.getStagePromise(stage); - const promise = makeDevtoolsIOPromiseFromIOTrigger(ioTriggerPromise, displayName, resolvedValue); - // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked. - // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it). - // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning. - if (this.abortSignal) { - promise.catch(ignoreReject); - } - return promise; - } -} -function ignoreReject() {} -// TODO(restart-on-cache-miss): the layering of `delayUntilStage`, -// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise` -// is confusing, we should clean it up. -function makeDevtoolsIOPromiseFromIOTrigger(ioTrigger, displayName, resolvedValue) { - // If we create a `new Promise` and give it a displayName - // (with no userspace code above us in the stack) - // React Devtools will use it as the IO cause when determining "suspended by". - // In particular, it should shadow any inner IO that resolved/rejected the promise - // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage) - const promise = new Promise((resolve, reject)=>{ - ioTrigger.then(resolve.bind(null, resolvedValue), reject); - }); - if (displayName !== undefined) { - // @ts-expect-error - promise.displayName = displayName; - } - return promise; -} //# sourceMappingURL=staged-rendering.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/search-params.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createPrerenderSearchParamsForClientPage", - ()=>createPrerenderSearchParamsForClientPage, - "createSearchParamsFromClient", - ()=>createSearchParamsFromClient, - "createServerSearchParamsForMetadata", - ()=>createServerSearchParamsForMetadata, - "createServerSearchParamsForServerPage", - ()=>createServerSearchParamsForServerPage, - "makeErroringSearchParamsForUseCache", - ()=>makeErroringSearchParamsForUseCache -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -function createSearchParamsFromClient(underlyingSearchParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createSearchParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E769", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createSearchParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E739", - enumerable: false, - configurable: true - }); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -const createServerSearchParamsForMetadata = createServerSearchParamsForServerPage; -function createServerSearchParamsForServerPage(underlyingSearchParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createServerSearchParamsForServerPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E747", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderSearchParamsForClientPage(workStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - // We're prerendering in a mode that aborts (cacheComponents) and should stall - // the promise to ensure the RSC side is considered dynamic - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, '`searchParams`'); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E768", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderSearchParamsForClientPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E746", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - return Promise.resolve({}); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createStaticPrerenderSearchParams(workStore, prerenderStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - // We are in a cacheComponents (PPR or otherwise) prerender - return makeHangingSearchParams(workStore, prerenderStore); - case 'prerender-ppr': - case 'prerender-legacy': - // We are in a legacy static generation and need to interrupt the - // prerender when search params are accessed. - return makeErroringSearchParams(workStore, prerenderStore); - default: - return prerenderStore; - } -} -function createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, makeUntrackedSearchParams(underlyingSearchParams)); -} -function createRenderSearchParams(underlyingSearchParams, workStore, requestStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } else { - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore); - } else //TURBOPACK unreachable - ; - } -} -const CachedSearchParams = new WeakMap(); -const CachedSearchParamsForUseCache = new WeakMap(); -function makeHangingSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(prerenderStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`searchParams`'); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - switch(prop){ - case 'then': - { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["annotateDynamicAccess"])(expression, prerenderStore); - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - case 'status': - { - const expression = '`use(searchParams)`, `searchParams.status`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["annotateDynamicAccess"])(expression, prerenderStore); - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - default: - { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - } - } - }); - CachedSearchParams.set(prerenderStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const underlyingSearchParams = {}; - // For search params we don't construct a ReactPromise because we want to interrupt - // rendering on any property access that was not set from outside and so we only want - // to have properties like value and status if React sets them. - const promise = Promise.resolve(underlyingSearchParams); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - if (typeof prop === 'string' && prop === 'then') { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - if (workStore.dynamicShouldError) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } else if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwToInterruptStaticGeneration"])(expression, workStore, prerenderStore); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - }); - CachedSearchParams.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParamsForUseCache(workStore) { - const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve({}); - const proxiedPromise = new Proxy(promise, { - get: function get(target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. We know it - // isn't a dynamic access because it can only be something that was - // previously written to the promise and thus not an underlying - // searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - if (typeof prop === 'string' && (prop === 'then' || !__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop))) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwForSearchParamsAccessInUseCache"])(workStore, get); - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - }); - CachedSearchParamsForUseCache.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeUntrackedSearchParams(underlyingSearchParams) { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve(underlyingSearchParams); - CachedSearchParams.set(underlyingSearchParams, promise); - return promise; -} -function makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore) { - if (requestStore.asyncApiPromises) { - // Do not cache the resulting promise. If we do, we'll only show the first "awaited at" - // across all segments that receive searchParams. - return makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - } else { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - CachedSearchParams.set(requestStore, promise); - return promise; - } -} -function makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore) { - const promiseInitialized = { - current: false - }; - const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized); - let promise; - if (requestStore.asyncApiPromises) { - // We wrap each instance of searchParams in a `new Promise()`. - // This is important when all awaits are in third party which would otherwise - // track all the way to the internal params. - const sharedSearchParamsParent = requestStore.asyncApiPromises.sharedSearchParamsParent; - promise = new Promise((resolve, reject)=>{ - sharedSearchParamsParent.then(()=>resolve(proxiedUnderlying), reject); - }); - // @ts-expect-error - promise.displayName = 'searchParams'; - } else { - promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeDevtoolsIOAwarePromise"])(proxiedUnderlying, requestStore, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Runtime); - } - promise.then(()=>{ - promiseInitialized.current = true; - }, // is aborted before it can reach the runtime stage. - // In that case, we have to prevent an unhandled rejection from the promise - // created by this `.then()` call. - // This does not affect the `promiseInitialized` logic above, - // because `proxiedUnderlying` will not be used to resolve the promise, - // so there's no risk of any of its properties being accessed and triggering - // an undesireable warning. - ignoreReject); - return instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore); -} -function ignoreReject() {} -function instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized) { - // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying - // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender - // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking - // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger - // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce - // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise. - return new Proxy(underlyingSearchParams, { - get (target, prop, receiver) { - if (typeof prop === 'string' && promiseInitialized.current) { - if (workStore.dynamicShouldError) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('searchParams', prop); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (workStore.dynamicShouldError) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeHasCheckingStringProperty"])('searchParams', prop); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - if (workStore.dynamicShouldError) { - const expression = '`{...searchParams}`, `Object.keys(searchParams)`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - return Reflect.ownKeys(target); - } - }); -} -function instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingSearchParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (prop === 'then' && workStore.dynamicShouldError) { - const expression = '`searchParams.then`'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - if (typeof prop === 'string') { - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return Reflect.set(target, prop, value, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeHasCheckingStringProperty"])('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - const expression = '`Object.keys(searchParams)` or similar'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDedupedByCallsiteServerErrorLoggerDev"])(createSearchAccessError); -function createSearchAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`searchParams\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E848", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=search-params.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/params.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createParamsFromClient", - ()=>createParamsFromClient, - "createPrerenderParamsForClientSegment", - ()=>createPrerenderParamsForClientSegment, - "createServerParamsForMetadata", - ()=>createServerParamsForMetadata, - "createServerParamsForRoute", - ()=>createServerParamsForRoute, - "createServerParamsForServerSegment", - ()=>createServerParamsForServerSegment -]); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/dynamic-access-async-storage.external.js [external] (next/dist/server/app-render/dynamic-access-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -function createParamsFromClient(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E736", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E770", - enumerable: false, - configurable: true - }); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -const createServerParamsForMetadata = createServerParamsForServerSegment; -function createServerParamsForRoute(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createServerParamsForRoute should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E738", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createServerParamsForServerSegment(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createServerParamsForServerSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E743", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderParamsForClientSegment(underlyingParams) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - if (!workStore) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('Missing workStore in createPrerenderParamsForClientSegment'), "__NEXT_ERROR_CODE", { - value: "E773", - enumerable: false, - configurable: true - }); - } - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams) { - for(let key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, '`params`'); - } - } - } - break; - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderParamsForClientSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E734", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'prerender-runtime': - case 'request': - break; - default: - workUnitStore; - } - } - // We're prerendering in a mode that does not abort. We resolve the promise without - // any tracking because we're just transporting a value from server to client where the tracking - // will be applied. - return Promise.resolve(underlyingParams); -} -function createStaticPrerenderParams(underlyingParams, workStore, prerenderStore) { - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return makeHangingParams(underlyingParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - return makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-legacy': - break; - default: - prerenderStore; - } - return makeUntrackedParams(underlyingParams); -} -function createRuntimePrerenderParams(underlyingParams, workUnitStore) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, makeUntrackedParams(underlyingParams)); -} -function createRenderParamsInProd(underlyingParams) { - return makeUntrackedParams(underlyingParams); -} -function createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, requestStore) { - let hasFallbackParams = false; - if (devFallbackParams) { - for(let key in underlyingParams){ - if (devFallbackParams.has(key)) { - hasFallbackParams = true; - break; - } - } - } - return makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore); -} -const CachedParams = new WeakMap(); -const fallbackParamsProxyHandler = { - get: function get(target, prop, receiver) { - if (prop === 'then' || prop === 'catch' || prop === 'finally') { - const originalMethod = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - return ({ - [prop]: (...args)=>{ - const store = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["dynamicAccessAsyncStorage"].getStore(); - if (store) { - store.abortController.abort(Object.defineProperty(new Error(`Accessed fallback \`params\` during prerendering.`), "__NEXT_ERROR_CODE", { - value: "E691", - enumerable: false, - configurable: true - })); - } - return new Proxy(originalMethod.apply(target, args), fallbackParamsProxyHandler); - } - })[prop]; - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } -}; -function makeHangingParams(underlyingParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = new Proxy((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`params`'), fallbackParamsProxyHandler); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const augmentedUnderlying = { - ...underlyingParams - }; - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = Promise.resolve(augmentedUnderlying); - CachedParams.set(underlyingParams, promise); - Object.keys(underlyingParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - if (fallbackParams.has(prop)) { - Object.defineProperty(augmentedUnderlying, prop, { - get () { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('params', prop); - // In most dynamic APIs we also throw if `dynamic = "error"` however - // for params is only dynamic when we're generating a fallback shell - // and even when `dynamic = "error"` we still support generating dynamic - // fallback shells - // TODO remove this comment when cacheComponents is the default since there - // will be no `dynamic = "error"` - if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["throwToInterruptStaticGeneration"])(expression, workStore, prerenderStore); - } - }, - enumerable: true - }); - } - } - }); - return promise; -} -function makeUntrackedParams(underlyingParams) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = Promise.resolve(underlyingParams); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore) { - if (requestStore.asyncApiPromises && hasFallbackParams) { - // We wrap each instance of params in a `new Promise()`, because deduping - // them across requests doesn't work anyway and this let us show each - // await a different set of values. This is important when all awaits - // are in third party which would otherwise track all the way to the - // internal params. - const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent; - const promise = new Promise((resolve, reject)=>{ - sharedParamsParent.then(()=>resolve(underlyingParams), reject); - }); - // @ts-expect-error - promise.displayName = 'params'; - return instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - } - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = hasFallbackParams ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeDevtoolsIOAwarePromise"])(underlyingParams, requestStore, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Runtime) : Promise.resolve(underlyingParams); - const proxiedPromise = instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - CachedParams.set(underlyingParams, proxiedPromise); - return proxiedPromise; -} -function instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (typeof prop === 'string') { - if (proxiedProperties.has(prop)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('params', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].set(target, prop, value, receiver); - }, - ownKeys (target) { - const expression = '`...params` or similar expression'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDedupedByCallsiteServerErrorLoggerDev"])(createParamsAccessError); -function createParamsAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`params\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E834", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=params.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js ")); -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js")); -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactJsxRuntime; //# sourceMappingURL=react-jsx-runtime.js.map -}), -"[project]/node_modules/next/dist/esm/lib/non-nullable.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "nonNullable", - ()=>nonNullable -]); -function nonNullable(value) { - return value !== null && value !== undefined; -} //# sourceMappingURL=non-nullable.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Meta", - ()=>Meta, - "MetaFilter", - ()=>MetaFilter, - "MultiMeta", - ()=>MultiMeta -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$non$2d$nullable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/non-nullable.js [app-rsc] (ecmascript)"); -; -; -; -function Meta({ name, property, content, media }) { - if (typeof content !== 'undefined' && content !== null && content !== '') { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - ...name ? { - name - } : { - property - }, - ...media ? { - media - } : undefined, - content: typeof content === 'string' ? content : content.toString() - }); - } - return null; -} -function MetaFilter(items) { - const acc = []; - for (const item of items){ - if (Array.isArray(item)) { - acc.push(...item.filter(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$non$2d$nullable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["nonNullable"])); - } else if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$non$2d$nullable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["nonNullable"])(item)) { - acc.push(item); - } - } - return acc; -} -function camelToSnake(camelCaseStr) { - return camelCaseStr.replace(/([A-Z])/g, function(match) { - return '_' + match.toLowerCase(); - }); -} -const aliasPropPrefixes = new Set([ - 'og:image', - 'twitter:image', - 'og:video', - 'og:audio' -]); -function getMetaKey(prefix, key) { - // Use `twitter:image` and `og:image` instead of `twitter:image:url` and `og:image:url` - // to be more compatible as it's a more common format. - // `og:video` & `og:audio` do not have a `:url` suffix alias - if (aliasPropPrefixes.has(prefix) && key === 'url') { - return prefix; - } - if (prefix.startsWith('og:') || prefix.startsWith('twitter:')) { - key = camelToSnake(key); - } - return prefix + ':' + key; -} -function ExtendMeta({ content, namePrefix, propertyPrefix }) { - if (!content) return null; - return MetaFilter(Object.entries(content).map(([k, v])=>{ - return typeof v === 'undefined' ? null : Meta({ - ...propertyPrefix && { - property: getMetaKey(propertyPrefix, k) - }, - ...namePrefix && { - name: getMetaKey(namePrefix, k) - }, - content: typeof v === 'string' ? v : v == null ? void 0 : v.toString() - }); - })); -} -function MultiMeta({ propertyPrefix, namePrefix, contents }) { - if (typeof contents === 'undefined' || contents === null) { - return null; - } - return MetaFilter(contents.map((content)=>{ - if (typeof content === 'string' || typeof content === 'number' || content instanceof URL) { - return Meta({ - ...propertyPrefix ? { - property: propertyPrefix - } : { - name: namePrefix - }, - content - }); - } else { - return ExtendMeta({ - namePrefix, - propertyPrefix, - content - }); - } - })); -} //# sourceMappingURL=meta.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "IconKeys", - ()=>IconKeys, - "ViewportMetaKeys", - ()=>ViewportMetaKeys -]); -const ViewportMetaKeys = { - width: 'width', - height: 'height', - initialScale: 'initial-scale', - minimumScale: 'minimum-scale', - maximumScale: 'maximum-scale', - viewportFit: 'viewport-fit', - userScalable: 'user-scalable', - interactiveWidget: 'interactive-widget' -}; -const IconKeys = [ - 'icon', - 'shortcut', - 'apple', - 'other' -]; //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getOrigin", - ()=>getOrigin, - "resolveArray", - ()=>resolveArray, - "resolveAsArrayOrUndefined", - ()=>resolveAsArrayOrUndefined -]); -function resolveArray(value) { - if (Array.isArray(value)) { - return value; - } - return [ - value - ]; -} -function resolveAsArrayOrUndefined(value) { - if (typeof value === 'undefined' || value === null) { - return undefined; - } - return resolveArray(value); -} -function getOrigin(url) { - let origin = undefined; - if (typeof url === 'string') { - try { - url = new URL(url); - origin = url.origin; - } catch {} - } - return origin; -} -; - //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/basic.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "AppleWebAppMeta", - ()=>AppleWebAppMeta, - "BasicMeta", - ()=>BasicMeta, - "FacebookMeta", - ()=>FacebookMeta, - "FormatDetectionMeta", - ()=>FormatDetectionMeta, - "ItunesMeta", - ()=>ItunesMeta, - "PinterestMeta", - ()=>PinterestMeta, - "VerificationMeta", - ()=>VerificationMeta, - "ViewportMeta", - ()=>ViewportMeta -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -; -; -; -; -// convert viewport object to string for viewport meta tag -function resolveViewportLayout(viewport) { - let resolved = null; - if (viewport && typeof viewport === 'object') { - resolved = ''; - for(const viewportKey_ in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ViewportMetaKeys"]){ - const viewportKey = viewportKey_; - if (viewportKey in viewport) { - let value = viewport[viewportKey]; - if (typeof value === 'boolean') { - value = value ? 'yes' : 'no'; - } else if (!value && viewportKey === 'initialScale') { - value = undefined; - } - if (value) { - if (resolved) resolved += ', '; - resolved += `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ViewportMetaKeys"][viewportKey]}=${value}`; - } - } - } - } - return resolved; -} -function ViewportMeta({ viewport }) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - charSet: "utf-8" - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'viewport', - content: resolveViewportLayout(viewport) - }), - ...viewport.themeColor ? viewport.themeColor.map((themeColor)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'theme-color', - content: themeColor.color, - media: themeColor.media - })) : [], - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'color-scheme', - content: viewport.colorScheme - }) - ]); -} -function BasicMeta({ metadata }) { - var _metadata_keywords, _metadata_robots, _metadata_robots1; - const manifestOrigin = metadata.manifest ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getOrigin"])(metadata.manifest) : undefined; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - metadata.title !== null && metadata.title.absolute ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("title", { - children: metadata.title.absolute - }) : null, - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'description', - content: metadata.description - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'application-name', - content: metadata.applicationName - }), - ...metadata.authors ? metadata.authors.map((author)=>[ - author.url ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "author", - href: author.url.toString() - }) : null, - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'author', - content: author.name - }) - ]) : [], - metadata.manifest ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "manifest", - href: metadata.manifest.toString(), - // If it's same origin, and it's a preview deployment, - // including credentials for manifest request. - crossOrigin: !manifestOrigin && process.env.VERCEL_ENV === 'preview' ? 'use-credentials' : undefined - }) : null, - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'generator', - content: metadata.generator - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'keywords', - content: (_metadata_keywords = metadata.keywords) == null ? void 0 : _metadata_keywords.join(',') - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'referrer', - content: metadata.referrer - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'creator', - content: metadata.creator - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'publisher', - content: metadata.publisher - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'robots', - content: (_metadata_robots = metadata.robots) == null ? void 0 : _metadata_robots.basic - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'googlebot', - content: (_metadata_robots1 = metadata.robots) == null ? void 0 : _metadata_robots1.googleBot - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'abstract', - content: metadata.abstract - }), - ...metadata.archives ? metadata.archives.map((archive)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "archives", - href: archive - })) : [], - ...metadata.assets ? metadata.assets.map((asset)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "assets", - href: asset - })) : [], - ...metadata.bookmarks ? metadata.bookmarks.map((bookmark)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "bookmarks", - href: bookmark - })) : [], - ...metadata.pagination ? [ - metadata.pagination.previous ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "prev", - href: metadata.pagination.previous - }) : null, - metadata.pagination.next ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: "next", - href: metadata.pagination.next - }) : null - ] : [], - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'category', - content: metadata.category - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'classification', - content: metadata.classification - }), - ...metadata.other ? Object.entries(metadata.other).map(([name, content])=>{ - if (Array.isArray(content)) { - return content.map((contentItem)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name, - content: contentItem - })); - } else { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name, - content - }); - } - }) : [] - ]); -} -function ItunesMeta({ itunes }) { - if (!itunes) return null; - const { appId, appArgument } = itunes; - let content = `app-id=${appId}`; - if (appArgument) { - content += `, app-argument=${appArgument}`; - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "apple-itunes-app", - content: content - }); -} -function FacebookMeta({ facebook }) { - if (!facebook) return null; - const { appId, admins } = facebook; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - appId ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - property: "fb:app_id", - content: appId - }) : null, - ...admins ? admins.map((admin)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - property: "fb:admins", - content: admin - })) : [] - ]); -} -function PinterestMeta({ pinterest }) { - if (!pinterest || pinterest.richPin === undefined) return null; - const { richPin } = pinterest; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - property: "pinterest-rich-pin", - content: richPin.toString() - }); -} -const formatDetectionKeys = [ - 'telephone', - 'date', - 'address', - 'email', - 'url' -]; -function FormatDetectionMeta({ formatDetection }) { - if (!formatDetection) return null; - let content = ''; - for (const key of formatDetectionKeys){ - if (formatDetection[key] === false) { - if (content) content += ', '; - content += `${key}=no`; - } - } - return content ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "format-detection", - content: content - }) : null; -} -function AppleWebAppMeta({ appleWebApp }) { - if (!appleWebApp) return null; - const { capable, title, startupImage, statusBarStyle } = appleWebApp; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - capable ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'mobile-web-app-capable', - content: 'yes' - }) : null, - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'apple-mobile-web-app-title', - content: title - }), - startupImage ? startupImage.map((image)=>/*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - href: image.url, - media: image.media, - rel: "apple-touch-startup-image" - })) : null, - statusBarStyle ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'apple-mobile-web-app-status-bar-style', - content: statusBarStyle - }) : null - ]); -} -function VerificationMeta({ verification }) { - if (!verification) return null; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'google-site-verification', - contents: verification.google - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'y_key', - contents: verification.yahoo - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'yandex-verification', - contents: verification.yandex - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'me', - contents: verification.me - }), - ...verification.other ? Object.entries(verification.other).map(([key, value])=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: key, - contents: value - })) : [] - ]); -} //# sourceMappingURL=basic.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/alternate.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "AlternatesMetadata", - ()=>AlternatesMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -; -; -; -function AlternateLink({ descriptor, ...props }) { - if (!descriptor.url) return null; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - ...props, - ...descriptor.title && { - title: descriptor.title - }, - href: descriptor.url.toString() - }); -} -function AlternatesMetadata({ alternates }) { - if (!alternates) return null; - const { canonical, languages, media, types } = alternates; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - canonical ? AlternateLink({ - rel: 'canonical', - descriptor: canonical - }) : null, - languages ? Object.entries(languages).flatMap(([locale, descriptors])=>descriptors == null ? void 0 : descriptors.map((descriptor)=>AlternateLink({ - rel: 'alternate', - hrefLang: locale, - descriptor - }))) : null, - media ? Object.entries(media).flatMap(([mediaName, descriptors])=>descriptors == null ? void 0 : descriptors.map((descriptor)=>AlternateLink({ - rel: 'alternate', - media: mediaName, - descriptor - }))) : null, - types ? Object.entries(types).flatMap(([type, descriptors])=>descriptors == null ? void 0 : descriptors.map((descriptor)=>AlternateLink({ - rel: 'alternate', - type, - descriptor - }))) : null - ]); -} //# sourceMappingURL=alternate.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/opengraph.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "AppLinksMeta", - ()=>AppLinksMeta, - "OpenGraphMetadata", - ()=>OpenGraphMetadata, - "TwitterMetadata", - ()=>TwitterMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -; -function OpenGraphMetadata({ openGraph }) { - var _openGraph_title, _openGraph_url, _openGraph_ttl; - if (!openGraph) { - return null; - } - let typedOpenGraph; - if ('type' in openGraph) { - const openGraphType = openGraph.type; - switch(openGraphType){ - case 'website': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'website' - }) - ]; - break; - case 'article': - var _openGraph_publishedTime, _openGraph_modifiedTime, _openGraph_expirationTime; - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'article' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'article:published_time', - content: (_openGraph_publishedTime = openGraph.publishedTime) == null ? void 0 : _openGraph_publishedTime.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'article:modified_time', - content: (_openGraph_modifiedTime = openGraph.modifiedTime) == null ? void 0 : _openGraph_modifiedTime.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'article:expiration_time', - content: (_openGraph_expirationTime = openGraph.expirationTime) == null ? void 0 : _openGraph_expirationTime.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'article:author', - contents: openGraph.authors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'article:section', - content: openGraph.section - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'article:tag', - contents: openGraph.tags - }) - ]; - break; - case 'book': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'book' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'book:isbn', - content: openGraph.isbn - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'book:release_date', - content: openGraph.releaseDate - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'book:author', - contents: openGraph.authors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'book:tag', - contents: openGraph.tags - }) - ]; - break; - case 'profile': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'profile' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'profile:first_name', - content: openGraph.firstName - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'profile:last_name', - content: openGraph.lastName - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'profile:username', - content: openGraph.username - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'profile:gender', - content: openGraph.gender - }) - ]; - break; - case 'music.song': - var _openGraph_duration; - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'music.song' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'music:duration', - content: (_openGraph_duration = openGraph.duration) == null ? void 0 : _openGraph_duration.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:album', - contents: openGraph.albums - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:musician', - contents: openGraph.musicians - }) - ]; - break; - case 'music.album': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'music.album' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:song', - contents: openGraph.songs - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:musician', - contents: openGraph.musicians - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'music:release_date', - content: openGraph.releaseDate - }) - ]; - break; - case 'music.playlist': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'music.playlist' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:song', - contents: openGraph.songs - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:creator', - contents: openGraph.creators - }) - ]; - break; - case 'music.radio_station': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'music.radio_station' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'music:creator', - contents: openGraph.creators - }) - ]; - break; - case 'video.movie': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'video.movie' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:actor', - contents: openGraph.actors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:director', - contents: openGraph.directors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:writer', - contents: openGraph.writers - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:duration', - content: openGraph.duration - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:release_date', - content: openGraph.releaseDate - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:tag', - contents: openGraph.tags - }) - ]; - break; - case 'video.episode': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'video.episode' - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:actor', - contents: openGraph.actors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:director', - contents: openGraph.directors - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:writer', - contents: openGraph.writers - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:duration', - content: openGraph.duration - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:release_date', - content: openGraph.releaseDate - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'video:tag', - contents: openGraph.tags - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'video:series', - content: openGraph.series - }) - ]; - break; - case 'video.tv_show': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'video.tv_show' - }) - ]; - break; - case 'video.other': - typedOpenGraph = [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:type', - content: 'video.other' - }) - ]; - break; - default: - const _exhaustiveCheck = openGraphType; - throw Object.defineProperty(new Error(`Invalid OpenGraph type: ${_exhaustiveCheck}`), "__NEXT_ERROR_CODE", { - value: "E237", - enumerable: false, - configurable: true - }); - } - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:determiner', - content: openGraph.determiner - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:title', - content: (_openGraph_title = openGraph.title) == null ? void 0 : _openGraph_title.absolute - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:description', - content: openGraph.description - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:url', - content: (_openGraph_url = openGraph.url) == null ? void 0 : _openGraph_url.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:site_name', - content: openGraph.siteName - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:locale', - content: openGraph.locale - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:country_name', - content: openGraph.countryName - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - property: 'og:ttl', - content: (_openGraph_ttl = openGraph.ttl) == null ? void 0 : _openGraph_ttl.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:image', - contents: openGraph.images - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:video', - contents: openGraph.videos - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:audio', - contents: openGraph.audio - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:email', - contents: openGraph.emails - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:phone_number', - contents: openGraph.phoneNumbers - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:fax_number', - contents: openGraph.faxNumbers - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'og:locale:alternate', - contents: openGraph.alternateLocale - }), - ...typedOpenGraph ? typedOpenGraph : [] - ]); -} -function TwitterAppItem({ app, type }) { - var _app_url_type, _app_url; - return [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: `twitter:app:name:${type}`, - content: app.name - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: `twitter:app:id:${type}`, - content: app.id[type] - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: `twitter:app:url:${type}`, - content: (_app_url = app.url) == null ? void 0 : (_app_url_type = _app_url[type]) == null ? void 0 : _app_url_type.toString() - }) - ]; -} -function TwitterMetadata({ twitter }) { - var _twitter_title; - if (!twitter) return null; - const { card } = twitter; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:card', - content: card - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:site', - content: twitter.site - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:site:id', - content: twitter.siteId - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:creator', - content: twitter.creator - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:creator:id', - content: twitter.creatorId - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:title', - content: (_twitter_title = twitter.title) == null ? void 0 : _twitter_title.absolute - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:description', - content: twitter.description - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - namePrefix: 'twitter:image', - contents: twitter.images - }), - ...card === 'player' ? twitter.players.flatMap((player)=>[ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:player', - content: player.playerUrl.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:player:stream', - content: player.streamUrl.toString() - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:player:width', - content: player.width - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Meta"])({ - name: 'twitter:player:height', - content: player.height - }) - ]) : [], - ...card === 'app' ? [ - TwitterAppItem({ - app: twitter.app, - type: 'iphone' - }), - TwitterAppItem({ - app: twitter.app, - type: 'ipad' - }), - TwitterAppItem({ - app: twitter.app, - type: 'googleplay' - }) - ] : [] - ]); -} -function AppLinksMeta({ appLinks }) { - if (!appLinks) return null; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:ios', - contents: appLinks.ios - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:iphone', - contents: appLinks.iphone - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:ipad', - contents: appLinks.ipad - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:android', - contents: appLinks.android - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:windows_phone', - contents: appLinks.windows_phone - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:windows', - contents: appLinks.windows - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:windows_universal', - contents: appLinks.windows_universal - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MultiMeta"])({ - propertyPrefix: 'al:web', - contents: appLinks.web - }) - ]); -} //# sourceMappingURL=opengraph.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js ")); -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js")); -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icons.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "IconsMetadata", - ()=>IconsMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -; -; -; -function IconDescriptorLink({ icon }) { - const { url, rel = 'icon', ...props } = icon; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: rel, - href: url.toString(), - ...props - }); -} -function IconLink({ rel, icon }) { - if (typeof icon === 'object' && !(icon instanceof URL)) { - if (!icon.rel && rel) icon.rel = rel; - return IconDescriptorLink({ - icon - }); - } else { - const href = icon.toString(); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("link", { - rel: rel, - href: href - }); - } -} -function IconsMetadata({ icons }) { - if (!icons) return null; - const shortcutList = icons.shortcut; - const iconList = icons.icon; - const appleList = icons.apple; - const otherList = icons.other; - const hasIcon = Boolean((shortcutList == null ? void 0 : shortcutList.length) || (iconList == null ? void 0 : iconList.length) || (appleList == null ? void 0 : appleList.length) || (otherList == null ? void 0 : otherList.length)); - if (!hasIcon) return null; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - shortcutList ? shortcutList.map((icon)=>IconLink({ - rel: 'shortcut icon', - icon - })) : null, - iconList ? iconList.map((icon)=>IconLink({ - rel: 'icon', - icon - })) : null, - appleList ? appleList.map((icon)=>IconLink({ - rel: 'apple-touch-icon', - icon - })) : null, - otherList ? otherList.map((icon)=>IconDescriptorLink({ - icon - })) : null, - hasIcon ? /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icon$2d$mark$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IconMark"], {}) : null - ]); -} //# sourceMappingURL=icons.js.map -}), -"[project]/node_modules/next/dist/compiled/server-only/empty.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -}), -"[project]/node_modules/next/dist/esm/lib/metadata/default-metadata.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDefaultMetadata", - ()=>createDefaultMetadata, - "createDefaultViewport", - ()=>createDefaultViewport -]); -function createDefaultViewport() { - return { - // name=viewport - width: 'device-width', - initialScale: 1, - // visual metadata - themeColor: null, - colorScheme: null - }; -} -function createDefaultMetadata() { - return { - // Deprecated ones - viewport: null, - themeColor: null, - colorScheme: null, - metadataBase: null, - // Other values are all null - title: null, - description: null, - applicationName: null, - authors: null, - generator: null, - keywords: null, - referrer: null, - creator: null, - publisher: null, - robots: null, - manifest: null, - alternates: { - canonical: null, - languages: null, - media: null, - types: null - }, - icons: null, - openGraph: null, - twitter: null, - verification: {}, - appleWebApp: null, - formatDetection: null, - itunes: null, - facebook: null, - pinterest: null, - abstract: null, - appLinks: null, - archives: null, - assets: null, - bookmarks: null, - category: null, - classification: null, - pagination: { - previous: null, - next: null - }, - other: {} - }; -} //# sourceMappingURL=default-metadata.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/isomorphic/path.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -/** - * This module is for next.js server internal usage of path module. - * It will use native path module for nodejs runtime. - * It will use path-browserify polyfill for edge runtime. - */ let path; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - path = __turbopack_context__.r("[externals]/path [external] (path, cjs)"); -} -module.exports = path; //# sourceMappingURL=path.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getSocialImageMetadataBaseFallback", - ()=>getSocialImageMetadataBaseFallback, - "isStringOrURL", - ()=>isStringOrURL, - "resolveAbsoluteUrlWithPathname", - ()=>resolveAbsoluteUrlWithPathname, - "resolveRelativeUrl", - ()=>resolveRelativeUrl, - "resolveUrl", - ()=>resolveUrl -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$isomorphic$2f$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/isomorphic/path.js [app-rsc] (ecmascript)"); -; -function isStringOrURL(icon) { - return typeof icon === 'string' || icon instanceof URL; -} -function createLocalMetadataBase() { - // Check if experimental HTTPS is enabled - const isExperimentalHttps = Boolean(process.env.__NEXT_EXPERIMENTAL_HTTPS); - const protocol = isExperimentalHttps ? 'https' : 'http'; - return new URL(`${protocol}://localhost:${process.env.PORT || 3000}`); -} -function getPreviewDeploymentUrl() { - const origin = process.env.VERCEL_BRANCH_URL || process.env.VERCEL_URL; - return origin ? new URL(`https://${origin}`) : undefined; -} -function getProductionDeploymentUrl() { - const origin = process.env.VERCEL_PROJECT_PRODUCTION_URL; - return origin ? new URL(`https://${origin}`) : undefined; -} -function getSocialImageMetadataBaseFallback(metadataBase) { - const defaultMetadataBase = createLocalMetadataBase(); - const previewDeploymentUrl = getPreviewDeploymentUrl(); - const productionDeploymentUrl = getProductionDeploymentUrl(); - let fallbackMetadataBase; - if ("TURBOPACK compile-time truthy", 1) { - fallbackMetadataBase = defaultMetadataBase; - } else //TURBOPACK unreachable - ; - return fallbackMetadataBase; -} -function resolveUrl(url, metadataBase) { - if (url instanceof URL) return url; - if (!url) return null; - try { - // If we can construct a URL instance from url, ignore metadataBase - const parsedUrl = new URL(url); - return parsedUrl; - } catch {} - if (!metadataBase) { - metadataBase = createLocalMetadataBase(); - } - // Handle relative or absolute paths - const pathname = metadataBase.pathname || ''; - const joinedPath = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$isomorphic$2f$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].posix.join(pathname, url); - return new URL(joinedPath, metadataBase); -} -// Resolve with `pathname` if `url` is a relative path. -function resolveRelativeUrl(url, pathname) { - if (typeof url === 'string' && url.startsWith('./')) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$isomorphic$2f$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].posix.resolve(pathname, url); - } - return url; -} -// The regex is matching logic from packages/next/src/lib/load-custom-routes.ts -const FILE_REGEX = /^(?:\/((?!\.well-known(?:\/.*)?)(?:[^/]+\/)*[^/]+\.\w+))(\/?|$)/i; -function isFilePattern(pathname) { - return FILE_REGEX.test(pathname); -} -// Resolve `pathname` if `url` is a relative path the compose with `metadataBase`. -function resolveAbsoluteUrlWithPathname(url, metadataBase, pathname, { trailingSlash }) { - // Resolve url with pathname that always starts with `/` - url = resolveRelativeUrl(url, pathname); - // Convert string url or URL instance to absolute url string, - // if there's case needs to be resolved with metadataBase - let resolvedUrl = ''; - const result = metadataBase ? resolveUrl(url, metadataBase) : url; - if (typeof result === 'string') { - resolvedUrl = result; - } else { - resolvedUrl = result.pathname === '/' && result.searchParams.size === 0 ? result.origin : result.href; - } - // Add trailing slash if it's enabled for urls matches the condition - // - Not external, same origin with metadataBase - // - Doesn't have query - if (trailingSlash && !resolvedUrl.endsWith('/')) { - let isRelative = resolvedUrl.startsWith('/'); - let hasQuery = resolvedUrl.includes('?'); - let isExternal = false; - let isFileUrl = false; - if (!isRelative) { - try { - const parsedUrl = new URL(resolvedUrl); - isExternal = metadataBase != null && parsedUrl.origin !== metadataBase.origin; - isFileUrl = isFilePattern(parsedUrl.pathname); - } catch { - // If it's not a valid URL, treat it as external - isExternal = true; - } - if (!isFileUrl && !isExternal && !hasQuery) return `${resolvedUrl}/`; - } - } - return resolvedUrl; -} -; - //# sourceMappingURL=resolve-url.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-title.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveTitle", - ()=>resolveTitle -]); -function resolveTitleTemplate(template, title) { - return template ? template.replace(/%s/g, title) : title; -} -function resolveTitle(title, stashedTemplate) { - let resolved; - const template = typeof title !== 'string' && title && 'template' in title ? title.template : null; - if (typeof title === 'string') { - resolved = resolveTitleTemplate(stashedTemplate, title); - } else if (title) { - if ('default' in title) { - resolved = resolveTitleTemplate(stashedTemplate, title.default); - } - if ('absolute' in title && title.absolute) { - resolved = title.absolute; - } - } - if (title && typeof title !== 'string') { - return { - template, - absolute: resolved || '' - }; - } else { - return { - absolute: resolved || title || '', - template - }; - } -} //# sourceMappingURL=resolve-title.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ACTION_HEADER", - ()=>ACTION_HEADER, - "FLIGHT_HEADERS", - ()=>FLIGHT_HEADERS, - "NEXT_ACTION_NOT_FOUND_HEADER", - ()=>NEXT_ACTION_NOT_FOUND_HEADER, - "NEXT_ACTION_REVALIDATED_HEADER", - ()=>NEXT_ACTION_REVALIDATED_HEADER, - "NEXT_DID_POSTPONE_HEADER", - ()=>NEXT_DID_POSTPONE_HEADER, - "NEXT_HMR_REFRESH_HASH_COOKIE", - ()=>NEXT_HMR_REFRESH_HASH_COOKIE, - "NEXT_HMR_REFRESH_HEADER", - ()=>NEXT_HMR_REFRESH_HEADER, - "NEXT_HTML_REQUEST_ID_HEADER", - ()=>NEXT_HTML_REQUEST_ID_HEADER, - "NEXT_IS_PRERENDER_HEADER", - ()=>NEXT_IS_PRERENDER_HEADER, - "NEXT_REQUEST_ID_HEADER", - ()=>NEXT_REQUEST_ID_HEADER, - "NEXT_REWRITTEN_PATH_HEADER", - ()=>NEXT_REWRITTEN_PATH_HEADER, - "NEXT_REWRITTEN_QUERY_HEADER", - ()=>NEXT_REWRITTEN_QUERY_HEADER, - "NEXT_ROUTER_PREFETCH_HEADER", - ()=>NEXT_ROUTER_PREFETCH_HEADER, - "NEXT_ROUTER_SEGMENT_PREFETCH_HEADER", - ()=>NEXT_ROUTER_SEGMENT_PREFETCH_HEADER, - "NEXT_ROUTER_STALE_TIME_HEADER", - ()=>NEXT_ROUTER_STALE_TIME_HEADER, - "NEXT_ROUTER_STATE_TREE_HEADER", - ()=>NEXT_ROUTER_STATE_TREE_HEADER, - "NEXT_RSC_UNION_QUERY", - ()=>NEXT_RSC_UNION_QUERY, - "NEXT_URL", - ()=>NEXT_URL, - "RSC_CONTENT_TYPE_HEADER", - ()=>RSC_CONTENT_TYPE_HEADER, - "RSC_HEADER", - ()=>RSC_HEADER -]); -const RSC_HEADER = 'rsc'; -const ACTION_HEADER = 'next-action'; -const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree'; -const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch'; -const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER = 'next-router-segment-prefetch'; -const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh'; -const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__'; -const NEXT_URL = 'next-url'; -const RSC_CONTENT_TYPE_HEADER = 'text/x-component'; -const FLIGHT_HEADERS = [ - RSC_HEADER, - NEXT_ROUTER_STATE_TREE_HEADER, - NEXT_ROUTER_PREFETCH_HEADER, - NEXT_HMR_REFRESH_HEADER, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER -]; -const NEXT_RSC_UNION_QUERY = '_rsc'; -const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time'; -const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed'; -const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path'; -const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query'; -const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender'; -const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found'; -const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id'; -const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id'; -const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated'; //# sourceMappingURL=app-router-headers.js.map -}), -"[project]/node_modules/next/dist/esm/lib/url.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isFullStringUrl", - ()=>isFullStringUrl, - "parseReqUrl", - ()=>parseReqUrl, - "parseUrl", - ()=>parseUrl, - "stripNextRscUnionQuery", - ()=>stripNextRscUnionQuery -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -; -const DUMMY_ORIGIN = 'http://n'; -function isFullStringUrl(url) { - return /https?:\/\//.test(url); -} -function parseUrl(url) { - let parsed = undefined; - try { - parsed = new URL(url, DUMMY_ORIGIN); - } catch {} - return parsed; -} -function parseReqUrl(url) { - const parsedUrl = parseUrl(url); - if (!parsedUrl) { - return; - } - const query = {}; - for (const key of parsedUrl.searchParams.keys()){ - const values = parsedUrl.searchParams.getAll(key); - query[key] = values.length > 1 ? values : values[0]; - } - const legacyUrl = { - query, - hash: parsedUrl.hash, - search: parsedUrl.search, - path: parsedUrl.pathname, - pathname: parsedUrl.pathname, - href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`, - host: '', - hostname: '', - auth: '', - protocol: '', - slashes: null, - port: '' - }; - return legacyUrl; -} -function stripNextRscUnionQuery(relativeUrl) { - const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN); - urlInstance.searchParams.delete(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]); - return urlInstance.pathname + urlInstance.search; -} //# sourceMappingURL=url.js.map -}), -"[project]/node_modules/next/dist/esm/lib/picocolors.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "bgBlack", - ()=>bgBlack, - "bgBlue", - ()=>bgBlue, - "bgCyan", - ()=>bgCyan, - "bgGreen", - ()=>bgGreen, - "bgMagenta", - ()=>bgMagenta, - "bgRed", - ()=>bgRed, - "bgWhite", - ()=>bgWhite, - "bgYellow", - ()=>bgYellow, - "black", - ()=>black, - "blue", - ()=>blue, - "bold", - ()=>bold, - "cyan", - ()=>cyan, - "dim", - ()=>dim, - "gray", - ()=>gray, - "green", - ()=>green, - "hidden", - ()=>hidden, - "inverse", - ()=>inverse, - "italic", - ()=>italic, - "magenta", - ()=>magenta, - "purple", - ()=>purple, - "red", - ()=>red, - "reset", - ()=>reset, - "strikethrough", - ()=>strikethrough, - "underline", - ()=>underline, - "white", - ()=>white, - "yellow", - ()=>yellow -]); -// ISC License -// Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov -// Permission to use, copy, modify, and/or distribute this software for any -// purpose with or without fee is hereby granted, provided that the above -// copyright notice and this permission notice appear in all copies. -// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -// -// https://github.com/alexeyraspopov/picocolors/blob/b6261487e7b81aaab2440e397a356732cad9e342/picocolors.js#L1 -var _globalThis; -const { env, stdout } = ((_globalThis = globalThis) == null ? void 0 : _globalThis.process) ?? {}; -const enabled = env && !env.NO_COLOR && (env.FORCE_COLOR || (stdout == null ? void 0 : stdout.isTTY) && !env.CI && env.TERM !== 'dumb'); -const replaceClose = (str, close, replace, index)=>{ - const start = str.substring(0, index) + replace; - const end = str.substring(index + close.length); - const nextIndex = end.indexOf(close); - return ~nextIndex ? start + replaceClose(end, close, replace, nextIndex) : start + end; -}; -const formatter = (open, close, replace = open)=>{ - if (!enabled) return String; - return (input)=>{ - const string = '' + input; - const index = string.indexOf(close, open.length); - return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close; - }; -}; -const reset = enabled ? (s)=>`\x1b[0m${s}\x1b[0m` : String; -const bold = formatter('\x1b[1m', '\x1b[22m', '\x1b[22m\x1b[1m'); -const dim = formatter('\x1b[2m', '\x1b[22m', '\x1b[22m\x1b[2m'); -const italic = formatter('\x1b[3m', '\x1b[23m'); -const underline = formatter('\x1b[4m', '\x1b[24m'); -const inverse = formatter('\x1b[7m', '\x1b[27m'); -const hidden = formatter('\x1b[8m', '\x1b[28m'); -const strikethrough = formatter('\x1b[9m', '\x1b[29m'); -const black = formatter('\x1b[30m', '\x1b[39m'); -const red = formatter('\x1b[31m', '\x1b[39m'); -const green = formatter('\x1b[32m', '\x1b[39m'); -const yellow = formatter('\x1b[33m', '\x1b[39m'); -const blue = formatter('\x1b[34m', '\x1b[39m'); -const magenta = formatter('\x1b[35m', '\x1b[39m'); -const purple = formatter('\x1b[38;2;173;127;168m', '\x1b[39m'); -const cyan = formatter('\x1b[36m', '\x1b[39m'); -const white = formatter('\x1b[37m', '\x1b[39m'); -const gray = formatter('\x1b[90m', '\x1b[39m'); -const bgBlack = formatter('\x1b[40m', '\x1b[49m'); -const bgRed = formatter('\x1b[41m', '\x1b[49m'); -const bgGreen = formatter('\x1b[42m', '\x1b[49m'); -const bgYellow = formatter('\x1b[43m', '\x1b[49m'); -const bgBlue = formatter('\x1b[44m', '\x1b[49m'); -const bgMagenta = formatter('\x1b[45m', '\x1b[49m'); -const bgCyan = formatter('\x1b[46m', '\x1b[49m'); -const bgWhite = formatter('\x1b[47m', '\x1b[49m'); //# sourceMappingURL=picocolors.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/lru-cache.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "LRUCache", - ()=>LRUCache -]); -/** - * Node in the doubly-linked list used for LRU tracking. - * Each node represents a cache entry with bidirectional pointers. - */ class LRUNode { - constructor(key, data, size){ - this.prev = null; - this.next = null; - this.key = key; - this.data = data; - this.size = size; - } -} -/** - * Sentinel node used for head/tail boundaries. - * These nodes don't contain actual cache data but simplify list operations. - */ class SentinelNode { - constructor(){ - this.prev = null; - this.next = null; - } -} -class LRUCache { - constructor(maxSize, calculateSize, onEvict){ - this.cache = new Map(); - this.totalSize = 0; - this.maxSize = maxSize; - this.calculateSize = calculateSize; - this.onEvict = onEvict; - // Create sentinel nodes to simplify doubly-linked list operations - // HEAD <-> TAIL (empty list) - this.head = new SentinelNode(); - this.tail = new SentinelNode(); - this.head.next = this.tail; - this.tail.prev = this.head; - } - /** - * Adds a node immediately after the head (marks as most recently used). - * Used when inserting new items or when an item is accessed. - * PRECONDITION: node must be disconnected (prev/next should be null) - */ addToHead(node) { - node.prev = this.head; - node.next = this.head.next; - // head.next is always non-null (points to tail or another node) - this.head.next.prev = node; - this.head.next = node; - } - /** - * Removes a node from its current position in the doubly-linked list. - * Updates the prev/next pointers of adjacent nodes to maintain list integrity. - * PRECONDITION: node must be connected (prev/next are non-null) - */ removeNode(node) { - // Connected nodes always have non-null prev/next - node.prev.next = node.next; - node.next.prev = node.prev; - } - /** - * Moves an existing node to the head position (marks as most recently used). - * This is the core LRU operation - accessed items become most recent. - */ moveToHead(node) { - this.removeNode(node); - this.addToHead(node); - } - /** - * Removes and returns the least recently used node (the one before tail). - * This is called during eviction when the cache exceeds capacity. - * PRECONDITION: cache is not empty (ensured by caller) - */ removeTail() { - const lastNode = this.tail.prev; - // tail.prev is always non-null and always LRUNode when cache is not empty - this.removeNode(lastNode); - return lastNode; - } - /** - * Sets a key-value pair in the cache. - * If the key exists, updates the value and moves to head. - * If new, adds at head and evicts from tail if necessary. - * - * Time Complexity: - * - O(1) for uniform item sizes - * - O(k) where k is the number of items evicted (can be O(N) for variable sizes) - */ set(key, value) { - const size = (this.calculateSize == null ? void 0 : this.calculateSize.call(this, value)) ?? 1; - if (size > this.maxSize) { - console.warn('Single item size exceeds maxSize'); - return; - } - const existing = this.cache.get(key); - if (existing) { - // Update existing node: adjust size and move to head (most recent) - existing.data = value; - this.totalSize = this.totalSize - existing.size + size; - existing.size = size; - this.moveToHead(existing); - } else { - // Add new node at head (most recent position) - const newNode = new LRUNode(key, value, size); - this.cache.set(key, newNode); - this.addToHead(newNode); - this.totalSize += size; - } - // Evict least recently used items until under capacity - while(this.totalSize > this.maxSize && this.cache.size > 0){ - const tail = this.removeTail(); - this.cache.delete(tail.key); - this.totalSize -= tail.size; - this.onEvict == null ? void 0 : this.onEvict.call(this, tail.key, tail.data); - } - } - /** - * Checks if a key exists in the cache. - * This is a pure query operation - does NOT update LRU order. - * - * Time Complexity: O(1) - */ has(key) { - return this.cache.has(key); - } - /** - * Retrieves a value by key and marks it as most recently used. - * Moving to head maintains the LRU property for future evictions. - * - * Time Complexity: O(1) - */ get(key) { - const node = this.cache.get(key); - if (!node) return undefined; - // Mark as most recently used by moving to head - this.moveToHead(node); - return node.data; - } - /** - * Returns an iterator over the cache entries. The order is outputted in the - * order of most recently used to least recently used. - */ *[Symbol.iterator]() { - let current = this.head.next; - while(current && current !== this.tail){ - // Between head and tail, current is always LRUNode - const node = current; - yield [ - node.key, - node.data - ]; - current = current.next; - } - } - /** - * Removes a specific key from the cache. - * Updates both the hash map and doubly-linked list. - * - * Note: This is an explicit removal and does NOT trigger the `onEvict` - * callback. Use this for intentional deletions where eviction tracking - * is not needed. - * - * Time Complexity: O(1) - */ remove(key) { - const node = this.cache.get(key); - if (!node) return; - this.removeNode(node); - this.cache.delete(key); - this.totalSize -= node.size; - } - /** - * Returns the number of items in the cache. - */ get size() { - return this.cache.size; - } - /** - * Returns the current total size of all cached items. - * This uses the custom size calculation if provided. - */ get currentSize() { - return this.totalSize; - } -} //# sourceMappingURL=lru-cache.js.map -}), -"[project]/node_modules/next/dist/esm/build/output/log.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "bootstrap", - ()=>bootstrap, - "error", - ()=>error, - "errorOnce", - ()=>errorOnce, - "event", - ()=>event, - "info", - ()=>info, - "prefixes", - ()=>prefixes, - "ready", - ()=>ready, - "trace", - ()=>trace, - "wait", - ()=>wait, - "warn", - ()=>warn, - "warnOnce", - ()=>warnOnce -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/picocolors.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/lru-cache.js [app-rsc] (ecmascript)"); -; -; -const prefixes = { - wait: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["white"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('○')), - error: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["red"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('⨯')), - warn: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["yellow"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('⚠')), - ready: '▲', - info: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["white"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])(' ')), - event: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["green"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('✓')), - trace: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["magenta"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$picocolors$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["bold"])('»')) -}; -const LOGGING_METHOD = { - log: 'log', - warn: 'warn', - error: 'error' -}; -function prefixedLog(prefixType, ...message) { - if ((message[0] === '' || message[0] === undefined) && message.length === 1) { - message.shift(); - } - const consoleMethod = prefixType in LOGGING_METHOD ? LOGGING_METHOD[prefixType] : 'log'; - const prefix = prefixes[prefixType]; - // If there's no message, don't print the prefix but a new line - if (message.length === 0) { - console[consoleMethod](''); - } else { - // Ensure if there's ANSI escape codes it's concatenated into one string. - // Chrome DevTool can only handle color if it's in one string. - if (message.length === 1 && typeof message[0] === 'string') { - console[consoleMethod](prefix + ' ' + message[0]); - } else { - console[consoleMethod](prefix, ...message); - } - } -} -function bootstrap(message) { - console.log(message); -} -function wait(...message) { - prefixedLog('wait', ...message); -} -function error(...message) { - prefixedLog('error', ...message); -} -function warn(...message) { - prefixedLog('warn', ...message); -} -function ready(...message) { - prefixedLog('ready', ...message); -} -function info(...message) { - prefixedLog('info', ...message); -} -function event(...message) { - prefixedLog('event', ...message); -} -function trace(...message) { - prefixedLog('trace', ...message); -} -const warnOnceCache = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LRUCache"](10000, (value)=>value.length); -function warnOnce(...message) { - const key = message.join(' '); - if (!warnOnceCache.has(key)) { - warnOnceCache.set(key, key); - warn(...message); - } -} -const errorOnceCache = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LRUCache"](10000, (value)=>value.length); -function errorOnce(...message) { - const key = message.join(' '); - if (!errorOnceCache.has(key)) { - errorOnceCache.set(key, key); - error(...message); - } -} //# sourceMappingURL=log.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-opengraph.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveImages", - ()=>resolveImages, - "resolveOpenGraph", - ()=>resolveOpenGraph, - "resolveTwitter", - ()=>resolveTwitter -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-title.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/url.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/output/log.js [app-rsc] (ecmascript)"); -; -; -; -; -; -const OgTypeFields = { - article: [ - 'authors', - 'tags' - ], - song: [ - 'albums', - 'musicians' - ], - playlist: [ - 'albums', - 'musicians' - ], - radio: [ - 'creators' - ], - video: [ - 'actors', - 'directors', - 'writers', - 'tags' - ], - basic: [ - 'emails', - 'phoneNumbers', - 'faxNumbers', - 'alternateLocale', - 'audio', - 'videos' - ] -}; -function resolveAndValidateImage(item, metadataBase, isStaticMetadataRouteFile) { - if (!item) return undefined; - const isItemUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isStringOrURL"])(item); - const inputUrl = isItemUrl ? item : item.url; - if (!inputUrl) return undefined; - // process.env.VERCEL is set to "1" when System Environment Variables are - // exposed. When exposed, validation is not necessary since we are falling back to - // process.env.VERCEL_PROJECT_PRODUCTION_URL, process.env.VERCEL_BRANCH_URL, or - // process.env.VERCEL_URL for the `metadataBase`. process.env.VERCEL is undefined - // when System Environment Variables are not exposed. When not exposed, we cannot - // detect in the build environment if the deployment is a Vercel deployment or not. - // - // x-ref: https://vercel.com/docs/projects/environment-variables/system-environment-variables#system-environment-variables - const isUsingVercelSystemEnvironmentVariables = Boolean(process.env.VERCEL); - const isRelativeUrl = typeof inputUrl === 'string' && !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isFullStringUrl"])(inputUrl); - // When no explicit metadataBase is specified by the user, we'll override it with the fallback metadata - // under the following conditions: - // - The provided URL is relative (ie ./og-image). - // - The image is statically generated by Next.js (such as the special `opengraph-image` route) - // In both cases, we want to ensure that across all environments, the ogImage is a fully qualified URL. - // In the `opengraph-image` case, since the user isn't explicitly passing a relative path, this ensures - // the ogImage will be properly discovered across different environments without the user needing to - // have a bunch of `process.env` checks when defining their `metadataBase`. - if (isRelativeUrl && (!metadataBase || isStaticMetadataRouteFile)) { - const fallbackMetadataBase = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getSocialImageMetadataBaseFallback"])(metadataBase); - // When not using Vercel environment variables for URL injection, we aren't able to determine - // a fallback value for `metadataBase`. For self-hosted setups, we want to warn - // about this since the only fallback we'll be able to generate is `localhost`. - // In development, we'll only warn for relative metadata that isn't part of the static - // metadata conventions (eg `opengraph-image`), as otherwise it's currently very noisy - // for common cases. Eventually we should remove this warning all together in favor of - // devtools. - const shouldWarn = !isUsingVercelSystemEnvironmentVariables && !metadataBase && (("TURBOPACK compile-time value", "development") === 'production' || !isStaticMetadataRouteFile); - if (shouldWarn) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["warnOnce"])(`metadataBase property in metadata export is not set for resolving social open graph or twitter images, using "${fallbackMetadataBase.origin}". See https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase`); - } - metadataBase = fallbackMetadataBase; - } - return isItemUrl ? { - url: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveUrl"])(inputUrl, metadataBase) - } : { - ...item, - // Update image descriptor url - url: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveUrl"])(inputUrl, metadataBase) - }; -} -function resolveImages(images, metadataBase, isStaticMetadataRouteFile) { - const resolvedImages = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(images); - if (!resolvedImages) return resolvedImages; - const nonNullableImages = []; - for (const item of resolvedImages){ - const resolvedItem = resolveAndValidateImage(item, metadataBase, isStaticMetadataRouteFile); - if (!resolvedItem) continue; - nonNullableImages.push(resolvedItem); - } - return nonNullableImages; -} -const ogTypeToFields = { - article: OgTypeFields.article, - book: OgTypeFields.article, - 'music.song': OgTypeFields.song, - 'music.album': OgTypeFields.song, - 'music.playlist': OgTypeFields.playlist, - 'music.radio_station': OgTypeFields.radio, - 'video.movie': OgTypeFields.video, - 'video.episode': OgTypeFields.video -}; -function getFieldsByOgType(ogType) { - if (!ogType || !(ogType in ogTypeToFields)) return OgTypeFields.basic; - return ogTypeToFields[ogType].concat(OgTypeFields.basic); -} -const resolveOpenGraph = async (openGraph, metadataBase, pathname, metadataContext, titleTemplate)=>{ - if (!openGraph) return null; - function resolveProps(target, og) { - const ogType = og && 'type' in og ? og.type : undefined; - const keys = getFieldsByOgType(ogType); - for (const k of keys){ - const key = k; - if (key in og && key !== 'url') { - const value = og[key]; - target[key] = value ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveArray"])(value) : null; - } - } - target.images = resolveImages(og.images, metadataBase, metadataContext.isStaticMetadataRouteFile); - } - const resolved = { - ...openGraph, - title: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTitle"])(openGraph.title, titleTemplate) - }; - resolveProps(resolved, openGraph); - resolved.url = openGraph.url ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAbsoluteUrlWithPathname"])(openGraph.url, metadataBase, await pathname, metadataContext) : null; - return resolved; -}; -const TwitterBasicInfoKeys = [ - 'site', - 'siteId', - 'creator', - 'creatorId', - 'description' -]; -const resolveTwitter = (twitter, metadataBase, metadataContext, titleTemplate)=>{ - var _resolved_images; - if (!twitter) return null; - let card = 'card' in twitter ? twitter.card : undefined; - const resolved = { - ...twitter, - title: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTitle"])(twitter.title, titleTemplate) - }; - for (const infoKey of TwitterBasicInfoKeys){ - resolved[infoKey] = twitter[infoKey] || null; - } - resolved.images = resolveImages(twitter.images, metadataBase, metadataContext.isStaticMetadataRouteFile); - card = card || (((_resolved_images = resolved.images) == null ? void 0 : _resolved_images.length) ? 'summary_large_image' : 'summary'); - resolved.card = card; - if ('card' in resolved) { - switch(resolved.card){ - case 'player': - { - resolved.players = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(resolved.players) || []; - break; - } - case 'app': - { - resolved.app = resolved.app || {}; - break; - } - case 'summary': - case 'summary_large_image': - break; - default: - resolved; - } - } - return resolved; -}; //# sourceMappingURL=resolve-opengraph.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DEFAULT_SEGMENT_KEY", - ()=>DEFAULT_SEGMENT_KEY, - "NOT_FOUND_SEGMENT_KEY", - ()=>NOT_FOUND_SEGMENT_KEY, - "PAGE_SEGMENT_KEY", - ()=>PAGE_SEGMENT_KEY, - "addSearchParamsIfPageSegment", - ()=>addSearchParamsIfPageSegment, - "computeSelectedLayoutSegment", - ()=>computeSelectedLayoutSegment, - "getSegmentValue", - ()=>getSegmentValue, - "getSelectedLayoutSegmentPath", - ()=>getSelectedLayoutSegmentPath, - "isGroupSegment", - ()=>isGroupSegment, - "isParallelRouteSegment", - ()=>isParallelRouteSegment -]); -function getSegmentValue(segment) { - return Array.isArray(segment) ? segment[1] : segment; -} -function isGroupSegment(segment) { - // Use array[0] for performant purpose - return segment[0] === '(' && segment.endsWith(')'); -} -function isParallelRouteSegment(segment) { - return segment.startsWith('@') && segment !== '@children'; -} -function addSearchParamsIfPageSegment(segment, searchParams) { - const isPageSegment = segment.includes(PAGE_SEGMENT_KEY); - if (isPageSegment) { - const stringifiedQuery = JSON.stringify(searchParams); - return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY; - } - return segment; -} -function computeSelectedLayoutSegment(segments, parallelRouteKey) { - if (!segments || segments.length === 0) { - return null; - } - // For 'children', use first segment; for other parallel routes, use last segment - const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1]; - // If the default slot is showing, return null since it's not technically "selected" (it's a fallback) - // Returning an internal value like `__DEFAULT__` would be confusing - return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment; -} -function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) { - let node; - if (first) { - // Use the provided parallel route key on the first parallel route - node = tree[1][parallelRouteKey]; - } else { - // After first parallel route prefer children, if there's no children pick the first parallel route. - const parallelRoutes = tree[1]; - node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]; - } - if (!node) return segmentPath; - const segment = node[0]; - let segmentValue = getSegmentValue(segment); - if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) { - return segmentPath; - } - segmentPath.push(segmentValue); - return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath); -} -const PAGE_SEGMENT_KEY = '__PAGE__'; -const DEFAULT_SEGMENT_KEY = '__DEFAULT__'; -const NOT_FOUND_SEGMENT_KEY = '/_not-found'; //# sourceMappingURL=segment.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/app-dir-module.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getComponentTypeModule", - ()=>getComponentTypeModule, - "getLayoutOrPageModule", - ()=>getLayoutOrPageModule -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -; -async function getLayoutOrPageModule(loaderTree) { - const { layout, page, defaultPage } = loaderTree[2]; - const isLayout = typeof layout !== 'undefined'; - const isPage = typeof page !== 'undefined'; - const isDefaultPage = typeof defaultPage !== 'undefined' && loaderTree[0] === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"]; - let mod = undefined; - let modType = undefined; - let filePath = undefined; - if (isLayout) { - mod = await layout[0](); - modType = 'layout'; - filePath = layout[1]; - } else if (isPage) { - mod = await page[0](); - modType = 'page'; - filePath = page[1]; - } else if (isDefaultPage) { - mod = await defaultPage[0](); - modType = 'page'; - filePath = defaultPage[1]; - } - return { - mod, - modType, - filePath - }; -} -async function getComponentTypeModule(loaderTree, moduleType) { - const { [moduleType]: module } = loaderTree[2]; - if (typeof module !== 'undefined') { - return await module[0](); - } - return undefined; -} //# sourceMappingURL=app-dir-module.js.map -}), -"[project]/node_modules/next/dist/esm/lib/interop-default.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "interopDefault", - ()=>interopDefault -]); -function interopDefault(mod) { - return mod.default || mod; -} //# sourceMappingURL=interop-default.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-basics.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveAlternates", - ()=>resolveAlternates, - "resolveAppLinks", - ()=>resolveAppLinks, - "resolveAppleWebApp", - ()=>resolveAppleWebApp, - "resolveFacebook", - ()=>resolveFacebook, - "resolveItunes", - ()=>resolveItunes, - "resolvePagination", - ()=>resolvePagination, - "resolveRobots", - ()=>resolveRobots, - "resolveThemeColor", - ()=>resolveThemeColor, - "resolveVerification", - ()=>resolveVerification -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js [app-rsc] (ecmascript)"); -; -; -function resolveAlternateUrl(url, metadataBase, pathname, metadataContext) { - // If alter native url is an URL instance, - // we treat it as a URL base and resolve with current pathname - if (url instanceof URL) { - const newUrl = new URL(pathname, url); - url.searchParams.forEach((value, key)=>newUrl.searchParams.set(key, value)); - url = newUrl; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAbsoluteUrlWithPathname"])(url, metadataBase, pathname, metadataContext); -} -const resolveThemeColor = (themeColor)=>{ - var _resolveAsArrayOrUndefined; - if (!themeColor) return null; - const themeColorDescriptors = []; - (_resolveAsArrayOrUndefined = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(themeColor)) == null ? void 0 : _resolveAsArrayOrUndefined.forEach((descriptor)=>{ - if (typeof descriptor === 'string') themeColorDescriptors.push({ - color: descriptor - }); - else if (typeof descriptor === 'object') themeColorDescriptors.push({ - color: descriptor.color, - media: descriptor.media - }); - }); - return themeColorDescriptors; -}; -async function resolveUrlValuesOfObject(obj, metadataBase, pathname, metadataContext) { - if (!obj) return null; - const result = {}; - for (const [key, value] of Object.entries(obj)){ - if (typeof value === 'string' || value instanceof URL) { - const pathnameForUrl = await pathname; - result[key] = [ - { - url: resolveAlternateUrl(value, metadataBase, pathnameForUrl, metadataContext) - } - ]; - } else if (value && value.length) { - result[key] = []; - const pathnameForUrl = await pathname; - value.forEach((item, index)=>{ - const url = resolveAlternateUrl(item.url, metadataBase, pathnameForUrl, metadataContext); - result[key][index] = { - url, - title: item.title - }; - }); - } - } - return result; -} -async function resolveCanonicalUrl(urlOrDescriptor, metadataBase, pathname, metadataContext) { - if (!urlOrDescriptor) return null; - const url = typeof urlOrDescriptor === 'string' || urlOrDescriptor instanceof URL ? urlOrDescriptor : urlOrDescriptor.url; - const pathnameForUrl = await pathname; - // Return string url because structureClone can't handle URL instance - return { - url: resolveAlternateUrl(url, metadataBase, pathnameForUrl, metadataContext) - }; -} -const resolveAlternates = async (alternates, metadataBase, pathname, context)=>{ - if (!alternates) return null; - const canonical = await resolveCanonicalUrl(alternates.canonical, metadataBase, pathname, context); - const languages = await resolveUrlValuesOfObject(alternates.languages, metadataBase, pathname, context); - const media = await resolveUrlValuesOfObject(alternates.media, metadataBase, pathname, context); - const types = await resolveUrlValuesOfObject(alternates.types, metadataBase, pathname, context); - return { - canonical, - languages, - media, - types - }; -}; -const robotsKeys = [ - 'noarchive', - 'nosnippet', - 'noimageindex', - 'nocache', - 'notranslate', - 'indexifembedded', - 'nositelinkssearchbox', - 'unavailable_after', - 'max-video-preview', - 'max-image-preview', - 'max-snippet' -]; -const resolveRobotsValue = (robots)=>{ - if (!robots) return null; - if (typeof robots === 'string') return robots; - const values = []; - if (robots.index) values.push('index'); - else if (typeof robots.index === 'boolean') values.push('noindex'); - if (robots.follow) values.push('follow'); - else if (typeof robots.follow === 'boolean') values.push('nofollow'); - for (const key of robotsKeys){ - const value = robots[key]; - if (typeof value !== 'undefined' && value !== false) { - values.push(typeof value === 'boolean' ? key : `${key}:${value}`); - } - } - return values.join(', '); -}; -const resolveRobots = (robots)=>{ - if (!robots) return null; - return { - basic: resolveRobotsValue(robots), - googleBot: typeof robots !== 'string' ? resolveRobotsValue(robots.googleBot) : null - }; -}; -const VerificationKeys = [ - 'google', - 'yahoo', - 'yandex', - 'me', - 'other' -]; -const resolveVerification = (verification)=>{ - if (!verification) return null; - const res = {}; - for (const key of VerificationKeys){ - const value = verification[key]; - if (value) { - if (key === 'other') { - res.other = {}; - for(const otherKey in verification.other){ - const otherValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(verification.other[otherKey]); - if (otherValue) res.other[otherKey] = otherValue; - } - } else res[key] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(value); - } - } - return res; -}; -const resolveAppleWebApp = (appWebApp)=>{ - var _resolveAsArrayOrUndefined; - if (!appWebApp) return null; - if (appWebApp === true) { - return { - capable: true - }; - } - const startupImages = appWebApp.startupImage ? (_resolveAsArrayOrUndefined = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(appWebApp.startupImage)) == null ? void 0 : _resolveAsArrayOrUndefined.map((item)=>typeof item === 'string' ? { - url: item - } : item) : null; - return { - capable: 'capable' in appWebApp ? !!appWebApp.capable : true, - title: appWebApp.title || null, - startupImage: startupImages, - statusBarStyle: appWebApp.statusBarStyle || 'default' - }; -}; -const resolveAppLinks = (appLinks)=>{ - if (!appLinks) return null; - for(const key in appLinks){ - // @ts-ignore // TODO: type infer - appLinks[key] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(appLinks[key]); - } - return appLinks; -}; -const resolveItunes = async (itunes, metadataBase, pathname, context)=>{ - if (!itunes) return null; - return { - appId: itunes.appId, - appArgument: itunes.appArgument ? resolveAlternateUrl(itunes.appArgument, metadataBase, await pathname, context) : undefined - }; -}; -const resolveFacebook = (facebook)=>{ - if (!facebook) return null; - return { - appId: facebook.appId, - admins: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(facebook.admins) - }; -}; -const resolvePagination = async (pagination, metadataBase, pathname, context)=>{ - return { - previous: (pagination == null ? void 0 : pagination.previous) ? resolveAlternateUrl(pagination.previous, metadataBase, await pathname, context) : null, - next: (pagination == null ? void 0 : pagination.next) ? resolveAlternateUrl(pagination.next, metadataBase, await pathname, context) : null - }; -}; //# sourceMappingURL=resolve-basics.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-icons.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveIcon", - ()=>resolveIcon, - "resolveIcons", - ()=>resolveIcons -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-url.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/constants.js [app-rsc] (ecmascript)"); -; -; -; -function resolveIcon(icon) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isStringOrURL"])(icon)) return { - url: icon - }; - else if (Array.isArray(icon)) return icon; - return icon; -} -const resolveIcons = (icons)=>{ - if (!icons) { - return null; - } - const resolved = { - icon: [], - apple: [] - }; - if (Array.isArray(icons)) { - resolved.icon = icons.map(resolveIcon).filter(Boolean); - } else if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isStringOrURL"])(icons)) { - resolved.icon = [ - resolveIcon(icons) - ]; - } else { - for (const key of __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IconKeys"]){ - const values = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(icons[key]); - if (values) resolved[key] = values.map(resolveIcon); - } - } - return resolved; -}; //# sourceMappingURL=resolve-icons.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "AppRenderSpan", - ()=>AppRenderSpan, - "AppRouteRouteHandlersSpan", - ()=>AppRouteRouteHandlersSpan, - "BaseServerSpan", - ()=>BaseServerSpan, - "LoadComponentsSpan", - ()=>LoadComponentsSpan, - "LogSpanAllowList", - ()=>LogSpanAllowList, - "MiddlewareSpan", - ()=>MiddlewareSpan, - "NextNodeServerSpan", - ()=>NextNodeServerSpan, - "NextServerSpan", - ()=>NextServerSpan, - "NextVanillaSpanAllowlist", - ()=>NextVanillaSpanAllowlist, - "NodeSpan", - ()=>NodeSpan, - "RenderSpan", - ()=>RenderSpan, - "ResolveMetadataSpan", - ()=>ResolveMetadataSpan, - "RouterSpan", - ()=>RouterSpan, - "StartServerSpan", - ()=>StartServerSpan -]); -/** - * Contains predefined constants for the trace span name in next/server. - * - * Currently, next/server/tracer is internal implementation only for tracking - * next.js's implementation only with known span names defined here. - **/ // eslint typescript has a bug with TS enums -var BaseServerSpan = /*#__PURE__*/ function(BaseServerSpan) { - BaseServerSpan["handleRequest"] = "BaseServer.handleRequest"; - BaseServerSpan["run"] = "BaseServer.run"; - BaseServerSpan["pipe"] = "BaseServer.pipe"; - BaseServerSpan["getStaticHTML"] = "BaseServer.getStaticHTML"; - BaseServerSpan["render"] = "BaseServer.render"; - BaseServerSpan["renderToResponseWithComponents"] = "BaseServer.renderToResponseWithComponents"; - BaseServerSpan["renderToResponse"] = "BaseServer.renderToResponse"; - BaseServerSpan["renderToHTML"] = "BaseServer.renderToHTML"; - BaseServerSpan["renderError"] = "BaseServer.renderError"; - BaseServerSpan["renderErrorToResponse"] = "BaseServer.renderErrorToResponse"; - BaseServerSpan["renderErrorToHTML"] = "BaseServer.renderErrorToHTML"; - BaseServerSpan["render404"] = "BaseServer.render404"; - return BaseServerSpan; -}(BaseServerSpan || {}); -var LoadComponentsSpan = /*#__PURE__*/ function(LoadComponentsSpan) { - LoadComponentsSpan["loadDefaultErrorComponents"] = "LoadComponents.loadDefaultErrorComponents"; - LoadComponentsSpan["loadComponents"] = "LoadComponents.loadComponents"; - return LoadComponentsSpan; -}(LoadComponentsSpan || {}); -var NextServerSpan = /*#__PURE__*/ function(NextServerSpan) { - NextServerSpan["getRequestHandler"] = "NextServer.getRequestHandler"; - NextServerSpan["getRequestHandlerWithMetadata"] = "NextServer.getRequestHandlerWithMetadata"; - NextServerSpan["getServer"] = "NextServer.getServer"; - NextServerSpan["getServerRequestHandler"] = "NextServer.getServerRequestHandler"; - NextServerSpan["createServer"] = "createServer.createServer"; - return NextServerSpan; -}(NextServerSpan || {}); -var NextNodeServerSpan = /*#__PURE__*/ function(NextNodeServerSpan) { - NextNodeServerSpan["compression"] = "NextNodeServer.compression"; - NextNodeServerSpan["getBuildId"] = "NextNodeServer.getBuildId"; - NextNodeServerSpan["createComponentTree"] = "NextNodeServer.createComponentTree"; - NextNodeServerSpan["clientComponentLoading"] = "NextNodeServer.clientComponentLoading"; - NextNodeServerSpan["getLayoutOrPageModule"] = "NextNodeServer.getLayoutOrPageModule"; - NextNodeServerSpan["generateStaticRoutes"] = "NextNodeServer.generateStaticRoutes"; - NextNodeServerSpan["generateFsStaticRoutes"] = "NextNodeServer.generateFsStaticRoutes"; - NextNodeServerSpan["generatePublicRoutes"] = "NextNodeServer.generatePublicRoutes"; - NextNodeServerSpan["generateImageRoutes"] = "NextNodeServer.generateImageRoutes.route"; - NextNodeServerSpan["sendRenderResult"] = "NextNodeServer.sendRenderResult"; - NextNodeServerSpan["proxyRequest"] = "NextNodeServer.proxyRequest"; - NextNodeServerSpan["runApi"] = "NextNodeServer.runApi"; - NextNodeServerSpan["render"] = "NextNodeServer.render"; - NextNodeServerSpan["renderHTML"] = "NextNodeServer.renderHTML"; - NextNodeServerSpan["imageOptimizer"] = "NextNodeServer.imageOptimizer"; - NextNodeServerSpan["getPagePath"] = "NextNodeServer.getPagePath"; - NextNodeServerSpan["getRoutesManifest"] = "NextNodeServer.getRoutesManifest"; - NextNodeServerSpan["findPageComponents"] = "NextNodeServer.findPageComponents"; - NextNodeServerSpan["getFontManifest"] = "NextNodeServer.getFontManifest"; - NextNodeServerSpan["getServerComponentManifest"] = "NextNodeServer.getServerComponentManifest"; - NextNodeServerSpan["getRequestHandler"] = "NextNodeServer.getRequestHandler"; - NextNodeServerSpan["renderToHTML"] = "NextNodeServer.renderToHTML"; - NextNodeServerSpan["renderError"] = "NextNodeServer.renderError"; - NextNodeServerSpan["renderErrorToHTML"] = "NextNodeServer.renderErrorToHTML"; - NextNodeServerSpan["render404"] = "NextNodeServer.render404"; - NextNodeServerSpan["startResponse"] = "NextNodeServer.startResponse"; - // nested inner span, does not require parent scope name - NextNodeServerSpan["route"] = "route"; - NextNodeServerSpan["onProxyReq"] = "onProxyReq"; - NextNodeServerSpan["apiResolver"] = "apiResolver"; - NextNodeServerSpan["internalFetch"] = "internalFetch"; - return NextNodeServerSpan; -}(NextNodeServerSpan || {}); -var StartServerSpan = /*#__PURE__*/ function(StartServerSpan) { - StartServerSpan["startServer"] = "startServer.startServer"; - return StartServerSpan; -}(StartServerSpan || {}); -var RenderSpan = /*#__PURE__*/ function(RenderSpan) { - RenderSpan["getServerSideProps"] = "Render.getServerSideProps"; - RenderSpan["getStaticProps"] = "Render.getStaticProps"; - RenderSpan["renderToString"] = "Render.renderToString"; - RenderSpan["renderDocument"] = "Render.renderDocument"; - RenderSpan["createBodyResult"] = "Render.createBodyResult"; - return RenderSpan; -}(RenderSpan || {}); -var AppRenderSpan = /*#__PURE__*/ function(AppRenderSpan) { - AppRenderSpan["renderToString"] = "AppRender.renderToString"; - AppRenderSpan["renderToReadableStream"] = "AppRender.renderToReadableStream"; - AppRenderSpan["getBodyResult"] = "AppRender.getBodyResult"; - AppRenderSpan["fetch"] = "AppRender.fetch"; - return AppRenderSpan; -}(AppRenderSpan || {}); -var RouterSpan = /*#__PURE__*/ function(RouterSpan) { - RouterSpan["executeRoute"] = "Router.executeRoute"; - return RouterSpan; -}(RouterSpan || {}); -var NodeSpan = /*#__PURE__*/ function(NodeSpan) { - NodeSpan["runHandler"] = "Node.runHandler"; - return NodeSpan; -}(NodeSpan || {}); -var AppRouteRouteHandlersSpan = /*#__PURE__*/ function(AppRouteRouteHandlersSpan) { - AppRouteRouteHandlersSpan["runHandler"] = "AppRouteRouteHandlers.runHandler"; - return AppRouteRouteHandlersSpan; -}(AppRouteRouteHandlersSpan || {}); -var ResolveMetadataSpan = /*#__PURE__*/ function(ResolveMetadataSpan) { - ResolveMetadataSpan["generateMetadata"] = "ResolveMetadata.generateMetadata"; - ResolveMetadataSpan["generateViewport"] = "ResolveMetadata.generateViewport"; - return ResolveMetadataSpan; -}(ResolveMetadataSpan || {}); -var MiddlewareSpan = /*#__PURE__*/ function(MiddlewareSpan) { - MiddlewareSpan["execute"] = "Middleware.execute"; - return MiddlewareSpan; -}(MiddlewareSpan || {}); -const NextVanillaSpanAllowlist = new Set([ - "Middleware.execute", - "BaseServer.handleRequest", - "Render.getServerSideProps", - "Render.getStaticProps", - "AppRender.fetch", - "AppRender.getBodyResult", - "Render.renderDocument", - "Node.runHandler", - "AppRouteRouteHandlers.runHandler", - "ResolveMetadata.generateMetadata", - "ResolveMetadata.generateViewport", - "NextNodeServer.createComponentTree", - "NextNodeServer.findPageComponents", - "NextNodeServer.getLayoutOrPageModule", - "NextNodeServer.startResponse", - "NextNodeServer.clientComponentLoading" -]); -const LogSpanAllowList = new Set([ - "NextNodeServer.findPageComponents", - "NextNodeServer.createComponentTree", - "NextNodeServer.clientComponentLoading" -]); -; - //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/is-thenable.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Check to see if a value is Thenable. - * - * @param promise the maybe-thenable value - * @returns true if the value is thenable - */ __turbopack_context__.s([ - "isThenable", - ()=>isThenable -]); -function isThenable(promise) { - return promise !== null && typeof promise === 'object' && 'then' in promise && typeof promise.then === 'function'; -} //# sourceMappingURL=is-thenable.js.map -}), -"[project]/node_modules/next/dist/compiled/@opentelemetry/api/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 491: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ContextAPI = void 0; - const n = r(223); - const a = r(172); - const o = r(930); - const i = "context"; - const c = new n.NoopContextManager; - class ContextAPI { - constructor(){} - static getInstance() { - if (!this._instance) { - this._instance = new ContextAPI; - } - return this._instance; - } - setGlobalContextManager(e) { - return (0, a.registerGlobal)(i, e, o.DiagAPI.instance()); - } - active() { - return this._getContextManager().active(); - } - with(e, t, r, ...n) { - return this._getContextManager().with(e, t, r, ...n); - } - bind(e, t) { - return this._getContextManager().bind(e, t); - } - _getContextManager() { - return (0, a.getGlobal)(i) || c; - } - disable() { - this._getContextManager().disable(); - (0, a.unregisterGlobal)(i, o.DiagAPI.instance()); - } - } - t.ContextAPI = ContextAPI; - }, - 930: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.DiagAPI = void 0; - const n = r(56); - const a = r(912); - const o = r(957); - const i = r(172); - const c = "diag"; - class DiagAPI { - constructor(){ - function _logProxy(e) { - return function(...t) { - const r = (0, i.getGlobal)("diag"); - if (!r) return; - return r[e](...t); - }; - } - const e = this; - const setLogger = (t, r = { - logLevel: o.DiagLogLevel.INFO - })=>{ - var n, c, s; - if (t === e) { - const t = new Error("Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation"); - e.error((n = t.stack) !== null && n !== void 0 ? n : t.message); - return false; - } - if (typeof r === "number") { - r = { - logLevel: r - }; - } - const u = (0, i.getGlobal)("diag"); - const l = (0, a.createLogLevelDiagLogger)((c = r.logLevel) !== null && c !== void 0 ? c : o.DiagLogLevel.INFO, t); - if (u && !r.suppressOverrideMessage) { - const e = (s = (new Error).stack) !== null && s !== void 0 ? s : ""; - u.warn(`Current logger will be overwritten from ${e}`); - l.warn(`Current logger will overwrite one already registered from ${e}`); - } - return (0, i.registerGlobal)("diag", l, e, true); - }; - e.setLogger = setLogger; - e.disable = ()=>{ - (0, i.unregisterGlobal)(c, e); - }; - e.createComponentLogger = (e)=>new n.DiagComponentLogger(e); - e.verbose = _logProxy("verbose"); - e.debug = _logProxy("debug"); - e.info = _logProxy("info"); - e.warn = _logProxy("warn"); - e.error = _logProxy("error"); - } - static instance() { - if (!this._instance) { - this._instance = new DiagAPI; - } - return this._instance; - } - } - t.DiagAPI = DiagAPI; - }, - 653: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.MetricsAPI = void 0; - const n = r(660); - const a = r(172); - const o = r(930); - const i = "metrics"; - class MetricsAPI { - constructor(){} - static getInstance() { - if (!this._instance) { - this._instance = new MetricsAPI; - } - return this._instance; - } - setGlobalMeterProvider(e) { - return (0, a.registerGlobal)(i, e, o.DiagAPI.instance()); - } - getMeterProvider() { - return (0, a.getGlobal)(i) || n.NOOP_METER_PROVIDER; - } - getMeter(e, t, r) { - return this.getMeterProvider().getMeter(e, t, r); - } - disable() { - (0, a.unregisterGlobal)(i, o.DiagAPI.instance()); - } - } - t.MetricsAPI = MetricsAPI; - }, - 181: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.PropagationAPI = void 0; - const n = r(172); - const a = r(874); - const o = r(194); - const i = r(277); - const c = r(369); - const s = r(930); - const u = "propagation"; - const l = new a.NoopTextMapPropagator; - class PropagationAPI { - constructor(){ - this.createBaggage = c.createBaggage; - this.getBaggage = i.getBaggage; - this.getActiveBaggage = i.getActiveBaggage; - this.setBaggage = i.setBaggage; - this.deleteBaggage = i.deleteBaggage; - } - static getInstance() { - if (!this._instance) { - this._instance = new PropagationAPI; - } - return this._instance; - } - setGlobalPropagator(e) { - return (0, n.registerGlobal)(u, e, s.DiagAPI.instance()); - } - inject(e, t, r = o.defaultTextMapSetter) { - return this._getGlobalPropagator().inject(e, t, r); - } - extract(e, t, r = o.defaultTextMapGetter) { - return this._getGlobalPropagator().extract(e, t, r); - } - fields() { - return this._getGlobalPropagator().fields(); - } - disable() { - (0, n.unregisterGlobal)(u, s.DiagAPI.instance()); - } - _getGlobalPropagator() { - return (0, n.getGlobal)(u) || l; - } - } - t.PropagationAPI = PropagationAPI; - }, - 997: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.TraceAPI = void 0; - const n = r(172); - const a = r(846); - const o = r(139); - const i = r(607); - const c = r(930); - const s = "trace"; - class TraceAPI { - constructor(){ - this._proxyTracerProvider = new a.ProxyTracerProvider; - this.wrapSpanContext = o.wrapSpanContext; - this.isSpanContextValid = o.isSpanContextValid; - this.deleteSpan = i.deleteSpan; - this.getSpan = i.getSpan; - this.getActiveSpan = i.getActiveSpan; - this.getSpanContext = i.getSpanContext; - this.setSpan = i.setSpan; - this.setSpanContext = i.setSpanContext; - } - static getInstance() { - if (!this._instance) { - this._instance = new TraceAPI; - } - return this._instance; - } - setGlobalTracerProvider(e) { - const t = (0, n.registerGlobal)(s, this._proxyTracerProvider, c.DiagAPI.instance()); - if (t) { - this._proxyTracerProvider.setDelegate(e); - } - return t; - } - getTracerProvider() { - return (0, n.getGlobal)(s) || this._proxyTracerProvider; - } - getTracer(e, t) { - return this.getTracerProvider().getTracer(e, t); - } - disable() { - (0, n.unregisterGlobal)(s, c.DiagAPI.instance()); - this._proxyTracerProvider = new a.ProxyTracerProvider; - } - } - t.TraceAPI = TraceAPI; - }, - 277: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.deleteBaggage = t.setBaggage = t.getActiveBaggage = t.getBaggage = void 0; - const n = r(491); - const a = r(780); - const o = (0, a.createContextKey)("OpenTelemetry Baggage Key"); - function getBaggage(e) { - return e.getValue(o) || undefined; - } - t.getBaggage = getBaggage; - function getActiveBaggage() { - return getBaggage(n.ContextAPI.getInstance().active()); - } - t.getActiveBaggage = getActiveBaggage; - function setBaggage(e, t) { - return e.setValue(o, t); - } - t.setBaggage = setBaggage; - function deleteBaggage(e) { - return e.deleteValue(o); - } - t.deleteBaggage = deleteBaggage; - }, - 993: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.BaggageImpl = void 0; - class BaggageImpl { - constructor(e){ - this._entries = e ? new Map(e) : new Map; - } - getEntry(e) { - const t = this._entries.get(e); - if (!t) { - return undefined; - } - return Object.assign({}, t); - } - getAllEntries() { - return Array.from(this._entries.entries()).map(([e, t])=>[ - e, - t - ]); - } - setEntry(e, t) { - const r = new BaggageImpl(this._entries); - r._entries.set(e, t); - return r; - } - removeEntry(e) { - const t = new BaggageImpl(this._entries); - t._entries.delete(e); - return t; - } - removeEntries(...e) { - const t = new BaggageImpl(this._entries); - for (const r of e){ - t._entries.delete(r); - } - return t; - } - clear() { - return new BaggageImpl; - } - } - t.BaggageImpl = BaggageImpl; - }, - 830: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.baggageEntryMetadataSymbol = void 0; - t.baggageEntryMetadataSymbol = Symbol("BaggageEntryMetadata"); - }, - 369: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.baggageEntryMetadataFromString = t.createBaggage = void 0; - const n = r(930); - const a = r(993); - const o = r(830); - const i = n.DiagAPI.instance(); - function createBaggage(e = {}) { - return new a.BaggageImpl(new Map(Object.entries(e))); - } - t.createBaggage = createBaggage; - function baggageEntryMetadataFromString(e) { - if (typeof e !== "string") { - i.error(`Cannot create baggage metadata from unknown type: ${typeof e}`); - e = ""; - } - return { - __TYPE__: o.baggageEntryMetadataSymbol, - toString () { - return e; - } - }; - } - t.baggageEntryMetadataFromString = baggageEntryMetadataFromString; - }, - 67: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.context = void 0; - const n = r(491); - t.context = n.ContextAPI.getInstance(); - }, - 223: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NoopContextManager = void 0; - const n = r(780); - class NoopContextManager { - active() { - return n.ROOT_CONTEXT; - } - with(e, t, r, ...n) { - return t.call(r, ...n); - } - bind(e, t) { - return t; - } - enable() { - return this; - } - disable() { - return this; - } - } - t.NoopContextManager = NoopContextManager; - }, - 780: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ROOT_CONTEXT = t.createContextKey = void 0; - function createContextKey(e) { - return Symbol.for(e); - } - t.createContextKey = createContextKey; - class BaseContext { - constructor(e){ - const t = this; - t._currentContext = e ? new Map(e) : new Map; - t.getValue = (e)=>t._currentContext.get(e); - t.setValue = (e, r)=>{ - const n = new BaseContext(t._currentContext); - n._currentContext.set(e, r); - return n; - }; - t.deleteValue = (e)=>{ - const r = new BaseContext(t._currentContext); - r._currentContext.delete(e); - return r; - }; - } - } - t.ROOT_CONTEXT = new BaseContext; - }, - 506: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.diag = void 0; - const n = r(930); - t.diag = n.DiagAPI.instance(); - }, - 56: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.DiagComponentLogger = void 0; - const n = r(172); - class DiagComponentLogger { - constructor(e){ - this._namespace = e.namespace || "DiagComponentLogger"; - } - debug(...e) { - return logProxy("debug", this._namespace, e); - } - error(...e) { - return logProxy("error", this._namespace, e); - } - info(...e) { - return logProxy("info", this._namespace, e); - } - warn(...e) { - return logProxy("warn", this._namespace, e); - } - verbose(...e) { - return logProxy("verbose", this._namespace, e); - } - } - t.DiagComponentLogger = DiagComponentLogger; - function logProxy(e, t, r) { - const a = (0, n.getGlobal)("diag"); - if (!a) { - return; - } - r.unshift(t); - return a[e](...r); - } - }, - 972: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.DiagConsoleLogger = void 0; - const r = [ - { - n: "error", - c: "error" - }, - { - n: "warn", - c: "warn" - }, - { - n: "info", - c: "info" - }, - { - n: "debug", - c: "debug" - }, - { - n: "verbose", - c: "trace" - } - ]; - class DiagConsoleLogger { - constructor(){ - function _consoleFunc(e) { - return function(...t) { - if (console) { - let r = console[e]; - if (typeof r !== "function") { - r = console.log; - } - if (typeof r === "function") { - return r.apply(console, t); - } - } - }; - } - for(let e = 0; e < r.length; e++){ - this[r[e].n] = _consoleFunc(r[e].c); - } - } - } - t.DiagConsoleLogger = DiagConsoleLogger; - }, - 912: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.createLogLevelDiagLogger = void 0; - const n = r(957); - function createLogLevelDiagLogger(e, t) { - if (e < n.DiagLogLevel.NONE) { - e = n.DiagLogLevel.NONE; - } else if (e > n.DiagLogLevel.ALL) { - e = n.DiagLogLevel.ALL; - } - t = t || {}; - function _filterFunc(r, n) { - const a = t[r]; - if (typeof a === "function" && e >= n) { - return a.bind(t); - } - return function() {}; - } - return { - error: _filterFunc("error", n.DiagLogLevel.ERROR), - warn: _filterFunc("warn", n.DiagLogLevel.WARN), - info: _filterFunc("info", n.DiagLogLevel.INFO), - debug: _filterFunc("debug", n.DiagLogLevel.DEBUG), - verbose: _filterFunc("verbose", n.DiagLogLevel.VERBOSE) - }; - } - t.createLogLevelDiagLogger = createLogLevelDiagLogger; - }, - 957: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.DiagLogLevel = void 0; - var r; - (function(e) { - e[e["NONE"] = 0] = "NONE"; - e[e["ERROR"] = 30] = "ERROR"; - e[e["WARN"] = 50] = "WARN"; - e[e["INFO"] = 60] = "INFO"; - e[e["DEBUG"] = 70] = "DEBUG"; - e[e["VERBOSE"] = 80] = "VERBOSE"; - e[e["ALL"] = 9999] = "ALL"; - })(r = t.DiagLogLevel || (t.DiagLogLevel = {})); - }, - 172: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.unregisterGlobal = t.getGlobal = t.registerGlobal = void 0; - const n = r(200); - const a = r(521); - const o = r(130); - const i = a.VERSION.split(".")[0]; - const c = Symbol.for(`opentelemetry.js.api.${i}`); - const s = n._globalThis; - function registerGlobal(e, t, r, n = false) { - var o; - const i = s[c] = (o = s[c]) !== null && o !== void 0 ? o : { - version: a.VERSION - }; - if (!n && i[e]) { - const t = new Error(`@opentelemetry/api: Attempted duplicate registration of API: ${e}`); - r.error(t.stack || t.message); - return false; - } - if (i.version !== a.VERSION) { - const t = new Error(`@opentelemetry/api: Registration of version v${i.version} for ${e} does not match previously registered API v${a.VERSION}`); - r.error(t.stack || t.message); - return false; - } - i[e] = t; - r.debug(`@opentelemetry/api: Registered a global for ${e} v${a.VERSION}.`); - return true; - } - t.registerGlobal = registerGlobal; - function getGlobal(e) { - var t, r; - const n = (t = s[c]) === null || t === void 0 ? void 0 : t.version; - if (!n || !(0, o.isCompatible)(n)) { - return; - } - return (r = s[c]) === null || r === void 0 ? void 0 : r[e]; - } - t.getGlobal = getGlobal; - function unregisterGlobal(e, t) { - t.debug(`@opentelemetry/api: Unregistering a global for ${e} v${a.VERSION}.`); - const r = s[c]; - if (r) { - delete r[e]; - } - } - t.unregisterGlobal = unregisterGlobal; - }, - 130: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.isCompatible = t._makeCompatibilityCheck = void 0; - const n = r(521); - const a = /^(\d+)\.(\d+)\.(\d+)(-(.+))?$/; - function _makeCompatibilityCheck(e) { - const t = new Set([ - e - ]); - const r = new Set; - const n = e.match(a); - if (!n) { - return ()=>false; - } - const o = { - major: +n[1], - minor: +n[2], - patch: +n[3], - prerelease: n[4] - }; - if (o.prerelease != null) { - return function isExactmatch(t) { - return t === e; - }; - } - function _reject(e) { - r.add(e); - return false; - } - function _accept(e) { - t.add(e); - return true; - } - return function isCompatible(e) { - if (t.has(e)) { - return true; - } - if (r.has(e)) { - return false; - } - const n = e.match(a); - if (!n) { - return _reject(e); - } - const i = { - major: +n[1], - minor: +n[2], - patch: +n[3], - prerelease: n[4] - }; - if (i.prerelease != null) { - return _reject(e); - } - if (o.major !== i.major) { - return _reject(e); - } - if (o.major === 0) { - if (o.minor === i.minor && o.patch <= i.patch) { - return _accept(e); - } - return _reject(e); - } - if (o.minor <= i.minor) { - return _accept(e); - } - return _reject(e); - }; - } - t._makeCompatibilityCheck = _makeCompatibilityCheck; - t.isCompatible = _makeCompatibilityCheck(n.VERSION); - }, - 886: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.metrics = void 0; - const n = r(653); - t.metrics = n.MetricsAPI.getInstance(); - }, - 901: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ValueType = void 0; - var r; - (function(e) { - e[e["INT"] = 0] = "INT"; - e[e["DOUBLE"] = 1] = "DOUBLE"; - })(r = t.ValueType || (t.ValueType = {})); - }, - 102: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.createNoopMeter = t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC = t.NOOP_OBSERVABLE_GAUGE_METRIC = t.NOOP_OBSERVABLE_COUNTER_METRIC = t.NOOP_UP_DOWN_COUNTER_METRIC = t.NOOP_HISTOGRAM_METRIC = t.NOOP_COUNTER_METRIC = t.NOOP_METER = t.NoopObservableUpDownCounterMetric = t.NoopObservableGaugeMetric = t.NoopObservableCounterMetric = t.NoopObservableMetric = t.NoopHistogramMetric = t.NoopUpDownCounterMetric = t.NoopCounterMetric = t.NoopMetric = t.NoopMeter = void 0; - class NoopMeter { - constructor(){} - createHistogram(e, r) { - return t.NOOP_HISTOGRAM_METRIC; - } - createCounter(e, r) { - return t.NOOP_COUNTER_METRIC; - } - createUpDownCounter(e, r) { - return t.NOOP_UP_DOWN_COUNTER_METRIC; - } - createObservableGauge(e, r) { - return t.NOOP_OBSERVABLE_GAUGE_METRIC; - } - createObservableCounter(e, r) { - return t.NOOP_OBSERVABLE_COUNTER_METRIC; - } - createObservableUpDownCounter(e, r) { - return t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC; - } - addBatchObservableCallback(e, t) {} - removeBatchObservableCallback(e) {} - } - t.NoopMeter = NoopMeter; - class NoopMetric { - } - t.NoopMetric = NoopMetric; - class NoopCounterMetric extends NoopMetric { - add(e, t) {} - } - t.NoopCounterMetric = NoopCounterMetric; - class NoopUpDownCounterMetric extends NoopMetric { - add(e, t) {} - } - t.NoopUpDownCounterMetric = NoopUpDownCounterMetric; - class NoopHistogramMetric extends NoopMetric { - record(e, t) {} - } - t.NoopHistogramMetric = NoopHistogramMetric; - class NoopObservableMetric { - addCallback(e) {} - removeCallback(e) {} - } - t.NoopObservableMetric = NoopObservableMetric; - class NoopObservableCounterMetric extends NoopObservableMetric { - } - t.NoopObservableCounterMetric = NoopObservableCounterMetric; - class NoopObservableGaugeMetric extends NoopObservableMetric { - } - t.NoopObservableGaugeMetric = NoopObservableGaugeMetric; - class NoopObservableUpDownCounterMetric extends NoopObservableMetric { - } - t.NoopObservableUpDownCounterMetric = NoopObservableUpDownCounterMetric; - t.NOOP_METER = new NoopMeter; - t.NOOP_COUNTER_METRIC = new NoopCounterMetric; - t.NOOP_HISTOGRAM_METRIC = new NoopHistogramMetric; - t.NOOP_UP_DOWN_COUNTER_METRIC = new NoopUpDownCounterMetric; - t.NOOP_OBSERVABLE_COUNTER_METRIC = new NoopObservableCounterMetric; - t.NOOP_OBSERVABLE_GAUGE_METRIC = new NoopObservableGaugeMetric; - t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC = new NoopObservableUpDownCounterMetric; - function createNoopMeter() { - return t.NOOP_METER; - } - t.createNoopMeter = createNoopMeter; - }, - 660: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NOOP_METER_PROVIDER = t.NoopMeterProvider = void 0; - const n = r(102); - class NoopMeterProvider { - getMeter(e, t, r) { - return n.NOOP_METER; - } - } - t.NoopMeterProvider = NoopMeterProvider; - t.NOOP_METER_PROVIDER = new NoopMeterProvider; - }, - 200: function(e, t, r) { - var n = this && this.__createBinding || (Object.create ? function(e, t, r, n) { - if (n === undefined) n = r; - Object.defineProperty(e, n, { - enumerable: true, - get: function() { - return t[r]; - } - }); - } : function(e, t, r, n) { - if (n === undefined) n = r; - e[n] = t[r]; - }); - var a = this && this.__exportStar || function(e, t) { - for(var r in e)if (r !== "default" && !Object.prototype.hasOwnProperty.call(t, r)) n(t, e, r); - }; - Object.defineProperty(t, "__esModule", { - value: true - }); - a(r(46), t); - }, - 651: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t._globalThis = void 0; - t._globalThis = typeof globalThis === "object" ? globalThis : /*TURBOPACK member replacement*/ __turbopack_context__.g; - }, - 46: function(e, t, r) { - var n = this && this.__createBinding || (Object.create ? function(e, t, r, n) { - if (n === undefined) n = r; - Object.defineProperty(e, n, { - enumerable: true, - get: function() { - return t[r]; - } - }); - } : function(e, t, r, n) { - if (n === undefined) n = r; - e[n] = t[r]; - }); - var a = this && this.__exportStar || function(e, t) { - for(var r in e)if (r !== "default" && !Object.prototype.hasOwnProperty.call(t, r)) n(t, e, r); - }; - Object.defineProperty(t, "__esModule", { - value: true - }); - a(r(651), t); - }, - 939: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.propagation = void 0; - const n = r(181); - t.propagation = n.PropagationAPI.getInstance(); - }, - 874: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NoopTextMapPropagator = void 0; - class NoopTextMapPropagator { - inject(e, t) {} - extract(e, t) { - return e; - } - fields() { - return []; - } - } - t.NoopTextMapPropagator = NoopTextMapPropagator; - }, - 194: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.defaultTextMapSetter = t.defaultTextMapGetter = void 0; - t.defaultTextMapGetter = { - get (e, t) { - if (e == null) { - return undefined; - } - return e[t]; - }, - keys (e) { - if (e == null) { - return []; - } - return Object.keys(e); - } - }; - t.defaultTextMapSetter = { - set (e, t, r) { - if (e == null) { - return; - } - e[t] = r; - } - }; - }, - 845: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.trace = void 0; - const n = r(997); - t.trace = n.TraceAPI.getInstance(); - }, - 403: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NonRecordingSpan = void 0; - const n = r(476); - class NonRecordingSpan { - constructor(e = n.INVALID_SPAN_CONTEXT){ - this._spanContext = e; - } - spanContext() { - return this._spanContext; - } - setAttribute(e, t) { - return this; - } - setAttributes(e) { - return this; - } - addEvent(e, t) { - return this; - } - setStatus(e) { - return this; - } - updateName(e) { - return this; - } - end(e) {} - isRecording() { - return false; - } - recordException(e, t) {} - } - t.NonRecordingSpan = NonRecordingSpan; - }, - 614: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NoopTracer = void 0; - const n = r(491); - const a = r(607); - const o = r(403); - const i = r(139); - const c = n.ContextAPI.getInstance(); - class NoopTracer { - startSpan(e, t, r = c.active()) { - const n = Boolean(t === null || t === void 0 ? void 0 : t.root); - if (n) { - return new o.NonRecordingSpan; - } - const s = r && (0, a.getSpanContext)(r); - if (isSpanContext(s) && (0, i.isSpanContextValid)(s)) { - return new o.NonRecordingSpan(s); - } else { - return new o.NonRecordingSpan; - } - } - startActiveSpan(e, t, r, n) { - let o; - let i; - let s; - if (arguments.length < 2) { - return; - } else if (arguments.length === 2) { - s = t; - } else if (arguments.length === 3) { - o = t; - s = r; - } else { - o = t; - i = r; - s = n; - } - const u = i !== null && i !== void 0 ? i : c.active(); - const l = this.startSpan(e, o, u); - const g = (0, a.setSpan)(u, l); - return c.with(g, s, undefined, l); - } - } - t.NoopTracer = NoopTracer; - function isSpanContext(e) { - return typeof e === "object" && typeof e["spanId"] === "string" && typeof e["traceId"] === "string" && typeof e["traceFlags"] === "number"; - } - }, - 124: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.NoopTracerProvider = void 0; - const n = r(614); - class NoopTracerProvider { - getTracer(e, t, r) { - return new n.NoopTracer; - } - } - t.NoopTracerProvider = NoopTracerProvider; - }, - 125: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ProxyTracer = void 0; - const n = r(614); - const a = new n.NoopTracer; - class ProxyTracer { - constructor(e, t, r, n){ - this._provider = e; - this.name = t; - this.version = r; - this.options = n; - } - startSpan(e, t, r) { - return this._getTracer().startSpan(e, t, r); - } - startActiveSpan(e, t, r, n) { - const a = this._getTracer(); - return Reflect.apply(a.startActiveSpan, a, arguments); - } - _getTracer() { - if (this._delegate) { - return this._delegate; - } - const e = this._provider.getDelegateTracer(this.name, this.version, this.options); - if (!e) { - return a; - } - this._delegate = e; - return this._delegate; - } - } - t.ProxyTracer = ProxyTracer; - }, - 846: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.ProxyTracerProvider = void 0; - const n = r(125); - const a = r(124); - const o = new a.NoopTracerProvider; - class ProxyTracerProvider { - getTracer(e, t, r) { - var a; - return (a = this.getDelegateTracer(e, t, r)) !== null && a !== void 0 ? a : new n.ProxyTracer(this, e, t, r); - } - getDelegate() { - var e; - return (e = this._delegate) !== null && e !== void 0 ? e : o; - } - setDelegate(e) { - this._delegate = e; - } - getDelegateTracer(e, t, r) { - var n; - return (n = this._delegate) === null || n === void 0 ? void 0 : n.getTracer(e, t, r); - } - } - t.ProxyTracerProvider = ProxyTracerProvider; - }, - 996: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.SamplingDecision = void 0; - var r; - (function(e) { - e[e["NOT_RECORD"] = 0] = "NOT_RECORD"; - e[e["RECORD"] = 1] = "RECORD"; - e[e["RECORD_AND_SAMPLED"] = 2] = "RECORD_AND_SAMPLED"; - })(r = t.SamplingDecision || (t.SamplingDecision = {})); - }, - 607: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.getSpanContext = t.setSpanContext = t.deleteSpan = t.setSpan = t.getActiveSpan = t.getSpan = void 0; - const n = r(780); - const a = r(403); - const o = r(491); - const i = (0, n.createContextKey)("OpenTelemetry Context Key SPAN"); - function getSpan(e) { - return e.getValue(i) || undefined; - } - t.getSpan = getSpan; - function getActiveSpan() { - return getSpan(o.ContextAPI.getInstance().active()); - } - t.getActiveSpan = getActiveSpan; - function setSpan(e, t) { - return e.setValue(i, t); - } - t.setSpan = setSpan; - function deleteSpan(e) { - return e.deleteValue(i); - } - t.deleteSpan = deleteSpan; - function setSpanContext(e, t) { - return setSpan(e, new a.NonRecordingSpan(t)); - } - t.setSpanContext = setSpanContext; - function getSpanContext(e) { - var t; - return (t = getSpan(e)) === null || t === void 0 ? void 0 : t.spanContext(); - } - t.getSpanContext = getSpanContext; - }, - 325: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.TraceStateImpl = void 0; - const n = r(564); - const a = 32; - const o = 512; - const i = ","; - const c = "="; - class TraceStateImpl { - constructor(e){ - this._internalState = new Map; - if (e) this._parse(e); - } - set(e, t) { - const r = this._clone(); - if (r._internalState.has(e)) { - r._internalState.delete(e); - } - r._internalState.set(e, t); - return r; - } - unset(e) { - const t = this._clone(); - t._internalState.delete(e); - return t; - } - get(e) { - return this._internalState.get(e); - } - serialize() { - return this._keys().reduce((e, t)=>{ - e.push(t + c + this.get(t)); - return e; - }, []).join(i); - } - _parse(e) { - if (e.length > o) return; - this._internalState = e.split(i).reverse().reduce((e, t)=>{ - const r = t.trim(); - const a = r.indexOf(c); - if (a !== -1) { - const o = r.slice(0, a); - const i = r.slice(a + 1, t.length); - if ((0, n.validateKey)(o) && (0, n.validateValue)(i)) { - e.set(o, i); - } else {} - } - return e; - }, new Map); - if (this._internalState.size > a) { - this._internalState = new Map(Array.from(this._internalState.entries()).reverse().slice(0, a)); - } - } - _keys() { - return Array.from(this._internalState.keys()).reverse(); - } - _clone() { - const e = new TraceStateImpl; - e._internalState = new Map(this._internalState); - return e; - } - } - t.TraceStateImpl = TraceStateImpl; - }, - 564: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.validateValue = t.validateKey = void 0; - const r = "[_0-9a-z-*/]"; - const n = `[a-z]${r}{0,255}`; - const a = `[a-z0-9]${r}{0,240}@[a-z]${r}{0,13}`; - const o = new RegExp(`^(?:${n}|${a})$`); - const i = /^[ -~]{0,255}[!-~]$/; - const c = /,|=/; - function validateKey(e) { - return o.test(e); - } - t.validateKey = validateKey; - function validateValue(e) { - return i.test(e) && !c.test(e); - } - t.validateValue = validateValue; - }, - 98: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.createTraceState = void 0; - const n = r(325); - function createTraceState(e) { - return new n.TraceStateImpl(e); - } - t.createTraceState = createTraceState; - }, - 476: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.INVALID_SPAN_CONTEXT = t.INVALID_TRACEID = t.INVALID_SPANID = void 0; - const n = r(475); - t.INVALID_SPANID = "0000000000000000"; - t.INVALID_TRACEID = "00000000000000000000000000000000"; - t.INVALID_SPAN_CONTEXT = { - traceId: t.INVALID_TRACEID, - spanId: t.INVALID_SPANID, - traceFlags: n.TraceFlags.NONE - }; - }, - 357: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.SpanKind = void 0; - var r; - (function(e) { - e[e["INTERNAL"] = 0] = "INTERNAL"; - e[e["SERVER"] = 1] = "SERVER"; - e[e["CLIENT"] = 2] = "CLIENT"; - e[e["PRODUCER"] = 3] = "PRODUCER"; - e[e["CONSUMER"] = 4] = "CONSUMER"; - })(r = t.SpanKind || (t.SpanKind = {})); - }, - 139: (e, t, r)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.wrapSpanContext = t.isSpanContextValid = t.isValidSpanId = t.isValidTraceId = void 0; - const n = r(476); - const a = r(403); - const o = /^([0-9a-f]{32})$/i; - const i = /^[0-9a-f]{16}$/i; - function isValidTraceId(e) { - return o.test(e) && e !== n.INVALID_TRACEID; - } - t.isValidTraceId = isValidTraceId; - function isValidSpanId(e) { - return i.test(e) && e !== n.INVALID_SPANID; - } - t.isValidSpanId = isValidSpanId; - function isSpanContextValid(e) { - return isValidTraceId(e.traceId) && isValidSpanId(e.spanId); - } - t.isSpanContextValid = isSpanContextValid; - function wrapSpanContext(e) { - return new a.NonRecordingSpan(e); - } - t.wrapSpanContext = wrapSpanContext; - }, - 847: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.SpanStatusCode = void 0; - var r; - (function(e) { - e[e["UNSET"] = 0] = "UNSET"; - e[e["OK"] = 1] = "OK"; - e[e["ERROR"] = 2] = "ERROR"; - })(r = t.SpanStatusCode || (t.SpanStatusCode = {})); - }, - 475: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.TraceFlags = void 0; - var r; - (function(e) { - e[e["NONE"] = 0] = "NONE"; - e[e["SAMPLED"] = 1] = "SAMPLED"; - })(r = t.TraceFlags || (t.TraceFlags = {})); - }, - 521: (e, t)=>{ - Object.defineProperty(t, "__esModule", { - value: true - }); - t.VERSION = void 0; - t.VERSION = "1.6.0"; - } - }; - var t = {}; - function __nccwpck_require__(r) { - var n = t[r]; - if (n !== undefined) { - return n.exports; - } - var a = t[r] = { - exports: {} - }; - var o = true; - try { - e[r].call(a.exports, a, a.exports, __nccwpck_require__); - o = false; - } finally{ - if (o) delete t[r]; - } - return a.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/@opentelemetry/api") + "/"; - var r = {}; - (()=>{ - var e = r; - Object.defineProperty(e, "__esModule", { - value: true - }); - e.trace = e.propagation = e.metrics = e.diag = e.context = e.INVALID_SPAN_CONTEXT = e.INVALID_TRACEID = e.INVALID_SPANID = e.isValidSpanId = e.isValidTraceId = e.isSpanContextValid = e.createTraceState = e.TraceFlags = e.SpanStatusCode = e.SpanKind = e.SamplingDecision = e.ProxyTracerProvider = e.ProxyTracer = e.defaultTextMapSetter = e.defaultTextMapGetter = e.ValueType = e.createNoopMeter = e.DiagLogLevel = e.DiagConsoleLogger = e.ROOT_CONTEXT = e.createContextKey = e.baggageEntryMetadataFromString = void 0; - var t = __nccwpck_require__(369); - Object.defineProperty(e, "baggageEntryMetadataFromString", { - enumerable: true, - get: function() { - return t.baggageEntryMetadataFromString; - } - }); - var n = __nccwpck_require__(780); - Object.defineProperty(e, "createContextKey", { - enumerable: true, - get: function() { - return n.createContextKey; - } - }); - Object.defineProperty(e, "ROOT_CONTEXT", { - enumerable: true, - get: function() { - return n.ROOT_CONTEXT; - } - }); - var a = __nccwpck_require__(972); - Object.defineProperty(e, "DiagConsoleLogger", { - enumerable: true, - get: function() { - return a.DiagConsoleLogger; - } - }); - var o = __nccwpck_require__(957); - Object.defineProperty(e, "DiagLogLevel", { - enumerable: true, - get: function() { - return o.DiagLogLevel; - } - }); - var i = __nccwpck_require__(102); - Object.defineProperty(e, "createNoopMeter", { - enumerable: true, - get: function() { - return i.createNoopMeter; - } - }); - var c = __nccwpck_require__(901); - Object.defineProperty(e, "ValueType", { - enumerable: true, - get: function() { - return c.ValueType; - } - }); - var s = __nccwpck_require__(194); - Object.defineProperty(e, "defaultTextMapGetter", { - enumerable: true, - get: function() { - return s.defaultTextMapGetter; - } - }); - Object.defineProperty(e, "defaultTextMapSetter", { - enumerable: true, - get: function() { - return s.defaultTextMapSetter; - } - }); - var u = __nccwpck_require__(125); - Object.defineProperty(e, "ProxyTracer", { - enumerable: true, - get: function() { - return u.ProxyTracer; - } - }); - var l = __nccwpck_require__(846); - Object.defineProperty(e, "ProxyTracerProvider", { - enumerable: true, - get: function() { - return l.ProxyTracerProvider; - } - }); - var g = __nccwpck_require__(996); - Object.defineProperty(e, "SamplingDecision", { - enumerable: true, - get: function() { - return g.SamplingDecision; - } - }); - var p = __nccwpck_require__(357); - Object.defineProperty(e, "SpanKind", { - enumerable: true, - get: function() { - return p.SpanKind; - } - }); - var d = __nccwpck_require__(847); - Object.defineProperty(e, "SpanStatusCode", { - enumerable: true, - get: function() { - return d.SpanStatusCode; - } - }); - var _ = __nccwpck_require__(475); - Object.defineProperty(e, "TraceFlags", { - enumerable: true, - get: function() { - return _.TraceFlags; - } - }); - var f = __nccwpck_require__(98); - Object.defineProperty(e, "createTraceState", { - enumerable: true, - get: function() { - return f.createTraceState; - } - }); - var b = __nccwpck_require__(139); - Object.defineProperty(e, "isSpanContextValid", { - enumerable: true, - get: function() { - return b.isSpanContextValid; - } - }); - Object.defineProperty(e, "isValidTraceId", { - enumerable: true, - get: function() { - return b.isValidTraceId; - } - }); - Object.defineProperty(e, "isValidSpanId", { - enumerable: true, - get: function() { - return b.isValidSpanId; - } - }); - var v = __nccwpck_require__(476); - Object.defineProperty(e, "INVALID_SPANID", { - enumerable: true, - get: function() { - return v.INVALID_SPANID; - } - }); - Object.defineProperty(e, "INVALID_TRACEID", { - enumerable: true, - get: function() { - return v.INVALID_TRACEID; - } - }); - Object.defineProperty(e, "INVALID_SPAN_CONTEXT", { - enumerable: true, - get: function() { - return v.INVALID_SPAN_CONTEXT; - } - }); - const O = __nccwpck_require__(67); - Object.defineProperty(e, "context", { - enumerable: true, - get: function() { - return O.context; - } - }); - const P = __nccwpck_require__(506); - Object.defineProperty(e, "diag", { - enumerable: true, - get: function() { - return P.diag; - } - }); - const N = __nccwpck_require__(886); - Object.defineProperty(e, "metrics", { - enumerable: true, - get: function() { - return N.metrics; - } - }); - const S = __nccwpck_require__(939); - Object.defineProperty(e, "propagation", { - enumerable: true, - get: function() { - return S.propagation; - } - }); - const C = __nccwpck_require__(845); - Object.defineProperty(e, "trace", { - enumerable: true, - get: function() { - return C.trace; - } - }); - e["default"] = { - context: O.context, - diag: P.diag, - metrics: N.metrics, - propagation: S.propagation, - trace: C.trace - }; - })(); - module.exports = r; -})(); -}), -"[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "BubbledError", - ()=>BubbledError, - "SpanKind", - ()=>SpanKind, - "SpanStatusCode", - ()=>SpanStatusCode, - "getTracer", - ()=>getTracer, - "isBubbledError", - ()=>isBubbledError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/is-thenable.js [app-rsc] (ecmascript)"); -; -; -const NEXT_OTEL_PERFORMANCE_PREFIX = process.env.NEXT_OTEL_PERFORMANCE_PREFIX; -let api; -// we want to allow users to use their own version of @opentelemetry/api if they -// want to, so we try to require it first, and if it fails we fall back to the -// version that is bundled with Next.js -// this is because @opentelemetry/api has to be synced with the version of -// @opentelemetry/tracing that is used, and we don't want to force users to use -// the version that is bundled with Next.js. -// the API is ~stable, so this should be fine -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - try { - api = __turbopack_context__.r("[externals]/next/dist/compiled/@opentelemetry/api [external] (next/dist/compiled/@opentelemetry/api, cjs)"); - } catch (err) { - api = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/@opentelemetry/api/index.js [app-rsc] (ecmascript)"); - } -} -const { context, propagation, trace, SpanStatusCode, SpanKind, ROOT_CONTEXT } = api; -class BubbledError extends Error { - constructor(bubble, result){ - super(), this.bubble = bubble, this.result = result; - } -} -function isBubbledError(error) { - if (typeof error !== 'object' || error === null) return false; - return error instanceof BubbledError; -} -const closeSpanWithError = (span, error)=>{ - if (isBubbledError(error) && error.bubble) { - span.setAttribute('next.bubble', true); - } else { - if (error) { - span.recordException(error); - span.setAttribute('error.type', error.name); - } - span.setStatus({ - code: SpanStatusCode.ERROR, - message: error == null ? void 0 : error.message - }); - } - span.end(); -}; -/** we use this map to propagate attributes from nested spans to the top span */ const rootSpanAttributesStore = new Map(); -const rootSpanIdKey = api.createContextKey('next.rootSpanId'); -let lastSpanId = 0; -const getSpanId = ()=>lastSpanId++; -const clientTraceDataSetter = { - set (carrier, key, value) { - carrier.push({ - key, - value - }); - } -}; -class NextTracerImpl { - /** - * Returns an instance to the trace with configured name. - * Since wrap / trace can be defined in any place prior to actual trace subscriber initialization, - * This should be lazily evaluated. - */ getTracerInstance() { - return trace.getTracer('next.js', '0.0.1'); - } - getContext() { - return context; - } - getTracePropagationData() { - const activeContext = context.active(); - const entries = []; - propagation.inject(activeContext, entries, clientTraceDataSetter); - return entries; - } - getActiveScopeSpan() { - return trace.getSpan(context == null ? void 0 : context.active()); - } - withPropagatedContext(carrier, fn, getter) { - const activeContext = context.active(); - if (trace.getSpanContext(activeContext)) { - // Active span is already set, too late to propagate. - return fn(); - } - const remoteContext = propagation.extract(activeContext, carrier, getter); - return context.with(remoteContext, fn); - } - trace(...args) { - const [type, fnOrOptions, fnOrEmpty] = args; - // coerce options form overload - const { fn, options } = typeof fnOrOptions === 'function' ? { - fn: fnOrOptions, - options: {} - } : { - fn: fnOrEmpty, - options: { - ...fnOrOptions - } - }; - const spanName = options.spanName ?? type; - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextVanillaSpanAllowlist"].has(type) && process.env.NEXT_OTEL_VERBOSE !== '1' || options.hideSpan) { - return fn(); - } - // Trying to get active scoped span to assign parent. If option specifies parent span manually, will try to use it. - let spanContext = this.getSpanContext((options == null ? void 0 : options.parentSpan) ?? this.getActiveScopeSpan()); - if (!spanContext) { - spanContext = (context == null ? void 0 : context.active()) ?? ROOT_CONTEXT; - } - // Check if there's already a root span in the store for this trace - // We are intentionally not checking whether there is an active context - // from outside of nextjs to ensure that we can provide the same level - // of telemetry when using a custom server - const existingRootSpanId = spanContext.getValue(rootSpanIdKey); - const isRootSpan = typeof existingRootSpanId !== 'number' || !rootSpanAttributesStore.has(existingRootSpanId); - const spanId = getSpanId(); - options.attributes = { - 'next.span_name': spanName, - 'next.span_type': type, - ...options.attributes - }; - return context.with(spanContext.setValue(rootSpanIdKey, spanId), ()=>this.getTracerInstance().startActiveSpan(spanName, options, (span)=>{ - let startTime; - if (NEXT_OTEL_PERFORMANCE_PREFIX && type && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LogSpanAllowList"].has(type)) { - startTime = 'performance' in globalThis && 'measure' in performance ? globalThis.performance.now() : undefined; - } - let cleanedUp = false; - const onCleanup = ()=>{ - if (cleanedUp) return; - cleanedUp = true; - rootSpanAttributesStore.delete(spanId); - if (startTime) { - performance.measure(`${NEXT_OTEL_PERFORMANCE_PREFIX}:next-${(type.split('.').pop() || '').replace(/[A-Z]/g, (match)=>'-' + match.toLowerCase())}`, { - start: startTime, - end: performance.now() - }); - } - }; - if (isRootSpan) { - rootSpanAttributesStore.set(spanId, new Map(Object.entries(options.attributes ?? {}))); - } - if (fn.length > 1) { - try { - return fn(span, (err)=>closeSpanWithError(span, err)); - } catch (err) { - closeSpanWithError(span, err); - throw err; - } finally{ - onCleanup(); - } - } - try { - const result = fn(span); - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isThenable"])(result)) { - // If there's error make sure it throws - return result.then((res)=>{ - span.end(); - // Need to pass down the promise result, - // it could be react stream response with error { error, stream } - return res; - }).catch((err)=>{ - closeSpanWithError(span, err); - throw err; - }).finally(onCleanup); - } else { - span.end(); - onCleanup(); - } - return result; - } catch (err) { - closeSpanWithError(span, err); - onCleanup(); - throw err; - } - })); - } - wrap(...args) { - const tracer = this; - const [name, options, fn] = args.length === 3 ? args : [ - args[0], - {}, - args[1] - ]; - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextVanillaSpanAllowlist"].has(name) && process.env.NEXT_OTEL_VERBOSE !== '1') { - return fn; - } - return function() { - let optionsObj = options; - if (typeof optionsObj === 'function' && typeof fn === 'function') { - optionsObj = optionsObj.apply(this, arguments); - } - const lastArgId = arguments.length - 1; - const cb = arguments[lastArgId]; - if (typeof cb === 'function') { - const scopeBoundCb = tracer.getContext().bind(context.active(), cb); - return tracer.trace(name, optionsObj, (_span, done)=>{ - arguments[lastArgId] = function(err) { - done == null ? void 0 : done(err); - return scopeBoundCb.apply(this, arguments); - }; - return fn.apply(this, arguments); - }); - } else { - return tracer.trace(name, optionsObj, ()=>fn.apply(this, arguments)); - } - }; - } - startSpan(...args) { - const [type, options] = args; - const spanContext = this.getSpanContext((options == null ? void 0 : options.parentSpan) ?? this.getActiveScopeSpan()); - return this.getTracerInstance().startSpan(type, options, spanContext); - } - getSpanContext(parentSpan) { - const spanContext = parentSpan ? trace.setSpan(context.active(), parentSpan) : undefined; - return spanContext; - } - getRootSpanAttributes() { - const spanId = context.active().getValue(rootSpanIdKey); - return rootSpanAttributesStore.get(spanId); - } - setRootSpanAttribute(key, value) { - const spanId = context.active().getValue(rootSpanIdKey); - const attributes = rootSpanAttributesStore.get(spanId); - if (attributes && !attributes.has(key)) { - attributes.set(key, value); - } - } - withSpan(span, fn) { - const spanContext = trace.setSpan(context.active(), span); - return context.with(spanContext, fn); - } -} -const getTracer = (()=>{ - const tracer = new NextTracerImpl(); - return ()=>tracer; -})(); -; - //# sourceMappingURL=tracer.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/server-reference-info.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Extracts info about the server reference for the given server reference ID by - * parsing the first byte of the hex-encoded ID. - * - * ``` - * Bit positions: [7] [6] [5] [4] [3] [2] [1] [0] - * Bits: typeBit argMask restArgs - * ``` - * - * If the `typeBit` is `1` the server reference represents a `"use cache"` - * function, otherwise a server action. - * - * The `argMask` encodes whether the function uses the argument at the - * respective position. - * - * The `restArgs` bit indicates whether the function uses a rest parameter. It's - * also set to 1 if the function has more than 6 args. - * - * @param id hex-encoded server reference ID - */ __turbopack_context__.s([ - "extractInfoFromServerReferenceId", - ()=>extractInfoFromServerReferenceId, - "omitUnusedArgs", - ()=>omitUnusedArgs -]); -function extractInfoFromServerReferenceId(id) { - const infoByte = parseInt(id.slice(0, 2), 16); - const typeBit = infoByte >> 7 & 0x1; - const argMask = infoByte >> 1 & 0x3f; - const restArgs = infoByte & 0x1; - const usedArgs = Array(6); - for(let index = 0; index < 6; index++){ - const bitPosition = 5 - index; - const bit = argMask >> bitPosition & 0x1; - usedArgs[index] = bit === 1; - } - return { - type: typeBit === 1 ? 'use-cache' : 'server-action', - usedArgs: usedArgs, - hasRestArgs: restArgs === 1 - }; -} -function omitUnusedArgs(args, info) { - const filteredArgs = new Array(args.length); - for(let index = 0; index < args.length; index++){ - if (index < 6 && info.usedArgs[index] || // This assumes that the server reference info byte has the restArgs bit - // set to 1 if there are more than 6 args. - index >= 6 && info.hasRestArgs) { - filteredArgs[index] = args[index]; - } - } - return filteredArgs; -} //# sourceMappingURL=server-reference-info.js.map -}), -"[project]/node_modules/next/dist/esm/lib/client-and-server-references.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getUseCacheFunctionInfo", - ()=>getUseCacheFunctionInfo, - "isClientReference", - ()=>isClientReference, - "isServerReference", - ()=>isServerReference, - "isUseCacheFunction", - ()=>isUseCacheFunction -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$server$2d$reference$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/server-reference-info.js [app-rsc] (ecmascript)"); -; -function isServerReference(value) { - return value.$$typeof === Symbol.for('react.server.reference'); -} -function isUseCacheFunction(value) { - if (!isServerReference(value)) { - return false; - } - const { type } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$server$2d$reference$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["extractInfoFromServerReferenceId"])(value.$$id); - return type === 'use-cache'; -} -function getUseCacheFunctionInfo(value) { - if (!isServerReference(value)) { - return null; - } - const info = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$server$2d$reference$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["extractInfoFromServerReferenceId"])(value.$$id); - return info.type === 'use-cache' ? info : null; -} -function isClientReference(mod) { - const defaultExport = (mod == null ? void 0 : mod.default) || mod; - return (defaultExport == null ? void 0 : defaultExport.$$typeof) === Symbol.for('react.client.reference'); -} //# sourceMappingURL=client-and-server-references.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/lazy-result.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Calls the given function only when the returned promise-like object is - * awaited. Afterwards, it provides the resolved value synchronously as `value` - * property. - */ __turbopack_context__.s([ - "createLazyResult", - ()=>createLazyResult, - "isResolvedLazyResult", - ()=>isResolvedLazyResult -]); -function createLazyResult(fn) { - let pendingResult; - const result = { - then (onfulfilled, onrejected) { - if (!pendingResult) { - pendingResult = Promise.resolve(fn()); - } - pendingResult.then((value)=>{ - result.value = value; - }).catch(()=>{ - // The externally awaited result will be rejected via `onrejected`. We - // don't need to handle it here. But we do want to avoid an unhandled - // rejection. - }); - return pendingResult.then(onfulfilled, onrejected); - } - }; - return result; -} -function isResolvedLazyResult(result) { - return result.hasOwnProperty('value'); -} //# sourceMappingURL=lazy-result.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/deep-freeze.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Recursively freezes an object and all of its properties. This prevents the - * object from being modified at runtime. When the JS runtime is running in - * strict mode, any attempts to modify a frozen object will throw an error. - * - * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze - * @param obj The object to freeze. - */ __turbopack_context__.s([ - "deepFreeze", - ()=>deepFreeze -]); -function deepFreeze(obj) { - // If the object is already frozen, there's no need to freeze it again. - if (Object.isFrozen(obj)) return obj; - // An array is an object, but we also want to freeze each element in the array - // as well. - if (Array.isArray(obj)) { - for (const item of obj){ - if (!item || typeof item !== 'object') continue; - deepFreeze(item); - } - return Object.freeze(obj); - } - for (const value of Object.values(obj)){ - if (!value || typeof value !== 'object') continue; - deepFreeze(value); - } - return Object.freeze(obj); -} //# sourceMappingURL=deep-freeze.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/resolve-metadata.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "accumulateMetadata", - ()=>accumulateMetadata, - "accumulateViewport", - ()=>accumulateViewport, - "resolveMetadata", - ()=>resolveMetadata, - "resolveViewport", - ()=>resolveViewport -]); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$server$2d$only$2f$empty$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/server-only/empty.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$default$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/default-metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-opengraph.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-title.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/app-dir-module.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$interop$2d$default$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/interop-default.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-basics.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$icons$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolvers/resolve-icons.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/output/log.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$client$2d$and$2d$server$2d$references$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/client-and-server-references.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lazy$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/lazy-result.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -function isFavicon(icon) { - if (!icon) { - return false; - } - // turbopack appends a hash to all images - return (icon.url === '/favicon.ico' || icon.url.toString().startsWith('/favicon.ico?')) && icon.type === 'image/x-icon'; -} -function convertUrlsToStrings(input) { - if (input instanceof URL) { - return input.toString(); - } else if (Array.isArray(input)) { - return input.map((item)=>convertUrlsToStrings(item)); - } else if (input && typeof input === 'object') { - const result = {}; - for (const [key, value] of Object.entries(input)){ - result[key] = convertUrlsToStrings(value); - } - return result; - } - return input; -} -function normalizeMetadataBase(metadataBase) { - if (typeof metadataBase === 'string') { - try { - metadataBase = new URL(metadataBase); - } catch { - throw Object.defineProperty(new Error(`metadataBase is not a valid URL: ${metadataBase}`), "__NEXT_ERROR_CODE", { - value: "E850", - enumerable: false, - configurable: true - }); - } - } - return metadataBase; -} -async function mergeStaticMetadata(metadataBase, source, target, staticFilesMetadata, metadataContext, titleTemplates, leafSegmentStaticIcons, pathname) { - var _source_twitter, _source_openGraph; - if (!staticFilesMetadata) return target; - const { icon, apple, openGraph, twitter, manifest } = staticFilesMetadata; - // Keep updating the static icons in the most leaf node - if (icon) { - leafSegmentStaticIcons.icon = icon; - } - if (apple) { - leafSegmentStaticIcons.apple = apple; - } - // file based metadata is specified and current level metadata twitter.images is not specified - if (twitter && !(source == null ? void 0 : (_source_twitter = source.twitter) == null ? void 0 : _source_twitter.hasOwnProperty('images'))) { - const resolvedTwitter = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTwitter"])({ - ...target.twitter, - images: twitter - }, metadataBase, { - ...metadataContext, - isStaticMetadataRouteFile: true - }, titleTemplates.twitter); - target.twitter = convertUrlsToStrings(resolvedTwitter); - } - // file based metadata is specified and current level metadata openGraph.images is not specified - if (openGraph && !(source == null ? void 0 : (_source_openGraph = source.openGraph) == null ? void 0 : _source_openGraph.hasOwnProperty('images'))) { - const resolvedOpenGraph = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveOpenGraph"])({ - ...target.openGraph, - images: openGraph - }, metadataBase, pathname, { - ...metadataContext, - isStaticMetadataRouteFile: true - }, titleTemplates.openGraph); - target.openGraph = convertUrlsToStrings(resolvedOpenGraph); - } - if (manifest) { - target.manifest = manifest; - } - return target; -} -/** - * Merges the given metadata with the resolved metadata. Returns a new object. - */ async function mergeMetadata(route, pathname, { metadata, resolvedMetadata, staticFilesMetadata, titleTemplates, metadataContext, buildState, leafSegmentStaticIcons }) { - const newResolvedMetadata = structuredClone(resolvedMetadata); - const metadataBase = normalizeMetadataBase((metadata == null ? void 0 : metadata.metadataBase) !== undefined ? metadata.metadataBase : resolvedMetadata.metadataBase); - for(const key_ in metadata){ - const key = key_; - switch(key){ - case 'title': - { - newResolvedMetadata.title = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$title$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTitle"])(metadata.title, titleTemplates.title); - break; - } - case 'alternates': - { - newResolvedMetadata.alternates = convertUrlsToStrings(await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAlternates"])(metadata.alternates, metadataBase, pathname, metadataContext)); - break; - } - case 'openGraph': - { - newResolvedMetadata.openGraph = convertUrlsToStrings(await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveOpenGraph"])(metadata.openGraph, metadataBase, pathname, metadataContext, titleTemplates.openGraph)); - break; - } - case 'twitter': - { - newResolvedMetadata.twitter = convertUrlsToStrings((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTwitter"])(metadata.twitter, metadataBase, metadataContext, titleTemplates.twitter)); - break; - } - case 'facebook': - newResolvedMetadata.facebook = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveFacebook"])(metadata.facebook); - break; - case 'verification': - newResolvedMetadata.verification = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveVerification"])(metadata.verification); - break; - case 'icons': - { - newResolvedMetadata.icons = convertUrlsToStrings((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$icons$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveIcons"])(metadata.icons)); - break; - } - case 'appleWebApp': - newResolvedMetadata.appleWebApp = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAppleWebApp"])(metadata.appleWebApp); - break; - case 'appLinks': - newResolvedMetadata.appLinks = convertUrlsToStrings((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAppLinks"])(metadata.appLinks)); - break; - case 'robots': - { - newResolvedMetadata.robots = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveRobots"])(metadata.robots); - break; - } - case 'archives': - case 'assets': - case 'bookmarks': - case 'keywords': - { - newResolvedMetadata[key] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(metadata[key]); - break; - } - case 'authors': - { - newResolvedMetadata[key] = convertUrlsToStrings((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveAsArrayOrUndefined"])(metadata.authors)); - break; - } - case 'itunes': - { - newResolvedMetadata[key] = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveItunes"])(metadata.itunes, metadataBase, pathname, metadataContext); - break; - } - case 'pagination': - { - newResolvedMetadata.pagination = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolvePagination"])(metadata.pagination, metadataBase, pathname, metadataContext); - break; - } - // directly assign fields that fallback to null - case 'abstract': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'applicationName': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'description': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'generator': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'creator': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'publisher': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'category': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'classification': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'referrer': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'formatDetection': - newResolvedMetadata[key] = metadata[key] ?? null; - break; - case 'manifest': - newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null; - break; - case 'pinterest': - newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null; - break; - case 'other': - newResolvedMetadata.other = Object.assign({}, newResolvedMetadata.other, metadata.other); - break; - case 'metadataBase': - newResolvedMetadata.metadataBase = metadataBase ? metadataBase.toString() : null; - break; - case 'apple-touch-fullscreen': - { - buildState.warnings.add(`Use appleWebApp instead\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`); - break; - } - case 'apple-touch-icon-precomposed': - { - buildState.warnings.add(`Use icons.apple instead\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`); - break; - } - case 'themeColor': - case 'colorScheme': - case 'viewport': - if (metadata[key] != null) { - buildState.warnings.add(`Unsupported metadata ${key} is configured in metadata export in ${route}. Please move it to viewport export instead.\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-viewport`); - } - break; - default: - { - key; - } - } - } - return mergeStaticMetadata(metadataBase, metadata, newResolvedMetadata, staticFilesMetadata, metadataContext, titleTemplates, leafSegmentStaticIcons, pathname); -} -/** - * Merges the given viewport with the resolved viewport. Returns a new object. - */ function mergeViewport({ resolvedViewport, viewport }) { - const newResolvedViewport = structuredClone(resolvedViewport); - if (viewport) { - for(const key_ in viewport){ - const key = key_; - switch(key){ - case 'themeColor': - { - newResolvedViewport.themeColor = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$basics$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveThemeColor"])(viewport.themeColor); - break; - } - case 'colorScheme': - newResolvedViewport.colorScheme = viewport.colorScheme || null; - break; - case 'width': - case 'height': - case 'initialScale': - case 'minimumScale': - case 'maximumScale': - case 'userScalable': - case 'viewportFit': - case 'interactiveWidget': - // always override the target with the source - // @ts-ignore viewport properties - newResolvedViewport[key] = viewport[key]; - break; - default: - key; - } - } - } - return newResolvedViewport; -} -function getDefinedViewport(mod, props, tracingProps) { - if (typeof mod.generateViewport === 'function') { - const { route } = tracingProps; - const segmentProps = createSegmentProps(mod.generateViewport, props); - return Object.assign((parent)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ResolveMetadataSpan"].generateViewport, { - spanName: `generateViewport ${route}`, - attributes: { - 'next.page': route - } - }, ()=>mod.generateViewport(segmentProps, parent)), { - $$original: mod.generateViewport - }); - } - return mod.viewport || null; -} -function getDefinedMetadata(mod, props, tracingProps) { - if (typeof mod.generateMetadata === 'function') { - const { route } = tracingProps; - const segmentProps = createSegmentProps(mod.generateMetadata, props); - return Object.assign((parent)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ResolveMetadataSpan"].generateMetadata, { - spanName: `generateMetadata ${route}`, - attributes: { - 'next.page': route - } - }, ()=>mod.generateMetadata(segmentProps, parent)), { - $$original: mod.generateMetadata - }); - } - return mod.metadata || null; -} -/** - * If `fn` is a `'use cache'` function, we add special markers to the props, - * that the cache wrapper reads and removes, before passing the props to the - * user function. - */ function createSegmentProps(fn, props) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$client$2d$and$2d$server$2d$references$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isUseCacheFunction"])(fn) ? 'searchParams' in props ? { - ...props, - $$isPage: true - } : { - ...props, - $$isLayout: true - } : props; -} -async function collectStaticImagesFiles(metadata, props, type) { - var _this; - if (!(metadata == null ? void 0 : metadata[type])) return undefined; - const iconPromises = metadata[type].map(async (imageModule)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$interop$2d$default$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["interopDefault"])(await imageModule(props))); - return (iconPromises == null ? void 0 : iconPromises.length) > 0 ? (_this = await Promise.all(iconPromises)) == null ? void 0 : _this.flat() : undefined; -} -async function resolveStaticMetadata(modules, props) { - const { metadata } = modules; - if (!metadata) return null; - const [icon, apple, openGraph, twitter] = await Promise.all([ - collectStaticImagesFiles(metadata, props, 'icon'), - collectStaticImagesFiles(metadata, props, 'apple'), - collectStaticImagesFiles(metadata, props, 'openGraph'), - collectStaticImagesFiles(metadata, props, 'twitter') - ]); - const staticMetadata = { - icon, - apple, - openGraph, - twitter, - manifest: metadata.manifest - }; - return staticMetadata; -} -// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata] -async function collectMetadata({ tree, metadataItems, errorMetadataItem, props, route, errorConvention }) { - let mod; - let modType; - const hasErrorConventionComponent = Boolean(errorConvention && tree[2][errorConvention]); - if (errorConvention) { - mod = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getComponentTypeModule"])(tree, 'layout'); - modType = errorConvention; - } else { - const { mod: layoutOrPageMod, modType: layoutOrPageModType } = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getLayoutOrPageModule"])(tree); - mod = layoutOrPageMod; - modType = layoutOrPageModType; - } - if (modType) { - route += `/${modType}`; - } - const staticFilesMetadata = await resolveStaticMetadata(tree[2], props); - const metadataExport = mod ? getDefinedMetadata(mod, props, { - route - }) : null; - metadataItems.push([ - metadataExport, - staticFilesMetadata - ]); - if (hasErrorConventionComponent && errorConvention) { - const errorMod = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getComponentTypeModule"])(tree, errorConvention); - const errorMetadataExport = errorMod ? getDefinedMetadata(errorMod, props, { - route - }) : null; - errorMetadataItem[0] = errorMetadataExport; - errorMetadataItem[1] = staticFilesMetadata; - } -} -// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata] -async function collectViewport({ tree, viewportItems, errorViewportItemRef, props, route, errorConvention }) { - let mod; - let modType; - const hasErrorConventionComponent = Boolean(errorConvention && tree[2][errorConvention]); - if (errorConvention) { - mod = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getComponentTypeModule"])(tree, 'layout'); - modType = errorConvention; - } else { - const { mod: layoutOrPageMod, modType: layoutOrPageModType } = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getLayoutOrPageModule"])(tree); - mod = layoutOrPageMod; - modType = layoutOrPageModType; - } - if (modType) { - route += `/${modType}`; - } - const viewportExport = mod ? getDefinedViewport(mod, props, { - route - }) : null; - viewportItems.push(viewportExport); - if (hasErrorConventionComponent && errorConvention) { - const errorMod = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$app$2d$dir$2d$module$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getComponentTypeModule"])(tree, errorConvention); - const errorViewportExport = errorMod ? getDefinedViewport(errorMod, props, { - route - }) : null; - errorViewportItemRef.current = errorViewportExport; - } -} -const resolveMetadataItems = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(async function(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore) { - const parentParams = {}; - const metadataItems = []; - const errorMetadataItem = [ - null, - null - ]; - const treePrefix = undefined; - return resolveMetadataItemsImpl(metadataItems, tree, treePrefix, parentParams, searchParams, errorConvention, errorMetadataItem, getDynamicParamFromSegment, workStore); -}); -async function resolveMetadataItemsImpl(metadataItems, tree, /** Provided tree can be nested subtree, this argument says what is the path of such subtree */ treePrefix, parentParams, searchParams, errorConvention, errorMetadataItem, getDynamicParamFromSegment, workStore) { - const [segment, parallelRoutes, { page }] = tree; - const currentTreePrefix = treePrefix && treePrefix.length ? [ - ...treePrefix, - segment - ] : [ - segment - ]; - const isPage = typeof page !== 'undefined'; - // Handle dynamic segment params. - const segmentParam = getDynamicParamFromSegment(segment); - /** - * Create object holding the parent params and current params - */ let currentParams = parentParams; - if (segmentParam && segmentParam.value !== null) { - currentParams = { - ...parentParams, - [segmentParam.param]: segmentParam.value - }; - } - const params = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerParamsForMetadata"])(currentParams, workStore); - const props = isPage ? { - params, - searchParams - } : { - params - }; - await collectMetadata({ - tree, - metadataItems, - errorMetadataItem, - errorConvention, - props, - route: currentTreePrefix // __PAGE__ shouldn't be shown in a route - .filter((s)=>s !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]).join('/') - }); - for(const key in parallelRoutes){ - const childTree = parallelRoutes[key]; - await resolveMetadataItemsImpl(metadataItems, childTree, currentTreePrefix, currentParams, searchParams, errorConvention, errorMetadataItem, getDynamicParamFromSegment, workStore); - } - if (Object.keys(parallelRoutes).length === 0 && errorConvention) { - // If there are no parallel routes, place error metadata as the last item. - // e.g. layout -> layout -> not-found - metadataItems.push(errorMetadataItem); - } - return metadataItems; -} -const resolveViewportItems = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(async function(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore) { - const parentParams = {}; - const viewportItems = []; - const errorViewportItemRef = { - current: null - }; - const treePrefix = undefined; - return resolveViewportItemsImpl(viewportItems, tree, treePrefix, parentParams, searchParams, errorConvention, errorViewportItemRef, getDynamicParamFromSegment, workStore); -}); -async function resolveViewportItemsImpl(viewportItems, tree, /** Provided tree can be nested subtree, this argument says what is the path of such subtree */ treePrefix, parentParams, searchParams, errorConvention, errorViewportItemRef, getDynamicParamFromSegment, workStore) { - const [segment, parallelRoutes, { page }] = tree; - const currentTreePrefix = treePrefix && treePrefix.length ? [ - ...treePrefix, - segment - ] : [ - segment - ]; - const isPage = typeof page !== 'undefined'; - // Handle dynamic segment params. - const segmentParam = getDynamicParamFromSegment(segment); - /** - * Create object holding the parent params and current params - */ let currentParams = parentParams; - if (segmentParam && segmentParam.value !== null) { - currentParams = { - ...parentParams, - [segmentParam.param]: segmentParam.value - }; - } - const params = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerParamsForMetadata"])(currentParams, workStore); - let layerProps; - if (isPage) { - layerProps = { - params, - searchParams - }; - } else { - layerProps = { - params - }; - } - await collectViewport({ - tree, - viewportItems, - errorViewportItemRef, - errorConvention, - props: layerProps, - route: currentTreePrefix // __PAGE__ shouldn't be shown in a route - .filter((s)=>s !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]).join('/') - }); - for(const key in parallelRoutes){ - const childTree = parallelRoutes[key]; - await resolveViewportItemsImpl(viewportItems, childTree, currentTreePrefix, currentParams, searchParams, errorConvention, errorViewportItemRef, getDynamicParamFromSegment, workStore); - } - if (Object.keys(parallelRoutes).length === 0 && errorConvention) { - // If there are no parallel routes, place error metadata as the last item. - // e.g. layout -> layout -> not-found - viewportItems.push(errorViewportItemRef.current); - } - return viewportItems; -} -const isTitleTruthy = (title)=>!!(title == null ? void 0 : title.absolute); -const hasTitle = (metadata)=>isTitleTruthy(metadata == null ? void 0 : metadata.title); -function inheritFromMetadata(target, metadata) { - if (target) { - if (!hasTitle(target) && hasTitle(metadata)) { - target.title = metadata.title; - } - if (!target.description && metadata.description) { - target.description = metadata.description; - } - } -} -// eslint-disable-next-line @typescript-eslint/no-unused-vars -const commonOgKeys = [ - 'title', - 'description', - 'images' -]; -function postProcessMetadata(metadata, favicon, titleTemplates, metadataContext) { - const { openGraph, twitter } = metadata; - if (openGraph) { - // If there's openGraph information but not configured in twitter, - // inherit them from openGraph metadata. - let autoFillProps = {}; - const hasTwTitle = hasTitle(twitter); - const hasTwDescription = twitter == null ? void 0 : twitter.description; - const hasTwImages = Boolean((twitter == null ? void 0 : twitter.hasOwnProperty('images')) && twitter.images); - if (!hasTwTitle) { - if (isTitleTruthy(openGraph.title)) { - autoFillProps.title = openGraph.title; - } else if (metadata.title && isTitleTruthy(metadata.title)) { - autoFillProps.title = metadata.title; - } - } - if (!hasTwDescription) autoFillProps.description = openGraph.description || metadata.description || undefined; - if (!hasTwImages) autoFillProps.images = openGraph.images; - if (Object.keys(autoFillProps).length > 0) { - const partialTwitter = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolvers$2f$resolve$2d$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveTwitter"])(autoFillProps, normalizeMetadataBase(metadata.metadataBase), metadataContext, titleTemplates.twitter); - if (metadata.twitter) { - metadata.twitter = Object.assign({}, metadata.twitter, { - ...!hasTwTitle && { - title: partialTwitter == null ? void 0 : partialTwitter.title - }, - ...!hasTwDescription && { - description: partialTwitter == null ? void 0 : partialTwitter.description - }, - ...!hasTwImages && { - images: partialTwitter == null ? void 0 : partialTwitter.images - } - }); - } else { - metadata.twitter = convertUrlsToStrings(partialTwitter); - } - } - } - // If there's no title and description configured in openGraph or twitter, - // use the title and description from metadata. - inheritFromMetadata(openGraph, metadata); - inheritFromMetadata(twitter, metadata); - if (favicon) { - if (!metadata.icons) { - metadata.icons = { - icon: [], - apple: [] - }; - } - metadata.icons.icon.unshift(favicon); - } - return metadata; -} -function prerenderMetadata(metadataItems) { - // If the index is a function then it is a resolver and the next slot - // is the corresponding result. If the index is not a function it is the result - // itself. - const resolversAndResults = []; - for(let i = 0; i < metadataItems.length; i++){ - const metadataExport = metadataItems[i][0]; - getResult(resolversAndResults, metadataExport); - } - return resolversAndResults; -} -function prerenderViewport(viewportItems) { - // If the index is a function then it is a resolver and the next slot - // is the corresponding result. If the index is not a function it is the result - // itself. - const resolversAndResults = []; - for(let i = 0; i < viewportItems.length; i++){ - const viewportExport = viewportItems[i]; - getResult(resolversAndResults, viewportExport); - } - return resolversAndResults; -} -const noop = ()=>{}; -function getResult(resolversAndResults, exportForResult) { - if (typeof exportForResult === 'function') { - // If the function is a 'use cache' function that uses the parent data as - // the second argument, we don't want to eagerly execute it during - // metadata/viewport pre-rendering, as the parent data might also be - // computed from another 'use cache' function. To ensure that the hanging - // input abort signal handling works in this case (i.e. the depending - // function waits for the cached input to resolve while encoding its args), - // they must be called sequentially. This can be accomplished by wrapping - // the call in a lazy promise, so that the original function is only called - // when the result is actually awaited. - const useCacheFunctionInfo = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$client$2d$and$2d$server$2d$references$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getUseCacheFunctionInfo"])(exportForResult.$$original); - if (useCacheFunctionInfo && useCacheFunctionInfo.usedArgs[1]) { - const promise = new Promise((resolve)=>resolversAndResults.push(resolve)); - resolversAndResults.push((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lazy$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createLazyResult"])(async ()=>exportForResult(promise))); - } else { - let result; - if (useCacheFunctionInfo) { - resolversAndResults.push(noop); - // @ts-expect-error We intentionally omit the parent argument, because - // we know from the check above that the 'use cache' function does not - // use it. - result = exportForResult(); - } else { - result = exportForResult(new Promise((resolve)=>resolversAndResults.push(resolve))); - } - resolversAndResults.push(result); - if (result instanceof Promise) { - // since we eager execute generateMetadata and - // they can reject at anytime we need to ensure - // we attach the catch handler right away to - // prevent unhandled rejections crashing the process - result.catch((err)=>{ - return { - __nextError: err - }; - }); - } - } - } else if (typeof exportForResult === 'object') { - resolversAndResults.push(exportForResult); - } else { - resolversAndResults.push(null); - } -} -function freezeInDev(obj) { - if ("TURBOPACK compile-time truthy", 1) { - return __turbopack_context__.r("[project]/node_modules/next/dist/esm/shared/lib/deep-freeze.js [app-rsc] (ecmascript)").deepFreeze(obj); - } - //TURBOPACK unreachable - ; -} -async function accumulateMetadata(route, metadataItems, pathname, metadataContext) { - let resolvedMetadata = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$default$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDefaultMetadata"])(); - let titleTemplates = { - title: null, - twitter: null, - openGraph: null - }; - const buildState = { - warnings: new Set() - }; - let favicon; - // Collect the static icons in the most leaf node, - // since we don't collect all the static metadata icons in the parent segments. - const leafSegmentStaticIcons = { - icon: [], - apple: [] - }; - const resolversAndResults = prerenderMetadata(metadataItems); - let resultIndex = 0; - for(let i = 0; i < metadataItems.length; i++){ - var _staticFilesMetadata_icon; - const staticFilesMetadata = metadataItems[i][1]; - // Treat favicon as special case, it should be the first icon in the list - // i <= 1 represents root layout, and if current page is also at root - if (i <= 1 && isFavicon(staticFilesMetadata == null ? void 0 : (_staticFilesMetadata_icon = staticFilesMetadata.icon) == null ? void 0 : _staticFilesMetadata_icon[0])) { - var _staticFilesMetadata_icon1; - const iconMod = staticFilesMetadata == null ? void 0 : (_staticFilesMetadata_icon1 = staticFilesMetadata.icon) == null ? void 0 : _staticFilesMetadata_icon1.shift(); - if (i === 0) favicon = iconMod; - } - let pendingMetadata = resolversAndResults[resultIndex++]; - if (typeof pendingMetadata === 'function') { - // This metadata item had a `generateMetadata` and - // we need to provide the currently resolved metadata - // to it before we continue; - const resolveParentMetadata = pendingMetadata; - // we know that the next item is a result if this item - // was a resolver - pendingMetadata = resolversAndResults[resultIndex++]; - resolveParentMetadata(freezeInDev(resolvedMetadata)); - } - // Otherwise the item was either null or a static export - let metadata; - if (isPromiseLike(pendingMetadata)) { - metadata = await pendingMetadata; - } else { - metadata = pendingMetadata; - } - resolvedMetadata = await mergeMetadata(route, pathname, { - resolvedMetadata, - metadata, - metadataContext, - staticFilesMetadata, - titleTemplates, - buildState, - leafSegmentStaticIcons - }); - // If the layout is the same layer with page, skip the leaf layout and leaf page - // The leaf layout and page are the last two items - if (i < metadataItems.length - 2) { - var _resolvedMetadata_title, _resolvedMetadata_openGraph, _resolvedMetadata_twitter; - titleTemplates = { - title: ((_resolvedMetadata_title = resolvedMetadata.title) == null ? void 0 : _resolvedMetadata_title.template) || null, - openGraph: ((_resolvedMetadata_openGraph = resolvedMetadata.openGraph) == null ? void 0 : _resolvedMetadata_openGraph.title.template) || null, - twitter: ((_resolvedMetadata_twitter = resolvedMetadata.twitter) == null ? void 0 : _resolvedMetadata_twitter.title.template) || null - }; - } - } - if (leafSegmentStaticIcons.icon.length > 0 || leafSegmentStaticIcons.apple.length > 0) { - if (!resolvedMetadata.icons) { - resolvedMetadata.icons = { - icon: [], - apple: [] - }; - if (leafSegmentStaticIcons.icon.length > 0) { - resolvedMetadata.icons.icon.unshift(...leafSegmentStaticIcons.icon); - } - if (leafSegmentStaticIcons.apple.length > 0) { - resolvedMetadata.icons.apple.unshift(...leafSegmentStaticIcons.apple); - } - } - } - // Only log warnings if there are any, and only once after the metadata resolving process is finished - if (buildState.warnings.size > 0) { - for (const warning of buildState.warnings){ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["warn"](warning); - } - } - return postProcessMetadata(resolvedMetadata, favicon, titleTemplates, metadataContext); -} -async function accumulateViewport(viewportItems) { - let resolvedViewport = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$default$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDefaultViewport"])(); - const resolversAndResults = prerenderViewport(viewportItems); - let i = 0; - while(i < resolversAndResults.length){ - let pendingViewport = resolversAndResults[i++]; - if (typeof pendingViewport === 'function') { - // this viewport item had a `generateViewport` and - // we need to provide the currently resolved viewport - // to it before we continue; - const resolveParentViewport = pendingViewport; - // we know that the next item is a result if this item - // was a resolver - pendingViewport = resolversAndResults[i++]; - resolveParentViewport(freezeInDev(resolvedViewport)); - } - // Otherwise the item was either null or a static export - let viewport; - if (isPromiseLike(pendingViewport)) { - viewport = await pendingViewport; - } else { - viewport = pendingViewport; - } - resolvedViewport = mergeViewport({ - resolvedViewport, - viewport - }); - } - return resolvedViewport; -} -async function resolveMetadata(tree, pathname, searchParams, errorConvention, getDynamicParamFromSegment, workStore, metadataContext) { - const metadataItems = await resolveMetadataItems(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore); - return accumulateMetadata(workStore.route, metadataItems, pathname, metadataContext); -} -async function resolveViewport(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore) { - const viewportItems = await resolveViewportItems(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore); - return accumulateViewport(viewportItems); -} -function isPromiseLike(value) { - return typeof value === 'object' && value !== null && typeof value.then === 'function'; -} //# sourceMappingURL=resolve-metadata.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTTPAccessErrorStatus", - ()=>HTTPAccessErrorStatus, - "HTTP_ERROR_FALLBACK_ERROR_CODE", - ()=>HTTP_ERROR_FALLBACK_ERROR_CODE, - "getAccessFallbackErrorTypeByStatus", - ()=>getAccessFallbackErrorTypeByStatus, - "getAccessFallbackHTTPStatus", - ()=>getAccessFallbackHTTPStatus, - "isHTTPAccessFallbackError", - ()=>isHTTPAccessFallbackError -]); -const HTTPAccessErrorStatus = { - NOT_FOUND: 404, - FORBIDDEN: 403, - UNAUTHORIZED: 401 -}; -const ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus)); -const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'; -function isHTTPAccessFallbackError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const [prefix, httpStatus] = error.digest.split(';'); - return prefix === HTTP_ERROR_FALLBACK_ERROR_CODE && ALLOWED_CODES.has(Number(httpStatus)); -} -function getAccessFallbackHTTPStatus(error) { - const httpStatus = error.digest.split(';')[1]; - return Number(httpStatus); -} -function getAccessFallbackErrorTypeByStatus(status) { - switch(status){ - case 401: - return 'unauthorized'; - case 403: - return 'forbidden'; - case 404: - return 'not-found'; - default: - return; - } -} //# sourceMappingURL=http-access-fallback.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/pathname.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createServerPathnameForMetadata", - ()=>createServerPathnameForMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -; -; -; -; -function createServerPathnameForMetadata(underlyingPathname, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - { - return createPrerenderPathname(underlyingPathname, workStore, workUnitStore); - } - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createServerPathnameForMetadata should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E740", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, createRenderPathname(underlyingPathname)); - case 'request': - return createRenderPathname(underlyingPathname); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderPathname(underlyingPathname, workStore, prerenderStore) { - switch(prerenderStore.type){ - case 'prerender-client': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderPathname was called inside a client component scope.'), "__NEXT_ERROR_CODE", { - value: "E694", - enumerable: false, - configurable: true - }); - case 'prerender': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`pathname`'); - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return makeErroringPathname(workStore, prerenderStore.dynamicTracking); - } - break; - } - case 'prerender-legacy': - break; - default: - prerenderStore; - } - // We don't have any fallback params so we have an entirely static safe params object - return Promise.resolve(underlyingPathname); -} -function makeErroringPathname(workStore, dynamicTracking) { - let reject = null; - const promise = new Promise((_, re)=>{ - reject = re; - }); - const originalThen = promise.then.bind(promise); - // We instrument .then so that we can generate a tracking event only if you actually - // await this promise, not just that it is created. - promise.then = (onfulfilled, onrejected)=>{ - if (reject) { - try { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, 'metadata relative url resolving', dynamicTracking); - } catch (error) { - reject(error); - reject = null; - } - } - return originalThen(onfulfilled, onrejected); - }; - // We wrap in a noop proxy to trick the runtime into thinking it - // isn't a native promise (it's not really). This is so that awaiting - // the promise will call the `then` property triggering the lazy postpone - return new Proxy(promise, {}); -} -function createRenderPathname(underlyingPathname) { - return Promise.resolve(underlyingPathname); -} //# sourceMappingURL=pathname.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isPostpone", - ()=>isPostpone -]); -const REACT_POSTPONE_TYPE = Symbol.for('react.postpone'); -function isPostpone(error) { - return typeof error === 'object' && error !== null && error.$$typeof === REACT_POSTPONE_TYPE; -} //# sourceMappingURL=is-postpone.js.map -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js ")); -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js")); -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/lib/metadata/metadata.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createMetadataComponents", - ()=>createMetadataComponents -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/basic.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$alternate$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/alternate.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/opengraph.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icons$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/icons.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolve$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/resolve-metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/generate/meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/search-params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$pathname$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/pathname.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -function createMetadataComponents({ tree, pathname, parsedQuery, metadataContext, getDynamicParamFromSegment, errorType, workStore, serveStreamingMetadata }) { - const searchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerSearchParamsForMetadata"])(parsedQuery, workStore); - const pathnameForMetadata = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$pathname$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerPathnameForMetadata"])(pathname, workStore); - async function Viewport() { - const tags = await getResolvedViewport(tree, searchParams, getDynamicParamFromSegment, workStore, errorType).catch((viewportErr)=>{ - // When Legacy PPR is enabled viewport can reject with a Postpone type - // This will go away once Legacy PPR is removed and dynamic metadata will - // stay pending until after the prerender is complete when it is dynamic - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isPostpone"])(viewportErr)) { - throw viewportErr; - } - if (!errorType && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(viewportErr)) { - return getNotFoundViewport(tree, searchParams, getDynamicParamFromSegment, workStore).catch(()=>null); - } - // We're going to throw the error from the metadata outlet so we just render null here instead - return null; - }); - return tags; - } - Viewport.displayName = 'Next.Viewport'; - function ViewportWrapper() { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ViewportBoundary"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(Viewport, {}) - }); - } - async function Metadata() { - const tags = await getResolvedMetadata(tree, pathnameForMetadata, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorType).catch((metadataErr)=>{ - // When Legacy PPR is enabled metadata can reject with a Postpone type - // This will go away once Legacy PPR is removed and dynamic metadata will - // stay pending until after the prerender is complete when it is dynamic - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isPostpone"])(metadataErr)) { - throw metadataErr; - } - if (!errorType && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(metadataErr)) { - return getNotFoundMetadata(tree, pathnameForMetadata, searchParams, getDynamicParamFromSegment, metadataContext, workStore).catch(()=>null); - } - // We're going to throw the error from the metadata outlet so we just render null here instead - return null; - }); - return tags; - } - Metadata.displayName = 'Next.Metadata'; - function MetadataWrapper() { - // TODO: We shouldn't change what we render based on whether we are streaming or not. - // If we aren't streaming we should just block the response until we have resolved the - // metadata. - if (!serveStreamingMetadata) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetadataBoundary"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(Metadata, {}) - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])("div", { - hidden: true, - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetadataBoundary"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Suspense"], { - name: "Next.Metadata", - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(Metadata, {}) - }) - }) - }); - } - function MetadataOutlet() { - const pendingOutlet = Promise.all([ - getResolvedMetadata(tree, pathnameForMetadata, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorType), - getResolvedViewport(tree, searchParams, getDynamicParamFromSegment, workStore, errorType) - ]).then(()=>null); - // TODO: We shouldn't change what we render based on whether we are streaming or not. - // If we aren't streaming we should just block the response until we have resolved the - // metadata. - if (!serveStreamingMetadata) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["OutletBoundary"], { - children: pendingOutlet - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["OutletBoundary"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Suspense"], { - name: "Next.MetadataOutlet", - children: pendingOutlet - }) - }); - } - MetadataOutlet.displayName = 'Next.MetadataOutlet'; - return { - Viewport: ViewportWrapper, - Metadata: MetadataWrapper, - MetadataOutlet - }; -} -const getResolvedMetadata = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(getResolvedMetadataImpl); -async function getResolvedMetadataImpl(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorType) { - const errorConvention = errorType === 'redirect' ? undefined : errorType; - return renderMetadata(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorConvention); -} -const getNotFoundMetadata = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(getNotFoundMetadataImpl); -async function getNotFoundMetadataImpl(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore) { - const notFoundErrorConvention = 'not-found'; - return renderMetadata(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore, notFoundErrorConvention); -} -const getResolvedViewport = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(getResolvedViewportImpl); -async function getResolvedViewportImpl(tree, searchParams, getDynamicParamFromSegment, workStore, errorType) { - const errorConvention = errorType === 'redirect' ? undefined : errorType; - return renderViewport(tree, searchParams, getDynamicParamFromSegment, workStore, errorConvention); -} -const getNotFoundViewport = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"])(getNotFoundViewportImpl); -async function getNotFoundViewportImpl(tree, searchParams, getDynamicParamFromSegment, workStore) { - const notFoundErrorConvention = 'not-found'; - return renderViewport(tree, searchParams, getDynamicParamFromSegment, workStore, notFoundErrorConvention); -} -async function renderMetadata(tree, pathname, searchParams, getDynamicParamFromSegment, metadataContext, workStore, errorConvention) { - const resolvedMetadata = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolve$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveMetadata"])(tree, pathname, searchParams, errorConvention, getDynamicParamFromSegment, workStore, metadataContext); - const elements = createMetadataElements(resolvedMetadata); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Fragment"], { - children: elements.map((el, index)=>{ - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneElement"])(el, { - key: index - }); - }) - }); -} -async function renderViewport(tree, searchParams, getDynamicParamFromSegment, workStore, errorConvention) { - const resolvedViewport = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$resolve$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveViewport"])(tree, searchParams, errorConvention, getDynamicParamFromSegment, workStore); - const elements = createViewportElements(resolvedViewport); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Fragment"], { - children: elements.map((el, index)=>{ - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneElement"])(el, { - key: index - }); - }) - }); -} -function createMetadataElements(metadata) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BasicMeta"])({ - metadata - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$alternate$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AlternatesMetadata"])({ - alternates: metadata.alternates - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ItunesMeta"])({ - itunes: metadata.itunes - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FacebookMeta"])({ - facebook: metadata.facebook - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PinterestMeta"])({ - pinterest: metadata.pinterest - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FormatDetectionMeta"])({ - formatDetection: metadata.formatDetection - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["VerificationMeta"])({ - verification: metadata.verification - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AppleWebAppMeta"])({ - appleWebApp: metadata.appleWebApp - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["OpenGraphMetadata"])({ - openGraph: metadata.openGraph - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["TwitterMetadata"])({ - twitter: metadata.twitter - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$opengraph$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AppLinksMeta"])({ - appLinks: metadata.appLinks - }), - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$icons$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IconsMetadata"])({ - icons: metadata.icons - }) - ]); -} -function createViewportElements(viewport) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["MetaFilter"])([ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$generate$2f$basic$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ViewportMeta"])({ - viewport: viewport - }) - ]); -} //# sourceMappingURL=metadata.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-rsc] (ecmascript)").vendored['react-rsc'].ReactDOM; //# sourceMappingURL=react-dom.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/rsc/preloads.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "preconnect", - ()=>preconnect, - "preloadFont", - ()=>preloadFont, - "preloadStyle", - ()=>preloadStyle -]); -/* - -Files in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader. - -*/ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$dom$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js [app-rsc] (ecmascript)"); -; -function preloadStyle(href, crossOrigin, nonce) { - const opts = { - as: 'style' - }; - if (typeof crossOrigin === 'string') { - opts.crossOrigin = crossOrigin; - } - if (typeof nonce === 'string') { - opts.nonce = nonce; - } - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$dom$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].preload(href, opts); -} -function preloadFont(href, type, crossOrigin, nonce) { - const opts = { - as: 'font', - type - }; - if (typeof crossOrigin === 'string') { - opts.crossOrigin = crossOrigin; - } - if (typeof nonce === 'string') { - opts.nonce = nonce; - } - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$dom$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].preload(href, opts); -} -function preconnect(href, crossOrigin, nonce) { - const opts = {}; - if (typeof crossOrigin === 'string') { - opts.crossOrigin = crossOrigin; - } - if (typeof nonce === 'string') { - opts.nonce = nonce; - } - ; - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$dom$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].preconnect(href, opts); -} //# sourceMappingURL=preloads.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/rsc/postpone.js [app-rsc] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([]); -/* - -Files in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader. - -*/ // When postpone is available in canary React we can switch to importing it directly -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); //# sourceMappingURL=postpone.js.map -; -}), -"[project]/node_modules/next/dist/esm/server/app-render/rsc/taint.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "taintObjectReference", - ()=>taintObjectReference, - "taintUniqueValue", - ()=>taintUniqueValue -]); -/* - -Files in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader. - -*/ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -; -function notImplemented() { - throw Object.defineProperty(new Error('Taint can only be used with the taint flag.'), "__NEXT_ERROR_CODE", { - value: "E354", - enumerable: false, - configurable: true - }); -} -const taintObjectReference = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : notImplemented; -const taintUniqueValue = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : notImplemented; //# sourceMappingURL=taint.js.map -}), -"[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.node.development.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * @license React - * react-server-dom-turbopack-client.node.development.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ "production" !== ("TURBOPACK compile-time value", "development") && function() { - function resolveClientReference(bundlerConfig, metadata) { - if (bundlerConfig) { - var moduleExports = bundlerConfig[metadata[0]]; - if (bundlerConfig = moduleExports && moduleExports[metadata[2]]) moduleExports = bundlerConfig.name; - else { - bundlerConfig = moduleExports && moduleExports["*"]; - if (!bundlerConfig) throw Error('Could not find the module "' + metadata[0] + '" in the React Server Consumer Manifest. This is probably a bug in the React Server Components bundler.'); - moduleExports = metadata[2]; - } - return 4 === metadata.length ? [ - bundlerConfig.id, - bundlerConfig.chunks, - moduleExports, - 1 - ] : [ - bundlerConfig.id, - bundlerConfig.chunks, - moduleExports - ]; - } - return metadata; - } - function resolveServerReference(bundlerConfig, id) { - var name = "", resolvedModuleData = bundlerConfig[id]; - if (resolvedModuleData) name = resolvedModuleData.name; - else { - var idx = id.lastIndexOf("#"); - -1 !== idx && (name = id.slice(idx + 1), resolvedModuleData = bundlerConfig[id.slice(0, idx)]); - if (!resolvedModuleData) throw Error('Could not find the module "' + id + '" in the React Server Manifest. This is probably a bug in the React Server Components bundler.'); - } - return resolvedModuleData.async ? [ - resolvedModuleData.id, - resolvedModuleData.chunks, - name, - 1 - ] : [ - resolvedModuleData.id, - resolvedModuleData.chunks, - name - ]; - } - function requireAsyncModule(id) { - var promise = globalThis.__next_require__(id); - if ("function" !== typeof promise.then || "fulfilled" === promise.status) return null; - promise.then(function(value) { - promise.status = "fulfilled"; - promise.value = value; - }, function(reason) { - promise.status = "rejected"; - promise.reason = reason; - }); - return promise; - } - function ignoreReject() {} - function preloadModule(metadata) { - for(var chunks = metadata[1], promises = [], i = 0; i < chunks.length; i++){ - var thenable = globalThis.__next_chunk_load__(chunks[i]); - loadedChunks.has(thenable) || promises.push(thenable); - if (!instrumentedChunks.has(thenable)) { - var resolve = loadedChunks.add.bind(loadedChunks, thenable); - thenable.then(resolve, ignoreReject); - instrumentedChunks.add(thenable); - } - } - return 4 === metadata.length ? 0 === promises.length ? requireAsyncModule(metadata[0]) : Promise.all(promises).then(function() { - return requireAsyncModule(metadata[0]); - }) : 0 < promises.length ? Promise.all(promises) : null; - } - function requireModule(metadata) { - var moduleExports = globalThis.__next_require__(metadata[0]); - if (4 === metadata.length && "function" === typeof moduleExports.then) if ("fulfilled" === moduleExports.status) moduleExports = moduleExports.value; - else throw moduleExports.reason; - if ("*" === metadata[2]) return moduleExports; - if ("" === metadata[2]) return moduleExports.__esModule ? moduleExports.default : moduleExports; - if (hasOwnProperty.call(moduleExports, metadata[2])) return moduleExports[metadata[2]]; - } - function prepareDestinationWithChunks(moduleLoading, chunks, nonce$jscomp$0) { - if (null !== moduleLoading) for(var i = 0; i < chunks.length; i++){ - var nonce = nonce$jscomp$0, JSCompiler_temp_const = ReactDOMSharedInternals.d, JSCompiler_temp_const$jscomp$0 = JSCompiler_temp_const.X, JSCompiler_temp_const$jscomp$1 = moduleLoading.prefix + chunks[i]; - var JSCompiler_inline_result = moduleLoading.crossOrigin; - JSCompiler_inline_result = "string" === typeof JSCompiler_inline_result ? "use-credentials" === JSCompiler_inline_result ? JSCompiler_inline_result : "" : void 0; - JSCompiler_temp_const$jscomp$0.call(JSCompiler_temp_const, JSCompiler_temp_const$jscomp$1, { - crossOrigin: JSCompiler_inline_result, - nonce: nonce - }); - } - } - function getIteratorFn(maybeIterable) { - if (null === maybeIterable || "object" !== typeof maybeIterable) return null; - maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; - return "function" === typeof maybeIterable ? maybeIterable : null; - } - function isObjectPrototype(object) { - if (!object) return !1; - var ObjectPrototype = Object.prototype; - if (object === ObjectPrototype) return !0; - if (getPrototypeOf(object)) return !1; - object = Object.getOwnPropertyNames(object); - for(var i = 0; i < object.length; i++)if (!(object[i] in ObjectPrototype)) return !1; - return !0; - } - function isSimpleObject(object) { - if (!isObjectPrototype(getPrototypeOf(object))) return !1; - for(var names = Object.getOwnPropertyNames(object), i = 0; i < names.length; i++){ - var descriptor = Object.getOwnPropertyDescriptor(object, names[i]); - if (!descriptor || !descriptor.enumerable && ("key" !== names[i] && "ref" !== names[i] || "function" !== typeof descriptor.get)) return !1; - } - return !0; - } - function objectName(object) { - object = Object.prototype.toString.call(object); - return object.slice(8, object.length - 1); - } - function describeKeyForErrorMessage(key) { - var encodedKey = JSON.stringify(key); - return '"' + key + '"' === encodedKey ? key : encodedKey; - } - function describeValueForErrorMessage(value) { - switch(typeof value){ - case "string": - return JSON.stringify(10 >= value.length ? value : value.slice(0, 10) + "..."); - case "object": - if (isArrayImpl(value)) return "[...]"; - if (null !== value && value.$$typeof === CLIENT_REFERENCE_TAG) return "client"; - value = objectName(value); - return "Object" === value ? "{...}" : value; - case "function": - return value.$$typeof === CLIENT_REFERENCE_TAG ? "client" : (value = value.displayName || value.name) ? "function " + value : "function"; - default: - return String(value); - } - } - function describeElementType(type) { - if ("string" === typeof type) return type; - switch(type){ - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch(type.$$typeof){ - case REACT_FORWARD_REF_TYPE: - return describeElementType(type.render); - case REACT_MEMO_TYPE: - return describeElementType(type.type); - case REACT_LAZY_TYPE: - var payload = type._payload; - type = type._init; - try { - return describeElementType(type(payload)); - } catch (x) {} - } - return ""; - } - function describeObjectForErrorMessage(objectOrArray, expandedName) { - var objKind = objectName(objectOrArray); - if ("Object" !== objKind && "Array" !== objKind) return objKind; - var start = -1, length = 0; - if (isArrayImpl(objectOrArray)) if (jsxChildrenParents.has(objectOrArray)) { - var type = jsxChildrenParents.get(objectOrArray); - objKind = "<" + describeElementType(type) + ">"; - for(var i = 0; i < objectOrArray.length; i++){ - var value = objectOrArray[i]; - value = "string" === typeof value ? value : "object" === typeof value && null !== value ? "{" + describeObjectForErrorMessage(value) + "}" : "{" + describeValueForErrorMessage(value) + "}"; - "" + i === expandedName ? (start = objKind.length, length = value.length, objKind += value) : objKind = 15 > value.length && 40 > objKind.length + value.length ? objKind + value : objKind + "{...}"; - } - objKind += ""; - } else { - objKind = "["; - for(type = 0; type < objectOrArray.length; type++)0 < type && (objKind += ", "), i = objectOrArray[type], i = "object" === typeof i && null !== i ? describeObjectForErrorMessage(i) : describeValueForErrorMessage(i), "" + type === expandedName ? (start = objKind.length, length = i.length, objKind += i) : objKind = 10 > i.length && 40 > objKind.length + i.length ? objKind + i : objKind + "..."; - objKind += "]"; - } - else if (objectOrArray.$$typeof === REACT_ELEMENT_TYPE) objKind = "<" + describeElementType(objectOrArray.type) + "/>"; - else { - if (objectOrArray.$$typeof === CLIENT_REFERENCE_TAG) return "client"; - if (jsxPropsParents.has(objectOrArray)) { - objKind = jsxPropsParents.get(objectOrArray); - objKind = "<" + (describeElementType(objKind) || "..."); - type = Object.keys(objectOrArray); - for(i = 0; i < type.length; i++){ - objKind += " "; - value = type[i]; - objKind += describeKeyForErrorMessage(value) + "="; - var _value2 = objectOrArray[value]; - var _substr2 = value === expandedName && "object" === typeof _value2 && null !== _value2 ? describeObjectForErrorMessage(_value2) : describeValueForErrorMessage(_value2); - "string" !== typeof _value2 && (_substr2 = "{" + _substr2 + "}"); - value === expandedName ? (start = objKind.length, length = _substr2.length, objKind += _substr2) : objKind = 10 > _substr2.length && 40 > objKind.length + _substr2.length ? objKind + _substr2 : objKind + "..."; - } - objKind += ">"; - } else { - objKind = "{"; - type = Object.keys(objectOrArray); - for(i = 0; i < type.length; i++)0 < i && (objKind += ", "), value = type[i], objKind += describeKeyForErrorMessage(value) + ": ", _value2 = objectOrArray[value], _value2 = "object" === typeof _value2 && null !== _value2 ? describeObjectForErrorMessage(_value2) : describeValueForErrorMessage(_value2), value === expandedName ? (start = objKind.length, length = _value2.length, objKind += _value2) : objKind = 10 > _value2.length && 40 > objKind.length + _value2.length ? objKind + _value2 : objKind + "..."; - objKind += "}"; - } - } - return void 0 === expandedName ? objKind : -1 < start && 0 < length ? (objectOrArray = " ".repeat(start) + "^".repeat(length), "\n " + objKind + "\n " + objectOrArray) : "\n " + objKind; - } - function serializeNumber(number) { - return Number.isFinite(number) ? 0 === number && -Infinity === 1 / number ? "$-0" : number : Infinity === number ? "$Infinity" : -Infinity === number ? "$-Infinity" : "$NaN"; - } - function processReply(root, formFieldPrefix, temporaryReferences, resolve, reject) { - function serializeTypedArray(tag, typedArray) { - typedArray = new Blob([ - new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength) - ]); - var blobId = nextPartId++; - null === formData && (formData = new FormData()); - formData.append(formFieldPrefix + blobId, typedArray); - return "$" + tag + blobId.toString(16); - } - function serializeBinaryReader(reader) { - function progress(entry) { - entry.done ? (entry = nextPartId++, data.append(formFieldPrefix + entry, new Blob(buffer)), data.append(formFieldPrefix + streamId, '"$o' + entry.toString(16) + '"'), data.append(formFieldPrefix + streamId, "C"), pendingParts--, 0 === pendingParts && resolve(data)) : (buffer.push(entry.value), reader.read(new Uint8Array(1024)).then(progress, reject)); - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++, buffer = []; - reader.read(new Uint8Array(1024)).then(progress, reject); - return "$r" + streamId.toString(16); - } - function serializeReader(reader) { - function progress(entry) { - if (entry.done) data.append(formFieldPrefix + streamId, "C"), pendingParts--, 0 === pendingParts && resolve(data); - else try { - var partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, partJSON); - reader.read().then(progress, reject); - } catch (x) { - reject(x); - } - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++; - reader.read().then(progress, reject); - return "$R" + streamId.toString(16); - } - function serializeReadableStream(stream) { - try { - var binaryReader = stream.getReader({ - mode: "byob" - }); - } catch (x) { - return serializeReader(stream.getReader()); - } - return serializeBinaryReader(binaryReader); - } - function serializeAsyncIterable(iterable, iterator) { - function progress(entry) { - if (entry.done) { - if (void 0 === entry.value) data.append(formFieldPrefix + streamId, "C"); - else try { - var partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, "C" + partJSON); - } catch (x) { - reject(x); - return; - } - pendingParts--; - 0 === pendingParts && resolve(data); - } else try { - var _partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, _partJSON); - iterator.next().then(progress, reject); - } catch (x$0) { - reject(x$0); - } - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++; - iterable = iterable === iterator; - iterator.next().then(progress, reject); - return "$" + (iterable ? "x" : "X") + streamId.toString(16); - } - function resolveToJSON(key, value) { - "__proto__" === key && console.error("Expected not to serialize an object with own property `__proto__`. When parsed this property will be omitted.%s", describeObjectForErrorMessage(this, key)); - var originalValue = this[key]; - "object" !== typeof originalValue || originalValue === value || originalValue instanceof Date || ("Object" !== objectName(originalValue) ? console.error("Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s", objectName(originalValue), describeObjectForErrorMessage(this, key)) : console.error("Only plain objects can be passed to Server Functions from the Client. Objects with toJSON methods are not supported. Convert it manually to a simple value before passing it to props.%s", describeObjectForErrorMessage(this, key))); - if (null === value) return null; - if ("object" === typeof value) { - switch(value.$$typeof){ - case REACT_ELEMENT_TYPE: - if (void 0 !== temporaryReferences && -1 === key.indexOf(":")) { - var parentReference = writtenObjects.get(this); - if (void 0 !== parentReference) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - } - throw Error("React Element cannot be passed to Server Functions from the Client without a temporary reference set. Pass a TemporaryReferenceSet to the options." + describeObjectForErrorMessage(this, key)); - case REACT_LAZY_TYPE: - originalValue = value._payload; - var init = value._init; - null === formData && (formData = new FormData()); - pendingParts++; - try { - parentReference = init(originalValue); - var lazyId = nextPartId++, partJSON = serializeModel(parentReference, lazyId); - formData.append(formFieldPrefix + lazyId, partJSON); - return "$" + lazyId.toString(16); - } catch (x) { - if ("object" === typeof x && null !== x && "function" === typeof x.then) { - pendingParts++; - var _lazyId = nextPartId++; - parentReference = function() { - try { - var _partJSON2 = serializeModel(value, _lazyId), _data = formData; - _data.append(formFieldPrefix + _lazyId, _partJSON2); - pendingParts--; - 0 === pendingParts && resolve(_data); - } catch (reason) { - reject(reason); - } - }; - x.then(parentReference, parentReference); - return "$" + _lazyId.toString(16); - } - reject(x); - return null; - } finally{ - pendingParts--; - } - } - parentReference = writtenObjects.get(value); - if ("function" === typeof value.then) { - if (void 0 !== parentReference) if (modelRoot === value) modelRoot = null; - else return parentReference; - null === formData && (formData = new FormData()); - pendingParts++; - var promiseId = nextPartId++; - key = "$@" + promiseId.toString(16); - writtenObjects.set(value, key); - value.then(function(partValue) { - try { - var previousReference = writtenObjects.get(partValue); - var _partJSON3 = void 0 !== previousReference ? JSON.stringify(previousReference) : serializeModel(partValue, promiseId); - partValue = formData; - partValue.append(formFieldPrefix + promiseId, _partJSON3); - pendingParts--; - 0 === pendingParts && resolve(partValue); - } catch (reason) { - reject(reason); - } - }, reject); - return key; - } - if (void 0 !== parentReference) if (modelRoot === value) modelRoot = null; - else return parentReference; - else -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference && (parentReference = parentReference + ":" + key, writtenObjects.set(value, parentReference), void 0 !== temporaryReferences && temporaryReferences.set(parentReference, value))); - if (isArrayImpl(value)) return value; - if (value instanceof FormData) { - null === formData && (formData = new FormData()); - var _data3 = formData; - key = nextPartId++; - var prefix = formFieldPrefix + key + "_"; - value.forEach(function(originalValue, originalKey) { - _data3.append(prefix + originalKey, originalValue); - }); - return "$K" + key.toString(16); - } - if (value instanceof Map) return key = nextPartId++, parentReference = serializeModel(Array.from(value), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$Q" + key.toString(16); - if (value instanceof Set) return key = nextPartId++, parentReference = serializeModel(Array.from(value), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$W" + key.toString(16); - if (value instanceof ArrayBuffer) return key = new Blob([ - value - ]), parentReference = nextPartId++, null === formData && (formData = new FormData()), formData.append(formFieldPrefix + parentReference, key), "$A" + parentReference.toString(16); - if (value instanceof Int8Array) return serializeTypedArray("O", value); - if (value instanceof Uint8Array) return serializeTypedArray("o", value); - if (value instanceof Uint8ClampedArray) return serializeTypedArray("U", value); - if (value instanceof Int16Array) return serializeTypedArray("S", value); - if (value instanceof Uint16Array) return serializeTypedArray("s", value); - if (value instanceof Int32Array) return serializeTypedArray("L", value); - if (value instanceof Uint32Array) return serializeTypedArray("l", value); - if (value instanceof Float32Array) return serializeTypedArray("G", value); - if (value instanceof Float64Array) return serializeTypedArray("g", value); - if (value instanceof BigInt64Array) return serializeTypedArray("M", value); - if (value instanceof BigUint64Array) return serializeTypedArray("m", value); - if (value instanceof DataView) return serializeTypedArray("V", value); - if ("function" === typeof Blob && value instanceof Blob) return null === formData && (formData = new FormData()), key = nextPartId++, formData.append(formFieldPrefix + key, value), "$B" + key.toString(16); - if (parentReference = getIteratorFn(value)) return parentReference = parentReference.call(value), parentReference === value ? (key = nextPartId++, parentReference = serializeModel(Array.from(parentReference), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$i" + key.toString(16)) : Array.from(parentReference); - if ("function" === typeof ReadableStream && value instanceof ReadableStream) return serializeReadableStream(value); - parentReference = value[ASYNC_ITERATOR]; - if ("function" === typeof parentReference) return serializeAsyncIterable(value, parentReference.call(value)); - parentReference = getPrototypeOf(value); - if (parentReference !== ObjectPrototype && (null === parentReference || null !== getPrototypeOf(parentReference))) { - if (void 0 === temporaryReferences) throw Error("Only plain objects, and a few built-ins, can be passed to Server Functions. Classes or null prototypes are not supported." + describeObjectForErrorMessage(this, key)); - return "$T"; - } - value.$$typeof === REACT_CONTEXT_TYPE ? console.error("React Context Providers cannot be passed to Server Functions from the Client.%s", describeObjectForErrorMessage(this, key)) : "Object" !== objectName(value) ? console.error("Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s", objectName(value), describeObjectForErrorMessage(this, key)) : isSimpleObject(value) ? Object.getOwnPropertySymbols && (parentReference = Object.getOwnPropertySymbols(value), 0 < parentReference.length && console.error("Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s", parentReference[0].description, describeObjectForErrorMessage(this, key))) : console.error("Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s", describeObjectForErrorMessage(this, key)); - return value; - } - if ("string" === typeof value) { - if ("Z" === value[value.length - 1] && this[key] instanceof Date) return "$D" + value; - key = "$" === value[0] ? "$" + value : value; - return key; - } - if ("boolean" === typeof value) return value; - if ("number" === typeof value) return serializeNumber(value); - if ("undefined" === typeof value) return "$undefined"; - if ("function" === typeof value) { - parentReference = knownServerReferences.get(value); - if (void 0 !== parentReference) { - key = writtenObjects.get(value); - if (void 0 !== key) return key; - key = JSON.stringify({ - id: parentReference.id, - bound: parentReference.bound - }, resolveToJSON); - null === formData && (formData = new FormData()); - parentReference = nextPartId++; - formData.set(formFieldPrefix + parentReference, key); - key = "$h" + parentReference.toString(16); - writtenObjects.set(value, key); - return key; - } - if (void 0 !== temporaryReferences && -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference)) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - throw Error("Client Functions cannot be passed directly to Server Functions. Only Functions passed from the Server can be passed back again."); - } - if ("symbol" === typeof value) { - if (void 0 !== temporaryReferences && -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference)) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - throw Error("Symbols cannot be passed to a Server Function without a temporary reference set. Pass a TemporaryReferenceSet to the options." + describeObjectForErrorMessage(this, key)); - } - if ("bigint" === typeof value) return "$n" + value.toString(10); - throw Error("Type " + typeof value + " is not supported as an argument to a Server Function."); - } - function serializeModel(model, id) { - "object" === typeof model && null !== model && (id = "$" + id.toString(16), writtenObjects.set(model, id), void 0 !== temporaryReferences && temporaryReferences.set(id, model)); - modelRoot = model; - return JSON.stringify(model, resolveToJSON); - } - var nextPartId = 1, pendingParts = 0, formData = null, writtenObjects = new WeakMap(), modelRoot = root, json = serializeModel(root, 0); - null === formData ? resolve(json) : (formData.set(formFieldPrefix + "0", json), 0 === pendingParts && resolve(formData)); - return function() { - 0 < pendingParts && (pendingParts = 0, null === formData ? resolve(json) : resolve(formData)); - }; - } - function encodeFormData(reference) { - var resolve, reject, thenable = new Promise(function(res, rej) { - resolve = res; - reject = rej; - }); - processReply(reference, "", void 0, function(body) { - if ("string" === typeof body) { - var data = new FormData(); - data.append("0", body); - body = data; - } - thenable.status = "fulfilled"; - thenable.value = body; - resolve(body); - }, function(e) { - thenable.status = "rejected"; - thenable.reason = e; - reject(e); - }); - return thenable; - } - function defaultEncodeFormAction(identifierPrefix) { - var referenceClosure = knownServerReferences.get(this); - if (!referenceClosure) throw Error("Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React."); - var data = null; - if (null !== referenceClosure.bound) { - data = boundCache.get(referenceClosure); - data || (data = encodeFormData({ - id: referenceClosure.id, - bound: referenceClosure.bound - }), boundCache.set(referenceClosure, data)); - if ("rejected" === data.status) throw data.reason; - if ("fulfilled" !== data.status) throw data; - referenceClosure = data.value; - var prefixedData = new FormData(); - referenceClosure.forEach(function(value, key) { - prefixedData.append("$ACTION_" + identifierPrefix + ":" + key, value); - }); - data = prefixedData; - referenceClosure = "$ACTION_REF_" + identifierPrefix; - } else referenceClosure = "$ACTION_ID_" + referenceClosure.id; - return { - name: referenceClosure, - method: "POST", - encType: "multipart/form-data", - data: data - }; - } - function isSignatureEqual(referenceId, numberOfBoundArgs) { - var referenceClosure = knownServerReferences.get(this); - if (!referenceClosure) throw Error("Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React."); - if (referenceClosure.id !== referenceId) return !1; - var boundPromise = referenceClosure.bound; - if (null === boundPromise) return 0 === numberOfBoundArgs; - switch(boundPromise.status){ - case "fulfilled": - return boundPromise.value.length === numberOfBoundArgs; - case "pending": - throw boundPromise; - case "rejected": - throw boundPromise.reason; - default: - throw "string" !== typeof boundPromise.status && (boundPromise.status = "pending", boundPromise.then(function(boundArgs) { - boundPromise.status = "fulfilled"; - boundPromise.value = boundArgs; - }, function(error) { - boundPromise.status = "rejected"; - boundPromise.reason = error; - })), boundPromise; - } - } - function createFakeServerFunction(name, filename, sourceMap, line, col, environmentName, innerFunction) { - name || (name = ""); - var encodedName = JSON.stringify(name); - 1 >= line ? (line = encodedName.length + 7, col = "s=>({" + encodedName + " ".repeat(col < line ? 0 : col - line) + ":(...args) => s(...args)})\n/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */") : col = "/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */" + "\n".repeat(line - 2) + "server=>({" + encodedName + ":\n" + " ".repeat(1 > col ? 0 : col - 1) + "(...args) => server(...args)})"; - filename.startsWith("/") && (filename = "file://" + filename); - sourceMap ? (col += "\n//# sourceURL=about://React/" + encodeURIComponent(environmentName) + "/" + encodeURI(filename) + "?s" + fakeServerFunctionIdx++, col += "\n//# sourceMappingURL=" + sourceMap) : filename && (col += "\n//# sourceURL=" + filename); - try { - return (0, eval)(col)(innerFunction)[name]; - } catch (x) { - return innerFunction; - } - } - function registerBoundServerReference(reference, id, bound, encodeFormAction) { - knownServerReferences.has(reference) || (knownServerReferences.set(reference, { - id: id, - originalBind: reference.bind, - bound: bound - }), Object.defineProperties(reference, { - $$FORM_ACTION: { - value: void 0 === encodeFormAction ? defaultEncodeFormAction : function() { - var referenceClosure = knownServerReferences.get(this); - if (!referenceClosure) throw Error("Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React."); - var boundPromise = referenceClosure.bound; - null === boundPromise && (boundPromise = Promise.resolve([])); - return encodeFormAction(referenceClosure.id, boundPromise); - } - }, - $$IS_SIGNATURE_EQUAL: { - value: isSignatureEqual - }, - bind: { - value: bind - } - })); - } - function bind() { - var referenceClosure = knownServerReferences.get(this); - if (!referenceClosure) return FunctionBind.apply(this, arguments); - var newFn = referenceClosure.originalBind.apply(this, arguments); - null != arguments[0] && console.error('Cannot bind "this" of a Server Action. Pass null or undefined as the first argument to .bind().'); - var args = ArraySlice.call(arguments, 1), boundPromise = null; - boundPromise = null !== referenceClosure.bound ? Promise.resolve(referenceClosure.bound).then(function(boundArgs) { - return boundArgs.concat(args); - }) : Promise.resolve(args); - knownServerReferences.set(newFn, { - id: referenceClosure.id, - originalBind: newFn.bind, - bound: boundPromise - }); - Object.defineProperties(newFn, { - $$FORM_ACTION: { - value: this.$$FORM_ACTION - }, - $$IS_SIGNATURE_EQUAL: { - value: isSignatureEqual - }, - bind: { - value: bind - } - }); - return newFn; - } - function createBoundServerReference(metaData, callServer, encodeFormAction, findSourceMapURL) { - function action() { - var args = Array.prototype.slice.call(arguments); - return bound ? "fulfilled" === bound.status ? callServer(id, bound.value.concat(args)) : Promise.resolve(bound).then(function(boundArgs) { - return callServer(id, boundArgs.concat(args)); - }) : callServer(id, args); - } - var id = metaData.id, bound = metaData.bound, location = metaData.location; - if (location) { - var functionName = metaData.name || "", filename = location[1], line = location[2]; - location = location[3]; - metaData = metaData.env || "Server"; - findSourceMapURL = null == findSourceMapURL ? null : findSourceMapURL(filename, metaData); - action = createFakeServerFunction(functionName, filename, findSourceMapURL, line, location, metaData, action); - } - registerBoundServerReference(action, id, bound, encodeFormAction); - return action; - } - function parseStackLocation(error) { - error = error.stack; - error.startsWith("Error: react-stack-top-frame\n") && (error = error.slice(29)); - var endOfFirst = error.indexOf("\n"); - if (-1 !== endOfFirst) { - var endOfSecond = error.indexOf("\n", endOfFirst + 1); - endOfFirst = -1 === endOfSecond ? error.slice(endOfFirst + 1) : error.slice(endOfFirst + 1, endOfSecond); - } else endOfFirst = error; - error = v8FrameRegExp.exec(endOfFirst); - if (!error && (error = jscSpiderMonkeyFrameRegExp.exec(endOfFirst), !error)) return null; - endOfFirst = error[1] || ""; - "" === endOfFirst && (endOfFirst = ""); - endOfSecond = error[2] || error[5] || ""; - "" === endOfSecond && (endOfSecond = ""); - return [ - endOfFirst, - endOfSecond, - +(error[3] || error[6]), - +(error[4] || error[7]) - ]; - } - function createServerReference$1(id, callServer, encodeFormAction, findSourceMapURL, functionName) { - function action() { - var args = Array.prototype.slice.call(arguments); - return callServer(id, args); - } - var location = parseStackLocation(Error("react-stack-top-frame")); - if (null !== location) { - var filename = location[1], line = location[2]; - location = location[3]; - findSourceMapURL = null == findSourceMapURL ? null : findSourceMapURL(filename, "Client"); - action = createFakeServerFunction(functionName || "", filename, findSourceMapURL, line, location, "Client", action); - } - registerBoundServerReference(action, id, null, encodeFormAction); - return action; - } - function getComponentNameFromType(type) { - if (null == type) return null; - if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null; - if ("string" === typeof type) return type; - switch(type){ - case REACT_FRAGMENT_TYPE: - return "Fragment"; - case REACT_PROFILER_TYPE: - return "Profiler"; - case REACT_STRICT_MODE_TYPE: - return "StrictMode"; - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_ACTIVITY_TYPE: - return "Activity"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof){ - case REACT_PORTAL_TYPE: - return "Portal"; - case REACT_CONTEXT_TYPE: - return type.displayName || "Context"; - case REACT_CONSUMER_TYPE: - return (type._context.displayName || "Context") + ".Consumer"; - case REACT_FORWARD_REF_TYPE: - var innerType = type.render; - type = type.displayName; - type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"); - return type; - case REACT_MEMO_TYPE: - return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo"; - case REACT_LAZY_TYPE: - innerType = type._payload; - type = type._init; - try { - return getComponentNameFromType(type(innerType)); - } catch (x) {} - } - return null; - } - function getArrayKind(array) { - for(var kind = 0, i = 0; i < array.length && 100 > i; i++){ - var value = array[i]; - if ("object" === typeof value && null !== value) if (isArrayImpl(value) && 2 === value.length && "string" === typeof value[0]) { - if (0 !== kind && 3 !== kind) return 1; - kind = 3; - } else return 1; - else { - if ("function" === typeof value || "string" === typeof value && 50 < value.length || 0 !== kind && 2 !== kind) return 1; - kind = 2; - } - } - return kind; - } - function addObjectToProperties(object, properties, indent, prefix) { - var addedProperties = 0, key; - for(key in object)if (hasOwnProperty.call(object, key) && "_" !== key[0] && (addedProperties++, addValueToProperties(key, object[key], properties, indent, prefix), 100 <= addedProperties)) { - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + "Only 100 properties are shown. React will not log more properties of this object.", - "" - ]); - break; - } - } - function addValueToProperties(propertyName, value, properties, indent, prefix) { - switch(typeof value){ - case "object": - if (null === value) { - value = "null"; - break; - } else { - if (value.$$typeof === REACT_ELEMENT_TYPE) { - var typeName = getComponentNameFromType(value.type) || "\u2026", key = value.key; - value = value.props; - var propsKeys = Object.keys(value), propsLength = propsKeys.length; - if (null == key && 0 === propsLength) { - value = "<" + typeName + " />"; - break; - } - if (3 > indent || 1 === propsLength && "children" === propsKeys[0] && null == key) { - value = "<" + typeName + " \u2026 />"; - break; - } - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "<" + typeName - ]); - null !== key && addValueToProperties("key", key, properties, indent + 1, prefix); - propertyName = !1; - key = 0; - for(var propKey in value)if (key++, "children" === propKey ? null != value.children && (!isArrayImpl(value.children) || 0 < value.children.length) && (propertyName = !0) : hasOwnProperty.call(value, propKey) && "_" !== propKey[0] && addValueToProperties(propKey, value[propKey], properties, indent + 1, prefix), 100 <= key) break; - properties.push([ - "", - propertyName ? ">\u2026" : "/>" - ]); - return; - } - typeName = Object.prototype.toString.call(value); - propKey = typeName.slice(8, typeName.length - 1); - if ("Array" === propKey) { - if (typeName = 100 < value.length, key = getArrayKind(value), 2 === key || 0 === key) { - value = JSON.stringify(typeName ? value.slice(0, 100).concat("\u2026") : value); - break; - } else if (3 === key) { - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "" - ]); - for(propertyName = 0; propertyName < value.length && 100 > propertyName; propertyName++)propKey = value[propertyName], addValueToProperties(propKey[0], propKey[1], properties, indent + 1, prefix); - typeName && addValueToProperties(100..toString(), "\u2026", properties, indent + 1, prefix); - return; - } - } - if ("Promise" === propKey) { - if ("fulfilled" === value.status) { - if (typeName = properties.length, addValueToProperties(propertyName, value.value, properties, indent, prefix), properties.length > typeName) { - properties = properties[typeName]; - properties[1] = "Promise<" + (properties[1] || "Object") + ">"; - return; - } - } else if ("rejected" === value.status && (typeName = properties.length, addValueToProperties(propertyName, value.reason, properties, indent, prefix), properties.length > typeName)) { - properties = properties[typeName]; - properties[1] = "Rejected Promise<" + properties[1] + ">"; - return; - } - properties.push([ - "\u00a0\u00a0".repeat(indent) + propertyName, - "Promise" - ]); - return; - } - "Object" === propKey && (typeName = Object.getPrototypeOf(value)) && "function" === typeof typeName.constructor && (propKey = typeName.constructor.name); - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "Object" === propKey ? 3 > indent ? "" : "\u2026" : propKey - ]); - 3 > indent && addObjectToProperties(value, properties, indent + 1, prefix); - return; - } - case "function": - value = "" === value.name ? "() => {}" : value.name + "() {}"; - break; - case "string": - value = "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects." === value ? "\u2026" : JSON.stringify(value); - break; - case "undefined": - value = "undefined"; - break; - case "boolean": - value = value ? "true" : "false"; - break; - default: - value = String(value); - } - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - value - ]); - } - function getIODescription(value) { - try { - switch(typeof value){ - case "function": - return value.name || ""; - case "object": - if (null === value) return ""; - if (value instanceof Error) return String(value.message); - if ("string" === typeof value.url) return value.url; - if ("string" === typeof value.href) return value.href; - if ("string" === typeof value.src) return value.src; - if ("string" === typeof value.currentSrc) return value.currentSrc; - if ("string" === typeof value.command) return value.command; - if ("object" === typeof value.request && null !== value.request && "string" === typeof value.request.url) return value.request.url; - if ("object" === typeof value.response && null !== value.response && "string" === typeof value.response.url) return value.response.url; - if ("string" === typeof value.id || "number" === typeof value.id || "bigint" === typeof value.id) return String(value.id); - if ("string" === typeof value.name) return value.name; - var str = value.toString(); - return str.startsWith("[object ") || 5 > str.length || 500 < str.length ? "" : str; - case "string": - return 5 > value.length || 500 < value.length ? "" : value; - case "number": - case "bigint": - return String(value); - default: - return ""; - } - } catch (x) { - return ""; - } - } - function markAllTracksInOrder() { - supportsUserTiming && (console.timeStamp("Server Requests Track", 0.001, 0.001, "Server Requests \u269b", void 0, "primary-light"), console.timeStamp("Server Components Track", 0.001, 0.001, "Primary", "Server Components \u269b", "primary-light")); - } - function getIOColor(functionName) { - switch(functionName.charCodeAt(0) % 3){ - case 0: - return "tertiary-light"; - case 1: - return "tertiary"; - default: - return "tertiary-dark"; - } - } - function getIOLongName(ioInfo, description, env, rootEnv) { - ioInfo = ioInfo.name; - description = "" === description ? ioInfo : ioInfo + " (" + description + ")"; - return env === rootEnv || void 0 === env ? description : description + " [" + env + "]"; - } - function getIOShortName(ioInfo, description, env, rootEnv) { - ioInfo = ioInfo.name; - env = env === rootEnv || void 0 === env ? "" : " [" + env + "]"; - var desc = ""; - rootEnv = 30 - ioInfo.length - env.length; - if (1 < rootEnv) { - var l = description.length; - if (0 < l && l <= rootEnv) desc = " (" + description + ")"; - else if (description.startsWith("http://") || description.startsWith("https://") || description.startsWith("/")) { - var queryIdx = description.indexOf("?"); - -1 === queryIdx && (queryIdx = description.length); - 47 === description.charCodeAt(queryIdx - 1) && queryIdx--; - desc = description.lastIndexOf("/", queryIdx - 1); - queryIdx - desc < rootEnv ? desc = " (\u2026" + description.slice(desc, queryIdx) + ")" : (l = description.slice(desc, desc + rootEnv / 2), description = description.slice(queryIdx - rootEnv / 2, queryIdx), desc = " (" + (0 < desc ? "\u2026" : "") + l + "\u2026" + description + ")"); - } - } - return ioInfo + desc + env; - } - function logComponentAwait(asyncInfo, trackIdx, startTime, endTime, rootEnv, value) { - if (supportsUserTiming && 0 < endTime) { - var description = getIODescription(value), name = getIOShortName(asyncInfo.awaited, description, asyncInfo.env, rootEnv), entryName = "await " + name; - name = getIOColor(name); - var debugTask = asyncInfo.debugTask || asyncInfo.awaited.debugTask; - if (debugTask) { - var properties = []; - "object" === typeof value && null !== value ? addObjectToProperties(value, properties, 0, "") : void 0 !== value && addValueToProperties("awaited value", value, properties, 0, ""); - asyncInfo = getIOLongName(asyncInfo.awaited, description, asyncInfo.env, rootEnv); - debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: name, - track: trackNames[trackIdx], - trackGroup: "Server Components \u269b", - properties: properties, - tooltipText: asyncInfo - } - } - })); - performance.clearMeasures(entryName); - } else console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, trackNames[trackIdx], "Server Components \u269b", name); - } - } - function logIOInfoErrored(ioInfo, rootEnv, error) { - var startTime = ioInfo.start, endTime = ioInfo.end; - if (supportsUserTiming && 0 <= endTime) { - var description = getIODescription(error), entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv), debugTask = ioInfo.debugTask; - entryName = "\u200b" + entryName; - debugTask ? (error = [ - [ - "rejected with", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ] - ], ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv) + " Rejected", debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: "error", - track: "Server Requests \u269b", - properties: error, - tooltipText: ioInfo - } - } - })), performance.clearMeasures(entryName)) : console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, "Server Requests \u269b", void 0, "error"); - } - } - function logIOInfo(ioInfo, rootEnv, value) { - var startTime = ioInfo.start, endTime = ioInfo.end; - if (supportsUserTiming && 0 <= endTime) { - var description = getIODescription(value), entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv), color = getIOColor(entryName), debugTask = ioInfo.debugTask; - entryName = "\u200b" + entryName; - if (debugTask) { - var properties = []; - "object" === typeof value && null !== value ? addObjectToProperties(value, properties, 0, "") : void 0 !== value && addValueToProperties("Resolved", value, properties, 0, ""); - ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv); - debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: color, - track: "Server Requests \u269b", - properties: properties, - tooltipText: ioInfo - } - } - })); - performance.clearMeasures(entryName); - } else console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, "Server Requests \u269b", void 0, color); - } - } - function prepareStackTrace(error, structuredStackTrace) { - error = (error.name || "Error") + ": " + (error.message || ""); - for(var i = 0; i < structuredStackTrace.length; i++)error += "\n at " + structuredStackTrace[i].toString(); - return error; - } - function ReactPromise(status, value, reason) { - this.status = status; - this.value = value; - this.reason = reason; - this._children = []; - this._debugChunk = null; - this._debugInfo = []; - } - function unwrapWeakResponse(weakResponse) { - weakResponse = weakResponse.weak.deref(); - if (void 0 === weakResponse) throw Error("We did not expect to receive new data after GC:ing the response."); - return weakResponse; - } - function closeDebugChannel(debugChannel) { - debugChannel.callback && debugChannel.callback(""); - } - function readChunk(chunk) { - switch(chunk.status){ - case "resolved_model": - initializeModelChunk(chunk); - break; - case "resolved_module": - initializeModuleChunk(chunk); - } - switch(chunk.status){ - case "fulfilled": - return chunk.value; - case "pending": - case "blocked": - case "halted": - throw chunk; - default: - throw chunk.reason; - } - } - function getRoot(weakResponse) { - weakResponse = unwrapWeakResponse(weakResponse); - return getChunk(weakResponse, 0); - } - function createPendingChunk(response) { - 0 === response._pendingChunks++ && (response._weakResponse.response = response, null !== response._pendingInitialRender && (clearTimeout(response._pendingInitialRender), response._pendingInitialRender = null)); - return new ReactPromise("pending", null, null); - } - function releasePendingChunk(response, chunk) { - "pending" === chunk.status && 0 === --response._pendingChunks && (response._weakResponse.response = null, response._pendingInitialRender = setTimeout(flushInitialRenderPerformance.bind(null, response), 100)); - } - function filterDebugInfo(response, value) { - if (null !== response._debugEndTime) { - response = response._debugEndTime - performance.timeOrigin; - for(var debugInfo = [], i = 0; i < value._debugInfo.length; i++){ - var info = value._debugInfo[i]; - if ("number" === typeof info.time && info.time > response) break; - debugInfo.push(info); - } - value._debugInfo = debugInfo; - } - } - function moveDebugInfoFromChunkToInnerValue(chunk, value) { - value = resolveLazy(value); - "object" !== typeof value || null === value || !isArrayImpl(value) && "function" !== typeof value[ASYNC_ITERATOR] && value.$$typeof !== REACT_ELEMENT_TYPE && value.$$typeof !== REACT_LAZY_TYPE || (chunk = chunk._debugInfo.splice(0), isArrayImpl(value._debugInfo) ? value._debugInfo.unshift.apply(value._debugInfo, chunk) : Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: chunk - })); - } - function wakeChunk(response, listeners, value, chunk) { - for(var i = 0; i < listeners.length; i++){ - var listener = listeners[i]; - "function" === typeof listener ? listener(value) : fulfillReference(response, listener, value, chunk); - } - filterDebugInfo(response, chunk); - moveDebugInfoFromChunkToInnerValue(chunk, value); - } - function rejectChunk(response, listeners, error) { - for(var i = 0; i < listeners.length; i++){ - var listener = listeners[i]; - "function" === typeof listener ? listener(error) : rejectReference(response, listener.handler, error); - } - } - function resolveBlockedCycle(resolvedChunk, reference) { - var referencedChunk = reference.handler.chunk; - if (null === referencedChunk) return null; - if (referencedChunk === resolvedChunk) return reference.handler; - reference = referencedChunk.value; - if (null !== reference) for(referencedChunk = 0; referencedChunk < reference.length; referencedChunk++){ - var listener = reference[referencedChunk]; - if ("function" !== typeof listener && (listener = resolveBlockedCycle(resolvedChunk, listener), null !== listener)) return listener; - } - return null; - } - function wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners) { - switch(chunk.status){ - case "fulfilled": - wakeChunk(response, resolveListeners, chunk.value, chunk); - break; - case "blocked": - for(var i = 0; i < resolveListeners.length; i++){ - var listener = resolveListeners[i]; - if ("function" !== typeof listener) { - var cyclicHandler = resolveBlockedCycle(chunk, listener); - if (null !== cyclicHandler) switch(fulfillReference(response, listener, cyclicHandler.value, chunk), resolveListeners.splice(i, 1), i--, null !== rejectListeners && (listener = rejectListeners.indexOf(listener), -1 !== listener && rejectListeners.splice(listener, 1)), chunk.status){ - case "fulfilled": - wakeChunk(response, resolveListeners, chunk.value, chunk); - return; - case "rejected": - null !== rejectListeners && rejectChunk(response, rejectListeners, chunk.reason); - return; - } - } - } - case "pending": - if (chunk.value) for(response = 0; response < resolveListeners.length; response++)chunk.value.push(resolveListeners[response]); - else chunk.value = resolveListeners; - if (chunk.reason) { - if (rejectListeners) for(resolveListeners = 0; resolveListeners < rejectListeners.length; resolveListeners++)chunk.reason.push(rejectListeners[resolveListeners]); - } else chunk.reason = rejectListeners; - break; - case "rejected": - rejectListeners && rejectChunk(response, rejectListeners, chunk.reason); - } - } - function triggerErrorOnChunk(response, chunk, error) { - if ("pending" !== chunk.status && "blocked" !== chunk.status) chunk.reason.error(error); - else { - releasePendingChunk(response, chunk); - var listeners = chunk.reason; - if ("pending" === chunk.status && null != chunk._debugChunk) { - var prevHandler = initializingHandler, prevChunk = initializingChunk; - initializingHandler = null; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - try { - initializeDebugChunk(response, chunk); - } finally{ - initializingHandler = prevHandler, initializingChunk = prevChunk; - } - } - chunk.status = "rejected"; - chunk.reason = error; - null !== listeners && rejectChunk(response, listeners, error); - } - } - function createResolvedModelChunk(response, value) { - return new ReactPromise("resolved_model", value, response); - } - function createResolvedIteratorResultChunk(response, value, done) { - return new ReactPromise("resolved_model", (done ? '{"done":true,"value":' : '{"done":false,"value":') + value + "}", response); - } - function resolveIteratorResultChunk(response, chunk, value, done) { - resolveModelChunk(response, chunk, (done ? '{"done":true,"value":' : '{"done":false,"value":') + value + "}"); - } - function resolveModelChunk(response, chunk, value) { - if ("pending" !== chunk.status) chunk.reason.enqueueModel(value); - else { - releasePendingChunk(response, chunk); - var resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "resolved_model"; - chunk.value = value; - chunk.reason = response; - null !== resolveListeners && (initializeModelChunk(chunk), wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners)); - } - } - function resolveModuleChunk(response, chunk, value) { - if ("pending" === chunk.status || "blocked" === chunk.status) { - releasePendingChunk(response, chunk); - var resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "resolved_module"; - chunk.value = value; - chunk.reason = null; - value = []; - null !== value && chunk._debugInfo.push.apply(chunk._debugInfo, value); - null !== resolveListeners && (initializeModuleChunk(chunk), wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners)); - } - } - function initializeDebugChunk(response, chunk) { - var debugChunk = chunk._debugChunk; - if (null !== debugChunk) { - var debugInfo = chunk._debugInfo; - try { - if ("resolved_model" === debugChunk.status) { - for(var idx = debugInfo.length, c = debugChunk._debugChunk; null !== c;)"fulfilled" !== c.status && idx++, c = c._debugChunk; - initializeModelChunk(debugChunk); - switch(debugChunk.status){ - case "fulfilled": - debugInfo[idx] = initializeDebugInfo(response, debugChunk.value); - break; - case "blocked": - case "pending": - waitForReference(debugChunk, debugInfo, "" + idx, response, initializeDebugInfo, [ - "" - ], !0); - break; - default: - throw debugChunk.reason; - } - } else switch(debugChunk.status){ - case "fulfilled": - break; - case "blocked": - case "pending": - waitForReference(debugChunk, {}, "debug", response, initializeDebugInfo, [ - "" - ], !0); - break; - default: - throw debugChunk.reason; - } - } catch (error) { - triggerErrorOnChunk(response, chunk, error); - } - } - } - function initializeModelChunk(chunk) { - var prevHandler = initializingHandler, prevChunk = initializingChunk; - initializingHandler = null; - var resolvedModel = chunk.value, response = chunk.reason; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - initializeDebugChunk(response, chunk); - try { - var value = JSON.parse(resolvedModel, response._fromJSON), resolveListeners = chunk.value; - if (null !== resolveListeners) for(chunk.value = null, chunk.reason = null, resolvedModel = 0; resolvedModel < resolveListeners.length; resolvedModel++){ - var listener = resolveListeners[resolvedModel]; - "function" === typeof listener ? listener(value) : fulfillReference(response, listener, value, chunk); - } - if (null !== initializingHandler) { - if (initializingHandler.errored) throw initializingHandler.reason; - if (0 < initializingHandler.deps) { - initializingHandler.value = value; - initializingHandler.chunk = chunk; - return; - } - } - chunk.status = "fulfilled"; - chunk.value = value; - filterDebugInfo(response, chunk); - moveDebugInfoFromChunkToInnerValue(chunk, value); - } catch (error) { - chunk.status = "rejected", chunk.reason = error; - } finally{ - initializingHandler = prevHandler, initializingChunk = prevChunk; - } - } - function initializeModuleChunk(chunk) { - try { - var value = requireModule(chunk.value); - chunk.status = "fulfilled"; - chunk.value = value; - } catch (error) { - chunk.status = "rejected", chunk.reason = error; - } - } - function reportGlobalError(weakResponse, error) { - if (void 0 !== weakResponse.weak.deref()) { - var response = unwrapWeakResponse(weakResponse); - response._closed = !0; - response._closedReason = error; - response._chunks.forEach(function(chunk) { - "pending" === chunk.status ? triggerErrorOnChunk(response, chunk, error) : "fulfilled" === chunk.status && null !== chunk.reason && chunk.reason.error(error); - }); - weakResponse = response._debugChannel; - void 0 !== weakResponse && (closeDebugChannel(weakResponse), response._debugChannel = void 0, null !== debugChannelRegistry && debugChannelRegistry.unregister(response)); - } - } - function nullRefGetter() { - return null; - } - function getTaskName(type) { - if (type === REACT_FRAGMENT_TYPE) return "<>"; - if ("function" === typeof type) return '"use client"'; - if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE) return type._init === readChunk ? '"use client"' : "<...>"; - try { - var name = getComponentNameFromType(type); - return name ? "<" + name + ">" : "<...>"; - } catch (x) { - return "<...>"; - } - } - function initializeElement(response, element, lazyNode) { - var stack = element._debugStack, owner = element._owner; - null === owner && (element._owner = response._debugRootOwner); - var env = response._rootEnvironmentName; - null !== owner && null != owner.env && (env = owner.env); - var normalizedStackTrace = null; - null === owner && null != response._debugRootStack ? normalizedStackTrace = response._debugRootStack : null !== stack && (normalizedStackTrace = createFakeJSXCallStackInDEV(response, stack, env)); - element._debugStack = normalizedStackTrace; - normalizedStackTrace = null; - supportsCreateTask && null !== stack && (normalizedStackTrace = console.createTask.bind(console, getTaskName(element.type)), stack = buildFakeCallStack(response, stack, env, !1, normalizedStackTrace), env = null === owner ? null : initializeFakeTask(response, owner), null === env ? (env = response._debugRootTask, normalizedStackTrace = null != env ? env.run(stack) : stack()) : normalizedStackTrace = env.run(stack)); - element._debugTask = normalizedStackTrace; - null !== owner && initializeFakeStack(response, owner); - null !== lazyNode && (lazyNode._store && lazyNode._store.validated && !element._store.validated && (element._store.validated = lazyNode._store.validated), "fulfilled" === lazyNode._payload.status && lazyNode._debugInfo && (response = lazyNode._debugInfo.splice(0), element._debugInfo ? element._debugInfo.unshift.apply(element._debugInfo, response) : Object.defineProperty(element, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: response - }))); - Object.freeze(element.props); - } - function createLazyChunkWrapper(chunk, validated) { - var lazyType = { - $$typeof: REACT_LAZY_TYPE, - _payload: chunk, - _init: readChunk - }; - lazyType._debugInfo = chunk._debugInfo; - lazyType._store = { - validated: validated - }; - return lazyType; - } - function getChunk(response, id) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk || (chunk = response._closed ? new ReactPromise("rejected", null, response._closedReason) : createPendingChunk(response), chunks.set(id, chunk)); - return chunk; - } - function fulfillReference(response, reference, value, fulfilledChunk) { - var handler = reference.handler, parentObject = reference.parentObject, key = reference.key, map = reference.map, path = reference.path; - try { - for(var i = 1; i < path.length; i++){ - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var referencedChunk = value._payload; - if (referencedChunk === handler.chunk) value = handler.value; - else { - switch(referencedChunk.status){ - case "resolved_model": - initializeModelChunk(referencedChunk); - break; - case "resolved_module": - initializeModuleChunk(referencedChunk); - } - switch(referencedChunk.status){ - case "fulfilled": - value = referencedChunk.value; - continue; - case "blocked": - var cyclicHandler = resolveBlockedCycle(referencedChunk, reference); - if (null !== cyclicHandler) { - value = cyclicHandler.value; - continue; - } - case "pending": - path.splice(0, i - 1); - null === referencedChunk.value ? referencedChunk.value = [ - reference - ] : referencedChunk.value.push(reference); - null === referencedChunk.reason ? referencedChunk.reason = [ - reference - ] : referencedChunk.reason.push(reference); - return; - case "halted": - return; - default: - rejectReference(response, reference.handler, referencedChunk.reason); - return; - } - } - } - var name = path[i]; - if ("object" === typeof value && null !== value && hasOwnProperty.call(value, name)) value = value[name]; - else throw Error("Invalid reference."); - } - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var _referencedChunk = value._payload; - if (_referencedChunk === handler.chunk) value = handler.value; - else { - switch(_referencedChunk.status){ - case "resolved_model": - initializeModelChunk(_referencedChunk); - break; - case "resolved_module": - initializeModuleChunk(_referencedChunk); - } - switch(_referencedChunk.status){ - case "fulfilled": - value = _referencedChunk.value; - continue; - } - break; - } - } - var mappedValue = map(response, value, parentObject, key); - "__proto__" !== key && (parentObject[key] = mappedValue); - "" === key && null === handler.value && (handler.value = mappedValue); - if (parentObject[0] === REACT_ELEMENT_TYPE && "object" === typeof handler.value && null !== handler.value && handler.value.$$typeof === REACT_ELEMENT_TYPE) { - var element = handler.value; - switch(key){ - case "3": - transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - element.props = mappedValue; - break; - case "4": - element._owner = mappedValue; - break; - case "5": - element._debugStack = mappedValue; - break; - default: - transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - } - } else reference.isDebug || transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - } catch (error) { - rejectReference(response, reference.handler, error); - return; - } - handler.deps--; - 0 === handler.deps && (reference = handler.chunk, null !== reference && "blocked" === reference.status && (value = reference.value, reference.status = "fulfilled", reference.value = handler.value, reference.reason = handler.reason, null !== value ? wakeChunk(response, value, handler.value, reference) : (handler = handler.value, filterDebugInfo(response, reference), moveDebugInfoFromChunkToInnerValue(reference, handler)))); - } - function rejectReference(response, handler, error) { - if (!handler.errored) { - var blockedValue = handler.value; - handler.errored = !0; - handler.value = null; - handler.reason = error; - handler = handler.chunk; - if (null !== handler && "blocked" === handler.status) { - if ("object" === typeof blockedValue && null !== blockedValue && blockedValue.$$typeof === REACT_ELEMENT_TYPE) { - var erroredComponent = { - name: getComponentNameFromType(blockedValue.type) || "", - owner: blockedValue._owner - }; - erroredComponent.debugStack = blockedValue._debugStack; - supportsCreateTask && (erroredComponent.debugTask = blockedValue._debugTask); - handler._debugInfo.push(erroredComponent); - } - triggerErrorOnChunk(response, handler, error); - } - } - } - function waitForReference(referencedChunk, parentObject, key, response, map, path, isAwaitingDebugInfo) { - if (!(void 0 !== response._debugChannel && response._debugChannel.hasReadable || "pending" !== referencedChunk.status || parentObject[0] !== REACT_ELEMENT_TYPE || "4" !== key && "5" !== key)) return null; - initializingHandler ? (response = initializingHandler, response.deps++) : response = initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }; - parentObject = { - handler: response, - parentObject: parentObject, - key: key, - map: map, - path: path - }; - parentObject.isDebug = isAwaitingDebugInfo; - null === referencedChunk.value ? referencedChunk.value = [ - parentObject - ] : referencedChunk.value.push(parentObject); - null === referencedChunk.reason ? referencedChunk.reason = [ - parentObject - ] : referencedChunk.reason.push(parentObject); - return null; - } - function loadServerReference(response, metaData, parentObject, key) { - if (!response._serverReferenceConfig) return createBoundServerReference(metaData, response._callServer, response._encodeFormAction, response._debugFindSourceMapURL); - var serverReference = resolveServerReference(response._serverReferenceConfig, metaData.id), promise = preloadModule(serverReference); - if (promise) metaData.bound && (promise = Promise.all([ - promise, - metaData.bound - ])); - else if (metaData.bound) promise = Promise.resolve(metaData.bound); - else return promise = requireModule(serverReference), registerBoundServerReference(promise, metaData.id, metaData.bound, response._encodeFormAction), promise; - if (initializingHandler) { - var handler = initializingHandler; - handler.deps++; - } else handler = initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }; - promise.then(function() { - var resolvedValue = requireModule(serverReference); - if (metaData.bound) { - var boundArgs = metaData.bound.value.slice(0); - boundArgs.unshift(null); - resolvedValue = resolvedValue.bind.apply(resolvedValue, boundArgs); - } - registerBoundServerReference(resolvedValue, metaData.id, metaData.bound, response._encodeFormAction); - "__proto__" !== key && (parentObject[key] = resolvedValue); - "" === key && null === handler.value && (handler.value = resolvedValue); - if (parentObject[0] === REACT_ELEMENT_TYPE && "object" === typeof handler.value && null !== handler.value && handler.value.$$typeof === REACT_ELEMENT_TYPE) switch(boundArgs = handler.value, key){ - case "3": - boundArgs.props = resolvedValue; - break; - case "4": - boundArgs._owner = resolvedValue; - } - handler.deps--; - 0 === handler.deps && (resolvedValue = handler.chunk, null !== resolvedValue && "blocked" === resolvedValue.status && (boundArgs = resolvedValue.value, resolvedValue.status = "fulfilled", resolvedValue.value = handler.value, resolvedValue.reason = null, null !== boundArgs ? wakeChunk(response, boundArgs, handler.value, resolvedValue) : (boundArgs = handler.value, filterDebugInfo(response, resolvedValue), moveDebugInfoFromChunkToInnerValue(resolvedValue, boundArgs)))); - }, function(error) { - if (!handler.errored) { - var blockedValue = handler.value; - handler.errored = !0; - handler.value = null; - handler.reason = error; - var chunk = handler.chunk; - if (null !== chunk && "blocked" === chunk.status) { - if ("object" === typeof blockedValue && null !== blockedValue && blockedValue.$$typeof === REACT_ELEMENT_TYPE) { - var erroredComponent = { - name: getComponentNameFromType(blockedValue.type) || "", - owner: blockedValue._owner - }; - erroredComponent.debugStack = blockedValue._debugStack; - supportsCreateTask && (erroredComponent.debugTask = blockedValue._debugTask); - chunk._debugInfo.push(erroredComponent); - } - triggerErrorOnChunk(response, chunk, error); - } - } - }); - return null; - } - function resolveLazy(value) { - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var payload = value._payload; - if ("fulfilled" === payload.status) value = payload.value; - else break; - } - return value; - } - function transferReferencedDebugInfo(parentChunk, referencedChunk) { - if (null !== parentChunk) { - referencedChunk = referencedChunk._debugInfo; - parentChunk = parentChunk._debugInfo; - for(var i = 0; i < referencedChunk.length; ++i){ - var debugInfoEntry = referencedChunk[i]; - null == debugInfoEntry.name && parentChunk.push(debugInfoEntry); - } - } - } - function getOutlinedModel(response, reference, parentObject, key, map) { - var path = reference.split(":"); - reference = parseInt(path[0], 16); - reference = getChunk(response, reference); - null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(reference); - switch(reference.status){ - case "resolved_model": - initializeModelChunk(reference); - break; - case "resolved_module": - initializeModuleChunk(reference); - } - switch(reference.status){ - case "fulfilled": - for(var value = reference.value, i = 1; i < path.length; i++){ - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - value = value._payload; - switch(value.status){ - case "resolved_model": - initializeModelChunk(value); - break; - case "resolved_module": - initializeModuleChunk(value); - } - switch(value.status){ - case "fulfilled": - value = value.value; - break; - case "blocked": - case "pending": - return waitForReference(value, parentObject, key, response, map, path.slice(i - 1), !1); - case "halted": - return initializingHandler ? (parentObject = initializingHandler, parentObject.deps++) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }, null; - default: - return initializingHandler ? (initializingHandler.errored = !0, initializingHandler.value = null, initializingHandler.reason = value.reason) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: value.reason, - deps: 0, - errored: !0 - }, null; - } - } - value = value[path[i]]; - } - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - path = value._payload; - switch(path.status){ - case "resolved_model": - initializeModelChunk(path); - break; - case "resolved_module": - initializeModuleChunk(path); - } - switch(path.status){ - case "fulfilled": - value = path.value; - continue; - } - break; - } - response = map(response, value, parentObject, key); - (parentObject[0] !== REACT_ELEMENT_TYPE || "4" !== key && "5" !== key) && transferReferencedDebugInfo(initializingChunk, reference); - return response; - case "pending": - case "blocked": - return waitForReference(reference, parentObject, key, response, map, path, !1); - case "halted": - return initializingHandler ? (parentObject = initializingHandler, parentObject.deps++) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }, null; - default: - return initializingHandler ? (initializingHandler.errored = !0, initializingHandler.value = null, initializingHandler.reason = reference.reason) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: reference.reason, - deps: 0, - errored: !0 - }, null; - } - } - function createMap(response, model) { - return new Map(model); - } - function createSet(response, model) { - return new Set(model); - } - function createBlob(response, model) { - return new Blob(model.slice(1), { - type: model[0] - }); - } - function createFormData(response, model) { - response = new FormData(); - for(var i = 0; i < model.length; i++)response.append(model[i][0], model[i][1]); - return response; - } - function applyConstructor(response, model, parentObject) { - Object.setPrototypeOf(parentObject, model.prototype); - } - function defineLazyGetter(response, chunk, parentObject, key) { - "__proto__" !== key && Object.defineProperty(parentObject, key, { - get: function() { - "resolved_model" === chunk.status && initializeModelChunk(chunk); - switch(chunk.status){ - case "fulfilled": - return chunk.value; - case "rejected": - throw chunk.reason; - } - return "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects."; - }, - enumerable: !0, - configurable: !1 - }); - return null; - } - function extractIterator(response, model) { - return model[Symbol.iterator](); - } - function createModel(response, model) { - return model; - } - function getInferredFunctionApproximate(code) { - code = code.startsWith("Object.defineProperty(") ? code.slice(22) : code.startsWith("(") ? code.slice(1) : code; - if (code.startsWith("async function")) { - var idx = code.indexOf("(", 14); - if (-1 !== idx) return code = code.slice(14, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":async function(){}})")[code]; - } else if (code.startsWith("function")) { - if (idx = code.indexOf("(", 8), -1 !== idx) return code = code.slice(8, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":function(){}})")[code]; - } else if (code.startsWith("class") && (idx = code.indexOf("{", 5), -1 !== idx)) return code = code.slice(5, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":class{}})")[code]; - return function() {}; - } - function parseModelString(response, parentObject, key, value) { - if ("$" === value[0]) { - if ("$" === value) return null !== initializingHandler && "0" === key && (initializingHandler = { - parent: initializingHandler, - chunk: null, - value: null, - reason: null, - deps: 0, - errored: !1 - }), REACT_ELEMENT_TYPE; - switch(value[1]){ - case "$": - return value.slice(1); - case "L": - return parentObject = parseInt(value.slice(2), 16), response = getChunk(response, parentObject), null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(response), createLazyChunkWrapper(response, 0); - case "@": - return parentObject = parseInt(value.slice(2), 16), response = getChunk(response, parentObject), null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(response), response; - case "S": - return Symbol.for(value.slice(2)); - case "h": - var ref = value.slice(2); - return getOutlinedModel(response, ref, parentObject, key, loadServerReference); - case "T": - parentObject = "$" + value.slice(2); - response = response._tempRefs; - if (null == response) throw Error("Missing a temporary reference set but the RSC response returned a temporary reference. Pass a temporaryReference option with the set that was used with the reply."); - return response.get(parentObject); - case "Q": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createMap); - case "W": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createSet); - case "B": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createBlob); - case "K": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createFormData); - case "Z": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, resolveErrorDev); - case "i": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, extractIterator); - case "I": - return Infinity; - case "-": - return "$-0" === value ? -0 : -Infinity; - case "N": - return NaN; - case "u": - return; - case "D": - return new Date(Date.parse(value.slice(2))); - case "n": - return BigInt(value.slice(2)); - case "P": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, applyConstructor); - case "E": - response = value.slice(2); - try { - if (!mightHaveStaticConstructor.test(response)) return (0, eval)(response); - } catch (x) {} - try { - if (ref = getInferredFunctionApproximate(response), response.startsWith("Object.defineProperty(")) { - var idx = response.lastIndexOf(',"name",{value:"'); - if (-1 !== idx) { - var name = JSON.parse(response.slice(idx + 16 - 1, response.length - 2)); - Object.defineProperty(ref, "name", { - value: name - }); - } - } - } catch (_) { - ref = function() {}; - } - return ref; - case "Y": - if (2 < value.length && (ref = response._debugChannel && response._debugChannel.callback)) { - if ("@" === value[2]) return parentObject = value.slice(3), key = parseInt(parentObject, 16), response._chunks.has(key) || ref("P:" + parentObject), getChunk(response, key); - value = value.slice(2); - idx = parseInt(value, 16); - response._chunks.has(idx) || ref("Q:" + value); - ref = getChunk(response, idx); - return "fulfilled" === ref.status ? ref.value : defineLazyGetter(response, ref, parentObject, key); - } - "__proto__" !== key && Object.defineProperty(parentObject, key, { - get: function() { - return "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects."; - }, - enumerable: !0, - configurable: !1 - }); - return null; - default: - return ref = value.slice(1), getOutlinedModel(response, ref, parentObject, key, createModel); - } - } - return value; - } - function missingCall() { - throw Error('Trying to call a function from "use server" but the callServer option was not implemented in your router runtime.'); - } - function markIOStarted() { - this._debugIOStarted = !0; - } - function ResponseInstance(bundlerConfig, serverReferenceConfig, moduleLoading, callServer, encodeFormAction, nonce, temporaryReferences, findSourceMapURL, replayConsole, environmentName, debugStartTime, debugEndTime, debugChannel) { - var chunks = new Map(); - this._bundlerConfig = bundlerConfig; - this._serverReferenceConfig = serverReferenceConfig; - this._moduleLoading = moduleLoading; - this._callServer = void 0 !== callServer ? callServer : missingCall; - this._encodeFormAction = encodeFormAction; - this._nonce = nonce; - this._chunks = chunks; - this._stringDecoder = new util.TextDecoder(); - this._fromJSON = null; - this._closed = !1; - this._closedReason = null; - this._tempRefs = temporaryReferences; - this._timeOrigin = 0; - this._pendingInitialRender = null; - this._pendingChunks = 0; - this._weakResponse = { - weak: new WeakRef(this), - response: this - }; - this._debugRootOwner = bundlerConfig = void 0 === ReactSharedInteralsServer || null === ReactSharedInteralsServer.A ? null : ReactSharedInteralsServer.A.getOwner(); - this._debugRootStack = null !== bundlerConfig ? Error("react-stack-top-frame") : null; - environmentName = void 0 === environmentName ? "Server" : environmentName; - supportsCreateTask && (this._debugRootTask = console.createTask('"use ' + environmentName.toLowerCase() + '"')); - this._debugStartTime = null == debugStartTime ? performance.now() : debugStartTime; - this._debugIOStarted = !1; - setTimeout(markIOStarted.bind(this), 0); - this._debugEndTime = null == debugEndTime ? null : debugEndTime; - this._debugFindSourceMapURL = findSourceMapURL; - this._debugChannel = debugChannel; - this._blockedConsole = null; - this._replayConsole = replayConsole; - this._rootEnvironmentName = environmentName; - debugChannel && (null === debugChannelRegistry ? (closeDebugChannel(debugChannel), this._debugChannel = void 0) : debugChannelRegistry.register(this, debugChannel, this)); - replayConsole && markAllTracksInOrder(); - this._fromJSON = createFromJSONCallback(this); - } - function createStreamState(weakResponse, streamDebugValue) { - var streamState = { - _rowState: 0, - _rowID: 0, - _rowTag: 0, - _rowLength: 0, - _buffer: [] - }; - weakResponse = unwrapWeakResponse(weakResponse); - var debugValuePromise = Promise.resolve(streamDebugValue); - debugValuePromise.status = "fulfilled"; - debugValuePromise.value = streamDebugValue; - streamState._debugInfo = { - name: "rsc stream", - start: weakResponse._debugStartTime, - end: weakResponse._debugStartTime, - byteSize: 0, - value: debugValuePromise, - owner: weakResponse._debugRootOwner, - debugStack: weakResponse._debugRootStack, - debugTask: weakResponse._debugRootTask - }; - streamState._debugTargetChunkSize = MIN_CHUNK_SIZE; - return streamState; - } - function incrementChunkDebugInfo(streamState, chunkLength) { - var debugInfo = streamState._debugInfo, endTime = performance.now(), previousEndTime = debugInfo.end; - chunkLength = debugInfo.byteSize + chunkLength; - chunkLength > streamState._debugTargetChunkSize || endTime > previousEndTime + 10 ? (streamState._debugInfo = { - name: debugInfo.name, - start: debugInfo.start, - end: endTime, - byteSize: chunkLength, - value: debugInfo.value, - owner: debugInfo.owner, - debugStack: debugInfo.debugStack, - debugTask: debugInfo.debugTask - }, streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE) : (debugInfo.end = endTime, debugInfo.byteSize = chunkLength); - } - function addAsyncInfo(chunk, asyncInfo) { - var value = resolveLazy(chunk.value); - "object" !== typeof value || null === value || !isArrayImpl(value) && "function" !== typeof value[ASYNC_ITERATOR] && value.$$typeof !== REACT_ELEMENT_TYPE && value.$$typeof !== REACT_LAZY_TYPE ? chunk._debugInfo.push(asyncInfo) : isArrayImpl(value._debugInfo) ? value._debugInfo.push(asyncInfo) : Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: [ - asyncInfo - ] - }); - } - function resolveChunkDebugInfo(response, streamState, chunk) { - response._debugIOStarted && (response = { - awaited: streamState._debugInfo - }, "pending" === chunk.status || "blocked" === chunk.status ? (response = addAsyncInfo.bind(null, chunk, response), chunk.then(response, response)) : addAsyncInfo(chunk, response)); - } - function resolveBuffer(response, id, buffer, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk && "pending" !== chunk.status ? chunk.reason.enqueueValue(buffer) : (chunk && releasePendingChunk(response, chunk), buffer = new ReactPromise("fulfilled", buffer, null), resolveChunkDebugInfo(response, streamState, buffer), chunks.set(id, buffer)); - } - function resolveModule(response, id, model, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - model = JSON.parse(model, response._fromJSON); - var clientReference = resolveClientReference(response._bundlerConfig, model); - prepareDestinationWithChunks(response._moduleLoading, model[1], response._nonce); - if (model = preloadModule(clientReference)) { - if (chunk) { - releasePendingChunk(response, chunk); - var blockedChunk = chunk; - blockedChunk.status = "blocked"; - } else blockedChunk = new ReactPromise("blocked", null, null), chunks.set(id, blockedChunk); - resolveChunkDebugInfo(response, streamState, blockedChunk); - model.then(function() { - return resolveModuleChunk(response, blockedChunk, clientReference); - }, function(error) { - return triggerErrorOnChunk(response, blockedChunk, error); - }); - } else chunk ? (resolveChunkDebugInfo(response, streamState, chunk), resolveModuleChunk(response, chunk, clientReference)) : (chunk = new ReactPromise("resolved_module", clientReference, null), resolveChunkDebugInfo(response, streamState, chunk), chunks.set(id, chunk)); - } - function resolveStream(response, id, stream, controller, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - if (chunk) { - if (resolveChunkDebugInfo(response, streamState, chunk), "pending" === chunk.status) { - id = chunk.value; - if (null != chunk._debugChunk) { - streamState = initializingHandler; - chunks = initializingChunk; - initializingHandler = null; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - try { - if (initializeDebugChunk(response, chunk), null !== initializingHandler && !initializingHandler.errored && 0 < initializingHandler.deps) { - initializingHandler.value = stream; - initializingHandler.reason = controller; - initializingHandler.chunk = chunk; - return; - } - } finally{ - initializingHandler = streamState, initializingChunk = chunks; - } - } - chunk.status = "fulfilled"; - chunk.value = stream; - chunk.reason = controller; - null !== id ? wakeChunk(response, id, chunk.value, chunk) : (filterDebugInfo(response, chunk), moveDebugInfoFromChunkToInnerValue(chunk, stream)); - } - } else 0 === response._pendingChunks++ && (response._weakResponse.response = response), stream = new ReactPromise("fulfilled", stream, controller), resolveChunkDebugInfo(response, streamState, stream), chunks.set(id, stream); - } - function startReadableStream(response, id, type, streamState) { - var controller = null, closed = !1; - type = new ReadableStream({ - type: type, - start: function(c) { - controller = c; - } - }); - var previousBlockedChunk = null; - resolveStream(response, id, type, { - enqueueValue: function(value) { - null === previousBlockedChunk ? controller.enqueue(value) : previousBlockedChunk.then(function() { - controller.enqueue(value); - }); - }, - enqueueModel: function(json) { - if (null === previousBlockedChunk) { - var chunk = createResolvedModelChunk(response, json); - initializeModelChunk(chunk); - "fulfilled" === chunk.status ? controller.enqueue(chunk.value) : (chunk.then(function(v) { - return controller.enqueue(v); - }, function(e) { - return controller.error(e); - }), previousBlockedChunk = chunk); - } else { - chunk = previousBlockedChunk; - var _chunk3 = createPendingChunk(response); - _chunk3.then(function(v) { - return controller.enqueue(v); - }, function(e) { - return controller.error(e); - }); - previousBlockedChunk = _chunk3; - chunk.then(function() { - previousBlockedChunk === _chunk3 && (previousBlockedChunk = null); - resolveModelChunk(response, _chunk3, json); - }); - } - }, - close: function() { - if (!closed) if (closed = !0, null === previousBlockedChunk) controller.close(); - else { - var blockedChunk = previousBlockedChunk; - previousBlockedChunk = null; - blockedChunk.then(function() { - return controller.close(); - }); - } - }, - error: function(error) { - if (!closed) if (closed = !0, null === previousBlockedChunk) controller.error(error); - else { - var blockedChunk = previousBlockedChunk; - previousBlockedChunk = null; - blockedChunk.then(function() { - return controller.error(error); - }); - } - } - }, streamState); - } - function asyncIterator() { - return this; - } - function createIterator(next) { - next = { - next: next - }; - next[ASYNC_ITERATOR] = asyncIterator; - return next; - } - function startAsyncIterable(response, id, iterator, streamState) { - var buffer = [], closed = !1, nextWriteIndex = 0, iterable = {}; - iterable[ASYNC_ITERATOR] = function() { - var nextReadIndex = 0; - return createIterator(function(arg) { - if (void 0 !== arg) throw Error("Values cannot be passed to next() of AsyncIterables passed to Client Components."); - if (nextReadIndex === buffer.length) { - if (closed) return new ReactPromise("fulfilled", { - done: !0, - value: void 0 - }, null); - buffer[nextReadIndex] = createPendingChunk(response); - } - return buffer[nextReadIndex++]; - }); - }; - resolveStream(response, id, iterator ? iterable[ASYNC_ITERATOR]() : iterable, { - enqueueValue: function(value) { - if (nextWriteIndex === buffer.length) buffer[nextWriteIndex] = new ReactPromise("fulfilled", { - done: !1, - value: value - }, null); - else { - var chunk = buffer[nextWriteIndex], resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "fulfilled"; - chunk.value = { - done: !1, - value: value - }; - chunk.reason = null; - null !== resolveListeners && wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners); - } - nextWriteIndex++; - }, - enqueueModel: function(value) { - nextWriteIndex === buffer.length ? buffer[nextWriteIndex] = createResolvedIteratorResultChunk(response, value, !1) : resolveIteratorResultChunk(response, buffer[nextWriteIndex], value, !1); - nextWriteIndex++; - }, - close: function(value) { - if (!closed) for(closed = !0, nextWriteIndex === buffer.length ? buffer[nextWriteIndex] = createResolvedIteratorResultChunk(response, value, !0) : resolveIteratorResultChunk(response, buffer[nextWriteIndex], value, !0), nextWriteIndex++; nextWriteIndex < buffer.length;)resolveIteratorResultChunk(response, buffer[nextWriteIndex++], '"$undefined"', !0); - }, - error: function(error) { - if (!closed) for(closed = !0, nextWriteIndex === buffer.length && (buffer[nextWriteIndex] = createPendingChunk(response)); nextWriteIndex < buffer.length;)triggerErrorOnChunk(response, buffer[nextWriteIndex++], error); - } - }, streamState); - } - function resolveErrorDev(response, errorInfo) { - var name = errorInfo.name, env = errorInfo.env; - var error = buildFakeCallStack(response, errorInfo.stack, env, !1, Error.bind(null, errorInfo.message || "An error occurred in the Server Components render but no message was provided")); - var ownerTask = null; - null != errorInfo.owner && (errorInfo = errorInfo.owner.slice(1), errorInfo = getOutlinedModel(response, errorInfo, {}, "", createModel), null !== errorInfo && (ownerTask = initializeFakeTask(response, errorInfo))); - null === ownerTask ? (response = getRootTask(response, env), error = null != response ? response.run(error) : error()) : error = ownerTask.run(error); - error.name = name; - error.environmentName = env; - return error; - } - function createFakeFunction(name, filename, sourceMap, line, col, enclosingLine, enclosingCol, environmentName) { - name || (name = ""); - var encodedName = JSON.stringify(name); - 1 > enclosingLine ? enclosingLine = 0 : enclosingLine--; - 1 > enclosingCol ? enclosingCol = 0 : enclosingCol--; - 1 > line ? line = 0 : line--; - 1 > col ? col = 0 : col--; - if (line < enclosingLine || line === enclosingLine && col < enclosingCol) enclosingCol = enclosingLine = 0; - 1 > line ? (line = encodedName.length + 3, enclosingCol -= line, 0 > enclosingCol && (enclosingCol = 0), col = col - enclosingCol - line - 3, 0 > col && (col = 0), encodedName = "({" + encodedName + ":" + " ".repeat(enclosingCol) + "_=>" + " ".repeat(col) + "_()})") : 1 > enclosingLine ? (enclosingCol -= encodedName.length + 3, 0 > enclosingCol && (enclosingCol = 0), encodedName = "({" + encodedName + ":" + " ".repeat(enclosingCol) + "_=>" + "\n".repeat(line - enclosingLine) + " ".repeat(col) + "_()})") : enclosingLine === line ? (col = col - enclosingCol - 3, 0 > col && (col = 0), encodedName = "\n".repeat(enclosingLine - 1) + "({" + encodedName + ":\n" + " ".repeat(enclosingCol) + "_=>" + " ".repeat(col) + "_()})") : encodedName = "\n".repeat(enclosingLine - 1) + "({" + encodedName + ":\n" + " ".repeat(enclosingCol) + "_=>" + "\n".repeat(line - enclosingLine) + " ".repeat(col) + "_()})"; - encodedName = 1 > enclosingLine ? encodedName + "\n/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */" : "/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */" + encodedName; - filename.startsWith("/") && (filename = "file://" + filename); - sourceMap ? (encodedName += "\n//# sourceURL=about://React/" + encodeURIComponent(environmentName) + "/" + encodeURI(filename) + "?" + fakeFunctionIdx++, encodedName += "\n//# sourceMappingURL=" + sourceMap) : encodedName = filename ? encodedName + ("\n//# sourceURL=" + encodeURI(filename)) : encodedName + "\n//# sourceURL="; - try { - var fn = (0, eval)(encodedName)[name]; - } catch (x) { - fn = function(_) { - return _(); - }; - } - return fn; - } - function buildFakeCallStack(response, stack, environmentName, useEnclosingLine, innerCall) { - for(var i = 0; i < stack.length; i++){ - var frame = stack[i], frameKey = frame.join("-") + "-" + environmentName + (useEnclosingLine ? "-e" : "-n"), fn = fakeFunctionCache.get(frameKey); - if (void 0 === fn) { - fn = frame[0]; - var filename = frame[1], line = frame[2], col = frame[3], enclosingLine = frame[4]; - frame = frame[5]; - var findSourceMapURL = response._debugFindSourceMapURL; - findSourceMapURL = findSourceMapURL ? findSourceMapURL(filename, environmentName) : null; - fn = createFakeFunction(fn, filename, findSourceMapURL, line, col, useEnclosingLine ? line : enclosingLine, useEnclosingLine ? col : frame, environmentName); - fakeFunctionCache.set(frameKey, fn); - } - innerCall = fn.bind(null, innerCall); - } - return innerCall; - } - function getRootTask(response, childEnvironmentName) { - var rootTask = response._debugRootTask; - return rootTask ? response._rootEnvironmentName !== childEnvironmentName ? (response = console.createTask.bind(console, '"use ' + childEnvironmentName.toLowerCase() + '"'), rootTask.run(response)) : rootTask : null; - } - function initializeFakeTask(response, debugInfo) { - if (!supportsCreateTask || null == debugInfo.stack) return null; - var cachedEntry = debugInfo.debugTask; - if (void 0 !== cachedEntry) return cachedEntry; - var useEnclosingLine = void 0 === debugInfo.key, stack = debugInfo.stack, env = null == debugInfo.env ? response._rootEnvironmentName : debugInfo.env; - cachedEntry = null == debugInfo.owner || null == debugInfo.owner.env ? response._rootEnvironmentName : debugInfo.owner.env; - var ownerTask = null == debugInfo.owner ? null : initializeFakeTask(response, debugInfo.owner); - env = env !== cachedEntry ? '"use ' + env.toLowerCase() + '"' : void 0 !== debugInfo.key ? "<" + (debugInfo.name || "...") + ">" : void 0 !== debugInfo.name ? debugInfo.name || "unknown" : "await " + (debugInfo.awaited.name || "unknown"); - env = console.createTask.bind(console, env); - useEnclosingLine = buildFakeCallStack(response, stack, cachedEntry, useEnclosingLine, env); - null === ownerTask ? (response = getRootTask(response, cachedEntry), response = null != response ? response.run(useEnclosingLine) : useEnclosingLine()) : response = ownerTask.run(useEnclosingLine); - return debugInfo.debugTask = response; - } - function fakeJSXCallSite() { - return Error("react-stack-top-frame"); - } - function initializeFakeStack(response, debugInfo) { - if (void 0 === debugInfo.debugStack) { - null != debugInfo.stack && (debugInfo.debugStack = createFakeJSXCallStackInDEV(response, debugInfo.stack, null == debugInfo.env ? "" : debugInfo.env)); - var owner = debugInfo.owner; - null != owner && (initializeFakeStack(response, owner), void 0 === owner.debugLocation && null != debugInfo.debugStack && (owner.debugLocation = debugInfo.debugStack)); - } - } - function initializeDebugInfo(response, debugInfo) { - void 0 !== debugInfo.stack && initializeFakeTask(response, debugInfo); - if (null == debugInfo.owner && null != response._debugRootOwner) { - var _componentInfoOrAsyncInfo = debugInfo; - _componentInfoOrAsyncInfo.owner = response._debugRootOwner; - _componentInfoOrAsyncInfo.stack = null; - _componentInfoOrAsyncInfo.debugStack = response._debugRootStack; - _componentInfoOrAsyncInfo.debugTask = response._debugRootTask; - } else void 0 !== debugInfo.stack && initializeFakeStack(response, debugInfo); - "number" === typeof debugInfo.time && (debugInfo = { - time: debugInfo.time + response._timeOrigin - }); - return debugInfo; - } - function getCurrentStackInDEV() { - var owner = currentOwnerInDEV; - if (null === owner) return ""; - try { - var info = ""; - if (owner.owner || "string" !== typeof owner.name) { - for(; owner;){ - var ownerStack = owner.debugStack; - if (null != ownerStack) { - if (owner = owner.owner) { - var JSCompiler_temp_const = info; - var error = ownerStack, prevPrepareStackTrace = Error.prepareStackTrace; - Error.prepareStackTrace = prepareStackTrace; - var stack = error.stack; - Error.prepareStackTrace = prevPrepareStackTrace; - stack.startsWith("Error: react-stack-top-frame\n") && (stack = stack.slice(29)); - var idx = stack.indexOf("\n"); - -1 !== idx && (stack = stack.slice(idx + 1)); - idx = stack.indexOf("react_stack_bottom_frame"); - -1 !== idx && (idx = stack.lastIndexOf("\n", idx)); - var JSCompiler_inline_result = -1 !== idx ? stack = stack.slice(0, idx) : ""; - info = JSCompiler_temp_const + ("\n" + JSCompiler_inline_result); - } - } else break; - } - var JSCompiler_inline_result$jscomp$0 = info; - } else { - JSCompiler_temp_const = owner.name; - if (void 0 === prefix) try { - throw Error(); - } catch (x) { - prefix = (error = x.stack.trim().match(/\n( *(at )?)/)) && error[1] || "", suffix = -1 < x.stack.indexOf("\n at") ? " ()" : -1 < x.stack.indexOf("@") ? "@unknown:0:0" : ""; - } - JSCompiler_inline_result$jscomp$0 = "\n" + prefix + JSCompiler_temp_const + suffix; - } - } catch (x) { - JSCompiler_inline_result$jscomp$0 = "\nError generating stack: " + x.message + "\n" + x.stack; - } - return JSCompiler_inline_result$jscomp$0; - } - function resolveConsoleEntry(response, json) { - if (response._replayConsole) { - var blockedChunk = response._blockedConsole; - if (null == blockedChunk) blockedChunk = createResolvedModelChunk(response, json), initializeModelChunk(blockedChunk), "fulfilled" === blockedChunk.status ? replayConsoleWithCallStackInDEV(response, blockedChunk.value) : (blockedChunk.then(function(v) { - return replayConsoleWithCallStackInDEV(response, v); - }, function() {}), response._blockedConsole = blockedChunk); - else { - var _chunk4 = createPendingChunk(response); - _chunk4.then(function(v) { - return replayConsoleWithCallStackInDEV(response, v); - }, function() {}); - response._blockedConsole = _chunk4; - var unblock = function() { - response._blockedConsole === _chunk4 && (response._blockedConsole = null); - resolveModelChunk(response, _chunk4, json); - }; - blockedChunk.then(unblock, unblock); - } - } - } - function initializeIOInfo(response, ioInfo) { - void 0 !== ioInfo.stack && (initializeFakeTask(response, ioInfo), initializeFakeStack(response, ioInfo)); - ioInfo.start += response._timeOrigin; - ioInfo.end += response._timeOrigin; - if (response._replayConsole) { - response = response._rootEnvironmentName; - var promise = ioInfo.value; - if (promise) switch(promise.status){ - case "fulfilled": - logIOInfo(ioInfo, response, promise.value); - break; - case "rejected": - logIOInfoErrored(ioInfo, response, promise.reason); - break; - default: - promise.then(logIOInfo.bind(null, ioInfo, response), logIOInfoErrored.bind(null, ioInfo, response)); - } - else logIOInfo(ioInfo, response, void 0); - } - } - function resolveIOInfo(response, id, model) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk ? (resolveModelChunk(response, chunk, model), "resolved_model" === chunk.status && initializeModelChunk(chunk)) : (chunk = createResolvedModelChunk(response, model), chunks.set(id, chunk), initializeModelChunk(chunk)); - "fulfilled" === chunk.status ? initializeIOInfo(response, chunk.value) : chunk.then(function(v) { - initializeIOInfo(response, v); - }, function() {}); - } - function mergeBuffer(buffer, lastChunk) { - for(var l = buffer.length, byteLength = lastChunk.length, i = 0; i < l; i++)byteLength += buffer[i].byteLength; - byteLength = new Uint8Array(byteLength); - for(var _i3 = i = 0; _i3 < l; _i3++){ - var chunk = buffer[_i3]; - byteLength.set(chunk, i); - i += chunk.byteLength; - } - byteLength.set(lastChunk, i); - return byteLength; - } - function resolveTypedArray(response, id, buffer, lastChunk, constructor, bytesPerElement, streamState) { - buffer = 0 === buffer.length && 0 === lastChunk.byteOffset % bytesPerElement ? lastChunk : mergeBuffer(buffer, lastChunk); - constructor = new constructor(buffer.buffer, buffer.byteOffset, buffer.byteLength / bytesPerElement); - resolveBuffer(response, id, constructor, streamState); - } - function flushComponentPerformance(response$jscomp$0, root, trackIdx$jscomp$6, trackTime, parentEndTime) { - if (!isArrayImpl(root._children)) { - var previousResult = root._children, previousEndTime = previousResult.endTime; - if (-Infinity < parentEndTime && parentEndTime < previousEndTime && null !== previousResult.component) { - var componentInfo = previousResult.component, trackIdx = trackIdx$jscomp$6, startTime = parentEndTime; - if (supportsUserTiming && 0 <= previousEndTime && 10 > trackIdx) { - var color = componentInfo.env === response$jscomp$0._rootEnvironmentName ? "primary-light" : "secondary-light", entryName = componentInfo.name + " [deduped]", debugTask = componentInfo.debugTask; - debugTask ? debugTask.run(console.timeStamp.bind(console, entryName, 0 > startTime ? 0 : startTime, previousEndTime, trackNames[trackIdx], "Server Components \u269b", color)) : console.timeStamp(entryName, 0 > startTime ? 0 : startTime, previousEndTime, trackNames[trackIdx], "Server Components \u269b", color); - } - } - previousResult.track = trackIdx$jscomp$6; - return previousResult; - } - var children = root._children; - var debugInfo = root._debugInfo; - if (0 === debugInfo.length && "fulfilled" === root.status) { - var resolvedValue = resolveLazy(root.value); - "object" === typeof resolvedValue && null !== resolvedValue && (isArrayImpl(resolvedValue) || "function" === typeof resolvedValue[ASYNC_ITERATOR] || resolvedValue.$$typeof === REACT_ELEMENT_TYPE || resolvedValue.$$typeof === REACT_LAZY_TYPE) && isArrayImpl(resolvedValue._debugInfo) && (debugInfo = resolvedValue._debugInfo); - } - if (debugInfo) { - for(var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++){ - var info = debugInfo[i]; - "number" === typeof info.time && (startTime$jscomp$0 = info.time); - if ("string" === typeof info.name) { - startTime$jscomp$0 < trackTime && trackIdx$jscomp$6++; - trackTime = startTime$jscomp$0; - break; - } - } - for(var _i4 = debugInfo.length - 1; 0 <= _i4; _i4--){ - var _info = debugInfo[_i4]; - if ("number" === typeof _info.time && _info.time > parentEndTime) { - parentEndTime = _info.time; - break; - } - } - } - var result = { - track: trackIdx$jscomp$6, - endTime: -Infinity, - component: null - }; - root._children = result; - for(var childrenEndTime = -Infinity, childTrackIdx = trackIdx$jscomp$6, childTrackTime = trackTime, _i5 = 0; _i5 < children.length; _i5++){ - var childResult = flushComponentPerformance(response$jscomp$0, children[_i5], childTrackIdx, childTrackTime, parentEndTime); - null !== childResult.component && (result.component = childResult.component); - childTrackIdx = childResult.track; - var childEndTime = childResult.endTime; - childEndTime > childTrackTime && (childTrackTime = childEndTime); - childEndTime > childrenEndTime && (childrenEndTime = childEndTime); - } - if (debugInfo) for(var componentEndTime = 0, isLastComponent = !0, endTime = -1, endTimeIdx = -1, _i6 = debugInfo.length - 1; 0 <= _i6; _i6--){ - var _info2 = debugInfo[_i6]; - if ("number" === typeof _info2.time) { - 0 === componentEndTime && (componentEndTime = _info2.time); - var time = _info2.time; - if (-1 < endTimeIdx) for(var j = endTimeIdx - 1; j > _i6; j--){ - var candidateInfo = debugInfo[j]; - if ("string" === typeof candidateInfo.name) { - componentEndTime > childrenEndTime && (childrenEndTime = componentEndTime); - var componentInfo$jscomp$0 = candidateInfo, response = response$jscomp$0, componentInfo$jscomp$1 = componentInfo$jscomp$0, trackIdx$jscomp$0 = trackIdx$jscomp$6, startTime$jscomp$1 = time, componentEndTime$jscomp$0 = componentEndTime, childrenEndTime$jscomp$0 = childrenEndTime; - if (isLastComponent && "rejected" === root.status && root.reason !== response._closedReason) { - var componentInfo$jscomp$2 = componentInfo$jscomp$1, trackIdx$jscomp$1 = trackIdx$jscomp$0, startTime$jscomp$2 = startTime$jscomp$1, childrenEndTime$jscomp$1 = childrenEndTime$jscomp$0, error = root.reason; - if (supportsUserTiming) { - var env = componentInfo$jscomp$2.env, name = componentInfo$jscomp$2.name, entryName$jscomp$0 = env === response._rootEnvironmentName || void 0 === env ? name : name + " [" + env + "]", measureName = "\u200b" + entryName$jscomp$0, properties = [ - [ - "Error", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ] - ]; - null != componentInfo$jscomp$2.key && addValueToProperties("key", componentInfo$jscomp$2.key, properties, 0, ""); - null != componentInfo$jscomp$2.props && addObjectToProperties(componentInfo$jscomp$2.props, properties, 0, ""); - performance.measure(measureName, { - start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2, - end: childrenEndTime$jscomp$1, - detail: { - devtools: { - color: "error", - track: trackNames[trackIdx$jscomp$1], - trackGroup: "Server Components \u269b", - tooltipText: entryName$jscomp$0 + " Errored", - properties: properties - } - } - }); - performance.clearMeasures(measureName); - } - } else { - var componentInfo$jscomp$3 = componentInfo$jscomp$1, trackIdx$jscomp$2 = trackIdx$jscomp$0, startTime$jscomp$3 = startTime$jscomp$1, childrenEndTime$jscomp$2 = childrenEndTime$jscomp$0; - if (supportsUserTiming && 0 <= childrenEndTime$jscomp$2 && 10 > trackIdx$jscomp$2) { - var env$jscomp$0 = componentInfo$jscomp$3.env, name$jscomp$0 = componentInfo$jscomp$3.name, isPrimaryEnv = env$jscomp$0 === response._rootEnvironmentName, selfTime = componentEndTime$jscomp$0 - startTime$jscomp$3, color$jscomp$0 = 0.5 > selfTime ? isPrimaryEnv ? "primary-light" : "secondary-light" : 50 > selfTime ? isPrimaryEnv ? "primary" : "secondary" : 500 > selfTime ? isPrimaryEnv ? "primary-dark" : "secondary-dark" : "error", debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask, measureName$jscomp$0 = "\u200b" + (isPrimaryEnv || void 0 === env$jscomp$0 ? name$jscomp$0 : name$jscomp$0 + " [" + env$jscomp$0 + "]"); - if (debugTask$jscomp$0) { - var properties$jscomp$0 = []; - null != componentInfo$jscomp$3.key && addValueToProperties("key", componentInfo$jscomp$3.key, properties$jscomp$0, 0, ""); - null != componentInfo$jscomp$3.props && addObjectToProperties(componentInfo$jscomp$3.props, properties$jscomp$0, 0, ""); - debugTask$jscomp$0.run(performance.measure.bind(performance, measureName$jscomp$0, { - start: 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3, - end: childrenEndTime$jscomp$2, - detail: { - devtools: { - color: color$jscomp$0, - track: trackNames[trackIdx$jscomp$2], - trackGroup: "Server Components \u269b", - properties: properties$jscomp$0 - } - } - })); - performance.clearMeasures(measureName$jscomp$0); - } else console.timeStamp(measureName$jscomp$0, 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3, childrenEndTime$jscomp$2, trackNames[trackIdx$jscomp$2], "Server Components \u269b", color$jscomp$0); - } - } - componentEndTime = time; - result.component = componentInfo$jscomp$0; - isLastComponent = !1; - } else if (candidateInfo.awaited && null != candidateInfo.awaited.env) { - endTime > childrenEndTime && (childrenEndTime = endTime); - var asyncInfo = candidateInfo, env$jscomp$1 = response$jscomp$0._rootEnvironmentName, promise = asyncInfo.awaited.value; - if (promise) { - var thenable = promise; - switch(thenable.status){ - case "fulfilled": - logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, thenable.value); - break; - case "rejected": - var asyncInfo$jscomp$0 = asyncInfo, trackIdx$jscomp$3 = trackIdx$jscomp$6, startTime$jscomp$4 = time, endTime$jscomp$0 = endTime, rootEnv = env$jscomp$1, error$jscomp$0 = thenable.reason; - if (supportsUserTiming && 0 < endTime$jscomp$0) { - var description = getIODescription(error$jscomp$0), entryName$jscomp$1 = "await " + getIOShortName(asyncInfo$jscomp$0.awaited, description, asyncInfo$jscomp$0.env, rootEnv), debugTask$jscomp$1 = asyncInfo$jscomp$0.debugTask || asyncInfo$jscomp$0.awaited.debugTask; - if (debugTask$jscomp$1) { - var properties$jscomp$1 = [ - [ - "Rejected", - "object" === typeof error$jscomp$0 && null !== error$jscomp$0 && "string" === typeof error$jscomp$0.message ? String(error$jscomp$0.message) : String(error$jscomp$0) - ] - ], tooltipText = getIOLongName(asyncInfo$jscomp$0.awaited, description, asyncInfo$jscomp$0.env, rootEnv) + " Rejected"; - debugTask$jscomp$1.run(performance.measure.bind(performance, entryName$jscomp$1, { - start: 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4, - end: endTime$jscomp$0, - detail: { - devtools: { - color: "error", - track: trackNames[trackIdx$jscomp$3], - trackGroup: "Server Components \u269b", - properties: properties$jscomp$1, - tooltipText: tooltipText - } - } - })); - performance.clearMeasures(entryName$jscomp$1); - } else console.timeStamp(entryName$jscomp$1, 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4, endTime$jscomp$0, trackNames[trackIdx$jscomp$3], "Server Components \u269b", "error"); - } - break; - default: - logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, void 0); - } - } else logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, void 0); - } - } - else { - endTime = time; - for(var _j = debugInfo.length - 1; _j > _i6; _j--){ - var _candidateInfo = debugInfo[_j]; - if ("string" === typeof _candidateInfo.name) { - componentEndTime > childrenEndTime && (childrenEndTime = componentEndTime); - var _componentInfo = _candidateInfo, _env = response$jscomp$0._rootEnvironmentName, componentInfo$jscomp$4 = _componentInfo, trackIdx$jscomp$4 = trackIdx$jscomp$6, startTime$jscomp$5 = time, childrenEndTime$jscomp$3 = childrenEndTime; - if (supportsUserTiming) { - var env$jscomp$2 = componentInfo$jscomp$4.env, name$jscomp$1 = componentInfo$jscomp$4.name, entryName$jscomp$2 = env$jscomp$2 === _env || void 0 === env$jscomp$2 ? name$jscomp$1 : name$jscomp$1 + " [" + env$jscomp$2 + "]", measureName$jscomp$1 = "\u200b" + entryName$jscomp$2, properties$jscomp$2 = [ - [ - "Aborted", - "The stream was aborted before this Component finished rendering." - ] - ]; - null != componentInfo$jscomp$4.key && addValueToProperties("key", componentInfo$jscomp$4.key, properties$jscomp$2, 0, ""); - null != componentInfo$jscomp$4.props && addObjectToProperties(componentInfo$jscomp$4.props, properties$jscomp$2, 0, ""); - performance.measure(measureName$jscomp$1, { - start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5, - end: childrenEndTime$jscomp$3, - detail: { - devtools: { - color: "warning", - track: trackNames[trackIdx$jscomp$4], - trackGroup: "Server Components \u269b", - tooltipText: entryName$jscomp$2 + " Aborted", - properties: properties$jscomp$2 - } - } - }); - performance.clearMeasures(measureName$jscomp$1); - } - componentEndTime = time; - result.component = _componentInfo; - isLastComponent = !1; - } else if (_candidateInfo.awaited && null != _candidateInfo.awaited.env) { - var _asyncInfo = _candidateInfo, _env2 = response$jscomp$0._rootEnvironmentName; - _asyncInfo.awaited.end > endTime && (endTime = _asyncInfo.awaited.end); - endTime > childrenEndTime && (childrenEndTime = endTime); - var asyncInfo$jscomp$1 = _asyncInfo, trackIdx$jscomp$5 = trackIdx$jscomp$6, startTime$jscomp$6 = time, endTime$jscomp$1 = endTime, rootEnv$jscomp$0 = _env2; - if (supportsUserTiming && 0 < endTime$jscomp$1) { - var entryName$jscomp$3 = "await " + getIOShortName(asyncInfo$jscomp$1.awaited, "", asyncInfo$jscomp$1.env, rootEnv$jscomp$0), debugTask$jscomp$2 = asyncInfo$jscomp$1.debugTask || asyncInfo$jscomp$1.awaited.debugTask; - if (debugTask$jscomp$2) { - var tooltipText$jscomp$0 = getIOLongName(asyncInfo$jscomp$1.awaited, "", asyncInfo$jscomp$1.env, rootEnv$jscomp$0) + " Aborted"; - debugTask$jscomp$2.run(performance.measure.bind(performance, entryName$jscomp$3, { - start: 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6, - end: endTime$jscomp$1, - detail: { - devtools: { - color: "warning", - track: trackNames[trackIdx$jscomp$5], - trackGroup: "Server Components \u269b", - properties: [ - [ - "Aborted", - "The stream was aborted before this Promise resolved." - ] - ], - tooltipText: tooltipText$jscomp$0 - } - } - })); - performance.clearMeasures(entryName$jscomp$3); - } else console.timeStamp(entryName$jscomp$3, 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6, endTime$jscomp$1, trackNames[trackIdx$jscomp$5], "Server Components \u269b", "warning"); - } - } - } - } - endTime = time; - endTimeIdx = _i6; - } - } - result.endTime = childrenEndTime; - return result; - } - function flushInitialRenderPerformance(response) { - if (response._replayConsole) { - var rootChunk = getChunk(response, 0); - isArrayImpl(rootChunk._children) && (markAllTracksInOrder(), flushComponentPerformance(response, rootChunk, 0, -Infinity, -Infinity)); - } - } - function processFullBinaryRow(response, streamState, id, tag, buffer, chunk) { - switch(tag){ - case 65: - resolveBuffer(response, id, mergeBuffer(buffer, chunk).buffer, streamState); - return; - case 79: - resolveTypedArray(response, id, buffer, chunk, Int8Array, 1, streamState); - return; - case 111: - resolveBuffer(response, id, 0 === buffer.length ? chunk : mergeBuffer(buffer, chunk), streamState); - return; - case 85: - resolveTypedArray(response, id, buffer, chunk, Uint8ClampedArray, 1, streamState); - return; - case 83: - resolveTypedArray(response, id, buffer, chunk, Int16Array, 2, streamState); - return; - case 115: - resolveTypedArray(response, id, buffer, chunk, Uint16Array, 2, streamState); - return; - case 76: - resolveTypedArray(response, id, buffer, chunk, Int32Array, 4, streamState); - return; - case 108: - resolveTypedArray(response, id, buffer, chunk, Uint32Array, 4, streamState); - return; - case 71: - resolveTypedArray(response, id, buffer, chunk, Float32Array, 4, streamState); - return; - case 103: - resolveTypedArray(response, id, buffer, chunk, Float64Array, 8, streamState); - return; - case 77: - resolveTypedArray(response, id, buffer, chunk, BigInt64Array, 8, streamState); - return; - case 109: - resolveTypedArray(response, id, buffer, chunk, BigUint64Array, 8, streamState); - return; - case 86: - resolveTypedArray(response, id, buffer, chunk, DataView, 1, streamState); - return; - } - for(var stringDecoder = response._stringDecoder, row = "", i = 0; i < buffer.length; i++)row += stringDecoder.decode(buffer[i], decoderOptions); - row += stringDecoder.decode(chunk); - processFullStringRow(response, streamState, id, tag, row); - } - function processFullStringRow(response, streamState, id, tag, row) { - switch(tag){ - case 73: - resolveModule(response, id, row, streamState); - break; - case 72: - id = row[0]; - streamState = row.slice(1); - response = JSON.parse(streamState, response._fromJSON); - streamState = ReactDOMSharedInternals.d; - switch(id){ - case "D": - streamState.D(response); - break; - case "C": - "string" === typeof response ? streamState.C(response) : streamState.C(response[0], response[1]); - break; - case "L": - id = response[0]; - row = response[1]; - 3 === response.length ? streamState.L(id, row, response[2]) : streamState.L(id, row); - break; - case "m": - "string" === typeof response ? streamState.m(response) : streamState.m(response[0], response[1]); - break; - case "X": - "string" === typeof response ? streamState.X(response) : streamState.X(response[0], response[1]); - break; - case "S": - "string" === typeof response ? streamState.S(response) : streamState.S(response[0], 0 === response[1] ? void 0 : response[1], 3 === response.length ? response[2] : void 0); - break; - case "M": - "string" === typeof response ? streamState.M(response) : streamState.M(response[0], response[1]); - } - break; - case 69: - tag = response._chunks; - var chunk = tag.get(id); - row = JSON.parse(row); - var error = resolveErrorDev(response, row); - error.digest = row.digest; - chunk ? (resolveChunkDebugInfo(response, streamState, chunk), triggerErrorOnChunk(response, chunk, error)) : (row = new ReactPromise("rejected", null, error), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - break; - case 84: - tag = response._chunks; - (chunk = tag.get(id)) && "pending" !== chunk.status ? chunk.reason.enqueueValue(row) : (chunk && releasePendingChunk(response, chunk), row = new ReactPromise("fulfilled", row, null), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - break; - case 78: - response._timeOrigin = +row - performance.timeOrigin; - break; - case 68: - id = getChunk(response, id); - "fulfilled" !== id.status && "rejected" !== id.status && "halted" !== id.status && "blocked" !== id.status && "resolved_module" !== id.status && (streamState = id._debugChunk, tag = createResolvedModelChunk(response, row), tag._debugChunk = streamState, id._debugChunk = tag, initializeDebugChunk(response, id), "blocked" !== tag.status || void 0 !== response._debugChannel && response._debugChannel.hasReadable || '"' !== row[0] || "$" !== row[1] || (streamState = row.slice(2, row.length - 1).split(":"), streamState = parseInt(streamState[0], 16), "pending" === getChunk(response, streamState).status && (id._debugChunk = null))); - break; - case 74: - resolveIOInfo(response, id, row); - break; - case 87: - resolveConsoleEntry(response, row); - break; - case 82: - startReadableStream(response, id, void 0, streamState); - break; - case 114: - startReadableStream(response, id, "bytes", streamState); - break; - case 88: - startAsyncIterable(response, id, !1, streamState); - break; - case 120: - startAsyncIterable(response, id, !0, streamState); - break; - case 67: - (id = response._chunks.get(id)) && "fulfilled" === id.status && (0 === --response._pendingChunks && (response._weakResponse.response = null), id.reason.close("" === row ? '"$undefined"' : row)); - break; - default: - if ("" === row) { - if (streamState = response._chunks, (row = streamState.get(id)) || streamState.set(id, row = createPendingChunk(response)), "pending" === row.status || "blocked" === row.status) releasePendingChunk(response, row), response = row, response.status = "halted", response.value = null, response.reason = null; - } else tag = response._chunks, (chunk = tag.get(id)) ? (resolveChunkDebugInfo(response, streamState, chunk), resolveModelChunk(response, chunk, row)) : (row = createResolvedModelChunk(response, row), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - } - } - function processBinaryChunk(weakResponse, streamState, chunk) { - if (void 0 !== weakResponse.weak.deref()) { - weakResponse = unwrapWeakResponse(weakResponse); - var i = 0, rowState = streamState._rowState, rowID = streamState._rowID, rowTag = streamState._rowTag, rowLength = streamState._rowLength, buffer = streamState._buffer, chunkLength = chunk.length; - for(incrementChunkDebugInfo(streamState, chunkLength); i < chunkLength;){ - var lastIdx = -1; - switch(rowState){ - case 0: - lastIdx = chunk[i++]; - 58 === lastIdx ? rowState = 1 : rowID = rowID << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 1: - rowState = chunk[i]; - 84 === rowState || 65 === rowState || 79 === rowState || 111 === rowState || 98 === rowState || 85 === rowState || 83 === rowState || 115 === rowState || 76 === rowState || 108 === rowState || 71 === rowState || 103 === rowState || 77 === rowState || 109 === rowState || 86 === rowState ? (rowTag = rowState, rowState = 2, i++) : 64 < rowState && 91 > rowState || 35 === rowState || 114 === rowState || 120 === rowState ? (rowTag = rowState, rowState = 3, i++) : (rowTag = 0, rowState = 3); - continue; - case 2: - lastIdx = chunk[i++]; - 44 === lastIdx ? rowState = 4 : rowLength = rowLength << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 3: - lastIdx = chunk.indexOf(10, i); - break; - case 4: - lastIdx = i + rowLength, lastIdx > chunk.length && (lastIdx = -1); - } - var offset = chunk.byteOffset + i; - if (-1 < lastIdx) rowLength = new Uint8Array(chunk.buffer, offset, lastIdx - i), 98 === rowTag ? resolveBuffer(weakResponse, rowID, lastIdx === chunkLength ? rowLength : rowLength.slice(), streamState) : processFullBinaryRow(weakResponse, streamState, rowID, rowTag, buffer, rowLength), i = lastIdx, 3 === rowState && i++, rowLength = rowID = rowTag = rowState = 0, buffer.length = 0; - else { - chunk = new Uint8Array(chunk.buffer, offset, chunk.byteLength - i); - 98 === rowTag ? (rowLength -= chunk.byteLength, resolveBuffer(weakResponse, rowID, chunk, streamState)) : (buffer.push(chunk), rowLength -= chunk.byteLength); - break; - } - } - streamState._rowState = rowState; - streamState._rowID = rowID; - streamState._rowTag = rowTag; - streamState._rowLength = rowLength; - } - } - function createFromJSONCallback(response) { - return function(key, value) { - if ("__proto__" !== key) { - if ("string" === typeof value) return parseModelString(response, this, key, value); - if ("object" === typeof value && null !== value) { - if (value[0] === REACT_ELEMENT_TYPE) b: { - var owner = value[4], stack = value[5]; - key = value[6]; - value = { - $$typeof: REACT_ELEMENT_TYPE, - type: value[1], - key: value[2], - props: value[3], - _owner: void 0 === owner ? null : owner - }; - Object.defineProperty(value, "ref", { - enumerable: !1, - get: nullRefGetter - }); - value._store = {}; - Object.defineProperty(value._store, "validated", { - configurable: !1, - enumerable: !1, - writable: !0, - value: key - }); - Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: null - }); - Object.defineProperty(value, "_debugStack", { - configurable: !1, - enumerable: !1, - writable: !0, - value: void 0 === stack ? null : stack - }); - Object.defineProperty(value, "_debugTask", { - configurable: !1, - enumerable: !1, - writable: !0, - value: null - }); - if (null !== initializingHandler) { - owner = initializingHandler; - initializingHandler = owner.parent; - if (owner.errored) { - stack = new ReactPromise("rejected", null, owner.reason); - initializeElement(response, value, null); - owner = { - name: getComponentNameFromType(value.type) || "", - owner: value._owner - }; - owner.debugStack = value._debugStack; - supportsCreateTask && (owner.debugTask = value._debugTask); - stack._debugInfo = [ - owner - ]; - key = createLazyChunkWrapper(stack, key); - break b; - } - if (0 < owner.deps) { - stack = new ReactPromise("blocked", null, null); - owner.value = value; - owner.chunk = stack; - key = createLazyChunkWrapper(stack, key); - value = initializeElement.bind(null, response, value, key); - stack.then(value, value); - break b; - } - } - initializeElement(response, value, null); - key = value; - } - else key = value; - return key; - } - return value; - } - }; - } - function close(weakResponse) { - reportGlobalError(weakResponse, Error("Connection closed.")); - } - function noServerCall$1() { - throw Error("Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead."); - } - function createResponseFromOptions(options) { - return new ResponseInstance(options.serverConsumerManifest.moduleMap, options.serverConsumerManifest.serverModuleMap, options.serverConsumerManifest.moduleLoading, noServerCall$1, options.encodeFormAction, "string" === typeof options.nonce ? options.nonce : void 0, options && options.temporaryReferences ? options.temporaryReferences : void 0, options && options.findSourceMapURL ? options.findSourceMapURL : void 0, options ? !0 === options.replayConsoleLogs : !1, options && options.environmentName ? options.environmentName : void 0, options && null != options.startTime ? options.startTime : void 0, options && null != options.endTime ? options.endTime : void 0, options && void 0 !== options.debugChannel ? { - hasReadable: void 0 !== options.debugChannel.readable, - callback: null - } : void 0)._weakResponse; - } - function startReadingFromStream$1(response, stream, onDone, debugValue) { - function progress(_ref) { - var value = _ref.value; - if (_ref.done) return onDone(); - processBinaryChunk(response, streamState, value); - return reader.read().then(progress).catch(error); - } - function error(e) { - reportGlobalError(response, e); - } - var streamState = createStreamState(response, debugValue), reader = stream.getReader(); - reader.read().then(progress).catch(error); - } - function noServerCall() { - throw Error("Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead."); - } - function startReadingFromStream(response$jscomp$0, stream, onEnd) { - var streamState = createStreamState(response$jscomp$0, stream); - stream.on("data", function(chunk) { - if ("string" === typeof chunk) { - if (void 0 !== response$jscomp$0.weak.deref()) { - var response = unwrapWeakResponse(response$jscomp$0), i = 0, rowState = streamState._rowState, rowID = streamState._rowID, rowTag = streamState._rowTag, rowLength = streamState._rowLength, buffer = streamState._buffer, chunkLength = chunk.length; - for(incrementChunkDebugInfo(streamState, chunkLength); i < chunkLength;){ - var lastIdx = -1; - switch(rowState){ - case 0: - lastIdx = chunk.charCodeAt(i++); - 58 === lastIdx ? rowState = 1 : rowID = rowID << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 1: - rowState = chunk.charCodeAt(i); - 84 === rowState || 65 === rowState || 79 === rowState || 111 === rowState || 85 === rowState || 83 === rowState || 115 === rowState || 76 === rowState || 108 === rowState || 71 === rowState || 103 === rowState || 77 === rowState || 109 === rowState || 86 === rowState ? (rowTag = rowState, rowState = 2, i++) : 64 < rowState && 91 > rowState || 114 === rowState || 120 === rowState ? (rowTag = rowState, rowState = 3, i++) : (rowTag = 0, rowState = 3); - continue; - case 2: - lastIdx = chunk.charCodeAt(i++); - 44 === lastIdx ? rowState = 4 : rowLength = rowLength << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 3: - lastIdx = chunk.indexOf("\n", i); - break; - case 4: - if (84 !== rowTag) throw Error("Binary RSC chunks cannot be encoded as strings. This is a bug in the wiring of the React streams."); - if (rowLength < chunk.length || chunk.length > 3 * rowLength) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - lastIdx = chunk.length; - } - if (-1 < lastIdx) { - if (0 < buffer.length) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - i = chunk.slice(i, lastIdx); - processFullStringRow(response, streamState, rowID, rowTag, i); - i = lastIdx; - 3 === rowState && i++; - rowLength = rowID = rowTag = rowState = 0; - buffer.length = 0; - } else if (chunk.length !== i) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - } - streamState._rowState = rowState; - streamState._rowID = rowID; - streamState._rowTag = rowTag; - streamState._rowLength = rowLength; - } - } else processBinaryChunk(response$jscomp$0, streamState, chunk); - }); - stream.on("error", function(error) { - reportGlobalError(response$jscomp$0, error); - }); - stream.on("end", onEnd); - } - var util = __turbopack_context__.r("[externals]/util [external] (util, cjs)"), ReactDOM = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js [app-rsc] (ecmascript)"), React = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"), decoderOptions = { - stream: !0 - }, bind$1 = Function.prototype.bind, hasOwnProperty = Object.prototype.hasOwnProperty, instrumentedChunks = new WeakSet(), loadedChunks = new WeakSet(), ReactDOMSharedInternals = ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator, ASYNC_ITERATOR = Symbol.asyncIterator, isArrayImpl = Array.isArray, getPrototypeOf = Object.getPrototypeOf, jsxPropsParents = new WeakMap(), jsxChildrenParents = new WeakMap(), CLIENT_REFERENCE_TAG = Symbol.for("react.client.reference"), ObjectPrototype = Object.prototype, knownServerReferences = new WeakMap(), boundCache = new WeakMap(), fakeServerFunctionIdx = 0, FunctionBind = Function.prototype.bind, ArraySlice = Array.prototype.slice, v8FrameRegExp = /^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/, jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/, REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), supportsUserTiming = "undefined" !== typeof console && "function" === typeof console.timeStamp && "undefined" !== typeof performance && "function" === typeof performance.measure, trackNames = "Primary Parallel Parallel\u200b Parallel\u200b\u200b Parallel\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b".split(" "), prefix, suffix; - new ("function" === typeof WeakMap ? WeakMap : Map)(); - var ReactSharedInteralsServer = React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE || ReactSharedInteralsServer; - ReactPromise.prototype = Object.create(Promise.prototype); - ReactPromise.prototype.then = function(resolve, reject) { - var _this = this; - switch(this.status){ - case "resolved_model": - initializeModelChunk(this); - break; - case "resolved_module": - initializeModuleChunk(this); - } - var resolveCallback = resolve, rejectCallback = reject, wrapperPromise = new Promise(function(res, rej) { - resolve = function(value) { - wrapperPromise._debugInfo = _this._debugInfo; - res(value); - }; - reject = function(reason) { - wrapperPromise._debugInfo = _this._debugInfo; - rej(reason); - }; - }); - wrapperPromise.then(resolveCallback, rejectCallback); - switch(this.status){ - case "fulfilled": - "function" === typeof resolve && resolve(this.value); - break; - case "pending": - case "blocked": - "function" === typeof resolve && (null === this.value && (this.value = []), this.value.push(resolve)); - "function" === typeof reject && (null === this.reason && (this.reason = []), this.reason.push(reject)); - break; - case "halted": - break; - default: - "function" === typeof reject && reject(this.reason); - } - }; - var debugChannelRegistry = "function" === typeof FinalizationRegistry ? new FinalizationRegistry(closeDebugChannel) : null, initializingHandler = null, initializingChunk = null, mightHaveStaticConstructor = /\bclass\b.*\bstatic\b/, MIN_CHUNK_SIZE = 65536, supportsCreateTask = !!console.createTask, fakeFunctionCache = new Map(), fakeFunctionIdx = 0, createFakeJSXCallStack = { - react_stack_bottom_frame: function(response, stack, environmentName) { - return buildFakeCallStack(response, stack, environmentName, !1, fakeJSXCallSite)(); - } - }, createFakeJSXCallStackInDEV = createFakeJSXCallStack.react_stack_bottom_frame.bind(createFakeJSXCallStack), currentOwnerInDEV = null, replayConsoleWithCallStack = { - react_stack_bottom_frame: function(response, payload) { - var methodName = payload[0], stackTrace = payload[1], owner = payload[2], env = payload[3]; - payload = payload.slice(4); - var prevStack = ReactSharedInternals.getCurrentStack; - ReactSharedInternals.getCurrentStack = getCurrentStackInDEV; - currentOwnerInDEV = null === owner ? response._debugRootOwner : owner; - try { - a: { - var offset = 0; - switch(methodName){ - case "dir": - case "dirxml": - case "groupEnd": - case "table": - var JSCompiler_inline_result = bind$1.apply(console[methodName], [ - console - ].concat(payload)); - break a; - case "assert": - offset = 1; - } - var newArgs = payload.slice(0); - "string" === typeof newArgs[offset] ? newArgs.splice(offset, 1, "\u001b[0m\u001b[7m%c%s\u001b[0m%c " + newArgs[offset], "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", " " + env + " ", "") : newArgs.splice(offset, 0, "\u001b[0m\u001b[7m%c%s\u001b[0m%c", "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", " " + env + " ", ""); - newArgs.unshift(console); - JSCompiler_inline_result = bind$1.apply(console[methodName], newArgs); - } - var callStack = buildFakeCallStack(response, stackTrace, env, !1, JSCompiler_inline_result); - if (null != owner) { - var task = initializeFakeTask(response, owner); - initializeFakeStack(response, owner); - if (null !== task) { - task.run(callStack); - return; - } - } - var rootTask = getRootTask(response, env); - null != rootTask ? rootTask.run(callStack) : callStack(); - } finally{ - currentOwnerInDEV = null, ReactSharedInternals.getCurrentStack = prevStack; - } - } - }, replayConsoleWithCallStackInDEV = replayConsoleWithCallStack.react_stack_bottom_frame.bind(replayConsoleWithCallStack); - exports.createFromFetch = function(promiseForResponse, options) { - var response = createResponseFromOptions(options); - promiseForResponse.then(function(r) { - if (options && options.debugChannel && options.debugChannel.readable) { - var streamDoneCount = 0, handleDone = function() { - 2 === ++streamDoneCount && close(response); - }; - startReadingFromStream$1(response, options.debugChannel.readable, handleDone); - startReadingFromStream$1(response, r.body, handleDone, r); - } else startReadingFromStream$1(response, r.body, close.bind(null, response), r); - }, function(e) { - reportGlobalError(response, e); - }); - return getRoot(response); - }; - exports.createFromNodeStream = function(stream, serverConsumerManifest, options) { - var response = new ResponseInstance(serverConsumerManifest.moduleMap, serverConsumerManifest.serverModuleMap, serverConsumerManifest.moduleLoading, noServerCall, options ? options.encodeFormAction : void 0, options && "string" === typeof options.nonce ? options.nonce : void 0, void 0, options && options.findSourceMapURL ? options.findSourceMapURL : void 0, options ? !0 === options.replayConsoleLogs : !1, options && options.environmentName ? options.environmentName : void 0, options && null != options.startTime ? options.startTime : void 0, options && null != options.endTime ? options.endTime : void 0, options && void 0 !== options.debugChannel ? { - hasReadable: !0, - callback: null - } : void 0)._weakResponse; - if (options && options.debugChannel) { - var streamEndedCount = 0; - serverConsumerManifest = function() { - 2 === ++streamEndedCount && close(response); - }; - startReadingFromStream(response, options.debugChannel, serverConsumerManifest); - startReadingFromStream(response, stream, serverConsumerManifest); - } else startReadingFromStream(response, stream, close.bind(null, response)); - return getRoot(response); - }; - exports.createFromReadableStream = function(stream, options) { - var response = createResponseFromOptions(options); - if (options && options.debugChannel && options.debugChannel.readable) { - var streamDoneCount = 0, handleDone = function() { - 2 === ++streamDoneCount && close(response); - }; - startReadingFromStream$1(response, options.debugChannel.readable, handleDone); - startReadingFromStream$1(response, stream, handleDone, stream); - } else startReadingFromStream$1(response, stream, close.bind(null, response), stream); - return getRoot(response); - }; - exports.createServerReference = function(id) { - return createServerReference$1(id, noServerCall$1); - }; - exports.createTemporaryReferenceSet = function() { - return new Map(); - }; - exports.encodeReply = function(value, options) { - return new Promise(function(resolve, reject) { - var abort = processReply(value, "", options && options.temporaryReferences ? options.temporaryReferences : void 0, resolve, reject); - if (options && options.signal) { - var signal = options.signal; - if (signal.aborted) abort(signal.reason); - else { - var listener = function() { - abort(signal.reason); - signal.removeEventListener("abort", listener); - }; - signal.addEventListener("abort", listener); - } - } - }); - }; - exports.registerServerReference = function(reference, id, encodeFormAction) { - registerBoundServerReference(reference, id, null, encodeFormAction); - return reference; - }; -}(); -}), -"[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.node.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.node.development.js [app-rsc] (ecmascript)"); -} -}), -"[project]/node_modules/next/dist/esm/lib/detached-promise.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * A `Promise.withResolvers` implementation that exposes the `resolve` and - * `reject` functions on a `Promise`. - * - * @see https://tc39.es/proposal-promise-with-resolvers/ - */ __turbopack_context__.s([ - "DetachedPromise", - ()=>DetachedPromise -]); -class DetachedPromise { - constructor(){ - let resolve; - let reject; - // Create the promise and assign the resolvers to the object. - this.promise = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - // We know that resolvers is defined because the Promise constructor runs - // synchronously. - this.resolve = resolve; - this.reject = reject; - } -} //# sourceMappingURL=detached-promise.js.map -}), -"[project]/node_modules/next/dist/esm/server/stream-utils/encoded-tags.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ENCODED_TAGS", - ()=>ENCODED_TAGS -]); -const ENCODED_TAGS = { - // opening tags do not have the closing `>` since they can contain other attributes such as `` - OPENING: { - // - HEAD: new Uint8Array([ - 60, - 47, - 104, - 101, - 97, - 100, - 62 - ]), - // - BODY: new Uint8Array([ - 60, - 47, - 98, - 111, - 100, - 121, - 62 - ]), - // - HTML: new Uint8Array([ - 60, - 47, - 104, - 116, - 109, - 108, - 62 - ]), - // - BODY_AND_HTML: new Uint8Array([ - 60, - 47, - 98, - 111, - 100, - 121, - 62, - 60, - 47, - 104, - 116, - 109, - 108, - 62 - ]) - }, - META: { - // Only the match the prefix cause the suffix can be different wether it's xml compatible or not ">" or "/>" - // { -"use strict"; - -/** - * Find the starting index of Uint8Array `b` within Uint8Array `a`. - */ __turbopack_context__.s([ - "indexOfUint8Array", - ()=>indexOfUint8Array, - "isEquivalentUint8Arrays", - ()=>isEquivalentUint8Arrays, - "removeFromUint8Array", - ()=>removeFromUint8Array -]); -function indexOfUint8Array(a, b) { - if (b.length === 0) return 0; - if (a.length === 0 || b.length > a.length) return -1; - // start iterating through `a` - for(let i = 0; i <= a.length - b.length; i++){ - let completeMatch = true; - // from index `i`, iterate through `b` and check for mismatch - for(let j = 0; j < b.length; j++){ - // if the values do not match, then this isn't a complete match, exit `b` iteration early and iterate to next index of `a`. - if (a[i + j] !== b[j]) { - completeMatch = false; - break; - } - } - if (completeMatch) { - return i; - } - } - return -1; -} -function isEquivalentUint8Arrays(a, b) { - if (a.length !== b.length) return false; - for(let i = 0; i < a.length; i++){ - if (a[i] !== b[i]) return false; - } - return true; -} -function removeFromUint8Array(a, b) { - const tagIndex = indexOfUint8Array(a, b); - if (tagIndex === 0) return a.subarray(b.length); - if (tagIndex > -1) { - const removed = new Uint8Array(a.length - b.length); - removed.set(a.slice(0, tagIndex)); - removed.set(a.slice(tagIndex + b.length), tagIndex); - return removed; - } else { - return a; - } -} //# sourceMappingURL=uint8array-helpers.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/errors/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "MISSING_ROOT_TAGS_ERROR", - ()=>MISSING_ROOT_TAGS_ERROR -]); -const MISSING_ROOT_TAGS_ERROR = 'NEXT_MISSING_ROOT_TAGS'; //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment-cache/output-export-prefetch-encoding.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "insertBuildIdComment", - ()=>insertBuildIdComment -]); -// In output: export mode, the build id is added to the start of the HTML -// document, directly after the doctype declaration. During a prefetch, the -// client performs a range request to get the build id, so it can check whether -// the target page belongs to the same build. -// -// The first 64 bytes of the document are requested. The exact number isn't -// too important; it must be larger than the build id + doctype + closing and -// ending comment markers, but it doesn't need to match the end of the -// comment exactly. -// -// Build ids are 21 bytes long in the default implementation, though this -// can be overridden in the Next.js config. For the purposes of this check, -// it's OK to only match the start of the id, so we'll truncate it if exceeds -// a certain length. -const DOCTYPE_PREFIX = '' // 15 bytes -; -const MAX_BUILD_ID_LENGTH = 24; -function escapeBuildId(buildId) { - // If the build id is longer than the given limit, it's OK for our purposes - // to only match the beginning. - const truncated = buildId.slice(0, MAX_BUILD_ID_LENGTH); - // Replace hyphens with underscores so it doesn't break the HTML comment. - // (Unlikely, but if this did happen it would break the whole document.) - return truncated.replace(/-/g, '_'); -} -function insertBuildIdComment(originalHtml, buildId) { - if (buildId.includes('-->') || // React always inserts a doctype at the start of the document. Skip if it - // isn't present. Shouldn't happen; suggests an issue elsewhere. - !originalHtml.startsWith(DOCTYPE_PREFIX)) { - // Return the original HTML unchanged. This means the document will not - // be prefetched. - // TODO: The build id comment is currently only used during prefetches, but - // if we eventually use this mechanism for regular navigations, we may need - // to error during build if we fail to insert it for some reason. - return originalHtml; - } - // The comment must be inserted after the doctype. - return originalHtml.replace(DOCTYPE_PREFIX, DOCTYPE_PREFIX + ''); -} //# sourceMappingURL=output-export-prefetch-encoding.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/hash.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// http://www.cse.yorku.ca/~oz/hash.html -// More specifically, 32-bit hash via djbxor -// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765) -// This is due to number type differences between rust for turbopack to js number types, -// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching -// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation -// as can gaurantee determinstic output from 32bit hash. -__turbopack_context__.s([ - "djb2Hash", - ()=>djb2Hash, - "hexHash", - ()=>hexHash -]); -function djb2Hash(str) { - let hash = 5381; - for(let i = 0; i < str.length; i++){ - const char = str.charCodeAt(i); - hash = (hash << 5) + hash + char & 0xffffffff; - } - return hash >>> 0; -} -function hexHash(str) { - return djb2Hash(str).toString(36).slice(0, 5); -} //# sourceMappingURL=hash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "computeCacheBustingSearchParam", - ()=>computeCacheBustingSearchParam -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$hash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/hash.js [app-rsc] (ecmascript)"); -; -function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) { - if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) { - return ''; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$hash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["hexHash"])([ - prefetchHeader || '0', - segmentPrefetchHeader || '0', - stateTreeHeader || '0', - nextUrlHeader || '0' - ].join(',')); -} //# sourceMappingURL=cache-busting-search-param.js.map -}), -"[project]/node_modules/next/dist/esm/server/stream-utils/node-web-streams-helper.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "chainStreams", - ()=>chainStreams, - "continueDynamicHTMLResume", - ()=>continueDynamicHTMLResume, - "continueDynamicPrerender", - ()=>continueDynamicPrerender, - "continueFizzStream", - ()=>continueFizzStream, - "continueStaticFallbackPrerender", - ()=>continueStaticFallbackPrerender, - "continueStaticPrerender", - ()=>continueStaticPrerender, - "createBufferedTransformStream", - ()=>createBufferedTransformStream, - "createDocumentClosingStream", - ()=>createDocumentClosingStream, - "createRootLayoutValidatorStream", - ()=>createRootLayoutValidatorStream, - "renderToInitialFizzStream", - ()=>renderToInitialFizzStream, - "streamFromBuffer", - ()=>streamFromBuffer, - "streamFromString", - ()=>streamFromString, - "streamToBuffer", - ()=>streamToBuffer, - "streamToString", - ()=>streamToString, - "streamToUint8Array", - ()=>streamToUint8Array -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/detached-promise.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/encoded-tags.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/uint8array-helpers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$errors$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/errors/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$output$2d$export$2d$prefetch$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/output-export-prefetch-encoding.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -function voidCatch() { -// this catcher is designed to be used with pipeTo where we expect the underlying -// pipe implementation to forward errors but we don't want the pipeTo promise to reject -// and be unhandled -} -// We can share the same encoder instance everywhere -// Notably we cannot do the same for TextDecoder because it is stateful -// when handling streaming data -const encoder = new TextEncoder(); -function chainStreams(...streams) { - // If we have no streams, return an empty stream. This behavior is - // intentional as we're now providing the `RenderResult.EMPTY` value. - if (streams.length === 0) { - return new ReadableStream({ - start (controller) { - controller.close(); - } - }); - } - // If we only have 1 stream we fast path it by returning just this stream - if (streams.length === 1) { - return streams[0]; - } - const { readable, writable } = new TransformStream(); - // We always initiate pipeTo immediately. We know we have at least 2 streams - // so we need to avoid closing the writable when this one finishes. - let promise = streams[0].pipeTo(writable, { - preventClose: true - }); - let i = 1; - for(; i < streams.length - 1; i++){ - const nextStream = streams[i]; - promise = promise.then(()=>nextStream.pipeTo(writable, { - preventClose: true - })); - } - // We can omit the length check because we halted before the last stream and there - // is at least two streams so the lastStream here will always be defined - const lastStream = streams[i]; - promise = promise.then(()=>lastStream.pipeTo(writable)); - // Catch any errors from the streams and ignore them, they will be handled - // by whatever is consuming the readable stream. - promise.catch(voidCatch); - return readable; -} -function streamFromString(str) { - return new ReadableStream({ - start (controller) { - controller.enqueue(encoder.encode(str)); - controller.close(); - } - }); -} -function streamFromBuffer(chunk) { - return new ReadableStream({ - start (controller) { - controller.enqueue(chunk); - controller.close(); - } - }); -} -async function streamToChunks(stream) { - const reader = stream.getReader(); - const chunks = []; - while(true){ - const { done, value } = await reader.read(); - if (done) { - break; - } - chunks.push(value); - } - return chunks; -} -function concatUint8Arrays(chunks) { - const totalLength = chunks.reduce((sum, chunk)=>sum + chunk.length, 0); - const result = new Uint8Array(totalLength); - let offset = 0; - for (const chunk of chunks){ - result.set(chunk, offset); - offset += chunk.length; - } - return result; -} -async function streamToUint8Array(stream) { - return concatUint8Arrays(await streamToChunks(stream)); -} -async function streamToBuffer(stream) { - return Buffer.concat(await streamToChunks(stream)); -} -async function streamToString(stream, signal) { - const decoder = new TextDecoder('utf-8', { - fatal: true - }); - let string = ''; - for await (const chunk of stream){ - if (signal == null ? void 0 : signal.aborted) { - return string; - } - string += decoder.decode(chunk, { - stream: true - }); - } - string += decoder.decode(); - return string; -} -function createBufferedTransformStream(options = {}) { - const { maxBufferByteLength = Infinity } = options; - let bufferedChunks = []; - let bufferByteLength = 0; - let pending; - const flush = (controller)=>{ - try { - if (bufferedChunks.length === 0) { - return; - } - const chunk = new Uint8Array(bufferByteLength); - let copiedBytes = 0; - for(let i = 0; i < bufferedChunks.length; i++){ - const bufferedChunk = bufferedChunks[i]; - chunk.set(bufferedChunk, copiedBytes); - copiedBytes += bufferedChunk.byteLength; - } - // We just wrote all the buffered chunks so we need to reset the bufferedChunks array - // and our bufferByteLength to prepare for the next round of buffered chunks - bufferedChunks.length = 0; - bufferByteLength = 0; - controller.enqueue(chunk); - } catch { - // If an error occurs while enqueuing, it can't be due to this - // transformer. It's most likely caused by the controller having been - // errored (for example, if the stream was cancelled). - } - }; - const scheduleFlush = (controller)=>{ - if (pending) { - return; - } - const detached = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - pending = detached; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleImmediate"])(()=>{ - try { - flush(controller); - } finally{ - pending = undefined; - detached.resolve(); - } - }); - }; - return new TransformStream({ - transform (chunk, controller) { - // Combine the previous buffer with the new chunk. - bufferedChunks.push(chunk); - bufferByteLength += chunk.byteLength; - if (bufferByteLength >= maxBufferByteLength) { - flush(controller); - } else { - scheduleFlush(controller); - } - }, - flush () { - return pending == null ? void 0 : pending.promise; - } - }); -} -function createPrefetchCommentStream(isBuildTimePrerendering, buildId) { - // Insert an extra comment at the beginning of the HTML document. This must - // come after the DOCTYPE, which is inserted by React. - // - // The first chunk sent by React will contain the doctype. After that, we can - // pass through the rest of the chunks as-is. - let didTransformFirstChunk = false; - return new TransformStream({ - transform (chunk, controller) { - if (isBuildTimePrerendering && !didTransformFirstChunk) { - didTransformFirstChunk = true; - const decoder = new TextDecoder('utf-8', { - fatal: true - }); - const chunkStr = decoder.decode(chunk, { - stream: true - }); - const updatedChunkStr = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$output$2d$export$2d$prefetch$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["insertBuildIdComment"])(chunkStr, buildId); - controller.enqueue(encoder.encode(updatedChunkStr)); - return; - } - controller.enqueue(chunk); - } - }); -} -function renderToInitialFizzStream({ ReactDOMServer, element, streamOptions }) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AppRenderSpan"].renderToReadableStream, async ()=>ReactDOMServer.renderToReadableStream(element, streamOptions)); -} -function createMetadataTransformStream(insert) { - let chunkIndex = -1; - let isMarkRemoved = false; - return new TransformStream({ - async transform (chunk, controller) { - let iconMarkIndex = -1; - let closedHeadIndex = -1; - chunkIndex++; - if (isMarkRemoved) { - controller.enqueue(chunk); - return; - } - let iconMarkLength = 0; - // Only search for the closed head tag once - if (iconMarkIndex === -1) { - iconMarkIndex = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].META.ICON_MARK); - if (iconMarkIndex === -1) { - controller.enqueue(chunk); - return; - } else { - // When we found the `` or `>`, checking the next char to ensure we cover both cases. - iconMarkLength = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].META.ICON_MARK.length; - // Check if next char is /, this is for xml mode. - if (chunk[iconMarkIndex + iconMarkLength] === 47) { - iconMarkLength += 2; - } else { - // The last char is `>` - iconMarkLength++; - } - } - } - // Check if icon mark is inside tag in the first chunk. - if (chunkIndex === 0) { - closedHeadIndex = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HEAD); - if (iconMarkIndex !== -1) { - // The mark icon is located in the 1st chunk before the head tag. - // We do not need to insert the script tag in this case because it's in the head. - // Just remove the icon mark from the chunk. - if (iconMarkIndex < closedHeadIndex) { - const replaced = new Uint8Array(chunk.length - iconMarkLength); - // Remove the icon mark from the chunk. - replaced.set(chunk.subarray(0, iconMarkIndex)); - replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex); - chunk = replaced; - } else { - // The icon mark is after the head tag, replace and insert the script tag at that position. - const insertion = await insert(); - const encodedInsertion = encoder.encode(insertion); - const insertionLength = encodedInsertion.length; - const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength); - replaced.set(chunk.subarray(0, iconMarkIndex)); - replaced.set(encodedInsertion, iconMarkIndex); - replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength); - chunk = replaced; - } - isMarkRemoved = true; - } - // If there's no icon mark located, it will be handled later when if present in the following chunks. - } else { - // When it's appeared in the following chunks, we'll need to - // remove the mark and then insert the script tag at that position. - const insertion = await insert(); - const encodedInsertion = encoder.encode(insertion); - const insertionLength = encodedInsertion.length; - // Replace the icon mark with the hoist script or empty string. - const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength); - // Set the first part of the chunk, before the icon mark. - replaced.set(chunk.subarray(0, iconMarkIndex)); - // Set the insertion after the icon mark. - replaced.set(encodedInsertion, iconMarkIndex); - // Set the rest of the chunk after the icon mark. - replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength); - chunk = replaced; - isMarkRemoved = true; - } - controller.enqueue(chunk); - } - }); -} -function createHeadInsertionTransformStream(insert) { - let inserted = false; - // We need to track if this transform saw any bytes because if it didn't - // we won't want to insert any server HTML at all - let hasBytes = false; - return new TransformStream({ - async transform (chunk, controller) { - hasBytes = true; - const insertion = await insert(); - if (inserted) { - if (insertion) { - const encodedInsertion = encoder.encode(insertion); - controller.enqueue(encodedInsertion); - } - controller.enqueue(chunk); - } else { - // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for. - const index = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HEAD); - // In fully static rendering or non PPR rendering cases: - // `/head>` will always be found in the chunk in first chunk rendering. - if (index !== -1) { - if (insertion) { - const encodedInsertion = encoder.encode(insertion); - // Get the total count of the bytes in the chunk and the insertion - // e.g. - // chunk = - // insertion = - // output = [ ] - const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length); - // Append the first part of the chunk, before the head tag - insertedHeadContent.set(chunk.slice(0, index)); - // Append the server inserted content - insertedHeadContent.set(encodedInsertion, index); - // Append the rest of the chunk - insertedHeadContent.set(chunk.slice(index), index + encodedInsertion.length); - controller.enqueue(insertedHeadContent); - } else { - controller.enqueue(chunk); - } - inserted = true; - } else { - // This will happens in PPR rendering during next start, when the page is partially rendered. - // When the page resumes, the head tag will be found in the middle of the chunk. - // Where we just need to append the insertion and chunk to the current stream. - // e.g. - // PPR-static: ... [ resume content ] - // PPR-resume: [ insertion ] [ rest content ] - if (insertion) { - controller.enqueue(encoder.encode(insertion)); - } - controller.enqueue(chunk); - inserted = true; - } - } - }, - async flush (controller) { - // Check before closing if there's anything remaining to insert. - if (hasBytes) { - const insertion = await insert(); - if (insertion) { - controller.enqueue(encoder.encode(insertion)); - } - } - } - }); -} -function createClientResumeScriptInsertionTransformStream() { - const segmentPath = '/_full'; - const cacheBustingHeader = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["computeCacheBustingSearchParam"])('1', '/_full', undefined, undefined // headers[NEXT_URL] - ); - const searchStr = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]}=${cacheBustingHeader}`; - const NEXT_CLIENT_RESUME_SCRIPT = ``; - let didAlreadyInsert = false; - return new TransformStream({ - transform (chunk, controller) { - if (didAlreadyInsert) { - // Already inserted the script into the head. Pass through. - controller.enqueue(chunk); - return; - } - // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for. - const headClosingTagIndex = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HEAD); - if (headClosingTagIndex === -1) { - // In fully static rendering or non PPR rendering cases: - // `/head>` will always be found in the chunk in first chunk rendering. - controller.enqueue(chunk); - return; - } - const encodedInsertion = encoder.encode(NEXT_CLIENT_RESUME_SCRIPT); - // Get the total count of the bytes in the chunk and the insertion - // e.g. - // chunk = - // insertion = - // output = [ ] - const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length); - // Append the first part of the chunk, before the head tag - insertedHeadContent.set(chunk.slice(0, headClosingTagIndex)); - // Append the server inserted content - insertedHeadContent.set(encodedInsertion, headClosingTagIndex); - // Append the rest of the chunk - insertedHeadContent.set(chunk.slice(headClosingTagIndex), headClosingTagIndex + encodedInsertion.length); - controller.enqueue(insertedHeadContent); - didAlreadyInsert = true; - } - }); -} -// Suffix after main body content - scripts before , -// but wait for the major chunks to be enqueued. -function createDeferredSuffixStream(suffix) { - let flushed = false; - let pending; - const flush = (controller)=>{ - const detached = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - pending = detached; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleImmediate"])(()=>{ - try { - controller.enqueue(encoder.encode(suffix)); - } catch { - // If an error occurs while enqueuing it can't be due to this - // transformers fault. It's likely due to the controller being - // errored due to the stream being cancelled. - } finally{ - pending = undefined; - detached.resolve(); - } - }); - }; - return new TransformStream({ - transform (chunk, controller) { - controller.enqueue(chunk); - // If we've already flushed, we're done. - if (flushed) return; - // Schedule the flush to happen. - flushed = true; - flush(controller); - }, - flush (controller) { - if (pending) return pending.promise; - if (flushed) return; - // Flush now. - controller.enqueue(encoder.encode(suffix)); - } - }); -} -function createFlightDataInjectionTransformStream(stream, delayDataUntilFirstHtmlChunk) { - let htmlStreamFinished = false; - let pull = null; - let donePulling = false; - function startOrContinuePulling(controller) { - if (!pull) { - pull = startPulling(controller); - } - return pull; - } - async function startPulling(controller) { - const reader = stream.getReader(); - if (delayDataUntilFirstHtmlChunk) { - // NOTE: streaming flush - // We are buffering here for the inlined data stream because the - // "shell" stream might be chunkenized again by the underlying stream - // implementation, e.g. with a specific high-water mark. To ensure it's - // the safe timing to pipe the data stream, this extra tick is - // necessary. - // We don't start reading until we've left the current Task to ensure - // that it's inserted after flushing the shell. Note that this implementation - // might get stale if impl details of Fizz change in the future. - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["atLeastOneTask"])(); - } - try { - while(true){ - const { done, value } = await reader.read(); - if (done) { - donePulling = true; - return; - } - // We want to prioritize HTML over RSC data. - // The SSR render is based on the same RSC stream, so when we get a new RSC chunk, - // we're likely to produce an HTML chunk as well, so give it a chance to flush first. - if (!delayDataUntilFirstHtmlChunk && !htmlStreamFinished) { - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["atLeastOneTask"])(); - } - controller.enqueue(value); - } - } catch (err) { - controller.error(err); - } - } - return new TransformStream({ - start (controller) { - if (!delayDataUntilFirstHtmlChunk) { - startOrContinuePulling(controller); - } - }, - transform (chunk, controller) { - controller.enqueue(chunk); - // Start the streaming if it hasn't already been started yet. - if (delayDataUntilFirstHtmlChunk) { - startOrContinuePulling(controller); - } - }, - flush (controller) { - htmlStreamFinished = true; - if (donePulling) { - return; - } - return startOrContinuePulling(controller); - } - }); -} -const CLOSE_TAG = ''; -/** - * This transform stream moves the suffix to the end of the stream, so results - * like `` will be transformed to - * ``. - */ function createMoveSuffixStream() { - let foundSuffix = false; - return new TransformStream({ - transform (chunk, controller) { - if (foundSuffix) { - return controller.enqueue(chunk); - } - const index = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML); - if (index > -1) { - foundSuffix = true; - // If the whole chunk is the suffix, then don't write anything, it will - // be written in the flush. - if (chunk.length === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML.length) { - return; - } - // Write out the part before the suffix. - const before = chunk.slice(0, index); - controller.enqueue(before); - // In the case where the suffix is in the middle of the chunk, we need - // to split the chunk into two parts. - if (chunk.length > __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML.length + index) { - // Write out the part after the suffix. - const after = chunk.slice(index + __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML.length); - controller.enqueue(after); - } - } else { - controller.enqueue(chunk); - } - }, - flush (controller) { - // Even if we didn't find the suffix, the HTML is not valid if we don't - // add it, so insert it at the end. - controller.enqueue(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML); - } - }); -} -function createStripDocumentClosingTagsTransform() { - return new TransformStream({ - transform (chunk, controller) { - // We rely on the assumption that chunks will never break across a code unit. - // This is reasonable because we currently concat all of React's output from a single - // flush into one chunk before streaming it forward which means the chunk will represent - // a single coherent utf-8 string. This is not safe to use if we change our streaming to no - // longer do this large buffered chunk - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isEquivalentUint8Arrays"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isEquivalentUint8Arrays"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isEquivalentUint8Arrays"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HTML)) { - // the entire chunk is the closing tags; return without enqueueing anything. - return; - } - // We assume these tags will go at together at the end of the document and that - // they won't appear anywhere else in the document. This is not really a safe assumption - // but until we revamp our streaming infra this is a performant way to string the tags - chunk = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removeFromUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY); - chunk = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removeFromUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.HTML); - controller.enqueue(chunk); - } - }); -} -function createRootLayoutValidatorStream() { - let foundHtml = false; - let foundBody = false; - return new TransformStream({ - async transform (chunk, controller) { - // Peek into the streamed chunk to see if the tags are present. - if (!foundHtml && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].OPENING.HTML) > -1) { - foundHtml = true; - } - if (!foundBody && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$uint8array$2d$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["indexOfUint8Array"])(chunk, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].OPENING.BODY) > -1) { - foundBody = true; - } - controller.enqueue(chunk); - }, - flush (controller) { - const missingTags = []; - if (!foundHtml) missingTags.push('html'); - if (!foundBody) missingTags.push('body'); - if (!missingTags.length) return; - controller.enqueue(encoder.encode(` - - `)); - } - }); -} -function chainTransformers(readable, transformers) { - let stream = readable; - for (const transformer of transformers){ - if (!transformer) continue; - stream = stream.pipeThrough(transformer); - } - return stream; -} -async function continueFizzStream(renderStream, { suffix, inlinedDataStream, isStaticGeneration, isBuildTimePrerendering, buildId, getServerInsertedHTML, getServerInsertedMetadata, validateRootLayout }) { - // Suffix itself might contain close tags at the end, so we need to split it. - const suffixUnclosed = suffix ? suffix.split(CLOSE_TAG, 1)[0] : null; - if (isStaticGeneration) { - // If we're generating static HTML we need to wait for it to resolve before continuing. - await renderStream.allReady; - } else { - // Otherwise, we want to make sure Fizz is done with all microtasky work - // before we start pulling the stream and cause a flush. - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])(); - } - return chainTransformers(renderStream, [ - // Buffer everything to avoid flushing too frequently - createBufferedTransformStream(), - // Add build id comment to start of the HTML document (in export mode) - createPrefetchCommentStream(isBuildTimePrerendering, buildId), - // Transform metadata - createMetadataTransformStream(getServerInsertedMetadata), - // Insert suffix content - suffixUnclosed != null && suffixUnclosed.length > 0 ? createDeferredSuffixStream(suffixUnclosed) : null, - // Insert the inlined data (Flight data, form state, etc.) stream into the HTML - inlinedDataStream ? createFlightDataInjectionTransformStream(inlinedDataStream, true) : null, - // Validate the root layout for missing html or body tags - validateRootLayout ? createRootLayoutValidatorStream() : null, - // Close tags should always be deferred to the end - createMoveSuffixStream(), - // Special head insertions - // TODO-APP: Insert server side html to end of head in app layout rendering, to avoid - // hydration errors. Remove this once it's ready to be handled by react itself. - createHeadInsertionTransformStream(getServerInsertedHTML) - ]); -} -async function continueDynamicPrerender(prerenderStream, { getServerInsertedHTML, getServerInsertedMetadata }) { - return prerenderStream // Buffer everything to avoid flushing too frequently - .pipeThrough(createBufferedTransformStream()).pipeThrough(createStripDocumentClosingTagsTransform()) // Insert generated tags to head - .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML)) // Transform metadata - .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata)); -} -async function continueStaticPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, isBuildTimePrerendering, buildId }) { - return prerenderStream // Buffer everything to avoid flushing too frequently - .pipeThrough(createBufferedTransformStream()) // Add build id comment to start of the HTML document (in export mode) - .pipeThrough(createPrefetchCommentStream(isBuildTimePrerendering, buildId)) // Insert generated tags to head - .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML)) // Transform metadata - .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata)) // Insert the inlined data (Flight data, form state, etc.) stream into the HTML - .pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, true)) // Close tags should always be deferred to the end - .pipeThrough(createMoveSuffixStream()); -} -async function continueStaticFallbackPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, isBuildTimePrerendering, buildId }) { - // Same as `continueStaticPrerender`, but also inserts an additional script - // to instruct the client to start fetching the hydration data as early - // as possible. - return prerenderStream // Buffer everything to avoid flushing too frequently - .pipeThrough(createBufferedTransformStream()) // Add build id comment to start of the HTML document (in export mode) - .pipeThrough(createPrefetchCommentStream(isBuildTimePrerendering, buildId)) // Insert generated tags to head - .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML)) // Insert the client resume script into the head - .pipeThrough(createClientResumeScriptInsertionTransformStream()) // Transform metadata - .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata)) // Insert the inlined data (Flight data, form state, etc.) stream into the HTML - .pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, true)) // Close tags should always be deferred to the end - .pipeThrough(createMoveSuffixStream()); -} -async function continueDynamicHTMLResume(renderStream, { delayDataUntilFirstHtmlChunk, inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata }) { - return renderStream // Buffer everything to avoid flushing too frequently - .pipeThrough(createBufferedTransformStream()) // Insert generated tags to head - .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML)) // Transform metadata - .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata)) // Insert the inlined data (Flight data, form state, etc.) stream into the HTML - .pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, delayDataUntilFirstHtmlChunk)) // Close tags should always be deferred to the end - .pipeThrough(createMoveSuffixStream()); -} -function createDocumentClosingStream() { - return streamFromString(CLOSE_TAG); -} //# sourceMappingURL=node-web-streams-helper.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HEAD_REQUEST_KEY", - ()=>HEAD_REQUEST_KEY, - "ROOT_SEGMENT_REQUEST_KEY", - ()=>ROOT_SEGMENT_REQUEST_KEY, - "appendSegmentRequestKeyPart", - ()=>appendSegmentRequestKeyPart, - "convertSegmentPathToStaticExportFilename", - ()=>convertSegmentPathToStaticExportFilename, - "createSegmentRequestKeyPart", - ()=>createSegmentRequestKeyPart -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -; -const ROOT_SEGMENT_REQUEST_KEY = ''; -const HEAD_REQUEST_KEY = '/_head'; -function createSegmentRequestKeyPart(segment) { - if (typeof segment === 'string') { - if (segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - // The Flight Router State type sometimes includes the search params in - // the page segment. However, the Segment Cache tracks this as a separate - // key. So, we strip the search params here, and then add them back when - // the cache entry is turned back into a FlightRouterState. This is an - // unfortunate consequence of the FlightRouteState being used both as a - // transport type and as a cache key; we'll address this once more of the - // Segment Cache implementation has settled. - // TODO: We should hoist the search params out of the FlightRouterState - // type entirely, This is our plan for dynamic route params, too. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - } - const safeName = // But params typically don't include the leading slash. We should use - // a different encoding to avoid this special case. - segment === '/_not-found' ? '_not-found' : encodeToFilesystemAndURLSafeString(segment); - // Since this is not a dynamic segment, it's fully encoded. It does not - // need to be "hydrated" with a param value. - return safeName; - } - const name = segment[0]; - const paramType = segment[2]; - const safeName = encodeToFilesystemAndURLSafeString(name); - const encodedName = '$' + paramType + '$' + safeName; - return encodedName; -} -function appendSegmentRequestKeyPart(parentRequestKey, parallelRouteKey, childRequestKeyPart) { - // Aside from being filesystem safe, segment keys are also designed so that - // each segment and parallel route creates its own subdirectory. Roughly in - // the same shape as the source app directory. This is mostly just for easier - // debugging (you can open up the build folder and navigate the output); if - // we wanted to do we could just use a flat structure. - // Omit the parallel route key for children, since this is the most - // common case. Saves some bytes (and it's what the app directory does). - const slotKey = parallelRouteKey === 'children' ? childRequestKeyPart : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`; - return parentRequestKey + '/' + slotKey; -} -// Define a regex pattern to match the most common characters found in a route -// param. It excludes anything that might not be cross-platform filesystem -// compatible, like |. It does not need to be precise because the fallback is to -// just base64url-encode the whole parameter, which is fine; we just don't do it -// by default for compactness, and for easier debugging. -const simpleParamValueRegex = /^[a-zA-Z0-9\-_@]+$/; -function encodeToFilesystemAndURLSafeString(value) { - if (simpleParamValueRegex.test(value)) { - return value; - } - // If there are any unsafe characters, base64url-encode the entire value. - // We also add a ! prefix so it doesn't collide with the simple case. - const base64url = btoa(value).replace(/\+/g, '-') // Replace '+' with '-' - .replace(/\//g, '_') // Replace '/' with '_' - .replace(/=+$/, '') // Remove trailing '=' - ; - return '!' + base64url; -} -function convertSegmentPathToStaticExportFilename(segmentPath) { - return `__next${segmentPath.replace(/\//g, '.')}.txt`; -} //# sourceMappingURL=segment-value-encoding.js.map -}), -"[project]/node_modules/next/dist/compiled/string-hash/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 328: (e)=>{ - function hash(e) { - var r = 5381, _ = e.length; - while(_){ - r = r * 33 ^ e.charCodeAt(--_); - } - return r >>> 0; - } - e.exports = hash; - } - }; - var r = {}; - function __nccwpck_require__(_) { - var a = r[_]; - if (a !== undefined) { - return a.exports; - } - var t = r[_] = { - exports: {} - }; - var i = true; - try { - e[_](t, t.exports, __nccwpck_require__); - i = false; - } finally{ - if (i) delete r[_]; - } - return t.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/string-hash") + "/"; - var _ = __nccwpck_require__(328); - module.exports = _; -})(); -}), -"[project]/node_modules/next/dist/esm/lib/format-server-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "formatServerError", - ()=>formatServerError, - "getStackWithoutErrorMessage", - ()=>getStackWithoutErrorMessage -]); -const invalidServerComponentReactHooks = [ - 'useDeferredValue', - 'useEffect', - 'useImperativeHandle', - 'useInsertionEffect', - 'useLayoutEffect', - 'useReducer', - 'useRef', - 'useState', - 'useSyncExternalStore', - 'useTransition', - 'experimental_useOptimistic', - 'useOptimistic' -]; -function setMessage(error, message) { - error.message = message; - if (error.stack) { - const lines = error.stack.split('\n'); - lines[0] = message; - error.stack = lines.join('\n'); - } -} -function getStackWithoutErrorMessage(error) { - const stack = error.stack; - if (!stack) return ''; - return stack.replace(/^[^\n]*\n/, ''); -} -function formatServerError(error) { - if (typeof (error == null ? void 0 : error.message) !== 'string') return; - if (error.message.includes('Class extends value undefined is not a constructor or null')) { - const addedMessage = 'This might be caused by a React Class Component being rendered in a Server Component, React Class Components only works in Client Components. Read more: https://nextjs.org/docs/messages/class-component-in-server-component'; - // If this error instance already has the message, don't add it again - if (error.message.includes(addedMessage)) return; - setMessage(error, `${error.message} - -${addedMessage}`); - return; - } - if (error.message.includes('createContext is not a function')) { - setMessage(error, 'createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/context-in-server-component'); - return; - } - for (const clientHook of invalidServerComponentReactHooks){ - const regex = new RegExp(`\\b${clientHook}\\b.*is not a function`); - if (regex.test(error.message)) { - setMessage(error, `${clientHook} only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/react-client-hook-in-server-component`); - return; - } - } -} //# sourceMappingURL=format-server-error.js.map -}), -"[project]/node_modules/next/dist/esm/server/request-meta.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// FIXME: (wyattjoh) this is a temporary solution to allow us to pass data between bundled modules -__turbopack_context__.s([ - "NEXT_REQUEST_META", - ()=>NEXT_REQUEST_META, - "addRequestMeta", - ()=>addRequestMeta, - "getRequestMeta", - ()=>getRequestMeta, - "removeRequestMeta", - ()=>removeRequestMeta, - "setRequestMeta", - ()=>setRequestMeta -]); -const NEXT_REQUEST_META = Symbol.for('NextInternalRequestMeta'); -function getRequestMeta(req, key) { - const meta = req[NEXT_REQUEST_META] || {}; - return typeof key === 'string' ? meta[key] : meta; -} -function setRequestMeta(req, meta) { - req[NEXT_REQUEST_META] = meta; - return meta; -} -function addRequestMeta(request, key, value) { - const meta = getRequestMeta(request); - meta[key] = value; - return setRequestMeta(request, meta); -} -function removeRequestMeta(request, key) { - const meta = getRequestMeta(request); - delete meta[key]; - return setRequestMeta(request, meta); -} //# sourceMappingURL=request-meta.js.map -}), -"[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ACTION_SUFFIX", - ()=>ACTION_SUFFIX, - "APP_DIR_ALIAS", - ()=>APP_DIR_ALIAS, - "CACHE_ONE_YEAR", - ()=>CACHE_ONE_YEAR, - "DOT_NEXT_ALIAS", - ()=>DOT_NEXT_ALIAS, - "ESLINT_DEFAULT_DIRS", - ()=>ESLINT_DEFAULT_DIRS, - "GSP_NO_RETURNED_VALUE", - ()=>GSP_NO_RETURNED_VALUE, - "GSSP_COMPONENT_MEMBER_ERROR", - ()=>GSSP_COMPONENT_MEMBER_ERROR, - "GSSP_NO_RETURNED_VALUE", - ()=>GSSP_NO_RETURNED_VALUE, - "HTML_CONTENT_TYPE_HEADER", - ()=>HTML_CONTENT_TYPE_HEADER, - "INFINITE_CACHE", - ()=>INFINITE_CACHE, - "INSTRUMENTATION_HOOK_FILENAME", - ()=>INSTRUMENTATION_HOOK_FILENAME, - "JSON_CONTENT_TYPE_HEADER", - ()=>JSON_CONTENT_TYPE_HEADER, - "MATCHED_PATH_HEADER", - ()=>MATCHED_PATH_HEADER, - "MIDDLEWARE_FILENAME", - ()=>MIDDLEWARE_FILENAME, - "MIDDLEWARE_LOCATION_REGEXP", - ()=>MIDDLEWARE_LOCATION_REGEXP, - "NEXT_BODY_SUFFIX", - ()=>NEXT_BODY_SUFFIX, - "NEXT_CACHE_IMPLICIT_TAG_ID", - ()=>NEXT_CACHE_IMPLICIT_TAG_ID, - "NEXT_CACHE_REVALIDATED_TAGS_HEADER", - ()=>NEXT_CACHE_REVALIDATED_TAGS_HEADER, - "NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER", - ()=>NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER, - "NEXT_CACHE_SOFT_TAG_MAX_LENGTH", - ()=>NEXT_CACHE_SOFT_TAG_MAX_LENGTH, - "NEXT_CACHE_TAGS_HEADER", - ()=>NEXT_CACHE_TAGS_HEADER, - "NEXT_CACHE_TAG_MAX_ITEMS", - ()=>NEXT_CACHE_TAG_MAX_ITEMS, - "NEXT_CACHE_TAG_MAX_LENGTH", - ()=>NEXT_CACHE_TAG_MAX_LENGTH, - "NEXT_DATA_SUFFIX", - ()=>NEXT_DATA_SUFFIX, - "NEXT_INTERCEPTION_MARKER_PREFIX", - ()=>NEXT_INTERCEPTION_MARKER_PREFIX, - "NEXT_META_SUFFIX", - ()=>NEXT_META_SUFFIX, - "NEXT_QUERY_PARAM_PREFIX", - ()=>NEXT_QUERY_PARAM_PREFIX, - "NEXT_RESUME_HEADER", - ()=>NEXT_RESUME_HEADER, - "NON_STANDARD_NODE_ENV", - ()=>NON_STANDARD_NODE_ENV, - "PAGES_DIR_ALIAS", - ()=>PAGES_DIR_ALIAS, - "PRERENDER_REVALIDATE_HEADER", - ()=>PRERENDER_REVALIDATE_HEADER, - "PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER", - ()=>PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER, - "PROXY_FILENAME", - ()=>PROXY_FILENAME, - "PROXY_LOCATION_REGEXP", - ()=>PROXY_LOCATION_REGEXP, - "PUBLIC_DIR_MIDDLEWARE_CONFLICT", - ()=>PUBLIC_DIR_MIDDLEWARE_CONFLICT, - "ROOT_DIR_ALIAS", - ()=>ROOT_DIR_ALIAS, - "RSC_ACTION_CLIENT_WRAPPER_ALIAS", - ()=>RSC_ACTION_CLIENT_WRAPPER_ALIAS, - "RSC_ACTION_ENCRYPTION_ALIAS", - ()=>RSC_ACTION_ENCRYPTION_ALIAS, - "RSC_ACTION_PROXY_ALIAS", - ()=>RSC_ACTION_PROXY_ALIAS, - "RSC_ACTION_VALIDATE_ALIAS", - ()=>RSC_ACTION_VALIDATE_ALIAS, - "RSC_CACHE_WRAPPER_ALIAS", - ()=>RSC_CACHE_WRAPPER_ALIAS, - "RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS", - ()=>RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS, - "RSC_MOD_REF_PROXY_ALIAS", - ()=>RSC_MOD_REF_PROXY_ALIAS, - "RSC_SEGMENTS_DIR_SUFFIX", - ()=>RSC_SEGMENTS_DIR_SUFFIX, - "RSC_SEGMENT_SUFFIX", - ()=>RSC_SEGMENT_SUFFIX, - "RSC_SUFFIX", - ()=>RSC_SUFFIX, - "SERVER_PROPS_EXPORT_ERROR", - ()=>SERVER_PROPS_EXPORT_ERROR, - "SERVER_PROPS_GET_INIT_PROPS_CONFLICT", - ()=>SERVER_PROPS_GET_INIT_PROPS_CONFLICT, - "SERVER_PROPS_SSG_CONFLICT", - ()=>SERVER_PROPS_SSG_CONFLICT, - "SERVER_RUNTIME", - ()=>SERVER_RUNTIME, - "SSG_FALLBACK_EXPORT_ERROR", - ()=>SSG_FALLBACK_EXPORT_ERROR, - "SSG_GET_INITIAL_PROPS_CONFLICT", - ()=>SSG_GET_INITIAL_PROPS_CONFLICT, - "STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR", - ()=>STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR, - "TEXT_PLAIN_CONTENT_TYPE_HEADER", - ()=>TEXT_PLAIN_CONTENT_TYPE_HEADER, - "UNSTABLE_REVALIDATE_RENAME_ERROR", - ()=>UNSTABLE_REVALIDATE_RENAME_ERROR, - "WEBPACK_LAYERS", - ()=>WEBPACK_LAYERS, - "WEBPACK_RESOURCE_QUERIES", - ()=>WEBPACK_RESOURCE_QUERIES, - "WEB_SOCKET_MAX_RECONNECTIONS", - ()=>WEB_SOCKET_MAX_RECONNECTIONS -]); -const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'; -const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'; -const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'; -const NEXT_QUERY_PARAM_PREFIX = 'nxtP'; -const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'; -const MATCHED_PATH_HEADER = 'x-matched-path'; -const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'; -const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER = 'x-prerender-revalidate-if-generated'; -const RSC_SEGMENTS_DIR_SUFFIX = '.segments'; -const RSC_SEGMENT_SUFFIX = '.segment.rsc'; -const RSC_SUFFIX = '.rsc'; -const ACTION_SUFFIX = '.action'; -const NEXT_DATA_SUFFIX = '.json'; -const NEXT_META_SUFFIX = '.meta'; -const NEXT_BODY_SUFFIX = '.body'; -const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'; -const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'; -const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER = 'x-next-revalidate-tag-token'; -const NEXT_RESUME_HEADER = 'next-resume'; -const NEXT_CACHE_TAG_MAX_ITEMS = 128; -const NEXT_CACHE_TAG_MAX_LENGTH = 256; -const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024; -const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'; -const CACHE_ONE_YEAR = 31536000; -const INFINITE_CACHE = 0xfffffffe; -const MIDDLEWARE_FILENAME = 'middleware'; -const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`; -const PROXY_FILENAME = 'proxy'; -const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`; -const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'; -const PAGES_DIR_ALIAS = 'private-next-pages'; -const DOT_NEXT_ALIAS = 'private-dot-next'; -const ROOT_DIR_ALIAS = 'private-next-root-dir'; -const APP_DIR_ALIAS = 'private-next-app-dir'; -const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'; -const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'; -const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'; -const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'; -const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS = 'private-next-rsc-track-dynamic-import'; -const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'; -const RSC_ACTION_CLIENT_WRAPPER_ALIAS = 'private-next-rsc-action-client-wrapper'; -const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`; -const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`; -const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`; -const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`; -const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`; -const SERVER_PROPS_EXPORT_ERROR = `pages with \`getServerSideProps\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`; -const GSP_NO_RETURNED_VALUE = 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'; -const GSSP_NO_RETURNED_VALUE = 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'; -const UNSTABLE_REVALIDATE_RENAME_ERROR = 'The `unstable_revalidate` property is available for general use.\n' + 'Please use `revalidate` instead.'; -const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`; -const NON_STANDARD_NODE_ENV = `You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`; -const SSG_FALLBACK_EXPORT_ERROR = `Pages with \`fallback\` enabled in \`getStaticPaths\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`; -const ESLINT_DEFAULT_DIRS = [ - 'app', - 'pages', - 'components', - 'lib', - 'src' -]; -const SERVER_RUNTIME = { - edge: 'edge', - experimentalEdge: 'experimental-edge', - nodejs: 'nodejs' -}; -const WEB_SOCKET_MAX_RECONNECTIONS = 12; -/** - * The names of the webpack layers. These layers are the primitives for the - * webpack chunks. - */ const WEBPACK_LAYERS_NAMES = { - /** - * The layer for the shared code between the client and server bundles. - */ shared: 'shared', - /** - * The layer for server-only runtime and picking up `react-server` export conditions. - * Including app router RSC pages and app router custom routes and metadata routes. - */ reactServerComponents: 'rsc', - /** - * Server Side Rendering layer for app (ssr). - */ serverSideRendering: 'ssr', - /** - * The browser client bundle layer for actions. - */ actionBrowser: 'action-browser', - /** - * The Node.js bundle layer for the API routes. - */ apiNode: 'api-node', - /** - * The Edge Lite bundle layer for the API routes. - */ apiEdge: 'api-edge', - /** - * The layer for the middleware code. - */ middleware: 'middleware', - /** - * The layer for the instrumentation hooks. - */ instrument: 'instrument', - /** - * The layer for assets on the edge. - */ edgeAsset: 'edge-asset', - /** - * The browser client bundle layer for App directory. - */ appPagesBrowser: 'app-pages-browser', - /** - * The browser client bundle layer for Pages directory. - */ pagesDirBrowser: 'pages-dir-browser', - /** - * The Edge Lite bundle layer for Pages directory. - */ pagesDirEdge: 'pages-dir-edge', - /** - * The Node.js bundle layer for Pages directory. - */ pagesDirNode: 'pages-dir-node' -}; -const WEBPACK_LAYERS = { - ...WEBPACK_LAYERS_NAMES, - GROUP: { - builtinReact: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser - ], - serverOnly: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - neutralTarget: [ - // pages api - WEBPACK_LAYERS_NAMES.apiNode, - WEBPACK_LAYERS_NAMES.apiEdge - ], - clientOnly: [ - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser - ], - bundled: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.shared, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - appPages: [ - // app router pages and layouts - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.actionBrowser - ] - } -}; -const WEBPACK_RESOURCE_QUERIES = { - edgeSSREntry: '__next_edge_ssr_entry__', - metadata: '__next_metadata__', - metadataRoute: '__next_metadata_route__', - metadataImageMeta: '__next_metadata_image_meta__' -}; -; - //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "fromNodeOutgoingHttpHeaders", - ()=>fromNodeOutgoingHttpHeaders, - "normalizeNextQueryParam", - ()=>normalizeNextQueryParam, - "splitCookiesString", - ()=>splitCookiesString, - "toNodeOutgoingHttpHeaders", - ()=>toNodeOutgoingHttpHeaders, - "validateURL", - ()=>validateURL -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -; -function fromNodeOutgoingHttpHeaders(nodeHeaders) { - const headers = new Headers(); - for (let [key, value] of Object.entries(nodeHeaders)){ - const values = Array.isArray(value) ? value : [ - value - ]; - for (let v of values){ - if (typeof v === 'undefined') continue; - if (typeof v === 'number') { - v = v.toString(); - } - headers.append(key, v); - } - } - return headers; -} -function splitCookiesString(cookiesString) { - var cookiesStrings = []; - var pos = 0; - var start; - var ch; - var lastComma; - var nextStart; - var cookiesSeparatorFound; - function skipWhitespace() { - while(pos < cookiesString.length && /\s/.test(cookiesString.charAt(pos))){ - pos += 1; - } - return pos < cookiesString.length; - } - function notSpecialChar() { - ch = cookiesString.charAt(pos); - return ch !== '=' && ch !== ';' && ch !== ','; - } - while(pos < cookiesString.length){ - start = pos; - cookiesSeparatorFound = false; - while(skipWhitespace()){ - ch = cookiesString.charAt(pos); - if (ch === ',') { - // ',' is a cookie separator if we have later first '=', not ';' or ',' - lastComma = pos; - pos += 1; - skipWhitespace(); - nextStart = pos; - while(pos < cookiesString.length && notSpecialChar()){ - pos += 1; - } - // currently special character - if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') { - // we found cookies separator - cookiesSeparatorFound = true; - // pos is inside the next cookie, so back up and return it. - pos = nextStart; - cookiesStrings.push(cookiesString.substring(start, lastComma)); - start = pos; - } else { - // in param ',' or param separator ';', - // we continue from that comma - pos = lastComma + 1; - } - } else { - pos += 1; - } - } - if (!cookiesSeparatorFound || pos >= cookiesString.length) { - cookiesStrings.push(cookiesString.substring(start, cookiesString.length)); - } - } - return cookiesStrings; -} -function toNodeOutgoingHttpHeaders(headers) { - const nodeHeaders = {}; - const cookies = []; - if (headers) { - for (const [key, value] of headers.entries()){ - if (key.toLowerCase() === 'set-cookie') { - // We may have gotten a comma joined string of cookies, or multiple - // set-cookie headers. We need to merge them into one header array - // to represent all the cookies. - cookies.push(...splitCookiesString(value)); - nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies; - } else { - nodeHeaders[key] = value; - } - } - } - return nodeHeaders; -} -function validateURL(url) { - try { - return String(new URL(String(url))); - } catch (error) { - throw Object.defineProperty(new Error(`URL is malformed "${String(url)}". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`, { - cause: error - }), "__NEXT_ERROR_CODE", { - value: "E61", - enumerable: false, - configurable: true - }); - } -} -function normalizeNextQueryParam(key) { - const prefixes = [ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_QUERY_PARAM_PREFIX"], - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_INTERCEPTION_MARKER_PREFIX"] - ]; - for (const prefix of prefixes){ - if (key !== prefix && key.startsWith(prefix)) { - return key.substring(prefix.length); - } - } - return null; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/i18n/detect-domain-locale.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "detectDomainLocale", - ()=>detectDomainLocale -]); -function detectDomainLocale(domainItems, hostname, detectedLocale) { - if (!domainItems) return; - if (detectedLocale) { - detectedLocale = detectedLocale.toLowerCase(); - } - for (const item of domainItems){ - // remove port if present - const domainHostname = item.domain?.split(':', 1)[0].toLowerCase(); - if (hostname === domainHostname || detectedLocale === item.defaultLocale.toLowerCase() || item.locales?.some((locale)=>locale.toLowerCase() === detectedLocale)) { - return item; - } - } -} //# sourceMappingURL=detect-domain-locale.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Removes the trailing slash for a given route or page path. Preserves the - * root page. Examples: - * - `/foo/bar/` -> `/foo/bar` - * - `/foo/bar` -> `/foo/bar` - * - `/` -> `/` - */ __turbopack_context__.s([ - "removeTrailingSlash", - ()=>removeTrailingSlash -]); -function removeTrailingSlash(route) { - return route.replace(/\/$/, '') || '/'; -} //# sourceMappingURL=remove-trailing-slash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Given a path this function will find the pathname, query and hash and return - * them. This is useful to parse full paths on the client side. - * @param path A path to parse e.g. /foo/bar?id=1#hash - */ __turbopack_context__.s([ - "parsePath", - ()=>parsePath -]); -function parsePath(path) { - const hashIndex = path.indexOf('#'); - const queryIndex = path.indexOf('?'); - const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex); - if (hasQuery || hashIndex > -1) { - return { - pathname: path.substring(0, hasQuery ? queryIndex : hashIndex), - query: hasQuery ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined) : '', - hash: hashIndex > -1 ? path.slice(hashIndex) : '' - }; - } - return { - pathname: path, - query: '', - hash: '' - }; -} //# sourceMappingURL=parse-path.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-prefix.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "addPathPrefix", - ()=>addPathPrefix -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js [app-rsc] (ecmascript)"); -; -function addPathPrefix(path, prefix) { - if (!path.startsWith('/') || !prefix) { - return path; - } - const { pathname, query, hash } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parsePath"])(path); - return `${prefix}${pathname}${query}${hash}`; -} //# sourceMappingURL=add-path-prefix.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-suffix.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "addPathSuffix", - ()=>addPathSuffix -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js [app-rsc] (ecmascript)"); -; -function addPathSuffix(path, suffix) { - if (!path.startsWith('/') || !suffix) { - return path; - } - const { pathname, query, hash } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parsePath"])(path); - return `${pathname}${suffix}${query}${hash}`; -} //# sourceMappingURL=add-path-suffix.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "pathHasPrefix", - ()=>pathHasPrefix -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-path.js [app-rsc] (ecmascript)"); -; -function pathHasPrefix(path, prefix) { - if (typeof path !== 'string') { - return false; - } - const { pathname } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parsePath"])(path); - return pathname === prefix || pathname.startsWith(prefix + '/'); -} //# sourceMappingURL=path-has-prefix.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-locale.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "addLocale", - ()=>addLocale -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)"); -; -; -function addLocale(path, locale, defaultLocale, ignorePrefix) { - // If no locale was given or the locale is the default locale, we don't need - // to prefix the path. - if (!locale || locale === defaultLocale) return path; - const lower = path.toLowerCase(); - // If the path is an API path or the path already has the locale prefix, we - // don't need to prefix the path. - if (!ignorePrefix) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(lower, '/api')) return path; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(lower, `/${locale.toLowerCase()}`)) return path; - } - // Add the locale prefix to the path. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathPrefix"])(path, `/${locale}`); -} //# sourceMappingURL=add-locale.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/format-next-pathname-info.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "formatNextPathnameInfo", - ()=>formatNextPathnameInfo -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$trailing$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-trailing-slash.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$suffix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-path-suffix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$locale$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/add-locale.js [app-rsc] (ecmascript)"); -; -; -; -; -function formatNextPathnameInfo(info) { - let pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$locale$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addLocale"])(info.pathname, info.locale, info.buildId ? undefined : info.defaultLocale, info.ignorePrefix); - if (info.buildId || !info.trailingSlash) { - pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$trailing$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removeTrailingSlash"])(pathname); - } - if (info.buildId) { - pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$suffix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathSuffix"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathPrefix"])(pathname, `/_next/data/${info.buildId}`), info.pathname === '/' ? 'index.json' : '.json'); - } - pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathPrefix"])(pathname, info.basePath); - return !info.buildId && info.trailingSlash ? !pathname.endsWith('/') ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$add$2d$path$2d$suffix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addPathSuffix"])(pathname, '/') : pathname : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$trailing$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removeTrailingSlash"])(pathname); -} //# sourceMappingURL=format-next-pathname-info.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/get-hostname.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Takes an object with a hostname property (like a parsed URL) and some - * headers that may contain Host and returns the preferred hostname. - * @param parsed An object containing a hostname property. - * @param headers A dictionary with headers containing a `host`. - */ __turbopack_context__.s([ - "getHostname", - ()=>getHostname -]); -function getHostname(parsed, headers) { - // Get the hostname from the headers if it exists, otherwise use the parsed - // hostname. - let hostname; - if (headers?.host && !Array.isArray(headers.host)) { - hostname = headers.host.toString().split(':', 1)[0]; - } else if (parsed.hostname) { - hostname = parsed.hostname; - } else return; - return hostname.toLowerCase(); -} //# sourceMappingURL=get-hostname.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/i18n/normalize-locale-path.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "normalizeLocalePath", - ()=>normalizeLocalePath -]); -/** - * A cache of lowercased locales for each list of locales. This is stored as a - * WeakMap so if the locales are garbage collected, the cache entry will be - * removed as well. - */ const cache = new WeakMap(); -function normalizeLocalePath(pathname, locales) { - // If locales is undefined, return the pathname as is. - if (!locales) return { - pathname - }; - // Get the cached lowercased locales or create a new cache entry. - let lowercasedLocales = cache.get(locales); - if (!lowercasedLocales) { - lowercasedLocales = locales.map((locale)=>locale.toLowerCase()); - cache.set(locales, lowercasedLocales); - } - let detectedLocale; - // The first segment will be empty, because it has a leading `/`. If - // there is no further segment, there is no locale (or it's the default). - const segments = pathname.split('/', 2); - // If there's no second segment (ie, the pathname is just `/`), there's no - // locale. - if (!segments[1]) return { - pathname - }; - // The second segment will contain the locale part if any. - const segment = segments[1].toLowerCase(); - // See if the segment matches one of the locales. If it doesn't, there is - // no locale (or it's the default). - const index = lowercasedLocales.indexOf(segment); - if (index < 0) return { - pathname - }; - // Return the case-sensitive locale. - detectedLocale = locales[index]; - // Remove the `/${locale}` part of the pathname. - pathname = pathname.slice(detectedLocale.length + 1) || '/'; - return { - pathname, - detectedLocale - }; -} //# sourceMappingURL=normalize-locale-path.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-path-prefix.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "removePathPrefix", - ()=>removePathPrefix -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)"); -; -function removePathPrefix(path, prefix) { - // If the path doesn't start with the prefix we can return it as is. This - // protects us from situations where the prefix is a substring of the path - // prefix such as: - // - // For prefix: /blog - // - // /blog -> true - // /blog/ -> true - // /blog/1 -> true - // /blogging -> false - // /blogging/ -> false - // /blogging/1 -> false - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(path, prefix)) { - return path; - } - // Remove the prefix from the path via slicing. - const withoutPrefix = path.slice(prefix.length); - // If the path without the prefix starts with a `/` we can return it as is. - if (withoutPrefix.startsWith('/')) { - return withoutPrefix; - } - // If the path without the prefix doesn't start with a `/` we need to add it - // back to the path to make sure it's a valid path. - return `/${withoutPrefix}`; -} //# sourceMappingURL=remove-path-prefix.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/get-next-pathname-info.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getNextPathnameInfo", - ()=>getNextPathnameInfo -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$normalize$2d$locale$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/i18n/normalize-locale-path.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-path-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)"); -; -; -; -function getNextPathnameInfo(pathname, options) { - const { basePath, i18n, trailingSlash } = options.nextConfig ?? {}; - const info = { - pathname, - trailingSlash: pathname !== '/' ? pathname.endsWith('/') : trailingSlash - }; - if (basePath && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(info.pathname, basePath)) { - info.pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removePathPrefix"])(info.pathname, basePath); - info.basePath = basePath; - } - let pathnameNoDataPrefix = info.pathname; - if (info.pathname.startsWith('/_next/data/') && info.pathname.endsWith('.json')) { - const paths = info.pathname.replace(/^\/_next\/data\//, '').replace(/\.json$/, '').split('/'); - const buildId = paths[0]; - info.buildId = buildId; - pathnameNoDataPrefix = paths[1] !== 'index' ? `/${paths.slice(1).join('/')}` : '/'; - // update pathname with normalized if enabled although - // we use normalized to populate locale info still - if (options.parseData === true) { - info.pathname = pathnameNoDataPrefix; - } - } - // If provided, use the locale route normalizer to detect the locale instead - // of the function below. - if (i18n) { - let result = options.i18nProvider ? options.i18nProvider.analyze(info.pathname) : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$normalize$2d$locale$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeLocalePath"])(info.pathname, i18n.locales); - info.locale = result.detectedLocale; - info.pathname = result.pathname ?? info.pathname; - if (!result.detectedLocale && info.buildId) { - result = options.i18nProvider ? options.i18nProvider.analyze(pathnameNoDataPrefix) : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$normalize$2d$locale$2d$path$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeLocalePath"])(pathnameNoDataPrefix, i18n.locales); - if (result.detectedLocale) { - info.locale = result.detectedLocale; - } - } - } - return info; -} //# sourceMappingURL=get-next-pathname-info.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/next-url.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "NextURL", - ()=>NextURL -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$detect$2d$domain$2d$locale$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/i18n/detect-domain-locale.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$format$2d$next$2d$pathname$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/format-next-pathname-info.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$get$2d$hostname$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/get-hostname.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$get$2d$next$2d$pathname$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/get-next-pathname-info.js [app-rsc] (ecmascript)"); -; -; -; -; -const REGEX_LOCALHOST_HOSTNAME = /(?!^https?:\/\/)(127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\[::1\]|localhost)/; -function parseURL(url, base) { - return new URL(String(url).replace(REGEX_LOCALHOST_HOSTNAME, 'localhost'), base && String(base).replace(REGEX_LOCALHOST_HOSTNAME, 'localhost')); -} -const Internal = Symbol('NextURLInternal'); -class NextURL { - constructor(input, baseOrOpts, opts){ - let base; - let options; - if (typeof baseOrOpts === 'object' && 'pathname' in baseOrOpts || typeof baseOrOpts === 'string') { - base = baseOrOpts; - options = opts || {}; - } else { - options = opts || baseOrOpts || {}; - } - this[Internal] = { - url: parseURL(input, base ?? options.base), - options: options, - basePath: '' - }; - this.analyze(); - } - analyze() { - var _this_Internal_options_nextConfig_i18n, _this_Internal_options_nextConfig, _this_Internal_domainLocale, _this_Internal_options_nextConfig_i18n1, _this_Internal_options_nextConfig1; - const info = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$get$2d$next$2d$pathname$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getNextPathnameInfo"])(this[Internal].url.pathname, { - nextConfig: this[Internal].options.nextConfig, - parseData: !("TURBOPACK compile-time value", void 0), - i18nProvider: this[Internal].options.i18nProvider - }); - const hostname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$get$2d$hostname$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getHostname"])(this[Internal].url, this[Internal].options.headers); - this[Internal].domainLocale = this[Internal].options.i18nProvider ? this[Internal].options.i18nProvider.detectDomainLocale(hostname) : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$i18n$2f$detect$2d$domain$2d$locale$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["detectDomainLocale"])((_this_Internal_options_nextConfig = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n = _this_Internal_options_nextConfig.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n.domains, hostname); - const defaultLocale = ((_this_Internal_domainLocale = this[Internal].domainLocale) == null ? void 0 : _this_Internal_domainLocale.defaultLocale) || ((_this_Internal_options_nextConfig1 = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n1 = _this_Internal_options_nextConfig1.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n1.defaultLocale); - this[Internal].url.pathname = info.pathname; - this[Internal].defaultLocale = defaultLocale; - this[Internal].basePath = info.basePath ?? ''; - this[Internal].buildId = info.buildId; - this[Internal].locale = info.locale ?? defaultLocale; - this[Internal].trailingSlash = info.trailingSlash; - } - formatPathname() { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$format$2d$next$2d$pathname$2d$info$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["formatNextPathnameInfo"])({ - basePath: this[Internal].basePath, - buildId: this[Internal].buildId, - defaultLocale: !this[Internal].options.forceLocale ? this[Internal].defaultLocale : undefined, - locale: this[Internal].locale, - pathname: this[Internal].url.pathname, - trailingSlash: this[Internal].trailingSlash - }); - } - formatSearch() { - return this[Internal].url.search; - } - get buildId() { - return this[Internal].buildId; - } - set buildId(buildId) { - this[Internal].buildId = buildId; - } - get locale() { - return this[Internal].locale ?? ''; - } - set locale(locale) { - var _this_Internal_options_nextConfig_i18n, _this_Internal_options_nextConfig; - if (!this[Internal].locale || !((_this_Internal_options_nextConfig = this[Internal].options.nextConfig) == null ? void 0 : (_this_Internal_options_nextConfig_i18n = _this_Internal_options_nextConfig.i18n) == null ? void 0 : _this_Internal_options_nextConfig_i18n.locales.includes(locale))) { - throw Object.defineProperty(new TypeError(`The NextURL configuration includes no locale "${locale}"`), "__NEXT_ERROR_CODE", { - value: "E597", - enumerable: false, - configurable: true - }); - } - this[Internal].locale = locale; - } - get defaultLocale() { - return this[Internal].defaultLocale; - } - get domainLocale() { - return this[Internal].domainLocale; - } - get searchParams() { - return this[Internal].url.searchParams; - } - get host() { - return this[Internal].url.host; - } - set host(value) { - this[Internal].url.host = value; - } - get hostname() { - return this[Internal].url.hostname; - } - set hostname(value) { - this[Internal].url.hostname = value; - } - get port() { - return this[Internal].url.port; - } - set port(value) { - this[Internal].url.port = value; - } - get protocol() { - return this[Internal].url.protocol; - } - set protocol(value) { - this[Internal].url.protocol = value; - } - get href() { - const pathname = this.formatPathname(); - const search = this.formatSearch(); - return `${this.protocol}//${this.host}${pathname}${search}${this.hash}`; - } - set href(url) { - this[Internal].url = parseURL(url); - this.analyze(); - } - get origin() { - return this[Internal].url.origin; - } - get pathname() { - return this[Internal].url.pathname; - } - set pathname(value) { - this[Internal].url.pathname = value; - } - get hash() { - return this[Internal].url.hash; - } - set hash(value) { - this[Internal].url.hash = value; - } - get search() { - return this[Internal].url.search; - } - set search(value) { - this[Internal].url.search = value; - } - get password() { - return this[Internal].url.password; - } - set password(value) { - this[Internal].url.password = value; - } - get username() { - return this[Internal].url.username; - } - set username(value) { - this[Internal].url.username = value; - } - get basePath() { - return this[Internal].basePath; - } - set basePath(value) { - this[Internal].basePath = value.startsWith('/') ? value : `/${value}`; - } - toString() { - return this.href; - } - toJSON() { - return this.href; - } - [Symbol.for('edge-runtime.inspect.custom')]() { - return { - href: this.href, - origin: this.origin, - protocol: this.protocol, - username: this.username, - password: this.password, - host: this.host, - hostname: this.hostname, - port: this.port, - pathname: this.pathname, - search: this.search, - searchParams: this.searchParams, - hash: this.hash - }; - } - clone() { - return new NextURL(String(this), this[Internal].options); - } -} //# sourceMappingURL=next-url.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "PageSignatureError", - ()=>PageSignatureError, - "RemovedPageError", - ()=>RemovedPageError, - "RemovedUAError", - ()=>RemovedUAError -]); -class PageSignatureError extends Error { - constructor({ page }){ - super(`The middleware "${page}" accepts an async API directly with the form: - - export function middleware(request, event) { - return NextResponse.redirect('/new-location') - } - - Read more: https://nextjs.org/docs/messages/middleware-new-signature - `); - } -} -class RemovedPageError extends Error { - constructor(){ - super(`The request.page has been deprecated in favour of \`URLPattern\`. - Read more: https://nextjs.org/docs/messages/middleware-request-page - `); - } -} -class RemovedUAError extends Error { - constructor(){ - super(`The request.ua has been removed in favour of \`userAgent\` function. - Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent - `); - } -} //# sourceMappingURL=error.js.map -}), -"[project]/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __defProp = Object.defineProperty; -var __getOwnPropDesc = Object.getOwnPropertyDescriptor; -var __getOwnPropNames = Object.getOwnPropertyNames; -var __hasOwnProp = Object.prototype.hasOwnProperty; -var __export = (target, all)=>{ - for(var name in all)__defProp(target, name, { - get: all[name], - enumerable: true - }); -}; -var __copyProps = (to, from, except, desc)=>{ - if (from && typeof from === "object" || typeof from === "function") { - for (let key of __getOwnPropNames(from))if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { - get: ()=>from[key], - enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable - }); - } - return to; -}; -var __toCommonJS = (mod)=>__copyProps(__defProp({}, "__esModule", { - value: true - }), mod); -// src/index.ts -var src_exports = {}; -__export(src_exports, { - RequestCookies: ()=>RequestCookies, - ResponseCookies: ()=>ResponseCookies, - parseCookie: ()=>parseCookie, - parseSetCookie: ()=>parseSetCookie, - stringifyCookie: ()=>stringifyCookie -}); -module.exports = __toCommonJS(src_exports); -// src/serialize.ts -function stringifyCookie(c) { - var _a; - const attrs = [ - "path" in c && c.path && `Path=${c.path}`, - "expires" in c && (c.expires || c.expires === 0) && `Expires=${(typeof c.expires === "number" ? new Date(c.expires) : c.expires).toUTCString()}`, - "maxAge" in c && typeof c.maxAge === "number" && `Max-Age=${c.maxAge}`, - "domain" in c && c.domain && `Domain=${c.domain}`, - "secure" in c && c.secure && "Secure", - "httpOnly" in c && c.httpOnly && "HttpOnly", - "sameSite" in c && c.sameSite && `SameSite=${c.sameSite}`, - "partitioned" in c && c.partitioned && "Partitioned", - "priority" in c && c.priority && `Priority=${c.priority}` - ].filter(Boolean); - const stringified = `${c.name}=${encodeURIComponent((_a = c.value) != null ? _a : "")}`; - return attrs.length === 0 ? stringified : `${stringified}; ${attrs.join("; ")}`; -} -function parseCookie(cookie) { - const map = /* @__PURE__ */ new Map(); - for (const pair of cookie.split(/; */)){ - if (!pair) continue; - const splitAt = pair.indexOf("="); - if (splitAt === -1) { - map.set(pair, "true"); - continue; - } - const [key, value] = [ - pair.slice(0, splitAt), - pair.slice(splitAt + 1) - ]; - try { - map.set(key, decodeURIComponent(value != null ? value : "true")); - } catch {} - } - return map; -} -function parseSetCookie(setCookie) { - if (!setCookie) { - return void 0; - } - const [[name, value], ...attributes] = parseCookie(setCookie); - const { domain, expires, httponly, maxage, path, samesite, secure, partitioned, priority } = Object.fromEntries(attributes.map(([key, value2])=>[ - key.toLowerCase().replace(/-/g, ""), - value2 - ])); - const cookie = { - name, - value: decodeURIComponent(value), - domain, - ...expires && { - expires: new Date(expires) - }, - ...httponly && { - httpOnly: true - }, - ...typeof maxage === "string" && { - maxAge: Number(maxage) - }, - path, - ...samesite && { - sameSite: parseSameSite(samesite) - }, - ...secure && { - secure: true - }, - ...priority && { - priority: parsePriority(priority) - }, - ...partitioned && { - partitioned: true - } - }; - return compact(cookie); -} -function compact(t) { - const newT = {}; - for(const key in t){ - if (t[key]) { - newT[key] = t[key]; - } - } - return newT; -} -var SAME_SITE = [ - "strict", - "lax", - "none" -]; -function parseSameSite(string) { - string = string.toLowerCase(); - return SAME_SITE.includes(string) ? string : void 0; -} -var PRIORITY = [ - "low", - "medium", - "high" -]; -function parsePriority(string) { - string = string.toLowerCase(); - return PRIORITY.includes(string) ? string : void 0; -} -function splitCookiesString(cookiesString) { - if (!cookiesString) return []; - var cookiesStrings = []; - var pos = 0; - var start; - var ch; - var lastComma; - var nextStart; - var cookiesSeparatorFound; - function skipWhitespace() { - while(pos < cookiesString.length && /\s/.test(cookiesString.charAt(pos))){ - pos += 1; - } - return pos < cookiesString.length; - } - function notSpecialChar() { - ch = cookiesString.charAt(pos); - return ch !== "=" && ch !== ";" && ch !== ","; - } - while(pos < cookiesString.length){ - start = pos; - cookiesSeparatorFound = false; - while(skipWhitespace()){ - ch = cookiesString.charAt(pos); - if (ch === ",") { - lastComma = pos; - pos += 1; - skipWhitespace(); - nextStart = pos; - while(pos < cookiesString.length && notSpecialChar()){ - pos += 1; - } - if (pos < cookiesString.length && cookiesString.charAt(pos) === "=") { - cookiesSeparatorFound = true; - pos = nextStart; - cookiesStrings.push(cookiesString.substring(start, lastComma)); - start = pos; - } else { - pos = lastComma + 1; - } - } else { - pos += 1; - } - } - if (!cookiesSeparatorFound || pos >= cookiesString.length) { - cookiesStrings.push(cookiesString.substring(start, cookiesString.length)); - } - } - return cookiesStrings; -} -// src/request-cookies.ts -var RequestCookies = class { - constructor(requestHeaders){ - /** @internal */ this._parsed = /* @__PURE__ */ new Map(); - this._headers = requestHeaders; - const header = requestHeaders.get("cookie"); - if (header) { - const parsed = parseCookie(header); - for (const [name, value] of parsed){ - this._parsed.set(name, { - name, - value - }); - } - } - } - [Symbol.iterator]() { - return this._parsed[Symbol.iterator](); - } - /** - * The amount of cookies received from the client - */ get size() { - return this._parsed.size; - } - get(...args) { - const name = typeof args[0] === "string" ? args[0] : args[0].name; - return this._parsed.get(name); - } - getAll(...args) { - var _a; - const all = Array.from(this._parsed); - if (!args.length) { - return all.map(([_, value])=>value); - } - const name = typeof args[0] === "string" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name; - return all.filter(([n])=>n === name).map(([_, value])=>value); - } - has(name) { - return this._parsed.has(name); - } - set(...args) { - const [name, value] = args.length === 1 ? [ - args[0].name, - args[0].value - ] : args; - const map = this._parsed; - map.set(name, { - name, - value - }); - this._headers.set("cookie", Array.from(map).map(([_, value2])=>stringifyCookie(value2)).join("; ")); - return this; - } - /** - * Delete the cookies matching the passed name or names in the request. - */ delete(names) { - const map = this._parsed; - const result = !Array.isArray(names) ? map.delete(names) : names.map((name)=>map.delete(name)); - this._headers.set("cookie", Array.from(map).map(([_, value])=>stringifyCookie(value)).join("; ")); - return result; - } - /** - * Delete all the cookies in the cookies in the request. - */ clear() { - this.delete(Array.from(this._parsed.keys())); - return this; - } - /** - * Format the cookies in the request as a string for logging - */ [Symbol.for("edge-runtime.inspect.custom")]() { - return `RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`; - } - toString() { - return [ - ...this._parsed.values() - ].map((v)=>`${v.name}=${encodeURIComponent(v.value)}`).join("; "); - } -}; -// src/response-cookies.ts -var ResponseCookies = class { - constructor(responseHeaders){ - /** @internal */ this._parsed = /* @__PURE__ */ new Map(); - var _a, _b, _c; - this._headers = responseHeaders; - const setCookie = (_c = (_b = (_a = responseHeaders.getSetCookie) == null ? void 0 : _a.call(responseHeaders)) != null ? _b : responseHeaders.get("set-cookie")) != null ? _c : []; - const cookieStrings = Array.isArray(setCookie) ? setCookie : splitCookiesString(setCookie); - for (const cookieString of cookieStrings){ - const parsed = parseSetCookie(cookieString); - if (parsed) this._parsed.set(parsed.name, parsed); - } - } - /** - * {@link https://wicg.github.io/cookie-store/#CookieStore-get CookieStore#get} without the Promise. - */ get(...args) { - const key = typeof args[0] === "string" ? args[0] : args[0].name; - return this._parsed.get(key); - } - /** - * {@link https://wicg.github.io/cookie-store/#CookieStore-getAll CookieStore#getAll} without the Promise. - */ getAll(...args) { - var _a; - const all = Array.from(this._parsed.values()); - if (!args.length) { - return all; - } - const key = typeof args[0] === "string" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name; - return all.filter((c)=>c.name === key); - } - has(name) { - return this._parsed.has(name); - } - /** - * {@link https://wicg.github.io/cookie-store/#CookieStore-set CookieStore#set} without the Promise. - */ set(...args) { - const [name, value, cookie] = args.length === 1 ? [ - args[0].name, - args[0].value, - args[0] - ] : args; - const map = this._parsed; - map.set(name, normalizeCookie({ - name, - value, - ...cookie - })); - replace(map, this._headers); - return this; - } - /** - * {@link https://wicg.github.io/cookie-store/#CookieStore-delete CookieStore#delete} without the Promise. - */ delete(...args) { - const [name, options] = typeof args[0] === "string" ? [ - args[0] - ] : [ - args[0].name, - args[0] - ]; - return this.set({ - ...options, - name, - value: "", - expires: /* @__PURE__ */ new Date(0) - }); - } - [Symbol.for("edge-runtime.inspect.custom")]() { - return `ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`; - } - toString() { - return [ - ...this._parsed.values() - ].map(stringifyCookie).join("; "); - } -}; -function replace(bag, headers) { - headers.delete("set-cookie"); - for (const [, value] of bag){ - const serialized = stringifyCookie(value); - headers.append("set-cookie", serialized); - } -} -function normalizeCookie(cookie = { - name: "", - value: "" -}) { - if (typeof cookie.expires === "number") { - cookie.expires = new Date(cookie.expires); - } - if (cookie.maxAge) { - cookie.expires = new Date(Date.now() + cookie.maxAge * 1e3); - } - if (cookie.path === null || cookie.path === void 0) { - cookie.path = "/"; - } - return cookie; -} -// Annotate the CommonJS export names for ESM import in node: -0 && (module.exports = { - RequestCookies, - ResponseCookies, - parseCookie, - parseSetCookie, - stringifyCookie -}); -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/cookies.js [app-rsc] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f40$edge$2d$runtime$2f$cookies$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js [app-rsc] (ecmascript)"); //# sourceMappingURL=cookies.js.map -; -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/request.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "INTERNALS", - ()=>INTERNALS, - "NextRequest", - ()=>NextRequest -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$next$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/next-url.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$cookies$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/cookies.js [app-rsc] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f40$edge$2d$runtime$2f$cookies$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js [app-rsc] (ecmascript)"); -; -; -; -; -const INTERNALS = Symbol('internal request'); -class NextRequest extends Request { - constructor(input, init = {}){ - const url = typeof input !== 'string' && 'url' in input ? input.url : String(input); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["validateURL"])(url); - // node Request instance requires duplex option when a body - // is present or it errors, we don't handle this for - // Request being passed in since it would have already - // errored if this wasn't configured - if ("TURBOPACK compile-time truthy", 1) { - if (init.body && init.duplex !== 'half') { - init.duplex = 'half'; - } - } - if (input instanceof Request) super(input, init); - else super(url, init); - const nextUrl = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$next$2d$url$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextURL"](url, { - headers: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["toNodeOutgoingHttpHeaders"])(this.headers), - nextConfig: init.nextConfig - }); - this[INTERNALS] = { - cookies: new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f40$edge$2d$runtime$2f$cookies$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RequestCookies"](this.headers), - nextUrl, - url: ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : nextUrl.toString() - }; - } - [Symbol.for('edge-runtime.inspect.custom')]() { - return { - cookies: this.cookies, - nextUrl: this.nextUrl, - url: this.url, - // rest of props come from Request - bodyUsed: this.bodyUsed, - cache: this.cache, - credentials: this.credentials, - destination: this.destination, - headers: Object.fromEntries(this.headers), - integrity: this.integrity, - keepalive: this.keepalive, - method: this.method, - mode: this.mode, - redirect: this.redirect, - referrer: this.referrer, - referrerPolicy: this.referrerPolicy, - signal: this.signal - }; - } - get cookies() { - return this[INTERNALS].cookies; - } - get nextUrl() { - return this[INTERNALS].nextUrl; - } - /** - * @deprecated - * `page` has been deprecated in favour of `URLPattern`. - * Read more: https://nextjs.org/docs/messages/middleware-request-page - */ get page() { - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RemovedPageError"](); - } - /** - * @deprecated - * `ua` has been removed in favour of \`userAgent\` function. - * Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent - */ get ua() { - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RemovedUAError"](); - } - get url() { - return this[INTERNALS].url; - } -} //# sourceMappingURL=request.js.map -}), -"[project]/node_modules/next/dist/esm/server/base-http/helpers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * This file provides some helpers that should be used in conjunction with - * explicit environment checks. When combined with the environment checks, it - * will ensure that the correct typings are used as well as enable code - * elimination. - */ /** - * Type guard to determine if a request is a WebNextRequest. This does not - * actually check the type of the request, but rather the runtime environment. - * It's expected that when the runtime environment is the edge runtime, that any - * base request is a WebNextRequest. - */ __turbopack_context__.s([ - "isNodeNextRequest", - ()=>isNodeNextRequest, - "isNodeNextResponse", - ()=>isNodeNextResponse, - "isWebNextRequest", - ()=>isWebNextRequest, - "isWebNextResponse", - ()=>isWebNextResponse -]); -const isWebNextRequest = (req)=>("TURBOPACK compile-time value", "nodejs") === 'edge'; -const isWebNextResponse = (res)=>("TURBOPACK compile-time value", "nodejs") === 'edge'; -const isNodeNextRequest = (req)=>("TURBOPACK compile-time value", "nodejs") !== 'edge'; -const isNodeNextResponse = (res)=>("TURBOPACK compile-time value", "nodejs") !== 'edge'; //# sourceMappingURL=helpers.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/next-request.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "NextRequestAdapter", - ()=>NextRequestAdapter, - "ResponseAborted", - ()=>ResponseAborted, - "ResponseAbortedName", - ()=>ResponseAbortedName, - "createAbortController", - ()=>createAbortController, - "signalFromNodeResponse", - ()=>signalFromNodeResponse -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request-meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/request.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/base-http/helpers.js [app-rsc] (ecmascript)"); -; -; -; -; -const ResponseAbortedName = 'ResponseAborted'; -class ResponseAborted extends Error { - constructor(...args){ - super(...args), this.name = ResponseAbortedName; - } -} -function createAbortController(response) { - const controller = new AbortController(); - // If `finish` fires first, then `res.end()` has been called and the close is - // just us finishing the stream on our side. If `close` fires first, then we - // know the client disconnected before we finished. - response.once('close', ()=>{ - if (response.writableFinished) return; - controller.abort(new ResponseAborted()); - }); - return controller; -} -function signalFromNodeResponse(response) { - const { errored, destroyed } = response; - if (errored || destroyed) { - return AbortSignal.abort(errored ?? new ResponseAborted()); - } - const { signal } = createAbortController(response); - return signal; -} -class NextRequestAdapter { - static fromBaseNextRequest(request, signal) { - if (// environment variable check provides dead code elimination. - ("TURBOPACK compile-time value", "nodejs") === 'edge' && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isWebNextRequest"])(request)) //TURBOPACK unreachable - ; - else if (// environment variable check provides dead code elimination. - ("TURBOPACK compile-time value", "nodejs") !== 'edge' && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$helpers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isNodeNextRequest"])(request)) { - return NextRequestAdapter.fromNodeNextRequest(request, signal); - } else { - throw Object.defineProperty(new Error('Invariant: Unsupported NextRequest type'), "__NEXT_ERROR_CODE", { - value: "E345", - enumerable: false, - configurable: true - }); - } - } - static fromNodeNextRequest(request, signal) { - // HEAD and GET requests can not have a body. - let body = null; - if (request.method !== 'GET' && request.method !== 'HEAD' && request.body) { - // @ts-expect-error - this is handled by undici, when streams/web land use it instead - body = request.body; - } - let url; - if (request.url.startsWith('http')) { - url = new URL(request.url); - } else { - // Grab the full URL from the request metadata. - const base = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(request, 'initURL'); - if (!base || !base.startsWith('http')) { - // Because the URL construction relies on the fact that the URL provided - // is absolute, we need to provide a base URL. We can't use the request - // URL because it's relative, so we use a dummy URL instead. - url = new URL(request.url, 'http://n'); - } else { - url = new URL(request.url, base); - } - } - return new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextRequest"](url, { - method: request.method, - headers: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["fromNodeOutgoingHttpHeaders"])(request.headers), - duplex: 'half', - signal, - // geo - // ip - // nextConfig - // body can not be passed if request was aborted - // or we get a Request body was disturbed error - ...signal.aborted ? {} : { - body - } - }); - } - static fromWebNextRequest(request) { - // HEAD and GET requests can not have a body. - let body = null; - if (request.method !== 'GET' && request.method !== 'HEAD') { - body = request.body; - } - return new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextRequest"](request.url, { - method: request.method, - headers: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["fromNodeOutgoingHttpHeaders"])(request.headers), - duplex: 'half', - signal: request.request.signal, - // geo - // ip - // nextConfig - // body can not be passed if request was aborted - // or we get a Request body was disturbed error - ...request.request.signal.aborted ? {} : { - body - } - }); - } -} //# sourceMappingURL=next-request.js.map -}), -"[project]/node_modules/next/dist/esm/server/client-component-renderer-logger.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getClientComponentLoaderMetrics", - ()=>getClientComponentLoaderMetrics, - "wrapClientComponentLoader", - ()=>wrapClientComponentLoader -]); -// Combined load times for loading client components -let clientComponentLoadStart = 0; -let clientComponentLoadTimes = 0; -let clientComponentLoadCount = 0; -function wrapClientComponentLoader(ComponentMod) { - if (!('performance' in globalThis)) { - return ComponentMod.__next_app__; - } - return { - require: (...args)=>{ - const startTime = performance.now(); - if (clientComponentLoadStart === 0) { - clientComponentLoadStart = startTime; - } - try { - clientComponentLoadCount += 1; - return ComponentMod.__next_app__.require(...args); - } finally{ - clientComponentLoadTimes += performance.now() - startTime; - } - }, - loadChunk: (...args)=>{ - const startTime = performance.now(); - const result = ComponentMod.__next_app__.loadChunk(...args); - // Avoid wrapping `loadChunk`'s result in an extra promise in case something like React depends on its identity. - // We only need to know when it's settled. - result.finally(()=>{ - clientComponentLoadTimes += performance.now() - startTime; - }); - return result; - } - }; -} -function getClientComponentLoaderMetrics(options = {}) { - const metrics = clientComponentLoadStart === 0 ? undefined : { - clientComponentLoadStart, - clientComponentLoadTimes, - clientComponentLoadCount - }; - if (options.reset) { - clientComponentLoadStart = 0; - clientComponentLoadTimes = 0; - clientComponentLoadCount = 0; - } - return metrics; -} //# sourceMappingURL=client-component-renderer-logger.js.map -}), -"[project]/node_modules/next/dist/esm/server/pipe-readable.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isAbortError", - ()=>isAbortError, - "pipeToNodeResponse", - ()=>pipeToNodeResponse -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$next$2d$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/next-request.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/detached-promise.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$client$2d$component$2d$renderer$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/client-component-renderer-logger.js [app-rsc] (ecmascript)"); -; -; -; -; -; -function isAbortError(e) { - return (e == null ? void 0 : e.name) === 'AbortError' || (e == null ? void 0 : e.name) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$next$2d$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ResponseAbortedName"]; -} -function createWriterFromResponse(res, waitUntilForEnd) { - let started = false; - // Create a promise that will resolve once the response has drained. See - // https://nodejs.org/api/stream.html#stream_event_drain - let drained = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - function onDrain() { - drained.resolve(); - } - res.on('drain', onDrain); - // If the finish event fires, it means we shouldn't block and wait for the - // drain event. - res.once('close', ()=>{ - res.off('drain', onDrain); - drained.resolve(); - }); - // Create a promise that will resolve once the response has finished. See - // https://nodejs.org/api/http.html#event-finish_1 - const finished = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - res.once('finish', ()=>{ - finished.resolve(); - }); - // Create a writable stream that will write to the response. - return new WritableStream({ - write: async (chunk)=>{ - // You'd think we'd want to use `start` instead of placing this in `write` - // but this ensures that we don't actually flush the headers until we've - // started writing chunks. - if (!started) { - started = true; - if ('performance' in globalThis && process.env.NEXT_OTEL_PERFORMANCE_PREFIX) { - const metrics = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$client$2d$component$2d$renderer$2d$logger$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getClientComponentLoaderMetrics"])(); - if (metrics) { - performance.measure(`${process.env.NEXT_OTEL_PERFORMANCE_PREFIX}:next-client-component-loading`, { - start: metrics.clientComponentLoadStart, - end: metrics.clientComponentLoadStart + metrics.clientComponentLoadTimes - }); - } - } - res.flushHeaders(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextNodeServerSpan"].startResponse, { - spanName: 'start response' - }, ()=>undefined); - } - try { - const ok = res.write(chunk); - // Added by the `compression` middleware, this is a function that will - // flush the partially-compressed response to the client. - if ('flush' in res && typeof res.flush === 'function') { - res.flush(); - } - // If the write returns false, it means there's some backpressure, so - // wait until it's streamed before continuing. - if (!ok) { - await drained.promise; - // Reset the drained promise so that we can wait for the next drain event. - drained = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - } - } catch (err) { - res.end(); - throw Object.defineProperty(new Error('failed to write chunk to response', { - cause: err - }), "__NEXT_ERROR_CODE", { - value: "E321", - enumerable: false, - configurable: true - }); - } - }, - abort: (err)=>{ - if (res.writableFinished) return; - res.destroy(err); - }, - close: async ()=>{ - // if a waitUntil promise was passed, wait for it to resolve before - // ending the response. - if (waitUntilForEnd) { - await waitUntilForEnd; - } - if (res.writableFinished) return; - res.end(); - return finished.promise; - } - }); -} -async function pipeToNodeResponse(readable, res, waitUntilForEnd) { - try { - // If the response has already errored, then just return now. - const { errored, destroyed } = res; - if (errored || destroyed) return; - // Create a new AbortController so that we can abort the readable if the - // client disconnects. - const controller = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$next$2d$request$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createAbortController"])(res); - const writer = createWriterFromResponse(res, waitUntilForEnd); - await readable.pipeTo(writer, { - signal: controller.signal - }); - } catch (err) { - // If this isn't related to an abort error, re-throw it. - if (isAbortError(err)) return; - throw Object.defineProperty(new Error('failed to pipe response', { - cause: err - }), "__NEXT_ERROR_CODE", { - value: "E180", - enumerable: false, - configurable: true - }); - } -} //# sourceMappingURL=pipe-readable.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RedirectStatusCode", - ()=>RedirectStatusCode -]); -var RedirectStatusCode = /*#__PURE__*/ function(RedirectStatusCode) { - RedirectStatusCode[RedirectStatusCode["SeeOther"] = 303] = "SeeOther"; - RedirectStatusCode[RedirectStatusCode["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - RedirectStatusCode[RedirectStatusCode["PermanentRedirect"] = 308] = "PermanentRedirect"; - return RedirectStatusCode; -}({}); //# sourceMappingURL=redirect-status-code.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "REDIRECT_ERROR_CODE", - ()=>REDIRECT_ERROR_CODE, - "RedirectType", - ()=>RedirectType, - "isRedirectError", - ()=>isRedirectError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-rsc] (ecmascript)"); -; -const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'; -var RedirectType = /*#__PURE__*/ function(RedirectType) { - RedirectType["push"] = "push"; - RedirectType["replace"] = "replace"; - return RedirectType; -}({}); -function isRedirectError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const digest = error.digest.split(';'); - const [errorCode, type] = digest; - const destination = digest.slice(2, -2).join(';'); - const status = digest.at(-2); - const statusCode = Number(status); - return errorCode === REDIRECT_ERROR_CODE && (type === 'replace' || type === 'push') && typeof destination === 'string' && !isNaN(statusCode) && statusCode in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RedirectStatusCode"]; -} //# sourceMappingURL=redirect-error.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isNextRouterError", - ()=>isNextRouterError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-rsc] (ecmascript)"); -; -; -function isNextRouterError(error) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isRedirectError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(error); -} //# sourceMappingURL=is-next-router-error.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/is-plain-object.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getObjectClassLabel", - ()=>getObjectClassLabel, - "isPlainObject", - ()=>isPlainObject -]); -function getObjectClassLabel(value) { - return Object.prototype.toString.call(value); -} -function isPlainObject(value) { - if (getObjectClassLabel(value) !== '[object Object]') { - return false; - } - const prototype = Object.getPrototypeOf(value); - /** - * this used to be previously: - * - * `return prototype === null || prototype === Object.prototype` - * - * but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail. - * - * It was changed to the current implementation since it's resilient to serialization. - */ return prototype === null || prototype.hasOwnProperty('isPrototypeOf'); -} //# sourceMappingURL=is-plain-object.js.map -}), -"[project]/node_modules/next/dist/esm/lib/is-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>isError, - "getProperError", - ()=>getProperError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$plain$2d$object$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/is-plain-object.js [app-rsc] (ecmascript)"); -; -/** - * This is a safe stringify function that handles circular references. - * We're using a simpler version here to avoid introducing - * the dependency `safe-stable-stringify` into production bundle. - * - * This helper is used both in development and production. - */ function safeStringifyLite(obj) { - const seen = new WeakSet(); - return JSON.stringify(obj, (_key, value)=>{ - // If value is an object and already seen, replace with "[Circular]" - if (typeof value === 'object' && value !== null) { - if (seen.has(value)) { - return '[Circular]'; - } - seen.add(value); - } - return value; - }); -} -function isError(err) { - return typeof err === 'object' && err !== null && 'name' in err && 'message' in err; -} -function getProperError(err) { - if (isError(err)) { - return err; - } - if ("TURBOPACK compile-time truthy", 1) { - // provide better error for case where `throw undefined` - // is called in development - if (typeof err === 'undefined') { - return Object.defineProperty(new Error('An undefined error was thrown, ' + 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'), "__NEXT_ERROR_CODE", { - value: "E98", - enumerable: false, - configurable: true - }); - } - if (err === null) { - return Object.defineProperty(new Error('A null error was thrown, ' + 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'), "__NEXT_ERROR_CODE", { - value: "E336", - enumerable: false, - configurable: true - }); - } - } - return Object.defineProperty(new Error((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$plain$2d$object$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isPlainObject"])(err) ? safeStringifyLite(err) : err + ''), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=is-error.js.map -}), -"[project]/node_modules/next/dist/esm/lib/error-telemetry-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDigestWithErrorCode", - ()=>createDigestWithErrorCode, - "extractNextErrorCode", - ()=>extractNextErrorCode -]); -const ERROR_CODE_DELIMITER = '@'; -const createDigestWithErrorCode = (thrownValue, originalDigest)=>{ - if (typeof thrownValue === 'object' && thrownValue !== null && '__NEXT_ERROR_CODE' in thrownValue) { - return `${originalDigest}${ERROR_CODE_DELIMITER}${thrownValue.__NEXT_ERROR_CODE}`; - } - return originalDigest; -}; -const extractNextErrorCode = (error)=>{ - if (typeof error === 'object' && error !== null && '__NEXT_ERROR_CODE' in error && typeof error.__NEXT_ERROR_CODE === 'string') { - return error.__NEXT_ERROR_CODE; - } - if (typeof error === 'object' && error !== null && 'digest' in error && typeof error.digest === 'string') { - const segments = error.digest.split(ERROR_CODE_DELIMITER); - const errorCode = segments.find((segment)=>segment.startsWith('E')); - return errorCode; - } - return undefined; -}; //# sourceMappingURL=error-telemetry-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/react-large-shell-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// TODO: isWellKnownError -> isNextInternalError -// isReactLargeShellError -> isWarning -__turbopack_context__.s([ - "isReactLargeShellError", - ()=>isReactLargeShellError -]); -function isReactLargeShellError(error) { - return typeof error === 'object' && error !== null && 'message' in error && typeof error.message === 'string' && error.message.startsWith('This rendered a large document (>'); -} //# sourceMappingURL=react-large-shell-error.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/create-error-handler.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createHTMLErrorHandler", - ()=>createHTMLErrorHandler, - "createReactServerErrorHandler", - ()=>createReactServerErrorHandler, - "getDigestForWellKnownError", - ()=>getDigestForWellKnownError, - "isUserLandError", - ()=>isUserLandError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$string$2d$hash$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/string-hash/index.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$format$2d$server$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/format-server-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/pipe-readable.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$is$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/is-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$error$2d$telemetry$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/error-telemetry-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/react-large-shell-error.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -function getDigestForWellKnownError(error) { - // If we're bailing out to CSR, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isBailoutToCSRError"])(error)) return error.digest; - // If this is a navigation error, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isNextRouterError"])(error)) return error.digest; - // If this error occurs, we know that we should be stopping the static - // render. This is only thrown in static generation when PPR is not enabled, - // which causes the whole page to be marked as dynamic. We don't need to - // tell the user about this error, as it's not actionable. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isDynamicServerError"])(error)) return error.digest; - // If this is a prerender interrupted error, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isPrerenderInterruptedError"])(error)) return error.digest; - return undefined; -} -function createReactServerErrorHandler(shouldFormatError, isNextExport, reactServerErrors, onReactServerRenderError, spanToRecordOn) { - return (thrownValue)=>{ - var _err_message; - if (typeof thrownValue === 'string') { - // TODO-APP: look at using webcrypto instead. Requires a promise to be awaited. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$string$2d$hash$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"])(thrownValue).toString(); - } - // If the response was closed, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAbortError"])(thrownValue)) return; - const digest = getDigestForWellKnownError(thrownValue); - if (digest) { - return digest; - } - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isReactLargeShellError"])(thrownValue)) { - // TODO: Aggregate - console.error(thrownValue); - return undefined; - } - let err = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$is$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getProperError"])(thrownValue); - let silenceLog = false; - // If the error already has a digest, respect the original digest, - // so it won't get re-generated into another new error. - if (err.digest) { - if (("TURBOPACK compile-time value", "development") === 'production' && reactServerErrors.has(err.digest)) //TURBOPACK unreachable - ; - else { - // Either we're in development (where we want to keep the transported - // error with environmentName), or the error is not in reactServerErrors - // but has a digest from other means. Keep the error as-is. - } - } else { - err.digest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$error$2d$telemetry$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDigestWithErrorCode"])(err, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$string$2d$hash$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"])(err.message + (err.stack || '')).toString()); - } - // @TODO by putting this here and not at the top it is possible that - // we don't error the build in places we actually expect to - if (!reactServerErrors.has(err.digest)) { - reactServerErrors.set(err.digest, err); - } - // Format server errors in development to add more helpful error messages - if (shouldFormatError) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$format$2d$server$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["formatServerError"])(err); - } - // Don't log the suppressed error during export - if (!(isNextExport && (err == null ? void 0 : (_err_message = err.message) == null ? void 0 : _err_message.includes('The specific message is omitted in production builds to avoid leaking sensitive details.')))) { - // Record exception on the provided span if available, otherwise try active span. - const span = spanToRecordOn ?? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().getActiveScopeSpan(); - if (span) { - span.recordException(err); - span.setAttribute('error.type', err.name); - span.setStatus({ - code: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SpanStatusCode"].ERROR, - message: err.message - }); - } - onReactServerRenderError(err, silenceLog); - } - return err.digest; - }; -} -function createHTMLErrorHandler(shouldFormatError, isNextExport, reactServerErrors, allCapturedErrors, onHTMLRenderSSRError, spanToRecordOn) { - return (thrownValue, errorInfo)=>{ - var _err_message; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isReactLargeShellError"])(thrownValue)) { - // TODO: Aggregate - console.error(thrownValue); - return undefined; - } - let isSSRError = true; - allCapturedErrors.push(thrownValue); - // If the response was closed, we don't need to log the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAbortError"])(thrownValue)) return; - const digest = getDigestForWellKnownError(thrownValue); - if (digest) { - return digest; - } - const err = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$is$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getProperError"])(thrownValue); - // If the error already has a digest, respect the original digest, - // so it won't get re-generated into another new error. - if (err.digest) { - if (reactServerErrors.has(err.digest)) { - // This error is likely an obfuscated error from react-server. - // We recover the original error here. - thrownValue = reactServerErrors.get(err.digest); - isSSRError = false; - } else { - // The error is not from react-server but has a digest - // from other means so we don't need to produce a new one - } - } else { - err.digest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$error$2d$telemetry$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDigestWithErrorCode"])(err, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$string$2d$hash$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"])(err.message + ((errorInfo == null ? void 0 : errorInfo.componentStack) || err.stack || '')).toString()); - } - // Format server errors in development to add more helpful error messages - if (shouldFormatError) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$format$2d$server$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["formatServerError"])(err); - } - // Don't log the suppressed error during export - if (!(isNextExport && (err == null ? void 0 : (_err_message = err.message) == null ? void 0 : _err_message.includes('The specific message is omitted in production builds to avoid leaking sensitive details.')))) { - // HTML errors contain RSC errors as well, filter them out before reporting - if (isSSRError) { - // Record exception on the provided span if available, otherwise try active span. - const span = spanToRecordOn ?? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().getActiveScopeSpan(); - if (span) { - span.recordException(err); - span.setAttribute('error.type', err.name); - span.setStatus({ - code: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SpanStatusCode"].ERROR, - message: err.message - }); - } - onHTMLRenderSSRError(err, errorInfo); - } - } - return err.digest; - }; -} -function isUserLandError(err) { - return !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAbortError"])(err) && !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isBailoutToCSRError"])(err) && !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isNextRouterError"])(err); -} //# sourceMappingURL=create-error-handler.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/prospective-render-utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Phase", - ()=>Phase, - "printDebugThrownValueForProspectiveRender", - ()=>printDebugThrownValueForProspectiveRender -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$create$2d$error$2d$handler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/create-error-handler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/react-large-shell-error.js [app-rsc] (ecmascript)"); -; -; -var Phase = /*#__PURE__*/ function(Phase) { - Phase["ProspectiveRender"] = "the prospective render"; - Phase["SegmentCollection"] = "segment collection"; - return Phase; -}({}); -function printDebugThrownValueForProspectiveRender(thrownValue, route, phase) { - // We don't need to print well-known Next.js errors. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$create$2d$error$2d$handler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getDigestForWellKnownError"])(thrownValue)) { - return; - } - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$react$2d$large$2d$shell$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isReactLargeShellError"])(thrownValue)) { - // TODO: Aggregate - console.error(thrownValue); - return undefined; - } - let message; - if (typeof thrownValue === 'object' && thrownValue !== null && typeof thrownValue.message === 'string') { - message = thrownValue.message; - if (typeof thrownValue.stack === 'string') { - const originalErrorStack = thrownValue.stack; - const stackStart = originalErrorStack.indexOf('\n'); - if (stackStart > -1) { - const error = Object.defineProperty(new Error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. - -Original Error: ${message}`), "__NEXT_ERROR_CODE", { - value: "E949", - enumerable: false, - configurable: true - }); - error.stack = 'Error: ' + error.message + originalErrorStack.slice(stackStart); - console.error(error); - return; - } - } - } else if (typeof thrownValue === 'string') { - message = thrownValue; - } - if (message) { - console.error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. No stack was provided. - -Original Message: ${message}`); - return; - } - console.error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. The thrown value is logged just following this message`); - console.error(thrownValue); - return; -} //# sourceMappingURL=prospective-render-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/source-maps.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "devirtualizeReactServerURL", - ()=>devirtualizeReactServerURL, - "filterStackFrameDEV", - ()=>filterStackFrameDEV, - "findApplicableSourceMapPayload", - ()=>findApplicableSourceMapPayload, - "findSourceMapURLDEV", - ()=>findSourceMapURLDEV, - "ignoreListAnonymousStackFramesIfSandwiched", - ()=>ignoreListAnonymousStackFramesIfSandwiched, - "sourceMapIgnoreListsEverything", - ()=>sourceMapIgnoreListsEverything -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/lru-cache.js [app-rsc] (ecmascript)"); -; -function noSourceMap() { - return undefined; -} -// Edge runtime does not implement `module` -const findSourceMap = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : __turbopack_context__.r("[externals]/module [external] (module, cjs)").findSourceMap; -function sourceMapIgnoreListsEverything(sourceMap) { - return sourceMap.ignoreList !== undefined && sourceMap.sources.length === sourceMap.ignoreList.length; -} -function findApplicableSourceMapPayload(line0, column0, payload) { - if ('sections' in payload) { - if (payload.sections.length === 0) { - return undefined; - } - // Sections must not overlap and must be sorted: https://tc39.es/source-map/#section-object - // Therefore the last section that has an offset less than or equal to the frame is the applicable one. - const sections = payload.sections; - let left = 0; - let right = sections.length - 1; - let result = null; - while(left <= right){ - // fast Math.floor - const middle = ~~((left + right) / 2); - const section = sections[middle]; - const offset = section.offset; - if (offset.line < line0 || offset.line === line0 && offset.column <= column0) { - result = section; - left = middle + 1; - } else { - right = middle - 1; - } - } - return result === null ? undefined : result.map; - } else { - return payload; - } -} -const didWarnAboutInvalidSourceMapDEV = new Set(); -function filterStackFrameDEV(sourceURL, functionName, line1, column1) { - if (sourceURL === '') { - // The default implementation filters out stack frames - // but we want to retain them because current Server Components and - // built-in Components in parent stacks don't have source location. - // Filter out frames that show up in Promises to get good names in React's - // Server Request track until we come up with a better heuristic. - return functionName !== 'new Promise'; - } - if (sourceURL.startsWith('node:') || sourceURL.includes('node_modules')) { - return false; - } - try { - // Node.js loads source maps eagerly so this call is cheap. - // TODO: ESM sourcemaps are O(1) but CommonJS sourcemaps are O(Number of CJS modules). - // Make sure this doesn't adversely affect performance when CJS is used by Next.js. - const sourceMap = findSourceMap(sourceURL); - if (sourceMap === undefined) { - // No source map assoicated. - // TODO: Node.js types should reflect that `findSourceMap` can return `undefined`. - return true; - } - const sourceMapPayload = findApplicableSourceMapPayload(line1 - 1, column1 - 1, sourceMap.payload); - if (sourceMapPayload === undefined) { - // No source map section applicable to the frame. - return true; - } - return !sourceMapIgnoreListsEverything(sourceMapPayload); - } catch (cause) { - if ("TURBOPACK compile-time truthy", 1) { - // TODO: Share cache with patch-error-inspect - if (!didWarnAboutInvalidSourceMapDEV.has(sourceURL)) { - didWarnAboutInvalidSourceMapDEV.add(sourceURL); - // We should not log an actual error instance here because that will re-enter - // this codepath during error inspection and could lead to infinite recursion. - console.error(`${sourceURL}: Invalid source map. Only conformant source maps can be used to filter stack frames. Cause: ${cause}`); - } - } - return true; - } -} -const invalidSourceMap = Symbol('invalid-source-map'); -const sourceMapURLs = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LRUCache"](512 * 1024 * 1024, (url)=>url === invalidSourceMap ? 8 * 1024 : url.length); -function findSourceMapURLDEV(scriptNameOrSourceURL) { - let sourceMapURL = sourceMapURLs.get(scriptNameOrSourceURL); - if (sourceMapURL === undefined) { - let sourceMapPayload; - try { - var _findSourceMap; - sourceMapPayload = (_findSourceMap = findSourceMap(scriptNameOrSourceURL)) == null ? void 0 : _findSourceMap.payload; - } catch (cause) { - console.error(`${scriptNameOrSourceURL}: Invalid source map. Only conformant source maps can be used to find the original code. Cause: ${cause}`); - } - if (sourceMapPayload === undefined) { - sourceMapURL = invalidSourceMap; - } else { - // TODO: Might be more efficient to extract the relevant section from Index Maps. - // Unclear if that search is worth the smaller payload we have to stringify. - const sourceMapJSON = JSON.stringify(sourceMapPayload); - const sourceMapURLData = Buffer.from(sourceMapJSON, 'utf8').toString('base64'); - sourceMapURL = `data:application/json;base64,${sourceMapURLData}`; - } - sourceMapURLs.set(scriptNameOrSourceURL, sourceMapURL); - } - return sourceMapURL === invalidSourceMap ? null : sourceMapURL; -} -function devirtualizeReactServerURL(sourceURL) { - if (sourceURL.startsWith('about://React/')) { - // about://React/Server/file://?42 => file:// - const envIdx = sourceURL.indexOf('/', 'about://React/'.length); - const suffixIdx = sourceURL.lastIndexOf('?'); - if (envIdx > -1 && suffixIdx > -1) { - return decodeURI(sourceURL.slice(envIdx + 1, suffixIdx)); - } - } - return sourceURL; -} -function isAnonymousFrameLikelyJSNative(methodName) { - // Anonymous frames can also be produced in React parent stacks either from - // host components or Server Components. We don't want to ignore those. - // This could hide user-space methods that are named like native JS methods but - // should you really do that? - return methodName.startsWith('JSON.') || // E.g. Promise.withResolves - methodName.startsWith('Function.') || // various JS built-ins - methodName.startsWith('Promise.') || methodName.startsWith('Array.') || methodName.startsWith('Set.') || methodName.startsWith('Map.'); -} -function ignoreListAnonymousStackFramesIfSandwiched(frames, isAnonymousFrame, isIgnoredFrame, getMethodName, /** only passes frames for which `isAnonymousFrame` and their method is a native JS method or `isIgnoredFrame` return true */ ignoreFrame) { - for(let i = 1; i < frames.length; i++){ - const currentFrame = frames[i]; - if (!(isAnonymousFrame(currentFrame) && isAnonymousFrameLikelyJSNative(getMethodName(currentFrame)))) { - continue; - } - const previousFrameIsIgnored = isIgnoredFrame(frames[i - 1]); - if (previousFrameIsIgnored && i < frames.length - 1) { - let ignoreSandwich = false; - let j = i + 1; - for(j; j < frames.length; j++){ - const nextFrame = frames[j]; - const nextFrameIsAnonymous = isAnonymousFrame(nextFrame) && isAnonymousFrameLikelyJSNative(getMethodName(nextFrame)); - if (nextFrameIsAnonymous) { - continue; - } - const nextFrameIsIgnored = isIgnoredFrame(nextFrame); - if (nextFrameIsIgnored) { - ignoreSandwich = true; - break; - } - } - if (ignoreSandwich) { - for(i; i < j; i++){ - ignoreFrame(frames[i]); - } - } - } - } -} //# sourceMappingURL=source-maps.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/collect-segment-data.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "collectSegmentData", - ()=>collectSegmentData -]); -/* eslint-disable @next/internal/no-ambiguous-jsx -- Bundled in entry-base so it gets the right JSX runtime. */ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$react$2d$server$2d$dom$2d$turbopack$2f$client$2e$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.node.js [app-rsc] (ecmascript)"); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/node-web-streams-helper.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$create$2d$error$2d$handler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/create-error-handler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$prospective$2d$render$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/prospective-render-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -; -; -; -; -; -; -; -; -; -const filterStackFrame = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/lib/source-maps.js [app-rsc] (ecmascript)").filterStackFrameDEV : "TURBOPACK unreachable"; -const findSourceMapURL = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/lib/source-maps.js [app-rsc] (ecmascript)").findSourceMapURLDEV : "TURBOPACK unreachable"; -function onSegmentPrerenderError(error) { - const digest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$create$2d$error$2d$handler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getDigestForWellKnownError"])(error); - if (digest) { - return digest; - } - // We don't need to log the errors because we would have already done that - // when generating the original Flight stream for the whole page. - if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$prospective$2d$render$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["printDebugThrownValueForProspectiveRender"])(error, (workStore == null ? void 0 : workStore.route) ?? 'unknown route', __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$prospective$2d$render$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Phase"].SegmentCollection); - } -} -async function collectSegmentData(isCacheComponentsEnabled, fullPageDataBuffer, staleTime, clientModules, serverConsumerManifest) { - // Traverse the router tree and generate a prefetch response for each segment. - // A mutable map to collect the results as we traverse the route tree. - const resultMap = new Map(); - // Before we start, warm up the module cache by decoding the page data once. - // Then we can assume that any remaining async tasks that occur the next time - // are due to hanging promises caused by dynamic data access. Note we only - // have to do this once per page, not per individual segment. - // - try { - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$react$2d$server$2d$dom$2d$turbopack$2f$client$2e$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createFromReadableStream"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromBuffer"])(fullPageDataBuffer), { - findSourceMapURL, - serverConsumerManifest - }); - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])(); - } catch {} - // Create an abort controller that we'll use to stop the stream. - const abortController = new AbortController(); - const onCompletedProcessingRouteTree = async ()=>{ - // Since all we're doing is decoding and re-encoding a cached prerender, if - // serializing the stream takes longer than a microtask, it must because of - // hanging promises caused by dynamic data. - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])(); - abortController.abort(); - }; - // Generate a stream for the route tree prefetch. While we're walking the - // tree, we'll also spawn additional tasks to generate the segment prefetches. - // The promises for these tasks are pushed to a mutable array that we will - // await once the route tree is fully rendered. - const segmentTasks = []; - const { prelude: treeStream } = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["prerender"])(// we need to use a component so that when we decode the original stream - // inside of it, the side effects are transferred to the new stream. - // @ts-expect-error - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["jsx"])(PrefetchTreeData, { - isClientParamParsingEnabled: isCacheComponentsEnabled, - fullPageDataBuffer: fullPageDataBuffer, - serverConsumerManifest: serverConsumerManifest, - clientModules: clientModules, - staleTime: staleTime, - segmentTasks: segmentTasks, - onCompletedProcessingRouteTree: onCompletedProcessingRouteTree - }), clientModules, { - filterStackFrame, - signal: abortController.signal, - onError: onSegmentPrerenderError - }); - // Write the route tree to a special `/_tree` segment. - const treeBuffer = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamToBuffer"])(treeStream); - resultMap.set('/_tree', treeBuffer); - // Also output the entire full page data response - resultMap.set('/_full', fullPageDataBuffer); - // Now that we've finished rendering the route tree, all the segment tasks - // should have been spawned. Await them in parallel and write the segment - // prefetches to the result map. - for (const [segmentPath, buffer] of (await Promise.all(segmentTasks))){ - resultMap.set(segmentPath, buffer); - } - return resultMap; -} -async function PrefetchTreeData({ isClientParamParsingEnabled, fullPageDataBuffer, serverConsumerManifest, clientModules, staleTime, segmentTasks, onCompletedProcessingRouteTree }) { - // We're currently rendering a Flight response for the route tree prefetch. - // Inside this component, decode the Flight stream for the whole page. This is - // a hack to transfer the side effects from the original Flight stream (e.g. - // Float preloads) onto the Flight stream for the tree prefetch. - // TODO: React needs a better way to do this. Needed for Server Actions, too. - const initialRSCPayload = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$react$2d$server$2d$dom$2d$turbopack$2f$client$2e$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createFromReadableStream"])(createUnclosingPrefetchStream((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromBuffer"])(fullPageDataBuffer)), { - findSourceMapURL, - serverConsumerManifest - }); - const buildId = initialRSCPayload.b; - // FlightDataPath is an unsound type, hence the additional checks. - const flightDataPaths = initialRSCPayload.f; - if (flightDataPaths.length !== 1 && flightDataPaths[0].length !== 3) { - console.error('Internal Next.js error: InitialRSCPayload does not match the expected ' + 'shape for a prerendered page during segment prefetch generation.'); - return null; - } - const flightRouterState = flightDataPaths[0][0]; - const seedData = flightDataPaths[0][1]; - const head = flightDataPaths[0][2]; - // Compute the route metadata tree by traversing the FlightRouterState. As we - // walk the tree, we will also spawn a task to produce a prefetch response for - // each segment. - const tree = collectSegmentDataImpl(isClientParamParsingEnabled, flightRouterState, buildId, seedData, clientModules, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"], segmentTasks); - // Also spawn a task to produce a prefetch response for the "head" segment. - // The head contains metadata, like the title; it's not really a route - // segment, but it contains RSC data, so it's treated like a segment by - // the client cache. - segmentTasks.push((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])().then(()=>renderSegmentPrefetch(buildId, head, null, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HEAD_REQUEST_KEY"], clientModules))); - // Notify the abort controller that we're done processing the route tree. - // Anything async that happens after this point must be due to hanging - // promises in the original stream. - onCompletedProcessingRouteTree(); - // Render the route tree to a special `/_tree` segment. - const treePrefetch = { - buildId, - tree, - staleTime - }; - return treePrefetch; -} -function collectSegmentDataImpl(isClientParamParsingEnabled, route, buildId, seedData, clientModules, requestKey, segmentTasks) { - // Metadata about the segment. Sent as part of the tree prefetch. Null if - // there are no children. - let slotMetadata = null; - const children = route[1]; - const seedDataChildren = seedData !== null ? seedData[1] : null; - for(const parallelRouteKey in children){ - const childRoute = children[parallelRouteKey]; - const childSegment = childRoute[0]; - const childSeedData = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null; - const childRequestKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["appendSegmentRequestKeyPart"])(requestKey, parallelRouteKey, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createSegmentRequestKeyPart"])(childSegment)); - const childTree = collectSegmentDataImpl(isClientParamParsingEnabled, childRoute, buildId, childSeedData, clientModules, childRequestKey, segmentTasks); - if (slotMetadata === null) { - slotMetadata = {}; - } - slotMetadata[parallelRouteKey] = childTree; - } - const hasRuntimePrefetch = seedData !== null ? seedData[4] : false; - if (seedData !== null) { - // Spawn a task to write the segment data to a new Flight stream. - segmentTasks.push(// current task to escape the current rendering context. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])().then(()=>renderSegmentPrefetch(buildId, seedData[0], seedData[2], requestKey, clientModules))); - } else { - // This segment does not have any seed data. Skip generating a prefetch - // response for it. We'll still include it in the route tree, though. - // TODO: We should encode in the route tree whether a segment is missing - // so we don't attempt to fetch it for no reason. As of now this shouldn't - // ever happen in practice, though. - } - const segment = route[0]; - let name; - let paramType = null; - let paramKey = null; - if (typeof segment === 'string') { - name = segment; - paramKey = segment; - paramType = null; - } else { - name = segment[0]; - paramKey = segment[1]; - paramType = segment[2]; - } - // Metadata about the segment. Sent to the client as part of the - // tree prefetch. - return { - name, - paramType, - // This value is ommitted from the prefetch response when cacheComponents - // is enabled. - paramKey: isClientParamParsingEnabled ? null : paramKey, - hasRuntimePrefetch, - slots: slotMetadata, - isRootLayout: route[4] === true - }; -} -async function renderSegmentPrefetch(buildId, rsc, loading, requestKey, clientModules) { - // Render the segment data to a stream. - // In the future, this is where we can include additional metadata, like the - // stale time and cache tags. - const segmentPrefetch = { - buildId, - rsc, - loading, - isPartial: await isPartialRSCData(rsc, clientModules) - }; - // Since all we're doing is decoding and re-encoding a cached prerender, if - // it takes longer than a microtask, it must because of hanging promises - // caused by dynamic data. Abort the stream at the end of the current task. - const abortController = new AbortController(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])().then(()=>abortController.abort()); - const { prelude: segmentStream } = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["prerender"])(segmentPrefetch, clientModules, { - filterStackFrame, - signal: abortController.signal, - onError: onSegmentPrerenderError - }); - const segmentBuffer = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamToBuffer"])(segmentStream); - if (requestKey === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"]) { - return [ - '/_index', - segmentBuffer - ]; - } else { - return [ - requestKey, - segmentBuffer - ]; - } -} -async function isPartialRSCData(rsc, clientModules) { - // We can determine if a segment contains only partial data if it takes longer - // than a task to encode, because dynamic data is encoded as an infinite - // promise. We must do this in a separate Flight prerender from the one that - // actually generates the prefetch stream because we need to include - // `isPartial` in the stream itself. - let isPartial = false; - const abortController = new AbortController(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["waitAtLeastOneReactRenderTask"])().then(()=>{ - // If we haven't yet finished the outer task, then it must be because we - // accessed dynamic data. - isPartial = true; - abortController.abort(); - }); - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["prerender"])(rsc, clientModules, { - filterStackFrame, - signal: abortController.signal, - onError () {} - }); - return isPartial; -} -function createUnclosingPrefetchStream(originalFlightStream) { - // When PPR is enabled, prefetch streams may contain references that never - // resolve, because that's how we encode dynamic data access. In the decoded - // object returned by the Flight client, these are reified into hanging - // promises that suspend during render, which is effectively what we want. - // The UI resolves when it switches to the dynamic data stream - // (via useDeferredValue(dynamic, static)). - // - // However, the Flight implementation currently errors if the server closes - // the response before all the references are resolved. As a cheat to work - // around this, we wrap the original stream in a new stream that never closes, - // and therefore doesn't error. - const reader = originalFlightStream.getReader(); - return new ReadableStream({ - async pull (controller) { - while(true){ - const { done, value } = await reader.read(); - if (!done) { - // Pass to the target stream and keep consuming the Flight response - // from the server. - controller.enqueue(value); - continue; - } - // The server stream has closed. Exit, but intentionally do not close - // the target stream. - return; - } - } - }); -} //# sourceMappingURL=collect-segment-data.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/clone-response.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "cloneResponse", - ()=>cloneResponse -]); -const noop = ()=>{}; -let registry; -if (globalThis.FinalizationRegistry) { - registry = new FinalizationRegistry((weakRef)=>{ - const stream = weakRef.deref(); - if (stream && !stream.locked) { - stream.cancel('Response object has been garbage collected').then(noop); - } - }); -} -function cloneResponse(original) { - // If the response has no body, then we can just return the original response - // twice because it's immutable. - if (!original.body) { - return [ - original, - original - ]; - } - const [body1, body2] = original.body.tee(); - const cloned1 = new Response(body1, { - status: original.status, - statusText: original.statusText, - headers: original.headers - }); - Object.defineProperty(cloned1, 'url', { - value: original.url, - // How the original response.url behaves - configurable: true, - enumerable: true, - writable: false - }); - // The Fetch Standard allows users to skip consuming the response body by - // relying on garbage collection to release connection resources. - // https://github.com/nodejs/undici?tab=readme-ov-file#garbage-collection - // - // To cancel the stream you then need to cancel both resulting branches. - // Teeing a stream will generally lock it for the duration, preventing other - // readers from locking it. - // https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/tee - // cloned2 is stored in a react cache and cloned for subsequent requests. - // It is the original request, and is is garbage collected by a - // FinalizationRegistry in Undici, but since we're tee-ing the stream - // ourselves, we need to cancel clone1's stream (the response returned from - // our dedupe fetch) when clone1 is reclaimed, otherwise we leak memory. - if (registry && cloned1.body) { - registry.register(cloned1, new WeakRef(cloned1.body)); - } - const cloned2 = new Response(body2, { - status: original.status, - statusText: original.statusText, - headers: original.headers - }); - Object.defineProperty(cloned2, 'url', { - value: original.url, - // How the original response.url behaves - configurable: true, - enumerable: true, - writable: false - }); - return [ - cloned1, - cloned2 - ]; -} //# sourceMappingURL=clone-response.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/dedupe-fetch.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDedupeFetch", - ()=>createDedupeFetch -]); -/** - * Based on https://github.com/facebook/react/blob/d4e78c42a94be027b4dc7ed2659a5fddfbf9bd4e/packages/react/src/ReactFetch.js - */ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/clone-response.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -; -; -; -const simpleCacheKey = '["GET",[],null,"follow",null,null,null,null]' // generateCacheKey(new Request('https://blank')); -; -// Headers that should not affect deduplication -// traceparent and tracestate are used for distributed tracing and should not affect cache keys -const headersToExcludeInCacheKey = new Set([ - 'traceparent', - 'tracestate' -]); -function generateCacheKey(request) { - // We pick the fields that goes into the key used to dedupe requests. - // We don't include the `cache` field, because we end up using whatever - // caching resulted from the first request. - // Notably we currently don't consider non-standard (or future) options. - // This might not be safe. TODO: warn for non-standard extensions differing. - // IF YOU CHANGE THIS UPDATE THE simpleCacheKey ABOVE. - const filteredHeaders = Array.from(request.headers.entries()).filter(([key])=>!headersToExcludeInCacheKey.has(key.toLowerCase())); - return JSON.stringify([ - request.method, - filteredHeaders, - request.mode, - request.redirect, - request.credentials, - request.referrer, - request.referrerPolicy, - request.integrity - ]); -} -function createDedupeFetch(originalFetch) { - const getCacheEntries = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cache"]((url)=>[]); - return function dedupeFetch(resource, options) { - if (options && options.signal) { - // If we're passed a signal, then we assume that - // someone else controls the lifetime of this object and opts out of - // caching. It's effectively the opt-out mechanism. - // Ideally we should be able to check this on the Request but - // it always gets initialized with its own signal so we don't - // know if it's supposed to override - unless we also override the - // Request constructor. - return originalFetch(resource, options); - } - // Normalize the Request - let url; - let cacheKey; - if (typeof resource === 'string' && !options) { - // Fast path. - cacheKey = simpleCacheKey; - url = resource; - } else { - // Normalize the request. - // if resource is not a string or a URL (its an instance of Request) - // then do not instantiate a new Request but instead - // reuse the request as to not disturb the body in the event it's a ReadableStream. - const request = typeof resource === 'string' || resource instanceof URL ? new Request(resource, options) : resource; - if (request.method !== 'GET' && request.method !== 'HEAD' || request.keepalive) { - // We currently don't dedupe requests that might have side-effects. Those - // have to be explicitly cached. We assume that the request doesn't have a - // body if it's GET or HEAD. - // keepalive gets treated the same as if you passed a custom cache signal. - return originalFetch(resource, options); - } - cacheKey = generateCacheKey(request); - url = request.url; - } - const cacheEntries = getCacheEntries(url); - for(let i = 0, j = cacheEntries.length; i < j; i += 1){ - const [key, promise] = cacheEntries[i]; - if (key === cacheKey) { - return promise.then(()=>{ - const response = cacheEntries[i][2]; - if (!response) throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('No cached response'), "__NEXT_ERROR_CODE", { - value: "E579", - enumerable: false, - configurable: true - }); - // We're cloning the response using this utility because there exists - // a bug in the undici library around response cloning. See the - // following pull request for more details: - // https://github.com/vercel/next.js/pull/73274 - const [cloned1, cloned2] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneResponse"])(response); - cacheEntries[i][2] = cloned2; - return cloned1; - }); - } - } - // We pass the original arguments here in case normalizing the Request - // doesn't include all the options in this environment. - const promise = originalFetch(resource, options); - const entry = [ - cacheKey, - promise, - null - ]; - cacheEntries.push(entry); - return promise.then((response)=>{ - // We're cloning the response using this utility because there exists - // a bug in the undici library around response cloning. See the - // following pull request for more details: - // https://github.com/vercel/next.js/pull/73274 - const [cloned1, cloned2] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneResponse"])(response); - entry[2] = cloned2; - return cloned1; - }); - }; -} //# sourceMappingURL=dedupe-fetch.js.map -}), -"[project]/node_modules/next/dist/esm/lib/batcher.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Batcher", - ()=>Batcher -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/detached-promise.js [app-rsc] (ecmascript)"); -; -class Batcher { - constructor(cacheKeyFn, /** - * A function that will be called to schedule the wrapped function to be - * executed. This defaults to a function that will execute the function - * immediately. - */ schedulerFn = (fn)=>fn()){ - this.cacheKeyFn = cacheKeyFn; - this.schedulerFn = schedulerFn; - this.pending = new Map(); - } - static create(options) { - return new Batcher(options == null ? void 0 : options.cacheKeyFn, options == null ? void 0 : options.schedulerFn); - } - /** - * Wraps a function in a promise that will be resolved or rejected only once - * for a given key. This will allow multiple calls to the function to be - * made, but only one will be executed at a time. The result of the first - * call will be returned to all callers. - * - * @param key the key to use for the cache - * @param fn the function to wrap - * @returns a promise that resolves to the result of the function - */ async batch(key, fn) { - const cacheKey = this.cacheKeyFn ? await this.cacheKeyFn(key) : key; - if (cacheKey === null) { - return fn({ - resolve: (value)=>Promise.resolve(value), - key - }); - } - const pending = this.pending.get(cacheKey); - if (pending) return pending; - const { promise, resolve, reject } = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$detached$2d$promise$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DetachedPromise"](); - this.pending.set(cacheKey, promise); - this.schedulerFn(async ()=>{ - try { - const result = await fn({ - resolve, - key - }); - // Resolving a promise multiple times is a no-op, so we can safely - // resolve all pending promises with the same result. - resolve(result); - } catch (err) { - reject(err); - } finally{ - this.pending.delete(cacheKey); - } - }); - return promise; - } -} //# sourceMappingURL=batcher.js.map -}), -"[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "CachedRouteKind", - ()=>CachedRouteKind, - "IncrementalCacheKind", - ()=>IncrementalCacheKind -]); -var CachedRouteKind = /*#__PURE__*/ function(CachedRouteKind) { - CachedRouteKind["APP_PAGE"] = "APP_PAGE"; - CachedRouteKind["APP_ROUTE"] = "APP_ROUTE"; - CachedRouteKind["PAGES"] = "PAGES"; - CachedRouteKind["FETCH"] = "FETCH"; - CachedRouteKind["REDIRECT"] = "REDIRECT"; - CachedRouteKind["IMAGE"] = "IMAGE"; - return CachedRouteKind; -}({}); -var IncrementalCacheKind = /*#__PURE__*/ function(IncrementalCacheKind) { - IncrementalCacheKind["APP_PAGE"] = "APP_PAGE"; - IncrementalCacheKind["APP_ROUTE"] = "APP_ROUTE"; - IncrementalCacheKind["PAGES"] = "PAGES"; - IncrementalCacheKind["FETCH"] = "FETCH"; - IncrementalCacheKind["IMAGE"] = "IMAGE"; - return IncrementalCacheKind; -}({}); //# sourceMappingURL=types.js.map -}), -"[project]/node_modules/next/dist/esm/server/render-result.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>RenderResult -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/node-web-streams-helper.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/pipe-readable.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -; -; -; -class RenderResult { - static #_ = /** - * A render result that represents an empty response. This is used to - * represent a response that was not found or was already sent. - */ this.EMPTY = new RenderResult(null, { - metadata: {}, - contentType: null - }); - /** - * Creates a new RenderResult instance from a static response. - * - * @param value the static response value - * @param contentType the content type of the response - * @returns a new RenderResult instance - */ static fromStatic(value, contentType) { - return new RenderResult(value, { - metadata: {}, - contentType - }); - } - constructor(response, { contentType, waitUntil, metadata }){ - this.response = response; - this.contentType = contentType; - this.metadata = metadata; - this.waitUntil = waitUntil; - } - assignMetadata(metadata) { - Object.assign(this.metadata, metadata); - } - /** - * Returns true if the response is null. It can be null if the response was - * not found or was already sent. - */ get isNull() { - return this.response === null; - } - /** - * Returns false if the response is a string. It can be a string if the page - * was prerendered. If it's not, then it was generated dynamically. - */ get isDynamic() { - return typeof this.response !== 'string'; - } - toUnchunkedString(stream = false) { - if (this.response === null) { - // If the response is null, return an empty string. This behavior is - // intentional as we're now providing the `RenderResult.EMPTY` value. - return ''; - } - if (typeof this.response !== 'string') { - if (!stream) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('dynamic responses cannot be unchunked. This is a bug in Next.js'), "__NEXT_ERROR_CODE", { - value: "E732", - enumerable: false, - configurable: true - }); - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamToString"])(this.readable); - } - return this.response; - } - /** - * Returns a readable stream of the response. - */ get readable() { - if (this.response === null) { - // If the response is null, return an empty stream. This behavior is - // intentional as we're now providing the `RenderResult.EMPTY` value. - return new ReadableStream({ - start (controller) { - controller.close(); - } - }); - } - if (typeof this.response === 'string') { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromString"])(this.response); - } - if (Buffer.isBuffer(this.response)) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromBuffer"])(this.response); - } - // If the response is an array of streams, then chain them together. - if (Array.isArray(this.response)) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["chainStreams"])(...this.response); - } - return this.response; - } - /** - * Coerces the response to an array of streams. This will convert the response - * to an array of streams if it is not already one. - * - * @returns An array of streams - */ coerce() { - if (this.response === null) { - // If the response is null, return an empty stream. This behavior is - // intentional as we're now providing the `RenderResult.EMPTY` value. - return []; - } - if (typeof this.response === 'string') { - return [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromString"])(this.response) - ]; - } else if (Array.isArray(this.response)) { - return this.response; - } else if (Buffer.isBuffer(this.response)) { - return [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$node$2d$web$2d$streams$2d$helper$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["streamFromBuffer"])(this.response) - ]; - } else { - return [ - this.response - ]; - } - } - /** - * Unshifts a new stream to the response. This will convert the response to an - * array of streams if it is not already one and will add the new stream to - * the start of the array. When this response is piped, all of the streams - * will be piped one after the other. - * - * @param readable The new stream to unshift - */ unshift(readable) { - // Coerce the response to an array of streams. - this.response = this.coerce(); - // Add the new stream to the start of the array. - this.response.unshift(readable); - } - /** - * Chains a new stream to the response. This will convert the response to an - * array of streams if it is not already one and will add the new stream to - * the end. When this response is piped, all of the streams will be piped - * one after the other. - * - * @param readable The new stream to chain - */ push(readable) { - // Coerce the response to an array of streams. - this.response = this.coerce(); - // Add the new stream to the end of the array. - this.response.push(readable); - } - /** - * Pipes the response to a writable stream. This will close/cancel the - * writable stream if an error is encountered. If this doesn't throw, then - * the writable stream will be closed or aborted. - * - * @param writable Writable stream to pipe the response to - */ async pipeTo(writable) { - try { - await this.readable.pipeTo(writable, { - // We want to close the writable stream ourselves so that we can wait - // for the waitUntil promise to resolve before closing it. If an error - // is encountered, we'll abort the writable stream if we swallowed the - // error. - preventClose: true - }); - // If there is a waitUntil promise, wait for it to resolve before - // closing the writable stream. - if (this.waitUntil) await this.waitUntil; - // Close the writable stream. - await writable.close(); - } catch (err) { - // If this is an abort error, we should abort the writable stream (as we - // took ownership of it when we started piping). We don't need to re-throw - // because we handled the error. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAbortError"])(err)) { - // Abort the writable stream if an error is encountered. - await writable.abort(err); - return; - } - // We're not aborting the writer here as when this method throws it's not - // clear as to how so the caller should assume it's their responsibility - // to clean up the writer. - throw err; - } - } - /** - * Pipes the response to a node response. This will close/cancel the node - * response if an error is encountered. - * - * @param res - */ async pipeToNodeResponse(res) { - await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$pipe$2d$readable$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pipeToNodeResponse"])(this.readable, res, this.waitUntil); - } -} //# sourceMappingURL=render-result.js.map -}), -"[project]/node_modules/next/dist/esm/server/response-cache/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "fromResponseCacheEntry", - ()=>fromResponseCacheEntry, - "routeKindToIncrementalCacheKind", - ()=>routeKindToIncrementalCacheKind, - "toResponseCacheEntry", - ()=>toResponseCacheEntry -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/render-result.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -; -; -; -; -async function fromResponseCacheEntry(cacheEntry) { - var _cacheEntry_value, _cacheEntry_value1; - return { - ...cacheEntry, - value: ((_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES ? { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES, - html: await cacheEntry.value.html.toUnchunkedString(true), - pageData: cacheEntry.value.pageData, - headers: cacheEntry.value.headers, - status: cacheEntry.value.status - } : ((_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE ? { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE, - html: await cacheEntry.value.html.toUnchunkedString(true), - postponed: cacheEntry.value.postponed, - rscData: cacheEntry.value.rscData, - headers: cacheEntry.value.headers, - status: cacheEntry.value.status, - segmentData: cacheEntry.value.segmentData - } : cacheEntry.value - }; -} -async function toResponseCacheEntry(response) { - var _response_value, _response_value1; - if (!response) return null; - return { - isMiss: response.isMiss, - isStale: response.isStale, - cacheControl: response.cacheControl, - value: ((_response_value = response.value) == null ? void 0 : _response_value.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES ? { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES, - html: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].fromStatic(response.value.html, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_CONTENT_TYPE_HEADER"]), - pageData: response.value.pageData, - headers: response.value.headers, - status: response.value.status - } : ((_response_value1 = response.value) == null ? void 0 : _response_value1.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE ? { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE, - html: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].fromStatic(response.value.html, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_CONTENT_TYPE_HEADER"]), - rscData: response.value.rscData, - headers: response.value.headers, - status: response.value.status, - postponed: response.value.postponed, - segmentData: response.value.segmentData - } : response.value - }; -} -function routeKindToIncrementalCacheKind(routeKind) { - switch(routeKind){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].PAGES: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].PAGES; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].APP_PAGE: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].APP_PAGE; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].IMAGE: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].IMAGE; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].APP_ROUTE: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].APP_ROUTE; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].PAGES_API: - // Pages Router API routes are not cached in the incremental cache. - throw Object.defineProperty(new Error(`Unexpected route kind ${routeKind}`), "__NEXT_ERROR_CODE", { - value: "E64", - enumerable: false, - configurable: true - }); - default: - return routeKind; - } -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/response-cache/index.js [app-rsc] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>ResponseCache -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$batcher$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/batcher.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/lru-cache.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/output/log.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)"); -; -; -; -; -; -/** - * Parses an environment variable as a positive integer, returning the fallback - * if the value is missing, not a number, or not positive. - */ function parsePositiveInt(envValue, fallback) { - if (!envValue) return fallback; - const parsed = parseInt(envValue, 10); - return Number.isFinite(parsed) && parsed > 0 ? parsed : fallback; -} -/** - * Default TTL (in milliseconds) for minimal mode response cache entries. - * Used for cache hit validation as a fallback for providers that don't - * send the x-invocation-id header yet. - * - * 10 seconds chosen because: - * - Long enough to dedupe rapid successive requests (e.g., page + data) - * - Short enough to not serve stale data across unrelated requests - * - * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_TTL` environment variable. - */ const DEFAULT_TTL_MS = parsePositiveInt(process.env.NEXT_PRIVATE_RESPONSE_CACHE_TTL, 10000); -/** - * Default maximum number of entries in the response cache. - * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE` environment variable. - */ const DEFAULT_MAX_SIZE = parsePositiveInt(process.env.NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE, 150); -/** - * Separator used in compound cache keys to join pathname and invocationID. - * Using null byte (\0) since it cannot appear in valid URL paths or UUIDs. - */ const KEY_SEPARATOR = '\0'; -/** - * Sentinel value used for TTL-based cache entries (when invocationID is undefined). - * Chosen to be a clearly reserved marker for internal cache keys. - */ const TTL_SENTINEL = '__ttl_sentinel__'; -/** - * Creates a compound cache key from pathname and invocationID. - */ function createCacheKey(pathname, invocationID) { - return `${pathname}${KEY_SEPARATOR}${invocationID ?? TTL_SENTINEL}`; -} -/** - * Extracts the invocationID from a compound cache key. - * Returns undefined if the key used TTL_SENTINEL. - */ function extractInvocationID(compoundKey) { - const separatorIndex = compoundKey.lastIndexOf(KEY_SEPARATOR); - if (separatorIndex === -1) return undefined; - const invocationID = compoundKey.slice(separatorIndex + 1); - return invocationID === TTL_SENTINEL ? undefined : invocationID; -} -; -class ResponseCache { - constructor(minimal_mode, maxSize = DEFAULT_MAX_SIZE, ttl = DEFAULT_TTL_MS){ - this.getBatcher = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$batcher$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Batcher"].create({ - // Ensure on-demand revalidate doesn't block normal requests, it should be - // safe to run an on-demand revalidate for the same key as a normal request. - cacheKeyFn: ({ key, isOnDemandRevalidate })=>`${key}-${isOnDemandRevalidate ? '1' : '0'}`, - // We wait to do any async work until after we've added our promise to - // `pendingResponses` to ensure that any any other calls will reuse the - // same promise until we've fully finished our work. - schedulerFn: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"] - }); - this.revalidateBatcher = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$batcher$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Batcher"].create({ - // We wait to do any async work until after we've added our promise to - // `pendingResponses` to ensure that any any other calls will reuse the - // same promise until we've fully finished our work. - schedulerFn: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"] - }); - /** - * Set of invocation IDs that have had cache entries evicted. - * Used to detect when the cache size may be too small. - * Bounded to prevent memory growth. - */ this.evictedInvocationIDs = new Set(); - this.minimal_mode = minimal_mode; - this.maxSize = maxSize; - this.ttl = ttl; - // Create the LRU cache with eviction tracking - this.cache = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$lru$2d$cache$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["LRUCache"](maxSize, undefined, (compoundKey)=>{ - const invocationID = extractInvocationID(compoundKey); - if (invocationID) { - // Bound to 100 entries to prevent unbounded memory growth. - // FIFO eviction is acceptable here because: - // 1. Invocations are short-lived (single request lifecycle), so older - // invocations are unlikely to still be active after 100 newer ones - // 2. This warning mechanism is best-effort for developer guidance— - // missing occasional eviction warnings doesn't affect correctness - // 3. If a long-running invocation is somehow evicted and then has - // another cache entry evicted, it will simply be re-added - if (this.evictedInvocationIDs.size >= 100) { - const first = this.evictedInvocationIDs.values().next().value; - if (first) this.evictedInvocationIDs.delete(first); - } - this.evictedInvocationIDs.add(invocationID); - } - }); - } - /** - * Gets the response cache entry for the given key. - * - * @param key - The key to get the response cache entry for. - * @param responseGenerator - The response generator to use to generate the response cache entry. - * @param context - The context for the get request. - * @returns The response cache entry. - */ async get(key, responseGenerator, context) { - // If there is no key for the cache, we can't possibly look this up in the - // cache so just return the result of the response generator. - if (!key) { - return responseGenerator({ - hasResolved: false, - previousCacheEntry: null - }); - } - // Check minimal mode cache before doing any other work. - if (this.minimal_mode) { - const cacheKey = createCacheKey(key, context.invocationID); - const cachedItem = this.cache.get(cacheKey); - if (cachedItem) { - // With invocationID: exact match found - always a hit - // With TTL mode: must check expiration - if (context.invocationID !== undefined) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["toResponseCacheEntry"])(cachedItem.entry); - } - // TTL mode: check expiration - const now = Date.now(); - if (cachedItem.expiresAt > now) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["toResponseCacheEntry"])(cachedItem.entry); - } - // TTL expired - clean up - this.cache.remove(cacheKey); - } - // Warn if this invocation had entries evicted - indicates cache may be too small. - if (context.invocationID && this.evictedInvocationIDs.has(context.invocationID)) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$output$2f$log$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["warnOnce"])(`Response cache entry was evicted for invocation ${context.invocationID}. ` + `Consider increasing NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE (current: ${this.maxSize}).`); - } - } - const { incrementalCache, isOnDemandRevalidate = false, isFallback = false, isRoutePPREnabled = false, isPrefetch = false, waitUntil, routeKind, invocationID } = context; - const response = await this.getBatcher.batch({ - key, - isOnDemandRevalidate - }, ({ resolve })=>{ - const promise = this.handleGet(key, responseGenerator, { - incrementalCache, - isOnDemandRevalidate, - isFallback, - isRoutePPREnabled, - isPrefetch, - routeKind, - invocationID - }, resolve); - // We need to ensure background revalidates are passed to waitUntil. - if (waitUntil) waitUntil(promise); - return promise; - }); - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["toResponseCacheEntry"])(response); - } - /** - * Handles the get request for the response cache. - * - * @param key - The key to get the response cache entry for. - * @param responseGenerator - The response generator to use to generate the response cache entry. - * @param context - The context for the get request. - * @param resolve - The resolve function to use to resolve the response cache entry. - * @returns The response cache entry. - */ async handleGet(key, responseGenerator, context, resolve) { - let previousIncrementalCacheEntry = null; - let resolved = false; - try { - // Get the previous cache entry if not in minimal mode - previousIncrementalCacheEntry = !this.minimal_mode ? await context.incrementalCache.get(key, { - kind: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["routeKindToIncrementalCacheKind"])(context.routeKind), - isRoutePPREnabled: context.isRoutePPREnabled, - isFallback: context.isFallback - }) : null; - if (previousIncrementalCacheEntry && !context.isOnDemandRevalidate) { - resolve(previousIncrementalCacheEntry); - resolved = true; - if (!previousIncrementalCacheEntry.isStale || context.isPrefetch) { - // The cached value is still valid, so we don't need to update it yet. - return previousIncrementalCacheEntry; - } - } - // Revalidate the cache entry - const incrementalResponseCacheEntry = await this.revalidate(key, context.incrementalCache, context.isRoutePPREnabled, context.isFallback, responseGenerator, previousIncrementalCacheEntry, previousIncrementalCacheEntry !== null && !context.isOnDemandRevalidate, undefined, context.invocationID); - // Handle null response - if (!incrementalResponseCacheEntry) { - // Remove the cache item if it was set so we don't use it again. - if (this.minimal_mode) { - const cacheKey = createCacheKey(key, context.invocationID); - this.cache.remove(cacheKey); - } - return null; - } - // Resolve for on-demand revalidation or if not already resolved - if (context.isOnDemandRevalidate && !resolved) { - return incrementalResponseCacheEntry; - } - return incrementalResponseCacheEntry; - } catch (err) { - // If we've already resolved the cache entry, we can't reject as we - // already resolved the cache entry so log the error here. - if (resolved) { - console.error(err); - return null; - } - throw err; - } - } - /** - * Revalidates the cache entry for the given key. - * - * @param key - The key to revalidate the cache entry for. - * @param incrementalCache - The incremental cache to use to revalidate the cache entry. - * @param isRoutePPREnabled - Whether the route is PPR enabled. - * @param isFallback - Whether the route is a fallback. - * @param responseGenerator - The response generator to use to generate the response cache entry. - * @param previousIncrementalCacheEntry - The previous cache entry to use to revalidate the cache entry. - * @param hasResolved - Whether the response has been resolved. - * @param waitUntil - Optional function to register background work. - * @param invocationID - The invocation ID for cache key scoping. - * @returns The revalidated cache entry. - */ async revalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, waitUntil, invocationID) { - return this.revalidateBatcher.batch(key, ()=>{ - const promise = this.handleRevalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, invocationID); - // We need to ensure background revalidates are passed to waitUntil. - if (waitUntil) waitUntil(promise); - return promise; - }); - } - async handleRevalidate(key, incrementalCache, isRoutePPREnabled, isFallback, responseGenerator, previousIncrementalCacheEntry, hasResolved, invocationID) { - try { - // Generate the response cache entry using the response generator. - const responseCacheEntry = await responseGenerator({ - hasResolved, - previousCacheEntry: previousIncrementalCacheEntry, - isRevalidating: true - }); - if (!responseCacheEntry) { - return null; - } - // Convert the response cache entry to an incremental response cache entry. - const incrementalResponseCacheEntry = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["fromResponseCacheEntry"])({ - ...responseCacheEntry, - isMiss: !previousIncrementalCacheEntry - }); - // We want to persist the result only if it has a cache control value - // defined. - if (incrementalResponseCacheEntry.cacheControl) { - if (this.minimal_mode) { - // Set TTL expiration for cache hit validation. Entries are validated - // by invocationID when available, with TTL as a fallback for providers - // that don't send x-invocation-id. Memory is managed by LRU eviction. - const cacheKey = createCacheKey(key, invocationID); - this.cache.set(cacheKey, { - entry: incrementalResponseCacheEntry, - expiresAt: Date.now() + this.ttl - }); - } else { - await incrementalCache.set(key, incrementalResponseCacheEntry.value, { - cacheControl: incrementalResponseCacheEntry.cacheControl, - isRoutePPREnabled, - isFallback - }); - } - } - return incrementalResponseCacheEntry; - } catch (err) { - // When a path is erroring we automatically re-set the existing cache - // with new revalidate and expire times to prevent non-stop retrying. - if (previousIncrementalCacheEntry == null ? void 0 : previousIncrementalCacheEntry.cacheControl) { - const revalidate = Math.min(Math.max(previousIncrementalCacheEntry.cacheControl.revalidate || 3, 3), 30); - const expire = previousIncrementalCacheEntry.cacheControl.expire === undefined ? undefined : Math.max(revalidate + 3, previousIncrementalCacheEntry.cacheControl.expire); - await incrementalCache.set(key, previousIncrementalCacheEntry.value, { - cacheControl: { - revalidate: revalidate, - expire: expire - }, - isRoutePPREnabled, - isFallback - }); - } - // We haven't resolved yet, so let's throw to indicate an error. - throw err; - } - } -} //# sourceMappingURL=index.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/patch-fetch.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "NEXT_PATCH_SYMBOL", - ()=>NEXT_PATCH_SYMBOL, - "createPatchedFetcher", - ()=>createPatchedFetcher, - "patchFetch", - ()=>patchFetch, - "validateRevalidate", - ()=>validateRevalidate, - "validateTags", - ()=>validateTags -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$dedupe$2d$fetch$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/dedupe-fetch.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/index.js [app-rsc] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/clone-response.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -const isEdgeRuntime = ("TURBOPACK compile-time value", "nodejs") === 'edge'; -const NEXT_PATCH_SYMBOL = Symbol.for('next-patch'); -function isFetchPatched() { - return globalThis[NEXT_PATCH_SYMBOL] === true; -} -function validateRevalidate(revalidateVal, route) { - try { - let normalizedRevalidate = undefined; - if (revalidateVal === false) { - normalizedRevalidate = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"]; - } else if (typeof revalidateVal === 'number' && !isNaN(revalidateVal) && revalidateVal > -1) { - normalizedRevalidate = revalidateVal; - } else if (typeof revalidateVal !== 'undefined') { - throw Object.defineProperty(new Error(`Invalid revalidate value "${revalidateVal}" on "${route}", must be a non-negative number or false`), "__NEXT_ERROR_CODE", { - value: "E179", - enumerable: false, - configurable: true - }); - } - return normalizedRevalidate; - } catch (err) { - // handle client component error from attempting to check revalidate value - if (err instanceof Error && err.message.includes('Invalid revalidate')) { - throw err; - } - return undefined; - } -} -function validateTags(tags, description) { - const validTags = []; - const invalidTags = []; - for(let i = 0; i < tags.length; i++){ - const tag = tags[i]; - if (typeof tag !== 'string') { - invalidTags.push({ - tag, - reason: 'invalid type, must be a string' - }); - } else if (tag.length > __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAG_MAX_LENGTH"]) { - invalidTags.push({ - tag, - reason: `exceeded max length of ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAG_MAX_LENGTH"]}` - }); - } else { - validTags.push(tag); - } - if (validTags.length > __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAG_MAX_ITEMS"]) { - console.warn(`Warning: exceeded max tag count for ${description}, dropped tags:`, tags.slice(i).join(', ')); - break; - } - } - if (invalidTags.length > 0) { - console.warn(`Warning: invalid tags passed to ${description}: `); - for (const { tag, reason } of invalidTags){ - console.log(`tag: "${tag}" ${reason}`); - } - } - return validTags; -} -function trackFetchMetric(workStore, ctx) { - if (!workStore.shouldTrackFetchMetrics) { - return; - } - workStore.fetchMetrics ??= []; - workStore.fetchMetrics.push({ - ...ctx, - end: performance.timeOrigin + performance.now(), - idx: workStore.nextFetchId || 0 - }); -} -async function createCachedPrerenderResponse(res, cacheKey, incrementalCacheContext, incrementalCache, revalidate, handleUnlock) { - // We are prerendering at build time or revalidate time with cacheComponents so we - // need to buffer the response so we can guarantee it can be read in a - // microtask. - const bodyBuffer = await res.arrayBuffer(); - const fetchedData = { - headers: Object.fromEntries(res.headers.entries()), - body: Buffer.from(bodyBuffer).toString('base64'), - status: res.status, - url: res.url - }; - // We can skip setting the serverComponentsHmrCache because we aren't in dev - // mode. - if (incrementalCacheContext) { - await incrementalCache.set(cacheKey, { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].FETCH, - data: fetchedData, - revalidate - }, incrementalCacheContext); - } - await handleUnlock(); - // We return a new Response to the caller. - return new Response(bodyBuffer, { - headers: res.headers, - status: res.status, - statusText: res.statusText - }); -} -async function createCachedDynamicResponse(workStore, res, cacheKey, incrementalCacheContext, incrementalCache, serverComponentsHmrCache, revalidate, input, handleUnlock) { - // We're cloning the response using this utility because there exists a bug in - // the undici library around response cloning. See the following pull request - // for more details: https://github.com/vercel/next.js/pull/73274 - const [cloned1, cloned2] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneResponse"])(res); - // We are dynamically rendering including dev mode. We want to return the - // response to the caller as soon as possible because it might stream over a - // very long time. - const cacheSetPromise = cloned1.arrayBuffer().then(async (arrayBuffer)=>{ - const bodyBuffer = Buffer.from(arrayBuffer); - const fetchedData = { - headers: Object.fromEntries(cloned1.headers.entries()), - body: bodyBuffer.toString('base64'), - status: cloned1.status, - url: cloned1.url - }; - serverComponentsHmrCache == null ? void 0 : serverComponentsHmrCache.set(cacheKey, fetchedData); - if (incrementalCacheContext) { - await incrementalCache.set(cacheKey, { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].FETCH, - data: fetchedData, - revalidate - }, incrementalCacheContext); - } - }).catch((error)=>console.warn(`Failed to set fetch cache`, input, error)).finally(handleUnlock); - const pendingRevalidateKey = `cache-set-${cacheKey}`; - const pendingRevalidates = workStore.pendingRevalidates ??= {}; - let pendingRevalidatePromise = Promise.resolve(); - if (pendingRevalidateKey in pendingRevalidates) { - // There is already a pending revalidate entry that we need to await to - // avoid race conditions. - pendingRevalidatePromise = pendingRevalidates[pendingRevalidateKey]; - } - pendingRevalidates[pendingRevalidateKey] = pendingRevalidatePromise.then(()=>cacheSetPromise).finally(()=>{ - // If the pending revalidate is not present in the store, then we have - // nothing to delete. - if (!(pendingRevalidates == null ? void 0 : pendingRevalidates[pendingRevalidateKey])) { - return; - } - delete pendingRevalidates[pendingRevalidateKey]; - }); - return cloned2; -} -function createPatchedFetcher(originFetch, { workAsyncStorage, workUnitAsyncStorage }) { - // Create the patched fetch function. - const patched = async function fetch(input, init) { - var _init_method, _init_next; - let url; - try { - url = new URL(input instanceof Request ? input.url : input); - url.username = ''; - url.password = ''; - } catch { - // Error caused by malformed URL should be handled by native fetch - url = undefined; - } - const fetchUrl = (url == null ? void 0 : url.href) ?? ''; - const method = (init == null ? void 0 : (_init_method = init.method) == null ? void 0 : _init_method.toUpperCase()) || 'GET'; - // Do create a new span trace for internal fetches in the - // non-verbose mode. - const isInternal = (init == null ? void 0 : (_init_next = init.next) == null ? void 0 : _init_next.internal) === true; - const hideSpan = process.env.NEXT_OTEL_FETCH_DISABLED === '1'; - // We don't track fetch metrics for internal fetches - // so it's not critical that we have a start time, as it won't be recorded. - // This is to workaround a flaky issue where performance APIs might - // not be available and will require follow-up investigation. - const fetchStart = isInternal ? undefined : performance.timeOrigin + performance.now(); - const workStore = workAsyncStorage.getStore(); - const workUnitStore = workUnitAsyncStorage.getStore(); - let cacheSignal = workUnitStore ? (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["getCacheSignal"])(workUnitStore) : null; - if (cacheSignal) { - cacheSignal.beginRead(); - } - const result = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(isInternal ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NextNodeServerSpan"].internalFetch : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["AppRenderSpan"].fetch, { - hideSpan, - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SpanKind"].CLIENT, - spanName: [ - 'fetch', - method, - fetchUrl - ].filter(Boolean).join(' '), - attributes: { - 'http.url': fetchUrl, - 'http.method': method, - 'net.peer.name': url == null ? void 0 : url.hostname, - 'net.peer.port': (url == null ? void 0 : url.port) || undefined - } - }, async ()=>{ - var _getRequestMeta; - // If this is an internal fetch, we should not do any special treatment. - if (isInternal) { - return originFetch(input, init); - } - // If the workStore is not available, we can't do any - // special treatment of fetch, therefore fallback to the original - // fetch implementation. - if (!workStore) { - return originFetch(input, init); - } - // We should also fallback to the original fetch implementation if we - // are in draft mode, it does not constitute a static generation. - if (workStore.isDraftMode) { - return originFetch(input, init); - } - const isRequestInput = input && typeof input === 'object' && typeof input.method === 'string'; - const getRequestMeta = (field)=>{ - // If request input is present but init is not, retrieve from input first. - const value = init == null ? void 0 : init[field]; - return value || (isRequestInput ? input[field] : null); - }; - let finalRevalidate = undefined; - const getNextField = (field)=>{ - var _init_next, _init_next1, _input_next; - return typeof (init == null ? void 0 : (_init_next = init.next) == null ? void 0 : _init_next[field]) !== 'undefined' ? init == null ? void 0 : (_init_next1 = init.next) == null ? void 0 : _init_next1[field] : isRequestInput ? (_input_next = input.next) == null ? void 0 : _input_next[field] : undefined; - }; - // RequestInit doesn't keep extra fields e.g. next so it's - // only available if init is used separate - const originalFetchRevalidate = getNextField('revalidate'); - let currentFetchRevalidate = originalFetchRevalidate; - const tags = validateTags(getNextField('tags') || [], `fetch ${input.toString()}`); - let revalidateStore; - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - // TODO: Stop accumulating tags in client prerender. (fallthrough) - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - revalidateStore = workUnitStore; - break; - case 'request': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - if (revalidateStore) { - if (Array.isArray(tags)) { - // Collect tags onto parent caches or parent prerenders. - const collectedTags = revalidateStore.tags ?? (revalidateStore.tags = []); - for (const tag of tags){ - if (!collectedTags.includes(tag)) { - collectedTags.push(tag); - } - } - } - } - const implicitTags = workUnitStore == null ? void 0 : workUnitStore.implicitTags; - let pageFetchCacheMode = workStore.fetchCache; - if (workUnitStore) { - switch(workUnitStore.type){ - case 'unstable-cache': - // Inside unstable-cache we treat it the same as force-no-store on - // the page. - pageFetchCacheMode = 'force-no-store'; - break; - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - case 'cache': - case 'private-cache': - break; - default: - workUnitStore; - } - } - const isUsingNoStore = !!workStore.isUnstableNoStore; - let currentFetchCacheConfig = getRequestMeta('cache'); - let cacheReason = ''; - let cacheWarning; - if (typeof currentFetchCacheConfig === 'string' && typeof currentFetchRevalidate !== 'undefined') { - // If the revalidate value conflicts with the cache value, we should warn the user and unset the conflicting values. - const isConflictingRevalidate = currentFetchCacheConfig === 'force-cache' && currentFetchRevalidate === 0 || // revalidate: >0 or revalidate: false and cache: no-store - currentFetchCacheConfig === 'no-store' && (currentFetchRevalidate > 0 || currentFetchRevalidate === false); - if (isConflictingRevalidate) { - cacheWarning = `Specified "cache: ${currentFetchCacheConfig}" and "revalidate: ${currentFetchRevalidate}", only one should be specified.`; - currentFetchCacheConfig = undefined; - currentFetchRevalidate = undefined; - } - } - const hasExplicitFetchCacheOptOut = currentFetchCacheConfig === 'no-cache' || currentFetchCacheConfig === 'no-store' || // the fetch isn't explicitly caching and the segment level cache config signals not to cache - // note: `pageFetchCacheMode` is also set by being in an unstable_cache context. - pageFetchCacheMode === 'force-no-store' || pageFetchCacheMode === 'only-no-store'; - // If no explicit fetch cache mode is set, but dynamic = `force-dynamic` is set, - // we shouldn't consider caching the fetch. This is because the `dynamic` cache - // is considered a "top-level" cache mode, whereas something like `fetchCache` is more - // fine-grained. Top-level modes are responsible for setting reasonable defaults for the - // other configurations. - const noFetchConfigAndForceDynamic = !pageFetchCacheMode && !currentFetchCacheConfig && !currentFetchRevalidate && workStore.forceDynamic; - if (// which will signal the cache to not revalidate - currentFetchCacheConfig === 'force-cache' && typeof currentFetchRevalidate === 'undefined') { - currentFetchRevalidate = false; - } else if (hasExplicitFetchCacheOptOut || noFetchConfigAndForceDynamic) { - currentFetchRevalidate = 0; - } - if (currentFetchCacheConfig === 'no-cache' || currentFetchCacheConfig === 'no-store') { - cacheReason = `cache: ${currentFetchCacheConfig}`; - } - finalRevalidate = validateRevalidate(currentFetchRevalidate, workStore.route); - const _headers = getRequestMeta('headers'); - const initHeaders = typeof (_headers == null ? void 0 : _headers.get) === 'function' ? _headers : new Headers(_headers || {}); - const hasUnCacheableHeader = initHeaders.get('authorization') || initHeaders.get('cookie'); - const isUnCacheableMethod = ![ - 'get', - 'head' - ].includes(((_getRequestMeta = getRequestMeta('method')) == null ? void 0 : _getRequestMeta.toLowerCase()) || 'get'); - /** - * We automatically disable fetch caching under the following conditions: - * - Fetch cache configs are not set. Specifically: - * - A page fetch cache mode is not set (export const fetchCache=...) - * - A fetch cache mode is not set in the fetch call (fetch(url, { cache: ... })) - * or the fetch cache mode is set to 'default' - * - A fetch revalidate value is not set in the fetch call (fetch(url, { revalidate: ... })) - * - OR the fetch comes after a configuration that triggered dynamic rendering (e.g., reading cookies()) - * and the fetch was considered uncacheable (e.g., POST method or has authorization headers) - */ const hasNoExplicitCacheConfig = pageFetchCacheMode == undefined && // eslint-disable-next-line eqeqeq - (currentFetchCacheConfig == undefined || // when considering whether to opt into the default "no-cache" fetch semantics, - // a "default" cache config should be treated the same as no cache config - currentFetchCacheConfig === 'default') && // eslint-disable-next-line eqeqeq - currentFetchRevalidate == undefined; - let autoNoCache = Boolean((hasUnCacheableHeader || isUnCacheableMethod) && (revalidateStore == null ? void 0 : revalidateStore.revalidate) === 0); - let isImplicitBuildTimeCache = false; - if (!autoNoCache && hasNoExplicitCacheConfig) { - // We don't enable automatic no-cache behavior during build-time - // prerendering so that we can still leverage the fetch cache between - // export workers. - if (workStore.isBuildTimePrerendering) { - isImplicitBuildTimeCache = true; - } else { - autoNoCache = true; - } - } - // If we have no cache config, and we're in Dynamic I/O prerendering, - // it'll be a dynamic call. We don't have to issue that dynamic call. - if (hasNoExplicitCacheConfig && workUnitStore !== undefined) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - // While we don't want to do caching in the client scope we know the - // fetch will be dynamic for cacheComponents so we may as well avoid the - // call here. (fallthrough) - case 'prerender-client': - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, 'fetch()'); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - switch(pageFetchCacheMode){ - case 'force-no-store': - { - cacheReason = 'fetchCache = force-no-store'; - break; - } - case 'only-no-store': - { - if (currentFetchCacheConfig === 'force-cache' || typeof finalRevalidate !== 'undefined' && finalRevalidate > 0) { - throw Object.defineProperty(new Error(`cache: 'force-cache' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-no-store'`), "__NEXT_ERROR_CODE", { - value: "E448", - enumerable: false, - configurable: true - }); - } - cacheReason = 'fetchCache = only-no-store'; - break; - } - case 'only-cache': - { - if (currentFetchCacheConfig === 'no-store') { - throw Object.defineProperty(new Error(`cache: 'no-store' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-cache'`), "__NEXT_ERROR_CODE", { - value: "E521", - enumerable: false, - configurable: true - }); - } - break; - } - case 'force-cache': - { - if (typeof currentFetchRevalidate === 'undefined' || currentFetchRevalidate === 0) { - cacheReason = 'fetchCache = force-cache'; - finalRevalidate = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"]; - } - break; - } - case 'default-cache': - case 'default-no-store': - case 'auto': - case undefined: - break; - default: - pageFetchCacheMode; - } - if (typeof finalRevalidate === 'undefined') { - if (pageFetchCacheMode === 'default-cache' && !isUsingNoStore) { - finalRevalidate = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"]; - cacheReason = 'fetchCache = default-cache'; - } else if (pageFetchCacheMode === 'default-no-store') { - finalRevalidate = 0; - cacheReason = 'fetchCache = default-no-store'; - } else if (isUsingNoStore) { - finalRevalidate = 0; - cacheReason = 'noStore call'; - } else if (autoNoCache) { - finalRevalidate = 0; - cacheReason = 'auto no cache'; - } else { - // TODO: should we consider this case an invariant? - cacheReason = 'auto cache'; - finalRevalidate = revalidateStore ? revalidateStore.revalidate : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"]; - } - } else if (!cacheReason) { - cacheReason = `revalidate: ${finalRevalidate}`; - } - if (// `revalidate: 0` values - !(workStore.forceStatic && finalRevalidate === 0) && // we don't consider autoNoCache to switch to dynamic for ISR - !autoNoCache && // If the revalidate value isn't currently set or the value is less - // than the current revalidate value, we should update the revalidate - // value. - revalidateStore && finalRevalidate < revalidateStore.revalidate) { - // If we were setting the revalidate value to 0, we should try to - // postpone instead first. - if (finalRevalidate === 0) { - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, 'fetch()'); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["markCurrentScopeAsDynamic"])(workStore, workUnitStore, `revalidate: 0 fetch ${input} ${workStore.route}`); - } - // We only want to set the revalidate store's revalidate time if it - // was explicitly set for the fetch call, i.e. - // originalFetchRevalidate. - if (revalidateStore && originalFetchRevalidate === finalRevalidate) { - revalidateStore.revalidate = finalRevalidate; - } - } - const isCacheableRevalidate = typeof finalRevalidate === 'number' && finalRevalidate > 0; - let cacheKey; - const { incrementalCache } = workStore; - let isHmrRefresh = false; - let serverComponentsHmrCache; - if (workUnitStore) { - switch(workUnitStore.type){ - case 'request': - case 'cache': - case 'private-cache': - isHmrRefresh = workUnitStore.isHmrRefresh ?? false; - serverComponentsHmrCache = workUnitStore.serverComponentsHmrCache; - break; - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - case 'prerender-ppr': - case 'prerender-legacy': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - if (incrementalCache && (isCacheableRevalidate || serverComponentsHmrCache)) { - try { - cacheKey = await incrementalCache.generateCacheKey(fetchUrl, isRequestInput ? input : init); - } catch (err) { - console.error(`Failed to generate cache key for`, input); - } - } - const fetchIdx = workStore.nextFetchId ?? 1; - workStore.nextFetchId = fetchIdx + 1; - let handleUnlock = ()=>{}; - const doOriginalFetch = async (isStale, cacheReasonOverride)=>{ - const requestInputFields = [ - 'cache', - 'credentials', - 'headers', - 'integrity', - 'keepalive', - 'method', - 'mode', - 'redirect', - 'referrer', - 'referrerPolicy', - 'window', - 'duplex', - // don't pass through signal when revalidating - ...isStale ? [] : [ - 'signal' - ] - ]; - if (isRequestInput) { - const reqInput = input; - const reqOptions = { - body: reqInput._ogBody || reqInput.body - }; - for (const field of requestInputFields){ - // @ts-expect-error custom fields - reqOptions[field] = reqInput[field]; - } - input = new Request(reqInput.url, reqOptions); - } else if (init) { - const { _ogBody, body, signal, ...otherInput } = init; - init = { - ...otherInput, - body: _ogBody || body, - signal: isStale ? undefined : signal - }; - } - // add metadata to init without editing the original - const clonedInit = { - ...init, - next: { - ...init == null ? void 0 : init.next, - fetchType: 'origin', - fetchIdx - } - }; - return originFetch(input, clonedInit).then(async (res)=>{ - if (!isStale && fetchStart) { - trackFetchMetric(workStore, { - start: fetchStart, - url: fetchUrl, - cacheReason: cacheReasonOverride || cacheReason, - cacheStatus: finalRevalidate === 0 || cacheReasonOverride ? 'skip' : 'miss', - cacheWarning, - status: res.status, - method: clonedInit.method || 'GET' - }); - } - if (res.status === 200 && incrementalCache && cacheKey && (isCacheableRevalidate || serverComponentsHmrCache)) { - const normalizedRevalidate = finalRevalidate >= __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INFINITE_CACHE"] ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CACHE_ONE_YEAR"] : finalRevalidate; - const incrementalCacheConfig = isCacheableRevalidate ? { - fetchCache: true, - fetchUrl, - fetchIdx, - tags, - isImplicitBuildTimeCache - } : undefined; - switch(workUnitStore == null ? void 0 : workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - return createCachedPrerenderResponse(res, cacheKey, incrementalCacheConfig, incrementalCache, normalizedRevalidate, handleUnlock); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering && workUnitStore.cacheSignal) { - // We're filling caches for a staged render, - // so we need to wait for the response to finish instead of streaming. - return createCachedPrerenderResponse(res, cacheKey, incrementalCacheConfig, incrementalCache, normalizedRevalidate, handleUnlock); - } - // fallthrough - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - case undefined: - return createCachedDynamicResponse(workStore, res, cacheKey, incrementalCacheConfig, incrementalCache, serverComponentsHmrCache, normalizedRevalidate, input, handleUnlock); - default: - workUnitStore; - } - } - // we had response that we determined shouldn't be cached so we return it - // and don't cache it. This also needs to unlock the cache lock we acquired. - await handleUnlock(); - return res; - }).catch((error)=>{ - handleUnlock(); - throw error; - }); - }; - let cacheReasonOverride; - let isForegroundRevalidate = false; - let isHmrRefreshCache = false; - if (cacheKey && incrementalCache) { - let cachedFetchData; - if (isHmrRefresh && serverComponentsHmrCache) { - cachedFetchData = serverComponentsHmrCache.get(cacheKey); - isHmrRefreshCache = true; - } - if (isCacheableRevalidate && !cachedFetchData) { - handleUnlock = await incrementalCache.lock(cacheKey); - const entry = workStore.isOnDemandRevalidate ? null : await incrementalCache.get(cacheKey, { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].FETCH, - revalidate: finalRevalidate, - fetchUrl, - fetchIdx, - tags, - softTags: implicitTags == null ? void 0 : implicitTags.tags - }); - if (hasNoExplicitCacheConfig && workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - // We sometimes use the cache to dedupe fetches that do not - // specify a cache configuration. In these cases we want to - // make sure we still exclude them from prerenders if - // cacheComponents is on so we introduce an artificial task boundary - // here. - await getTimeoutBoundary(); - break; - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - if (entry) { - await handleUnlock(); - } else { - // in dev, incremental cache response will be null in case the browser adds `cache-control: no-cache` in the request headers - // TODO: it seems like we also hit this after revalidates in dev? - cacheReasonOverride = 'cache-control: no-cache (hard refresh)'; - } - if ((entry == null ? void 0 : entry.value) && entry.value.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].FETCH) { - // when stale and is revalidating we wait for fresh data - // so the revalidated entry has the updated data - if (workStore.isStaticGeneration && entry.isStale) { - isForegroundRevalidate = true; - } else { - if (entry.isStale) { - workStore.pendingRevalidates ??= {}; - if (!workStore.pendingRevalidates[cacheKey]) { - const pendingRevalidate = doOriginalFetch(true).then(async (response)=>({ - body: await response.arrayBuffer(), - headers: response.headers, - status: response.status, - statusText: response.statusText - })).finally(()=>{ - workStore.pendingRevalidates ??= {}; - delete workStore.pendingRevalidates[cacheKey || '']; - }); - // Attach the empty catch here so we don't get a "unhandled - // promise rejection" warning. - pendingRevalidate.catch(console.error); - workStore.pendingRevalidates[cacheKey] = pendingRevalidate; - } - } - cachedFetchData = entry.value.data; - } - } - } - if (cachedFetchData) { - if (fetchStart) { - trackFetchMetric(workStore, { - start: fetchStart, - url: fetchUrl, - cacheReason, - cacheStatus: isHmrRefreshCache ? 'hmr' : 'hit', - cacheWarning, - status: cachedFetchData.status || 200, - method: (init == null ? void 0 : init.method) || 'GET' - }); - } - const response = new Response(Buffer.from(cachedFetchData.body, 'base64'), { - headers: cachedFetchData.headers, - status: cachedFetchData.status - }); - Object.defineProperty(response, 'url', { - value: cachedFetchData.url - }); - return response; - } - } - if ((workStore.isStaticGeneration || ("TURBOPACK compile-time value", "development") === 'development' && ("TURBOPACK compile-time value", false) && workUnitStore && // eslint-disable-next-line no-restricted-syntax - workUnitStore.type === 'request' && workUnitStore.stagedRendering) && init && typeof init === 'object') { - const { cache } = init; - // Delete `cache` property as Cloudflare Workers will throw an error - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - if (cache === 'no-store') { - // If enabled, we should bail out of static generation. - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, 'fetch()'); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - if (cacheSignal) { - cacheSignal.endRead(); - cacheSignal = null; - } - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["markCurrentScopeAsDynamic"])(workStore, workUnitStore, `no-store fetch ${input} ${workStore.route}`); - } - const hasNextConfig = 'next' in init; - const { next = {} } = init; - if (typeof next.revalidate === 'number' && revalidateStore && next.revalidate < revalidateStore.revalidate) { - if (next.revalidate === 0) { - // If enabled, we should bail out of static generation. - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, 'fetch()'); - case 'request': - if (("TURBOPACK compile-time value", "development") === 'development' && workUnitStore.stagedRendering) { - await workUnitStore.stagedRendering.waitForStage(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RenderStage"].Dynamic); - } - break; - case 'cache': - case 'private-cache': - case 'unstable-cache': - case 'prerender-legacy': - case 'prerender-ppr': - break; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["markCurrentScopeAsDynamic"])(workStore, workUnitStore, `revalidate: 0 fetch ${input} ${workStore.route}`); - } - if (!workStore.forceStatic || next.revalidate !== 0) { - revalidateStore.revalidate = next.revalidate; - } - } - if (hasNextConfig) delete init.next; - } - // if we are revalidating the whole page via time or on-demand and - // the fetch cache entry is stale we should still de-dupe the - // origin hit if it's a cache-able entry - if (cacheKey && isForegroundRevalidate) { - const pendingRevalidateKey = cacheKey; - workStore.pendingRevalidates ??= {}; - let pendingRevalidate = workStore.pendingRevalidates[pendingRevalidateKey]; - if (pendingRevalidate) { - const revalidatedResult = await pendingRevalidate; - return new Response(revalidatedResult.body, { - headers: revalidatedResult.headers, - status: revalidatedResult.status, - statusText: revalidatedResult.statusText - }); - } - // We used to just resolve the Response and clone it however for - // static generation with cacheComponents we need the response to be able to - // be resolved in a microtask and cloning the response will never have - // a body that can resolve in a microtask in node (as observed through - // experimentation) So instead we await the body and then when it is - // available we construct manually cloned Response objects with the - // body as an ArrayBuffer. This will be resolvable in a microtask - // making it compatible with cacheComponents. - const pendingResponse = doOriginalFetch(true, cacheReasonOverride) // We're cloning the response using this utility because there - // exists a bug in the undici library around response cloning. - // See the following pull request for more details: - // https://github.com/vercel/next.js/pull/73274 - .then(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$clone$2d$response$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["cloneResponse"]); - pendingRevalidate = pendingResponse.then(async (responses)=>{ - const response = responses[0]; - return { - body: await response.arrayBuffer(), - headers: response.headers, - status: response.status, - statusText: response.statusText - }; - }).finally(()=>{ - var _workStore_pendingRevalidates; - // If the pending revalidate is not present in the store, then - // we have nothing to delete. - if (!((_workStore_pendingRevalidates = workStore.pendingRevalidates) == null ? void 0 : _workStore_pendingRevalidates[pendingRevalidateKey])) { - return; - } - delete workStore.pendingRevalidates[pendingRevalidateKey]; - }); - // Attach the empty catch here so we don't get a "unhandled promise - // rejection" warning - pendingRevalidate.catch(()=>{}); - workStore.pendingRevalidates[pendingRevalidateKey] = pendingRevalidate; - return pendingResponse.then((responses)=>responses[1]); - } else { - return doOriginalFetch(false, cacheReasonOverride); - } - }); - if (cacheSignal) { - try { - return await result; - } finally{ - if (cacheSignal) { - cacheSignal.endRead(); - } - } - } - return result; - }; - // Attach the necessary properties to the patched fetch function. - // We don't use this to determine if the fetch function has been patched, - // but for external consumers to determine if the fetch function has been - // patched. - patched.__nextPatched = true; - patched.__nextGetStaticStore = ()=>workAsyncStorage; - patched._nextOriginalFetch = originFetch; - globalThis[NEXT_PATCH_SYMBOL] = true; - // Assign the function name also as a name property, so that it's preserved - // even when mangling is enabled. - Object.defineProperty(patched, 'name', { - value: 'fetch', - writable: false - }); - return patched; -} -function patchFetch(options) { - // If we've already patched fetch, we should not patch it again. - if (isFetchPatched()) return; - // Grab the original fetch function. We'll attach this so we can use it in - // the patched fetch function. - const original = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$dedupe$2d$fetch$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createDedupeFetch"])(globalThis.fetch); - // Set the global fetch to the patched fetch. - globalThis.fetch = createPatchedFetcher(original, options); -} -let currentTimeoutBoundary = null; -function getTimeoutBoundary() { - if (!currentTimeoutBoundary) { - currentTimeoutBoundary = new Promise((r)=>{ - setTimeout(()=>{ - currentTimeoutBoundary = null; - r(); - }, 0); - }); - } - return currentTimeoutBoundary; -} //# sourceMappingURL=patch-fetch.js.map -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js ")); -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js")); -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$next$2d$devtools$2f$userspace$2f$app$2f$segment$2d$explorer$2d$node$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$next$2d$devtools$2f$userspace$2f$app$2f$segment$2d$explorer$2d$node$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$next$2d$devtools$2f$userspace$2f$app$2f$segment$2d$explorer$2d$node$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "SegmentViewNode", - ()=>SegmentViewNode, - "SegmentViewStateNode", - ()=>SegmentViewStateNode, - "patchFetch", - ()=>patchFetch -]); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js [app-rsc] (ecmascript)"); -// TODO: Just re-export `* as ReactServer` -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/search-params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/preloads.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$postpone$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/postpone.js [app-rsc] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$taint$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/taint.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$collect$2d$segment$2d$data$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/collect-segment-data.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$patch$2d$fetch$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/patch-fetch.js [app-rsc] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -let SegmentViewNode = ()=>null; -let SegmentViewStateNode = ()=>null; -if ("TURBOPACK compile-time truthy", 1) { - const mod = __turbopack_context__.r("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-rsc] (ecmascript)"); - SegmentViewNode = mod.SegmentViewNode; - SegmentViewStateNode = mod.SegmentViewStateNode; -} -// hot-reloader modules are not bundled so we need to inject `__next__clear_chunk_cache__` -// into globalThis from this file which is bundled. -if ("TURBOPACK compile-time truthy", 1) { - globalThis.__next__clear_chunk_cache__ = /*TURBOPACK member replacement*/ __turbopack_context__.C; -} else //TURBOPACK unreachable -; -function patchFetch() { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$patch$2d$fetch$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["patchFetch"])({ - workAsyncStorage: __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"], - workUnitAsyncStorage: __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"] - }); -} -; - //# sourceMappingURL=entry-base.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ClientPageRoot", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ClientPageRoot"], - "ClientSegmentRoot", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ClientSegmentRoot"], - "Fragment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Fragment"], - "HTTPAccessFallbackBoundary", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTTPAccessFallbackBoundary"], - "LayoutRouter", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"], - "Postpone", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["Postpone"], - "RenderFromTemplateContext", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"], - "RootLayoutBoundary", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RootLayoutBoundary"], - "SegmentViewNode", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["SegmentViewNode"], - "SegmentViewStateNode", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["SegmentViewStateNode"], - "actionAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["actionAsyncStorage"], - "captureOwnerStack", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["captureOwnerStack"], - "collectSegmentData", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$collect$2d$segment$2d$data$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["collectSegmentData"], - "createElement", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createElement"], - "createMetadataComponents", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createMetadataComponents"], - "createPrerenderParamsForClientSegment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createPrerenderParamsForClientSegment"], - "createPrerenderSearchParamsForClientPage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createPrerenderSearchParamsForClientPage"], - "createServerParamsForServerSegment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerParamsForServerSegment"], - "createServerSearchParamsForServerPage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createServerSearchParamsForServerPage"], - "createTemporaryReferenceSet", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createTemporaryReferenceSet"], - "decodeAction", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["decodeAction"], - "decodeFormState", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["decodeFormState"], - "decodeReply", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["decodeReply"], - "patchFetch", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["patchFetch"], - "preconnect", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["preconnect"], - "preloadFont", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["preloadFont"], - "preloadStyle", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["preloadStyle"], - "prerender", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["prerender"], - "renderToReadableStream", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["renderToReadableStream"], - "serverHooks", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__, - "taintObjectReference", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$taint$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["taintObjectReference"], - "workAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"], - "workUnitAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"] -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$server$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2d$server$2d$dom$2d$turbopack$2d$static$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$rsc$2f$react$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$layout$2d$router$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$render$2d$from$2d$template$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$action$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$page$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-page.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$client$2d$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$search$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/search-params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$metadata$2f$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/metadata/metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$components$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$preloads$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/preloads.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$rsc$2f$taint$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/rsc/taint.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$collect$2d$segment$2d$data$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/collect-segment-data.js [app-rsc] (ecmascript)"); -}), -]; - -//# sourceMappingURL=node_modules_e2d1c5df._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e2d1c5df._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e2d1c5df._.js.map deleted file mode 100644 index 6f5dd2e..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e2d1c5df._.js.map +++ /dev/null @@ -1,190 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/normalize-path-sep.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is no backslash\n * escaping slashes in the path. Example:\n * - `foo\\/bar\\/baz` -> `foo/bar/baz`\n */\nexport function normalizePathSep(path: string): string {\n return path.replace(/\\\\/g, '/')\n}\n"],"names":["normalizePathSep","path","replace"],"mappings":"AAAA;;;;CAIC;;;+BACeA,oBAAAA;;;eAAAA;;;AAAT,SAASA,iBAAiBC,IAAY;IAC3C,OAAOA,KAAKC,OAAO,CAAC,OAAO;AAC7B","ignoreList":[0]}}, - {"offset": {"line": 24, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n"],"names":["ensureLeadingSlash","path","startsWith"],"mappings":"AAAA;;;CAGC;;;+BACeA,sBAAAA;;;eAAAA;;;AAAT,SAASA,mBAAmBC,IAAY;IAC7C,OAAOA,KAAKC,UAAU,CAAC,OAAOD,OAAO,CAAC,CAAC,EAAEA,MAAM;AACjD","ignoreList":[0]}}, - {"offset": {"line": 43, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment.ts"],"sourcesContent":["import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n"],"names":["DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","computeSelectedLayoutSegment","getSegmentValue","getSelectedLayoutSegmentPath","isGroupSegment","isParallelRouteSegment","segment","Array","isArray","endsWith","startsWith","searchParams","isPageSegment","includes","stringifiedQuery","JSON","stringify","segments","parallelRouteKey","length","rawSegment","tree","first","segmentPath","node","parallelRoutes","children","Object","values","segmentValue","push"],"mappings":";;;;;;;;;;;;;;;;;;;;;IAuFaA,mBAAmB,EAAA;eAAnBA;;IACAC,qBAAqB,EAAA;eAArBA;;IAFAC,gBAAgB,EAAA;eAAhBA;;IAvEGC,4BAA4B,EAAA;eAA5BA;;IAgBAC,4BAA4B,EAAA;eAA5BA;;IA7BAC,eAAe,EAAA;eAAfA;;IAiDAC,4BAA4B,EAAA;eAA5BA;;IA7CAC,cAAc,EAAA;eAAdA;;IAKAC,sBAAsB,EAAA;eAAtBA;;;AATT,SAASH,gBAAgBI,OAAgB;IAC9C,OAAOC,MAAMC,OAAO,CAACF,WAAWA,OAAO,CAAC,EAAE,GAAGA;AAC/C;AAEO,SAASF,eAAeE,OAAe;IAC5C,sCAAsC;IACtC,OAAOA,OAAO,CAAC,EAAE,KAAK,OAAOA,QAAQG,QAAQ,CAAC;AAChD;AAEO,SAASJ,uBAAuBC,OAAe;IACpD,OAAOA,QAAQI,UAAU,CAAC,QAAQJ,YAAY;AAChD;AAEO,SAASN,6BACdM,OAAgB,EAChBK,YAA2D;IAE3D,MAAMC,gBAAgBN,QAAQO,QAAQ,CAACd;IAEvC,IAAIa,eAAe;QACjB,MAAME,mBAAmBC,KAAKC,SAAS,CAACL;QACxC,OAAOG,qBAAqB,OACxBf,mBAAmB,MAAMe,mBACzBf;IACN;IAEA,OAAOO;AACT;AAEO,SAASL,6BACdgB,QAAyB,EACzBC,gBAAwB;IAExB,IAAI,CAACD,YAAYA,SAASE,MAAM,KAAK,GAAG;QACtC,OAAO;IACT;IAEA,iFAAiF;IACjF,MAAMC,aACJF,qBAAqB,aACjBD,QAAQ,CAAC,EAAE,GACXA,QAAQ,CAACA,SAASE,MAAM,GAAG,EAAE;IAEnC,sGAAsG;IACtG,oEAAoE;IACpE,OAAOC,eAAevB,sBAAsB,OAAOuB;AACrD;AAGO,SAASjB,6BACdkB,IAAuB,EACvBH,gBAAwB,EACxBI,QAAQ,IAAI,EACZC,cAAwB,EAAE;IAE1B,IAAIC;IACJ,IAAIF,OAAO;QACT,kEAAkE;QAClEE,OAAOH,IAAI,CAAC,EAAE,CAACH,iBAAiB;IAClC,OAAO;QACL,oGAAoG;QACpG,MAAMO,iBAAiBJ,IAAI,CAAC,EAAE;QAC9BG,OAAOC,eAAeC,QAAQ,IAAIC,OAAOC,MAAM,CAACH,eAAe,CAAC,EAAE;IACpE;IAEA,IAAI,CAACD,MAAM,OAAOD;IAClB,MAAMjB,UAAUkB,IAAI,CAAC,EAAE;IAEvB,IAAIK,eAAe3B,gBAAgBI;IAEnC,IAAI,CAACuB,gBAAgBA,aAAanB,UAAU,CAACX,mBAAmB;QAC9D,OAAOwB;IACT;IAEAA,YAAYO,IAAI,CAACD;IAEjB,OAAO1B,6BACLqB,MACAN,kBACA,OACAK;AAEJ;AAEO,MAAMxB,mBAAmB;AACzB,MAAMF,sBAAsB;AAC5B,MAAMC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 146, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/app-paths.ts"],"sourcesContent":["import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n"],"names":["normalizeAppPath","normalizeRscURL","route","ensureLeadingSlash","split","reduce","pathname","segment","index","segments","isGroupSegment","length","url","replace"],"mappings":";;;;;;;;;;;;;;IAsBgBA,gBAAgB,EAAA;eAAhBA;;IAmCAC,eAAe,EAAA;eAAfA;;;oCAzDmB;yBACJ;AAqBxB,SAASD,iBAAiBE,KAAa;IAC5C,OAAOC,CAAAA,GAAAA,oBAAAA,kBAAkB,EACvBD,MAAME,KAAK,CAAC,KAAKC,MAAM,CAAC,CAACC,UAAUC,SAASC,OAAOC;QACjD,8BAA8B;QAC9B,IAAI,CAACF,SAAS;YACZ,OAAOD;QACT;QAEA,sBAAsB;QACtB,IAAII,CAAAA,GAAAA,SAAAA,cAAc,EAACH,UAAU;YAC3B,OAAOD;QACT;QAEA,iCAAiC;QACjC,IAAIC,OAAO,CAAC,EAAE,KAAK,KAAK;YACtB,OAAOD;QACT;QAEA,uDAAuD;QACvD,IACGC,CAAAA,YAAY,UAAUA,YAAY,OAAM,KACzCC,UAAUC,SAASE,MAAM,GAAG,GAC5B;YACA,OAAOL;QACT;QAEA,OAAO,GAAGA,SAAS,CAAC,EAAEC,SAAS;IACjC,GAAG;AAEP;AAMO,SAASN,gBAAgBW,GAAW;IACzC,OAAOA,IAAIC,OAAO,CAChB,eACA,AACA,8BAD8B;AAGlC","ignoreList":[0]}}, - {"offset": {"line": 197, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/is-app-route-route.ts"],"sourcesContent":["export function isAppRouteRoute(route: string): boolean {\n return route.endsWith('/route')\n}\n"],"names":["isAppRouteRoute","route","endsWith"],"mappings":";;;+BAAgBA,mBAAAA;;;eAAAA;;;AAAT,SAASA,gBAAgBC,KAAa;IAC3C,OAAOA,MAAMC,QAAQ,CAAC;AACxB","ignoreList":[0]}}, - {"offset": {"line": 213, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/is-metadata-route.ts"],"sourcesContent":["import type { PageExtensions } from '../../build/page-extensions-type'\nimport { normalizePathSep } from '../../shared/lib/page-path/normalize-path-sep'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { isAppRouteRoute } from '../is-app-route-route'\n\nexport const STATIC_METADATA_IMAGES = {\n icon: {\n filename: 'icon',\n extensions: ['ico', 'jpg', 'jpeg', 'png', 'svg'],\n },\n apple: {\n filename: 'apple-icon',\n extensions: ['jpg', 'jpeg', 'png'],\n },\n favicon: {\n filename: 'favicon',\n extensions: ['ico'],\n },\n openGraph: {\n filename: 'opengraph-image',\n extensions: ['jpg', 'jpeg', 'png', 'gif'],\n },\n twitter: {\n filename: 'twitter-image',\n extensions: ['jpg', 'jpeg', 'png', 'gif'],\n },\n} as const\n\n// Match routes that are metadata routes, e.g. /sitemap.xml, /favicon., /., etc.\n// TODO-METADATA: support more metadata routes with more extensions\nexport const DEFAULT_METADATA_ROUTE_EXTENSIONS = ['js', 'jsx', 'ts', 'tsx']\n\n// Match the file extension with the dynamic multi-routes extensions\n// e.g. ([xml, js], null) -> can match `/sitemap.xml/route`, `sitemap.js/route`\n// e.g. ([png], [ts]) -> can match `/opengraph-image.png`, `/opengraph-image.ts`\nexport const getExtensionRegexString = (\n staticExtensions: readonly string[],\n dynamicExtensions: readonly string[] | null\n) => {\n let result: string\n // If there's no possible multi dynamic routes, will not match any []. files\n if (!dynamicExtensions || dynamicExtensions.length === 0) {\n result = `(\\\\.(?:${staticExtensions.join('|')}))`\n } else {\n result = `(?:\\\\.(${staticExtensions.join('|')})|(\\\\.(${dynamicExtensions.join('|')})))`\n }\n return result\n}\n\n/**\n * Matches the static metadata files, e.g. /robots.txt, /sitemap.xml, /favicon.ico, etc.\n * @param appDirRelativePath the relative file path to app/\n * @returns if the path is a static metadata file route\n */\nexport function isStaticMetadataFile(appDirRelativePath: string) {\n return isMetadataRouteFile(appDirRelativePath, [], true)\n}\n\n// Pre-compiled static regexes for common cases\nconst FAVICON_REGEX = /^[\\\\/]favicon\\.ico$/\nconst ROBOTS_TXT_REGEX = /^[\\\\/]robots\\.txt$/\nconst MANIFEST_JSON_REGEX = /^[\\\\/]manifest\\.json$/\nconst MANIFEST_WEBMANIFEST_REGEX = /^[\\\\/]manifest\\.webmanifest$/\nconst SITEMAP_XML_REGEX = /[\\\\/]sitemap\\.xml$/\n\n// Cache for compiled regex patterns based on parameters\nconst compiledRegexCache = new Map()\n\n// Fast path checks for common metadata files\nfunction fastPathCheck(normalizedPath: string): boolean | null {\n // Check favicon.ico first (most common)\n if (FAVICON_REGEX.test(normalizedPath)) return true\n\n // Check other common static files\n if (ROBOTS_TXT_REGEX.test(normalizedPath)) return true\n if (MANIFEST_JSON_REGEX.test(normalizedPath)) return true\n if (MANIFEST_WEBMANIFEST_REGEX.test(normalizedPath)) return true\n if (SITEMAP_XML_REGEX.test(normalizedPath)) return true\n\n // Quick negative check - if it doesn't contain any metadata keywords, skip\n if (\n !normalizedPath.includes('robots') &&\n !normalizedPath.includes('manifest') &&\n !normalizedPath.includes('sitemap') &&\n !normalizedPath.includes('icon') &&\n !normalizedPath.includes('apple-icon') &&\n !normalizedPath.includes('opengraph-image') &&\n !normalizedPath.includes('twitter-image') &&\n !normalizedPath.includes('favicon')\n ) {\n return false\n }\n\n return null // Continue with full regex matching\n}\n\nfunction getCompiledRegexes(\n pageExtensions: PageExtensions,\n strictlyMatchExtensions: boolean\n): RegExp[] {\n // Create cache key\n const cacheKey = `${pageExtensions.join(',')}|${strictlyMatchExtensions}`\n\n const cached = compiledRegexCache.get(cacheKey)\n if (cached) {\n return cached\n }\n\n // Pre-compute common strings\n const trailingMatcher = strictlyMatchExtensions ? '$' : '?$'\n const variantsMatcher = '\\\\d?'\n const groupSuffix = strictlyMatchExtensions ? '' : '(-\\\\w{6})?'\n const suffixMatcher = variantsMatcher + groupSuffix\n\n // Pre-compute extension arrays to avoid repeated concatenation\n const robotsExts =\n pageExtensions.length > 0 ? [...pageExtensions, 'txt'] : ['txt']\n const manifestExts =\n pageExtensions.length > 0\n ? [...pageExtensions, 'webmanifest', 'json']\n : ['webmanifest', 'json']\n\n const regexes = [\n new RegExp(\n `^[\\\\\\\\/]robots${getExtensionRegexString(robotsExts, null)}${trailingMatcher}`\n ),\n new RegExp(\n `^[\\\\\\\\/]manifest${getExtensionRegexString(manifestExts, null)}${trailingMatcher}`\n ),\n // FAVICON_REGEX removed - already handled in fastPathCheck\n new RegExp(\n `[\\\\\\\\/]sitemap${getExtensionRegexString(['xml'], pageExtensions)}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]icon${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.icon.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]apple-icon${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.apple.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]opengraph-image${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.openGraph.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n new RegExp(\n `[\\\\\\\\/]twitter-image${suffixMatcher}${getExtensionRegexString(\n STATIC_METADATA_IMAGES.twitter.extensions,\n pageExtensions\n )}${trailingMatcher}`\n ),\n ]\n\n compiledRegexCache.set(cacheKey, regexes)\n return regexes\n}\n\n/**\n * Determine if the file is a metadata route file entry\n * @param appDirRelativePath the relative file path to app/\n * @param pageExtensions the js extensions, such as ['js', 'jsx', 'ts', 'tsx']\n * @param strictlyMatchExtensions if it's true, match the file with page extension, otherwise match the file with default corresponding extension\n * @returns if the file is a metadata route file\n */\nexport function isMetadataRouteFile(\n appDirRelativePath: string,\n pageExtensions: PageExtensions,\n strictlyMatchExtensions: boolean\n): boolean {\n // Early exit for empty or obviously non-metadata paths\n if (!appDirRelativePath || appDirRelativePath.length < 2) {\n return false\n }\n\n const normalizedPath = normalizePathSep(appDirRelativePath)\n\n // Fast path check for common cases\n const fastResult = fastPathCheck(normalizedPath)\n if (fastResult !== null) {\n return fastResult\n }\n\n // Get compiled regexes from cache\n const regexes = getCompiledRegexes(pageExtensions, strictlyMatchExtensions)\n\n // Use for loop instead of .some() for better performance\n for (let i = 0; i < regexes.length; i++) {\n if (regexes[i].test(normalizedPath)) {\n return true\n }\n }\n\n return false\n}\n\n// Check if the route is a static metadata route, with /route suffix\n// e.g. /favicon.ico/route, /icon.png/route, etc.\n// But skip the text routes like robots.txt since they might also be dynamic.\n// Checking route path is not enough to determine if text routes is dynamic.\nexport function isStaticMetadataRoute(route: string) {\n // extract ext with regex\n const pathname = route.replace(/\\/route$/, '')\n\n const matched =\n isAppRouteRoute(route) &&\n isMetadataRouteFile(pathname, [], true) &&\n // These routes can either be built by static or dynamic entrypoints,\n // so we assume they're dynamic\n pathname !== '/robots.txt' &&\n pathname !== '/manifest.webmanifest' &&\n !pathname.endsWith('/sitemap.xml')\n\n return matched\n}\n\n/**\n * Determine if a page or pathname is a metadata page.\n *\n * The input is a page or pathname, which can be with or without page suffix /foo/page or /foo.\n * But it will not contain the /route suffix.\n *\n * .e.g\n * /robots -> true\n * /sitemap -> true\n * /foo -> false\n */\nexport function isMetadataPage(page: string) {\n const matched = !isAppRouteRoute(page) && isMetadataRouteFile(page, [], false)\n\n return matched\n}\n\n/*\n * Determine if a Next.js route is a metadata route.\n * `route` will has a route suffix.\n *\n * e.g.\n * /app/robots/route -> true\n * /robots/route -> true\n * /sitemap/[__metadata_id__]/route -> true\n * /app/sitemap/page -> false\n * /icon-a102f4/route -> true\n */\nexport function isMetadataRoute(route: string): boolean {\n let page = normalizeAppPath(route)\n .replace(/^\\/?app\\//, '')\n // Remove the dynamic route id\n .replace('/[__metadata_id__]', '')\n // Remove the /route suffix\n .replace(/\\/route$/, '')\n\n if (page[0] !== '/') page = '/' + page\n\n const matched = isAppRouteRoute(route) && isMetadataRouteFile(page, [], false)\n\n return matched\n}\n"],"names":["DEFAULT_METADATA_ROUTE_EXTENSIONS","STATIC_METADATA_IMAGES","getExtensionRegexString","isMetadataPage","isMetadataRoute","isMetadataRouteFile","isStaticMetadataFile","isStaticMetadataRoute","icon","filename","extensions","apple","favicon","openGraph","twitter","staticExtensions","dynamicExtensions","result","length","join","appDirRelativePath","FAVICON_REGEX","ROBOTS_TXT_REGEX","MANIFEST_JSON_REGEX","MANIFEST_WEBMANIFEST_REGEX","SITEMAP_XML_REGEX","compiledRegexCache","Map","fastPathCheck","normalizedPath","test","includes","getCompiledRegexes","pageExtensions","strictlyMatchExtensions","cacheKey","cached","get","trailingMatcher","variantsMatcher","groupSuffix","suffixMatcher","robotsExts","manifestExts","regexes","RegExp","set","normalizePathSep","fastResult","i","route","pathname","replace","matched","isAppRouteRoute","endsWith","page","normalizeAppPath"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 435, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/isomorphic/path.js"],"sourcesContent":["/**\n * This module is for next.js server internal usage of path module.\n * It will use native path module for nodejs runtime.\n * It will use path-browserify polyfill for edge runtime.\n */\nlet path\n\nif (process.env.NEXT_RUNTIME === 'edge') {\n path = require('next/dist/compiled/path-browserify')\n} else {\n path = require('path')\n}\n\nmodule.exports = path\n"],"names":["path","process","env","NEXT_RUNTIME","require","module","exports"],"mappings":"AAAA;;;;CAIC,GACD,IAAIA;AAEJ,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACLH,OAAOI,QAAQ;AACjB;AAEAC,OAAOC,OAAO,GAAGN","ignoreList":[0]}}, - {"offset": {"line": 450, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/i18n/normalize-locale-path.ts"],"sourcesContent":["export interface PathLocale {\n detectedLocale?: string\n pathname: string\n}\n\n/**\n * A cache of lowercased locales for each list of locales. This is stored as a\n * WeakMap so if the locales are garbage collected, the cache entry will be\n * removed as well.\n */\nconst cache = new WeakMap()\n\n/**\n * For a pathname that may include a locale from a list of locales, it\n * removes the locale from the pathname returning it alongside with the\n * detected locale.\n *\n * @param pathname A pathname that may include a locale.\n * @param locales A list of locales.\n * @returns The detected locale and pathname without locale\n */\nexport function normalizeLocalePath(\n pathname: string,\n locales?: readonly string[]\n): PathLocale {\n // If locales is undefined, return the pathname as is.\n if (!locales) return { pathname }\n\n // Get the cached lowercased locales or create a new cache entry.\n let lowercasedLocales = cache.get(locales)\n if (!lowercasedLocales) {\n lowercasedLocales = locales.map((locale) => locale.toLowerCase())\n cache.set(locales, lowercasedLocales)\n }\n\n let detectedLocale: string | undefined\n\n // The first segment will be empty, because it has a leading `/`. If\n // there is no further segment, there is no locale (or it's the default).\n const segments = pathname.split('/', 2)\n\n // If there's no second segment (ie, the pathname is just `/`), there's no\n // locale.\n if (!segments[1]) return { pathname }\n\n // The second segment will contain the locale part if any.\n const segment = segments[1].toLowerCase()\n\n // See if the segment matches one of the locales. If it doesn't, there is\n // no locale (or it's the default).\n const index = lowercasedLocales.indexOf(segment)\n if (index < 0) return { pathname }\n\n // Return the case-sensitive locale.\n detectedLocale = locales[index]\n\n // Remove the `/${locale}` part of the pathname.\n pathname = pathname.slice(detectedLocale.length + 1) || '/'\n\n return { pathname, detectedLocale }\n}\n"],"names":["normalizeLocalePath","cache","WeakMap","pathname","locales","lowercasedLocales","get","map","locale","toLowerCase","set","detectedLocale","segments","split","segment","index","indexOf","slice","length"],"mappings":";;;+BAqBgBA,uBAAAA;;;eAAAA;;;AAhBhB;;;;CAIC,GACD,MAAMC,QAAQ,IAAIC;AAWX,SAASF,oBACdG,QAAgB,EAChBC,OAA2B;IAE3B,sDAAsD;IACtD,IAAI,CAACA,SAAS,OAAO;QAAED;IAAS;IAEhC,iEAAiE;IACjE,IAAIE,oBAAoBJ,MAAMK,GAAG,CAACF;IAClC,IAAI,CAACC,mBAAmB;QACtBA,oBAAoBD,QAAQG,GAAG,CAAC,CAACC,SAAWA,OAAOC,WAAW;QAC9DR,MAAMS,GAAG,CAACN,SAASC;IACrB;IAEA,IAAIM;IAEJ,oEAAoE;IACpE,yEAAyE;IACzE,MAAMC,WAAWT,SAASU,KAAK,CAAC,KAAK;IAErC,0EAA0E;IAC1E,UAAU;IACV,IAAI,CAACD,QAAQ,CAAC,EAAE,EAAE,OAAO;QAAET;IAAS;IAEpC,0DAA0D;IAC1D,MAAMW,UAAUF,QAAQ,CAAC,EAAE,CAACH,WAAW;IAEvC,yEAAyE;IACzE,mCAAmC;IACnC,MAAMM,QAAQV,kBAAkBW,OAAO,CAACF;IACxC,IAAIC,QAAQ,GAAG,OAAO;QAAEZ;IAAS;IAEjC,oCAAoC;IACpCQ,iBAAiBP,OAAO,CAACW,MAAM;IAE/B,gDAAgD;IAChDZ,WAAWA,SAASc,KAAK,CAACN,eAAeO,MAAM,GAAG,MAAM;IAExD,OAAO;QAAEf;QAAUQ;IAAe;AACpC","ignoreList":[0]}}, - {"offset": {"line": 504, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js"],"sourcesContent":["(()=>{\"use strict\";if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var e={};(()=>{var n=e;Object.defineProperty(n,\"__esModule\",{value:true});n.pathToRegexp=n.tokensToRegexp=n.regexpToFunction=n.match=n.tokensToFunction=n.compile=n.parse=void 0;function lexer(e){var n=[];var r=0;while(r=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122||o===95){a+=e[i++];continue}break}if(!a)throw new TypeError(\"Missing parameter name at \".concat(r));n.push({type:\"NAME\",index:r,value:a});r=i;continue}if(t===\"(\"){var c=1;var f=\"\";var i=r+1;if(e[i]===\"?\"){throw new TypeError('Pattern cannot start with \"?\" at '.concat(i))}while(i-1)return true}return false};var safePattern=function(e){var n=c[c.length-1];var r=e||(n&&typeof n===\"string\"?n:\"\");if(n&&!r){throw new TypeError('Must have text between two parameters, missing text after \"'.concat(n.name,'\"'))}if(!r||isSafe(r))return\"[^\".concat(escapeString(o),\"]+?\");return\"(?:(?!\".concat(escapeString(r),\")[^\").concat(escapeString(o),\"])+?\")};while(u)?(?!\\?)/g;var t=0;var a=r.exec(e.source);while(a){n.push({name:a[1]||t++,prefix:\"\",suffix:\"\",modifier:\"\",pattern:\"\"});a=r.exec(e.source)}return e}function arrayToRegexp(e,n,r){var t=e.map((function(e){return pathToRegexp(e,n,r).source}));return new RegExp(\"(?:\".concat(t.join(\"|\"),\")\"),flags(r))}function stringToRegexp(e,n,r){return tokensToRegexp(parse(e,r),n,r)}function tokensToRegexp(e,n,r){if(r===void 0){r={}}var t=r.strict,a=t===void 0?false:t,i=r.start,o=i===void 0?true:i,c=r.end,f=c===void 0?true:c,u=r.encode,p=u===void 0?function(e){return e}:u,v=r.delimiter,s=v===void 0?\"/#?\":v,d=r.endsWith,g=d===void 0?\"\":d;var x=\"[\".concat(escapeString(g),\"]|$\");var h=\"[\".concat(escapeString(s),\"]\");var l=o?\"^\":\"\";for(var m=0,T=e;m-1:A===undefined;if(!a){l+=\"(?:\".concat(h,\"(?=\").concat(x,\"))?\")}if(!_){l+=\"(?=\".concat(h,\"|\").concat(x,\")\")}}return new RegExp(l,flags(r))}n.tokensToRegexp=tokensToRegexp;function pathToRegexp(e,n,r){if(e instanceof RegExp)return regexpToRegexp(e,n);if(Array.isArray(e))return arrayToRegexp(e,n,r);return stringToRegexp(e,n,r)}n.pathToRegexp=pathToRegexp})();module.exports=e})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 915, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/path-match.ts"],"sourcesContent":["import type { Key } from 'next/dist/compiled/path-to-regexp'\nimport { regexpToFunction } from 'next/dist/compiled/path-to-regexp'\nimport { pathToRegexp } from 'next/dist/compiled/path-to-regexp'\n\ninterface Options {\n /**\n * A transformer function that will be applied to the regexp generated\n * from the provided path and path-to-regexp.\n */\n regexModifier?: (regex: string) => string\n /**\n * When true the function will remove all unnamed parameters\n * from the matched parameters.\n */\n removeUnnamedParams?: boolean\n /**\n * When true the regexp won't allow an optional trailing delimiter\n * to match.\n */\n strict?: boolean\n\n /**\n * When true the matcher will be case-sensitive, defaults to false\n */\n sensitive?: boolean\n}\n\nexport type PatchMatcher = (\n pathname: string,\n params?: Record\n) => Record | false\n\n/**\n * Generates a path matcher function for a given path and options based on\n * path-to-regexp. By default the match will be case insensitive, non strict\n * and delimited by `/`.\n */\nexport function getPathMatch(path: string, options?: Options): PatchMatcher {\n const keys: Key[] = []\n const regexp = pathToRegexp(path, keys, {\n delimiter: '/',\n sensitive:\n typeof options?.sensitive === 'boolean' ? options.sensitive : false,\n strict: options?.strict,\n })\n\n const matcher = regexpToFunction>(\n options?.regexModifier\n ? new RegExp(options.regexModifier(regexp.source), regexp.flags)\n : regexp,\n keys\n )\n\n /**\n * A matcher function that will check if a given pathname matches the path\n * given in the builder function. When the path does not match it will return\n * `false` but if it does it will return an object with the matched params\n * merged with the params provided in the second argument.\n */\n return (pathname, params) => {\n // If no pathname is provided it's not a match.\n if (typeof pathname !== 'string') return false\n\n const match = matcher(pathname)\n\n // If the path did not match `false` will be returned.\n if (!match) return false\n\n /**\n * If unnamed params are not allowed they must be removed from\n * the matched parameters. path-to-regexp uses \"string\" for named and\n * \"number\" for unnamed parameters.\n */\n if (options?.removeUnnamedParams) {\n for (const key of keys) {\n if (typeof key.name === 'number') {\n delete match.params[key.name]\n }\n }\n }\n\n return { ...params, ...match.params }\n }\n}\n"],"names":["getPathMatch","path","options","keys","regexp","pathToRegexp","delimiter","sensitive","strict","matcher","regexpToFunction","regexModifier","RegExp","source","flags","pathname","params","match","removeUnnamedParams","key","name"],"mappings":";;;+BAqCgBA,gBAAAA;;;eAAAA;;;8BApCiB;AAoC1B,SAASA,aAAaC,IAAY,EAAEC,OAAiB;IAC1D,MAAMC,OAAc,EAAE;IACtB,MAAMC,SAASC,CAAAA,GAAAA,cAAAA,YAAY,EAACJ,MAAME,MAAM;QACtCG,WAAW;QACXC,WACE,OAAOL,SAASK,cAAc,YAAYL,QAAQK,SAAS,GAAG;QAChEC,QAAQN,SAASM;IACnB;IAEA,MAAMC,UAAUC,CAAAA,GAAAA,cAAAA,gBAAgB,EAC9BR,SAASS,gBACL,IAAIC,OAAOV,QAAQS,aAAa,CAACP,OAAOS,MAAM,GAAGT,OAAOU,KAAK,IAC7DV,QACJD;IAGF;;;;;GAKC,GACD,OAAO,CAACY,UAAUC;QAChB,+CAA+C;QAC/C,IAAI,OAAOD,aAAa,UAAU,OAAO;QAEzC,MAAME,QAAQR,QAAQM;QAEtB,sDAAsD;QACtD,IAAI,CAACE,OAAO,OAAO;QAEnB;;;;KAIC,GACD,IAAIf,SAASgB,qBAAqB;YAChC,KAAK,MAAMC,OAAOhB,KAAM;gBACtB,IAAI,OAAOgB,IAAIC,IAAI,KAAK,UAAU;oBAChC,OAAOH,MAAMD,MAAM,CAACG,IAAIC,IAAI,CAAC;gBAC/B;YACF;QACF;QAEA,OAAO;YAAE,GAAGJ,MAAM;YAAE,GAAGC,MAAMD,MAAM;QAAC;IACtC;AACF","ignoreList":[0]}}, - {"offset": {"line": 965, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/constants.ts"],"sourcesContent":["import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\n\n// in seconds\nexport const CACHE_ONE_YEAR = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n"],"names":["ACTION_SUFFIX","APP_DIR_ALIAS","CACHE_ONE_YEAR","DOT_NEXT_ALIAS","ESLINT_DEFAULT_DIRS","GSP_NO_RETURNED_VALUE","GSSP_COMPONENT_MEMBER_ERROR","GSSP_NO_RETURNED_VALUE","HTML_CONTENT_TYPE_HEADER","INFINITE_CACHE","INSTRUMENTATION_HOOK_FILENAME","JSON_CONTENT_TYPE_HEADER","MATCHED_PATH_HEADER","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","NEXT_BODY_SUFFIX","NEXT_CACHE_IMPLICIT_TAG_ID","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_DATA_SUFFIX","NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_META_SUFFIX","NEXT_QUERY_PARAM_PREFIX","NEXT_RESUME_HEADER","NON_STANDARD_NODE_ENV","PAGES_DIR_ALIAS","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","PROXY_FILENAME","PROXY_LOCATION_REGEXP","PUBLIC_DIR_MIDDLEWARE_CONFLICT","ROOT_DIR_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","SERVER_PROPS_EXPORT_ERROR","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","SERVER_RUNTIME","SSG_FALLBACK_EXPORT_ERROR","SSG_GET_INITIAL_PROPS_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","TEXT_PLAIN_CONTENT_TYPE_HEADER","UNSTABLE_REVALIDATE_RENAME_ERROR","WEBPACK_LAYERS","WEBPACK_RESOURCE_QUERIES","WEB_SOCKET_MAX_RECONNECTIONS","edge","experimentalEdge","nodejs","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","edgeSSREntry","metadata","metadataRoute","metadataImageMeta"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1371, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-routes.ts"],"sourcesContent":["import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n"],"names":["INTERCEPTION_ROUTE_MARKERS","extractInterceptionRouteInformation","isInterceptionRouteAppPath","path","split","find","segment","m","startsWith","undefined","interceptingRoute","marker","interceptedRoute","Error","normalizeAppPath","slice","concat","join","splitInterceptingRoute","length"],"mappings":";;;;;;;;;;;;;;;IAGaA,0BAA0B,EAAA;eAA1BA;;IAmCGC,mCAAmC,EAAA;eAAnCA;;IA1BAC,0BAA0B,EAAA;eAA1BA;;;0BAZiB;AAG1B,MAAMF,6BAA6B;IACxC;IACA;IACA;IACA;CACD;AAIM,SAASE,2BAA2BC,IAAY;IACrD,wCAAwC;IACxC,OACEA,KACGC,KAAK,CAAC,KACNC,IAAI,CAAC,CAACC,UACLN,2BAA2BK,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD,SACtDE;AAEZ;AAiBO,SAASR,oCACdE,IAAY;IAEZ,IAAIO;IACJ,IAAIC;IACJ,IAAIC;IAEJ,KAAK,MAAMN,WAAWH,KAAKC,KAAK,CAAC,KAAM;QACrCO,SAASX,2BAA2BK,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD;QACnE,IAAII,QAAQ;;YACT,CAACD,mBAAmBE,iBAAiB,GAAGT,KAAKC,KAAK,CAACO,QAAQ;YAC5D;QACF;IACF;IAEA,IAAI,CAACD,qBAAqB,CAACC,UAAU,CAACC,kBAAkB;QACtD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,4BAA4B,EAAEV,KAAK,iFAAiF,CAAC,GADlH,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEAO,oBAAoBI,CAAAA,GAAAA,UAAAA,gBAAgB,EAACJ,mBAAmB,iDAAiD;;IAEzG,OAAQC;QACN,KAAK;YACH,oIAAoI;YACpI,IAAID,sBAAsB,KAAK;gBAC7BE,mBAAmB,CAAC,CAAC,EAAEA,kBAAkB;YAC3C,OAAO;gBACLA,mBAAmBF,oBAAoB,MAAME;YAC/C;YACA;QACF,KAAK;YACH,uHAAuH;YACvH,IAAIF,sBAAsB,KAAK;gBAC7B,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,CAAC,4BAA4B,EAAEV,KAAK,4DAA4D,CAAC,GAD7F,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YACAS,mBAAmBF,kBAChBN,KAAK,CAAC,KACNW,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACJ,kBACPK,IAAI,CAAC;YACR;QACF,KAAK;YACH,kIAAkI;YAClIL,mBAAmB,MAAMA;YACzB;QACF,KAAK;YACH,iIAAiI;YAEjI,MAAMM,yBAAyBR,kBAAkBN,KAAK,CAAC;YACvD,IAAIc,uBAAuBC,MAAM,IAAI,GAAG;gBACtC,MAAM,OAAA,cAEL,CAFK,IAAIN,MACR,CAAC,4BAA4B,EAAEV,KAAK,+DAA+D,CAAC,GADhG,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEAS,mBAAmBM,uBAChBH,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACJ,kBACPK,IAAI,CAAC;YACR;QACF;YACE,MAAM,OAAA,cAAyC,CAAzC,IAAIJ,MAAM,iCAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAAwC;IAClD;IAEA,OAAO;QAAEH;QAAmBE;IAAiB;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 1480, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/escape-regexp.ts"],"sourcesContent":["// regexp is based on https://github.com/sindresorhus/escape-string-regexp\nconst reHasRegExp = /[|\\\\{}()[\\]^$+*?.-]/\nconst reReplaceRegExp = /[|\\\\{}()[\\]^$+*?.-]/g\n\nexport function escapeStringRegexp(str: string) {\n // see also: https://github.com/lodash/lodash/blob/2da024c3b4f9947a48517639de7560457cd4ec6c/escapeRegExp.js#L23\n if (reHasRegExp.test(str)) {\n return str.replace(reReplaceRegExp, '\\\\$&')\n }\n return str\n}\n"],"names":["escapeStringRegexp","reHasRegExp","reReplaceRegExp","str","test","replace"],"mappings":"AAAA,0EAA0E;;;;+BAI1DA,sBAAAA;;;eAAAA;;;AAHhB,MAAMC,cAAc;AACpB,MAAMC,kBAAkB;AAEjB,SAASF,mBAAmBG,GAAW;IAC5C,+GAA+G;IAC/G,IAAIF,YAAYG,IAAI,CAACD,MAAM;QACzB,OAAOA,IAAIE,OAAO,CAACH,iBAAiB;IACtC;IACA,OAAOC;AACT","ignoreList":[0]}}, - {"offset": {"line": 1503, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/remove-trailing-slash.ts"],"sourcesContent":["/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */\nexport function removeTrailingSlash(route: string) {\n return route.replace(/\\/$/, '') || '/'\n}\n"],"names":["removeTrailingSlash","route","replace"],"mappings":"AAAA;;;;;;CAMC;;;+BACeA,uBAAAA;;;eAAAA;;;AAAT,SAASA,oBAAoBC,KAAa;IAC/C,OAAOA,MAAMC,OAAO,CAAC,OAAO,OAAO;AACrC","ignoreList":[0]}}, - {"offset": {"line": 1525, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/invariant-error.ts"],"sourcesContent":["export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n"],"names":["InvariantError","Error","constructor","message","options","endsWith","name"],"mappings":";;;+BAAaA,kBAAAA;;;eAAAA;;;AAAN,MAAMA,uBAAuBC;IAClCC,YAAYC,OAAe,EAAEC,OAAsB,CAAE;QACnD,KAAK,CACH,CAAC,WAAW,EAAED,QAAQE,QAAQ,CAAC,OAAOF,UAAUA,UAAU,IAAI,0BAA0B,CAAC,EACzFC;QAEF,IAAI,CAACE,IAAI,GAAG;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 1544, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-loader-tree.ts"],"sourcesContent":["import { DEFAULT_SEGMENT_KEY } from '../../segment'\nimport type { LoaderTree } from '../../../../server/lib/app-dir-module'\n\nexport function parseLoaderTree(tree: LoaderTree) {\n const [segment, parallelRoutes, modules] = tree\n const { layout, template } = modules\n let { page } = modules\n // a __DEFAULT__ segment means that this route didn't match any of the\n // segments in the route, so we should use the default page\n page = segment === DEFAULT_SEGMENT_KEY ? modules.defaultPage : page\n\n const conventionPath = layout?.[1] || template?.[1] || page?.[1]\n\n return {\n page,\n segment,\n modules,\n /* it can be either layout / template / page */\n conventionPath,\n parallelRoutes,\n }\n}\n"],"names":["parseLoaderTree","tree","segment","parallelRoutes","modules","layout","template","page","DEFAULT_SEGMENT_KEY","defaultPage","conventionPath"],"mappings":";;;+BAGgBA,mBAAAA;;;eAAAA;;;yBAHoB;AAG7B,SAASA,gBAAgBC,IAAgB;IAC9C,MAAM,CAACC,SAASC,gBAAgBC,QAAQ,GAAGH;IAC3C,MAAM,EAAEI,MAAM,EAAEC,QAAQ,EAAE,GAAGF;IAC7B,IAAI,EAAEG,IAAI,EAAE,GAAGH;IACf,sEAAsE;IACtE,2DAA2D;IAC3DG,OAAOL,YAAYM,SAAAA,mBAAmB,GAAGJ,QAAQK,WAAW,GAAGF;IAE/D,MAAMG,iBAAiBL,QAAQ,CAAC,EAAE,IAAIC,UAAU,CAAC,EAAE,IAAIC,MAAM,CAAC,EAAE;IAEhE,OAAO;QACLA;QACAL;QACAE;QACA,6CAA6C,GAC7CM;QACAP;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1574, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/get-segment-param.tsx"],"sourcesContent":["import { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport type { DynamicParamTypes } from '../../app-router-types'\n\nexport type SegmentParam = {\n paramName: string\n paramType: DynamicParamTypes\n}\n\n/**\n * Parse dynamic route segment to type of parameter\n */\nexport function getSegmentParam(segment: string): SegmentParam | null {\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((marker) =>\n segment.startsWith(marker)\n )\n\n // if an interception marker is part of the path segment, we need to jump ahead\n // to the relevant portion for param parsing\n if (interceptionMarker) {\n segment = segment.slice(interceptionMarker.length)\n }\n\n if (segment.startsWith('[[...') && segment.endsWith(']]')) {\n return {\n // TODO-APP: Optional catchall does not currently work with parallel routes,\n // so for now aren't handling a potential interception marker.\n paramType: 'optional-catchall',\n paramName: segment.slice(5, -2),\n }\n }\n\n if (segment.startsWith('[...') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `catchall-intercepted-${interceptionMarker}`\n : 'catchall',\n paramName: segment.slice(4, -1),\n }\n }\n\n if (segment.startsWith('[') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `dynamic-intercepted-${interceptionMarker}`\n : 'dynamic',\n paramName: segment.slice(1, -1),\n }\n }\n\n return null\n}\n\nexport function isCatchAll(\n type: DynamicParamTypes\n): type is\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall' {\n return (\n type === 'catchall' ||\n type === 'catchall-intercepted-(..)(..)' ||\n type === 'catchall-intercepted-(.)' ||\n type === 'catchall-intercepted-(..)' ||\n type === 'catchall-intercepted-(...)' ||\n type === 'optional-catchall'\n )\n}\n\nexport function getParamProperties(paramType: DynamicParamTypes): {\n repeat: boolean\n optional: boolean\n} {\n let repeat = false\n let optional = false\n\n switch (paramType) {\n case 'catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n repeat = true\n break\n case 'optional-catchall':\n repeat = true\n optional = true\n break\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n break\n default:\n paramType satisfies never\n }\n\n return { repeat, optional }\n}\n"],"names":["getParamProperties","getSegmentParam","isCatchAll","segment","interceptionMarker","INTERCEPTION_ROUTE_MARKERS","find","marker","startsWith","slice","length","endsWith","paramType","paramName","type","repeat","optional"],"mappings":";;;;;;;;;;;;;;;IAuEgBA,kBAAkB,EAAA;eAAlBA;;IA5DAC,eAAe,EAAA;eAAfA;;IAyCAC,UAAU,EAAA;eAAVA;;;oCApD2B;AAWpC,SAASD,gBAAgBE,OAAe;IAC7C,MAAMC,qBAAqBC,oBAAAA,0BAA0B,CAACC,IAAI,CAAC,CAACC,SAC1DJ,QAAQK,UAAU,CAACD;IAGrB,+EAA+E;IAC/E,4CAA4C;IAC5C,IAAIH,oBAAoB;QACtBD,UAAUA,QAAQM,KAAK,CAACL,mBAAmBM,MAAM;IACnD;IAEA,IAAIP,QAAQK,UAAU,CAAC,YAAYL,QAAQQ,QAAQ,CAAC,OAAO;QACzD,OAAO;YACL,4EAA4E;YAC5E,8DAA8D;YAC9DC,WAAW;YACXC,WAAWV,QAAQM,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,IAAIN,QAAQK,UAAU,CAAC,WAAWL,QAAQQ,QAAQ,CAAC,MAAM;QACvD,OAAO;YACLC,WAAWR,qBACP,CAAC,qBAAqB,EAAEA,oBAAoB,GAC5C;YACJS,WAAWV,QAAQM,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,IAAIN,QAAQK,UAAU,CAAC,QAAQL,QAAQQ,QAAQ,CAAC,MAAM;QACpD,OAAO;YACLC,WAAWR,qBACP,CAAC,oBAAoB,EAAEA,oBAAoB,GAC3C;YACJS,WAAWV,QAAQM,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,OAAO;AACT;AAEO,SAASP,WACdY,IAAuB;IAQvB,OACEA,SAAS,cACTA,SAAS,mCACTA,SAAS,8BACTA,SAAS,+BACTA,SAAS,gCACTA,SAAS;AAEb;AAEO,SAASd,mBAAmBY,SAA4B;IAI7D,IAAIG,SAAS;IACb,IAAIC,WAAW;IAEf,OAAQJ;QACN,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACHG,SAAS;YACT;QACF,KAAK;YACHA,SAAS;YACTC,WAAW;YACX;QACF,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACH;QACF;YACEJ;IACJ;IAEA,OAAO;QAAEG;QAAQC;IAAS;AAC5B","ignoreList":[0]}}, - {"offset": {"line": 1665, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/routes/app.ts"],"sourcesContent":["import { InvariantError } from '../../invariant-error'\nimport { getSegmentParam, type SegmentParam } from '../utils/get-segment-param'\nimport {\n INTERCEPTION_ROUTE_MARKERS,\n type InterceptionMarker,\n} from '../utils/interception-routes'\n\nexport type RouteGroupAppRouteSegment = {\n type: 'route-group'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type ParallelRouteAppRouteSegment = {\n type: 'parallel-route'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type StaticAppRouteSegment = {\n type: 'static'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type DynamicAppRouteSegment = {\n type: 'dynamic'\n name: string\n param: SegmentParam\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\n/**\n * Represents a single segment in a route path.\n * Can be either static (e.g., \"blog\") or dynamic (e.g., \"[slug]\").\n */\nexport type AppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n | RouteGroupAppRouteSegment\n | ParallelRouteAppRouteSegment\n\nexport type NormalizedAppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n\nexport function parseAppRouteSegment(segment: string): AppRouteSegment | null {\n if (segment === '') {\n return null\n }\n\n // Check if the segment starts with an interception marker\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n\n const param = getSegmentParam(segment)\n if (param) {\n return {\n type: 'dynamic',\n name: segment,\n param,\n interceptionMarker,\n }\n } else if (segment.startsWith('(') && segment.endsWith(')')) {\n return {\n type: 'route-group',\n name: segment,\n interceptionMarker,\n }\n } else if (segment.startsWith('@')) {\n return {\n type: 'parallel-route',\n name: segment,\n interceptionMarker,\n }\n } else {\n return {\n type: 'static',\n name: segment,\n interceptionMarker,\n }\n }\n}\n\nexport type AppRoute = {\n normalized: boolean\n pathname: string\n segments: AppRouteSegment[]\n dynamicSegments: DynamicAppRouteSegment[]\n interceptionMarker: InterceptionMarker | undefined\n interceptingRoute: AppRoute | undefined\n interceptedRoute: AppRoute | undefined\n}\n\nexport type NormalizedAppRoute = Omit & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n}\n\nexport function isNormalizedAppRoute(\n route: InterceptionAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isNormalizedAppRoute(\n route: AppRoute | InterceptionAppRoute\n): route is NormalizedAppRoute {\n return route.normalized\n}\n\nexport type InterceptionAppRoute = Omit<\n AppRoute,\n 'interceptionMarker' | 'interceptingRoute' | 'interceptedRoute'\n> & {\n interceptionMarker: InterceptionMarker\n interceptingRoute: AppRoute\n interceptedRoute: AppRoute\n}\n\nexport type NormalizedInterceptionAppRoute = Omit<\n InterceptionAppRoute,\n | 'normalized'\n | 'segments'\n | 'interceptionMarker'\n | 'interceptingRoute'\n | 'interceptedRoute'\n> & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n interceptionMarker: InterceptionMarker\n interceptingRoute: NormalizedAppRoute\n interceptedRoute: NormalizedAppRoute\n}\n\nexport function isInterceptionAppRoute(\n route: NormalizedAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isInterceptionAppRoute(\n route: AppRoute\n): route is InterceptionAppRoute {\n return (\n route.interceptionMarker !== undefined &&\n route.interceptingRoute !== undefined &&\n route.interceptedRoute !== undefined\n )\n}\n\nexport function parseAppRoute(\n pathname: string,\n normalized: true\n): NormalizedAppRoute\nexport function parseAppRoute(pathname: string, normalized: false): AppRoute\nexport function parseAppRoute(\n pathname: string,\n normalized: boolean\n): AppRoute | NormalizedAppRoute {\n const pathnameSegments = pathname.split('/').filter(Boolean)\n\n // Build segments array with static and dynamic segments\n const segments: AppRouteSegment[] = []\n\n // Parse if this is an interception route.\n let interceptionMarker: InterceptionMarker | undefined\n let interceptingRoute: AppRoute | NormalizedAppRoute | undefined\n let interceptedRoute: AppRoute | NormalizedAppRoute | undefined\n\n for (const segment of pathnameSegments) {\n // Parse the segment into an AppSegment.\n const appSegment = parseAppRouteSegment(segment)\n if (!appSegment) {\n continue\n }\n\n if (\n normalized &&\n (appSegment.type === 'route-group' ||\n appSegment.type === 'parallel-route')\n ) {\n throw new InvariantError(\n `${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`\n )\n }\n\n segments.push(appSegment)\n\n if (appSegment.interceptionMarker) {\n const parts = pathname.split(appSegment.interceptionMarker)\n if (parts.length !== 2) {\n throw new Error(`Invalid interception route: ${pathname}`)\n }\n\n interceptingRoute = normalized\n ? parseAppRoute(parts[0], true)\n : parseAppRoute(parts[0], false)\n interceptedRoute = normalized\n ? parseAppRoute(parts[1], true)\n : parseAppRoute(parts[1], false)\n interceptionMarker = appSegment.interceptionMarker\n }\n }\n\n const dynamicSegments = segments.filter(\n (segment) => segment.type === 'dynamic'\n )\n\n return {\n normalized,\n pathname,\n segments,\n dynamicSegments,\n interceptionMarker,\n interceptingRoute,\n interceptedRoute,\n }\n}\n"],"names":["isInterceptionAppRoute","isNormalizedAppRoute","parseAppRoute","parseAppRouteSegment","segment","interceptionMarker","INTERCEPTION_ROUTE_MARKERS","find","m","startsWith","param","getSegmentParam","type","name","endsWith","route","normalized","undefined","interceptingRoute","interceptedRoute","pathname","pathnameSegments","split","filter","Boolean","segments","appSegment","InvariantError","push","parts","length","Error","dynamicSegments"],"mappings":";;;;;;;;;;;;;;;;IAwJgBA,sBAAsB,EAAA;eAAtBA;;IAjCAC,oBAAoB,EAAA;eAApBA;;IAgDAC,aAAa,EAAA;eAAbA;;IAzGAC,oBAAoB,EAAA;eAApBA;;;gCA9De;iCACoB;oCAI5C;AAyDA,SAASA,qBAAqBC,OAAe;IAClD,IAAIA,YAAY,IAAI;QAClB,OAAO;IACT;IAEA,0DAA0D;IAC1D,MAAMC,qBAAqBC,oBAAAA,0BAA0B,CAACC,IAAI,CAAC,CAACC,IAC1DJ,QAAQK,UAAU,CAACD;IAGrB,MAAME,QAAQC,CAAAA,GAAAA,iBAAAA,eAAe,EAACP;IAC9B,IAAIM,OAAO;QACT,OAAO;YACLE,MAAM;YACNC,MAAMT;YACNM;YACAL;QACF;IACF,OAAO,IAAID,QAAQK,UAAU,CAAC,QAAQL,QAAQU,QAAQ,CAAC,MAAM;QAC3D,OAAO;YACLF,MAAM;YACNC,MAAMT;YACNC;QACF;IACF,OAAO,IAAID,QAAQK,UAAU,CAAC,MAAM;QAClC,OAAO;YACLG,MAAM;YACNC,MAAMT;YACNC;QACF;IACF,OAAO;QACL,OAAO;YACLO,MAAM;YACNC,MAAMT;YACNC;QACF;IACF;AACF;AAoBO,SAASJ,qBACdc,KAAsC;IAEtC,OAAOA,MAAMC,UAAU;AACzB;AA6BO,SAAShB,uBACde,KAAe;IAEf,OACEA,MAAMV,kBAAkB,KAAKY,aAC7BF,MAAMG,iBAAiB,KAAKD,aAC5BF,MAAMI,gBAAgB,KAAKF;AAE/B;AAOO,SAASf,cACdkB,QAAgB,EAChBJ,UAAmB;IAEnB,MAAMK,mBAAmBD,SAASE,KAAK,CAAC,KAAKC,MAAM,CAACC;IAEpD,wDAAwD;IACxD,MAAMC,WAA8B,EAAE;IAEtC,0CAA0C;IAC1C,IAAIpB;IACJ,IAAIa;IACJ,IAAIC;IAEJ,KAAK,MAAMf,WAAWiB,iBAAkB;QACtC,wCAAwC;QACxC,MAAMK,aAAavB,qBAAqBC;QACxC,IAAI,CAACsB,YAAY;YACf;QACF;QAEA,IACEV,cACCU,CAAAA,WAAWd,IAAI,KAAK,iBACnBc,WAAWd,IAAI,KAAK,gBAAe,GACrC;YACA,MAAM,OAAA,cAEL,CAFK,IAAIe,gBAAAA,cAAc,CACtB,GAAGP,SAAS,2FAA2F,CAAC,GADpG,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEAK,SAASG,IAAI,CAACF;QAEd,IAAIA,WAAWrB,kBAAkB,EAAE;YACjC,MAAMwB,QAAQT,SAASE,KAAK,CAACI,WAAWrB,kBAAkB;YAC1D,IAAIwB,MAAMC,MAAM,KAAK,GAAG;gBACtB,MAAM,OAAA,cAAoD,CAApD,IAAIC,MAAM,CAAC,4BAA4B,EAAEX,UAAU,GAAnD,qBAAA;2BAAA;gCAAA;kCAAA;gBAAmD;YAC3D;YAEAF,oBAAoBF,aAChBd,cAAc2B,KAAK,CAAC,EAAE,EAAE,QACxB3B,cAAc2B,KAAK,CAAC,EAAE,EAAE;YAC5BV,mBAAmBH,aACfd,cAAc2B,KAAK,CAAC,EAAE,EAAE,QACxB3B,cAAc2B,KAAK,CAAC,EAAE,EAAE;YAC5BxB,qBAAqBqB,WAAWrB,kBAAkB;QACpD;IACF;IAEA,MAAM2B,kBAAkBP,SAASF,MAAM,CACrC,CAACnB,UAAYA,QAAQQ,IAAI,KAAK;IAGhC,OAAO;QACLI;QACAI;QACAK;QACAO;QACA3B;QACAa;QACAC;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1788, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-prefix-from-param-type.ts"],"sourcesContent":["import type { DynamicParamTypes } from '../../app-router-types'\n\nexport function interceptionPrefixFromParamType(\n paramType: DynamicParamTypes\n): string | null {\n switch (paramType) {\n case 'catchall-intercepted-(..)(..)':\n case 'dynamic-intercepted-(..)(..)':\n return '(..)(..)'\n case 'catchall-intercepted-(.)':\n case 'dynamic-intercepted-(.)':\n return '(.)'\n case 'catchall-intercepted-(..)':\n case 'dynamic-intercepted-(..)':\n return '(..)'\n case 'catchall-intercepted-(...)':\n case 'dynamic-intercepted-(...)':\n return '(...)'\n case 'catchall':\n case 'dynamic':\n case 'optional-catchall':\n default:\n return null\n }\n}\n"],"names":["interceptionPrefixFromParamType","paramType"],"mappings":";;;+BAEgBA,mCAAAA;;;eAAAA;;;AAAT,SAASA,gCACdC,SAA4B;IAE5B,OAAQA;QACN,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;QACL,KAAK;QACL;YACE,OAAO;IACX;AACF","ignoreList":[0]}}, - {"offset": {"line": 1822, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/resolve-param-value.ts"],"sourcesContent":["import type { Params } from '../../../../server/request/params'\nimport type { DynamicParamTypes } from '../../app-router-types'\nimport { InvariantError } from '../../invariant-error'\nimport type {\n NormalizedAppRoute,\n NormalizedAppRouteSegment,\n} from '../routes/app'\nimport { interceptionPrefixFromParamType } from './interception-prefix-from-param-type'\n\n/**\n * Extracts the param value from a path segment, handling interception markers\n * based on the expected param type.\n *\n * @param pathSegment - The path segment to extract the value from\n * @param params - The current params object for resolving dynamic param references\n * @param paramType - The expected param type which may include interception marker info\n * @returns The extracted param value\n */\nfunction getParamValueFromSegment(\n pathSegment: NormalizedAppRouteSegment,\n params: Params,\n paramType: DynamicParamTypes\n): string {\n // If the segment is dynamic, resolve it from the params object\n if (pathSegment.type === 'dynamic') {\n return params[pathSegment.param.paramName] as string\n }\n\n // If the paramType indicates this is an intercepted param, strip the marker\n // that matches the interception marker in the param type\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (interceptionPrefix === pathSegment.interceptionMarker) {\n return pathSegment.name.replace(pathSegment.interceptionMarker, '')\n }\n\n // For static segments, use the name\n return pathSegment.name\n}\n\n/**\n * Resolves a route parameter value from the route segments at the given depth.\n * This shared logic is used by both extractPathnameRouteParamSegmentsFromLoaderTree\n * and resolveRouteParamsFromTree.\n *\n * @param paramName - The parameter name to resolve\n * @param paramType - The parameter type (dynamic, catchall, etc.)\n * @param depth - The current depth in the route tree\n * @param route - The normalized route containing segments\n * @param params - The current params object (used to resolve embedded param references)\n * @param options - Configuration options\n * @returns The resolved parameter value, or undefined if it cannot be resolved\n */\nexport function resolveParamValue(\n paramName: string,\n paramType: DynamicParamTypes,\n depth: number,\n route: NormalizedAppRoute,\n params: Params\n): string | string[] | undefined {\n switch (paramType) {\n case 'catchall':\n case 'optional-catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n // For catchall routes, derive from pathname using depth to determine\n // which segments to use\n const processedSegments: string[] = []\n\n // Process segments to handle any embedded dynamic params\n for (let index = depth; index < route.segments.length; index++) {\n const pathSegment = route.segments[index]\n\n if (pathSegment.type === 'static') {\n let value = pathSegment.name\n\n // For intercepted catch-all params, strip the marker from the first segment\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (\n interceptionPrefix &&\n index === depth &&\n interceptionPrefix === pathSegment.interceptionMarker\n ) {\n // Strip the interception marker from the value\n value = value.replace(pathSegment.interceptionMarker, '')\n }\n\n processedSegments.push(value)\n } else {\n // If the segment is a param placeholder, check if we have its value\n if (!params.hasOwnProperty(pathSegment.param.paramName)) {\n // If the segment is an optional catchall, we can break out of the\n // loop because it's optional!\n if (pathSegment.param.paramType === 'optional-catchall') {\n break\n }\n\n // Unknown param placeholder in pathname - can't derive full value\n return undefined\n }\n\n // If the segment matches a param, use the param value\n // We don't encode values here as that's handled during retrieval.\n const paramValue = params[pathSegment.param.paramName]\n if (Array.isArray(paramValue)) {\n processedSegments.push(...paramValue)\n } else {\n processedSegments.push(paramValue as string)\n }\n }\n }\n\n if (processedSegments.length > 0) {\n return processedSegments\n } else if (paramType === 'optional-catchall') {\n return undefined\n } else {\n // We shouldn't be able to match a catchall segment without any path\n // segments if it's not an optional catchall\n throw new InvariantError(\n `Unexpected empty path segments match for a route \"${route.pathname}\" with param \"${paramName}\" of type \"${paramType}\"`\n )\n }\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n // For regular dynamic parameters, take the segment at this depth\n if (depth < route.segments.length) {\n const pathSegment = route.segments[depth]\n\n // Check if the segment at this depth is a placeholder for an unknown param\n if (\n pathSegment.type === 'dynamic' &&\n !params.hasOwnProperty(pathSegment.param.paramName)\n ) {\n // The segment is a placeholder like [category] and we don't have the value\n return undefined\n }\n\n // If the segment matches a param, use the param value from params object\n // Otherwise it's a static segment, just use it directly\n // We don't encode values here as that's handled during retrieval\n return getParamValueFromSegment(pathSegment, params, paramType)\n }\n\n return undefined\n\n default:\n paramType satisfies never\n }\n}\n"],"names":["resolveParamValue","getParamValueFromSegment","pathSegment","params","paramType","type","param","paramName","interceptionPrefix","interceptionPrefixFromParamType","interceptionMarker","name","replace","depth","route","processedSegments","index","segments","length","value","push","hasOwnProperty","undefined","paramValue","Array","isArray","InvariantError","pathname"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1939, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/get-dynamic-param.ts"],"sourcesContent":["import type { DynamicParam } from '../../../../server/app-render/app-render'\nimport type { LoaderTree } from '../../../../server/lib/app-dir-module'\nimport type { OpaqueFallbackRouteParams } from '../../../../server/request/fallback-params'\nimport type { Params } from '../../../../server/request/params'\nimport type { DynamicParamTypesShort } from '../../app-router-types'\nimport { InvariantError } from '../../invariant-error'\nimport { parseLoaderTree } from './parse-loader-tree'\nimport { parseAppRoute, parseAppRouteSegment } from '../routes/app'\nimport { resolveParamValue } from './resolve-param-value'\n\n/**\n * Gets the value of a param from the params object. This correctly handles the\n * case where the param is a fallback route param and encodes the resulting\n * value.\n *\n * @param interpolatedParams - The params object.\n * @param segmentKey - The key of the segment.\n * @param fallbackRouteParams - The fallback route params.\n * @returns The value of the param.\n */\nfunction getParamValue(\n interpolatedParams: Params,\n segmentKey: string,\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n) {\n let value = interpolatedParams[segmentKey]\n\n if (fallbackRouteParams?.has(segmentKey)) {\n // We know that the fallback route params has the segment key because we\n // checked that above.\n const [searchValue] = fallbackRouteParams.get(segmentKey)!\n value = searchValue\n } else if (Array.isArray(value)) {\n value = value.map((i) => encodeURIComponent(i))\n } else if (typeof value === 'string') {\n value = encodeURIComponent(value)\n }\n\n return value\n}\n\nexport function interpolateParallelRouteParams(\n loaderTree: LoaderTree,\n params: Params,\n pagePath: string,\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n): Params {\n const interpolated = structuredClone(params)\n\n // Stack-based traversal with depth tracking\n const stack: Array<{ tree: LoaderTree; depth: number }> = [\n { tree: loaderTree, depth: 0 },\n ]\n\n // Parse the route from the provided page path.\n const route = parseAppRoute(pagePath, true)\n\n while (stack.length > 0) {\n const { tree, depth } = stack.pop()!\n const { segment, parallelRoutes } = parseLoaderTree(tree)\n\n const appSegment = parseAppRouteSegment(segment)\n\n if (\n appSegment?.type === 'dynamic' &&\n !interpolated.hasOwnProperty(appSegment.param.paramName) &&\n // If the param is in the fallback route params, we don't need to\n // interpolate it because it's already marked as being unknown.\n !fallbackRouteParams?.has(appSegment.param.paramName)\n ) {\n const { paramName, paramType } = appSegment.param\n\n const paramValue = resolveParamValue(\n paramName,\n paramType,\n depth,\n route,\n interpolated\n )\n\n if (paramValue !== undefined) {\n interpolated[paramName] = paramValue\n } else if (paramType !== 'optional-catchall') {\n throw new InvariantError(\n `Could not resolve param value for segment: ${paramName}`\n )\n }\n }\n\n // Calculate next depth - increment if this is not a route group and not empty\n let nextDepth = depth\n if (\n appSegment &&\n appSegment.type !== 'route-group' &&\n appSegment.type !== 'parallel-route'\n ) {\n nextDepth++\n }\n\n // Add all parallel routes to the stack for processing\n for (const parallelRoute of Object.values(parallelRoutes)) {\n stack.push({ tree: parallelRoute, depth: nextDepth })\n }\n }\n\n return interpolated\n}\n\n/**\n *\n * Shared logic on client and server for creating a dynamic param value.\n *\n * This code needs to be shared with the client so it can extract dynamic route\n * params from the URL without a server request.\n *\n * Because everything in this module is sent to the client, we should aim to\n * keep this code as simple as possible. The special case handling for catchall\n * and optional is, alas, unfortunate.\n */\nexport function getDynamicParam(\n interpolatedParams: Params,\n segmentKey: string,\n dynamicParamType: DynamicParamTypesShort,\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n): DynamicParam {\n let value: string | string[] | undefined = getParamValue(\n interpolatedParams,\n segmentKey,\n fallbackRouteParams\n )\n\n // handle the case where an optional catchall does not have a value,\n // e.g. `/dashboard/[[...slug]]` when requesting `/dashboard`\n if (!value || value.length === 0) {\n if (dynamicParamType === 'oc') {\n return {\n param: segmentKey,\n value: null,\n type: dynamicParamType,\n treeSegment: [segmentKey, '', dynamicParamType],\n }\n }\n\n throw new InvariantError(\n `Missing value for segment key: \"${segmentKey}\" with dynamic param type: ${dynamicParamType}`\n )\n }\n\n return {\n param: segmentKey,\n // The value that is passed to user code.\n value,\n // The value that is rendered in the router tree.\n treeSegment: [\n segmentKey,\n Array.isArray(value) ? value.join('/') : value,\n dynamicParamType,\n ],\n type: dynamicParamType,\n }\n}\n\n/**\n * Regular expression pattern used to match route parameters.\n * Matches both single parameters and parameter groups.\n * Examples:\n * - `[[...slug]]` matches parameter group with key 'slug', repeat: true, optional: true\n * - `[...slug]` matches parameter group with key 'slug', repeat: true, optional: false\n * - `[[foo]]` matches parameter with key 'foo', repeat: false, optional: true\n * - `[bar]` matches parameter with key 'bar', repeat: false, optional: false\n */\nexport const PARAMETER_PATTERN = /^([^[]*)\\[((?:\\[[^\\]]*\\])|[^\\]]+)\\](.*)$/\n\n/**\n * Parses a given parameter from a route to a data structure that can be used\n * to generate the parametrized route.\n * Examples:\n * - `[[...slug]]` -> `{ key: 'slug', repeat: true, optional: true }`\n * - `[...slug]` -> `{ key: 'slug', repeat: true, optional: false }`\n * - `[[foo]]` -> `{ key: 'foo', repeat: false, optional: true }`\n * - `[bar]` -> `{ key: 'bar', repeat: false, optional: false }`\n * - `fizz` -> `{ key: 'fizz', repeat: false, optional: false }`\n * @param param - The parameter to parse.\n * @returns The parsed parameter as a data structure.\n */\nexport function parseParameter(param: string) {\n const match = param.match(PARAMETER_PATTERN)\n\n if (!match) {\n return parseMatchedParameter(param)\n }\n\n return parseMatchedParameter(match[2])\n}\n\n/**\n * Parses a matched parameter from the PARAMETER_PATTERN regex to a data structure that can be used\n * to generate the parametrized route.\n * Examples:\n * - `[...slug]` -> `{ key: 'slug', repeat: true, optional: true }`\n * - `...slug` -> `{ key: 'slug', repeat: true, optional: false }`\n * - `[foo]` -> `{ key: 'foo', repeat: false, optional: true }`\n * - `bar` -> `{ key: 'bar', repeat: false, optional: false }`\n * @param param - The matched parameter to parse.\n * @returns The parsed parameter as a data structure.\n */\nexport function parseMatchedParameter(param: string) {\n const optional = param.startsWith('[') && param.endsWith(']')\n if (optional) {\n param = param.slice(1, -1)\n }\n const repeat = param.startsWith('...')\n if (repeat) {\n param = param.slice(3)\n }\n return { key: param, repeat, optional }\n}\n"],"names":["PARAMETER_PATTERN","getDynamicParam","interpolateParallelRouteParams","parseMatchedParameter","parseParameter","getParamValue","interpolatedParams","segmentKey","fallbackRouteParams","value","has","searchValue","get","Array","isArray","map","i","encodeURIComponent","loaderTree","params","pagePath","interpolated","structuredClone","stack","tree","depth","route","parseAppRoute","length","pop","segment","parallelRoutes","parseLoaderTree","appSegment","parseAppRouteSegment","type","hasOwnProperty","param","paramName","paramType","paramValue","resolveParamValue","undefined","InvariantError","nextDepth","parallelRoute","Object","values","push","dynamicParamType","treeSegment","join","match","optional","startsWith","endsWith","slice","repeat","key"],"mappings":";;;;;;;;;;;;;;;;;IA2KaA,iBAAiB,EAAA;eAAjBA;;IApDGC,eAAe,EAAA;eAAfA;;IA9EAC,8BAA8B,EAAA;eAA9BA;;IAqKAC,qBAAqB,EAAA;eAArBA;;IArBAC,cAAc,EAAA;eAAdA;;;gCApLe;iCACC;qBACoB;mCAClB;AAElC;;;;;;;;;CASC,GACD,SAASC,cACPC,kBAA0B,EAC1BC,UAAkB,EAClBC,mBAAqD;IAErD,IAAIC,QAAQH,kBAAkB,CAACC,WAAW;IAE1C,IAAIC,qBAAqBE,IAAIH,aAAa;QACxC,wEAAwE;QACxE,sBAAsB;QACtB,MAAM,CAACI,YAAY,GAAGH,oBAAoBI,GAAG,CAACL;QAC9CE,QAAQE;IACV,OAAO,IAAIE,MAAMC,OAAO,CAACL,QAAQ;QAC/BA,QAAQA,MAAMM,GAAG,CAAC,CAACC,IAAMC,mBAAmBD;IAC9C,OAAO,IAAI,OAAOP,UAAU,UAAU;QACpCA,QAAQQ,mBAAmBR;IAC7B;IAEA,OAAOA;AACT;AAEO,SAASP,+BACdgB,UAAsB,EACtBC,MAAc,EACdC,QAAgB,EAChBZ,mBAAqD;IAErD,MAAMa,eAAeC,gBAAgBH;IAErC,4CAA4C;IAC5C,MAAMI,QAAoD;QACxD;YAAEC,MAAMN;YAAYO,OAAO;QAAE;KAC9B;IAED,+CAA+C;IAC/C,MAAMC,QAAQC,CAAAA,GAAAA,KAAAA,aAAa,EAACP,UAAU;IAEtC,MAAOG,MAAMK,MAAM,GAAG,EAAG;QACvB,MAAM,EAAEJ,IAAI,EAAEC,KAAK,EAAE,GAAGF,MAAMM,GAAG;QACjC,MAAM,EAAEC,OAAO,EAAEC,cAAc,EAAE,GAAGC,CAAAA,GAAAA,iBAAAA,eAAe,EAACR;QAEpD,MAAMS,aAAaC,CAAAA,GAAAA,KAAAA,oBAAoB,EAACJ;QAExC,IACEG,YAAYE,SAAS,aACrB,CAACd,aAAae,cAAc,CAACH,WAAWI,KAAK,CAACC,SAAS,KACvD,iEAAiE;QACjE,+DAA+D;QAC/D,CAAC9B,qBAAqBE,IAAIuB,WAAWI,KAAK,CAACC,SAAS,GACpD;YACA,MAAM,EAAEA,SAAS,EAAEC,SAAS,EAAE,GAAGN,WAAWI,KAAK;YAEjD,MAAMG,aAAaC,CAAAA,GAAAA,mBAAAA,iBAAiB,EAClCH,WACAC,WACAd,OACAC,OACAL;YAGF,IAAImB,eAAeE,WAAW;gBAC5BrB,YAAY,CAACiB,UAAU,GAAGE;YAC5B,OAAO,IAAID,cAAc,qBAAqB;gBAC5C,MAAM,OAAA,cAEL,CAFK,IAAII,gBAAAA,cAAc,CACtB,CAAC,2CAA2C,EAAEL,WAAW,GADrD,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;QACF;QAEA,8EAA8E;QAC9E,IAAIM,YAAYnB;QAChB,IACEQ,cACAA,WAAWE,IAAI,KAAK,iBACpBF,WAAWE,IAAI,KAAK,kBACpB;YACAS;QACF;QAEA,sDAAsD;QACtD,KAAK,MAAMC,iBAAiBC,OAAOC,MAAM,CAAChB,gBAAiB;YACzDR,MAAMyB,IAAI,CAAC;gBAAExB,MAAMqB;gBAAepB,OAAOmB;YAAU;QACrD;IACF;IAEA,OAAOvB;AACT;AAaO,SAASpB,gBACdK,kBAA0B,EAC1BC,UAAkB,EAClB0C,gBAAwC,EACxCzC,mBAAqD;IAErD,IAAIC,QAAuCJ,cACzCC,oBACAC,YACAC;IAGF,oEAAoE;IACpE,6DAA6D;IAC7D,IAAI,CAACC,SAASA,MAAMmB,MAAM,KAAK,GAAG;QAChC,IAAIqB,qBAAqB,MAAM;YAC7B,OAAO;gBACLZ,OAAO9B;gBACPE,OAAO;gBACP0B,MAAMc;gBACNC,aAAa;oBAAC3C;oBAAY;oBAAI0C;iBAAiB;YACjD;QACF;QAEA,MAAM,OAAA,cAEL,CAFK,IAAIN,gBAAAA,cAAc,CACtB,CAAC,gCAAgC,EAAEpC,WAAW,2BAA2B,EAAE0C,kBAAkB,GADzF,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,OAAO;QACLZ,OAAO9B;QACP,yCAAyC;QACzCE;QACA,iDAAiD;QACjDyC,aAAa;YACX3C;YACAM,MAAMC,OAAO,CAACL,SAASA,MAAM0C,IAAI,CAAC,OAAO1C;YACzCwC;SACD;QACDd,MAAMc;IACR;AACF;AAWO,MAAMjD,oBAAoB;AAc1B,SAASI,eAAeiC,KAAa;IAC1C,MAAMe,QAAQf,MAAMe,KAAK,CAACpD;IAE1B,IAAI,CAACoD,OAAO;QACV,OAAOjD,sBAAsBkC;IAC/B;IAEA,OAAOlC,sBAAsBiD,KAAK,CAAC,EAAE;AACvC;AAaO,SAASjD,sBAAsBkC,KAAa;IACjD,MAAMgB,WAAWhB,MAAMiB,UAAU,CAAC,QAAQjB,MAAMkB,QAAQ,CAAC;IACzD,IAAIF,UAAU;QACZhB,QAAQA,MAAMmB,KAAK,CAAC,GAAG,CAAC;IAC1B;IACA,MAAMC,SAASpB,MAAMiB,UAAU,CAAC;IAChC,IAAIG,QAAQ;QACVpB,QAAQA,MAAMmB,KAAK,CAAC;IACtB;IACA,OAAO;QAAEE,KAAKrB;QAAOoB;QAAQJ;IAAS;AACxC","ignoreList":[0]}}, - {"offset": {"line": 2107, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/route-regex.ts"],"sourcesContent":["import {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../../../lib/constants'\nimport { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport { escapeStringRegexp } from '../../escape-regexp'\nimport { removeTrailingSlash } from './remove-trailing-slash'\nimport { PARAMETER_PATTERN, parseMatchedParameter } from './get-dynamic-param'\n\nexport interface Group {\n pos: number\n repeat: boolean\n optional: boolean\n}\n\nexport interface RouteRegex {\n groups: { [groupName: string]: Group }\n re: RegExp\n}\n\nexport type RegexReference = {\n names: Record\n intercepted: Record\n}\n\ntype GetNamedRouteRegexOptions = {\n /**\n * Whether to prefix the route keys with the NEXT_INTERCEPTION_MARKER_PREFIX\n * or NEXT_QUERY_PARAM_PREFIX. This is only relevant when creating the\n * routes-manifest during the build.\n */\n prefixRouteKeys: boolean\n\n /**\n * Whether to include the suffix in the route regex. This means that when you\n * have something like `/[...slug].json` the `.json` part will be included\n * in the regex, yielding `/(.*).json` as the regex.\n */\n includeSuffix?: boolean\n\n /**\n * Whether to include the prefix in the route regex. This means that when you\n * have something like `/[...slug].json` the `/` part will be included\n * in the regex, yielding `^/(.*).json$` as the regex.\n *\n * Note that interception markers will already be included without the need\n */\n includePrefix?: boolean\n\n /**\n * Whether to exclude the optional trailing slash from the route regex.\n */\n excludeOptionalTrailingSlash?: boolean\n\n /**\n * Whether to backtrack duplicate keys. This is only relevant when creating\n * the routes-manifest during the build.\n */\n backreferenceDuplicateKeys?: boolean\n\n /**\n * If provided, this will be used as the reference for the dynamic parameter\n * keys instead of generating them in context. This is currently only used for\n * interception routes.\n */\n reference?: RegexReference\n}\n\ntype GetRouteRegexOptions = {\n /**\n * Whether to include extra parts in the route regex. This means that when you\n * have something like `/[...slug].json` the `.json` part will be included\n * in the regex, yielding `/(.*).json` as the regex.\n */\n includeSuffix?: boolean\n\n /**\n * Whether to include the prefix in the route regex. This means that when you\n * have something like `/[...slug].json` the `/` part will be included\n * in the regex, yielding `^/(.*).json$` as the regex.\n *\n * Note that interception markers will already be included without the need\n * of adding this option.\n */\n includePrefix?: boolean\n\n /**\n * Whether to exclude the optional trailing slash from the route regex.\n */\n excludeOptionalTrailingSlash?: boolean\n}\n\nfunction getParametrizedRoute(\n route: string,\n includeSuffix: boolean,\n includePrefix: boolean\n) {\n const groups: { [groupName: string]: Group } = {}\n let groupIndex = 1\n\n const segments: string[] = []\n for (const segment of removeTrailingSlash(route).slice(1).split('/')) {\n const markerMatch = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n const paramMatches = segment.match(PARAMETER_PATTERN) // Check for parameters\n\n if (markerMatch && paramMatches && paramMatches[2]) {\n const { key, optional, repeat } = parseMatchedParameter(paramMatches[2])\n groups[key] = { pos: groupIndex++, repeat, optional }\n segments.push(`/${escapeStringRegexp(markerMatch)}([^/]+?)`)\n } else if (paramMatches && paramMatches[2]) {\n const { key, repeat, optional } = parseMatchedParameter(paramMatches[2])\n groups[key] = { pos: groupIndex++, repeat, optional }\n\n if (includePrefix && paramMatches[1]) {\n segments.push(`/${escapeStringRegexp(paramMatches[1])}`)\n }\n\n let s = repeat ? (optional ? '(?:/(.+?))?' : '/(.+?)') : '/([^/]+?)'\n\n // Remove the leading slash if includePrefix already added it.\n if (includePrefix && paramMatches[1]) {\n s = s.substring(1)\n }\n\n segments.push(s)\n } else {\n segments.push(`/${escapeStringRegexp(segment)}`)\n }\n\n // If there's a suffix, add it to the segments if it's enabled.\n if (includeSuffix && paramMatches && paramMatches[3]) {\n segments.push(escapeStringRegexp(paramMatches[3]))\n }\n }\n\n return {\n parameterizedRoute: segments.join(''),\n groups,\n }\n}\n\n/**\n * From a normalized route this function generates a regular expression and\n * a corresponding groups object intended to be used to store matching groups\n * from the regular expression.\n */\nexport function getRouteRegex(\n normalizedRoute: string,\n {\n includeSuffix = false,\n includePrefix = false,\n excludeOptionalTrailingSlash = false,\n }: GetRouteRegexOptions = {}\n): RouteRegex {\n const { parameterizedRoute, groups } = getParametrizedRoute(\n normalizedRoute,\n includeSuffix,\n includePrefix\n )\n\n let re = parameterizedRoute\n if (!excludeOptionalTrailingSlash) {\n re += '(?:/)?'\n }\n\n return {\n re: new RegExp(`^${re}$`),\n groups: groups,\n }\n}\n\n/**\n * Builds a function to generate a minimal routeKey using only a-z and minimal\n * number of characters.\n */\nfunction buildGetSafeRouteKey() {\n let i = 0\n\n return () => {\n let routeKey = ''\n let j = ++i\n while (j > 0) {\n routeKey += String.fromCharCode(97 + ((j - 1) % 26))\n j = Math.floor((j - 1) / 26)\n }\n return routeKey\n }\n}\n\nfunction getSafeKeyFromSegment({\n interceptionMarker,\n getSafeRouteKey,\n segment,\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n}: {\n interceptionMarker?: string\n getSafeRouteKey: () => string\n segment: string\n routeKeys: Record\n keyPrefix?: string\n backreferenceDuplicateKeys: boolean\n}) {\n const { key, optional, repeat } = parseMatchedParameter(segment)\n\n // replace any non-word characters since they can break\n // the named regex\n let cleanedKey = key.replace(/\\W/g, '')\n\n if (keyPrefix) {\n cleanedKey = `${keyPrefix}${cleanedKey}`\n }\n let invalidKey = false\n\n // check if the key is still invalid and fallback to using a known\n // safe key\n if (cleanedKey.length === 0 || cleanedKey.length > 30) {\n invalidKey = true\n }\n if (!isNaN(parseInt(cleanedKey.slice(0, 1)))) {\n invalidKey = true\n }\n\n if (invalidKey) {\n cleanedKey = getSafeRouteKey()\n }\n\n const duplicateKey = cleanedKey in routeKeys\n\n if (keyPrefix) {\n routeKeys[cleanedKey] = `${keyPrefix}${key}`\n } else {\n routeKeys[cleanedKey] = key\n }\n\n // if the segment has an interception marker, make sure that's part of the regex pattern\n // this is to ensure that the route with the interception marker doesn't incorrectly match\n // the non-intercepted route (ie /app/(.)[username] should not match /app/[username])\n const interceptionPrefix = interceptionMarker\n ? escapeStringRegexp(interceptionMarker)\n : ''\n\n let pattern: string\n if (duplicateKey && backreferenceDuplicateKeys) {\n // Use a backreference to the key to ensure that the key is the same value\n // in each of the placeholders.\n pattern = `\\\\k<${cleanedKey}>`\n } else if (repeat) {\n pattern = `(?<${cleanedKey}>.+?)`\n } else {\n pattern = `(?<${cleanedKey}>[^/]+?)`\n }\n\n return {\n key,\n pattern: optional\n ? `(?:/${interceptionPrefix}${pattern})?`\n : `/${interceptionPrefix}${pattern}`,\n cleanedKey: cleanedKey,\n optional,\n repeat,\n }\n}\n\nfunction getNamedParametrizedRoute(\n route: string,\n prefixRouteKeys: boolean,\n includeSuffix: boolean,\n includePrefix: boolean,\n backreferenceDuplicateKeys: boolean,\n reference: RegexReference = { names: {}, intercepted: {} }\n) {\n const getSafeRouteKey = buildGetSafeRouteKey()\n const routeKeys: { [named: string]: string } = {}\n\n const segments: string[] = []\n const inverseParts: string[] = []\n\n // Ensure we don't mutate the original reference object.\n reference = structuredClone(reference)\n\n for (const segment of removeTrailingSlash(route).slice(1).split('/')) {\n const hasInterceptionMarker = INTERCEPTION_ROUTE_MARKERS.some((m) =>\n segment.startsWith(m)\n )\n\n const paramMatches = segment.match(PARAMETER_PATTERN) // Check for parameters\n\n const interceptionMarker = hasInterceptionMarker\n ? paramMatches?.[1]\n : undefined\n\n let keyPrefix: string | undefined\n if (interceptionMarker && paramMatches?.[2]) {\n keyPrefix = prefixRouteKeys ? NEXT_INTERCEPTION_MARKER_PREFIX : undefined\n reference.intercepted[paramMatches[2]] = interceptionMarker\n } else if (paramMatches?.[2] && reference.intercepted[paramMatches[2]]) {\n keyPrefix = prefixRouteKeys ? NEXT_INTERCEPTION_MARKER_PREFIX : undefined\n } else {\n keyPrefix = prefixRouteKeys ? NEXT_QUERY_PARAM_PREFIX : undefined\n }\n\n if (interceptionMarker && paramMatches && paramMatches[2]) {\n // If there's an interception marker, add it to the segments.\n const { key, pattern, cleanedKey, repeat, optional } =\n getSafeKeyFromSegment({\n getSafeRouteKey,\n interceptionMarker,\n segment: paramMatches[2],\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n })\n\n segments.push(pattern)\n inverseParts.push(\n `/${paramMatches[1]}:${reference.names[key] ?? cleanedKey}${repeat ? (optional ? '*' : '+') : ''}`\n )\n reference.names[key] ??= cleanedKey\n } else if (paramMatches && paramMatches[2]) {\n // If there's a prefix, add it to the segments if it's enabled.\n if (includePrefix && paramMatches[1]) {\n segments.push(`/${escapeStringRegexp(paramMatches[1])}`)\n inverseParts.push(`/${paramMatches[1]}`)\n }\n\n const { key, pattern, cleanedKey, repeat, optional } =\n getSafeKeyFromSegment({\n getSafeRouteKey,\n segment: paramMatches[2],\n routeKeys,\n keyPrefix,\n backreferenceDuplicateKeys,\n })\n\n // Remove the leading slash if includePrefix already added it.\n let s = pattern\n if (includePrefix && paramMatches[1]) {\n s = s.substring(1)\n }\n\n segments.push(s)\n inverseParts.push(\n `/:${reference.names[key] ?? cleanedKey}${repeat ? (optional ? '*' : '+') : ''}`\n )\n reference.names[key] ??= cleanedKey\n } else {\n segments.push(`/${escapeStringRegexp(segment)}`)\n inverseParts.push(`/${segment}`)\n }\n\n // If there's a suffix, add it to the segments if it's enabled.\n if (includeSuffix && paramMatches && paramMatches[3]) {\n segments.push(escapeStringRegexp(paramMatches[3]))\n inverseParts.push(paramMatches[3])\n }\n }\n\n return {\n namedParameterizedRoute: segments.join(''),\n routeKeys,\n pathToRegexpPattern: inverseParts.join(''),\n reference,\n }\n}\n\n/**\n * This function extends `getRouteRegex` generating also a named regexp where\n * each group is named along with a routeKeys object that indexes the assigned\n * named group with its corresponding key. When the routeKeys need to be\n * prefixed to uniquely identify internally the \"prefixRouteKey\" arg should\n * be \"true\" currently this is only the case when creating the routes-manifest\n * during the build\n */\nexport function getNamedRouteRegex(\n normalizedRoute: string,\n options: GetNamedRouteRegexOptions\n) {\n const result = getNamedParametrizedRoute(\n normalizedRoute,\n options.prefixRouteKeys,\n options.includeSuffix ?? false,\n options.includePrefix ?? false,\n options.backreferenceDuplicateKeys ?? false,\n options.reference\n )\n\n let namedRegex = result.namedParameterizedRoute\n if (!options.excludeOptionalTrailingSlash) {\n namedRegex += '(?:/)?'\n }\n\n return {\n ...getRouteRegex(normalizedRoute, options),\n namedRegex: `^${namedRegex}$`,\n routeKeys: result.routeKeys,\n pathToRegexpPattern: result.pathToRegexpPattern,\n reference: result.reference,\n }\n}\n\n/**\n * Generates a named regexp.\n * This is intended to be using for build time only.\n */\nexport function getNamedMiddlewareRegex(\n normalizedRoute: string,\n options: {\n catchAll?: boolean\n }\n) {\n const { parameterizedRoute } = getParametrizedRoute(\n normalizedRoute,\n false,\n false\n )\n const { catchAll = true } = options\n if (parameterizedRoute === '/') {\n let catchAllRegex = catchAll ? '.*' : ''\n return {\n namedRegex: `^/${catchAllRegex}$`,\n }\n }\n\n const { namedParameterizedRoute } = getNamedParametrizedRoute(\n normalizedRoute,\n false,\n false,\n false,\n false,\n undefined\n )\n let catchAllGroupedRegex = catchAll ? '(?:(/.*)?)' : ''\n return {\n namedRegex: `^${namedParameterizedRoute}${catchAllGroupedRegex}$`,\n }\n}\n"],"names":["getNamedMiddlewareRegex","getNamedRouteRegex","getRouteRegex","getParametrizedRoute","route","includeSuffix","includePrefix","groups","groupIndex","segments","segment","removeTrailingSlash","slice","split","markerMatch","INTERCEPTION_ROUTE_MARKERS","find","m","startsWith","paramMatches","match","PARAMETER_PATTERN","key","optional","repeat","parseMatchedParameter","pos","push","escapeStringRegexp","s","substring","parameterizedRoute","join","normalizedRoute","excludeOptionalTrailingSlash","re","RegExp","buildGetSafeRouteKey","i","routeKey","j","String","fromCharCode","Math","floor","getSafeKeyFromSegment","interceptionMarker","getSafeRouteKey","routeKeys","keyPrefix","backreferenceDuplicateKeys","cleanedKey","replace","invalidKey","length","isNaN","parseInt","duplicateKey","interceptionPrefix","pattern","getNamedParametrizedRoute","prefixRouteKeys","reference","names","intercepted","inverseParts","structuredClone","hasInterceptionMarker","some","undefined","NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_QUERY_PARAM_PREFIX","namedParameterizedRoute","pathToRegexpPattern","options","result","namedRegex","catchAll","catchAllRegex","catchAllGroupedRegex"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2364, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils.ts"],"sourcesContent":["import type { HtmlProps } from './html-context.shared-runtime'\nimport type { ComponentType, JSX } from 'react'\nimport type { DomainLocale } from '../../server/config'\nimport type { Env } from '@next/env'\nimport type { IncomingMessage, ServerResponse } from 'http'\nimport type { NextRouter } from './router/router'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { PreviewData } from '../../types'\nimport type { COMPILER_NAMES } from './constants'\nimport type fs from 'fs'\n\nexport type NextComponentType<\n Context extends BaseContext = NextPageContext,\n InitialProps = {},\n Props = {},\n> = ComponentType & {\n /**\n * Used for initial page load data population. Data returned from `getInitialProps` is serialized when server rendered.\n * Make sure to return plain `Object` without using `Date`, `Map`, `Set`.\n * @param context Context of `page`\n */\n getInitialProps?(context: Context): InitialProps | Promise\n}\n\nexport type DocumentType = NextComponentType<\n DocumentContext,\n DocumentInitialProps,\n DocumentProps\n>\n\nexport type AppType

= NextComponentType<\n AppContextType,\n P,\n AppPropsType\n>\n\nexport type AppTreeType = ComponentType<\n AppInitialProps & { [name: string]: any }\n>\n\n/**\n * Web vitals provided to _app.reportWebVitals by Core Web Vitals plugin developed by Google Chrome team.\n * https://nextjs.org/blog/next-9-4#integrated-web-vitals-reporting\n */\nexport const WEB_VITALS = ['CLS', 'FCP', 'FID', 'INP', 'LCP', 'TTFB'] as const\nexport type NextWebVitalsMetric = {\n id: string\n startTime: number\n value: number\n attribution?: { [key: string]: unknown }\n} & (\n | {\n label: 'web-vital'\n name: (typeof WEB_VITALS)[number]\n }\n | {\n label: 'custom'\n name:\n | 'Next.js-hydration'\n | 'Next.js-route-change-to-render'\n | 'Next.js-render'\n }\n)\n\nexport type Enhancer = (Component: C) => C\n\nexport type ComponentsEnhancer =\n | {\n enhanceApp?: Enhancer\n enhanceComponent?: Enhancer\n }\n | Enhancer\n\nexport type RenderPageResult = {\n html: string\n head?: Array\n}\n\nexport type RenderPage = (\n options?: ComponentsEnhancer\n) => DocumentInitialProps | Promise\n\nexport type BaseContext = {\n res?: ServerResponse\n [k: string]: any\n}\n\nexport type NEXT_DATA = {\n props: Record\n page: string\n query: ParsedUrlQuery\n buildId: string\n assetPrefix?: string\n nextExport?: boolean\n autoExport?: boolean\n isFallback?: boolean\n isExperimentalCompile?: boolean\n dynamicIds?: (string | number)[]\n err?: Error & {\n statusCode?: number\n source?: typeof COMPILER_NAMES.server | typeof COMPILER_NAMES.edgeServer\n }\n gsp?: boolean\n gssp?: boolean\n customServer?: boolean\n gip?: boolean\n appGip?: boolean\n locale?: string\n locales?: readonly string[]\n defaultLocale?: string\n domainLocales?: readonly DomainLocale[]\n scriptLoader?: any[]\n isPreview?: boolean\n notFoundSrcPage?: string\n}\n\n/**\n * `Next` context\n */\nexport interface NextPageContext {\n /**\n * Error object if encountered during rendering\n */\n err?: (Error & { statusCode?: number }) | null\n /**\n * `HTTP` request object.\n */\n req?: IncomingMessage\n /**\n * `HTTP` response object.\n */\n res?: ServerResponse\n /**\n * Path section of `URL`.\n */\n pathname: string\n /**\n * Query string section of `URL` parsed as an object.\n */\n query: ParsedUrlQuery\n /**\n * `String` of the actual path including query.\n */\n asPath?: string\n /**\n * The currently active locale\n */\n locale?: string\n /**\n * All configured locales\n */\n locales?: readonly string[]\n /**\n * The configured default locale\n */\n defaultLocale?: string\n /**\n * `Component` the tree of the App to use if needing to render separately\n */\n AppTree: AppTreeType\n}\n\nexport type AppContextType = {\n Component: NextComponentType\n AppTree: AppTreeType\n ctx: NextPageContext\n router: Router\n}\n\nexport type AppInitialProps = {\n pageProps: PageProps\n}\n\nexport type AppPropsType<\n Router extends NextRouter = NextRouter,\n PageProps = {},\n> = AppInitialProps & {\n Component: NextComponentType\n router: Router\n __N_SSG?: boolean\n __N_SSP?: boolean\n}\n\nexport type DocumentContext = NextPageContext & {\n renderPage: RenderPage\n defaultGetInitialProps(\n ctx: DocumentContext,\n options?: { nonce?: string }\n ): Promise\n}\n\nexport type DocumentInitialProps = RenderPageResult & {\n styles?: React.ReactElement[] | Iterable | JSX.Element\n}\n\nexport type DocumentProps = DocumentInitialProps & HtmlProps\n\n/**\n * Next `API` route request\n */\nexport interface NextApiRequest extends IncomingMessage {\n /**\n * Object of `query` values from url\n */\n query: Partial<{\n [key: string]: string | string[]\n }>\n /**\n * Object of `cookies` from header\n */\n cookies: Partial<{\n [key: string]: string\n }>\n\n body: any\n\n env: Env\n\n draftMode?: boolean\n\n preview?: boolean\n /**\n * Preview data set on the request, if any\n * */\n previewData?: PreviewData\n}\n\n/**\n * Send body of response\n */\ntype Send = (body: T) => void\n\n/**\n * Next `API` route response\n */\nexport type NextApiResponse = ServerResponse & {\n /**\n * Send data `any` data in response\n */\n send: Send\n /**\n * Send data `json` data in response\n */\n json: Send\n status: (statusCode: number) => NextApiResponse\n redirect(url: string): NextApiResponse\n redirect(status: number, url: string): NextApiResponse\n\n /**\n * Set draft mode\n */\n setDraftMode: (options: { enable: boolean }) => NextApiResponse\n\n /**\n * Set preview data for Next.js' prerender mode\n */\n setPreviewData: (\n data: object | string,\n options?: {\n /**\n * Specifies the number (in seconds) for the preview session to last for.\n * The given number will be converted to an integer by rounding down.\n * By default, no maximum age is set and the preview session finishes\n * when the client shuts down (browser is closed).\n */\n maxAge?: number\n /**\n * Specifies the path for the preview session to work under. By default,\n * the path is considered the \"default path\", i.e., any pages under \"/\".\n */\n path?: string\n }\n ) => NextApiResponse\n\n /**\n * Clear preview data for Next.js' prerender mode\n */\n clearPreviewData: (options?: { path?: string }) => NextApiResponse\n\n /**\n * Revalidate a specific page and regenerate it using On-Demand Incremental\n * Static Regeneration.\n * The path should be an actual path, not a rewritten path. E.g. for\n * \"/blog/[slug]\" this should be \"/blog/post-1\".\n * @link https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration#on-demand-revalidation-with-revalidatepath\n */\n revalidate: (\n urlPath: string,\n opts?: {\n unstable_onlyGenerated?: boolean\n }\n ) => Promise\n}\n\n/**\n * Next `API` route handler\n */\nexport type NextApiHandler = (\n req: NextApiRequest,\n res: NextApiResponse\n) => unknown | Promise\n\n/**\n * Utils\n */\nexport function execOnce ReturnType>(\n fn: T\n): T {\n let used = false\n let result: ReturnType\n\n return ((...args: any[]) => {\n if (!used) {\n used = true\n result = fn(...args)\n }\n return result\n }) as T\n}\n\n// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1\n// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3\nconst ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\\d+\\-.]*?:/\nexport const isAbsoluteUrl = (url: string) => ABSOLUTE_URL_REGEX.test(url)\n\nexport function getLocationOrigin() {\n const { protocol, hostname, port } = window.location\n return `${protocol}//${hostname}${port ? ':' + port : ''}`\n}\n\nexport function getURL() {\n const { href } = window.location\n const origin = getLocationOrigin()\n return href.substring(origin.length)\n}\n\nexport function getDisplayName

(Component: ComponentType

) {\n return typeof Component === 'string'\n ? Component\n : Component.displayName || Component.name || 'Unknown'\n}\n\nexport function isResSent(res: ServerResponse) {\n return res.finished || res.headersSent\n}\n\nexport function normalizeRepeatedSlashes(url: string) {\n const urlParts = url.split('?')\n const urlNoQuery = urlParts[0]\n\n return (\n urlNoQuery\n // first we replace any non-encoded backslashes with forward\n // then normalize repeated forward slashes\n .replace(/\\\\/g, '/')\n .replace(/\\/\\/+/g, '/') +\n (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : '')\n )\n}\n\nexport async function loadGetInitialProps<\n C extends BaseContext,\n IP = {},\n P = {},\n>(App: NextComponentType, ctx: C): Promise {\n if (process.env.NODE_ENV !== 'production') {\n if (App.prototype?.getInitialProps) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`\n throw new Error(message)\n }\n }\n // when called from _app `ctx` is nested in `ctx`\n const res = ctx.res || (ctx.ctx && ctx.ctx.res)\n\n if (!App.getInitialProps) {\n if (ctx.ctx && ctx.Component) {\n // @ts-ignore pageProps default\n return {\n pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx),\n }\n }\n return {} as IP\n }\n\n const props = await App.getInitialProps(ctx)\n\n if (res && isResSent(res)) {\n return props\n }\n\n if (!props) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" should resolve to an object. But found \"${props}\" instead.`\n throw new Error(message)\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (Object.keys(props).length === 0 && !ctx.ctx) {\n console.warn(\n `${getDisplayName(\n App\n )} returned an empty object from \\`getInitialProps\\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`\n )\n }\n }\n\n return props\n}\n\nexport const SP = typeof performance !== 'undefined'\nexport const ST =\n SP &&\n (['mark', 'measure', 'getEntriesByName'] as const).every(\n (method) => typeof performance[method] === 'function'\n )\n\nexport class DecodeError extends Error {}\nexport class NormalizeError extends Error {}\nexport class PageNotFoundError extends Error {\n code: string\n\n constructor(page: string) {\n super()\n this.code = 'ENOENT'\n this.name = 'PageNotFoundError'\n this.message = `Cannot find module for page: ${page}`\n }\n}\n\nexport class MissingStaticPage extends Error {\n constructor(page: string, message: string) {\n super()\n this.message = `Failed to load static file for page: ${page} ${message}`\n }\n}\n\nexport class MiddlewareNotFoundError extends Error {\n code: string\n constructor() {\n super()\n this.code = 'ENOENT'\n this.message = `Cannot find the middleware module`\n }\n}\n\nexport interface CacheFs {\n existsSync: typeof fs.existsSync\n readFile: typeof fs.promises.readFile\n readFileSync: typeof fs.readFileSync\n writeFile(f: string, d: any): Promise\n mkdir(dir: string): Promise\n stat(f: string): Promise<{ mtime: Date }>\n}\n\nexport function stringifyError(error: Error) {\n return JSON.stringify({ message: error.message, stack: error.stack })\n}\n"],"names":["DecodeError","MiddlewareNotFoundError","MissingStaticPage","NormalizeError","PageNotFoundError","SP","ST","WEB_VITALS","execOnce","getDisplayName","getLocationOrigin","getURL","isAbsoluteUrl","isResSent","loadGetInitialProps","normalizeRepeatedSlashes","stringifyError","fn","used","result","args","ABSOLUTE_URL_REGEX","url","test","protocol","hostname","port","window","location","href","origin","substring","length","Component","displayName","name","res","finished","headersSent","urlParts","split","urlNoQuery","replace","slice","join","App","ctx","process","env","NODE_ENV","prototype","getInitialProps","message","Error","pageProps","props","Object","keys","console","warn","performance","every","method","constructor","page","code","error","JSON","stringify","stack"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2572, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/route-pattern-normalizer.ts"],"sourcesContent":["import type { Token } from 'next/dist/compiled/path-to-regexp'\n\n/**\n * Route pattern normalization utilities for path-to-regexp compatibility.\n *\n * path-to-regexp 6.3.0+ introduced stricter validation that rejects certain\n * patterns commonly used in Next.js interception routes. This module provides\n * normalization functions to make Next.js route patterns compatible with the\n * updated library while preserving all functionality.\n */\n\n/**\n * Internal separator used to normalize adjacent parameter patterns.\n * This unique marker is inserted between adjacent parameters and stripped out\n * during parameter extraction to avoid conflicts with real URL content.\n */\nexport const PARAM_SEPARATOR = '_NEXTSEP_'\n\n/**\n * Detects if a route pattern needs normalization for path-to-regexp compatibility.\n */\nexport function hasAdjacentParameterIssues(route: string): boolean {\n if (typeof route !== 'string') return false\n\n // Check for interception route markers followed immediately by parameters\n // Pattern: /(.):param, /(..):param, /(...):param, /(.)(.):param etc.\n // These patterns cause \"Must have text between two parameters\" errors\n if (/\\/\\(\\.{1,3}\\):[^/\\s]+/.test(route)) {\n return true\n }\n\n // Check for basic adjacent parameters without separators\n // Pattern: :param1:param2 (but not :param* or other URL patterns)\n if (/:[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*/.test(route)) {\n return true\n }\n\n return false\n}\n\n/**\n * Normalizes route patterns that have adjacent parameters without text between them.\n * Inserts a unique separator that can be safely stripped out later.\n */\nexport function normalizeAdjacentParameters(route: string): string {\n let normalized = route\n\n // Handle interception route patterns: (.):param -> (.)_NEXTSEP_:param\n normalized = normalized.replace(\n /(\\([^)]*\\)):([^/\\s]+)/g,\n `$1${PARAM_SEPARATOR}:$2`\n )\n\n // Handle other adjacent parameter patterns: :param1:param2 -> :param1_NEXTSEP_:param2\n normalized = normalized.replace(/:([^:/\\s)]+)(?=:)/g, `:$1${PARAM_SEPARATOR}`)\n\n return normalized\n}\n\n/**\n * Normalizes tokens that have repeating modifiers (* or +) but empty prefix and suffix.\n *\n * path-to-regexp 6.3.0+ introduced validation that throws:\n * \"Can not repeat without prefix/suffix\"\n *\n * This occurs when a token has modifier: '*' or '+' with both prefix: '' and suffix: ''\n */\nexport function normalizeTokensForRegexp(tokens: Token[]): Token[] {\n return tokens.map((token) => {\n // Token union type: Token = string | TokenObject\n // Literal path segments are strings, parameters/wildcards are objects\n if (\n typeof token === 'object' &&\n token !== null &&\n // Not all token objects have 'modifier' property (e.g., simple text tokens)\n 'modifier' in token &&\n // Only repeating modifiers (* or +) cause the validation error\n // Other modifiers like '?' (optional) are fine\n (token.modifier === '*' || token.modifier === '+') &&\n // Token objects can have different shapes depending on route pattern\n 'prefix' in token &&\n 'suffix' in token &&\n // Both prefix and suffix must be empty strings\n // This is what causes the validation error in path-to-regexp\n token.prefix === '' &&\n token.suffix === ''\n ) {\n // Add minimal prefix to satisfy path-to-regexp validation\n // We use '/' as it's the most common path delimiter and won't break route matching\n // The prefix gets used in regex generation but doesn't affect parameter extraction\n return {\n ...token,\n prefix: '/',\n }\n }\n return token\n })\n}\n\n/**\n * Strips normalization separators from compiled pathname.\n * This removes separators that were inserted by normalizeAdjacentParameters\n * to satisfy path-to-regexp validation.\n *\n * Only removes separators in the specific contexts where they were inserted:\n * - After interception route markers: (.)_NEXTSEP_ -> (.)\n *\n * This targeted approach ensures we don't accidentally remove the separator\n * from legitimate user content.\n */\nexport function stripNormalizedSeparators(pathname: string): string {\n // Remove separator after interception route markers\n // Pattern: (.)_NEXTSEP_ -> (.), (..)_NEXTSEP_ -> (..), etc.\n // The separator appears after the closing paren of interception markers\n return pathname.replace(new RegExp(`\\\\)${PARAM_SEPARATOR}`, 'g'), ')')\n}\n\n/**\n * Strips normalization separators from extracted route parameters.\n * Used by both server and client code to clean up parameters after route matching.\n */\nexport function stripParameterSeparators(\n params: Record\n): Record {\n const cleaned: Record = {}\n\n for (const [key, value] of Object.entries(params)) {\n if (typeof value === 'string') {\n // Remove the separator if it appears at the start of parameter values\n cleaned[key] = value.replace(new RegExp(`^${PARAM_SEPARATOR}`), '')\n } else if (Array.isArray(value)) {\n // Handle array parameters (from repeated route segments)\n cleaned[key] = value.map((item) =>\n typeof item === 'string'\n ? item.replace(new RegExp(`^${PARAM_SEPARATOR}`), '')\n : item\n )\n } else {\n cleaned[key] = value\n }\n }\n\n return cleaned\n}\n"],"names":["PARAM_SEPARATOR","hasAdjacentParameterIssues","normalizeAdjacentParameters","normalizeTokensForRegexp","stripNormalizedSeparators","stripParameterSeparators","route","test","normalized","replace","tokens","map","token","modifier","prefix","suffix","pathname","RegExp","params","cleaned","key","value","Object","entries","Array","isArray","item"],"mappings":";;;;;;;;;;;;;;;;;;IAgBaA,eAAe,EAAA;eAAfA;;IAKGC,0BAA0B,EAAA;eAA1BA;;IAuBAC,2BAA2B,EAAA;eAA3BA;;IAuBAC,wBAAwB,EAAA;eAAxBA;;IA2CAC,yBAAyB,EAAA;eAAzBA;;IAWAC,wBAAwB,EAAA;eAAxBA;;;AAzGT,MAAML,kBAAkB;AAKxB,SAASC,2BAA2BK,KAAa;IACtD,IAAI,OAAOA,UAAU,UAAU,OAAO;IAEtC,0EAA0E;IAC1E,qEAAqE;IACrE,sEAAsE;IACtE,IAAI,wBAAwBC,IAAI,CAACD,QAAQ;QACvC,OAAO;IACT;IAEA,yDAAyD;IACzD,kEAAkE;IAClE,IAAI,iDAAiDC,IAAI,CAACD,QAAQ;QAChE,OAAO;IACT;IAEA,OAAO;AACT;AAMO,SAASJ,4BAA4BI,KAAa;IACvD,IAAIE,aAAaF;IAEjB,sEAAsE;IACtEE,aAAaA,WAAWC,OAAO,CAC7B,0BACA,CAAC,EAAE,EAAET,gBAAgB,GAAG,CAAC;IAG3B,sFAAsF;IACtFQ,aAAaA,WAAWC,OAAO,CAAC,sBAAsB,CAAC,GAAG,EAAET,iBAAiB;IAE7E,OAAOQ;AACT;AAUO,SAASL,yBAAyBO,MAAe;IACtD,OAAOA,OAAOC,GAAG,CAAC,CAACC;QACjB,iDAAiD;QACjD,sEAAsE;QACtE,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,4EAA4E;QAC5E,cAAcA,SACd,+DAA+D;QAC/D,+CAA+C;QAC9CA,CAAAA,MAAMC,QAAQ,KAAK,OAAOD,MAAMC,QAAQ,KAAK,GAAE,KAChD,qEAAqE;QACrE,YAAYD,SACZ,YAAYA,SACZ,+CAA+C;QAC/C,6DAA6D;QAC7DA,MAAME,MAAM,KAAK,MACjBF,MAAMG,MAAM,KAAK,IACjB;YACA,0DAA0D;YAC1D,mFAAmF;YACnF,mFAAmF;YACnF,OAAO;gBACL,GAAGH,KAAK;gBACRE,QAAQ;YACV;QACF;QACA,OAAOF;IACT;AACF;AAaO,SAASR,0BAA0BY,QAAgB;IACxD,oDAAoD;IACpD,4DAA4D;IAC5D,wEAAwE;IACxE,OAAOA,SAASP,OAAO,CAAC,IAAIQ,OAAO,CAAC,GAAG,EAAEjB,iBAAiB,EAAE,MAAM;AACpE;AAMO,SAASK,yBACda,MAA2B;IAE3B,MAAMC,UAA+B,CAAC;IAEtC,KAAK,MAAM,CAACC,KAAKC,MAAM,IAAIC,OAAOC,OAAO,CAACL,QAAS;QACjD,IAAI,OAAOG,UAAU,UAAU;YAC7B,sEAAsE;YACtEF,OAAO,CAACC,IAAI,GAAGC,MAAMZ,OAAO,CAAC,IAAIQ,OAAO,CAAC,CAAC,EAAEjB,iBAAiB,GAAG;QAClE,OAAO,IAAIwB,MAAMC,OAAO,CAACJ,QAAQ;YAC/B,yDAAyD;YACzDF,OAAO,CAACC,IAAI,GAAGC,MAAMV,GAAG,CAAC,CAACe,OACxB,OAAOA,SAAS,WACZA,KAAKjB,OAAO,CAAC,IAAIQ,OAAO,CAAC,CAAC,EAAEjB,iBAAiB,GAAG,MAChD0B;QAER,OAAO;YACLP,OAAO,CAACC,IAAI,GAAGC;QACjB;IACF;IAEA,OAAOF;AACT","ignoreList":[0]}}, - {"offset": {"line": 2680, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/route-match-utils.ts"],"sourcesContent":["/**\n * Client-safe utilities for route matching that don't import server-side\n * utilities to avoid bundling issues with Turbopack\n */\n\nimport type {\n Key,\n TokensToRegexpOptions,\n ParseOptions,\n TokensToFunctionOptions,\n} from 'next/dist/compiled/path-to-regexp'\nimport {\n pathToRegexp,\n compile,\n regexpToFunction,\n} from 'next/dist/compiled/path-to-regexp'\nimport {\n hasAdjacentParameterIssues,\n normalizeAdjacentParameters,\n stripParameterSeparators,\n stripNormalizedSeparators,\n} from '../../../../lib/route-pattern-normalizer'\n\n/**\n * Client-safe wrapper around pathToRegexp that handles path-to-regexp 6.3.0+ validation errors.\n * This includes both \"Can not repeat without prefix/suffix\" and \"Must have text between parameters\" errors.\n */\nexport function safePathToRegexp(\n route: string | RegExp | Array,\n keys?: Key[],\n options?: TokensToRegexpOptions & ParseOptions\n): RegExp {\n if (typeof route !== 'string') {\n return pathToRegexp(route, keys, options)\n }\n\n // Check if normalization is needed and cache the result\n const needsNormalization = hasAdjacentParameterIssues(route)\n const routeToUse = needsNormalization\n ? normalizeAdjacentParameters(route)\n : route\n\n try {\n return pathToRegexp(routeToUse, keys, options)\n } catch (error) {\n // Only try normalization if we haven't already normalized\n if (!needsNormalization) {\n try {\n const normalizedRoute = normalizeAdjacentParameters(route)\n return pathToRegexp(normalizedRoute, keys, options)\n } catch (retryError) {\n // If that doesn't work, fall back to original error\n throw error\n }\n }\n throw error\n }\n}\n\n/**\n * Client-safe wrapper around compile that handles path-to-regexp 6.3.0+ validation errors.\n * No server-side error reporting to avoid bundling issues.\n * When normalization is applied, the returned compiler function automatically strips\n * the internal separator from the output URL.\n */\nexport function safeCompile(\n route: string,\n options?: TokensToFunctionOptions & ParseOptions\n) {\n // Check if normalization is needed and cache the result\n const needsNormalization = hasAdjacentParameterIssues(route)\n const routeToUse = needsNormalization\n ? normalizeAdjacentParameters(route)\n : route\n\n try {\n const compiler = compile(routeToUse, options)\n\n // If we normalized the route, wrap the compiler to strip separators from output\n // The normalization inserts _NEXTSEP_ as a literal string in the pattern to satisfy\n // path-to-regexp validation, but we don't want it in the final compiled URL\n if (needsNormalization) {\n return (params: any) => {\n return stripNormalizedSeparators(compiler(params))\n }\n }\n\n return compiler\n } catch (error) {\n // Only try normalization if we haven't already normalized\n if (!needsNormalization) {\n try {\n const normalizedRoute = normalizeAdjacentParameters(route)\n const compiler = compile(normalizedRoute, options)\n\n // Wrap the compiler to strip separators from output\n return (params: any) => {\n return stripNormalizedSeparators(compiler(params))\n }\n } catch (retryError) {\n // If that doesn't work, fall back to original error\n throw error\n }\n }\n throw error\n }\n}\n\n/**\n * Client-safe wrapper around regexpToFunction that automatically cleans parameters.\n */\nexport function safeRegexpToFunction<\n T extends Record = Record,\n>(regexp: RegExp, keys?: Key[]): (pathname: string) => { params: T } | false {\n const originalMatcher = regexpToFunction(regexp, keys || [])\n\n return (pathname: string) => {\n const result = originalMatcher(pathname)\n if (!result) return false\n\n // Clean parameters before returning\n return {\n ...result,\n params: stripParameterSeparators(result.params as any) as T,\n }\n }\n}\n\n/**\n * Safe wrapper for route matcher functions that automatically cleans parameters.\n * This is client-safe and doesn't import path-to-regexp.\n */\nexport function safeRouteMatcher>(\n matcherFn: (pathname: string) => false | T\n): (pathname: string) => false | T {\n return (pathname: string) => {\n const result = matcherFn(pathname)\n if (!result) return false\n\n // Clean parameters before returning\n return stripParameterSeparators(result) as T\n }\n}\n"],"names":["safeCompile","safePathToRegexp","safeRegexpToFunction","safeRouteMatcher","route","keys","options","pathToRegexp","needsNormalization","hasAdjacentParameterIssues","routeToUse","normalizeAdjacentParameters","error","normalizedRoute","retryError","compiler","compile","params","stripNormalizedSeparators","regexp","originalMatcher","regexpToFunction","pathname","result","stripParameterSeparators","matcherFn"],"mappings":"AAAA;;;CAGC;;;;;;;;;;;;;;;;IA8DeA,WAAW,EAAA;eAAXA;;IAtCAC,gBAAgB,EAAA;eAAhBA;;IAoFAC,oBAAoB,EAAA;eAApBA;;IAqBAC,gBAAgB,EAAA;eAAhBA;;;8BArHT;wCAMA;AAMA,SAASF,iBACdG,KAA+C,EAC/CC,IAAY,EACZC,OAA8C;IAE9C,IAAI,OAAOF,UAAU,UAAU;QAC7B,OAAOG,CAAAA,GAAAA,cAAAA,YAAY,EAACH,OAAOC,MAAMC;IACnC;IAEA,wDAAwD;IACxD,MAAME,qBAAqBC,CAAAA,GAAAA,wBAAAA,0BAA0B,EAACL;IACtD,MAAMM,aAAaF,qBACfG,CAAAA,GAAAA,wBAAAA,2BAA2B,EAACP,SAC5BA;IAEJ,IAAI;QACF,OAAOG,CAAAA,GAAAA,cAAAA,YAAY,EAACG,YAAYL,MAAMC;IACxC,EAAE,OAAOM,OAAO;QACd,0DAA0D;QAC1D,IAAI,CAACJ,oBAAoB;YACvB,IAAI;gBACF,MAAMK,kBAAkBF,CAAAA,GAAAA,wBAAAA,2BAA2B,EAACP;gBACpD,OAAOG,CAAAA,GAAAA,cAAAA,YAAY,EAACM,iBAAiBR,MAAMC;YAC7C,EAAE,OAAOQ,YAAY;gBACnB,oDAAoD;gBACpD,MAAMF;YACR;QACF;QACA,MAAMA;IACR;AACF;AAQO,SAASZ,YACdI,KAAa,EACbE,OAAgD;IAEhD,wDAAwD;IACxD,MAAME,qBAAqBC,CAAAA,GAAAA,wBAAAA,0BAA0B,EAACL;IACtD,MAAMM,aAAaF,qBACfG,CAAAA,GAAAA,wBAAAA,2BAA2B,EAACP,SAC5BA;IAEJ,IAAI;QACF,MAAMW,WAAWC,CAAAA,GAAAA,cAAAA,OAAO,EAACN,YAAYJ;QAErC,gFAAgF;QAChF,oFAAoF;QACpF,4EAA4E;QAC5E,IAAIE,oBAAoB;YACtB,OAAO,CAACS;gBACN,OAAOC,CAAAA,GAAAA,wBAAAA,yBAAyB,EAACH,SAASE;YAC5C;QACF;QAEA,OAAOF;IACT,EAAE,OAAOH,OAAO;QACd,0DAA0D;QAC1D,IAAI,CAACJ,oBAAoB;YACvB,IAAI;gBACF,MAAMK,kBAAkBF,CAAAA,GAAAA,wBAAAA,2BAA2B,EAACP;gBACpD,MAAMW,WAAWC,CAAAA,GAAAA,cAAAA,OAAO,EAACH,iBAAiBP;gBAE1C,oDAAoD;gBACpD,OAAO,CAACW;oBACN,OAAOC,CAAAA,GAAAA,wBAAAA,yBAAyB,EAACH,SAASE;gBAC5C;YACF,EAAE,OAAOH,YAAY;gBACnB,oDAAoD;gBACpD,MAAMF;YACR;QACF;QACA,MAAMA;IACR;AACF;AAKO,SAASV,qBAEdiB,MAAc,EAAEd,IAAY;IAC5B,MAAMe,kBAAkBC,CAAAA,GAAAA,cAAAA,gBAAgB,EAAIF,QAAQd,QAAQ,EAAE;IAE9D,OAAO,CAACiB;QACN,MAAMC,SAASH,gBAAgBE;QAC/B,IAAI,CAACC,QAAQ,OAAO;QAEpB,oCAAoC;QACpC,OAAO;YACL,GAAGA,MAAM;YACTN,QAAQO,CAAAA,GAAAA,wBAAAA,wBAAwB,EAACD,OAAON,MAAM;QAChD;IACF;AACF;AAMO,SAASd,iBACdsB,SAA0C;IAE1C,OAAO,CAACH;QACN,MAAMC,SAASE,UAAUH;QACzB,IAAI,CAACC,QAAQ,OAAO;QAEpB,oCAAoC;QACpC,OAAOC,CAAAA,GAAAA,wBAAAA,wBAAwB,EAACD;IAClC;AACF","ignoreList":[0]}}, - {"offset": {"line": 2794, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/route-matcher.ts"],"sourcesContent":["import type { Group } from './route-regex'\nimport { DecodeError } from '../../utils'\nimport type { Params } from '../../../../server/request/params'\nimport { safeRouteMatcher } from './route-match-utils'\n\nexport interface RouteMatchFn {\n (pathname: string): false | Params\n}\n\ntype RouteMatcherOptions = {\n // We only use the exec method of the RegExp object. This helps us avoid using\n // type assertions that the passed in properties are of the correct type.\n re: Pick\n groups: Record\n}\n\nexport function getRouteMatcher({\n re,\n groups,\n}: RouteMatcherOptions): RouteMatchFn {\n const rawMatcher = (pathname: string) => {\n const routeMatch = re.exec(pathname)\n if (!routeMatch) return false\n\n const decode = (param: string) => {\n try {\n return decodeURIComponent(param)\n } catch {\n throw new DecodeError('failed to decode param')\n }\n }\n\n const params: Params = {}\n for (const [key, group] of Object.entries(groups)) {\n const match = routeMatch[group.pos]\n if (match !== undefined) {\n if (group.repeat) {\n params[key] = match.split('/').map((entry) => decode(entry))\n } else {\n params[key] = decode(match)\n }\n }\n }\n\n return params\n }\n\n // Wrap with safe matcher to handle parameter cleaning\n return safeRouteMatcher(rawMatcher)\n}\n"],"names":["getRouteMatcher","re","groups","rawMatcher","pathname","routeMatch","exec","decode","param","decodeURIComponent","DecodeError","params","key","group","Object","entries","match","pos","undefined","repeat","split","map","entry","safeRouteMatcher"],"mappings":";;;+BAgBgBA,mBAAAA;;;eAAAA;;;uBAfY;iCAEK;AAa1B,SAASA,gBAAgB,EAC9BC,EAAE,EACFC,MAAM,EACc;IACpB,MAAMC,aAAa,CAACC;QAClB,MAAMC,aAAaJ,GAAGK,IAAI,CAACF;QAC3B,IAAI,CAACC,YAAY,OAAO;QAExB,MAAME,SAAS,CAACC;YACd,IAAI;gBACF,OAAOC,mBAAmBD;YAC5B,EAAE,OAAM;gBACN,MAAM,OAAA,cAAyC,CAAzC,IAAIE,OAAAA,WAAW,CAAC,2BAAhB,qBAAA;2BAAA;gCAAA;kCAAA;gBAAwC;YAChD;QACF;QAEA,MAAMC,SAAiB,CAAC;QACxB,KAAK,MAAM,CAACC,KAAKC,MAAM,IAAIC,OAAOC,OAAO,CAACb,QAAS;YACjD,MAAMc,QAAQX,UAAU,CAACQ,MAAMI,GAAG,CAAC;YACnC,IAAID,UAAUE,WAAW;gBACvB,IAAIL,MAAMM,MAAM,EAAE;oBAChBR,MAAM,CAACC,IAAI,GAAGI,MAAMI,KAAK,CAAC,KAAKC,GAAG,CAAC,CAACC,QAAUf,OAAOe;gBACvD,OAAO;oBACLX,MAAM,CAACC,IAAI,GAAGL,OAAOS;gBACvB;YACF;QACF;QAEA,OAAOL;IACT;IAEA,sDAAsD;IACtD,OAAOY,CAAAA,GAAAA,iBAAAA,gBAAgB,EAACpB;AAC1B","ignoreList":[0]}}, - {"offset": {"line": 2840, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/querystring.ts"],"sourcesContent":["import type { ParsedUrlQuery } from 'querystring'\n\nexport function searchParamsToUrlQuery(\n searchParams: URLSearchParams\n): ParsedUrlQuery {\n const query: ParsedUrlQuery = {}\n for (const [key, value] of searchParams.entries()) {\n const existing = query[key]\n if (typeof existing === 'undefined') {\n query[key] = value\n } else if (Array.isArray(existing)) {\n existing.push(value)\n } else {\n query[key] = [existing, value]\n }\n }\n return query\n}\n\nfunction stringifyUrlQueryParam(param: unknown): string {\n if (typeof param === 'string') {\n return param\n }\n\n if (\n (typeof param === 'number' && !isNaN(param)) ||\n typeof param === 'boolean'\n ) {\n return String(param)\n } else {\n return ''\n }\n}\n\nexport function urlQueryToSearchParams(query: ParsedUrlQuery): URLSearchParams {\n const searchParams = new URLSearchParams()\n for (const [key, value] of Object.entries(query)) {\n if (Array.isArray(value)) {\n for (const item of value) {\n searchParams.append(key, stringifyUrlQueryParam(item))\n }\n } else {\n searchParams.set(key, stringifyUrlQueryParam(value))\n }\n }\n return searchParams\n}\n\nexport function assign(\n target: URLSearchParams,\n ...searchParamsList: URLSearchParams[]\n): URLSearchParams {\n for (const searchParams of searchParamsList) {\n for (const key of searchParams.keys()) {\n target.delete(key)\n }\n\n for (const [key, value] of searchParams.entries()) {\n target.append(key, value)\n }\n }\n\n return target\n}\n"],"names":["assign","searchParamsToUrlQuery","urlQueryToSearchParams","searchParams","query","key","value","entries","existing","Array","isArray","push","stringifyUrlQueryParam","param","isNaN","String","URLSearchParams","Object","item","append","set","target","searchParamsList","keys","delete"],"mappings":";;;;;;;;;;;;;;;IAgDgBA,MAAM,EAAA;eAANA;;IA9CAC,sBAAsB,EAAA;eAAtBA;;IAgCAC,sBAAsB,EAAA;eAAtBA;;;AAhCT,SAASD,uBACdE,YAA6B;IAE7B,MAAMC,QAAwB,CAAC;IAC/B,KAAK,MAAM,CAACC,KAAKC,MAAM,IAAIH,aAAaI,OAAO,GAAI;QACjD,MAAMC,WAAWJ,KAAK,CAACC,IAAI;QAC3B,IAAI,OAAOG,aAAa,aAAa;YACnCJ,KAAK,CAACC,IAAI,GAAGC;QACf,OAAO,IAAIG,MAAMC,OAAO,CAACF,WAAW;YAClCA,SAASG,IAAI,CAACL;QAChB,OAAO;YACLF,KAAK,CAACC,IAAI,GAAG;gBAACG;gBAAUF;aAAM;QAChC;IACF;IACA,OAAOF;AACT;AAEA,SAASQ,uBAAuBC,KAAc;IAC5C,IAAI,OAAOA,UAAU,UAAU;QAC7B,OAAOA;IACT;IAEA,IACG,OAAOA,UAAU,YAAY,CAACC,MAAMD,UACrC,OAAOA,UAAU,WACjB;QACA,OAAOE,OAAOF;IAChB,OAAO;QACL,OAAO;IACT;AACF;AAEO,SAASX,uBAAuBE,KAAqB;IAC1D,MAAMD,eAAe,IAAIa;IACzB,KAAK,MAAM,CAACX,KAAKC,MAAM,IAAIW,OAAOV,OAAO,CAACH,OAAQ;QAChD,IAAIK,MAAMC,OAAO,CAACJ,QAAQ;YACxB,KAAK,MAAMY,QAAQZ,MAAO;gBACxBH,aAAagB,MAAM,CAACd,KAAKO,uBAAuBM;YAClD;QACF,OAAO;YACLf,aAAaiB,GAAG,CAACf,KAAKO,uBAAuBN;QAC/C;IACF;IACA,OAAOH;AACT;AAEO,SAASH,OACdqB,MAAuB,EACvB,GAAGC,gBAAmC;IAEtC,KAAK,MAAMnB,gBAAgBmB,iBAAkB;QAC3C,KAAK,MAAMjB,OAAOF,aAAaoB,IAAI,GAAI;YACrCF,OAAOG,MAAM,CAACnB;QAChB;QAEA,KAAK,MAAM,CAACA,KAAKC,MAAM,IAAIH,aAAaI,OAAO,GAAI;YACjDc,OAAOF,MAAM,CAACd,KAAKC;QACrB;IACF;IAEA,OAAOe;AACT","ignoreList":[0]}}, - {"offset": {"line": 2920, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-relative-url.ts"],"sourcesContent":["import type { ParsedUrlQuery } from 'querystring'\nimport { getLocationOrigin } from '../../utils'\nimport { searchParamsToUrlQuery } from './querystring'\n\nexport interface ParsedRelativeUrl {\n hash: string\n href: string\n pathname: string\n query: ParsedUrlQuery\n search: string\n slashes: undefined\n}\n\n/**\n * Parses path-relative urls (e.g. `/hello/world?foo=bar`). If url isn't path-relative\n * (e.g. `./hello`) then at least base must be.\n * Absolute urls are rejected with one exception, in the browser, absolute urls that are on\n * the current origin will be parsed as relative\n */\nexport function parseRelativeUrl(\n url: string,\n base?: string,\n parseQuery?: true\n): ParsedRelativeUrl\nexport function parseRelativeUrl(\n url: string,\n base: string | undefined,\n parseQuery: false\n): Omit\nexport function parseRelativeUrl(\n url: string,\n base?: string,\n parseQuery = true\n): ParsedRelativeUrl | Omit {\n const globalBase = new URL(\n typeof window === 'undefined' ? 'http://n' : getLocationOrigin()\n )\n\n const resolvedBase = base\n ? new URL(base, globalBase)\n : url.startsWith('.')\n ? new URL(\n typeof window === 'undefined' ? 'http://n' : window.location.href\n )\n : globalBase\n\n const { pathname, searchParams, search, hash, href, origin } = new URL(\n url,\n resolvedBase\n )\n\n if (origin !== globalBase.origin) {\n throw new Error(`invariant: invalid relative URL, router received ${url}`)\n }\n\n return {\n pathname,\n query: parseQuery ? searchParamsToUrlQuery(searchParams) : undefined,\n search,\n hash,\n href: href.slice(origin.length),\n // We don't know for relative URLs at this point since we set a custom, internal\n // base that isn't surfaced to users.\n slashes: undefined,\n }\n}\n"],"names":["parseRelativeUrl","url","base","parseQuery","globalBase","URL","window","getLocationOrigin","resolvedBase","startsWith","location","href","pathname","searchParams","search","hash","origin","Error","query","searchParamsToUrlQuery","undefined","slice","length","slashes"],"mappings":";;;+BA6BgBA,oBAAAA;;;eAAAA;;;uBA5BkB;6BACK;AA2BhC,SAASA,iBACdC,GAAW,EACXC,IAAa,EACbC,aAAa,IAAI;IAEjB,MAAMC,aAAa,IAAIC,IACrB,OAAOC,WAAW,qBAAc,aAAaC,IAAAA,wBAAiB;IAGhE,MAAMC,eAAeN,OACjB,IAAIG,IAAIH,MAAME,cACdH,IAAIQ,UAAU,CAAC,OACb,IAAIJ,IACF,OAAOC,WAAW,qBAAc,aAAaA,OAAOI,QAAQ,CAACC,IAAI,OAEnEP;IAEN,MAAM,EAAEQ,QAAQ,EAAEC,YAAY,EAAEC,MAAM,EAAEC,IAAI,EAAEJ,IAAI,EAAEK,MAAM,EAAE,GAAG,IAAIX,IACjEJ,KACAO;IAGF,IAAIQ,WAAWZ,WAAWY,MAAM,EAAE;QAChC,MAAM,OAAA,cAAoE,CAApE,IAAIC,MAAM,CAAC,iDAAiD,EAAEhB,KAAK,GAAnE,qBAAA;mBAAA;wBAAA;0BAAA;QAAmE;IAC3E;IAEA,OAAO;QACLW;QACAM,OAAOf,aAAagB,CAAAA,GAAAA,aAAAA,sBAAsB,EAACN,gBAAgBO;QAC3DN;QACAC;QACAJ,MAAMA,KAAKU,KAAK,CAACL,OAAOM,MAAM;QAC9B,gFAAgF;QAChF,qCAAqC;QACrCC,SAASH;IACX;AACF","ignoreList":[0]}}, - {"offset": {"line": 2957, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-url.ts"],"sourcesContent":["import type { ParsedUrlQuery } from 'querystring'\n\nimport { searchParamsToUrlQuery } from './querystring'\nimport { parseRelativeUrl } from './parse-relative-url'\n\nexport interface ParsedUrl {\n hash: string\n hostname?: string | null\n href: string\n pathname: string\n port?: string | null\n protocol?: string | null\n query: ParsedUrlQuery\n origin?: string | null\n search: string\n slashes: boolean | undefined\n}\n\nexport function parseUrl(url: string): ParsedUrl {\n if (url.startsWith('/')) {\n return parseRelativeUrl(url)\n }\n\n const parsedURL = new URL(url)\n return {\n hash: parsedURL.hash,\n hostname: parsedURL.hostname,\n href: parsedURL.href,\n pathname: parsedURL.pathname,\n port: parsedURL.port,\n protocol: parsedURL.protocol,\n query: searchParamsToUrlQuery(parsedURL.searchParams),\n search: parsedURL.search,\n origin: parsedURL.origin,\n slashes:\n parsedURL.href.slice(\n parsedURL.protocol.length,\n parsedURL.protocol.length + 2\n ) === '//',\n }\n}\n"],"names":["parseUrl","url","startsWith","parseRelativeUrl","parsedURL","URL","hash","hostname","href","pathname","port","protocol","query","searchParamsToUrlQuery","searchParams","search","origin","slashes","slice","length"],"mappings":";;;+BAkBgBA,YAAAA;;;eAAAA;;;6BAhBuB;kCACN;AAe1B,SAASA,SAASC,GAAW;IAClC,IAAIA,IAAIC,UAAU,CAAC,MAAM;QACvB,OAAOC,CAAAA,GAAAA,kBAAAA,gBAAgB,EAACF;IAC1B;IAEA,MAAMG,YAAY,IAAIC,IAAIJ;IAC1B,OAAO;QACLK,MAAMF,UAAUE,IAAI;QACpBC,UAAUH,UAAUG,QAAQ;QAC5BC,MAAMJ,UAAUI,IAAI;QACpBC,UAAUL,UAAUK,QAAQ;QAC5BC,MAAMN,UAAUM,IAAI;QACpBC,UAAUP,UAAUO,QAAQ;QAC5BC,OAAOC,CAAAA,GAAAA,aAAAA,sBAAsB,EAACT,UAAUU,YAAY;QACpDC,QAAQX,UAAUW,MAAM;QACxBC,QAAQZ,UAAUY,MAAM;QACxBC,SACEb,UAAUI,IAAI,CAACU,KAAK,CAClBd,UAAUO,QAAQ,CAACQ,MAAM,EACzBf,UAAUO,QAAQ,CAACQ,MAAM,GAAG,OACxB;IACV;AACF","ignoreList":[0]}}, - {"offset": {"line": 2989, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/cookie/index.js"],"sourcesContent":["(()=>{\"use strict\";if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var e={};(()=>{var r=e;\n/*!\n * cookie\n * Copyright(c) 2012-2014 Roman Shtylman\n * Copyright(c) 2015 Douglas Christopher Wilson\n * MIT Licensed\n */r.parse=parse;r.serialize=serialize;var i=decodeURIComponent;var t=encodeURIComponent;var a=/; */;var n=/^[\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+$/;function parse(e,r){if(typeof e!==\"string\"){throw new TypeError(\"argument str must be a string\")}var t={};var n=r||{};var o=e.split(a);var s=n.decode||i;for(var p=0;p NextApiRequestCookies {\n return function parseCookie(): NextApiRequestCookies {\n const { cookie } = headers\n\n if (!cookie) {\n return {}\n }\n\n const { parse: parseCookieFn } =\n require('next/dist/compiled/cookie') as typeof import('next/dist/compiled/cookie')\n return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie)\n }\n}\n"],"names":["getCookieParser","headers","parseCookie","cookie","parse","parseCookieFn","require","Array","isArray","join"],"mappings":";;;+BAOgBA,mBAAAA;;;eAAAA;;;AAAT,SAASA,gBAAgBC,OAE/B;IACC,OAAO,SAASC;QACd,MAAM,EAAEC,MAAM,EAAE,GAAGF;QAEnB,IAAI,CAACE,QAAQ;YACX,OAAO,CAAC;QACV;QAEA,MAAM,EAAEC,OAAOC,aAAa,EAAE,GAC5BC,QAAQ;QACV,OAAOD,cAAcE,MAAMC,OAAO,CAACL,UAAUA,OAAOM,IAAI,CAAC,QAAQN;IACnE;AACF","ignoreList":[0]}}, - {"offset": {"line": 3134, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/prepare-destination.ts"],"sourcesContent":["import type { IncomingMessage } from 'http'\nimport type { Key } from 'next/dist/compiled/path-to-regexp'\nimport type { NextParsedUrlQuery } from '../../../../server/request-meta'\nimport type { RouteHas } from '../../../../lib/load-custom-routes'\nimport type { BaseNextRequest } from '../../../../server/base-http'\n\nimport { escapeStringRegexp } from '../../escape-regexp'\nimport { parseUrl } from './parse-url'\nimport {\n INTERCEPTION_ROUTE_MARKERS,\n isInterceptionRouteAppPath,\n} from './interception-routes'\nimport { getCookieParser } from '../../../../server/api-utils/get-cookie-parser'\nimport type { Params } from '../../../../server/request/params'\nimport { safePathToRegexp, safeCompile } from './route-match-utils'\n\n/**\n * Ensure only a-zA-Z are used for param names for proper interpolating\n * with path-to-regexp\n */\nfunction getSafeParamName(paramName: string) {\n let newParamName = ''\n\n for (let i = 0; i < paramName.length; i++) {\n const charCode = paramName.charCodeAt(i)\n\n if (\n (charCode > 64 && charCode < 91) || // A-Z\n (charCode > 96 && charCode < 123) // a-z\n ) {\n newParamName += paramName[i]\n }\n }\n return newParamName\n}\n\nfunction escapeSegment(str: string, segmentName: string) {\n return str.replace(\n new RegExp(`:${escapeStringRegexp(segmentName)}`, 'g'),\n `__ESC_COLON_${segmentName}`\n )\n}\n\nfunction unescapeSegments(str: string) {\n return str.replace(/__ESC_COLON_/gi, ':')\n}\n\nexport function matchHas(\n req: BaseNextRequest | IncomingMessage,\n query: Params,\n has: RouteHas[] = [],\n missing: RouteHas[] = []\n): false | Params {\n const params: Params = {}\n\n const hasMatch = (hasItem: RouteHas) => {\n let value\n let key = hasItem.key\n\n switch (hasItem.type) {\n case 'header': {\n key = key!.toLowerCase()\n value = req.headers[key] as string\n break\n }\n case 'cookie': {\n if ('cookies' in req) {\n value = req.cookies[hasItem.key]\n } else {\n const cookies = getCookieParser(req.headers)()\n value = cookies[hasItem.key]\n }\n\n break\n }\n case 'query': {\n value = query[key!]\n break\n }\n case 'host': {\n const { host } = req?.headers || {}\n // remove port from host if present\n const hostname = host?.split(':', 1)[0].toLowerCase()\n value = hostname\n break\n }\n default: {\n break\n }\n }\n\n if (!hasItem.value && value) {\n params[getSafeParamName(key!)] = value\n return true\n } else if (value) {\n const matcher = new RegExp(`^${hasItem.value}$`)\n const matches = Array.isArray(value)\n ? value.slice(-1)[0].match(matcher)\n : value.match(matcher)\n\n if (matches) {\n if (Array.isArray(matches)) {\n if (matches.groups) {\n Object.keys(matches.groups).forEach((groupKey) => {\n params[groupKey] = matches.groups![groupKey]\n })\n } else if (hasItem.type === 'host' && matches[0]) {\n params.host = matches[0]\n }\n }\n return true\n }\n }\n return false\n }\n\n const allMatch =\n has.every((item) => hasMatch(item)) &&\n !missing.some((item) => hasMatch(item))\n\n if (allMatch) {\n return params\n }\n return false\n}\n\nexport function compileNonPath(value: string, params: Params): string {\n if (!value.includes(':')) {\n return value\n }\n\n for (const key of Object.keys(params)) {\n if (value.includes(`:${key}`)) {\n value = value\n .replace(\n new RegExp(`:${key}\\\\*`, 'g'),\n `:${key}--ESCAPED_PARAM_ASTERISKS`\n )\n .replace(\n new RegExp(`:${key}\\\\?`, 'g'),\n `:${key}--ESCAPED_PARAM_QUESTION`\n )\n .replace(new RegExp(`:${key}\\\\+`, 'g'), `:${key}--ESCAPED_PARAM_PLUS`)\n .replace(\n new RegExp(`:${key}(?!\\\\w)`, 'g'),\n `--ESCAPED_PARAM_COLON${key}`\n )\n }\n }\n value = value\n .replace(/(:|\\*|\\?|\\+|\\(|\\)|\\{|\\})/g, '\\\\$1')\n .replace(/--ESCAPED_PARAM_PLUS/g, '+')\n .replace(/--ESCAPED_PARAM_COLON/g, ':')\n .replace(/--ESCAPED_PARAM_QUESTION/g, '?')\n .replace(/--ESCAPED_PARAM_ASTERISKS/g, '*')\n\n // the value needs to start with a forward-slash to be compiled\n // correctly\n return safeCompile(`/${value}`, { validate: false })(params).slice(1)\n}\n\nexport function parseDestination(args: {\n destination: string\n params: Readonly\n query: Readonly\n}) {\n let escaped = args.destination\n for (const param of Object.keys({ ...args.params, ...args.query })) {\n if (!param) continue\n\n escaped = escapeSegment(escaped, param)\n }\n\n const parsed = parseUrl(escaped)\n\n let pathname = parsed.pathname\n if (pathname) {\n pathname = unescapeSegments(pathname)\n }\n\n let href = parsed.href\n if (href) {\n href = unescapeSegments(href)\n }\n\n let hostname = parsed.hostname\n if (hostname) {\n hostname = unescapeSegments(hostname)\n }\n\n let hash = parsed.hash\n if (hash) {\n hash = unescapeSegments(hash)\n }\n\n let search = parsed.search\n if (search) {\n search = unescapeSegments(search)\n }\n\n let origin = parsed.origin\n if (origin) {\n origin = unescapeSegments(origin)\n }\n\n return {\n ...parsed,\n pathname,\n hostname,\n href,\n hash,\n search,\n origin,\n }\n}\n\nexport function prepareDestination(args: {\n appendParamsToQuery: boolean\n destination: string\n params: Params\n query: NextParsedUrlQuery\n}) {\n const parsedDestination = parseDestination(args)\n\n const {\n hostname: destHostname,\n query: destQuery,\n search: destSearch,\n } = parsedDestination\n\n // The following code assumes that the pathname here includes the hash if it's\n // present.\n let destPath = parsedDestination.pathname\n if (parsedDestination.hash) {\n destPath = `${destPath}${parsedDestination.hash}`\n }\n\n const destParams: (string | number)[] = []\n\n const destPathParamKeys: Key[] = []\n safePathToRegexp(destPath, destPathParamKeys)\n for (const key of destPathParamKeys) {\n destParams.push(key.name)\n }\n\n if (destHostname) {\n const destHostnameParamKeys: Key[] = []\n safePathToRegexp(destHostname, destHostnameParamKeys)\n for (const key of destHostnameParamKeys) {\n destParams.push(key.name)\n }\n }\n\n const destPathCompiler = safeCompile(\n destPath,\n // we don't validate while compiling the destination since we should\n // have already validated before we got to this point and validating\n // breaks compiling destinations with named pattern params from the source\n // e.g. /something:hello(.*) -> /another/:hello is broken with validation\n // since compile validation is meant for reversing and not for inserting\n // params from a separate path-regex into another\n { validate: false }\n )\n\n let destHostnameCompiler\n if (destHostname) {\n destHostnameCompiler = safeCompile(destHostname, { validate: false })\n }\n\n // update any params in query values\n for (const [key, strOrArray] of Object.entries(destQuery)) {\n // the value needs to start with a forward-slash to be compiled\n // correctly\n if (Array.isArray(strOrArray)) {\n destQuery[key] = strOrArray.map((value) =>\n compileNonPath(unescapeSegments(value), args.params)\n )\n } else if (typeof strOrArray === 'string') {\n destQuery[key] = compileNonPath(unescapeSegments(strOrArray), args.params)\n }\n }\n\n // add path params to query if it's not a redirect and not\n // already defined in destination query or path\n let paramKeys = Object.keys(args.params).filter(\n (name) => name !== 'nextInternalLocale'\n )\n\n if (\n args.appendParamsToQuery &&\n !paramKeys.some((key) => destParams.includes(key))\n ) {\n for (const key of paramKeys) {\n if (!(key in destQuery)) {\n destQuery[key] = args.params[key]\n }\n }\n }\n\n let newUrl\n\n // The compiler also that the interception route marker is an unnamed param, hence '0',\n // so we need to add it to the params object.\n if (isInterceptionRouteAppPath(destPath)) {\n for (const segment of destPath.split('/')) {\n const marker = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n if (marker) {\n if (marker === '(..)(..)') {\n args.params['0'] = '(..)'\n args.params['1'] = '(..)'\n } else {\n args.params['0'] = marker\n }\n break\n }\n }\n }\n\n try {\n newUrl = destPathCompiler(args.params)\n\n const [pathname, hash] = newUrl.split('#', 2)\n if (destHostnameCompiler) {\n parsedDestination.hostname = destHostnameCompiler(args.params)\n }\n parsedDestination.pathname = pathname\n parsedDestination.hash = `${hash ? '#' : ''}${hash || ''}`\n parsedDestination.search = destSearch\n ? compileNonPath(destSearch, args.params)\n : ''\n } catch (err: any) {\n if (err.message.match(/Expected .*? to not repeat, but got an array/)) {\n throw new Error(\n `To use a multi-match in the destination you must add \\`*\\` at the end of the param name to signify it should repeat. https://nextjs.org/docs/messages/invalid-multi-match`\n )\n }\n throw err\n }\n\n // Query merge order lowest priority to highest\n // 1. initial URL query values\n // 2. path segment values\n // 3. destination specified query values\n parsedDestination.query = {\n ...args.query,\n ...parsedDestination.query,\n }\n\n return {\n newUrl,\n destQuery,\n parsedDestination,\n }\n}\n"],"names":["compileNonPath","matchHas","parseDestination","prepareDestination","getSafeParamName","paramName","newParamName","i","length","charCode","charCodeAt","escapeSegment","str","segmentName","replace","RegExp","escapeStringRegexp","unescapeSegments","req","query","has","missing","params","hasMatch","hasItem","value","key","type","toLowerCase","headers","cookies","getCookieParser","host","hostname","split","matcher","matches","Array","isArray","slice","match","groups","Object","keys","forEach","groupKey","allMatch","every","item","some","includes","safeCompile","validate","args","escaped","destination","param","parsed","parseUrl","pathname","href","hash","search","origin","parsedDestination","destHostname","destQuery","destSearch","destPath","destParams","destPathParamKeys","safePathToRegexp","push","name","destHostnameParamKeys","destPathCompiler","destHostnameCompiler","strOrArray","entries","map","paramKeys","filter","appendParamsToQuery","newUrl","isInterceptionRouteAppPath","segment","marker","INTERCEPTION_ROUTE_MARKERS","find","m","startsWith","err","message","Error"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3426, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/utils.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\nimport {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../lib/constants'\n\n/**\n * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any\n * headers with multiple values will be joined with a comma and space. Any\n * headers that have an undefined value will be ignored and others will be\n * coerced to strings.\n *\n * @param nodeHeaders the headers object to convert\n * @returns the converted headers object\n */\nexport function fromNodeOutgoingHttpHeaders(\n nodeHeaders: OutgoingHttpHeaders\n): Headers {\n const headers = new Headers()\n for (let [key, value] of Object.entries(nodeHeaders)) {\n const values = Array.isArray(value) ? value : [value]\n for (let v of values) {\n if (typeof v === 'undefined') continue\n if (typeof v === 'number') {\n v = v.toString()\n }\n\n headers.append(key, v)\n }\n }\n return headers\n}\n\n/*\n Set-Cookie header field-values are sometimes comma joined in one string. This splits them without choking on commas\n that are within a single set-cookie field-value, such as in the Expires portion.\n This is uncommon, but explicitly allowed - see https://tools.ietf.org/html/rfc2616#section-4.2\n Node.js does this for every header *except* set-cookie - see https://github.com/nodejs/node/blob/d5e363b77ebaf1caf67cd7528224b651c86815c1/lib/_http_incoming.js#L128\n React Native's fetch does this for *every* header, including set-cookie.\n \n Based on: https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25\n Credits to: https://github.com/tomball for original and https://github.com/chrusart for JavaScript implementation\n*/\nexport function splitCookiesString(cookiesString: string) {\n var cookiesStrings = []\n var pos = 0\n var start\n var ch\n var lastComma\n var nextStart\n var cookiesSeparatorFound\n\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1\n }\n return pos < cookiesString.length\n }\n\n function notSpecialChar() {\n ch = cookiesString.charAt(pos)\n\n return ch !== '=' && ch !== ';' && ch !== ','\n }\n\n while (pos < cookiesString.length) {\n start = pos\n cookiesSeparatorFound = false\n\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos)\n if (ch === ',') {\n // ',' is a cookie separator if we have later first '=', not ';' or ','\n lastComma = pos\n pos += 1\n\n skipWhitespace()\n nextStart = pos\n\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1\n }\n\n // currently special character\n if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') {\n // we found cookies separator\n cookiesSeparatorFound = true\n // pos is inside the next cookie, so back up and return it.\n pos = nextStart\n cookiesStrings.push(cookiesString.substring(start, lastComma))\n start = pos\n } else {\n // in param ',' or param separator ';',\n // we continue from that comma\n pos = lastComma + 1\n }\n } else {\n pos += 1\n }\n }\n\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length))\n }\n }\n\n return cookiesStrings\n}\n\n/**\n * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is\n * required to support the set-cookie header, which may have multiple values.\n *\n * @param headers the headers object to convert\n * @returns the converted headers object\n */\nexport function toNodeOutgoingHttpHeaders(\n headers: Headers\n): OutgoingHttpHeaders {\n const nodeHeaders: OutgoingHttpHeaders = {}\n const cookies: string[] = []\n if (headers) {\n for (const [key, value] of headers.entries()) {\n if (key.toLowerCase() === 'set-cookie') {\n // We may have gotten a comma joined string of cookies, or multiple\n // set-cookie headers. We need to merge them into one header array\n // to represent all the cookies.\n cookies.push(...splitCookiesString(value))\n nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies\n } else {\n nodeHeaders[key] = value\n }\n }\n }\n return nodeHeaders\n}\n\n/**\n * Validate the correctness of a user-provided URL.\n */\nexport function validateURL(url: string | URL): string {\n try {\n return String(new URL(String(url)))\n } catch (error: any) {\n throw new Error(\n `URL is malformed \"${String(\n url\n )}\". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,\n { cause: error }\n )\n }\n}\n\n/**\n * Normalizes `nxtP` and `nxtI` query param values to remove the prefix.\n * This function does not mutate the input key.\n */\nexport function normalizeNextQueryParam(key: string): null | string {\n const prefixes = [NEXT_QUERY_PARAM_PREFIX, NEXT_INTERCEPTION_MARKER_PREFIX]\n for (const prefix of prefixes) {\n if (key !== prefix && key.startsWith(prefix)) {\n return key.substring(prefix.length)\n }\n }\n return null\n}\n"],"names":["fromNodeOutgoingHttpHeaders","normalizeNextQueryParam","splitCookiesString","toNodeOutgoingHttpHeaders","validateURL","nodeHeaders","headers","Headers","key","value","Object","entries","values","Array","isArray","v","toString","append","cookiesString","cookiesStrings","pos","start","ch","lastComma","nextStart","cookiesSeparatorFound","skipWhitespace","length","test","charAt","notSpecialChar","push","substring","cookies","toLowerCase","url","String","URL","error","Error","cause","prefixes","NEXT_QUERY_PARAM_PREFIX","NEXT_INTERCEPTION_MARKER_PREFIX","prefix","startsWith"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3578, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/decode-query-path-parameter.ts"],"sourcesContent":["/**\n * Decodes a query path parameter.\n *\n * @param value - The value to decode.\n * @returns The decoded value.\n */\nexport function decodeQueryPathParameter(value: string) {\n // When deployed to Vercel, the value may be encoded, so this attempts to\n // decode it and returns the original value if it fails.\n try {\n return decodeURIComponent(value)\n } catch {\n return value\n }\n}\n"],"names":["decodeQueryPathParameter","value","decodeURIComponent"],"mappings":"AAAA;;;;;CAKC;;;+BACeA,4BAAAA;;;eAAAA;;;AAAT,SAASA,yBAAyBC,KAAa;IACpD,yEAAyE;IACzE,wDAAwD;IACxD,IAAI;QACF,OAAOC,mBAAmBD;IAC5B,EAAE,OAAM;QACN,OAAOA;IACT;AACF","ignoreList":[0]}}, - {"offset": {"line": 3605, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-headers.ts"],"sourcesContent":["export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n"],"names":["ACTION_HEADER","FLIGHT_HEADERS","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_ACTION_REVALIDATED_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_HMR_REFRESH_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_RSC_UNION_QUERY","NEXT_URL","RSC_CONTENT_TYPE_HEADER","RSC_HEADER"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IACaA,aAAa,EAAA;eAAbA;;IAiBAC,cAAc,EAAA;eAAdA;;IAeAC,4BAA4B,EAAA;eAA5BA;;IAKAC,8BAA8B,EAAA;eAA9BA;;IATAC,wBAAwB,EAAA;eAAxBA;;IAfAC,4BAA4B,EAAA;eAA5BA;;IADAC,uBAAuB,EAAA;eAAvBA;;IAsBAC,2BAA2B,EAAA;eAA3BA;;IAHAC,wBAAwB,EAAA;eAAxBA;;IAEAC,sBAAsB,EAAA;eAAtBA;;IAJAC,0BAA0B,EAAA;eAA1BA;;IACAC,2BAA2B,EAAA;eAA3BA;;IAzBAC,2BAA2B,EAAA;eAA3BA;;IAKAC,mCAAmC,EAAA;eAAnCA;;IAiBAC,6BAA6B,EAAA;eAA7BA;;IAvBAC,6BAA6B,EAAA;eAA7BA;;IAqBAC,oBAAoB,EAAA;eAApBA;;IAXAC,QAAQ,EAAA;eAARA;;IACAC,uBAAuB,EAAA;eAAvBA;;IAhBAC,UAAU,EAAA;eAAVA;;;AAAN,MAAMA,aAAa;AACnB,MAAMnB,gBAAgB;AAItB,MAAMe,gCAAgC;AACtC,MAAMH,8BAA8B;AAKpC,MAAMC,sCACX;AACK,MAAMP,0BAA0B;AAChC,MAAMD,+BAA+B;AACrC,MAAMY,WAAW;AACjB,MAAMC,0BAA0B;AAEhC,MAAMjB,iBAAiB;IAC5BkB;IACAJ;IACAH;IACAN;IACAO;CACD;AAEM,MAAMG,uBAAuB;AAE7B,MAAMF,gCAAgC;AACtC,MAAMV,2BAA2B;AACjC,MAAMM,6BAA6B;AACnC,MAAMC,8BAA8B;AACpC,MAAMH,2BAA2B;AACjC,MAAMN,+BAA+B;AACrC,MAAMO,yBAAyB;AAC/B,MAAMF,8BAA8B;AAGpC,MAAMJ,iCAAiC","ignoreList":[0]}}, - {"offset": {"line": 3735, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/url.ts"],"sourcesContent":["import type { UrlWithParsedQuery } from 'url'\nimport { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\n\nconst DUMMY_ORIGIN = 'http://n'\n\nexport function isFullStringUrl(url: string) {\n return /https?:\\/\\//.test(url)\n}\n\nexport function parseUrl(url: string): URL | undefined {\n let parsed: URL | undefined = undefined\n try {\n parsed = new URL(url, DUMMY_ORIGIN)\n } catch {}\n return parsed\n}\n\nexport function parseReqUrl(url: string): UrlWithParsedQuery | undefined {\n const parsedUrl: URL | undefined = parseUrl(url)\n\n if (!parsedUrl) {\n return\n }\n\n const query: Record = {}\n\n for (const key of parsedUrl.searchParams.keys()) {\n const values = parsedUrl.searchParams.getAll(key)\n query[key] = values.length > 1 ? values : values[0]\n }\n\n const legacyUrl: UrlWithParsedQuery = {\n query,\n hash: parsedUrl.hash,\n search: parsedUrl.search,\n path: parsedUrl.pathname,\n pathname: parsedUrl.pathname,\n href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`,\n host: '',\n hostname: '',\n auth: '',\n protocol: '',\n slashes: null,\n port: '',\n }\n return legacyUrl\n}\n\nexport function stripNextRscUnionQuery(relativeUrl: string): string {\n const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN)\n urlInstance.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n return urlInstance.pathname + urlInstance.search\n}\n"],"names":["isFullStringUrl","parseReqUrl","parseUrl","stripNextRscUnionQuery","DUMMY_ORIGIN","url","test","parsed","undefined","URL","parsedUrl","query","key","searchParams","keys","values","getAll","length","legacyUrl","hash","search","path","pathname","href","host","hostname","auth","protocol","slashes","port","relativeUrl","urlInstance","delete","NEXT_RSC_UNION_QUERY"],"mappings":";;;;;;;;;;;;;;;;IAKgBA,eAAe,EAAA;eAAfA;;IAYAC,WAAW,EAAA;eAAXA;;IARAC,QAAQ,EAAA;eAARA;;IAuCAC,sBAAsB,EAAA;eAAtBA;;;kCA/CqB;AAErC,MAAMC,eAAe;AAEd,SAASJ,gBAAgBK,GAAW;IACzC,OAAO,cAAcC,IAAI,CAACD;AAC5B;AAEO,SAASH,SAASG,GAAW;IAClC,IAAIE,SAA0BC;IAC9B,IAAI;QACFD,SAAS,IAAIE,IAAIJ,KAAKD;IACxB,EAAE,OAAM,CAAC;IACT,OAAOG;AACT;AAEO,SAASN,YAAYI,GAAW;IACrC,MAAMK,YAA6BR,SAASG;IAE5C,IAAI,CAACK,WAAW;QACd;IACF;IAEA,MAAMC,QAA2C,CAAC;IAElD,KAAK,MAAMC,OAAOF,UAAUG,YAAY,CAACC,IAAI,GAAI;QAC/C,MAAMC,SAASL,UAAUG,YAAY,CAACG,MAAM,CAACJ;QAC7CD,KAAK,CAACC,IAAI,GAAGG,OAAOE,MAAM,GAAG,IAAIF,SAASA,MAAM,CAAC,EAAE;IACrD;IAEA,MAAMG,YAAgC;QACpCP;QACAQ,MAAMT,UAAUS,IAAI;QACpBC,QAAQV,UAAUU,MAAM;QACxBC,MAAMX,UAAUY,QAAQ;QACxBA,UAAUZ,UAAUY,QAAQ;QAC5BC,MAAM,GAAGb,UAAUY,QAAQ,GAAGZ,UAAUU,MAAM,GAAGV,UAAUS,IAAI,EAAE;QACjEK,MAAM;QACNC,UAAU;QACVC,MAAM;QACNC,UAAU;QACVC,SAAS;QACTC,MAAM;IACR;IACA,OAAOX;AACT;AAEO,SAASf,uBAAuB2B,WAAmB;IACxD,MAAMC,cAAc,IAAItB,IAAIqB,aAAa1B;IACzC2B,YAAYlB,YAAY,CAACmB,MAAM,CAACC,kBAAAA,oBAAoB;IAEpD,OAAOF,YAAYT,QAAQ,GAAGS,YAAYX,MAAM;AAClD","ignoreList":[0]}}, - {"offset": {"line": 3811, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n"],"names":[],"mappings":"AAEA,SAAS,yBAAyB,WAAW;IACzC,IAAI,OAAO,YAAY,YAAY,OAAO;IAE1C,IAAI,oBAAoB,IAAI;IAC5B,IAAI,mBAAmB,IAAI;IAE3B,OAAO,CAAC,2BAA2B,SAAS,WAAW;QACnD,OAAO,cAAc,mBAAmB;IAC5C,CAAC,EAAE;AACP;AACA,SAAS,0BAA0B,GAAG,EAAE,WAAW;IAC/C,IAAI,CAAC,eAAe,OAAO,IAAI,UAAU,EAAE,OAAO;IAClD,IAAI,QAAQ,QAAQ,OAAO,QAAQ,YAAY,OAAO,QAAQ,YAAY,OAAO;QAAE,SAAS;IAAI;IAEhG,IAAI,QAAQ,yBAAyB;IAErC,IAAI,SAAS,MAAM,GAAG,CAAC,MAAM,OAAO,MAAM,GAAG,CAAC;IAE9C,IAAI,SAAS;QAAE,WAAW;IAAK;IAC/B,IAAI,wBAAwB,OAAO,cAAc,IAAI,OAAO,wBAAwB;IAEpF,IAAK,IAAI,OAAO,IAAK;QACjB,IAAI,QAAQ,aAAa,OAAO,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,MAAM;YACrE,IAAI,OAAO,wBAAwB,OAAO,wBAAwB,CAAC,KAAK,OAAO;YAC/E,IAAI,QAAQ,CAAC,KAAK,GAAG,IAAI,KAAK,GAAG,GAAG,OAAO,cAAc,CAAC,QAAQ,KAAK;iBAClE,MAAM,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI;QAC/B;IACJ;IAEA,OAAO,OAAO,GAAG;IAEjB,IAAI,OAAO,MAAM,GAAG,CAAC,KAAK;IAE1B,OAAO;AACX;AACA,QAAQ,CAAC,GAAG","ignoreList":[0]}}, - {"offset": {"line": 3846, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/format-url.ts"],"sourcesContent":["// Format function modified from nodejs\n// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nimport type { UrlObject } from 'url'\nimport type { ParsedUrlQuery } from 'querystring'\nimport * as querystring from './querystring'\n\nconst slashedProtocols = /https?|ftp|gopher|file/\n\nexport function formatUrl(urlObj: UrlObject) {\n let { auth, hostname } = urlObj\n let protocol = urlObj.protocol || ''\n let pathname = urlObj.pathname || ''\n let hash = urlObj.hash || ''\n let query = urlObj.query || ''\n let host: string | false = false\n\n auth = auth ? encodeURIComponent(auth).replace(/%3A/i, ':') + '@' : ''\n\n if (urlObj.host) {\n host = auth + urlObj.host\n } else if (hostname) {\n host = auth + (~hostname.indexOf(':') ? `[${hostname}]` : hostname)\n if (urlObj.port) {\n host += ':' + urlObj.port\n }\n }\n\n if (query && typeof query === 'object') {\n query = String(querystring.urlQueryToSearchParams(query as ParsedUrlQuery))\n }\n\n let search = urlObj.search || (query && `?${query}`) || ''\n\n if (protocol && !protocol.endsWith(':')) protocol += ':'\n\n if (\n urlObj.slashes ||\n ((!protocol || slashedProtocols.test(protocol)) && host !== false)\n ) {\n host = '//' + (host || '')\n if (pathname && pathname[0] !== '/') pathname = '/' + pathname\n } else if (!host) {\n host = ''\n }\n\n if (hash && hash[0] !== '#') hash = '#' + hash\n if (search && search[0] !== '?') search = '?' + search\n\n pathname = pathname.replace(/[?#]/g, encodeURIComponent)\n search = search.replace('#', '%23')\n\n return `${protocol}${host}${pathname}${search}${hash}`\n}\n\nexport const urlObjectKeys = [\n 'auth',\n 'hash',\n 'host',\n 'hostname',\n 'href',\n 'path',\n 'pathname',\n 'port',\n 'protocol',\n 'query',\n 'search',\n 'slashes',\n]\n\nexport function formatWithValidation(url: UrlObject): string {\n if (process.env.NODE_ENV === 'development') {\n if (url !== null && typeof url === 'object') {\n Object.keys(url).forEach((key) => {\n if (!urlObjectKeys.includes(key)) {\n console.warn(\n `Unknown key passed via urlObject into url.format: ${key}`\n )\n }\n })\n }\n }\n\n return formatUrl(url)\n}\n"],"names":["formatUrl","formatWithValidation","urlObjectKeys","slashedProtocols","urlObj","auth","hostname","protocol","pathname","hash","query","host","encodeURIComponent","replace","indexOf","port","String","querystring","urlQueryToSearchParams","search","endsWith","slashes","test","url","process","env","NODE_ENV","Object","keys","forEach","key","includes","console","warn"],"mappings":"AAAA,uCAAuC;AACvC,sDAAsD;AACtD,EAAE;AACF,0EAA0E;AAC1E,gEAAgE;AAChE,sEAAsE;AACtE,sEAAsE;AACtE,4EAA4E;AAC5E,qEAAqE;AACrE,wBAAwB;AACxB,EAAE;AACF,0EAA0E;AAC1E,yDAAyD;AACzD,EAAE;AACF,0EAA0E;AAC1E,6DAA6D;AAC7D,4EAA4E;AAC5E,2EAA2E;AAC3E,wEAAwE;AACxE,4EAA4E;AAC5E,yCAAyC;;;;;;;;;;;;;;;;IAQzBA,SAAS,EAAA;eAATA;;IA6DAC,oBAAoB,EAAA;eAApBA;;IAfHC,aAAa,EAAA;eAAbA;;;;uEAlDgB;AAE7B,MAAMC,mBAAmB;AAElB,SAASH,UAAUI,MAAiB;IACzC,IAAI,EAAEC,IAAI,EAAEC,QAAQ,EAAE,GAAGF;IACzB,IAAIG,WAAWH,OAAOG,QAAQ,IAAI;IAClC,IAAIC,WAAWJ,OAAOI,QAAQ,IAAI;IAClC,IAAIC,OAAOL,OAAOK,IAAI,IAAI;IAC1B,IAAIC,QAAQN,OAAOM,KAAK,IAAI;IAC5B,IAAIC,OAAuB;IAE3BN,OAAOA,OAAOO,mBAAmBP,MAAMQ,OAAO,CAAC,QAAQ,OAAO,MAAM;IAEpE,IAAIT,OAAOO,IAAI,EAAE;QACfA,OAAON,OAAOD,OAAOO,IAAI;IAC3B,OAAO,IAAIL,UAAU;QACnBK,OAAON,OAAQ,CAAA,CAACC,SAASQ,OAAO,CAAC,OAAO,CAAC,CAAC,EAAER,SAAS,CAAC,CAAC,GAAGA,QAAO;QACjE,IAAIF,OAAOW,IAAI,EAAE;YACfJ,QAAQ,MAAMP,OAAOW,IAAI;QAC3B;IACF;IAEA,IAAIL,SAAS,OAAOA,UAAU,UAAU;QACtCA,QAAQM,OAAOC,aAAYC,sBAAsB,CAACR;IACpD;IAEA,IAAIS,SAASf,OAAOe,MAAM,IAAKT,SAAS,CAAC,CAAC,EAAEA,OAAO,IAAK;IAExD,IAAIH,YAAY,CAACA,SAASa,QAAQ,CAAC,MAAMb,YAAY;IAErD,IACEH,OAAOiB,OAAO,IACZ,CAAA,CAACd,YAAYJ,iBAAiBmB,IAAI,CAACf,SAAQ,KAAMI,SAAS,OAC5D;QACAA,OAAO,OAAQA,CAAAA,QAAQ,EAAC;QACxB,IAAIH,YAAYA,QAAQ,CAAC,EAAE,KAAK,KAAKA,WAAW,MAAMA;IACxD,OAAO,IAAI,CAACG,MAAM;QAChBA,OAAO;IACT;IAEA,IAAIF,QAAQA,IAAI,CAAC,EAAE,KAAK,KAAKA,OAAO,MAAMA;IAC1C,IAAIU,UAAUA,MAAM,CAAC,EAAE,KAAK,KAAKA,SAAS,MAAMA;IAEhDX,WAAWA,SAASK,OAAO,CAAC,SAASD;IACrCO,SAASA,OAAON,OAAO,CAAC,KAAK;IAE7B,OAAO,GAAGN,WAAWI,OAAOH,WAAWW,SAASV,MAAM;AACxD;AAEO,MAAMP,gBAAgB;IAC3B;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;CACD;AAEM,SAASD,qBAAqBsB,GAAc;IACjD,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAe;QAC1C,IAAIH,QAAQ,QAAQ,OAAOA,QAAQ,UAAU;YAC3CI,OAAOC,IAAI,CAACL,KAAKM,OAAO,CAAC,CAACC;gBACxB,IAAI,CAAC5B,cAAc6B,QAAQ,CAACD,MAAM;oBAChCE,QAAQC,IAAI,CACV,CAAC,kDAAkD,EAAEH,KAAK;gBAE9D;YACF;QACF;IACF;IAEA,OAAO9B,UAAUuB;AACnB","ignoreList":[0]}}, - {"offset": {"line": 3958, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/server-utils.ts"],"sourcesContent":["import type { Rewrite } from '../lib/load-custom-routes'\nimport type { RouteMatchFn } from '../shared/lib/router/utils/route-matcher'\nimport type { NextConfig } from './config'\nimport type { BaseNextRequest } from './base-http'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { UrlWithParsedQuery } from 'url'\n\nimport { normalizeLocalePath } from '../shared/lib/i18n/normalize-locale-path'\nimport { getPathMatch } from '../shared/lib/router/utils/path-match'\nimport { getNamedRouteRegex } from '../shared/lib/router/utils/route-regex'\nimport { getRouteMatcher } from '../shared/lib/router/utils/route-matcher'\nimport {\n matchHas,\n prepareDestination,\n} from '../shared/lib/router/utils/prepare-destination'\nimport { removeTrailingSlash } from '../shared/lib/router/utils/remove-trailing-slash'\nimport { normalizeRscURL } from '../shared/lib/router/utils/app-paths'\nimport {\n NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER,\n NEXT_CACHE_REVALIDATED_TAGS_HEADER,\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../lib/constants'\nimport { normalizeNextQueryParam } from './web/utils'\nimport type { IncomingHttpHeaders, IncomingMessage } from 'http'\nimport { decodeQueryPathParameter } from './lib/decode-query-path-parameter'\nimport type { DeepReadonly } from '../shared/lib/deep-readonly'\nimport { parseReqUrl } from '../lib/url'\nimport { formatUrl } from '../shared/lib/router/utils/format-url'\n\nfunction filterInternalQuery(\n query: Record,\n paramKeys: string[]\n) {\n // this is used to pass query information in rewrites\n // but should not be exposed in final query\n delete query['nextInternalLocale']\n\n for (const key in query) {\n const isNextQueryPrefix =\n key !== NEXT_QUERY_PARAM_PREFIX && key.startsWith(NEXT_QUERY_PARAM_PREFIX)\n\n const isNextInterceptionMarkerPrefix =\n key !== NEXT_INTERCEPTION_MARKER_PREFIX &&\n key.startsWith(NEXT_INTERCEPTION_MARKER_PREFIX)\n\n if (\n isNextQueryPrefix ||\n isNextInterceptionMarkerPrefix ||\n paramKeys.includes(key)\n ) {\n delete query[key]\n }\n }\n}\n\nexport function normalizeCdnUrl(\n req: BaseNextRequest | IncomingMessage,\n paramKeys: string[]\n) {\n // make sure to normalize req.url from CDNs to strip dynamic and rewrite\n // params from the query which are added during routing\n const _parsedUrl = parseReqUrl(req.url!)\n\n // we can't normalize if we can't parse\n if (!_parsedUrl) {\n return req.url\n }\n delete (_parsedUrl as any).search\n filterInternalQuery(_parsedUrl.query, paramKeys)\n\n req.url = formatUrl(_parsedUrl)\n}\n\nexport function interpolateDynamicPath(\n pathname: string,\n params: ParsedUrlQuery,\n defaultRouteRegex?: ReturnType | undefined\n) {\n if (!defaultRouteRegex) return pathname\n\n for (const param of Object.keys(defaultRouteRegex.groups)) {\n const { optional, repeat } = defaultRouteRegex.groups[param]\n let builtParam = `[${repeat ? '...' : ''}${param}]`\n\n if (optional) {\n builtParam = `[${builtParam}]`\n }\n\n let paramValue: string\n const value = params[param]\n\n if (Array.isArray(value)) {\n paramValue = value.map((v) => v && encodeURIComponent(v)).join('/')\n } else if (value) {\n paramValue = encodeURIComponent(value)\n } else {\n paramValue = ''\n }\n\n if (paramValue || optional) {\n pathname = pathname.replaceAll(builtParam, paramValue)\n }\n }\n\n return pathname\n}\n\nexport function normalizeDynamicRouteParams(\n query: ParsedUrlQuery,\n defaultRouteRegex: ReturnType,\n defaultRouteMatches: ParsedUrlQuery,\n ignoreMissingOptional: boolean\n) {\n let hasValidParams = true\n let params: ParsedUrlQuery = {}\n\n for (const key of Object.keys(defaultRouteRegex.groups)) {\n let value: string | string[] | undefined = query[key]\n\n if (typeof value === 'string') {\n value = normalizeRscURL(value)\n } else if (Array.isArray(value)) {\n value = value.map(normalizeRscURL)\n }\n\n // if the value matches the default value we can't rely\n // on the parsed params, this is used to signal if we need\n // to parse x-now-route-matches or not\n const defaultValue = defaultRouteMatches![key]\n const isOptional = defaultRouteRegex!.groups[key].optional\n\n const isDefaultValue = Array.isArray(defaultValue)\n ? defaultValue.some((defaultVal) => {\n return Array.isArray(value)\n ? value.some((val) => val.includes(defaultVal))\n : value?.includes(defaultVal)\n })\n : value?.includes(defaultValue as string)\n\n if (\n isDefaultValue ||\n (typeof value === 'undefined' && !(isOptional && ignoreMissingOptional))\n ) {\n return { params: {}, hasValidParams: false }\n }\n\n // non-provided optional values should be undefined so normalize\n // them to undefined\n if (\n isOptional &&\n (!value ||\n (Array.isArray(value) &&\n value.length === 1 &&\n // fallback optional catch-all SSG pages have\n // [[...paramName]] for the root path on Vercel\n (value[0] === 'index' || value[0] === `[[...${key}]]`)) ||\n value === 'index' ||\n value === `[[...${key}]]`)\n ) {\n value = undefined\n delete query[key]\n }\n\n // query values from the proxy aren't already split into arrays\n // so make sure to normalize catch-all values\n if (\n value &&\n typeof value === 'string' &&\n defaultRouteRegex!.groups[key].repeat\n ) {\n value = value.split('/')\n }\n\n if (value) {\n params[key] = value\n }\n }\n\n return {\n params,\n hasValidParams,\n }\n}\n\nexport function getServerUtils({\n page,\n i18n,\n basePath,\n rewrites,\n pageIsDynamic,\n trailingSlash,\n caseSensitive,\n}: {\n page: string\n i18n?: NextConfig['i18n']\n basePath: string\n rewrites: DeepReadonly<{\n fallback?: ReadonlyArray\n afterFiles?: ReadonlyArray\n beforeFiles?: ReadonlyArray\n }>\n pageIsDynamic: boolean\n trailingSlash?: boolean\n caseSensitive: boolean\n}) {\n let defaultRouteRegex: ReturnType | undefined\n let dynamicRouteMatcher: RouteMatchFn | undefined\n let defaultRouteMatches: ParsedUrlQuery | undefined\n\n if (pageIsDynamic) {\n defaultRouteRegex = getNamedRouteRegex(page, {\n prefixRouteKeys: false,\n })\n dynamicRouteMatcher = getRouteMatcher(defaultRouteRegex)\n defaultRouteMatches = dynamicRouteMatcher(page) as ParsedUrlQuery\n }\n\n function handleRewrites(\n req: BaseNextRequest | IncomingMessage,\n parsedUrl: DeepReadonly\n ) {\n // Here we deep clone the parsedUrl to avoid mutating the original. We also\n // cast this to a mutable type so we can mutate it within this scope.\n const rewrittenParsedUrl = structuredClone(parsedUrl) as UrlWithParsedQuery\n const rewriteParams: Record = {}\n let fsPathname = rewrittenParsedUrl.pathname\n\n const matchesPage = () => {\n const fsPathnameNoSlash = removeTrailingSlash(fsPathname || '')\n return (\n fsPathnameNoSlash === removeTrailingSlash(page) ||\n dynamicRouteMatcher?.(fsPathnameNoSlash)\n )\n }\n\n const checkRewrite = (rewrite: DeepReadonly): boolean => {\n const matcher = getPathMatch(\n rewrite.source + (trailingSlash ? '(/)?' : ''),\n {\n removeUnnamedParams: true,\n strict: true,\n sensitive: !!caseSensitive,\n }\n )\n\n if (!rewrittenParsedUrl.pathname) return false\n\n let params = matcher(rewrittenParsedUrl.pathname)\n\n if ((rewrite.has || rewrite.missing) && params) {\n const hasParams = matchHas(\n req,\n rewrittenParsedUrl.query,\n rewrite.has as Rewrite['has'],\n rewrite.missing as Rewrite['missing']\n )\n\n if (hasParams) {\n Object.assign(params, hasParams)\n } else {\n params = false\n }\n }\n\n if (params) {\n const { parsedDestination, destQuery } = prepareDestination({\n appendParamsToQuery: true,\n destination: rewrite.destination,\n params: params,\n query: rewrittenParsedUrl.query,\n })\n\n // if the rewrite destination is external break rewrite chain\n if (parsedDestination.protocol) {\n return true\n }\n\n Object.assign(rewriteParams, destQuery, params)\n Object.assign(rewrittenParsedUrl.query, parsedDestination.query)\n delete (parsedDestination as any).query\n\n Object.assign(rewrittenParsedUrl, parsedDestination)\n\n fsPathname = rewrittenParsedUrl.pathname\n if (!fsPathname) return false\n\n if (basePath) {\n fsPathname = fsPathname.replace(new RegExp(`^${basePath}`), '') || '/'\n }\n\n if (i18n) {\n const result = normalizeLocalePath(fsPathname, i18n.locales)\n fsPathname = result.pathname\n rewrittenParsedUrl.query.nextInternalLocale =\n result.detectedLocale || params.nextInternalLocale\n }\n\n if (fsPathname === page) {\n return true\n }\n\n if (pageIsDynamic && dynamicRouteMatcher) {\n const dynamicParams = dynamicRouteMatcher(fsPathname)\n if (dynamicParams) {\n rewrittenParsedUrl.query = {\n ...rewrittenParsedUrl.query,\n ...dynamicParams,\n }\n return true\n }\n }\n }\n\n return false\n }\n\n for (const rewrite of rewrites.beforeFiles || []) {\n checkRewrite(rewrite)\n }\n\n if (fsPathname !== page) {\n let finished = false\n\n for (const rewrite of rewrites.afterFiles || []) {\n finished = checkRewrite(rewrite)\n if (finished) break\n }\n\n if (!finished && !matchesPage()) {\n for (const rewrite of rewrites.fallback || []) {\n finished = checkRewrite(rewrite)\n if (finished) break\n }\n }\n }\n\n return { rewriteParams, rewrittenParsedUrl }\n }\n\n function getParamsFromRouteMatches(routeMatchesHeader: string) {\n // If we don't have a default route regex, we can't get params from route\n // matches\n if (!defaultRouteRegex) return null\n\n const { groups, routeKeys } = defaultRouteRegex\n\n const matcher = getRouteMatcher({\n re: {\n // Simulate a RegExp match from the \\`req.url\\` input\n exec: (str: string) => {\n // Normalize all the prefixed query params.\n const obj: Record = Object.fromEntries(\n new URLSearchParams(str)\n )\n for (const [key, value] of Object.entries(obj)) {\n const normalizedKey = normalizeNextQueryParam(key)\n if (!normalizedKey) continue\n\n obj[normalizedKey] = value\n delete obj[key]\n }\n\n // Use all the named route keys.\n const result = {} as RegExpExecArray\n for (const keyName of Object.keys(routeKeys)) {\n const paramName = routeKeys[keyName]\n\n // If this param name is not a valid parameter name, then skip it.\n if (!paramName) continue\n\n const group = groups[paramName]\n const value = obj[keyName]\n\n // When we're missing a required param, we can't match the route.\n if (!group.optional && !value) return null\n\n result[group.pos] = value\n }\n\n return result\n },\n },\n groups,\n })\n\n const routeMatches = matcher(routeMatchesHeader)\n if (!routeMatches) return null\n\n return routeMatches\n }\n\n function normalizeQueryParams(\n query: Record,\n routeParamKeys: Set\n ) {\n // this is used to pass query information in rewrites\n // but should not be exposed in final query\n delete query['nextInternalLocale']\n\n for (const [key, value] of Object.entries(query)) {\n const normalizedKey = normalizeNextQueryParam(key)\n if (!normalizedKey) continue\n\n // Remove the prefixed key from the query params because we want\n // to consume it for the dynamic route matcher.\n delete query[key]\n routeParamKeys.add(normalizedKey)\n\n if (typeof value === 'undefined') continue\n\n query[normalizedKey] = Array.isArray(value)\n ? value.map((v) => decodeQueryPathParameter(v))\n : decodeQueryPathParameter(value)\n }\n }\n\n return {\n handleRewrites,\n defaultRouteRegex,\n dynamicRouteMatcher,\n defaultRouteMatches,\n normalizeQueryParams,\n getParamsFromRouteMatches,\n /**\n * Normalize dynamic route params.\n *\n * @param query - The query params to normalize.\n * @param ignoreMissingOptional - Whether to ignore missing optional params.\n * @returns The normalized params and whether they are valid.\n */\n normalizeDynamicRouteParams: (\n query: ParsedUrlQuery,\n ignoreMissingOptional: boolean\n ) => {\n if (!defaultRouteRegex || !defaultRouteMatches) {\n return { params: {}, hasValidParams: false }\n }\n\n return normalizeDynamicRouteParams(\n query,\n defaultRouteRegex,\n defaultRouteMatches,\n ignoreMissingOptional\n )\n },\n\n normalizeCdnUrl: (\n req: BaseNextRequest | IncomingMessage,\n paramKeys: string[]\n ) => normalizeCdnUrl(req, paramKeys),\n\n interpolateDynamicPath: (\n pathname: string,\n params: Record\n ) => interpolateDynamicPath(pathname, params, defaultRouteRegex),\n\n filterInternalQuery: (query: ParsedUrlQuery, paramKeys: string[]) =>\n filterInternalQuery(query, paramKeys),\n }\n}\n\nexport function getPreviouslyRevalidatedTags(\n headers: IncomingHttpHeaders,\n previewModeId: string | undefined\n): string[] {\n return typeof headers[NEXT_CACHE_REVALIDATED_TAGS_HEADER] === 'string' &&\n headers[NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER] === previewModeId\n ? headers[NEXT_CACHE_REVALIDATED_TAGS_HEADER].split(',')\n : []\n}\n"],"names":["getPreviouslyRevalidatedTags","getServerUtils","interpolateDynamicPath","normalizeCdnUrl","normalizeDynamicRouteParams","filterInternalQuery","query","paramKeys","key","isNextQueryPrefix","NEXT_QUERY_PARAM_PREFIX","startsWith","isNextInterceptionMarkerPrefix","NEXT_INTERCEPTION_MARKER_PREFIX","includes","req","_parsedUrl","parseReqUrl","url","search","formatUrl","pathname","params","defaultRouteRegex","param","Object","keys","groups","optional","repeat","builtParam","paramValue","value","Array","isArray","map","v","encodeURIComponent","join","replaceAll","defaultRouteMatches","ignoreMissingOptional","hasValidParams","normalizeRscURL","defaultValue","isOptional","isDefaultValue","some","defaultVal","val","length","undefined","split","page","i18n","basePath","rewrites","pageIsDynamic","trailingSlash","caseSensitive","dynamicRouteMatcher","getNamedRouteRegex","prefixRouteKeys","getRouteMatcher","handleRewrites","parsedUrl","rewrittenParsedUrl","structuredClone","rewriteParams","fsPathname","matchesPage","fsPathnameNoSlash","removeTrailingSlash","checkRewrite","rewrite","matcher","getPathMatch","source","removeUnnamedParams","strict","sensitive","has","missing","hasParams","matchHas","assign","parsedDestination","destQuery","prepareDestination","appendParamsToQuery","destination","protocol","replace","RegExp","result","normalizeLocalePath","locales","nextInternalLocale","detectedLocale","dynamicParams","beforeFiles","finished","afterFiles","fallback","getParamsFromRouteMatches","routeMatchesHeader","routeKeys","re","exec","str","obj","fromEntries","URLSearchParams","entries","normalizedKey","normalizeNextQueryParam","keyName","paramName","group","pos","routeMatches","normalizeQueryParams","routeParamKeys","add","decodeQueryPathParameter","headers","previewModeId","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4282, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/hash.ts"],"sourcesContent":["// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n"],"names":["djb2Hash","hexHash","str","hash","i","length","char","charCodeAt","toString","slice"],"mappings":"AAAA,wCAAwC;AACxC,4CAA4C;AAC5C,iHAAiH;AACjH,wFAAwF;AACxF,gGAAgG;AAChG,wHAAwH;AACxH,wDAAwD;;;;;;;;;;;;;;;IACxCA,QAAQ,EAAA;eAARA;;IASAC,OAAO,EAAA;eAAPA;;;AATT,SAASD,SAASE,GAAW;IAClC,IAAIC,OAAO;IACX,IAAK,IAAIC,IAAI,GAAGA,IAAIF,IAAIG,MAAM,EAAED,IAAK;QACnC,MAAME,OAAOJ,IAAIK,UAAU,CAACH;QAC5BD,OAASA,CAAAA,QAAQ,CAAA,IAAKA,OAAOG,OAAQ;IACvC;IACA,OAAOH,SAAS;AAClB;AAEO,SAASF,QAAQC,GAAW;IACjC,OAAOF,SAASE,KAAKM,QAAQ,CAAC,IAAIC,KAAK,CAAC,GAAG;AAC7C","ignoreList":[0]}}, - {"offset": {"line": 4325, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/get-metadata-route.ts"],"sourcesContent":["import { isMetadataPage } from './is-metadata-route'\nimport path from '../../shared/lib/isomorphic/path'\nimport { interpolateDynamicPath } from '../../server/server-utils'\nimport { getNamedRouteRegex } from '../../shared/lib/router/utils/route-regex'\nimport { djb2Hash } from '../../shared/lib/hash'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { normalizePathSep } from '../../shared/lib/page-path/normalize-path-sep'\nimport {\n isGroupSegment,\n isParallelRouteSegment,\n} from '../../shared/lib/segment'\n\n/*\n * If there's special convention like (...) or @ in the page path,\n * Give it a unique hash suffix to avoid conflicts\n *\n * e.g.\n * /opengraph-image -> /opengraph-image\n * /(post)/opengraph-image.tsx -> /opengraph-image-[0-9a-z]{6}\n *\n * Sitemap is an exception, it should not have a suffix.\n * Each sitemap contains all the urls of sub routes, we don't have the case of duplicates `/(group)/sitemap.[ext]` and `/sitemap.[ext]` since they should be the same.\n * Hence we always normalize the urls for sitemap and do not append hash suffix, and ensure user-land only contains one sitemap per pathname.\n *\n * /sitemap -> /sitemap\n * /(post)/sitemap -> /sitemap\n */\nfunction getMetadataRouteSuffix(page: string) {\n // Remove the last segment and get the parent pathname\n // e.g. /parent/a/b/c -> /parent/a/b\n // e.g. /parent/opengraph-image -> /parent\n const parentPathname = path.dirname(page)\n // Only apply suffix to metadata routes except for sitemaps\n if (page.endsWith('/sitemap') || page.endsWith('/sitemap.xml')) {\n return ''\n }\n\n // Calculate the hash suffix based on the parent path\n let suffix = ''\n // Check if there's any special characters in the parent pathname.\n const segments = parentPathname.split('/')\n if (\n segments.some((seg) => isGroupSegment(seg) || isParallelRouteSegment(seg))\n ) {\n // Hash the parent path to get a unique suffix\n suffix = djb2Hash(parentPathname).toString(36).slice(0, 6)\n }\n return suffix\n}\n\n/**\n * Fill the dynamic segment in the metadata route\n *\n * Example:\n * fillMetadataSegment('/a/[slug]', { params: { slug: 'b' } }, 'open-graph') -> '/a/b/open-graph'\n *\n */\nexport function fillMetadataSegment(\n segment: string,\n params: any,\n lastSegment: string\n) {\n const pathname = normalizeAppPath(segment)\n const routeRegex = getNamedRouteRegex(pathname, {\n prefixRouteKeys: false,\n })\n const route = interpolateDynamicPath(pathname, params, routeRegex)\n const { name, ext } = path.parse(lastSegment)\n const pagePath = path.posix.join(segment, name)\n const suffix = getMetadataRouteSuffix(pagePath)\n const routeSuffix = suffix ? `-${suffix}` : ''\n\n return normalizePathSep(path.join(route, `${name}${routeSuffix}${ext}`))\n}\n\n/**\n * Map metadata page key to the corresponding route\n *\n * static file page key: /app/robots.txt -> /robots.xml -> /robots.txt/route\n * dynamic route page key: /app/robots.tsx -> /robots -> /robots.txt/route\n *\n * @param page\n * @returns\n */\nexport function normalizeMetadataRoute(page: string) {\n if (!isMetadataPage(page)) {\n return page\n }\n let route = page\n let suffix = ''\n if (page === '/robots') {\n route += '.txt'\n } else if (page === '/manifest') {\n route += '.webmanifest'\n } else {\n suffix = getMetadataRouteSuffix(page)\n }\n // Support both / and custom routes //route.ts.\n // If it's a metadata file route, we need to append /[id]/route to the page.\n if (!route.endsWith('/route')) {\n const { dir, name: baseName, ext } = path.parse(route)\n route = path.posix.join(\n dir,\n `${baseName}${suffix ? `-${suffix}` : ''}${ext}`,\n 'route'\n )\n }\n\n return route\n}\n\n// Normalize metadata route page to either a single route or a dynamic route.\n// e.g. Input: /sitemap/route\n// when isDynamic is false, single route -> /sitemap.xml/route\n// when isDynamic is false, dynamic route -> /sitemap/[__metadata_id__]/route\n// also works for pathname such as /sitemap -> /sitemap.xml, but will not append /route suffix\nexport function normalizeMetadataPageToRoute(page: string, isDynamic: boolean) {\n const isRoute = page.endsWith('/route')\n const routePagePath = isRoute ? page.slice(0, -'/route'.length) : page\n const metadataRouteExtension = routePagePath.endsWith('/sitemap')\n ? '.xml'\n : ''\n const mapped = isDynamic\n ? `${routePagePath}/[__metadata_id__]`\n : `${routePagePath}${metadataRouteExtension}`\n\n return mapped + (isRoute ? '/route' : '')\n}\n"],"names":["fillMetadataSegment","normalizeMetadataPageToRoute","normalizeMetadataRoute","getMetadataRouteSuffix","page","parentPathname","path","dirname","endsWith","suffix","segments","split","some","seg","isGroupSegment","isParallelRouteSegment","djb2Hash","toString","slice","segment","params","lastSegment","pathname","normalizeAppPath","routeRegex","getNamedRouteRegex","prefixRouteKeys","route","interpolateDynamicPath","name","ext","parse","pagePath","posix","join","routeSuffix","normalizePathSep","isMetadataPage","dir","baseName","isDynamic","isRoute","routePagePath","length","metadataRouteExtension","mapped"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4440, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-kind.ts"],"sourcesContent":["export const enum RouteKind {\n /**\n * `PAGES` represents all the React pages that are under `pages/`.\n */\n PAGES = 'PAGES',\n /**\n * `PAGES_API` represents all the API routes under `pages/api/`.\n */\n PAGES_API = 'PAGES_API',\n /**\n * `APP_PAGE` represents all the React pages that are under `app/` with the\n * filename of `page.{j,t}s{,x}`.\n */\n APP_PAGE = 'APP_PAGE',\n /**\n * `APP_ROUTE` represents all the API routes and metadata routes that are under `app/` with the\n * filename of `route.{j,t}s{,x}`.\n */\n APP_ROUTE = 'APP_ROUTE',\n\n /**\n * `IMAGE` represents all the images that are generated by `next/image`.\n */\n IMAGE = 'IMAGE',\n}\n"],"names":["RouteKind"],"mappings":";;;;AAAO,IAAWA,YAAAA,WAAAA,GAAAA,SAAAA,SAAAA;IAChB;;GAEC,GAAA,SAAA,CAAA,QAAA,GAAA;IAED;;GAEC,GAAA,SAAA,CAAA,YAAA,GAAA;IAED;;;GAGC,GAAA,SAAA,CAAA,WAAA,GAAA;IAED;;;GAGC,GAAA,SAAA,CAAA,YAAA,GAAA;IAGD;;GAEC,GAAA,SAAA,CAAA,QAAA,GAAA;WAtBeA;MAwBjB","ignoreList":[0]}}, - {"offset": {"line": 4468, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK"],"mappings":"AAAA,IAAIA,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACL,IAAIF,QAAQC,GAAG,CAACK,yBAAyB,EAAE;;SAcpC;QACL,IAAIN,QAAQC,GAAG,CAACM,QAAQ,KAAK,WAAe;YAC1C,IAAIP,QAAQC,GAAG,CAACO,SAAS,eAAE;gBACzBL,OAAOC,OAAO,GAAGC,QAAQ;YAC3B,OAAO;;QAGT,OAAO;;IAOT;AACF","ignoreList":[0]}}, - {"offset": {"line": 4487, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactServerDOMTurbopackServer\n"],"names":["module","exports","require","vendored","ReactServerDOMTurbopackServer"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,6BAA6B","ignoreList":[0]}}, - {"offset": {"line": 4492, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactServerDOMTurbopackStatic\n"],"names":["module","exports","require","vendored","ReactServerDOMTurbopackStatic"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,6BAA6B","ignoreList":[0]}}, - {"offset": {"line": 4497, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.React\n"],"names":["module","exports","require","vendored","React"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,KAAK","ignoreList":[0]}}, - {"offset": {"line": 4501, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/layout-router.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/layout-router.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4507, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/layout-router.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/layout-router.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4514, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/layout-router.tsx"],"sourcesContent":["'use client'\n\nimport type { CacheNode } from '../../shared/lib/app-router-types'\nimport type { LoadingModuleData } from '../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n} from '../../shared/lib/app-router-types'\nimport type { ErrorComponent } from './error-boundary'\nimport type { FocusAndScrollRef } from './router-reducer/router-reducer-types'\n\nimport React, {\n Activity,\n useContext,\n use,\n Suspense,\n useDeferredValue,\n type JSX,\n type ActivityProps,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport {\n LayoutRouterContext,\n GlobalLayoutRouterContext,\n TemplateContext,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport { unresolvedThenable } from './unresolved-thenable'\nimport { ErrorBoundary } from './error-boundary'\nimport { matchSegment } from './match-segments'\nimport { disableSmoothScrollDuringRouteTransition } from '../../shared/lib/router/utils/disable-smooth-scroll'\nimport { RedirectBoundary } from './redirect-boundary'\nimport { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary'\nimport { createRouterCacheKey } from './router-reducer/create-router-cache-key'\nimport { useRouterBFCache, type RouterBFCacheEntry } from './bfcache'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport {\n NavigationPromisesContext,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport { getParamValueFromCacheKey } from '../route-params'\nimport type { Params } from '../../server/request/params'\nimport { isDeferredRsc } from './router-reducer/ppr-navigations'\n\nconst __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = (\n ReactDOM as any\n).__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE\n\n// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available\n/**\n * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning\n */\nfunction findDOMNode(\n instance: React.ReactInstance | null | undefined\n): Element | Text | null {\n // Tree-shake for server bundle\n if (typeof window === 'undefined') return null\n\n // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init.\n // We need to lazily reference it.\n const internal_reactDOMfindDOMNode =\n __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode\n return internal_reactDOMfindDOMNode(instance)\n}\n\nconst rectProperties = [\n 'bottom',\n 'height',\n 'left',\n 'right',\n 'top',\n 'width',\n 'x',\n 'y',\n] as const\n/**\n * Check if a HTMLElement is hidden or fixed/sticky position\n */\nfunction shouldSkipElement(element: HTMLElement) {\n // we ignore fixed or sticky positioned elements since they'll likely pass the \"in-viewport\" check\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if (['sticky', 'fixed'].includes(getComputedStyle(element).position)) {\n return true\n }\n\n // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent`\n // because `offsetParent` doesn't consider document/body\n const rect = element.getBoundingClientRect()\n return rectProperties.every((item) => rect[item] === 0)\n}\n\n/**\n * Check if the top corner of the HTMLElement is in the viewport.\n */\nfunction topOfElementInViewport(element: HTMLElement, viewportHeight: number) {\n const rect = element.getBoundingClientRect()\n return rect.top >= 0 && rect.top <= viewportHeight\n}\n\n/**\n * Find the DOM node for a hash fragment.\n * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior.\n * If the hash fragment is an id, the page has to scroll to the element with that id.\n * If the hash fragment is a name, the page has to scroll to the first element with that name.\n */\nfunction getHashFragmentDomNode(hashFragment: string) {\n // If the hash fragment is `top` the page has to scroll to the top of the page.\n if (hashFragment === 'top') {\n return document.body\n }\n\n // If the hash fragment is an id, the page has to scroll to the element with that id.\n return (\n document.getElementById(hashFragment) ??\n // If the hash fragment is a name, the page has to scroll to the first element with that name.\n document.getElementsByName(hashFragment)[0]\n )\n}\ninterface ScrollAndFocusHandlerProps {\n focusAndScrollRef: FocusAndScrollRef\n children: React.ReactNode\n segmentPath: FlightSegmentPath\n}\nclass InnerScrollAndFocusHandler extends React.Component {\n handlePotentialScroll = () => {\n // Handle scroll and focus, it's only applied once in the first useEffect that triggers that changed.\n const { focusAndScrollRef, segmentPath } = this.props\n\n if (focusAndScrollRef.apply) {\n // segmentPaths is an array of segment paths that should be scrolled to\n // if the current segment path is not in the array, the scroll is not applied\n // unless the array is empty, in which case the scroll is always applied\n if (\n focusAndScrollRef.segmentPaths.length !== 0 &&\n !focusAndScrollRef.segmentPaths.some((scrollRefSegmentPath) =>\n segmentPath.every((segment, index) =>\n matchSegment(segment, scrollRefSegmentPath[index])\n )\n )\n ) {\n return\n }\n\n let domNode:\n | ReturnType\n | ReturnType = null\n const hashFragment = focusAndScrollRef.hashFragment\n\n if (hashFragment) {\n domNode = getHashFragmentDomNode(hashFragment)\n }\n\n // `findDOMNode` is tricky because it returns just the first child if the component is a fragment.\n // This already caused a bug where the first child was a in head.\n if (!domNode) {\n domNode = findDOMNode(this)\n }\n\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (!(domNode instanceof Element)) {\n return\n }\n\n // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior.\n // If the element is skipped, try to select the next sibling and try again.\n while (!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)) {\n if (process.env.NODE_ENV !== 'production') {\n if (domNode.parentElement?.localName === 'head') {\n // TODO: We enter this state when metadata was rendered as part of the page or via Next.js.\n // This is always a bug in Next.js and caused by React hoisting metadata.\n // We need to replace `findDOMNode` in favor of Fragment Refs (when available) so that we can skip over metadata.\n }\n }\n\n // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead.\n if (domNode.nextElementSibling === null) {\n return\n }\n domNode = domNode.nextElementSibling\n }\n\n // State is mutated to ensure that the focus and scroll is applied only once.\n focusAndScrollRef.apply = false\n focusAndScrollRef.hashFragment = null\n focusAndScrollRef.segmentPaths = []\n\n disableSmoothScrollDuringRouteTransition(\n () => {\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n ;(domNode as HTMLElement).scrollIntoView()\n\n return\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement\n const viewportHeight = htmlElement.clientHeight\n\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n return\n }\n\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0\n\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n ;(domNode as HTMLElement).scrollIntoView()\n }\n },\n {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange,\n }\n )\n\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false\n\n // Set focus on the element\n domNode.focus()\n }\n }\n\n componentDidMount() {\n this.handlePotentialScroll()\n }\n\n componentDidUpdate() {\n // Because this property is overwritten in handlePotentialScroll it's fine to always run it when true as it'll be set to false for subsequent renders.\n if (this.props.focusAndScrollRef.apply) {\n this.handlePotentialScroll()\n }\n }\n\n render() {\n return this.props.children\n }\n}\n\nfunction ScrollAndFocusHandler({\n segmentPath,\n children,\n}: {\n segmentPath: FlightSegmentPath\n children: React.ReactNode\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n return (\n \n {children}\n \n )\n}\n\n/**\n * InnerLayoutRouter handles rendering the provided segment based on the cache.\n */\nfunction InnerLayoutRouter({\n tree,\n segmentPath,\n debugNameContext,\n cacheNode: maybeCacheNode,\n params,\n url,\n isActive,\n}: {\n tree: FlightRouterState\n segmentPath: FlightSegmentPath\n debugNameContext: string\n cacheNode: CacheNode | null\n params: Params\n url: string\n isActive: boolean\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n const parentNavPromises = useContext(NavigationPromisesContext)\n\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n const cacheNode =\n maybeCacheNode !== null\n ? maybeCacheNode\n : // This segment is not in the cache. Suspend indefinitely.\n //\n // This should only be reachable for inactive/hidden segments, during\n // prerendering The active segment should always be consistent with the\n // CacheNode tree. Regardless, if we don't have a matching CacheNode, we\n // must suspend rather than render nothing, to prevent showing an\n // inconsistent route.\n\n (use(unresolvedThenable) as never)\n\n // `rsc` represents the renderable node for this segment.\n\n // If this segment has a `prefetchRsc`, it's the statically prefetched data.\n // We should use that on initial render instead of `rsc`. Then we'll switch\n // to `rsc` when the dynamic response streams in.\n //\n // If no prefetch data is available, then we go straight to rendering `rsc`.\n const resolvedPrefetchRsc =\n cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc\n\n // We use `useDeferredValue` to handle switching between the prefetched and\n // final values. The second argument is returned on initial render, then it\n // re-renders with the first argument.\n const rsc: any = useDeferredValue(cacheNode.rsc, resolvedPrefetchRsc)\n\n // `rsc` is either a React node or a promise for a React node, except we\n // special case `null` to represent that this segment's data is missing. If\n // it's a promise, we need to unwrap it so we can determine whether or not the\n // data is missing.\n let resolvedRsc: React.ReactNode\n if (isDeferredRsc(rsc)) {\n const unwrappedRsc = use(rsc)\n if (unwrappedRsc === null) {\n // If the promise was resolved to `null`, it means the data for this\n // segment was not returned by the server. Suspend indefinitely. When this\n // happens, the router is responsible for triggering a new state update to\n // un-suspend this segment.\n use(unresolvedThenable) as never\n }\n resolvedRsc = unwrappedRsc\n } else {\n // This is not a deferred RSC promise. Don't need to unwrap it.\n if (rsc === null) {\n use(unresolvedThenable) as never\n }\n resolvedRsc = rsc\n }\n\n // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide\n // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`.\n // Promises are cached outside of render to survive suspense retries.\n let navigationPromises: NavigationPromises | null = null\n if (process.env.NODE_ENV !== 'production') {\n const { createNestedLayoutNavigationPromises } =\n require('./navigation-devtools') as typeof import('./navigation-devtools')\n\n navigationPromises = createNestedLayoutNavigationPromises(\n tree,\n parentNavPromises\n )\n }\n\n let children = resolvedRsc\n\n if (navigationPromises) {\n children = (\n \n {resolvedRsc}\n \n )\n }\n\n children = (\n // The layout router context narrows down tree and childNodes at each level.\n \n {children}\n \n )\n\n return children\n}\n\n/**\n * Renders suspense boundary with the provided \"loading\" property as the fallback.\n * If no loading property is provided it renders the children without a suspense boundary.\n */\nfunction LoadingBoundary({\n name,\n loading,\n children,\n}: {\n name: ActivityProps['name']\n loading: LoadingModuleData | Promise\n children: React.ReactNode\n}): JSX.Element {\n // If loading is a promise, unwrap it. This happens in cases where we haven't\n // yet received the loading data from the server — which includes whether or\n // not this layout has a loading component at all.\n //\n // It's OK to suspend here instead of inside the fallback because this\n // promise will resolve simultaneously with the data for the segment itself.\n // So it will never suspend for longer than it would have if we didn't use\n // a Suspense fallback at all.\n let loadingModuleData\n if (\n typeof loading === 'object' &&\n loading !== null &&\n typeof (loading as any).then === 'function'\n ) {\n const promiseForLoading = loading as Promise\n loadingModuleData = use(promiseForLoading)\n } else {\n loadingModuleData = loading as LoadingModuleData\n }\n\n if (loadingModuleData) {\n const loadingRsc = loadingModuleData[0]\n const loadingStyles = loadingModuleData[1]\n const loadingScripts = loadingModuleData[2]\n return (\n \n {loadingStyles}\n {loadingScripts}\n {loadingRsc}\n \n }\n >\n {children}\n \n )\n }\n\n return <>{children}\n}\n\n/**\n * OuterLayoutRouter handles the current segment as well as rendering of other segments.\n * It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes.\n */\nexport default function OuterLayoutRouter({\n parallelRouterKey,\n error,\n errorStyles,\n errorScripts,\n templateStyles,\n templateScripts,\n template,\n notFound,\n forbidden,\n unauthorized,\n segmentViewBoundaries,\n}: {\n parallelRouterKey: string\n error: ErrorComponent | undefined\n errorStyles: React.ReactNode | undefined\n errorScripts: React.ReactNode | undefined\n templateStyles: React.ReactNode | undefined\n templateScripts: React.ReactNode | undefined\n template: React.ReactNode\n notFound: React.ReactNode | undefined\n forbidden: React.ReactNode | undefined\n unauthorized: React.ReactNode | undefined\n segmentViewBoundaries?: React.ReactNode\n}) {\n const context = useContext(LayoutRouterContext)\n if (!context) {\n throw new Error('invariant expected layout router to be mounted')\n }\n\n const {\n parentTree,\n parentCacheNode,\n parentSegmentPath,\n parentParams,\n url,\n isActive,\n debugNameContext,\n } = context\n\n // Get the CacheNode for this segment by reading it from the parent segment's\n // child map.\n const parentParallelRoutes = parentCacheNode.parallelRoutes\n let segmentMap = parentParallelRoutes.get(parallelRouterKey)\n // If the parallel router cache node does not exist yet, create it.\n // This writes to the cache when there is no item in the cache yet. It never *overwrites* existing cache items which is why it's safe in concurrent mode.\n if (!segmentMap) {\n segmentMap = new Map()\n parentParallelRoutes.set(parallelRouterKey, segmentMap)\n }\n const parentTreeSegment = parentTree[0]\n const segmentPath =\n parentSegmentPath === null\n ? // TODO: The root segment value is currently omitted from the segment\n // path. This has led to a bunch of special cases scattered throughout\n // the code. We should clean this up.\n [parallelRouterKey]\n : parentSegmentPath.concat([parentTreeSegment, parallelRouterKey])\n\n // The \"state\" key of a segment is the one passed to React — it represents the\n // identity of the UI tree. Whenever the state key changes, the tree is\n // recreated and the state is reset. In the App Router model, search params do\n // not cause state to be lost, so two segments with the same segment path but\n // different search params should have the same state key.\n //\n // The \"cache\" key of a segment, however, *does* include the search params, if\n // it's possible that the segment accessed the search params on the server.\n // (This only applies to page segments; layout segments cannot access search\n // params on the server.)\n const activeTree = parentTree[1][parallelRouterKey]\n if (activeTree === undefined) {\n // Could not find a matching segment. The client tree is inconsistent with\n // the server tree. Suspend indefinitely; the router will have already\n // detected the inconsistency when handling the server response, and\n // triggered a refresh of the page to recover.\n use(unresolvedThenable) as never\n }\n\n const activeSegment = activeTree[0]\n const activeStateKey = createRouterCacheKey(activeSegment, true) // no search params\n\n // At each level of the route tree, not only do we render the currently\n // active segment — we also render the last N segments that were active at\n // this level inside a hidden boundary, to preserve their state\n // if or when the user navigates to them again.\n //\n // bfcacheEntry is a linked list of FlightRouterStates.\n let bfcacheEntry: RouterBFCacheEntry | null = useRouterBFCache(\n activeTree,\n activeStateKey\n )\n let children: Array = []\n do {\n const tree = bfcacheEntry.tree\n const stateKey = bfcacheEntry.stateKey\n const segment = tree[0]\n const cacheKey = createRouterCacheKey(segment)\n\n // Read segment path from the parallel router cache node.\n const cacheNode = segmentMap.get(cacheKey) ?? null\n\n /*\n - Error boundary\n - Only renders error boundary if error component is provided.\n - Rendered for each segment to ensure they have their own error state.\n - When gracefully degrade for bots, skip rendering error boundary.\n - Loading boundary\n - Only renders suspense boundary if loading components is provided.\n - Rendered for each segment to ensure they have their own loading state.\n - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch.\n */\n\n let segmentBoundaryTriggerNode: React.ReactNode = null\n let segmentViewStateNode: React.ReactNode = null\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentBoundaryTriggerNode, SegmentViewStateNode } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n const pagePrefix = normalizeAppPath(url)\n segmentViewStateNode = (\n \n )\n\n segmentBoundaryTriggerNode = (\n <>\n \n \n )\n }\n\n let params = parentParams\n if (Array.isArray(segment)) {\n // This segment contains a route param. Accumulate these as we traverse\n // down the router tree. The result represents the set of params that\n // the layout/page components are permitted to access below this point.\n const paramName = segment[0]\n const paramCacheKey = segment[1]\n const paramType = segment[2]\n const paramValue = getParamValueFromCacheKey(paramCacheKey, paramType)\n if (paramValue !== null) {\n params = {\n ...parentParams,\n [paramName]: paramValue,\n }\n }\n }\n\n const debugName = getBoundaryDebugNameFromSegment(segment)\n // `debugNameContext` represents the nearest non-\"virtual\" parent segment.\n // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments.\n // So if `debugName` is undefined, the context is passed through unchanged.\n const childDebugNameContext = debugName ?? debugNameContext\n\n // In practical terms, clicking this name in the Suspense DevTools\n // should select the child slots of that layout.\n //\n // So the name we apply to the Activity boundary is actually based on\n // the nearest parent segments.\n //\n // We skip over \"virtual\" parents, i.e. ones inserted by Next.js that\n // don't correspond to application-defined code.\n const isVirtual = debugName === undefined\n const debugNameToDisplay = isVirtual ? undefined : debugNameContext\n\n // TODO: The loading module data for a segment is stored on the parent, then\n // applied to each of that parent segment's parallel route slots. In the\n // simple case where there's only one parallel route (the `children` slot),\n // this is no different from if the loading module data where stored on the\n // child directly. But I'm not sure this actually makes sense when there are\n // multiple parallel routes. It's not a huge issue because you always have\n // the option to define a narrower loading boundary for a particular slot. But\n // this sort of smells like an implementation accident to me.\n const loadingModuleData = parentCacheNode.loading\n let child = (\n \n \n \n \n \n \n {segmentBoundaryTriggerNode}\n \n \n \n \n {segmentViewStateNode}\n \n }\n >\n {templateStyles}\n {templateScripts}\n {template}\n \n )\n\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentStateProvider } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n child = (\n \n {child}\n {segmentViewBoundaries}\n \n )\n }\n\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n child = (\n \n {child}\n \n )\n }\n\n children.push(child)\n\n bfcacheEntry = bfcacheEntry.next\n } while (bfcacheEntry !== null)\n\n return children\n}\n\nfunction getBoundaryDebugNameFromSegment(segment: Segment): string | undefined {\n if (segment === '/') {\n // Reached the root\n return '/'\n }\n if (typeof segment === 'string') {\n if (isVirtualLayout(segment)) {\n return undefined\n } else {\n return segment + '/'\n }\n }\n const paramCacheKey = segment[1]\n return paramCacheKey + '/'\n}\n\nfunction isVirtualLayout(segment: string): boolean {\n return (\n // This is inserted by the loader. We should consider encoding these\n // in a more special way instead of checking the name, to distinguish them\n // from app-defined groups.\n segment === '(slot)'\n )\n}\n"],"names":["React","Activity","useContext","use","Suspense","useDeferredValue","ReactDOM","LayoutRouterContext","GlobalLayoutRouterContext","TemplateContext","unresolvedThenable","ErrorBoundary","matchSegment","disableSmoothScrollDuringRouteTransition","RedirectBoundary","HTTPAccessFallbackBoundary","createRouterCacheKey","useRouterBFCache","normalizeAppPath","NavigationPromisesContext","getParamValueFromCacheKey","isDeferredRsc","__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","findDOMNode","instance","window","internal_reactDOMfindDOMNode","rectProperties","shouldSkipElement","element","includes","getComputedStyle","position","rect","getBoundingClientRect","every","item","topOfElementInViewport","viewportHeight","top","getHashFragmentDomNode","hashFragment","document","body","getElementById","getElementsByName","InnerScrollAndFocusHandler","Component","componentDidMount","handlePotentialScroll","componentDidUpdate","props","focusAndScrollRef","apply","render","children","segmentPath","segmentPaths","length","some","scrollRefSegmentPath","segment","index","domNode","Element","HTMLElement","process","env","NODE_ENV","parentElement","localName","nextElementSibling","scrollIntoView","htmlElement","documentElement","clientHeight","scrollTop","dontForceLayout","onlyHashChange","focus","ScrollAndFocusHandler","context","Error","InnerLayoutRouter","tree","debugNameContext","cacheNode","maybeCacheNode","params","url","isActive","parentNavPromises","resolvedPrefetchRsc","prefetchRsc","rsc","resolvedRsc","unwrappedRsc","navigationPromises","createNestedLayoutNavigationPromises","require","Provider","value","parentTree","parentCacheNode","parentSegmentPath","parentParams","LoadingBoundary","name","loading","loadingModuleData","then","promiseForLoading","loadingRsc","loadingStyles","loadingScripts","fallback","OuterLayoutRouter","parallelRouterKey","error","errorStyles","errorScripts","templateStyles","templateScripts","template","notFound","forbidden","unauthorized","segmentViewBoundaries","parentParallelRoutes","parallelRoutes","segmentMap","get","Map","set","parentTreeSegment","concat","activeTree","undefined","activeSegment","activeStateKey","bfcacheEntry","stateKey","cacheKey","segmentBoundaryTriggerNode","segmentViewStateNode","SegmentBoundaryTriggerNode","SegmentViewStateNode","pagePrefix","page","Array","isArray","paramName","paramCacheKey","paramType","paramValue","debugName","getBoundaryDebugNameFromSegment","childDebugNameContext","isVirtual","debugNameToDisplay","child","errorComponent","SegmentStateProvider","__NEXT_CACHE_COMPONENTS","mode","push","next","isVirtualLayout"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4521, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/render-from-template-context.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4527, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/render-from-template-context.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4534, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/render-from-template-context.tsx"],"sourcesContent":["'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport { TemplateContext } from '../../shared/lib/app-router-context.shared-runtime'\n\nexport default function RenderFromTemplateContext(): JSX.Element {\n const children = useContext(TemplateContext)\n return <>{children}\n}\n"],"names":["React","useContext","TemplateContext","RenderFromTemplateContext","children"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4541, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/client-page.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-page.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4547, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/client-page.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-page.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4554, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-page.tsx"],"sourcesContent":["'use client'\n\nimport type { ParsedUrlQuery } from 'querystring'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\nimport { urlSearchParamsToParsedUrlQuery } from '../route-params'\nimport { SearchParamsContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * When the Page is a client component we send the params and searchParams to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Page component.\n *\n * additionally we may send promises representing the params and searchParams. We don't ever use these passed\n * values but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations.\n * It is up to the caller to decide if the promises are needed.\n */\nexport function ClientPageRoot({\n Component,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n serverProvidedParams: null | {\n searchParams: ParsedUrlQuery\n params: Params\n promises: Array> | null\n }\n}) {\n let searchParams: ParsedUrlQuery\n let params: Params\n if (serverProvidedParams !== null) {\n searchParams = serverProvidedParams.searchParams\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params as\n // props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n\n // This is an intentional behavior change: when Cache Components is enabled,\n // client segments receive the \"canonical\" search params, not the\n // rewritten ones. Users should either call useSearchParams directly or pass\n // the rewritten ones in from a Server Component.\n // TODO: Log a deprecation error when this object is accessed\n searchParams = urlSearchParamsToParsedUrlQuery(use(SearchParamsContext)!)\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientSearchParams: Promise\n let clientParams: Promise\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling searchParams in a client Page.'\n )\n }\n\n const { createSearchParamsFromClient } =\n require('../../server/request/search-params') as typeof import('../../server/request/search-params')\n clientSearchParams = createSearchParamsFromClient(searchParams, store)\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return \n } else {\n const { createRenderSearchParamsFromClient } =\n require('../request/search-params.browser') as typeof import('../request/search-params.browser')\n const clientSearchParams = createRenderSearchParamsFromClient(searchParams)\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n\n return \n }\n}\n"],"names":["InvariantError","LayoutRouterContext","use","urlSearchParamsToParsedUrlQuery","SearchParamsContext","ClientPageRoot","Component","serverProvidedParams","searchParams","params","layoutRouterContext","parentParams","window","workAsyncStorage","require","clientSearchParams","clientParams","store","getStore","createSearchParamsFromClient","createParamsFromClient","createRenderSearchParamsFromClient","createRenderParamsFromClient"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4561, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/client-segment.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-segment.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4567, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/client-segment.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/client-segment.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 4574, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-segment.tsx"],"sourcesContent":["'use client'\n\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\n\n/**\n * When the Page is a client component we send the params to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Segment component.\n *\n * additionally we may send a promise representing params. We don't ever use this passed\n * value but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations\n * such as when cacheComponents is enabled. It is up to the caller to decide if the promises are needed.\n */\nexport function ClientSegmentRoot({\n Component,\n slots,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n slots: { [key: string]: React.ReactNode }\n serverProvidedParams: null | {\n params: Params\n promises: Array> | null\n }\n}) {\n let params: Params\n if (serverProvidedParams !== null) {\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params\n // as props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientParams: Promise\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling params in a client segment such as a Layout or Template.'\n )\n }\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return \n } else {\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n return \n }\n}\n"],"names":["InvariantError","LayoutRouterContext","use","ClientSegmentRoot","Component","slots","serverProvidedParams","params","layoutRouterContext","parentParams","window","workAsyncStorage","require","clientParams","store","getStore","createParamsFromClient","createRenderParamsFromClient"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 4582, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/reflect.ts"],"sourcesContent":["export class ReflectAdapter {\n static get(\n target: T,\n prop: string | symbol,\n receiver: unknown\n ): any {\n const value = Reflect.get(target, prop, receiver)\n if (typeof value === 'function') {\n return value.bind(target)\n }\n\n return value\n }\n\n static set(\n target: T,\n prop: string | symbol,\n value: any,\n receiver: any\n ): boolean {\n return Reflect.set(target, prop, value, receiver)\n }\n\n static has(target: T, prop: string | symbol): boolean {\n return Reflect.has(target, prop)\n }\n\n static deleteProperty(\n target: T,\n prop: string | symbol\n ): boolean {\n return Reflect.deleteProperty(target, prop)\n }\n}\n"],"names":["ReflectAdapter","get","target","prop","receiver","value","Reflect","bind","set","has","deleteProperty"],"mappings":";;;;AAAO,MAAMA;IACX,OAAOC,IACLC,MAAS,EACTC,IAAqB,EACrBC,QAAiB,EACZ;QACL,MAAMC,QAAQC,QAAQL,GAAG,CAACC,QAAQC,MAAMC;QACxC,IAAI,OAAOC,UAAU,YAAY;YAC/B,OAAOA,MAAME,IAAI,CAACL;QACpB;QAEA,OAAOG;IACT;IAEA,OAAOG,IACLN,MAAS,EACTC,IAAqB,EACrBE,KAAU,EACVD,QAAa,EACJ;QACT,OAAOE,QAAQE,GAAG,CAACN,QAAQC,MAAME,OAAOD;IAC1C;IAEA,OAAOK,IAAsBP,MAAS,EAAEC,IAAqB,EAAW;QACtE,OAAOG,QAAQG,GAAG,CAACP,QAAQC;IAC7B;IAEA,OAAOO,eACLR,MAAS,EACTC,IAAqB,EACZ;QACT,OAAOG,QAAQI,cAAc,CAACR,QAAQC;IACxC;AACF","ignoreList":[0]}}, - {"offset": {"line": 4608, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/hooks-server-context.ts"],"sourcesContent":["const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'\n\nexport class DynamicServerError extends Error {\n digest: typeof DYNAMIC_ERROR_CODE = DYNAMIC_ERROR_CODE\n\n constructor(public readonly description: string) {\n super(`Dynamic server usage: ${description}`)\n }\n}\n\nexport function isDynamicServerError(err: unknown): err is DynamicServerError {\n if (\n typeof err !== 'object' ||\n err === null ||\n !('digest' in err) ||\n typeof err.digest !== 'string'\n ) {\n return false\n }\n\n return err.digest === DYNAMIC_ERROR_CODE\n}\n"],"names":["DYNAMIC_ERROR_CODE","DynamicServerError","Error","constructor","description","digest","isDynamicServerError","err"],"mappings":";;;;;;AAAA,MAAMA,qBAAqB;AAEpB,MAAMC,2BAA2BC;IAGtCC,YAA4BC,WAAmB,CAAE;QAC/C,KAAK,CAAC,CAAC,sBAAsB,EAAEA,aAAa,GAAA,IAAA,CADlBA,WAAAA,GAAAA,aAAAA,IAAAA,CAF5BC,MAAAA,GAAoCL;IAIpC;AACF;AAEO,SAASM,qBAAqBC,GAAY;IAC/C,IACE,OAAOA,QAAQ,YACfA,QAAQ,QACR,CAAE,CAAA,YAAYA,GAAE,KAChB,OAAOA,IAAIF,MAAM,KAAK,UACtB;QACA,OAAO;IACT;IAEA,OAAOE,IAAIF,MAAM,KAAKL;AACxB","ignoreList":[0]}}, - {"offset": {"line": 4630, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/static-generation-bailout.ts"],"sourcesContent":["const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'\n\nexport class StaticGenBailoutError extends Error {\n public readonly code = NEXT_STATIC_GEN_BAILOUT\n}\n\nexport function isStaticGenBailoutError(\n error: unknown\n): error is StaticGenBailoutError {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false\n }\n\n return error.code === NEXT_STATIC_GEN_BAILOUT\n}\n"],"names":["NEXT_STATIC_GEN_BAILOUT","StaticGenBailoutError","Error","code","isStaticGenBailoutError","error"],"mappings":";;;;;;AAAA,MAAMA,0BAA0B;AAEzB,MAAMC,8BAA8BC;;QAApC,KAAA,IAAA,OAAA,IAAA,CACWC,IAAAA,GAAOH;;AACzB;AAEO,SAASI,wBACdC,KAAc;IAEd,IAAI,OAAOA,UAAU,YAAYA,UAAU,QAAQ,CAAE,CAAA,UAAUA,KAAI,GAAI;QACrE,OAAO;IACT;IAEA,OAAOA,MAAMF,IAAI,KAAKH;AACxB","ignoreList":[0]}}, - {"offset": {"line": 4652, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/dynamic-rendering-utils.ts"],"sourcesContent":["import type { NonStaticRenderStage } from './app-render/staged-rendering'\nimport type { RequestStore } from './app-render/work-unit-async-storage.external'\n\nexport function isHangingPromiseRejectionError(\n err: unknown\n): err is HangingPromiseRejectionError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === HANGING_PROMISE_REJECTION\n}\n\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'\n\nclass HangingPromiseRejectionError extends Error {\n public readonly digest = HANGING_PROMISE_REJECTION\n\n constructor(\n public readonly route: string,\n public readonly expression: string\n ) {\n super(\n `During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`\n )\n }\n}\n\ntype AbortListeners = Array<(err: unknown) => void>\nconst abortListenersBySignal = new WeakMap()\n\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */\nexport function makeHangingPromise(\n signal: AbortSignal,\n route: string,\n expression: string\n): Promise {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression))\n } else {\n const hangingPromise = new Promise((_, reject) => {\n const boundRejection = reject.bind(\n null,\n new HangingPromiseRejectionError(route, expression)\n )\n let currentListeners = abortListenersBySignal.get(signal)\n if (currentListeners) {\n currentListeners.push(boundRejection)\n } else {\n const listeners = [boundRejection]\n abortListenersBySignal.set(signal, listeners)\n signal.addEventListener(\n 'abort',\n () => {\n for (let i = 0; i < listeners.length; i++) {\n listeners[i]()\n }\n },\n { once: true }\n )\n }\n })\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject)\n return hangingPromise\n }\n}\n\nfunction ignoreReject() {}\n\nexport function makeDevtoolsIOAwarePromise(\n underlying: T,\n requestStore: RequestStore,\n stage: NonStaticRenderStage\n): Promise {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(\n stage,\n undefined,\n underlying\n )\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise((resolve) => {\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(() => {\n resolve(underlying)\n }, 0)\n })\n}\n"],"names":["isHangingPromiseRejectionError","err","digest","HANGING_PROMISE_REJECTION","HangingPromiseRejectionError","Error","constructor","route","expression","abortListenersBySignal","WeakMap","makeHangingPromise","signal","aborted","Promise","reject","hangingPromise","_","boundRejection","bind","currentListeners","get","push","listeners","set","addEventListener","i","length","once","catch","ignoreReject","makeDevtoolsIOAwarePromise","underlying","requestStore","stage","stagedRendering","delayUntilStage","undefined","resolve","setTimeout"],"mappings":";;;;;;;;AAGO,SAASA,+BACdC,GAAY;IAEZ,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIC,MAAM,KAAKC;AACxB;AAEA,MAAMA,4BAA4B;AAElC,MAAMC,qCAAqCC;IAGzCC,YACkBC,KAAa,EACbC,UAAkB,CAClC;QACA,KAAK,CACH,CAAC,qBAAqB,EAAEA,WAAW,qGAAqG,EAAEA,WAAW,8KAA8K,EAAED,MAAM,EAAE,CAAC,GAAA,IAAA,CAJhUA,KAAAA,GAAAA,OAAAA,IAAAA,CACAC,UAAAA,GAAAA,YAAAA,IAAAA,CAJFN,MAAAA,GAASC;IASzB;AACF;AAGA,MAAMM,yBAAyB,IAAIC;AAS5B,SAASC,mBACdC,MAAmB,EACnBL,KAAa,EACbC,UAAkB;IAElB,IAAII,OAAOC,OAAO,EAAE;QAClB,OAAOC,QAAQC,MAAM,CAAC,IAAIX,6BAA6BG,OAAOC;IAChE,OAAO;QACL,MAAMQ,iBAAiB,IAAIF,QAAW,CAACG,GAAGF;YACxC,MAAMG,iBAAiBH,OAAOI,IAAI,CAChC,MACA,IAAIf,6BAA6BG,OAAOC;YAE1C,IAAIY,mBAAmBX,uBAAuBY,GAAG,CAACT;YAClD,IAAIQ,kBAAkB;gBACpBA,iBAAiBE,IAAI,CAACJ;YACxB,OAAO;gBACL,MAAMK,YAAY;oBAACL;iBAAe;gBAClCT,uBAAuBe,GAAG,CAACZ,QAAQW;gBACnCX,OAAOa,gBAAgB,CACrB,SACA;oBACE,IAAK,IAAIC,IAAI,GAAGA,IAAIH,UAAUI,MAAM,EAAED,IAAK;wBACzCH,SAAS,CAACG,EAAE;oBACd;gBACF,GACA;oBAAEE,MAAM;gBAAK;YAEjB;QACF;QACA,2GAA2G;QAC3G,6GAA6G;QAC7G,yFAAyF;QACzFZ,eAAea,KAAK,CAACC;QACrB,OAAOd;IACT;AACF;AAEA,SAASc,gBAAgB;AAElB,SAASC,2BACdC,UAAa,EACbC,YAA0B,EAC1BC,KAA2B;IAE3B,IAAID,aAAaE,eAAe,EAAE;QAChC,iFAAiF;QACjF,OAAOF,aAAaE,eAAe,CAACC,eAAe,CACjDF,OACAG,WACAL;IAEJ;IACA,kEAAkE;IAClE,2EAA2E;IAC3E,OAAO,IAAIlB,QAAW,CAACwB;QACrB,sFAAsF;QACtFC,WAAW;YACTD,QAAQN;QACV,GAAG;IACL;AACF","ignoreList":[0]}}, - {"offset": {"line": 4722, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-constants.tsx"],"sourcesContent":["export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'\n"],"names":["METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME"],"mappings":";;;;;;;;;;AAAO,MAAMA,yBAAyB,6BAA4B;AAC3D,MAAMC,yBAAyB,6BAA4B;AAC3D,MAAMC,uBAAuB,2BAA0B;AACvD,MAAMC,4BAA4B,gCAA+B","ignoreList":[0]}}, - {"offset": {"line": 4740, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/scheduler.ts"],"sourcesContent":["export type ScheduledFn = () => T | PromiseLike\nexport type SchedulerFn = (cb: ScheduledFn) => void\n\n/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */\nexport const scheduleOnNextTick = (cb: ScheduledFn) => {\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(() => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n process.nextTick(cb)\n }\n })\n}\n\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */\nexport const scheduleImmediate = (cb: ScheduledFn): void => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n setImmediate(cb)\n }\n}\n\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */\nexport function atLeastOneTask() {\n return new Promise((resolve) => scheduleImmediate(resolve))\n}\n\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */\nexport function waitAtLeastOneReactRenderTask(): Promise {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r) => setTimeout(r, 0))\n } else {\n return new Promise((r) => setImmediate(r))\n }\n}\n"],"names":["scheduleOnNextTick","cb","Promise","resolve","then","process","env","NEXT_RUNTIME","setTimeout","nextTick","scheduleImmediate","setImmediate","atLeastOneTask","waitAtLeastOneReactRenderTask","r"],"mappings":"AAGA;;;;;CAKC,GACD;;;;;;;;;;AAAO,MAAMA,qBAAqB,CAACC;IACjC,6EAA6E;IAC7E,4EAA4E;IAC5E,uCAAuC;IACvC,EAAE;IACF,kLAAkL;IAClL,EAAE;IACFC,QAAQC,OAAO,GAAGC,IAAI,CAAC;QACrB,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;aAElC;YACLF,QAAQI,QAAQ,CAACR;QACnB;IACF;AACF,EAAC;AAQM,MAAMS,oBAAoB,CAACT;IAChC,IAAII,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACLI,aAAaV;IACf;AACF,EAAC;AAOM,SAASW;IACd,OAAO,IAAIV,QAAc,CAACC,UAAYO,kBAAkBP;AAC1D;AAWO,SAASU;IACd,IAAIR,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACL,OAAO,IAAIL,QAAQ,CAACY,IAAMH,aAAaG;IACzC;AACF","ignoreList":[0]}}, - {"offset": {"line": 4791, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/lazy-dynamic/bailout-to-csr.ts"],"sourcesContent":["// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'\n\n/** An error that should be thrown when we want to bail out to client-side rendering. */\nexport class BailoutToCSRError extends Error {\n public readonly digest = BAILOUT_TO_CSR\n\n constructor(public readonly reason: string) {\n super(`Bail out to client-side rendering: ${reason}`)\n }\n}\n\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */\nexport function isBailoutToCSRError(err: unknown): err is BailoutToCSRError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === BAILOUT_TO_CSR\n}\n"],"names":["BAILOUT_TO_CSR","BailoutToCSRError","Error","constructor","reason","digest","isBailoutToCSRError","err"],"mappings":";;;;;;AAAA,+GAA+G;AAC/G,MAAMA,iBAAiB;AAGhB,MAAMC,0BAA0BC;IAGrCC,YAA4BC,MAAc,CAAE;QAC1C,KAAK,CAAC,CAAC,mCAAmC,EAAEA,QAAQ,GAAA,IAAA,CAD1BA,MAAAA,GAAAA,QAAAA,IAAAA,CAFZC,MAAAA,GAASL;IAIzB;AACF;AAGO,SAASM,oBAAoBC,GAAY;IAC9C,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIF,MAAM,KAAKL;AACxB","ignoreList":[0]}}, - {"offset": {"line": 4814, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/invariant-error.ts"],"sourcesContent":["export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n"],"names":["InvariantError","Error","constructor","message","options","endsWith","name"],"mappings":";;;;AAAO,MAAMA,uBAAuBC;IAClCC,YAAYC,OAAe,EAAEC,OAAsB,CAAE;QACnD,KAAK,CACH,CAAC,WAAW,EAAED,QAAQE,QAAQ,CAAC,OAAOF,UAAUA,UAAU,IAAI,0BAA0B,CAAC,EACzFC;QAEF,IAAI,CAACE,IAAI,GAAG;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 4828, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/dynamic-rendering.ts"],"sourcesContent":["/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */\n\nimport type { WorkStore } from '../app-render/work-async-storage.external'\nimport type {\n WorkUnitStore,\n PrerenderStoreLegacy,\n PrerenderStoreModern,\n PrerenderStoreModernRuntime,\n} from '../app-render/work-unit-async-storage.external'\n\n// Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react'\n\nimport { DynamicServerError } from '../../client/components/hooks-server-context'\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport {\n getRuntimeStagePromise,\n throwForMissingRequestStore,\n workUnitAsyncStorage,\n} from './work-unit-async-storage.external'\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from '../../lib/framework/boundary-constants'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nconst hasPostpone = typeof React.unstable_postpone === 'function'\n\nexport type DynamicAccess = {\n /**\n * If debugging, this will contain the stack trace of where the dynamic access\n * occurred. This is used to provide more information to the user about why\n * their page is being rendered dynamically.\n */\n stack?: string\n\n /**\n * The expression that was accessed dynamically.\n */\n expression: string\n}\n\n// Stores dynamic reasons used during an RSC render.\nexport type DynamicTrackingState = {\n /**\n * When true, stack information will also be tracked during dynamic access.\n */\n readonly isDebugDynamicAccesses: boolean | undefined\n\n /**\n * The dynamic accesses that occurred during the render.\n */\n readonly dynamicAccesses: Array\n\n syncDynamicErrorWithStack: null | Error\n}\n\n// Stores dynamic reasons used during an SSR render.\nexport type DynamicValidationState = {\n hasSuspenseAboveBody: boolean\n hasDynamicMetadata: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array\n}\n\nexport function createDynamicTrackingState(\n isDebugDynamicAccesses: boolean | undefined\n): DynamicTrackingState {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null,\n }\n}\n\nexport function createDynamicValidationState(): DynamicValidationState {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n }\n}\n\nexport function getFirstDynamicReason(\n trackingState: DynamicTrackingState\n): undefined | string {\n return trackingState.dynamicAccesses[0]?.expression\n}\n\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */\nexport function markCurrentScopeAsDynamic(\n store: WorkStore,\n workUnitStore: undefined | Exclude,\n expression: string\n): void {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return\n\n if (store.dynamicShouldError) {\n throw new StaticGenBailoutError(\n `Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n }\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-ppr':\n return postponeWithTracking(\n store.route,\n expression,\n workUnitStore.dynamicTracking\n )\n case 'prerender-legacy':\n workUnitStore.revalidate = 0\n\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */\nexport function throwToInterruptStaticGeneration(\n expression: string,\n store: WorkStore,\n prerenderStore: PrerenderStoreLegacy\n): never {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n\n prerenderStore.revalidate = 0\n\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n}\n\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */\nexport function trackDynamicDataInDynamicRender(workUnitStore: WorkUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n break\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n}\n\nfunction abortOnSynchronousDynamicDataAccess(\n route: string,\n expression: string,\n prerenderStore: PrerenderStoreModern\n): void {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n\n const error = createPrerenderInterruptedError(reason)\n\n prerenderStore.controller.abort(error)\n\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function abortOnSynchronousPlatformIOAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): void {\n const dynamicTracking = prerenderStore.dynamicTracking\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n}\n\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */\nexport function abortAndThrowOnSynchronousRequestDataAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): never {\n const prerenderSignal = prerenderStore.controller.signal\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n }\n throw createPrerenderInterruptedError(\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n )\n}\n\n/**\n * This component will call `React.postpone` that throws the postponed error.\n */\ntype PostponeProps = {\n reason: string\n route: string\n}\nexport function Postpone({ reason, route }: PostponeProps): never {\n const prerenderStore = workUnitAsyncStorage.getStore()\n const dynamicTracking =\n prerenderStore && prerenderStore.type === 'prerender-ppr'\n ? prerenderStore.dynamicTracking\n : null\n postponeWithTracking(route, reason, dynamicTracking)\n}\n\nexport function postponeWithTracking(\n route: string,\n expression: string,\n dynamicTracking: null | DynamicTrackingState\n): never {\n assertPostpone()\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n\n React.unstable_postpone(createPostponeReason(route, expression))\n}\n\nfunction createPostponeReason(route: string, expression: string) {\n return (\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` +\n `React throws this special object to indicate where. It should not be caught by ` +\n `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`\n )\n}\n\nexport function isDynamicPostpone(err: unknown) {\n if (\n typeof err === 'object' &&\n err !== null &&\n typeof (err as any).message === 'string'\n ) {\n return isDynamicPostponeReason((err as any).message)\n }\n return false\n}\n\nfunction isDynamicPostponeReason(reason: string) {\n return (\n reason.includes(\n 'needs to bail out of prerendering at this point because it used'\n ) &&\n reason.includes(\n 'Learn more: https://nextjs.org/docs/messages/ppr-caught-error'\n )\n )\n}\n\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw new Error(\n 'Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'\n )\n}\n\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'\n\nfunction createPrerenderInterruptedError(message: string): Error {\n const error = new Error(message)\n ;(error as any).digest = NEXT_PRERENDER_INTERRUPTED\n return error\n}\n\ntype DigestError = Error & {\n digest: string\n}\n\nexport function isPrerenderInterruptedError(\n error: unknown\n): error is DigestError {\n return (\n typeof error === 'object' &&\n error !== null &&\n (error as any).digest === NEXT_PRERENDER_INTERRUPTED &&\n 'name' in error &&\n 'message' in error &&\n error instanceof Error\n )\n}\n\nexport function accessedDynamicData(\n dynamicAccesses: Array\n): boolean {\n return dynamicAccesses.length > 0\n}\n\nexport function consumeDynamicAccess(\n serverDynamic: DynamicTrackingState,\n clientDynamic: DynamicTrackingState\n): DynamicTrackingState['dynamicAccesses'] {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses)\n return serverDynamic.dynamicAccesses\n}\n\nexport function formatDynamicAPIAccesses(\n dynamicAccesses: Array\n): string[] {\n return dynamicAccesses\n .filter(\n (access): access is Required =>\n typeof access.stack === 'string' && access.stack.length > 0\n )\n .map(({ expression, stack }) => {\n stack = stack\n .split('\\n')\n // Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4)\n .filter((line) => {\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false\n }\n\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' ()')) {\n return false\n }\n\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false\n }\n\n return true\n })\n .join('\\n')\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`\n })\n}\n\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw new Error(\n `Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`\n )\n }\n}\n\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */\nexport function createRenderInBrowserAbortSignal(): AbortSignal {\n const controller = new AbortController()\n controller.abort(new BailoutToCSRError('Render in Browser'))\n return controller.signal\n}\n\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */\nexport function createHangingInputAbortSignal(\n workUnitStore: WorkUnitStore\n): AbortSignal | undefined {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController()\n\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(() => {\n controller.abort()\n })\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n const runtimeStagePromise = getRuntimeStagePromise(workUnitStore)\n if (runtimeStagePromise) {\n runtimeStagePromise.then(() =>\n scheduleOnNextTick(() => controller.abort())\n )\n } else {\n scheduleOnNextTick(() => controller.abort())\n }\n }\n\n return controller.signal\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n return undefined\n default:\n workUnitStore satisfies never\n }\n}\n\nexport function annotateDynamicAccess(\n expression: string,\n prerenderStore: PrerenderStoreModern\n) {\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function useDynamicRouteParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workStore && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-client':\n case 'prerender': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(\n workStore.route,\n expression,\n workUnitStore.dynamicTracking\n )\n }\n break\n }\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\nexport function useDynamicSearchParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n if (!workStore) {\n // We assume pages router context and just return\n return\n }\n\n if (!workUnitStore) {\n throwForMissingRequestStore(expression)\n }\n\n switch (workUnitStore.type) {\n case 'prerender-client': {\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n break\n }\n case 'prerender-legacy':\n case 'prerender-ppr': {\n if (workStore.forceStatic) {\n return\n }\n throw new BailoutToCSRError(expression)\n }\n case 'prerender':\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'request':\n return\n default:\n workUnitStore satisfies never\n }\n}\n\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(\\)/\n\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags =\n 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'\n\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense ()\n// at __next_root_layout_boundary__ ()\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense ()\n// at SomeComponent ()\n// at __next_root_layout_boundary__ ()\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(\n `\\\\n\\\\s+at Suspense \\\\(\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`\n)\n\nconst hasMetadataRegex = new RegExp(\n `\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasViewportRegex = new RegExp(\n `\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`)\n\nexport function trackAllowedDynamicAccess(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true\n return\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message =\n `Route \"${workStore.route}\": Uncached data was accessed outside of ` +\n '. This delays the entire page from rendering, resulting in a ' +\n 'slow user experience. Learn more: ' +\n 'https://nextjs.org/docs/messages/blocking-route'\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInRuntimeShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInStaticShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n */\nfunction createErrorWithComponentOrOwnerStack(\n message: string,\n componentStack: string\n) {\n const ownerStack =\n process.env.NODE_ENV !== 'production' && React.captureOwnerStack\n ? React.captureOwnerStack()\n : null\n\n const error = new Error(message)\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack = error.name + ': ' + message + (ownerStack || componentStack)\n return error\n}\n\nexport enum PreludeState {\n Full = 0,\n Empty = 1,\n Errored = 2,\n}\n\nexport function logDisallowedDynamicError(\n workStore: WorkStore,\n error: Error\n): void {\n console.error(error)\n\n if (!workStore.dev) {\n if (workStore.hasReadableErrorStacks) {\n console.error(\n `To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`\n )\n } else {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`)\n }\n }\n}\n\nexport function throwIfDisallowedDynamic(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n serverDynamic: DynamicTrackingState\n): void {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(\n workStore,\n serverDynamic.syncDynamicErrorWithStack\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude !== PreludeState.Full) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return\n }\n\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n for (let i = 0; i < dynamicErrors.length; i++) {\n logDisallowedDynamicError(workStore, dynamicErrors[i])\n }\n\n throw new StaticGenBailoutError()\n }\n\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`\n )\n throw new StaticGenBailoutError()\n }\n } else {\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.hasDynamicMetadata\n ) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n )\n throw new StaticGenBailoutError()\n }\n }\n}\n\nexport function getStaticShellDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState\n): Array {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return []\n }\n\n if (prelude !== PreludeState.Full) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicErrors.length === 0 &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n\nexport function delayUntilRuntimeStage(\n prerenderStore: PrerenderStoreModernRuntime,\n result: Promise\n): Promise {\n if (prerenderStore.runtimeStagePromise) {\n return prerenderStore.runtimeStagePromise.then(() => result)\n }\n return result\n}\n"],"names":["React","DynamicServerError","StaticGenBailoutError","getRuntimeStagePromise","throwForMissingRequestStore","workUnitAsyncStorage","workAsyncStorage","makeHangingPromise","METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","scheduleOnNextTick","BailoutToCSRError","InvariantError","hasPostpone","unstable_postpone","createDynamicTrackingState","isDebugDynamicAccesses","dynamicAccesses","syncDynamicErrorWithStack","createDynamicValidationState","hasSuspenseAboveBody","hasDynamicMetadata","dynamicMetadata","hasDynamicViewport","hasAllowedDynamic","dynamicErrors","getFirstDynamicReason","trackingState","expression","markCurrentScopeAsDynamic","store","workUnitStore","type","forceDynamic","forceStatic","dynamicShouldError","route","postponeWithTracking","dynamicTracking","revalidate","err","dynamicUsageDescription","dynamicUsageStack","stack","process","env","NODE_ENV","usedDynamic","throwToInterruptStaticGeneration","prerenderStore","trackDynamicDataInDynamicRender","abortOnSynchronousDynamicDataAccess","reason","error","createPrerenderInterruptedError","controller","abort","push","Error","undefined","abortOnSynchronousPlatformIOAccess","errorWithStack","abortAndThrowOnSynchronousRequestDataAccess","prerenderSignal","signal","aborted","Postpone","getStore","assertPostpone","createPostponeReason","isDynamicPostpone","message","isDynamicPostponeReason","includes","NEXT_PRERENDER_INTERRUPTED","digest","isPrerenderInterruptedError","accessedDynamicData","length","consumeDynamicAccess","serverDynamic","clientDynamic","formatDynamicAPIAccesses","filter","access","map","split","slice","line","join","createRenderInBrowserAbortSignal","AbortController","createHangingInputAbortSignal","cacheSignal","inputReady","then","runtimeStagePromise","annotateDynamicAccess","useDynamicRouteParams","workStore","fallbackParams","fallbackRouteParams","size","use","renderSignal","useDynamicSearchParams","hasSuspenseRegex","bodyAndImplicitTags","hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex","RegExp","hasMetadataRegex","hasViewportRegex","hasOutletRegex","trackAllowedDynamicAccess","componentStack","dynamicValidation","test","createErrorWithComponentOrOwnerStack","trackDynamicHoleInRuntimeShell","trackDynamicHoleInStaticShell","ownerStack","captureOwnerStack","name","PreludeState","logDisallowedDynamicError","console","dev","hasReadableErrorStacks","throwIfDisallowedDynamic","prelude","i","getStaticShellDisallowedDynamicReasons","delayUntilRuntimeStage","result"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 5596, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/create-deduped-by-callsite-server-error-logger.ts"],"sourcesContent":["import * as React from 'react'\n\nconst errorRef: { current: null | Error } = { current: null }\n\n// React.cache is currently only available in canary/experimental React channels.\nconst cache =\n typeof React.cache === 'function'\n ? React.cache\n : (fn: (key: unknown) => void) => fn\n\n// When Cache Components is enabled, we record these as errors so that they\n// are captured by the dev overlay as it's more critical to fix these\n// when enabled.\nconst logErrorOrWarn = process.env.__NEXT_CACHE_COMPONENTS\n ? console.error\n : console.warn\n\n// We don't want to dedupe across requests.\n// The developer might've just attempted to fix the warning so we should warn again if it still happens.\nconst flushCurrentErrorIfNew = cache(\n // eslint-disable-next-line @typescript-eslint/no-unused-vars -- cache key\n (key: unknown) => {\n try {\n logErrorOrWarn(errorRef.current)\n } finally {\n errorRef.current = null\n }\n }\n)\n\n/**\n * Creates a function that logs an error message that is deduped by the userland\n * callsite.\n * This requires no indirection between the call of this function and the userland\n * callsite i.e. there's only a single library frame above this.\n * Do not use on the Client where sourcemaps and ignore listing might be enabled.\n * Only use that for warnings need a fix independent of the callstack.\n *\n * @param getMessage\n * @returns\n */\nexport function createDedupedByCallsiteServerErrorLoggerDev(\n getMessage: (...args: Args) => Error\n) {\n return function logDedupedError(...args: Args) {\n const message = getMessage(...args)\n\n if (process.env.NODE_ENV !== 'production') {\n const callStackFrames = new Error().stack?.split('\\n')\n if (callStackFrames === undefined || callStackFrames.length < 4) {\n logErrorOrWarn(message)\n } else {\n // Error:\n // logDedupedError\n // asyncApiBeingAccessedSynchronously\n // \n // TODO: This breaks if sourcemaps with ignore lists are enabled.\n const key = callStackFrames[4]\n errorRef.current = message\n flushCurrentErrorIfNew(key)\n }\n } else {\n logErrorOrWarn(message)\n }\n }\n}\n"],"names":["React","errorRef","current","cache","fn","logErrorOrWarn","process","env","__NEXT_CACHE_COMPONENTS","console","error","warn","flushCurrentErrorIfNew","key","createDedupedByCallsiteServerErrorLoggerDev","getMessage","logDedupedError","args","message","NODE_ENV","callStackFrames","Error","stack","split","undefined","length"],"mappings":";;;;AAAA,YAAYA,WAAW,QAAO;;AAE9B,MAAMC,WAAsC;IAAEC,SAAS;AAAK;AAE5D,iFAAiF;AACjF,MAAMC,QACJ,OAAOH,MAAMG,wMAAK,KAAK,aACnBH,MAAMG,wMAAK,GACX,CAACC,KAA+BA;AAEtC,2EAA2E;AAC3E,qEAAqE;AACrE,gBAAgB;AAChB,MAAMC,iBAAiBC,QAAQC,GAAG,CAACC,uBAAuB,GACtDC,QAAQC,KAAK,aACbD,QAAQE,IAAI;AAEhB,2CAA2C;AAC3C,wGAAwG;AACxG,MAAMC,yBAAyBT,MAC7B,AACA,CAACU,yEADyE;IAExE,IAAI;QACFR,eAAeJ,SAASC,OAAO;IACjC,SAAU;QACRD,SAASC,OAAO,GAAG;IACrB;AACF;AAcK,SAASY,4CACdC,UAAoC;IAEpC,OAAO,SAASC,gBAAgB,GAAGC,IAAU;QAC3C,MAAMC,UAAUH,cAAcE;QAE9B,IAAIX,QAAQC,GAAG,CAACY,QAAQ,KAAK,WAAc;gBACjB;YAAxB,MAAMC,kBAAAA,CAAkB,SAAA,IAAIC,QAAQC,KAAK,KAAA,OAAA,KAAA,IAAjB,OAAmBC,KAAK,CAAC;YACjD,IAAIH,oBAAoBI,aAAaJ,gBAAgBK,MAAM,GAAG,GAAG;gBAC/DpB,eAAea;YACjB,OAAO;gBACL,SAAS;gBACT,oBAAoB;gBACpB,uCAAuC;gBACvC,wBAAwB;gBACxB,iEAAiE;gBACjE,MAAML,MAAMO,eAAe,CAAC,EAAE;gBAC9BnB,SAASC,OAAO,GAAGgB;gBACnBN,uBAAuBC;YACzB;QACF,OAAO;;IAGT;AACF","ignoreList":[0]}}, - {"offset": {"line": 5646, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/reflect-utils.ts"],"sourcesContent":["// This regex will have fast negatives meaning valid identifiers may not pass\n// this test. However this is only used during static generation to provide hints\n// about why a page bailed out of some or all prerendering and we can use bracket notation\n// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']`\n// even if this would have been fine too `searchParams.ಠ_ಠ`\nconst isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/\n\nexport function describeStringPropertyAccess(target: string, prop: string) {\n if (isDefinitelyAValidIdentifier.test(prop)) {\n return `\\`${target}.${prop}\\``\n }\n return `\\`${target}[${JSON.stringify(prop)}]\\``\n}\n\nexport function describeHasCheckingStringProperty(\n target: string,\n prop: string\n) {\n const stringifiedProp = JSON.stringify(prop)\n return `\\`Reflect.has(${target}, ${stringifiedProp})\\`, \\`${stringifiedProp} in ${target}\\`, or similar`\n}\n\nexport const wellKnownProperties = new Set([\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toString',\n 'valueOf',\n 'toLocaleString',\n\n // Promise prototype\n 'then',\n 'catch',\n 'finally',\n\n // React Promise extension\n 'status',\n // 'value',\n // 'error',\n\n // React introspection\n 'displayName',\n '_debugInfo',\n\n // Common tested properties\n 'toJSON',\n '$$typeof',\n '__esModule',\n])\n"],"names":["isDefinitelyAValidIdentifier","describeStringPropertyAccess","target","prop","test","JSON","stringify","describeHasCheckingStringProperty","stringifiedProp","wellKnownProperties","Set"],"mappings":";;;;;;;;AAAA,6EAA6E;AAC7E,iFAAiF;AACjF,0FAA0F;AAC1F,uFAAuF;AACvF,2DAA2D;AAC3D,MAAMA,+BAA+B;AAE9B,SAASC,6BAA6BC,MAAc,EAAEC,IAAY;IACvE,IAAIH,6BAA6BI,IAAI,CAACD,OAAO;QAC3C,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEC,KAAK,EAAE,CAAC;IAChC;IACA,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEG,KAAKC,SAAS,CAACH,MAAM,GAAG,CAAC;AACjD;AAEO,SAASI,kCACdL,MAAc,EACdC,IAAY;IAEZ,MAAMK,kBAAkBH,KAAKC,SAAS,CAACH;IACvC,OAAO,CAAC,cAAc,EAAED,OAAO,EAAE,EAAEM,gBAAgB,OAAO,EAAEA,gBAAgB,IAAI,EAAEN,OAAO,cAAc,CAAC;AAC1G;AAEO,MAAMO,sBAAsB,IAAIC,IAAI;IACzC;IACA;IACA;IACA;IACA;IACA;IAEA,oBAAoB;IACpB;IACA;IACA;IAEA,0BAA0B;IAC1B;IACA,WAAW;IACX,WAAW;IAEX,sBAAsB;IACtB;IACA;IAEA,2BAA2B;IAC3B;IACA;IACA;CACD,EAAC","ignoreList":[0]}}, - {"offset": {"line": 5697, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/utils.ts"],"sourcesContent":["import { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport { afterTaskAsyncStorage } from '../app-render/after-task-async-storage.external'\nimport type { WorkStore } from '../app-render/work-async-storage.external'\n\nexport function throwWithStaticGenerationBailoutErrorWithDynamicError(\n route: string,\n expression: string\n): never {\n throw new StaticGenBailoutError(\n `Route ${route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n}\n\nexport function throwForSearchParamsAccessInUseCache(\n workStore: WorkStore,\n constructorOpt: Function\n): never {\n const error = new Error(\n `Route ${workStore.route} used \\`searchParams\\` inside \"use cache\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\`searchParams\\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`\n )\n\n Error.captureStackTrace(error, constructorOpt)\n workStore.invalidDynamicUsageError ??= error\n\n throw error\n}\n\nexport function isRequestAPICallableInsideAfter() {\n const afterTaskStore = afterTaskAsyncStorage.getStore()\n return afterTaskStore?.rootTaskSpawnPhase === 'action'\n}\n"],"names":["StaticGenBailoutError","afterTaskAsyncStorage","throwWithStaticGenerationBailoutErrorWithDynamicError","route","expression","throwForSearchParamsAccessInUseCache","workStore","constructorOpt","error","Error","captureStackTrace","invalidDynamicUsageError","isRequestAPICallableInsideAfter","afterTaskStore","getStore","rootTaskSpawnPhase"],"mappings":";;;;;;;;AAAA,SAASA,qBAAqB,QAAQ,oDAAmD;AACzF,SAASC,qBAAqB,QAAQ,kDAAiD;;;AAGhF,SAASC,sDACdC,KAAa,EACbC,UAAkB;IAElB,MAAM,OAAA,cAEL,CAFK,IAAIJ,uNAAAA,CACR,CAAC,MAAM,EAAEG,MAAM,4EAA4E,EAAEC,WAAW,0HAA0H,CAAC,GAD/N,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAEO,SAASC,qCACdC,SAAoB,EACpBC,cAAwB;IAExB,MAAMC,QAAQ,OAAA,cAEb,CAFa,IAAIC,MAChB,CAAC,MAAM,EAAEH,UAAUH,KAAK,CAAC,2XAA2X,CAAC,GADzY,qBAAA;eAAA;oBAAA;sBAAA;IAEd;IAEAM,MAAMC,iBAAiB,CAACF,OAAOD;IAC/BD,UAAUK,wBAAwB,KAAKH;IAEvC,MAAMA;AACR;AAEO,SAASI;IACd,MAAMC,iBAAiBZ,8SAAAA,CAAsBa,QAAQ;IACrD,OAAOD,CAAAA,kBAAAA,OAAAA,KAAAA,IAAAA,eAAgBE,kBAAkB,MAAK;AAChD","ignoreList":[0]}}, - {"offset": {"line": 5734, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/promise-with-resolvers.ts"],"sourcesContent":["export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n"],"names":["createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej"],"mappings":";;;;AAAO,SAASA;IACd,iDAAiD;IACjD,IAAIC;IACJ,IAAIC;IACJ,MAAMC,UAAU,IAAIC,QAAW,CAACC,KAAKC;QACnCL,UAAUI;QACVH,SAASI;IACX;IACA,OAAO;QAAEL,SAASA;QAAUC,QAAQA;QAASC;IAAQ;AACvD","ignoreList":[0]}}, - {"offset": {"line": 5756, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/staged-rendering.ts"],"sourcesContent":["import { InvariantError } from '../../shared/lib/invariant-error'\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers'\n\nexport enum RenderStage {\n Before = 1,\n Static = 2,\n Runtime = 3,\n Dynamic = 4,\n Abandoned = 5,\n}\n\nexport type NonStaticRenderStage = RenderStage.Runtime | RenderStage.Dynamic\n\nexport class StagedRenderingController {\n currentStage: RenderStage = RenderStage.Before\n\n staticInterruptReason: Error | null = null\n runtimeInterruptReason: Error | null = null\n staticStageEndTime: number = Infinity\n runtimeStageEndTime: number = Infinity\n\n private runtimeStageListeners: Array<() => void> = []\n private dynamicStageListeners: Array<() => void> = []\n\n private runtimeStagePromise = createPromiseWithResolvers()\n private dynamicStagePromise = createPromiseWithResolvers()\n\n private mayAbandon: boolean = false\n\n constructor(\n private abortSignal: AbortSignal | null = null,\n private hasRuntimePrefetch: boolean\n ) {\n if (abortSignal) {\n abortSignal.addEventListener(\n 'abort',\n () => {\n const { reason } = abortSignal\n if (this.currentStage < RenderStage.Runtime) {\n this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.runtimeStagePromise.reject(reason)\n }\n if (\n this.currentStage < RenderStage.Dynamic ||\n this.currentStage === RenderStage.Abandoned\n ) {\n this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.dynamicStagePromise.reject(reason)\n }\n },\n { once: true }\n )\n\n this.mayAbandon = true\n }\n }\n\n onStage(stage: NonStaticRenderStage, callback: () => void) {\n if (this.currentStage >= stage) {\n callback()\n } else if (stage === RenderStage.Runtime) {\n this.runtimeStageListeners.push(callback)\n } else if (stage === RenderStage.Dynamic) {\n this.dynamicStageListeners.push(callback)\n } else {\n // This should never happen\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n\n canSyncInterrupt() {\n // If we haven't started the render yet, it can't be interrupted.\n if (this.currentStage === RenderStage.Before) {\n return false\n }\n\n const boundaryStage = this.hasRuntimePrefetch\n ? RenderStage.Dynamic\n : RenderStage.Runtime\n return this.currentStage < boundaryStage\n }\n\n syncInterruptCurrentStageWithReason(reason: Error) {\n if (this.currentStage === RenderStage.Before) {\n return\n }\n\n // If Sync IO occurs during the initial (abandonable) render, we'll retry it,\n // so we want a slightly different flow.\n // See the implementation of `abandonRenderImpl` for more explanation.\n if (this.mayAbandon) {\n return this.abandonRenderImpl()\n }\n\n // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage\n // and capture the interruption reason.\n switch (this.currentStage) {\n case RenderStage.Static: {\n this.staticInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n return\n }\n case RenderStage.Runtime: {\n // We only error for Sync IO in the runtime stage if the route\n // is configured to use runtime prefetching.\n // We do this to reflect the fact that during a runtime prefetch,\n // Sync IO aborts aborts the render.\n // Note that `canSyncInterrupt` should prevent us from getting here at all\n // if runtime prefetching isn't enabled.\n if (this.hasRuntimePrefetch) {\n this.runtimeInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n }\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Abandoned:\n default:\n }\n }\n\n getStaticInterruptReason() {\n return this.staticInterruptReason\n }\n\n getRuntimeInterruptReason() {\n return this.runtimeInterruptReason\n }\n\n getStaticStageEndTime() {\n return this.staticStageEndTime\n }\n\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime\n }\n\n abandonRender() {\n if (!this.mayAbandon) {\n throw new InvariantError(\n '`abandonRender` called on a stage controller that cannot be abandoned.'\n )\n }\n\n this.abandonRenderImpl()\n }\n\n private abandonRenderImpl() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the Runtime stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this\n switch (currentStage) {\n case RenderStage.Static: {\n this.currentStage = RenderStage.Abandoned\n this.resolveRuntimeStage()\n return\n }\n case RenderStage.Runtime: {\n this.currentStage = RenderStage.Abandoned\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Before:\n case RenderStage.Abandoned:\n break\n default: {\n currentStage satisfies never\n }\n }\n }\n\n advanceStage(\n stage: RenderStage.Static | RenderStage.Runtime | RenderStage.Dynamic\n ) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return\n }\n\n let currentStage = this.currentStage\n this.currentStage = stage\n\n if (currentStage < RenderStage.Runtime && stage >= RenderStage.Runtime) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin\n this.resolveRuntimeStage()\n }\n if (currentStage < RenderStage.Dynamic && stage >= RenderStage.Dynamic) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin\n this.resolveDynamicStage()\n return\n }\n }\n\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */\n private resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners\n for (let i = 0; i < runtimeListeners.length; i++) {\n runtimeListeners[i]()\n }\n runtimeListeners.length = 0\n this.runtimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */\n private resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners\n for (let i = 0; i < dynamicListeners.length; i++) {\n dynamicListeners[i]()\n }\n dynamicListeners.length = 0\n this.dynamicStagePromise.resolve()\n }\n\n private getStagePromise(stage: NonStaticRenderStage): Promise {\n switch (stage) {\n case RenderStage.Runtime: {\n return this.runtimeStagePromise.promise\n }\n case RenderStage.Dynamic: {\n return this.dynamicStagePromise.promise\n }\n default: {\n stage satisfies never\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n }\n\n waitForStage(stage: NonStaticRenderStage) {\n return this.getStagePromise(stage)\n }\n\n delayUntilStage(\n stage: NonStaticRenderStage,\n displayName: string | undefined,\n resolvedValue: T\n ) {\n const ioTriggerPromise = this.getStagePromise(stage)\n\n const promise = makeDevtoolsIOPromiseFromIOTrigger(\n ioTriggerPromise,\n displayName,\n resolvedValue\n )\n\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject)\n }\n return promise\n }\n}\n\nfunction ignoreReject() {}\n\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger(\n ioTrigger: Promise,\n displayName: string | undefined,\n resolvedValue: T\n): Promise {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise((resolve, reject) => {\n ioTrigger.then(resolve.bind(null, resolvedValue), reject)\n })\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName\n }\n return promise\n}\n"],"names":["InvariantError","createPromiseWithResolvers","RenderStage","StagedRenderingController","constructor","abortSignal","hasRuntimePrefetch","currentStage","staticInterruptReason","runtimeInterruptReason","staticStageEndTime","Infinity","runtimeStageEndTime","runtimeStageListeners","dynamicStageListeners","runtimeStagePromise","dynamicStagePromise","mayAbandon","addEventListener","reason","promise","catch","ignoreReject","reject","once","onStage","stage","callback","push","canSyncInterrupt","boundaryStage","syncInterruptCurrentStageWithReason","abandonRenderImpl","advanceStage","getStaticInterruptReason","getRuntimeInterruptReason","getStaticStageEndTime","getRuntimeStageEndTime","abandonRender","resolveRuntimeStage","performance","now","timeOrigin","resolveDynamicStage","runtimeListeners","i","length","resolve","dynamicListeners","getStagePromise","waitForStage","delayUntilStage","displayName","resolvedValue","ioTriggerPromise","makeDevtoolsIOPromiseFromIOTrigger","ioTrigger","Promise","then","bind","undefined"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 6017, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/search-params.ts"],"sourcesContent":["import type { WorkStore } from '../app-render/work-async-storage.external'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n annotateDynamicAccess,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStoreLegacy,\n type PrerenderStorePPR,\n type PrerenderStoreModern,\n type PrerenderStoreModernRuntime,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport {\n describeStringPropertyAccess,\n describeHasCheckingStringProperty,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n throwWithStaticGenerationBailoutErrorWithDynamicError,\n throwForSearchParamsAccessInUseCache,\n} from './utils'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type SearchParams = { [key: string]: string | string[] | undefined }\n\nexport function createSearchParamsFromClient(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'prerender-runtime':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in cache contexts.'\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport const createServerSearchParamsForMetadata =\n createServerSearchParamsForServerPage\n\nexport function createServerSearchParamsForServerPage(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerSearchParamsForServerPage should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderSearchParams(\n underlyingSearchParams,\n workUnitStore\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderSearchParamsForClientPage(\n workStore: WorkStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We're prerendering in a mode that aborts (cacheComponents) and should stall\n // the promise to ensure the RSC side is considered dynamic\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n return Promise.resolve({})\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nfunction createStaticPrerenderSearchParams(\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We are in a cacheComponents (PPR or otherwise) prerender\n return makeHangingSearchParams(workStore, prerenderStore)\n case 'prerender-ppr':\n case 'prerender-legacy':\n // We are in a legacy static generation and need to interrupt the\n // prerender when search params are accessed.\n return makeErroringSearchParams(workStore, prerenderStore)\n default:\n return prerenderStore satisfies never\n }\n}\n\nfunction createRuntimePrerenderSearchParams(\n underlyingSearchParams: SearchParams,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedSearchParams(underlyingSearchParams)\n )\n}\n\nfunction createRenderSearchParams(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n } else {\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n return makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n return makeUntrackedSearchParams(underlyingSearchParams)\n }\n }\n}\n\ninterface CacheLifetime {}\nconst CachedSearchParams = new WeakMap>()\n\nconst CachedSearchParamsForUseCache = new WeakMap<\n CacheLifetime,\n Promise\n>()\n\nfunction makeHangingSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreModern\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(prerenderStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n switch (prop) {\n case 'then': {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n case 'status': {\n const expression =\n '`use(searchParams)`, `searchParams.status`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n default: {\n return ReflectAdapter.get(target, prop, receiver)\n }\n }\n },\n })\n\n CachedSearchParams.set(prerenderStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeErroringSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreLegacy | PrerenderStorePPR\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const underlyingSearchParams = {}\n // For search params we don't construct a ReactPromise because we want to interrupt\n // rendering on any property access that was not set from outside and so we only want\n // to have properties like value and status if React sets them.\n const promise = Promise.resolve(underlyingSearchParams)\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (typeof prop === 'string' && prop === 'then') {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n if (workStore.dynamicShouldError) {\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n } else if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParams.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\n/**\n * This is a variation of `makeErroringSearchParams` that always throws an\n * error on access, because accessing searchParams inside of `\"use cache\"` is\n * not allowed.\n */\nexport function makeErroringSearchParamsForUseCache(\n workStore: WorkStore\n): Promise {\n const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve({})\n\n const proxiedPromise = new Proxy(promise, {\n get: function get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it. We know it\n // isn't a dynamic access because it can only be something that was\n // previously written to the promise and thus not an underlying\n // searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (\n typeof prop === 'string' &&\n (prop === 'then' || !wellKnownProperties.has(prop))\n ) {\n throwForSearchParamsAccessInUseCache(workStore, get)\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParamsForUseCache.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeUntrackedSearchParams(\n underlyingSearchParams: SearchParams\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve(underlyingSearchParams)\n CachedSearchParams.set(underlyingSearchParams, promise)\n\n return promise\n}\n\nfunction makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (requestStore.asyncApiPromises) {\n // Do not cache the resulting promise. If we do, we'll only show the first \"awaited at\"\n // across all segments that receive searchParams.\n return makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n const promise = makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n CachedSearchParams.set(requestStore, promise)\n return promise\n }\n}\n\nfunction makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n const promiseInitialized = { current: false }\n const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams,\n workStore,\n promiseInitialized\n )\n\n let promise: Promise\n if (requestStore.asyncApiPromises) {\n // We wrap each instance of searchParams in a `new Promise()`.\n // This is important when all awaits are in third party which would otherwise\n // track all the way to the internal params.\n const sharedSearchParamsParent =\n requestStore.asyncApiPromises.sharedSearchParamsParent\n promise = new Promise((resolve, reject) => {\n sharedSearchParamsParent.then(() => resolve(proxiedUnderlying), reject)\n })\n // @ts-expect-error\n promise.displayName = 'searchParams'\n } else {\n promise = makeDevtoolsIOAwarePromise(\n proxiedUnderlying,\n requestStore,\n RenderStage.Runtime\n )\n }\n promise.then(\n () => {\n promiseInitialized.current = true\n },\n // If we're in staged rendering, this promise will reject if the render\n // is aborted before it can reach the runtime stage.\n // In that case, we have to prevent an unhandled rejection from the promise\n // created by this `.then()` call.\n // This does not affect the `promiseInitialized` logic above,\n // because `proxiedUnderlying` will not be used to resolve the promise,\n // so there's no risk of any of its properties being accessed and triggering\n // an undesireable warning.\n ignoreReject\n )\n\n return instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams,\n promise,\n workStore\n )\n}\n\nfunction ignoreReject() {}\n\nfunction instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n promiseInitialized: { current: boolean }\n) {\n // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying\n // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender\n // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking\n // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger\n // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce\n // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise.\n return new Proxy(underlyingSearchParams, {\n get(target, prop, receiver) {\n if (typeof prop === 'string' && promiseInitialized.current) {\n if (workStore.dynamicShouldError) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (workStore.dynamicShouldError) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n if (workStore.dynamicShouldError) {\n const expression =\n '`{...searchParams}`, `Object.keys(searchParams)`, or similar'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n return Reflect.ownKeys(target)\n },\n })\n}\n\nfunction instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams: SearchParams,\n promise: Promise,\n workStore: WorkStore\n) {\n // Track which properties we should warn for.\n const proxiedProperties = new Set()\n\n Object.keys(underlyingSearchParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (prop === 'then' && workStore.dynamicShouldError) {\n const expression = '`searchParams.then`'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return Reflect.set(target, prop, value, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n const expression = '`Object.keys(searchParams)` or similar'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createSearchAccessError\n)\n\nfunction createSearchAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`searchParams\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["ReflectAdapter","throwToInterruptStaticGeneration","postponeWithTracking","annotateDynamicAccess","delayUntilRuntimeStage","workUnitAsyncStorage","throwInvariantForMissingStore","InvariantError","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","describeStringPropertyAccess","describeHasCheckingStringProperty","wellKnownProperties","throwWithStaticGenerationBailoutErrorWithDynamicError","throwForSearchParamsAccessInUseCache","RenderStage","createSearchParamsFromClient","underlyingSearchParams","workStore","workUnitStore","getStore","type","createStaticPrerenderSearchParams","createRenderSearchParams","createServerSearchParamsForMetadata","createServerSearchParamsForServerPage","createRuntimePrerenderSearchParams","createPrerenderSearchParamsForClientPage","forceStatic","Promise","resolve","renderSignal","route","prerenderStore","makeHangingSearchParams","makeErroringSearchParams","makeUntrackedSearchParams","requestStore","process","env","NODE_ENV","makeUntrackedSearchParamsWithDevWarnings","CachedSearchParams","WeakMap","CachedSearchParamsForUseCache","cachedSearchParams","get","promise","proxiedPromise","Proxy","target","prop","receiver","Object","hasOwn","expression","set","dynamicShouldError","dynamicTracking","makeErroringSearchParamsForUseCache","has","asyncApiPromises","makeUntrackedSearchParamsWithDevWarningsImpl","promiseInitialized","current","proxiedUnderlying","instrumentSearchParamsObjectWithDevWarnings","sharedSearchParamsParent","reject","then","displayName","Runtime","ignoreReject","instrumentSearchParamsPromiseWithDevWarnings","Reflect","ownKeys","proxiedProperties","Set","keys","forEach","add","warnForSyncAccess","value","delete","createSearchAccessError","prefix","Error"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 6436, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/params.ts"],"sourcesContent":["import {\n workAsyncStorage,\n type WorkStore,\n} from '../app-render/work-async-storage.external'\nimport type { OpaqueFallbackRouteParams } from './fallback-params'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStorePPR,\n type PrerenderStoreLegacy,\n type StaticPrerenderStoreModern,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type PrerenderStoreModernRuntime,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n describeStringPropertyAccess,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport { dynamicAccessAsyncStorage } from '../app-render/dynamic-access-async-storage.external'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type ParamValue = string | Array | undefined\nexport type Params = Record\n\nexport function createParamsFromClient(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createParamsFromClient should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createParamsFromClient should not be called in a runtime prerender.'\n )\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport type CreateServerParamsForMetadata = typeof createServerParamsForMetadata\nexport const createServerParamsForMetadata = createServerParamsForServerSegment\n\n// routes always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerParamsForRoute(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForRoute should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createServerParamsForServerSegment(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForServerSegment should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderParamsForClientSegment(\n underlyingParams: Params\n): Promise {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError(\n 'Missing workStore in createPrerenderParamsForClientSegment'\n )\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams) {\n for (let key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`params`'\n )\n }\n }\n }\n break\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderParamsForClientSegment should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'prerender-runtime':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n // We're prerendering in a mode that does not abort. We resolve the promise without\n // any tracking because we're just transporting a value from server to client where the tracking\n // will be applied.\n return Promise.resolve(underlyingParams)\n}\n\nfunction createStaticPrerenderParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise {\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingParams(\n underlyingParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n return makeErroringParams(\n underlyingParams,\n fallbackParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-legacy':\n break\n default:\n prerenderStore satisfies never\n }\n\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRuntimePrerenderParams(\n underlyingParams: Params,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedParams(underlyingParams)\n )\n}\n\nfunction createRenderParamsInProd(underlyingParams: Params): Promise {\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRenderParamsInDev(\n underlyingParams: Params,\n devFallbackParams: OpaqueFallbackRouteParams | null | undefined,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n let hasFallbackParams = false\n if (devFallbackParams) {\n for (let key in underlyingParams) {\n if (devFallbackParams.has(key)) {\n hasFallbackParams = true\n break\n }\n }\n }\n\n return makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams,\n hasFallbackParams,\n workStore,\n requestStore\n )\n}\n\ninterface CacheLifetime {}\nconst CachedParams = new WeakMap>()\n\nconst fallbackParamsProxyHandler: ProxyHandler> = {\n get: function get(target, prop, receiver) {\n if (prop === 'then' || prop === 'catch' || prop === 'finally') {\n const originalMethod = ReflectAdapter.get(target, prop, receiver)\n\n return {\n [prop]: (...args: unknown[]) => {\n const store = dynamicAccessAsyncStorage.getStore()\n\n if (store) {\n store.abortController.abort(\n new Error(`Accessed fallback \\`params\\` during prerendering.`)\n )\n }\n\n return new Proxy(\n originalMethod.apply(target, args),\n fallbackParamsProxyHandler\n )\n },\n }[prop]\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n}\n\nfunction makeHangingParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStoreModern\n): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = new Proxy(\n makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`params`'\n ),\n fallbackParamsProxyHandler\n )\n\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeErroringParams(\n underlyingParams: Params,\n fallbackParams: OpaqueFallbackRouteParams,\n workStore: WorkStore,\n prerenderStore: PrerenderStorePPR | PrerenderStoreLegacy\n): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const augmentedUnderlying = { ...underlyingParams }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = Promise.resolve(augmentedUnderlying)\n CachedParams.set(underlyingParams, promise)\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n if (fallbackParams.has(prop)) {\n Object.defineProperty(augmentedUnderlying, prop, {\n get() {\n const expression = describeStringPropertyAccess('params', prop)\n // In most dynamic APIs we also throw if `dynamic = \"error\"` however\n // for params is only dynamic when we're generating a fallback shell\n // and even when `dynamic = \"error\"` we still support generating dynamic\n // fallback shells\n // TODO remove this comment when cacheComponents is the default since there\n // will be no `dynamic = \"error\"`\n if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n },\n enumerable: true,\n })\n }\n }\n })\n\n return promise\n}\n\nfunction makeUntrackedParams(underlyingParams: Params): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = Promise.resolve(underlyingParams)\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams: Params,\n hasFallbackParams: boolean,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (requestStore.asyncApiPromises && hasFallbackParams) {\n // We wrap each instance of params in a `new Promise()`, because deduping\n // them across requests doesn't work anyway and this let us show each\n // await a different set of values. This is important when all awaits\n // are in third party which would otherwise track all the way to the\n // internal params.\n const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent\n const promise: Promise = new Promise((resolve, reject) => {\n sharedParamsParent.then(() => resolve(underlyingParams), reject)\n })\n // @ts-expect-error\n promise.displayName = 'params'\n return instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n }\n\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = hasFallbackParams\n ? makeDevtoolsIOAwarePromise(\n underlyingParams,\n requestStore,\n RenderStage.Runtime\n )\n : // We don't want to force an environment transition when this params is not part of the fallback params set\n Promise.resolve(underlyingParams)\n\n const proxiedPromise = instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n CachedParams.set(underlyingParams, proxiedPromise)\n return proxiedPromise\n}\n\nfunction instrumentParamsPromiseWithDevWarnings(\n underlyingParams: Params,\n promise: Promise,\n workStore: WorkStore\n): Promise {\n // Track which properties we should warn for.\n const proxiedProperties = new Set()\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (typeof prop === 'string') {\n if (\n // We are accessing a property that was proxied to the promise instance\n proxiedProperties.has(prop)\n ) {\n const expression = describeStringPropertyAccess('params', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return ReflectAdapter.set(target, prop, value, receiver)\n },\n ownKeys(target) {\n const expression = '`...params` or similar expression'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createParamsAccessError\n)\n\nfunction createParamsAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`params\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["workAsyncStorage","ReflectAdapter","throwToInterruptStaticGeneration","postponeWithTracking","delayUntilRuntimeStage","workUnitAsyncStorage","throwInvariantForMissingStore","InvariantError","describeStringPropertyAccess","wellKnownProperties","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","dynamicAccessAsyncStorage","RenderStage","createParamsFromClient","underlyingParams","workStore","workUnitStore","getStore","type","createStaticPrerenderParams","process","env","NODE_ENV","devFallbackParams","createRenderParamsInDev","createRenderParamsInProd","createServerParamsForMetadata","createServerParamsForServerSegment","createServerParamsForRoute","createRuntimePrerenderParams","createPrerenderParamsForClientSegment","fallbackParams","fallbackRouteParams","key","has","renderSignal","route","Promise","resolve","prerenderStore","makeHangingParams","makeErroringParams","makeUntrackedParams","requestStore","hasFallbackParams","makeDynamicallyTrackedParamsWithDevWarnings","CachedParams","WeakMap","fallbackParamsProxyHandler","get","target","prop","receiver","originalMethod","args","store","abortController","abort","Error","Proxy","apply","cachedParams","promise","set","augmentedUnderlying","Object","keys","forEach","defineProperty","expression","dynamicTracking","enumerable","asyncApiPromises","sharedParamsParent","reject","then","displayName","instrumentParamsPromiseWithDevWarnings","Runtime","proxiedPromise","proxiedProperties","Set","add","warnForSyncAccess","value","delete","ownKeys","Reflect","createParamsAccessError","prefix"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 6836, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 6842, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 6849, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/error-boundary.tsx"],"sourcesContent":["'use client'\n\n/**\n * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a\n * fallback component for HTTP errors.\n *\n * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors.\n *\n * e.g. 404\n * 404 represents not found, and the fallback component pair contains the component and its styles.\n *\n */\n\nimport React, { useContext } from 'react'\nimport { useUntrackedPathname } from '../navigation-untracked'\nimport {\n HTTPAccessErrorStatus,\n getAccessFallbackHTTPStatus,\n getAccessFallbackErrorTypeByStatus,\n isHTTPAccessFallbackError,\n} from './http-access-fallback'\nimport { warnOnce } from '../../../shared/lib/utils/warn-once'\nimport { MissingSlotContext } from '../../../shared/lib/app-router-context.shared-runtime'\n\ninterface HTTPAccessFallbackBoundaryProps {\n notFound?: React.ReactNode\n forbidden?: React.ReactNode\n unauthorized?: React.ReactNode\n // TODO: Make this required once `React.createElement` understands that positional args go into children\n children?: React.ReactNode\n missingSlots?: Set\n}\n\ninterface HTTPAccessFallbackErrorBoundaryProps\n extends HTTPAccessFallbackBoundaryProps {\n pathname: string | null\n missingSlots?: Set\n}\n\ninterface HTTPAccessBoundaryState {\n triggeredStatus: number | undefined\n previousPathname: string | null\n}\n\nclass HTTPAccessFallbackErrorBoundary extends React.Component<\n HTTPAccessFallbackErrorBoundaryProps,\n HTTPAccessBoundaryState\n> {\n constructor(props: HTTPAccessFallbackErrorBoundaryProps) {\n super(props)\n this.state = {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n\n componentDidCatch(): void {\n if (\n process.env.NODE_ENV === 'development' &&\n this.props.missingSlots &&\n this.props.missingSlots.size > 0 &&\n // A missing children slot is the typical not-found case, so no need to warn\n !this.props.missingSlots.has('children')\n ) {\n let warningMessage =\n 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\\n' +\n 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\\n\\n'\n\n const formattedSlots = Array.from(this.props.missingSlots)\n .sort((a, b) => a.localeCompare(b))\n .map((slot) => `@${slot}`)\n .join(', ')\n\n warningMessage += 'Missing slots: ' + formattedSlots\n\n warnOnce(warningMessage)\n }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isHTTPAccessFallbackError(error)) {\n const httpStatus = getAccessFallbackHTTPStatus(error)\n return {\n triggeredStatus: httpStatus,\n }\n }\n // Re-throw if error is not for 404\n throw error\n }\n\n static getDerivedStateFromProps(\n props: HTTPAccessFallbackErrorBoundaryProps,\n state: HTTPAccessBoundaryState\n ): HTTPAccessBoundaryState | null {\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.triggeredStatus) {\n return {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n return {\n triggeredStatus: state.triggeredStatus,\n previousPathname: props.pathname,\n }\n }\n\n render() {\n const { notFound, forbidden, unauthorized, children } = this.props\n const { triggeredStatus } = this.state\n const errorComponents = {\n [HTTPAccessErrorStatus.NOT_FOUND]: notFound,\n [HTTPAccessErrorStatus.FORBIDDEN]: forbidden,\n [HTTPAccessErrorStatus.UNAUTHORIZED]: unauthorized,\n }\n\n if (triggeredStatus) {\n const isNotFound =\n triggeredStatus === HTTPAccessErrorStatus.NOT_FOUND && notFound\n const isForbidden =\n triggeredStatus === HTTPAccessErrorStatus.FORBIDDEN && forbidden\n const isUnauthorized =\n triggeredStatus === HTTPAccessErrorStatus.UNAUTHORIZED && unauthorized\n\n // If there's no matched boundary in this layer, keep throwing the error by rendering the children\n if (!(isNotFound || isForbidden || isUnauthorized)) {\n return children\n }\n\n return (\n <>\n \n {process.env.NODE_ENV === 'development' && (\n \n )}\n {errorComponents[triggeredStatus]}\n \n )\n }\n\n return children\n }\n}\n\nexport function HTTPAccessFallbackBoundary({\n notFound,\n forbidden,\n unauthorized,\n children,\n}: HTTPAccessFallbackBoundaryProps) {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these error can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n const missingSlots = useContext(MissingSlotContext)\n const hasErrorFallback = !!(notFound || forbidden || unauthorized)\n\n if (hasErrorFallback) {\n return (\n \n {children}\n \n )\n }\n\n return <>{children}\n}\n"],"names":["React","useContext","useUntrackedPathname","HTTPAccessErrorStatus","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","isHTTPAccessFallbackError","warnOnce","MissingSlotContext","HTTPAccessFallbackErrorBoundary","Component","constructor","props","state","triggeredStatus","undefined","previousPathname","pathname","componentDidCatch","process","env","NODE_ENV","missingSlots","size","has","warningMessage","formattedSlots","Array","from","sort","a","b","localeCompare","map","slot","join","getDerivedStateFromError","error","httpStatus","getDerivedStateFromProps","render","notFound","forbidden","unauthorized","children","errorComponents","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","isNotFound","isForbidden","isUnauthorized","meta","name","content","HTTPAccessFallbackBoundary","hasErrorFallback"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 6857, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactJsxRuntime\n"],"names":["module","exports","require","vendored","ReactJsxRuntime"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,eAAe","ignoreList":[0]}}, - {"offset": {"line": 6862, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/non-nullable.ts"],"sourcesContent":["export function nonNullable(value: T): value is NonNullable {\n return value !== null && value !== undefined\n}\n"],"names":["nonNullable","value","undefined"],"mappings":";;;;AAAO,SAASA,YAAeC,KAAQ;IACrC,OAAOA,UAAU,QAAQA,UAAUC;AACrC","ignoreList":[0]}}, - {"offset": {"line": 6873, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/meta.tsx"],"sourcesContent":["import React from 'react'\nimport { nonNullable } from '../../non-nullable'\n\nexport function Meta({\n name,\n property,\n content,\n media,\n}: {\n name?: string\n property?: string\n media?: string\n content: string | number | URL | null | undefined\n}): React.ReactElement | null {\n if (typeof content !== 'undefined' && content !== null && content !== '') {\n return (\n \n )\n }\n return null\n}\n\nexport function MetaFilter(\n items: (T | null)[]\n): NonNullable[] {\n const acc: NonNullable[] = []\n for (const item of items) {\n if (Array.isArray(item)) {\n acc.push(...item.filter(nonNullable))\n } else if (nonNullable(item)) {\n acc.push(item)\n }\n }\n return acc\n}\n\ntype ExtendMetaContent = Record<\n string,\n undefined | string | URL | number | boolean | null | undefined\n>\ntype MultiMetaContent =\n | (ExtendMetaContent | string | URL | number)[]\n | null\n | undefined\n\nfunction camelToSnake(camelCaseStr: string) {\n return camelCaseStr.replace(/([A-Z])/g, function (match) {\n return '_' + match.toLowerCase()\n })\n}\n\nconst aliasPropPrefixes = new Set([\n 'og:image',\n 'twitter:image',\n 'og:video',\n 'og:audio',\n])\nfunction getMetaKey(prefix: string, key: string) {\n // Use `twitter:image` and `og:image` instead of `twitter:image:url` and `og:image:url`\n // to be more compatible as it's a more common format.\n // `og:video` & `og:audio` do not have a `:url` suffix alias\n if (aliasPropPrefixes.has(prefix) && key === 'url') {\n return prefix\n }\n if (prefix.startsWith('og:') || prefix.startsWith('twitter:')) {\n key = camelToSnake(key)\n }\n return prefix + ':' + key\n}\n\nfunction ExtendMeta({\n content,\n namePrefix,\n propertyPrefix,\n}: {\n content?: ExtendMetaContent\n namePrefix?: string\n propertyPrefix?: string\n}) {\n if (!content) return null\n return MetaFilter(\n Object.entries(content).map(([k, v]) => {\n return typeof v === 'undefined'\n ? null\n : Meta({\n ...(propertyPrefix && { property: getMetaKey(propertyPrefix, k) }),\n ...(namePrefix && { name: getMetaKey(namePrefix, k) }),\n content: typeof v === 'string' ? v : v?.toString(),\n })\n })\n )\n}\n\nexport function MultiMeta({\n propertyPrefix,\n namePrefix,\n contents,\n}: {\n propertyPrefix?: string\n namePrefix?: string\n contents?: MultiMetaContent | null\n}) {\n if (typeof contents === 'undefined' || contents === null) {\n return null\n }\n\n return MetaFilter(\n contents.map((content) => {\n if (\n typeof content === 'string' ||\n typeof content === 'number' ||\n content instanceof URL\n ) {\n return Meta({\n ...(propertyPrefix\n ? { property: propertyPrefix }\n : { name: namePrefix }),\n content,\n })\n } else {\n return ExtendMeta({\n namePrefix,\n propertyPrefix,\n content,\n })\n }\n })\n )\n}\n"],"names":["React","nonNullable","Meta","name","property","content","media","meta","undefined","toString","MetaFilter","items","acc","item","Array","isArray","push","filter","camelToSnake","camelCaseStr","replace","match","toLowerCase","aliasPropPrefixes","Set","getMetaKey","prefix","key","has","startsWith","ExtendMeta","namePrefix","propertyPrefix","Object","entries","map","k","v","MultiMeta","contents","URL"],"mappings":";;;;;;;;;AAAA,OAAOA,WAAW,QAAO;AACzB,SAASC,WAAW,QAAQ,qBAAoB;;;;AAEzC,SAASC,KAAK,EACnBC,IAAI,EACJC,QAAQ,EACRC,OAAO,EACPC,KAAK,EAMN;IACC,IAAI,OAAOD,YAAY,eAAeA,YAAY,QAAQA,YAAY,IAAI;QACxE,OAAA,WAAA,OACE,8NAAA,EAACE,QAAAA;YACE,GAAIJ,OAAO;gBAAEA;YAAK,IAAI;gBAAEC;YAAS,CAAC;YAClC,GAAIE,QAAQ;gBAAEA;YAAM,IAAIE,SAAS;YAClCH,SAAS,OAAOA,YAAY,WAAWA,UAAUA,QAAQI,QAAQ;;IAGvE;IACA,OAAO;AACT;AAEO,SAASC,WACdC,KAAmB;IAEnB,MAAMC,MAAwB,EAAE;IAChC,KAAK,MAAMC,QAAQF,MAAO;QACxB,IAAIG,MAAMC,OAAO,CAACF,OAAO;YACvBD,IAAII,IAAI,IAAIH,KAAKI,MAAM,CAAChB,4KAAAA;QAC1B,OAAO,QAAIA,4KAAAA,EAAYY,OAAO;YAC5BD,IAAII,IAAI,CAACH;QACX;IACF;IACA,OAAOD;AACT;AAWA,SAASM,aAAaC,YAAoB;IACxC,OAAOA,aAAaC,OAAO,CAAC,YAAY,SAAUC,KAAK;QACrD,OAAO,MAAMA,MAAMC,WAAW;IAChC;AACF;AAEA,MAAMC,oBAAoB,IAAIC,IAAI;IAChC;IACA;IACA;IACA;CACD;AACD,SAASC,WAAWC,MAAc,EAAEC,GAAW;IAC7C,uFAAuF;IACvF,sDAAsD;IACtD,4DAA4D;IAC5D,IAAIJ,kBAAkBK,GAAG,CAACF,WAAWC,QAAQ,OAAO;QAClD,OAAOD;IACT;IACA,IAAIA,OAAOG,UAAU,CAAC,UAAUH,OAAOG,UAAU,CAAC,aAAa;QAC7DF,MAAMT,aAAaS;IACrB;IACA,OAAOD,SAAS,MAAMC;AACxB;AAEA,SAASG,WAAW,EAClBzB,OAAO,EACP0B,UAAU,EACVC,cAAc,EAKf;IACC,IAAI,CAAC3B,SAAS,OAAO;IACrB,OAAOK,WACLuB,OAAOC,OAAO,CAAC7B,SAAS8B,GAAG,CAAC,CAAC,CAACC,GAAGC,EAAE;QACjC,OAAO,OAAOA,MAAM,cAChB,OACAnC,KAAK;YACH,GAAI8B,kBAAkB;gBAAE5B,UAAUqB,WAAWO,gBAAgBI;YAAG,CAAC;YACjE,GAAIL,cAAc;gBAAE5B,MAAMsB,WAAWM,YAAYK;YAAG,CAAC;YACrD/B,SAAS,OAAOgC,MAAM,WAAWA,IAAIA,KAAAA,OAAAA,KAAAA,IAAAA,EAAG5B,QAAQ;QAClD;IACN;AAEJ;AAEO,SAAS6B,UAAU,EACxBN,cAAc,EACdD,UAAU,EACVQ,QAAQ,EAKT;IACC,IAAI,OAAOA,aAAa,eAAeA,aAAa,MAAM;QACxD,OAAO;IACT;IAEA,OAAO7B,WACL6B,SAASJ,GAAG,CAAC,CAAC9B;QACZ,IACE,OAAOA,YAAY,YACnB,OAAOA,YAAY,YACnBA,mBAAmBmC,KACnB;YACA,OAAOtC,KAAK;gBACV,GAAI8B,iBACA;oBAAE5B,UAAU4B;gBAAe,IAC3B;oBAAE7B,MAAM4B;gBAAW,CAAC;gBACxB1B;YACF;QACF,OAAO;YACL,OAAOyB,WAAW;gBAChBC;gBACAC;gBACA3B;YACF;QACF;IACF;AAEJ","ignoreList":[0]}}, - {"offset": {"line": 6978, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/constants.ts"],"sourcesContent":["import type { ViewportLayout } from './types/extra-types'\nimport type { Icons } from './types/metadata-types'\n\nexport const ViewportMetaKeys: { [k in keyof ViewportLayout]: string } = {\n width: 'width',\n height: 'height',\n initialScale: 'initial-scale',\n minimumScale: 'minimum-scale',\n maximumScale: 'maximum-scale',\n viewportFit: 'viewport-fit',\n userScalable: 'user-scalable',\n interactiveWidget: 'interactive-widget',\n} as const\n\nexport const IconKeys: (keyof Icons)[] = ['icon', 'shortcut', 'apple', 'other']\n"],"names":["ViewportMetaKeys","width","height","initialScale","minimumScale","maximumScale","viewportFit","userScalable","interactiveWidget","IconKeys"],"mappings":";;;;;;AAGO,MAAMA,mBAA4D;IACvEC,OAAO;IACPC,QAAQ;IACRC,cAAc;IACdC,cAAc;IACdC,cAAc;IACdC,aAAa;IACbC,cAAc;IACdC,mBAAmB;AACrB,EAAU;AAEH,MAAMC,WAA4B;IAAC;IAAQ;IAAY;IAAS;CAAQ,CAAA","ignoreList":[0]}}, - {"offset": {"line": 7004, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/utils.ts"],"sourcesContent":["function resolveArray(value: T | T[]): T[] {\n if (Array.isArray(value)) {\n return value as any\n }\n return [value] as any\n}\n\nfunction resolveAsArrayOrUndefined(\n value: T | T[] | undefined | null\n): T extends undefined | null ? undefined : T[] {\n if (typeof value === 'undefined' || value === null) {\n return undefined as any\n }\n return resolveArray(value) as any\n}\n\nfunction getOrigin(url: string | URL): string | undefined {\n let origin = undefined\n if (typeof url === 'string') {\n try {\n url = new URL(url)\n origin = url.origin\n } catch {}\n }\n return origin\n}\n\nexport { resolveAsArrayOrUndefined, resolveArray, getOrigin }\n"],"names":["resolveArray","value","Array","isArray","resolveAsArrayOrUndefined","undefined","getOrigin","url","origin","URL"],"mappings":";;;;;;;;AAAA,SAASA,aAAgBC,KAAc;IACrC,IAAIC,MAAMC,OAAO,CAACF,QAAQ;QACxB,OAAOA;IACT;IACA,OAAO;QAACA;KAAM;AAChB;AAEA,SAASG,0BACPH,KAAiC;IAEjC,IAAI,OAAOA,UAAU,eAAeA,UAAU,MAAM;QAClD,OAAOI;IACT;IACA,OAAOL,aAAaC;AACtB;AAEA,SAASK,UAAUC,GAAiB;IAClC,IAAIC,SAASH;IACb,IAAI,OAAOE,QAAQ,UAAU;QAC3B,IAAI;YACFA,MAAM,IAAIE,IAAIF;YACdC,SAASD,IAAIC,MAAM;QACrB,EAAE,OAAM,CAAC;IACX;IACA,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 7042, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/basic.tsx"],"sourcesContent":["import type {\n ResolvedMetadata,\n ResolvedViewport,\n Viewport,\n} from '../types/metadata-interface'\nimport type { ViewportLayout } from '../types/extra-types'\n\nimport { Meta, MetaFilter, MultiMeta } from './meta'\nimport { ViewportMetaKeys } from '../constants'\nimport { getOrigin } from './utils'\n\n// convert viewport object to string for viewport meta tag\nfunction resolveViewportLayout(viewport: Viewport) {\n let resolved: string | null = null\n\n if (viewport && typeof viewport === 'object') {\n resolved = ''\n for (const viewportKey_ in ViewportMetaKeys) {\n const viewportKey = viewportKey_ as keyof ViewportLayout\n if (viewportKey in viewport) {\n let value = viewport[viewportKey]\n if (typeof value === 'boolean') {\n value = value ? 'yes' : 'no'\n } else if (!value && viewportKey === 'initialScale') {\n value = undefined\n }\n if (value) {\n if (resolved) resolved += ', '\n resolved += `${ViewportMetaKeys[viewportKey]}=${value}`\n }\n }\n }\n }\n return resolved\n}\n\nexport function ViewportMeta({ viewport }: { viewport: ResolvedViewport }) {\n return MetaFilter([\n ,\n Meta({ name: 'viewport', content: resolveViewportLayout(viewport) }),\n ...(viewport.themeColor\n ? viewport.themeColor.map((themeColor) =>\n Meta({\n name: 'theme-color',\n content: themeColor.color,\n media: themeColor.media,\n })\n )\n : []),\n Meta({ name: 'color-scheme', content: viewport.colorScheme }),\n ])\n}\n\nexport function BasicMeta({ metadata }: { metadata: ResolvedMetadata }) {\n const manifestOrigin = metadata.manifest\n ? getOrigin(metadata.manifest)\n : undefined\n\n return MetaFilter([\n metadata.title !== null && metadata.title.absolute ? (\n {metadata.title.absolute}\n ) : null,\n Meta({ name: 'description', content: metadata.description }),\n Meta({ name: 'application-name', content: metadata.applicationName }),\n ...(metadata.authors\n ? metadata.authors.map((author) => [\n author.url ? (\n \n ) : null,\n Meta({ name: 'author', content: author.name }),\n ])\n : []),\n metadata.manifest ? (\n \n ) : null,\n Meta({ name: 'generator', content: metadata.generator }),\n Meta({ name: 'keywords', content: metadata.keywords?.join(',') }),\n Meta({ name: 'referrer', content: metadata.referrer }),\n Meta({ name: 'creator', content: metadata.creator }),\n Meta({ name: 'publisher', content: metadata.publisher }),\n Meta({ name: 'robots', content: metadata.robots?.basic }),\n Meta({ name: 'googlebot', content: metadata.robots?.googleBot }),\n Meta({ name: 'abstract', content: metadata.abstract }),\n ...(metadata.archives\n ? metadata.archives.map((archive) => (\n \n ))\n : []),\n ...(metadata.assets\n ? metadata.assets.map((asset) => )\n : []),\n ...(metadata.bookmarks\n ? metadata.bookmarks.map((bookmark) => (\n \n ))\n : []),\n ...(metadata.pagination\n ? [\n metadata.pagination.previous ? (\n \n ) : null,\n metadata.pagination.next ? (\n \n ) : null,\n ]\n : []),\n Meta({ name: 'category', content: metadata.category }),\n Meta({ name: 'classification', content: metadata.classification }),\n ...(metadata.other\n ? Object.entries(metadata.other).map(([name, content]) => {\n if (Array.isArray(content)) {\n return content.map((contentItem) =>\n Meta({ name, content: contentItem })\n )\n } else {\n return Meta({ name, content })\n }\n })\n : []),\n ])\n}\n\nexport function ItunesMeta({ itunes }: { itunes: ResolvedMetadata['itunes'] }) {\n if (!itunes) return null\n const { appId, appArgument } = itunes\n let content = `app-id=${appId}`\n if (appArgument) {\n content += `, app-argument=${appArgument}`\n }\n return \n}\n\nexport function FacebookMeta({\n facebook,\n}: {\n facebook: ResolvedMetadata['facebook']\n}) {\n if (!facebook) return null\n\n const { appId, admins } = facebook\n\n return MetaFilter([\n appId ? : null,\n ...(admins\n ? admins.map((admin) => )\n : []),\n ])\n}\n\nexport function PinterestMeta({\n pinterest,\n}: {\n pinterest: ResolvedMetadata['pinterest']\n}) {\n if (!pinterest || pinterest.richPin === undefined) return null\n\n const { richPin } = pinterest\n\n return \n}\n\nconst formatDetectionKeys = [\n 'telephone',\n 'date',\n 'address',\n 'email',\n 'url',\n] as const\nexport function FormatDetectionMeta({\n formatDetection,\n}: {\n formatDetection: ResolvedMetadata['formatDetection']\n}) {\n if (!formatDetection) return null\n let content = ''\n for (const key of formatDetectionKeys) {\n if (formatDetection[key] === false) {\n if (content) content += ', '\n content += `${key}=no`\n }\n }\n return content ? : null\n}\n\nexport function AppleWebAppMeta({\n appleWebApp,\n}: {\n appleWebApp: ResolvedMetadata['appleWebApp']\n}) {\n if (!appleWebApp) return null\n\n const { capable, title, startupImage, statusBarStyle } = appleWebApp\n\n return MetaFilter([\n capable ? Meta({ name: 'mobile-web-app-capable', content: 'yes' }) : null,\n Meta({ name: 'apple-mobile-web-app-title', content: title }),\n startupImage\n ? startupImage.map((image) => (\n \n ))\n : null,\n statusBarStyle\n ? Meta({\n name: 'apple-mobile-web-app-status-bar-style',\n content: statusBarStyle,\n })\n : null,\n ])\n}\n\nexport function VerificationMeta({\n verification,\n}: {\n verification: ResolvedMetadata['verification']\n}) {\n if (!verification) return null\n\n return MetaFilter([\n MultiMeta({\n namePrefix: 'google-site-verification',\n contents: verification.google,\n }),\n MultiMeta({ namePrefix: 'y_key', contents: verification.yahoo }),\n MultiMeta({\n namePrefix: 'yandex-verification',\n contents: verification.yandex,\n }),\n MultiMeta({ namePrefix: 'me', contents: verification.me }),\n ...(verification.other\n ? Object.entries(verification.other).map(([key, value]) =>\n MultiMeta({ namePrefix: key, contents: value })\n )\n : []),\n ])\n}\n"],"names":["Meta","MetaFilter","MultiMeta","ViewportMetaKeys","getOrigin","resolveViewportLayout","viewport","resolved","viewportKey_","viewportKey","value","undefined","ViewportMeta","meta","charSet","name","content","themeColor","map","color","media","colorScheme","BasicMeta","metadata","manifestOrigin","manifest","title","absolute","description","applicationName","authors","author","url","link","rel","href","toString","crossOrigin","process","env","VERCEL_ENV","generator","keywords","join","referrer","creator","publisher","robots","basic","googleBot","abstract","archives","archive","assets","asset","bookmarks","bookmark","pagination","previous","next","category","classification","other","Object","entries","Array","isArray","contentItem","ItunesMeta","itunes","appId","appArgument","FacebookMeta","facebook","admins","property","admin","PinterestMeta","pinterest","richPin","formatDetectionKeys","FormatDetectionMeta","formatDetection","key","AppleWebAppMeta","appleWebApp","capable","startupImage","statusBarStyle","image","VerificationMeta","verification","namePrefix","contents","google","yahoo","yandex","me"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7327, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/alternate.tsx"],"sourcesContent":["import type { ResolvedMetadata } from '../types/metadata-interface'\nimport type { AlternateLinkDescriptor } from '../types/alternative-urls-types'\n\nimport React from 'react'\nimport { MetaFilter } from './meta'\n\nfunction AlternateLink({\n descriptor,\n ...props\n}: {\n descriptor: AlternateLinkDescriptor\n} & React.LinkHTMLAttributes) {\n if (!descriptor.url) return null\n return (\n \n )\n}\n\nexport function AlternatesMetadata({\n alternates,\n}: {\n alternates: ResolvedMetadata['alternates']\n}) {\n if (!alternates) return null\n\n const { canonical, languages, media, types } = alternates\n\n return MetaFilter([\n canonical\n ? AlternateLink({ rel: 'canonical', descriptor: canonical })\n : null,\n languages\n ? Object.entries(languages).flatMap(([locale, descriptors]) =>\n descriptors?.map((descriptor) =>\n AlternateLink({ rel: 'alternate', hrefLang: locale, descriptor })\n )\n )\n : null,\n media\n ? Object.entries(media).flatMap(([mediaName, descriptors]) =>\n descriptors?.map((descriptor) =>\n AlternateLink({ rel: 'alternate', media: mediaName, descriptor })\n )\n )\n : null,\n types\n ? Object.entries(types).flatMap(([type, descriptors]) =>\n descriptors?.map((descriptor) =>\n AlternateLink({ rel: 'alternate', type, descriptor })\n )\n )\n : null,\n ])\n}\n"],"names":["React","MetaFilter","AlternateLink","descriptor","props","url","link","title","href","toString","AlternatesMetadata","alternates","canonical","languages","media","types","rel","Object","entries","flatMap","locale","descriptors","map","hrefLang","mediaName","type"],"mappings":";;;;;AAGA,OAAOA,WAAW,QAAO;AACzB,SAASC,UAAU,QAAQ,SAAQ;;;;AAEnC,SAASC,cAAc,EACrBC,UAAU,EACV,GAAGC,OAGwC;IAC3C,IAAI,CAACD,WAAWE,GAAG,EAAE,OAAO;IAC5B,OAAA,WAAA,OACE,8NAAA,EAACC,QAAAA;QACE,GAAGF,KAAK;QACR,GAAID,WAAWI,KAAK,IAAI;YAAEA,OAAOJ,WAAWI,KAAK;QAAC,CAAC;QACpDC,MAAML,WAAWE,GAAG,CAACI,QAAQ;;AAGnC;AAEO,SAASC,mBAAmB,EACjCC,UAAU,EAGX;IACC,IAAI,CAACA,YAAY,OAAO;IAExB,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAEC,KAAK,EAAEC,KAAK,EAAE,GAAGJ;IAE/C,WAAOV,wLAAAA,EAAW;QAChBW,YACIV,cAAc;YAAEc,KAAK;YAAab,YAAYS;QAAU,KACxD;QACJC,YACII,OAAOC,OAAO,CAACL,WAAWM,OAAO,CAAC,CAAC,CAACC,QAAQC,YAAY,GACtDA,eAAAA,OAAAA,KAAAA,IAAAA,YAAaC,GAAG,CAAC,CAACnB,aAChBD,cAAc;oBAAEc,KAAK;oBAAaO,UAAUH;oBAAQjB;gBAAW,OAGnE;QACJW,QACIG,OAAOC,OAAO,CAACJ,OAAOK,OAAO,CAAC,CAAC,CAACK,WAAWH,YAAY,GACrDA,eAAAA,OAAAA,KAAAA,IAAAA,YAAaC,GAAG,CAAC,CAACnB,aAChBD,cAAc;oBAAEc,KAAK;oBAAaF,OAAOU;oBAAWrB;gBAAW,OAGnE;QACJY,QACIE,OAAOC,OAAO,CAACH,OAAOI,OAAO,CAAC,CAAC,CAACM,MAAMJ,YAAY,GAChDA,eAAAA,OAAAA,KAAAA,IAAAA,YAAaC,GAAG,CAAC,CAACnB,aAChBD,cAAc;oBAAEc,KAAK;oBAAaS;oBAAMtB;gBAAW,OAGvD;KACL;AACH","ignoreList":[0]}}, - {"offset": {"line": 7376, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/opengraph.tsx"],"sourcesContent":["import type { ResolvedMetadata } from '../types/metadata-interface'\nimport type { TwitterAppDescriptor } from '../types/twitter-types'\n\nimport { Meta, MetaFilter, MultiMeta } from './meta'\n\nexport function OpenGraphMetadata({\n openGraph,\n}: {\n openGraph: ResolvedMetadata['openGraph']\n}) {\n if (!openGraph) {\n return null\n }\n\n let typedOpenGraph\n if ('type' in openGraph) {\n const openGraphType = openGraph.type\n switch (openGraphType) {\n case 'website':\n typedOpenGraph = [Meta({ property: 'og:type', content: 'website' })]\n break\n case 'article':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'article' }),\n Meta({\n property: 'article:published_time',\n content: openGraph.publishedTime?.toString(),\n }),\n Meta({\n property: 'article:modified_time',\n content: openGraph.modifiedTime?.toString(),\n }),\n Meta({\n property: 'article:expiration_time',\n content: openGraph.expirationTime?.toString(),\n }),\n MultiMeta({\n propertyPrefix: 'article:author',\n contents: openGraph.authors,\n }),\n Meta({ property: 'article:section', content: openGraph.section }),\n MultiMeta({\n propertyPrefix: 'article:tag',\n contents: openGraph.tags,\n }),\n ]\n break\n case 'book':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'book' }),\n Meta({ property: 'book:isbn', content: openGraph.isbn }),\n Meta({\n property: 'book:release_date',\n content: openGraph.releaseDate,\n }),\n MultiMeta({\n propertyPrefix: 'book:author',\n contents: openGraph.authors,\n }),\n MultiMeta({ propertyPrefix: 'book:tag', contents: openGraph.tags }),\n ]\n break\n case 'profile':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'profile' }),\n Meta({\n property: 'profile:first_name',\n content: openGraph.firstName,\n }),\n Meta({ property: 'profile:last_name', content: openGraph.lastName }),\n Meta({ property: 'profile:username', content: openGraph.username }),\n Meta({ property: 'profile:gender', content: openGraph.gender }),\n ]\n break\n case 'music.song':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'music.song' }),\n Meta({\n property: 'music:duration',\n content: openGraph.duration?.toString(),\n }),\n MultiMeta({\n propertyPrefix: 'music:album',\n contents: openGraph.albums,\n }),\n MultiMeta({\n propertyPrefix: 'music:musician',\n contents: openGraph.musicians,\n }),\n ]\n break\n case 'music.album':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'music.album' }),\n MultiMeta({\n propertyPrefix: 'music:song',\n contents: openGraph.songs,\n }),\n MultiMeta({\n propertyPrefix: 'music:musician',\n contents: openGraph.musicians,\n }),\n Meta({\n property: 'music:release_date',\n content: openGraph.releaseDate,\n }),\n ]\n break\n case 'music.playlist':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'music.playlist' }),\n MultiMeta({\n propertyPrefix: 'music:song',\n contents: openGraph.songs,\n }),\n MultiMeta({\n propertyPrefix: 'music:creator',\n contents: openGraph.creators,\n }),\n ]\n break\n case 'music.radio_station':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'music.radio_station' }),\n MultiMeta({\n propertyPrefix: 'music:creator',\n contents: openGraph.creators,\n }),\n ]\n break\n\n case 'video.movie':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'video.movie' }),\n MultiMeta({\n propertyPrefix: 'video:actor',\n contents: openGraph.actors,\n }),\n MultiMeta({\n propertyPrefix: 'video:director',\n contents: openGraph.directors,\n }),\n MultiMeta({\n propertyPrefix: 'video:writer',\n contents: openGraph.writers,\n }),\n Meta({ property: 'video:duration', content: openGraph.duration }),\n Meta({\n property: 'video:release_date',\n content: openGraph.releaseDate,\n }),\n MultiMeta({ propertyPrefix: 'video:tag', contents: openGraph.tags }),\n ]\n break\n case 'video.episode':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'video.episode' }),\n MultiMeta({\n propertyPrefix: 'video:actor',\n contents: openGraph.actors,\n }),\n MultiMeta({\n propertyPrefix: 'video:director',\n contents: openGraph.directors,\n }),\n MultiMeta({\n propertyPrefix: 'video:writer',\n contents: openGraph.writers,\n }),\n Meta({ property: 'video:duration', content: openGraph.duration }),\n Meta({\n property: 'video:release_date',\n content: openGraph.releaseDate,\n }),\n MultiMeta({ propertyPrefix: 'video:tag', contents: openGraph.tags }),\n Meta({ property: 'video:series', content: openGraph.series }),\n ]\n break\n case 'video.tv_show':\n typedOpenGraph = [\n Meta({ property: 'og:type', content: 'video.tv_show' }),\n ]\n break\n case 'video.other':\n typedOpenGraph = [Meta({ property: 'og:type', content: 'video.other' })]\n break\n\n default:\n const _exhaustiveCheck: never = openGraphType\n throw new Error(`Invalid OpenGraph type: ${_exhaustiveCheck}`)\n }\n }\n\n return MetaFilter([\n Meta({ property: 'og:determiner', content: openGraph.determiner }),\n Meta({ property: 'og:title', content: openGraph.title?.absolute }),\n Meta({ property: 'og:description', content: openGraph.description }),\n Meta({ property: 'og:url', content: openGraph.url?.toString() }),\n Meta({ property: 'og:site_name', content: openGraph.siteName }),\n Meta({ property: 'og:locale', content: openGraph.locale }),\n Meta({ property: 'og:country_name', content: openGraph.countryName }),\n Meta({ property: 'og:ttl', content: openGraph.ttl?.toString() }),\n MultiMeta({ propertyPrefix: 'og:image', contents: openGraph.images }),\n MultiMeta({ propertyPrefix: 'og:video', contents: openGraph.videos }),\n MultiMeta({ propertyPrefix: 'og:audio', contents: openGraph.audio }),\n MultiMeta({ propertyPrefix: 'og:email', contents: openGraph.emails }),\n MultiMeta({\n propertyPrefix: 'og:phone_number',\n contents: openGraph.phoneNumbers,\n }),\n MultiMeta({\n propertyPrefix: 'og:fax_number',\n contents: openGraph.faxNumbers,\n }),\n MultiMeta({\n propertyPrefix: 'og:locale:alternate',\n contents: openGraph.alternateLocale,\n }),\n ...(typedOpenGraph ? typedOpenGraph : []),\n ])\n}\n\nfunction TwitterAppItem({\n app,\n type,\n}: {\n app: TwitterAppDescriptor\n type: 'iphone' | 'ipad' | 'googleplay'\n}) {\n return [\n Meta({ name: `twitter:app:name:${type}`, content: app.name }),\n Meta({ name: `twitter:app:id:${type}`, content: app.id[type] }),\n Meta({\n name: `twitter:app:url:${type}`,\n content: app.url?.[type]?.toString(),\n }),\n ]\n}\n\nexport function TwitterMetadata({\n twitter,\n}: {\n twitter: ResolvedMetadata['twitter']\n}) {\n if (!twitter) return null\n const { card } = twitter\n\n return MetaFilter([\n Meta({ name: 'twitter:card', content: card }),\n Meta({ name: 'twitter:site', content: twitter.site }),\n Meta({ name: 'twitter:site:id', content: twitter.siteId }),\n Meta({ name: 'twitter:creator', content: twitter.creator }),\n Meta({ name: 'twitter:creator:id', content: twitter.creatorId }),\n Meta({ name: 'twitter:title', content: twitter.title?.absolute }),\n Meta({ name: 'twitter:description', content: twitter.description }),\n MultiMeta({ namePrefix: 'twitter:image', contents: twitter.images }),\n ...(card === 'player'\n ? twitter.players.flatMap((player) => [\n Meta({\n name: 'twitter:player',\n content: player.playerUrl.toString(),\n }),\n Meta({\n name: 'twitter:player:stream',\n content: player.streamUrl.toString(),\n }),\n Meta({ name: 'twitter:player:width', content: player.width }),\n Meta({ name: 'twitter:player:height', content: player.height }),\n ])\n : []),\n ...(card === 'app'\n ? [\n TwitterAppItem({ app: twitter.app, type: 'iphone' }),\n TwitterAppItem({ app: twitter.app, type: 'ipad' }),\n TwitterAppItem({ app: twitter.app, type: 'googleplay' }),\n ]\n : []),\n ])\n}\n\nexport function AppLinksMeta({\n appLinks,\n}: {\n appLinks: ResolvedMetadata['appLinks']\n}) {\n if (!appLinks) return null\n return MetaFilter([\n MultiMeta({ propertyPrefix: 'al:ios', contents: appLinks.ios }),\n MultiMeta({ propertyPrefix: 'al:iphone', contents: appLinks.iphone }),\n MultiMeta({ propertyPrefix: 'al:ipad', contents: appLinks.ipad }),\n MultiMeta({ propertyPrefix: 'al:android', contents: appLinks.android }),\n MultiMeta({\n propertyPrefix: 'al:windows_phone',\n contents: appLinks.windows_phone,\n }),\n MultiMeta({ propertyPrefix: 'al:windows', contents: appLinks.windows }),\n MultiMeta({\n propertyPrefix: 'al:windows_universal',\n contents: appLinks.windows_universal,\n }),\n MultiMeta({ propertyPrefix: 'al:web', contents: appLinks.web }),\n ])\n}\n"],"names":["Meta","MetaFilter","MultiMeta","OpenGraphMetadata","openGraph","typedOpenGraph","openGraphType","type","property","content","publishedTime","toString","modifiedTime","expirationTime","propertyPrefix","contents","authors","section","tags","isbn","releaseDate","firstName","lastName","username","gender","duration","albums","musicians","songs","creators","actors","directors","writers","series","_exhaustiveCheck","Error","determiner","title","absolute","description","url","siteName","locale","countryName","ttl","images","videos","audio","emails","phoneNumbers","faxNumbers","alternateLocale","TwitterAppItem","app","name","id","TwitterMetadata","twitter","card","site","siteId","creator","creatorId","namePrefix","players","flatMap","player","playerUrl","streamUrl","width","height","AppLinksMeta","appLinks","ios","iphone","ipad","android","windows_phone","windows","windows_universal","web"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7838, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 7844, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 7851, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/icon-mark.tsx"],"sourcesContent":["'use client'\n\n// This is a client component that only renders during SSR,\n// but will be replaced during streaming with an icon insertion script tag.\n// We don't want it to be presented anywhere so it's only visible during streaming,\n// right after the icon meta tags so that browser can pick it up as soon as it's rendered.\n// Note: we don't just emit the script here because we only need the script if it's not in the head,\n// and we need it to be hoistable alongside the other metadata but sync scripts are not hoistable.\nexport const IconMark = () => {\n if (typeof window !== 'undefined') {\n return null\n }\n return \n}\n"],"names":["IconMark","window","meta","name"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 7859, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/icons.tsx"],"sourcesContent":["import type { ResolvedMetadata } from '../types/metadata-interface'\nimport type { Icon, IconDescriptor } from '../types/metadata-types'\nimport { IconMark } from './icon-mark'\n\nimport { MetaFilter } from './meta'\n\nfunction IconDescriptorLink({ icon }: { icon: IconDescriptor }) {\n const { url, rel = 'icon', ...props } = icon\n\n return \n}\n\nfunction IconLink({ rel, icon }: { rel?: string; icon: Icon }) {\n if (typeof icon === 'object' && !(icon instanceof URL)) {\n if (!icon.rel && rel) icon.rel = rel\n return IconDescriptorLink({ icon })\n } else {\n const href = icon.toString()\n return \n }\n}\n\nexport function IconsMetadata({ icons }: { icons: ResolvedMetadata['icons'] }) {\n if (!icons) return null\n\n const shortcutList = icons.shortcut\n const iconList = icons.icon\n const appleList = icons.apple\n const otherList = icons.other\n\n const hasIcon = Boolean(\n shortcutList?.length ||\n iconList?.length ||\n appleList?.length ||\n otherList?.length\n )\n if (!hasIcon) return null\n\n return MetaFilter([\n shortcutList\n ? shortcutList.map((icon) => IconLink({ rel: 'shortcut icon', icon }))\n : null,\n iconList ? iconList.map((icon) => IconLink({ rel: 'icon', icon })) : null,\n appleList\n ? appleList.map((icon) => IconLink({ rel: 'apple-touch-icon', icon }))\n : null,\n otherList ? otherList.map((icon) => IconDescriptorLink({ icon })) : null,\n hasIcon ? : null,\n ])\n}\n"],"names":["IconMark","MetaFilter","IconDescriptorLink","icon","url","rel","props","link","href","toString","IconLink","URL","IconsMetadata","icons","shortcutList","shortcut","iconList","appleList","apple","otherList","other","hasIcon","Boolean","length","map"],"mappings":";;;;;AAEA,SAASA,QAAQ,QAAQ,cAAa;AAEtC,SAASC,UAAU,QAAQ,SAAQ;;;;AAEnC,SAASC,mBAAmB,EAAEC,IAAI,EAA4B;IAC5D,MAAM,EAAEC,GAAG,EAAEC,MAAM,MAAM,EAAE,GAAGC,OAAO,GAAGH;IAExC,OAAA,WAAA,OAAO,8NAAA,EAACI,QAAAA;QAAKF,KAAKA;QAAKG,MAAMJ,IAAIK,QAAQ;QAAK,GAAGH,KAAK;;AACxD;AAEA,SAASI,SAAS,EAAEL,GAAG,EAAEF,IAAI,EAAgC;IAC3D,IAAI,OAAOA,SAAS,YAAY,CAAEA,CAAAA,gBAAgBQ,GAAE,GAAI;QACtD,IAAI,CAACR,KAAKE,GAAG,IAAIA,KAAKF,KAAKE,GAAG,GAAGA;QACjC,OAAOH,mBAAmB;YAAEC;QAAK;IACnC,OAAO;QACL,MAAMK,OAAOL,KAAKM,QAAQ;QAC1B,OAAA,WAAA,OAAO,8NAAA,EAACF,QAAAA;YAAKF,KAAKA;YAAKG,MAAMA;;IAC/B;AACF;AAEO,SAASI,cAAc,EAAEC,KAAK,EAAwC;IAC3E,IAAI,CAACA,OAAO,OAAO;IAEnB,MAAMC,eAAeD,MAAME,QAAQ;IACnC,MAAMC,WAAWH,MAAMV,IAAI;IAC3B,MAAMc,YAAYJ,MAAMK,KAAK;IAC7B,MAAMC,YAAYN,MAAMO,KAAK;IAE7B,MAAMC,UAAUC,QACdR,CAAAA,gBAAAA,OAAAA,KAAAA,IAAAA,aAAcS,MAAM,KAAA,CAClBP,YAAAA,OAAAA,KAAAA,IAAAA,SAAUO,MAAM,KAAA,CAChBN,aAAAA,OAAAA,KAAAA,IAAAA,UAAWM,MAAM,KAAA,CACjBJ,aAAAA,OAAAA,KAAAA,IAAAA,UAAWI,MAAM;IAErB,IAAI,CAACF,SAAS,OAAO;IAErB,WAAOpB,wLAAAA,EAAW;QAChBa,eACIA,aAAaU,GAAG,CAAC,CAACrB,OAASO,SAAS;gBAAEL,KAAK;gBAAiBF;YAAK,MACjE;QACJa,WAAWA,SAASQ,GAAG,CAAC,CAACrB,OAASO,SAAS;gBAAEL,KAAK;gBAAQF;YAAK,MAAM;QACrEc,YACIA,UAAUO,GAAG,CAAC,CAACrB,OAASO,SAAS;gBAAEL,KAAK;gBAAoBF;YAAK,MACjE;QACJgB,YAAYA,UAAUK,GAAG,CAAC,CAACrB,OAASD,mBAAmB;gBAAEC;YAAK,MAAM;QACpEkB,UAAAA,WAAAA,OAAU,8NAAA,EAACrB,8LAAAA,EAAAA,CAAAA,KAAc;KAC1B;AACH","ignoreList":[0]}}, - {"offset": {"line": 7921, "column": 0}, "map": {"version":3,"sources":[],"names":[],"mappings":""}}, - {"offset": {"line": 7925, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/default-metadata.tsx"],"sourcesContent":["import type {\n ResolvedMetadata,\n ResolvedViewport,\n} from './types/metadata-interface'\n\nexport function createDefaultViewport(): ResolvedViewport {\n return {\n // name=viewport\n width: 'device-width',\n initialScale: 1,\n // visual metadata\n themeColor: null,\n colorScheme: null,\n }\n}\n\nexport function createDefaultMetadata(): ResolvedMetadata {\n return {\n // Deprecated ones\n viewport: null,\n themeColor: null,\n colorScheme: null,\n\n metadataBase: null,\n // Other values are all null\n title: null,\n description: null,\n applicationName: null,\n authors: null,\n generator: null,\n keywords: null,\n referrer: null,\n creator: null,\n publisher: null,\n robots: null,\n manifest: null,\n alternates: {\n canonical: null,\n languages: null,\n media: null,\n types: null,\n },\n icons: null,\n openGraph: null,\n twitter: null,\n verification: {},\n appleWebApp: null,\n formatDetection: null,\n itunes: null,\n facebook: null,\n pinterest: null,\n abstract: null,\n appLinks: null,\n archives: null,\n assets: null,\n bookmarks: null,\n category: null,\n classification: null,\n pagination: {\n previous: null,\n next: null,\n },\n other: {},\n }\n}\n"],"names":["createDefaultViewport","width","initialScale","themeColor","colorScheme","createDefaultMetadata","viewport","metadataBase","title","description","applicationName","authors","generator","keywords","referrer","creator","publisher","robots","manifest","alternates","canonical","languages","media","types","icons","openGraph","twitter","verification","appleWebApp","formatDetection","itunes","facebook","pinterest","abstract","appLinks","archives","assets","bookmarks","category","classification","pagination","previous","next","other"],"mappings":";;;;;;AAKO,SAASA;IACd,OAAO;QACL,gBAAgB;QAChBC,OAAO;QACPC,cAAc;QACd,kBAAkB;QAClBC,YAAY;QACZC,aAAa;IACf;AACF;AAEO,SAASC;IACd,OAAO;QACL,kBAAkB;QAClBC,UAAU;QACVH,YAAY;QACZC,aAAa;QAEbG,cAAc;QACd,4BAA4B;QAC5BC,OAAO;QACPC,aAAa;QACbC,iBAAiB;QACjBC,SAAS;QACTC,WAAW;QACXC,UAAU;QACVC,UAAU;QACVC,SAAS;QACTC,WAAW;QACXC,QAAQ;QACRC,UAAU;QACVC,YAAY;YACVC,WAAW;YACXC,WAAW;YACXC,OAAO;YACPC,OAAO;QACT;QACAC,OAAO;QACPC,WAAW;QACXC,SAAS;QACTC,cAAc,CAAC;QACfC,aAAa;QACbC,iBAAiB;QACjBC,QAAQ;QACRC,UAAU;QACVC,WAAW;QACXC,UAAU;QACVC,UAAU;QACVC,UAAU;QACVC,QAAQ;QACRC,WAAW;QACXC,UAAU;QACVC,gBAAgB;QAChBC,YAAY;YACVC,UAAU;YACVC,MAAM;QACR;QACAC,OAAO,CAAC;IACV;AACF","ignoreList":[0]}}, - {"offset": {"line": 7992, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/isomorphic/path.js"],"sourcesContent":["/**\n * This module is for next.js server internal usage of path module.\n * It will use native path module for nodejs runtime.\n * It will use path-browserify polyfill for edge runtime.\n */\nlet path\n\nif (process.env.NEXT_RUNTIME === 'edge') {\n path = require('next/dist/compiled/path-browserify')\n} else {\n path = require('path')\n}\n\nmodule.exports = path\n"],"names":["path","process","env","NEXT_RUNTIME","require","module","exports"],"mappings":"AAAA;;;;CAIC,GACD,IAAIA;AAEJ,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACLH,OAAOI,QAAQ;AACjB;AAEAC,OAAOC,OAAO,GAAGN","ignoreList":[0]}}, - {"offset": {"line": 8007, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-url.ts"],"sourcesContent":["import path from '../../../shared/lib/isomorphic/path'\nimport type { MetadataContext } from '../types/resolvers'\n\nexport type MetadataBaseURL = URL | null\n\nfunction isStringOrURL(icon: any): icon is string | URL {\n return typeof icon === 'string' || icon instanceof URL\n}\n\nfunction createLocalMetadataBase() {\n // Check if experimental HTTPS is enabled\n const isExperimentalHttps = Boolean(process.env.__NEXT_EXPERIMENTAL_HTTPS)\n const protocol = isExperimentalHttps ? 'https' : 'http'\n return new URL(`${protocol}://localhost:${process.env.PORT || 3000}`)\n}\n\nfunction getPreviewDeploymentUrl(): URL | undefined {\n const origin = process.env.VERCEL_BRANCH_URL || process.env.VERCEL_URL\n return origin ? new URL(`https://${origin}`) : undefined\n}\n\nfunction getProductionDeploymentUrl(): URL | undefined {\n const origin = process.env.VERCEL_PROJECT_PRODUCTION_URL\n return origin ? new URL(`https://${origin}`) : undefined\n}\n\n/**\n * Given an optional user-provided metadataBase, this determines what the metadataBase should\n * fallback to. Specifically:\n * - In dev, it should always be localhost\n * - In Vercel preview builds, it should be the preview build ID\n * - In start, it should be the user-provided metadataBase value. Otherwise,\n * it'll fall back to the Vercel production deployment, and localhost as a last resort.\n */\nexport function getSocialImageMetadataBaseFallback(\n metadataBase: MetadataBaseURL\n): URL {\n const defaultMetadataBase = createLocalMetadataBase()\n const previewDeploymentUrl = getPreviewDeploymentUrl()\n const productionDeploymentUrl = getProductionDeploymentUrl()\n\n let fallbackMetadataBase\n if (process.env.NODE_ENV === 'development') {\n fallbackMetadataBase = defaultMetadataBase\n } else {\n fallbackMetadataBase =\n process.env.NODE_ENV === 'production' &&\n previewDeploymentUrl &&\n process.env.VERCEL_ENV === 'preview'\n ? previewDeploymentUrl\n : metadataBase || productionDeploymentUrl || defaultMetadataBase\n }\n\n return fallbackMetadataBase\n}\n\nfunction resolveUrl(url: null | undefined, metadataBase: MetadataBaseURL): null\nfunction resolveUrl(url: string | URL, metadataBase: MetadataBaseURL): URL\nfunction resolveUrl(\n url: string | MetadataBaseURL | undefined,\n metadataBase: MetadataBaseURL\n): MetadataBaseURL\nfunction resolveUrl(\n url: string | MetadataBaseURL | undefined,\n metadataBase: MetadataBaseURL\n): MetadataBaseURL {\n if (url instanceof URL) return url\n if (!url) return null\n\n try {\n // If we can construct a URL instance from url, ignore metadataBase\n const parsedUrl = new URL(url)\n return parsedUrl\n } catch {}\n\n if (!metadataBase) {\n metadataBase = createLocalMetadataBase()\n }\n\n // Handle relative or absolute paths\n const pathname = metadataBase.pathname || ''\n const joinedPath = path.posix.join(pathname, url)\n\n return new URL(joinedPath, metadataBase)\n}\n\n// Resolve with `pathname` if `url` is a relative path.\nfunction resolveRelativeUrl(url: string | URL, pathname: string): string | URL {\n if (typeof url === 'string' && url.startsWith('./')) {\n return path.posix.resolve(pathname, url)\n }\n return url\n}\n\n// The regex is matching logic from packages/next/src/lib/load-custom-routes.ts\nconst FILE_REGEX =\n /^(?:\\/((?!\\.well-known(?:\\/.*)?)(?:[^/]+\\/)*[^/]+\\.\\w+))(\\/?|$)/i\nfunction isFilePattern(pathname: string): boolean {\n return FILE_REGEX.test(pathname)\n}\n\n// Resolve `pathname` if `url` is a relative path the compose with `metadataBase`.\nfunction resolveAbsoluteUrlWithPathname(\n url: string | URL,\n metadataBase: MetadataBaseURL,\n pathname: string,\n { trailingSlash }: MetadataContext\n): string {\n // Resolve url with pathname that always starts with `/`\n url = resolveRelativeUrl(url, pathname)\n\n // Convert string url or URL instance to absolute url string,\n // if there's case needs to be resolved with metadataBase\n let resolvedUrl = ''\n const result = metadataBase ? resolveUrl(url, metadataBase) : url\n if (typeof result === 'string') {\n resolvedUrl = result\n } else {\n resolvedUrl =\n result.pathname === '/' && result.searchParams.size === 0\n ? result.origin\n : result.href\n }\n\n // Add trailing slash if it's enabled for urls matches the condition\n // - Not external, same origin with metadataBase\n // - Doesn't have query\n if (trailingSlash && !resolvedUrl.endsWith('/')) {\n let isRelative = resolvedUrl.startsWith('/')\n let hasQuery = resolvedUrl.includes('?')\n let isExternal = false\n let isFileUrl = false\n\n if (!isRelative) {\n try {\n const parsedUrl = new URL(resolvedUrl)\n isExternal =\n metadataBase != null && parsedUrl.origin !== metadataBase.origin\n isFileUrl = isFilePattern(parsedUrl.pathname)\n } catch {\n // If it's not a valid URL, treat it as external\n isExternal = true\n }\n if (\n // Do not apply trailing slash for file like urls, aligning with the behavior with `trailingSlash`\n !isFileUrl &&\n !isExternal &&\n !hasQuery\n )\n return `${resolvedUrl}/`\n }\n }\n\n return resolvedUrl\n}\n\nexport {\n isStringOrURL,\n resolveUrl,\n resolveRelativeUrl,\n resolveAbsoluteUrlWithPathname,\n}\n"],"names":["path","isStringOrURL","icon","URL","createLocalMetadataBase","isExperimentalHttps","Boolean","process","env","__NEXT_EXPERIMENTAL_HTTPS","protocol","PORT","getPreviewDeploymentUrl","origin","VERCEL_BRANCH_URL","VERCEL_URL","undefined","getProductionDeploymentUrl","VERCEL_PROJECT_PRODUCTION_URL","getSocialImageMetadataBaseFallback","metadataBase","defaultMetadataBase","previewDeploymentUrl","productionDeploymentUrl","fallbackMetadataBase","NODE_ENV","VERCEL_ENV","resolveUrl","url","parsedUrl","pathname","joinedPath","posix","join","resolveRelativeUrl","startsWith","resolve","FILE_REGEX","isFilePattern","test","resolveAbsoluteUrlWithPathname","trailingSlash","resolvedUrl","result","searchParams","size","href","endsWith","isRelative","hasQuery","includes","isExternal","isFileUrl"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 8118, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-title.ts"],"sourcesContent":["import type { Metadata } from '../types/metadata-interface'\nimport type { AbsoluteTemplateString } from '../types/metadata-types'\n\nfunction resolveTitleTemplate(\n template: string | null | undefined,\n title: string\n) {\n return template ? template.replace(/%s/g, title) : title\n}\n\nexport function resolveTitle(\n title: Metadata['title'],\n stashedTemplate: string | null | undefined\n): AbsoluteTemplateString {\n let resolved\n const template =\n typeof title !== 'string' && title && 'template' in title\n ? title.template\n : null\n\n if (typeof title === 'string') {\n resolved = resolveTitleTemplate(stashedTemplate, title)\n } else if (title) {\n if ('default' in title) {\n resolved = resolveTitleTemplate(stashedTemplate, title.default)\n }\n if ('absolute' in title && title.absolute) {\n resolved = title.absolute\n }\n }\n\n if (title && typeof title !== 'string') {\n return {\n template,\n absolute: resolved || '',\n }\n } else {\n return { absolute: resolved || title || '', template }\n }\n}\n"],"names":["resolveTitleTemplate","template","title","replace","resolveTitle","stashedTemplate","resolved","default","absolute"],"mappings":";;;;AAGA,SAASA,qBACPC,QAAmC,EACnCC,KAAa;IAEb,OAAOD,WAAWA,SAASE,OAAO,CAAC,OAAOD,SAASA;AACrD;AAEO,SAASE,aACdF,KAAwB,EACxBG,eAA0C;IAE1C,IAAIC;IACJ,MAAML,WACJ,OAAOC,UAAU,YAAYA,SAAS,cAAcA,QAChDA,MAAMD,QAAQ,GACd;IAEN,IAAI,OAAOC,UAAU,UAAU;QAC7BI,WAAWN,qBAAqBK,iBAAiBH;IACnD,OAAO,IAAIA,OAAO;QAChB,IAAI,aAAaA,OAAO;YACtBI,WAAWN,qBAAqBK,iBAAiBH,MAAMK,OAAO;QAChE;QACA,IAAI,cAAcL,SAASA,MAAMM,QAAQ,EAAE;YACzCF,WAAWJ,MAAMM,QAAQ;QAC3B;IACF;IAEA,IAAIN,SAAS,OAAOA,UAAU,UAAU;QACtC,OAAO;YACLD;YACAO,UAAUF,YAAY;QACxB;IACF,OAAO;QACL,OAAO;YAAEE,UAAUF,YAAYJ,SAAS;YAAID;QAAS;IACvD;AACF","ignoreList":[0]}}, - {"offset": {"line": 8154, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-headers.ts"],"sourcesContent":["export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n"],"names":["RSC_HEADER","ACTION_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_HMR_REFRESH_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_URL","RSC_CONTENT_TYPE_HEADER","FLIGHT_HEADERS","NEXT_RSC_UNION_QUERY","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_ACTION_REVALIDATED_HEADER"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAO,MAAMA,aAAa,MAAc;AACjC,MAAMC,gBAAgB,cAAsB;AAI5C,MAAMC,gCAAgC,yBAAiC;AACvE,MAAMC,8BAA8B,uBAA+B;AAKnE,MAAMC,sCACX,+BAAuC;AAClC,MAAMC,0BAA0B,mBAA2B;AAC3D,MAAMC,+BAA+B,4BAAoC;AACzE,MAAMC,WAAW,WAAmB;AACpC,MAAMC,0BAA0B,mBAA2B;AAE3D,MAAMC,iBAAiB;IAC5BT;IACAE;IACAC;IACAE;IACAD;CACD,CAAS;AAEH,MAAMM,uBAAuB,OAAe;AAE5C,MAAMC,gCAAgC,sBAA8B;AACpE,MAAMC,2BAA2B,qBAA6B;AAC9D,MAAMC,6BAA6B,0BAAkC;AACrE,MAAMC,8BAA8B,2BAAmC;AACvE,MAAMC,2BAA2B,qBAA6B;AAC9D,MAAMC,+BAA+B,4BAAoC;AACzE,MAAMC,yBAAyB,sBAA8B;AAC7D,MAAMC,8BAA8B,2BAAmC;AAGvE,MAAMC,iCAAiC,uBAA+B","ignoreList":[0]}}, - {"offset": {"line": 8226, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/url.ts"],"sourcesContent":["import type { UrlWithParsedQuery } from 'url'\nimport { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\n\nconst DUMMY_ORIGIN = 'http://n'\n\nexport function isFullStringUrl(url: string) {\n return /https?:\\/\\//.test(url)\n}\n\nexport function parseUrl(url: string): URL | undefined {\n let parsed: URL | undefined = undefined\n try {\n parsed = new URL(url, DUMMY_ORIGIN)\n } catch {}\n return parsed\n}\n\nexport function parseReqUrl(url: string): UrlWithParsedQuery | undefined {\n const parsedUrl: URL | undefined = parseUrl(url)\n\n if (!parsedUrl) {\n return\n }\n\n const query: Record = {}\n\n for (const key of parsedUrl.searchParams.keys()) {\n const values = parsedUrl.searchParams.getAll(key)\n query[key] = values.length > 1 ? values : values[0]\n }\n\n const legacyUrl: UrlWithParsedQuery = {\n query,\n hash: parsedUrl.hash,\n search: parsedUrl.search,\n path: parsedUrl.pathname,\n pathname: parsedUrl.pathname,\n href: `${parsedUrl.pathname}${parsedUrl.search}${parsedUrl.hash}`,\n host: '',\n hostname: '',\n auth: '',\n protocol: '',\n slashes: null,\n port: '',\n }\n return legacyUrl\n}\n\nexport function stripNextRscUnionQuery(relativeUrl: string): string {\n const urlInstance = new URL(relativeUrl, DUMMY_ORIGIN)\n urlInstance.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n return urlInstance.pathname + urlInstance.search\n}\n"],"names":["NEXT_RSC_UNION_QUERY","DUMMY_ORIGIN","isFullStringUrl","url","test","parseUrl","parsed","undefined","URL","parseReqUrl","parsedUrl","query","key","searchParams","keys","values","getAll","length","legacyUrl","hash","search","path","pathname","href","host","hostname","auth","protocol","slashes","port","stripNextRscUnionQuery","relativeUrl","urlInstance","delete"],"mappings":";;;;;;;;;;AACA,SAASA,oBAAoB,QAAQ,0CAAyC;;AAE9E,MAAMC,eAAe;AAEd,SAASC,gBAAgBC,GAAW;IACzC,OAAO,cAAcC,IAAI,CAACD;AAC5B;AAEO,SAASE,SAASF,GAAW;IAClC,IAAIG,SAA0BC;IAC9B,IAAI;QACFD,SAAS,IAAIE,IAAIL,KAAKF;IACxB,EAAE,OAAM,CAAC;IACT,OAAOK;AACT;AAEO,SAASG,YAAYN,GAAW;IACrC,MAAMO,YAA6BL,SAASF;IAE5C,IAAI,CAACO,WAAW;QACd;IACF;IAEA,MAAMC,QAA2C,CAAC;IAElD,KAAK,MAAMC,OAAOF,UAAUG,YAAY,CAACC,IAAI,GAAI;QAC/C,MAAMC,SAASL,UAAUG,YAAY,CAACG,MAAM,CAACJ;QAC7CD,KAAK,CAACC,IAAI,GAAGG,OAAOE,MAAM,GAAG,IAAIF,SAASA,MAAM,CAAC,EAAE;IACrD;IAEA,MAAMG,YAAgC;QACpCP;QACAQ,MAAMT,UAAUS,IAAI;QACpBC,QAAQV,UAAUU,MAAM;QACxBC,MAAMX,UAAUY,QAAQ;QACxBA,UAAUZ,UAAUY,QAAQ;QAC5BC,MAAM,GAAGb,UAAUY,QAAQ,GAAGZ,UAAUU,MAAM,GAAGV,UAAUS,IAAI,EAAE;QACjEK,MAAM;QACNC,UAAU;QACVC,MAAM;QACNC,UAAU;QACVC,SAAS;QACTC,MAAM;IACR;IACA,OAAOX;AACT;AAEO,SAASY,uBAAuBC,WAAmB;IACxD,MAAMC,cAAc,IAAIxB,IAAIuB,aAAa9B;IACzC+B,YAAYnB,YAAY,CAACoB,MAAM,CAACjC,+MAAAA;IAEhC,OAAOgC,YAAYV,QAAQ,GAAGU,YAAYZ,MAAM;AAClD","ignoreList":[0]}}, - {"offset": {"line": 8284, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/picocolors.ts"],"sourcesContent":["// ISC License\n\n// Copyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov\n\n// Permission to use, copy, modify, and/or distribute this software for any\n// purpose with or without fee is hereby granted, provided that the above\n// copyright notice and this permission notice appear in all copies.\n\n// THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n//\n// https://github.com/alexeyraspopov/picocolors/blob/b6261487e7b81aaab2440e397a356732cad9e342/picocolors.js#L1\n\nconst { env, stdout } = globalThis?.process ?? {}\n\nconst enabled =\n env &&\n !env.NO_COLOR &&\n (env.FORCE_COLOR || (stdout?.isTTY && !env.CI && env.TERM !== 'dumb'))\n\nconst replaceClose = (\n str: string,\n close: string,\n replace: string,\n index: number\n): string => {\n const start = str.substring(0, index) + replace\n const end = str.substring(index + close.length)\n const nextIndex = end.indexOf(close)\n return ~nextIndex\n ? start + replaceClose(end, close, replace, nextIndex)\n : start + end\n}\n\nconst formatter = (open: string, close: string, replace = open) => {\n if (!enabled) return String\n return (input: string) => {\n const string = '' + input\n const index = string.indexOf(close, open.length)\n return ~index\n ? open + replaceClose(string, close, replace, index) + close\n : open + string + close\n }\n}\n\nexport const reset = enabled ? (s: string) => `\\x1b[0m${s}\\x1b[0m` : String\nexport const bold = formatter('\\x1b[1m', '\\x1b[22m', '\\x1b[22m\\x1b[1m')\nexport const dim = formatter('\\x1b[2m', '\\x1b[22m', '\\x1b[22m\\x1b[2m')\nexport const italic = formatter('\\x1b[3m', '\\x1b[23m')\nexport const underline = formatter('\\x1b[4m', '\\x1b[24m')\nexport const inverse = formatter('\\x1b[7m', '\\x1b[27m')\nexport const hidden = formatter('\\x1b[8m', '\\x1b[28m')\nexport const strikethrough = formatter('\\x1b[9m', '\\x1b[29m')\nexport const black = formatter('\\x1b[30m', '\\x1b[39m')\nexport const red = formatter('\\x1b[31m', '\\x1b[39m')\nexport const green = formatter('\\x1b[32m', '\\x1b[39m')\nexport const yellow = formatter('\\x1b[33m', '\\x1b[39m')\nexport const blue = formatter('\\x1b[34m', '\\x1b[39m')\nexport const magenta = formatter('\\x1b[35m', '\\x1b[39m')\nexport const purple = formatter('\\x1b[38;2;173;127;168m', '\\x1b[39m')\nexport const cyan = formatter('\\x1b[36m', '\\x1b[39m')\nexport const white = formatter('\\x1b[37m', '\\x1b[39m')\nexport const gray = formatter('\\x1b[90m', '\\x1b[39m')\nexport const bgBlack = formatter('\\x1b[40m', '\\x1b[49m')\nexport const bgRed = formatter('\\x1b[41m', '\\x1b[49m')\nexport const bgGreen = formatter('\\x1b[42m', '\\x1b[49m')\nexport const bgYellow = formatter('\\x1b[43m', '\\x1b[49m')\nexport const bgBlue = formatter('\\x1b[44m', '\\x1b[49m')\nexport const bgMagenta = formatter('\\x1b[45m', '\\x1b[49m')\nexport const bgCyan = formatter('\\x1b[46m', '\\x1b[49m')\nexport const bgWhite = formatter('\\x1b[47m', '\\x1b[49m')\n"],"names":["globalThis","env","stdout","process","enabled","NO_COLOR","FORCE_COLOR","isTTY","CI","TERM","replaceClose","str","close","replace","index","start","substring","end","length","nextIndex","indexOf","formatter","open","String","input","string","reset","s","bold","dim","italic","underline","inverse","hidden","strikethrough","black","red","green","yellow","blue","magenta","purple","cyan","white","gray","bgBlack","bgRed","bgGreen","bgYellow","bgBlue","bgMagenta","bgCyan","bgWhite"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,cAAc;AAEd,wEAAwE;AAExE,2EAA2E;AAC3E,yEAAyE;AACzE,oEAAoE;AAEpE,2EAA2E;AAC3E,mEAAmE;AACnE,0EAA0E;AAC1E,yEAAyE;AACzE,wEAAwE;AACxE,0EAA0E;AAC1E,iEAAiE;AACjE,EAAE;AACF,8GAA8G;IAEtFA;AAAxB,MAAM,EAAEC,GAAG,EAAEC,MAAM,EAAE,GAAGF,CAAAA,CAAAA,cAAAA,UAAAA,KAAAA,OAAAA,KAAAA,IAAAA,YAAYG,OAAO,KAAI,CAAC;AAEhD,MAAMC,UACJH,OACA,CAACA,IAAII,QAAQ,IACZJ,CAAAA,IAAIK,WAAW,IAAKJ,CAAAA,UAAAA,OAAAA,KAAAA,IAAAA,OAAQK,KAAK,KAAI,CAACN,IAAIO,EAAE,IAAIP,IAAIQ,IAAI,KAAK,MAAM;AAEtE,MAAMC,eAAe,CACnBC,KACAC,OACAC,SACAC;IAEA,MAAMC,QAAQJ,IAAIK,SAAS,CAAC,GAAGF,SAASD;IACxC,MAAMI,MAAMN,IAAIK,SAAS,CAACF,QAAQF,MAAMM,MAAM;IAC9C,MAAMC,YAAYF,IAAIG,OAAO,CAACR;IAC9B,OAAO,CAACO,YACJJ,QAAQL,aAAaO,KAAKL,OAAOC,SAASM,aAC1CJ,QAAQE;AACd;AAEA,MAAMI,YAAY,CAACC,MAAcV,OAAeC,UAAUS,IAAI;IAC5D,IAAI,CAAClB,SAAS,OAAOmB;IACrB,OAAO,CAACC;QACN,MAAMC,SAAS,KAAKD;QACpB,MAAMV,QAAQW,OAAOL,OAAO,CAACR,OAAOU,KAAKJ,MAAM;QAC/C,OAAO,CAACJ,QACJQ,OAAOZ,aAAae,QAAQb,OAAOC,SAASC,SAASF,QACrDU,OAAOG,SAASb;IACtB;AACF;AAEO,MAAMc,QAAQtB,UAAU,CAACuB,IAAc,CAAC,OAAO,EAAEA,EAAE,OAAO,CAAC,GAAGJ,OAAM;AACpE,MAAMK,OAAOP,UAAU,WAAW,YAAY,mBAAkB;AAChE,MAAMQ,MAAMR,UAAU,WAAW,YAAY,mBAAkB;AAC/D,MAAMS,SAAST,UAAU,WAAW,YAAW;AAC/C,MAAMU,YAAYV,UAAU,WAAW,YAAW;AAClD,MAAMW,UAAUX,UAAU,WAAW,YAAW;AAChD,MAAMY,SAASZ,UAAU,WAAW,YAAW;AAC/C,MAAMa,gBAAgBb,UAAU,WAAW,YAAW;AACtD,MAAMc,QAAQd,UAAU,YAAY,YAAW;AAC/C,MAAMe,MAAMf,UAAU,YAAY,YAAW;AAC7C,MAAMgB,QAAQhB,UAAU,YAAY,YAAW;AAC/C,MAAMiB,SAASjB,UAAU,YAAY,YAAW;AAChD,MAAMkB,OAAOlB,UAAU,YAAY,YAAW;AAC9C,MAAMmB,UAAUnB,UAAU,YAAY,YAAW;AACjD,MAAMoB,SAASpB,UAAU,0BAA0B,YAAW;AAC9D,MAAMqB,OAAOrB,UAAU,YAAY,YAAW;AAC9C,MAAMsB,QAAQtB,UAAU,YAAY,YAAW;AAC/C,MAAMuB,OAAOvB,UAAU,YAAY,YAAW;AAC9C,MAAMwB,UAAUxB,UAAU,YAAY,YAAW;AACjD,MAAMyB,QAAQzB,UAAU,YAAY,YAAW;AAC/C,MAAM0B,UAAU1B,UAAU,YAAY,YAAW;AACjD,MAAM2B,WAAW3B,UAAU,YAAY,YAAW;AAClD,MAAM4B,SAAS5B,UAAU,YAAY,YAAW;AAChD,MAAM6B,YAAY7B,UAAU,YAAY,YAAW;AACnD,MAAM8B,SAAS9B,UAAU,YAAY,YAAW;AAChD,MAAM+B,UAAU/B,UAAU,YAAY,YAAW","ignoreList":[0]}}, - {"offset": {"line": 8399, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/lru-cache.ts"],"sourcesContent":["/**\n * Node in the doubly-linked list used for LRU tracking.\n * Each node represents a cache entry with bidirectional pointers.\n */\nclass LRUNode {\n public readonly key: string\n public data: T\n public size: number\n public prev: LRUNode | SentinelNode | null = null\n public next: LRUNode | SentinelNode | null = null\n\n constructor(key: string, data: T, size: number) {\n this.key = key\n this.data = data\n this.size = size\n }\n}\n\n/**\n * Sentinel node used for head/tail boundaries.\n * These nodes don't contain actual cache data but simplify list operations.\n */\nclass SentinelNode {\n public prev: LRUNode | SentinelNode | null = null\n public next: LRUNode | SentinelNode | null = null\n}\n\n/**\n * LRU (Least Recently Used) Cache implementation using a doubly-linked list\n * and hash map for O(1) operations.\n *\n * Algorithm:\n * - Uses a doubly-linked list to maintain access order (most recent at head)\n * - Hash map provides O(1) key-to-node lookup\n * - Sentinel head/tail nodes simplify edge case handling\n * - Size-based eviction supports custom size calculation functions\n *\n * Data Structure Layout:\n * HEAD <-> [most recent] <-> ... <-> [least recent] <-> TAIL\n *\n * Operations:\n * - get(): Move accessed node to head (mark as most recent)\n * - set(): Add new node at head, evict from tail if over capacity\n * - Eviction: Remove least recent node (tail.prev) when size exceeds limit\n */\nexport class LRUCache {\n private readonly cache: Map> = new Map()\n private readonly head: SentinelNode\n private readonly tail: SentinelNode\n private totalSize: number = 0\n private readonly maxSize: number\n private readonly calculateSize: ((value: T) => number) | undefined\n private readonly onEvict: ((key: string, value: T) => void) | undefined\n\n constructor(\n maxSize: number,\n calculateSize?: (value: T) => number,\n onEvict?: (key: string, value: T) => void\n ) {\n this.maxSize = maxSize\n this.calculateSize = calculateSize\n this.onEvict = onEvict\n\n // Create sentinel nodes to simplify doubly-linked list operations\n // HEAD <-> TAIL (empty list)\n this.head = new SentinelNode()\n this.tail = new SentinelNode()\n this.head.next = this.tail\n this.tail.prev = this.head\n }\n\n /**\n * Adds a node immediately after the head (marks as most recently used).\n * Used when inserting new items or when an item is accessed.\n * PRECONDITION: node must be disconnected (prev/next should be null)\n */\n private addToHead(node: LRUNode): void {\n node.prev = this.head\n node.next = this.head.next\n // head.next is always non-null (points to tail or another node)\n this.head.next!.prev = node\n this.head.next = node\n }\n\n /**\n * Removes a node from its current position in the doubly-linked list.\n * Updates the prev/next pointers of adjacent nodes to maintain list integrity.\n * PRECONDITION: node must be connected (prev/next are non-null)\n */\n private removeNode(node: LRUNode): void {\n // Connected nodes always have non-null prev/next\n node.prev!.next = node.next\n node.next!.prev = node.prev\n }\n\n /**\n * Moves an existing node to the head position (marks as most recently used).\n * This is the core LRU operation - accessed items become most recent.\n */\n private moveToHead(node: LRUNode): void {\n this.removeNode(node)\n this.addToHead(node)\n }\n\n /**\n * Removes and returns the least recently used node (the one before tail).\n * This is called during eviction when the cache exceeds capacity.\n * PRECONDITION: cache is not empty (ensured by caller)\n */\n private removeTail(): LRUNode {\n const lastNode = this.tail.prev as LRUNode\n // tail.prev is always non-null and always LRUNode when cache is not empty\n this.removeNode(lastNode)\n return lastNode\n }\n\n /**\n * Sets a key-value pair in the cache.\n * If the key exists, updates the value and moves to head.\n * If new, adds at head and evicts from tail if necessary.\n *\n * Time Complexity:\n * - O(1) for uniform item sizes\n * - O(k) where k is the number of items evicted (can be O(N) for variable sizes)\n */\n public set(key: string, value: T): void {\n const size = this.calculateSize?.(value) ?? 1\n if (size > this.maxSize) {\n console.warn('Single item size exceeds maxSize')\n return\n }\n\n const existing = this.cache.get(key)\n if (existing) {\n // Update existing node: adjust size and move to head (most recent)\n existing.data = value\n this.totalSize = this.totalSize - existing.size + size\n existing.size = size\n this.moveToHead(existing)\n } else {\n // Add new node at head (most recent position)\n const newNode = new LRUNode(key, value, size)\n this.cache.set(key, newNode)\n this.addToHead(newNode)\n this.totalSize += size\n }\n\n // Evict least recently used items until under capacity\n while (this.totalSize > this.maxSize && this.cache.size > 0) {\n const tail = this.removeTail()\n this.cache.delete(tail.key)\n this.totalSize -= tail.size\n this.onEvict?.(tail.key, tail.data)\n }\n }\n\n /**\n * Checks if a key exists in the cache.\n * This is a pure query operation - does NOT update LRU order.\n *\n * Time Complexity: O(1)\n */\n public has(key: string): boolean {\n return this.cache.has(key)\n }\n\n /**\n * Retrieves a value by key and marks it as most recently used.\n * Moving to head maintains the LRU property for future evictions.\n *\n * Time Complexity: O(1)\n */\n public get(key: string): T | undefined {\n const node = this.cache.get(key)\n if (!node) return undefined\n\n // Mark as most recently used by moving to head\n this.moveToHead(node)\n\n return node.data\n }\n\n /**\n * Returns an iterator over the cache entries. The order is outputted in the\n * order of most recently used to least recently used.\n */\n public *[Symbol.iterator](): IterableIterator<[string, T]> {\n let current = this.head.next\n while (current && current !== this.tail) {\n // Between head and tail, current is always LRUNode\n const node = current as LRUNode\n yield [node.key, node.data]\n current = current.next\n }\n }\n\n /**\n * Removes a specific key from the cache.\n * Updates both the hash map and doubly-linked list.\n *\n * Note: This is an explicit removal and does NOT trigger the `onEvict`\n * callback. Use this for intentional deletions where eviction tracking\n * is not needed.\n *\n * Time Complexity: O(1)\n */\n public remove(key: string): void {\n const node = this.cache.get(key)\n if (!node) return\n\n this.removeNode(node)\n this.cache.delete(key)\n this.totalSize -= node.size\n }\n\n /**\n * Returns the number of items in the cache.\n */\n public get size(): number {\n return this.cache.size\n }\n\n /**\n * Returns the current total size of all cached items.\n * This uses the custom size calculation if provided.\n */\n public get currentSize(): number {\n return this.totalSize\n }\n}\n"],"names":["LRUNode","constructor","key","data","size","prev","next","SentinelNode","LRUCache","maxSize","calculateSize","onEvict","cache","Map","totalSize","head","tail","addToHead","node","removeNode","moveToHead","removeTail","lastNode","set","value","console","warn","existing","get","newNode","delete","has","undefined","Symbol","iterator","current","remove","currentSize"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 8578, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/output/log.ts"],"sourcesContent":["import { bold, green, magenta, red, yellow, white } from '../../lib/picocolors'\nimport { LRUCache } from '../../server/lib/lru-cache'\n\nexport const prefixes = {\n wait: white(bold('○')),\n error: red(bold('⨯')),\n warn: yellow(bold('⚠')),\n ready: '▲', // no color\n info: white(bold(' ')),\n event: green(bold('✓')),\n trace: magenta(bold('»')),\n} as const\n\nconst LOGGING_METHOD = {\n log: 'log',\n warn: 'warn',\n error: 'error',\n} as const\n\nfunction prefixedLog(prefixType: keyof typeof prefixes, ...message: any[]) {\n if ((message[0] === '' || message[0] === undefined) && message.length === 1) {\n message.shift()\n }\n\n const consoleMethod: keyof typeof LOGGING_METHOD =\n prefixType in LOGGING_METHOD\n ? LOGGING_METHOD[prefixType as keyof typeof LOGGING_METHOD]\n : 'log'\n\n const prefix = prefixes[prefixType]\n // If there's no message, don't print the prefix but a new line\n if (message.length === 0) {\n console[consoleMethod]('')\n } else {\n // Ensure if there's ANSI escape codes it's concatenated into one string.\n // Chrome DevTool can only handle color if it's in one string.\n if (message.length === 1 && typeof message[0] === 'string') {\n console[consoleMethod](prefix + ' ' + message[0])\n } else {\n console[consoleMethod](prefix, ...message)\n }\n }\n}\n\nexport function bootstrap(message: string) {\n console.log(message)\n}\n\nexport function wait(...message: any[]) {\n prefixedLog('wait', ...message)\n}\n\nexport function error(...message: any[]) {\n prefixedLog('error', ...message)\n}\n\nexport function warn(...message: any[]) {\n prefixedLog('warn', ...message)\n}\n\nexport function ready(...message: any[]) {\n prefixedLog('ready', ...message)\n}\n\nexport function info(...message: any[]) {\n prefixedLog('info', ...message)\n}\n\nexport function event(...message: any[]) {\n prefixedLog('event', ...message)\n}\n\nexport function trace(...message: any[]) {\n prefixedLog('trace', ...message)\n}\n\nconst warnOnceCache = new LRUCache(10_000, (value) => value.length)\nexport function warnOnce(...message: any[]) {\n const key = message.join(' ')\n if (!warnOnceCache.has(key)) {\n warnOnceCache.set(key, key)\n warn(...message)\n }\n}\n\nconst errorOnceCache = new LRUCache(10_000, (value) => value.length)\nexport function errorOnce(...message: any[]) {\n const key = message.join(' ')\n if (!errorOnceCache.has(key)) {\n errorOnceCache.set(key, key)\n error(...message)\n }\n}\n"],"names":["bold","green","magenta","red","yellow","white","LRUCache","prefixes","wait","error","warn","ready","info","event","trace","LOGGING_METHOD","log","prefixedLog","prefixType","message","undefined","length","shift","consoleMethod","prefix","console","bootstrap","warnOnceCache","value","warnOnce","key","join","has","set","errorOnceCache","errorOnce"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,SAASA,IAAI,EAAEC,KAAK,EAAEC,OAAO,EAAEC,GAAG,EAAEC,MAAM,EAAEC,KAAK,QAAQ,uBAAsB;AAC/E,SAASC,QAAQ,QAAQ,6BAA4B;;;AAE9C,MAAMC,WAAW;IACtBC,UAAMH,iKAAAA,MAAML,gKAAAA,EAAK;IACjBS,WAAON,+JAAAA,MAAIH,gKAAAA,EAAK;IAChBU,UAAMN,kKAAAA,MAAOJ,gKAAAA,EAAK;IAClBW,OAAO;IACPC,UAAMP,iKAAAA,MAAML,gKAAAA,EAAK;IACjBa,WAAOZ,iKAAAA,MAAMD,gKAAAA,EAAK;IAClBc,WAAOZ,mKAAAA,MAAQF,gKAAAA,EAAK;AACtB,EAAU;AAEV,MAAMe,iBAAiB;IACrBC,KAAK;IACLN,MAAM;IACND,OAAO;AACT;AAEA,SAASQ,YAAYC,UAAiC,EAAE,GAAGC,OAAc;IACvE,IAAKA,CAAAA,OAAO,CAAC,EAAE,KAAK,MAAMA,OAAO,CAAC,EAAE,KAAKC,SAAQ,KAAMD,QAAQE,MAAM,KAAK,GAAG;QAC3EF,QAAQG,KAAK;IACf;IAEA,MAAMC,gBACJL,cAAcH,iBACVA,cAAc,CAACG,WAA0C,GACzD;IAEN,MAAMM,SAASjB,QAAQ,CAACW,WAAW;IACnC,+DAA+D;IAC/D,IAAIC,QAAQE,MAAM,KAAK,GAAG;QACxBI,OAAO,CAACF,cAAc,CAAC;IACzB,OAAO;QACL,yEAAyE;QACzE,8DAA8D;QAC9D,IAAIJ,QAAQE,MAAM,KAAK,KAAK,OAAOF,OAAO,CAAC,EAAE,KAAK,UAAU;YAC1DM,OAAO,CAACF,cAAc,CAACC,SAAS,MAAML,OAAO,CAAC,EAAE;QAClD,OAAO;YACLM,OAAO,CAACF,cAAc,CAACC,WAAWL;QACpC;IACF;AACF;AAEO,SAASO,UAAUP,OAAe;IACvCM,QAAQT,GAAG,CAACG;AACd;AAEO,SAASX,KAAK,GAAGW,OAAc;IACpCF,YAAY,WAAWE;AACzB;AAEO,SAASV,MAAM,GAAGU,OAAc;IACrCF,YAAY,YAAYE;AAC1B;AAEO,SAAST,KAAK,GAAGS,OAAc;IACpCF,YAAY,WAAWE;AACzB;AAEO,SAASR,MAAM,GAAGQ,OAAc;IACrCF,YAAY,YAAYE;AAC1B;AAEO,SAASP,KAAK,GAAGO,OAAc;IACpCF,YAAY,WAAWE;AACzB;AAEO,SAASN,MAAM,GAAGM,OAAc;IACrCF,YAAY,YAAYE;AAC1B;AAEO,SAASL,MAAM,GAAGK,OAAc;IACrCF,YAAY,YAAYE;AAC1B;AAEA,MAAMQ,gBAAgB,IAAIrB,gLAAAA,CAAiB,OAAQ,CAACsB,QAAUA,MAAMP,MAAM;AACnE,SAASQ,SAAS,GAAGV,OAAc;IACxC,MAAMW,MAAMX,QAAQY,IAAI,CAAC;IACzB,IAAI,CAACJ,cAAcK,GAAG,CAACF,MAAM;QAC3BH,cAAcM,GAAG,CAACH,KAAKA;QACvBpB,QAAQS;IACV;AACF;AAEA,MAAMe,iBAAiB,IAAI5B,gLAAAA,CAAiB,OAAQ,CAACsB,QAAUA,MAAMP,MAAM;AACpE,SAASc,UAAU,GAAGhB,OAAc;IACzC,MAAMW,MAAMX,QAAQY,IAAI,CAAC;IACzB,IAAI,CAACG,eAAeF,GAAG,CAACF,MAAM;QAC5BI,eAAeD,GAAG,CAACH,KAAKA;QACxBrB,SAASU;IACX;AACF","ignoreList":[0]}}, - {"offset": {"line": 8683, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-opengraph.ts"],"sourcesContent":["import type { ResolvedMetadataWithURLs } from '../types/metadata-interface'\nimport type {\n OpenGraphType,\n OpenGraph,\n ResolvedOpenGraph,\n} from '../types/opengraph-types'\nimport type {\n FieldResolverExtraArgs,\n AsyncFieldResolverExtraArgs,\n MetadataContext,\n} from '../types/resolvers'\nimport type { ResolvedTwitterMetadata, Twitter } from '../types/twitter-types'\nimport { resolveArray, resolveAsArrayOrUndefined } from '../generate/utils'\nimport {\n getSocialImageMetadataBaseFallback,\n isStringOrURL,\n resolveUrl,\n resolveAbsoluteUrlWithPathname,\n type MetadataBaseURL,\n} from './resolve-url'\nimport { resolveTitle } from './resolve-title'\nimport { isFullStringUrl } from '../../url'\nimport { warnOnce } from '../../../build/output/log'\n\ntype FlattenArray = T extends (infer U)[] ? U : T\n\nconst OgTypeFields = {\n article: ['authors', 'tags'],\n song: ['albums', 'musicians'],\n playlist: ['albums', 'musicians'],\n radio: ['creators'],\n video: ['actors', 'directors', 'writers', 'tags'],\n basic: [\n 'emails',\n 'phoneNumbers',\n 'faxNumbers',\n 'alternateLocale',\n 'audio',\n 'videos',\n ],\n} as const\n\nfunction resolveAndValidateImage(\n item: FlattenArray,\n metadataBase: MetadataBaseURL,\n isStaticMetadataRouteFile: boolean | undefined\n) {\n if (!item) return undefined\n const isItemUrl = isStringOrURL(item)\n const inputUrl = isItemUrl ? item : item.url\n if (!inputUrl) return undefined\n\n // process.env.VERCEL is set to \"1\" when System Environment Variables are\n // exposed. When exposed, validation is not necessary since we are falling back to\n // process.env.VERCEL_PROJECT_PRODUCTION_URL, process.env.VERCEL_BRANCH_URL, or\n // process.env.VERCEL_URL for the `metadataBase`. process.env.VERCEL is undefined\n // when System Environment Variables are not exposed. When not exposed, we cannot\n // detect in the build environment if the deployment is a Vercel deployment or not.\n //\n // x-ref: https://vercel.com/docs/projects/environment-variables/system-environment-variables#system-environment-variables\n const isUsingVercelSystemEnvironmentVariables = Boolean(process.env.VERCEL)\n\n const isRelativeUrl =\n typeof inputUrl === 'string' && !isFullStringUrl(inputUrl)\n\n // When no explicit metadataBase is specified by the user, we'll override it with the fallback metadata\n // under the following conditions:\n // - The provided URL is relative (ie ./og-image).\n // - The image is statically generated by Next.js (such as the special `opengraph-image` route)\n // In both cases, we want to ensure that across all environments, the ogImage is a fully qualified URL.\n // In the `opengraph-image` case, since the user isn't explicitly passing a relative path, this ensures\n // the ogImage will be properly discovered across different environments without the user needing to\n // have a bunch of `process.env` checks when defining their `metadataBase`.\n if (isRelativeUrl && (!metadataBase || isStaticMetadataRouteFile)) {\n const fallbackMetadataBase =\n getSocialImageMetadataBaseFallback(metadataBase)\n\n // When not using Vercel environment variables for URL injection, we aren't able to determine\n // a fallback value for `metadataBase`. For self-hosted setups, we want to warn\n // about this since the only fallback we'll be able to generate is `localhost`.\n // In development, we'll only warn for relative metadata that isn't part of the static\n // metadata conventions (eg `opengraph-image`), as otherwise it's currently very noisy\n // for common cases. Eventually we should remove this warning all together in favor of\n // devtools.\n const shouldWarn =\n !isUsingVercelSystemEnvironmentVariables &&\n !metadataBase &&\n (process.env.NODE_ENV === 'production' || !isStaticMetadataRouteFile)\n\n if (shouldWarn) {\n warnOnce(\n `metadataBase property in metadata export is not set for resolving social open graph or twitter images, using \"${fallbackMetadataBase.origin}\". See https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase`\n )\n }\n\n metadataBase = fallbackMetadataBase\n }\n\n return isItemUrl\n ? {\n url: resolveUrl(inputUrl, metadataBase),\n }\n : {\n ...item,\n // Update image descriptor url\n url: resolveUrl(inputUrl, metadataBase),\n }\n}\n\nexport function resolveImages(\n images: Twitter['images'],\n metadataBase: MetadataBaseURL,\n isStaticMetadataRouteFile: boolean\n): NonNullable['images']\nexport function resolveImages(\n images: OpenGraph['images'],\n metadataBase: MetadataBaseURL,\n isStaticMetadataRouteFile: boolean\n): NonNullable['images']\nexport function resolveImages(\n images: OpenGraph['images'] | Twitter['images'],\n metadataBase: MetadataBaseURL,\n isStaticMetadataRouteFile: boolean\n):\n | NonNullable['images']\n | NonNullable['images'] {\n const resolvedImages = resolveAsArrayOrUndefined(images)\n if (!resolvedImages) return resolvedImages\n\n const nonNullableImages = []\n for (const item of resolvedImages) {\n const resolvedItem = resolveAndValidateImage(\n item,\n metadataBase,\n isStaticMetadataRouteFile\n )\n if (!resolvedItem) continue\n\n nonNullableImages.push(resolvedItem)\n }\n\n return nonNullableImages\n}\n\nconst ogTypeToFields: Record = {\n article: OgTypeFields.article,\n book: OgTypeFields.article,\n 'music.song': OgTypeFields.song,\n 'music.album': OgTypeFields.song,\n 'music.playlist': OgTypeFields.playlist,\n 'music.radio_station': OgTypeFields.radio,\n 'video.movie': OgTypeFields.video,\n 'video.episode': OgTypeFields.video,\n}\n\nfunction getFieldsByOgType(ogType: OpenGraphType | undefined) {\n if (!ogType || !(ogType in ogTypeToFields)) return OgTypeFields.basic\n return ogTypeToFields[ogType].concat(OgTypeFields.basic)\n}\n\nexport const resolveOpenGraph: AsyncFieldResolverExtraArgs<\n 'openGraph',\n [MetadataBaseURL, Promise, MetadataContext, string | null]\n> = async (\n openGraph,\n metadataBase,\n pathname,\n metadataContext,\n titleTemplate\n) => {\n if (!openGraph) return null\n\n function resolveProps(target: ResolvedOpenGraph, og: OpenGraph) {\n const ogType = og && 'type' in og ? og.type : undefined\n const keys = getFieldsByOgType(ogType)\n for (const k of keys) {\n const key = k as keyof ResolvedOpenGraph\n if (key in og && key !== 'url') {\n const value = og[key]\n // TODO: improve typing inferring\n ;(target as any)[key] = value ? resolveArray(value) : null\n }\n }\n target.images = resolveImages(\n og.images,\n metadataBase,\n metadataContext.isStaticMetadataRouteFile\n )\n }\n\n const resolved = {\n ...openGraph,\n title: resolveTitle(openGraph.title, titleTemplate),\n } as ResolvedOpenGraph\n resolveProps(resolved, openGraph)\n\n resolved.url = openGraph.url\n ? resolveAbsoluteUrlWithPathname(\n openGraph.url,\n metadataBase,\n await pathname,\n metadataContext\n )\n : null\n\n return resolved\n}\n\nconst TwitterBasicInfoKeys = [\n 'site',\n 'siteId',\n 'creator',\n 'creatorId',\n 'description',\n] as const\n\nexport const resolveTwitter: FieldResolverExtraArgs<\n 'twitter',\n [MetadataBaseURL, MetadataContext, string | null]\n> = (twitter, metadataBase, metadataContext, titleTemplate) => {\n if (!twitter) return null\n let card = 'card' in twitter ? twitter.card : undefined\n const resolved = {\n ...twitter,\n title: resolveTitle(twitter.title, titleTemplate),\n } as ResolvedTwitterMetadata\n for (const infoKey of TwitterBasicInfoKeys) {\n resolved[infoKey] = twitter[infoKey] || null\n }\n\n resolved.images = resolveImages(\n twitter.images,\n metadataBase,\n metadataContext.isStaticMetadataRouteFile\n )\n\n card = card || (resolved.images?.length ? 'summary_large_image' : 'summary')\n resolved.card = card\n\n if ('card' in resolved) {\n switch (resolved.card) {\n case 'player': {\n resolved.players = resolveAsArrayOrUndefined(resolved.players) || []\n break\n }\n case 'app': {\n resolved.app = resolved.app || {}\n break\n }\n case 'summary':\n case 'summary_large_image':\n break\n default:\n resolved satisfies never\n }\n }\n\n return resolved\n}\n"],"names":["resolveArray","resolveAsArrayOrUndefined","getSocialImageMetadataBaseFallback","isStringOrURL","resolveUrl","resolveAbsoluteUrlWithPathname","resolveTitle","isFullStringUrl","warnOnce","OgTypeFields","article","song","playlist","radio","video","basic","resolveAndValidateImage","item","metadataBase","isStaticMetadataRouteFile","undefined","isItemUrl","inputUrl","url","isUsingVercelSystemEnvironmentVariables","Boolean","process","env","VERCEL","isRelativeUrl","fallbackMetadataBase","shouldWarn","NODE_ENV","origin","resolveImages","images","resolvedImages","nonNullableImages","resolvedItem","push","ogTypeToFields","book","getFieldsByOgType","ogType","concat","resolveOpenGraph","openGraph","pathname","metadataContext","titleTemplate","resolveProps","target","og","type","keys","k","key","value","resolved","title","TwitterBasicInfoKeys","resolveTwitter","twitter","card","infoKey","length","players","app"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 8871, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment.ts"],"sourcesContent":["import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n"],"names":["getSegmentValue","segment","Array","isArray","isGroupSegment","endsWith","isParallelRouteSegment","startsWith","addSearchParamsIfPageSegment","searchParams","isPageSegment","includes","PAGE_SEGMENT_KEY","stringifiedQuery","JSON","stringify","computeSelectedLayoutSegment","segments","parallelRouteKey","length","rawSegment","DEFAULT_SEGMENT_KEY","getSelectedLayoutSegmentPath","tree","first","segmentPath","node","parallelRoutes","children","Object","values","segmentValue","push","NOT_FOUND_SEGMENT_KEY"],"mappings":";;;;;;;;;;;;;;;;;;;;AAEO,SAASA,gBAAgBC,OAAgB;IAC9C,OAAOC,MAAMC,OAAO,CAACF,WAAWA,OAAO,CAAC,EAAE,GAAGA;AAC/C;AAEO,SAASG,eAAeH,OAAe;IAC5C,sCAAsC;IACtC,OAAOA,OAAO,CAAC,EAAE,KAAK,OAAOA,QAAQI,QAAQ,CAAC;AAChD;AAEO,SAASC,uBAAuBL,OAAe;IACpD,OAAOA,QAAQM,UAAU,CAAC,QAAQN,YAAY;AAChD;AAEO,SAASO,6BACdP,OAAgB,EAChBQ,YAA2D;IAE3D,MAAMC,gBAAgBT,QAAQU,QAAQ,CAACC;IAEvC,IAAIF,eAAe;QACjB,MAAMG,mBAAmBC,KAAKC,SAAS,CAACN;QACxC,OAAOI,qBAAqB,OACxBD,mBAAmB,MAAMC,mBACzBD;IACN;IAEA,OAAOX;AACT;AAEO,SAASe,6BACdC,QAAyB,EACzBC,gBAAwB;IAExB,IAAI,CAACD,YAAYA,SAASE,MAAM,KAAK,GAAG;QACtC,OAAO;IACT;IAEA,iFAAiF;IACjF,MAAMC,aACJF,qBAAqB,aACjBD,QAAQ,CAAC,EAAE,GACXA,QAAQ,CAACA,SAASE,MAAM,GAAG,EAAE;IAEnC,sGAAsG;IACtG,oEAAoE;IACpE,OAAOC,eAAeC,sBAAsB,OAAOD;AACrD;AAGO,SAASE,6BACdC,IAAuB,EACvBL,gBAAwB,EACxBM,QAAQ,IAAI,EACZC,cAAwB,EAAE;IAE1B,IAAIC;IACJ,IAAIF,OAAO;QACT,kEAAkE;QAClEE,OAAOH,IAAI,CAAC,EAAE,CAACL,iBAAiB;IAClC,OAAO;QACL,oGAAoG;QACpG,MAAMS,iBAAiBJ,IAAI,CAAC,EAAE;QAC9BG,OAAOC,eAAeC,QAAQ,IAAIC,OAAOC,MAAM,CAACH,eAAe,CAAC,EAAE;IACpE;IAEA,IAAI,CAACD,MAAM,OAAOD;IAClB,MAAMxB,UAAUyB,IAAI,CAAC,EAAE;IAEvB,IAAIK,eAAe/B,gBAAgBC;IAEnC,IAAI,CAAC8B,gBAAgBA,aAAaxB,UAAU,CAACK,mBAAmB;QAC9D,OAAOa;IACT;IAEAA,YAAYO,IAAI,CAACD;IAEjB,OAAOT,6BACLI,MACAR,kBACA,OACAO;AAEJ;AAEO,MAAMb,mBAAmB,WAAU;AACnC,MAAMS,sBAAsB,cAAa;AACzC,MAAMY,wBAAwB,cAAa","ignoreList":[0]}}, - {"offset": {"line": 8945, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/app-dir-module.ts"],"sourcesContent":["import type { AppDirModules } from '../../build/webpack/loaders/next-app-loader'\nimport { DEFAULT_SEGMENT_KEY } from '../../shared/lib/segment'\n\n/**\n * LoaderTree is generated in next-app-loader.\n */\nexport type LoaderTree = [\n segment: string,\n parallelRoutes: { [parallelRouterKey: string]: LoaderTree },\n modules: AppDirModules,\n]\n\nexport async function getLayoutOrPageModule(loaderTree: LoaderTree) {\n const { layout, page, defaultPage } = loaderTree[2]\n const isLayout = typeof layout !== 'undefined'\n const isPage = typeof page !== 'undefined'\n const isDefaultPage =\n typeof defaultPage !== 'undefined' && loaderTree[0] === DEFAULT_SEGMENT_KEY\n\n let mod = undefined\n let modType: 'layout' | 'page' | undefined = undefined\n let filePath = undefined\n\n if (isLayout) {\n mod = await layout[0]()\n modType = 'layout'\n filePath = layout[1]\n } else if (isPage) {\n mod = await page[0]()\n modType = 'page'\n filePath = page[1]\n } else if (isDefaultPage) {\n mod = await defaultPage[0]()\n modType = 'page'\n filePath = defaultPage[1]\n }\n\n return { mod, modType, filePath }\n}\n\nexport async function getComponentTypeModule(\n loaderTree: LoaderTree,\n moduleType: 'layout' | 'not-found' | 'forbidden' | 'unauthorized'\n) {\n const { [moduleType]: module } = loaderTree[2]\n if (typeof module !== 'undefined') {\n return await module[0]()\n }\n return undefined\n}\n"],"names":["DEFAULT_SEGMENT_KEY","getLayoutOrPageModule","loaderTree","layout","page","defaultPage","isLayout","isPage","isDefaultPage","mod","undefined","modType","filePath","getComponentTypeModule","moduleType","module"],"mappings":";;;;;;AACA,SAASA,mBAAmB,QAAQ,2BAA0B;;AAWvD,eAAeC,sBAAsBC,UAAsB;IAChE,MAAM,EAAEC,MAAM,EAAEC,IAAI,EAAEC,WAAW,EAAE,GAAGH,UAAU,CAAC,EAAE;IACnD,MAAMI,WAAW,OAAOH,WAAW;IACnC,MAAMI,SAAS,OAAOH,SAAS;IAC/B,MAAMI,gBACJ,OAAOH,gBAAgB,eAAeH,UAAU,CAAC,EAAE,KAAKF,sLAAAA;IAE1D,IAAIS,MAAMC;IACV,IAAIC,UAAyCD;IAC7C,IAAIE,WAAWF;IAEf,IAAIJ,UAAU;QACZG,MAAM,MAAMN,MAAM,CAAC,EAAE;QACrBQ,UAAU;QACVC,WAAWT,MAAM,CAAC,EAAE;IACtB,OAAO,IAAII,QAAQ;QACjBE,MAAM,MAAML,IAAI,CAAC,EAAE;QACnBO,UAAU;QACVC,WAAWR,IAAI,CAAC,EAAE;IACpB,OAAO,IAAII,eAAe;QACxBC,MAAM,MAAMJ,WAAW,CAAC,EAAE;QAC1BM,UAAU;QACVC,WAAWP,WAAW,CAAC,EAAE;IAC3B;IAEA,OAAO;QAAEI;QAAKE;QAASC;IAAS;AAClC;AAEO,eAAeC,uBACpBX,UAAsB,EACtBY,UAAiE;IAEjE,MAAM,EAAE,CAACA,WAAW,EAAEC,MAAM,EAAE,GAAGb,UAAU,CAAC,EAAE;IAC9C,IAAI,OAAOa,WAAW,aAAa;QACjC,OAAO,MAAMA,MAAM,CAAC,EAAE;IACxB;IACA,OAAOL;AACT","ignoreList":[0]}}, - {"offset": {"line": 8991, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/interop-default.ts"],"sourcesContent":["export function interopDefault(mod: any) {\n return mod.default || mod\n}\n"],"names":["interopDefault","mod","default"],"mappings":";;;;AAAO,SAASA,eAAeC,GAAQ;IACrC,OAAOA,IAAIC,OAAO,IAAID;AACxB","ignoreList":[0]}}, - {"offset": {"line": 9002, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-basics.ts"],"sourcesContent":["import type { AlternateLinkDescriptor } from '../types/alternative-urls-types'\nimport type {\n Metadata,\n ResolvedMetadataWithURLs,\n Viewport,\n} from '../types/metadata-interface'\nimport type { ResolvedVerification } from '../types/metadata-types'\nimport type {\n FieldResolver,\n AsyncFieldResolverExtraArgs,\n MetadataContext,\n} from '../types/resolvers'\nimport { resolveAsArrayOrUndefined } from '../generate/utils'\nimport {\n resolveAbsoluteUrlWithPathname,\n type MetadataBaseURL,\n} from './resolve-url'\n\nfunction resolveAlternateUrl(\n url: string | URL,\n metadataBase: MetadataBaseURL,\n pathname: string,\n metadataContext: MetadataContext\n) {\n // If alter native url is an URL instance,\n // we treat it as a URL base and resolve with current pathname\n if (url instanceof URL) {\n const newUrl = new URL(pathname, url)\n url.searchParams.forEach((value, key) =>\n newUrl.searchParams.set(key, value)\n )\n url = newUrl\n }\n return resolveAbsoluteUrlWithPathname(\n url,\n metadataBase,\n pathname,\n metadataContext\n )\n}\n\nexport const resolveThemeColor: FieldResolver<'themeColor', Viewport> = (\n themeColor\n) => {\n if (!themeColor) return null\n const themeColorDescriptors: Viewport['themeColor'] = []\n\n resolveAsArrayOrUndefined(themeColor)?.forEach((descriptor) => {\n if (typeof descriptor === 'string')\n themeColorDescriptors.push({ color: descriptor })\n else if (typeof descriptor === 'object')\n themeColorDescriptors.push({\n color: descriptor.color,\n media: descriptor.media,\n })\n })\n\n return themeColorDescriptors\n}\n\nasync function resolveUrlValuesOfObject(\n obj:\n | Record<\n string,\n string | URL | AlternateLinkDescriptor[] | null | undefined\n >\n | null\n | undefined,\n metadataBase: MetadataBaseURL,\n pathname: Promise,\n metadataContext: MetadataContext\n): Promise> {\n if (!obj) return null\n\n const result: Record = {}\n for (const [key, value] of Object.entries(obj)) {\n if (typeof value === 'string' || value instanceof URL) {\n const pathnameForUrl = await pathname\n result[key] = [\n {\n url: resolveAlternateUrl(\n value,\n metadataBase,\n pathnameForUrl,\n metadataContext\n ),\n },\n ]\n } else if (value && value.length) {\n result[key] = []\n const pathnameForUrl = await pathname\n value.forEach((item, index) => {\n const url = resolveAlternateUrl(\n item.url,\n metadataBase,\n pathnameForUrl,\n metadataContext\n )\n result[key][index] = {\n url,\n title: item.title,\n }\n })\n }\n }\n return result\n}\n\nasync function resolveCanonicalUrl(\n urlOrDescriptor: string | URL | null | AlternateLinkDescriptor | undefined,\n metadataBase: MetadataBaseURL,\n pathname: Promise,\n metadataContext: MetadataContext\n): Promise {\n if (!urlOrDescriptor) return null\n\n const url =\n typeof urlOrDescriptor === 'string' || urlOrDescriptor instanceof URL\n ? urlOrDescriptor\n : urlOrDescriptor.url\n\n const pathnameForUrl = await pathname\n\n // Return string url because structureClone can't handle URL instance\n return {\n url: resolveAlternateUrl(\n url,\n metadataBase,\n pathnameForUrl,\n metadataContext\n ),\n }\n}\n\nexport const resolveAlternates: AsyncFieldResolverExtraArgs<\n 'alternates',\n [MetadataBaseURL, Promise, MetadataContext]\n> = async (alternates, metadataBase, pathname, context) => {\n if (!alternates) return null\n\n const canonical = await resolveCanonicalUrl(\n alternates.canonical,\n metadataBase,\n pathname,\n context\n )\n const languages = await resolveUrlValuesOfObject(\n alternates.languages,\n metadataBase,\n pathname,\n context\n )\n const media = await resolveUrlValuesOfObject(\n alternates.media,\n metadataBase,\n pathname,\n context\n )\n const types = await resolveUrlValuesOfObject(\n alternates.types,\n metadataBase,\n pathname,\n context\n )\n\n return {\n canonical,\n languages,\n media,\n types,\n }\n}\n\nconst robotsKeys = [\n 'noarchive',\n 'nosnippet',\n 'noimageindex',\n 'nocache',\n 'notranslate',\n 'indexifembedded',\n 'nositelinkssearchbox',\n 'unavailable_after',\n 'max-video-preview',\n 'max-image-preview',\n 'max-snippet',\n] as const\nconst resolveRobotsValue: (robots: Metadata['robots']) => string | null = (\n robots\n) => {\n if (!robots) return null\n if (typeof robots === 'string') return robots\n\n const values: string[] = []\n\n if (robots.index) values.push('index')\n else if (typeof robots.index === 'boolean') values.push('noindex')\n\n if (robots.follow) values.push('follow')\n else if (typeof robots.follow === 'boolean') values.push('nofollow')\n\n for (const key of robotsKeys) {\n const value = robots[key]\n if (typeof value !== 'undefined' && value !== false) {\n values.push(typeof value === 'boolean' ? key : `${key}:${value}`)\n }\n }\n\n return values.join(', ')\n}\n\nexport const resolveRobots: FieldResolver<'robots'> = (robots) => {\n if (!robots) return null\n return {\n basic: resolveRobotsValue(robots),\n googleBot:\n typeof robots !== 'string' ? resolveRobotsValue(robots.googleBot) : null,\n }\n}\n\nconst VerificationKeys = ['google', 'yahoo', 'yandex', 'me', 'other'] as const\nexport const resolveVerification: FieldResolver<'verification'> = (\n verification\n) => {\n if (!verification) return null\n const res: ResolvedVerification = {}\n\n for (const key of VerificationKeys) {\n const value = verification[key]\n if (value) {\n if (key === 'other') {\n res.other = {}\n for (const otherKey in verification.other) {\n const otherValue = resolveAsArrayOrUndefined(\n verification.other[otherKey]\n )\n if (otherValue) res.other[otherKey] = otherValue\n }\n } else res[key] = resolveAsArrayOrUndefined(value) as (string | number)[]\n }\n }\n return res\n}\n\nexport const resolveAppleWebApp: FieldResolver<'appleWebApp'> = (appWebApp) => {\n if (!appWebApp) return null\n if (appWebApp === true) {\n return {\n capable: true,\n }\n }\n\n const startupImages = appWebApp.startupImage\n ? resolveAsArrayOrUndefined(appWebApp.startupImage)?.map((item) =>\n typeof item === 'string' ? { url: item } : item\n )\n : null\n\n return {\n capable: 'capable' in appWebApp ? !!appWebApp.capable : true,\n title: appWebApp.title || null,\n startupImage: startupImages,\n statusBarStyle: appWebApp.statusBarStyle || 'default',\n }\n}\n\nexport const resolveAppLinks: FieldResolver<'appLinks'> = (appLinks) => {\n if (!appLinks) return null\n for (const key in appLinks) {\n // @ts-ignore // TODO: type infer\n appLinks[key] = resolveAsArrayOrUndefined(appLinks[key])\n }\n return appLinks as ResolvedMetadataWithURLs['appLinks']\n}\n\nexport const resolveItunes: AsyncFieldResolverExtraArgs<\n 'itunes',\n [MetadataBaseURL, Promise, MetadataContext]\n> = async (itunes, metadataBase, pathname, context) => {\n if (!itunes) return null\n return {\n appId: itunes.appId,\n appArgument: itunes.appArgument\n ? resolveAlternateUrl(\n itunes.appArgument,\n metadataBase,\n await pathname,\n context\n )\n : undefined,\n }\n}\n\nexport const resolveFacebook: FieldResolver<'facebook'> = (facebook) => {\n if (!facebook) return null\n return {\n appId: facebook.appId,\n admins: resolveAsArrayOrUndefined(facebook.admins),\n }\n}\n\nexport const resolvePagination: AsyncFieldResolverExtraArgs<\n 'pagination',\n [MetadataBaseURL, Promise, MetadataContext]\n> = async (pagination, metadataBase, pathname, context) => {\n return {\n previous: pagination?.previous\n ? resolveAlternateUrl(\n pagination.previous,\n metadataBase,\n await pathname,\n context\n )\n : null,\n next: pagination?.next\n ? resolveAlternateUrl(\n pagination.next,\n metadataBase,\n await pathname,\n context\n )\n : null,\n }\n}\n"],"names":["resolveAsArrayOrUndefined","resolveAbsoluteUrlWithPathname","resolveAlternateUrl","url","metadataBase","pathname","metadataContext","URL","newUrl","searchParams","forEach","value","key","set","resolveThemeColor","themeColor","themeColorDescriptors","descriptor","push","color","media","resolveUrlValuesOfObject","obj","result","Object","entries","pathnameForUrl","length","item","index","title","resolveCanonicalUrl","urlOrDescriptor","resolveAlternates","alternates","context","canonical","languages","types","robotsKeys","resolveRobotsValue","robots","values","follow","join","resolveRobots","basic","googleBot","VerificationKeys","resolveVerification","verification","res","other","otherKey","otherValue","resolveAppleWebApp","appWebApp","capable","startupImages","startupImage","map","statusBarStyle","resolveAppLinks","appLinks","resolveItunes","itunes","appId","appArgument","undefined","resolveFacebook","facebook","admins","resolvePagination","pagination","previous","next"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9208, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolvers/resolve-icons.ts"],"sourcesContent":["import type { ResolvedMetadataWithURLs } from '../types/metadata-interface'\nimport type { Icon, IconDescriptor } from '../types/metadata-types'\nimport type { FieldResolver } from '../types/resolvers'\nimport { resolveAsArrayOrUndefined } from '../generate/utils'\nimport { isStringOrURL } from './resolve-url'\nimport { IconKeys } from '../constants'\n\nexport function resolveIcon(icon: Icon): IconDescriptor {\n if (isStringOrURL(icon)) return { url: icon }\n else if (Array.isArray(icon)) return icon\n return icon\n}\n\nexport const resolveIcons: FieldResolver<'icons'> = (icons) => {\n if (!icons) {\n return null\n }\n\n const resolved: ResolvedMetadataWithURLs['icons'] = {\n icon: [],\n apple: [],\n }\n if (Array.isArray(icons)) {\n resolved.icon = icons.map(resolveIcon).filter(Boolean)\n } else if (isStringOrURL(icons)) {\n resolved.icon = [resolveIcon(icons)]\n } else {\n for (const key of IconKeys) {\n const values = resolveAsArrayOrUndefined(icons[key])\n if (values) resolved[key] = values.map(resolveIcon)\n }\n }\n return resolved\n}\n"],"names":["resolveAsArrayOrUndefined","isStringOrURL","IconKeys","resolveIcon","icon","url","Array","isArray","resolveIcons","icons","resolved","apple","map","filter","Boolean","key","values"],"mappings":";;;;;;AAGA,SAASA,yBAAyB,QAAQ,oBAAmB;AAC7D,SAASC,aAAa,QAAQ,gBAAe;AAC7C,SAASC,QAAQ,QAAQ,eAAc;;;;AAEhC,SAASC,YAAYC,IAAU;IACpC,QAAIH,sMAAAA,EAAcG,OAAO,OAAO;QAAEC,KAAKD;IAAK;SACvC,IAAIE,MAAMC,OAAO,CAACH,OAAO,OAAOA;IACrC,OAAOA;AACT;AAEO,MAAMI,eAAuC,CAACC;IACnD,IAAI,CAACA,OAAO;QACV,OAAO;IACT;IAEA,MAAMC,WAA8C;QAClDN,MAAM,EAAE;QACRO,OAAO,EAAE;IACX;IACA,IAAIL,MAAMC,OAAO,CAACE,QAAQ;QACxBC,SAASN,IAAI,GAAGK,MAAMG,GAAG,CAACT,aAAaU,MAAM,CAACC;IAChD,OAAO,QAAIb,sMAAAA,EAAcQ,QAAQ;QAC/BC,SAASN,IAAI,GAAG;YAACD,YAAYM;SAAO;IACtC,OAAO;QACL,KAAK,MAAMM,OAAOb,+KAAAA,CAAU;YAC1B,MAAMc,aAAShB,wMAAAA,EAA0BS,KAAK,CAACM,IAAI;YACnD,IAAIC,QAAQN,QAAQ,CAACK,IAAI,GAAGC,OAAOJ,GAAG,CAACT;QACzC;IACF;IACA,OAAOO;AACT,EAAC","ignoreList":[0]}}, - {"offset": {"line": 9253, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/trace/constants.ts"],"sourcesContent":["/**\n * Contains predefined constants for the trace span name in next/server.\n *\n * Currently, next/server/tracer is internal implementation only for tracking\n * next.js's implementation only with known span names defined here.\n **/\n\n// eslint typescript has a bug with TS enums\n\nenum BaseServerSpan {\n handleRequest = 'BaseServer.handleRequest',\n run = 'BaseServer.run',\n pipe = 'BaseServer.pipe',\n getStaticHTML = 'BaseServer.getStaticHTML',\n render = 'BaseServer.render',\n renderToResponseWithComponents = 'BaseServer.renderToResponseWithComponents',\n renderToResponse = 'BaseServer.renderToResponse',\n renderToHTML = 'BaseServer.renderToHTML',\n renderError = 'BaseServer.renderError',\n renderErrorToResponse = 'BaseServer.renderErrorToResponse',\n renderErrorToHTML = 'BaseServer.renderErrorToHTML',\n render404 = 'BaseServer.render404',\n}\n\nenum LoadComponentsSpan {\n loadDefaultErrorComponents = 'LoadComponents.loadDefaultErrorComponents',\n loadComponents = 'LoadComponents.loadComponents',\n}\n\nenum NextServerSpan {\n getRequestHandler = 'NextServer.getRequestHandler',\n getRequestHandlerWithMetadata = 'NextServer.getRequestHandlerWithMetadata',\n getServer = 'NextServer.getServer',\n getServerRequestHandler = 'NextServer.getServerRequestHandler',\n createServer = 'createServer.createServer',\n}\n\nenum NextNodeServerSpan {\n compression = 'NextNodeServer.compression',\n getBuildId = 'NextNodeServer.getBuildId',\n createComponentTree = 'NextNodeServer.createComponentTree',\n clientComponentLoading = 'NextNodeServer.clientComponentLoading',\n getLayoutOrPageModule = 'NextNodeServer.getLayoutOrPageModule',\n generateStaticRoutes = 'NextNodeServer.generateStaticRoutes',\n generateFsStaticRoutes = 'NextNodeServer.generateFsStaticRoutes',\n generatePublicRoutes = 'NextNodeServer.generatePublicRoutes',\n generateImageRoutes = 'NextNodeServer.generateImageRoutes.route',\n sendRenderResult = 'NextNodeServer.sendRenderResult',\n proxyRequest = 'NextNodeServer.proxyRequest',\n runApi = 'NextNodeServer.runApi',\n render = 'NextNodeServer.render',\n renderHTML = 'NextNodeServer.renderHTML',\n imageOptimizer = 'NextNodeServer.imageOptimizer',\n getPagePath = 'NextNodeServer.getPagePath',\n getRoutesManifest = 'NextNodeServer.getRoutesManifest',\n findPageComponents = 'NextNodeServer.findPageComponents',\n getFontManifest = 'NextNodeServer.getFontManifest',\n getServerComponentManifest = 'NextNodeServer.getServerComponentManifest',\n getRequestHandler = 'NextNodeServer.getRequestHandler',\n renderToHTML = 'NextNodeServer.renderToHTML',\n renderError = 'NextNodeServer.renderError',\n renderErrorToHTML = 'NextNodeServer.renderErrorToHTML',\n render404 = 'NextNodeServer.render404',\n startResponse = 'NextNodeServer.startResponse',\n\n // nested inner span, does not require parent scope name\n route = 'route',\n onProxyReq = 'onProxyReq',\n apiResolver = 'apiResolver',\n internalFetch = 'internalFetch',\n}\n\nenum StartServerSpan {\n startServer = 'startServer.startServer',\n}\n\nenum RenderSpan {\n getServerSideProps = 'Render.getServerSideProps',\n getStaticProps = 'Render.getStaticProps',\n renderToString = 'Render.renderToString',\n renderDocument = 'Render.renderDocument',\n createBodyResult = 'Render.createBodyResult',\n}\n\nenum AppRenderSpan {\n renderToString = 'AppRender.renderToString',\n renderToReadableStream = 'AppRender.renderToReadableStream',\n getBodyResult = 'AppRender.getBodyResult',\n fetch = 'AppRender.fetch',\n}\n\nenum RouterSpan {\n executeRoute = 'Router.executeRoute',\n}\n\nenum NodeSpan {\n runHandler = 'Node.runHandler',\n}\n\nenum AppRouteRouteHandlersSpan {\n runHandler = 'AppRouteRouteHandlers.runHandler',\n}\n\nenum ResolveMetadataSpan {\n generateMetadata = 'ResolveMetadata.generateMetadata',\n generateViewport = 'ResolveMetadata.generateViewport',\n}\n\nenum MiddlewareSpan {\n execute = 'Middleware.execute',\n}\n\ntype SpanTypes =\n | `${BaseServerSpan}`\n | `${LoadComponentsSpan}`\n | `${NextServerSpan}`\n | `${StartServerSpan}`\n | `${NextNodeServerSpan}`\n | `${RenderSpan}`\n | `${RouterSpan}`\n | `${AppRenderSpan}`\n | `${NodeSpan}`\n | `${AppRouteRouteHandlersSpan}`\n | `${ResolveMetadataSpan}`\n | `${MiddlewareSpan}`\n\n// This list is used to filter out spans that are not relevant to the user\nexport const NextVanillaSpanAllowlist = new Set([\n MiddlewareSpan.execute,\n BaseServerSpan.handleRequest,\n RenderSpan.getServerSideProps,\n RenderSpan.getStaticProps,\n AppRenderSpan.fetch,\n AppRenderSpan.getBodyResult,\n RenderSpan.renderDocument,\n NodeSpan.runHandler,\n AppRouteRouteHandlersSpan.runHandler,\n ResolveMetadataSpan.generateMetadata,\n ResolveMetadataSpan.generateViewport,\n NextNodeServerSpan.createComponentTree,\n NextNodeServerSpan.findPageComponents,\n NextNodeServerSpan.getLayoutOrPageModule,\n NextNodeServerSpan.startResponse,\n NextNodeServerSpan.clientComponentLoading,\n])\n\n// These Spans are allowed to be always logged\n// when the otel log prefix env is set\nexport const LogSpanAllowList = new Set([\n NextNodeServerSpan.findPageComponents,\n NextNodeServerSpan.createComponentTree,\n NextNodeServerSpan.clientComponentLoading,\n])\n\nexport {\n BaseServerSpan,\n LoadComponentsSpan,\n NextServerSpan,\n NextNodeServerSpan,\n StartServerSpan,\n RenderSpan,\n RouterSpan,\n AppRenderSpan,\n NodeSpan,\n AppRouteRouteHandlersSpan,\n ResolveMetadataSpan,\n MiddlewareSpan,\n}\n\nexport type { SpanTypes }\n"],"names":["BaseServerSpan","LoadComponentsSpan","NextServerSpan","NextNodeServerSpan","StartServerSpan","RenderSpan","AppRenderSpan","RouterSpan","NodeSpan","AppRouteRouteHandlersSpan","ResolveMetadataSpan","MiddlewareSpan","NextVanillaSpanAllowlist","Set","LogSpanAllowList"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;EAKE,GAEF,4CAA4C;AAE5C,IAAKA,iBAAAA,WAAAA,GAAAA,SAAAA,cAAAA;;;;;;;;;;;;;WAAAA;EAAAA,kBAAAA,CAAAA;AAeL,IAAKC,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;WAAAA;EAAAA,sBAAAA,CAAAA;AAKL,IAAKC,iBAAAA,WAAAA,GAAAA,SAAAA,cAAAA;;;;;;WAAAA;EAAAA,kBAAAA,CAAAA;AAQL,IAAKC,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4BH,wDAAwD;;;;;WA5BrDA;EAAAA,sBAAAA,CAAAA;AAmCL,IAAKC,kBAAAA,WAAAA,GAAAA,SAAAA,eAAAA;;WAAAA;EAAAA,mBAAAA,CAAAA;AAIL,IAAKC,aAAAA,WAAAA,GAAAA,SAAAA,UAAAA;;;;;;WAAAA;EAAAA,cAAAA,CAAAA;AAQL,IAAKC,gBAAAA,WAAAA,GAAAA,SAAAA,aAAAA;;;;;WAAAA;EAAAA,iBAAAA,CAAAA;AAOL,IAAKC,aAAAA,WAAAA,GAAAA,SAAAA,UAAAA;;WAAAA;EAAAA,cAAAA,CAAAA;AAIL,IAAKC,WAAAA,WAAAA,GAAAA,SAAAA,QAAAA;;WAAAA;EAAAA,YAAAA,CAAAA;AAIL,IAAKC,4BAAAA,WAAAA,GAAAA,SAAAA,yBAAAA;;WAAAA;EAAAA,6BAAAA,CAAAA;AAIL,IAAKC,sBAAAA,WAAAA,GAAAA,SAAAA,mBAAAA;;;WAAAA;EAAAA,uBAAAA,CAAAA;AAKL,IAAKC,iBAAAA,WAAAA,GAAAA,SAAAA,cAAAA;;WAAAA;EAAAA,kBAAAA,CAAAA;AAmBE,MAAMC,2BAA2B,IAAIC,IAAI;;;;;;;;;;;;;;;;;CAiB/C,EAAC;AAIK,MAAMC,mBAAmB,IAAID,IAAI;;;;CAIvC,EAAC","ignoreList":[0]}}, - {"offset": {"line": 9420, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/is-thenable.ts"],"sourcesContent":["/**\n * Check to see if a value is Thenable.\n *\n * @param promise the maybe-thenable value\n * @returns true if the value is thenable\n */\nexport function isThenable(\n promise: Promise | T\n): promise is Promise {\n return (\n promise !== null &&\n typeof promise === 'object' &&\n 'then' in promise &&\n typeof promise.then === 'function'\n )\n}\n"],"names":["isThenable","promise","then"],"mappings":"AAAA;;;;;CAKC,GACD;;;;AAAO,SAASA,WACdC,OAAuB;IAEvB,OACEA,YAAY,QACZ,OAAOA,YAAY,YACnB,UAAUA,WACV,OAAOA,QAAQC,IAAI,KAAK;AAE5B","ignoreList":[0]}}, - {"offset": {"line": 9435, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/%40opentelemetry/api/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={491:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ContextAPI=void 0;const n=r(223);const a=r(172);const o=r(930);const i=\"context\";const c=new n.NoopContextManager;class ContextAPI{constructor(){}static getInstance(){if(!this._instance){this._instance=new ContextAPI}return this._instance}setGlobalContextManager(e){return(0,a.registerGlobal)(i,e,o.DiagAPI.instance())}active(){return this._getContextManager().active()}with(e,t,r,...n){return this._getContextManager().with(e,t,r,...n)}bind(e,t){return this._getContextManager().bind(e,t)}_getContextManager(){return(0,a.getGlobal)(i)||c}disable(){this._getContextManager().disable();(0,a.unregisterGlobal)(i,o.DiagAPI.instance())}}t.ContextAPI=ContextAPI},930:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagAPI=void 0;const n=r(56);const a=r(912);const o=r(957);const i=r(172);const c=\"diag\";class DiagAPI{constructor(){function _logProxy(e){return function(...t){const r=(0,i.getGlobal)(\"diag\");if(!r)return;return r[e](...t)}}const e=this;const setLogger=(t,r={logLevel:o.DiagLogLevel.INFO})=>{var n,c,s;if(t===e){const t=new Error(\"Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation\");e.error((n=t.stack)!==null&&n!==void 0?n:t.message);return false}if(typeof r===\"number\"){r={logLevel:r}}const u=(0,i.getGlobal)(\"diag\");const l=(0,a.createLogLevelDiagLogger)((c=r.logLevel)!==null&&c!==void 0?c:o.DiagLogLevel.INFO,t);if(u&&!r.suppressOverrideMessage){const e=(s=(new Error).stack)!==null&&s!==void 0?s:\"\";u.warn(`Current logger will be overwritten from ${e}`);l.warn(`Current logger will overwrite one already registered from ${e}`)}return(0,i.registerGlobal)(\"diag\",l,e,true)};e.setLogger=setLogger;e.disable=()=>{(0,i.unregisterGlobal)(c,e)};e.createComponentLogger=e=>new n.DiagComponentLogger(e);e.verbose=_logProxy(\"verbose\");e.debug=_logProxy(\"debug\");e.info=_logProxy(\"info\");e.warn=_logProxy(\"warn\");e.error=_logProxy(\"error\")}static instance(){if(!this._instance){this._instance=new DiagAPI}return this._instance}}t.DiagAPI=DiagAPI},653:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.MetricsAPI=void 0;const n=r(660);const a=r(172);const o=r(930);const i=\"metrics\";class MetricsAPI{constructor(){}static getInstance(){if(!this._instance){this._instance=new MetricsAPI}return this._instance}setGlobalMeterProvider(e){return(0,a.registerGlobal)(i,e,o.DiagAPI.instance())}getMeterProvider(){return(0,a.getGlobal)(i)||n.NOOP_METER_PROVIDER}getMeter(e,t,r){return this.getMeterProvider().getMeter(e,t,r)}disable(){(0,a.unregisterGlobal)(i,o.DiagAPI.instance())}}t.MetricsAPI=MetricsAPI},181:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.PropagationAPI=void 0;const n=r(172);const a=r(874);const o=r(194);const i=r(277);const c=r(369);const s=r(930);const u=\"propagation\";const l=new a.NoopTextMapPropagator;class PropagationAPI{constructor(){this.createBaggage=c.createBaggage;this.getBaggage=i.getBaggage;this.getActiveBaggage=i.getActiveBaggage;this.setBaggage=i.setBaggage;this.deleteBaggage=i.deleteBaggage}static getInstance(){if(!this._instance){this._instance=new PropagationAPI}return this._instance}setGlobalPropagator(e){return(0,n.registerGlobal)(u,e,s.DiagAPI.instance())}inject(e,t,r=o.defaultTextMapSetter){return this._getGlobalPropagator().inject(e,t,r)}extract(e,t,r=o.defaultTextMapGetter){return this._getGlobalPropagator().extract(e,t,r)}fields(){return this._getGlobalPropagator().fields()}disable(){(0,n.unregisterGlobal)(u,s.DiagAPI.instance())}_getGlobalPropagator(){return(0,n.getGlobal)(u)||l}}t.PropagationAPI=PropagationAPI},997:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceAPI=void 0;const n=r(172);const a=r(846);const o=r(139);const i=r(607);const c=r(930);const s=\"trace\";class TraceAPI{constructor(){this._proxyTracerProvider=new a.ProxyTracerProvider;this.wrapSpanContext=o.wrapSpanContext;this.isSpanContextValid=o.isSpanContextValid;this.deleteSpan=i.deleteSpan;this.getSpan=i.getSpan;this.getActiveSpan=i.getActiveSpan;this.getSpanContext=i.getSpanContext;this.setSpan=i.setSpan;this.setSpanContext=i.setSpanContext}static getInstance(){if(!this._instance){this._instance=new TraceAPI}return this._instance}setGlobalTracerProvider(e){const t=(0,n.registerGlobal)(s,this._proxyTracerProvider,c.DiagAPI.instance());if(t){this._proxyTracerProvider.setDelegate(e)}return t}getTracerProvider(){return(0,n.getGlobal)(s)||this._proxyTracerProvider}getTracer(e,t){return this.getTracerProvider().getTracer(e,t)}disable(){(0,n.unregisterGlobal)(s,c.DiagAPI.instance());this._proxyTracerProvider=new a.ProxyTracerProvider}}t.TraceAPI=TraceAPI},277:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.deleteBaggage=t.setBaggage=t.getActiveBaggage=t.getBaggage=void 0;const n=r(491);const a=r(780);const o=(0,a.createContextKey)(\"OpenTelemetry Baggage Key\");function getBaggage(e){return e.getValue(o)||undefined}t.getBaggage=getBaggage;function getActiveBaggage(){return getBaggage(n.ContextAPI.getInstance().active())}t.getActiveBaggage=getActiveBaggage;function setBaggage(e,t){return e.setValue(o,t)}t.setBaggage=setBaggage;function deleteBaggage(e){return e.deleteValue(o)}t.deleteBaggage=deleteBaggage},993:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.BaggageImpl=void 0;class BaggageImpl{constructor(e){this._entries=e?new Map(e):new Map}getEntry(e){const t=this._entries.get(e);if(!t){return undefined}return Object.assign({},t)}getAllEntries(){return Array.from(this._entries.entries()).map((([e,t])=>[e,t]))}setEntry(e,t){const r=new BaggageImpl(this._entries);r._entries.set(e,t);return r}removeEntry(e){const t=new BaggageImpl(this._entries);t._entries.delete(e);return t}removeEntries(...e){const t=new BaggageImpl(this._entries);for(const r of e){t._entries.delete(r)}return t}clear(){return new BaggageImpl}}t.BaggageImpl=BaggageImpl},830:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.baggageEntryMetadataSymbol=void 0;t.baggageEntryMetadataSymbol=Symbol(\"BaggageEntryMetadata\")},369:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.baggageEntryMetadataFromString=t.createBaggage=void 0;const n=r(930);const a=r(993);const o=r(830);const i=n.DiagAPI.instance();function createBaggage(e={}){return new a.BaggageImpl(new Map(Object.entries(e)))}t.createBaggage=createBaggage;function baggageEntryMetadataFromString(e){if(typeof e!==\"string\"){i.error(`Cannot create baggage metadata from unknown type: ${typeof e}`);e=\"\"}return{__TYPE__:o.baggageEntryMetadataSymbol,toString(){return e}}}t.baggageEntryMetadataFromString=baggageEntryMetadataFromString},67:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.context=void 0;const n=r(491);t.context=n.ContextAPI.getInstance()},223:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopContextManager=void 0;const n=r(780);class NoopContextManager{active(){return n.ROOT_CONTEXT}with(e,t,r,...n){return t.call(r,...n)}bind(e,t){return t}enable(){return this}disable(){return this}}t.NoopContextManager=NoopContextManager},780:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ROOT_CONTEXT=t.createContextKey=void 0;function createContextKey(e){return Symbol.for(e)}t.createContextKey=createContextKey;class BaseContext{constructor(e){const t=this;t._currentContext=e?new Map(e):new Map;t.getValue=e=>t._currentContext.get(e);t.setValue=(e,r)=>{const n=new BaseContext(t._currentContext);n._currentContext.set(e,r);return n};t.deleteValue=e=>{const r=new BaseContext(t._currentContext);r._currentContext.delete(e);return r}}}t.ROOT_CONTEXT=new BaseContext},506:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.diag=void 0;const n=r(930);t.diag=n.DiagAPI.instance()},56:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagComponentLogger=void 0;const n=r(172);class DiagComponentLogger{constructor(e){this._namespace=e.namespace||\"DiagComponentLogger\"}debug(...e){return logProxy(\"debug\",this._namespace,e)}error(...e){return logProxy(\"error\",this._namespace,e)}info(...e){return logProxy(\"info\",this._namespace,e)}warn(...e){return logProxy(\"warn\",this._namespace,e)}verbose(...e){return logProxy(\"verbose\",this._namespace,e)}}t.DiagComponentLogger=DiagComponentLogger;function logProxy(e,t,r){const a=(0,n.getGlobal)(\"diag\");if(!a){return}r.unshift(t);return a[e](...r)}},972:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagConsoleLogger=void 0;const r=[{n:\"error\",c:\"error\"},{n:\"warn\",c:\"warn\"},{n:\"info\",c:\"info\"},{n:\"debug\",c:\"debug\"},{n:\"verbose\",c:\"trace\"}];class DiagConsoleLogger{constructor(){function _consoleFunc(e){return function(...t){if(console){let r=console[e];if(typeof r!==\"function\"){r=console.log}if(typeof r===\"function\"){return r.apply(console,t)}}}}for(let e=0;e{Object.defineProperty(t,\"__esModule\",{value:true});t.createLogLevelDiagLogger=void 0;const n=r(957);function createLogLevelDiagLogger(e,t){if(en.DiagLogLevel.ALL){e=n.DiagLogLevel.ALL}t=t||{};function _filterFunc(r,n){const a=t[r];if(typeof a===\"function\"&&e>=n){return a.bind(t)}return function(){}}return{error:_filterFunc(\"error\",n.DiagLogLevel.ERROR),warn:_filterFunc(\"warn\",n.DiagLogLevel.WARN),info:_filterFunc(\"info\",n.DiagLogLevel.INFO),debug:_filterFunc(\"debug\",n.DiagLogLevel.DEBUG),verbose:_filterFunc(\"verbose\",n.DiagLogLevel.VERBOSE)}}t.createLogLevelDiagLogger=createLogLevelDiagLogger},957:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.DiagLogLevel=void 0;var r;(function(e){e[e[\"NONE\"]=0]=\"NONE\";e[e[\"ERROR\"]=30]=\"ERROR\";e[e[\"WARN\"]=50]=\"WARN\";e[e[\"INFO\"]=60]=\"INFO\";e[e[\"DEBUG\"]=70]=\"DEBUG\";e[e[\"VERBOSE\"]=80]=\"VERBOSE\";e[e[\"ALL\"]=9999]=\"ALL\"})(r=t.DiagLogLevel||(t.DiagLogLevel={}))},172:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.unregisterGlobal=t.getGlobal=t.registerGlobal=void 0;const n=r(200);const a=r(521);const o=r(130);const i=a.VERSION.split(\".\")[0];const c=Symbol.for(`opentelemetry.js.api.${i}`);const s=n._globalThis;function registerGlobal(e,t,r,n=false){var o;const i=s[c]=(o=s[c])!==null&&o!==void 0?o:{version:a.VERSION};if(!n&&i[e]){const t=new Error(`@opentelemetry/api: Attempted duplicate registration of API: ${e}`);r.error(t.stack||t.message);return false}if(i.version!==a.VERSION){const t=new Error(`@opentelemetry/api: Registration of version v${i.version} for ${e} does not match previously registered API v${a.VERSION}`);r.error(t.stack||t.message);return false}i[e]=t;r.debug(`@opentelemetry/api: Registered a global for ${e} v${a.VERSION}.`);return true}t.registerGlobal=registerGlobal;function getGlobal(e){var t,r;const n=(t=s[c])===null||t===void 0?void 0:t.version;if(!n||!(0,o.isCompatible)(n)){return}return(r=s[c])===null||r===void 0?void 0:r[e]}t.getGlobal=getGlobal;function unregisterGlobal(e,t){t.debug(`@opentelemetry/api: Unregistering a global for ${e} v${a.VERSION}.`);const r=s[c];if(r){delete r[e]}}t.unregisterGlobal=unregisterGlobal},130:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.isCompatible=t._makeCompatibilityCheck=void 0;const n=r(521);const a=/^(\\d+)\\.(\\d+)\\.(\\d+)(-(.+))?$/;function _makeCompatibilityCheck(e){const t=new Set([e]);const r=new Set;const n=e.match(a);if(!n){return()=>false}const o={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(o.prerelease!=null){return function isExactmatch(t){return t===e}}function _reject(e){r.add(e);return false}function _accept(e){t.add(e);return true}return function isCompatible(e){if(t.has(e)){return true}if(r.has(e)){return false}const n=e.match(a);if(!n){return _reject(e)}const i={major:+n[1],minor:+n[2],patch:+n[3],prerelease:n[4]};if(i.prerelease!=null){return _reject(e)}if(o.major!==i.major){return _reject(e)}if(o.major===0){if(o.minor===i.minor&&o.patch<=i.patch){return _accept(e)}return _reject(e)}if(o.minor<=i.minor){return _accept(e)}return _reject(e)}}t._makeCompatibilityCheck=_makeCompatibilityCheck;t.isCompatible=_makeCompatibilityCheck(n.VERSION)},886:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.metrics=void 0;const n=r(653);t.metrics=n.MetricsAPI.getInstance()},901:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ValueType=void 0;var r;(function(e){e[e[\"INT\"]=0]=\"INT\";e[e[\"DOUBLE\"]=1]=\"DOUBLE\"})(r=t.ValueType||(t.ValueType={}))},102:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.createNoopMeter=t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=t.NOOP_OBSERVABLE_GAUGE_METRIC=t.NOOP_OBSERVABLE_COUNTER_METRIC=t.NOOP_UP_DOWN_COUNTER_METRIC=t.NOOP_HISTOGRAM_METRIC=t.NOOP_COUNTER_METRIC=t.NOOP_METER=t.NoopObservableUpDownCounterMetric=t.NoopObservableGaugeMetric=t.NoopObservableCounterMetric=t.NoopObservableMetric=t.NoopHistogramMetric=t.NoopUpDownCounterMetric=t.NoopCounterMetric=t.NoopMetric=t.NoopMeter=void 0;class NoopMeter{constructor(){}createHistogram(e,r){return t.NOOP_HISTOGRAM_METRIC}createCounter(e,r){return t.NOOP_COUNTER_METRIC}createUpDownCounter(e,r){return t.NOOP_UP_DOWN_COUNTER_METRIC}createObservableGauge(e,r){return t.NOOP_OBSERVABLE_GAUGE_METRIC}createObservableCounter(e,r){return t.NOOP_OBSERVABLE_COUNTER_METRIC}createObservableUpDownCounter(e,r){return t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC}addBatchObservableCallback(e,t){}removeBatchObservableCallback(e){}}t.NoopMeter=NoopMeter;class NoopMetric{}t.NoopMetric=NoopMetric;class NoopCounterMetric extends NoopMetric{add(e,t){}}t.NoopCounterMetric=NoopCounterMetric;class NoopUpDownCounterMetric extends NoopMetric{add(e,t){}}t.NoopUpDownCounterMetric=NoopUpDownCounterMetric;class NoopHistogramMetric extends NoopMetric{record(e,t){}}t.NoopHistogramMetric=NoopHistogramMetric;class NoopObservableMetric{addCallback(e){}removeCallback(e){}}t.NoopObservableMetric=NoopObservableMetric;class NoopObservableCounterMetric extends NoopObservableMetric{}t.NoopObservableCounterMetric=NoopObservableCounterMetric;class NoopObservableGaugeMetric extends NoopObservableMetric{}t.NoopObservableGaugeMetric=NoopObservableGaugeMetric;class NoopObservableUpDownCounterMetric extends NoopObservableMetric{}t.NoopObservableUpDownCounterMetric=NoopObservableUpDownCounterMetric;t.NOOP_METER=new NoopMeter;t.NOOP_COUNTER_METRIC=new NoopCounterMetric;t.NOOP_HISTOGRAM_METRIC=new NoopHistogramMetric;t.NOOP_UP_DOWN_COUNTER_METRIC=new NoopUpDownCounterMetric;t.NOOP_OBSERVABLE_COUNTER_METRIC=new NoopObservableCounterMetric;t.NOOP_OBSERVABLE_GAUGE_METRIC=new NoopObservableGaugeMetric;t.NOOP_OBSERVABLE_UP_DOWN_COUNTER_METRIC=new NoopObservableUpDownCounterMetric;function createNoopMeter(){return t.NOOP_METER}t.createNoopMeter=createNoopMeter},660:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NOOP_METER_PROVIDER=t.NoopMeterProvider=void 0;const n=r(102);class NoopMeterProvider{getMeter(e,t,r){return n.NOOP_METER}}t.NoopMeterProvider=NoopMeterProvider;t.NOOP_METER_PROVIDER=new NoopMeterProvider},200:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){if(n===undefined)n=r;Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){if(n===undefined)n=r;e[n]=t[r]});var a=this&&this.__exportStar||function(e,t){for(var r in e)if(r!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,r))n(t,e,r)};Object.defineProperty(t,\"__esModule\",{value:true});a(r(46),t)},651:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t._globalThis=void 0;t._globalThis=typeof globalThis===\"object\"?globalThis:global},46:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){if(n===undefined)n=r;Object.defineProperty(e,n,{enumerable:true,get:function(){return t[r]}})}:function(e,t,r,n){if(n===undefined)n=r;e[n]=t[r]});var a=this&&this.__exportStar||function(e,t){for(var r in e)if(r!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,r))n(t,e,r)};Object.defineProperty(t,\"__esModule\",{value:true});a(r(651),t)},939:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.propagation=void 0;const n=r(181);t.propagation=n.PropagationAPI.getInstance()},874:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTextMapPropagator=void 0;class NoopTextMapPropagator{inject(e,t){}extract(e,t){return e}fields(){return[]}}t.NoopTextMapPropagator=NoopTextMapPropagator},194:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.defaultTextMapSetter=t.defaultTextMapGetter=void 0;t.defaultTextMapGetter={get(e,t){if(e==null){return undefined}return e[t]},keys(e){if(e==null){return[]}return Object.keys(e)}};t.defaultTextMapSetter={set(e,t,r){if(e==null){return}e[t]=r}}},845:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.trace=void 0;const n=r(997);t.trace=n.TraceAPI.getInstance()},403:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NonRecordingSpan=void 0;const n=r(476);class NonRecordingSpan{constructor(e=n.INVALID_SPAN_CONTEXT){this._spanContext=e}spanContext(){return this._spanContext}setAttribute(e,t){return this}setAttributes(e){return this}addEvent(e,t){return this}setStatus(e){return this}updateName(e){return this}end(e){}isRecording(){return false}recordException(e,t){}}t.NonRecordingSpan=NonRecordingSpan},614:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTracer=void 0;const n=r(491);const a=r(607);const o=r(403);const i=r(139);const c=n.ContextAPI.getInstance();class NoopTracer{startSpan(e,t,r=c.active()){const n=Boolean(t===null||t===void 0?void 0:t.root);if(n){return new o.NonRecordingSpan}const s=r&&(0,a.getSpanContext)(r);if(isSpanContext(s)&&(0,i.isSpanContextValid)(s)){return new o.NonRecordingSpan(s)}else{return new o.NonRecordingSpan}}startActiveSpan(e,t,r,n){let o;let i;let s;if(arguments.length<2){return}else if(arguments.length===2){s=t}else if(arguments.length===3){o=t;s=r}else{o=t;i=r;s=n}const u=i!==null&&i!==void 0?i:c.active();const l=this.startSpan(e,o,u);const g=(0,a.setSpan)(u,l);return c.with(g,s,undefined,l)}}t.NoopTracer=NoopTracer;function isSpanContext(e){return typeof e===\"object\"&&typeof e[\"spanId\"]===\"string\"&&typeof e[\"traceId\"]===\"string\"&&typeof e[\"traceFlags\"]===\"number\"}},124:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.NoopTracerProvider=void 0;const n=r(614);class NoopTracerProvider{getTracer(e,t,r){return new n.NoopTracer}}t.NoopTracerProvider=NoopTracerProvider},125:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ProxyTracer=void 0;const n=r(614);const a=new n.NoopTracer;class ProxyTracer{constructor(e,t,r,n){this._provider=e;this.name=t;this.version=r;this.options=n}startSpan(e,t,r){return this._getTracer().startSpan(e,t,r)}startActiveSpan(e,t,r,n){const a=this._getTracer();return Reflect.apply(a.startActiveSpan,a,arguments)}_getTracer(){if(this._delegate){return this._delegate}const e=this._provider.getDelegateTracer(this.name,this.version,this.options);if(!e){return a}this._delegate=e;return this._delegate}}t.ProxyTracer=ProxyTracer},846:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ProxyTracerProvider=void 0;const n=r(125);const a=r(124);const o=new a.NoopTracerProvider;class ProxyTracerProvider{getTracer(e,t,r){var a;return(a=this.getDelegateTracer(e,t,r))!==null&&a!==void 0?a:new n.ProxyTracer(this,e,t,r)}getDelegate(){var e;return(e=this._delegate)!==null&&e!==void 0?e:o}setDelegate(e){this._delegate=e}getDelegateTracer(e,t,r){var n;return(n=this._delegate)===null||n===void 0?void 0:n.getTracer(e,t,r)}}t.ProxyTracerProvider=ProxyTracerProvider},996:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SamplingDecision=void 0;var r;(function(e){e[e[\"NOT_RECORD\"]=0]=\"NOT_RECORD\";e[e[\"RECORD\"]=1]=\"RECORD\";e[e[\"RECORD_AND_SAMPLED\"]=2]=\"RECORD_AND_SAMPLED\"})(r=t.SamplingDecision||(t.SamplingDecision={}))},607:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.getSpanContext=t.setSpanContext=t.deleteSpan=t.setSpan=t.getActiveSpan=t.getSpan=void 0;const n=r(780);const a=r(403);const o=r(491);const i=(0,n.createContextKey)(\"OpenTelemetry Context Key SPAN\");function getSpan(e){return e.getValue(i)||undefined}t.getSpan=getSpan;function getActiveSpan(){return getSpan(o.ContextAPI.getInstance().active())}t.getActiveSpan=getActiveSpan;function setSpan(e,t){return e.setValue(i,t)}t.setSpan=setSpan;function deleteSpan(e){return e.deleteValue(i)}t.deleteSpan=deleteSpan;function setSpanContext(e,t){return setSpan(e,new a.NonRecordingSpan(t))}t.setSpanContext=setSpanContext;function getSpanContext(e){var t;return(t=getSpan(e))===null||t===void 0?void 0:t.spanContext()}t.getSpanContext=getSpanContext},325:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceStateImpl=void 0;const n=r(564);const a=32;const o=512;const i=\",\";const c=\"=\";class TraceStateImpl{constructor(e){this._internalState=new Map;if(e)this._parse(e)}set(e,t){const r=this._clone();if(r._internalState.has(e)){r._internalState.delete(e)}r._internalState.set(e,t);return r}unset(e){const t=this._clone();t._internalState.delete(e);return t}get(e){return this._internalState.get(e)}serialize(){return this._keys().reduce(((e,t)=>{e.push(t+c+this.get(t));return e}),[]).join(i)}_parse(e){if(e.length>o)return;this._internalState=e.split(i).reverse().reduce(((e,t)=>{const r=t.trim();const a=r.indexOf(c);if(a!==-1){const o=r.slice(0,a);const i=r.slice(a+1,t.length);if((0,n.validateKey)(o)&&(0,n.validateValue)(i)){e.set(o,i)}else{}}return e}),new Map);if(this._internalState.size>a){this._internalState=new Map(Array.from(this._internalState.entries()).reverse().slice(0,a))}}_keys(){return Array.from(this._internalState.keys()).reverse()}_clone(){const e=new TraceStateImpl;e._internalState=new Map(this._internalState);return e}}t.TraceStateImpl=TraceStateImpl},564:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.validateValue=t.validateKey=void 0;const r=\"[_0-9a-z-*/]\";const n=`[a-z]${r}{0,255}`;const a=`[a-z0-9]${r}{0,240}@[a-z]${r}{0,13}`;const o=new RegExp(`^(?:${n}|${a})$`);const i=/^[ -~]{0,255}[!-~]$/;const c=/,|=/;function validateKey(e){return o.test(e)}t.validateKey=validateKey;function validateValue(e){return i.test(e)&&!c.test(e)}t.validateValue=validateValue},98:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.createTraceState=void 0;const n=r(325);function createTraceState(e){return new n.TraceStateImpl(e)}t.createTraceState=createTraceState},476:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.INVALID_SPAN_CONTEXT=t.INVALID_TRACEID=t.INVALID_SPANID=void 0;const n=r(475);t.INVALID_SPANID=\"0000000000000000\";t.INVALID_TRACEID=\"00000000000000000000000000000000\";t.INVALID_SPAN_CONTEXT={traceId:t.INVALID_TRACEID,spanId:t.INVALID_SPANID,traceFlags:n.TraceFlags.NONE}},357:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SpanKind=void 0;var r;(function(e){e[e[\"INTERNAL\"]=0]=\"INTERNAL\";e[e[\"SERVER\"]=1]=\"SERVER\";e[e[\"CLIENT\"]=2]=\"CLIENT\";e[e[\"PRODUCER\"]=3]=\"PRODUCER\";e[e[\"CONSUMER\"]=4]=\"CONSUMER\"})(r=t.SpanKind||(t.SpanKind={}))},139:(e,t,r)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.wrapSpanContext=t.isSpanContextValid=t.isValidSpanId=t.isValidTraceId=void 0;const n=r(476);const a=r(403);const o=/^([0-9a-f]{32})$/i;const i=/^[0-9a-f]{16}$/i;function isValidTraceId(e){return o.test(e)&&e!==n.INVALID_TRACEID}t.isValidTraceId=isValidTraceId;function isValidSpanId(e){return i.test(e)&&e!==n.INVALID_SPANID}t.isValidSpanId=isValidSpanId;function isSpanContextValid(e){return isValidTraceId(e.traceId)&&isValidSpanId(e.spanId)}t.isSpanContextValid=isSpanContextValid;function wrapSpanContext(e){return new a.NonRecordingSpan(e)}t.wrapSpanContext=wrapSpanContext},847:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.SpanStatusCode=void 0;var r;(function(e){e[e[\"UNSET\"]=0]=\"UNSET\";e[e[\"OK\"]=1]=\"OK\";e[e[\"ERROR\"]=2]=\"ERROR\"})(r=t.SpanStatusCode||(t.SpanStatusCode={}))},475:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.TraceFlags=void 0;var r;(function(e){e[e[\"NONE\"]=0]=\"NONE\";e[e[\"SAMPLED\"]=1]=\"SAMPLED\"})(r=t.TraceFlags||(t.TraceFlags={}))},521:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.VERSION=void 0;t.VERSION=\"1.6.0\"}};var t={};function __nccwpck_require__(r){var n=t[r];if(n!==undefined){return n.exports}var a=t[r]={exports:{}};var o=true;try{e[r].call(a.exports,a,a.exports,__nccwpck_require__);o=false}finally{if(o)delete t[r]}return a.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var r={};(()=>{var e=r;Object.defineProperty(e,\"__esModule\",{value:true});e.trace=e.propagation=e.metrics=e.diag=e.context=e.INVALID_SPAN_CONTEXT=e.INVALID_TRACEID=e.INVALID_SPANID=e.isValidSpanId=e.isValidTraceId=e.isSpanContextValid=e.createTraceState=e.TraceFlags=e.SpanStatusCode=e.SpanKind=e.SamplingDecision=e.ProxyTracerProvider=e.ProxyTracer=e.defaultTextMapSetter=e.defaultTextMapGetter=e.ValueType=e.createNoopMeter=e.DiagLogLevel=e.DiagConsoleLogger=e.ROOT_CONTEXT=e.createContextKey=e.baggageEntryMetadataFromString=void 0;var t=__nccwpck_require__(369);Object.defineProperty(e,\"baggageEntryMetadataFromString\",{enumerable:true,get:function(){return t.baggageEntryMetadataFromString}});var n=__nccwpck_require__(780);Object.defineProperty(e,\"createContextKey\",{enumerable:true,get:function(){return n.createContextKey}});Object.defineProperty(e,\"ROOT_CONTEXT\",{enumerable:true,get:function(){return n.ROOT_CONTEXT}});var a=__nccwpck_require__(972);Object.defineProperty(e,\"DiagConsoleLogger\",{enumerable:true,get:function(){return a.DiagConsoleLogger}});var o=__nccwpck_require__(957);Object.defineProperty(e,\"DiagLogLevel\",{enumerable:true,get:function(){return o.DiagLogLevel}});var i=__nccwpck_require__(102);Object.defineProperty(e,\"createNoopMeter\",{enumerable:true,get:function(){return i.createNoopMeter}});var c=__nccwpck_require__(901);Object.defineProperty(e,\"ValueType\",{enumerable:true,get:function(){return c.ValueType}});var s=__nccwpck_require__(194);Object.defineProperty(e,\"defaultTextMapGetter\",{enumerable:true,get:function(){return s.defaultTextMapGetter}});Object.defineProperty(e,\"defaultTextMapSetter\",{enumerable:true,get:function(){return s.defaultTextMapSetter}});var u=__nccwpck_require__(125);Object.defineProperty(e,\"ProxyTracer\",{enumerable:true,get:function(){return u.ProxyTracer}});var l=__nccwpck_require__(846);Object.defineProperty(e,\"ProxyTracerProvider\",{enumerable:true,get:function(){return l.ProxyTracerProvider}});var g=__nccwpck_require__(996);Object.defineProperty(e,\"SamplingDecision\",{enumerable:true,get:function(){return g.SamplingDecision}});var p=__nccwpck_require__(357);Object.defineProperty(e,\"SpanKind\",{enumerable:true,get:function(){return p.SpanKind}});var d=__nccwpck_require__(847);Object.defineProperty(e,\"SpanStatusCode\",{enumerable:true,get:function(){return d.SpanStatusCode}});var _=__nccwpck_require__(475);Object.defineProperty(e,\"TraceFlags\",{enumerable:true,get:function(){return _.TraceFlags}});var f=__nccwpck_require__(98);Object.defineProperty(e,\"createTraceState\",{enumerable:true,get:function(){return f.createTraceState}});var b=__nccwpck_require__(139);Object.defineProperty(e,\"isSpanContextValid\",{enumerable:true,get:function(){return b.isSpanContextValid}});Object.defineProperty(e,\"isValidTraceId\",{enumerable:true,get:function(){return b.isValidTraceId}});Object.defineProperty(e,\"isValidSpanId\",{enumerable:true,get:function(){return b.isValidSpanId}});var v=__nccwpck_require__(476);Object.defineProperty(e,\"INVALID_SPANID\",{enumerable:true,get:function(){return v.INVALID_SPANID}});Object.defineProperty(e,\"INVALID_TRACEID\",{enumerable:true,get:function(){return v.INVALID_TRACEID}});Object.defineProperty(e,\"INVALID_SPAN_CONTEXT\",{enumerable:true,get:function(){return v.INVALID_SPAN_CONTEXT}});const O=__nccwpck_require__(67);Object.defineProperty(e,\"context\",{enumerable:true,get:function(){return O.context}});const P=__nccwpck_require__(506);Object.defineProperty(e,\"diag\",{enumerable:true,get:function(){return P.diag}});const N=__nccwpck_require__(886);Object.defineProperty(e,\"metrics\",{enumerable:true,get:function(){return N.metrics}});const S=__nccwpck_require__(939);Object.defineProperty(e,\"propagation\",{enumerable:true,get:function(){return S.propagation}});const C=__nccwpck_require__(845);Object.defineProperty(e,\"trace\",{enumerable:true,get:function(){return C.trace}});e[\"default\"]={context:O.context,diag:P.diag,metrics:N.metrics,propagation:S.propagation,trace:C.trace}})();module.exports=r})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 10921, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/trace/tracer.ts"],"sourcesContent":["import type { FetchEventResult } from '../../web/types'\nimport type { TextMapSetter } from '@opentelemetry/api'\nimport type { SpanTypes } from './constants'\nimport { LogSpanAllowList, NextVanillaSpanAllowlist } from './constants'\n\nimport type {\n ContextAPI,\n Span,\n SpanOptions,\n Tracer,\n AttributeValue,\n TextMapGetter,\n} from 'next/dist/compiled/@opentelemetry/api'\nimport { isThenable } from '../../../shared/lib/is-thenable'\n\nconst NEXT_OTEL_PERFORMANCE_PREFIX = process.env.NEXT_OTEL_PERFORMANCE_PREFIX\n\nlet api: typeof import('next/dist/compiled/@opentelemetry/api')\n\n// we want to allow users to use their own version of @opentelemetry/api if they\n// want to, so we try to require it first, and if it fails we fall back to the\n// version that is bundled with Next.js\n// this is because @opentelemetry/api has to be synced with the version of\n// @opentelemetry/tracing that is used, and we don't want to force users to use\n// the version that is bundled with Next.js.\n// the API is ~stable, so this should be fine\nif (process.env.NEXT_RUNTIME === 'edge') {\n api = require('@opentelemetry/api') as typeof import('@opentelemetry/api')\n} else {\n try {\n api = require('@opentelemetry/api') as typeof import('@opentelemetry/api')\n } catch (err) {\n api =\n require('next/dist/compiled/@opentelemetry/api') as typeof import('next/dist/compiled/@opentelemetry/api')\n }\n}\n\nconst { context, propagation, trace, SpanStatusCode, SpanKind, ROOT_CONTEXT } =\n api\n\nexport class BubbledError extends Error {\n constructor(\n public readonly bubble?: boolean,\n public readonly result?: FetchEventResult\n ) {\n super()\n }\n}\n\nexport function isBubbledError(error: unknown): error is BubbledError {\n if (typeof error !== 'object' || error === null) return false\n return error instanceof BubbledError\n}\n\nconst closeSpanWithError = (span: Span, error?: Error) => {\n if (isBubbledError(error) && error.bubble) {\n span.setAttribute('next.bubble', true)\n } else {\n if (error) {\n span.recordException(error)\n span.setAttribute('error.type', error.name)\n }\n span.setStatus({ code: SpanStatusCode.ERROR, message: error?.message })\n }\n span.end()\n}\n\ntype TracerSpanOptions = Omit & {\n parentSpan?: Span\n spanName?: string\n attributes?: Partial>\n hideSpan?: boolean\n}\n\ninterface NextTracer {\n getContext(): ContextAPI\n\n /**\n * Instruments a function by automatically creating a span activated on its\n * scope.\n *\n * The span will automatically be finished when one of these conditions is\n * met:\n *\n * * The function returns a promise, in which case the span will finish when\n * the promise is resolved or rejected.\n * * The function takes a callback as its second parameter, in which case the\n * span will finish when that callback is called.\n * * The function doesn't accept a callback and doesn't return a promise, in\n * which case the span will finish at the end of the function execution.\n *\n */\n trace(\n type: SpanTypes,\n fn: (span?: Span, done?: (error?: Error) => any) => Promise\n ): Promise\n trace(\n type: SpanTypes,\n fn: (span?: Span, done?: (error?: Error) => any) => T\n ): T\n trace(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: (span?: Span, done?: (error?: Error) => any) => Promise\n ): Promise\n trace(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: (span?: Span, done?: (error?: Error) => any) => T\n ): T\n\n /**\n * Wrap a function to automatically create a span activated on its\n * scope when it's called.\n *\n * The span will automatically be finished when one of these conditions is\n * met:\n *\n * * The function returns a promise, in which case the span will finish when\n * the promise is resolved or rejected.\n * * The function takes a callback as its last parameter, in which case the\n * span will finish when that callback is called.\n * * The function doesn't accept a callback and doesn't return a promise, in\n * which case the span will finish at the end of the function execution.\n */\n wrap) => any>(type: SpanTypes, fn: T): T\n wrap) => any>(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: T\n ): T\n wrap) => any>(\n type: SpanTypes,\n options: (...args: any[]) => TracerSpanOptions,\n fn: T\n ): T\n\n /**\n * Starts and returns a new Span representing a logical unit of work.\n *\n * This method do NOT modify the current Context by default. In result, any inner span will not\n * automatically set its parent context to the span created by this method unless manually activate\n * context via `tracer.getContext().with`. `trace`, or `wrap` is generally recommended as it gracefully\n * handles context activation. (ref: https://github.com/open-telemetry/opentelemetry-js/issues/1923)\n */\n startSpan(type: SpanTypes): Span\n startSpan(type: SpanTypes, options: TracerSpanOptions): Span\n\n /**\n * Returns currently activated span if current context is in the scope of the span.\n * Returns undefined otherwise.\n */\n getActiveScopeSpan(): Span | undefined\n\n /**\n * Returns trace propagation data for the currently active context. The format is equal to data provided\n * through the OpenTelemetry propagator API.\n */\n getTracePropagationData(): ClientTraceDataEntry[]\n\n /**\n * Executes a function with the given span set as the active span in the context.\n * This allows child spans created within the function to automatically parent to this span.\n */\n withSpan(span: Span, fn: () => T): T\n}\n\ntype NextAttributeNames =\n | 'next.route'\n | 'next.page'\n | 'next.rsc'\n | 'next.segment'\n | 'next.span_name'\n | 'next.span_type'\n | 'next.clientComponentLoadCount'\ntype OTELAttributeNames = `http.${string}` | `net.${string}`\ntype AttributeNames = NextAttributeNames | OTELAttributeNames\n\n/** we use this map to propagate attributes from nested spans to the top span */\nconst rootSpanAttributesStore = new Map<\n number,\n Map\n>()\nconst rootSpanIdKey = api.createContextKey('next.rootSpanId')\nlet lastSpanId = 0\nconst getSpanId = () => lastSpanId++\n\nexport interface ClientTraceDataEntry {\n key: string\n value: string\n}\n\nconst clientTraceDataSetter: TextMapSetter = {\n set(carrier, key, value) {\n carrier.push({\n key,\n value,\n })\n },\n}\n\nclass NextTracerImpl implements NextTracer {\n /**\n * Returns an instance to the trace with configured name.\n * Since wrap / trace can be defined in any place prior to actual trace subscriber initialization,\n * This should be lazily evaluated.\n */\n private getTracerInstance(): Tracer {\n return trace.getTracer('next.js', '0.0.1')\n }\n\n public getContext(): ContextAPI {\n return context\n }\n\n public getTracePropagationData(): ClientTraceDataEntry[] {\n const activeContext = context.active()\n const entries: ClientTraceDataEntry[] = []\n propagation.inject(activeContext, entries, clientTraceDataSetter)\n return entries\n }\n\n public getActiveScopeSpan(): Span | undefined {\n return trace.getSpan(context?.active())\n }\n\n public withPropagatedContext(\n carrier: C,\n fn: () => T,\n getter?: TextMapGetter\n ): T {\n const activeContext = context.active()\n if (trace.getSpanContext(activeContext)) {\n // Active span is already set, too late to propagate.\n return fn()\n }\n const remoteContext = propagation.extract(activeContext, carrier, getter)\n return context.with(remoteContext, fn)\n }\n\n // Trace, wrap implementation is inspired by datadog trace implementation\n // (https://datadoghq.dev/dd-trace-js/interfaces/tracer.html#trace).\n public trace(\n type: SpanTypes,\n fn: (span?: Span, done?: (error?: Error) => any) => Promise\n ): Promise\n public trace(\n type: SpanTypes,\n fn: (span?: Span, done?: (error?: Error) => any) => T\n ): T\n public trace(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: (span?: Span, done?: (error?: Error) => any) => Promise\n ): Promise\n public trace(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: (span?: Span, done?: (error?: Error) => any) => T\n ): T\n public trace(...args: Array) {\n const [type, fnOrOptions, fnOrEmpty] = args\n\n // coerce options form overload\n const {\n fn,\n options,\n }: {\n fn: (span?: Span, done?: (error?: Error) => any) => T | Promise\n options: TracerSpanOptions\n } =\n typeof fnOrOptions === 'function'\n ? {\n fn: fnOrOptions,\n options: {},\n }\n : {\n fn: fnOrEmpty,\n options: { ...fnOrOptions },\n }\n\n const spanName = options.spanName ?? type\n\n if (\n (!NextVanillaSpanAllowlist.has(type) &&\n process.env.NEXT_OTEL_VERBOSE !== '1') ||\n options.hideSpan\n ) {\n return fn()\n }\n\n // Trying to get active scoped span to assign parent. If option specifies parent span manually, will try to use it.\n let spanContext = this.getSpanContext(\n options?.parentSpan ?? this.getActiveScopeSpan()\n )\n\n if (!spanContext) {\n spanContext = context?.active() ?? ROOT_CONTEXT\n }\n // Check if there's already a root span in the store for this trace\n // We are intentionally not checking whether there is an active context\n // from outside of nextjs to ensure that we can provide the same level\n // of telemetry when using a custom server\n const existingRootSpanId = spanContext.getValue(rootSpanIdKey)\n const isRootSpan =\n typeof existingRootSpanId !== 'number' ||\n !rootSpanAttributesStore.has(existingRootSpanId)\n\n const spanId = getSpanId()\n\n options.attributes = {\n 'next.span_name': spanName,\n 'next.span_type': type,\n ...options.attributes,\n }\n\n return context.with(spanContext.setValue(rootSpanIdKey, spanId), () =>\n this.getTracerInstance().startActiveSpan(\n spanName,\n options,\n (span: Span) => {\n let startTime: number | undefined\n if (\n NEXT_OTEL_PERFORMANCE_PREFIX &&\n type &&\n LogSpanAllowList.has(type)\n ) {\n startTime =\n 'performance' in globalThis && 'measure' in performance\n ? globalThis.performance.now()\n : undefined\n }\n\n let cleanedUp = false\n const onCleanup = () => {\n if (cleanedUp) return\n cleanedUp = true\n rootSpanAttributesStore.delete(spanId)\n if (startTime) {\n performance.measure(\n `${NEXT_OTEL_PERFORMANCE_PREFIX}:next-${(\n type.split('.').pop() || ''\n ).replace(\n /[A-Z]/g,\n (match: string) => '-' + match.toLowerCase()\n )}`,\n {\n start: startTime,\n end: performance.now(),\n }\n )\n }\n }\n\n if (isRootSpan) {\n rootSpanAttributesStore.set(\n spanId,\n new Map(\n Object.entries(options.attributes ?? {}) as [\n AttributeNames,\n AttributeValue | undefined,\n ][]\n )\n )\n }\n if (fn.length > 1) {\n try {\n return fn(span, (err) => closeSpanWithError(span, err))\n } catch (err: any) {\n closeSpanWithError(span, err)\n throw err\n } finally {\n onCleanup()\n }\n }\n\n try {\n const result = fn(span)\n if (isThenable(result)) {\n // If there's error make sure it throws\n return result\n .then((res) => {\n span.end()\n // Need to pass down the promise result,\n // it could be react stream response with error { error, stream }\n return res\n })\n .catch((err) => {\n closeSpanWithError(span, err)\n throw err\n })\n .finally(onCleanup)\n } else {\n span.end()\n onCleanup()\n }\n\n return result\n } catch (err: any) {\n closeSpanWithError(span, err)\n onCleanup()\n throw err\n }\n }\n )\n )\n }\n\n public wrap) => any>(type: SpanTypes, fn: T): T\n public wrap) => any>(\n type: SpanTypes,\n options: TracerSpanOptions,\n fn: T\n ): T\n public wrap) => any>(\n type: SpanTypes,\n options: (...args: any[]) => TracerSpanOptions,\n fn: T\n ): T\n public wrap(...args: Array) {\n const tracer = this\n const [name, options, fn] =\n args.length === 3 ? args : [args[0], {}, args[1]]\n\n if (\n !NextVanillaSpanAllowlist.has(name) &&\n process.env.NEXT_OTEL_VERBOSE !== '1'\n ) {\n return fn\n }\n\n return function (this: any) {\n let optionsObj = options\n if (typeof optionsObj === 'function' && typeof fn === 'function') {\n optionsObj = optionsObj.apply(this, arguments)\n }\n\n const lastArgId = arguments.length - 1\n const cb = arguments[lastArgId]\n\n if (typeof cb === 'function') {\n const scopeBoundCb = tracer.getContext().bind(context.active(), cb)\n return tracer.trace(name, optionsObj, (_span, done) => {\n arguments[lastArgId] = function (err: any) {\n done?.(err)\n return scopeBoundCb.apply(this, arguments)\n }\n\n return fn.apply(this, arguments)\n })\n } else {\n return tracer.trace(name, optionsObj, () => fn.apply(this, arguments))\n }\n }\n }\n\n public startSpan(type: SpanTypes): Span\n public startSpan(type: SpanTypes, options: TracerSpanOptions): Span\n public startSpan(...args: Array): Span {\n const [type, options]: [string, TracerSpanOptions | undefined] = args as any\n\n const spanContext = this.getSpanContext(\n options?.parentSpan ?? this.getActiveScopeSpan()\n )\n return this.getTracerInstance().startSpan(type, options, spanContext)\n }\n\n private getSpanContext(parentSpan?: Span) {\n const spanContext = parentSpan\n ? trace.setSpan(context.active(), parentSpan)\n : undefined\n\n return spanContext\n }\n\n public getRootSpanAttributes() {\n const spanId = context.active().getValue(rootSpanIdKey) as number\n return rootSpanAttributesStore.get(spanId)\n }\n\n public setRootSpanAttribute(key: AttributeNames, value: AttributeValue) {\n const spanId = context.active().getValue(rootSpanIdKey) as number\n const attributes = rootSpanAttributesStore.get(spanId)\n if (attributes && !attributes.has(key)) {\n attributes.set(key, value)\n }\n }\n\n public withSpan(span: Span, fn: () => T): T {\n const spanContext = trace.setSpan(context.active(), span)\n return context.with(spanContext, fn)\n }\n}\n\nconst getTracer = (() => {\n const tracer = new NextTracerImpl()\n\n return () => tracer\n})()\n\nexport { getTracer, SpanStatusCode, SpanKind }\nexport type { NextTracer, Span, SpanOptions, ContextAPI, TracerSpanOptions }\n"],"names":["LogSpanAllowList","NextVanillaSpanAllowlist","isThenable","NEXT_OTEL_PERFORMANCE_PREFIX","process","env","api","NEXT_RUNTIME","require","err","context","propagation","trace","SpanStatusCode","SpanKind","ROOT_CONTEXT","BubbledError","Error","constructor","bubble","result","isBubbledError","error","closeSpanWithError","span","setAttribute","recordException","name","setStatus","code","ERROR","message","end","rootSpanAttributesStore","Map","rootSpanIdKey","createContextKey","lastSpanId","getSpanId","clientTraceDataSetter","set","carrier","key","value","push","NextTracerImpl","getTracerInstance","getTracer","getContext","getTracePropagationData","activeContext","active","entries","inject","getActiveScopeSpan","getSpan","withPropagatedContext","fn","getter","getSpanContext","remoteContext","extract","with","args","type","fnOrOptions","fnOrEmpty","options","spanName","has","NEXT_OTEL_VERBOSE","hideSpan","spanContext","parentSpan","existingRootSpanId","getValue","isRootSpan","spanId","attributes","setValue","startActiveSpan","startTime","globalThis","performance","now","undefined","cleanedUp","onCleanup","delete","measure","split","pop","replace","match","toLowerCase","start","Object","length","then","res","catch","finally","wrap","tracer","optionsObj","apply","arguments","lastArgId","cb","scopeBoundCb","bind","_span","done","startSpan","setSpan","getRootSpanAttributes","get","setRootSpanAttribute","withSpan"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 11175, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/server-reference-info.ts"],"sourcesContent":["export interface ServerReferenceInfo {\n type: 'server-action' | 'use-cache'\n usedArgs: [boolean, boolean, boolean, boolean, boolean, boolean]\n hasRestArgs: boolean\n}\n\n/**\n * Extracts info about the server reference for the given server reference ID by\n * parsing the first byte of the hex-encoded ID.\n *\n * ```\n * Bit positions: [7] [6] [5] [4] [3] [2] [1] [0]\n * Bits: typeBit argMask restArgs\n * ```\n *\n * If the `typeBit` is `1` the server reference represents a `\"use cache\"`\n * function, otherwise a server action.\n *\n * The `argMask` encodes whether the function uses the argument at the\n * respective position.\n *\n * The `restArgs` bit indicates whether the function uses a rest parameter. It's\n * also set to 1 if the function has more than 6 args.\n *\n * @param id hex-encoded server reference ID\n */\nexport function extractInfoFromServerReferenceId(\n id: string\n): ServerReferenceInfo {\n const infoByte = parseInt(id.slice(0, 2), 16)\n const typeBit = (infoByte >> 7) & 0x1\n const argMask = (infoByte >> 1) & 0x3f\n const restArgs = infoByte & 0x1\n const usedArgs = Array(6)\n\n for (let index = 0; index < 6; index++) {\n const bitPosition = 5 - index\n const bit = (argMask >> bitPosition) & 0x1\n usedArgs[index] = bit === 1\n }\n\n return {\n type: typeBit === 1 ? 'use-cache' : 'server-action',\n usedArgs: usedArgs as [\n boolean,\n boolean,\n boolean,\n boolean,\n boolean,\n boolean,\n ],\n hasRestArgs: restArgs === 1,\n }\n}\n\n/**\n * Creates a sparse array containing only the used arguments based on the\n * provided action info.\n */\nexport function omitUnusedArgs(\n args: unknown[],\n info: ServerReferenceInfo\n): unknown[] {\n const filteredArgs = new Array(args.length)\n\n for (let index = 0; index < args.length; index++) {\n if (\n (index < 6 && info.usedArgs[index]) ||\n // This assumes that the server reference info byte has the restArgs bit\n // set to 1 if there are more than 6 args.\n (index >= 6 && info.hasRestArgs)\n ) {\n filteredArgs[index] = args[index]\n }\n }\n\n return filteredArgs\n}\n"],"names":["extractInfoFromServerReferenceId","id","infoByte","parseInt","slice","typeBit","argMask","restArgs","usedArgs","Array","index","bitPosition","bit","type","hasRestArgs","omitUnusedArgs","args","info","filteredArgs","length"],"mappings":"AAMA;;;;;;;;;;;;;;;;;;;CAmBC,GACD;;;;;;AAAO,SAASA,iCACdC,EAAU;IAEV,MAAMC,WAAWC,SAASF,GAAGG,KAAK,CAAC,GAAG,IAAI;IAC1C,MAAMC,UAAWH,YAAY,IAAK;IAClC,MAAMI,UAAWJ,YAAY,IAAK;IAClC,MAAMK,WAAWL,WAAW;IAC5B,MAAMM,WAAWC,MAAM;IAEvB,IAAK,IAAIC,QAAQ,GAAGA,QAAQ,GAAGA,QAAS;QACtC,MAAMC,cAAc,IAAID;QACxB,MAAME,MAAON,WAAWK,cAAe;QACvCH,QAAQ,CAACE,MAAM,GAAGE,QAAQ;IAC5B;IAEA,OAAO;QACLC,MAAMR,YAAY,IAAI,cAAc;QACpCG,UAAUA;QAQVM,aAAaP,aAAa;IAC5B;AACF;AAMO,SAASQ,eACdC,IAAe,EACfC,IAAyB;IAEzB,MAAMC,eAAe,IAAIT,MAAMO,KAAKG,MAAM;IAE1C,IAAK,IAAIT,QAAQ,GAAGA,QAAQM,KAAKG,MAAM,EAAET,QAAS;QAChD,IACGA,QAAQ,KAAKO,KAAKT,QAAQ,CAACE,MAAM,IAClC,wEAAwE;QACxE,0CAA0C;QACzCA,SAAS,KAAKO,KAAKH,WAAW,EAC/B;YACAI,YAAY,CAACR,MAAM,GAAGM,IAAI,CAACN,MAAM;QACnC;IACF;IAEA,OAAOQ;AACT","ignoreList":[0]}}, - {"offset": {"line": 11232, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/client-and-server-references.ts"],"sourcesContent":["import {\n extractInfoFromServerReferenceId,\n type ServerReferenceInfo,\n} from '../shared/lib/server-reference-info'\n\n// Only contains the properties we're interested in.\nexport interface ServerReference {\n $$typeof: Symbol\n $$id: string\n}\n\nexport type ServerFunction = ServerReference &\n ((...args: unknown[]) => Promise)\n\nexport function isServerReference(\n value: T & Partial\n): value is T & ServerFunction {\n return value.$$typeof === Symbol.for('react.server.reference')\n}\n\nexport function isUseCacheFunction(\n value: T & Partial\n): value is T & ServerFunction {\n if (!isServerReference(value)) {\n return false\n }\n\n const { type } = extractInfoFromServerReferenceId(value.$$id)\n\n return type === 'use-cache'\n}\n\nexport function getUseCacheFunctionInfo(\n value: T & Partial\n): ServerReferenceInfo | null {\n if (!isServerReference(value)) {\n return null\n }\n\n const info = extractInfoFromServerReferenceId(value.$$id)\n\n return info.type === 'use-cache' ? info : null\n}\n\nexport function isClientReference(mod: any): boolean {\n const defaultExport = mod?.default || mod\n return defaultExport?.$$typeof === Symbol.for('react.client.reference')\n}\n"],"names":["extractInfoFromServerReferenceId","isServerReference","value","$$typeof","Symbol","for","isUseCacheFunction","type","$$id","getUseCacheFunctionInfo","info","isClientReference","mod","defaultExport","default"],"mappings":";;;;;;;;;;AAAA,SACEA,gCAAgC,QAE3B,sCAAqC;;AAWrC,SAASC,kBACdC,KAAmC;IAEnC,OAAOA,MAAMC,QAAQ,KAAKC,OAAOC,GAAG,CAAC;AACvC;AAEO,SAASC,mBACdJ,KAAmC;IAEnC,IAAI,CAACD,kBAAkBC,QAAQ;QAC7B,OAAO;IACT;IAEA,MAAM,EAAEK,IAAI,EAAE,OAAGP,uNAAAA,EAAiCE,MAAMM,IAAI;IAE5D,OAAOD,SAAS;AAClB;AAEO,SAASE,wBACdP,KAAmC;IAEnC,IAAI,CAACD,kBAAkBC,QAAQ;QAC7B,OAAO;IACT;IAEA,MAAMQ,WAAOV,uNAAAA,EAAiCE,MAAMM,IAAI;IAExD,OAAOE,KAAKH,IAAI,KAAK,cAAcG,OAAO;AAC5C;AAEO,SAASC,kBAAkBC,GAAQ;IACxC,MAAMC,gBAAgBD,CAAAA,OAAAA,OAAAA,KAAAA,IAAAA,IAAKE,OAAO,KAAIF;IACtC,OAAOC,CAAAA,iBAAAA,OAAAA,KAAAA,IAAAA,cAAeV,QAAQ,MAAKC,OAAOC,GAAG,CAAC;AAChD","ignoreList":[0]}}, - {"offset": {"line": 11269, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/lazy-result.ts"],"sourcesContent":["export type LazyResult = PromiseLike & { value?: TValue }\nexport type ResolvedLazyResult = PromiseLike & { value: TValue }\n\n/**\n * Calls the given function only when the returned promise-like object is\n * awaited. Afterwards, it provides the resolved value synchronously as `value`\n * property.\n */\nexport function createLazyResult(\n fn: () => Promise | TValue\n): LazyResult {\n let pendingResult: Promise | undefined\n\n const result: LazyResult = {\n then(onfulfilled, onrejected) {\n if (!pendingResult) {\n pendingResult = Promise.resolve(fn())\n }\n\n pendingResult\n .then((value) => {\n result.value = value\n })\n .catch(() => {\n // The externally awaited result will be rejected via `onrejected`. We\n // don't need to handle it here. But we do want to avoid an unhandled\n // rejection.\n })\n\n return pendingResult.then(onfulfilled, onrejected)\n },\n }\n\n return result\n}\n\nexport function isResolvedLazyResult(\n result: LazyResult\n): result is ResolvedLazyResult {\n return result.hasOwnProperty('value')\n}\n"],"names":["createLazyResult","fn","pendingResult","result","then","onfulfilled","onrejected","Promise","resolve","value","catch","isResolvedLazyResult","hasOwnProperty"],"mappings":"AAGA;;;;CAIC,GACD;;;;;;AAAO,SAASA,iBACdC,EAAkC;IAElC,IAAIC;IAEJ,MAAMC,SAA6B;QACjCC,MAAKC,WAAW,EAAEC,UAAU;YAC1B,IAAI,CAACJ,eAAe;gBAClBA,gBAAgBK,QAAQC,OAAO,CAACP;YAClC;YAEAC,cACGE,IAAI,CAAC,CAACK;gBACLN,OAAOM,KAAK,GAAGA;YACjB,GACCC,KAAK,CAAC;YACL,sEAAsE;YACtE,qEAAqE;YACrE,aAAa;YACf;YAEF,OAAOR,cAAcE,IAAI,CAACC,aAAaC;QACzC;IACF;IAEA,OAAOH;AACT;AAEO,SAASQ,qBACdR,MAA0B;IAE1B,OAAOA,OAAOS,cAAc,CAAC;AAC/B","ignoreList":[0]}}, - {"offset": {"line": 11305, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/deep-freeze.ts"],"sourcesContent":["import type { DeepReadonly } from './deep-readonly'\n\n/**\n * Recursively freezes an object and all of its properties. This prevents the\n * object from being modified at runtime. When the JS runtime is running in\n * strict mode, any attempts to modify a frozen object will throw an error.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze\n * @param obj The object to freeze.\n */\nexport function deepFreeze(obj: T): DeepReadonly {\n // If the object is already frozen, there's no need to freeze it again.\n if (Object.isFrozen(obj)) return obj as DeepReadonly\n\n // An array is an object, but we also want to freeze each element in the array\n // as well.\n if (Array.isArray(obj)) {\n for (const item of obj) {\n if (!item || typeof item !== 'object') continue\n deepFreeze(item)\n }\n\n return Object.freeze(obj) as DeepReadonly\n }\n\n for (const value of Object.values(obj)) {\n if (!value || typeof value !== 'object') continue\n deepFreeze(value)\n }\n\n return Object.freeze(obj) as DeepReadonly\n}\n"],"names":["deepFreeze","obj","Object","isFrozen","Array","isArray","item","freeze","value","values"],"mappings":"AAEA;;;;;;;CAOC,GACD;;;;AAAO,SAASA,WAA6BC,GAAM;IACjD,uEAAuE;IACvE,IAAIC,OAAOC,QAAQ,CAACF,MAAM,OAAOA;IAEjC,8EAA8E;IAC9E,WAAW;IACX,IAAIG,MAAMC,OAAO,CAACJ,MAAM;QACtB,KAAK,MAAMK,QAAQL,IAAK;YACtB,IAAI,CAACK,QAAQ,OAAOA,SAAS,UAAU;YACvCN,WAAWM;QACb;QAEA,OAAOJ,OAAOK,MAAM,CAACN;IACvB;IAEA,KAAK,MAAMO,SAASN,OAAOO,MAAM,CAACR,KAAM;QACtC,IAAI,CAACO,SAAS,OAAOA,UAAU,UAAU;QACzCR,WAAWQ;IACb;IAEA,OAAON,OAAOK,MAAM,CAACN;AACvB","ignoreList":[0]}}, - {"offset": {"line": 11338, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/resolve-metadata.ts"],"sourcesContent":["import type {\n Metadata,\n ResolvedMetadata,\n ResolvedViewport,\n ResolvingMetadata,\n ResolvingViewport,\n Viewport,\n WithStringifiedURLs,\n} from './types/metadata-interface'\nimport type { MetadataImageModule } from '../../build/webpack/loaders/metadata/types'\nimport type { GetDynamicParamFromSegment } from '../../server/app-render/app-render'\nimport type { Twitter } from './types/twitter-types'\nimport type { OpenGraph } from './types/opengraph-types'\nimport type { AppDirModules } from '../../build/webpack/loaders/next-app-loader'\nimport type { MetadataContext } from './types/resolvers'\nimport type { LoaderTree } from '../../server/lib/app-dir-module'\nimport type {\n AbsoluteTemplateString,\n IconDescriptor,\n ResolvedIcons,\n} from './types/metadata-types'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { StaticMetadata } from './types/icons'\nimport type { WorkStore } from '../../server/app-render/work-async-storage.external'\nimport type { Params } from '../../server/request/params'\nimport type { SearchParams } from '../../server/request/search-params'\n\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport 'server-only'\n\nimport { cache } from 'react'\nimport {\n createDefaultMetadata,\n createDefaultViewport,\n} from './default-metadata'\nimport { resolveOpenGraph, resolveTwitter } from './resolvers/resolve-opengraph'\nimport { resolveTitle } from './resolvers/resolve-title'\nimport { resolveAsArrayOrUndefined } from './generate/utils'\nimport {\n getComponentTypeModule,\n getLayoutOrPageModule,\n} from '../../server/lib/app-dir-module'\nimport { interopDefault } from '../interop-default'\nimport {\n resolveAlternates,\n resolveAppleWebApp,\n resolveAppLinks,\n resolveRobots,\n resolveThemeColor,\n resolveVerification,\n resolveItunes,\n resolveFacebook,\n resolvePagination,\n} from './resolvers/resolve-basics'\nimport { resolveIcons } from './resolvers/resolve-icons'\nimport { getTracer } from '../../server/lib/trace/tracer'\nimport { ResolveMetadataSpan } from '../../server/lib/trace/constants'\nimport { PAGE_SEGMENT_KEY } from '../../shared/lib/segment'\nimport * as Log from '../../build/output/log'\nimport { createServerParamsForMetadata } from '../../server/request/params'\nimport type { MetadataBaseURL } from './resolvers/resolve-url'\nimport {\n getUseCacheFunctionInfo,\n isUseCacheFunction,\n} from '../client-and-server-references'\nimport type {\n UseCacheLayoutProps,\n UseCachePageProps,\n} from '../../server/use-cache/use-cache-wrapper'\nimport { createLazyResult } from '../../server/lib/lazy-result'\n\ntype StaticIcons = Pick\n\ntype Resolved = T extends Metadata ? ResolvedMetadata : ResolvedViewport\n\ntype InstrumentedResolver = ((\n parent: Promise>\n) => TData | Promise) & {\n $$original: (\n props: unknown,\n parent: Promise>\n ) => TData | Promise\n}\n\ntype MetadataResolver = InstrumentedResolver\ntype ViewportResolver = InstrumentedResolver\n\nexport type MetadataErrorType = 'not-found' | 'forbidden' | 'unauthorized'\n\nexport type MetadataItems = Array<\n [Metadata | MetadataResolver | null, StaticMetadata]\n>\n\nexport type ViewportItems = Array\n\ntype TitleTemplates = {\n title: string | null\n twitter: string | null\n openGraph: string | null\n}\n\ntype BuildState = {\n warnings: Set\n}\n\ntype LayoutProps = {\n params: Promise\n}\n\ntype PageProps = {\n params: Promise\n searchParams: Promise\n}\n\ntype SegmentProps = LayoutProps | PageProps\ntype UseCacheSegmentProps = UseCacheLayoutProps | UseCachePageProps\n\nfunction isFavicon(icon: IconDescriptor | undefined): boolean {\n if (!icon) {\n return false\n }\n\n // turbopack appends a hash to all images\n return (\n (icon.url === '/favicon.ico' ||\n icon.url.toString().startsWith('/favicon.ico?')) &&\n icon.type === 'image/x-icon'\n )\n}\n\nfunction convertUrlsToStrings(input: T): WithStringifiedURLs {\n if (input instanceof URL) {\n return input.toString() as unknown as WithStringifiedURLs\n } else if (Array.isArray(input)) {\n return input.map((item) =>\n convertUrlsToStrings(item)\n ) as WithStringifiedURLs\n } else if (input && typeof input === 'object') {\n const result: Record = {}\n for (const [key, value] of Object.entries(input)) {\n result[key] = convertUrlsToStrings(value)\n }\n return result as WithStringifiedURLs\n }\n return input as WithStringifiedURLs\n}\n\nfunction normalizeMetadataBase(metadataBase: string | URL | null): URL | null {\n if (typeof metadataBase === 'string') {\n try {\n metadataBase = new URL(metadataBase)\n } catch {\n throw new Error(`metadataBase is not a valid URL: ${metadataBase}`)\n }\n }\n return metadataBase\n}\n\nasync function mergeStaticMetadata(\n metadataBase: MetadataBaseURL,\n source: Metadata | null,\n target: ResolvedMetadata,\n staticFilesMetadata: StaticMetadata,\n metadataContext: MetadataContext,\n titleTemplates: TitleTemplates,\n leafSegmentStaticIcons: StaticIcons,\n pathname: Promise\n): Promise {\n if (!staticFilesMetadata) return target\n const { icon, apple, openGraph, twitter, manifest } = staticFilesMetadata\n\n // Keep updating the static icons in the most leaf node\n\n if (icon) {\n leafSegmentStaticIcons.icon = icon\n }\n if (apple) {\n leafSegmentStaticIcons.apple = apple\n }\n\n // file based metadata is specified and current level metadata twitter.images is not specified\n if (twitter && !source?.twitter?.hasOwnProperty('images')) {\n const resolvedTwitter = resolveTwitter(\n { ...target.twitter, images: twitter } as Twitter,\n metadataBase,\n { ...metadataContext, isStaticMetadataRouteFile: true },\n titleTemplates.twitter\n )\n target.twitter = convertUrlsToStrings(resolvedTwitter)\n }\n\n // file based metadata is specified and current level metadata openGraph.images is not specified\n if (openGraph && !source?.openGraph?.hasOwnProperty('images')) {\n const resolvedOpenGraph = await resolveOpenGraph(\n { ...target.openGraph, images: openGraph } as OpenGraph,\n metadataBase,\n pathname,\n { ...metadataContext, isStaticMetadataRouteFile: true },\n titleTemplates.openGraph\n )\n target.openGraph = convertUrlsToStrings(resolvedOpenGraph)\n }\n if (manifest) {\n target.manifest = manifest\n }\n\n return target\n}\n\n/**\n * Merges the given metadata with the resolved metadata. Returns a new object.\n */\nasync function mergeMetadata(\n route: string,\n pathname: Promise,\n {\n metadata,\n resolvedMetadata,\n staticFilesMetadata,\n titleTemplates,\n metadataContext,\n buildState,\n leafSegmentStaticIcons,\n }: {\n metadata: Metadata | null\n resolvedMetadata: ResolvedMetadata\n staticFilesMetadata: StaticMetadata\n titleTemplates: TitleTemplates\n metadataContext: MetadataContext\n buildState: BuildState\n leafSegmentStaticIcons: StaticIcons\n }\n): Promise {\n const newResolvedMetadata = structuredClone(resolvedMetadata)\n\n const metadataBase = normalizeMetadataBase(\n metadata?.metadataBase !== undefined\n ? metadata.metadataBase\n : resolvedMetadata.metadataBase\n )\n\n for (const key_ in metadata) {\n const key = key_ as keyof Metadata\n\n switch (key) {\n case 'title': {\n newResolvedMetadata.title = resolveTitle(\n metadata.title,\n titleTemplates.title\n )\n break\n }\n case 'alternates': {\n newResolvedMetadata.alternates = convertUrlsToStrings(\n await resolveAlternates(\n metadata.alternates,\n metadataBase,\n pathname,\n metadataContext\n )\n )\n break\n }\n case 'openGraph': {\n newResolvedMetadata.openGraph = convertUrlsToStrings(\n await resolveOpenGraph(\n metadata.openGraph,\n metadataBase,\n pathname,\n metadataContext,\n titleTemplates.openGraph\n )\n )\n break\n }\n case 'twitter': {\n newResolvedMetadata.twitter = convertUrlsToStrings(\n resolveTwitter(\n metadata.twitter,\n metadataBase,\n metadataContext,\n titleTemplates.twitter\n )\n )\n break\n }\n case 'facebook':\n newResolvedMetadata.facebook = resolveFacebook(metadata.facebook)\n break\n case 'verification':\n newResolvedMetadata.verification = resolveVerification(\n metadata.verification\n )\n break\n\n case 'icons': {\n newResolvedMetadata.icons = convertUrlsToStrings(\n resolveIcons(metadata.icons)\n )\n break\n }\n case 'appleWebApp':\n newResolvedMetadata.appleWebApp = resolveAppleWebApp(\n metadata.appleWebApp\n )\n break\n case 'appLinks':\n newResolvedMetadata.appLinks = convertUrlsToStrings(\n resolveAppLinks(metadata.appLinks)\n )\n break\n case 'robots': {\n newResolvedMetadata.robots = resolveRobots(metadata.robots)\n break\n }\n case 'archives':\n case 'assets':\n case 'bookmarks':\n case 'keywords': {\n newResolvedMetadata[key] = resolveAsArrayOrUndefined(metadata[key])\n break\n }\n case 'authors': {\n newResolvedMetadata[key] = convertUrlsToStrings(\n resolveAsArrayOrUndefined(metadata.authors)\n )\n break\n }\n case 'itunes': {\n newResolvedMetadata[key] = await resolveItunes(\n metadata.itunes,\n metadataBase,\n pathname,\n metadataContext\n )\n break\n }\n case 'pagination': {\n newResolvedMetadata.pagination = await resolvePagination(\n metadata.pagination,\n metadataBase,\n pathname,\n metadataContext\n )\n break\n }\n // directly assign fields that fallback to null\n case 'abstract':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'applicationName':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'description':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'generator':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'creator':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'publisher':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'category':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'classification':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'referrer':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'formatDetection':\n newResolvedMetadata[key] = metadata[key] ?? null\n break\n case 'manifest':\n newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null\n break\n case 'pinterest':\n newResolvedMetadata[key] = convertUrlsToStrings(metadata[key]) ?? null\n break\n case 'other':\n newResolvedMetadata.other = Object.assign(\n {},\n newResolvedMetadata.other,\n metadata.other\n )\n break\n case 'metadataBase':\n newResolvedMetadata.metadataBase = metadataBase\n ? metadataBase.toString()\n : null\n break\n\n case 'apple-touch-fullscreen': {\n buildState.warnings.add(\n `Use appleWebApp instead\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`\n )\n break\n }\n case 'apple-touch-icon-precomposed': {\n buildState.warnings.add(\n `Use icons.apple instead\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-metadata`\n )\n break\n }\n case 'themeColor':\n case 'colorScheme':\n case 'viewport':\n if (metadata[key] != null) {\n buildState.warnings.add(\n `Unsupported metadata ${key} is configured in metadata export in ${route}. Please move it to viewport export instead.\\nRead more: https://nextjs.org/docs/app/api-reference/functions/generate-viewport`\n )\n }\n break\n default: {\n key satisfies never\n }\n }\n }\n\n return mergeStaticMetadata(\n metadataBase,\n metadata,\n newResolvedMetadata,\n staticFilesMetadata,\n metadataContext,\n titleTemplates,\n leafSegmentStaticIcons,\n pathname\n )\n}\n\n/**\n * Merges the given viewport with the resolved viewport. Returns a new object.\n */\nfunction mergeViewport({\n resolvedViewport,\n viewport,\n}: {\n resolvedViewport: ResolvedViewport\n viewport: Viewport | null\n}): ResolvedViewport {\n const newResolvedViewport = structuredClone(resolvedViewport)\n\n if (viewport) {\n for (const key_ in viewport) {\n const key = key_ as keyof Viewport\n\n switch (key) {\n case 'themeColor': {\n newResolvedViewport.themeColor = resolveThemeColor(\n viewport.themeColor\n )\n break\n }\n case 'colorScheme':\n newResolvedViewport.colorScheme = viewport.colorScheme || null\n break\n case 'width':\n case 'height':\n case 'initialScale':\n case 'minimumScale':\n case 'maximumScale':\n case 'userScalable':\n case 'viewportFit':\n case 'interactiveWidget':\n // always override the target with the source\n // @ts-ignore viewport properties\n newResolvedViewport[key] = viewport[key]\n break\n default:\n key satisfies never\n }\n }\n }\n\n return newResolvedViewport\n}\n\nfunction getDefinedViewport(\n mod: any,\n props: SegmentProps,\n tracingProps: { route: string }\n): Viewport | ViewportResolver | null {\n if (typeof mod.generateViewport === 'function') {\n const { route } = tracingProps\n const segmentProps = createSegmentProps(mod.generateViewport, props)\n\n return Object.assign(\n (parent: ResolvingViewport) =>\n getTracer().trace(\n ResolveMetadataSpan.generateViewport,\n {\n spanName: `generateViewport ${route}`,\n attributes: {\n 'next.page': route,\n },\n },\n () => mod.generateViewport(segmentProps, parent)\n ),\n { $$original: mod.generateViewport }\n )\n }\n return mod.viewport || null\n}\n\nfunction getDefinedMetadata(\n mod: any,\n props: SegmentProps,\n tracingProps: { route: string }\n): Metadata | MetadataResolver | null {\n if (typeof mod.generateMetadata === 'function') {\n const { route } = tracingProps\n const segmentProps = createSegmentProps(mod.generateMetadata, props)\n\n return Object.assign(\n (parent: ResolvingMetadata) =>\n getTracer().trace(\n ResolveMetadataSpan.generateMetadata,\n {\n spanName: `generateMetadata ${route}`,\n attributes: {\n 'next.page': route,\n },\n },\n () => mod.generateMetadata(segmentProps, parent)\n ),\n { $$original: mod.generateMetadata }\n )\n }\n return mod.metadata || null\n}\n\n/**\n * If `fn` is a `'use cache'` function, we add special markers to the props,\n * that the cache wrapper reads and removes, before passing the props to the\n * user function.\n */\nfunction createSegmentProps(\n fn: Function,\n props: SegmentProps\n): SegmentProps | UseCacheSegmentProps {\n return isUseCacheFunction(fn)\n ? 'searchParams' in props\n ? { ...props, $$isPage: true }\n : { ...props, $$isLayout: true }\n : props\n}\n\nasync function collectStaticImagesFiles(\n metadata: AppDirModules['metadata'],\n props: SegmentProps,\n type: keyof NonNullable\n) {\n if (!metadata?.[type]) return undefined\n\n const iconPromises = metadata[type as 'icon' | 'apple'].map(\n async (imageModule: (p: any) => Promise) =>\n interopDefault(await imageModule(props))\n )\n\n return iconPromises?.length > 0\n ? (await Promise.all(iconPromises))?.flat()\n : undefined\n}\n\nasync function resolveStaticMetadata(\n modules: AppDirModules,\n props: SegmentProps\n): Promise {\n const { metadata } = modules\n if (!metadata) return null\n\n const [icon, apple, openGraph, twitter] = await Promise.all([\n collectStaticImagesFiles(metadata, props, 'icon'),\n collectStaticImagesFiles(metadata, props, 'apple'),\n collectStaticImagesFiles(metadata, props, 'openGraph'),\n collectStaticImagesFiles(metadata, props, 'twitter'),\n ])\n\n const staticMetadata = {\n icon,\n apple,\n openGraph,\n twitter,\n manifest: metadata.manifest,\n }\n\n return staticMetadata\n}\n\n// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata]\nasync function collectMetadata({\n tree,\n metadataItems,\n errorMetadataItem,\n props,\n route,\n errorConvention,\n}: {\n tree: LoaderTree\n metadataItems: MetadataItems\n errorMetadataItem: MetadataItems[number]\n props: SegmentProps\n route: string\n errorConvention?: MetadataErrorType\n}) {\n let mod\n let modType\n const hasErrorConventionComponent = Boolean(\n errorConvention && tree[2][errorConvention]\n )\n if (errorConvention) {\n mod = await getComponentTypeModule(tree, 'layout')\n modType = errorConvention\n } else {\n const { mod: layoutOrPageMod, modType: layoutOrPageModType } =\n await getLayoutOrPageModule(tree)\n mod = layoutOrPageMod\n modType = layoutOrPageModType\n }\n\n if (modType) {\n route += `/${modType}`\n }\n\n const staticFilesMetadata = await resolveStaticMetadata(tree[2], props)\n const metadataExport = mod ? getDefinedMetadata(mod, props, { route }) : null\n\n metadataItems.push([metadataExport, staticFilesMetadata])\n\n if (hasErrorConventionComponent && errorConvention) {\n const errorMod = await getComponentTypeModule(tree, errorConvention)\n const errorMetadataExport = errorMod\n ? getDefinedMetadata(errorMod, props, { route })\n : null\n\n errorMetadataItem[0] = errorMetadataExport\n errorMetadataItem[1] = staticFilesMetadata\n }\n}\n\n// [layout.metadata, static files metadata] -> ... -> [page.metadata, static files metadata]\nasync function collectViewport({\n tree,\n viewportItems,\n errorViewportItemRef,\n props,\n route,\n errorConvention,\n}: {\n tree: LoaderTree\n viewportItems: ViewportItems\n errorViewportItemRef: ErrorViewportItemRef\n props: SegmentProps\n route: string\n errorConvention?: MetadataErrorType\n}) {\n let mod\n let modType\n const hasErrorConventionComponent = Boolean(\n errorConvention && tree[2][errorConvention]\n )\n if (errorConvention) {\n mod = await getComponentTypeModule(tree, 'layout')\n modType = errorConvention\n } else {\n const { mod: layoutOrPageMod, modType: layoutOrPageModType } =\n await getLayoutOrPageModule(tree)\n mod = layoutOrPageMod\n modType = layoutOrPageModType\n }\n\n if (modType) {\n route += `/${modType}`\n }\n\n const viewportExport = mod ? getDefinedViewport(mod, props, { route }) : null\n\n viewportItems.push(viewportExport)\n\n if (hasErrorConventionComponent && errorConvention) {\n const errorMod = await getComponentTypeModule(tree, errorConvention)\n const errorViewportExport = errorMod\n ? getDefinedViewport(errorMod, props, { route })\n : null\n\n errorViewportItemRef.current = errorViewportExport\n }\n}\n\nconst resolveMetadataItems = cache(async function (\n tree: LoaderTree,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n) {\n const parentParams = {}\n const metadataItems: MetadataItems = []\n const errorMetadataItem: MetadataItems[number] = [null, null]\n const treePrefix = undefined\n return resolveMetadataItemsImpl(\n metadataItems,\n tree,\n treePrefix,\n parentParams,\n searchParams,\n errorConvention,\n errorMetadataItem,\n getDynamicParamFromSegment,\n workStore\n )\n})\n\nasync function resolveMetadataItemsImpl(\n metadataItems: MetadataItems,\n tree: LoaderTree,\n /** Provided tree can be nested subtree, this argument says what is the path of such subtree */\n treePrefix: undefined | string[],\n parentParams: Params,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n errorMetadataItem: MetadataItems[number],\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n): Promise {\n const [segment, parallelRoutes, { page }] = tree\n const currentTreePrefix =\n treePrefix && treePrefix.length ? [...treePrefix, segment] : [segment]\n const isPage = typeof page !== 'undefined'\n\n // Handle dynamic segment params.\n const segmentParam = getDynamicParamFromSegment(segment)\n /**\n * Create object holding the parent params and current params\n */\n let currentParams = parentParams\n if (segmentParam && segmentParam.value !== null) {\n currentParams = {\n ...parentParams,\n [segmentParam.param]: segmentParam.value,\n }\n }\n\n const params = createServerParamsForMetadata(currentParams, workStore)\n const props: SegmentProps = isPage ? { params, searchParams } : { params }\n\n await collectMetadata({\n tree,\n metadataItems,\n errorMetadataItem,\n errorConvention,\n props,\n route: currentTreePrefix\n // __PAGE__ shouldn't be shown in a route\n .filter((s) => s !== PAGE_SEGMENT_KEY)\n .join('/'),\n })\n\n for (const key in parallelRoutes) {\n const childTree = parallelRoutes[key]\n await resolveMetadataItemsImpl(\n metadataItems,\n childTree,\n currentTreePrefix,\n currentParams,\n searchParams,\n errorConvention,\n errorMetadataItem,\n getDynamicParamFromSegment,\n workStore\n )\n }\n\n if (Object.keys(parallelRoutes).length === 0 && errorConvention) {\n // If there are no parallel routes, place error metadata as the last item.\n // e.g. layout -> layout -> not-found\n metadataItems.push(errorMetadataItem)\n }\n\n return metadataItems\n}\n\ntype ErrorViewportItemRef = { current: ViewportItems[number] }\nconst resolveViewportItems = cache(async function (\n tree: LoaderTree,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n) {\n const parentParams = {}\n const viewportItems: ViewportItems = []\n const errorViewportItemRef: ErrorViewportItemRef = {\n current: null,\n }\n const treePrefix = undefined\n return resolveViewportItemsImpl(\n viewportItems,\n tree,\n treePrefix,\n parentParams,\n searchParams,\n errorConvention,\n errorViewportItemRef,\n getDynamicParamFromSegment,\n workStore\n )\n})\n\nasync function resolveViewportItemsImpl(\n viewportItems: ViewportItems,\n tree: LoaderTree,\n /** Provided tree can be nested subtree, this argument says what is the path of such subtree */\n treePrefix: undefined | string[],\n parentParams: Params,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n errorViewportItemRef: ErrorViewportItemRef,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n): Promise {\n const [segment, parallelRoutes, { page }] = tree\n const currentTreePrefix =\n treePrefix && treePrefix.length ? [...treePrefix, segment] : [segment]\n const isPage = typeof page !== 'undefined'\n\n // Handle dynamic segment params.\n const segmentParam = getDynamicParamFromSegment(segment)\n /**\n * Create object holding the parent params and current params\n */\n let currentParams = parentParams\n if (segmentParam && segmentParam.value !== null) {\n currentParams = {\n ...parentParams,\n [segmentParam.param]: segmentParam.value,\n }\n }\n\n const params = createServerParamsForMetadata(currentParams, workStore)\n\n let layerProps: LayoutProps | PageProps\n if (isPage) {\n layerProps = {\n params,\n searchParams,\n }\n } else {\n layerProps = {\n params,\n }\n }\n\n await collectViewport({\n tree,\n viewportItems,\n errorViewportItemRef,\n errorConvention,\n props: layerProps,\n route: currentTreePrefix\n // __PAGE__ shouldn't be shown in a route\n .filter((s) => s !== PAGE_SEGMENT_KEY)\n .join('/'),\n })\n\n for (const key in parallelRoutes) {\n const childTree = parallelRoutes[key]\n await resolveViewportItemsImpl(\n viewportItems,\n childTree,\n currentTreePrefix,\n currentParams,\n searchParams,\n errorConvention,\n errorViewportItemRef,\n getDynamicParamFromSegment,\n workStore\n )\n }\n\n if (Object.keys(parallelRoutes).length === 0 && errorConvention) {\n // If there are no parallel routes, place error metadata as the last item.\n // e.g. layout -> layout -> not-found\n viewportItems.push(errorViewportItemRef.current)\n }\n\n return viewportItems\n}\n\ntype WithTitle = { title?: AbsoluteTemplateString | null }\ntype WithDescription = { description?: string | null }\n\nconst isTitleTruthy = (title: AbsoluteTemplateString | null | undefined) =>\n !!title?.absolute\nconst hasTitle = (metadata: WithTitle | null) => isTitleTruthy(metadata?.title)\n\nfunction inheritFromMetadata(\n target: (WithTitle & WithDescription) | null,\n metadata: ResolvedMetadata\n) {\n if (target) {\n if (!hasTitle(target) && hasTitle(metadata)) {\n target.title = metadata.title\n }\n if (!target.description && metadata.description) {\n target.description = metadata.description\n }\n }\n}\n\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\nconst commonOgKeys = ['title', 'description', 'images'] as const\nfunction postProcessMetadata(\n metadata: ResolvedMetadata,\n favicon: any,\n titleTemplates: TitleTemplates,\n metadataContext: MetadataContext\n): ResolvedMetadata {\n const { openGraph, twitter } = metadata\n\n if (openGraph) {\n // If there's openGraph information but not configured in twitter,\n // inherit them from openGraph metadata.\n let autoFillProps: Partial<{\n [Key in (typeof commonOgKeys)[number]]: NonNullable<\n ResolvedMetadata['openGraph']\n >[Key]\n }> = {}\n const hasTwTitle = hasTitle(twitter)\n const hasTwDescription = twitter?.description\n const hasTwImages = Boolean(\n twitter?.hasOwnProperty('images') && twitter.images\n )\n if (!hasTwTitle) {\n if (isTitleTruthy(openGraph.title)) {\n autoFillProps.title = openGraph.title\n } else if (metadata.title && isTitleTruthy(metadata.title)) {\n autoFillProps.title = metadata.title\n }\n }\n if (!hasTwDescription)\n autoFillProps.description =\n openGraph.description || metadata.description || undefined\n if (!hasTwImages) autoFillProps.images = openGraph.images\n\n if (Object.keys(autoFillProps).length > 0) {\n const partialTwitter = resolveTwitter(\n autoFillProps,\n normalizeMetadataBase(metadata.metadataBase),\n metadataContext,\n titleTemplates.twitter\n )\n if (metadata.twitter) {\n metadata.twitter = Object.assign({}, metadata.twitter, {\n ...(!hasTwTitle && { title: partialTwitter?.title }),\n ...(!hasTwDescription && {\n description: partialTwitter?.description,\n }),\n ...(!hasTwImages && { images: partialTwitter?.images }),\n })\n } else {\n metadata.twitter = convertUrlsToStrings(partialTwitter)\n }\n }\n }\n\n // If there's no title and description configured in openGraph or twitter,\n // use the title and description from metadata.\n inheritFromMetadata(openGraph, metadata)\n inheritFromMetadata(twitter, metadata)\n\n if (favicon) {\n if (!metadata.icons) {\n metadata.icons = {\n icon: [],\n apple: [],\n }\n }\n\n metadata.icons.icon.unshift(favicon)\n }\n\n return metadata\n}\n\ntype Result = null | T | Promise | PromiseLike\n\nfunction prerenderMetadata(metadataItems: MetadataItems) {\n // If the index is a function then it is a resolver and the next slot\n // is the corresponding result. If the index is not a function it is the result\n // itself.\n const resolversAndResults: Array<\n ((value: ResolvedMetadata) => void) | Result\n > = []\n for (let i = 0; i < metadataItems.length; i++) {\n const metadataExport = metadataItems[i][0]\n getResult(resolversAndResults, metadataExport)\n }\n return resolversAndResults\n}\n\nfunction prerenderViewport(viewportItems: ViewportItems) {\n // If the index is a function then it is a resolver and the next slot\n // is the corresponding result. If the index is not a function it is the result\n // itself.\n const resolversAndResults: Array<\n ((value: ResolvedViewport) => void) | Result\n > = []\n for (let i = 0; i < viewportItems.length; i++) {\n const viewportExport = viewportItems[i]\n getResult(resolversAndResults, viewportExport)\n }\n return resolversAndResults\n}\n\nconst noop = () => {}\n\nfunction getResult(\n resolversAndResults: Array<\n ((value: Resolved) => void) | Result\n >,\n exportForResult: null | TData | InstrumentedResolver\n) {\n if (typeof exportForResult === 'function') {\n // If the function is a 'use cache' function that uses the parent data as\n // the second argument, we don't want to eagerly execute it during\n // metadata/viewport pre-rendering, as the parent data might also be\n // computed from another 'use cache' function. To ensure that the hanging\n // input abort signal handling works in this case (i.e. the depending\n // function waits for the cached input to resolve while encoding its args),\n // they must be called sequentially. This can be accomplished by wrapping\n // the call in a lazy promise, so that the original function is only called\n // when the result is actually awaited.\n const useCacheFunctionInfo = getUseCacheFunctionInfo(\n exportForResult.$$original\n )\n if (useCacheFunctionInfo && useCacheFunctionInfo.usedArgs[1]) {\n const promise = new Promise>((resolve) =>\n resolversAndResults.push(resolve)\n )\n resolversAndResults.push(\n createLazyResult(async () => exportForResult(promise))\n )\n } else {\n let result: TData | Promise\n if (useCacheFunctionInfo) {\n resolversAndResults.push(noop)\n // @ts-expect-error We intentionally omit the parent argument, because\n // we know from the check above that the 'use cache' function does not\n // use it.\n result = exportForResult()\n } else {\n result = exportForResult(\n new Promise>((resolve) =>\n resolversAndResults.push(resolve)\n )\n )\n }\n resolversAndResults.push(result)\n if (result instanceof Promise) {\n // since we eager execute generateMetadata and\n // they can reject at anytime we need to ensure\n // we attach the catch handler right away to\n // prevent unhandled rejections crashing the process\n result.catch((err) => {\n return {\n __nextError: err,\n }\n })\n }\n }\n } else if (typeof exportForResult === 'object') {\n resolversAndResults.push(exportForResult)\n } else {\n resolversAndResults.push(null)\n }\n}\n\nfunction freezeInDev(obj: T): T {\n if (process.env.NODE_ENV === 'development') {\n return (\n require('../../shared/lib/deep-freeze') as typeof import('../../shared/lib/deep-freeze')\n ).deepFreeze(obj) as T\n }\n\n return obj\n}\n\nexport async function accumulateMetadata(\n route: string,\n metadataItems: MetadataItems,\n pathname: Promise,\n metadataContext: MetadataContext\n): Promise {\n let resolvedMetadata = createDefaultMetadata()\n\n let titleTemplates: TitleTemplates = {\n title: null,\n twitter: null,\n openGraph: null,\n }\n\n const buildState = {\n warnings: new Set(),\n }\n\n let favicon\n\n // Collect the static icons in the most leaf node,\n // since we don't collect all the static metadata icons in the parent segments.\n const leafSegmentStaticIcons = {\n icon: [],\n apple: [],\n }\n\n const resolversAndResults = prerenderMetadata(metadataItems)\n let resultIndex = 0\n\n for (let i = 0; i < metadataItems.length; i++) {\n const staticFilesMetadata = metadataItems[i][1]\n // Treat favicon as special case, it should be the first icon in the list\n // i <= 1 represents root layout, and if current page is also at root\n if (i <= 1 && isFavicon(staticFilesMetadata?.icon?.[0])) {\n const iconMod = staticFilesMetadata?.icon?.shift()\n if (i === 0) favicon = iconMod\n }\n\n let pendingMetadata = resolversAndResults[resultIndex++]\n if (typeof pendingMetadata === 'function') {\n // This metadata item had a `generateMetadata` and\n // we need to provide the currently resolved metadata\n // to it before we continue;\n const resolveParentMetadata = pendingMetadata\n // we know that the next item is a result if this item\n // was a resolver\n pendingMetadata = resolversAndResults[resultIndex++] as Result\n\n resolveParentMetadata(freezeInDev(resolvedMetadata))\n }\n // Otherwise the item was either null or a static export\n\n let metadata: Metadata | null\n if (isPromiseLike(pendingMetadata)) {\n metadata = await pendingMetadata\n } else {\n metadata = pendingMetadata\n }\n\n resolvedMetadata = await mergeMetadata(route, pathname, {\n resolvedMetadata,\n metadata,\n metadataContext,\n staticFilesMetadata,\n titleTemplates,\n buildState,\n leafSegmentStaticIcons,\n })\n\n // If the layout is the same layer with page, skip the leaf layout and leaf page\n // The leaf layout and page are the last two items\n if (i < metadataItems.length - 2) {\n titleTemplates = {\n title: resolvedMetadata.title?.template || null,\n openGraph: resolvedMetadata.openGraph?.title.template || null,\n twitter: resolvedMetadata.twitter?.title.template || null,\n }\n }\n }\n\n if (\n leafSegmentStaticIcons.icon.length > 0 ||\n leafSegmentStaticIcons.apple.length > 0\n ) {\n if (!resolvedMetadata.icons) {\n resolvedMetadata.icons = {\n icon: [],\n apple: [],\n }\n if (leafSegmentStaticIcons.icon.length > 0) {\n resolvedMetadata.icons.icon.unshift(...leafSegmentStaticIcons.icon)\n }\n if (leafSegmentStaticIcons.apple.length > 0) {\n resolvedMetadata.icons.apple.unshift(...leafSegmentStaticIcons.apple)\n }\n }\n }\n\n // Only log warnings if there are any, and only once after the metadata resolving process is finished\n if (buildState.warnings.size > 0) {\n for (const warning of buildState.warnings) {\n Log.warn(warning)\n }\n }\n\n return postProcessMetadata(\n resolvedMetadata,\n favicon,\n titleTemplates,\n metadataContext\n )\n}\n\nexport async function accumulateViewport(\n viewportItems: ViewportItems\n): Promise {\n let resolvedViewport: ResolvedViewport = createDefaultViewport()\n\n const resolversAndResults = prerenderViewport(viewportItems)\n let i = 0\n\n while (i < resolversAndResults.length) {\n let pendingViewport = resolversAndResults[i++]\n if (typeof pendingViewport === 'function') {\n // this viewport item had a `generateViewport` and\n // we need to provide the currently resolved viewport\n // to it before we continue;\n const resolveParentViewport = pendingViewport\n // we know that the next item is a result if this item\n // was a resolver\n pendingViewport = resolversAndResults[i++] as Result\n\n resolveParentViewport(freezeInDev(resolvedViewport))\n }\n // Otherwise the item was either null or a static export\n\n let viewport: Viewport | null\n if (isPromiseLike(pendingViewport)) {\n viewport = await pendingViewport\n } else {\n viewport = pendingViewport\n }\n\n resolvedViewport = mergeViewport({ resolvedViewport, viewport })\n }\n\n return resolvedViewport\n}\n\n// Exposed API for metadata component, that directly resolve the loader tree and related context as resolved metadata.\nexport async function resolveMetadata(\n tree: LoaderTree,\n pathname: Promise,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore,\n metadataContext: MetadataContext\n): Promise {\n const metadataItems = await resolveMetadataItems(\n tree,\n searchParams,\n errorConvention,\n getDynamicParamFromSegment,\n workStore\n )\n return accumulateMetadata(\n workStore.route,\n metadataItems,\n pathname,\n metadataContext\n )\n}\n\n// Exposed API for viewport component, that directly resolve the loader tree and related context as resolved viewport.\nexport async function resolveViewport(\n tree: LoaderTree,\n searchParams: Promise,\n errorConvention: MetadataErrorType | undefined,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n): Promise {\n const viewportItems = await resolveViewportItems(\n tree,\n searchParams,\n errorConvention,\n getDynamicParamFromSegment,\n workStore\n )\n return accumulateViewport(viewportItems)\n}\n\nfunction isPromiseLike(\n value: unknown | PromiseLike\n): value is PromiseLike {\n return (\n typeof value === 'object' &&\n value !== null &&\n typeof (value as PromiseLike).then === 'function'\n )\n}\n"],"names":["cache","createDefaultMetadata","createDefaultViewport","resolveOpenGraph","resolveTwitter","resolveTitle","resolveAsArrayOrUndefined","getComponentTypeModule","getLayoutOrPageModule","interopDefault","resolveAlternates","resolveAppleWebApp","resolveAppLinks","resolveRobots","resolveThemeColor","resolveVerification","resolveItunes","resolveFacebook","resolvePagination","resolveIcons","getTracer","ResolveMetadataSpan","PAGE_SEGMENT_KEY","Log","createServerParamsForMetadata","getUseCacheFunctionInfo","isUseCacheFunction","createLazyResult","isFavicon","icon","url","toString","startsWith","type","convertUrlsToStrings","input","URL","Array","isArray","map","item","result","key","value","Object","entries","normalizeMetadataBase","metadataBase","Error","mergeStaticMetadata","source","target","staticFilesMetadata","metadataContext","titleTemplates","leafSegmentStaticIcons","pathname","apple","openGraph","twitter","manifest","hasOwnProperty","resolvedTwitter","images","isStaticMetadataRouteFile","resolvedOpenGraph","mergeMetadata","route","metadata","resolvedMetadata","buildState","newResolvedMetadata","structuredClone","undefined","key_","title","alternates","facebook","verification","icons","appleWebApp","appLinks","robots","authors","itunes","pagination","other","assign","warnings","add","mergeViewport","resolvedViewport","viewport","newResolvedViewport","themeColor","colorScheme","getDefinedViewport","mod","props","tracingProps","generateViewport","segmentProps","createSegmentProps","parent","trace","spanName","attributes","$$original","getDefinedMetadata","generateMetadata","fn","$$isPage","$$isLayout","collectStaticImagesFiles","iconPromises","imageModule","length","Promise","all","flat","resolveStaticMetadata","modules","staticMetadata","collectMetadata","tree","metadataItems","errorMetadataItem","errorConvention","modType","hasErrorConventionComponent","Boolean","layoutOrPageMod","layoutOrPageModType","metadataExport","push","errorMod","errorMetadataExport","collectViewport","viewportItems","errorViewportItemRef","viewportExport","errorViewportExport","current","resolveMetadataItems","searchParams","getDynamicParamFromSegment","workStore","parentParams","treePrefix","resolveMetadataItemsImpl","segment","parallelRoutes","page","currentTreePrefix","isPage","segmentParam","currentParams","param","params","filter","s","join","childTree","keys","resolveViewportItems","resolveViewportItemsImpl","layerProps","isTitleTruthy","absolute","hasTitle","inheritFromMetadata","description","commonOgKeys","postProcessMetadata","favicon","autoFillProps","hasTwTitle","hasTwDescription","hasTwImages","partialTwitter","unshift","prerenderMetadata","resolversAndResults","i","getResult","prerenderViewport","noop","exportForResult","useCacheFunctionInfo","usedArgs","promise","resolve","catch","err","__nextError","freezeInDev","obj","process","env","NODE_ENV","require","deepFreeze","accumulateMetadata","Set","resultIndex","iconMod","shift","pendingMetadata","resolveParentMetadata","isPromiseLike","template","size","warning","warn","accumulateViewport","pendingViewport","resolveParentViewport","resolveMetadata","resolveViewport","then"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 12157, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/http-access-fallback.ts"],"sourcesContent":["export const HTTPAccessErrorStatus = {\n NOT_FOUND: 404,\n FORBIDDEN: 403,\n UNAUTHORIZED: 401,\n}\n\nconst ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus))\n\nexport const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'\n\nexport type HTTPAccessFallbackError = Error & {\n digest: `${typeof HTTP_ERROR_FALLBACK_ERROR_CODE};${string}`\n}\n\n/**\n * Checks an error to determine if it's an error generated by\n * the HTTP navigation APIs `notFound()`, `forbidden()` or `unauthorized()`.\n *\n * @param error the error that may reference a HTTP access error\n * @returns true if the error is a HTTP access error\n */\nexport function isHTTPAccessFallbackError(\n error: unknown\n): error is HTTPAccessFallbackError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n const [prefix, httpStatus] = error.digest.split(';')\n\n return (\n prefix === HTTP_ERROR_FALLBACK_ERROR_CODE &&\n ALLOWED_CODES.has(Number(httpStatus))\n )\n}\n\nexport function getAccessFallbackHTTPStatus(\n error: HTTPAccessFallbackError\n): number {\n const httpStatus = error.digest.split(';')[1]\n return Number(httpStatus)\n}\n\nexport function getAccessFallbackErrorTypeByStatus(\n status: number\n): 'not-found' | 'forbidden' | 'unauthorized' | undefined {\n switch (status) {\n case 401:\n return 'unauthorized'\n case 403:\n return 'forbidden'\n case 404:\n return 'not-found'\n default:\n return\n }\n}\n"],"names":["HTTPAccessErrorStatus","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","ALLOWED_CODES","Set","Object","values","HTTP_ERROR_FALLBACK_ERROR_CODE","isHTTPAccessFallbackError","error","digest","prefix","httpStatus","split","has","Number","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","status"],"mappings":";;;;;;;;;;;;AAAO,MAAMA,wBAAwB;IACnCC,WAAW;IACXC,WAAW;IACXC,cAAc;AAChB,EAAC;AAED,MAAMC,gBAAgB,IAAIC,IAAIC,OAAOC,MAAM,CAACP;AAErC,MAAMQ,iCAAiC,2BAA0B;AAajE,SAASC,0BACdC,KAAc;IAEd,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IACA,MAAM,CAACC,QAAQC,WAAW,GAAGH,MAAMC,MAAM,CAACG,KAAK,CAAC;IAEhD,OACEF,WAAWJ,kCACXJ,cAAcW,GAAG,CAACC,OAAOH;AAE7B;AAEO,SAASI,4BACdP,KAA8B;IAE9B,MAAMG,aAAaH,MAAMC,MAAM,CAACG,KAAK,CAAC,IAAI,CAAC,EAAE;IAC7C,OAAOE,OAAOH;AAChB;AAEO,SAASK,mCACdC,MAAc;IAEd,OAAQA;QACN,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT;YACE;IACJ;AACF","ignoreList":[0]}}, - {"offset": {"line": 12203, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/pathname.ts"],"sourcesContent":["import type { WorkStore } from '../app-render/work-async-storage.external'\n\nimport {\n delayUntilRuntimeStage,\n postponeWithTracking,\n type DynamicTrackingState,\n} from '../app-render/dynamic-rendering'\n\nimport {\n throwInvariantForMissingStore,\n workUnitAsyncStorage,\n type StaticPrerenderStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nexport function createServerPathnameForMetadata(\n underlyingPathname: string,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy': {\n return createPrerenderPathname(\n underlyingPathname,\n workStore,\n workUnitStore\n )\n }\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerPathnameForMetadata should not be called in cache contexts.'\n )\n\n case 'prerender-runtime':\n return delayUntilRuntimeStage(\n workUnitStore,\n createRenderPathname(underlyingPathname)\n )\n case 'request':\n return createRenderPathname(underlyingPathname)\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nfunction createPrerenderPathname(\n underlyingPathname: string,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise {\n switch (prerenderStore.type) {\n case 'prerender-client':\n throw new InvariantError(\n 'createPrerenderPathname was called inside a client component scope.'\n )\n case 'prerender': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`pathname`'\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return makeErroringPathname(workStore, prerenderStore.dynamicTracking)\n }\n break\n }\n case 'prerender-legacy':\n break\n default:\n prerenderStore satisfies never\n }\n\n // We don't have any fallback params so we have an entirely static safe params object\n return Promise.resolve(underlyingPathname)\n}\n\nfunction makeErroringPathname(\n workStore: WorkStore,\n dynamicTracking: null | DynamicTrackingState\n): Promise {\n let reject: null | ((reason: unknown) => void) = null\n const promise = new Promise((_, re) => {\n reject = re\n })\n\n const originalThen = promise.then.bind(promise)\n\n // We instrument .then so that we can generate a tracking event only if you actually\n // await this promise, not just that it is created.\n promise.then = (onfulfilled, onrejected) => {\n if (reject) {\n try {\n postponeWithTracking(\n workStore.route,\n 'metadata relative url resolving',\n dynamicTracking\n )\n } catch (error) {\n reject(error)\n reject = null\n }\n }\n return originalThen(onfulfilled, onrejected)\n }\n\n // We wrap in a noop proxy to trick the runtime into thinking it\n // isn't a native promise (it's not really). This is so that awaiting\n // the promise will call the `then` property triggering the lazy postpone\n return new Proxy(promise, {})\n}\n\nfunction createRenderPathname(underlyingPathname: string): Promise {\n return Promise.resolve(underlyingPathname)\n}\n"],"names":["delayUntilRuntimeStage","postponeWithTracking","throwInvariantForMissingStore","workUnitAsyncStorage","makeHangingPromise","InvariantError","createServerPathnameForMetadata","underlyingPathname","workStore","workUnitStore","getStore","type","createPrerenderPathname","createRenderPathname","prerenderStore","fallbackParams","fallbackRouteParams","size","renderSignal","route","makeErroringPathname","dynamicTracking","Promise","resolve","reject","promise","_","re","originalThen","then","bind","onfulfilled","onrejected","error","Proxy"],"mappings":";;;;AAEA,SACEA,sBAAsB,EACtBC,oBAAoB,QAEf,kCAAiC;AAExC,SACEC,6BAA6B,EAC7BC,oBAAoB,QAEf,iDAAgD;AACvD,SAASC,kBAAkB,QAAQ,6BAA4B;AAC/D,SAASC,cAAc,QAAQ,mCAAkC;;;;;AAE1D,SAASC,gCACdC,kBAA0B,EAC1BC,SAAoB;IAEpB,MAAMC,gBAAgBN,2SAAAA,CAAqBO,QAAQ;IACnD,IAAID,eAAe;QACjB,OAAQA,cAAcE,IAAI;YACxB,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;gBAAoB;oBACvB,OAAOC,wBACLL,oBACAC,WACAC;gBAEJ;YACA,KAAK;YACL,KAAK;YACL,KAAK;gBACH,MAAM,OAAA,cAEL,CAFK,IAAIJ,4LAAAA,CACR,4EADI,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YAEF,KAAK;gBACH,WAAOL,gNAAAA,EACLS,eACAI,qBAAqBN;YAEzB,KAAK;gBACH,OAAOM,qBAAqBN;YAC9B;gBACEE;QACJ;IACF;QACAP,oTAAAA;AACF;AAEA,SAASU,wBACPL,kBAA0B,EAC1BC,SAAoB,EACpBM,cAAoC;IAEpC,OAAQA,eAAeH,IAAI;QACzB,KAAK;YACH,MAAM,OAAA,cAEL,CAFK,IAAIN,4LAAAA,CACR,wEADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF,KAAK;YAAa;gBAChB,MAAMU,iBAAiBD,eAAeE,mBAAmB;gBACzD,IAAID,kBAAkBA,eAAeE,IAAI,GAAG,GAAG;oBAC7C,WAAOb,oMAAAA,EACLU,eAAeI,YAAY,EAC3BV,UAAUW,KAAK,EACf;gBAEJ;gBACA;YACF;QACA,KAAK;YAAiB;gBACpB,MAAMJ,iBAAiBD,eAAeE,mBAAmB;gBACzD,IAAID,kBAAkBA,eAAeE,IAAI,GAAG,GAAG;oBAC7C,OAAOG,qBAAqBZ,WAAWM,eAAeO,eAAe;gBACvE;gBACA;YACF;QACA,KAAK;YACH;QACF;YACEP;IACJ;IAEA,qFAAqF;IACrF,OAAOQ,QAAQC,OAAO,CAAChB;AACzB;AAEA,SAASa,qBACPZ,SAAoB,EACpBa,eAA4C;IAE5C,IAAIG,SAA6C;IACjD,MAAMC,UAAU,IAAIH,QAAW,CAACI,GAAGC;QACjCH,SAASG;IACX;IAEA,MAAMC,eAAeH,QAAQI,IAAI,CAACC,IAAI,CAACL;IAEvC,oFAAoF;IACpF,mDAAmD;IACnDA,QAAQI,IAAI,GAAG,CAACE,aAAaC;QAC3B,IAAIR,QAAQ;YACV,IAAI;oBACFvB,8MAAAA,EACEO,UAAUW,KAAK,EACf,mCACAE;YAEJ,EAAE,OAAOY,OAAO;gBACdT,OAAOS;gBACPT,SAAS;YACX;QACF;QACA,OAAOI,aAAaG,aAAaC;IACnC;IAEA,gEAAgE;IAChE,qEAAqE;IACrE,yEAAyE;IACzE,OAAO,IAAIE,MAAMT,SAAS,CAAC;AAC7B;AAEA,SAASZ,qBAAqBN,kBAA0B;IACtD,OAAOe,QAAQC,OAAO,CAAChB;AACzB","ignoreList":[0]}}, - {"offset": {"line": 12307, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/router-utils/is-postpone.ts"],"sourcesContent":["const REACT_POSTPONE_TYPE: symbol = Symbol.for('react.postpone')\n\nexport function isPostpone(error: any): boolean {\n return (\n typeof error === 'object' &&\n error !== null &&\n error.$$typeof === REACT_POSTPONE_TYPE\n )\n}\n"],"names":["REACT_POSTPONE_TYPE","Symbol","for","isPostpone","error","$$typeof"],"mappings":";;;;AAAA,MAAMA,sBAA8BC,OAAOC,GAAG,CAAC;AAExC,SAASC,WAAWC,KAAU;IACnC,OACE,OAAOA,UAAU,YACjBA,UAAU,QACVA,MAAMC,QAAQ,KAAKL;AAEvB","ignoreList":[0]}}, - {"offset": {"line": 12318, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/lib/framework/boundary-components.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 12324, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/lib/framework/boundary-components.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 12331, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-components.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from './boundary-constants'\n\n// We use a namespace object to allow us to recover the name of the function\n// at runtime even when production bundling/minification is used.\nconst NameSpace = {\n [METADATA_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [VIEWPORT_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [OUTLET_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [ROOT_LAYOUT_BOUNDARY_NAME]: function ({\n children,\n }: {\n children: ReactNode\n }) {\n return children\n },\n}\n\nexport const MetadataBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[METADATA_BOUNDARY_NAME.slice(0) as typeof METADATA_BOUNDARY_NAME]\n\nexport const ViewportBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[VIEWPORT_BOUNDARY_NAME.slice(0) as typeof VIEWPORT_BOUNDARY_NAME]\n\nexport const OutletBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[OUTLET_BOUNDARY_NAME.slice(0) as typeof OUTLET_BOUNDARY_NAME]\n\nexport const RootLayoutBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[\n ROOT_LAYOUT_BOUNDARY_NAME.slice(0) as typeof ROOT_LAYOUT_BOUNDARY_NAME\n ]\n"],"names":["METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","NameSpace","children","MetadataBoundary","slice","ViewportBoundary","OutletBoundary","RootLayoutBoundary"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 12339, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/metadata.tsx"],"sourcesContent":["import React, { Suspense, cache, cloneElement } from 'react'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { GetDynamicParamFromSegment } from '../../server/app-render/app-render'\nimport type { LoaderTree } from '../../server/lib/app-dir-module'\nimport type { SearchParams } from '../../server/request/search-params'\nimport {\n AppleWebAppMeta,\n FormatDetectionMeta,\n ItunesMeta,\n BasicMeta,\n ViewportMeta,\n VerificationMeta,\n FacebookMeta,\n PinterestMeta,\n} from './generate/basic'\nimport { AlternatesMetadata } from './generate/alternate'\nimport {\n OpenGraphMetadata,\n TwitterMetadata,\n AppLinksMeta,\n} from './generate/opengraph'\nimport { IconsMetadata } from './generate/icons'\nimport {\n type MetadataErrorType,\n resolveMetadata,\n resolveViewport,\n} from './resolve-metadata'\nimport { MetaFilter } from './generate/meta'\nimport type {\n ResolvedMetadata,\n ResolvedViewport,\n} from './types/metadata-interface'\nimport { isHTTPAccessFallbackError } from '../../client/components/http-access-fallback/http-access-fallback'\nimport type { MetadataContext } from './types/resolvers'\nimport type { WorkStore } from '../../server/app-render/work-async-storage.external'\nimport { createServerSearchParamsForMetadata } from '../../server/request/search-params'\nimport { createServerPathnameForMetadata } from '../../server/request/pathname'\nimport { isPostpone } from '../../server/lib/router-utils/is-postpone'\n\nimport {\n MetadataBoundary,\n ViewportBoundary,\n OutletBoundary,\n} from '../framework/boundary-components'\n\n// Use a promise to share the status of the metadata resolving,\n// returning two components `MetadataTree` and `MetadataOutlet`\n// `MetadataTree` is the one that will be rendered at first in the content sequence for metadata tags.\n// `MetadataOutlet` is the one that will be rendered under error boundaries for metadata resolving errors.\n// In this way we can let the metadata tags always render successfully,\n// and the error will be caught by the error boundary and trigger fallbacks.\nexport function createMetadataComponents({\n tree,\n pathname,\n parsedQuery,\n metadataContext,\n getDynamicParamFromSegment,\n errorType,\n workStore,\n serveStreamingMetadata,\n}: {\n tree: LoaderTree\n pathname: string\n parsedQuery: SearchParams\n metadataContext: MetadataContext\n getDynamicParamFromSegment: GetDynamicParamFromSegment\n errorType?: MetadataErrorType | 'redirect'\n workStore: WorkStore\n serveStreamingMetadata: boolean\n}): {\n Viewport: React.ComponentType\n Metadata: React.ComponentType\n MetadataOutlet: React.ComponentType\n} {\n const searchParams = createServerSearchParamsForMetadata(\n parsedQuery,\n workStore\n )\n const pathnameForMetadata = createServerPathnameForMetadata(\n pathname,\n workStore\n )\n\n async function Viewport() {\n const tags = await getResolvedViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore,\n errorType\n ).catch((viewportErr) => {\n // When Legacy PPR is enabled viewport can reject with a Postpone type\n // This will go away once Legacy PPR is removed and dynamic metadata will\n // stay pending until after the prerender is complete when it is dynamic\n if (isPostpone(viewportErr)) {\n throw viewportErr\n }\n if (!errorType && isHTTPAccessFallbackError(viewportErr)) {\n return getNotFoundViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore\n ).catch(() => null)\n }\n // We're going to throw the error from the metadata outlet so we just render null here instead\n return null\n })\n\n return tags\n }\n Viewport.displayName = 'Next.Viewport'\n\n function ViewportWrapper() {\n return (\n \n \n \n )\n }\n\n async function Metadata() {\n const tags = await getResolvedMetadata(\n tree,\n pathnameForMetadata,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore,\n errorType\n ).catch((metadataErr) => {\n // When Legacy PPR is enabled metadata can reject with a Postpone type\n // This will go away once Legacy PPR is removed and dynamic metadata will\n // stay pending until after the prerender is complete when it is dynamic\n if (isPostpone(metadataErr)) {\n throw metadataErr\n }\n if (!errorType && isHTTPAccessFallbackError(metadataErr)) {\n return getNotFoundMetadata(\n tree,\n pathnameForMetadata,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore\n ).catch(() => null)\n }\n // We're going to throw the error from the metadata outlet so we just render null here instead\n return null\n })\n\n return tags\n }\n Metadata.displayName = 'Next.Metadata'\n\n function MetadataWrapper() {\n // TODO: We shouldn't change what we render based on whether we are streaming or not.\n // If we aren't streaming we should just block the response until we have resolved the\n // metadata.\n if (!serveStreamingMetadata) {\n return (\n \n \n \n )\n }\n return (\n

\n )\n }\n\n function MetadataOutlet() {\n const pendingOutlet = Promise.all([\n getResolvedMetadata(\n tree,\n pathnameForMetadata,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore,\n errorType\n ),\n getResolvedViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore,\n errorType\n ),\n ]).then(() => null)\n\n // TODO: We shouldn't change what we render based on whether we are streaming or not.\n // If we aren't streaming we should just block the response until we have resolved the\n // metadata.\n if (!serveStreamingMetadata) {\n return {pendingOutlet}\n }\n return (\n \n {pendingOutlet}\n \n )\n }\n MetadataOutlet.displayName = 'Next.MetadataOutlet'\n\n return {\n Viewport: ViewportWrapper,\n Metadata: MetadataWrapper,\n MetadataOutlet,\n }\n}\n\nconst getResolvedMetadata = cache(getResolvedMetadataImpl)\nasync function getResolvedMetadataImpl(\n tree: LoaderTree,\n pathname: Promise,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n metadataContext: MetadataContext,\n workStore: WorkStore,\n errorType?: MetadataErrorType | 'redirect'\n): Promise {\n const errorConvention = errorType === 'redirect' ? undefined : errorType\n return renderMetadata(\n tree,\n pathname,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore,\n errorConvention\n )\n}\n\nconst getNotFoundMetadata = cache(getNotFoundMetadataImpl)\nasync function getNotFoundMetadataImpl(\n tree: LoaderTree,\n pathname: Promise,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n metadataContext: MetadataContext,\n workStore: WorkStore\n): Promise {\n const notFoundErrorConvention = 'not-found'\n return renderMetadata(\n tree,\n pathname,\n searchParams,\n getDynamicParamFromSegment,\n metadataContext,\n workStore,\n notFoundErrorConvention\n )\n}\n\nconst getResolvedViewport = cache(getResolvedViewportImpl)\nasync function getResolvedViewportImpl(\n tree: LoaderTree,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore,\n errorType?: MetadataErrorType | 'redirect'\n): Promise {\n const errorConvention = errorType === 'redirect' ? undefined : errorType\n return renderViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore,\n errorConvention\n )\n}\n\nconst getNotFoundViewport = cache(getNotFoundViewportImpl)\nasync function getNotFoundViewportImpl(\n tree: LoaderTree,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore\n): Promise {\n const notFoundErrorConvention = 'not-found'\n return renderViewport(\n tree,\n searchParams,\n getDynamicParamFromSegment,\n workStore,\n notFoundErrorConvention\n )\n}\n\nasync function renderMetadata(\n tree: LoaderTree,\n pathname: Promise,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n metadataContext: MetadataContext,\n workStore: WorkStore,\n errorConvention?: MetadataErrorType\n) {\n const resolvedMetadata = await resolveMetadata(\n tree,\n pathname,\n searchParams,\n errorConvention,\n getDynamicParamFromSegment,\n workStore,\n metadataContext\n )\n const elements: Array =\n createMetadataElements(resolvedMetadata)\n return (\n <>\n {elements.map((el, index) => {\n return cloneElement(el as React.ReactElement, { key: index })\n })}\n \n )\n}\n\nasync function renderViewport(\n tree: LoaderTree,\n searchParams: Promise,\n getDynamicParamFromSegment: GetDynamicParamFromSegment,\n workStore: WorkStore,\n errorConvention?: MetadataErrorType\n) {\n const resolvedViewport = await resolveViewport(\n tree,\n searchParams,\n errorConvention,\n getDynamicParamFromSegment,\n workStore\n )\n\n const elements: Array =\n createViewportElements(resolvedViewport)\n return (\n <>\n {elements.map((el, index) => {\n return cloneElement(el as React.ReactElement, { key: index })\n })}\n \n )\n}\n\nfunction createMetadataElements(metadata: ResolvedMetadata) {\n return MetaFilter([\n BasicMeta({ metadata }),\n AlternatesMetadata({ alternates: metadata.alternates }),\n ItunesMeta({ itunes: metadata.itunes }),\n FacebookMeta({ facebook: metadata.facebook }),\n PinterestMeta({ pinterest: metadata.pinterest }),\n FormatDetectionMeta({ formatDetection: metadata.formatDetection }),\n VerificationMeta({ verification: metadata.verification }),\n AppleWebAppMeta({ appleWebApp: metadata.appleWebApp }),\n OpenGraphMetadata({ openGraph: metadata.openGraph }),\n TwitterMetadata({ twitter: metadata.twitter }),\n AppLinksMeta({ appLinks: metadata.appLinks }),\n IconsMetadata({ icons: metadata.icons }),\n ])\n}\n\nfunction createViewportElements(viewport: ResolvedViewport) {\n return MetaFilter([ViewportMeta({ viewport: viewport })])\n}\n"],"names":["React","Suspense","cache","cloneElement","AppleWebAppMeta","FormatDetectionMeta","ItunesMeta","BasicMeta","ViewportMeta","VerificationMeta","FacebookMeta","PinterestMeta","AlternatesMetadata","OpenGraphMetadata","TwitterMetadata","AppLinksMeta","IconsMetadata","resolveMetadata","resolveViewport","MetaFilter","isHTTPAccessFallbackError","createServerSearchParamsForMetadata","createServerPathnameForMetadata","isPostpone","MetadataBoundary","ViewportBoundary","OutletBoundary","createMetadataComponents","tree","pathname","parsedQuery","metadataContext","getDynamicParamFromSegment","errorType","workStore","serveStreamingMetadata","searchParams","pathnameForMetadata","Viewport","tags","getResolvedViewport","catch","viewportErr","getNotFoundViewport","displayName","ViewportWrapper","Metadata","getResolvedMetadata","metadataErr","getNotFoundMetadata","MetadataWrapper","div","hidden","name","MetadataOutlet","pendingOutlet","Promise","all","then","getResolvedMetadataImpl","errorConvention","undefined","renderMetadata","getNotFoundMetadataImpl","notFoundErrorConvention","getResolvedViewportImpl","renderViewport","getNotFoundViewportImpl","resolvedMetadata","elements","createMetadataElements","map","el","index","key","resolvedViewport","createViewportElements","metadata","alternates","itunes","facebook","pinterest","formatDetection","verification","appleWebApp","openGraph","twitter","appLinks","icons","viewport"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 12550, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/rsc/react-dom.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-rsc']!.ReactDOM\n"],"names":["module","exports","require","vendored","ReactDOM"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,QAAQ","ignoreList":[0]}}, - {"offset": {"line": 12555, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/rsc/preloads.ts"],"sourcesContent":["/*\n\nFiles in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.\n\n*/\n\nimport ReactDOM from 'react-dom'\n\nexport function preloadStyle(\n href: string,\n crossOrigin: string | undefined,\n nonce: string | undefined\n) {\n const opts: any = { as: 'style' }\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce\n }\n ReactDOM.preload(href, opts)\n}\n\nexport function preloadFont(\n href: string,\n type: string,\n crossOrigin: string | undefined,\n nonce: string | undefined\n) {\n const opts: any = { as: 'font', type }\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce\n }\n ReactDOM.preload(href, opts)\n}\n\nexport function preconnect(\n href: string,\n crossOrigin: string | undefined,\n nonce: string | undefined\n) {\n const opts: any = {}\n if (typeof crossOrigin === 'string') {\n opts.crossOrigin = crossOrigin\n }\n if (typeof nonce === 'string') {\n opts.nonce = nonce\n }\n ;(ReactDOM as any).preconnect(href, opts)\n}\n"],"names":["ReactDOM","preloadStyle","href","crossOrigin","nonce","opts","as","preload","preloadFont","type","preconnect"],"mappings":";;;;;;;;AAAA;;;;AAIA,GAEA,OAAOA,cAAc,YAAW;;AAEzB,SAASC,aACdC,IAAY,EACZC,WAA+B,EAC/BC,KAAyB;IAEzB,MAAMC,OAAY;QAAEC,IAAI;IAAQ;IAChC,IAAI,OAAOH,gBAAgB,UAAU;QACnCE,KAAKF,WAAW,GAAGA;IACrB;IACA,IAAI,OAAOC,UAAU,UAAU;QAC7BC,KAAKD,KAAK,GAAGA;IACf;IACAJ,uNAAAA,CAASO,OAAO,CAACL,MAAMG;AACzB;AAEO,SAASG,YACdN,IAAY,EACZO,IAAY,EACZN,WAA+B,EAC/BC,KAAyB;IAEzB,MAAMC,OAAY;QAAEC,IAAI;QAAQG;IAAK;IACrC,IAAI,OAAON,gBAAgB,UAAU;QACnCE,KAAKF,WAAW,GAAGA;IACrB;IACA,IAAI,OAAOC,UAAU,UAAU;QAC7BC,KAAKD,KAAK,GAAGA;IACf;IACAJ,uNAAAA,CAASO,OAAO,CAACL,MAAMG;AACzB;AAEO,SAASK,WACdR,IAAY,EACZC,WAA+B,EAC/BC,KAAyB;IAEzB,MAAMC,OAAY,CAAC;IACnB,IAAI,OAAOF,gBAAgB,UAAU;QACnCE,KAAKF,WAAW,GAAGA;IACrB;IACA,IAAI,OAAOC,UAAU,UAAU;QAC7BC,KAAKD,KAAK,GAAGA;IACf;;IACEJ,uNAAAA,CAAiBU,UAAU,CAACR,MAAMG;AACtC","ignoreList":[0]}}, - {"offset": {"line": 12609, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/rsc/postpone.ts"],"sourcesContent":["/*\n\nFiles in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.\n\n*/\n\n// When postpone is available in canary React we can switch to importing it directly\nexport { Postpone } from '../dynamic-rendering'\n"],"names":["Postpone"],"mappings":";AAAA;;;;AAIA,GAEA,oFAAoF;AACpF,SAASA,QAAQ,QAAQ,uBAAsB","ignoreList":[0]}}, - {"offset": {"line": 12621, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/rsc/taint.ts"],"sourcesContent":["/*\n\nFiles in the rsc directory are meant to be packaged as part of the RSC graph using next-app-loader.\n\n*/\n\nimport * as React from 'react'\n\ntype Reference = object\ntype TaintableUniqueValue = string | bigint | ArrayBufferView\n\nfunction notImplemented() {\n throw new Error('Taint can only be used with the taint flag.')\n}\n\nexport const taintObjectReference: (\n message: string | undefined,\n object: Reference\n) => void = process.env.__NEXT_EXPERIMENTAL_REACT\n ? // @ts-ignore\n React.experimental_taintObjectReference\n : notImplemented\nexport const taintUniqueValue: (\n message: string | undefined,\n lifetime: Reference,\n value: TaintableUniqueValue\n) => void = process.env.__NEXT_EXPERIMENTAL_REACT\n ? // @ts-ignore\n React.experimental_taintUniqueValue\n : notImplemented\n"],"names":["React","notImplemented","Error","taintObjectReference","process","env","__NEXT_EXPERIMENTAL_REACT","experimental_taintObjectReference","taintUniqueValue","experimental_taintUniqueValue"],"mappings":";;;;;;AAAA;;;;AAIA,GAEA,YAAYA,WAAW,QAAO;;AAK9B,SAASC;IACP,MAAM,OAAA,cAAwD,CAAxD,IAAIC,MAAM,gDAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAuD;AAC/D;AAEO,MAAMC,uBAGDC,QAAQC,GAAG,CAACC,yBAAyB,CAE7CN,MAAMO,oBACNN,aADuC,EACzB;AACX,MAAMO,mBAIDJ,QAAQC,GAAG,CAACC,yBAAyB,CAE7CN,MAAMS,oBACNR,SADmC,MACrB","ignoreList":[0]}}, - {"offset": {"line": 12646, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.node.development.js"],"sourcesContent":["/**\n * @license React\n * react-server-dom-turbopack-client.node.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function resolveClientReference(bundlerConfig, metadata) {\n if (bundlerConfig) {\n var moduleExports = bundlerConfig[metadata[0]];\n if ((bundlerConfig = moduleExports && moduleExports[metadata[2]]))\n moduleExports = bundlerConfig.name;\n else {\n bundlerConfig = moduleExports && moduleExports[\"*\"];\n if (!bundlerConfig)\n throw Error(\n 'Could not find the module \"' +\n metadata[0] +\n '\" in the React Server Consumer Manifest. This is probably a bug in the React Server Components bundler.'\n );\n moduleExports = metadata[2];\n }\n return 4 === metadata.length\n ? [bundlerConfig.id, bundlerConfig.chunks, moduleExports, 1]\n : [bundlerConfig.id, bundlerConfig.chunks, moduleExports];\n }\n return metadata;\n }\n function resolveServerReference(bundlerConfig, id) {\n var name = \"\",\n resolvedModuleData = bundlerConfig[id];\n if (resolvedModuleData) name = resolvedModuleData.name;\n else {\n var idx = id.lastIndexOf(\"#\");\n -1 !== idx &&\n ((name = id.slice(idx + 1)),\n (resolvedModuleData = bundlerConfig[id.slice(0, idx)]));\n if (!resolvedModuleData)\n throw Error(\n 'Could not find the module \"' +\n id +\n '\" in the React Server Manifest. This is probably a bug in the React Server Components bundler.'\n );\n }\n return resolvedModuleData.async\n ? [resolvedModuleData.id, resolvedModuleData.chunks, name, 1]\n : [resolvedModuleData.id, resolvedModuleData.chunks, name];\n }\n function requireAsyncModule(id) {\n var promise = globalThis.__next_require__(id);\n if (\"function\" !== typeof promise.then || \"fulfilled\" === promise.status)\n return null;\n promise.then(\n function (value) {\n promise.status = \"fulfilled\";\n promise.value = value;\n },\n function (reason) {\n promise.status = \"rejected\";\n promise.reason = reason;\n }\n );\n return promise;\n }\n function ignoreReject() {}\n function preloadModule(metadata) {\n for (\n var chunks = metadata[1], promises = [], i = 0;\n i < chunks.length;\n i++\n ) {\n var thenable = globalThis.__next_chunk_load__(chunks[i]);\n loadedChunks.has(thenable) || promises.push(thenable);\n if (!instrumentedChunks.has(thenable)) {\n var resolve = loadedChunks.add.bind(loadedChunks, thenable);\n thenable.then(resolve, ignoreReject);\n instrumentedChunks.add(thenable);\n }\n }\n return 4 === metadata.length\n ? 0 === promises.length\n ? requireAsyncModule(metadata[0])\n : Promise.all(promises).then(function () {\n return requireAsyncModule(metadata[0]);\n })\n : 0 < promises.length\n ? Promise.all(promises)\n : null;\n }\n function requireModule(metadata) {\n var moduleExports = globalThis.__next_require__(metadata[0]);\n if (4 === metadata.length && \"function\" === typeof moduleExports.then)\n if (\"fulfilled\" === moduleExports.status)\n moduleExports = moduleExports.value;\n else throw moduleExports.reason;\n if (\"*\" === metadata[2]) return moduleExports;\n if (\"\" === metadata[2])\n return moduleExports.__esModule ? moduleExports.default : moduleExports;\n if (hasOwnProperty.call(moduleExports, metadata[2]))\n return moduleExports[metadata[2]];\n }\n function prepareDestinationWithChunks(\n moduleLoading,\n chunks,\n nonce$jscomp$0\n ) {\n if (null !== moduleLoading)\n for (var i = 0; i < chunks.length; i++) {\n var nonce = nonce$jscomp$0,\n JSCompiler_temp_const = ReactDOMSharedInternals.d,\n JSCompiler_temp_const$jscomp$0 = JSCompiler_temp_const.X,\n JSCompiler_temp_const$jscomp$1 = moduleLoading.prefix + chunks[i];\n var JSCompiler_inline_result = moduleLoading.crossOrigin;\n JSCompiler_inline_result =\n \"string\" === typeof JSCompiler_inline_result\n ? \"use-credentials\" === JSCompiler_inline_result\n ? JSCompiler_inline_result\n : \"\"\n : void 0;\n JSCompiler_temp_const$jscomp$0.call(\n JSCompiler_temp_const,\n JSCompiler_temp_const$jscomp$1,\n { crossOrigin: JSCompiler_inline_result, nonce: nonce }\n );\n }\n }\n function getIteratorFn(maybeIterable) {\n if (null === maybeIterable || \"object\" !== typeof maybeIterable)\n return null;\n maybeIterable =\n (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||\n maybeIterable[\"@@iterator\"];\n return \"function\" === typeof maybeIterable ? maybeIterable : null;\n }\n function isObjectPrototype(object) {\n if (!object) return !1;\n var ObjectPrototype = Object.prototype;\n if (object === ObjectPrototype) return !0;\n if (getPrototypeOf(object)) return !1;\n object = Object.getOwnPropertyNames(object);\n for (var i = 0; i < object.length; i++)\n if (!(object[i] in ObjectPrototype)) return !1;\n return !0;\n }\n function isSimpleObject(object) {\n if (!isObjectPrototype(getPrototypeOf(object))) return !1;\n for (\n var names = Object.getOwnPropertyNames(object), i = 0;\n i < names.length;\n i++\n ) {\n var descriptor = Object.getOwnPropertyDescriptor(object, names[i]);\n if (\n !descriptor ||\n (!descriptor.enumerable &&\n ((\"key\" !== names[i] && \"ref\" !== names[i]) ||\n \"function\" !== typeof descriptor.get))\n )\n return !1;\n }\n return !0;\n }\n function objectName(object) {\n object = Object.prototype.toString.call(object);\n return object.slice(8, object.length - 1);\n }\n function describeKeyForErrorMessage(key) {\n var encodedKey = JSON.stringify(key);\n return '\"' + key + '\"' === encodedKey ? key : encodedKey;\n }\n function describeValueForErrorMessage(value) {\n switch (typeof value) {\n case \"string\":\n return JSON.stringify(\n 10 >= value.length ? value : value.slice(0, 10) + \"...\"\n );\n case \"object\":\n if (isArrayImpl(value)) return \"[...]\";\n if (null !== value && value.$$typeof === CLIENT_REFERENCE_TAG)\n return \"client\";\n value = objectName(value);\n return \"Object\" === value ? \"{...}\" : value;\n case \"function\":\n return value.$$typeof === CLIENT_REFERENCE_TAG\n ? \"client\"\n : (value = value.displayName || value.name)\n ? \"function \" + value\n : \"function\";\n default:\n return String(value);\n }\n }\n function describeElementType(type) {\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeElementType(type.render);\n case REACT_MEMO_TYPE:\n return describeElementType(type.type);\n case REACT_LAZY_TYPE:\n var payload = type._payload;\n type = type._init;\n try {\n return describeElementType(type(payload));\n } catch (x) {}\n }\n return \"\";\n }\n function describeObjectForErrorMessage(objectOrArray, expandedName) {\n var objKind = objectName(objectOrArray);\n if (\"Object\" !== objKind && \"Array\" !== objKind) return objKind;\n var start = -1,\n length = 0;\n if (isArrayImpl(objectOrArray))\n if (jsxChildrenParents.has(objectOrArray)) {\n var type = jsxChildrenParents.get(objectOrArray);\n objKind = \"<\" + describeElementType(type) + \">\";\n for (var i = 0; i < objectOrArray.length; i++) {\n var value = objectOrArray[i];\n value =\n \"string\" === typeof value\n ? value\n : \"object\" === typeof value && null !== value\n ? \"{\" + describeObjectForErrorMessage(value) + \"}\"\n : \"{\" + describeValueForErrorMessage(value) + \"}\";\n \"\" + i === expandedName\n ? ((start = objKind.length),\n (length = value.length),\n (objKind += value))\n : (objKind =\n 15 > value.length && 40 > objKind.length + value.length\n ? objKind + value\n : objKind + \"{...}\");\n }\n objKind += \"\";\n } else {\n objKind = \"[\";\n for (type = 0; type < objectOrArray.length; type++)\n 0 < type && (objKind += \", \"),\n (i = objectOrArray[type]),\n (i =\n \"object\" === typeof i && null !== i\n ? describeObjectForErrorMessage(i)\n : describeValueForErrorMessage(i)),\n \"\" + type === expandedName\n ? ((start = objKind.length),\n (length = i.length),\n (objKind += i))\n : (objKind =\n 10 > i.length && 40 > objKind.length + i.length\n ? objKind + i\n : objKind + \"...\");\n objKind += \"]\";\n }\n else if (objectOrArray.$$typeof === REACT_ELEMENT_TYPE)\n objKind = \"<\" + describeElementType(objectOrArray.type) + \"/>\";\n else {\n if (objectOrArray.$$typeof === CLIENT_REFERENCE_TAG) return \"client\";\n if (jsxPropsParents.has(objectOrArray)) {\n objKind = jsxPropsParents.get(objectOrArray);\n objKind = \"<\" + (describeElementType(objKind) || \"...\");\n type = Object.keys(objectOrArray);\n for (i = 0; i < type.length; i++) {\n objKind += \" \";\n value = type[i];\n objKind += describeKeyForErrorMessage(value) + \"=\";\n var _value2 = objectOrArray[value];\n var _substr2 =\n value === expandedName &&\n \"object\" === typeof _value2 &&\n null !== _value2\n ? describeObjectForErrorMessage(_value2)\n : describeValueForErrorMessage(_value2);\n \"string\" !== typeof _value2 && (_substr2 = \"{\" + _substr2 + \"}\");\n value === expandedName\n ? ((start = objKind.length),\n (length = _substr2.length),\n (objKind += _substr2))\n : (objKind =\n 10 > _substr2.length && 40 > objKind.length + _substr2.length\n ? objKind + _substr2\n : objKind + \"...\");\n }\n objKind += \">\";\n } else {\n objKind = \"{\";\n type = Object.keys(objectOrArray);\n for (i = 0; i < type.length; i++)\n 0 < i && (objKind += \", \"),\n (value = type[i]),\n (objKind += describeKeyForErrorMessage(value) + \": \"),\n (_value2 = objectOrArray[value]),\n (_value2 =\n \"object\" === typeof _value2 && null !== _value2\n ? describeObjectForErrorMessage(_value2)\n : describeValueForErrorMessage(_value2)),\n value === expandedName\n ? ((start = objKind.length),\n (length = _value2.length),\n (objKind += _value2))\n : (objKind =\n 10 > _value2.length && 40 > objKind.length + _value2.length\n ? objKind + _value2\n : objKind + \"...\");\n objKind += \"}\";\n }\n }\n return void 0 === expandedName\n ? objKind\n : -1 < start && 0 < length\n ? ((objectOrArray = \" \".repeat(start) + \"^\".repeat(length)),\n \"\\n \" + objKind + \"\\n \" + objectOrArray)\n : \"\\n \" + objKind;\n }\n function serializeNumber(number) {\n return Number.isFinite(number)\n ? 0 === number && -Infinity === 1 / number\n ? \"$-0\"\n : number\n : Infinity === number\n ? \"$Infinity\"\n : -Infinity === number\n ? \"$-Infinity\"\n : \"$NaN\";\n }\n function processReply(\n root,\n formFieldPrefix,\n temporaryReferences,\n resolve,\n reject\n ) {\n function serializeTypedArray(tag, typedArray) {\n typedArray = new Blob([\n new Uint8Array(\n typedArray.buffer,\n typedArray.byteOffset,\n typedArray.byteLength\n )\n ]);\n var blobId = nextPartId++;\n null === formData && (formData = new FormData());\n formData.append(formFieldPrefix + blobId, typedArray);\n return \"$\" + tag + blobId.toString(16);\n }\n function serializeBinaryReader(reader) {\n function progress(entry) {\n entry.done\n ? ((entry = nextPartId++),\n data.append(formFieldPrefix + entry, new Blob(buffer)),\n data.append(\n formFieldPrefix + streamId,\n '\"$o' + entry.toString(16) + '\"'\n ),\n data.append(formFieldPrefix + streamId, \"C\"),\n pendingParts--,\n 0 === pendingParts && resolve(data))\n : (buffer.push(entry.value),\n reader.read(new Uint8Array(1024)).then(progress, reject));\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++,\n buffer = [];\n reader.read(new Uint8Array(1024)).then(progress, reject);\n return \"$r\" + streamId.toString(16);\n }\n function serializeReader(reader) {\n function progress(entry) {\n if (entry.done)\n data.append(formFieldPrefix + streamId, \"C\"),\n pendingParts--,\n 0 === pendingParts && resolve(data);\n else\n try {\n var partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, partJSON);\n reader.read().then(progress, reject);\n } catch (x) {\n reject(x);\n }\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++;\n reader.read().then(progress, reject);\n return \"$R\" + streamId.toString(16);\n }\n function serializeReadableStream(stream) {\n try {\n var binaryReader = stream.getReader({ mode: \"byob\" });\n } catch (x) {\n return serializeReader(stream.getReader());\n }\n return serializeBinaryReader(binaryReader);\n }\n function serializeAsyncIterable(iterable, iterator) {\n function progress(entry) {\n if (entry.done) {\n if (void 0 === entry.value)\n data.append(formFieldPrefix + streamId, \"C\");\n else\n try {\n var partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, \"C\" + partJSON);\n } catch (x) {\n reject(x);\n return;\n }\n pendingParts--;\n 0 === pendingParts && resolve(data);\n } else\n try {\n var _partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, _partJSON);\n iterator.next().then(progress, reject);\n } catch (x$0) {\n reject(x$0);\n }\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++;\n iterable = iterable === iterator;\n iterator.next().then(progress, reject);\n return \"$\" + (iterable ? \"x\" : \"X\") + streamId.toString(16);\n }\n function resolveToJSON(key, value) {\n \"__proto__\" === key &&\n console.error(\n \"Expected not to serialize an object with own property `__proto__`. When parsed this property will be omitted.%s\",\n describeObjectForErrorMessage(this, key)\n );\n var originalValue = this[key];\n \"object\" !== typeof originalValue ||\n originalValue === value ||\n originalValue instanceof Date ||\n (\"Object\" !== objectName(originalValue)\n ? console.error(\n \"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s\",\n objectName(originalValue),\n describeObjectForErrorMessage(this, key)\n )\n : console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Objects with toJSON methods are not supported. Convert it manually to a simple value before passing it to props.%s\",\n describeObjectForErrorMessage(this, key)\n ));\n if (null === value) return null;\n if (\"object\" === typeof value) {\n switch (value.$$typeof) {\n case REACT_ELEMENT_TYPE:\n if (void 0 !== temporaryReferences && -1 === key.indexOf(\":\")) {\n var parentReference = writtenObjects.get(this);\n if (void 0 !== parentReference)\n return (\n temporaryReferences.set(parentReference + \":\" + key, value),\n \"$T\"\n );\n }\n throw Error(\n \"React Element cannot be passed to Server Functions from the Client without a temporary reference set. Pass a TemporaryReferenceSet to the options.\" +\n describeObjectForErrorMessage(this, key)\n );\n case REACT_LAZY_TYPE:\n originalValue = value._payload;\n var init = value._init;\n null === formData && (formData = new FormData());\n pendingParts++;\n try {\n parentReference = init(originalValue);\n var lazyId = nextPartId++,\n partJSON = serializeModel(parentReference, lazyId);\n formData.append(formFieldPrefix + lazyId, partJSON);\n return \"$\" + lazyId.toString(16);\n } catch (x) {\n if (\n \"object\" === typeof x &&\n null !== x &&\n \"function\" === typeof x.then\n ) {\n pendingParts++;\n var _lazyId = nextPartId++;\n parentReference = function () {\n try {\n var _partJSON2 = serializeModel(value, _lazyId),\n _data = formData;\n _data.append(formFieldPrefix + _lazyId, _partJSON2);\n pendingParts--;\n 0 === pendingParts && resolve(_data);\n } catch (reason) {\n reject(reason);\n }\n };\n x.then(parentReference, parentReference);\n return \"$\" + _lazyId.toString(16);\n }\n reject(x);\n return null;\n } finally {\n pendingParts--;\n }\n }\n parentReference = writtenObjects.get(value);\n if (\"function\" === typeof value.then) {\n if (void 0 !== parentReference)\n if (modelRoot === value) modelRoot = null;\n else return parentReference;\n null === formData && (formData = new FormData());\n pendingParts++;\n var promiseId = nextPartId++;\n key = \"$@\" + promiseId.toString(16);\n writtenObjects.set(value, key);\n value.then(function (partValue) {\n try {\n var previousReference = writtenObjects.get(partValue);\n var _partJSON3 =\n void 0 !== previousReference\n ? JSON.stringify(previousReference)\n : serializeModel(partValue, promiseId);\n partValue = formData;\n partValue.append(formFieldPrefix + promiseId, _partJSON3);\n pendingParts--;\n 0 === pendingParts && resolve(partValue);\n } catch (reason) {\n reject(reason);\n }\n }, reject);\n return key;\n }\n if (void 0 !== parentReference)\n if (modelRoot === value) modelRoot = null;\n else return parentReference;\n else\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference &&\n ((parentReference = parentReference + \":\" + key),\n writtenObjects.set(value, parentReference),\n void 0 !== temporaryReferences &&\n temporaryReferences.set(parentReference, value)));\n if (isArrayImpl(value)) return value;\n if (value instanceof FormData) {\n null === formData && (formData = new FormData());\n var _data3 = formData;\n key = nextPartId++;\n var prefix = formFieldPrefix + key + \"_\";\n value.forEach(function (originalValue, originalKey) {\n _data3.append(prefix + originalKey, originalValue);\n });\n return \"$K\" + key.toString(16);\n }\n if (value instanceof Map)\n return (\n (key = nextPartId++),\n (parentReference = serializeModel(Array.from(value), key)),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$Q\" + key.toString(16)\n );\n if (value instanceof Set)\n return (\n (key = nextPartId++),\n (parentReference = serializeModel(Array.from(value), key)),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$W\" + key.toString(16)\n );\n if (value instanceof ArrayBuffer)\n return (\n (key = new Blob([value])),\n (parentReference = nextPartId++),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + parentReference, key),\n \"$A\" + parentReference.toString(16)\n );\n if (value instanceof Int8Array)\n return serializeTypedArray(\"O\", value);\n if (value instanceof Uint8Array)\n return serializeTypedArray(\"o\", value);\n if (value instanceof Uint8ClampedArray)\n return serializeTypedArray(\"U\", value);\n if (value instanceof Int16Array)\n return serializeTypedArray(\"S\", value);\n if (value instanceof Uint16Array)\n return serializeTypedArray(\"s\", value);\n if (value instanceof Int32Array)\n return serializeTypedArray(\"L\", value);\n if (value instanceof Uint32Array)\n return serializeTypedArray(\"l\", value);\n if (value instanceof Float32Array)\n return serializeTypedArray(\"G\", value);\n if (value instanceof Float64Array)\n return serializeTypedArray(\"g\", value);\n if (value instanceof BigInt64Array)\n return serializeTypedArray(\"M\", value);\n if (value instanceof BigUint64Array)\n return serializeTypedArray(\"m\", value);\n if (value instanceof DataView) return serializeTypedArray(\"V\", value);\n if (\"function\" === typeof Blob && value instanceof Blob)\n return (\n null === formData && (formData = new FormData()),\n (key = nextPartId++),\n formData.append(formFieldPrefix + key, value),\n \"$B\" + key.toString(16)\n );\n if ((parentReference = getIteratorFn(value)))\n return (\n (parentReference = parentReference.call(value)),\n parentReference === value\n ? ((key = nextPartId++),\n (parentReference = serializeModel(\n Array.from(parentReference),\n key\n )),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$i\" + key.toString(16))\n : Array.from(parentReference)\n );\n if (\n \"function\" === typeof ReadableStream &&\n value instanceof ReadableStream\n )\n return serializeReadableStream(value);\n parentReference = value[ASYNC_ITERATOR];\n if (\"function\" === typeof parentReference)\n return serializeAsyncIterable(value, parentReference.call(value));\n parentReference = getPrototypeOf(value);\n if (\n parentReference !== ObjectPrototype &&\n (null === parentReference ||\n null !== getPrototypeOf(parentReference))\n ) {\n if (void 0 === temporaryReferences)\n throw Error(\n \"Only plain objects, and a few built-ins, can be passed to Server Functions. Classes or null prototypes are not supported.\" +\n describeObjectForErrorMessage(this, key)\n );\n return \"$T\";\n }\n value.$$typeof === REACT_CONTEXT_TYPE\n ? console.error(\n \"React Context Providers cannot be passed to Server Functions from the Client.%s\",\n describeObjectForErrorMessage(this, key)\n )\n : \"Object\" !== objectName(value)\n ? console.error(\n \"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s\",\n objectName(value),\n describeObjectForErrorMessage(this, key)\n )\n : isSimpleObject(value)\n ? Object.getOwnPropertySymbols &&\n ((parentReference = Object.getOwnPropertySymbols(value)),\n 0 < parentReference.length &&\n console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s\",\n parentReference[0].description,\n describeObjectForErrorMessage(this, key)\n ))\n : console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s\",\n describeObjectForErrorMessage(this, key)\n );\n return value;\n }\n if (\"string\" === typeof value) {\n if (\"Z\" === value[value.length - 1] && this[key] instanceof Date)\n return \"$D\" + value;\n key = \"$\" === value[0] ? \"$\" + value : value;\n return key;\n }\n if (\"boolean\" === typeof value) return value;\n if (\"number\" === typeof value) return serializeNumber(value);\n if (\"undefined\" === typeof value) return \"$undefined\";\n if (\"function\" === typeof value) {\n parentReference = knownServerReferences.get(value);\n if (void 0 !== parentReference) {\n key = writtenObjects.get(value);\n if (void 0 !== key) return key;\n key = JSON.stringify(\n { id: parentReference.id, bound: parentReference.bound },\n resolveToJSON\n );\n null === formData && (formData = new FormData());\n parentReference = nextPartId++;\n formData.set(formFieldPrefix + parentReference, key);\n key = \"$h\" + parentReference.toString(16);\n writtenObjects.set(value, key);\n return key;\n }\n if (\n void 0 !== temporaryReferences &&\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference)\n )\n return (\n temporaryReferences.set(parentReference + \":\" + key, value), \"$T\"\n );\n throw Error(\n \"Client Functions cannot be passed directly to Server Functions. Only Functions passed from the Server can be passed back again.\"\n );\n }\n if (\"symbol\" === typeof value) {\n if (\n void 0 !== temporaryReferences &&\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference)\n )\n return (\n temporaryReferences.set(parentReference + \":\" + key, value), \"$T\"\n );\n throw Error(\n \"Symbols cannot be passed to a Server Function without a temporary reference set. Pass a TemporaryReferenceSet to the options.\" +\n describeObjectForErrorMessage(this, key)\n );\n }\n if (\"bigint\" === typeof value) return \"$n\" + value.toString(10);\n throw Error(\n \"Type \" +\n typeof value +\n \" is not supported as an argument to a Server Function.\"\n );\n }\n function serializeModel(model, id) {\n \"object\" === typeof model &&\n null !== model &&\n ((id = \"$\" + id.toString(16)),\n writtenObjects.set(model, id),\n void 0 !== temporaryReferences && temporaryReferences.set(id, model));\n modelRoot = model;\n return JSON.stringify(model, resolveToJSON);\n }\n var nextPartId = 1,\n pendingParts = 0,\n formData = null,\n writtenObjects = new WeakMap(),\n modelRoot = root,\n json = serializeModel(root, 0);\n null === formData\n ? resolve(json)\n : (formData.set(formFieldPrefix + \"0\", json),\n 0 === pendingParts && resolve(formData));\n return function () {\n 0 < pendingParts &&\n ((pendingParts = 0),\n null === formData ? resolve(json) : resolve(formData));\n };\n }\n function encodeFormData(reference) {\n var resolve,\n reject,\n thenable = new Promise(function (res, rej) {\n resolve = res;\n reject = rej;\n });\n processReply(\n reference,\n \"\",\n void 0,\n function (body) {\n if (\"string\" === typeof body) {\n var data = new FormData();\n data.append(\"0\", body);\n body = data;\n }\n thenable.status = \"fulfilled\";\n thenable.value = body;\n resolve(body);\n },\n function (e) {\n thenable.status = \"rejected\";\n thenable.reason = e;\n reject(e);\n }\n );\n return thenable;\n }\n function defaultEncodeFormAction(identifierPrefix) {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n var data = null;\n if (null !== referenceClosure.bound) {\n data = boundCache.get(referenceClosure);\n data ||\n ((data = encodeFormData({\n id: referenceClosure.id,\n bound: referenceClosure.bound\n })),\n boundCache.set(referenceClosure, data));\n if (\"rejected\" === data.status) throw data.reason;\n if (\"fulfilled\" !== data.status) throw data;\n referenceClosure = data.value;\n var prefixedData = new FormData();\n referenceClosure.forEach(function (value, key) {\n prefixedData.append(\"$ACTION_\" + identifierPrefix + \":\" + key, value);\n });\n data = prefixedData;\n referenceClosure = \"$ACTION_REF_\" + identifierPrefix;\n } else referenceClosure = \"$ACTION_ID_\" + referenceClosure.id;\n return {\n name: referenceClosure,\n method: \"POST\",\n encType: \"multipart/form-data\",\n data: data\n };\n }\n function isSignatureEqual(referenceId, numberOfBoundArgs) {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n if (referenceClosure.id !== referenceId) return !1;\n var boundPromise = referenceClosure.bound;\n if (null === boundPromise) return 0 === numberOfBoundArgs;\n switch (boundPromise.status) {\n case \"fulfilled\":\n return boundPromise.value.length === numberOfBoundArgs;\n case \"pending\":\n throw boundPromise;\n case \"rejected\":\n throw boundPromise.reason;\n default:\n throw (\n (\"string\" !== typeof boundPromise.status &&\n ((boundPromise.status = \"pending\"),\n boundPromise.then(\n function (boundArgs) {\n boundPromise.status = \"fulfilled\";\n boundPromise.value = boundArgs;\n },\n function (error) {\n boundPromise.status = \"rejected\";\n boundPromise.reason = error;\n }\n )),\n boundPromise)\n );\n }\n }\n function createFakeServerFunction(\n name,\n filename,\n sourceMap,\n line,\n col,\n environmentName,\n innerFunction\n ) {\n name || (name = \"\");\n var encodedName = JSON.stringify(name);\n 1 >= line\n ? ((line = encodedName.length + 7),\n (col =\n \"s=>({\" +\n encodedName +\n \" \".repeat(col < line ? 0 : col - line) +\n \":(...args) => s(...args)})\\n/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */\"))\n : (col =\n \"/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */\" +\n \"\\n\".repeat(line - 2) +\n \"server=>({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(1 > col ? 0 : col - 1) +\n \"(...args) => server(...args)})\");\n filename.startsWith(\"/\") && (filename = \"file://\" + filename);\n sourceMap\n ? ((col +=\n \"\\n//# sourceURL=about://React/\" +\n encodeURIComponent(environmentName) +\n \"/\" +\n encodeURI(filename) +\n \"?s\" +\n fakeServerFunctionIdx++),\n (col += \"\\n//# sourceMappingURL=\" + sourceMap))\n : filename && (col += \"\\n//# sourceURL=\" + filename);\n try {\n return (0, eval)(col)(innerFunction)[name];\n } catch (x) {\n return innerFunction;\n }\n }\n function registerBoundServerReference(\n reference,\n id,\n bound,\n encodeFormAction\n ) {\n knownServerReferences.has(reference) ||\n (knownServerReferences.set(reference, {\n id: id,\n originalBind: reference.bind,\n bound: bound\n }),\n Object.defineProperties(reference, {\n $$FORM_ACTION: {\n value:\n void 0 === encodeFormAction\n ? defaultEncodeFormAction\n : function () {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure)\n throw Error(\n \"Tried to encode a Server Action from a different instance than the encoder is from. This is a bug in React.\"\n );\n var boundPromise = referenceClosure.bound;\n null === boundPromise &&\n (boundPromise = Promise.resolve([]));\n return encodeFormAction(referenceClosure.id, boundPromise);\n }\n },\n $$IS_SIGNATURE_EQUAL: { value: isSignatureEqual },\n bind: { value: bind }\n }));\n }\n function bind() {\n var referenceClosure = knownServerReferences.get(this);\n if (!referenceClosure) return FunctionBind.apply(this, arguments);\n var newFn = referenceClosure.originalBind.apply(this, arguments);\n null != arguments[0] &&\n console.error(\n 'Cannot bind \"this\" of a Server Action. Pass null or undefined as the first argument to .bind().'\n );\n var args = ArraySlice.call(arguments, 1),\n boundPromise = null;\n boundPromise =\n null !== referenceClosure.bound\n ? Promise.resolve(referenceClosure.bound).then(function (boundArgs) {\n return boundArgs.concat(args);\n })\n : Promise.resolve(args);\n knownServerReferences.set(newFn, {\n id: referenceClosure.id,\n originalBind: newFn.bind,\n bound: boundPromise\n });\n Object.defineProperties(newFn, {\n $$FORM_ACTION: { value: this.$$FORM_ACTION },\n $$IS_SIGNATURE_EQUAL: { value: isSignatureEqual },\n bind: { value: bind }\n });\n return newFn;\n }\n function createBoundServerReference(\n metaData,\n callServer,\n encodeFormAction,\n findSourceMapURL\n ) {\n function action() {\n var args = Array.prototype.slice.call(arguments);\n return bound\n ? \"fulfilled\" === bound.status\n ? callServer(id, bound.value.concat(args))\n : Promise.resolve(bound).then(function (boundArgs) {\n return callServer(id, boundArgs.concat(args));\n })\n : callServer(id, args);\n }\n var id = metaData.id,\n bound = metaData.bound,\n location = metaData.location;\n if (location) {\n var functionName = metaData.name || \"\",\n filename = location[1],\n line = location[2];\n location = location[3];\n metaData = metaData.env || \"Server\";\n findSourceMapURL =\n null == findSourceMapURL\n ? null\n : findSourceMapURL(filename, metaData);\n action = createFakeServerFunction(\n functionName,\n filename,\n findSourceMapURL,\n line,\n location,\n metaData,\n action\n );\n }\n registerBoundServerReference(action, id, bound, encodeFormAction);\n return action;\n }\n function parseStackLocation(error) {\n error = error.stack;\n error.startsWith(\"Error: react-stack-top-frame\\n\") &&\n (error = error.slice(29));\n var endOfFirst = error.indexOf(\"\\n\");\n if (-1 !== endOfFirst) {\n var endOfSecond = error.indexOf(\"\\n\", endOfFirst + 1);\n endOfFirst =\n -1 === endOfSecond\n ? error.slice(endOfFirst + 1)\n : error.slice(endOfFirst + 1, endOfSecond);\n } else endOfFirst = error;\n error = v8FrameRegExp.exec(endOfFirst);\n if (\n !error &&\n ((error = jscSpiderMonkeyFrameRegExp.exec(endOfFirst)), !error)\n )\n return null;\n endOfFirst = error[1] || \"\";\n \"\" === endOfFirst && (endOfFirst = \"\");\n endOfSecond = error[2] || error[5] || \"\";\n \"\" === endOfSecond && (endOfSecond = \"\");\n return [\n endOfFirst,\n endOfSecond,\n +(error[3] || error[6]),\n +(error[4] || error[7])\n ];\n }\n function createServerReference$1(\n id,\n callServer,\n encodeFormAction,\n findSourceMapURL,\n functionName\n ) {\n function action() {\n var args = Array.prototype.slice.call(arguments);\n return callServer(id, args);\n }\n var location = parseStackLocation(Error(\"react-stack-top-frame\"));\n if (null !== location) {\n var filename = location[1],\n line = location[2];\n location = location[3];\n findSourceMapURL =\n null == findSourceMapURL\n ? null\n : findSourceMapURL(filename, \"Client\");\n action = createFakeServerFunction(\n functionName || \"\",\n filename,\n findSourceMapURL,\n line,\n location,\n \"Client\",\n action\n );\n }\n registerBoundServerReference(action, id, null, encodeFormAction);\n return action;\n }\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function getArrayKind(array) {\n for (var kind = 0, i = 0; i < array.length && 100 > i; i++) {\n var value = array[i];\n if (\"object\" === typeof value && null !== value)\n if (\n isArrayImpl(value) &&\n 2 === value.length &&\n \"string\" === typeof value[0]\n ) {\n if (0 !== kind && 3 !== kind) return 1;\n kind = 3;\n } else return 1;\n else {\n if (\n \"function\" === typeof value ||\n (\"string\" === typeof value && 50 < value.length) ||\n (0 !== kind && 2 !== kind)\n )\n return 1;\n kind = 2;\n }\n }\n return kind;\n }\n function addObjectToProperties(object, properties, indent, prefix) {\n var addedProperties = 0,\n key;\n for (key in object)\n if (\n hasOwnProperty.call(object, key) &&\n \"_\" !== key[0] &&\n (addedProperties++,\n addValueToProperties(key, object[key], properties, indent, prefix),\n 100 <= addedProperties)\n ) {\n properties.push([\n prefix +\n \"\\u00a0\\u00a0\".repeat(indent) +\n \"Only 100 properties are shown. React will not log more properties of this object.\",\n \"\"\n ]);\n break;\n }\n }\n function addValueToProperties(\n propertyName,\n value,\n properties,\n indent,\n prefix\n ) {\n switch (typeof value) {\n case \"object\":\n if (null === value) {\n value = \"null\";\n break;\n } else {\n if (value.$$typeof === REACT_ELEMENT_TYPE) {\n var typeName = getComponentNameFromType(value.type) || \"\\u2026\",\n key = value.key;\n value = value.props;\n var propsKeys = Object.keys(value),\n propsLength = propsKeys.length;\n if (null == key && 0 === propsLength) {\n value = \"<\" + typeName + \" />\";\n break;\n }\n if (\n 3 > indent ||\n (1 === propsLength &&\n \"children\" === propsKeys[0] &&\n null == key)\n ) {\n value = \"<\" + typeName + \" \\u2026 />\";\n break;\n }\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"<\" + typeName\n ]);\n null !== key &&\n addValueToProperties(\n \"key\",\n key,\n properties,\n indent + 1,\n prefix\n );\n propertyName = !1;\n key = 0;\n for (var propKey in value)\n if (\n (key++,\n \"children\" === propKey\n ? null != value.children &&\n (!isArrayImpl(value.children) ||\n 0 < value.children.length) &&\n (propertyName = !0)\n : hasOwnProperty.call(value, propKey) &&\n \"_\" !== propKey[0] &&\n addValueToProperties(\n propKey,\n value[propKey],\n properties,\n indent + 1,\n prefix\n ),\n 100 <= key)\n )\n break;\n properties.push([\n \"\",\n propertyName ? \">\\u2026\" : \"/>\"\n ]);\n return;\n }\n typeName = Object.prototype.toString.call(value);\n propKey = typeName.slice(8, typeName.length - 1);\n if (\"Array\" === propKey)\n if (\n ((typeName = 100 < value.length),\n (key = getArrayKind(value)),\n 2 === key || 0 === key)\n ) {\n value = JSON.stringify(\n typeName ? value.slice(0, 100).concat(\"\\u2026\") : value\n );\n break;\n } else if (3 === key) {\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"\"\n ]);\n for (\n propertyName = 0;\n propertyName < value.length && 100 > propertyName;\n propertyName++\n )\n (propKey = value[propertyName]),\n addValueToProperties(\n propKey[0],\n propKey[1],\n properties,\n indent + 1,\n prefix\n );\n typeName &&\n addValueToProperties(\n (100).toString(),\n \"\\u2026\",\n properties,\n indent + 1,\n prefix\n );\n return;\n }\n if (\"Promise\" === propKey) {\n if (\"fulfilled\" === value.status) {\n if (\n ((typeName = properties.length),\n addValueToProperties(\n propertyName,\n value.value,\n properties,\n indent,\n prefix\n ),\n properties.length > typeName)\n ) {\n properties = properties[typeName];\n properties[1] =\n \"Promise<\" + (properties[1] || \"Object\") + \">\";\n return;\n }\n } else if (\n \"rejected\" === value.status &&\n ((typeName = properties.length),\n addValueToProperties(\n propertyName,\n value.reason,\n properties,\n indent,\n prefix\n ),\n properties.length > typeName)\n ) {\n properties = properties[typeName];\n properties[1] = \"Rejected Promise<\" + properties[1] + \">\";\n return;\n }\n properties.push([\n \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"Promise\"\n ]);\n return;\n }\n \"Object\" === propKey &&\n (typeName = Object.getPrototypeOf(value)) &&\n \"function\" === typeof typeName.constructor &&\n (propKey = typeName.constructor.name);\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"Object\" === propKey ? (3 > indent ? \"\" : \"\\u2026\") : propKey\n ]);\n 3 > indent &&\n addObjectToProperties(value, properties, indent + 1, prefix);\n return;\n }\n case \"function\":\n value = \"\" === value.name ? \"() => {}\" : value.name + \"() {}\";\n break;\n case \"string\":\n value =\n \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\" ===\n value\n ? \"\\u2026\"\n : JSON.stringify(value);\n break;\n case \"undefined\":\n value = \"undefined\";\n break;\n case \"boolean\":\n value = value ? \"true\" : \"false\";\n break;\n default:\n value = String(value);\n }\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n value\n ]);\n }\n function getIODescription(value) {\n try {\n switch (typeof value) {\n case \"function\":\n return value.name || \"\";\n case \"object\":\n if (null === value) return \"\";\n if (value instanceof Error) return String(value.message);\n if (\"string\" === typeof value.url) return value.url;\n if (\"string\" === typeof value.href) return value.href;\n if (\"string\" === typeof value.src) return value.src;\n if (\"string\" === typeof value.currentSrc) return value.currentSrc;\n if (\"string\" === typeof value.command) return value.command;\n if (\n \"object\" === typeof value.request &&\n null !== value.request &&\n \"string\" === typeof value.request.url\n )\n return value.request.url;\n if (\n \"object\" === typeof value.response &&\n null !== value.response &&\n \"string\" === typeof value.response.url\n )\n return value.response.url;\n if (\n \"string\" === typeof value.id ||\n \"number\" === typeof value.id ||\n \"bigint\" === typeof value.id\n )\n return String(value.id);\n if (\"string\" === typeof value.name) return value.name;\n var str = value.toString();\n return str.startsWith(\"[object \") ||\n 5 > str.length ||\n 500 < str.length\n ? \"\"\n : str;\n case \"string\":\n return 5 > value.length || 500 < value.length ? \"\" : value;\n case \"number\":\n case \"bigint\":\n return String(value);\n default:\n return \"\";\n }\n } catch (x) {\n return \"\";\n }\n }\n function markAllTracksInOrder() {\n supportsUserTiming &&\n (console.timeStamp(\n \"Server Requests Track\",\n 0.001,\n 0.001,\n \"Server Requests \\u269b\",\n void 0,\n \"primary-light\"\n ),\n console.timeStamp(\n \"Server Components Track\",\n 0.001,\n 0.001,\n \"Primary\",\n \"Server Components \\u269b\",\n \"primary-light\"\n ));\n }\n function getIOColor(functionName) {\n switch (functionName.charCodeAt(0) % 3) {\n case 0:\n return \"tertiary-light\";\n case 1:\n return \"tertiary\";\n default:\n return \"tertiary-dark\";\n }\n }\n function getIOLongName(ioInfo, description, env, rootEnv) {\n ioInfo = ioInfo.name;\n description =\n \"\" === description ? ioInfo : ioInfo + \" (\" + description + \")\";\n return env === rootEnv || void 0 === env\n ? description\n : description + \" [\" + env + \"]\";\n }\n function getIOShortName(ioInfo, description, env, rootEnv) {\n ioInfo = ioInfo.name;\n env = env === rootEnv || void 0 === env ? \"\" : \" [\" + env + \"]\";\n var desc = \"\";\n rootEnv = 30 - ioInfo.length - env.length;\n if (1 < rootEnv) {\n var l = description.length;\n if (0 < l && l <= rootEnv) desc = \" (\" + description + \")\";\n else if (\n description.startsWith(\"http://\") ||\n description.startsWith(\"https://\") ||\n description.startsWith(\"/\")\n ) {\n var queryIdx = description.indexOf(\"?\");\n -1 === queryIdx && (queryIdx = description.length);\n 47 === description.charCodeAt(queryIdx - 1) && queryIdx--;\n desc = description.lastIndexOf(\"/\", queryIdx - 1);\n queryIdx - desc < rootEnv\n ? (desc = \" (\\u2026\" + description.slice(desc, queryIdx) + \")\")\n : ((l = description.slice(desc, desc + rootEnv / 2)),\n (description = description.slice(\n queryIdx - rootEnv / 2,\n queryIdx\n )),\n (desc =\n \" (\" +\n (0 < desc ? \"\\u2026\" : \"\") +\n l +\n \"\\u2026\" +\n description +\n \")\"));\n }\n }\n return ioInfo + desc + env;\n }\n function logComponentAwait(\n asyncInfo,\n trackIdx,\n startTime,\n endTime,\n rootEnv,\n value\n ) {\n if (supportsUserTiming && 0 < endTime) {\n var description = getIODescription(value),\n name = getIOShortName(\n asyncInfo.awaited,\n description,\n asyncInfo.env,\n rootEnv\n ),\n entryName = \"await \" + name;\n name = getIOColor(name);\n var debugTask = asyncInfo.debugTask || asyncInfo.awaited.debugTask;\n if (debugTask) {\n var properties = [];\n \"object\" === typeof value && null !== value\n ? addObjectToProperties(value, properties, 0, \"\")\n : void 0 !== value &&\n addValueToProperties(\"awaited value\", value, properties, 0, \"\");\n asyncInfo = getIOLongName(\n asyncInfo.awaited,\n description,\n asyncInfo.env,\n rootEnv\n );\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: name,\n track: trackNames[trackIdx],\n trackGroup: \"Server Components \\u269b\",\n properties: properties,\n tooltipText: asyncInfo\n }\n }\n })\n );\n performance.clearMeasures(entryName);\n } else\n console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n name\n );\n }\n }\n function logIOInfoErrored(ioInfo, rootEnv, error) {\n var startTime = ioInfo.start,\n endTime = ioInfo.end;\n if (supportsUserTiming && 0 <= endTime) {\n var description = getIODescription(error),\n entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),\n debugTask = ioInfo.debugTask;\n entryName = \"\\u200b\" + entryName;\n debugTask\n ? ((error = [\n [\n \"rejected with\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]\n ]),\n (ioInfo =\n getIOLongName(ioInfo, description, ioInfo.env, rootEnv) +\n \" Rejected\"),\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: \"error\",\n track: \"Server Requests \\u269b\",\n properties: error,\n tooltipText: ioInfo\n }\n }\n })\n ),\n performance.clearMeasures(entryName))\n : console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n \"Server Requests \\u269b\",\n void 0,\n \"error\"\n );\n }\n }\n function logIOInfo(ioInfo, rootEnv, value) {\n var startTime = ioInfo.start,\n endTime = ioInfo.end;\n if (supportsUserTiming && 0 <= endTime) {\n var description = getIODescription(value),\n entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),\n color = getIOColor(entryName),\n debugTask = ioInfo.debugTask;\n entryName = \"\\u200b\" + entryName;\n if (debugTask) {\n var properties = [];\n \"object\" === typeof value && null !== value\n ? addObjectToProperties(value, properties, 0, \"\")\n : void 0 !== value &&\n addValueToProperties(\"Resolved\", value, properties, 0, \"\");\n ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv);\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: color,\n track: \"Server Requests \\u269b\",\n properties: properties,\n tooltipText: ioInfo\n }\n }\n })\n );\n performance.clearMeasures(entryName);\n } else\n console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n \"Server Requests \\u269b\",\n void 0,\n color\n );\n }\n }\n function prepareStackTrace(error, structuredStackTrace) {\n error = (error.name || \"Error\") + \": \" + (error.message || \"\");\n for (var i = 0; i < structuredStackTrace.length; i++)\n error += \"\\n at \" + structuredStackTrace[i].toString();\n return error;\n }\n function ReactPromise(status, value, reason) {\n this.status = status;\n this.value = value;\n this.reason = reason;\n this._children = [];\n this._debugChunk = null;\n this._debugInfo = [];\n }\n function unwrapWeakResponse(weakResponse) {\n weakResponse = weakResponse.weak.deref();\n if (void 0 === weakResponse)\n throw Error(\n \"We did not expect to receive new data after GC:ing the response.\"\n );\n return weakResponse;\n }\n function closeDebugChannel(debugChannel) {\n debugChannel.callback && debugChannel.callback(\"\");\n }\n function readChunk(chunk) {\n switch (chunk.status) {\n case \"resolved_model\":\n initializeModelChunk(chunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(chunk);\n }\n switch (chunk.status) {\n case \"fulfilled\":\n return chunk.value;\n case \"pending\":\n case \"blocked\":\n case \"halted\":\n throw chunk;\n default:\n throw chunk.reason;\n }\n }\n function getRoot(weakResponse) {\n weakResponse = unwrapWeakResponse(weakResponse);\n return getChunk(weakResponse, 0);\n }\n function createPendingChunk(response) {\n 0 === response._pendingChunks++ &&\n ((response._weakResponse.response = response),\n null !== response._pendingInitialRender &&\n (clearTimeout(response._pendingInitialRender),\n (response._pendingInitialRender = null)));\n return new ReactPromise(\"pending\", null, null);\n }\n function releasePendingChunk(response, chunk) {\n \"pending\" === chunk.status &&\n 0 === --response._pendingChunks &&\n ((response._weakResponse.response = null),\n (response._pendingInitialRender = setTimeout(\n flushInitialRenderPerformance.bind(null, response),\n 100\n )));\n }\n function filterDebugInfo(response, value) {\n if (null !== response._debugEndTime) {\n response = response._debugEndTime - performance.timeOrigin;\n for (var debugInfo = [], i = 0; i < value._debugInfo.length; i++) {\n var info = value._debugInfo[i];\n if (\"number\" === typeof info.time && info.time > response) break;\n debugInfo.push(info);\n }\n value._debugInfo = debugInfo;\n }\n }\n function moveDebugInfoFromChunkToInnerValue(chunk, value) {\n value = resolveLazy(value);\n \"object\" !== typeof value ||\n null === value ||\n (!isArrayImpl(value) &&\n \"function\" !== typeof value[ASYNC_ITERATOR] &&\n value.$$typeof !== REACT_ELEMENT_TYPE &&\n value.$$typeof !== REACT_LAZY_TYPE) ||\n ((chunk = chunk._debugInfo.splice(0)),\n isArrayImpl(value._debugInfo)\n ? value._debugInfo.unshift.apply(value._debugInfo, chunk)\n : Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: chunk\n }));\n }\n function wakeChunk(response, listeners, value, chunk) {\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n \"function\" === typeof listener\n ? listener(value)\n : fulfillReference(response, listener, value, chunk);\n }\n filterDebugInfo(response, chunk);\n moveDebugInfoFromChunkToInnerValue(chunk, value);\n }\n function rejectChunk(response, listeners, error) {\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n \"function\" === typeof listener\n ? listener(error)\n : rejectReference(response, listener.handler, error);\n }\n }\n function resolveBlockedCycle(resolvedChunk, reference) {\n var referencedChunk = reference.handler.chunk;\n if (null === referencedChunk) return null;\n if (referencedChunk === resolvedChunk) return reference.handler;\n reference = referencedChunk.value;\n if (null !== reference)\n for (\n referencedChunk = 0;\n referencedChunk < reference.length;\n referencedChunk++\n ) {\n var listener = reference[referencedChunk];\n if (\n \"function\" !== typeof listener &&\n ((listener = resolveBlockedCycle(resolvedChunk, listener)),\n null !== listener)\n )\n return listener;\n }\n return null;\n }\n function wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ) {\n switch (chunk.status) {\n case \"fulfilled\":\n wakeChunk(response, resolveListeners, chunk.value, chunk);\n break;\n case \"blocked\":\n for (var i = 0; i < resolveListeners.length; i++) {\n var listener = resolveListeners[i];\n if (\"function\" !== typeof listener) {\n var cyclicHandler = resolveBlockedCycle(chunk, listener);\n if (null !== cyclicHandler)\n switch (\n (fulfillReference(\n response,\n listener,\n cyclicHandler.value,\n chunk\n ),\n resolveListeners.splice(i, 1),\n i--,\n null !== rejectListeners &&\n ((listener = rejectListeners.indexOf(listener)),\n -1 !== listener && rejectListeners.splice(listener, 1)),\n chunk.status)\n ) {\n case \"fulfilled\":\n wakeChunk(response, resolveListeners, chunk.value, chunk);\n return;\n case \"rejected\":\n null !== rejectListeners &&\n rejectChunk(response, rejectListeners, chunk.reason);\n return;\n }\n }\n }\n case \"pending\":\n if (chunk.value)\n for (response = 0; response < resolveListeners.length; response++)\n chunk.value.push(resolveListeners[response]);\n else chunk.value = resolveListeners;\n if (chunk.reason) {\n if (rejectListeners)\n for (\n resolveListeners = 0;\n resolveListeners < rejectListeners.length;\n resolveListeners++\n )\n chunk.reason.push(rejectListeners[resolveListeners]);\n } else chunk.reason = rejectListeners;\n break;\n case \"rejected\":\n rejectListeners &&\n rejectChunk(response, rejectListeners, chunk.reason);\n }\n }\n function triggerErrorOnChunk(response, chunk, error) {\n if (\"pending\" !== chunk.status && \"blocked\" !== chunk.status)\n chunk.reason.error(error);\n else {\n releasePendingChunk(response, chunk);\n var listeners = chunk.reason;\n if (\"pending\" === chunk.status && null != chunk._debugChunk) {\n var prevHandler = initializingHandler,\n prevChunk = initializingChunk;\n initializingHandler = null;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n try {\n initializeDebugChunk(response, chunk);\n } finally {\n (initializingHandler = prevHandler),\n (initializingChunk = prevChunk);\n }\n }\n chunk.status = \"rejected\";\n chunk.reason = error;\n null !== listeners && rejectChunk(response, listeners, error);\n }\n }\n function createResolvedModelChunk(response, value) {\n return new ReactPromise(\"resolved_model\", value, response);\n }\n function createResolvedIteratorResultChunk(response, value, done) {\n return new ReactPromise(\n \"resolved_model\",\n (done ? '{\"done\":true,\"value\":' : '{\"done\":false,\"value\":') +\n value +\n \"}\",\n response\n );\n }\n function resolveIteratorResultChunk(response, chunk, value, done) {\n resolveModelChunk(\n response,\n chunk,\n (done ? '{\"done\":true,\"value\":' : '{\"done\":false,\"value\":') +\n value +\n \"}\"\n );\n }\n function resolveModelChunk(response, chunk, value) {\n if (\"pending\" !== chunk.status) chunk.reason.enqueueModel(value);\n else {\n releasePendingChunk(response, chunk);\n var resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"resolved_model\";\n chunk.value = value;\n chunk.reason = response;\n null !== resolveListeners &&\n (initializeModelChunk(chunk),\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ));\n }\n }\n function resolveModuleChunk(response, chunk, value) {\n if (\"pending\" === chunk.status || \"blocked\" === chunk.status) {\n releasePendingChunk(response, chunk);\n var resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"resolved_module\";\n chunk.value = value;\n chunk.reason = null;\n value = [];\n null !== value && chunk._debugInfo.push.apply(chunk._debugInfo, value);\n null !== resolveListeners &&\n (initializeModuleChunk(chunk),\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ));\n }\n }\n function initializeDebugChunk(response, chunk) {\n var debugChunk = chunk._debugChunk;\n if (null !== debugChunk) {\n var debugInfo = chunk._debugInfo;\n try {\n if (\"resolved_model\" === debugChunk.status) {\n for (\n var idx = debugInfo.length, c = debugChunk._debugChunk;\n null !== c;\n\n )\n \"fulfilled\" !== c.status && idx++, (c = c._debugChunk);\n initializeModelChunk(debugChunk);\n switch (debugChunk.status) {\n case \"fulfilled\":\n debugInfo[idx] = initializeDebugInfo(\n response,\n debugChunk.value\n );\n break;\n case \"blocked\":\n case \"pending\":\n waitForReference(\n debugChunk,\n debugInfo,\n \"\" + idx,\n response,\n initializeDebugInfo,\n [\"\"],\n !0\n );\n break;\n default:\n throw debugChunk.reason;\n }\n } else\n switch (debugChunk.status) {\n case \"fulfilled\":\n break;\n case \"blocked\":\n case \"pending\":\n waitForReference(\n debugChunk,\n {},\n \"debug\",\n response,\n initializeDebugInfo,\n [\"\"],\n !0\n );\n break;\n default:\n throw debugChunk.reason;\n }\n } catch (error) {\n triggerErrorOnChunk(response, chunk, error);\n }\n }\n }\n function initializeModelChunk(chunk) {\n var prevHandler = initializingHandler,\n prevChunk = initializingChunk;\n initializingHandler = null;\n var resolvedModel = chunk.value,\n response = chunk.reason;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n initializeDebugChunk(response, chunk);\n try {\n var value = JSON.parse(resolvedModel, response._fromJSON),\n resolveListeners = chunk.value;\n if (null !== resolveListeners)\n for (\n chunk.value = null, chunk.reason = null, resolvedModel = 0;\n resolvedModel < resolveListeners.length;\n resolvedModel++\n ) {\n var listener = resolveListeners[resolvedModel];\n \"function\" === typeof listener\n ? listener(value)\n : fulfillReference(response, listener, value, chunk);\n }\n if (null !== initializingHandler) {\n if (initializingHandler.errored) throw initializingHandler.reason;\n if (0 < initializingHandler.deps) {\n initializingHandler.value = value;\n initializingHandler.chunk = chunk;\n return;\n }\n }\n chunk.status = \"fulfilled\";\n chunk.value = value;\n filterDebugInfo(response, chunk);\n moveDebugInfoFromChunkToInnerValue(chunk, value);\n } catch (error) {\n (chunk.status = \"rejected\"), (chunk.reason = error);\n } finally {\n (initializingHandler = prevHandler), (initializingChunk = prevChunk);\n }\n }\n function initializeModuleChunk(chunk) {\n try {\n var value = requireModule(chunk.value);\n chunk.status = \"fulfilled\";\n chunk.value = value;\n } catch (error) {\n (chunk.status = \"rejected\"), (chunk.reason = error);\n }\n }\n function reportGlobalError(weakResponse, error) {\n if (void 0 !== weakResponse.weak.deref()) {\n var response = unwrapWeakResponse(weakResponse);\n response._closed = !0;\n response._closedReason = error;\n response._chunks.forEach(function (chunk) {\n \"pending\" === chunk.status\n ? triggerErrorOnChunk(response, chunk, error)\n : \"fulfilled\" === chunk.status &&\n null !== chunk.reason &&\n chunk.reason.error(error);\n });\n weakResponse = response._debugChannel;\n void 0 !== weakResponse &&\n (closeDebugChannel(weakResponse),\n (response._debugChannel = void 0),\n null !== debugChannelRegistry &&\n debugChannelRegistry.unregister(response));\n }\n }\n function nullRefGetter() {\n return null;\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\"function\" === typeof type) return '\"use client\"';\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return type._init === readChunk ? '\"use client\"' : \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function initializeElement(response, element, lazyNode) {\n var stack = element._debugStack,\n owner = element._owner;\n null === owner && (element._owner = response._debugRootOwner);\n var env = response._rootEnvironmentName;\n null !== owner && null != owner.env && (env = owner.env);\n var normalizedStackTrace = null;\n null === owner && null != response._debugRootStack\n ? (normalizedStackTrace = response._debugRootStack)\n : null !== stack &&\n (normalizedStackTrace = createFakeJSXCallStackInDEV(\n response,\n stack,\n env\n ));\n element._debugStack = normalizedStackTrace;\n normalizedStackTrace = null;\n supportsCreateTask &&\n null !== stack &&\n ((normalizedStackTrace = console.createTask.bind(\n console,\n getTaskName(element.type)\n )),\n (stack = buildFakeCallStack(\n response,\n stack,\n env,\n !1,\n normalizedStackTrace\n )),\n (env = null === owner ? null : initializeFakeTask(response, owner)),\n null === env\n ? ((env = response._debugRootTask),\n (normalizedStackTrace = null != env ? env.run(stack) : stack()))\n : (normalizedStackTrace = env.run(stack)));\n element._debugTask = normalizedStackTrace;\n null !== owner && initializeFakeStack(response, owner);\n null !== lazyNode &&\n (lazyNode._store &&\n lazyNode._store.validated &&\n !element._store.validated &&\n (element._store.validated = lazyNode._store.validated),\n \"fulfilled\" === lazyNode._payload.status &&\n lazyNode._debugInfo &&\n ((response = lazyNode._debugInfo.splice(0)),\n element._debugInfo\n ? element._debugInfo.unshift.apply(element._debugInfo, response)\n : Object.defineProperty(element, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: response\n })));\n Object.freeze(element.props);\n }\n function createLazyChunkWrapper(chunk, validated) {\n var lazyType = {\n $$typeof: REACT_LAZY_TYPE,\n _payload: chunk,\n _init: readChunk\n };\n lazyType._debugInfo = chunk._debugInfo;\n lazyType._store = { validated: validated };\n return lazyType;\n }\n function getChunk(response, id) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk ||\n ((chunk = response._closed\n ? new ReactPromise(\"rejected\", null, response._closedReason)\n : createPendingChunk(response)),\n chunks.set(id, chunk));\n return chunk;\n }\n function fulfillReference(response, reference, value, fulfilledChunk) {\n var handler = reference.handler,\n parentObject = reference.parentObject,\n key = reference.key,\n map = reference.map,\n path = reference.path;\n try {\n for (var i = 1; i < path.length; i++) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var referencedChunk = value._payload;\n if (referencedChunk === handler.chunk) value = handler.value;\n else {\n switch (referencedChunk.status) {\n case \"resolved_model\":\n initializeModelChunk(referencedChunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(referencedChunk);\n }\n switch (referencedChunk.status) {\n case \"fulfilled\":\n value = referencedChunk.value;\n continue;\n case \"blocked\":\n var cyclicHandler = resolveBlockedCycle(\n referencedChunk,\n reference\n );\n if (null !== cyclicHandler) {\n value = cyclicHandler.value;\n continue;\n }\n case \"pending\":\n path.splice(0, i - 1);\n null === referencedChunk.value\n ? (referencedChunk.value = [reference])\n : referencedChunk.value.push(reference);\n null === referencedChunk.reason\n ? (referencedChunk.reason = [reference])\n : referencedChunk.reason.push(reference);\n return;\n case \"halted\":\n return;\n default:\n rejectReference(\n response,\n reference.handler,\n referencedChunk.reason\n );\n return;\n }\n }\n }\n var name = path[i];\n if (\n \"object\" === typeof value &&\n null !== value &&\n hasOwnProperty.call(value, name)\n )\n value = value[name];\n else throw Error(\"Invalid reference.\");\n }\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var _referencedChunk = value._payload;\n if (_referencedChunk === handler.chunk) value = handler.value;\n else {\n switch (_referencedChunk.status) {\n case \"resolved_model\":\n initializeModelChunk(_referencedChunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(_referencedChunk);\n }\n switch (_referencedChunk.status) {\n case \"fulfilled\":\n value = _referencedChunk.value;\n continue;\n }\n break;\n }\n }\n var mappedValue = map(response, value, parentObject, key);\n \"__proto__\" !== key && (parentObject[key] = mappedValue);\n \"\" === key && null === handler.value && (handler.value = mappedValue);\n if (\n parentObject[0] === REACT_ELEMENT_TYPE &&\n \"object\" === typeof handler.value &&\n null !== handler.value &&\n handler.value.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var element = handler.value;\n switch (key) {\n case \"3\":\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n element.props = mappedValue;\n break;\n case \"4\":\n element._owner = mappedValue;\n break;\n case \"5\":\n element._debugStack = mappedValue;\n break;\n default:\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n }\n } else\n reference.isDebug ||\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n } catch (error) {\n rejectReference(response, reference.handler, error);\n return;\n }\n handler.deps--;\n 0 === handler.deps &&\n ((reference = handler.chunk),\n null !== reference &&\n \"blocked\" === reference.status &&\n ((value = reference.value),\n (reference.status = \"fulfilled\"),\n (reference.value = handler.value),\n (reference.reason = handler.reason),\n null !== value\n ? wakeChunk(response, value, handler.value, reference)\n : ((handler = handler.value),\n filterDebugInfo(response, reference),\n moveDebugInfoFromChunkToInnerValue(reference, handler))));\n }\n function rejectReference(response, handler, error) {\n if (!handler.errored) {\n var blockedValue = handler.value;\n handler.errored = !0;\n handler.value = null;\n handler.reason = error;\n handler = handler.chunk;\n if (null !== handler && \"blocked\" === handler.status) {\n if (\n \"object\" === typeof blockedValue &&\n null !== blockedValue &&\n blockedValue.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var erroredComponent = {\n name: getComponentNameFromType(blockedValue.type) || \"\",\n owner: blockedValue._owner\n };\n erroredComponent.debugStack = blockedValue._debugStack;\n supportsCreateTask &&\n (erroredComponent.debugTask = blockedValue._debugTask);\n handler._debugInfo.push(erroredComponent);\n }\n triggerErrorOnChunk(response, handler, error);\n }\n }\n }\n function waitForReference(\n referencedChunk,\n parentObject,\n key,\n response,\n map,\n path,\n isAwaitingDebugInfo\n ) {\n if (\n !(\n (void 0 !== response._debugChannel &&\n response._debugChannel.hasReadable) ||\n \"pending\" !== referencedChunk.status ||\n parentObject[0] !== REACT_ELEMENT_TYPE ||\n (\"4\" !== key && \"5\" !== key)\n )\n )\n return null;\n initializingHandler\n ? ((response = initializingHandler), response.deps++)\n : (response = initializingHandler =\n {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n });\n parentObject = {\n handler: response,\n parentObject: parentObject,\n key: key,\n map: map,\n path: path\n };\n parentObject.isDebug = isAwaitingDebugInfo;\n null === referencedChunk.value\n ? (referencedChunk.value = [parentObject])\n : referencedChunk.value.push(parentObject);\n null === referencedChunk.reason\n ? (referencedChunk.reason = [parentObject])\n : referencedChunk.reason.push(parentObject);\n return null;\n }\n function loadServerReference(response, metaData, parentObject, key) {\n if (!response._serverReferenceConfig)\n return createBoundServerReference(\n metaData,\n response._callServer,\n response._encodeFormAction,\n response._debugFindSourceMapURL\n );\n var serverReference = resolveServerReference(\n response._serverReferenceConfig,\n metaData.id\n ),\n promise = preloadModule(serverReference);\n if (promise)\n metaData.bound && (promise = Promise.all([promise, metaData.bound]));\n else if (metaData.bound) promise = Promise.resolve(metaData.bound);\n else\n return (\n (promise = requireModule(serverReference)),\n registerBoundServerReference(\n promise,\n metaData.id,\n metaData.bound,\n response._encodeFormAction\n ),\n promise\n );\n if (initializingHandler) {\n var handler = initializingHandler;\n handler.deps++;\n } else\n handler = initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n };\n promise.then(\n function () {\n var resolvedValue = requireModule(serverReference);\n if (metaData.bound) {\n var boundArgs = metaData.bound.value.slice(0);\n boundArgs.unshift(null);\n resolvedValue = resolvedValue.bind.apply(resolvedValue, boundArgs);\n }\n registerBoundServerReference(\n resolvedValue,\n metaData.id,\n metaData.bound,\n response._encodeFormAction\n );\n \"__proto__\" !== key && (parentObject[key] = resolvedValue);\n \"\" === key &&\n null === handler.value &&\n (handler.value = resolvedValue);\n if (\n parentObject[0] === REACT_ELEMENT_TYPE &&\n \"object\" === typeof handler.value &&\n null !== handler.value &&\n handler.value.$$typeof === REACT_ELEMENT_TYPE\n )\n switch (((boundArgs = handler.value), key)) {\n case \"3\":\n boundArgs.props = resolvedValue;\n break;\n case \"4\":\n boundArgs._owner = resolvedValue;\n }\n handler.deps--;\n 0 === handler.deps &&\n ((resolvedValue = handler.chunk),\n null !== resolvedValue &&\n \"blocked\" === resolvedValue.status &&\n ((boundArgs = resolvedValue.value),\n (resolvedValue.status = \"fulfilled\"),\n (resolvedValue.value = handler.value),\n (resolvedValue.reason = null),\n null !== boundArgs\n ? wakeChunk(response, boundArgs, handler.value, resolvedValue)\n : ((boundArgs = handler.value),\n filterDebugInfo(response, resolvedValue),\n moveDebugInfoFromChunkToInnerValue(\n resolvedValue,\n boundArgs\n ))));\n },\n function (error) {\n if (!handler.errored) {\n var blockedValue = handler.value;\n handler.errored = !0;\n handler.value = null;\n handler.reason = error;\n var chunk = handler.chunk;\n if (null !== chunk && \"blocked\" === chunk.status) {\n if (\n \"object\" === typeof blockedValue &&\n null !== blockedValue &&\n blockedValue.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var erroredComponent = {\n name: getComponentNameFromType(blockedValue.type) || \"\",\n owner: blockedValue._owner\n };\n erroredComponent.debugStack = blockedValue._debugStack;\n supportsCreateTask &&\n (erroredComponent.debugTask = blockedValue._debugTask);\n chunk._debugInfo.push(erroredComponent);\n }\n triggerErrorOnChunk(response, chunk, error);\n }\n }\n }\n );\n return null;\n }\n function resolveLazy(value) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var payload = value._payload;\n if (\"fulfilled\" === payload.status) value = payload.value;\n else break;\n }\n return value;\n }\n function transferReferencedDebugInfo(parentChunk, referencedChunk) {\n if (null !== parentChunk) {\n referencedChunk = referencedChunk._debugInfo;\n parentChunk = parentChunk._debugInfo;\n for (var i = 0; i < referencedChunk.length; ++i) {\n var debugInfoEntry = referencedChunk[i];\n null == debugInfoEntry.name && parentChunk.push(debugInfoEntry);\n }\n }\n }\n function getOutlinedModel(response, reference, parentObject, key, map) {\n var path = reference.split(\":\");\n reference = parseInt(path[0], 16);\n reference = getChunk(response, reference);\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(reference);\n switch (reference.status) {\n case \"resolved_model\":\n initializeModelChunk(reference);\n break;\n case \"resolved_module\":\n initializeModuleChunk(reference);\n }\n switch (reference.status) {\n case \"fulfilled\":\n for (var value = reference.value, i = 1; i < path.length; i++) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n value = value._payload;\n switch (value.status) {\n case \"resolved_model\":\n initializeModelChunk(value);\n break;\n case \"resolved_module\":\n initializeModuleChunk(value);\n }\n switch (value.status) {\n case \"fulfilled\":\n value = value.value;\n break;\n case \"blocked\":\n case \"pending\":\n return waitForReference(\n value,\n parentObject,\n key,\n response,\n map,\n path.slice(i - 1),\n !1\n );\n case \"halted\":\n return (\n initializingHandler\n ? ((parentObject = initializingHandler),\n parentObject.deps++)\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n }),\n null\n );\n default:\n return (\n initializingHandler\n ? ((initializingHandler.errored = !0),\n (initializingHandler.value = null),\n (initializingHandler.reason = value.reason))\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: value.reason,\n deps: 0,\n errored: !0\n }),\n null\n );\n }\n }\n value = value[path[i]];\n }\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n path = value._payload;\n switch (path.status) {\n case \"resolved_model\":\n initializeModelChunk(path);\n break;\n case \"resolved_module\":\n initializeModuleChunk(path);\n }\n switch (path.status) {\n case \"fulfilled\":\n value = path.value;\n continue;\n }\n break;\n }\n response = map(response, value, parentObject, key);\n (parentObject[0] !== REACT_ELEMENT_TYPE ||\n (\"4\" !== key && \"5\" !== key)) &&\n transferReferencedDebugInfo(initializingChunk, reference);\n return response;\n case \"pending\":\n case \"blocked\":\n return waitForReference(\n reference,\n parentObject,\n key,\n response,\n map,\n path,\n !1\n );\n case \"halted\":\n return (\n initializingHandler\n ? ((parentObject = initializingHandler), parentObject.deps++)\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n }),\n null\n );\n default:\n return (\n initializingHandler\n ? ((initializingHandler.errored = !0),\n (initializingHandler.value = null),\n (initializingHandler.reason = reference.reason))\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: reference.reason,\n deps: 0,\n errored: !0\n }),\n null\n );\n }\n }\n function createMap(response, model) {\n return new Map(model);\n }\n function createSet(response, model) {\n return new Set(model);\n }\n function createBlob(response, model) {\n return new Blob(model.slice(1), { type: model[0] });\n }\n function createFormData(response, model) {\n response = new FormData();\n for (var i = 0; i < model.length; i++)\n response.append(model[i][0], model[i][1]);\n return response;\n }\n function applyConstructor(response, model, parentObject) {\n Object.setPrototypeOf(parentObject, model.prototype);\n }\n function defineLazyGetter(response, chunk, parentObject, key) {\n \"__proto__\" !== key &&\n Object.defineProperty(parentObject, key, {\n get: function () {\n \"resolved_model\" === chunk.status && initializeModelChunk(chunk);\n switch (chunk.status) {\n case \"fulfilled\":\n return chunk.value;\n case \"rejected\":\n throw chunk.reason;\n }\n return \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\";\n },\n enumerable: !0,\n configurable: !1\n });\n return null;\n }\n function extractIterator(response, model) {\n return model[Symbol.iterator]();\n }\n function createModel(response, model) {\n return model;\n }\n function getInferredFunctionApproximate(code) {\n code = code.startsWith(\"Object.defineProperty(\")\n ? code.slice(22)\n : code.startsWith(\"(\")\n ? code.slice(1)\n : code;\n if (code.startsWith(\"async function\")) {\n var idx = code.indexOf(\"(\", 14);\n if (-1 !== idx)\n return (\n (code = code.slice(14, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":async function(){}})\")[\n code\n ]\n );\n } else if (code.startsWith(\"function\")) {\n if (((idx = code.indexOf(\"(\", 8)), -1 !== idx))\n return (\n (code = code.slice(8, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":function(){}})\")[code]\n );\n } else if (\n code.startsWith(\"class\") &&\n ((idx = code.indexOf(\"{\", 5)), -1 !== idx)\n )\n return (\n (code = code.slice(5, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":class{}})\")[code]\n );\n return function () {};\n }\n function parseModelString(response, parentObject, key, value) {\n if (\"$\" === value[0]) {\n if (\"$\" === value)\n return (\n null !== initializingHandler &&\n \"0\" === key &&\n (initializingHandler = {\n parent: initializingHandler,\n chunk: null,\n value: null,\n reason: null,\n deps: 0,\n errored: !1\n }),\n REACT_ELEMENT_TYPE\n );\n switch (value[1]) {\n case \"$\":\n return value.slice(1);\n case \"L\":\n return (\n (parentObject = parseInt(value.slice(2), 16)),\n (response = getChunk(response, parentObject)),\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(response),\n createLazyChunkWrapper(response, 0)\n );\n case \"@\":\n return (\n (parentObject = parseInt(value.slice(2), 16)),\n (response = getChunk(response, parentObject)),\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(response),\n response\n );\n case \"S\":\n return Symbol.for(value.slice(2));\n case \"h\":\n var ref = value.slice(2);\n return getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n loadServerReference\n );\n case \"T\":\n parentObject = \"$\" + value.slice(2);\n response = response._tempRefs;\n if (null == response)\n throw Error(\n \"Missing a temporary reference set but the RSC response returned a temporary reference. Pass a temporaryReference option with the set that was used with the reply.\"\n );\n return response.get(parentObject);\n case \"Q\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createMap)\n );\n case \"W\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createSet)\n );\n case \"B\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createBlob)\n );\n case \"K\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createFormData)\n );\n case \"Z\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n resolveErrorDev\n )\n );\n case \"i\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n extractIterator\n )\n );\n case \"I\":\n return Infinity;\n case \"-\":\n return \"$-0\" === value ? -0 : -Infinity;\n case \"N\":\n return NaN;\n case \"u\":\n return;\n case \"D\":\n return new Date(Date.parse(value.slice(2)));\n case \"n\":\n return BigInt(value.slice(2));\n case \"P\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n applyConstructor\n )\n );\n case \"E\":\n response = value.slice(2);\n try {\n if (!mightHaveStaticConstructor.test(response))\n return (0, eval)(response);\n } catch (x) {}\n try {\n if (\n ((ref = getInferredFunctionApproximate(response)),\n response.startsWith(\"Object.defineProperty(\"))\n ) {\n var idx = response.lastIndexOf(',\"name\",{value:\"');\n if (-1 !== idx) {\n var name = JSON.parse(\n response.slice(idx + 16 - 1, response.length - 2)\n );\n Object.defineProperty(ref, \"name\", { value: name });\n }\n }\n } catch (_) {\n ref = function () {};\n }\n return ref;\n case \"Y\":\n if (\n 2 < value.length &&\n (ref = response._debugChannel && response._debugChannel.callback)\n ) {\n if (\"@\" === value[2])\n return (\n (parentObject = value.slice(3)),\n (key = parseInt(parentObject, 16)),\n response._chunks.has(key) || ref(\"P:\" + parentObject),\n getChunk(response, key)\n );\n value = value.slice(2);\n idx = parseInt(value, 16);\n response._chunks.has(idx) || ref(\"Q:\" + value);\n ref = getChunk(response, idx);\n return \"fulfilled\" === ref.status\n ? ref.value\n : defineLazyGetter(response, ref, parentObject, key);\n }\n \"__proto__\" !== key &&\n Object.defineProperty(parentObject, key, {\n get: function () {\n return \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\";\n },\n enumerable: !0,\n configurable: !1\n });\n return null;\n default:\n return (\n (ref = value.slice(1)),\n getOutlinedModel(response, ref, parentObject, key, createModel)\n );\n }\n }\n return value;\n }\n function missingCall() {\n throw Error(\n 'Trying to call a function from \"use server\" but the callServer option was not implemented in your router runtime.'\n );\n }\n function markIOStarted() {\n this._debugIOStarted = !0;\n }\n function ResponseInstance(\n bundlerConfig,\n serverReferenceConfig,\n moduleLoading,\n callServer,\n encodeFormAction,\n nonce,\n temporaryReferences,\n findSourceMapURL,\n replayConsole,\n environmentName,\n debugStartTime,\n debugEndTime,\n debugChannel\n ) {\n var chunks = new Map();\n this._bundlerConfig = bundlerConfig;\n this._serverReferenceConfig = serverReferenceConfig;\n this._moduleLoading = moduleLoading;\n this._callServer = void 0 !== callServer ? callServer : missingCall;\n this._encodeFormAction = encodeFormAction;\n this._nonce = nonce;\n this._chunks = chunks;\n this._stringDecoder = new util.TextDecoder();\n this._fromJSON = null;\n this._closed = !1;\n this._closedReason = null;\n this._tempRefs = temporaryReferences;\n this._timeOrigin = 0;\n this._pendingInitialRender = null;\n this._pendingChunks = 0;\n this._weakResponse = { weak: new WeakRef(this), response: this };\n this._debugRootOwner = bundlerConfig =\n void 0 === ReactSharedInteralsServer ||\n null === ReactSharedInteralsServer.A\n ? null\n : ReactSharedInteralsServer.A.getOwner();\n this._debugRootStack =\n null !== bundlerConfig ? Error(\"react-stack-top-frame\") : null;\n environmentName = void 0 === environmentName ? \"Server\" : environmentName;\n supportsCreateTask &&\n (this._debugRootTask = console.createTask(\n '\"use ' + environmentName.toLowerCase() + '\"'\n ));\n this._debugStartTime =\n null == debugStartTime ? performance.now() : debugStartTime;\n this._debugIOStarted = !1;\n setTimeout(markIOStarted.bind(this), 0);\n this._debugEndTime = null == debugEndTime ? null : debugEndTime;\n this._debugFindSourceMapURL = findSourceMapURL;\n this._debugChannel = debugChannel;\n this._blockedConsole = null;\n this._replayConsole = replayConsole;\n this._rootEnvironmentName = environmentName;\n debugChannel &&\n (null === debugChannelRegistry\n ? (closeDebugChannel(debugChannel), (this._debugChannel = void 0))\n : debugChannelRegistry.register(this, debugChannel, this));\n replayConsole && markAllTracksInOrder();\n this._fromJSON = createFromJSONCallback(this);\n }\n function createStreamState(weakResponse, streamDebugValue) {\n var streamState = {\n _rowState: 0,\n _rowID: 0,\n _rowTag: 0,\n _rowLength: 0,\n _buffer: []\n };\n weakResponse = unwrapWeakResponse(weakResponse);\n var debugValuePromise = Promise.resolve(streamDebugValue);\n debugValuePromise.status = \"fulfilled\";\n debugValuePromise.value = streamDebugValue;\n streamState._debugInfo = {\n name: \"rsc stream\",\n start: weakResponse._debugStartTime,\n end: weakResponse._debugStartTime,\n byteSize: 0,\n value: debugValuePromise,\n owner: weakResponse._debugRootOwner,\n debugStack: weakResponse._debugRootStack,\n debugTask: weakResponse._debugRootTask\n };\n streamState._debugTargetChunkSize = MIN_CHUNK_SIZE;\n return streamState;\n }\n function incrementChunkDebugInfo(streamState, chunkLength) {\n var debugInfo = streamState._debugInfo,\n endTime = performance.now(),\n previousEndTime = debugInfo.end;\n chunkLength = debugInfo.byteSize + chunkLength;\n chunkLength > streamState._debugTargetChunkSize ||\n endTime > previousEndTime + 10\n ? ((streamState._debugInfo = {\n name: debugInfo.name,\n start: debugInfo.start,\n end: endTime,\n byteSize: chunkLength,\n value: debugInfo.value,\n owner: debugInfo.owner,\n debugStack: debugInfo.debugStack,\n debugTask: debugInfo.debugTask\n }),\n (streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE))\n : ((debugInfo.end = endTime), (debugInfo.byteSize = chunkLength));\n }\n function addAsyncInfo(chunk, asyncInfo) {\n var value = resolveLazy(chunk.value);\n \"object\" !== typeof value ||\n null === value ||\n (!isArrayImpl(value) &&\n \"function\" !== typeof value[ASYNC_ITERATOR] &&\n value.$$typeof !== REACT_ELEMENT_TYPE &&\n value.$$typeof !== REACT_LAZY_TYPE)\n ? chunk._debugInfo.push(asyncInfo)\n : isArrayImpl(value._debugInfo)\n ? value._debugInfo.push(asyncInfo)\n : Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: [asyncInfo]\n });\n }\n function resolveChunkDebugInfo(response, streamState, chunk) {\n response._debugIOStarted &&\n ((response = { awaited: streamState._debugInfo }),\n \"pending\" === chunk.status || \"blocked\" === chunk.status\n ? ((response = addAsyncInfo.bind(null, chunk, response)),\n chunk.then(response, response))\n : addAsyncInfo(chunk, response));\n }\n function resolveBuffer(response, id, buffer, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk && \"pending\" !== chunk.status\n ? chunk.reason.enqueueValue(buffer)\n : (chunk && releasePendingChunk(response, chunk),\n (buffer = new ReactPromise(\"fulfilled\", buffer, null)),\n resolveChunkDebugInfo(response, streamState, buffer),\n chunks.set(id, buffer));\n }\n function resolveModule(response, id, model, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n model = JSON.parse(model, response._fromJSON);\n var clientReference = resolveClientReference(\n response._bundlerConfig,\n model\n );\n prepareDestinationWithChunks(\n response._moduleLoading,\n model[1],\n response._nonce\n );\n if ((model = preloadModule(clientReference))) {\n if (chunk) {\n releasePendingChunk(response, chunk);\n var blockedChunk = chunk;\n blockedChunk.status = \"blocked\";\n } else\n (blockedChunk = new ReactPromise(\"blocked\", null, null)),\n chunks.set(id, blockedChunk);\n resolveChunkDebugInfo(response, streamState, blockedChunk);\n model.then(\n function () {\n return resolveModuleChunk(response, blockedChunk, clientReference);\n },\n function (error) {\n return triggerErrorOnChunk(response, blockedChunk, error);\n }\n );\n } else\n chunk\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n resolveModuleChunk(response, chunk, clientReference))\n : ((chunk = new ReactPromise(\n \"resolved_module\",\n clientReference,\n null\n )),\n resolveChunkDebugInfo(response, streamState, chunk),\n chunks.set(id, chunk));\n }\n function resolveStream(response, id, stream, controller, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n if (chunk) {\n if (\n (resolveChunkDebugInfo(response, streamState, chunk),\n \"pending\" === chunk.status)\n ) {\n id = chunk.value;\n if (null != chunk._debugChunk) {\n streamState = initializingHandler;\n chunks = initializingChunk;\n initializingHandler = null;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n try {\n if (\n (initializeDebugChunk(response, chunk),\n null !== initializingHandler &&\n !initializingHandler.errored &&\n 0 < initializingHandler.deps)\n ) {\n initializingHandler.value = stream;\n initializingHandler.reason = controller;\n initializingHandler.chunk = chunk;\n return;\n }\n } finally {\n (initializingHandler = streamState), (initializingChunk = chunks);\n }\n }\n chunk.status = \"fulfilled\";\n chunk.value = stream;\n chunk.reason = controller;\n null !== id\n ? wakeChunk(response, id, chunk.value, chunk)\n : (filterDebugInfo(response, chunk),\n moveDebugInfoFromChunkToInnerValue(chunk, stream));\n }\n } else\n 0 === response._pendingChunks++ &&\n (response._weakResponse.response = response),\n (stream = new ReactPromise(\"fulfilled\", stream, controller)),\n resolveChunkDebugInfo(response, streamState, stream),\n chunks.set(id, stream);\n }\n function startReadableStream(response, id, type, streamState) {\n var controller = null,\n closed = !1;\n type = new ReadableStream({\n type: type,\n start: function (c) {\n controller = c;\n }\n });\n var previousBlockedChunk = null;\n resolveStream(\n response,\n id,\n type,\n {\n enqueueValue: function (value) {\n null === previousBlockedChunk\n ? controller.enqueue(value)\n : previousBlockedChunk.then(function () {\n controller.enqueue(value);\n });\n },\n enqueueModel: function (json) {\n if (null === previousBlockedChunk) {\n var chunk = createResolvedModelChunk(response, json);\n initializeModelChunk(chunk);\n \"fulfilled\" === chunk.status\n ? controller.enqueue(chunk.value)\n : (chunk.then(\n function (v) {\n return controller.enqueue(v);\n },\n function (e) {\n return controller.error(e);\n }\n ),\n (previousBlockedChunk = chunk));\n } else {\n chunk = previousBlockedChunk;\n var _chunk3 = createPendingChunk(response);\n _chunk3.then(\n function (v) {\n return controller.enqueue(v);\n },\n function (e) {\n return controller.error(e);\n }\n );\n previousBlockedChunk = _chunk3;\n chunk.then(function () {\n previousBlockedChunk === _chunk3 &&\n (previousBlockedChunk = null);\n resolveModelChunk(response, _chunk3, json);\n });\n }\n },\n close: function () {\n if (!closed)\n if (((closed = !0), null === previousBlockedChunk))\n controller.close();\n else {\n var blockedChunk = previousBlockedChunk;\n previousBlockedChunk = null;\n blockedChunk.then(function () {\n return controller.close();\n });\n }\n },\n error: function (error) {\n if (!closed)\n if (((closed = !0), null === previousBlockedChunk))\n controller.error(error);\n else {\n var blockedChunk = previousBlockedChunk;\n previousBlockedChunk = null;\n blockedChunk.then(function () {\n return controller.error(error);\n });\n }\n }\n },\n streamState\n );\n }\n function asyncIterator() {\n return this;\n }\n function createIterator(next) {\n next = { next: next };\n next[ASYNC_ITERATOR] = asyncIterator;\n return next;\n }\n function startAsyncIterable(response, id, iterator, streamState) {\n var buffer = [],\n closed = !1,\n nextWriteIndex = 0,\n iterable = {};\n iterable[ASYNC_ITERATOR] = function () {\n var nextReadIndex = 0;\n return createIterator(function (arg) {\n if (void 0 !== arg)\n throw Error(\n \"Values cannot be passed to next() of AsyncIterables passed to Client Components.\"\n );\n if (nextReadIndex === buffer.length) {\n if (closed)\n return new ReactPromise(\n \"fulfilled\",\n { done: !0, value: void 0 },\n null\n );\n buffer[nextReadIndex] = createPendingChunk(response);\n }\n return buffer[nextReadIndex++];\n });\n };\n resolveStream(\n response,\n id,\n iterator ? iterable[ASYNC_ITERATOR]() : iterable,\n {\n enqueueValue: function (value) {\n if (nextWriteIndex === buffer.length)\n buffer[nextWriteIndex] = new ReactPromise(\n \"fulfilled\",\n { done: !1, value: value },\n null\n );\n else {\n var chunk = buffer[nextWriteIndex],\n resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"fulfilled\";\n chunk.value = { done: !1, value: value };\n chunk.reason = null;\n null !== resolveListeners &&\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n );\n }\n nextWriteIndex++;\n },\n enqueueModel: function (value) {\n nextWriteIndex === buffer.length\n ? (buffer[nextWriteIndex] = createResolvedIteratorResultChunk(\n response,\n value,\n !1\n ))\n : resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex],\n value,\n !1\n );\n nextWriteIndex++;\n },\n close: function (value) {\n if (!closed)\n for (\n closed = !0,\n nextWriteIndex === buffer.length\n ? (buffer[nextWriteIndex] =\n createResolvedIteratorResultChunk(response, value, !0))\n : resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex],\n value,\n !0\n ),\n nextWriteIndex++;\n nextWriteIndex < buffer.length;\n\n )\n resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex++],\n '\"$undefined\"',\n !0\n );\n },\n error: function (error) {\n if (!closed)\n for (\n closed = !0,\n nextWriteIndex === buffer.length &&\n (buffer[nextWriteIndex] = createPendingChunk(response));\n nextWriteIndex < buffer.length;\n\n )\n triggerErrorOnChunk(response, buffer[nextWriteIndex++], error);\n }\n },\n streamState\n );\n }\n function resolveErrorDev(response, errorInfo) {\n var name = errorInfo.name,\n env = errorInfo.env;\n var error = buildFakeCallStack(\n response,\n errorInfo.stack,\n env,\n !1,\n Error.bind(\n null,\n errorInfo.message ||\n \"An error occurred in the Server Components render but no message was provided\"\n )\n );\n var ownerTask = null;\n null != errorInfo.owner &&\n ((errorInfo = errorInfo.owner.slice(1)),\n (errorInfo = getOutlinedModel(\n response,\n errorInfo,\n {},\n \"\",\n createModel\n )),\n null !== errorInfo &&\n (ownerTask = initializeFakeTask(response, errorInfo)));\n null === ownerTask\n ? ((response = getRootTask(response, env)),\n (error = null != response ? response.run(error) : error()))\n : (error = ownerTask.run(error));\n error.name = name;\n error.environmentName = env;\n return error;\n }\n function createFakeFunction(\n name,\n filename,\n sourceMap,\n line,\n col,\n enclosingLine,\n enclosingCol,\n environmentName\n ) {\n name || (name = \"\");\n var encodedName = JSON.stringify(name);\n 1 > enclosingLine ? (enclosingLine = 0) : enclosingLine--;\n 1 > enclosingCol ? (enclosingCol = 0) : enclosingCol--;\n 1 > line ? (line = 0) : line--;\n 1 > col ? (col = 0) : col--;\n if (\n line < enclosingLine ||\n (line === enclosingLine && col < enclosingCol)\n )\n enclosingCol = enclosingLine = 0;\n 1 > line\n ? ((line = encodedName.length + 3),\n (enclosingCol -= line),\n 0 > enclosingCol && (enclosingCol = 0),\n (col = col - enclosingCol - line - 3),\n 0 > col && (col = 0),\n (encodedName =\n \"({\" +\n encodedName +\n \":\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \" \".repeat(col) +\n \"_()})\"))\n : 1 > enclosingLine\n ? ((enclosingCol -= encodedName.length + 3),\n 0 > enclosingCol && (enclosingCol = 0),\n (encodedName =\n \"({\" +\n encodedName +\n \":\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \"\\n\".repeat(line - enclosingLine) +\n \" \".repeat(col) +\n \"_()})\"))\n : enclosingLine === line\n ? ((col = col - enclosingCol - 3),\n 0 > col && (col = 0),\n (encodedName =\n \"\\n\".repeat(enclosingLine - 1) +\n \"({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \" \".repeat(col) +\n \"_()})\"))\n : (encodedName =\n \"\\n\".repeat(enclosingLine - 1) +\n \"({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \"\\n\".repeat(line - enclosingLine) +\n \" \".repeat(col) +\n \"_()})\");\n encodedName =\n 1 > enclosingLine\n ? encodedName +\n \"\\n/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */\"\n : \"/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */\" +\n encodedName;\n filename.startsWith(\"/\") && (filename = \"file://\" + filename);\n sourceMap\n ? ((encodedName +=\n \"\\n//# sourceURL=about://React/\" +\n encodeURIComponent(environmentName) +\n \"/\" +\n encodeURI(filename) +\n \"?\" +\n fakeFunctionIdx++),\n (encodedName += \"\\n//# sourceMappingURL=\" + sourceMap))\n : (encodedName = filename\n ? encodedName + (\"\\n//# sourceURL=\" + encodeURI(filename))\n : encodedName + \"\\n//# sourceURL=\");\n try {\n var fn = (0, eval)(encodedName)[name];\n } catch (x) {\n fn = function (_) {\n return _();\n };\n }\n return fn;\n }\n function buildFakeCallStack(\n response,\n stack,\n environmentName,\n useEnclosingLine,\n innerCall\n ) {\n for (var i = 0; i < stack.length; i++) {\n var frame = stack[i],\n frameKey =\n frame.join(\"-\") +\n \"-\" +\n environmentName +\n (useEnclosingLine ? \"-e\" : \"-n\"),\n fn = fakeFunctionCache.get(frameKey);\n if (void 0 === fn) {\n fn = frame[0];\n var filename = frame[1],\n line = frame[2],\n col = frame[3],\n enclosingLine = frame[4];\n frame = frame[5];\n var findSourceMapURL = response._debugFindSourceMapURL;\n findSourceMapURL = findSourceMapURL\n ? findSourceMapURL(filename, environmentName)\n : null;\n fn = createFakeFunction(\n fn,\n filename,\n findSourceMapURL,\n line,\n col,\n useEnclosingLine ? line : enclosingLine,\n useEnclosingLine ? col : frame,\n environmentName\n );\n fakeFunctionCache.set(frameKey, fn);\n }\n innerCall = fn.bind(null, innerCall);\n }\n return innerCall;\n }\n function getRootTask(response, childEnvironmentName) {\n var rootTask = response._debugRootTask;\n return rootTask\n ? response._rootEnvironmentName !== childEnvironmentName\n ? ((response = console.createTask.bind(\n console,\n '\"use ' + childEnvironmentName.toLowerCase() + '\"'\n )),\n rootTask.run(response))\n : rootTask\n : null;\n }\n function initializeFakeTask(response, debugInfo) {\n if (!supportsCreateTask || null == debugInfo.stack) return null;\n var cachedEntry = debugInfo.debugTask;\n if (void 0 !== cachedEntry) return cachedEntry;\n var useEnclosingLine = void 0 === debugInfo.key,\n stack = debugInfo.stack,\n env =\n null == debugInfo.env ? response._rootEnvironmentName : debugInfo.env;\n cachedEntry =\n null == debugInfo.owner || null == debugInfo.owner.env\n ? response._rootEnvironmentName\n : debugInfo.owner.env;\n var ownerTask =\n null == debugInfo.owner\n ? null\n : initializeFakeTask(response, debugInfo.owner);\n env =\n env !== cachedEntry\n ? '\"use ' + env.toLowerCase() + '\"'\n : void 0 !== debugInfo.key\n ? \"<\" + (debugInfo.name || \"...\") + \">\"\n : void 0 !== debugInfo.name\n ? debugInfo.name || \"unknown\"\n : \"await \" + (debugInfo.awaited.name || \"unknown\");\n env = console.createTask.bind(console, env);\n useEnclosingLine = buildFakeCallStack(\n response,\n stack,\n cachedEntry,\n useEnclosingLine,\n env\n );\n null === ownerTask\n ? ((response = getRootTask(response, cachedEntry)),\n (response =\n null != response\n ? response.run(useEnclosingLine)\n : useEnclosingLine()))\n : (response = ownerTask.run(useEnclosingLine));\n return (debugInfo.debugTask = response);\n }\n function fakeJSXCallSite() {\n return Error(\"react-stack-top-frame\");\n }\n function initializeFakeStack(response, debugInfo) {\n if (void 0 === debugInfo.debugStack) {\n null != debugInfo.stack &&\n (debugInfo.debugStack = createFakeJSXCallStackInDEV(\n response,\n debugInfo.stack,\n null == debugInfo.env ? \"\" : debugInfo.env\n ));\n var owner = debugInfo.owner;\n null != owner &&\n (initializeFakeStack(response, owner),\n void 0 === owner.debugLocation &&\n null != debugInfo.debugStack &&\n (owner.debugLocation = debugInfo.debugStack));\n }\n }\n function initializeDebugInfo(response, debugInfo) {\n void 0 !== debugInfo.stack && initializeFakeTask(response, debugInfo);\n if (null == debugInfo.owner && null != response._debugRootOwner) {\n var _componentInfoOrAsyncInfo = debugInfo;\n _componentInfoOrAsyncInfo.owner = response._debugRootOwner;\n _componentInfoOrAsyncInfo.stack = null;\n _componentInfoOrAsyncInfo.debugStack = response._debugRootStack;\n _componentInfoOrAsyncInfo.debugTask = response._debugRootTask;\n } else\n void 0 !== debugInfo.stack && initializeFakeStack(response, debugInfo);\n \"number\" === typeof debugInfo.time &&\n (debugInfo = { time: debugInfo.time + response._timeOrigin });\n return debugInfo;\n }\n function getCurrentStackInDEV() {\n var owner = currentOwnerInDEV;\n if (null === owner) return \"\";\n try {\n var info = \"\";\n if (owner.owner || \"string\" !== typeof owner.name) {\n for (; owner; ) {\n var ownerStack = owner.debugStack;\n if (null != ownerStack) {\n if ((owner = owner.owner)) {\n var JSCompiler_temp_const = info;\n var error = ownerStack,\n prevPrepareStackTrace = Error.prepareStackTrace;\n Error.prepareStackTrace = prepareStackTrace;\n var stack = error.stack;\n Error.prepareStackTrace = prevPrepareStackTrace;\n stack.startsWith(\"Error: react-stack-top-frame\\n\") &&\n (stack = stack.slice(29));\n var idx = stack.indexOf(\"\\n\");\n -1 !== idx && (stack = stack.slice(idx + 1));\n idx = stack.indexOf(\"react_stack_bottom_frame\");\n -1 !== idx && (idx = stack.lastIndexOf(\"\\n\", idx));\n var JSCompiler_inline_result =\n -1 !== idx ? (stack = stack.slice(0, idx)) : \"\";\n info =\n JSCompiler_temp_const + (\"\\n\" + JSCompiler_inline_result);\n }\n } else break;\n }\n var JSCompiler_inline_result$jscomp$0 = info;\n } else {\n JSCompiler_temp_const = owner.name;\n if (void 0 === prefix)\n try {\n throw Error();\n } catch (x) {\n (prefix =\n ((error = x.stack.trim().match(/\\n( *(at )?)/)) && error[1]) ||\n \"\"),\n (suffix =\n -1 < x.stack.indexOf(\"\\n at\")\n ? \" ()\"\n : -1 < x.stack.indexOf(\"@\")\n ? \"@unknown:0:0\"\n : \"\");\n }\n JSCompiler_inline_result$jscomp$0 =\n \"\\n\" + prefix + JSCompiler_temp_const + suffix;\n }\n } catch (x) {\n JSCompiler_inline_result$jscomp$0 =\n \"\\nError generating stack: \" + x.message + \"\\n\" + x.stack;\n }\n return JSCompiler_inline_result$jscomp$0;\n }\n function resolveConsoleEntry(response, json) {\n if (response._replayConsole) {\n var blockedChunk = response._blockedConsole;\n if (null == blockedChunk)\n (blockedChunk = createResolvedModelChunk(response, json)),\n initializeModelChunk(blockedChunk),\n \"fulfilled\" === blockedChunk.status\n ? replayConsoleWithCallStackInDEV(response, blockedChunk.value)\n : (blockedChunk.then(\n function (v) {\n return replayConsoleWithCallStackInDEV(response, v);\n },\n function () {}\n ),\n (response._blockedConsole = blockedChunk));\n else {\n var _chunk4 = createPendingChunk(response);\n _chunk4.then(\n function (v) {\n return replayConsoleWithCallStackInDEV(response, v);\n },\n function () {}\n );\n response._blockedConsole = _chunk4;\n var unblock = function () {\n response._blockedConsole === _chunk4 &&\n (response._blockedConsole = null);\n resolveModelChunk(response, _chunk4, json);\n };\n blockedChunk.then(unblock, unblock);\n }\n }\n }\n function initializeIOInfo(response, ioInfo) {\n void 0 !== ioInfo.stack &&\n (initializeFakeTask(response, ioInfo),\n initializeFakeStack(response, ioInfo));\n ioInfo.start += response._timeOrigin;\n ioInfo.end += response._timeOrigin;\n if (response._replayConsole) {\n response = response._rootEnvironmentName;\n var promise = ioInfo.value;\n if (promise)\n switch (promise.status) {\n case \"fulfilled\":\n logIOInfo(ioInfo, response, promise.value);\n break;\n case \"rejected\":\n logIOInfoErrored(ioInfo, response, promise.reason);\n break;\n default:\n promise.then(\n logIOInfo.bind(null, ioInfo, response),\n logIOInfoErrored.bind(null, ioInfo, response)\n );\n }\n else logIOInfo(ioInfo, response, void 0);\n }\n }\n function resolveIOInfo(response, id, model) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk\n ? (resolveModelChunk(response, chunk, model),\n \"resolved_model\" === chunk.status && initializeModelChunk(chunk))\n : ((chunk = createResolvedModelChunk(response, model)),\n chunks.set(id, chunk),\n initializeModelChunk(chunk));\n \"fulfilled\" === chunk.status\n ? initializeIOInfo(response, chunk.value)\n : chunk.then(\n function (v) {\n initializeIOInfo(response, v);\n },\n function () {}\n );\n }\n function mergeBuffer(buffer, lastChunk) {\n for (\n var l = buffer.length, byteLength = lastChunk.length, i = 0;\n i < l;\n i++\n )\n byteLength += buffer[i].byteLength;\n byteLength = new Uint8Array(byteLength);\n for (var _i3 = (i = 0); _i3 < l; _i3++) {\n var chunk = buffer[_i3];\n byteLength.set(chunk, i);\n i += chunk.byteLength;\n }\n byteLength.set(lastChunk, i);\n return byteLength;\n }\n function resolveTypedArray(\n response,\n id,\n buffer,\n lastChunk,\n constructor,\n bytesPerElement,\n streamState\n ) {\n buffer =\n 0 === buffer.length && 0 === lastChunk.byteOffset % bytesPerElement\n ? lastChunk\n : mergeBuffer(buffer, lastChunk);\n constructor = new constructor(\n buffer.buffer,\n buffer.byteOffset,\n buffer.byteLength / bytesPerElement\n );\n resolveBuffer(response, id, constructor, streamState);\n }\n function flushComponentPerformance(\n response$jscomp$0,\n root,\n trackIdx$jscomp$6,\n trackTime,\n parentEndTime\n ) {\n if (!isArrayImpl(root._children)) {\n var previousResult = root._children,\n previousEndTime = previousResult.endTime;\n if (\n -Infinity < parentEndTime &&\n parentEndTime < previousEndTime &&\n null !== previousResult.component\n ) {\n var componentInfo = previousResult.component,\n trackIdx = trackIdx$jscomp$6,\n startTime = parentEndTime;\n if (supportsUserTiming && 0 <= previousEndTime && 10 > trackIdx) {\n var color =\n componentInfo.env === response$jscomp$0._rootEnvironmentName\n ? \"primary-light\"\n : \"secondary-light\",\n entryName = componentInfo.name + \" [deduped]\",\n debugTask = componentInfo.debugTask;\n debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n entryName,\n 0 > startTime ? 0 : startTime,\n previousEndTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n color\n )\n )\n : console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n previousEndTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n color\n );\n }\n }\n previousResult.track = trackIdx$jscomp$6;\n return previousResult;\n }\n var children = root._children;\n var debugInfo = root._debugInfo;\n if (0 === debugInfo.length && \"fulfilled\" === root.status) {\n var resolvedValue = resolveLazy(root.value);\n \"object\" === typeof resolvedValue &&\n null !== resolvedValue &&\n (isArrayImpl(resolvedValue) ||\n \"function\" === typeof resolvedValue[ASYNC_ITERATOR] ||\n resolvedValue.$$typeof === REACT_ELEMENT_TYPE ||\n resolvedValue.$$typeof === REACT_LAZY_TYPE) &&\n isArrayImpl(resolvedValue._debugInfo) &&\n (debugInfo = resolvedValue._debugInfo);\n }\n if (debugInfo) {\n for (var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++) {\n var info = debugInfo[i];\n \"number\" === typeof info.time && (startTime$jscomp$0 = info.time);\n if (\"string\" === typeof info.name) {\n startTime$jscomp$0 < trackTime && trackIdx$jscomp$6++;\n trackTime = startTime$jscomp$0;\n break;\n }\n }\n for (var _i4 = debugInfo.length - 1; 0 <= _i4; _i4--) {\n var _info = debugInfo[_i4];\n if (\"number\" === typeof _info.time && _info.time > parentEndTime) {\n parentEndTime = _info.time;\n break;\n }\n }\n }\n var result = {\n track: trackIdx$jscomp$6,\n endTime: -Infinity,\n component: null\n };\n root._children = result;\n for (\n var childrenEndTime = -Infinity,\n childTrackIdx = trackIdx$jscomp$6,\n childTrackTime = trackTime,\n _i5 = 0;\n _i5 < children.length;\n _i5++\n ) {\n var childResult = flushComponentPerformance(\n response$jscomp$0,\n children[_i5],\n childTrackIdx,\n childTrackTime,\n parentEndTime\n );\n null !== childResult.component &&\n (result.component = childResult.component);\n childTrackIdx = childResult.track;\n var childEndTime = childResult.endTime;\n childEndTime > childTrackTime && (childTrackTime = childEndTime);\n childEndTime > childrenEndTime && (childrenEndTime = childEndTime);\n }\n if (debugInfo)\n for (\n var componentEndTime = 0,\n isLastComponent = !0,\n endTime = -1,\n endTimeIdx = -1,\n _i6 = debugInfo.length - 1;\n 0 <= _i6;\n _i6--\n ) {\n var _info2 = debugInfo[_i6];\n if (\"number\" === typeof _info2.time) {\n 0 === componentEndTime && (componentEndTime = _info2.time);\n var time = _info2.time;\n if (-1 < endTimeIdx)\n for (var j = endTimeIdx - 1; j > _i6; j--) {\n var candidateInfo = debugInfo[j];\n if (\"string\" === typeof candidateInfo.name) {\n componentEndTime > childrenEndTime &&\n (childrenEndTime = componentEndTime);\n var componentInfo$jscomp$0 = candidateInfo,\n response = response$jscomp$0,\n componentInfo$jscomp$1 = componentInfo$jscomp$0,\n trackIdx$jscomp$0 = trackIdx$jscomp$6,\n startTime$jscomp$1 = time,\n componentEndTime$jscomp$0 = componentEndTime,\n childrenEndTime$jscomp$0 = childrenEndTime;\n if (\n isLastComponent &&\n \"rejected\" === root.status &&\n root.reason !== response._closedReason\n ) {\n var componentInfo$jscomp$2 = componentInfo$jscomp$1,\n trackIdx$jscomp$1 = trackIdx$jscomp$0,\n startTime$jscomp$2 = startTime$jscomp$1,\n childrenEndTime$jscomp$1 = childrenEndTime$jscomp$0,\n error = root.reason;\n if (supportsUserTiming) {\n var env = componentInfo$jscomp$2.env,\n name = componentInfo$jscomp$2.name,\n entryName$jscomp$0 =\n env === response._rootEnvironmentName ||\n void 0 === env\n ? name\n : name + \" [\" + env + \"]\",\n measureName = \"\\u200b\" + entryName$jscomp$0,\n properties = [\n [\n \"Error\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]\n ];\n null != componentInfo$jscomp$2.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$2.key,\n properties,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$2.props &&\n addObjectToProperties(\n componentInfo$jscomp$2.props,\n properties,\n 0,\n \"\"\n );\n performance.measure(measureName, {\n start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2,\n end: childrenEndTime$jscomp$1,\n detail: {\n devtools: {\n color: \"error\",\n track: trackNames[trackIdx$jscomp$1],\n trackGroup: \"Server Components \\u269b\",\n tooltipText: entryName$jscomp$0 + \" Errored\",\n properties: properties\n }\n }\n });\n performance.clearMeasures(measureName);\n }\n } else {\n var componentInfo$jscomp$3 = componentInfo$jscomp$1,\n trackIdx$jscomp$2 = trackIdx$jscomp$0,\n startTime$jscomp$3 = startTime$jscomp$1,\n childrenEndTime$jscomp$2 = childrenEndTime$jscomp$0;\n if (\n supportsUserTiming &&\n 0 <= childrenEndTime$jscomp$2 &&\n 10 > trackIdx$jscomp$2\n ) {\n var env$jscomp$0 = componentInfo$jscomp$3.env,\n name$jscomp$0 = componentInfo$jscomp$3.name,\n isPrimaryEnv =\n env$jscomp$0 === response._rootEnvironmentName,\n selfTime =\n componentEndTime$jscomp$0 - startTime$jscomp$3,\n color$jscomp$0 =\n 0.5 > selfTime\n ? isPrimaryEnv\n ? \"primary-light\"\n : \"secondary-light\"\n : 50 > selfTime\n ? isPrimaryEnv\n ? \"primary\"\n : \"secondary\"\n : 500 > selfTime\n ? isPrimaryEnv\n ? \"primary-dark\"\n : \"secondary-dark\"\n : \"error\",\n debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask,\n measureName$jscomp$0 =\n \"\\u200b\" +\n (isPrimaryEnv || void 0 === env$jscomp$0\n ? name$jscomp$0\n : name$jscomp$0 + \" [\" + env$jscomp$0 + \"]\");\n if (debugTask$jscomp$0) {\n var properties$jscomp$0 = [];\n null != componentInfo$jscomp$3.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$3.key,\n properties$jscomp$0,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$3.props &&\n addObjectToProperties(\n componentInfo$jscomp$3.props,\n properties$jscomp$0,\n 0,\n \"\"\n );\n debugTask$jscomp$0.run(\n performance.measure.bind(\n performance,\n measureName$jscomp$0,\n {\n start:\n 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,\n end: childrenEndTime$jscomp$2,\n detail: {\n devtools: {\n color: color$jscomp$0,\n track: trackNames[trackIdx$jscomp$2],\n trackGroup: \"Server Components \\u269b\",\n properties: properties$jscomp$0\n }\n }\n }\n )\n );\n performance.clearMeasures(measureName$jscomp$0);\n } else\n console.timeStamp(\n measureName$jscomp$0,\n 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,\n childrenEndTime$jscomp$2,\n trackNames[trackIdx$jscomp$2],\n \"Server Components \\u269b\",\n color$jscomp$0\n );\n }\n }\n componentEndTime = time;\n result.component = componentInfo$jscomp$0;\n isLastComponent = !1;\n } else if (\n candidateInfo.awaited &&\n null != candidateInfo.awaited.env\n ) {\n endTime > childrenEndTime && (childrenEndTime = endTime);\n var asyncInfo = candidateInfo,\n env$jscomp$1 = response$jscomp$0._rootEnvironmentName,\n promise = asyncInfo.awaited.value;\n if (promise) {\n var thenable = promise;\n switch (thenable.status) {\n case \"fulfilled\":\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n thenable.value\n );\n break;\n case \"rejected\":\n var asyncInfo$jscomp$0 = asyncInfo,\n trackIdx$jscomp$3 = trackIdx$jscomp$6,\n startTime$jscomp$4 = time,\n endTime$jscomp$0 = endTime,\n rootEnv = env$jscomp$1,\n error$jscomp$0 = thenable.reason;\n if (supportsUserTiming && 0 < endTime$jscomp$0) {\n var description = getIODescription(error$jscomp$0),\n entryName$jscomp$1 =\n \"await \" +\n getIOShortName(\n asyncInfo$jscomp$0.awaited,\n description,\n asyncInfo$jscomp$0.env,\n rootEnv\n ),\n debugTask$jscomp$1 =\n asyncInfo$jscomp$0.debugTask ||\n asyncInfo$jscomp$0.awaited.debugTask;\n if (debugTask$jscomp$1) {\n var properties$jscomp$1 = [\n [\n \"Rejected\",\n \"object\" === typeof error$jscomp$0 &&\n null !== error$jscomp$0 &&\n \"string\" === typeof error$jscomp$0.message\n ? String(error$jscomp$0.message)\n : String(error$jscomp$0)\n ]\n ],\n tooltipText =\n getIOLongName(\n asyncInfo$jscomp$0.awaited,\n description,\n asyncInfo$jscomp$0.env,\n rootEnv\n ) + \" Rejected\";\n debugTask$jscomp$1.run(\n performance.measure.bind(\n performance,\n entryName$jscomp$1,\n {\n start:\n 0 > startTime$jscomp$4\n ? 0\n : startTime$jscomp$4,\n end: endTime$jscomp$0,\n detail: {\n devtools: {\n color: \"error\",\n track: trackNames[trackIdx$jscomp$3],\n trackGroup: \"Server Components \\u269b\",\n properties: properties$jscomp$1,\n tooltipText: tooltipText\n }\n }\n }\n )\n );\n performance.clearMeasures(entryName$jscomp$1);\n } else\n console.timeStamp(\n entryName$jscomp$1,\n 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4,\n endTime$jscomp$0,\n trackNames[trackIdx$jscomp$3],\n \"Server Components \\u269b\",\n \"error\"\n );\n }\n break;\n default:\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n void 0\n );\n }\n } else\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n void 0\n );\n }\n }\n else {\n endTime = time;\n for (var _j = debugInfo.length - 1; _j > _i6; _j--) {\n var _candidateInfo = debugInfo[_j];\n if (\"string\" === typeof _candidateInfo.name) {\n componentEndTime > childrenEndTime &&\n (childrenEndTime = componentEndTime);\n var _componentInfo = _candidateInfo,\n _env = response$jscomp$0._rootEnvironmentName,\n componentInfo$jscomp$4 = _componentInfo,\n trackIdx$jscomp$4 = trackIdx$jscomp$6,\n startTime$jscomp$5 = time,\n childrenEndTime$jscomp$3 = childrenEndTime;\n if (supportsUserTiming) {\n var env$jscomp$2 = componentInfo$jscomp$4.env,\n name$jscomp$1 = componentInfo$jscomp$4.name,\n entryName$jscomp$2 =\n env$jscomp$2 === _env || void 0 === env$jscomp$2\n ? name$jscomp$1\n : name$jscomp$1 + \" [\" + env$jscomp$2 + \"]\",\n measureName$jscomp$1 = \"\\u200b\" + entryName$jscomp$2,\n properties$jscomp$2 = [\n [\n \"Aborted\",\n \"The stream was aborted before this Component finished rendering.\"\n ]\n ];\n null != componentInfo$jscomp$4.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$4.key,\n properties$jscomp$2,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$4.props &&\n addObjectToProperties(\n componentInfo$jscomp$4.props,\n properties$jscomp$2,\n 0,\n \"\"\n );\n performance.measure(measureName$jscomp$1, {\n start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5,\n end: childrenEndTime$jscomp$3,\n detail: {\n devtools: {\n color: \"warning\",\n track: trackNames[trackIdx$jscomp$4],\n trackGroup: \"Server Components \\u269b\",\n tooltipText: entryName$jscomp$2 + \" Aborted\",\n properties: properties$jscomp$2\n }\n }\n });\n performance.clearMeasures(measureName$jscomp$1);\n }\n componentEndTime = time;\n result.component = _componentInfo;\n isLastComponent = !1;\n } else if (\n _candidateInfo.awaited &&\n null != _candidateInfo.awaited.env\n ) {\n var _asyncInfo = _candidateInfo,\n _env2 = response$jscomp$0._rootEnvironmentName;\n _asyncInfo.awaited.end > endTime &&\n (endTime = _asyncInfo.awaited.end);\n endTime > childrenEndTime && (childrenEndTime = endTime);\n var asyncInfo$jscomp$1 = _asyncInfo,\n trackIdx$jscomp$5 = trackIdx$jscomp$6,\n startTime$jscomp$6 = time,\n endTime$jscomp$1 = endTime,\n rootEnv$jscomp$0 = _env2;\n if (supportsUserTiming && 0 < endTime$jscomp$1) {\n var entryName$jscomp$3 =\n \"await \" +\n getIOShortName(\n asyncInfo$jscomp$1.awaited,\n \"\",\n asyncInfo$jscomp$1.env,\n rootEnv$jscomp$0\n ),\n debugTask$jscomp$2 =\n asyncInfo$jscomp$1.debugTask ||\n asyncInfo$jscomp$1.awaited.debugTask;\n if (debugTask$jscomp$2) {\n var tooltipText$jscomp$0 =\n getIOLongName(\n asyncInfo$jscomp$1.awaited,\n \"\",\n asyncInfo$jscomp$1.env,\n rootEnv$jscomp$0\n ) + \" Aborted\";\n debugTask$jscomp$2.run(\n performance.measure.bind(\n performance,\n entryName$jscomp$3,\n {\n start:\n 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,\n end: endTime$jscomp$1,\n detail: {\n devtools: {\n color: \"warning\",\n track: trackNames[trackIdx$jscomp$5],\n trackGroup: \"Server Components \\u269b\",\n properties: [\n [\n \"Aborted\",\n \"The stream was aborted before this Promise resolved.\"\n ]\n ],\n tooltipText: tooltipText$jscomp$0\n }\n }\n }\n )\n );\n performance.clearMeasures(entryName$jscomp$3);\n } else\n console.timeStamp(\n entryName$jscomp$3,\n 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,\n endTime$jscomp$1,\n trackNames[trackIdx$jscomp$5],\n \"Server Components \\u269b\",\n \"warning\"\n );\n }\n }\n }\n }\n endTime = time;\n endTimeIdx = _i6;\n }\n }\n result.endTime = childrenEndTime;\n return result;\n }\n function flushInitialRenderPerformance(response) {\n if (response._replayConsole) {\n var rootChunk = getChunk(response, 0);\n isArrayImpl(rootChunk._children) &&\n (markAllTracksInOrder(),\n flushComponentPerformance(\n response,\n rootChunk,\n 0,\n -Infinity,\n -Infinity\n ));\n }\n }\n function processFullBinaryRow(\n response,\n streamState,\n id,\n tag,\n buffer,\n chunk\n ) {\n switch (tag) {\n case 65:\n resolveBuffer(\n response,\n id,\n mergeBuffer(buffer, chunk).buffer,\n streamState\n );\n return;\n case 79:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int8Array,\n 1,\n streamState\n );\n return;\n case 111:\n resolveBuffer(\n response,\n id,\n 0 === buffer.length ? chunk : mergeBuffer(buffer, chunk),\n streamState\n );\n return;\n case 85:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint8ClampedArray,\n 1,\n streamState\n );\n return;\n case 83:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int16Array,\n 2,\n streamState\n );\n return;\n case 115:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint16Array,\n 2,\n streamState\n );\n return;\n case 76:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int32Array,\n 4,\n streamState\n );\n return;\n case 108:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint32Array,\n 4,\n streamState\n );\n return;\n case 71:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Float32Array,\n 4,\n streamState\n );\n return;\n case 103:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Float64Array,\n 8,\n streamState\n );\n return;\n case 77:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n BigInt64Array,\n 8,\n streamState\n );\n return;\n case 109:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n BigUint64Array,\n 8,\n streamState\n );\n return;\n case 86:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n DataView,\n 1,\n streamState\n );\n return;\n }\n for (\n var stringDecoder = response._stringDecoder, row = \"\", i = 0;\n i < buffer.length;\n i++\n )\n row += stringDecoder.decode(buffer[i], decoderOptions);\n row += stringDecoder.decode(chunk);\n processFullStringRow(response, streamState, id, tag, row);\n }\n function processFullStringRow(response, streamState, id, tag, row) {\n switch (tag) {\n case 73:\n resolveModule(response, id, row, streamState);\n break;\n case 72:\n id = row[0];\n streamState = row.slice(1);\n response = JSON.parse(streamState, response._fromJSON);\n streamState = ReactDOMSharedInternals.d;\n switch (id) {\n case \"D\":\n streamState.D(response);\n break;\n case \"C\":\n \"string\" === typeof response\n ? streamState.C(response)\n : streamState.C(response[0], response[1]);\n break;\n case \"L\":\n id = response[0];\n row = response[1];\n 3 === response.length\n ? streamState.L(id, row, response[2])\n : streamState.L(id, row);\n break;\n case \"m\":\n \"string\" === typeof response\n ? streamState.m(response)\n : streamState.m(response[0], response[1]);\n break;\n case \"X\":\n \"string\" === typeof response\n ? streamState.X(response)\n : streamState.X(response[0], response[1]);\n break;\n case \"S\":\n \"string\" === typeof response\n ? streamState.S(response)\n : streamState.S(\n response[0],\n 0 === response[1] ? void 0 : response[1],\n 3 === response.length ? response[2] : void 0\n );\n break;\n case \"M\":\n \"string\" === typeof response\n ? streamState.M(response)\n : streamState.M(response[0], response[1]);\n }\n break;\n case 69:\n tag = response._chunks;\n var chunk = tag.get(id);\n row = JSON.parse(row);\n var error = resolveErrorDev(response, row);\n error.digest = row.digest;\n chunk\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n triggerErrorOnChunk(response, chunk, error))\n : ((row = new ReactPromise(\"rejected\", null, error)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n break;\n case 84:\n tag = response._chunks;\n (chunk = tag.get(id)) && \"pending\" !== chunk.status\n ? chunk.reason.enqueueValue(row)\n : (chunk && releasePendingChunk(response, chunk),\n (row = new ReactPromise(\"fulfilled\", row, null)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n break;\n case 78:\n response._timeOrigin = +row - performance.timeOrigin;\n break;\n case 68:\n id = getChunk(response, id);\n \"fulfilled\" !== id.status &&\n \"rejected\" !== id.status &&\n \"halted\" !== id.status &&\n \"blocked\" !== id.status &&\n \"resolved_module\" !== id.status &&\n ((streamState = id._debugChunk),\n (tag = createResolvedModelChunk(response, row)),\n (tag._debugChunk = streamState),\n (id._debugChunk = tag),\n initializeDebugChunk(response, id),\n \"blocked\" !== tag.status ||\n (void 0 !== response._debugChannel &&\n response._debugChannel.hasReadable) ||\n '\"' !== row[0] ||\n \"$\" !== row[1] ||\n ((streamState = row.slice(2, row.length - 1).split(\":\")),\n (streamState = parseInt(streamState[0], 16)),\n \"pending\" === getChunk(response, streamState).status &&\n (id._debugChunk = null)));\n break;\n case 74:\n resolveIOInfo(response, id, row);\n break;\n case 87:\n resolveConsoleEntry(response, row);\n break;\n case 82:\n startReadableStream(response, id, void 0, streamState);\n break;\n case 114:\n startReadableStream(response, id, \"bytes\", streamState);\n break;\n case 88:\n startAsyncIterable(response, id, !1, streamState);\n break;\n case 120:\n startAsyncIterable(response, id, !0, streamState);\n break;\n case 67:\n (id = response._chunks.get(id)) &&\n \"fulfilled\" === id.status &&\n (0 === --response._pendingChunks &&\n (response._weakResponse.response = null),\n id.reason.close(\"\" === row ? '\"$undefined\"' : row));\n break;\n default:\n if (\"\" === row) {\n if (\n ((streamState = response._chunks),\n (row = streamState.get(id)) ||\n streamState.set(id, (row = createPendingChunk(response))),\n \"pending\" === row.status || \"blocked\" === row.status)\n )\n releasePendingChunk(response, row),\n (response = row),\n (response.status = \"halted\"),\n (response.value = null),\n (response.reason = null);\n } else\n (tag = response._chunks),\n (chunk = tag.get(id))\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n resolveModelChunk(response, chunk, row))\n : ((row = createResolvedModelChunk(response, row)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n }\n }\n function processBinaryChunk(weakResponse, streamState, chunk) {\n if (void 0 !== weakResponse.weak.deref()) {\n weakResponse = unwrapWeakResponse(weakResponse);\n var i = 0,\n rowState = streamState._rowState,\n rowID = streamState._rowID,\n rowTag = streamState._rowTag,\n rowLength = streamState._rowLength,\n buffer = streamState._buffer,\n chunkLength = chunk.length;\n for (\n incrementChunkDebugInfo(streamState, chunkLength);\n i < chunkLength;\n\n ) {\n var lastIdx = -1;\n switch (rowState) {\n case 0:\n lastIdx = chunk[i++];\n 58 === lastIdx\n ? (rowState = 1)\n : (rowID =\n (rowID << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 1:\n rowState = chunk[i];\n 84 === rowState ||\n 65 === rowState ||\n 79 === rowState ||\n 111 === rowState ||\n 98 === rowState ||\n 85 === rowState ||\n 83 === rowState ||\n 115 === rowState ||\n 76 === rowState ||\n 108 === rowState ||\n 71 === rowState ||\n 103 === rowState ||\n 77 === rowState ||\n 109 === rowState ||\n 86 === rowState\n ? ((rowTag = rowState), (rowState = 2), i++)\n : (64 < rowState && 91 > rowState) ||\n 35 === rowState ||\n 114 === rowState ||\n 120 === rowState\n ? ((rowTag = rowState), (rowState = 3), i++)\n : ((rowTag = 0), (rowState = 3));\n continue;\n case 2:\n lastIdx = chunk[i++];\n 44 === lastIdx\n ? (rowState = 4)\n : (rowLength =\n (rowLength << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 3:\n lastIdx = chunk.indexOf(10, i);\n break;\n case 4:\n (lastIdx = i + rowLength),\n lastIdx > chunk.length && (lastIdx = -1);\n }\n var offset = chunk.byteOffset + i;\n if (-1 < lastIdx)\n (rowLength = new Uint8Array(chunk.buffer, offset, lastIdx - i)),\n 98 === rowTag\n ? resolveBuffer(\n weakResponse,\n rowID,\n lastIdx === chunkLength ? rowLength : rowLength.slice(),\n streamState\n )\n : processFullBinaryRow(\n weakResponse,\n streamState,\n rowID,\n rowTag,\n buffer,\n rowLength\n ),\n (i = lastIdx),\n 3 === rowState && i++,\n (rowLength = rowID = rowTag = rowState = 0),\n (buffer.length = 0);\n else {\n chunk = new Uint8Array(chunk.buffer, offset, chunk.byteLength - i);\n 98 === rowTag\n ? ((rowLength -= chunk.byteLength),\n resolveBuffer(weakResponse, rowID, chunk, streamState))\n : (buffer.push(chunk), (rowLength -= chunk.byteLength));\n break;\n }\n }\n streamState._rowState = rowState;\n streamState._rowID = rowID;\n streamState._rowTag = rowTag;\n streamState._rowLength = rowLength;\n }\n }\n function createFromJSONCallback(response) {\n return function (key, value) {\n if (\"__proto__\" !== key) {\n if (\"string\" === typeof value)\n return parseModelString(response, this, key, value);\n if (\"object\" === typeof value && null !== value) {\n if (value[0] === REACT_ELEMENT_TYPE)\n b: {\n var owner = value[4],\n stack = value[5];\n key = value[6];\n value = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: value[1],\n key: value[2],\n props: value[3],\n _owner: void 0 === owner ? null : owner\n };\n Object.defineProperty(value, \"ref\", {\n enumerable: !1,\n get: nullRefGetter\n });\n value._store = {};\n Object.defineProperty(value._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: key\n });\n Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(value, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: void 0 === stack ? null : stack\n });\n Object.defineProperty(value, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n if (null !== initializingHandler) {\n owner = initializingHandler;\n initializingHandler = owner.parent;\n if (owner.errored) {\n stack = new ReactPromise(\"rejected\", null, owner.reason);\n initializeElement(response, value, null);\n owner = {\n name: getComponentNameFromType(value.type) || \"\",\n owner: value._owner\n };\n owner.debugStack = value._debugStack;\n supportsCreateTask && (owner.debugTask = value._debugTask);\n stack._debugInfo = [owner];\n key = createLazyChunkWrapper(stack, key);\n break b;\n }\n if (0 < owner.deps) {\n stack = new ReactPromise(\"blocked\", null, null);\n owner.value = value;\n owner.chunk = stack;\n key = createLazyChunkWrapper(stack, key);\n value = initializeElement.bind(null, response, value, key);\n stack.then(value, value);\n break b;\n }\n }\n initializeElement(response, value, null);\n key = value;\n }\n else key = value;\n return key;\n }\n return value;\n }\n };\n }\n function close(weakResponse) {\n reportGlobalError(weakResponse, Error(\"Connection closed.\"));\n }\n function noServerCall$1() {\n throw Error(\n \"Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead.\"\n );\n }\n function createResponseFromOptions(options) {\n return new ResponseInstance(\n options.serverConsumerManifest.moduleMap,\n options.serverConsumerManifest.serverModuleMap,\n options.serverConsumerManifest.moduleLoading,\n noServerCall$1,\n options.encodeFormAction,\n \"string\" === typeof options.nonce ? options.nonce : void 0,\n options && options.temporaryReferences\n ? options.temporaryReferences\n : void 0,\n options && options.findSourceMapURL ? options.findSourceMapURL : void 0,\n options ? !0 === options.replayConsoleLogs : !1,\n options && options.environmentName ? options.environmentName : void 0,\n options && null != options.startTime ? options.startTime : void 0,\n options && null != options.endTime ? options.endTime : void 0,\n options && void 0 !== options.debugChannel\n ? {\n hasReadable: void 0 !== options.debugChannel.readable,\n callback: null\n }\n : void 0\n )._weakResponse;\n }\n function startReadingFromStream$1(response, stream, onDone, debugValue) {\n function progress(_ref) {\n var value = _ref.value;\n if (_ref.done) return onDone();\n processBinaryChunk(response, streamState, value);\n return reader.read().then(progress).catch(error);\n }\n function error(e) {\n reportGlobalError(response, e);\n }\n var streamState = createStreamState(response, debugValue),\n reader = stream.getReader();\n reader.read().then(progress).catch(error);\n }\n function noServerCall() {\n throw Error(\n \"Server Functions cannot be called during initial render. This would create a fetch waterfall. Try to use a Server Component to pass data to Client Components instead.\"\n );\n }\n function startReadingFromStream(response$jscomp$0, stream, onEnd) {\n var streamState = createStreamState(response$jscomp$0, stream);\n stream.on(\"data\", function (chunk) {\n if (\"string\" === typeof chunk) {\n if (void 0 !== response$jscomp$0.weak.deref()) {\n var response = unwrapWeakResponse(response$jscomp$0),\n i = 0,\n rowState = streamState._rowState,\n rowID = streamState._rowID,\n rowTag = streamState._rowTag,\n rowLength = streamState._rowLength,\n buffer = streamState._buffer,\n chunkLength = chunk.length;\n for (\n incrementChunkDebugInfo(streamState, chunkLength);\n i < chunkLength;\n\n ) {\n var lastIdx = -1;\n switch (rowState) {\n case 0:\n lastIdx = chunk.charCodeAt(i++);\n 58 === lastIdx\n ? (rowState = 1)\n : (rowID =\n (rowID << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 1:\n rowState = chunk.charCodeAt(i);\n 84 === rowState ||\n 65 === rowState ||\n 79 === rowState ||\n 111 === rowState ||\n 85 === rowState ||\n 83 === rowState ||\n 115 === rowState ||\n 76 === rowState ||\n 108 === rowState ||\n 71 === rowState ||\n 103 === rowState ||\n 77 === rowState ||\n 109 === rowState ||\n 86 === rowState\n ? ((rowTag = rowState), (rowState = 2), i++)\n : (64 < rowState && 91 > rowState) ||\n 114 === rowState ||\n 120 === rowState\n ? ((rowTag = rowState), (rowState = 3), i++)\n : ((rowTag = 0), (rowState = 3));\n continue;\n case 2:\n lastIdx = chunk.charCodeAt(i++);\n 44 === lastIdx\n ? (rowState = 4)\n : (rowLength =\n (rowLength << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 3:\n lastIdx = chunk.indexOf(\"\\n\", i);\n break;\n case 4:\n if (84 !== rowTag)\n throw Error(\n \"Binary RSC chunks cannot be encoded as strings. This is a bug in the wiring of the React streams.\"\n );\n if (rowLength < chunk.length || chunk.length > 3 * rowLength)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n lastIdx = chunk.length;\n }\n if (-1 < lastIdx) {\n if (0 < buffer.length)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n i = chunk.slice(i, lastIdx);\n processFullStringRow(response, streamState, rowID, rowTag, i);\n i = lastIdx;\n 3 === rowState && i++;\n rowLength = rowID = rowTag = rowState = 0;\n buffer.length = 0;\n } else if (chunk.length !== i)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n }\n streamState._rowState = rowState;\n streamState._rowID = rowID;\n streamState._rowTag = rowTag;\n streamState._rowLength = rowLength;\n }\n } else processBinaryChunk(response$jscomp$0, streamState, chunk);\n });\n stream.on(\"error\", function (error) {\n reportGlobalError(response$jscomp$0, error);\n });\n stream.on(\"end\", onEnd);\n }\n var util = require(\"util\"),\n ReactDOM = require(\"react-dom\"),\n React = require(\"react\"),\n decoderOptions = { stream: !0 },\n bind$1 = Function.prototype.bind,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n instrumentedChunks = new WeakSet(),\n loadedChunks = new WeakSet(),\n ReactDOMSharedInternals =\n ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_VIEW_TRANSITION_TYPE = Symbol.for(\"react.view_transition\"),\n MAYBE_ITERATOR_SYMBOL = Symbol.iterator,\n ASYNC_ITERATOR = Symbol.asyncIterator,\n isArrayImpl = Array.isArray,\n getPrototypeOf = Object.getPrototypeOf,\n jsxPropsParents = new WeakMap(),\n jsxChildrenParents = new WeakMap(),\n CLIENT_REFERENCE_TAG = Symbol.for(\"react.client.reference\"),\n ObjectPrototype = Object.prototype,\n knownServerReferences = new WeakMap(),\n boundCache = new WeakMap(),\n fakeServerFunctionIdx = 0,\n FunctionBind = Function.prototype.bind,\n ArraySlice = Array.prototype.slice,\n v8FrameRegExp =\n /^ {3} at (?:(.+) \\((.+):(\\d+):(\\d+)\\)|(?:async )?(.+):(\\d+):(\\d+))$/,\n jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\\d+):(\\d+)/,\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n supportsUserTiming =\n \"undefined\" !== typeof console &&\n \"function\" === typeof console.timeStamp &&\n \"undefined\" !== typeof performance &&\n \"function\" === typeof performance.measure,\n trackNames =\n \"Primary Parallel Parallel\\u200b Parallel\\u200b\\u200b Parallel\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\".split(\n \" \"\n ),\n prefix,\n suffix;\n new (\"function\" === typeof WeakMap ? WeakMap : Map)();\n var ReactSharedInteralsServer =\n React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE ||\n ReactSharedInteralsServer;\n ReactPromise.prototype = Object.create(Promise.prototype);\n ReactPromise.prototype.then = function (resolve, reject) {\n var _this = this;\n switch (this.status) {\n case \"resolved_model\":\n initializeModelChunk(this);\n break;\n case \"resolved_module\":\n initializeModuleChunk(this);\n }\n var resolveCallback = resolve,\n rejectCallback = reject,\n wrapperPromise = new Promise(function (res, rej) {\n resolve = function (value) {\n wrapperPromise._debugInfo = _this._debugInfo;\n res(value);\n };\n reject = function (reason) {\n wrapperPromise._debugInfo = _this._debugInfo;\n rej(reason);\n };\n });\n wrapperPromise.then(resolveCallback, rejectCallback);\n switch (this.status) {\n case \"fulfilled\":\n \"function\" === typeof resolve && resolve(this.value);\n break;\n case \"pending\":\n case \"blocked\":\n \"function\" === typeof resolve &&\n (null === this.value && (this.value = []),\n this.value.push(resolve));\n \"function\" === typeof reject &&\n (null === this.reason && (this.reason = []),\n this.reason.push(reject));\n break;\n case \"halted\":\n break;\n default:\n \"function\" === typeof reject && reject(this.reason);\n }\n };\n var debugChannelRegistry =\n \"function\" === typeof FinalizationRegistry\n ? new FinalizationRegistry(closeDebugChannel)\n : null,\n initializingHandler = null,\n initializingChunk = null,\n mightHaveStaticConstructor = /\\bclass\\b.*\\bstatic\\b/,\n MIN_CHUNK_SIZE = 65536,\n supportsCreateTask = !!console.createTask,\n fakeFunctionCache = new Map(),\n fakeFunctionIdx = 0,\n createFakeJSXCallStack = {\n react_stack_bottom_frame: function (response, stack, environmentName) {\n return buildFakeCallStack(\n response,\n stack,\n environmentName,\n !1,\n fakeJSXCallSite\n )();\n }\n },\n createFakeJSXCallStackInDEV =\n createFakeJSXCallStack.react_stack_bottom_frame.bind(\n createFakeJSXCallStack\n ),\n currentOwnerInDEV = null,\n replayConsoleWithCallStack = {\n react_stack_bottom_frame: function (response, payload) {\n var methodName = payload[0],\n stackTrace = payload[1],\n owner = payload[2],\n env = payload[3];\n payload = payload.slice(4);\n var prevStack = ReactSharedInternals.getCurrentStack;\n ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;\n currentOwnerInDEV = null === owner ? response._debugRootOwner : owner;\n try {\n a: {\n var offset = 0;\n switch (methodName) {\n case \"dir\":\n case \"dirxml\":\n case \"groupEnd\":\n case \"table\":\n var JSCompiler_inline_result = bind$1.apply(\n console[methodName],\n [console].concat(payload)\n );\n break a;\n case \"assert\":\n offset = 1;\n }\n var newArgs = payload.slice(0);\n \"string\" === typeof newArgs[offset]\n ? newArgs.splice(\n offset,\n 1,\n \"\\u001b[0m\\u001b[7m%c%s\\u001b[0m%c \" + newArgs[offset],\n \"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px\",\n \" \" + env + \" \",\n \"\"\n )\n : newArgs.splice(\n offset,\n 0,\n \"\\u001b[0m\\u001b[7m%c%s\\u001b[0m%c\",\n \"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px\",\n \" \" + env + \" \",\n \"\"\n );\n newArgs.unshift(console);\n JSCompiler_inline_result = bind$1.apply(\n console[methodName],\n newArgs\n );\n }\n var callStack = buildFakeCallStack(\n response,\n stackTrace,\n env,\n !1,\n JSCompiler_inline_result\n );\n if (null != owner) {\n var task = initializeFakeTask(response, owner);\n initializeFakeStack(response, owner);\n if (null !== task) {\n task.run(callStack);\n return;\n }\n }\n var rootTask = getRootTask(response, env);\n null != rootTask ? rootTask.run(callStack) : callStack();\n } finally {\n (currentOwnerInDEV = null),\n (ReactSharedInternals.getCurrentStack = prevStack);\n }\n }\n },\n replayConsoleWithCallStackInDEV =\n replayConsoleWithCallStack.react_stack_bottom_frame.bind(\n replayConsoleWithCallStack\n );\n exports.createFromFetch = function (promiseForResponse, options) {\n var response = createResponseFromOptions(options);\n promiseForResponse.then(\n function (r) {\n if (\n options &&\n options.debugChannel &&\n options.debugChannel.readable\n ) {\n var streamDoneCount = 0,\n handleDone = function () {\n 2 === ++streamDoneCount && close(response);\n };\n startReadingFromStream$1(\n response,\n options.debugChannel.readable,\n handleDone\n );\n startReadingFromStream$1(response, r.body, handleDone, r);\n } else\n startReadingFromStream$1(\n response,\n r.body,\n close.bind(null, response),\n r\n );\n },\n function (e) {\n reportGlobalError(response, e);\n }\n );\n return getRoot(response);\n };\n exports.createFromNodeStream = function (\n stream,\n serverConsumerManifest,\n options\n ) {\n var response = new ResponseInstance(\n serverConsumerManifest.moduleMap,\n serverConsumerManifest.serverModuleMap,\n serverConsumerManifest.moduleLoading,\n noServerCall,\n options ? options.encodeFormAction : void 0,\n options && \"string\" === typeof options.nonce ? options.nonce : void 0,\n void 0,\n options && options.findSourceMapURL ? options.findSourceMapURL : void 0,\n options ? !0 === options.replayConsoleLogs : !1,\n options && options.environmentName ? options.environmentName : void 0,\n options && null != options.startTime ? options.startTime : void 0,\n options && null != options.endTime ? options.endTime : void 0,\n options && void 0 !== options.debugChannel\n ? { hasReadable: !0, callback: null }\n : void 0\n )._weakResponse;\n if (options && options.debugChannel) {\n var streamEndedCount = 0;\n serverConsumerManifest = function () {\n 2 === ++streamEndedCount && close(response);\n };\n startReadingFromStream(\n response,\n options.debugChannel,\n serverConsumerManifest\n );\n startReadingFromStream(response, stream, serverConsumerManifest);\n } else\n startReadingFromStream(response, stream, close.bind(null, response));\n return getRoot(response);\n };\n exports.createFromReadableStream = function (stream, options) {\n var response = createResponseFromOptions(options);\n if (options && options.debugChannel && options.debugChannel.readable) {\n var streamDoneCount = 0,\n handleDone = function () {\n 2 === ++streamDoneCount && close(response);\n };\n startReadingFromStream$1(\n response,\n options.debugChannel.readable,\n handleDone\n );\n startReadingFromStream$1(response, stream, handleDone, stream);\n } else\n startReadingFromStream$1(\n response,\n stream,\n close.bind(null, response),\n stream\n );\n return getRoot(response);\n };\n exports.createServerReference = function (id) {\n return createServerReference$1(id, noServerCall$1);\n };\n exports.createTemporaryReferenceSet = function () {\n return new Map();\n };\n exports.encodeReply = function (value, options) {\n return new Promise(function (resolve, reject) {\n var abort = processReply(\n value,\n \"\",\n options && options.temporaryReferences\n ? options.temporaryReferences\n : void 0,\n resolve,\n reject\n );\n if (options && options.signal) {\n var signal = options.signal;\n if (signal.aborted) abort(signal.reason);\n else {\n var listener = function () {\n abort(signal.reason);\n signal.removeEventListener(\"abort\", listener);\n };\n signal.addEventListener(\"abort\", listener);\n }\n }\n });\n };\n exports.registerServerReference = function (\n reference,\n id,\n encodeFormAction\n ) {\n registerBoundServerReference(reference, id, null, encodeFormAction);\n return reference;\n };\n })();\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 15556, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-server-dom-turbopack/client.node.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-server-dom-turbopack-client.node.production.js');\n} else {\n module.exports = require('./cjs/react-server-dom-turbopack-client.node.development.js');\n}\n"],"names":[],"mappings":"AAEA;;KAEO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 15565, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/detached-promise.ts"],"sourcesContent":["/**\n * A `Promise.withResolvers` implementation that exposes the `resolve` and\n * `reject` functions on a `Promise`.\n *\n * @see https://tc39.es/proposal-promise-with-resolvers/\n */\nexport class DetachedPromise {\n public readonly resolve: (value: T | PromiseLike) => void\n public readonly reject: (reason: any) => void\n public readonly promise: Promise\n\n constructor() {\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n\n // Create the promise and assign the resolvers to the object.\n this.promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n\n // We know that resolvers is defined because the Promise constructor runs\n // synchronously.\n this.resolve = resolve!\n this.reject = reject!\n }\n}\n"],"names":["DetachedPromise","constructor","resolve","reject","promise","Promise","res","rej"],"mappings":"AAAA;;;;;CAKC,GACD;;;;AAAO,MAAMA;IAKXC,aAAc;QACZ,IAAIC;QACJ,IAAIC;QAEJ,6DAA6D;QAC7D,IAAI,CAACC,OAAO,GAAG,IAAIC,QAAW,CAACC,KAAKC;YAClCL,UAAUI;YACVH,SAASI;QACX;QAEA,yEAAyE;QACzE,iBAAiB;QACjB,IAAI,CAACL,OAAO,GAAGA;QACf,IAAI,CAACC,MAAM,GAAGA;IAChB;AACF","ignoreList":[0]}}, - {"offset": {"line": 15593, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/stream-utils/encoded-tags.ts"],"sourcesContent":["export const ENCODED_TAGS = {\n // opening tags do not have the closing `>` since they can contain other attributes such as ``\n OPENING: {\n // \n HEAD: new Uint8Array([60, 47, 104, 101, 97, 100, 62]),\n // \n BODY: new Uint8Array([60, 47, 98, 111, 100, 121, 62]),\n // \n HTML: new Uint8Array([60, 47, 104, 116, 109, 108, 62]),\n // \n BODY_AND_HTML: new Uint8Array([\n 60, 47, 98, 111, 100, 121, 62, 60, 47, 104, 116, 109, 108, 62,\n ]),\n },\n META: {\n // Only the match the prefix cause the suffix can be different wether it's xml compatible or not \">\" or \"/>\"\n // a.length) return -1\n\n // start iterating through `a`\n for (let i = 0; i <= a.length - b.length; i++) {\n let completeMatch = true\n // from index `i`, iterate through `b` and check for mismatch\n for (let j = 0; j < b.length; j++) {\n // if the values do not match, then this isn't a complete match, exit `b` iteration early and iterate to next index of `a`.\n if (a[i + j] !== b[j]) {\n completeMatch = false\n break\n }\n }\n\n if (completeMatch) {\n return i\n }\n }\n\n return -1\n}\n\n/**\n * Check if two Uint8Arrays are strictly equivalent.\n */\nexport function isEquivalentUint8Arrays(a: Uint8Array, b: Uint8Array) {\n if (a.length !== b.length) return false\n\n for (let i = 0; i < a.length; i++) {\n if (a[i] !== b[i]) return false\n }\n\n return true\n}\n\n/**\n * Remove Uint8Array `b` from Uint8Array `a`.\n *\n * If `b` is not in `a`, `a` is returned unchanged.\n *\n * Otherwise, the function returns a new Uint8Array instance with size `a.length - b.length`\n */\nexport function removeFromUint8Array(a: Uint8Array, b: Uint8Array) {\n const tagIndex = indexOfUint8Array(a, b)\n if (tagIndex === 0) return a.subarray(b.length)\n if (tagIndex > -1) {\n const removed = new Uint8Array(a.length - b.length)\n removed.set(a.slice(0, tagIndex))\n removed.set(a.slice(tagIndex + b.length), tagIndex)\n return removed\n } else {\n return a\n }\n}\n"],"names":["indexOfUint8Array","a","b","length","i","completeMatch","j","isEquivalentUint8Arrays","removeFromUint8Array","tagIndex","subarray","removed","Uint8Array","set","slice"],"mappings":"AAAA;;CAEC,GACD;;;;;;;;AAAO,SAASA,kBAAkBC,CAAa,EAAEC,CAAa;IAC5D,IAAIA,EAAEC,MAAM,KAAK,GAAG,OAAO;IAC3B,IAAIF,EAAEE,MAAM,KAAK,KAAKD,EAAEC,MAAM,GAAGF,EAAEE,MAAM,EAAE,OAAO,CAAC;IAEnD,8BAA8B;IAC9B,IAAK,IAAIC,IAAI,GAAGA,KAAKH,EAAEE,MAAM,GAAGD,EAAEC,MAAM,EAAEC,IAAK;QAC7C,IAAIC,gBAAgB;QACpB,6DAA6D;QAC7D,IAAK,IAAIC,IAAI,GAAGA,IAAIJ,EAAEC,MAAM,EAAEG,IAAK;YACjC,2HAA2H;YAC3H,IAAIL,CAAC,CAACG,IAAIE,EAAE,KAAKJ,CAAC,CAACI,EAAE,EAAE;gBACrBD,gBAAgB;gBAChB;YACF;QACF;QAEA,IAAIA,eAAe;YACjB,OAAOD;QACT;IACF;IAEA,OAAO,CAAC;AACV;AAKO,SAASG,wBAAwBN,CAAa,EAAEC,CAAa;IAClE,IAAID,EAAEE,MAAM,KAAKD,EAAEC,MAAM,EAAE,OAAO;IAElC,IAAK,IAAIC,IAAI,GAAGA,IAAIH,EAAEE,MAAM,EAAEC,IAAK;QACjC,IAAIH,CAAC,CAACG,EAAE,KAAKF,CAAC,CAACE,EAAE,EAAE,OAAO;IAC5B;IAEA,OAAO;AACT;AASO,SAASI,qBAAqBP,CAAa,EAAEC,CAAa;IAC/D,MAAMO,WAAWT,kBAAkBC,GAAGC;IACtC,IAAIO,aAAa,GAAG,OAAOR,EAAES,QAAQ,CAACR,EAAEC,MAAM;IAC9C,IAAIM,WAAW,CAAC,GAAG;QACjB,MAAME,UAAU,IAAIC,WAAWX,EAAEE,MAAM,GAAGD,EAAEC,MAAM;QAClDQ,QAAQE,GAAG,CAACZ,EAAEa,KAAK,CAAC,GAAGL;QACvBE,QAAQE,GAAG,CAACZ,EAAEa,KAAK,CAACL,WAAWP,EAAEC,MAAM,GAAGM;QAC1C,OAAOE;IACT,OAAO;QACL,OAAOV;IACT;AACF","ignoreList":[0]}}, - {"offset": {"line": 15756, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/errors/constants.ts"],"sourcesContent":["export const MISSING_ROOT_TAGS_ERROR = 'NEXT_MISSING_ROOT_TAGS'\n"],"names":["MISSING_ROOT_TAGS_ERROR"],"mappings":";;;;AAAO,MAAMA,0BAA0B,yBAAwB","ignoreList":[0]}}, - {"offset": {"line": 15765, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment-cache/output-export-prefetch-encoding.ts"],"sourcesContent":["// In output: export mode, the build id is added to the start of the HTML\n// document, directly after the doctype declaration. During a prefetch, the\n// client performs a range request to get the build id, so it can check whether\n// the target page belongs to the same build.\n//\n// The first 64 bytes of the document are requested. The exact number isn't\n// too important; it must be larger than the build id + doctype + closing and\n// ending comment markers, but it doesn't need to match the end of the\n// comment exactly.\n//\n// Build ids are 21 bytes long in the default implementation, though this\n// can be overridden in the Next.js config. For the purposes of this check,\n// it's OK to only match the start of the id, so we'll truncate it if exceeds\n// a certain length.\n\nconst DOCTYPE_PREFIX = '' // 15 bytes\nconst MAX_BUILD_ID_LENGTH = 24\n\nfunction escapeBuildId(buildId: string) {\n // If the build id is longer than the given limit, it's OK for our purposes\n // to only match the beginning.\n const truncated = buildId.slice(0, MAX_BUILD_ID_LENGTH)\n // Replace hyphens with underscores so it doesn't break the HTML comment.\n // (Unlikely, but if this did happen it would break the whole document.)\n return truncated.replace(/-/g, '_')\n}\n\nexport function insertBuildIdComment(originalHtml: string, buildId: string) {\n if (\n // Skip if the build id contains a closing comment marker.\n buildId.includes('-->') ||\n // React always inserts a doctype at the start of the document. Skip if it\n // isn't present. Shouldn't happen; suggests an issue elsewhere.\n !originalHtml.startsWith(DOCTYPE_PREFIX)\n ) {\n // Return the original HTML unchanged. This means the document will not\n // be prefetched.\n // TODO: The build id comment is currently only used during prefetches, but\n // if we eventually use this mechanism for regular navigations, we may need\n // to error during build if we fail to insert it for some reason.\n return originalHtml\n }\n // The comment must be inserted after the doctype.\n return originalHtml.replace(\n DOCTYPE_PREFIX,\n DOCTYPE_PREFIX + ''\n )\n}\n"],"names":["DOCTYPE_PREFIX","MAX_BUILD_ID_LENGTH","escapeBuildId","buildId","truncated","slice","replace","insertBuildIdComment","originalHtml","includes","startsWith"],"mappings":";;;;AAAA,yEAAyE;AACzE,2EAA2E;AAC3E,+EAA+E;AAC/E,6CAA6C;AAC7C,EAAE;AACF,2EAA2E;AAC3E,6EAA6E;AAC7E,sEAAsE;AACtE,mBAAmB;AACnB,EAAE;AACF,yEAAyE;AACzE,2EAA2E;AAC3E,6EAA6E;AAC7E,oBAAoB;AAEpB,MAAMA,iBAAiB,kBAAkB,WAAW;;AACpD,MAAMC,sBAAsB;AAE5B,SAASC,cAAcC,OAAe;IACpC,2EAA2E;IAC3E,+BAA+B;IAC/B,MAAMC,YAAYD,QAAQE,KAAK,CAAC,GAAGJ;IACnC,yEAAyE;IACzE,wEAAwE;IACxE,OAAOG,UAAUE,OAAO,CAAC,MAAM;AACjC;AAEO,SAASC,qBAAqBC,YAAoB,EAAEL,OAAe;IACxE,IACE,AACAA,QAAQM,QAAQ,CAAC,UACjB,+BAF0D,2CAEgB;IAC1E,gEAAgE;IAChE,CAACD,aAAaE,UAAU,CAACV,iBACzB;QACA,uEAAuE;QACvE,iBAAiB;QACjB,2EAA2E;QAC3E,2EAA2E;QAC3E,iEAAiE;QACjE,OAAOQ;IACT;IACA,kDAAkD;IAClD,OAAOA,aAAaF,OAAO,CACzBN,gBACAA,iBAAiB,SAASE,cAAcC,WAAW;AAEvD","ignoreList":[0]}}, - {"offset": {"line": 15812, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/hash.ts"],"sourcesContent":["// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n"],"names":["djb2Hash","str","hash","i","length","char","charCodeAt","hexHash","toString","slice"],"mappings":"AAAA,wCAAwC;AACxC,4CAA4C;AAC5C,iHAAiH;AACjH,wFAAwF;AACxF,gGAAgG;AAChG,wHAAwH;AACxH,wDAAwD;;;;;;;AACjD,SAASA,SAASC,GAAW;IAClC,IAAIC,OAAO;IACX,IAAK,IAAIC,IAAI,GAAGA,IAAIF,IAAIG,MAAM,EAAED,IAAK;QACnC,MAAME,OAAOJ,IAAIK,UAAU,CAACH;QAC5BD,OAASA,CAAAA,QAAQ,CAAA,IAAKA,OAAOG,OAAQ;IACvC;IACA,OAAOH,SAAS;AAClB;AAEO,SAASK,QAAQN,GAAW;IACjC,OAAOD,SAASC,KAAKO,QAAQ,CAAC,IAAIC,KAAK,CAAC,GAAG;AAC7C","ignoreList":[0]}}, - {"offset": {"line": 15840, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/cache-busting-search-param.ts"],"sourcesContent":["import { hexHash } from '../../hash'\n\nexport function computeCacheBustingSearchParam(\n prefetchHeader: '1' | '2' | '0' | undefined,\n segmentPrefetchHeader: string | string[] | undefined,\n stateTreeHeader: string | string[] | undefined,\n nextUrlHeader: string | string[] | undefined\n): string {\n if (\n (prefetchHeader === undefined || prefetchHeader === '0') &&\n segmentPrefetchHeader === undefined &&\n stateTreeHeader === undefined &&\n nextUrlHeader === undefined\n ) {\n return ''\n }\n return hexHash(\n [\n prefetchHeader || '0',\n segmentPrefetchHeader || '0',\n stateTreeHeader || '0',\n nextUrlHeader || '0',\n ].join(',')\n )\n}\n"],"names":["hexHash","computeCacheBustingSearchParam","prefetchHeader","segmentPrefetchHeader","stateTreeHeader","nextUrlHeader","undefined","join"],"mappings":";;;;AAAA,SAASA,OAAO,QAAQ,aAAY;;AAE7B,SAASC,+BACdC,cAA2C,EAC3CC,qBAAoD,EACpDC,eAA8C,EAC9CC,aAA4C;IAE5C,IACGH,CAAAA,mBAAmBI,aAAaJ,mBAAmB,GAAE,KACtDC,0BAA0BG,aAC1BF,oBAAoBE,aACpBD,kBAAkBC,WAClB;QACA,OAAO;IACT;IACA,WAAON,uKAAAA,EACL;QACEE,kBAAkB;QAClBC,yBAAyB;QACzBC,mBAAmB;QACnBC,iBAAiB;KAClB,CAACE,IAAI,CAAC;AAEX","ignoreList":[0]}}, - {"offset": {"line": 15861, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/stream-utils/node-web-streams-helper.ts"],"sourcesContent":["import type { ReactDOMServerReadableStream } from 'react-dom/server'\nimport { getTracer } from '../lib/trace/tracer'\nimport { AppRenderSpan } from '../lib/trace/constants'\nimport { DetachedPromise } from '../../lib/detached-promise'\nimport {\n scheduleImmediate,\n atLeastOneTask,\n waitAtLeastOneReactRenderTask,\n} from '../../lib/scheduler'\nimport { ENCODED_TAGS } from './encoded-tags'\nimport {\n indexOfUint8Array,\n isEquivalentUint8Arrays,\n removeFromUint8Array,\n} from './uint8array-helpers'\nimport { MISSING_ROOT_TAGS_ERROR } from '../../shared/lib/errors/constants'\nimport { insertBuildIdComment } from '../../shared/lib/segment-cache/output-export-prefetch-encoding'\nimport {\n RSC_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_RSC_UNION_QUERY,\n} from '../../client/components/app-router-headers'\nimport { computeCacheBustingSearchParam } from '../../shared/lib/router/utils/cache-busting-search-param'\n\nfunction voidCatch() {\n // this catcher is designed to be used with pipeTo where we expect the underlying\n // pipe implementation to forward errors but we don't want the pipeTo promise to reject\n // and be unhandled\n}\n\n// We can share the same encoder instance everywhere\n// Notably we cannot do the same for TextDecoder because it is stateful\n// when handling streaming data\nconst encoder = new TextEncoder()\n\nexport function chainStreams(\n ...streams: ReadableStream[]\n): ReadableStream {\n // If we have no streams, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n if (streams.length === 0) {\n return new ReadableStream({\n start(controller) {\n controller.close()\n },\n })\n }\n\n // If we only have 1 stream we fast path it by returning just this stream\n if (streams.length === 1) {\n return streams[0]\n }\n\n const { readable, writable } = new TransformStream()\n\n // We always initiate pipeTo immediately. We know we have at least 2 streams\n // so we need to avoid closing the writable when this one finishes.\n let promise = streams[0].pipeTo(writable, { preventClose: true })\n\n let i = 1\n for (; i < streams.length - 1; i++) {\n const nextStream = streams[i]\n promise = promise.then(() =>\n nextStream.pipeTo(writable, { preventClose: true })\n )\n }\n\n // We can omit the length check because we halted before the last stream and there\n // is at least two streams so the lastStream here will always be defined\n const lastStream = streams[i]\n promise = promise.then(() => lastStream.pipeTo(writable))\n\n // Catch any errors from the streams and ignore them, they will be handled\n // by whatever is consuming the readable stream.\n promise.catch(voidCatch)\n\n return readable\n}\n\nexport function streamFromString(str: string): ReadableStream {\n return new ReadableStream({\n start(controller) {\n controller.enqueue(encoder.encode(str))\n controller.close()\n },\n })\n}\n\nexport function streamFromBuffer(chunk: Buffer): ReadableStream {\n return new ReadableStream({\n start(controller) {\n controller.enqueue(chunk)\n controller.close()\n },\n })\n}\n\nasync function streamToChunks(\n stream: ReadableStream\n): Promise> {\n const reader = stream.getReader()\n const chunks: Array = []\n\n while (true) {\n const { done, value } = await reader.read()\n if (done) {\n break\n }\n\n chunks.push(value)\n }\n\n return chunks\n}\n\nfunction concatUint8Arrays(chunks: Array): Uint8Array {\n const totalLength = chunks.reduce((sum, chunk) => sum + chunk.length, 0)\n const result = new Uint8Array(totalLength)\n let offset = 0\n for (const chunk of chunks) {\n result.set(chunk, offset)\n offset += chunk.length\n }\n return result\n}\n\nexport async function streamToUint8Array(\n stream: ReadableStream\n): Promise {\n return concatUint8Arrays(await streamToChunks(stream))\n}\n\nexport async function streamToBuffer(\n stream: ReadableStream\n): Promise {\n return Buffer.concat(await streamToChunks(stream))\n}\n\nexport async function streamToString(\n stream: ReadableStream,\n signal?: AbortSignal\n): Promise {\n const decoder = new TextDecoder('utf-8', { fatal: true })\n let string = ''\n\n for await (const chunk of stream) {\n if (signal?.aborted) {\n return string\n }\n\n string += decoder.decode(chunk, { stream: true })\n }\n\n string += decoder.decode()\n\n return string\n}\n\nexport type BufferedTransformOptions = {\n /**\n * Flush synchronously once the buffer reaches this many bytes.\n */\n readonly maxBufferByteLength?: number\n}\n\nexport function createBufferedTransformStream(\n options: BufferedTransformOptions = {}\n): TransformStream {\n const { maxBufferByteLength = Infinity } = options\n\n let bufferedChunks: Array = []\n let bufferByteLength: number = 0\n let pending: DetachedPromise | undefined\n\n const flush = (controller: TransformStreamDefaultController) => {\n try {\n if (bufferedChunks.length === 0) {\n return\n }\n\n const chunk = new Uint8Array(bufferByteLength)\n let copiedBytes = 0\n\n for (let i = 0; i < bufferedChunks.length; i++) {\n const bufferedChunk = bufferedChunks[i]\n chunk.set(bufferedChunk, copiedBytes)\n copiedBytes += bufferedChunk.byteLength\n }\n // We just wrote all the buffered chunks so we need to reset the bufferedChunks array\n // and our bufferByteLength to prepare for the next round of buffered chunks\n bufferedChunks.length = 0\n bufferByteLength = 0\n controller.enqueue(chunk)\n } catch {\n // If an error occurs while enqueuing, it can't be due to this\n // transformer. It's most likely caused by the controller having been\n // errored (for example, if the stream was cancelled).\n }\n }\n\n const scheduleFlush = (controller: TransformStreamDefaultController) => {\n if (pending) {\n return\n }\n\n const detached = new DetachedPromise()\n pending = detached\n\n scheduleImmediate(() => {\n try {\n flush(controller)\n } finally {\n pending = undefined\n detached.resolve()\n }\n })\n }\n\n return new TransformStream({\n transform(chunk, controller) {\n // Combine the previous buffer with the new chunk.\n bufferedChunks.push(chunk)\n bufferByteLength += chunk.byteLength\n\n if (bufferByteLength >= maxBufferByteLength) {\n flush(controller)\n } else {\n scheduleFlush(controller)\n }\n },\n flush() {\n return pending?.promise\n },\n })\n}\n\nfunction createPrefetchCommentStream(\n isBuildTimePrerendering: boolean,\n buildId: string\n): TransformStream {\n // Insert an extra comment at the beginning of the HTML document. This must\n // come after the DOCTYPE, which is inserted by React.\n //\n // The first chunk sent by React will contain the doctype. After that, we can\n // pass through the rest of the chunks as-is.\n let didTransformFirstChunk = false\n return new TransformStream({\n transform(chunk, controller) {\n if (isBuildTimePrerendering && !didTransformFirstChunk) {\n didTransformFirstChunk = true\n const decoder = new TextDecoder('utf-8', { fatal: true })\n const chunkStr = decoder.decode(chunk, {\n stream: true,\n })\n const updatedChunkStr = insertBuildIdComment(chunkStr, buildId)\n controller.enqueue(encoder.encode(updatedChunkStr))\n return\n }\n controller.enqueue(chunk)\n },\n })\n}\n\nexport function renderToInitialFizzStream({\n ReactDOMServer,\n element,\n streamOptions,\n}: {\n ReactDOMServer: {\n renderToReadableStream: typeof import('react-dom/server').renderToReadableStream\n }\n element: React.ReactElement\n streamOptions?: Parameters[1]\n}): Promise {\n return getTracer().trace(AppRenderSpan.renderToReadableStream, async () =>\n ReactDOMServer.renderToReadableStream(element, streamOptions)\n )\n}\n\nfunction createMetadataTransformStream(\n insert: () => Promise | string\n): TransformStream {\n let chunkIndex = -1\n let isMarkRemoved = false\n\n return new TransformStream({\n async transform(chunk, controller) {\n let iconMarkIndex = -1\n let closedHeadIndex = -1\n chunkIndex++\n\n if (isMarkRemoved) {\n controller.enqueue(chunk)\n return\n }\n let iconMarkLength = 0\n // Only search for the closed head tag once\n if (iconMarkIndex === -1) {\n iconMarkIndex = indexOfUint8Array(chunk, ENCODED_TAGS.META.ICON_MARK)\n if (iconMarkIndex === -1) {\n controller.enqueue(chunk)\n return\n } else {\n // When we found the `` or `>`, checking the next char to ensure we cover both cases.\n iconMarkLength = ENCODED_TAGS.META.ICON_MARK.length\n // Check if next char is /, this is for xml mode.\n if (chunk[iconMarkIndex + iconMarkLength] === 47) {\n iconMarkLength += 2\n } else {\n // The last char is `>`\n iconMarkLength++\n }\n }\n }\n\n // Check if icon mark is inside tag in the first chunk.\n if (chunkIndex === 0) {\n closedHeadIndex = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD)\n if (iconMarkIndex !== -1) {\n // The mark icon is located in the 1st chunk before the head tag.\n // We do not need to insert the script tag in this case because it's in the head.\n // Just remove the icon mark from the chunk.\n if (iconMarkIndex < closedHeadIndex) {\n const replaced = new Uint8Array(chunk.length - iconMarkLength)\n\n // Remove the icon mark from the chunk.\n replaced.set(chunk.subarray(0, iconMarkIndex))\n replaced.set(\n chunk.subarray(iconMarkIndex + iconMarkLength),\n iconMarkIndex\n )\n chunk = replaced\n } else {\n // The icon mark is after the head tag, replace and insert the script tag at that position.\n const insertion = await insert()\n const encodedInsertion = encoder.encode(insertion)\n const insertionLength = encodedInsertion.length\n const replaced = new Uint8Array(\n chunk.length - iconMarkLength + insertionLength\n )\n replaced.set(chunk.subarray(0, iconMarkIndex))\n replaced.set(encodedInsertion, iconMarkIndex)\n replaced.set(\n chunk.subarray(iconMarkIndex + iconMarkLength),\n iconMarkIndex + insertionLength\n )\n chunk = replaced\n }\n isMarkRemoved = true\n }\n // If there's no icon mark located, it will be handled later when if present in the following chunks.\n } else {\n // When it's appeared in the following chunks, we'll need to\n // remove the mark and then insert the script tag at that position.\n const insertion = await insert()\n const encodedInsertion = encoder.encode(insertion)\n const insertionLength = encodedInsertion.length\n // Replace the icon mark with the hoist script or empty string.\n const replaced = new Uint8Array(\n chunk.length - iconMarkLength + insertionLength\n )\n // Set the first part of the chunk, before the icon mark.\n replaced.set(chunk.subarray(0, iconMarkIndex))\n // Set the insertion after the icon mark.\n replaced.set(encodedInsertion, iconMarkIndex)\n\n // Set the rest of the chunk after the icon mark.\n replaced.set(\n chunk.subarray(iconMarkIndex + iconMarkLength),\n iconMarkIndex + insertionLength\n )\n chunk = replaced\n isMarkRemoved = true\n }\n controller.enqueue(chunk)\n },\n })\n}\n\nfunction createHeadInsertionTransformStream(\n insert: () => Promise\n): TransformStream {\n let inserted = false\n\n // We need to track if this transform saw any bytes because if it didn't\n // we won't want to insert any server HTML at all\n let hasBytes = false\n\n return new TransformStream({\n async transform(chunk, controller) {\n hasBytes = true\n\n const insertion = await insert()\n if (inserted) {\n if (insertion) {\n const encodedInsertion = encoder.encode(insertion)\n controller.enqueue(encodedInsertion)\n }\n controller.enqueue(chunk)\n } else {\n // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.\n const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.HEAD)\n // In fully static rendering or non PPR rendering cases:\n // `/head>` will always be found in the chunk in first chunk rendering.\n if (index !== -1) {\n if (insertion) {\n const encodedInsertion = encoder.encode(insertion)\n // Get the total count of the bytes in the chunk and the insertion\n // e.g.\n // chunk = \n // insertion = \n // output = [ ] \n const insertedHeadContent = new Uint8Array(\n chunk.length + encodedInsertion.length\n )\n // Append the first part of the chunk, before the head tag\n insertedHeadContent.set(chunk.slice(0, index))\n // Append the server inserted content\n insertedHeadContent.set(encodedInsertion, index)\n // Append the rest of the chunk\n insertedHeadContent.set(\n chunk.slice(index),\n index + encodedInsertion.length\n )\n controller.enqueue(insertedHeadContent)\n } else {\n controller.enqueue(chunk)\n }\n inserted = true\n } else {\n // This will happens in PPR rendering during next start, when the page is partially rendered.\n // When the page resumes, the head tag will be found in the middle of the chunk.\n // Where we just need to append the insertion and chunk to the current stream.\n // e.g.\n // PPR-static: ... [ resume content ] \n // PPR-resume: [ insertion ] [ rest content ]\n if (insertion) {\n controller.enqueue(encoder.encode(insertion))\n }\n controller.enqueue(chunk)\n inserted = true\n }\n }\n },\n async flush(controller) {\n // Check before closing if there's anything remaining to insert.\n if (hasBytes) {\n const insertion = await insert()\n if (insertion) {\n controller.enqueue(encoder.encode(insertion))\n }\n }\n },\n })\n}\n\nfunction createClientResumeScriptInsertionTransformStream(): TransformStream<\n Uint8Array,\n Uint8Array\n> {\n const segmentPath = '/_full'\n const cacheBustingHeader = computeCacheBustingSearchParam(\n '1', // headers[NEXT_ROUTER_PREFETCH_HEADER]\n '/_full', // headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]\n undefined, // headers[NEXT_ROUTER_STATE_TREE_HEADER]\n undefined // headers[NEXT_URL]\n )\n const searchStr = `${NEXT_RSC_UNION_QUERY}=${cacheBustingHeader}`\n const NEXT_CLIENT_RESUME_SCRIPT = ``\n\n let didAlreadyInsert = false\n return new TransformStream({\n transform(chunk, controller) {\n if (didAlreadyInsert) {\n // Already inserted the script into the head. Pass through.\n controller.enqueue(chunk)\n return\n }\n // TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.\n const headClosingTagIndex = indexOfUint8Array(\n chunk,\n ENCODED_TAGS.CLOSED.HEAD\n )\n\n if (headClosingTagIndex === -1) {\n // In fully static rendering or non PPR rendering cases:\n // `/head>` will always be found in the chunk in first chunk rendering.\n controller.enqueue(chunk)\n return\n }\n\n const encodedInsertion = encoder.encode(NEXT_CLIENT_RESUME_SCRIPT)\n // Get the total count of the bytes in the chunk and the insertion\n // e.g.\n // chunk = \n // insertion = \n // output = [ ] \n const insertedHeadContent = new Uint8Array(\n chunk.length + encodedInsertion.length\n )\n // Append the first part of the chunk, before the head tag\n insertedHeadContent.set(chunk.slice(0, headClosingTagIndex))\n // Append the server inserted content\n insertedHeadContent.set(encodedInsertion, headClosingTagIndex)\n // Append the rest of the chunk\n insertedHeadContent.set(\n chunk.slice(headClosingTagIndex),\n headClosingTagIndex + encodedInsertion.length\n )\n\n controller.enqueue(insertedHeadContent)\n didAlreadyInsert = true\n },\n })\n}\n\n// Suffix after main body content - scripts before ,\n// but wait for the major chunks to be enqueued.\nfunction createDeferredSuffixStream(\n suffix: string\n): TransformStream {\n let flushed = false\n let pending: DetachedPromise | undefined\n\n const flush = (controller: TransformStreamDefaultController) => {\n const detached = new DetachedPromise()\n pending = detached\n\n scheduleImmediate(() => {\n try {\n controller.enqueue(encoder.encode(suffix))\n } catch {\n // If an error occurs while enqueuing it can't be due to this\n // transformers fault. It's likely due to the controller being\n // errored due to the stream being cancelled.\n } finally {\n pending = undefined\n detached.resolve()\n }\n })\n }\n\n return new TransformStream({\n transform(chunk, controller) {\n controller.enqueue(chunk)\n\n // If we've already flushed, we're done.\n if (flushed) return\n\n // Schedule the flush to happen.\n flushed = true\n flush(controller)\n },\n flush(controller) {\n if (pending) return pending.promise\n if (flushed) return\n\n // Flush now.\n controller.enqueue(encoder.encode(suffix))\n },\n })\n}\n\nfunction createFlightDataInjectionTransformStream(\n stream: ReadableStream,\n delayDataUntilFirstHtmlChunk: boolean\n): TransformStream {\n let htmlStreamFinished = false\n\n let pull: Promise | null = null\n let donePulling = false\n\n function startOrContinuePulling(\n controller: TransformStreamDefaultController\n ) {\n if (!pull) {\n pull = startPulling(controller)\n }\n return pull\n }\n\n async function startPulling(controller: TransformStreamDefaultController) {\n const reader = stream.getReader()\n\n if (delayDataUntilFirstHtmlChunk) {\n // NOTE: streaming flush\n // We are buffering here for the inlined data stream because the\n // \"shell\" stream might be chunkenized again by the underlying stream\n // implementation, e.g. with a specific high-water mark. To ensure it's\n // the safe timing to pipe the data stream, this extra tick is\n // necessary.\n\n // We don't start reading until we've left the current Task to ensure\n // that it's inserted after flushing the shell. Note that this implementation\n // might get stale if impl details of Fizz change in the future.\n await atLeastOneTask()\n }\n\n try {\n while (true) {\n const { done, value } = await reader.read()\n if (done) {\n donePulling = true\n return\n }\n\n // We want to prioritize HTML over RSC data.\n // The SSR render is based on the same RSC stream, so when we get a new RSC chunk,\n // we're likely to produce an HTML chunk as well, so give it a chance to flush first.\n if (!delayDataUntilFirstHtmlChunk && !htmlStreamFinished) {\n await atLeastOneTask()\n }\n controller.enqueue(value)\n }\n } catch (err) {\n controller.error(err)\n }\n }\n\n return new TransformStream({\n start(controller) {\n if (!delayDataUntilFirstHtmlChunk) {\n startOrContinuePulling(controller)\n }\n },\n transform(chunk, controller) {\n controller.enqueue(chunk)\n\n // Start the streaming if it hasn't already been started yet.\n if (delayDataUntilFirstHtmlChunk) {\n startOrContinuePulling(controller)\n }\n },\n flush(controller) {\n htmlStreamFinished = true\n if (donePulling) {\n return\n }\n return startOrContinuePulling(controller)\n },\n })\n}\n\nconst CLOSE_TAG = ''\n\n/**\n * This transform stream moves the suffix to the end of the stream, so results\n * like `` will be transformed to\n * ``.\n */\nfunction createMoveSuffixStream(): TransformStream {\n let foundSuffix = false\n\n return new TransformStream({\n transform(chunk, controller) {\n if (foundSuffix) {\n return controller.enqueue(chunk)\n }\n\n const index = indexOfUint8Array(chunk, ENCODED_TAGS.CLOSED.BODY_AND_HTML)\n if (index > -1) {\n foundSuffix = true\n\n // If the whole chunk is the suffix, then don't write anything, it will\n // be written in the flush.\n if (chunk.length === ENCODED_TAGS.CLOSED.BODY_AND_HTML.length) {\n return\n }\n\n // Write out the part before the suffix.\n const before = chunk.slice(0, index)\n controller.enqueue(before)\n\n // In the case where the suffix is in the middle of the chunk, we need\n // to split the chunk into two parts.\n if (chunk.length > ENCODED_TAGS.CLOSED.BODY_AND_HTML.length + index) {\n // Write out the part after the suffix.\n const after = chunk.slice(\n index + ENCODED_TAGS.CLOSED.BODY_AND_HTML.length\n )\n controller.enqueue(after)\n }\n } else {\n controller.enqueue(chunk)\n }\n },\n flush(controller) {\n // Even if we didn't find the suffix, the HTML is not valid if we don't\n // add it, so insert it at the end.\n controller.enqueue(ENCODED_TAGS.CLOSED.BODY_AND_HTML)\n },\n })\n}\n\nfunction createStripDocumentClosingTagsTransform(): TransformStream<\n Uint8Array,\n Uint8Array\n> {\n return new TransformStream({\n transform(chunk, controller) {\n // We rely on the assumption that chunks will never break across a code unit.\n // This is reasonable because we currently concat all of React's output from a single\n // flush into one chunk before streaming it forward which means the chunk will represent\n // a single coherent utf-8 string. This is not safe to use if we change our streaming to no\n // longer do this large buffered chunk\n if (\n isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.BODY_AND_HTML) ||\n isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.BODY) ||\n isEquivalentUint8Arrays(chunk, ENCODED_TAGS.CLOSED.HTML)\n ) {\n // the entire chunk is the closing tags; return without enqueueing anything.\n return\n }\n\n // We assume these tags will go at together at the end of the document and that\n // they won't appear anywhere else in the document. This is not really a safe assumption\n // but until we revamp our streaming infra this is a performant way to string the tags\n chunk = removeFromUint8Array(chunk, ENCODED_TAGS.CLOSED.BODY)\n chunk = removeFromUint8Array(chunk, ENCODED_TAGS.CLOSED.HTML)\n\n controller.enqueue(chunk)\n },\n })\n}\n\n/*\n * Checks if the root layout is missing the html or body tags\n * and if so, it will inject a script tag to throw an error in the browser, showing the user\n * the error message in the error overlay.\n */\nexport function createRootLayoutValidatorStream(): TransformStream<\n Uint8Array,\n Uint8Array\n> {\n let foundHtml = false\n let foundBody = false\n return new TransformStream({\n async transform(chunk, controller) {\n // Peek into the streamed chunk to see if the tags are present.\n if (\n !foundHtml &&\n indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.HTML) > -1\n ) {\n foundHtml = true\n }\n\n if (\n !foundBody &&\n indexOfUint8Array(chunk, ENCODED_TAGS.OPENING.BODY) > -1\n ) {\n foundBody = true\n }\n\n controller.enqueue(chunk)\n },\n flush(controller) {\n const missingTags: ('html' | 'body')[] = []\n if (!foundHtml) missingTags.push('html')\n if (!foundBody) missingTags.push('body')\n\n if (!missingTags.length) return\n\n controller.enqueue(\n encoder.encode(\n `\n `<${c}>`)\n .join(\n missingTags.length > 1 ? ' and ' : ''\n )} tags in the root layout.\\nRead more at https://nextjs.org/docs/messages/missing-root-layout-tags\"\n data-next-error-digest=\"${MISSING_ROOT_TAGS_ERROR}\"\n data-next-error-stack=\"\"\n >\n `\n )\n )\n },\n })\n}\n\nfunction chainTransformers(\n readable: ReadableStream,\n transformers: ReadonlyArray | null>\n): ReadableStream {\n let stream = readable\n for (const transformer of transformers) {\n if (!transformer) continue\n\n stream = stream.pipeThrough(transformer)\n }\n return stream\n}\n\nexport type ContinueStreamOptions = {\n inlinedDataStream: ReadableStream | undefined\n isStaticGeneration: boolean\n isBuildTimePrerendering: boolean\n buildId: string\n getServerInsertedHTML: () => Promise\n getServerInsertedMetadata: () => Promise\n validateRootLayout?: boolean\n /**\n * Suffix to inject after the buffered data, but before the close tags.\n */\n suffix?: string | undefined\n}\n\nexport async function continueFizzStream(\n renderStream: ReactDOMServerReadableStream,\n {\n suffix,\n inlinedDataStream,\n isStaticGeneration,\n isBuildTimePrerendering,\n buildId,\n getServerInsertedHTML,\n getServerInsertedMetadata,\n validateRootLayout,\n }: ContinueStreamOptions\n): Promise> {\n // Suffix itself might contain close tags at the end, so we need to split it.\n const suffixUnclosed = suffix ? suffix.split(CLOSE_TAG, 1)[0] : null\n\n if (isStaticGeneration) {\n // If we're generating static HTML we need to wait for it to resolve before continuing.\n await renderStream.allReady\n } else {\n // Otherwise, we want to make sure Fizz is done with all microtasky work\n // before we start pulling the stream and cause a flush.\n await waitAtLeastOneReactRenderTask()\n }\n\n return chainTransformers(renderStream, [\n // Buffer everything to avoid flushing too frequently\n createBufferedTransformStream(),\n\n // Add build id comment to start of the HTML document (in export mode)\n createPrefetchCommentStream(isBuildTimePrerendering, buildId),\n\n // Transform metadata\n createMetadataTransformStream(getServerInsertedMetadata),\n\n // Insert suffix content\n suffixUnclosed != null && suffixUnclosed.length > 0\n ? createDeferredSuffixStream(suffixUnclosed)\n : null,\n\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n inlinedDataStream\n ? createFlightDataInjectionTransformStream(inlinedDataStream, true)\n : null,\n\n // Validate the root layout for missing html or body tags\n validateRootLayout ? createRootLayoutValidatorStream() : null,\n\n // Close tags should always be deferred to the end\n createMoveSuffixStream(),\n\n // Special head insertions\n // TODO-APP: Insert server side html to end of head in app layout rendering, to avoid\n // hydration errors. Remove this once it's ready to be handled by react itself.\n createHeadInsertionTransformStream(getServerInsertedHTML),\n ])\n}\n\ntype ContinueDynamicPrerenderOptions = {\n getServerInsertedHTML: () => Promise\n getServerInsertedMetadata: () => Promise\n}\n\nexport async function continueDynamicPrerender(\n prerenderStream: ReadableStream,\n {\n getServerInsertedHTML,\n getServerInsertedMetadata,\n }: ContinueDynamicPrerenderOptions\n) {\n return (\n prerenderStream\n // Buffer everything to avoid flushing too frequently\n .pipeThrough(createBufferedTransformStream())\n .pipeThrough(createStripDocumentClosingTagsTransform())\n // Insert generated tags to head\n .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))\n // Transform metadata\n .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))\n )\n}\n\ntype ContinueStaticPrerenderOptions = {\n inlinedDataStream: ReadableStream\n getServerInsertedHTML: () => Promise\n getServerInsertedMetadata: () => Promise\n isBuildTimePrerendering: boolean\n buildId: string\n}\n\nexport async function continueStaticPrerender(\n prerenderStream: ReadableStream,\n {\n inlinedDataStream,\n getServerInsertedHTML,\n getServerInsertedMetadata,\n isBuildTimePrerendering,\n buildId,\n }: ContinueStaticPrerenderOptions\n) {\n return (\n prerenderStream\n // Buffer everything to avoid flushing too frequently\n .pipeThrough(createBufferedTransformStream())\n // Add build id comment to start of the HTML document (in export mode)\n .pipeThrough(\n createPrefetchCommentStream(isBuildTimePrerendering, buildId)\n )\n // Insert generated tags to head\n .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))\n // Transform metadata\n .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n .pipeThrough(\n createFlightDataInjectionTransformStream(inlinedDataStream, true)\n )\n // Close tags should always be deferred to the end\n .pipeThrough(createMoveSuffixStream())\n )\n}\n\nexport async function continueStaticFallbackPrerender(\n prerenderStream: ReadableStream,\n {\n inlinedDataStream,\n getServerInsertedHTML,\n getServerInsertedMetadata,\n isBuildTimePrerendering,\n buildId,\n }: ContinueStaticPrerenderOptions\n) {\n // Same as `continueStaticPrerender`, but also inserts an additional script\n // to instruct the client to start fetching the hydration data as early\n // as possible.\n return (\n prerenderStream\n // Buffer everything to avoid flushing too frequently\n .pipeThrough(createBufferedTransformStream())\n // Add build id comment to start of the HTML document (in export mode)\n .pipeThrough(\n createPrefetchCommentStream(isBuildTimePrerendering, buildId)\n )\n // Insert generated tags to head\n .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))\n // Insert the client resume script into the head\n .pipeThrough(createClientResumeScriptInsertionTransformStream())\n // Transform metadata\n .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n .pipeThrough(\n createFlightDataInjectionTransformStream(inlinedDataStream, true)\n )\n // Close tags should always be deferred to the end\n .pipeThrough(createMoveSuffixStream())\n )\n}\n\ntype ContinueResumeOptions = {\n inlinedDataStream: ReadableStream\n getServerInsertedHTML: () => Promise\n getServerInsertedMetadata: () => Promise\n delayDataUntilFirstHtmlChunk: boolean\n}\n\nexport async function continueDynamicHTMLResume(\n renderStream: ReadableStream,\n {\n delayDataUntilFirstHtmlChunk,\n inlinedDataStream,\n getServerInsertedHTML,\n getServerInsertedMetadata,\n }: ContinueResumeOptions\n) {\n return (\n renderStream\n // Buffer everything to avoid flushing too frequently\n .pipeThrough(createBufferedTransformStream())\n // Insert generated tags to head\n .pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))\n // Transform metadata\n .pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))\n // Insert the inlined data (Flight data, form state, etc.) stream into the HTML\n .pipeThrough(\n createFlightDataInjectionTransformStream(\n inlinedDataStream,\n delayDataUntilFirstHtmlChunk\n )\n )\n // Close tags should always be deferred to the end\n .pipeThrough(createMoveSuffixStream())\n )\n}\n\nexport function createDocumentClosingStream(): ReadableStream {\n return streamFromString(CLOSE_TAG)\n}\n"],"names":["getTracer","AppRenderSpan","DetachedPromise","scheduleImmediate","atLeastOneTask","waitAtLeastOneReactRenderTask","ENCODED_TAGS","indexOfUint8Array","isEquivalentUint8Arrays","removeFromUint8Array","MISSING_ROOT_TAGS_ERROR","insertBuildIdComment","RSC_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_RSC_UNION_QUERY","computeCacheBustingSearchParam","voidCatch","encoder","TextEncoder","chainStreams","streams","length","ReadableStream","start","controller","close","readable","writable","TransformStream","promise","pipeTo","preventClose","i","nextStream","then","lastStream","catch","streamFromString","str","enqueue","encode","streamFromBuffer","chunk","streamToChunks","stream","reader","getReader","chunks","done","value","read","push","concatUint8Arrays","totalLength","reduce","sum","result","Uint8Array","offset","set","streamToUint8Array","streamToBuffer","Buffer","concat","streamToString","signal","decoder","TextDecoder","fatal","string","aborted","decode","createBufferedTransformStream","options","maxBufferByteLength","Infinity","bufferedChunks","bufferByteLength","pending","flush","copiedBytes","bufferedChunk","byteLength","scheduleFlush","detached","undefined","resolve","transform","createPrefetchCommentStream","isBuildTimePrerendering","buildId","didTransformFirstChunk","chunkStr","updatedChunkStr","renderToInitialFizzStream","ReactDOMServer","element","streamOptions","trace","renderToReadableStream","createMetadataTransformStream","insert","chunkIndex","isMarkRemoved","iconMarkIndex","closedHeadIndex","iconMarkLength","META","ICON_MARK","CLOSED","HEAD","replaced","subarray","insertion","encodedInsertion","insertionLength","createHeadInsertionTransformStream","inserted","hasBytes","index","insertedHeadContent","slice","createClientResumeScriptInsertionTransformStream","segmentPath","cacheBustingHeader","searchStr","NEXT_CLIENT_RESUME_SCRIPT","didAlreadyInsert","headClosingTagIndex","createDeferredSuffixStream","suffix","flushed","createFlightDataInjectionTransformStream","delayDataUntilFirstHtmlChunk","htmlStreamFinished","pull","donePulling","startOrContinuePulling","startPulling","err","error","CLOSE_TAG","createMoveSuffixStream","foundSuffix","BODY_AND_HTML","before","after","createStripDocumentClosingTagsTransform","BODY","HTML","createRootLayoutValidatorStream","foundHtml","foundBody","OPENING","missingTags","map","c","join","chainTransformers","transformers","transformer","pipeThrough","continueFizzStream","renderStream","inlinedDataStream","isStaticGeneration","getServerInsertedHTML","getServerInsertedMetadata","validateRootLayout","suffixUnclosed","split","allReady","continueDynamicPrerender","prerenderStream","continueStaticPrerender","continueStaticFallbackPrerender","continueDynamicHTMLResume","createDocumentClosingStream"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 16568, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment-cache/segment-value-encoding.ts"],"sourcesContent":["import { PAGE_SEGMENT_KEY } from '../segment'\nimport type { Segment as FlightRouterStateSegment } from '../app-router-types'\n\n// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque = T & { __brand: K }\n\nexport type SegmentRequestKeyPart = Opaque<'SegmentRequestKeyPart', string>\nexport type SegmentRequestKey = Opaque<'SegmentRequestKey', string>\n\nexport const ROOT_SEGMENT_REQUEST_KEY = '' as SegmentRequestKey\n\nexport const HEAD_REQUEST_KEY = '/_head' as SegmentRequestKey\n\nexport function createSegmentRequestKeyPart(\n segment: FlightRouterStateSegment\n): SegmentRequestKeyPart {\n if (typeof segment === 'string') {\n if (segment.startsWith(PAGE_SEGMENT_KEY)) {\n // The Flight Router State type sometimes includes the search params in\n // the page segment. However, the Segment Cache tracks this as a separate\n // key. So, we strip the search params here, and then add them back when\n // the cache entry is turned back into a FlightRouterState. This is an\n // unfortunate consequence of the FlightRouteState being used both as a\n // transport type and as a cache key; we'll address this once more of the\n // Segment Cache implementation has settled.\n // TODO: We should hoist the search params out of the FlightRouterState\n // type entirely, This is our plan for dynamic route params, too.\n return PAGE_SEGMENT_KEY as SegmentRequestKeyPart\n }\n const safeName =\n // TODO: FlightRouterState encodes Not Found routes as \"/_not-found\".\n // But params typically don't include the leading slash. We should use\n // a different encoding to avoid this special case.\n segment === '/_not-found'\n ? '_not-found'\n : encodeToFilesystemAndURLSafeString(segment)\n // Since this is not a dynamic segment, it's fully encoded. It does not\n // need to be \"hydrated\" with a param value.\n return safeName as SegmentRequestKeyPart\n }\n\n const name = segment[0]\n const paramType = segment[2]\n const safeName = encodeToFilesystemAndURLSafeString(name)\n\n const encodedName = '$' + paramType + '$' + safeName\n return encodedName as SegmentRequestKeyPart\n}\n\nexport function appendSegmentRequestKeyPart(\n parentRequestKey: SegmentRequestKey,\n parallelRouteKey: string,\n childRequestKeyPart: SegmentRequestKeyPart\n): SegmentRequestKey {\n // Aside from being filesystem safe, segment keys are also designed so that\n // each segment and parallel route creates its own subdirectory. Roughly in\n // the same shape as the source app directory. This is mostly just for easier\n // debugging (you can open up the build folder and navigate the output); if\n // we wanted to do we could just use a flat structure.\n\n // Omit the parallel route key for children, since this is the most\n // common case. Saves some bytes (and it's what the app directory does).\n const slotKey =\n parallelRouteKey === 'children'\n ? childRequestKeyPart\n : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`\n return (parentRequestKey + '/' + slotKey) as SegmentRequestKey\n}\n\n// Define a regex pattern to match the most common characters found in a route\n// param. It excludes anything that might not be cross-platform filesystem\n// compatible, like |. It does not need to be precise because the fallback is to\n// just base64url-encode the whole parameter, which is fine; we just don't do it\n// by default for compactness, and for easier debugging.\nconst simpleParamValueRegex = /^[a-zA-Z0-9\\-_@]+$/\n\nfunction encodeToFilesystemAndURLSafeString(value: string) {\n if (simpleParamValueRegex.test(value)) {\n return value\n }\n // If there are any unsafe characters, base64url-encode the entire value.\n // We also add a ! prefix so it doesn't collide with the simple case.\n const base64url = btoa(value)\n .replace(/\\+/g, '-') // Replace '+' with '-'\n .replace(/\\//g, '_') // Replace '/' with '_'\n .replace(/=+$/, '') // Remove trailing '='\n return '!' + base64url\n}\n\nexport function convertSegmentPathToStaticExportFilename(\n segmentPath: string\n): string {\n return `__next${segmentPath.replace(/\\//g, '.')}.txt`\n}\n"],"names":["PAGE_SEGMENT_KEY","ROOT_SEGMENT_REQUEST_KEY","HEAD_REQUEST_KEY","createSegmentRequestKeyPart","segment","startsWith","safeName","encodeToFilesystemAndURLSafeString","name","paramType","encodedName","appendSegmentRequestKeyPart","parentRequestKey","parallelRouteKey","childRequestKeyPart","slotKey","simpleParamValueRegex","value","test","base64url","btoa","replace","convertSegmentPathToStaticExportFilename","segmentPath"],"mappings":";;;;;;;;;;;;AAAA,SAASA,gBAAgB,QAAQ,aAAY;;AAStC,MAAMC,2BAA2B,GAAuB;AAExD,MAAMC,mBAAmB,SAA6B;AAEtD,SAASC,4BACdC,OAAiC;IAEjC,IAAI,OAAOA,YAAY,UAAU;QAC/B,IAAIA,QAAQC,UAAU,CAACL,mLAAAA,GAAmB;YACxC,uEAAuE;YACvE,yEAAyE;YACzE,wEAAwE;YACxE,sEAAsE;YACtE,uEAAuE;YACvE,yEAAyE;YACzE,4CAA4C;YAC5C,uEAAuE;YACvE,iEAAiE;YACjE,OAAOA,mLAAAA;QACT;QACA,MAAMM,WACJ,AACA,qEADqE,CACC;QACtE,mDAAmD;QACnDF,YAAY,gBACR,eACAG,mCAAmCH;QACzC,uEAAuE;QACvE,4CAA4C;QAC5C,OAAOE;IACT;IAEA,MAAME,OAAOJ,OAAO,CAAC,EAAE;IACvB,MAAMK,YAAYL,OAAO,CAAC,EAAE;IAC5B,MAAME,WAAWC,mCAAmCC;IAEpD,MAAME,cAAc,MAAMD,YAAY,MAAMH;IAC5C,OAAOI;AACT;AAEO,SAASC,4BACdC,gBAAmC,EACnCC,gBAAwB,EACxBC,mBAA0C;IAE1C,2EAA2E;IAC3E,2EAA2E;IAC3E,6EAA6E;IAC7E,2EAA2E;IAC3E,sDAAsD;IAEtD,mEAAmE;IACnE,wEAAwE;IACxE,MAAMC,UACJF,qBAAqB,aACjBC,sBACA,CAAC,CAAC,EAAEP,mCAAmCM,kBAAkB,CAAC,EAAEC,qBAAqB;IACvF,OAAQF,mBAAmB,MAAMG;AACnC;AAEA,8EAA8E;AAC9E,0EAA0E;AAC1E,gFAAgF;AAChF,gFAAgF;AAChF,wDAAwD;AACxD,MAAMC,wBAAwB;AAE9B,SAAST,mCAAmCU,KAAa;IACvD,IAAID,sBAAsBE,IAAI,CAACD,QAAQ;QACrC,OAAOA;IACT;IACA,yEAAyE;IACzE,qEAAqE;IACrE,MAAME,YAAYC,KAAKH,OACpBI,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,IAAI,sBAAsB;;IAC5C,OAAO,MAAMF;AACf;AAEO,SAASG,yCACdC,WAAmB;IAEnB,OAAO,CAAC,MAAM,EAAEA,YAAYF,OAAO,CAAC,OAAO,KAAK,IAAI,CAAC;AACvD","ignoreList":[0]}}, - {"offset": {"line": 16646, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/string-hash/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={328:e=>{function hash(e){var r=5381,_=e.length;while(_){r=r*33^e.charCodeAt(--_)}return r>>>0}e.exports=hash}};var r={};function __nccwpck_require__(_){var a=r[_];if(a!==undefined){return a.exports}var t=r[_]={exports:{}};var i=true;try{e[_](t,t.exports,__nccwpck_require__);i=false}finally{if(i)delete r[_]}return t.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var _=__nccwpck_require__(328);module.exports=_})();"],"names":[],"mappings":"AAAA,CAAC;IAAK;IAAa,IAAI,IAAE;QAAC,KAAI,CAAA;YAAI,SAAS,KAAK,CAAC;gBAAE,IAAI,IAAE,MAAK,IAAE,EAAE,MAAM;gBAAC,MAAM,EAAE;oBAAC,IAAE,IAAE,KAAG,EAAE,UAAU,CAAC,EAAE;gBAAE;gBAAC,OAAO,MAAI;YAAC;YAAC,EAAE,OAAO,GAAC;QAAI;IAAC;IAAE,IAAI,IAAE,CAAC;IAAE,SAAS,oBAAoB,CAAC;QAAE,IAAI,IAAE,CAAC,CAAC,EAAE;QAAC,IAAG,MAAI,WAAU;YAAC,OAAO,EAAE,OAAO;QAAA;QAAC,IAAI,IAAE,CAAC,CAAC,EAAE,GAAC;YAAC,SAAQ,CAAC;QAAC;QAAE,IAAI,IAAE;QAAK,IAAG;YAAC,CAAC,CAAC,EAAE,CAAC,GAAE,EAAE,OAAO,EAAC;YAAqB,IAAE;QAAK,SAAQ;YAAC,IAAG,GAAE,OAAO,CAAC,CAAC,EAAE;QAAA;QAAC,OAAO,EAAE,OAAO;IAAA;IAAC,IAAG,OAAO,wBAAsB,aAAY,oBAAoB,EAAE,GAAC,wFAAU;IAAI,IAAI,IAAE,oBAAoB;IAAK,OAAO,OAAO,GAAC;AAAC,CAAC","ignoreList":[0]}}, - {"offset": {"line": 16686, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/format-server-error.ts"],"sourcesContent":["const invalidServerComponentReactHooks = [\n 'useDeferredValue',\n 'useEffect',\n 'useImperativeHandle',\n 'useInsertionEffect',\n 'useLayoutEffect',\n 'useReducer',\n 'useRef',\n 'useState',\n 'useSyncExternalStore',\n 'useTransition',\n 'experimental_useOptimistic',\n 'useOptimistic',\n]\n\nfunction setMessage(error: Error, message: string): void {\n error.message = message\n if (error.stack) {\n const lines = error.stack.split('\\n')\n lines[0] = message\n error.stack = lines.join('\\n')\n }\n}\n\n/**\n * Input:\n * Error: Something went wrong\n at funcName (/path/to/file.js:10:5)\n at anotherFunc (/path/to/file.js:15:10)\n \n * Output:\n at funcName (/path/to/file.js:10:5)\n at anotherFunc (/path/to/file.js:15:10) \n */\nexport function getStackWithoutErrorMessage(error: Error): string {\n const stack = error.stack\n if (!stack) return ''\n return stack.replace(/^[^\\n]*\\n/, '')\n}\n\nexport function formatServerError(error: Error): void {\n if (typeof error?.message !== 'string') return\n\n if (\n error.message.includes(\n 'Class extends value undefined is not a constructor or null'\n )\n ) {\n const addedMessage =\n 'This might be caused by a React Class Component being rendered in a Server Component, React Class Components only works in Client Components. Read more: https://nextjs.org/docs/messages/class-component-in-server-component'\n\n // If this error instance already has the message, don't add it again\n if (error.message.includes(addedMessage)) return\n\n setMessage(\n error,\n `${error.message}\n\n${addedMessage}`\n )\n return\n }\n\n if (error.message.includes('createContext is not a function')) {\n setMessage(\n error,\n 'createContext only works in Client Components. Add the \"use client\" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/context-in-server-component'\n )\n return\n }\n\n for (const clientHook of invalidServerComponentReactHooks) {\n const regex = new RegExp(`\\\\b${clientHook}\\\\b.*is not a function`)\n if (regex.test(error.message)) {\n setMessage(\n error,\n `${clientHook} only works in Client Components. Add the \"use client\" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/react-client-hook-in-server-component`\n )\n return\n }\n }\n}\n"],"names":["invalidServerComponentReactHooks","setMessage","error","message","stack","lines","split","join","getStackWithoutErrorMessage","replace","formatServerError","includes","addedMessage","clientHook","regex","RegExp","test"],"mappings":";;;;;;AAAA,MAAMA,mCAAmC;IACvC;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;CACD;AAED,SAASC,WAAWC,KAAY,EAAEC,OAAe;IAC/CD,MAAMC,OAAO,GAAGA;IAChB,IAAID,MAAME,KAAK,EAAE;QACf,MAAMC,QAAQH,MAAME,KAAK,CAACE,KAAK,CAAC;QAChCD,KAAK,CAAC,EAAE,GAAGF;QACXD,MAAME,KAAK,GAAGC,MAAME,IAAI,CAAC;IAC3B;AACF;AAYO,SAASC,4BAA4BN,KAAY;IACtD,MAAME,QAAQF,MAAME,KAAK;IACzB,IAAI,CAACA,OAAO,OAAO;IACnB,OAAOA,MAAMK,OAAO,CAAC,aAAa;AACpC;AAEO,SAASC,kBAAkBR,KAAY;IAC5C,IAAI,OAAA,CAAOA,SAAAA,OAAAA,KAAAA,IAAAA,MAAOC,OAAO,MAAK,UAAU;IAExC,IACED,MAAMC,OAAO,CAACQ,QAAQ,CACpB,+DAEF;QACA,MAAMC,eACJ;QAEF,qEAAqE;QACrE,IAAIV,MAAMC,OAAO,CAACQ,QAAQ,CAACC,eAAe;QAE1CX,WACEC,OACA,GAAGA,MAAMC,OAAO,CAAC;;AAEvB,EAAES,cAAc;QAEZ;IACF;IAEA,IAAIV,MAAMC,OAAO,CAACQ,QAAQ,CAAC,oCAAoC;QAC7DV,WACEC,OACA;QAEF;IACF;IAEA,KAAK,MAAMW,cAAcb,iCAAkC;QACzD,MAAMc,QAAQ,IAAIC,OAAO,CAAC,GAAG,EAAEF,WAAW,sBAAsB,CAAC;QACjE,IAAIC,MAAME,IAAI,CAACd,MAAMC,OAAO,GAAG;YAC7BF,WACEC,OACA,GAAGW,WAAW,oLAAoL,CAAC;YAErM;QACF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 16746, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request-meta.ts"],"sourcesContent":["import type { IncomingMessage } from 'http'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { UrlWithParsedQuery } from 'url'\nimport type { BaseNextRequest } from './base-http'\nimport type { CloneableBody } from './body-streams'\nimport type { RouteMatch } from './route-matches/route-match'\nimport type { NEXT_RSC_UNION_QUERY } from '../client/components/app-router-headers'\nimport type {\n ResponseCacheEntry,\n ServerComponentsHmrCache,\n} from './response-cache'\nimport type { PagesDevOverlayBridgeType } from '../next-devtools/userspace/pages/pages-dev-overlay-setup'\nimport type { OpaqueFallbackRouteParams } from './request/fallback-params'\nimport type { IncrementalCache } from './lib/incremental-cache'\n\n// FIXME: (wyattjoh) this is a temporary solution to allow us to pass data between bundled modules\nexport const NEXT_REQUEST_META = Symbol.for('NextInternalRequestMeta')\n\nexport type NextIncomingMessage = (BaseNextRequest | IncomingMessage) & {\n [NEXT_REQUEST_META]?: RequestMeta\n}\n\n/**\n * The callback function to call when a response cache entry was generated or\n * looked up in the cache. When it returns true, the server assumes that the\n * handler has already responded to the request and will not do so itself.\n */\nexport type OnCacheEntryHandler = (\n /**\n * The response cache entry that was generated or looked up in the cache.\n */\n cacheEntry: ResponseCacheEntry,\n\n /**\n * The request metadata.\n */\n requestMeta: {\n /**\n * The URL that was used to make the request.\n */\n url: string | undefined\n }\n) => Promise | boolean | void\n\nexport interface RequestMeta {\n /**\n * The query that was used to make the request.\n */\n initQuery?: ParsedUrlQuery\n\n /**\n * The URL that was used to make the request.\n */\n initURL?: string\n\n /**\n * The protocol that was used to make the request.\n */\n initProtocol?: string\n\n /**\n * The body that was read from the request. This is used to allow the body to\n * be read multiple times.\n */\n clonableBody?: CloneableBody\n\n /**\n * True when the request matched a locale domain that was configured in the\n * next.config.js file.\n */\n isLocaleDomain?: boolean\n\n /**\n * True when the request had locale information stripped from the pathname\n * part of the URL.\n */\n didStripLocale?: boolean\n\n /**\n * If the request had it's URL rewritten, this is the URL it was rewritten to.\n */\n rewroteURL?: string\n\n /**\n * The cookies that were added by middleware and were added to the response.\n */\n middlewareCookie?: string[]\n\n /**\n * The match on the request for a given route.\n */\n match?: RouteMatch\n\n /**\n * The incremental cache to use for the request.\n */\n incrementalCache?: IncrementalCache\n\n /**\n * The server components HMR cache, only for dev.\n */\n serverComponentsHmrCache?: ServerComponentsHmrCache\n\n /**\n * Equals the segment path that was used for the prefetch RSC request.\n */\n segmentPrefetchRSCRequest?: string\n\n /**\n * True when the request is for the prefetch flight data.\n */\n isPrefetchRSCRequest?: true\n\n /**\n * True when the request is for the flight data.\n */\n isRSCRequest?: true\n\n /**\n * A search param set by the Next.js client when performing RSC requests.\n * Because some CDNs do not vary their cache entries on our custom headers,\n * this search param represents a hash of the header values. For any cached\n * RSC request, we should verify that the hash matches before responding.\n * Otherwise this can lead to cache poisoning.\n * TODO: Consider not using custom request headers at all, and instead encode\n * everything into the search param.\n */\n cacheBustingSearchParam?: string\n\n /**\n * True when the request is for the `/_next/data` route using the pages\n * router.\n */\n isNextDataReq?: true\n\n /**\n * Postponed state to use for resumption. If present it's assumed that the\n * request is for a page that has postponed (there are no guarantees that the\n * page actually has postponed though as it would incur an additional cache\n * lookup).\n */\n postponed?: string\n\n /**\n * If provided, this will be called when a response cache entry was generated\n * or looked up in the cache.\n *\n * @deprecated Use `onCacheEntryV2` instead.\n */\n onCacheEntry?: OnCacheEntryHandler\n\n /**\n * If provided, this will be called when a response cache entry was generated\n * or looked up in the cache.\n */\n onCacheEntryV2?: OnCacheEntryHandler\n\n /**\n * The previous revalidate before rendering 404 page for notFound: true\n */\n notFoundRevalidate?: number | false\n\n /**\n * In development, the original source page that returned a 404.\n */\n developmentNotFoundSourcePage?: string\n\n /**\n * The path we routed to and should be invoked\n */\n invokePath?: string\n\n /**\n * The specific page output we should be matching\n */\n invokeOutput?: string\n\n /**\n * The status we are invoking the request with from routing\n */\n invokeStatus?: number\n\n /**\n * The routing error we are invoking with\n */\n invokeError?: Error\n\n /**\n * The query parsed for the invocation\n */\n invokeQuery?: Record\n\n /**\n * Whether the request is a middleware invocation\n */\n middlewareInvoke?: boolean\n\n /**\n * Whether the request should render the fallback shell or not.\n */\n renderFallbackShell?: boolean\n\n /**\n * Whether the request is for the custom error page.\n */\n customErrorRender?: true\n\n /**\n * Whether to bubble up the NoFallbackError to the caller when a 404 is\n * returned.\n */\n bubbleNoFallback?: true\n\n /**\n * True when the request had locale information inferred from the default\n * locale.\n */\n localeInferredFromDefault?: true\n\n /**\n * The locale that was inferred or explicitly set for the request.\n */\n locale?: string\n\n /**\n * The default locale that was inferred or explicitly set for the request.\n */\n defaultLocale?: string\n\n /**\n * The relative project dir the server is running in from project root\n */\n relativeProjectDir?: string\n\n /**\n * The dist directory the server is currently using\n */\n distDir?: string\n\n /**\n * The query after resolving routes\n */\n query?: ParsedUrlQuery\n\n /**\n * The params after resolving routes\n */\n params?: ParsedUrlQuery\n\n /**\n * ErrorOverlay component to use in development for pages router\n */\n PagesErrorDebug?: PagesDevOverlayBridgeType\n\n /**\n * Whether server is in minimal mode (this will be replaced with more\n * specific flags in future)\n */\n minimalMode?: boolean\n\n /**\n * DEV only: The fallback params that should be used when validating prerenders during dev\n */\n devFallbackParams?: OpaqueFallbackRouteParams\n\n /**\n * DEV only: Request timings in process.hrtime.bigint()\n */\n devRequestTimingStart?: bigint\n devRequestTimingMiddlewareStart?: bigint\n devRequestTimingMiddlewareEnd?: bigint\n devRequestTimingInternalsEnd?: bigint\n\n /**\n * DEV only: The duration of getStaticPaths/generateStaticParams in process.hrtime.bigint()\n */\n devGenerateStaticParamsDuration?: bigint\n}\n\n/**\n * Gets the request metadata. If no key is provided, the entire metadata object\n * is returned.\n *\n * @param req the request to get the metadata from\n * @param key the key to get from the metadata (optional)\n * @returns the value for the key or the entire metadata object\n */\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key?: undefined\n): RequestMeta\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key: K\n): RequestMeta[K]\nexport function getRequestMeta(\n req: NextIncomingMessage,\n key?: K\n): RequestMeta | RequestMeta[K] {\n const meta = req[NEXT_REQUEST_META] || {}\n return typeof key === 'string' ? meta[key] : meta\n}\n\n/**\n * Sets the request metadata.\n *\n * @param req the request to set the metadata on\n * @param meta the metadata to set\n * @returns the mutated request metadata\n */\nexport function setRequestMeta(req: NextIncomingMessage, meta: RequestMeta) {\n req[NEXT_REQUEST_META] = meta\n return meta\n}\n\n/**\n * Adds a value to the request metadata.\n *\n * @param request the request to mutate\n * @param key the key to set\n * @param value the value to set\n * @returns the mutated request metadata\n */\nexport function addRequestMeta(\n request: NextIncomingMessage,\n key: K,\n value: RequestMeta[K]\n) {\n const meta = getRequestMeta(request)\n meta[key] = value\n return setRequestMeta(request, meta)\n}\n\n/**\n * Removes a key from the request metadata.\n *\n * @param request the request to mutate\n * @param key the key to remove\n * @returns the mutated request metadata\n */\nexport function removeRequestMeta(\n request: NextIncomingMessage,\n key: K\n) {\n const meta = getRequestMeta(request)\n delete meta[key]\n return setRequestMeta(request, meta)\n}\n\ntype NextQueryMetadata = {\n /**\n * The `_rsc` query parameter used for cache busting to ensure that the RSC\n * requests do not get cached by the browser explicitly.\n */\n [NEXT_RSC_UNION_QUERY]?: string\n}\n\nexport type NextParsedUrlQuery = ParsedUrlQuery & NextQueryMetadata\n\nexport interface NextUrlWithParsedQuery extends UrlWithParsedQuery {\n query: NextParsedUrlQuery\n}\n"],"names":["NEXT_REQUEST_META","Symbol","for","getRequestMeta","req","key","meta","setRequestMeta","addRequestMeta","request","value","removeRequestMeta"],"mappings":"AAeA,kGAAkG;;;;;;;;;;;;;AAC3F,MAAMA,oBAAoBC,OAAOC,GAAG,CAAC,2BAA0B;AAuR/D,SAASC,eACdC,GAAwB,EACxBC,GAAO;IAEP,MAAMC,OAAOF,GAAG,CAACJ,kBAAkB,IAAI,CAAC;IACxC,OAAO,OAAOK,QAAQ,WAAWC,IAAI,CAACD,IAAI,GAAGC;AAC/C;AASO,SAASC,eAAeH,GAAwB,EAAEE,IAAiB;IACxEF,GAAG,CAACJ,kBAAkB,GAAGM;IACzB,OAAOA;AACT;AAUO,SAASE,eACdC,OAA4B,EAC5BJ,GAAM,EACNK,KAAqB;IAErB,MAAMJ,OAAOH,eAAeM;IAC5BH,IAAI,CAACD,IAAI,GAAGK;IACZ,OAAOH,eAAeE,SAASH;AACjC;AASO,SAASK,kBACdF,OAA4B,EAC5BJ,GAAM;IAEN,MAAMC,OAAOH,eAAeM;IAC5B,OAAOH,IAAI,CAACD,IAAI;IAChB,OAAOE,eAAeE,SAASH;AACjC","ignoreList":[0]}}, - {"offset": {"line": 16782, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/constants.ts"],"sourcesContent":["import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\n\n// in seconds\nexport const CACHE_ONE_YEAR = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n"],"names":["TEXT_PLAIN_CONTENT_TYPE_HEADER","HTML_CONTENT_TYPE_HEADER","JSON_CONTENT_TYPE_HEADER","NEXT_QUERY_PARAM_PREFIX","NEXT_INTERCEPTION_MARKER_PREFIX","MATCHED_PATH_HEADER","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","ACTION_SUFFIX","NEXT_DATA_SUFFIX","NEXT_META_SUFFIX","NEXT_BODY_SUFFIX","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_RESUME_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_IMPLICIT_TAG_ID","CACHE_ONE_YEAR","INFINITE_CACHE","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","PROXY_FILENAME","PROXY_LOCATION_REGEXP","INSTRUMENTATION_HOOK_FILENAME","PAGES_DIR_ALIAS","DOT_NEXT_ALIAS","ROOT_DIR_ALIAS","APP_DIR_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","PUBLIC_DIR_MIDDLEWARE_CONFLICT","SSG_GET_INITIAL_PROPS_CONFLICT","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","SERVER_PROPS_EXPORT_ERROR","GSP_NO_RETURNED_VALUE","GSSP_NO_RETURNED_VALUE","UNSTABLE_REVALIDATE_RENAME_ERROR","GSSP_COMPONENT_MEMBER_ERROR","NON_STANDARD_NODE_ENV","SSG_FALLBACK_EXPORT_ERROR","ESLINT_DEFAULT_DIRS","SERVER_RUNTIME","edge","experimentalEdge","nodejs","WEB_SOCKET_MAX_RECONNECTIONS","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","WEBPACK_LAYERS","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","WEBPACK_RESOURCE_QUERIES","edgeSSREntry","metadata","metadataRoute","metadataImageMeta"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 17063, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/utils.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\nimport {\n NEXT_INTERCEPTION_MARKER_PREFIX,\n NEXT_QUERY_PARAM_PREFIX,\n} from '../../lib/constants'\n\n/**\n * Converts a Node.js IncomingHttpHeaders object to a Headers object. Any\n * headers with multiple values will be joined with a comma and space. Any\n * headers that have an undefined value will be ignored and others will be\n * coerced to strings.\n *\n * @param nodeHeaders the headers object to convert\n * @returns the converted headers object\n */\nexport function fromNodeOutgoingHttpHeaders(\n nodeHeaders: OutgoingHttpHeaders\n): Headers {\n const headers = new Headers()\n for (let [key, value] of Object.entries(nodeHeaders)) {\n const values = Array.isArray(value) ? value : [value]\n for (let v of values) {\n if (typeof v === 'undefined') continue\n if (typeof v === 'number') {\n v = v.toString()\n }\n\n headers.append(key, v)\n }\n }\n return headers\n}\n\n/*\n Set-Cookie header field-values are sometimes comma joined in one string. This splits them without choking on commas\n that are within a single set-cookie field-value, such as in the Expires portion.\n This is uncommon, but explicitly allowed - see https://tools.ietf.org/html/rfc2616#section-4.2\n Node.js does this for every header *except* set-cookie - see https://github.com/nodejs/node/blob/d5e363b77ebaf1caf67cd7528224b651c86815c1/lib/_http_incoming.js#L128\n React Native's fetch does this for *every* header, including set-cookie.\n \n Based on: https://github.com/google/j2objc/commit/16820fdbc8f76ca0c33472810ce0cb03d20efe25\n Credits to: https://github.com/tomball for original and https://github.com/chrusart for JavaScript implementation\n*/\nexport function splitCookiesString(cookiesString: string) {\n var cookiesStrings = []\n var pos = 0\n var start\n var ch\n var lastComma\n var nextStart\n var cookiesSeparatorFound\n\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1\n }\n return pos < cookiesString.length\n }\n\n function notSpecialChar() {\n ch = cookiesString.charAt(pos)\n\n return ch !== '=' && ch !== ';' && ch !== ','\n }\n\n while (pos < cookiesString.length) {\n start = pos\n cookiesSeparatorFound = false\n\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos)\n if (ch === ',') {\n // ',' is a cookie separator if we have later first '=', not ';' or ','\n lastComma = pos\n pos += 1\n\n skipWhitespace()\n nextStart = pos\n\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1\n }\n\n // currently special character\n if (pos < cookiesString.length && cookiesString.charAt(pos) === '=') {\n // we found cookies separator\n cookiesSeparatorFound = true\n // pos is inside the next cookie, so back up and return it.\n pos = nextStart\n cookiesStrings.push(cookiesString.substring(start, lastComma))\n start = pos\n } else {\n // in param ',' or param separator ';',\n // we continue from that comma\n pos = lastComma + 1\n }\n } else {\n pos += 1\n }\n }\n\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length))\n }\n }\n\n return cookiesStrings\n}\n\n/**\n * Converts a Headers object to a Node.js OutgoingHttpHeaders object. This is\n * required to support the set-cookie header, which may have multiple values.\n *\n * @param headers the headers object to convert\n * @returns the converted headers object\n */\nexport function toNodeOutgoingHttpHeaders(\n headers: Headers\n): OutgoingHttpHeaders {\n const nodeHeaders: OutgoingHttpHeaders = {}\n const cookies: string[] = []\n if (headers) {\n for (const [key, value] of headers.entries()) {\n if (key.toLowerCase() === 'set-cookie') {\n // We may have gotten a comma joined string of cookies, or multiple\n // set-cookie headers. We need to merge them into one header array\n // to represent all the cookies.\n cookies.push(...splitCookiesString(value))\n nodeHeaders[key] = cookies.length === 1 ? cookies[0] : cookies\n } else {\n nodeHeaders[key] = value\n }\n }\n }\n return nodeHeaders\n}\n\n/**\n * Validate the correctness of a user-provided URL.\n */\nexport function validateURL(url: string | URL): string {\n try {\n return String(new URL(String(url)))\n } catch (error: any) {\n throw new Error(\n `URL is malformed \"${String(\n url\n )}\". Please use only absolute URLs - https://nextjs.org/docs/messages/middleware-relative-urls`,\n { cause: error }\n )\n }\n}\n\n/**\n * Normalizes `nxtP` and `nxtI` query param values to remove the prefix.\n * This function does not mutate the input key.\n */\nexport function normalizeNextQueryParam(key: string): null | string {\n const prefixes = [NEXT_QUERY_PARAM_PREFIX, NEXT_INTERCEPTION_MARKER_PREFIX]\n for (const prefix of prefixes) {\n if (key !== prefix && key.startsWith(prefix)) {\n return key.substring(prefix.length)\n }\n }\n return null\n}\n"],"names":["NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_QUERY_PARAM_PREFIX","fromNodeOutgoingHttpHeaders","nodeHeaders","headers","Headers","key","value","Object","entries","values","Array","isArray","v","toString","append","splitCookiesString","cookiesString","cookiesStrings","pos","start","ch","lastComma","nextStart","cookiesSeparatorFound","skipWhitespace","length","test","charAt","notSpecialChar","push","substring","toNodeOutgoingHttpHeaders","cookies","toLowerCase","validateURL","url","String","URL","error","Error","cause","normalizeNextQueryParam","prefixes","prefix","startsWith"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 17195, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/i18n/detect-domain-locale.ts"],"sourcesContent":["import type { DomainLocale } from '../../../server/config-shared'\n\nexport function detectDomainLocale(\n domainItems?: readonly DomainLocale[],\n hostname?: string,\n detectedLocale?: string\n) {\n if (!domainItems) return\n\n if (detectedLocale) {\n detectedLocale = detectedLocale.toLowerCase()\n }\n\n for (const item of domainItems) {\n // remove port if present\n const domainHostname = item.domain?.split(':', 1)[0].toLowerCase()\n if (\n hostname === domainHostname ||\n detectedLocale === item.defaultLocale.toLowerCase() ||\n item.locales?.some((locale) => locale.toLowerCase() === detectedLocale)\n ) {\n return item\n }\n }\n}\n"],"names":["detectDomainLocale","domainItems","hostname","detectedLocale","toLowerCase","item","domainHostname","domain","split","defaultLocale","locales","some","locale"],"mappings":";;;;AAEO,SAASA,mBACdC,WAAqC,EACrCC,QAAiB,EACjBC,cAAuB;IAEvB,IAAI,CAACF,aAAa;IAElB,IAAIE,gBAAgB;QAClBA,iBAAiBA,eAAeC,WAAW;IAC7C;IAEA,KAAK,MAAMC,QAAQJ,YAAa;QAC9B,yBAAyB;QACzB,MAAMK,iBAAiBD,KAAKE,MAAM,EAAEC,MAAM,KAAK,EAAE,CAAC,EAAE,CAACJ;QACrD,IACEF,aAAaI,kBACbH,mBAAmBE,KAAKI,aAAa,CAACL,WAAW,MACjDC,KAAKK,OAAO,EAAEC,KAAK,CAACC,SAAWA,OAAOR,WAAW,OAAOD,iBACxD;YACA,OAAOE;QACT;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 17216, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/remove-trailing-slash.ts"],"sourcesContent":["/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */\nexport function removeTrailingSlash(route: string) {\n return route.replace(/\\/$/, '') || '/'\n}\n"],"names":["removeTrailingSlash","route","replace"],"mappings":"AAAA;;;;;;CAMC,GACD;;;;AAAO,SAASA,oBAAoBC,KAAa;IAC/C,OAAOA,MAAMC,OAAO,CAAC,OAAO,OAAO;AACrC","ignoreList":[0]}}, - {"offset": {"line": 17233, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-path.ts"],"sourcesContent":["/**\n * Given a path this function will find the pathname, query and hash and return\n * them. This is useful to parse full paths on the client side.\n * @param path A path to parse e.g. /foo/bar?id=1#hash\n */\nexport function parsePath(path: string) {\n const hashIndex = path.indexOf('#')\n const queryIndex = path.indexOf('?')\n const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex)\n\n if (hasQuery || hashIndex > -1) {\n return {\n pathname: path.substring(0, hasQuery ? queryIndex : hashIndex),\n query: hasQuery\n ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined)\n : '',\n hash: hashIndex > -1 ? path.slice(hashIndex) : '',\n }\n }\n\n return { pathname: path, query: '', hash: '' }\n}\n"],"names":["parsePath","path","hashIndex","indexOf","queryIndex","hasQuery","pathname","substring","query","undefined","hash","slice"],"mappings":"AAAA;;;;CAIC,GACD;;;;AAAO,SAASA,UAAUC,IAAY;IACpC,MAAMC,YAAYD,KAAKE,OAAO,CAAC;IAC/B,MAAMC,aAAaH,KAAKE,OAAO,CAAC;IAChC,MAAME,WAAWD,aAAa,CAAC,KAAMF,CAAAA,YAAY,KAAKE,aAAaF,SAAQ;IAE3E,IAAIG,YAAYH,YAAY,CAAC,GAAG;QAC9B,OAAO;YACLI,UAAUL,KAAKM,SAAS,CAAC,GAAGF,WAAWD,aAAaF;YACpDM,OAAOH,WACHJ,KAAKM,SAAS,CAACH,YAAYF,YAAY,CAAC,IAAIA,YAAYO,aACxD;YACJC,MAAMR,YAAY,CAAC,IAAID,KAAKU,KAAK,CAACT,aAAa;QACjD;IACF;IAEA,OAAO;QAAEI,UAAUL;QAAMO,OAAO;QAAIE,MAAM;IAAG;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 17262, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/add-path-prefix.ts"],"sourcesContent":["import { parsePath } from './parse-path'\n\n/**\n * Adds the provided prefix to the given path. It first ensures that the path\n * is indeed starting with a slash.\n */\nexport function addPathPrefix(path: string, prefix?: string) {\n if (!path.startsWith('/') || !prefix) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n return `${prefix}${pathname}${query}${hash}`\n}\n"],"names":["parsePath","addPathPrefix","path","prefix","startsWith","pathname","query","hash"],"mappings":";;;;AAAA,SAASA,SAAS,QAAQ,eAAc;;AAMjC,SAASC,cAAcC,IAAY,EAAEC,MAAe;IACzD,IAAI,CAACD,KAAKE,UAAU,CAAC,QAAQ,CAACD,QAAQ;QACpC,OAAOD;IACT;IAEA,MAAM,EAAEG,QAAQ,EAAEC,KAAK,EAAEC,IAAI,EAAE,OAAGP,qMAAAA,EAAUE;IAC5C,OAAO,GAAGC,SAASE,WAAWC,QAAQC,MAAM;AAC9C","ignoreList":[0]}}, - {"offset": {"line": 17279, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/add-path-suffix.ts"],"sourcesContent":["import { parsePath } from './parse-path'\n\n/**\n * Similarly to `addPathPrefix`, this function adds a suffix at the end on the\n * provided path. It also works only for paths ensuring the argument starts\n * with a slash.\n */\nexport function addPathSuffix(path: string, suffix?: string) {\n if (!path.startsWith('/') || !suffix) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n return `${pathname}${suffix}${query}${hash}`\n}\n"],"names":["parsePath","addPathSuffix","path","suffix","startsWith","pathname","query","hash"],"mappings":";;;;AAAA,SAASA,SAAS,QAAQ,eAAc;;AAOjC,SAASC,cAAcC,IAAY,EAAEC,MAAe;IACzD,IAAI,CAACD,KAAKE,UAAU,CAAC,QAAQ,CAACD,QAAQ;QACpC,OAAOD;IACT;IAEA,MAAM,EAAEG,QAAQ,EAAEC,KAAK,EAAEC,IAAI,EAAE,OAAGP,qMAAAA,EAAUE;IAC5C,OAAO,GAAGG,WAAWF,SAASG,QAAQC,MAAM;AAC9C","ignoreList":[0]}}, - {"offset": {"line": 17296, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/path-has-prefix.ts"],"sourcesContent":["import { parsePath } from './parse-path'\n\n/**\n * Checks if a given path starts with a given prefix. It ensures it matches\n * exactly without containing extra chars. e.g. prefix /docs should replace\n * for /docs, /docs/, /docs/a but not /docsss\n * @param path The path to check.\n * @param prefix The prefix to check against.\n */\nexport function pathHasPrefix(path: string, prefix: string) {\n if (typeof path !== 'string') {\n return false\n }\n\n const { pathname } = parsePath(path)\n return pathname === prefix || pathname.startsWith(prefix + '/')\n}\n"],"names":["parsePath","pathHasPrefix","path","prefix","pathname","startsWith"],"mappings":";;;;AAAA,SAASA,SAAS,QAAQ,eAAc;;AASjC,SAASC,cAAcC,IAAY,EAAEC,MAAc;IACxD,IAAI,OAAOD,SAAS,UAAU;QAC5B,OAAO;IACT;IAEA,MAAM,EAAEE,QAAQ,EAAE,OAAGJ,qMAAAA,EAAUE;IAC/B,OAAOE,aAAaD,UAAUC,SAASC,UAAU,CAACF,SAAS;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 17313, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/add-locale.ts"],"sourcesContent":["import { addPathPrefix } from './add-path-prefix'\nimport { pathHasPrefix } from './path-has-prefix'\n\n/**\n * For a given path and a locale, if the locale is given, it will prefix the\n * locale. The path shouldn't be an API path. If a default locale is given the\n * prefix will be omitted if the locale is already the default locale.\n */\nexport function addLocale(\n path: string,\n locale?: string | false,\n defaultLocale?: string,\n ignorePrefix?: boolean\n) {\n // If no locale was given or the locale is the default locale, we don't need\n // to prefix the path.\n if (!locale || locale === defaultLocale) return path\n\n const lower = path.toLowerCase()\n\n // If the path is an API path or the path already has the locale prefix, we\n // don't need to prefix the path.\n if (!ignorePrefix) {\n if (pathHasPrefix(lower, '/api')) return path\n if (pathHasPrefix(lower, `/${locale.toLowerCase()}`)) return path\n }\n\n // Add the locale prefix to the path.\n return addPathPrefix(path, `/${locale}`)\n}\n"],"names":["addPathPrefix","pathHasPrefix","addLocale","path","locale","defaultLocale","ignorePrefix","lower","toLowerCase"],"mappings":";;;;AAAA,SAASA,aAAa,QAAQ,oBAAmB;AACjD,SAASC,aAAa,QAAQ,oBAAmB;;;AAO1C,SAASC,UACdC,IAAY,EACZC,MAAuB,EACvBC,aAAsB,EACtBC,YAAsB;IAEtB,4EAA4E;IAC5E,sBAAsB;IACtB,IAAI,CAACF,UAAUA,WAAWC,eAAe,OAAOF;IAEhD,MAAMI,QAAQJ,KAAKK,WAAW;IAE9B,2EAA2E;IAC3E,iCAAiC;IACjC,IAAI,CAACF,cAAc;QACjB,QAAIL,iNAAAA,EAAcM,OAAO,SAAS,OAAOJ;QACzC,QAAIF,iNAAAA,EAAcM,OAAO,CAAC,CAAC,EAAEH,OAAOI,WAAW,IAAI,GAAG,OAAOL;IAC/D;IAEA,qCAAqC;IACrC,WAAOH,iNAAAA,EAAcG,MAAM,CAAC,CAAC,EAAEC,QAAQ;AACzC","ignoreList":[0]}}, - {"offset": {"line": 17339, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/format-next-pathname-info.ts"],"sourcesContent":["import type { NextPathnameInfo } from './get-next-pathname-info'\nimport { removeTrailingSlash } from './remove-trailing-slash'\nimport { addPathPrefix } from './add-path-prefix'\nimport { addPathSuffix } from './add-path-suffix'\nimport { addLocale } from './add-locale'\n\ninterface ExtendedInfo extends NextPathnameInfo {\n defaultLocale?: string\n ignorePrefix?: boolean\n}\n\nexport function formatNextPathnameInfo(info: ExtendedInfo) {\n let pathname = addLocale(\n info.pathname,\n info.locale,\n info.buildId ? undefined : info.defaultLocale,\n info.ignorePrefix\n )\n\n if (info.buildId || !info.trailingSlash) {\n pathname = removeTrailingSlash(pathname)\n }\n\n if (info.buildId) {\n pathname = addPathSuffix(\n addPathPrefix(pathname, `/_next/data/${info.buildId}`),\n info.pathname === '/' ? 'index.json' : '.json'\n )\n }\n\n pathname = addPathPrefix(pathname, info.basePath)\n return !info.buildId && info.trailingSlash\n ? !pathname.endsWith('/')\n ? addPathSuffix(pathname, '/')\n : pathname\n : removeTrailingSlash(pathname)\n}\n"],"names":["removeTrailingSlash","addPathPrefix","addPathSuffix","addLocale","formatNextPathnameInfo","info","pathname","locale","buildId","undefined","defaultLocale","ignorePrefix","trailingSlash","basePath","endsWith"],"mappings":";;;;AACA,SAASA,mBAAmB,QAAQ,0BAAyB;AAC7D,SAASC,aAAa,QAAQ,oBAAmB;AACjD,SAASC,aAAa,QAAQ,oBAAmB;AACjD,SAASC,SAAS,QAAQ,eAAc;;;;;AAOjC,SAASC,uBAAuBC,IAAkB;IACvD,IAAIC,eAAWH,qMAAAA,EACbE,KAAKC,QAAQ,EACbD,KAAKE,MAAM,EACXF,KAAKG,OAAO,GAAGC,YAAYJ,KAAKK,aAAa,EAC7CL,KAAKM,YAAY;IAGnB,IAAIN,KAAKG,OAAO,IAAI,CAACH,KAAKO,aAAa,EAAE;QACvCN,eAAWN,6NAAAA,EAAoBM;IACjC;IAEA,IAAID,KAAKG,OAAO,EAAE;QAChBF,eAAWJ,iNAAAA,MACTD,iNAAAA,EAAcK,UAAU,CAAC,YAAY,EAAED,KAAKG,OAAO,EAAE,GACrDH,KAAKC,QAAQ,KAAK,MAAM,eAAe;IAE3C;IAEAA,eAAWL,iNAAAA,EAAcK,UAAUD,KAAKQ,QAAQ;IAChD,OAAO,CAACR,KAAKG,OAAO,IAAIH,KAAKO,aAAa,GACtC,CAACN,SAASQ,QAAQ,CAAC,WACjBZ,iNAAAA,EAAcI,UAAU,OACxBA,eACFN,6NAAAA,EAAoBM;AAC1B","ignoreList":[0]}}, - {"offset": {"line": 17366, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/get-hostname.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\n\n/**\n * Takes an object with a hostname property (like a parsed URL) and some\n * headers that may contain Host and returns the preferred hostname.\n * @param parsed An object containing a hostname property.\n * @param headers A dictionary with headers containing a `host`.\n */\nexport function getHostname(\n parsed: { hostname?: string | null },\n headers?: OutgoingHttpHeaders\n): string | undefined {\n // Get the hostname from the headers if it exists, otherwise use the parsed\n // hostname.\n let hostname: string\n if (headers?.host && !Array.isArray(headers.host)) {\n hostname = headers.host.toString().split(':', 1)[0]\n } else if (parsed.hostname) {\n hostname = parsed.hostname\n } else return\n\n return hostname.toLowerCase()\n}\n"],"names":["getHostname","parsed","headers","hostname","host","Array","isArray","toString","split","toLowerCase"],"mappings":"AAEA;;;;;CAKC,GACD;;;;AAAO,SAASA,YACdC,MAAoC,EACpCC,OAA6B;IAE7B,2EAA2E;IAC3E,YAAY;IACZ,IAAIC;IACJ,IAAID,SAASE,QAAQ,CAACC,MAAMC,OAAO,CAACJ,QAAQE,IAAI,GAAG;QACjDD,WAAWD,QAAQE,IAAI,CAACG,QAAQ,GAAGC,KAAK,CAAC,KAAK,EAAE,CAAC,EAAE;IACrD,OAAO,IAAIP,OAAOE,QAAQ,EAAE;QAC1BA,WAAWF,OAAOE,QAAQ;IAC5B,OAAO;IAEP,OAAOA,SAASM,WAAW;AAC7B","ignoreList":[0]}}, - {"offset": {"line": 17390, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/i18n/normalize-locale-path.ts"],"sourcesContent":["export interface PathLocale {\n detectedLocale?: string\n pathname: string\n}\n\n/**\n * A cache of lowercased locales for each list of locales. This is stored as a\n * WeakMap so if the locales are garbage collected, the cache entry will be\n * removed as well.\n */\nconst cache = new WeakMap()\n\n/**\n * For a pathname that may include a locale from a list of locales, it\n * removes the locale from the pathname returning it alongside with the\n * detected locale.\n *\n * @param pathname A pathname that may include a locale.\n * @param locales A list of locales.\n * @returns The detected locale and pathname without locale\n */\nexport function normalizeLocalePath(\n pathname: string,\n locales?: readonly string[]\n): PathLocale {\n // If locales is undefined, return the pathname as is.\n if (!locales) return { pathname }\n\n // Get the cached lowercased locales or create a new cache entry.\n let lowercasedLocales = cache.get(locales)\n if (!lowercasedLocales) {\n lowercasedLocales = locales.map((locale) => locale.toLowerCase())\n cache.set(locales, lowercasedLocales)\n }\n\n let detectedLocale: string | undefined\n\n // The first segment will be empty, because it has a leading `/`. If\n // there is no further segment, there is no locale (or it's the default).\n const segments = pathname.split('/', 2)\n\n // If there's no second segment (ie, the pathname is just `/`), there's no\n // locale.\n if (!segments[1]) return { pathname }\n\n // The second segment will contain the locale part if any.\n const segment = segments[1].toLowerCase()\n\n // See if the segment matches one of the locales. If it doesn't, there is\n // no locale (or it's the default).\n const index = lowercasedLocales.indexOf(segment)\n if (index < 0) return { pathname }\n\n // Return the case-sensitive locale.\n detectedLocale = locales[index]\n\n // Remove the `/${locale}` part of the pathname.\n pathname = pathname.slice(detectedLocale.length + 1) || '/'\n\n return { pathname, detectedLocale }\n}\n"],"names":["cache","WeakMap","normalizeLocalePath","pathname","locales","lowercasedLocales","get","map","locale","toLowerCase","set","detectedLocale","segments","split","segment","index","indexOf","slice","length"],"mappings":";;;;AAKA;;;;CAIC,GACD,MAAMA,QAAQ,IAAIC;AAWX,SAASC,oBACdC,QAAgB,EAChBC,OAA2B;IAE3B,sDAAsD;IACtD,IAAI,CAACA,SAAS,OAAO;QAAED;IAAS;IAEhC,iEAAiE;IACjE,IAAIE,oBAAoBL,MAAMM,GAAG,CAACF;IAClC,IAAI,CAACC,mBAAmB;QACtBA,oBAAoBD,QAAQG,GAAG,CAAC,CAACC,SAAWA,OAAOC,WAAW;QAC9DT,MAAMU,GAAG,CAACN,SAASC;IACrB;IAEA,IAAIM;IAEJ,oEAAoE;IACpE,yEAAyE;IACzE,MAAMC,WAAWT,SAASU,KAAK,CAAC,KAAK;IAErC,0EAA0E;IAC1E,UAAU;IACV,IAAI,CAACD,QAAQ,CAAC,EAAE,EAAE,OAAO;QAAET;IAAS;IAEpC,0DAA0D;IAC1D,MAAMW,UAAUF,QAAQ,CAAC,EAAE,CAACH,WAAW;IAEvC,yEAAyE;IACzE,mCAAmC;IACnC,MAAMM,QAAQV,kBAAkBW,OAAO,CAACF;IACxC,IAAIC,QAAQ,GAAG,OAAO;QAAEZ;IAAS;IAEjC,oCAAoC;IACpCQ,iBAAiBP,OAAO,CAACW,MAAM;IAE/B,gDAAgD;IAChDZ,WAAWA,SAASc,KAAK,CAACN,eAAeO,MAAM,GAAG,MAAM;IAExD,OAAO;QAAEf;QAAUQ;IAAe;AACpC","ignoreList":[0]}}, - {"offset": {"line": 17440, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/remove-path-prefix.ts"],"sourcesContent":["import { pathHasPrefix } from './path-has-prefix'\n\n/**\n * Given a path and a prefix it will remove the prefix when it exists in the\n * given path. It ensures it matches exactly without containing extra chars\n * and if the prefix is not there it will be noop.\n *\n * @param path The path to remove the prefix from.\n * @param prefix The prefix to be removed.\n */\nexport function removePathPrefix(path: string, prefix: string): string {\n // If the path doesn't start with the prefix we can return it as is. This\n // protects us from situations where the prefix is a substring of the path\n // prefix such as:\n //\n // For prefix: /blog\n //\n // /blog -> true\n // /blog/ -> true\n // /blog/1 -> true\n // /blogging -> false\n // /blogging/ -> false\n // /blogging/1 -> false\n if (!pathHasPrefix(path, prefix)) {\n return path\n }\n\n // Remove the prefix from the path via slicing.\n const withoutPrefix = path.slice(prefix.length)\n\n // If the path without the prefix starts with a `/` we can return it as is.\n if (withoutPrefix.startsWith('/')) {\n return withoutPrefix\n }\n\n // If the path without the prefix doesn't start with a `/` we need to add it\n // back to the path to make sure it's a valid path.\n return `/${withoutPrefix}`\n}\n"],"names":["pathHasPrefix","removePathPrefix","path","prefix","withoutPrefix","slice","length","startsWith"],"mappings":";;;;AAAA,SAASA,aAAa,QAAQ,oBAAmB;;AAU1C,SAASC,iBAAiBC,IAAY,EAAEC,MAAc;IAC3D,yEAAyE;IACzE,0EAA0E;IAC1E,kBAAkB;IAClB,EAAE;IACF,oBAAoB;IACpB,EAAE;IACF,kBAAkB;IAClB,mBAAmB;IACnB,oBAAoB;IACpB,uBAAuB;IACvB,wBAAwB;IACxB,yBAAyB;IACzB,IAAI,KAACH,iNAAAA,EAAcE,MAAMC,SAAS;QAChC,OAAOD;IACT;IAEA,+CAA+C;IAC/C,MAAME,gBAAgBF,KAAKG,KAAK,CAACF,OAAOG,MAAM;IAE9C,2EAA2E;IAC3E,IAAIF,cAAcG,UAAU,CAAC,MAAM;QACjC,OAAOH;IACT;IAEA,4EAA4E;IAC5E,mDAAmD;IACnD,OAAO,CAAC,CAAC,EAAEA,eAAe;AAC5B","ignoreList":[0]}}, - {"offset": {"line": 17476, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/get-next-pathname-info.ts"],"sourcesContent":["import { normalizeLocalePath } from '../../i18n/normalize-locale-path'\nimport { removePathPrefix } from './remove-path-prefix'\nimport { pathHasPrefix } from './path-has-prefix'\nimport type { I18NProvider } from '../../../../server/lib/i18n-provider'\n\nexport interface NextPathnameInfo {\n /**\n * The base path in case the pathname included it.\n */\n basePath?: string\n /**\n * The buildId for when the parsed URL is a data URL. Parsing it can be\n * disabled with the `parseData` option.\n */\n buildId?: string\n /**\n * If there was a locale in the pathname, this will hold its value.\n */\n locale?: string\n /**\n * The processed pathname without a base path, locale, or data URL elements\n * when parsing it is enabled.\n */\n pathname: string\n /**\n * A boolean telling if the pathname had a trailingSlash. This can be only\n * true if trailingSlash is enabled.\n */\n trailingSlash?: boolean\n}\n\ninterface Options {\n /**\n * When passed to true, this function will also parse Nextjs data URLs.\n */\n parseData?: boolean\n /**\n * A partial of the Next.js configuration to parse the URL.\n */\n nextConfig?: {\n basePath?: string\n i18n?: { locales?: readonly string[] } | null\n trailingSlash?: boolean\n }\n\n /**\n * If provided, this normalizer will be used to detect the locale instead of\n * the default locale detection.\n */\n i18nProvider?: I18NProvider\n}\n\nexport function getNextPathnameInfo(\n pathname: string,\n options: Options\n): NextPathnameInfo {\n const { basePath, i18n, trailingSlash } = options.nextConfig ?? {}\n const info: NextPathnameInfo = {\n pathname,\n trailingSlash: pathname !== '/' ? pathname.endsWith('/') : trailingSlash,\n }\n\n if (basePath && pathHasPrefix(info.pathname, basePath)) {\n info.pathname = removePathPrefix(info.pathname, basePath)\n info.basePath = basePath\n }\n let pathnameNoDataPrefix = info.pathname\n\n if (\n info.pathname.startsWith('/_next/data/') &&\n info.pathname.endsWith('.json')\n ) {\n const paths = info.pathname\n .replace(/^\\/_next\\/data\\//, '')\n .replace(/\\.json$/, '')\n .split('/')\n\n const buildId = paths[0]\n info.buildId = buildId\n pathnameNoDataPrefix =\n paths[1] !== 'index' ? `/${paths.slice(1).join('/')}` : '/'\n\n // update pathname with normalized if enabled although\n // we use normalized to populate locale info still\n if (options.parseData === true) {\n info.pathname = pathnameNoDataPrefix\n }\n }\n\n // If provided, use the locale route normalizer to detect the locale instead\n // of the function below.\n if (i18n) {\n let result = options.i18nProvider\n ? options.i18nProvider.analyze(info.pathname)\n : normalizeLocalePath(info.pathname, i18n.locales)\n\n info.locale = result.detectedLocale\n info.pathname = result.pathname ?? info.pathname\n\n if (!result.detectedLocale && info.buildId) {\n result = options.i18nProvider\n ? options.i18nProvider.analyze(pathnameNoDataPrefix)\n : normalizeLocalePath(pathnameNoDataPrefix, i18n.locales)\n\n if (result.detectedLocale) {\n info.locale = result.detectedLocale\n }\n }\n }\n return info\n}\n"],"names":["normalizeLocalePath","removePathPrefix","pathHasPrefix","getNextPathnameInfo","pathname","options","basePath","i18n","trailingSlash","nextConfig","info","endsWith","pathnameNoDataPrefix","startsWith","paths","replace","split","buildId","slice","join","parseData","result","i18nProvider","analyze","locales","locale","detectedLocale"],"mappings":";;;;AAAA,SAASA,mBAAmB,QAAQ,mCAAkC;AACtE,SAASC,gBAAgB,QAAQ,uBAAsB;AACvD,SAASC,aAAa,QAAQ,oBAAmB;;;;AAkD1C,SAASC,oBACdC,QAAgB,EAChBC,OAAgB;IAEhB,MAAM,EAAEC,QAAQ,EAAEC,IAAI,EAAEC,aAAa,EAAE,GAAGH,QAAQI,UAAU,IAAI,CAAC;IACjE,MAAMC,OAAyB;QAC7BN;QACAI,eAAeJ,aAAa,MAAMA,SAASO,QAAQ,CAAC,OAAOH;IAC7D;IAEA,IAAIF,gBAAYJ,iNAAAA,EAAcQ,KAAKN,QAAQ,EAAEE,WAAW;QACtDI,KAAKN,QAAQ,OAAGH,uNAAAA,EAAiBS,KAAKN,QAAQ,EAAEE;QAChDI,KAAKJ,QAAQ,GAAGA;IAClB;IACA,IAAIM,uBAAuBF,KAAKN,QAAQ;IAExC,IACEM,KAAKN,QAAQ,CAACS,UAAU,CAAC,mBACzBH,KAAKN,QAAQ,CAACO,QAAQ,CAAC,UACvB;QACA,MAAMG,QAAQJ,KAAKN,QAAQ,CACxBW,OAAO,CAAC,oBAAoB,IAC5BA,OAAO,CAAC,WAAW,IACnBC,KAAK,CAAC;QAET,MAAMC,UAAUH,KAAK,CAAC,EAAE;QACxBJ,KAAKO,OAAO,GAAGA;QACfL,uBACEE,KAAK,CAAC,EAAE,KAAK,UAAU,CAAC,CAAC,EAAEA,MAAMI,KAAK,CAAC,GAAGC,IAAI,CAAC,MAAM,GAAG;QAE1D,sDAAsD;QACtD,kDAAkD;QAClD,IAAId,QAAQe,SAAS,KAAK,MAAM;YAC9BV,KAAKN,QAAQ,GAAGQ;QAClB;IACF;IAEA,4EAA4E;IAC5E,yBAAyB;IACzB,IAAIL,MAAM;QACR,IAAIc,SAAShB,QAAQiB,YAAY,GAC7BjB,QAAQiB,YAAY,CAACC,OAAO,CAACb,KAAKN,QAAQ,QAC1CJ,kNAAAA,EAAoBU,KAAKN,QAAQ,EAAEG,KAAKiB,OAAO;QAEnDd,KAAKe,MAAM,GAAGJ,OAAOK,cAAc;QACnChB,KAAKN,QAAQ,GAAGiB,OAAOjB,QAAQ,IAAIM,KAAKN,QAAQ;QAEhD,IAAI,CAACiB,OAAOK,cAAc,IAAIhB,KAAKO,OAAO,EAAE;YAC1CI,SAAShB,QAAQiB,YAAY,GACzBjB,QAAQiB,YAAY,CAACC,OAAO,CAACX,4BAC7BZ,kNAAAA,EAAoBY,sBAAsBL,KAAKiB,OAAO;YAE1D,IAAIH,OAAOK,cAAc,EAAE;gBACzBhB,KAAKe,MAAM,GAAGJ,OAAOK,cAAc;YACrC;QACF;IACF;IACA,OAAOhB;AACT","ignoreList":[0]}}, - {"offset": {"line": 17527, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/next-url.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\nimport type { DomainLocale, I18NConfig } from '../config-shared'\nimport type { I18NProvider } from '../lib/i18n-provider'\n\nimport { detectDomainLocale } from '../../shared/lib/i18n/detect-domain-locale'\nimport { formatNextPathnameInfo } from '../../shared/lib/router/utils/format-next-pathname-info'\nimport { getHostname } from '../../shared/lib/get-hostname'\nimport { getNextPathnameInfo } from '../../shared/lib/router/utils/get-next-pathname-info'\n\ninterface Options {\n base?: string | URL\n headers?: OutgoingHttpHeaders\n forceLocale?: boolean\n nextConfig?: {\n basePath?: string\n i18n?: I18NConfig | null\n trailingSlash?: boolean\n }\n i18nProvider?: I18NProvider\n}\n\nconst REGEX_LOCALHOST_HOSTNAME =\n /(?!^https?:\\/\\/)(127(?:\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}|\\[::1\\]|localhost)/\n\nfunction parseURL(url: string | URL, base?: string | URL) {\n return new URL(\n String(url).replace(REGEX_LOCALHOST_HOSTNAME, 'localhost'),\n base && String(base).replace(REGEX_LOCALHOST_HOSTNAME, 'localhost')\n )\n}\n\nconst Internal = Symbol('NextURLInternal')\n\nexport class NextURL {\n private [Internal]: {\n basePath: string\n buildId?: string\n flightSearchParameters?: Record\n defaultLocale?: string\n domainLocale?: DomainLocale\n locale?: string\n options: Options\n trailingSlash?: boolean\n url: URL\n }\n\n constructor(input: string | URL, base?: string | URL, opts?: Options)\n constructor(input: string | URL, opts?: Options)\n constructor(\n input: string | URL,\n baseOrOpts?: string | URL | Options,\n opts?: Options\n ) {\n let base: undefined | string | URL\n let options: Options\n\n if (\n (typeof baseOrOpts === 'object' && 'pathname' in baseOrOpts) ||\n typeof baseOrOpts === 'string'\n ) {\n base = baseOrOpts\n options = opts || {}\n } else {\n options = opts || baseOrOpts || {}\n }\n\n this[Internal] = {\n url: parseURL(input, base ?? options.base),\n options: options,\n basePath: '',\n }\n\n this.analyze()\n }\n\n private analyze() {\n const info = getNextPathnameInfo(this[Internal].url.pathname, {\n nextConfig: this[Internal].options.nextConfig,\n parseData: !process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE,\n i18nProvider: this[Internal].options.i18nProvider,\n })\n\n const hostname = getHostname(\n this[Internal].url,\n this[Internal].options.headers\n )\n this[Internal].domainLocale = this[Internal].options.i18nProvider\n ? this[Internal].options.i18nProvider.detectDomainLocale(hostname)\n : detectDomainLocale(\n this[Internal].options.nextConfig?.i18n?.domains,\n hostname\n )\n\n const defaultLocale =\n this[Internal].domainLocale?.defaultLocale ||\n this[Internal].options.nextConfig?.i18n?.defaultLocale\n\n this[Internal].url.pathname = info.pathname\n this[Internal].defaultLocale = defaultLocale\n this[Internal].basePath = info.basePath ?? ''\n this[Internal].buildId = info.buildId\n this[Internal].locale = info.locale ?? defaultLocale\n this[Internal].trailingSlash = info.trailingSlash\n }\n\n private formatPathname() {\n return formatNextPathnameInfo({\n basePath: this[Internal].basePath,\n buildId: this[Internal].buildId,\n defaultLocale: !this[Internal].options.forceLocale\n ? this[Internal].defaultLocale\n : undefined,\n locale: this[Internal].locale,\n pathname: this[Internal].url.pathname,\n trailingSlash: this[Internal].trailingSlash,\n })\n }\n\n private formatSearch() {\n return this[Internal].url.search\n }\n\n public get buildId() {\n return this[Internal].buildId\n }\n\n public set buildId(buildId: string | undefined) {\n this[Internal].buildId = buildId\n }\n\n public get locale() {\n return this[Internal].locale ?? ''\n }\n\n public set locale(locale: string) {\n if (\n !this[Internal].locale ||\n !this[Internal].options.nextConfig?.i18n?.locales.includes(locale)\n ) {\n throw new TypeError(\n `The NextURL configuration includes no locale \"${locale}\"`\n )\n }\n\n this[Internal].locale = locale\n }\n\n get defaultLocale() {\n return this[Internal].defaultLocale\n }\n\n get domainLocale() {\n return this[Internal].domainLocale\n }\n\n get searchParams() {\n return this[Internal].url.searchParams\n }\n\n get host() {\n return this[Internal].url.host\n }\n\n set host(value: string) {\n this[Internal].url.host = value\n }\n\n get hostname() {\n return this[Internal].url.hostname\n }\n\n set hostname(value: string) {\n this[Internal].url.hostname = value\n }\n\n get port() {\n return this[Internal].url.port\n }\n\n set port(value: string) {\n this[Internal].url.port = value\n }\n\n get protocol() {\n return this[Internal].url.protocol\n }\n\n set protocol(value: string) {\n this[Internal].url.protocol = value\n }\n\n get href() {\n const pathname = this.formatPathname()\n const search = this.formatSearch()\n return `${this.protocol}//${this.host}${pathname}${search}${this.hash}`\n }\n\n set href(url: string) {\n this[Internal].url = parseURL(url)\n this.analyze()\n }\n\n get origin() {\n return this[Internal].url.origin\n }\n\n get pathname() {\n return this[Internal].url.pathname\n }\n\n set pathname(value: string) {\n this[Internal].url.pathname = value\n }\n\n get hash() {\n return this[Internal].url.hash\n }\n\n set hash(value: string) {\n this[Internal].url.hash = value\n }\n\n get search() {\n return this[Internal].url.search\n }\n\n set search(value: string) {\n this[Internal].url.search = value\n }\n\n get password() {\n return this[Internal].url.password\n }\n\n set password(value: string) {\n this[Internal].url.password = value\n }\n\n get username() {\n return this[Internal].url.username\n }\n\n set username(value: string) {\n this[Internal].url.username = value\n }\n\n get basePath() {\n return this[Internal].basePath\n }\n\n set basePath(value: string) {\n this[Internal].basePath = value.startsWith('/') ? value : `/${value}`\n }\n\n toString() {\n return this.href\n }\n\n toJSON() {\n return this.href\n }\n\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n href: this.href,\n origin: this.origin,\n protocol: this.protocol,\n username: this.username,\n password: this.password,\n host: this.host,\n hostname: this.hostname,\n port: this.port,\n pathname: this.pathname,\n search: this.search,\n searchParams: this.searchParams,\n hash: this.hash,\n }\n }\n\n clone() {\n return new NextURL(String(this), this[Internal].options)\n }\n}\n"],"names":["detectDomainLocale","formatNextPathnameInfo","getHostname","getNextPathnameInfo","REGEX_LOCALHOST_HOSTNAME","parseURL","url","base","URL","String","replace","Internal","Symbol","NextURL","constructor","input","baseOrOpts","opts","options","basePath","analyze","info","pathname","nextConfig","parseData","process","env","__NEXT_NO_MIDDLEWARE_URL_NORMALIZE","i18nProvider","hostname","headers","domainLocale","i18n","domains","defaultLocale","buildId","locale","trailingSlash","formatPathname","forceLocale","undefined","formatSearch","search","locales","includes","TypeError","searchParams","host","value","port","protocol","href","hash","origin","password","username","startsWith","toString","toJSON","for","clone"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 17722, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/error.ts"],"sourcesContent":["export class PageSignatureError extends Error {\n constructor({ page }: { page: string }) {\n super(`The middleware \"${page}\" accepts an async API directly with the form:\n \n export function middleware(request, event) {\n return NextResponse.redirect('/new-location')\n }\n \n Read more: https://nextjs.org/docs/messages/middleware-new-signature\n `)\n }\n}\n\nexport class RemovedPageError extends Error {\n constructor() {\n super(`The request.page has been deprecated in favour of \\`URLPattern\\`.\n Read more: https://nextjs.org/docs/messages/middleware-request-page\n `)\n }\n}\n\nexport class RemovedUAError extends Error {\n constructor() {\n super(`The request.ua has been removed in favour of \\`userAgent\\` function.\n Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n `)\n }\n}\n"],"names":["PageSignatureError","Error","constructor","page","RemovedPageError","RemovedUAError"],"mappings":";;;;;;;;AAAO,MAAMA,2BAA2BC;IACtCC,YAAY,EAAEC,IAAI,EAAoB,CAAE;QACtC,KAAK,CAAC,CAAC,gBAAgB,EAAEA,KAAK;;;;;;;EAOhC,CAAC;IACD;AACF;AAEO,MAAMC,yBAAyBH;IACpCC,aAAc;QACZ,KAAK,CAAC,CAAC;;EAET,CAAC;IACD;AACF;AAEO,MAAMG,uBAAuBJ;IAClCC,aAAc;QACZ,KAAK,CAAC,CAAC;;EAET,CAAC;IACD;AACF","ignoreList":[0]}}, - {"offset": {"line": 17760, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/%40edge-runtime/cookies/index.js"],"sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\n\n// src/index.ts\nvar src_exports = {};\n__export(src_exports, {\n RequestCookies: () => RequestCookies,\n ResponseCookies: () => ResponseCookies,\n parseCookie: () => parseCookie,\n parseSetCookie: () => parseSetCookie,\n stringifyCookie: () => stringifyCookie\n});\nmodule.exports = __toCommonJS(src_exports);\n\n// src/serialize.ts\nfunction stringifyCookie(c) {\n var _a;\n const attrs = [\n \"path\" in c && c.path && `Path=${c.path}`,\n \"expires\" in c && (c.expires || c.expires === 0) && `Expires=${(typeof c.expires === \"number\" ? new Date(c.expires) : c.expires).toUTCString()}`,\n \"maxAge\" in c && typeof c.maxAge === \"number\" && `Max-Age=${c.maxAge}`,\n \"domain\" in c && c.domain && `Domain=${c.domain}`,\n \"secure\" in c && c.secure && \"Secure\",\n \"httpOnly\" in c && c.httpOnly && \"HttpOnly\",\n \"sameSite\" in c && c.sameSite && `SameSite=${c.sameSite}`,\n \"partitioned\" in c && c.partitioned && \"Partitioned\",\n \"priority\" in c && c.priority && `Priority=${c.priority}`\n ].filter(Boolean);\n const stringified = `${c.name}=${encodeURIComponent((_a = c.value) != null ? _a : \"\")}`;\n return attrs.length === 0 ? stringified : `${stringified}; ${attrs.join(\"; \")}`;\n}\nfunction parseCookie(cookie) {\n const map = /* @__PURE__ */ new Map();\n for (const pair of cookie.split(/; */)) {\n if (!pair)\n continue;\n const splitAt = pair.indexOf(\"=\");\n if (splitAt === -1) {\n map.set(pair, \"true\");\n continue;\n }\n const [key, value] = [pair.slice(0, splitAt), pair.slice(splitAt + 1)];\n try {\n map.set(key, decodeURIComponent(value != null ? value : \"true\"));\n } catch {\n }\n }\n return map;\n}\nfunction parseSetCookie(setCookie) {\n if (!setCookie) {\n return void 0;\n }\n const [[name, value], ...attributes] = parseCookie(setCookie);\n const {\n domain,\n expires,\n httponly,\n maxage,\n path,\n samesite,\n secure,\n partitioned,\n priority\n } = Object.fromEntries(\n attributes.map(([key, value2]) => [\n key.toLowerCase().replace(/-/g, \"\"),\n value2\n ])\n );\n const cookie = {\n name,\n value: decodeURIComponent(value),\n domain,\n ...expires && { expires: new Date(expires) },\n ...httponly && { httpOnly: true },\n ...typeof maxage === \"string\" && { maxAge: Number(maxage) },\n path,\n ...samesite && { sameSite: parseSameSite(samesite) },\n ...secure && { secure: true },\n ...priority && { priority: parsePriority(priority) },\n ...partitioned && { partitioned: true }\n };\n return compact(cookie);\n}\nfunction compact(t) {\n const newT = {};\n for (const key in t) {\n if (t[key]) {\n newT[key] = t[key];\n }\n }\n return newT;\n}\nvar SAME_SITE = [\"strict\", \"lax\", \"none\"];\nfunction parseSameSite(string) {\n string = string.toLowerCase();\n return SAME_SITE.includes(string) ? string : void 0;\n}\nvar PRIORITY = [\"low\", \"medium\", \"high\"];\nfunction parsePriority(string) {\n string = string.toLowerCase();\n return PRIORITY.includes(string) ? string : void 0;\n}\nfunction splitCookiesString(cookiesString) {\n if (!cookiesString)\n return [];\n var cookiesStrings = [];\n var pos = 0;\n var start;\n var ch;\n var lastComma;\n var nextStart;\n var cookiesSeparatorFound;\n function skipWhitespace() {\n while (pos < cookiesString.length && /\\s/.test(cookiesString.charAt(pos))) {\n pos += 1;\n }\n return pos < cookiesString.length;\n }\n function notSpecialChar() {\n ch = cookiesString.charAt(pos);\n return ch !== \"=\" && ch !== \";\" && ch !== \",\";\n }\n while (pos < cookiesString.length) {\n start = pos;\n cookiesSeparatorFound = false;\n while (skipWhitespace()) {\n ch = cookiesString.charAt(pos);\n if (ch === \",\") {\n lastComma = pos;\n pos += 1;\n skipWhitespace();\n nextStart = pos;\n while (pos < cookiesString.length && notSpecialChar()) {\n pos += 1;\n }\n if (pos < cookiesString.length && cookiesString.charAt(pos) === \"=\") {\n cookiesSeparatorFound = true;\n pos = nextStart;\n cookiesStrings.push(cookiesString.substring(start, lastComma));\n start = pos;\n } else {\n pos = lastComma + 1;\n }\n } else {\n pos += 1;\n }\n }\n if (!cookiesSeparatorFound || pos >= cookiesString.length) {\n cookiesStrings.push(cookiesString.substring(start, cookiesString.length));\n }\n }\n return cookiesStrings;\n}\n\n// src/request-cookies.ts\nvar RequestCookies = class {\n constructor(requestHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n this._headers = requestHeaders;\n const header = requestHeaders.get(\"cookie\");\n if (header) {\n const parsed = parseCookie(header);\n for (const [name, value] of parsed) {\n this._parsed.set(name, { name, value });\n }\n }\n }\n [Symbol.iterator]() {\n return this._parsed[Symbol.iterator]();\n }\n /**\n * The amount of cookies received from the client\n */\n get size() {\n return this._parsed.size;\n }\n get(...args) {\n const name = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(name);\n }\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed);\n if (!args.length) {\n return all.map(([_, value]) => value);\n }\n const name = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter(([n]) => n === name).map(([_, value]) => value);\n }\n has(name) {\n return this._parsed.has(name);\n }\n set(...args) {\n const [name, value] = args.length === 1 ? [args[0].name, args[0].value] : args;\n const map = this._parsed;\n map.set(name, { name, value });\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value2]) => stringifyCookie(value2)).join(\"; \")\n );\n return this;\n }\n /**\n * Delete the cookies matching the passed name or names in the request.\n */\n delete(names) {\n const map = this._parsed;\n const result = !Array.isArray(names) ? map.delete(names) : names.map((name) => map.delete(name));\n this._headers.set(\n \"cookie\",\n Array.from(map).map(([_, value]) => stringifyCookie(value)).join(\"; \")\n );\n return result;\n }\n /**\n * Delete all the cookies in the cookies in the request.\n */\n clear() {\n this.delete(Array.from(this._parsed.keys()));\n return this;\n }\n /**\n * Format the cookies in the request as a string for logging\n */\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `RequestCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map((v) => `${v.name}=${encodeURIComponent(v.value)}`).join(\"; \");\n }\n};\n\n// src/response-cookies.ts\nvar ResponseCookies = class {\n constructor(responseHeaders) {\n /** @internal */\n this._parsed = /* @__PURE__ */ new Map();\n var _a, _b, _c;\n this._headers = responseHeaders;\n const setCookie = (_c = (_b = (_a = responseHeaders.getSetCookie) == null ? void 0 : _a.call(responseHeaders)) != null ? _b : responseHeaders.get(\"set-cookie\")) != null ? _c : [];\n const cookieStrings = Array.isArray(setCookie) ? setCookie : splitCookiesString(setCookie);\n for (const cookieString of cookieStrings) {\n const parsed = parseSetCookie(cookieString);\n if (parsed)\n this._parsed.set(parsed.name, parsed);\n }\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-get CookieStore#get} without the Promise.\n */\n get(...args) {\n const key = typeof args[0] === \"string\" ? args[0] : args[0].name;\n return this._parsed.get(key);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-getAll CookieStore#getAll} without the Promise.\n */\n getAll(...args) {\n var _a;\n const all = Array.from(this._parsed.values());\n if (!args.length) {\n return all;\n }\n const key = typeof args[0] === \"string\" ? args[0] : (_a = args[0]) == null ? void 0 : _a.name;\n return all.filter((c) => c.name === key);\n }\n has(name) {\n return this._parsed.has(name);\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-set CookieStore#set} without the Promise.\n */\n set(...args) {\n const [name, value, cookie] = args.length === 1 ? [args[0].name, args[0].value, args[0]] : args;\n const map = this._parsed;\n map.set(name, normalizeCookie({ name, value, ...cookie }));\n replace(map, this._headers);\n return this;\n }\n /**\n * {@link https://wicg.github.io/cookie-store/#CookieStore-delete CookieStore#delete} without the Promise.\n */\n delete(...args) {\n const [name, options] = typeof args[0] === \"string\" ? [args[0]] : [args[0].name, args[0]];\n return this.set({ ...options, name, value: \"\", expires: /* @__PURE__ */ new Date(0) });\n }\n [Symbol.for(\"edge-runtime.inspect.custom\")]() {\n return `ResponseCookies ${JSON.stringify(Object.fromEntries(this._parsed))}`;\n }\n toString() {\n return [...this._parsed.values()].map(stringifyCookie).join(\"; \");\n }\n};\nfunction replace(bag, headers) {\n headers.delete(\"set-cookie\");\n for (const [, value] of bag) {\n const serialized = stringifyCookie(value);\n headers.append(\"set-cookie\", serialized);\n }\n}\nfunction normalizeCookie(cookie = { name: \"\", value: \"\" }) {\n if (typeof cookie.expires === \"number\") {\n cookie.expires = new Date(cookie.expires);\n }\n if (cookie.maxAge) {\n cookie.expires = new Date(Date.now() + cookie.maxAge * 1e3);\n }\n if (cookie.path === null || cookie.path === void 0) {\n cookie.path = \"/\";\n }\n return cookie;\n}\n// Annotate the CommonJS export names for ESM import in node:\n0 && (module.exports = {\n RequestCookies,\n ResponseCookies,\n parseCookie,\n parseSetCookie,\n stringifyCookie\n});\n"],"names":[],"mappings":"AACA,IAAI,YAAY,OAAO,cAAc;AACrC,IAAI,mBAAmB,OAAO,wBAAwB;AACtD,IAAI,oBAAoB,OAAO,mBAAmB;AAClD,IAAI,eAAe,OAAO,SAAS,CAAC,cAAc;AAClD,IAAI,WAAW,CAAC,QAAQ;IACtB,IAAK,IAAI,QAAQ,IACf,UAAU,QAAQ,MAAM;QAAE,KAAK,GAAG,CAAC,KAAK;QAAE,YAAY;IAAK;AAC/D;AACA,IAAI,cAAc,CAAC,IAAI,MAAM,QAAQ;IACnC,IAAI,QAAQ,OAAO,SAAS,YAAY,OAAO,SAAS,YAAY;QAClE,KAAK,IAAI,OAAO,kBAAkB,MAChC,IAAI,CAAC,aAAa,IAAI,CAAC,IAAI,QAAQ,QAAQ,QACzC,UAAU,IAAI,KAAK;YAAE,KAAK,IAAM,IAAI,CAAC,IAAI;YAAE,YAAY,CAAC,CAAC,OAAO,iBAAiB,MAAM,IAAI,KAAK,KAAK,UAAU;QAAC;IACtH;IACA,OAAO;AACT;AACA,IAAI,eAAe,CAAC,MAAQ,YAAY,UAAU,CAAC,GAAG,cAAc;QAAE,OAAO;IAAK,IAAI;AAEtF,eAAe;AACf,IAAI,cAAc,CAAC;AACnB,SAAS,aAAa;IACpB,gBAAgB,IAAM;IACtB,iBAAiB,IAAM;IACvB,aAAa,IAAM;IACnB,gBAAgB,IAAM;IACtB,iBAAiB,IAAM;AACzB;AACA,OAAO,OAAO,GAAG,aAAa;AAE9B,mBAAmB;AACnB,SAAS,gBAAgB,CAAC;IACxB,IAAI;IACJ,MAAM,QAAQ;QACZ,UAAU,KAAK,EAAE,IAAI,IAAI,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE;QACzC,aAAa,KAAK,CAAC,EAAE,OAAO,IAAI,EAAE,OAAO,KAAK,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,WAAW,IAAI,KAAK,EAAE,OAAO,IAAI,EAAE,OAAO,EAAE,WAAW,IAAI;QAChJ,YAAY,KAAK,OAAO,EAAE,MAAM,KAAK,YAAY,CAAC,QAAQ,EAAE,EAAE,MAAM,EAAE;QACtE,YAAY,KAAK,EAAE,MAAM,IAAI,CAAC,OAAO,EAAE,EAAE,MAAM,EAAE;QACjD,YAAY,KAAK,EAAE,MAAM,IAAI;QAC7B,cAAc,KAAK,EAAE,QAAQ,IAAI;QACjC,cAAc,KAAK,EAAE,QAAQ,IAAI,CAAC,SAAS,EAAE,EAAE,QAAQ,EAAE;QACzD,iBAAiB,KAAK,EAAE,WAAW,IAAI;QACvC,cAAc,KAAK,EAAE,QAAQ,IAAI,CAAC,SAAS,EAAE,EAAE,QAAQ,EAAE;KAC1D,CAAC,MAAM,CAAC;IACT,MAAM,cAAc,GAAG,EAAE,IAAI,CAAC,CAAC,EAAE,mBAAmB,CAAC,KAAK,EAAE,KAAK,KAAK,OAAO,KAAK,KAAK;IACvF,OAAO,MAAM,MAAM,KAAK,IAAI,cAAc,GAAG,YAAY,EAAE,EAAE,MAAM,IAAI,CAAC,OAAO;AACjF;AACA,SAAS,YAAY,MAAM;IACzB,MAAM,MAAM,aAAa,GAAG,IAAI;IAChC,KAAK,MAAM,QAAQ,OAAO,KAAK,CAAC,OAAQ;QACtC,IAAI,CAAC,MACH;QACF,MAAM,UAAU,KAAK,OAAO,CAAC;QAC7B,IAAI,YAAY,CAAC,GAAG;YAClB,IAAI,GAAG,CAAC,MAAM;YACd;QACF;QACA,MAAM,CAAC,KAAK,MAAM,GAAG;YAAC,KAAK,KAAK,CAAC,GAAG;YAAU,KAAK,KAAK,CAAC,UAAU;SAAG;QACtE,IAAI;YACF,IAAI,GAAG,CAAC,KAAK,mBAAmB,SAAS,OAAO,QAAQ;QAC1D,EAAE,OAAM,CACR;IACF;IACA,OAAO;AACT;AACA,SAAS,eAAe,SAAS;IAC/B,IAAI,CAAC,WAAW;QACd,OAAO,KAAK;IACd;IACA,MAAM,CAAC,CAAC,MAAM,MAAM,EAAE,GAAG,WAAW,GAAG,YAAY;IACnD,MAAM,EACJ,MAAM,EACN,OAAO,EACP,QAAQ,EACR,MAAM,EACN,IAAI,EACJ,QAAQ,EACR,MAAM,EACN,WAAW,EACX,QAAQ,EACT,GAAG,OAAO,WAAW,CACpB,WAAW,GAAG,CAAC,CAAC,CAAC,KAAK,OAAO,GAAK;YAChC,IAAI,WAAW,GAAG,OAAO,CAAC,MAAM;YAChC;SACD;IAEH,MAAM,SAAS;QACb;QACA,OAAO,mBAAmB;QAC1B;QACA,GAAG,WAAW;YAAE,SAAS,IAAI,KAAK;QAAS,CAAC;QAC5C,GAAG,YAAY;YAAE,UAAU;QAAK,CAAC;QACjC,GAAG,OAAO,WAAW,YAAY;YAAE,QAAQ,OAAO;QAAQ,CAAC;QAC3D;QACA,GAAG,YAAY;YAAE,UAAU,cAAc;QAAU,CAAC;QACpD,GAAG,UAAU;YAAE,QAAQ;QAAK,CAAC;QAC7B,GAAG,YAAY;YAAE,UAAU,cAAc;QAAU,CAAC;QACpD,GAAG,eAAe;YAAE,aAAa;QAAK,CAAC;IACzC;IACA,OAAO,QAAQ;AACjB;AACA,SAAS,QAAQ,CAAC;IAChB,MAAM,OAAO,CAAC;IACd,IAAK,MAAM,OAAO,EAAG;QACnB,IAAI,CAAC,CAAC,IAAI,EAAE;YACV,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,IAAI;QACpB;IACF;IACA,OAAO;AACT;AACA,IAAI,YAAY;IAAC;IAAU;IAAO;CAAO;AACzC,SAAS,cAAc,MAAM;IAC3B,SAAS,OAAO,WAAW;IAC3B,OAAO,UAAU,QAAQ,CAAC,UAAU,SAAS,KAAK;AACpD;AACA,IAAI,WAAW;IAAC;IAAO;IAAU;CAAO;AACxC,SAAS,cAAc,MAAM;IAC3B,SAAS,OAAO,WAAW;IAC3B,OAAO,SAAS,QAAQ,CAAC,UAAU,SAAS,KAAK;AACnD;AACA,SAAS,mBAAmB,aAAa;IACvC,IAAI,CAAC,eACH,OAAO,EAAE;IACX,IAAI,iBAAiB,EAAE;IACvB,IAAI,MAAM;IACV,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,SAAS;QACP,MAAO,MAAM,cAAc,MAAM,IAAI,KAAK,IAAI,CAAC,cAAc,MAAM,CAAC,MAAO;YACzE,OAAO;QACT;QACA,OAAO,MAAM,cAAc,MAAM;IACnC;IACA,SAAS;QACP,KAAK,cAAc,MAAM,CAAC;QAC1B,OAAO,OAAO,OAAO,OAAO,OAAO,OAAO;IAC5C;IACA,MAAO,MAAM,cAAc,MAAM,CAAE;QACjC,QAAQ;QACR,wBAAwB;QACxB,MAAO,iBAAkB;YACvB,KAAK,cAAc,MAAM,CAAC;YAC1B,IAAI,OAAO,KAAK;gBACd,YAAY;gBACZ,OAAO;gBACP;gBACA,YAAY;gBACZ,MAAO,MAAM,cAAc,MAAM,IAAI,iBAAkB;oBACrD,OAAO;gBACT;gBACA,IAAI,MAAM,cAAc,MAAM,IAAI,cAAc,MAAM,CAAC,SAAS,KAAK;oBACnE,wBAAwB;oBACxB,MAAM;oBACN,eAAe,IAAI,CAAC,cAAc,SAAS,CAAC,OAAO;oBACnD,QAAQ;gBACV,OAAO;oBACL,MAAM,YAAY;gBACpB;YACF,OAAO;gBACL,OAAO;YACT;QACF;QACA,IAAI,CAAC,yBAAyB,OAAO,cAAc,MAAM,EAAE;YACzD,eAAe,IAAI,CAAC,cAAc,SAAS,CAAC,OAAO,cAAc,MAAM;QACzE;IACF;IACA,OAAO;AACT;AAEA,yBAAyB;AACzB,IAAI,iBAAiB;IACnB,YAAY,cAAc,CAAE;QAC1B,cAAc,GACd,IAAI,CAAC,OAAO,GAAG,aAAa,GAAG,IAAI;QACnC,IAAI,CAAC,QAAQ,GAAG;QAChB,MAAM,SAAS,eAAe,GAAG,CAAC;QAClC,IAAI,QAAQ;YACV,MAAM,SAAS,YAAY;YAC3B,KAAK,MAAM,CAAC,MAAM,MAAM,IAAI,OAAQ;gBAClC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM;oBAAE;oBAAM;gBAAM;YACvC;QACF;IACF;IACA,CAAC,OAAO,QAAQ,CAAC,GAAG;QAClB,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,QAAQ,CAAC;IACtC;IACA;;GAEC,GACD,IAAI,OAAO;QACT,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI;IAC1B;IACA,IAAI,GAAG,IAAI,EAAE;QACX,MAAM,OAAO,OAAO,IAAI,CAAC,EAAE,KAAK,WAAW,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC,IAAI;QACjE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;IAC1B;IACA,OAAO,GAAG,IAAI,EAAE;QACd,IAAI;QACJ,MAAM,MAAM,MAAM,IAAI,CAAC,IAAI,CAAC,OAAO;QACnC,IAAI,CAAC,KAAK,MAAM,EAAE;YAChB,OAAO,IAAI,GAAG,CAAC,CAAC,CAAC,GAAG,MAAM,GAAK;QACjC;QACA,MAAM,OAAO,OAAO,IAAI,CAAC,EAAE,KAAK,WAAW,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,IAAI,CAAC,EAAE,KAAK,OAAO,KAAK,IAAI,GAAG,IAAI;QAC9F,OAAO,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,GAAK,MAAM,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,MAAM,GAAK;IAC7D;IACA,IAAI,IAAI,EAAE;QACR,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;IAC1B;IACA,IAAI,GAAG,IAAI,EAAE;QACX,MAAM,CAAC,MAAM,MAAM,GAAG,KAAK,MAAM,KAAK,IAAI;YAAC,IAAI,CAAC,EAAE,CAAC,IAAI;YAAE,IAAI,CAAC,EAAE,CAAC,KAAK;SAAC,GAAG;QAC1E,MAAM,MAAM,IAAI,CAAC,OAAO;QACxB,IAAI,GAAG,CAAC,MAAM;YAAE;YAAM;QAAM;QAC5B,IAAI,CAAC,QAAQ,CAAC,GAAG,CACf,UACA,MAAM,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,OAAO,GAAK,gBAAgB,SAAS,IAAI,CAAC;QAErE,OAAO,IAAI;IACb;IACA;;GAEC,GACD,OAAO,KAAK,EAAE;QACZ,MAAM,MAAM,IAAI,CAAC,OAAO;QACxB,MAAM,SAAS,CAAC,MAAM,OAAO,CAAC,SAAS,IAAI,MAAM,CAAC,SAAS,MAAM,GAAG,CAAC,CAAC,OAAS,IAAI,MAAM,CAAC;QAC1F,IAAI,CAAC,QAAQ,CAAC,GAAG,CACf,UACA,MAAM,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,MAAM,GAAK,gBAAgB,QAAQ,IAAI,CAAC;QAEnE,OAAO;IACT;IACA;;GAEC,GACD,QAAQ;QACN,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI;QACxC,OAAO,IAAI;IACb;IACA;;GAEC,GACD,CAAC,OAAO,GAAG,CAAC,+BAA+B,GAAG;QAC5C,OAAO,CAAC,eAAe,EAAE,KAAK,SAAS,CAAC,OAAO,WAAW,CAAC,IAAI,CAAC,OAAO,IAAI;IAC7E;IACA,WAAW;QACT,OAAO;eAAI,IAAI,CAAC,OAAO,CAAC,MAAM;SAAG,CAAC,GAAG,CAAC,CAAC,IAAM,GAAG,EAAE,IAAI,CAAC,CAAC,EAAE,mBAAmB,EAAE,KAAK,GAAG,EAAE,IAAI,CAAC;IAChG;AACF;AAEA,0BAA0B;AAC1B,IAAI,kBAAkB;IACpB,YAAY,eAAe,CAAE;QAC3B,cAAc,GACd,IAAI,CAAC,OAAO,GAAG,aAAa,GAAG,IAAI;QACnC,IAAI,IAAI,IAAI;QACZ,IAAI,CAAC,QAAQ,GAAG;QAChB,MAAM,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,gBAAgB,YAAY,KAAK,OAAO,KAAK,IAAI,GAAG,IAAI,CAAC,gBAAgB,KAAK,OAAO,KAAK,gBAAgB,GAAG,CAAC,aAAa,KAAK,OAAO,KAAK,EAAE;QAClL,MAAM,gBAAgB,MAAM,OAAO,CAAC,aAAa,YAAY,mBAAmB;QAChF,KAAK,MAAM,gBAAgB,cAAe;YACxC,MAAM,SAAS,eAAe;YAC9B,IAAI,QACF,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,IAAI,EAAE;QAClC;IACF;IACA;;GAEC,GACD,IAAI,GAAG,IAAI,EAAE;QACX,MAAM,MAAM,OAAO,IAAI,CAAC,EAAE,KAAK,WAAW,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC,IAAI;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;IAC1B;IACA;;GAEC,GACD,OAAO,GAAG,IAAI,EAAE;QACd,IAAI;QACJ,MAAM,MAAM,MAAM,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM;QAC1C,IAAI,CAAC,KAAK,MAAM,EAAE;YAChB,OAAO;QACT;QACA,MAAM,MAAM,OAAO,IAAI,CAAC,EAAE,KAAK,WAAW,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,IAAI,CAAC,EAAE,KAAK,OAAO,KAAK,IAAI,GAAG,IAAI;QAC7F,OAAO,IAAI,MAAM,CAAC,CAAC,IAAM,EAAE,IAAI,KAAK;IACtC;IACA,IAAI,IAAI,EAAE;QACR,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;IAC1B;IACA;;GAEC,GACD,IAAI,GAAG,IAAI,EAAE;QACX,MAAM,CAAC,MAAM,OAAO,OAAO,GAAG,KAAK,MAAM,KAAK,IAAI;YAAC,IAAI,CAAC,EAAE,CAAC,IAAI;YAAE,IAAI,CAAC,EAAE,CAAC,KAAK;YAAE,IAAI,CAAC,EAAE;SAAC,GAAG;QAC3F,MAAM,MAAM,IAAI,CAAC,OAAO;QACxB,IAAI,GAAG,CAAC,MAAM,gBAAgB;YAAE;YAAM;YAAO,GAAG,MAAM;QAAC;QACvD,QAAQ,KAAK,IAAI,CAAC,QAAQ;QAC1B,OAAO,IAAI;IACb;IACA;;GAEC,GACD,OAAO,GAAG,IAAI,EAAE;QACd,MAAM,CAAC,MAAM,QAAQ,GAAG,OAAO,IAAI,CAAC,EAAE,KAAK,WAAW;YAAC,IAAI,CAAC,EAAE;SAAC,GAAG;YAAC,IAAI,CAAC,EAAE,CAAC,IAAI;YAAE,IAAI,CAAC,EAAE;SAAC;QACzF,OAAO,IAAI,CAAC,GAAG,CAAC;YAAE,GAAG,OAAO;YAAE;YAAM,OAAO;YAAI,SAAS,aAAa,GAAG,IAAI,KAAK;QAAG;IACtF;IACA,CAAC,OAAO,GAAG,CAAC,+BAA+B,GAAG;QAC5C,OAAO,CAAC,gBAAgB,EAAE,KAAK,SAAS,CAAC,OAAO,WAAW,CAAC,IAAI,CAAC,OAAO,IAAI;IAC9E;IACA,WAAW;QACT,OAAO;eAAI,IAAI,CAAC,OAAO,CAAC,MAAM;SAAG,CAAC,GAAG,CAAC,iBAAiB,IAAI,CAAC;IAC9D;AACF;AACA,SAAS,QAAQ,GAAG,EAAE,OAAO;IAC3B,QAAQ,MAAM,CAAC;IACf,KAAK,MAAM,GAAG,MAAM,IAAI,IAAK;QAC3B,MAAM,aAAa,gBAAgB;QACnC,QAAQ,MAAM,CAAC,cAAc;IAC/B;AACF;AACA,SAAS,gBAAgB,SAAS;IAAE,MAAM;IAAI,OAAO;AAAG,CAAC;IACvD,IAAI,OAAO,OAAO,OAAO,KAAK,UAAU;QACtC,OAAO,OAAO,GAAG,IAAI,KAAK,OAAO,OAAO;IAC1C;IACA,IAAI,OAAO,MAAM,EAAE;QACjB,OAAO,OAAO,GAAG,IAAI,KAAK,KAAK,GAAG,KAAK,OAAO,MAAM,GAAG;IACzD;IACA,IAAI,OAAO,IAAI,KAAK,QAAQ,OAAO,IAAI,KAAK,KAAK,GAAG;QAClD,OAAO,IAAI,GAAG;IAChB;IACA,OAAO;AACT;AACA,6DAA6D;AAC7D,KAAK,CAAC,OAAO,OAAO,GAAG;IACrB;IACA;IACA;IACA;IACA;AACF,CAAC","ignoreList":[0]}}, - {"offset": {"line": 18130, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/cookies.ts"],"sourcesContent":["export {\n RequestCookies,\n ResponseCookies,\n stringifyCookie,\n} from 'next/dist/compiled/@edge-runtime/cookies'\n"],"names":["RequestCookies","ResponseCookies","stringifyCookie"],"mappings":";AAAA,SACEA,cAAc,EACdC,eAAe,EACfC,eAAe,QACV,2CAA0C","ignoreList":[0]}}, - {"offset": {"line": 18137, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/request.ts"],"sourcesContent":["import type { I18NConfig } from '../../config-shared'\nimport { NextURL } from '../next-url'\nimport { toNodeOutgoingHttpHeaders, validateURL } from '../utils'\nimport { RemovedUAError, RemovedPageError } from '../error'\nimport { RequestCookies } from './cookies'\n\nexport const INTERNALS = Symbol('internal request')\n\n/**\n * This class extends the [Web `Request` API](https://developer.mozilla.org/docs/Web/API/Request) with additional convenience methods.\n *\n * Read more: [Next.js Docs: `NextRequest`](https://nextjs.org/docs/app/api-reference/functions/next-request)\n */\nexport class NextRequest extends Request {\n /** @internal */\n [INTERNALS]: {\n cookies: RequestCookies\n url: string\n nextUrl: NextURL\n }\n\n constructor(input: URL | RequestInfo, init: RequestInit = {}) {\n const url =\n typeof input !== 'string' && 'url' in input ? input.url : String(input)\n\n validateURL(url)\n\n // node Request instance requires duplex option when a body\n // is present or it errors, we don't handle this for\n // Request being passed in since it would have already\n // errored if this wasn't configured\n if (process.env.NEXT_RUNTIME !== 'edge') {\n if (init.body && init.duplex !== 'half') {\n init.duplex = 'half'\n }\n }\n\n if (input instanceof Request) super(input, init)\n else super(url, init)\n\n const nextUrl = new NextURL(url, {\n headers: toNodeOutgoingHttpHeaders(this.headers),\n nextConfig: init.nextConfig,\n })\n this[INTERNALS] = {\n cookies: new RequestCookies(this.headers),\n nextUrl,\n url: process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE\n ? url\n : nextUrl.toString(),\n }\n }\n\n [Symbol.for('edge-runtime.inspect.custom')]() {\n return {\n cookies: this.cookies,\n nextUrl: this.nextUrl,\n url: this.url,\n // rest of props come from Request\n bodyUsed: this.bodyUsed,\n cache: this.cache,\n credentials: this.credentials,\n destination: this.destination,\n headers: Object.fromEntries(this.headers),\n integrity: this.integrity,\n keepalive: this.keepalive,\n method: this.method,\n mode: this.mode,\n redirect: this.redirect,\n referrer: this.referrer,\n referrerPolicy: this.referrerPolicy,\n signal: this.signal,\n }\n }\n\n public get cookies() {\n return this[INTERNALS].cookies\n }\n\n public get nextUrl() {\n return this[INTERNALS].nextUrl\n }\n\n /**\n * @deprecated\n * `page` has been deprecated in favour of `URLPattern`.\n * Read more: https://nextjs.org/docs/messages/middleware-request-page\n */\n public get page() {\n throw new RemovedPageError()\n }\n\n /**\n * @deprecated\n * `ua` has been removed in favour of \\`userAgent\\` function.\n * Read more: https://nextjs.org/docs/messages/middleware-parse-user-agent\n */\n public get ua() {\n throw new RemovedUAError()\n }\n\n public get url() {\n return this[INTERNALS].url\n }\n}\n\nexport interface RequestInit extends globalThis.RequestInit {\n nextConfig?: {\n basePath?: string\n i18n?: I18NConfig | null\n trailingSlash?: boolean\n }\n signal?: AbortSignal\n // see https://github.com/whatwg/fetch/pull/1457\n duplex?: 'half'\n}\n"],"names":["NextURL","toNodeOutgoingHttpHeaders","validateURL","RemovedUAError","RemovedPageError","RequestCookies","INTERNALS","Symbol","NextRequest","Request","constructor","input","init","url","String","process","env","NEXT_RUNTIME","body","duplex","nextUrl","headers","nextConfig","cookies","__NEXT_NO_MIDDLEWARE_URL_NORMALIZE","toString","for","bodyUsed","cache","credentials","destination","Object","fromEntries","integrity","keepalive","method","mode","redirect","referrer","referrerPolicy","signal","page","ua"],"mappings":";;;;;;AACA,SAASA,OAAO,QAAQ,cAAa;AACrC,SAASC,yBAAyB,EAAEC,WAAW,QAAQ,WAAU;AACjE,SAASC,cAAc,EAAEC,gBAAgB,QAAQ,WAAU;;AAC3D,SAASC,cAAc,QAAQ,YAAW;;;;;AAEnC,MAAMC,YAAYC,OAAO,oBAAmB;AAO5C,MAAMC,oBAAoBC;IAQ/BC,YAAYC,KAAwB,EAAEC,OAAoB,CAAC,CAAC,CAAE;QAC5D,MAAMC,MACJ,OAAOF,UAAU,YAAY,SAASA,QAAQA,MAAME,GAAG,GAAGC,OAAOH;YAEnET,4KAAAA,EAAYW;QAEZ,2DAA2D;QAC3D,oDAAoD;QACpD,sDAAsD;QACtD,oCAAoC;QACpC,IAAIE,QAAQC,GAAG,CAACC,YAAY,KAAK,OAAQ;YACvC,IAAIL,KAAKM,IAAI,IAAIN,KAAKO,MAAM,KAAK,QAAQ;gBACvCP,KAAKO,MAAM,GAAG;YAChB;QACF;QAEA,IAAIR,iBAAiBF,SAAS,KAAK,CAACE,OAAOC;aACtC,KAAK,CAACC,KAAKD;QAEhB,MAAMQ,UAAU,IAAIpB,8KAAAA,CAAQa,KAAK;YAC/BQ,aAASpB,0LAAAA,EAA0B,IAAI,CAACoB,OAAO;YAC/CC,YAAYV,KAAKU,UAAU;QAC7B;QACA,IAAI,CAAChB,UAAU,GAAG;YAChBiB,SAAS,IAAIlB,mMAAAA,CAAe,IAAI,CAACgB,OAAO;YACxCD;YACAP,KAAKE,QAAQC,GAAG,CAACQ,0BACbX,QAD+C,kBAE/CO,QAAQK,QAAQ;QACtB;IACF;IAEA,CAAClB,OAAOmB,GAAG,CAAC,+BAA+B,GAAG;QAC5C,OAAO;YACLH,SAAS,IAAI,CAACA,OAAO;YACrBH,SAAS,IAAI,CAACA,OAAO;YACrBP,KAAK,IAAI,CAACA,GAAG;YACb,kCAAkC;YAClCc,UAAU,IAAI,CAACA,QAAQ;YACvBC,OAAO,IAAI,CAACA,KAAK;YACjBC,aAAa,IAAI,CAACA,WAAW;YAC7BC,aAAa,IAAI,CAACA,WAAW;YAC7BT,SAASU,OAAOC,WAAW,CAAC,IAAI,CAACX,OAAO;YACxCY,WAAW,IAAI,CAACA,SAAS;YACzBC,WAAW,IAAI,CAACA,SAAS;YACzBC,QAAQ,IAAI,CAACA,MAAM;YACnBC,MAAM,IAAI,CAACA,IAAI;YACfC,UAAU,IAAI,CAACA,QAAQ;YACvBC,UAAU,IAAI,CAACA,QAAQ;YACvBC,gBAAgB,IAAI,CAACA,cAAc;YACnCC,QAAQ,IAAI,CAACA,MAAM;QACrB;IACF;IAEA,IAAWjB,UAAU;QACnB,OAAO,IAAI,CAACjB,UAAU,CAACiB,OAAO;IAChC;IAEA,IAAWH,UAAU;QACnB,OAAO,IAAI,CAACd,UAAU,CAACc,OAAO;IAChC;IAEA;;;;GAIC,GACD,IAAWqB,OAAO;QAChB,MAAM,IAAIrC,iLAAAA;IACZ;IAEA;;;;GAIC,GACD,IAAWsC,KAAK;QACd,MAAM,IAAIvC,+KAAAA;IACZ;IAEA,IAAWU,MAAM;QACf,OAAO,IAAI,CAACP,UAAU,CAACO,GAAG;IAC5B;AACF","ignoreList":[0]}}, - {"offset": {"line": 18227, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/base-http/helpers.ts"],"sourcesContent":["import type { BaseNextRequest, BaseNextResponse } from './'\nimport type { NodeNextRequest, NodeNextResponse } from './node'\nimport type { WebNextRequest, WebNextResponse } from './web'\n\n/**\n * This file provides some helpers that should be used in conjunction with\n * explicit environment checks. When combined with the environment checks, it\n * will ensure that the correct typings are used as well as enable code\n * elimination.\n */\n\n/**\n * Type guard to determine if a request is a WebNextRequest. This does not\n * actually check the type of the request, but rather the runtime environment.\n * It's expected that when the runtime environment is the edge runtime, that any\n * base request is a WebNextRequest.\n */\nexport const isWebNextRequest = (req: BaseNextRequest): req is WebNextRequest =>\n process.env.NEXT_RUNTIME === 'edge'\n\n/**\n * Type guard to determine if a response is a WebNextResponse. This does not\n * actually check the type of the response, but rather the runtime environment.\n * It's expected that when the runtime environment is the edge runtime, that any\n * base response is a WebNextResponse.\n */\nexport const isWebNextResponse = (\n res: BaseNextResponse\n): res is WebNextResponse => process.env.NEXT_RUNTIME === 'edge'\n\n/**\n * Type guard to determine if a request is a NodeNextRequest. This does not\n * actually check the type of the request, but rather the runtime environment.\n * It's expected that when the runtime environment is the node runtime, that any\n * base request is a NodeNextRequest.\n */\nexport const isNodeNextRequest = (\n req: BaseNextRequest\n): req is NodeNextRequest => process.env.NEXT_RUNTIME !== 'edge'\n\n/**\n * Type guard to determine if a response is a NodeNextResponse. This does not\n * actually check the type of the response, but rather the runtime environment.\n * It's expected that when the runtime environment is the node runtime, that any\n * base response is a NodeNextResponse.\n */\nexport const isNodeNextResponse = (\n res: BaseNextResponse\n): res is NodeNextResponse => process.env.NEXT_RUNTIME !== 'edge'\n"],"names":["isWebNextRequest","req","process","env","NEXT_RUNTIME","isWebNextResponse","res","isNodeNextRequest","isNodeNextResponse"],"mappings":"AAIA;;;;;CAKC,GAED;;;;;CAKC,GACD;;;;;;;;;;AAAO,MAAMA,mBAAmB,CAACC,MAC/BC,QAAQC,GAAG,CAACC,YAAY,uBAAK,OAAM;AAQ9B,MAAMC,oBAAoB,CAC/BC,MAC2BJ,QAAQC,GAAG,CAACC,YAAY,uBAAK,OAAM;AAQzD,MAAMG,oBAAoB,CAC/BN,MAC2BC,QAAQC,GAAG,CAACC,YAAY,uBAAK,OAAM;AAQzD,MAAMI,qBAAqB,CAChCF,MAC4BJ,QAAQC,GAAG,CAACC,YAAY,uBAAK,OAAM","ignoreList":[0]}}, - {"offset": {"line": 18255, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/next-request.ts"],"sourcesContent":["import type { BaseNextRequest } from '../../../base-http'\nimport type { NodeNextRequest } from '../../../base-http/node'\nimport type { WebNextRequest } from '../../../base-http/web'\nimport type { Writable } from 'node:stream'\n\nimport { getRequestMeta } from '../../../request-meta'\nimport { fromNodeOutgoingHttpHeaders } from '../../utils'\nimport { NextRequest } from '../request'\nimport { isNodeNextRequest, isWebNextRequest } from '../../../base-http/helpers'\n\nexport const ResponseAbortedName = 'ResponseAborted'\nexport class ResponseAborted extends Error {\n public readonly name = ResponseAbortedName\n}\n\n/**\n * Creates an AbortController tied to the closing of a ServerResponse (or other\n * appropriate Writable).\n *\n * If the `close` event is fired before the `finish` event, then we'll send the\n * `abort` signal.\n */\nexport function createAbortController(response: Writable): AbortController {\n const controller = new AbortController()\n\n // If `finish` fires first, then `res.end()` has been called and the close is\n // just us finishing the stream on our side. If `close` fires first, then we\n // know the client disconnected before we finished.\n response.once('close', () => {\n if (response.writableFinished) return\n\n controller.abort(new ResponseAborted())\n })\n\n return controller\n}\n\n/**\n * Creates an AbortSignal tied to the closing of a ServerResponse (or other\n * appropriate Writable).\n *\n * This cannot be done with the request (IncomingMessage or Readable) because\n * the `abort` event will not fire if to data has been fully read (because that\n * will \"close\" the readable stream and nothing fires after that).\n */\nexport function signalFromNodeResponse(response: Writable): AbortSignal {\n const { errored, destroyed } = response\n if (errored || destroyed) {\n return AbortSignal.abort(errored ?? new ResponseAborted())\n }\n\n const { signal } = createAbortController(response)\n return signal\n}\n\nexport class NextRequestAdapter {\n public static fromBaseNextRequest(\n request: BaseNextRequest,\n signal: AbortSignal\n ): NextRequest {\n if (\n // The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME === 'edge' &&\n isWebNextRequest(request)\n ) {\n return NextRequestAdapter.fromWebNextRequest(request)\n } else if (\n // The type check here ensures that `req` is correctly typed, and the\n // environment variable check provides dead code elimination.\n process.env.NEXT_RUNTIME !== 'edge' &&\n isNodeNextRequest(request)\n ) {\n return NextRequestAdapter.fromNodeNextRequest(request, signal)\n } else {\n throw new Error('Invariant: Unsupported NextRequest type')\n }\n }\n\n public static fromNodeNextRequest(\n request: NodeNextRequest,\n signal: AbortSignal\n ): NextRequest {\n // HEAD and GET requests can not have a body.\n let body: BodyInit | null = null\n if (request.method !== 'GET' && request.method !== 'HEAD' && request.body) {\n // @ts-expect-error - this is handled by undici, when streams/web land use it instead\n body = request.body\n }\n\n let url: URL\n if (request.url.startsWith('http')) {\n url = new URL(request.url)\n } else {\n // Grab the full URL from the request metadata.\n const base = getRequestMeta(request, 'initURL')\n if (!base || !base.startsWith('http')) {\n // Because the URL construction relies on the fact that the URL provided\n // is absolute, we need to provide a base URL. We can't use the request\n // URL because it's relative, so we use a dummy URL instead.\n url = new URL(request.url, 'http://n')\n } else {\n url = new URL(request.url, base)\n }\n }\n\n return new NextRequest(url, {\n method: request.method,\n headers: fromNodeOutgoingHttpHeaders(request.headers),\n duplex: 'half',\n signal,\n // geo\n // ip\n // nextConfig\n\n // body can not be passed if request was aborted\n // or we get a Request body was disturbed error\n ...(signal.aborted\n ? {}\n : {\n body,\n }),\n })\n }\n\n public static fromWebNextRequest(request: WebNextRequest): NextRequest {\n // HEAD and GET requests can not have a body.\n let body: ReadableStream | null = null\n if (request.method !== 'GET' && request.method !== 'HEAD') {\n body = request.body\n }\n\n return new NextRequest(request.url, {\n method: request.method,\n headers: fromNodeOutgoingHttpHeaders(request.headers),\n duplex: 'half',\n signal: request.request.signal,\n // geo\n // ip\n // nextConfig\n\n // body can not be passed if request was aborted\n // or we get a Request body was disturbed error\n ...(request.request.signal.aborted\n ? {}\n : {\n body,\n }),\n })\n }\n}\n"],"names":["getRequestMeta","fromNodeOutgoingHttpHeaders","NextRequest","isNodeNextRequest","isWebNextRequest","ResponseAbortedName","ResponseAborted","Error","name","createAbortController","response","controller","AbortController","once","writableFinished","abort","signalFromNodeResponse","errored","destroyed","AbortSignal","signal","NextRequestAdapter","fromBaseNextRequest","request","process","env","NEXT_RUNTIME","fromWebNextRequest","fromNodeNextRequest","body","method","url","startsWith","URL","base","headers","duplex","aborted"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 18379, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/client-component-renderer-logger.ts"],"sourcesContent":["import type { AppPageModule } from './route-modules/app-page/module'\n\n// Combined load times for loading client components\nlet clientComponentLoadStart = 0\nlet clientComponentLoadTimes = 0\nlet clientComponentLoadCount = 0\n\nexport function wrapClientComponentLoader(\n ComponentMod: AppPageModule\n): AppPageModule['__next_app__'] {\n if (!('performance' in globalThis)) {\n return ComponentMod.__next_app__\n }\n\n return {\n require: (...args) => {\n const startTime = performance.now()\n\n if (clientComponentLoadStart === 0) {\n clientComponentLoadStart = startTime\n }\n\n try {\n clientComponentLoadCount += 1\n return ComponentMod.__next_app__.require(...args)\n } finally {\n clientComponentLoadTimes += performance.now() - startTime\n }\n },\n loadChunk: (...args) => {\n const startTime = performance.now()\n const result = ComponentMod.__next_app__.loadChunk(...args)\n // Avoid wrapping `loadChunk`'s result in an extra promise in case something like React depends on its identity.\n // We only need to know when it's settled.\n result.finally(() => {\n clientComponentLoadTimes += performance.now() - startTime\n })\n return result\n },\n }\n}\n\nexport function getClientComponentLoaderMetrics(\n options: { reset?: boolean } = {}\n) {\n const metrics =\n clientComponentLoadStart === 0\n ? undefined\n : {\n clientComponentLoadStart,\n clientComponentLoadTimes,\n clientComponentLoadCount,\n }\n\n if (options.reset) {\n clientComponentLoadStart = 0\n clientComponentLoadTimes = 0\n clientComponentLoadCount = 0\n }\n\n return metrics\n}\n"],"names":["clientComponentLoadStart","clientComponentLoadTimes","clientComponentLoadCount","wrapClientComponentLoader","ComponentMod","globalThis","__next_app__","require","args","startTime","performance","now","loadChunk","result","finally","getClientComponentLoaderMetrics","options","metrics","undefined","reset"],"mappings":";;;;;;AAEA,oDAAoD;AACpD,IAAIA,2BAA2B;AAC/B,IAAIC,2BAA2B;AAC/B,IAAIC,2BAA2B;AAExB,SAASC,0BACdC,YAA2B;IAE3B,IAAI,CAAE,CAAA,iBAAiBC,UAAS,GAAI;QAClC,OAAOD,aAAaE,YAAY;IAClC;IAEA,OAAO;QACLC,SAAS,CAAC,GAAGC;YACX,MAAMC,YAAYC,YAAYC,GAAG;YAEjC,IAAIX,6BAA6B,GAAG;gBAClCA,2BAA2BS;YAC7B;YAEA,IAAI;gBACFP,4BAA4B;gBAC5B,OAAOE,aAAaE,YAAY,CAACC,OAAO,IAAIC;YAC9C,SAAU;gBACRP,4BAA4BS,YAAYC,GAAG,KAAKF;YAClD;QACF;QACAG,WAAW,CAAC,GAAGJ;YACb,MAAMC,YAAYC,YAAYC,GAAG;YACjC,MAAME,SAAST,aAAaE,YAAY,CAACM,SAAS,IAAIJ;YACtD,gHAAgH;YAChH,0CAA0C;YAC1CK,OAAOC,OAAO,CAAC;gBACbb,4BAA4BS,YAAYC,GAAG,KAAKF;YAClD;YACA,OAAOI;QACT;IACF;AACF;AAEO,SAASE,gCACdC,UAA+B,CAAC,CAAC;IAEjC,MAAMC,UACJjB,6BAA6B,IACzBkB,YACA;QACElB;QACAC;QACAC;IACF;IAEN,IAAIc,QAAQG,KAAK,EAAE;QACjBnB,2BAA2B;QAC3BC,2BAA2B;QAC3BC,2BAA2B;IAC7B;IAEA,OAAOe;AACT","ignoreList":[0]}}, - {"offset": {"line": 18435, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/pipe-readable.ts"],"sourcesContent":["import type { ServerResponse } from 'node:http'\n\nimport {\n ResponseAbortedName,\n createAbortController,\n} from './web/spec-extension/adapters/next-request'\nimport { DetachedPromise } from '../lib/detached-promise'\nimport { getTracer } from './lib/trace/tracer'\nimport { NextNodeServerSpan } from './lib/trace/constants'\nimport { getClientComponentLoaderMetrics } from './client-component-renderer-logger'\n\nexport function isAbortError(e: any): e is Error & { name: 'AbortError' } {\n return e?.name === 'AbortError' || e?.name === ResponseAbortedName\n}\n\nfunction createWriterFromResponse(\n res: ServerResponse,\n waitUntilForEnd?: Promise\n): WritableStream {\n let started = false\n\n // Create a promise that will resolve once the response has drained. See\n // https://nodejs.org/api/stream.html#stream_event_drain\n let drained = new DetachedPromise()\n function onDrain() {\n drained.resolve()\n }\n res.on('drain', onDrain)\n\n // If the finish event fires, it means we shouldn't block and wait for the\n // drain event.\n res.once('close', () => {\n res.off('drain', onDrain)\n drained.resolve()\n })\n\n // Create a promise that will resolve once the response has finished. See\n // https://nodejs.org/api/http.html#event-finish_1\n const finished = new DetachedPromise()\n res.once('finish', () => {\n finished.resolve()\n })\n\n // Create a writable stream that will write to the response.\n return new WritableStream({\n write: async (chunk) => {\n // You'd think we'd want to use `start` instead of placing this in `write`\n // but this ensures that we don't actually flush the headers until we've\n // started writing chunks.\n if (!started) {\n started = true\n\n if (\n 'performance' in globalThis &&\n process.env.NEXT_OTEL_PERFORMANCE_PREFIX\n ) {\n const metrics = getClientComponentLoaderMetrics()\n if (metrics) {\n performance.measure(\n `${process.env.NEXT_OTEL_PERFORMANCE_PREFIX}:next-client-component-loading`,\n {\n start: metrics.clientComponentLoadStart,\n end:\n metrics.clientComponentLoadStart +\n metrics.clientComponentLoadTimes,\n }\n )\n }\n }\n\n res.flushHeaders()\n getTracer().trace(\n NextNodeServerSpan.startResponse,\n {\n spanName: 'start response',\n },\n () => undefined\n )\n }\n\n try {\n const ok = res.write(chunk)\n\n // Added by the `compression` middleware, this is a function that will\n // flush the partially-compressed response to the client.\n if ('flush' in res && typeof res.flush === 'function') {\n res.flush()\n }\n\n // If the write returns false, it means there's some backpressure, so\n // wait until it's streamed before continuing.\n if (!ok) {\n await drained.promise\n\n // Reset the drained promise so that we can wait for the next drain event.\n drained = new DetachedPromise()\n }\n } catch (err) {\n res.end()\n throw new Error('failed to write chunk to response', { cause: err })\n }\n },\n abort: (err) => {\n if (res.writableFinished) return\n\n res.destroy(err)\n },\n close: async () => {\n // if a waitUntil promise was passed, wait for it to resolve before\n // ending the response.\n if (waitUntilForEnd) {\n await waitUntilForEnd\n }\n\n if (res.writableFinished) return\n\n res.end()\n return finished.promise\n },\n })\n}\n\nexport async function pipeToNodeResponse(\n readable: ReadableStream,\n res: ServerResponse,\n waitUntilForEnd?: Promise\n) {\n try {\n // If the response has already errored, then just return now.\n const { errored, destroyed } = res\n if (errored || destroyed) return\n\n // Create a new AbortController so that we can abort the readable if the\n // client disconnects.\n const controller = createAbortController(res)\n\n const writer = createWriterFromResponse(res, waitUntilForEnd)\n\n await readable.pipeTo(writer, { signal: controller.signal })\n } catch (err: any) {\n // If this isn't related to an abort error, re-throw it.\n if (isAbortError(err)) return\n\n throw new Error('failed to pipe response', { cause: err })\n }\n}\n"],"names":["ResponseAbortedName","createAbortController","DetachedPromise","getTracer","NextNodeServerSpan","getClientComponentLoaderMetrics","isAbortError","e","name","createWriterFromResponse","res","waitUntilForEnd","started","drained","onDrain","resolve","on","once","off","finished","WritableStream","write","chunk","globalThis","process","env","NEXT_OTEL_PERFORMANCE_PREFIX","metrics","performance","measure","start","clientComponentLoadStart","end","clientComponentLoadTimes","flushHeaders","trace","startResponse","spanName","undefined","ok","flush","promise","err","Error","cause","abort","writableFinished","destroy","close","pipeToNodeResponse","readable","errored","destroyed","controller","writer","pipeTo","signal"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 18566, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-status-code.ts"],"sourcesContent":["export enum RedirectStatusCode {\n SeeOther = 303,\n TemporaryRedirect = 307,\n PermanentRedirect = 308,\n}\n"],"names":["RedirectStatusCode"],"mappings":";;;;AAAO,IAAKA,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;;WAAAA;MAIX","ignoreList":[0]}}, - {"offset": {"line": 18580, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-error.ts"],"sourcesContent":["import { RedirectStatusCode } from './redirect-status-code'\n\nexport const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'\n\nexport enum RedirectType {\n push = 'push',\n replace = 'replace',\n}\n\nexport type RedirectError = Error & {\n digest: `${typeof REDIRECT_ERROR_CODE};${RedirectType};${string};${RedirectStatusCode};`\n}\n\n/**\n * Checks an error to determine if it's an error generated by the\n * `redirect(url)` helper.\n *\n * @param error the error that may reference a redirect error\n * @returns true if the error is a redirect error\n */\nexport function isRedirectError(error: unknown): error is RedirectError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n\n const digest = error.digest.split(';')\n const [errorCode, type] = digest\n const destination = digest.slice(2, -2).join(';')\n const status = digest.at(-2)\n\n const statusCode = Number(status)\n\n return (\n errorCode === REDIRECT_ERROR_CODE &&\n (type === 'replace' || type === 'push') &&\n typeof destination === 'string' &&\n !isNaN(statusCode) &&\n statusCode in RedirectStatusCode\n )\n}\n"],"names":["RedirectStatusCode","REDIRECT_ERROR_CODE","RedirectType","isRedirectError","error","digest","split","errorCode","type","destination","slice","join","status","at","statusCode","Number","isNaN"],"mappings":";;;;;;;;AAAA,SAASA,kBAAkB,QAAQ,yBAAwB;;AAEpD,MAAMC,sBAAsB,gBAAe;AAE3C,IAAKC,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;WAAAA;MAGX;AAaM,SAASC,gBAAgBC,KAAc;IAC5C,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IAEA,MAAMA,SAASD,MAAMC,MAAM,CAACC,KAAK,CAAC;IAClC,MAAM,CAACC,WAAWC,KAAK,GAAGH;IAC1B,MAAMI,cAAcJ,OAAOK,KAAK,CAAC,GAAG,CAAC,GAAGC,IAAI,CAAC;IAC7C,MAAMC,SAASP,OAAOQ,EAAE,CAAC,CAAC;IAE1B,MAAMC,aAAaC,OAAOH;IAE1B,OACEL,cAAcN,uBACbO,CAAAA,SAAS,aAAaA,SAAS,MAAK,KACrC,OAAOC,gBAAgB,YACvB,CAACO,MAAMF,eACPA,cAAcd,+MAAAA;AAElB","ignoreList":[0]}}, - {"offset": {"line": 18611, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/is-next-router-error.ts"],"sourcesContent":["import {\n isHTTPAccessFallbackError,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\nimport { isRedirectError, type RedirectError } from './redirect-error'\n\n/**\n * Returns true if the error is a navigation signal error. These errors are\n * thrown by user code to perform navigation operations and interrupt the React\n * render.\n */\nexport function isNextRouterError(\n error: unknown\n): error is RedirectError | HTTPAccessFallbackError {\n return isRedirectError(error) || isHTTPAccessFallbackError(error)\n}\n"],"names":["isHTTPAccessFallbackError","isRedirectError","isNextRouterError","error"],"mappings":";;;;AAAA,SACEA,yBAAyB,QAEpB,8CAA6C;AACpD,SAASC,eAAe,QAA4B,mBAAkB;;;AAO/D,SAASC,kBACdC,KAAc;IAEd,WAAOF,mMAAAA,EAAgBE,cAAUH,oPAAAA,EAA0BG;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 18626, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/is-plain-object.ts"],"sourcesContent":["export function getObjectClassLabel(value: any): string {\n return Object.prototype.toString.call(value)\n}\n\nexport function isPlainObject(value: any): boolean {\n if (getObjectClassLabel(value) !== '[object Object]') {\n return false\n }\n\n const prototype = Object.getPrototypeOf(value)\n\n /**\n * this used to be previously:\n *\n * `return prototype === null || prototype === Object.prototype`\n *\n * but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail.\n *\n * It was changed to the current implementation since it's resilient to serialization.\n */\n return prototype === null || prototype.hasOwnProperty('isPrototypeOf')\n}\n"],"names":["getObjectClassLabel","value","Object","prototype","toString","call","isPlainObject","getPrototypeOf","hasOwnProperty"],"mappings":";;;;;;AAAO,SAASA,oBAAoBC,KAAU;IAC5C,OAAOC,OAAOC,SAAS,CAACC,QAAQ,CAACC,IAAI,CAACJ;AACxC;AAEO,SAASK,cAAcL,KAAU;IACtC,IAAID,oBAAoBC,WAAW,mBAAmB;QACpD,OAAO;IACT;IAEA,MAAME,YAAYD,OAAOK,cAAc,CAACN;IAExC;;;;;;;;GAQC,GACD,OAAOE,cAAc,QAAQA,UAAUK,cAAc,CAAC;AACxD","ignoreList":[0]}}, - {"offset": {"line": 18654, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/is-error.ts"],"sourcesContent":["import { isPlainObject } from '../shared/lib/is-plain-object'\n\n// We allow some additional attached properties for Next.js errors\nexport interface NextError extends Error {\n type?: string\n page?: string\n code?: string | number\n cancelled?: boolean\n digest?: number\n}\n\n/**\n * This is a safe stringify function that handles circular references.\n * We're using a simpler version here to avoid introducing\n * the dependency `safe-stable-stringify` into production bundle.\n *\n * This helper is used both in development and production.\n */\nfunction safeStringifyLite(obj: any) {\n const seen = new WeakSet()\n\n return JSON.stringify(obj, (_key, value) => {\n // If value is an object and already seen, replace with \"[Circular]\"\n if (typeof value === 'object' && value !== null) {\n if (seen.has(value)) {\n return '[Circular]'\n }\n seen.add(value)\n }\n return value\n })\n}\n\n/**\n * Checks whether the given value is a NextError.\n * This can be used to print a more detailed error message with properties like `code` & `digest`.\n */\nexport default function isError(err: unknown): err is NextError {\n return (\n typeof err === 'object' && err !== null && 'name' in err && 'message' in err\n )\n}\n\nexport function getProperError(err: unknown): Error {\n if (isError(err)) {\n return err\n }\n\n if (process.env.NODE_ENV === 'development') {\n // provide better error for case where `throw undefined`\n // is called in development\n if (typeof err === 'undefined') {\n return new Error(\n 'An undefined error was thrown, ' +\n 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'\n )\n }\n\n if (err === null) {\n return new Error(\n 'A null error was thrown, ' +\n 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'\n )\n }\n }\n\n return new Error(isPlainObject(err) ? safeStringifyLite(err) : err + '')\n}\n"],"names":["isPlainObject","safeStringifyLite","obj","seen","WeakSet","JSON","stringify","_key","value","has","add","isError","err","getProperError","process","env","NODE_ENV","Error"],"mappings":";;;;;;AAAA,SAASA,aAAa,QAAQ,gCAA+B;;AAW7D;;;;;;CAMC,GACD,SAASC,kBAAkBC,GAAQ;IACjC,MAAMC,OAAO,IAAIC;IAEjB,OAAOC,KAAKC,SAAS,CAACJ,KAAK,CAACK,MAAMC;QAChC,oEAAoE;QACpE,IAAI,OAAOA,UAAU,YAAYA,UAAU,MAAM;YAC/C,IAAIL,KAAKM,GAAG,CAACD,QAAQ;gBACnB,OAAO;YACT;YACAL,KAAKO,GAAG,CAACF;QACX;QACA,OAAOA;IACT;AACF;AAMe,SAASG,QAAQC,GAAY;IAC1C,OACE,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,UAAUA,OAAO,aAAaA;AAE7E;AAEO,SAASC,eAAeD,GAAY;IACzC,IAAID,QAAQC,MAAM;QAChB,OAAOA;IACT;IAEA,IAAIE,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAe;QAC1C,wDAAwD;QACxD,2BAA2B;QAC3B,IAAI,OAAOJ,QAAQ,aAAa;YAC9B,OAAO,OAAA,cAGN,CAHM,IAAIK,MACT,oCACE,6EAFG,qBAAA;uBAAA;4BAAA;8BAAA;YAGP;QACF;QAEA,IAAIL,QAAQ,MAAM;YAChB,OAAO,OAAA,cAGN,CAHM,IAAIK,MACT,8BACE,6EAFG,qBAAA;uBAAA;4BAAA;8BAAA;YAGP;QACF;IACF;IAEA,OAAO,OAAA,cAAiE,CAAjE,IAAIA,UAAMjB,8LAAAA,EAAcY,OAAOX,kBAAkBW,OAAOA,MAAM,KAA9D,qBAAA;eAAA;oBAAA;sBAAA;IAAgE;AACzE","ignoreList":[0]}}, - {"offset": {"line": 18716, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/error-telemetry-utils.ts"],"sourcesContent":["const ERROR_CODE_DELIMITER = '@'\n\n/**\n * Augments the digest field of errors thrown in React Server Components (RSC) with an error code.\n * Since RSC errors can only be serialized through the digest field, this provides a way to include\n * an additional error code that can be extracted client-side via `extractNextErrorCode`.\n *\n * The error code is appended to the digest string with a semicolon separator, allowing it to be\n * parsed out later while preserving the original digest value.\n */\nexport const createDigestWithErrorCode = (\n thrownValue: unknown,\n originalDigest: string\n): string => {\n if (\n typeof thrownValue === 'object' &&\n thrownValue !== null &&\n '__NEXT_ERROR_CODE' in thrownValue\n ) {\n return `${originalDigest}${ERROR_CODE_DELIMITER}${thrownValue.__NEXT_ERROR_CODE}`\n }\n return originalDigest\n}\n\nexport const extractNextErrorCode = (error: unknown): string | undefined => {\n if (\n typeof error === 'object' &&\n error !== null &&\n '__NEXT_ERROR_CODE' in error &&\n typeof error.__NEXT_ERROR_CODE === 'string'\n ) {\n return error.__NEXT_ERROR_CODE\n }\n\n if (\n typeof error === 'object' &&\n error !== null &&\n 'digest' in error &&\n typeof error.digest === 'string'\n ) {\n const segments = error.digest.split(ERROR_CODE_DELIMITER)\n const errorCode = segments.find((segment) => segment.startsWith('E'))\n return errorCode\n }\n\n return undefined\n}\n"],"names":["ERROR_CODE_DELIMITER","createDigestWithErrorCode","thrownValue","originalDigest","__NEXT_ERROR_CODE","extractNextErrorCode","error","digest","segments","split","errorCode","find","segment","startsWith","undefined"],"mappings":";;;;;;AAAA,MAAMA,uBAAuB;AAUtB,MAAMC,4BAA4B,CACvCC,aACAC;IAEA,IACE,OAAOD,gBAAgB,YACvBA,gBAAgB,QAChB,uBAAuBA,aACvB;QACA,OAAO,GAAGC,iBAAiBH,uBAAuBE,YAAYE,iBAAiB,EAAE;IACnF;IACA,OAAOD;AACT,EAAC;AAEM,MAAME,uBAAuB,CAACC;IACnC,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,uBAAuBA,SACvB,OAAOA,MAAMF,iBAAiB,KAAK,UACnC;QACA,OAAOE,MAAMF,iBAAiB;IAChC;IAEA,IACE,OAAOE,UAAU,YACjBA,UAAU,QACV,YAAYA,SACZ,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,MAAMC,WAAWF,MAAMC,MAAM,CAACE,KAAK,CAACT;QACpC,MAAMU,YAAYF,SAASG,IAAI,CAAC,CAACC,UAAYA,QAAQC,UAAU,CAAC;QAChE,OAAOH;IACT;IAEA,OAAOI;AACT,EAAC","ignoreList":[0]}}, - {"offset": {"line": 18744, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/react-large-shell-error.ts"],"sourcesContent":["// TODO: isWellKnownError -> isNextInternalError\n// isReactLargeShellError -> isWarning\nexport function isReactLargeShellError(\n error: unknown\n): error is Error & { digest?: string } {\n return (\n typeof error === 'object' &&\n error !== null &&\n 'message' in error &&\n typeof error.message === 'string' &&\n error.message.startsWith('This rendered a large document (>')\n )\n}\n"],"names":["isReactLargeShellError","error","message","startsWith"],"mappings":"AAAA,gDAAgD;AAChD,sCAAsC;;;;;AAC/B,SAASA,uBACdC,KAAc;IAEd,OACE,OAAOA,UAAU,YACjBA,UAAU,QACV,aAAaA,SACb,OAAOA,MAAMC,OAAO,KAAK,YACzBD,MAAMC,OAAO,CAACC,UAAU,CAAC;AAE7B","ignoreList":[0]}}, - {"offset": {"line": 18757, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/create-error-handler.tsx"],"sourcesContent":["import type { ErrorInfo } from 'react'\nimport stringHash from 'next/dist/compiled/string-hash'\n\nimport { formatServerError } from '../../lib/format-server-error'\nimport { SpanStatusCode, getTracer } from '../lib/trace/tracer'\n\nimport { isAbortError } from '../pipe-readable'\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { isDynamicServerError } from '../../client/components/hooks-server-context'\nimport { isNextRouterError } from '../../client/components/is-next-router-error'\nimport { isPrerenderInterruptedError } from './dynamic-rendering'\nimport { getProperError } from '../../lib/is-error'\nimport { createDigestWithErrorCode } from '../../lib/error-telemetry-utils'\nimport { isReactLargeShellError } from './react-large-shell-error'\n\ndeclare global {\n var __next_log_error__: undefined | ((err: unknown) => void)\n}\n\ntype RSCErrorHandler = (err: unknown) => string | undefined\ntype SSRErrorHandler = (\n err: unknown,\n errorInfo?: ErrorInfo\n) => string | undefined\n\nexport type DigestedError = Error & { digest: string; environmentName?: string }\n\n/**\n * Returns a digest for well-known Next.js errors, otherwise `undefined`. If a\n * digest is returned this also means that the error does not need to be\n * reported.\n */\nexport function getDigestForWellKnownError(error: unknown): string | undefined {\n // If we're bailing out to CSR, we don't need to log the error.\n if (isBailoutToCSRError(error)) return error.digest\n\n // If this is a navigation error, we don't need to log the error.\n if (isNextRouterError(error)) return error.digest\n\n // If this error occurs, we know that we should be stopping the static\n // render. This is only thrown in static generation when PPR is not enabled,\n // which causes the whole page to be marked as dynamic. We don't need to\n // tell the user about this error, as it's not actionable.\n if (isDynamicServerError(error)) return error.digest\n\n // If this is a prerender interrupted error, we don't need to log the error.\n if (isPrerenderInterruptedError(error)) return error.digest\n\n return undefined\n}\n\nexport function createReactServerErrorHandler(\n shouldFormatError: boolean,\n isNextExport: boolean,\n reactServerErrors: Map,\n onReactServerRenderError: (err: DigestedError, silenceLog: boolean) => void,\n spanToRecordOn?: any\n): RSCErrorHandler {\n return (thrownValue: unknown) => {\n if (typeof thrownValue === 'string') {\n // TODO-APP: look at using webcrypto instead. Requires a promise to be awaited.\n return stringHash(thrownValue).toString()\n }\n\n // If the response was closed, we don't need to log the error.\n if (isAbortError(thrownValue)) return\n\n const digest = getDigestForWellKnownError(thrownValue)\n\n if (digest) {\n return digest\n }\n\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue)\n return undefined\n }\n\n let err = getProperError(thrownValue) as DigestedError\n let silenceLog = false\n\n // If the error already has a digest, respect the original digest,\n // so it won't get re-generated into another new error.\n if (err.digest) {\n if (\n process.env.NODE_ENV === 'production' &&\n reactServerErrors.has(err.digest)\n ) {\n // This error is likely an obfuscated error from another react-server\n // environment (e.g. 'use cache'). We recover the original error here\n // for reporting purposes.\n err = reactServerErrors.get(err.digest)!\n // We don't log it again though, as it was already logged in the\n // original environment.\n silenceLog = true\n } else {\n // Either we're in development (where we want to keep the transported\n // error with environmentName), or the error is not in reactServerErrors\n // but has a digest from other means. Keep the error as-is.\n }\n } else {\n err.digest = createDigestWithErrorCode(\n err,\n // TODO-APP: look at using webcrypto instead. Requires a promise to be awaited.\n stringHash(err.message + (err.stack || '')).toString()\n )\n }\n\n // @TODO by putting this here and not at the top it is possible that\n // we don't error the build in places we actually expect to\n if (!reactServerErrors.has(err.digest)) {\n reactServerErrors.set(err.digest, err)\n }\n\n // Format server errors in development to add more helpful error messages\n if (shouldFormatError) {\n formatServerError(err)\n }\n\n // Don't log the suppressed error during export\n if (\n !(\n isNextExport &&\n err?.message?.includes(\n 'The specific message is omitted in production builds to avoid leaking sensitive details.'\n )\n )\n ) {\n // Record exception on the provided span if available, otherwise try active span.\n const span = spanToRecordOn ?? getTracer().getActiveScopeSpan()\n if (span) {\n span.recordException(err)\n span.setAttribute('error.type', err.name)\n span.setStatus({\n code: SpanStatusCode.ERROR,\n message: err.message,\n })\n }\n\n onReactServerRenderError(err, silenceLog)\n }\n\n return err.digest\n }\n}\n\nexport function createHTMLErrorHandler(\n shouldFormatError: boolean,\n isNextExport: boolean,\n reactServerErrors: Map,\n allCapturedErrors: Array,\n onHTMLRenderSSRError: (err: DigestedError, errorInfo?: ErrorInfo) => void,\n spanToRecordOn?: any\n): SSRErrorHandler {\n return (thrownValue: unknown, errorInfo?: ErrorInfo) => {\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue)\n return undefined\n }\n\n let isSSRError = true\n\n allCapturedErrors.push(thrownValue)\n\n // If the response was closed, we don't need to log the error.\n if (isAbortError(thrownValue)) return\n\n const digest = getDigestForWellKnownError(thrownValue)\n\n if (digest) {\n return digest\n }\n\n const err = getProperError(thrownValue) as DigestedError\n\n // If the error already has a digest, respect the original digest,\n // so it won't get re-generated into another new error.\n if (err.digest) {\n if (reactServerErrors.has(err.digest)) {\n // This error is likely an obfuscated error from react-server.\n // We recover the original error here.\n thrownValue = reactServerErrors.get(err.digest)\n isSSRError = false\n } else {\n // The error is not from react-server but has a digest\n // from other means so we don't need to produce a new one\n }\n } else {\n err.digest = createDigestWithErrorCode(\n err,\n stringHash(\n err.message + (errorInfo?.componentStack || err.stack || '')\n ).toString()\n )\n }\n\n // Format server errors in development to add more helpful error messages\n if (shouldFormatError) {\n formatServerError(err)\n }\n\n // Don't log the suppressed error during export\n if (\n !(\n isNextExport &&\n err?.message?.includes(\n 'The specific message is omitted in production builds to avoid leaking sensitive details.'\n )\n )\n ) {\n // HTML errors contain RSC errors as well, filter them out before reporting\n if (isSSRError) {\n // Record exception on the provided span if available, otherwise try active span.\n const span = spanToRecordOn ?? getTracer().getActiveScopeSpan()\n if (span) {\n span.recordException(err)\n span.setAttribute('error.type', err.name)\n span.setStatus({\n code: SpanStatusCode.ERROR,\n message: err.message,\n })\n }\n\n onHTMLRenderSSRError(err, errorInfo)\n }\n }\n\n return err.digest\n }\n}\n\nexport function isUserLandError(err: any): boolean {\n return (\n !isAbortError(err) && !isBailoutToCSRError(err) && !isNextRouterError(err)\n )\n}\n"],"names":["stringHash","formatServerError","SpanStatusCode","getTracer","isAbortError","isBailoutToCSRError","isDynamicServerError","isNextRouterError","isPrerenderInterruptedError","getProperError","createDigestWithErrorCode","isReactLargeShellError","getDigestForWellKnownError","error","digest","undefined","createReactServerErrorHandler","shouldFormatError","isNextExport","reactServerErrors","onReactServerRenderError","spanToRecordOn","thrownValue","err","toString","console","silenceLog","process","env","NODE_ENV","has","get","message","stack","set","includes","span","getActiveScopeSpan","recordException","setAttribute","name","setStatus","code","ERROR","createHTMLErrorHandler","allCapturedErrors","onHTMLRenderSSRError","errorInfo","isSSRError","push","componentStack","isUserLandError"],"mappings":";;;;;;;;;;AACA,OAAOA,gBAAgB,iCAAgC;AAEvD,SAASC,iBAAiB,QAAQ,gCAA+B;AACjE,SAASC,cAAc,EAAEC,SAAS,QAAQ,sBAAqB;AAE/D,SAASC,YAAY,QAAQ,mBAAkB;AAC/C,SAASC,mBAAmB,QAAQ,+CAA8C;AAClF,SAASC,oBAAoB,QAAQ,+CAA8C;AACnF,SAASC,iBAAiB,QAAQ,+CAA8C;AAChF,SAASC,2BAA2B,QAAQ,sBAAqB;AACjE,SAASC,cAAc,QAAQ,qBAAoB;AACnD,SAASC,yBAAyB,QAAQ,kCAAiC;AAC3E,SAASC,sBAAsB,QAAQ,4BAA2B;;;;;;;;;;;;AAmB3D,SAASC,2BAA2BC,KAAc;IACvD,+DAA+D;IAC/D,QAAIR,sNAAAA,EAAoBQ,QAAQ,OAAOA,MAAMC,MAAM;IAEnD,iEAAiE;IACjE,QAAIP,iNAAAA,EAAkBM,QAAQ,OAAOA,MAAMC,MAAM;IAEjD,sEAAsE;IACtE,4EAA4E;IAC5E,wEAAwE;IACxE,0DAA0D;IAC1D,QAAIR,iNAAAA,EAAqBO,QAAQ,OAAOA,MAAMC,MAAM;IAEpD,4EAA4E;IAC5E,QAAIN,qNAAAA,EAA4BK,QAAQ,OAAOA,MAAMC,MAAM;IAE3D,OAAOC;AACT;AAEO,SAASC,8BACdC,iBAA0B,EAC1BC,YAAqB,EACrBC,iBAA6C,EAC7CC,wBAA2E,EAC3EC,cAAoB;IAEpB,OAAO,CAACC;YAkEFC;QAjEJ,IAAI,OAAOD,gBAAgB,UAAU;YACnC,+EAA+E;YAC/E,WAAOtB,8KAAAA,EAAWsB,aAAaE,QAAQ;QACzC;QAEA,8DAA8D;QAC9D,QAAIpB,iLAAAA,EAAakB,cAAc;QAE/B,MAAMR,SAASF,2BAA2BU;QAE1C,IAAIR,QAAQ;YACV,OAAOA;QACT;QAEA,QAAIH,4NAAAA,EAAuBW,cAAc;YACvC,kBAAkB;YAClBG,QAAQZ,KAAK,CAACS;YACd,OAAOP;QACT;QAEA,IAAIQ,UAAMd,2KAAAA,EAAea;QACzB,IAAII,aAAa;QAEjB,kEAAkE;QAClE,uDAAuD;QACvD,IAAIH,IAAIT,MAAM,EAAE;YACd,IACEa,QAAQC,GAAG,CAACC,QAAQ,gCAAK,gBACzBV,kBAAkBW,GAAG,CAACP,IAAIT,MAAM,GAChC;;iBAQK;YACL,qEAAqE;YACrE,wEAAwE;YACxE,2DAA2D;YAC7D;QACF,OAAO;YACLS,IAAIT,MAAM,OAAGJ,sMAAAA,EACXa,KACA,IACAvB,2EAD+E,mGAC/EA,EAAWuB,IAAIS,OAAO,GAAIT,CAAAA,IAAIU,KAAK,IAAI,EAAC,GAAIT,QAAQ;QAExD;QAEA,oEAAoE;QACpE,2DAA2D;QAC3D,IAAI,CAACL,kBAAkBW,GAAG,CAACP,IAAIT,MAAM,GAAG;YACtCK,kBAAkBe,GAAG,CAACX,IAAIT,MAAM,EAAES;QACpC;QAEA,yEAAyE;QACzE,IAAIN,mBAAmB;gBACrBhB,4LAAAA,EAAkBsB;QACpB;QAEA,+CAA+C;QAC/C,IACE,CACEL,CAAAA,gBAAAA,CACAK,OAAAA,OAAAA,KAAAA,IAAAA,CAAAA,eAAAA,IAAKS,OAAO,KAAA,OAAA,KAAA,IAAZT,aAAcY,QAAQ,CACpB,2FAAA,CACF,GAEF;YACA,iFAAiF;YACjF,MAAMC,OAAOf,sBAAkBlB,oLAAAA,IAAYkC,kBAAkB;YAC7D,IAAID,MAAM;gBACRA,KAAKE,eAAe,CAACf;gBACrBa,KAAKG,YAAY,CAAC,cAAchB,IAAIiB,IAAI;gBACxCJ,KAAKK,SAAS,CAAC;oBACbC,MAAMxC,yLAAAA,CAAeyC,KAAK;oBAC1BX,SAAST,IAAIS,OAAO;gBACtB;YACF;YAEAZ,yBAAyBG,KAAKG;QAChC;QAEA,OAAOH,IAAIT,MAAM;IACnB;AACF;AAEO,SAAS8B,uBACd3B,iBAA0B,EAC1BC,YAAqB,EACrBC,iBAA6C,EAC7C0B,iBAAiC,EACjCC,oBAAyE,EACzEzB,cAAoB;IAEpB,OAAO,CAACC,aAAsByB;YAoDxBxB;QAnDJ,QAAIZ,4NAAAA,EAAuBW,cAAc;YACvC,kBAAkB;YAClBG,QAAQZ,KAAK,CAACS;YACd,OAAOP;QACT;QAEA,IAAIiC,aAAa;QAEjBH,kBAAkBI,IAAI,CAAC3B;QAEvB,8DAA8D;QAC9D,QAAIlB,iLAAAA,EAAakB,cAAc;QAE/B,MAAMR,SAASF,2BAA2BU;QAE1C,IAAIR,QAAQ;YACV,OAAOA;QACT;QAEA,MAAMS,UAAMd,2KAAAA,EAAea;QAE3B,kEAAkE;QAClE,uDAAuD;QACvD,IAAIC,IAAIT,MAAM,EAAE;YACd,IAAIK,kBAAkBW,GAAG,CAACP,IAAIT,MAAM,GAAG;gBACrC,8DAA8D;gBAC9D,sCAAsC;gBACtCQ,cAAcH,kBAAkBY,GAAG,CAACR,IAAIT,MAAM;gBAC9CkC,aAAa;YACf,OAAO;YACL,sDAAsD;YACtD,yDAAyD;YAC3D;QACF,OAAO;YACLzB,IAAIT,MAAM,OAAGJ,sMAAAA,EACXa,SACAvB,8KAAAA,EACEuB,IAAIS,OAAO,GAAIe,CAAAA,CAAAA,aAAAA,OAAAA,KAAAA,IAAAA,UAAWG,cAAc,KAAI3B,IAAIU,KAAK,IAAI,EAAC,GAC1DT,QAAQ;QAEd;QAEA,yEAAyE;QACzE,IAAIP,mBAAmB;gBACrBhB,4LAAAA,EAAkBsB;QACpB;QAEA,+CAA+C;QAC/C,IACE,CACEL,CAAAA,gBAAAA,CACAK,OAAAA,OAAAA,KAAAA,IAAAA,CAAAA,eAAAA,IAAKS,OAAO,KAAA,OAAA,KAAA,IAAZT,aAAcY,QAAQ,CACpB,2FAAA,CACF,GAEF;YACA,2EAA2E;YAC3E,IAAIa,YAAY;gBACd,iFAAiF;gBACjF,MAAMZ,OAAOf,sBAAkBlB,oLAAAA,IAAYkC,kBAAkB;gBAC7D,IAAID,MAAM;oBACRA,KAAKE,eAAe,CAACf;oBACrBa,KAAKG,YAAY,CAAC,cAAchB,IAAIiB,IAAI;oBACxCJ,KAAKK,SAAS,CAAC;wBACbC,MAAMxC,yLAAAA,CAAeyC,KAAK;wBAC1BX,SAAST,IAAIS,OAAO;oBACtB;gBACF;gBAEAc,qBAAqBvB,KAAKwB;YAC5B;QACF;QAEA,OAAOxB,IAAIT,MAAM;IACnB;AACF;AAEO,SAASqC,gBAAgB5B,GAAQ;IACtC,OACE,KAACnB,iLAAAA,EAAamB,QAAQ,KAAClB,sNAAAA,EAAoBkB,QAAQ,KAAChB,iNAAAA,EAAkBgB;AAE1E","ignoreList":[0]}}, - {"offset": {"line": 18925, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/prospective-render-utils.ts"],"sourcesContent":["import { getDigestForWellKnownError } from './create-error-handler'\nimport { isReactLargeShellError } from './react-large-shell-error'\n\nexport enum Phase {\n ProspectiveRender = 'the prospective render',\n SegmentCollection = 'segment collection',\n}\n\nexport function printDebugThrownValueForProspectiveRender(\n thrownValue: unknown,\n route: string,\n phase: Phase\n) {\n // We don't need to print well-known Next.js errors.\n if (getDigestForWellKnownError(thrownValue)) {\n return\n }\n\n if (isReactLargeShellError(thrownValue)) {\n // TODO: Aggregate\n console.error(thrownValue)\n return undefined\n }\n\n let message: undefined | string\n if (\n typeof thrownValue === 'object' &&\n thrownValue !== null &&\n typeof (thrownValue as any).message === 'string'\n ) {\n message = (thrownValue as any).message\n if (typeof (thrownValue as any).stack === 'string') {\n const originalErrorStack: string = (thrownValue as any).stack\n const stackStart = originalErrorStack.indexOf('\\n')\n if (stackStart > -1) {\n const error = new Error(\n `Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled.\n \nOriginal Error: ${message}`\n )\n error.stack =\n 'Error: ' + error.message + originalErrorStack.slice(stackStart)\n console.error(error)\n return\n }\n }\n } else if (typeof thrownValue === 'string') {\n message = thrownValue\n }\n\n if (message) {\n console.error(`Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. No stack was provided.\n \nOriginal Message: ${message}`)\n return\n }\n\n console.error(\n `Route ${route} errored during ${phase}. These errors are normally ignored and may not prevent the route from prerendering but are logged here because build debugging is enabled. The thrown value is logged just following this message`\n )\n console.error(thrownValue)\n return\n}\n"],"names":["getDigestForWellKnownError","isReactLargeShellError","Phase","printDebugThrownValueForProspectiveRender","thrownValue","route","phase","console","error","undefined","message","stack","originalErrorStack","stackStart","indexOf","Error","slice"],"mappings":";;;;;;AAAA,SAASA,0BAA0B,QAAQ,yBAAwB;AACnE,SAASC,sBAAsB,QAAQ,4BAA2B;;;AAE3D,IAAKC,QAAAA,WAAAA,GAAAA,SAAAA,KAAAA;;;WAAAA;MAGX;AAEM,SAASC,0CACdC,WAAoB,EACpBC,KAAa,EACbC,KAAY;IAEZ,oDAAoD;IACpD,QAAIN,0NAAAA,EAA2BI,cAAc;QAC3C;IACF;IAEA,QAAIH,4NAAAA,EAAuBG,cAAc;QACvC,kBAAkB;QAClBG,QAAQC,KAAK,CAACJ;QACd,OAAOK;IACT;IAEA,IAAIC;IACJ,IACE,OAAON,gBAAgB,YACvBA,gBAAgB,QAChB,OAAQA,YAAoBM,OAAO,KAAK,UACxC;QACAA,UAAWN,YAAoBM,OAAO;QACtC,IAAI,OAAQN,YAAoBO,KAAK,KAAK,UAAU;YAClD,MAAMC,qBAA8BR,YAAoBO,KAAK;YAC7D,MAAME,aAAaD,mBAAmBE,OAAO,CAAC;YAC9C,IAAID,aAAa,CAAC,GAAG;gBACnB,MAAML,QAAQ,OAAA,cAIb,CAJa,IAAIO,MAChB,CAAC,MAAM,EAAEV,MAAM,gBAAgB,EAAEC,MAAM;;gBAEjC,EAAEI,SAAS,GAHL,qBAAA;2BAAA;gCAAA;kCAAA;gBAId;gBACAF,MAAMG,KAAK,GACT,YAAYH,MAAME,OAAO,GAAGE,mBAAmBI,KAAK,CAACH;gBACvDN,QAAQC,KAAK,CAACA;gBACd;YACF;QACF;IACF,OAAO,IAAI,OAAOJ,gBAAgB,UAAU;QAC1CM,UAAUN;IACZ;IAEA,IAAIM,SAAS;QACXH,QAAQC,KAAK,CAAC,CAAC,MAAM,EAAEH,MAAM,gBAAgB,EAAEC,MAAM;;kBAEvC,EAAEI,SAAS;QACzB;IACF;IAEAH,QAAQC,KAAK,CACX,CAAC,MAAM,EAAEH,MAAM,gBAAgB,EAAEC,MAAM,kMAAkM,CAAC;IAE5OC,QAAQC,KAAK,CAACJ;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 18986, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/source-maps.ts"],"sourcesContent":["import type { SourceMap } from 'module'\nimport { LRUCache } from './lru-cache'\n\nfunction noSourceMap(): SourceMap | undefined {\n return undefined\n}\n\n// Edge runtime does not implement `module`\nconst findSourceMap =\n process.env.NEXT_RUNTIME === 'edge'\n ? noSourceMap\n : (require('module') as typeof import('module')).findSourceMap\n\n/**\n * https://tc39.es/source-map/#index-map\n */\ninterface IndexSourceMapSection {\n offset: {\n line: number\n column: number\n }\n map: BasicSourceMapPayload\n}\n\n// TODO(veil): Upstream types\n/** https://tc39.es/ecma426/#sec-index-source-map */\ninterface IndexSourceMap {\n version: number\n file: string\n sections: IndexSourceMapSection[]\n}\n\n/** https://tc39.es/ecma426/#sec-source-map-format */\nexport interface BasicSourceMapPayload {\n version: number\n // TODO: Move to https://github.com/jridgewell/sourcemaps which is actively maintained\n /** WARNING: `file` is optional. */\n file: string\n sourceRoot?: string\n // TODO: Move to https://github.com/jridgewell/sourcemaps which is actively maintained\n /** WARNING: `sources[number]` can be `null`. */\n sources: Array\n names: Array\n mappings: string\n ignoreList?: number[]\n}\n\nexport type ModernSourceMapPayload = BasicSourceMapPayload | IndexSourceMap\n\nexport function sourceMapIgnoreListsEverything(\n sourceMap: BasicSourceMapPayload\n): boolean {\n return (\n sourceMap.ignoreList !== undefined &&\n sourceMap.sources.length === sourceMap.ignoreList.length\n )\n}\n\n/**\n * Finds the sourcemap payload applicable to a given frame.\n * Equal to the input unless an Index Source Map is used.\n * @param line0 - The line number of the frame, 0-based.\n * @param column0 - The column number of the frame, 0-based.\n */\nexport function findApplicableSourceMapPayload(\n line0: number,\n column0: number,\n payload: ModernSourceMapPayload\n): BasicSourceMapPayload | undefined {\n if ('sections' in payload) {\n if (payload.sections.length === 0) {\n return undefined\n }\n\n // Sections must not overlap and must be sorted: https://tc39.es/source-map/#section-object\n // Therefore the last section that has an offset less than or equal to the frame is the applicable one.\n const sections = payload.sections\n let left = 0\n let right = sections.length - 1\n let result: IndexSourceMapSection | null = null\n\n while (left <= right) {\n // fast Math.floor\n const middle = ~~((left + right) / 2)\n const section = sections[middle]\n const offset = section.offset\n\n if (\n offset.line < line0 ||\n (offset.line === line0 && offset.column <= column0)\n ) {\n result = section\n left = middle + 1\n } else {\n right = middle - 1\n }\n }\n\n return result === null ? undefined : result.map\n } else {\n return payload\n }\n}\n\nconst didWarnAboutInvalidSourceMapDEV = new Set()\n\nexport function filterStackFrameDEV(\n sourceURL: string,\n functionName: string,\n line1: number,\n column1: number\n): boolean {\n if (sourceURL === '') {\n // The default implementation filters out stack frames\n // but we want to retain them because current Server Components and\n // built-in Components in parent stacks don't have source location.\n // Filter out frames that show up in Promises to get good names in React's\n // Server Request track until we come up with a better heuristic.\n return functionName !== 'new Promise'\n }\n if (sourceURL.startsWith('node:') || sourceURL.includes('node_modules')) {\n return false\n }\n try {\n // Node.js loads source maps eagerly so this call is cheap.\n // TODO: ESM sourcemaps are O(1) but CommonJS sourcemaps are O(Number of CJS modules).\n // Make sure this doesn't adversely affect performance when CJS is used by Next.js.\n const sourceMap = findSourceMap(sourceURL)\n if (sourceMap === undefined) {\n // No source map assoicated.\n // TODO: Node.js types should reflect that `findSourceMap` can return `undefined`.\n return true\n }\n const sourceMapPayload = findApplicableSourceMapPayload(\n line1 - 1,\n column1 - 1,\n sourceMap.payload\n )\n if (sourceMapPayload === undefined) {\n // No source map section applicable to the frame.\n return true\n }\n return !sourceMapIgnoreListsEverything(sourceMapPayload)\n } catch (cause) {\n if (process.env.NODE_ENV !== 'production') {\n // TODO: Share cache with patch-error-inspect\n if (!didWarnAboutInvalidSourceMapDEV.has(sourceURL)) {\n didWarnAboutInvalidSourceMapDEV.add(sourceURL)\n // We should not log an actual error instance here because that will re-enter\n // this codepath during error inspection and could lead to infinite recursion.\n console.error(\n `${sourceURL}: Invalid source map. Only conformant source maps can be used to filter stack frames. Cause: ${cause}`\n )\n }\n }\n\n return true\n }\n}\n\nconst invalidSourceMap = Symbol('invalid-source-map')\nconst sourceMapURLs = new LRUCache(\n 512 * 1024 * 1024,\n (url) =>\n url === invalidSourceMap\n ? // Ideally we'd account for key length. So we just guestimate a small source map\n // so that we don't create a huge cache with empty source maps.\n 8 * 1024\n : // these URLs contain only ASCII characters so .length is equal to Buffer.byteLength\n url.length\n)\nexport function findSourceMapURLDEV(\n scriptNameOrSourceURL: string\n): string | null {\n let sourceMapURL = sourceMapURLs.get(scriptNameOrSourceURL)\n if (sourceMapURL === undefined) {\n let sourceMapPayload: ModernSourceMapPayload | undefined\n try {\n sourceMapPayload = findSourceMap(scriptNameOrSourceURL)?.payload\n } catch (cause) {\n console.error(\n `${scriptNameOrSourceURL}: Invalid source map. Only conformant source maps can be used to find the original code. Cause: ${cause}`\n )\n }\n\n if (sourceMapPayload === undefined) {\n sourceMapURL = invalidSourceMap\n } else {\n // TODO: Might be more efficient to extract the relevant section from Index Maps.\n // Unclear if that search is worth the smaller payload we have to stringify.\n const sourceMapJSON = JSON.stringify(sourceMapPayload)\n const sourceMapURLData = Buffer.from(sourceMapJSON, 'utf8').toString(\n 'base64'\n )\n sourceMapURL = `data:application/json;base64,${sourceMapURLData}`\n }\n\n sourceMapURLs.set(scriptNameOrSourceURL, sourceMapURL)\n }\n\n return sourceMapURL === invalidSourceMap ? null : sourceMapURL\n}\n\nexport function devirtualizeReactServerURL(sourceURL: string): string {\n if (sourceURL.startsWith('about://React/')) {\n // about://React/Server/file://?42 => file://\n const envIdx = sourceURL.indexOf('/', 'about://React/'.length)\n const suffixIdx = sourceURL.lastIndexOf('?')\n if (envIdx > -1 && suffixIdx > -1) {\n return decodeURI(sourceURL.slice(envIdx + 1, suffixIdx))\n }\n }\n return sourceURL\n}\n\nfunction isAnonymousFrameLikelyJSNative(methodName: string): boolean {\n // Anonymous frames can also be produced in React parent stacks either from\n // host components or Server Components. We don't want to ignore those.\n // This could hide user-space methods that are named like native JS methods but\n // should you really do that?\n return (\n // e.g. JSON.parse\n methodName.startsWith('JSON.') ||\n // E.g. Promise.withResolves\n methodName.startsWith('Function.') ||\n // various JS built-ins\n methodName.startsWith('Promise.') ||\n methodName.startsWith('Array.') ||\n methodName.startsWith('Set.') ||\n methodName.startsWith('Map.')\n )\n}\n\nexport function ignoreListAnonymousStackFramesIfSandwiched(\n frames: Frame[],\n isAnonymousFrame: (frame: Frame) => boolean,\n isIgnoredFrame: (frame: Frame) => boolean,\n getMethodName: (frame: Frame) => string,\n /** only passes frames for which `isAnonymousFrame` and their method is a native JS method or `isIgnoredFrame` return true */\n ignoreFrame: (frame: Frame) => void\n): void {\n for (let i = 1; i < frames.length; i++) {\n const currentFrame = frames[i]\n if (\n !(\n isAnonymousFrame(currentFrame) &&\n isAnonymousFrameLikelyJSNative(getMethodName(currentFrame))\n )\n ) {\n continue\n }\n\n const previousFrameIsIgnored = isIgnoredFrame(frames[i - 1])\n if (previousFrameIsIgnored && i < frames.length - 1) {\n let ignoreSandwich = false\n let j = i + 1\n for (j; j < frames.length; j++) {\n const nextFrame = frames[j]\n const nextFrameIsAnonymous =\n isAnonymousFrame(nextFrame) &&\n isAnonymousFrameLikelyJSNative(getMethodName(nextFrame))\n if (nextFrameIsAnonymous) {\n continue\n }\n\n const nextFrameIsIgnored = isIgnoredFrame(nextFrame)\n if (nextFrameIsIgnored) {\n ignoreSandwich = true\n break\n }\n }\n\n if (ignoreSandwich) {\n for (i; i < j; i++) {\n ignoreFrame(frames[i])\n }\n }\n }\n }\n}\n"],"names":["LRUCache","noSourceMap","undefined","findSourceMap","process","env","NEXT_RUNTIME","require","sourceMapIgnoreListsEverything","sourceMap","ignoreList","sources","length","findApplicableSourceMapPayload","line0","column0","payload","sections","left","right","result","middle","section","offset","line","column","map","didWarnAboutInvalidSourceMapDEV","Set","filterStackFrameDEV","sourceURL","functionName","line1","column1","startsWith","includes","sourceMapPayload","cause","NODE_ENV","has","add","console","error","invalidSourceMap","Symbol","sourceMapURLs","url","findSourceMapURLDEV","scriptNameOrSourceURL","sourceMapURL","get","sourceMapJSON","JSON","stringify","sourceMapURLData","Buffer","from","toString","set","devirtualizeReactServerURL","envIdx","indexOf","suffixIdx","lastIndexOf","decodeURI","slice","isAnonymousFrameLikelyJSNative","methodName","ignoreListAnonymousStackFramesIfSandwiched","frames","isAnonymousFrame","isIgnoredFrame","getMethodName","ignoreFrame","i","currentFrame","previousFrameIsIgnored","ignoreSandwich","j","nextFrame","nextFrameIsAnonymous","nextFrameIsIgnored"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 19159, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/collect-segment-data.tsx"],"sourcesContent":["/* eslint-disable @next/internal/no-ambiguous-jsx -- Bundled in entry-base so it gets the right JSX runtime. */\nimport type {\n CacheNodeSeedData,\n FlightRouterState,\n InitialRSCPayload,\n DynamicParamTypesShort,\n HeadData,\n LoadingModuleData,\n} from '../../shared/lib/app-router-types'\nimport type { ManifestNode } from '../../build/webpack/plugins/flight-manifest-plugin'\n\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { createFromReadableStream } from 'react-server-dom-webpack/client'\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { prerender } from 'react-server-dom-webpack/static'\n\nimport {\n streamFromBuffer,\n streamToBuffer,\n} from '../stream-utils/node-web-streams-helper'\nimport { waitAtLeastOneReactRenderTask } from '../../lib/scheduler'\nimport {\n type SegmentRequestKey,\n createSegmentRequestKeyPart,\n appendSegmentRequestKeyPart,\n ROOT_SEGMENT_REQUEST_KEY,\n HEAD_REQUEST_KEY,\n} from '../../shared/lib/segment-cache/segment-value-encoding'\nimport { getDigestForWellKnownError } from './create-error-handler'\nimport {\n Phase,\n printDebugThrownValueForProspectiveRender,\n} from './prospective-render-utils'\nimport { workAsyncStorage } from './work-async-storage.external'\n\n// Contains metadata about the route tree. The client must fetch this before\n// it can fetch any actual segment data.\nexport type RootTreePrefetch = {\n buildId: string\n tree: TreePrefetch\n staleTime: number\n}\n\nexport type TreePrefetch = {\n name: string\n paramType: DynamicParamTypesShort | null\n // When cacheComponents is enabled, this field is always null.\n // Instead we parse the param on the client, allowing us to omit it from\n // the prefetch response and increase its cacheability.\n paramKey: string | null\n\n // Child segments.\n slots: null | {\n [parallelRouteKey: string]: TreePrefetch\n }\n\n /** Whether this segment should be fetched using a runtime prefetch */\n hasRuntimePrefetch: boolean\n\n // Extra fields that only exist so we can reconstruct a FlightRouterState on\n // the client. We may be able to unify TreePrefetch and FlightRouterState\n // after some refactoring, but in the meantime it would be wasteful to add a\n // bunch of new prefetch-only fields to FlightRouterState. So think of\n // TreePrefetch as a superset of FlightRouterState.\n isRootLayout: boolean\n}\n\nexport type SegmentPrefetch = {\n buildId: string\n rsc: React.ReactNode | null\n loading: LoadingModuleData | Promise\n isPartial: boolean\n}\n\nconst filterStackFrame =\n process.env.NODE_ENV !== 'production'\n ? (require('../lib/source-maps') as typeof import('../lib/source-maps'))\n .filterStackFrameDEV\n : undefined\nconst findSourceMapURL =\n process.env.NODE_ENV !== 'production'\n ? (require('../lib/source-maps') as typeof import('../lib/source-maps'))\n .findSourceMapURLDEV\n : undefined\n\nfunction onSegmentPrerenderError(error: unknown) {\n const digest = getDigestForWellKnownError(error)\n if (digest) {\n return digest\n }\n // We don't need to log the errors because we would have already done that\n // when generating the original Flight stream for the whole page.\n if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {\n const workStore = workAsyncStorage.getStore()\n printDebugThrownValueForProspectiveRender(\n error,\n workStore?.route ?? 'unknown route',\n Phase.SegmentCollection\n )\n }\n}\n\nexport async function collectSegmentData(\n isCacheComponentsEnabled: boolean,\n fullPageDataBuffer: Buffer,\n staleTime: number,\n clientModules: ManifestNode,\n serverConsumerManifest: any\n): Promise> {\n // Traverse the router tree and generate a prefetch response for each segment.\n\n // A mutable map to collect the results as we traverse the route tree.\n const resultMap = new Map()\n\n // Before we start, warm up the module cache by decoding the page data once.\n // Then we can assume that any remaining async tasks that occur the next time\n // are due to hanging promises caused by dynamic data access. Note we only\n // have to do this once per page, not per individual segment.\n //\n try {\n await createFromReadableStream(streamFromBuffer(fullPageDataBuffer), {\n findSourceMapURL,\n serverConsumerManifest,\n })\n await waitAtLeastOneReactRenderTask()\n } catch {}\n\n // Create an abort controller that we'll use to stop the stream.\n const abortController = new AbortController()\n const onCompletedProcessingRouteTree = async () => {\n // Since all we're doing is decoding and re-encoding a cached prerender, if\n // serializing the stream takes longer than a microtask, it must because of\n // hanging promises caused by dynamic data.\n await waitAtLeastOneReactRenderTask()\n abortController.abort()\n }\n\n // Generate a stream for the route tree prefetch. While we're walking the\n // tree, we'll also spawn additional tasks to generate the segment prefetches.\n // The promises for these tasks are pushed to a mutable array that we will\n // await once the route tree is fully rendered.\n const segmentTasks: Array> = []\n const { prelude: treeStream } = await prerender(\n // RootTreePrefetch is not a valid return type for a React component, but\n // we need to use a component so that when we decode the original stream\n // inside of it, the side effects are transferred to the new stream.\n // @ts-expect-error\n ,\n clientModules,\n {\n filterStackFrame,\n signal: abortController.signal,\n onError: onSegmentPrerenderError,\n }\n )\n\n // Write the route tree to a special `/_tree` segment.\n const treeBuffer = await streamToBuffer(treeStream)\n resultMap.set('/_tree' as SegmentRequestKey, treeBuffer)\n\n // Also output the entire full page data response\n resultMap.set('/_full' as SegmentRequestKey, fullPageDataBuffer)\n\n // Now that we've finished rendering the route tree, all the segment tasks\n // should have been spawned. Await them in parallel and write the segment\n // prefetches to the result map.\n for (const [segmentPath, buffer] of await Promise.all(segmentTasks)) {\n resultMap.set(segmentPath, buffer)\n }\n\n return resultMap\n}\n\nasync function PrefetchTreeData({\n isClientParamParsingEnabled,\n fullPageDataBuffer,\n serverConsumerManifest,\n clientModules,\n staleTime,\n segmentTasks,\n onCompletedProcessingRouteTree,\n}: {\n isClientParamParsingEnabled: boolean\n fullPageDataBuffer: Buffer\n serverConsumerManifest: any\n clientModules: ManifestNode\n staleTime: number\n segmentTasks: Array>\n onCompletedProcessingRouteTree: () => void\n}): Promise {\n // We're currently rendering a Flight response for the route tree prefetch.\n // Inside this component, decode the Flight stream for the whole page. This is\n // a hack to transfer the side effects from the original Flight stream (e.g.\n // Float preloads) onto the Flight stream for the tree prefetch.\n // TODO: React needs a better way to do this. Needed for Server Actions, too.\n const initialRSCPayload: InitialRSCPayload = await createFromReadableStream(\n createUnclosingPrefetchStream(streamFromBuffer(fullPageDataBuffer)),\n {\n findSourceMapURL,\n serverConsumerManifest,\n }\n )\n\n const buildId = initialRSCPayload.b\n\n // FlightDataPath is an unsound type, hence the additional checks.\n const flightDataPaths = initialRSCPayload.f\n if (flightDataPaths.length !== 1 && flightDataPaths[0].length !== 3) {\n console.error(\n 'Internal Next.js error: InitialRSCPayload does not match the expected ' +\n 'shape for a prerendered page during segment prefetch generation.'\n )\n return null\n }\n const flightRouterState: FlightRouterState = flightDataPaths[0][0]\n const seedData: CacheNodeSeedData = flightDataPaths[0][1]\n const head: HeadData = flightDataPaths[0][2]\n\n // Compute the route metadata tree by traversing the FlightRouterState. As we\n // walk the tree, we will also spawn a task to produce a prefetch response for\n // each segment.\n const tree = collectSegmentDataImpl(\n isClientParamParsingEnabled,\n flightRouterState,\n buildId,\n seedData,\n clientModules,\n ROOT_SEGMENT_REQUEST_KEY,\n segmentTasks\n )\n\n // Also spawn a task to produce a prefetch response for the \"head\" segment.\n // The head contains metadata, like the title; it's not really a route\n // segment, but it contains RSC data, so it's treated like a segment by\n // the client cache.\n segmentTasks.push(\n waitAtLeastOneReactRenderTask().then(() =>\n renderSegmentPrefetch(\n buildId,\n head,\n null,\n HEAD_REQUEST_KEY,\n clientModules\n )\n )\n )\n\n // Notify the abort controller that we're done processing the route tree.\n // Anything async that happens after this point must be due to hanging\n // promises in the original stream.\n onCompletedProcessingRouteTree()\n\n // Render the route tree to a special `/_tree` segment.\n const treePrefetch: RootTreePrefetch = {\n buildId,\n tree,\n staleTime,\n }\n return treePrefetch\n}\n\nfunction collectSegmentDataImpl(\n isClientParamParsingEnabled: boolean,\n route: FlightRouterState,\n buildId: string,\n seedData: CacheNodeSeedData | null,\n clientModules: ManifestNode,\n requestKey: SegmentRequestKey,\n segmentTasks: Array>\n): TreePrefetch {\n // Metadata about the segment. Sent as part of the tree prefetch. Null if\n // there are no children.\n let slotMetadata: { [parallelRouteKey: string]: TreePrefetch } | null = null\n\n const children = route[1]\n const seedDataChildren = seedData !== null ? seedData[1] : null\n for (const parallelRouteKey in children) {\n const childRoute = children[parallelRouteKey]\n const childSegment = childRoute[0]\n const childSeedData =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n createSegmentRequestKeyPart(childSegment)\n )\n const childTree = collectSegmentDataImpl(\n isClientParamParsingEnabled,\n childRoute,\n buildId,\n childSeedData,\n clientModules,\n childRequestKey,\n segmentTasks\n )\n if (slotMetadata === null) {\n slotMetadata = {}\n }\n slotMetadata[parallelRouteKey] = childTree\n }\n\n const hasRuntimePrefetch = seedData !== null ? seedData[4] : false\n\n if (seedData !== null) {\n // Spawn a task to write the segment data to a new Flight stream.\n segmentTasks.push(\n // Since we're already in the middle of a render, wait until after the\n // current task to escape the current rendering context.\n waitAtLeastOneReactRenderTask().then(() =>\n renderSegmentPrefetch(\n buildId,\n seedData[0],\n seedData[2],\n requestKey,\n clientModules\n )\n )\n )\n } else {\n // This segment does not have any seed data. Skip generating a prefetch\n // response for it. We'll still include it in the route tree, though.\n // TODO: We should encode in the route tree whether a segment is missing\n // so we don't attempt to fetch it for no reason. As of now this shouldn't\n // ever happen in practice, though.\n }\n\n const segment = route[0]\n let name\n let paramType: DynamicParamTypesShort | null = null\n let paramKey: string | null = null\n if (typeof segment === 'string') {\n name = segment\n paramKey = segment\n paramType = null\n } else {\n name = segment[0]\n paramKey = segment[1]\n paramType = segment[2] as DynamicParamTypesShort\n }\n\n // Metadata about the segment. Sent to the client as part of the\n // tree prefetch.\n return {\n name,\n paramType,\n // This value is ommitted from the prefetch response when cacheComponents\n // is enabled.\n paramKey: isClientParamParsingEnabled ? null : paramKey,\n hasRuntimePrefetch,\n slots: slotMetadata,\n isRootLayout: route[4] === true,\n }\n}\n\nasync function renderSegmentPrefetch(\n buildId: string,\n rsc: React.ReactNode,\n loading: LoadingModuleData | Promise,\n requestKey: SegmentRequestKey,\n clientModules: ManifestNode\n): Promise<[SegmentRequestKey, Buffer]> {\n // Render the segment data to a stream.\n // In the future, this is where we can include additional metadata, like the\n // stale time and cache tags.\n const segmentPrefetch: SegmentPrefetch = {\n buildId,\n rsc,\n loading,\n isPartial: await isPartialRSCData(rsc, clientModules),\n }\n // Since all we're doing is decoding and re-encoding a cached prerender, if\n // it takes longer than a microtask, it must because of hanging promises\n // caused by dynamic data. Abort the stream at the end of the current task.\n const abortController = new AbortController()\n waitAtLeastOneReactRenderTask().then(() => abortController.abort())\n const { prelude: segmentStream } = await prerender(\n segmentPrefetch,\n clientModules,\n {\n filterStackFrame,\n signal: abortController.signal,\n onError: onSegmentPrerenderError,\n }\n )\n const segmentBuffer = await streamToBuffer(segmentStream)\n if (requestKey === ROOT_SEGMENT_REQUEST_KEY) {\n return ['/_index' as SegmentRequestKey, segmentBuffer]\n } else {\n return [requestKey, segmentBuffer]\n }\n}\n\nasync function isPartialRSCData(\n rsc: React.ReactNode,\n clientModules: ManifestNode\n): Promise {\n // We can determine if a segment contains only partial data if it takes longer\n // than a task to encode, because dynamic data is encoded as an infinite\n // promise. We must do this in a separate Flight prerender from the one that\n // actually generates the prefetch stream because we need to include\n // `isPartial` in the stream itself.\n let isPartial = false\n const abortController = new AbortController()\n waitAtLeastOneReactRenderTask().then(() => {\n // If we haven't yet finished the outer task, then it must be because we\n // accessed dynamic data.\n isPartial = true\n abortController.abort()\n })\n await prerender(rsc, clientModules, {\n filterStackFrame,\n signal: abortController.signal,\n onError() {},\n })\n return isPartial\n}\n\nfunction createUnclosingPrefetchStream(\n originalFlightStream: ReadableStream\n): ReadableStream {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n continue\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream.\n return\n }\n },\n })\n}\n"],"names":["createFromReadableStream","prerender","streamFromBuffer","streamToBuffer","waitAtLeastOneReactRenderTask","createSegmentRequestKeyPart","appendSegmentRequestKeyPart","ROOT_SEGMENT_REQUEST_KEY","HEAD_REQUEST_KEY","getDigestForWellKnownError","Phase","printDebugThrownValueForProspectiveRender","workAsyncStorage","filterStackFrame","process","env","NODE_ENV","require","filterStackFrameDEV","undefined","findSourceMapURL","findSourceMapURLDEV","onSegmentPrerenderError","error","digest","NEXT_DEBUG_BUILD","__NEXT_VERBOSE_LOGGING","workStore","getStore","route","SegmentCollection","collectSegmentData","isCacheComponentsEnabled","fullPageDataBuffer","staleTime","clientModules","serverConsumerManifest","resultMap","Map","abortController","AbortController","onCompletedProcessingRouteTree","abort","segmentTasks","prelude","treeStream","PrefetchTreeData","isClientParamParsingEnabled","signal","onError","treeBuffer","set","segmentPath","buffer","Promise","all","initialRSCPayload","createUnclosingPrefetchStream","buildId","b","flightDataPaths","f","length","console","flightRouterState","seedData","head","tree","collectSegmentDataImpl","push","then","renderSegmentPrefetch","treePrefetch","requestKey","slotMetadata","children","seedDataChildren","parallelRouteKey","childRoute","childSegment","childSeedData","childRequestKey","childTree","hasRuntimePrefetch","segment","name","paramType","paramKey","slots","isRootLayout","rsc","loading","segmentPrefetch","isPartial","isPartialRSCData","segmentStream","segmentBuffer","originalFlightStream","reader","getReader","ReadableStream","pull","controller","done","value","read","enqueue"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 19440, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/clone-response.ts"],"sourcesContent":["const noop = () => {}\n\nlet registry: FinalizationRegistry> | undefined\n\nif (globalThis.FinalizationRegistry) {\n registry = new FinalizationRegistry((weakRef: WeakRef) => {\n const stream = weakRef.deref()\n if (stream && !stream.locked) {\n stream.cancel('Response object has been garbage collected').then(noop)\n }\n })\n}\n\n/**\n * Clones a response by teeing the body so we can return two independent\n * ReadableStreams from it. This avoids the bug in the undici library around\n * response cloning.\n *\n * After cloning, the original response's body will be consumed and closed.\n *\n * @see https://github.com/vercel/next.js/pull/73274\n *\n * @param original - The original response to clone.\n * @returns A tuple containing two independent clones of the original response.\n */\nexport function cloneResponse(original: Response): [Response, Response] {\n // If the response has no body, then we can just return the original response\n // twice because it's immutable.\n if (!original.body) {\n return [original, original]\n }\n\n const [body1, body2] = original.body.tee()\n\n const cloned1 = new Response(body1, {\n status: original.status,\n statusText: original.statusText,\n headers: original.headers,\n })\n\n Object.defineProperty(cloned1, 'url', {\n value: original.url,\n // How the original response.url behaves\n configurable: true,\n enumerable: true,\n writable: false,\n })\n\n // The Fetch Standard allows users to skip consuming the response body by\n // relying on garbage collection to release connection resources.\n // https://github.com/nodejs/undici?tab=readme-ov-file#garbage-collection\n //\n // To cancel the stream you then need to cancel both resulting branches.\n // Teeing a stream will generally lock it for the duration, preventing other\n // readers from locking it.\n // https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/tee\n\n // cloned2 is stored in a react cache and cloned for subsequent requests.\n // It is the original request, and is is garbage collected by a\n // FinalizationRegistry in Undici, but since we're tee-ing the stream\n // ourselves, we need to cancel clone1's stream (the response returned from\n // our dedupe fetch) when clone1 is reclaimed, otherwise we leak memory.\n if (registry && cloned1.body) {\n registry.register(cloned1, new WeakRef(cloned1.body))\n }\n\n const cloned2 = new Response(body2, {\n status: original.status,\n statusText: original.statusText,\n headers: original.headers,\n })\n\n Object.defineProperty(cloned2, 'url', {\n value: original.url,\n // How the original response.url behaves\n configurable: true,\n enumerable: true,\n writable: false,\n })\n\n return [cloned1, cloned2]\n}\n"],"names":["noop","registry","globalThis","FinalizationRegistry","weakRef","stream","deref","locked","cancel","then","cloneResponse","original","body","body1","body2","tee","cloned1","Response","status","statusText","headers","Object","defineProperty","value","url","configurable","enumerable","writable","register","WeakRef","cloned2"],"mappings":";;;;AAAA,MAAMA,OAAO,KAAO;AAEpB,IAAIC;AAEJ,IAAIC,WAAWC,oBAAoB,EAAE;IACnCF,WAAW,IAAIE,qBAAqB,CAACC;QACnC,MAAMC,SAASD,QAAQE,KAAK;QAC5B,IAAID,UAAU,CAACA,OAAOE,MAAM,EAAE;YAC5BF,OAAOG,MAAM,CAAC,8CAA8CC,IAAI,CAACT;QACnE;IACF;AACF;AAcO,SAASU,cAAcC,QAAkB;IAC9C,6EAA6E;IAC7E,gCAAgC;IAChC,IAAI,CAACA,SAASC,IAAI,EAAE;QAClB,OAAO;YAACD;YAAUA;SAAS;IAC7B;IAEA,MAAM,CAACE,OAAOC,MAAM,GAAGH,SAASC,IAAI,CAACG,GAAG;IAExC,MAAMC,UAAU,IAAIC,SAASJ,OAAO;QAClCK,QAAQP,SAASO,MAAM;QACvBC,YAAYR,SAASQ,UAAU;QAC/BC,SAAST,SAASS,OAAO;IAC3B;IAEAC,OAAOC,cAAc,CAACN,SAAS,OAAO;QACpCO,OAAOZ,SAASa,GAAG;QACnB,wCAAwC;QACxCC,cAAc;QACdC,YAAY;QACZC,UAAU;IACZ;IAEA,yEAAyE;IACzE,iEAAiE;IACjE,yEAAyE;IACzE,EAAE;IACF,wEAAwE;IACxE,4EAA4E;IAC5E,2BAA2B;IAC3B,sEAAsE;IAEtE,yEAAyE;IACzE,+DAA+D;IAC/D,qEAAqE;IACrE,2EAA2E;IAC3E,wEAAwE;IACxE,IAAI1B,YAAYe,QAAQJ,IAAI,EAAE;QAC5BX,SAAS2B,QAAQ,CAACZ,SAAS,IAAIa,QAAQb,QAAQJ,IAAI;IACrD;IAEA,MAAMkB,UAAU,IAAIb,SAASH,OAAO;QAClCI,QAAQP,SAASO,MAAM;QACvBC,YAAYR,SAASQ,UAAU;QAC/BC,SAAST,SAASS,OAAO;IAC3B;IAEAC,OAAOC,cAAc,CAACQ,SAAS,OAAO;QACpCP,OAAOZ,SAASa,GAAG;QACnB,wCAAwC;QACxCC,cAAc;QACdC,YAAY;QACZC,UAAU;IACZ;IAEA,OAAO;QAACX;QAASc;KAAQ;AAC3B","ignoreList":[0]}}, - {"offset": {"line": 19513, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/dedupe-fetch.ts"],"sourcesContent":["/**\n * Based on https://github.com/facebook/react/blob/d4e78c42a94be027b4dc7ed2659a5fddfbf9bd4e/packages/react/src/ReactFetch.js\n */\nimport * as React from 'react'\nimport { cloneResponse } from './clone-response'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nconst simpleCacheKey = '[\"GET\",[],null,\"follow\",null,null,null,null]' // generateCacheKey(new Request('https://blank'));\n\n// Headers that should not affect deduplication\n// traceparent and tracestate are used for distributed tracing and should not affect cache keys\nconst headersToExcludeInCacheKey = new Set(['traceparent', 'tracestate'])\n\nfunction generateCacheKey(request: Request): string {\n // We pick the fields that goes into the key used to dedupe requests.\n // We don't include the `cache` field, because we end up using whatever\n // caching resulted from the first request.\n // Notably we currently don't consider non-standard (or future) options.\n // This might not be safe. TODO: warn for non-standard extensions differing.\n // IF YOU CHANGE THIS UPDATE THE simpleCacheKey ABOVE.\n\n const filteredHeaders = Array.from(request.headers.entries()).filter(\n ([key]) => !headersToExcludeInCacheKey.has(key.toLowerCase())\n )\n\n return JSON.stringify([\n request.method,\n filteredHeaders,\n request.mode,\n request.redirect,\n request.credentials,\n request.referrer,\n request.referrerPolicy,\n request.integrity,\n ])\n}\n\ntype CacheEntry = [\n key: string,\n promise: Promise,\n response: Response | null,\n]\n\nexport function createDedupeFetch(originalFetch: typeof fetch) {\n const getCacheEntries = React.cache(\n // eslint-disable-next-line @typescript-eslint/no-unused-vars -- url is the cache key\n (url: string): CacheEntry[] => []\n )\n\n return function dedupeFetch(\n resource: URL | RequestInfo,\n options?: RequestInit\n ): Promise {\n if (options && options.signal) {\n // If we're passed a signal, then we assume that\n // someone else controls the lifetime of this object and opts out of\n // caching. It's effectively the opt-out mechanism.\n // Ideally we should be able to check this on the Request but\n // it always gets initialized with its own signal so we don't\n // know if it's supposed to override - unless we also override the\n // Request constructor.\n return originalFetch(resource, options)\n }\n // Normalize the Request\n let url: string\n let cacheKey: string\n if (typeof resource === 'string' && !options) {\n // Fast path.\n cacheKey = simpleCacheKey\n url = resource\n } else {\n // Normalize the request.\n // if resource is not a string or a URL (its an instance of Request)\n // then do not instantiate a new Request but instead\n // reuse the request as to not disturb the body in the event it's a ReadableStream.\n const request =\n typeof resource === 'string' || resource instanceof URL\n ? new Request(resource, options)\n : resource\n if (\n (request.method !== 'GET' && request.method !== 'HEAD') ||\n request.keepalive\n ) {\n // We currently don't dedupe requests that might have side-effects. Those\n // have to be explicitly cached. We assume that the request doesn't have a\n // body if it's GET or HEAD.\n // keepalive gets treated the same as if you passed a custom cache signal.\n return originalFetch(resource, options)\n }\n cacheKey = generateCacheKey(request)\n url = request.url\n }\n\n const cacheEntries = getCacheEntries(url)\n for (let i = 0, j = cacheEntries.length; i < j; i += 1) {\n const [key, promise] = cacheEntries[i]\n if (key === cacheKey) {\n return promise.then(() => {\n const response = cacheEntries[i][2]\n if (!response) throw new InvariantError('No cached response')\n\n // We're cloning the response using this utility because there exists\n // a bug in the undici library around response cloning. See the\n // following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(response)\n cacheEntries[i][2] = cloned2\n return cloned1\n })\n }\n }\n\n // We pass the original arguments here in case normalizing the Request\n // doesn't include all the options in this environment.\n const promise = originalFetch(resource, options)\n const entry: CacheEntry = [cacheKey, promise, null]\n cacheEntries.push(entry)\n\n return promise.then((response) => {\n // We're cloning the response using this utility because there exists\n // a bug in the undici library around response cloning. See the\n // following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(response)\n entry[2] = cloned2\n return cloned1\n })\n }\n}\n"],"names":["React","cloneResponse","InvariantError","simpleCacheKey","headersToExcludeInCacheKey","Set","generateCacheKey","request","filteredHeaders","Array","from","headers","entries","filter","key","has","toLowerCase","JSON","stringify","method","mode","redirect","credentials","referrer","referrerPolicy","integrity","createDedupeFetch","originalFetch","getCacheEntries","cache","url","dedupeFetch","resource","options","signal","cacheKey","URL","Request","keepalive","cacheEntries","i","j","length","promise","then","response","cloned1","cloned2","entry","push"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 19633, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/batcher.ts"],"sourcesContent":["import type { SchedulerFn } from './scheduler'\n\nimport { DetachedPromise } from './detached-promise'\n\ntype CacheKeyFn = (\n key: K\n) => PromiseLike | C\n\ntype BatcherOptions = {\n cacheKeyFn?: CacheKeyFn\n schedulerFn?: SchedulerFn\n}\n\ntype WorkFnContext = {\n resolve: (value: V | PromiseLike) => void\n key: K\n}\n\ntype WorkFn = (context: WorkFnContext) => Promise\n\n/**\n * A wrapper for a function that will only allow one call to the function to\n * execute at a time.\n */\nexport class Batcher {\n private readonly pending = new Map>()\n\n protected constructor(\n private readonly cacheKeyFn?: CacheKeyFn,\n /**\n * A function that will be called to schedule the wrapped function to be\n * executed. This defaults to a function that will execute the function\n * immediately.\n */\n private readonly schedulerFn: SchedulerFn = (fn) => fn()\n ) {}\n\n /**\n * Creates a new instance of PendingWrapper. If the key extends a string or\n * number, the key will be used as the cache key. If the key is an object, a\n * cache key function must be provided.\n */\n public static create(\n options?: BatcherOptions\n ): Batcher\n public static create(\n options: BatcherOptions &\n Required, 'cacheKeyFn'>>\n ): Batcher\n public static create(\n options?: BatcherOptions\n ): Batcher {\n return new Batcher(options?.cacheKeyFn, options?.schedulerFn)\n }\n\n /**\n * Wraps a function in a promise that will be resolved or rejected only once\n * for a given key. This will allow multiple calls to the function to be\n * made, but only one will be executed at a time. The result of the first\n * call will be returned to all callers.\n *\n * @param key the key to use for the cache\n * @param fn the function to wrap\n * @returns a promise that resolves to the result of the function\n */\n public async batch(key: K, fn: WorkFn): Promise {\n const cacheKey = (this.cacheKeyFn ? await this.cacheKeyFn(key) : key) as C\n if (cacheKey === null) {\n return fn({ resolve: (value) => Promise.resolve(value), key })\n }\n\n const pending = this.pending.get(cacheKey)\n if (pending) return pending\n\n const { promise, resolve, reject } = new DetachedPromise()\n this.pending.set(cacheKey, promise)\n\n this.schedulerFn(async () => {\n try {\n const result = await fn({ resolve, key })\n\n // Resolving a promise multiple times is a no-op, so we can safely\n // resolve all pending promises with the same result.\n resolve(result)\n } catch (err) {\n reject(err)\n } finally {\n this.pending.delete(cacheKey)\n }\n })\n\n return promise\n }\n}\n"],"names":["DetachedPromise","Batcher","cacheKeyFn","schedulerFn","fn","pending","Map","create","options","batch","key","cacheKey","resolve","value","Promise","get","promise","reject","set","result","err","delete"],"mappings":";;;;AAEA,SAASA,eAAe,QAAQ,qBAAoB;;AAsB7C,MAAMC;IAGX,YACmBC,UAA6B,EAC9C;;;;KAIC,GACgBC,cAAiC,CAACC,KAAOA,IAAI,CAC9D;aAPiBF,UAAAA,GAAAA;aAMAC,WAAAA,GAAAA;aATFE,OAAAA,GAAU,IAAIC;IAU5B;IAcH,OAAcC,OACZC,OAA8B,EACZ;QAClB,OAAO,IAAIP,QAAiBO,WAAAA,OAAAA,KAAAA,IAAAA,QAASN,UAAU,EAAEM,WAAAA,OAAAA,KAAAA,IAAAA,QAASL,WAAW;IACvE;IAEA;;;;;;;;;GASC,GACD,MAAaM,MAAMC,GAAM,EAAEN,EAAgB,EAAc;QACvD,MAAMO,WAAY,IAAI,CAACT,UAAU,GAAG,MAAM,IAAI,CAACA,UAAU,CAACQ,OAAOA;QACjE,IAAIC,aAAa,MAAM;YACrB,OAAOP,GAAG;gBAAEQ,SAAS,CAACC,QAAUC,QAAQF,OAAO,CAACC;gBAAQH;YAAI;QAC9D;QAEA,MAAML,UAAU,IAAI,CAACA,OAAO,CAACU,GAAG,CAACJ;QACjC,IAAIN,SAAS,OAAOA;QAEpB,MAAM,EAAEW,OAAO,EAAEJ,OAAO,EAAEK,MAAM,EAAE,GAAG,IAAIjB,oLAAAA;QACzC,IAAI,CAACK,OAAO,CAACa,GAAG,CAACP,UAAUK;QAE3B,IAAI,CAACb,WAAW,CAAC;YACf,IAAI;gBACF,MAAMgB,SAAS,MAAMf,GAAG;oBAAEQ;oBAASF;gBAAI;gBAEvC,kEAAkE;gBAClE,qDAAqD;gBACrDE,QAAQO;YACV,EAAE,OAAOC,KAAK;gBACZH,OAAOG;YACT,SAAU;gBACR,IAAI,CAACf,OAAO,CAACgB,MAAM,CAACV;YACtB;QACF;QAEA,OAAOK;IACT;AACF","ignoreList":[0]}}, - {"offset": {"line": 19695, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/response-cache/types.ts"],"sourcesContent":["import type { OutgoingHttpHeaders } from 'http'\nimport type RenderResult from '../render-result'\nimport type { CacheControl, Revalidate } from '../lib/cache-control'\nimport type { RouteKind } from '../route-kind'\n\nexport interface ResponseCacheBase {\n get(\n key: string | null,\n responseGenerator: ResponseGenerator,\n context: {\n isOnDemandRevalidate?: boolean\n isPrefetch?: boolean\n incrementalCache: IncrementalCache\n /**\n * This is a hint to the cache to help it determine what kind of route\n * this is so it knows where to look up the cache entry from. If not\n * provided it will test the filesystem to check.\n */\n routeKind: RouteKind\n\n /**\n * True if this is a fallback request.\n */\n isFallback?: boolean\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n }\n ): Promise\n}\n\n// The server components HMR cache might store other data as well in the future,\n// at which point this should be refactored to a discriminated union type.\nexport interface ServerComponentsHmrCache {\n get(key: string): CachedFetchData | undefined\n set(key: string, data: CachedFetchData): void\n}\n\nexport type CachedFetchData = {\n headers: Record\n body: string\n url: string\n status?: number\n}\n\nexport const enum CachedRouteKind {\n APP_PAGE = 'APP_PAGE',\n APP_ROUTE = 'APP_ROUTE',\n PAGES = 'PAGES',\n FETCH = 'FETCH',\n REDIRECT = 'REDIRECT',\n IMAGE = 'IMAGE',\n}\n\nexport interface CachedFetchValue {\n kind: CachedRouteKind.FETCH\n data: CachedFetchData\n // tags are only present with file-system-cache\n // fetch cache stores tags outside of cache entry\n tags?: string[]\n revalidate: number\n}\n\nexport interface CachedRedirectValue {\n kind: CachedRouteKind.REDIRECT\n props: Object\n}\n\nexport interface CachedAppPageValue {\n kind: CachedRouteKind.APP_PAGE\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n html: RenderResult\n rscData: Buffer | undefined\n status: number | undefined\n postponed: string | undefined\n headers: OutgoingHttpHeaders | undefined\n segmentData: Map | undefined\n}\n\nexport interface CachedPageValue {\n kind: CachedRouteKind.PAGES\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n html: RenderResult\n pageData: Object\n status: number | undefined\n headers: OutgoingHttpHeaders | undefined\n}\n\nexport interface CachedRouteValue {\n kind: CachedRouteKind.APP_ROUTE\n // this needs to be a RenderResult so since renderResponse\n // expects that type instead of a string\n body: Buffer\n status: number\n headers: OutgoingHttpHeaders\n}\n\nexport interface CachedImageValue {\n kind: CachedRouteKind.IMAGE\n etag: string\n upstreamEtag: string\n buffer: Buffer\n extension: string\n isMiss?: boolean\n isStale?: boolean\n}\n\nexport interface IncrementalCachedAppPageValue {\n kind: CachedRouteKind.APP_PAGE\n // this needs to be a string since the cache expects to store\n // the string value\n html: string\n rscData: Buffer | undefined\n headers: OutgoingHttpHeaders | undefined\n postponed: string | undefined\n status: number | undefined\n segmentData: Map | undefined\n}\n\nexport interface IncrementalCachedPageValue {\n kind: CachedRouteKind.PAGES\n // this needs to be a string since the cache expects to store\n // the string value\n html: string\n pageData: Object\n headers: OutgoingHttpHeaders | undefined\n status: number | undefined\n}\n\nexport interface IncrementalResponseCacheEntry {\n cacheControl?: CacheControl\n /**\n * timestamp in milliseconds to revalidate after\n */\n revalidateAfter?: Revalidate\n /**\n * `-1` here dictates a blocking revalidate should be used\n */\n isStale?: boolean | -1\n isMiss?: boolean\n value: Exclude | null\n}\n\nexport interface IncrementalFetchCacheEntry {\n /**\n * `-1` here dictates a blocking revalidate should be used\n */\n isStale?: boolean | -1\n value: CachedFetchValue\n}\n\nexport type IncrementalCacheEntry =\n | IncrementalResponseCacheEntry\n | IncrementalFetchCacheEntry\n\nexport type IncrementalCacheValue =\n | CachedRedirectValue\n | IncrementalCachedPageValue\n | IncrementalCachedAppPageValue\n | CachedImageValue\n | CachedFetchValue\n | CachedRouteValue\n\nexport type ResponseCacheValue =\n | CachedRedirectValue\n | CachedPageValue\n | CachedAppPageValue\n | CachedImageValue\n | CachedRouteValue\n\nexport type ResponseCacheEntry = {\n cacheControl?: CacheControl\n value: ResponseCacheValue | null\n isStale?: boolean | -1\n isMiss?: boolean\n}\n\n/**\n * @param hasResolved whether the responseGenerator has resolved it's promise\n * @param previousCacheEntry the previous cache entry if it exists or the current\n */\nexport type ResponseGenerator = (state: {\n hasResolved: boolean\n previousCacheEntry?: IncrementalResponseCacheEntry | null\n isRevalidating?: boolean\n span?: any\n\n /**\n * When true, this indicates that the response generator is being called in a\n * context where the response must be generated statically.\n *\n * CRITICAL: This should only currently be used when revalidating due to a\n * dynamic RSC request.\n */\n forceStaticRender?: boolean\n}) => Promise\n\nexport const enum IncrementalCacheKind {\n APP_PAGE = 'APP_PAGE',\n APP_ROUTE = 'APP_ROUTE',\n PAGES = 'PAGES',\n FETCH = 'FETCH',\n IMAGE = 'IMAGE',\n}\n\nexport interface GetIncrementalFetchCacheContext {\n kind: IncrementalCacheKind.FETCH\n revalidate?: Revalidate\n fetchUrl?: string\n fetchIdx?: number\n tags?: string[]\n softTags?: string[]\n}\n\nexport interface GetIncrementalResponseCacheContext {\n kind: Exclude\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n\n /**\n * True if this is a fallback request.\n */\n isFallback: boolean\n}\n\nexport interface SetIncrementalFetchCacheContext {\n fetchCache: true\n fetchUrl?: string\n fetchIdx?: number\n tags?: string[]\n isImplicitBuildTimeCache?: boolean\n}\n\nexport interface SetIncrementalResponseCacheContext {\n fetchCache?: false\n cacheControl?: CacheControl\n\n /**\n * True if the route is enabled for PPR.\n */\n isRoutePPREnabled?: boolean\n\n /**\n * True if this is a fallback request.\n */\n isFallback?: boolean\n}\n\nexport interface IncrementalResponseCache {\n get(\n cacheKey: string,\n ctx: GetIncrementalResponseCacheContext\n ): Promise\n set(\n key: string,\n data: Exclude | null,\n ctx: SetIncrementalResponseCacheContext\n ): Promise\n}\n\nexport interface IncrementalCache extends IncrementalResponseCache {\n get(\n cacheKey: string,\n ctx: GetIncrementalFetchCacheContext\n ): Promise\n get(\n cacheKey: string,\n ctx: GetIncrementalResponseCacheContext\n ): Promise\n set(\n key: string,\n data: CachedFetchValue | null,\n ctx: SetIncrementalFetchCacheContext\n ): Promise\n set(\n key: string,\n data: Exclude | null,\n ctx: SetIncrementalResponseCacheContext\n ): Promise\n revalidateTag(\n tags: string | string[],\n durations?: { expire?: number }\n ): Promise\n}\n"],"names":["CachedRouteKind","IncrementalCacheKind"],"mappings":";;;;;;AA+CO,IAAWA,kBAAAA,WAAAA,GAAAA,SAAAA,eAAAA;;;;;;;WAAAA;MAOjB;AAmJM,IAAWC,uBAAAA,WAAAA,GAAAA,SAAAA,oBAAAA;;;;;;WAAAA;MAMjB","ignoreList":[0]}}, - {"offset": {"line": 19722, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/render-result.ts"],"sourcesContent":["import type { OutgoingHttpHeaders, ServerResponse } from 'http'\nimport type { CacheControl } from './lib/cache-control'\nimport type { FetchMetrics } from './base-http'\n\nimport {\n chainStreams,\n streamFromBuffer,\n streamFromString,\n streamToString,\n} from './stream-utils/node-web-streams-helper'\nimport { isAbortError, pipeToNodeResponse } from './pipe-readable'\nimport type { RenderResumeDataCache } from './resume-data-cache/resume-data-cache'\nimport { InvariantError } from '../shared/lib/invariant-error'\nimport type {\n HTML_CONTENT_TYPE_HEADER,\n JSON_CONTENT_TYPE_HEADER,\n TEXT_PLAIN_CONTENT_TYPE_HEADER,\n} from '../lib/constants'\nimport type { RSC_CONTENT_TYPE_HEADER } from '../client/components/app-router-headers'\n\ntype ContentTypeOption =\n | typeof RSC_CONTENT_TYPE_HEADER // For App Page RSC responses\n | typeof HTML_CONTENT_TYPE_HEADER // For App Page, Pages HTML responses\n | typeof JSON_CONTENT_TYPE_HEADER // For API routes, Next.js data requests\n | typeof TEXT_PLAIN_CONTENT_TYPE_HEADER // For simplified errors\n\nexport type AppPageRenderResultMetadata = {\n flightData?: Buffer\n cacheControl?: CacheControl\n staticBailoutInfo?: {\n stack?: string\n description?: string\n }\n\n /**\n * The postponed state if the render had postponed and needs to be resumed.\n */\n postponed?: string\n\n /**\n * The headers to set on the response that were added by the render.\n */\n headers?: OutgoingHttpHeaders\n statusCode?: number\n fetchTags?: string\n fetchMetrics?: FetchMetrics\n\n segmentData?: Map\n\n /**\n * In development, the resume data cache is warmed up before the render. This\n * is attached to the metadata so that it can be used during the render. When\n * prerendering, the filled resume data cache is also attached to the metadata\n * so that it can be used when prerendering matching fallback shells.\n */\n renderResumeDataCache?: RenderResumeDataCache\n}\n\nexport type PagesRenderResultMetadata = {\n pageData?: any\n cacheControl?: CacheControl\n assetQueryString?: string\n isNotFound?: boolean\n isRedirect?: boolean\n}\n\nexport type StaticRenderResultMetadata = {}\n\nexport type RenderResultMetadata = AppPageRenderResultMetadata &\n PagesRenderResultMetadata &\n StaticRenderResultMetadata\n\nexport type RenderResultResponse =\n | ReadableStream[]\n | ReadableStream\n | string\n | Buffer\n | null\n\nexport type RenderResultOptions<\n Metadata extends RenderResultMetadata = RenderResultMetadata,\n> = {\n contentType: ContentTypeOption | null\n waitUntil?: Promise\n metadata: Metadata\n}\n\nexport default class RenderResult<\n Metadata extends RenderResultMetadata = RenderResultMetadata,\n> {\n /**\n * The detected content type for the response. This is used to set the\n * `Content-Type` header.\n */\n public readonly contentType: ContentTypeOption | null\n\n /**\n * The metadata for the response. This is used to set the revalidation times\n * and other metadata.\n */\n public readonly metadata: Readonly\n\n /**\n * The response itself. This can be a string, a stream, or null. If it's a\n * string, then it's a static response. If it's a stream, then it's a\n * dynamic response. If it's null, then the response was not found or was\n * already sent.\n */\n private response: RenderResultResponse\n\n /**\n * A render result that represents an empty response. This is used to\n * represent a response that was not found or was already sent.\n */\n public static readonly EMPTY = new RenderResult(\n null,\n { metadata: {}, contentType: null }\n )\n\n /**\n * Creates a new RenderResult instance from a static response.\n *\n * @param value the static response value\n * @param contentType the content type of the response\n * @returns a new RenderResult instance\n */\n public static fromStatic(\n value: string | Buffer,\n contentType: ContentTypeOption\n ) {\n return new RenderResult(value, {\n metadata: {},\n contentType,\n })\n }\n\n private readonly waitUntil?: Promise\n\n constructor(\n response: RenderResultResponse,\n { contentType, waitUntil, metadata }: RenderResultOptions\n ) {\n this.response = response\n this.contentType = contentType\n this.metadata = metadata\n this.waitUntil = waitUntil\n }\n\n public assignMetadata(metadata: Metadata) {\n Object.assign(this.metadata, metadata)\n }\n\n /**\n * Returns true if the response is null. It can be null if the response was\n * not found or was already sent.\n */\n public get isNull(): boolean {\n return this.response === null\n }\n\n /**\n * Returns false if the response is a string. It can be a string if the page\n * was prerendered. If it's not, then it was generated dynamically.\n */\n public get isDynamic(): boolean {\n return typeof this.response !== 'string'\n }\n\n /**\n * Returns the response if it is a string. If the page was dynamic, this will\n * return a promise if the `stream` option is true, or it will throw an error.\n *\n * @param stream Whether or not to return a promise if the response is dynamic\n * @returns The response as a string\n */\n public toUnchunkedString(stream?: false): string\n public toUnchunkedString(stream: true): Promise\n public toUnchunkedString(stream = false): Promise | string {\n if (this.response === null) {\n // If the response is null, return an empty string. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return ''\n }\n\n if (typeof this.response !== 'string') {\n if (!stream) {\n throw new InvariantError(\n 'dynamic responses cannot be unchunked. This is a bug in Next.js'\n )\n }\n\n return streamToString(this.readable)\n }\n\n return this.response\n }\n\n /**\n * Returns a readable stream of the response.\n */\n private get readable(): ReadableStream {\n if (this.response === null) {\n // If the response is null, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return new ReadableStream({\n start(controller) {\n controller.close()\n },\n })\n }\n\n if (typeof this.response === 'string') {\n return streamFromString(this.response)\n }\n\n if (Buffer.isBuffer(this.response)) {\n return streamFromBuffer(this.response)\n }\n\n // If the response is an array of streams, then chain them together.\n if (Array.isArray(this.response)) {\n return chainStreams(...this.response)\n }\n\n return this.response\n }\n\n /**\n * Coerces the response to an array of streams. This will convert the response\n * to an array of streams if it is not already one.\n *\n * @returns An array of streams\n */\n private coerce(): ReadableStream[] {\n if (this.response === null) {\n // If the response is null, return an empty stream. This behavior is\n // intentional as we're now providing the `RenderResult.EMPTY` value.\n return []\n }\n\n if (typeof this.response === 'string') {\n return [streamFromString(this.response)]\n } else if (Array.isArray(this.response)) {\n return this.response\n } else if (Buffer.isBuffer(this.response)) {\n return [streamFromBuffer(this.response)]\n } else {\n return [this.response]\n }\n }\n\n /**\n * Unshifts a new stream to the response. This will convert the response to an\n * array of streams if it is not already one and will add the new stream to\n * the start of the array. When this response is piped, all of the streams\n * will be piped one after the other.\n *\n * @param readable The new stream to unshift\n */\n public unshift(readable: ReadableStream): void {\n // Coerce the response to an array of streams.\n this.response = this.coerce()\n\n // Add the new stream to the start of the array.\n this.response.unshift(readable)\n }\n\n /**\n * Chains a new stream to the response. This will convert the response to an\n * array of streams if it is not already one and will add the new stream to\n * the end. When this response is piped, all of the streams will be piped\n * one after the other.\n *\n * @param readable The new stream to chain\n */\n public push(readable: ReadableStream): void {\n // Coerce the response to an array of streams.\n this.response = this.coerce()\n\n // Add the new stream to the end of the array.\n this.response.push(readable)\n }\n\n /**\n * Pipes the response to a writable stream. This will close/cancel the\n * writable stream if an error is encountered. If this doesn't throw, then\n * the writable stream will be closed or aborted.\n *\n * @param writable Writable stream to pipe the response to\n */\n public async pipeTo(writable: WritableStream): Promise {\n try {\n await this.readable.pipeTo(writable, {\n // We want to close the writable stream ourselves so that we can wait\n // for the waitUntil promise to resolve before closing it. If an error\n // is encountered, we'll abort the writable stream if we swallowed the\n // error.\n preventClose: true,\n })\n\n // If there is a waitUntil promise, wait for it to resolve before\n // closing the writable stream.\n if (this.waitUntil) await this.waitUntil\n\n // Close the writable stream.\n await writable.close()\n } catch (err) {\n // If this is an abort error, we should abort the writable stream (as we\n // took ownership of it when we started piping). We don't need to re-throw\n // because we handled the error.\n if (isAbortError(err)) {\n // Abort the writable stream if an error is encountered.\n await writable.abort(err)\n\n return\n }\n\n // We're not aborting the writer here as when this method throws it's not\n // clear as to how so the caller should assume it's their responsibility\n // to clean up the writer.\n throw err\n }\n }\n\n /**\n * Pipes the response to a node response. This will close/cancel the node\n * response if an error is encountered.\n *\n * @param res\n */\n public async pipeToNodeResponse(res: ServerResponse) {\n await pipeToNodeResponse(this.readable, res, this.waitUntil)\n }\n}\n"],"names":["chainStreams","streamFromBuffer","streamFromString","streamToString","isAbortError","pipeToNodeResponse","InvariantError","RenderResult","EMPTY","metadata","contentType","fromStatic","value","constructor","response","waitUntil","assignMetadata","Object","assign","isNull","isDynamic","toUnchunkedString","stream","readable","ReadableStream","start","controller","close","Buffer","isBuffer","Array","isArray","coerce","unshift","push","pipeTo","writable","preventClose","err","abort","res"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 19916, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/response-cache/utils.ts"],"sourcesContent":["import {\n CachedRouteKind,\n IncrementalCacheKind,\n type CachedAppPageValue,\n type CachedPageValue,\n type IncrementalResponseCacheEntry,\n type ResponseCacheEntry,\n} from './types'\n\nimport RenderResult from '../render-result'\nimport { RouteKind } from '../route-kind'\nimport { HTML_CONTENT_TYPE_HEADER } from '../../lib/constants'\n\nexport async function fromResponseCacheEntry(\n cacheEntry: ResponseCacheEntry\n): Promise {\n return {\n ...cacheEntry,\n value:\n cacheEntry.value?.kind === CachedRouteKind.PAGES\n ? {\n kind: CachedRouteKind.PAGES,\n html: await cacheEntry.value.html.toUnchunkedString(true),\n pageData: cacheEntry.value.pageData,\n headers: cacheEntry.value.headers,\n status: cacheEntry.value.status,\n }\n : cacheEntry.value?.kind === CachedRouteKind.APP_PAGE\n ? {\n kind: CachedRouteKind.APP_PAGE,\n html: await cacheEntry.value.html.toUnchunkedString(true),\n postponed: cacheEntry.value.postponed,\n rscData: cacheEntry.value.rscData,\n headers: cacheEntry.value.headers,\n status: cacheEntry.value.status,\n segmentData: cacheEntry.value.segmentData,\n }\n : cacheEntry.value,\n }\n}\n\nexport async function toResponseCacheEntry(\n response: IncrementalResponseCacheEntry | null\n): Promise {\n if (!response) return null\n\n return {\n isMiss: response.isMiss,\n isStale: response.isStale,\n cacheControl: response.cacheControl,\n value:\n response.value?.kind === CachedRouteKind.PAGES\n ? ({\n kind: CachedRouteKind.PAGES,\n html: RenderResult.fromStatic(\n response.value.html,\n HTML_CONTENT_TYPE_HEADER\n ),\n pageData: response.value.pageData,\n headers: response.value.headers,\n status: response.value.status,\n } satisfies CachedPageValue)\n : response.value?.kind === CachedRouteKind.APP_PAGE\n ? ({\n kind: CachedRouteKind.APP_PAGE,\n html: RenderResult.fromStatic(\n response.value.html,\n HTML_CONTENT_TYPE_HEADER\n ),\n rscData: response.value.rscData,\n headers: response.value.headers,\n status: response.value.status,\n postponed: response.value.postponed,\n segmentData: response.value.segmentData,\n } satisfies CachedAppPageValue)\n : response.value,\n }\n}\n\nexport function routeKindToIncrementalCacheKind(\n routeKind: RouteKind\n): Exclude {\n switch (routeKind) {\n case RouteKind.PAGES:\n return IncrementalCacheKind.PAGES\n case RouteKind.APP_PAGE:\n return IncrementalCacheKind.APP_PAGE\n case RouteKind.IMAGE:\n return IncrementalCacheKind.IMAGE\n case RouteKind.APP_ROUTE:\n return IncrementalCacheKind.APP_ROUTE\n case RouteKind.PAGES_API:\n // Pages Router API routes are not cached in the incremental cache.\n throw new Error(`Unexpected route kind ${routeKind}`)\n default:\n return routeKind satisfies never\n }\n}\n"],"names":["CachedRouteKind","IncrementalCacheKind","RenderResult","RouteKind","HTML_CONTENT_TYPE_HEADER","fromResponseCacheEntry","cacheEntry","value","kind","PAGES","html","toUnchunkedString","pageData","headers","status","APP_PAGE","postponed","rscData","segmentData","toResponseCacheEntry","response","isMiss","isStale","cacheControl","fromStatic","routeKindToIncrementalCacheKind","routeKind","IMAGE","APP_ROUTE","PAGES_API","Error"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 20002, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/response-cache/index.ts"],"sourcesContent":["import type {\n ResponseCacheEntry,\n ResponseGenerator,\n ResponseCacheBase,\n IncrementalResponseCacheEntry,\n IncrementalResponseCache,\n} from './types'\n\nimport { Batcher } from '../../lib/batcher'\nimport { LRUCache } from '../lib/lru-cache'\nimport { warnOnce } from '../../build/output/log'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport {\n fromResponseCacheEntry,\n routeKindToIncrementalCacheKind,\n toResponseCacheEntry,\n} from './utils'\nimport type { RouteKind } from '../route-kind'\n\n/**\n * Parses an environment variable as a positive integer, returning the fallback\n * if the value is missing, not a number, or not positive.\n */\nfunction parsePositiveInt(\n envValue: string | undefined,\n fallback: number\n): number {\n if (!envValue) return fallback\n const parsed = parseInt(envValue, 10)\n return Number.isFinite(parsed) && parsed > 0 ? parsed : fallback\n}\n\n/**\n * Default TTL (in milliseconds) for minimal mode response cache entries.\n * Used for cache hit validation as a fallback for providers that don't\n * send the x-invocation-id header yet.\n *\n * 10 seconds chosen because:\n * - Long enough to dedupe rapid successive requests (e.g., page + data)\n * - Short enough to not serve stale data across unrelated requests\n *\n * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_TTL` environment variable.\n */\nconst DEFAULT_TTL_MS = parsePositiveInt(\n process.env.NEXT_PRIVATE_RESPONSE_CACHE_TTL,\n 10_000\n)\n\n/**\n * Default maximum number of entries in the response cache.\n * Can be configured via `NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE` environment variable.\n */\nconst DEFAULT_MAX_SIZE = parsePositiveInt(\n process.env.NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE,\n 150\n)\n\n/**\n * Separator used in compound cache keys to join pathname and invocationID.\n * Using null byte (\\0) since it cannot appear in valid URL paths or UUIDs.\n */\nconst KEY_SEPARATOR = '\\0'\n\n/**\n * Sentinel value used for TTL-based cache entries (when invocationID is undefined).\n * Chosen to be a clearly reserved marker for internal cache keys.\n */\nconst TTL_SENTINEL = '__ttl_sentinel__'\n\n/**\n * Entry stored in the LRU cache.\n */\ntype CacheEntry = {\n entry: IncrementalResponseCacheEntry | null\n /**\n * TTL expiration timestamp in milliseconds. Used as a fallback for\n * cache hit validation when providers don't send x-invocation-id.\n * Memory pressure is managed by LRU eviction rather than timers.\n */\n expiresAt: number\n}\n\n/**\n * Creates a compound cache key from pathname and invocationID.\n */\nfunction createCacheKey(\n pathname: string,\n invocationID: string | undefined\n): string {\n return `${pathname}${KEY_SEPARATOR}${invocationID ?? TTL_SENTINEL}`\n}\n\n/**\n * Extracts the invocationID from a compound cache key.\n * Returns undefined if the key used TTL_SENTINEL.\n */\nfunction extractInvocationID(compoundKey: string): string | undefined {\n const separatorIndex = compoundKey.lastIndexOf(KEY_SEPARATOR)\n if (separatorIndex === -1) return undefined\n\n const invocationID = compoundKey.slice(separatorIndex + 1)\n return invocationID === TTL_SENTINEL ? undefined : invocationID\n}\n\nexport * from './types'\n\nexport default class ResponseCache implements ResponseCacheBase {\n private readonly getBatcher = Batcher.create<\n { key: string; isOnDemandRevalidate: boolean },\n IncrementalResponseCacheEntry | null,\n string\n >({\n // Ensure on-demand revalidate doesn't block normal requests, it should be\n // safe to run an on-demand revalidate for the same key as a normal request.\n cacheKeyFn: ({ key, isOnDemandRevalidate }) =>\n `${key}-${isOnDemandRevalidate ? '1' : '0'}`,\n // We wait to do any async work until after we've added our promise to\n // `pendingResponses` to ensure that any any other calls will reuse the\n // same promise until we've fully finished our work.\n schedulerFn: scheduleOnNextTick,\n })\n\n private readonly revalidateBatcher = Batcher.create<\n string,\n IncrementalResponseCacheEntry | null\n >({\n // We wait to do any async work until after we've added our promise to\n // `pendingResponses` to ensure that any any other calls will reuse the\n // same promise until we've fully finished our work.\n schedulerFn: scheduleOnNextTick,\n })\n\n /**\n * LRU cache for minimal mode using compound keys (pathname + invocationID).\n * This allows multiple invocations to cache the same pathname without\n * overwriting each other's entries.\n */\n private readonly cache: LRUCache\n\n /**\n * Set of invocation IDs that have had cache entries evicted.\n * Used to detect when the cache size may be too small.\n * Bounded to prevent memory growth.\n */\n private readonly evictedInvocationIDs: Set = new Set()\n\n /**\n * The configured max size, stored for logging.\n */\n private readonly maxSize: number\n\n /**\n * The configured TTL for cache entries in milliseconds.\n */\n private readonly ttl: number\n\n // we don't use minimal_mode name here as this.minimal_mode is\n // statically replace for server runtimes but we need it to\n // be dynamic here\n private minimal_mode?: boolean\n\n constructor(\n minimal_mode: boolean,\n maxSize: number = DEFAULT_MAX_SIZE,\n ttl: number = DEFAULT_TTL_MS\n ) {\n this.minimal_mode = minimal_mode\n this.maxSize = maxSize\n this.ttl = ttl\n\n // Create the LRU cache with eviction tracking\n this.cache = new LRUCache(maxSize, undefined, (compoundKey) => {\n const invocationID = extractInvocationID(compoundKey)\n if (invocationID) {\n // Bound to 100 entries to prevent unbounded memory growth.\n // FIFO eviction is acceptable here because:\n // 1. Invocations are short-lived (single request lifecycle), so older\n // invocations are unlikely to still be active after 100 newer ones\n // 2. This warning mechanism is best-effort for developer guidance—\n // missing occasional eviction warnings doesn't affect correctness\n // 3. If a long-running invocation is somehow evicted and then has\n // another cache entry evicted, it will simply be re-added\n if (this.evictedInvocationIDs.size >= 100) {\n const first = this.evictedInvocationIDs.values().next().value\n if (first) this.evictedInvocationIDs.delete(first)\n }\n this.evictedInvocationIDs.add(invocationID)\n }\n })\n }\n\n /**\n * Gets the response cache entry for the given key.\n *\n * @param key - The key to get the response cache entry for.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param context - The context for the get request.\n * @returns The response cache entry.\n */\n public async get(\n key: string | null,\n responseGenerator: ResponseGenerator,\n context: {\n routeKind: RouteKind\n isOnDemandRevalidate?: boolean\n isPrefetch?: boolean\n incrementalCache: IncrementalResponseCache\n isRoutePPREnabled?: boolean\n isFallback?: boolean\n waitUntil?: (prom: Promise) => void\n\n /**\n * The invocation ID from the infrastructure. Used to scope the\n * in-memory cache to a single revalidation request in minimal mode.\n */\n invocationID?: string\n }\n ): Promise {\n // If there is no key for the cache, we can't possibly look this up in the\n // cache so just return the result of the response generator.\n if (!key) {\n return responseGenerator({\n hasResolved: false,\n previousCacheEntry: null,\n })\n }\n\n // Check minimal mode cache before doing any other work.\n if (this.minimal_mode) {\n const cacheKey = createCacheKey(key, context.invocationID)\n const cachedItem = this.cache.get(cacheKey)\n\n if (cachedItem) {\n // With invocationID: exact match found - always a hit\n // With TTL mode: must check expiration\n if (context.invocationID !== undefined) {\n return toResponseCacheEntry(cachedItem.entry)\n }\n\n // TTL mode: check expiration\n const now = Date.now()\n if (cachedItem.expiresAt > now) {\n return toResponseCacheEntry(cachedItem.entry)\n }\n\n // TTL expired - clean up\n this.cache.remove(cacheKey)\n }\n\n // Warn if this invocation had entries evicted - indicates cache may be too small.\n if (\n context.invocationID &&\n this.evictedInvocationIDs.has(context.invocationID)\n ) {\n warnOnce(\n `Response cache entry was evicted for invocation ${context.invocationID}. ` +\n `Consider increasing NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE (current: ${this.maxSize}).`\n )\n }\n }\n\n const {\n incrementalCache,\n isOnDemandRevalidate = false,\n isFallback = false,\n isRoutePPREnabled = false,\n isPrefetch = false,\n waitUntil,\n routeKind,\n invocationID,\n } = context\n\n const response = await this.getBatcher.batch(\n { key, isOnDemandRevalidate },\n ({ resolve }) => {\n const promise = this.handleGet(\n key,\n responseGenerator,\n {\n incrementalCache,\n isOnDemandRevalidate,\n isFallback,\n isRoutePPREnabled,\n isPrefetch,\n routeKind,\n invocationID,\n },\n resolve\n )\n\n // We need to ensure background revalidates are passed to waitUntil.\n if (waitUntil) waitUntil(promise)\n\n return promise\n }\n )\n\n return toResponseCacheEntry(response)\n }\n\n /**\n * Handles the get request for the response cache.\n *\n * @param key - The key to get the response cache entry for.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param context - The context for the get request.\n * @param resolve - The resolve function to use to resolve the response cache entry.\n * @returns The response cache entry.\n */\n private async handleGet(\n key: string,\n responseGenerator: ResponseGenerator,\n context: {\n incrementalCache: IncrementalResponseCache\n isOnDemandRevalidate: boolean\n isFallback: boolean\n isRoutePPREnabled: boolean\n isPrefetch: boolean\n routeKind: RouteKind\n invocationID: string | undefined\n },\n resolve: (value: IncrementalResponseCacheEntry | null) => void\n ): Promise {\n let previousIncrementalCacheEntry: IncrementalResponseCacheEntry | null =\n null\n let resolved = false\n\n try {\n // Get the previous cache entry if not in minimal mode\n previousIncrementalCacheEntry = !this.minimal_mode\n ? await context.incrementalCache.get(key, {\n kind: routeKindToIncrementalCacheKind(context.routeKind),\n isRoutePPREnabled: context.isRoutePPREnabled,\n isFallback: context.isFallback,\n })\n : null\n\n if (previousIncrementalCacheEntry && !context.isOnDemandRevalidate) {\n resolve(previousIncrementalCacheEntry)\n resolved = true\n\n if (!previousIncrementalCacheEntry.isStale || context.isPrefetch) {\n // The cached value is still valid, so we don't need to update it yet.\n return previousIncrementalCacheEntry\n }\n }\n\n // Revalidate the cache entry\n const incrementalResponseCacheEntry = await this.revalidate(\n key,\n context.incrementalCache,\n context.isRoutePPREnabled,\n context.isFallback,\n responseGenerator,\n previousIncrementalCacheEntry,\n previousIncrementalCacheEntry !== null && !context.isOnDemandRevalidate,\n undefined,\n context.invocationID\n )\n\n // Handle null response\n if (!incrementalResponseCacheEntry) {\n // Remove the cache item if it was set so we don't use it again.\n if (this.minimal_mode) {\n const cacheKey = createCacheKey(key, context.invocationID)\n this.cache.remove(cacheKey)\n }\n return null\n }\n\n // Resolve for on-demand revalidation or if not already resolved\n if (context.isOnDemandRevalidate && !resolved) {\n return incrementalResponseCacheEntry\n }\n\n return incrementalResponseCacheEntry\n } catch (err) {\n // If we've already resolved the cache entry, we can't reject as we\n // already resolved the cache entry so log the error here.\n if (resolved) {\n console.error(err)\n return null\n }\n\n throw err\n }\n }\n\n /**\n * Revalidates the cache entry for the given key.\n *\n * @param key - The key to revalidate the cache entry for.\n * @param incrementalCache - The incremental cache to use to revalidate the cache entry.\n * @param isRoutePPREnabled - Whether the route is PPR enabled.\n * @param isFallback - Whether the route is a fallback.\n * @param responseGenerator - The response generator to use to generate the response cache entry.\n * @param previousIncrementalCacheEntry - The previous cache entry to use to revalidate the cache entry.\n * @param hasResolved - Whether the response has been resolved.\n * @param waitUntil - Optional function to register background work.\n * @param invocationID - The invocation ID for cache key scoping.\n * @returns The revalidated cache entry.\n */\n public async revalidate(\n key: string,\n incrementalCache: IncrementalResponseCache,\n isRoutePPREnabled: boolean,\n isFallback: boolean,\n responseGenerator: ResponseGenerator,\n previousIncrementalCacheEntry: IncrementalResponseCacheEntry | null,\n hasResolved: boolean,\n waitUntil?: (prom: Promise) => void,\n invocationID?: string\n ) {\n return this.revalidateBatcher.batch(key, () => {\n const promise = this.handleRevalidate(\n key,\n incrementalCache,\n isRoutePPREnabled,\n isFallback,\n responseGenerator,\n previousIncrementalCacheEntry,\n hasResolved,\n invocationID\n )\n\n // We need to ensure background revalidates are passed to waitUntil.\n if (waitUntil) waitUntil(promise)\n\n return promise\n })\n }\n\n private async handleRevalidate(\n key: string,\n incrementalCache: IncrementalResponseCache,\n isRoutePPREnabled: boolean,\n isFallback: boolean,\n responseGenerator: ResponseGenerator,\n previousIncrementalCacheEntry: IncrementalResponseCacheEntry | null,\n hasResolved: boolean,\n invocationID: string | undefined\n ) {\n try {\n // Generate the response cache entry using the response generator.\n const responseCacheEntry = await responseGenerator({\n hasResolved,\n previousCacheEntry: previousIncrementalCacheEntry,\n isRevalidating: true,\n })\n if (!responseCacheEntry) {\n return null\n }\n\n // Convert the response cache entry to an incremental response cache entry.\n const incrementalResponseCacheEntry = await fromResponseCacheEntry({\n ...responseCacheEntry,\n isMiss: !previousIncrementalCacheEntry,\n })\n\n // We want to persist the result only if it has a cache control value\n // defined.\n if (incrementalResponseCacheEntry.cacheControl) {\n if (this.minimal_mode) {\n // Set TTL expiration for cache hit validation. Entries are validated\n // by invocationID when available, with TTL as a fallback for providers\n // that don't send x-invocation-id. Memory is managed by LRU eviction.\n const cacheKey = createCacheKey(key, invocationID)\n this.cache.set(cacheKey, {\n entry: incrementalResponseCacheEntry,\n expiresAt: Date.now() + this.ttl,\n })\n } else {\n await incrementalCache.set(key, incrementalResponseCacheEntry.value, {\n cacheControl: incrementalResponseCacheEntry.cacheControl,\n isRoutePPREnabled,\n isFallback,\n })\n }\n }\n\n return incrementalResponseCacheEntry\n } catch (err) {\n // When a path is erroring we automatically re-set the existing cache\n // with new revalidate and expire times to prevent non-stop retrying.\n if (previousIncrementalCacheEntry?.cacheControl) {\n const revalidate = Math.min(\n Math.max(\n previousIncrementalCacheEntry.cacheControl.revalidate || 3,\n 3\n ),\n 30\n )\n const expire =\n previousIncrementalCacheEntry.cacheControl.expire === undefined\n ? undefined\n : Math.max(\n revalidate + 3,\n previousIncrementalCacheEntry.cacheControl.expire\n )\n\n await incrementalCache.set(key, previousIncrementalCacheEntry.value, {\n cacheControl: { revalidate: revalidate, expire: expire },\n isRoutePPREnabled,\n isFallback,\n })\n }\n\n // We haven't resolved yet, so let's throw to indicate an error.\n throw err\n }\n }\n}\n"],"names":["Batcher","LRUCache","warnOnce","scheduleOnNextTick","fromResponseCacheEntry","routeKindToIncrementalCacheKind","toResponseCacheEntry","parsePositiveInt","envValue","fallback","parsed","parseInt","Number","isFinite","DEFAULT_TTL_MS","process","env","NEXT_PRIVATE_RESPONSE_CACHE_TTL","DEFAULT_MAX_SIZE","NEXT_PRIVATE_RESPONSE_CACHE_MAX_SIZE","KEY_SEPARATOR","TTL_SENTINEL","createCacheKey","pathname","invocationID","extractInvocationID","compoundKey","separatorIndex","lastIndexOf","undefined","slice","ResponseCache","constructor","minimal_mode","maxSize","ttl","getBatcher","create","cacheKeyFn","key","isOnDemandRevalidate","schedulerFn","revalidateBatcher","evictedInvocationIDs","Set","cache","size","first","values","next","value","delete","add","get","responseGenerator","context","hasResolved","previousCacheEntry","cacheKey","cachedItem","entry","now","Date","expiresAt","remove","has","incrementalCache","isFallback","isRoutePPREnabled","isPrefetch","waitUntil","routeKind","response","batch","resolve","promise","handleGet","previousIncrementalCacheEntry","resolved","kind","isStale","incrementalResponseCacheEntry","revalidate","err","console","error","handleRevalidate","responseCacheEntry","isRevalidating","isMiss","cacheControl","set","Math","min","max","expire"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 20301, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/patch-fetch.ts"],"sourcesContent":["import type {\n WorkAsyncStorage,\n WorkStore,\n} from '../app-render/work-async-storage.external'\n\nimport { AppRenderSpan, NextNodeServerSpan } from './trace/constants'\nimport { getTracer, SpanKind } from './trace/tracer'\nimport {\n CACHE_ONE_YEAR,\n INFINITE_CACHE,\n NEXT_CACHE_TAG_MAX_ITEMS,\n NEXT_CACHE_TAG_MAX_LENGTH,\n} from '../../lib/constants'\nimport { markCurrentScopeAsDynamic } from '../app-render/dynamic-rendering'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport type { FetchMetric } from '../base-http'\nimport { createDedupeFetch } from './dedupe-fetch'\nimport {\n getCacheSignal,\n type RevalidateStore,\n type WorkUnitAsyncStorage,\n} from '../app-render/work-unit-async-storage.external'\nimport {\n CachedRouteKind,\n IncrementalCacheKind,\n type CachedFetchData,\n type ServerComponentsHmrCache,\n type SetIncrementalFetchCacheContext,\n} from '../response-cache'\nimport { cloneResponse } from './clone-response'\nimport type { IncrementalCache } from './incremental-cache'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nconst isEdgeRuntime = process.env.NEXT_RUNTIME === 'edge'\n\ntype Fetcher = typeof fetch\n\ntype PatchedFetcher = Fetcher & {\n readonly __nextPatched: true\n readonly __nextGetStaticStore: () => WorkAsyncStorage\n readonly _nextOriginalFetch: Fetcher\n}\n\nexport const NEXT_PATCH_SYMBOL = Symbol.for('next-patch')\n\nfunction isFetchPatched() {\n return (globalThis as Record)[NEXT_PATCH_SYMBOL] === true\n}\n\nexport function validateRevalidate(\n revalidateVal: unknown,\n route: string\n): undefined | number {\n try {\n let normalizedRevalidate: number | undefined = undefined\n\n if (revalidateVal === false) {\n normalizedRevalidate = INFINITE_CACHE\n } else if (\n typeof revalidateVal === 'number' &&\n !isNaN(revalidateVal) &&\n revalidateVal > -1\n ) {\n normalizedRevalidate = revalidateVal\n } else if (typeof revalidateVal !== 'undefined') {\n throw new Error(\n `Invalid revalidate value \"${revalidateVal}\" on \"${route}\", must be a non-negative number or false`\n )\n }\n return normalizedRevalidate\n } catch (err: any) {\n // handle client component error from attempting to check revalidate value\n if (err instanceof Error && err.message.includes('Invalid revalidate')) {\n throw err\n }\n return undefined\n }\n}\n\nexport function validateTags(tags: any[], description: string) {\n const validTags: string[] = []\n const invalidTags: Array<{\n tag: any\n reason: string\n }> = []\n\n for (let i = 0; i < tags.length; i++) {\n const tag = tags[i]\n\n if (typeof tag !== 'string') {\n invalidTags.push({ tag, reason: 'invalid type, must be a string' })\n } else if (tag.length > NEXT_CACHE_TAG_MAX_LENGTH) {\n invalidTags.push({\n tag,\n reason: `exceeded max length of ${NEXT_CACHE_TAG_MAX_LENGTH}`,\n })\n } else {\n validTags.push(tag)\n }\n\n if (validTags.length > NEXT_CACHE_TAG_MAX_ITEMS) {\n console.warn(\n `Warning: exceeded max tag count for ${description}, dropped tags:`,\n tags.slice(i).join(', ')\n )\n break\n }\n }\n\n if (invalidTags.length > 0) {\n console.warn(`Warning: invalid tags passed to ${description}: `)\n\n for (const { tag, reason } of invalidTags) {\n console.log(`tag: \"${tag}\" ${reason}`)\n }\n }\n return validTags\n}\n\nfunction trackFetchMetric(\n workStore: WorkStore,\n ctx: Omit\n) {\n if (!workStore.shouldTrackFetchMetrics) {\n return\n }\n\n workStore.fetchMetrics ??= []\n\n workStore.fetchMetrics.push({\n ...ctx,\n end: performance.timeOrigin + performance.now(),\n idx: workStore.nextFetchId || 0,\n })\n}\n\nasync function createCachedPrerenderResponse(\n res: Response,\n cacheKey: string,\n incrementalCacheContext: SetIncrementalFetchCacheContext | undefined,\n incrementalCache: IncrementalCache,\n revalidate: number,\n handleUnlock: () => Promise | void\n): Promise {\n // We are prerendering at build time or revalidate time with cacheComponents so we\n // need to buffer the response so we can guarantee it can be read in a\n // microtask.\n const bodyBuffer = await res.arrayBuffer()\n\n const fetchedData = {\n headers: Object.fromEntries(res.headers.entries()),\n body: Buffer.from(bodyBuffer).toString('base64'),\n status: res.status,\n url: res.url,\n }\n\n // We can skip setting the serverComponentsHmrCache because we aren't in dev\n // mode.\n\n if (incrementalCacheContext) {\n await incrementalCache.set(\n cacheKey,\n { kind: CachedRouteKind.FETCH, data: fetchedData, revalidate },\n incrementalCacheContext\n )\n }\n\n await handleUnlock()\n\n // We return a new Response to the caller.\n return new Response(bodyBuffer, {\n headers: res.headers,\n status: res.status,\n statusText: res.statusText,\n })\n}\n\nasync function createCachedDynamicResponse(\n workStore: WorkStore,\n res: Response,\n cacheKey: string,\n incrementalCacheContext: SetIncrementalFetchCacheContext | undefined,\n incrementalCache: IncrementalCache,\n serverComponentsHmrCache: ServerComponentsHmrCache | undefined,\n revalidate: number,\n input: RequestInfo | URL,\n handleUnlock: () => Promise | void\n): Promise {\n // We're cloning the response using this utility because there exists a bug in\n // the undici library around response cloning. See the following pull request\n // for more details: https://github.com/vercel/next.js/pull/73274\n const [cloned1, cloned2] = cloneResponse(res)\n\n // We are dynamically rendering including dev mode. We want to return the\n // response to the caller as soon as possible because it might stream over a\n // very long time.\n const cacheSetPromise = cloned1\n .arrayBuffer()\n .then(async (arrayBuffer) => {\n const bodyBuffer = Buffer.from(arrayBuffer)\n\n const fetchedData = {\n headers: Object.fromEntries(cloned1.headers.entries()),\n body: bodyBuffer.toString('base64'),\n status: cloned1.status,\n url: cloned1.url,\n }\n\n serverComponentsHmrCache?.set(cacheKey, fetchedData)\n\n if (incrementalCacheContext) {\n await incrementalCache.set(\n cacheKey,\n { kind: CachedRouteKind.FETCH, data: fetchedData, revalidate },\n incrementalCacheContext\n )\n }\n })\n .catch((error) => console.warn(`Failed to set fetch cache`, input, error))\n .finally(handleUnlock)\n\n const pendingRevalidateKey = `cache-set-${cacheKey}`\n const pendingRevalidates = (workStore.pendingRevalidates ??= {})\n\n let pendingRevalidatePromise = Promise.resolve()\n if (pendingRevalidateKey in pendingRevalidates) {\n // There is already a pending revalidate entry that we need to await to\n // avoid race conditions.\n pendingRevalidatePromise = pendingRevalidates[pendingRevalidateKey]\n }\n\n pendingRevalidates[pendingRevalidateKey] = pendingRevalidatePromise\n .then(() => cacheSetPromise)\n .finally(() => {\n // If the pending revalidate is not present in the store, then we have\n // nothing to delete.\n if (!pendingRevalidates?.[pendingRevalidateKey]) {\n return\n }\n\n delete pendingRevalidates[pendingRevalidateKey]\n })\n\n return cloned2\n}\n\ninterface PatchableModule {\n workAsyncStorage: WorkAsyncStorage\n workUnitAsyncStorage: WorkUnitAsyncStorage\n}\n\nexport function createPatchedFetcher(\n originFetch: Fetcher,\n { workAsyncStorage, workUnitAsyncStorage }: PatchableModule\n): PatchedFetcher {\n // Create the patched fetch function.\n const patched = async function fetch(\n input: RequestInfo | URL,\n init: RequestInit | undefined\n ): Promise {\n let url: URL | undefined\n try {\n url = new URL(input instanceof Request ? input.url : input)\n url.username = ''\n url.password = ''\n } catch {\n // Error caused by malformed URL should be handled by native fetch\n url = undefined\n }\n const fetchUrl = url?.href ?? ''\n const method = init?.method?.toUpperCase() || 'GET'\n\n // Do create a new span trace for internal fetches in the\n // non-verbose mode.\n const isInternal = (init?.next as any)?.internal === true\n const hideSpan = process.env.NEXT_OTEL_FETCH_DISABLED === '1'\n // We don't track fetch metrics for internal fetches\n // so it's not critical that we have a start time, as it won't be recorded.\n // This is to workaround a flaky issue where performance APIs might\n // not be available and will require follow-up investigation.\n const fetchStart: number | undefined = isInternal\n ? undefined\n : performance.timeOrigin + performance.now()\n\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n let cacheSignal = workUnitStore ? getCacheSignal(workUnitStore) : null\n if (cacheSignal) {\n cacheSignal.beginRead()\n }\n\n const result = getTracer().trace(\n isInternal ? NextNodeServerSpan.internalFetch : AppRenderSpan.fetch,\n {\n hideSpan,\n kind: SpanKind.CLIENT,\n spanName: ['fetch', method, fetchUrl].filter(Boolean).join(' '),\n attributes: {\n 'http.url': fetchUrl,\n 'http.method': method,\n 'net.peer.name': url?.hostname,\n 'net.peer.port': url?.port || undefined,\n },\n },\n async () => {\n // If this is an internal fetch, we should not do any special treatment.\n if (isInternal) {\n return originFetch(input, init)\n }\n\n // If the workStore is not available, we can't do any\n // special treatment of fetch, therefore fallback to the original\n // fetch implementation.\n if (!workStore) {\n return originFetch(input, init)\n }\n\n // We should also fallback to the original fetch implementation if we\n // are in draft mode, it does not constitute a static generation.\n if (workStore.isDraftMode) {\n return originFetch(input, init)\n }\n\n const isRequestInput =\n input &&\n typeof input === 'object' &&\n typeof (input as Request).method === 'string'\n\n const getRequestMeta = (field: string) => {\n // If request input is present but init is not, retrieve from input first.\n const value = (init as any)?.[field]\n return value || (isRequestInput ? (input as any)[field] : null)\n }\n\n let finalRevalidate: number | undefined = undefined\n const getNextField = (field: 'revalidate' | 'tags') => {\n return typeof init?.next?.[field] !== 'undefined'\n ? init?.next?.[field]\n : isRequestInput\n ? (input as any).next?.[field]\n : undefined\n }\n // RequestInit doesn't keep extra fields e.g. next so it's\n // only available if init is used separate\n const originalFetchRevalidate = getNextField('revalidate')\n let currentFetchRevalidate = originalFetchRevalidate\n const tags: string[] = validateTags(\n getNextField('tags') || [],\n `fetch ${input.toString()}`\n )\n\n let revalidateStore: RevalidateStore | undefined\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n // TODO: Stop accumulating tags in client prerender. (fallthrough)\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n revalidateStore = workUnitStore\n break\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n if (revalidateStore) {\n if (Array.isArray(tags)) {\n // Collect tags onto parent caches or parent prerenders.\n const collectedTags =\n revalidateStore.tags ?? (revalidateStore.tags = [])\n for (const tag of tags) {\n if (!collectedTags.includes(tag)) {\n collectedTags.push(tag)\n }\n }\n }\n }\n\n const implicitTags = workUnitStore?.implicitTags\n\n let pageFetchCacheMode = workStore.fetchCache\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'unstable-cache':\n // Inside unstable-cache we treat it the same as force-no-store on\n // the page.\n pageFetchCacheMode = 'force-no-store'\n break\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n const isUsingNoStore = !!workStore.isUnstableNoStore\n\n let currentFetchCacheConfig = getRequestMeta('cache')\n let cacheReason = ''\n let cacheWarning: string | undefined\n\n if (\n typeof currentFetchCacheConfig === 'string' &&\n typeof currentFetchRevalidate !== 'undefined'\n ) {\n // If the revalidate value conflicts with the cache value, we should warn the user and unset the conflicting values.\n const isConflictingRevalidate =\n // revalidate: 0 and cache: force-cache\n (currentFetchCacheConfig === 'force-cache' &&\n currentFetchRevalidate === 0) ||\n // revalidate: >0 or revalidate: false and cache: no-store\n (currentFetchCacheConfig === 'no-store' &&\n (currentFetchRevalidate > 0 || currentFetchRevalidate === false))\n\n if (isConflictingRevalidate) {\n cacheWarning = `Specified \"cache: ${currentFetchCacheConfig}\" and \"revalidate: ${currentFetchRevalidate}\", only one should be specified.`\n currentFetchCacheConfig = undefined\n currentFetchRevalidate = undefined\n }\n }\n\n const hasExplicitFetchCacheOptOut =\n // fetch config itself signals not to cache\n currentFetchCacheConfig === 'no-cache' ||\n currentFetchCacheConfig === 'no-store' ||\n // the fetch isn't explicitly caching and the segment level cache config signals not to cache\n // note: `pageFetchCacheMode` is also set by being in an unstable_cache context.\n pageFetchCacheMode === 'force-no-store' ||\n pageFetchCacheMode === 'only-no-store'\n\n // If no explicit fetch cache mode is set, but dynamic = `force-dynamic` is set,\n // we shouldn't consider caching the fetch. This is because the `dynamic` cache\n // is considered a \"top-level\" cache mode, whereas something like `fetchCache` is more\n // fine-grained. Top-level modes are responsible for setting reasonable defaults for the\n // other configurations.\n const noFetchConfigAndForceDynamic =\n !pageFetchCacheMode &&\n !currentFetchCacheConfig &&\n !currentFetchRevalidate &&\n workStore.forceDynamic\n\n if (\n // force-cache was specified without a revalidate value. We set the revalidate value to false\n // which will signal the cache to not revalidate\n currentFetchCacheConfig === 'force-cache' &&\n typeof currentFetchRevalidate === 'undefined'\n ) {\n currentFetchRevalidate = false\n } else if (\n hasExplicitFetchCacheOptOut ||\n noFetchConfigAndForceDynamic\n ) {\n currentFetchRevalidate = 0\n }\n\n if (\n currentFetchCacheConfig === 'no-cache' ||\n currentFetchCacheConfig === 'no-store'\n ) {\n cacheReason = `cache: ${currentFetchCacheConfig}`\n }\n\n finalRevalidate = validateRevalidate(\n currentFetchRevalidate,\n workStore.route\n )\n\n const _headers = getRequestMeta('headers')\n const initHeaders: Headers =\n typeof _headers?.get === 'function'\n ? _headers\n : new Headers(_headers || {})\n\n const hasUnCacheableHeader =\n initHeaders.get('authorization') || initHeaders.get('cookie')\n\n const isUnCacheableMethod = !['get', 'head'].includes(\n getRequestMeta('method')?.toLowerCase() || 'get'\n )\n\n /**\n * We automatically disable fetch caching under the following conditions:\n * - Fetch cache configs are not set. Specifically:\n * - A page fetch cache mode is not set (export const fetchCache=...)\n * - A fetch cache mode is not set in the fetch call (fetch(url, { cache: ... }))\n * or the fetch cache mode is set to 'default'\n * - A fetch revalidate value is not set in the fetch call (fetch(url, { revalidate: ... }))\n * - OR the fetch comes after a configuration that triggered dynamic rendering (e.g., reading cookies())\n * and the fetch was considered uncacheable (e.g., POST method or has authorization headers)\n */\n const hasNoExplicitCacheConfig =\n // eslint-disable-next-line eqeqeq\n pageFetchCacheMode == undefined &&\n // eslint-disable-next-line eqeqeq\n (currentFetchCacheConfig == undefined ||\n // when considering whether to opt into the default \"no-cache\" fetch semantics,\n // a \"default\" cache config should be treated the same as no cache config\n currentFetchCacheConfig === 'default') &&\n // eslint-disable-next-line eqeqeq\n currentFetchRevalidate == undefined\n\n let autoNoCache = Boolean(\n (hasUnCacheableHeader || isUnCacheableMethod) &&\n revalidateStore?.revalidate === 0\n )\n\n let isImplicitBuildTimeCache = false\n\n if (!autoNoCache && hasNoExplicitCacheConfig) {\n // We don't enable automatic no-cache behavior during build-time\n // prerendering so that we can still leverage the fetch cache between\n // export workers.\n if (workStore.isBuildTimePrerendering) {\n isImplicitBuildTimeCache = true\n } else {\n autoNoCache = true\n }\n }\n\n // If we have no cache config, and we're in Dynamic I/O prerendering,\n // it'll be a dynamic call. We don't have to issue that dynamic call.\n if (hasNoExplicitCacheConfig && workUnitStore !== undefined) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n // While we don't want to do caching in the client scope we know the\n // fetch will be dynamic for cacheComponents so we may as well avoid the\n // call here. (fallthrough)\n case 'prerender-client':\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n 'fetch()'\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n switch (pageFetchCacheMode) {\n case 'force-no-store': {\n cacheReason = 'fetchCache = force-no-store'\n break\n }\n case 'only-no-store': {\n if (\n currentFetchCacheConfig === 'force-cache' ||\n (typeof finalRevalidate !== 'undefined' && finalRevalidate > 0)\n ) {\n throw new Error(\n `cache: 'force-cache' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-no-store'`\n )\n }\n cacheReason = 'fetchCache = only-no-store'\n break\n }\n case 'only-cache': {\n if (currentFetchCacheConfig === 'no-store') {\n throw new Error(\n `cache: 'no-store' used on fetch for ${fetchUrl} with 'export const fetchCache = 'only-cache'`\n )\n }\n break\n }\n case 'force-cache': {\n if (\n typeof currentFetchRevalidate === 'undefined' ||\n currentFetchRevalidate === 0\n ) {\n cacheReason = 'fetchCache = force-cache'\n finalRevalidate = INFINITE_CACHE\n }\n break\n }\n case 'default-cache':\n case 'default-no-store':\n case 'auto':\n case undefined:\n // sometimes we won't match the above cases. the reason we don't move\n // everything to this switch is the use of autoNoCache which is not a fetchCacheMode\n // I suspect this could be unified with fetchCacheMode however in which case we could\n // simplify the switch case and ensure we have an exhaustive switch handling all modes\n break\n default:\n pageFetchCacheMode satisfies never\n }\n\n if (typeof finalRevalidate === 'undefined') {\n if (pageFetchCacheMode === 'default-cache' && !isUsingNoStore) {\n finalRevalidate = INFINITE_CACHE\n cacheReason = 'fetchCache = default-cache'\n } else if (pageFetchCacheMode === 'default-no-store') {\n finalRevalidate = 0\n cacheReason = 'fetchCache = default-no-store'\n } else if (isUsingNoStore) {\n finalRevalidate = 0\n cacheReason = 'noStore call'\n } else if (autoNoCache) {\n finalRevalidate = 0\n cacheReason = 'auto no cache'\n } else {\n // TODO: should we consider this case an invariant?\n cacheReason = 'auto cache'\n finalRevalidate = revalidateStore\n ? revalidateStore.revalidate\n : INFINITE_CACHE\n }\n } else if (!cacheReason) {\n cacheReason = `revalidate: ${finalRevalidate}`\n }\n\n if (\n // when force static is configured we don't bail from\n // `revalidate: 0` values\n !(workStore.forceStatic && finalRevalidate === 0) &&\n // we don't consider autoNoCache to switch to dynamic for ISR\n !autoNoCache &&\n // If the revalidate value isn't currently set or the value is less\n // than the current revalidate value, we should update the revalidate\n // value.\n revalidateStore &&\n finalRevalidate < revalidateStore.revalidate\n ) {\n // If we were setting the revalidate value to 0, we should try to\n // postpone instead first.\n if (finalRevalidate === 0) {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n 'fetch()'\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n markCurrentScopeAsDynamic(\n workStore,\n workUnitStore,\n `revalidate: 0 fetch ${input} ${workStore.route}`\n )\n }\n\n // We only want to set the revalidate store's revalidate time if it\n // was explicitly set for the fetch call, i.e.\n // originalFetchRevalidate.\n if (revalidateStore && originalFetchRevalidate === finalRevalidate) {\n revalidateStore.revalidate = finalRevalidate\n }\n }\n\n const isCacheableRevalidate =\n typeof finalRevalidate === 'number' && finalRevalidate > 0\n\n let cacheKey: string | undefined\n const { incrementalCache } = workStore\n let isHmrRefresh = false\n let serverComponentsHmrCache: ServerComponentsHmrCache | undefined\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'request':\n case 'cache':\n case 'private-cache':\n isHmrRefresh = workUnitStore.isHmrRefresh ?? false\n serverComponentsHmrCache = workUnitStore.serverComponentsHmrCache\n break\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n if (\n incrementalCache &&\n (isCacheableRevalidate || serverComponentsHmrCache)\n ) {\n try {\n cacheKey = await incrementalCache.generateCacheKey(\n fetchUrl,\n isRequestInput ? (input as RequestInit) : init\n )\n } catch (err) {\n console.error(`Failed to generate cache key for`, input)\n }\n }\n\n const fetchIdx = workStore.nextFetchId ?? 1\n workStore.nextFetchId = fetchIdx + 1\n\n let handleUnlock: () => Promise | void = () => {}\n\n const doOriginalFetch = async (\n isStale?: boolean,\n cacheReasonOverride?: string\n ) => {\n const requestInputFields = [\n 'cache',\n 'credentials',\n 'headers',\n 'integrity',\n 'keepalive',\n 'method',\n 'mode',\n 'redirect',\n 'referrer',\n 'referrerPolicy',\n 'window',\n 'duplex',\n\n // don't pass through signal when revalidating\n ...(isStale ? [] : ['signal']),\n ]\n\n if (isRequestInput) {\n const reqInput: Request = input as any\n const reqOptions: RequestInit = {\n body: (reqInput as any)._ogBody || reqInput.body,\n }\n\n for (const field of requestInputFields) {\n // @ts-expect-error custom fields\n reqOptions[field] = reqInput[field]\n }\n input = new Request(reqInput.url, reqOptions)\n } else if (init) {\n const { _ogBody, body, signal, ...otherInput } =\n init as RequestInit & { _ogBody?: any }\n init = {\n ...otherInput,\n body: _ogBody || body,\n signal: isStale ? undefined : signal,\n }\n }\n\n // add metadata to init without editing the original\n const clonedInit = {\n ...init,\n next: { ...init?.next, fetchType: 'origin', fetchIdx },\n }\n\n return originFetch(input, clonedInit)\n .then(async (res) => {\n if (!isStale && fetchStart) {\n trackFetchMetric(workStore, {\n start: fetchStart,\n url: fetchUrl,\n cacheReason: cacheReasonOverride || cacheReason,\n cacheStatus:\n finalRevalidate === 0 || cacheReasonOverride\n ? 'skip'\n : 'miss',\n cacheWarning,\n status: res.status,\n method: clonedInit.method || 'GET',\n })\n }\n if (\n res.status === 200 &&\n incrementalCache &&\n cacheKey &&\n (isCacheableRevalidate || serverComponentsHmrCache)\n ) {\n const normalizedRevalidate =\n finalRevalidate >= INFINITE_CACHE\n ? CACHE_ONE_YEAR\n : finalRevalidate\n\n const incrementalCacheConfig:\n | SetIncrementalFetchCacheContext\n | undefined = isCacheableRevalidate\n ? {\n fetchCache: true,\n fetchUrl,\n fetchIdx,\n tags,\n isImplicitBuildTimeCache,\n }\n : undefined\n\n switch (workUnitStore?.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n return createCachedPrerenderResponse(\n res,\n cacheKey,\n incrementalCacheConfig,\n incrementalCache,\n normalizedRevalidate,\n handleUnlock\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering &&\n workUnitStore.cacheSignal\n ) {\n // We're filling caches for a staged render,\n // so we need to wait for the response to finish instead of streaming.\n return createCachedPrerenderResponse(\n res,\n cacheKey,\n incrementalCacheConfig,\n incrementalCache,\n normalizedRevalidate,\n handleUnlock\n )\n }\n // fallthrough\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case undefined:\n return createCachedDynamicResponse(\n workStore,\n res,\n cacheKey,\n incrementalCacheConfig,\n incrementalCache,\n serverComponentsHmrCache,\n normalizedRevalidate,\n input,\n handleUnlock\n )\n default:\n workUnitStore satisfies never\n }\n }\n\n // we had response that we determined shouldn't be cached so we return it\n // and don't cache it. This also needs to unlock the cache lock we acquired.\n await handleUnlock()\n\n return res\n })\n .catch((error) => {\n handleUnlock()\n throw error\n })\n }\n\n let cacheReasonOverride\n let isForegroundRevalidate = false\n let isHmrRefreshCache = false\n\n if (cacheKey && incrementalCache) {\n let cachedFetchData: CachedFetchData | undefined\n\n if (isHmrRefresh && serverComponentsHmrCache) {\n cachedFetchData = serverComponentsHmrCache.get(cacheKey)\n isHmrRefreshCache = true\n }\n\n if (isCacheableRevalidate && !cachedFetchData) {\n handleUnlock = await incrementalCache.lock(cacheKey)\n const entry = workStore.isOnDemandRevalidate\n ? null\n : await incrementalCache.get(cacheKey, {\n kind: IncrementalCacheKind.FETCH,\n revalidate: finalRevalidate,\n fetchUrl,\n fetchIdx,\n tags,\n softTags: implicitTags?.tags,\n })\n\n if (hasNoExplicitCacheConfig && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n // We sometimes use the cache to dedupe fetches that do not\n // specify a cache configuration. In these cases we want to\n // make sure we still exclude them from prerenders if\n // cacheComponents is on so we introduce an artificial task boundary\n // here.\n await getTimeoutBoundary()\n break\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n if (entry) {\n await handleUnlock()\n } else {\n // in dev, incremental cache response will be null in case the browser adds `cache-control: no-cache` in the request headers\n // TODO: it seems like we also hit this after revalidates in dev?\n cacheReasonOverride = 'cache-control: no-cache (hard refresh)'\n }\n\n if (entry?.value && entry.value.kind === CachedRouteKind.FETCH) {\n // when stale and is revalidating we wait for fresh data\n // so the revalidated entry has the updated data\n if (workStore.isStaticGeneration && entry.isStale) {\n isForegroundRevalidate = true\n } else {\n if (entry.isStale) {\n workStore.pendingRevalidates ??= {}\n if (!workStore.pendingRevalidates[cacheKey]) {\n const pendingRevalidate = doOriginalFetch(true)\n .then(async (response) => ({\n body: await response.arrayBuffer(),\n headers: response.headers,\n status: response.status,\n statusText: response.statusText,\n }))\n .finally(() => {\n workStore.pendingRevalidates ??= {}\n delete workStore.pendingRevalidates[cacheKey || '']\n })\n\n // Attach the empty catch here so we don't get a \"unhandled\n // promise rejection\" warning.\n pendingRevalidate.catch(console.error)\n\n workStore.pendingRevalidates[cacheKey] = pendingRevalidate\n }\n }\n\n cachedFetchData = entry.value.data\n }\n }\n }\n\n if (cachedFetchData) {\n if (fetchStart) {\n trackFetchMetric(workStore, {\n start: fetchStart,\n url: fetchUrl,\n cacheReason,\n cacheStatus: isHmrRefreshCache ? 'hmr' : 'hit',\n cacheWarning,\n status: cachedFetchData.status || 200,\n method: init?.method || 'GET',\n })\n }\n\n const response = new Response(\n Buffer.from(cachedFetchData.body, 'base64'),\n {\n headers: cachedFetchData.headers,\n status: cachedFetchData.status,\n }\n )\n\n Object.defineProperty(response, 'url', {\n value: cachedFetchData.url,\n })\n\n return response\n }\n }\n\n if (\n (workStore.isStaticGeneration ||\n (process.env.NODE_ENV === 'development' &&\n process.env.__NEXT_CACHE_COMPONENTS &&\n workUnitStore &&\n // eslint-disable-next-line no-restricted-syntax\n workUnitStore.type === 'request' &&\n workUnitStore.stagedRendering)) &&\n init &&\n typeof init === 'object'\n ) {\n const { cache } = init\n\n // Delete `cache` property as Cloudflare Workers will throw an error\n if (isEdgeRuntime) delete init.cache\n\n if (cache === 'no-store') {\n // If enabled, we should bail out of static generation.\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n 'fetch()'\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n if (cacheSignal) {\n cacheSignal.endRead()\n cacheSignal = null\n }\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n markCurrentScopeAsDynamic(\n workStore,\n workUnitStore,\n `no-store fetch ${input} ${workStore.route}`\n )\n }\n\n const hasNextConfig = 'next' in init\n const { next = {} } = init\n if (\n typeof next.revalidate === 'number' &&\n revalidateStore &&\n next.revalidate < revalidateStore.revalidate\n ) {\n if (next.revalidate === 0) {\n // If enabled, we should bail out of static generation.\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n 'fetch()'\n )\n case 'request':\n if (\n process.env.NODE_ENV === 'development' &&\n workUnitStore.stagedRendering\n ) {\n await workUnitStore.stagedRendering.waitForStage(\n RenderStage.Dynamic\n )\n }\n break\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'prerender-legacy':\n case 'prerender-ppr':\n break\n default:\n workUnitStore satisfies never\n }\n }\n markCurrentScopeAsDynamic(\n workStore,\n workUnitStore,\n `revalidate: 0 fetch ${input} ${workStore.route}`\n )\n }\n\n if (!workStore.forceStatic || next.revalidate !== 0) {\n revalidateStore.revalidate = next.revalidate\n }\n }\n if (hasNextConfig) delete init.next\n }\n\n // if we are revalidating the whole page via time or on-demand and\n // the fetch cache entry is stale we should still de-dupe the\n // origin hit if it's a cache-able entry\n if (cacheKey && isForegroundRevalidate) {\n const pendingRevalidateKey = cacheKey\n workStore.pendingRevalidates ??= {}\n let pendingRevalidate =\n workStore.pendingRevalidates[pendingRevalidateKey]\n\n if (pendingRevalidate) {\n const revalidatedResult: {\n body: ArrayBuffer\n headers: Headers\n status: number\n statusText: string\n } = await pendingRevalidate\n return new Response(revalidatedResult.body, {\n headers: revalidatedResult.headers,\n status: revalidatedResult.status,\n statusText: revalidatedResult.statusText,\n })\n }\n\n // We used to just resolve the Response and clone it however for\n // static generation with cacheComponents we need the response to be able to\n // be resolved in a microtask and cloning the response will never have\n // a body that can resolve in a microtask in node (as observed through\n // experimentation) So instead we await the body and then when it is\n // available we construct manually cloned Response objects with the\n // body as an ArrayBuffer. This will be resolvable in a microtask\n // making it compatible with cacheComponents.\n const pendingResponse = doOriginalFetch(true, cacheReasonOverride)\n // We're cloning the response using this utility because there\n // exists a bug in the undici library around response cloning.\n // See the following pull request for more details:\n // https://github.com/vercel/next.js/pull/73274\n .then(cloneResponse)\n\n pendingRevalidate = pendingResponse\n .then(async (responses) => {\n const response = responses[0]\n return {\n body: await response.arrayBuffer(),\n headers: response.headers,\n status: response.status,\n statusText: response.statusText,\n }\n })\n .finally(() => {\n // If the pending revalidate is not present in the store, then\n // we have nothing to delete.\n if (!workStore.pendingRevalidates?.[pendingRevalidateKey]) {\n return\n }\n\n delete workStore.pendingRevalidates[pendingRevalidateKey]\n })\n\n // Attach the empty catch here so we don't get a \"unhandled promise\n // rejection\" warning\n pendingRevalidate.catch(() => {})\n\n workStore.pendingRevalidates[pendingRevalidateKey] = pendingRevalidate\n\n return pendingResponse.then((responses) => responses[1])\n } else {\n return doOriginalFetch(false, cacheReasonOverride)\n }\n }\n )\n\n if (cacheSignal) {\n try {\n return await result\n } finally {\n if (cacheSignal) {\n cacheSignal.endRead()\n }\n }\n }\n return result\n }\n\n // Attach the necessary properties to the patched fetch function.\n // We don't use this to determine if the fetch function has been patched,\n // but for external consumers to determine if the fetch function has been\n // patched.\n patched.__nextPatched = true as const\n patched.__nextGetStaticStore = () => workAsyncStorage\n patched._nextOriginalFetch = originFetch\n ;(globalThis as Record)[NEXT_PATCH_SYMBOL] = true\n\n // Assign the function name also as a name property, so that it's preserved\n // even when mangling is enabled.\n Object.defineProperty(patched, 'name', { value: 'fetch', writable: false })\n\n return patched\n}\n\n// we patch fetch to collect cache information used for\n// determining if a page is static or not\nexport function patchFetch(options: PatchableModule) {\n // If we've already patched fetch, we should not patch it again.\n if (isFetchPatched()) return\n\n // Grab the original fetch function. We'll attach this so we can use it in\n // the patched fetch function.\n const original = createDedupeFetch(globalThis.fetch)\n\n // Set the global fetch to the patched fetch.\n globalThis.fetch = createPatchedFetcher(original, options)\n}\n\nlet currentTimeoutBoundary: null | Promise = null\nfunction getTimeoutBoundary() {\n if (!currentTimeoutBoundary) {\n currentTimeoutBoundary = new Promise((r) => {\n setTimeout(() => {\n currentTimeoutBoundary = null\n r()\n }, 0)\n })\n }\n return currentTimeoutBoundary\n}\n"],"names":["AppRenderSpan","NextNodeServerSpan","getTracer","SpanKind","CACHE_ONE_YEAR","INFINITE_CACHE","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","markCurrentScopeAsDynamic","makeHangingPromise","createDedupeFetch","getCacheSignal","CachedRouteKind","IncrementalCacheKind","cloneResponse","RenderStage","isEdgeRuntime","process","env","NEXT_RUNTIME","NEXT_PATCH_SYMBOL","Symbol","for","isFetchPatched","globalThis","validateRevalidate","revalidateVal","route","normalizedRevalidate","undefined","isNaN","Error","err","message","includes","validateTags","tags","description","validTags","invalidTags","i","length","tag","push","reason","console","warn","slice","join","log","trackFetchMetric","workStore","ctx","shouldTrackFetchMetrics","fetchMetrics","end","performance","timeOrigin","now","idx","nextFetchId","createCachedPrerenderResponse","res","cacheKey","incrementalCacheContext","incrementalCache","revalidate","handleUnlock","bodyBuffer","arrayBuffer","fetchedData","headers","Object","fromEntries","entries","body","Buffer","from","toString","status","url","set","kind","FETCH","data","Response","statusText","createCachedDynamicResponse","serverComponentsHmrCache","input","cloned1","cloned2","cacheSetPromise","then","catch","error","finally","pendingRevalidateKey","pendingRevalidates","pendingRevalidatePromise","Promise","resolve","createPatchedFetcher","originFetch","workAsyncStorage","workUnitAsyncStorage","patched","fetch","init","URL","Request","username","password","fetchUrl","href","method","toUpperCase","isInternal","next","internal","hideSpan","NEXT_OTEL_FETCH_DISABLED","fetchStart","getStore","workUnitStore","cacheSignal","beginRead","result","trace","internalFetch","CLIENT","spanName","filter","Boolean","attributes","hostname","port","getRequestMeta","isDraftMode","isRequestInput","field","value","finalRevalidate","getNextField","originalFetchRevalidate","currentFetchRevalidate","revalidateStore","type","Array","isArray","collectedTags","implicitTags","pageFetchCacheMode","fetchCache","isUsingNoStore","isUnstableNoStore","currentFetchCacheConfig","cacheReason","cacheWarning","isConflictingRevalidate","hasExplicitFetchCacheOptOut","noFetchConfigAndForceDynamic","forceDynamic","_headers","initHeaders","get","Headers","hasUnCacheableHeader","isUnCacheableMethod","toLowerCase","hasNoExplicitCacheConfig","autoNoCache","isImplicitBuildTimeCache","isBuildTimePrerendering","endRead","renderSignal","NODE_ENV","stagedRendering","waitForStage","Dynamic","forceStatic","isCacheableRevalidate","isHmrRefresh","generateCacheKey","fetchIdx","doOriginalFetch","isStale","cacheReasonOverride","requestInputFields","reqInput","reqOptions","_ogBody","signal","otherInput","clonedInit","fetchType","start","cacheStatus","incrementalCacheConfig","isForegroundRevalidate","isHmrRefreshCache","cachedFetchData","lock","entry","isOnDemandRevalidate","softTags","getTimeoutBoundary","isStaticGeneration","pendingRevalidate","response","defineProperty","__NEXT_CACHE_COMPONENTS","cache","hasNextConfig","revalidatedResult","pendingResponse","responses","__nextPatched","__nextGetStaticStore","_nextOriginalFetch","writable","patchFetch","options","original","currentTimeoutBoundary","r","setTimeout"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 21232, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 21238, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 21245, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/segment-explorer-node.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n useState,\n createContext,\n useContext,\n use,\n useMemo,\n useCallback,\n} from 'react'\nimport { useLayoutEffect } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\nimport { notFound } from '../../../client/components/not-found'\n\nexport type SegmentBoundaryType =\n | 'not-found'\n | 'error'\n | 'loading'\n | 'global-error'\n\nexport const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE =\n 'NEXT_DEVTOOLS_SIMULATED_ERROR'\n\nexport type SegmentNodeState = {\n type: string\n pagePath: string\n boundaryType: string | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}\n\nfunction SegmentTrieNode({\n type,\n pagePath,\n}: {\n type: string\n pagePath: string\n}): React.ReactNode {\n const { boundaryType, setBoundaryType } = useSegmentState()\n const nodeState: SegmentNodeState = useMemo(() => {\n return {\n type,\n pagePath,\n boundaryType,\n setBoundaryType,\n }\n }, [type, pagePath, boundaryType, setBoundaryType])\n\n // Use `useLayoutEffect` to ensure the state is updated during suspense.\n // `useEffect` won't work as the state is preserved during suspense.\n useLayoutEffect(() => {\n dispatcher.segmentExplorerNodeAdd(nodeState)\n return () => {\n dispatcher.segmentExplorerNodeRemove(nodeState)\n }\n }, [nodeState])\n\n return null\n}\n\nfunction NotFoundSegmentNode(): React.ReactNode {\n notFound()\n}\n\nfunction ErrorSegmentNode(): React.ReactNode {\n throw new Error(SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE)\n}\n\nconst forever = new Promise(() => {})\nfunction LoadingSegmentNode(): React.ReactNode {\n use(forever)\n return null\n}\n\nexport function SegmentViewStateNode({ page }: { page: string }) {\n useLayoutEffect(() => {\n dispatcher.segmentExplorerUpdateRouteState(page)\n return () => {\n dispatcher.segmentExplorerUpdateRouteState('')\n }\n }, [page])\n return null\n}\n\nexport function SegmentBoundaryTriggerNode() {\n const { boundaryType } = useSegmentState()\n let segmentNode: React.ReactNode = null\n if (boundaryType === 'loading') {\n segmentNode = \n } else if (boundaryType === 'not-found') {\n segmentNode = \n } else if (boundaryType === 'error') {\n segmentNode = \n }\n return segmentNode\n}\n\nexport function SegmentViewNode({\n type,\n pagePath,\n children,\n}: {\n type: string\n pagePath: string\n children?: ReactNode\n}): React.ReactNode {\n const segmentNode = (\n \n )\n\n return (\n <>\n {segmentNode}\n {children}\n \n )\n}\n\nconst SegmentStateContext = createContext<{\n boundaryType: SegmentBoundaryType | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}>({\n boundaryType: null,\n setBoundaryType: () => {},\n})\n\nexport function SegmentStateProvider({ children }: { children: ReactNode }) {\n const [boundaryType, setBoundaryType] = useState(\n null\n )\n\n const [errorBoundaryKey, setErrorBoundaryKey] = useState(0)\n const reloadBoundary = useCallback(\n () => setErrorBoundaryKey((prev) => prev + 1),\n []\n )\n\n const setBoundaryTypeAndReload = useCallback(\n (type: SegmentBoundaryType | null) => {\n if (type === null) {\n reloadBoundary()\n }\n setBoundaryType(type)\n },\n [reloadBoundary]\n )\n\n return (\n \n {children}\n \n )\n}\n\nexport function useSegmentState() {\n return useContext(SegmentStateContext)\n}\n"],"names":["useState","createContext","useContext","use","useMemo","useCallback","useLayoutEffect","dispatcher","notFound","SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE","SegmentTrieNode","type","pagePath","boundaryType","setBoundaryType","useSegmentState","nodeState","segmentExplorerNodeAdd","segmentExplorerNodeRemove","NotFoundSegmentNode","ErrorSegmentNode","Error","forever","Promise","LoadingSegmentNode","SegmentViewStateNode","page","segmentExplorerUpdateRouteState","SegmentBoundaryTriggerNode","segmentNode","SegmentViewNode","children","SegmentStateContext","SegmentStateProvider","errorBoundaryKey","setErrorBoundaryKey","reloadBoundary","prev","setBoundaryTypeAndReload","Provider","value"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 21253, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/entry-base.ts"],"sourcesContent":["// eslint-disable-next-line import/no-extraneous-dependencies\nexport {\n createTemporaryReferenceSet,\n renderToReadableStream,\n decodeReply,\n decodeAction,\n decodeFormState,\n} from 'react-server-dom-webpack/server'\n\n// eslint-disable-next-line import/no-extraneous-dependencies\nexport { prerender } from 'react-server-dom-webpack/static'\n\n// TODO: Just re-export `* as ReactServer`\nexport { captureOwnerStack, createElement, Fragment } from 'react'\n\nexport { default as LayoutRouter } from '../../client/components/layout-router'\nexport { default as RenderFromTemplateContext } from '../../client/components/render-from-template-context'\nexport { workAsyncStorage } from '../app-render/work-async-storage.external'\nexport { workUnitAsyncStorage } from './work-unit-async-storage.external'\nexport { actionAsyncStorage } from '../app-render/action-async-storage.external'\n\nexport { ClientPageRoot } from '../../client/components/client-page'\nexport { ClientSegmentRoot } from '../../client/components/client-segment'\nexport {\n createServerSearchParamsForServerPage,\n createPrerenderSearchParamsForClientPage,\n} from '../request/search-params'\nexport {\n createServerParamsForServerSegment,\n createPrerenderParamsForClientSegment,\n} from '../request/params'\nexport * as serverHooks from '../../client/components/hooks-server-context'\nexport { HTTPAccessFallbackBoundary } from '../../client/components/http-access-fallback/error-boundary'\nexport { createMetadataComponents } from '../../lib/metadata/metadata'\nexport { RootLayoutBoundary } from '../../lib/framework/boundary-components'\n\nexport { preloadStyle, preloadFont, preconnect } from './rsc/preloads'\nexport { Postpone } from './rsc/postpone'\nexport { taintObjectReference } from './rsc/taint'\nexport { collectSegmentData } from './collect-segment-data'\n\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { workUnitAsyncStorage } from './work-unit-async-storage.external'\nimport { patchFetch as _patchFetch } from '../lib/patch-fetch'\n\nlet SegmentViewNode: typeof import('../../next-devtools/userspace/app/segment-explorer-node').SegmentViewNode =\n () => null\nlet SegmentViewStateNode: typeof import('../../next-devtools/userspace/app/segment-explorer-node').SegmentViewStateNode =\n () => null\nif (process.env.NODE_ENV === 'development') {\n const mod =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n SegmentViewNode = mod.SegmentViewNode\n SegmentViewStateNode = mod.SegmentViewStateNode\n}\n\n// For hot-reloader\ndeclare global {\n var __next__clear_chunk_cache__: (() => void) | null | undefined\n var __turbopack_clear_chunk_cache__: () => void | null | undefined\n}\n// hot-reloader modules are not bundled so we need to inject `__next__clear_chunk_cache__`\n// into globalThis from this file which is bundled.\nif (process.env.TURBOPACK) {\n globalThis.__next__clear_chunk_cache__ = __turbopack_clear_chunk_cache__\n} else {\n // Webpack does not have chunks on the server\n globalThis.__next__clear_chunk_cache__ = null\n}\n\n// patchFetch makes use of APIs such as `React.unstable_postpone` which are only available\n// in the experimental channel of React, so export it from here so that it comes from the bundled runtime\nexport function patchFetch() {\n return _patchFetch({\n workAsyncStorage,\n workUnitAsyncStorage,\n })\n}\n\n// Development only\nexport { SegmentViewNode, SegmentViewStateNode }\n"],"names":["createTemporaryReferenceSet","renderToReadableStream","decodeReply","decodeAction","decodeFormState","prerender","captureOwnerStack","createElement","Fragment","default","LayoutRouter","RenderFromTemplateContext","workAsyncStorage","workUnitAsyncStorage","actionAsyncStorage","ClientPageRoot","ClientSegmentRoot","createServerSearchParamsForServerPage","createPrerenderSearchParamsForClientPage","createServerParamsForServerSegment","createPrerenderParamsForClientSegment","serverHooks","HTTPAccessFallbackBoundary","createMetadataComponents","RootLayoutBoundary","preloadStyle","preloadFont","preconnect","Postpone","taintObjectReference","collectSegmentData","patchFetch","_patchFetch","SegmentViewNode","SegmentViewStateNode","process","env","NODE_ENV","mod","require","TURBOPACK","globalThis","__next__clear_chunk_cache__","__turbopack_clear_chunk_cache__"],"mappings":";;;;;;;;AAAA,6DAA6D;AAC7D,SACEA,2BAA2B,EAC3BC,sBAAsB,EACtBC,WAAW,EACXC,YAAY,EACZC,eAAe,QACV,kCAAiC;AAExC,6DAA6D;AAC7D,SAASC,SAAS,QAAQ,kCAAiC;AAE3D,0CAA0C;AAC1C,SAASC,iBAAiB,EAAEC,aAAa,EAAEC,QAAQ,QAAQ,QAAO;AAElE,SAASC,WAAWC,YAAY,QAAQ,wCAAuC;AAC/E,SAASD,WAAWE,yBAAyB,QAAQ,uDAAsD;AAC3G,SAASC,gBAAgB,QAAQ,4CAA2C;AAC5E,SAASC,oBAAoB,QAAQ,qCAAoC;AACzE,SAASC,kBAAkB,QAAQ,8CAA6C;AAEhF,SAASC,cAAc,QAAQ,sCAAqC;AACpE,SAASC,iBAAiB,QAAQ,yCAAwC;AAC1E,SACEC,qCAAqC,EACrCC,wCAAwC,QACnC,2BAA0B;AACjC,SACEC,kCAAkC,EAClCC,qCAAqC,QAChC,oBAAmB;AAC1B,OAAO,KAAKC,WAAW,MAAM,+CAA8C;AAC3E,SAASC,0BAA0B,QAAQ,8DAA6D;AACxG,SAASC,wBAAwB,QAAQ,8BAA6B;AACtE,SAASC,kBAAkB,QAAQ,0CAAyC;AAE5E,SAASC,YAAY,EAAEC,WAAW,EAAEC,UAAU,QAAQ,iBAAgB;AACtE,SAASC,QAAQ,QAAQ,iBAAgB;AACzC,SAASC,oBAAoB,QAAQ,cAAa;AAClD,SAASC,kBAAkB,QAAQ,yBAAwB;AAI3D,SAASC,cAAcC,WAAW,QAAQ,qBAAoB;;;;;;;;;;;;;;;;;;;;;;;;AAE9D,IAAIC,kBACF,IAAM;AACR,IAAIC,uBACF,IAAM;AACR,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAe;IAC1C,MAAMC,MACJC,QAAQ;IACVN,kBAAkBK,IAAIL,eAAe;IACrCC,uBAAuBI,IAAIJ,oBAAoB;AACjD;AAOA,0FAA0F;AAC1F,mDAAmD;AACnD,IAAIC,QAAQC,GAAG,CAACI,SAAS,eAAE;IACzBC,WAAWC,2BAA2B,GAAGC;AAC3C,OAAO;;AAOA,SAASZ;IACd,WAAOC,oLAAAA,EAAY;0BACjBpB,uRAAAA;8BACAC,2SAAAA;IACF;AACF","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e3c9fcc1._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e3c9fcc1._.js deleted file mode 100644 index 16b26ee..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e3c9fcc1._.js +++ /dev/null @@ -1,6307 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/lib/metadata/get-metadata-route.js [app-rsc] (ecmascript, Next.js server utility)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/lib/metadata/get-metadata-route.js [app-rsc] (ecmascript)"));}), -"[project]/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time truthy", 1) { - module.exports = __turbopack_context__.r("[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)"); - } else //TURBOPACK unreachable - ; - } else //TURBOPACK unreachable - ; - } -} //# sourceMappingURL=module.compiled.js.map -}), -"[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript, Next.js server utility)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript)"));}), -"[project]/node_modules/next/dist/esm/server/instrumentation/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getRevalidateReason", - ()=>getRevalidateReason -]); -function getRevalidateReason(params) { - if (params.isOnDemandRevalidate) { - return 'on-demand'; - } - if (params.isStaticGeneration) { - return 'stale'; - } - return undefined; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/interop-default.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Interop between "export default" and "module.exports". - */ __turbopack_context__.s([ - "interopDefault", - ()=>interopDefault -]); -function interopDefault(mod) { - return mod.default || mod; -} //# sourceMappingURL=interop-default.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/strip-flight-headers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "stripFlightHeaders", - ()=>stripFlightHeaders -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -; -function stripFlightHeaders(headers) { - for (const header of __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FLIGHT_HEADERS"]){ - delete headers[header]; - } -} //# sourceMappingURL=strip-flight-headers.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/headers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HeadersAdapter", - ()=>HeadersAdapter, - "ReadonlyHeadersError", - ()=>ReadonlyHeadersError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-rsc] (ecmascript)"); -; -class ReadonlyHeadersError extends Error { - constructor(){ - super('Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers'); - } - static callable() { - throw new ReadonlyHeadersError(); - } -} -class HeadersAdapter extends Headers { - constructor(headers){ - // We've already overridden the methods that would be called, so we're just - // calling the super constructor to ensure that the instanceof check works. - super(); - this.headers = new Proxy(headers, { - get (target, prop, receiver) { - // Because this is just an object, we expect that all "get" operations - // are for properties. If it's a "get" for a symbol, we'll just return - // the symbol. - if (typeof prop === 'symbol') { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - const lowercased = prop.toLowerCase(); - // Let's find the original casing of the key. This assumes that there is - // no mixed case keys (e.g. "Content-Type" and "content-type") in the - // headers object. - const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased); - // If the original casing doesn't exist, return undefined. - if (typeof original === 'undefined') return; - // If the original casing exists, return the value. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, original, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'symbol') { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].set(target, prop, value, receiver); - } - const lowercased = prop.toLowerCase(); - // Let's find the original casing of the key. This assumes that there is - // no mixed case keys (e.g. "Content-Type" and "content-type") in the - // headers object. - const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased); - // If the original casing doesn't exist, use the prop as the key. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].set(target, original ?? prop, value, receiver); - }, - has (target, prop) { - if (typeof prop === 'symbol') return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].has(target, prop); - const lowercased = prop.toLowerCase(); - // Let's find the original casing of the key. This assumes that there is - // no mixed case keys (e.g. "Content-Type" and "content-type") in the - // headers object. - const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased); - // If the original casing doesn't exist, return false. - if (typeof original === 'undefined') return false; - // If the original casing exists, return true. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].has(target, original); - }, - deleteProperty (target, prop) { - if (typeof prop === 'symbol') return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].deleteProperty(target, prop); - const lowercased = prop.toLowerCase(); - // Let's find the original casing of the key. This assumes that there is - // no mixed case keys (e.g. "Content-Type" and "content-type") in the - // headers object. - const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased); - // If the original casing doesn't exist, return true. - if (typeof original === 'undefined') return true; - // If the original casing exists, delete the property. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].deleteProperty(target, original); - } - }); - } - /** - * Seals a Headers instance to prevent modification by throwing an error when - * any mutating method is called. - */ static seal(headers) { - return new Proxy(headers, { - get (target, prop, receiver) { - switch(prop){ - case 'append': - case 'delete': - case 'set': - return ReadonlyHeadersError.callable; - default: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - } - }); - } - /** - * Merges a header value into a string. This stores multiple values as an - * array, so we need to merge them into a string. - * - * @param value a header value - * @returns a merged header value (a string) - */ merge(value) { - if (Array.isArray(value)) return value.join(', '); - return value; - } - /** - * Creates a Headers instance from a plain object or a Headers instance. - * - * @param headers a plain object or a Headers instance - * @returns a headers instance - */ static from(headers) { - if (headers instanceof Headers) return headers; - return new HeadersAdapter(headers); - } - append(name, value) { - const existing = this.headers[name]; - if (typeof existing === 'string') { - this.headers[name] = [ - existing, - value - ]; - } else if (Array.isArray(existing)) { - existing.push(value); - } else { - this.headers[name] = value; - } - } - delete(name) { - delete this.headers[name]; - } - get(name) { - const value = this.headers[name]; - if (typeof value !== 'undefined') return this.merge(value); - return null; - } - has(name) { - return typeof this.headers[name] !== 'undefined'; - } - set(name, value) { - this.headers[name] = value; - } - forEach(callbackfn, thisArg) { - for (const [name, value] of this.entries()){ - callbackfn.call(thisArg, value, name, this); - } - } - *entries() { - for (const key of Object.keys(this.headers)){ - const name = key.toLowerCase(); - // We assert here that this is a string because we got it from the - // Object.keys() call above. - const value = this.get(name); - yield [ - name, - value - ]; - } - } - *keys() { - for (const key of Object.keys(this.headers)){ - const name = key.toLowerCase(); - yield name; - } - } - *values() { - for (const key of Object.keys(this.headers)){ - // We assert here that this is a string because we got it from the - // Object.keys() call above. - const value = this.get(key); - yield value; - } - } - [Symbol.iterator]() { - return this.entries(); - } -} //# sourceMappingURL=headers.js.map -}), -"[project]/node_modules/next/dist/esm/server/api-utils/index.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ApiError", - ()=>ApiError, - "COOKIE_NAME_PRERENDER_BYPASS", - ()=>COOKIE_NAME_PRERENDER_BYPASS, - "COOKIE_NAME_PRERENDER_DATA", - ()=>COOKIE_NAME_PRERENDER_DATA, - "RESPONSE_LIMIT_DEFAULT", - ()=>RESPONSE_LIMIT_DEFAULT, - "SYMBOL_CLEARED_COOKIES", - ()=>SYMBOL_CLEARED_COOKIES, - "SYMBOL_PREVIEW_DATA", - ()=>SYMBOL_PREVIEW_DATA, - "checkIsOnDemandRevalidate", - ()=>checkIsOnDemandRevalidate, - "clearPreviewData", - ()=>clearPreviewData, - "redirect", - ()=>redirect, - "sendError", - ()=>sendError, - "sendStatusCode", - ()=>sendStatusCode, - "setLazyProp", - ()=>setLazyProp, - "wrapApiHandler", - ()=>wrapApiHandler -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/headers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -; -; -; -; -function wrapApiHandler(page, handler) { - return (...args)=>{ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().setRootSpanAttribute('next.route', page); - // Call API route method - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NodeSpan"].runHandler, { - spanName: `executing api route (pages) ${page}` - }, ()=>handler(...args)); - }; -} -function sendStatusCode(res, statusCode) { - res.statusCode = statusCode; - return res; -} -function redirect(res, statusOrUrl, url) { - if (typeof statusOrUrl === 'string') { - url = statusOrUrl; - statusOrUrl = 307; - } - if (typeof statusOrUrl !== 'number' || typeof url !== 'string') { - throw Object.defineProperty(new Error(`Invalid redirect arguments. Please use a single argument URL, e.g. res.redirect('/destination') or use a status code and URL, e.g. res.redirect(307, '/destination').`), "__NEXT_ERROR_CODE", { - value: "E389", - enumerable: false, - configurable: true - }); - } - res.writeHead(statusOrUrl, { - Location: url - }); - res.write(url); - res.end(); - return res; -} -function checkIsOnDemandRevalidate(req, previewProps) { - const headers = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HeadersAdapter"].from(req.headers); - const previewModeId = headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PRERENDER_REVALIDATE_HEADER"]); - const isOnDemandRevalidate = previewModeId === previewProps.previewModeId; - const revalidateOnlyGenerated = headers.has(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER"]); - return { - isOnDemandRevalidate, - revalidateOnlyGenerated - }; -} -const COOKIE_NAME_PRERENDER_BYPASS = `__prerender_bypass`; -const COOKIE_NAME_PRERENDER_DATA = `__next_preview_data`; -const RESPONSE_LIMIT_DEFAULT = 4 * 1024 * 1024; -const SYMBOL_PREVIEW_DATA = Symbol(COOKIE_NAME_PRERENDER_DATA); -const SYMBOL_CLEARED_COOKIES = Symbol(COOKIE_NAME_PRERENDER_BYPASS); -function clearPreviewData(res, options = {}) { - if (SYMBOL_CLEARED_COOKIES in res) { - return res; - } - const { serialize } = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/cookie/index.js [app-rsc] (ecmascript)"); - const previous = res.getHeader('Set-Cookie'); - res.setHeader(`Set-Cookie`, [ - ...typeof previous === 'string' ? [ - previous - ] : Array.isArray(previous) ? previous : [], - serialize(COOKIE_NAME_PRERENDER_BYPASS, '', { - // To delete a cookie, set `expires` to a date in the past: - // https://tools.ietf.org/html/rfc6265#section-4.1.1 - // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted. - expires: new Date(0), - httpOnly: true, - sameSite: ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 'lax', - secure: ("TURBOPACK compile-time value", "development") !== 'development', - path: '/', - ...options.path !== undefined ? { - path: options.path - } : undefined - }), - serialize(COOKIE_NAME_PRERENDER_DATA, '', { - // To delete a cookie, set `expires` to a date in the past: - // https://tools.ietf.org/html/rfc6265#section-4.1.1 - // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted. - expires: new Date(0), - httpOnly: true, - sameSite: ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 'lax', - secure: ("TURBOPACK compile-time value", "development") !== 'development', - path: '/', - ...options.path !== undefined ? { - path: options.path - } : undefined - }) - ]); - Object.defineProperty(res, SYMBOL_CLEARED_COOKIES, { - value: true, - enumerable: false - }); - return res; -} -class ApiError extends Error { - constructor(statusCode, message){ - super(message); - this.statusCode = statusCode; - } -} -function sendError(res, statusCode, message) { - res.statusCode = statusCode; - res.statusMessage = message; - res.end(message); -} -function setLazyProp({ req }, prop, getter) { - const opts = { - configurable: true, - enumerable: true - }; - const optsReset = { - ...opts, - writable: true - }; - Object.defineProperty(req, prop, { - ...opts, - get: ()=>{ - const value = getter(); - // we set the property on the object to avoid recalculating it - Object.defineProperty(req, prop, { - ...optsReset, - value - }); - return value; - }, - set: (value)=>{ - Object.defineProperty(req, prop, { - ...optsReset, - value - }); - } - }); -} //# sourceMappingURL=index.js.map -}), -"[project]/node_modules/next/dist/esm/server/api-utils/get-cookie-parser.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Parse cookies from the `headers` of request - * @param req request object - */ __turbopack_context__.s([ - "getCookieParser", - ()=>getCookieParser -]); -function getCookieParser(headers) { - return function parseCookie() { - const { cookie } = headers; - if (!cookie) { - return {}; - } - const { parse: parseCookieFn } = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/cookie/index.js [app-rsc] (ecmascript)"); - return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie); - }; -} //# sourceMappingURL=get-cookie-parser.js.map -}), -"[project]/node_modules/next/dist/esm/server/base-http/index.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "BaseNextRequest", - ()=>BaseNextRequest, - "BaseNextResponse", - ()=>BaseNextResponse -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$get$2d$cookie$2d$parser$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/api-utils/get-cookie-parser.js [app-rsc] (ecmascript)"); -; -; -class BaseNextRequest { - constructor(method, url, body){ - this.method = method; - this.url = url; - this.body = body; - } - // Utils implemented using the abstract methods above - get cookies() { - if (this._cookies) return this._cookies; - return this._cookies = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$get$2d$cookie$2d$parser$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getCookieParser"])(this.headers)(); - } -} -class BaseNextResponse { - constructor(destination){ - this.destination = destination; - } - // Utils implemented using the abstract methods above - redirect(destination, statusCode) { - this.setHeader('Location', destination); - this.statusCode = statusCode; - // Since IE11 doesn't support the 308 header add backwards - // compatibility using refresh header - if (statusCode === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RedirectStatusCode"].PermanentRedirect) { - this.setHeader('Refresh', `0;url=${destination}`); - } - return this; - } -} //# sourceMappingURL=index.js.map -}), -"[project]/node_modules/next/dist/esm/server/base-http/node.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "NodeNextRequest", - ()=>NodeNextRequest, - "NodeNextResponse", - ()=>NodeNextResponse -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/api-utils/index.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request-meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/base-http/index.js [app-rsc] (ecmascript)"); -; -; -; -let prop; -class NodeNextRequest extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BaseNextRequest"] { - static #_ = prop = _NEXT_REQUEST_META = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_REQUEST_META"]; - constructor(_req){ - var _this__req; - super(_req.method.toUpperCase(), _req.url, _req), this._req = _req, this.headers = this._req.headers, this.fetchMetrics = (_this__req = this._req) == null ? void 0 : _this__req.fetchMetrics, this[_NEXT_REQUEST_META] = this._req[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_REQUEST_META"]] || {}, this.streaming = false; - } - get originalRequest() { - // Need to mimic these changes to the original req object for places where we use it: - // render.tsx, api/ssg requests - this._req[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_REQUEST_META"]] = this[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_REQUEST_META"]]; - this._req.url = this.url; - this._req.cookies = this.cookies; - return this._req; - } - set originalRequest(value) { - this._req = value; - } - /** - * Returns the request body as a Web Readable Stream. The body here can only - * be read once as the body will start flowing as soon as the data handler - * is attached. - * - * @internal - */ stream() { - if (this.streaming) { - throw Object.defineProperty(new Error('Invariant: NodeNextRequest.stream() can only be called once'), "__NEXT_ERROR_CODE", { - value: "E467", - enumerable: false, - configurable: true - }); - } - this.streaming = true; - return new ReadableStream({ - start: (controller)=>{ - this._req.on('data', (chunk)=>{ - controller.enqueue(new Uint8Array(chunk)); - }); - this._req.on('end', ()=>{ - controller.close(); - }); - this._req.on('error', (err)=>{ - controller.error(err); - }); - } - }); - } -} -class NodeNextResponse extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BaseNextResponse"] { - get originalResponse() { - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SYMBOL_CLEARED_COOKIES"] in this) { - this._res[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SYMBOL_CLEARED_COOKIES"]] = this[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SYMBOL_CLEARED_COOKIES"]]; - } - return this._res; - } - constructor(_res){ - super(_res), this._res = _res, this.textBody = undefined; - } - get sent() { - return this._res.finished || this._res.headersSent; - } - get statusCode() { - return this._res.statusCode; - } - set statusCode(value) { - this._res.statusCode = value; - } - get statusMessage() { - return this._res.statusMessage; - } - set statusMessage(value) { - this._res.statusMessage = value; - } - setHeader(name, value) { - this._res.setHeader(name, value); - return this; - } - removeHeader(name) { - this._res.removeHeader(name); - return this; - } - getHeaderValues(name) { - const values = this._res.getHeader(name); - if (values === undefined) return undefined; - return (Array.isArray(values) ? values : [ - values - ]).map((value)=>value.toString()); - } - hasHeader(name) { - return this._res.hasHeader(name); - } - getHeader(name) { - const values = this.getHeaderValues(name); - return Array.isArray(values) ? values.join(',') : undefined; - } - getHeaders() { - return this._res.getHeaders(); - } - appendHeader(name, value) { - const currentValues = this.getHeaderValues(name) ?? []; - if (!currentValues.includes(value)) { - this._res.setHeader(name, [ - ...currentValues, - value - ]); - } - return this; - } - body(value) { - this.textBody = value; - return this; - } - send() { - this._res.end(this.textBody); - } - onClose(callback) { - this.originalResponse.on('close', callback); - } -} -var _NEXT_REQUEST_META; //# sourceMappingURL=node.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/experimental/ppr.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * If set to `incremental`, only those leaf pages that export - * `experimental_ppr = true` will have partial prerendering enabled. If any - * page exports this value as `false` or does not export it at all will not - * have partial prerendering enabled. If set to a boolean, the options for - * `experimental_ppr` will be ignored. - */ /** - * Returns true if partial prerendering is enabled for the application. It does - * not tell you if a given route has PPR enabled, as that requires analysis of - * the route's configuration. - * - * @see {@link checkIsRoutePPREnabled} - for checking if a specific route has PPR enabled. - */ __turbopack_context__.s([ - "checkIsAppPPREnabled", - ()=>checkIsAppPPREnabled, - "checkIsRoutePPREnabled", - ()=>checkIsRoutePPREnabled -]); -function checkIsAppPPREnabled(config) { - // If the config is undefined, partial prerendering is disabled. - if (typeof config === 'undefined') return false; - // If the config is a boolean, use it directly. - if (typeof config === 'boolean') return config; - // If the config is a string, it must be 'incremental' to enable partial - // prerendering. - if (config === 'incremental') return true; - return false; -} -function checkIsRoutePPREnabled(config) { - // If the config is undefined, partial prerendering is disabled. - if (typeof config === 'undefined') return false; - // If the config is a boolean, use it directly. - if (typeof config === 'boolean') return config; - return false; -} //# sourceMappingURL=ppr.js.map -}), -"[project]/node_modules/next/dist/esm/server/route-modules/checks.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isAppPageRouteModule", - ()=>isAppPageRouteModule, - "isAppRouteRouteModule", - ()=>isAppRouteRouteModule, - "isPagesAPIRouteModule", - ()=>isPagesAPIRouteModule, - "isPagesRouteModule", - ()=>isPagesRouteModule -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript)"); -; -function isAppRouteRouteModule(routeModule) { - return routeModule.definition.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].APP_ROUTE; -} -function isAppPageRouteModule(routeModule) { - return routeModule.definition.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].APP_PAGE; -} -function isPagesRouteModule(routeModule) { - return routeModule.definition.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].PAGES; -} -function isPagesAPIRouteModule(routeModule) { - return routeModule.definition.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].PAGES_API; -} //# sourceMappingURL=checks.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is a leading slash. - * If there is not a leading slash, one is added, otherwise it is noop. - */ __turbopack_context__.s([ - "ensureLeadingSlash", - ()=>ensureLeadingSlash -]); -function ensureLeadingSlash(path) { - return path.startsWith('/') ? path : `/${path}`; -} //# sourceMappingURL=ensure-leading-slash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "normalizeAppPath", - ()=>normalizeAppPath, - "normalizeRscURL", - ()=>normalizeRscURL -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$page$2d$path$2f$ensure$2d$leading$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -; -; -function normalizeAppPath(route) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$page$2d$path$2f$ensure$2d$leading$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ensureLeadingSlash"])(route.split('/').reduce((pathname, segment, index, segments)=>{ - // Empty segments are ignored. - if (!segment) { - return pathname; - } - // Groups are ignored. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isGroupSegment"])(segment)) { - return pathname; - } - // Parallel segments are ignored. - if (segment[0] === '@') { - return pathname; - } - // The last segment (if it's a leaf) should be ignored. - if ((segment === 'page' || segment === 'route') && index === segments.length - 1) { - return pathname; - } - return `${pathname}/${segment}`; - }, '')); -} -function normalizeRscURL(url) { - return url.replace(/\.rsc($|\?)/, '$1'); -} //# sourceMappingURL=app-paths.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "INTERCEPTION_ROUTE_MARKERS", - ()=>INTERCEPTION_ROUTE_MARKERS, - "extractInterceptionRouteInformation", - ()=>extractInterceptionRouteInformation, - "isInterceptionRouteAppPath", - ()=>isInterceptionRouteAppPath -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -; -const INTERCEPTION_ROUTE_MARKERS = [ - '(..)(..)', - '(.)', - '(..)', - '(...)' -]; -function isInterceptionRouteAppPath(path) { - // TODO-APP: add more serious validation - return path.split('/').find((segment)=>INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m))) !== undefined; -} -function extractInterceptionRouteInformation(path) { - let interceptingRoute; - let marker; - let interceptedRoute; - for (const segment of path.split('/')){ - marker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - ; - [interceptingRoute, interceptedRoute] = path.split(marker, 2); - break; - } - } - if (!interceptingRoute || !marker || !interceptedRoute) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`), "__NEXT_ERROR_CODE", { - value: "E269", - enumerable: false, - configurable: true - }); - } - interceptingRoute = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed - ; - switch(marker){ - case '(.)': - // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route - if (interceptingRoute === '/') { - interceptedRoute = `/${interceptedRoute}`; - } else { - interceptedRoute = interceptingRoute + '/' + interceptedRoute; - } - break; - case '(..)': - // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route - if (interceptingRoute === '/') { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`), "__NEXT_ERROR_CODE", { - value: "E207", - enumerable: false, - configurable: true - }); - } - interceptedRoute = interceptingRoute.split('/').slice(0, -1).concat(interceptedRoute).join('/'); - break; - case '(...)': - // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route - interceptedRoute = '/' + interceptedRoute; - break; - case '(..)(..)': - // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route - const splitInterceptingRoute = interceptingRoute.split('/'); - if (splitInterceptingRoute.length <= 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`), "__NEXT_ERROR_CODE", { - value: "E486", - enumerable: false, - configurable: true - }); - } - interceptedRoute = splitInterceptingRoute.slice(0, -2).concat(interceptedRoute).join('/'); - break; - default: - throw Object.defineProperty(new Error('Invariant: unexpected marker'), "__NEXT_ERROR_CODE", { - value: "E112", - enumerable: false, - configurable: true - }); - } - return { - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=interception-routes.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/get-segment-param.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getParamProperties", - ()=>getParamProperties, - "getSegmentParam", - ()=>getSegmentParam, - "isCatchAll", - ()=>isCatchAll -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -; -function getSegmentParam(segment) { - const interceptionMarker = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INTERCEPTION_ROUTE_MARKERS"].find((marker)=>segment.startsWith(marker)); - // if an interception marker is part of the path segment, we need to jump ahead - // to the relevant portion for param parsing - if (interceptionMarker) { - segment = segment.slice(interceptionMarker.length); - } - if (segment.startsWith('[[...') && segment.endsWith(']]')) { - return { - // TODO-APP: Optional catchall does not currently work with parallel routes, - // so for now aren't handling a potential interception marker. - paramType: 'optional-catchall', - paramName: segment.slice(5, -2) - }; - } - if (segment.startsWith('[...') && segment.endsWith(']')) { - return { - paramType: interceptionMarker ? `catchall-intercepted-${interceptionMarker}` : 'catchall', - paramName: segment.slice(4, -1) - }; - } - if (segment.startsWith('[') && segment.endsWith(']')) { - return { - paramType: interceptionMarker ? `dynamic-intercepted-${interceptionMarker}` : 'dynamic', - paramName: segment.slice(1, -1) - }; - } - return null; -} -function isCatchAll(type) { - return type === 'catchall' || type === 'catchall-intercepted-(..)(..)' || type === 'catchall-intercepted-(.)' || type === 'catchall-intercepted-(..)' || type === 'catchall-intercepted-(...)' || type === 'optional-catchall'; -} -function getParamProperties(paramType) { - let repeat = false; - let optional = false; - switch(paramType){ - case 'catchall': - case 'catchall-intercepted-(..)(..)': - case 'catchall-intercepted-(.)': - case 'catchall-intercepted-(..)': - case 'catchall-intercepted-(...)': - repeat = true; - break; - case 'optional-catchall': - repeat = true; - optional = true; - break; - case 'dynamic': - case 'dynamic-intercepted-(..)(..)': - case 'dynamic-intercepted-(.)': - case 'dynamic-intercepted-(..)': - case 'dynamic-intercepted-(...)': - break; - default: - paramType; - } - return { - repeat, - optional - }; -} //# sourceMappingURL=get-segment-param.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/routes/app.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isInterceptionAppRoute", - ()=>isInterceptionAppRoute, - "isNormalizedAppRoute", - ()=>isNormalizedAppRoute, - "parseAppRoute", - ()=>parseAppRoute, - "parseAppRouteSegment", - ()=>parseAppRouteSegment -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$get$2d$segment$2d$param$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/get-segment-param.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -; -; -; -function parseAppRouteSegment(segment) { - if (segment === '') { - return null; - } - // Check if the segment starts with an interception marker - const interceptionMarker = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INTERCEPTION_ROUTE_MARKERS"].find((m)=>segment.startsWith(m)); - const param = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$get$2d$segment$2d$param$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getSegmentParam"])(segment); - if (param) { - return { - type: 'dynamic', - name: segment, - param, - interceptionMarker - }; - } else if (segment.startsWith('(') && segment.endsWith(')')) { - return { - type: 'route-group', - name: segment, - interceptionMarker - }; - } else if (segment.startsWith('@')) { - return { - type: 'parallel-route', - name: segment, - interceptionMarker - }; - } else { - return { - type: 'static', - name: segment, - interceptionMarker - }; - } -} -function isNormalizedAppRoute(route) { - return route.normalized; -} -function isInterceptionAppRoute(route) { - return route.interceptionMarker !== undefined && route.interceptingRoute !== undefined && route.interceptedRoute !== undefined; -} -function parseAppRoute(pathname, normalized) { - const pathnameSegments = pathname.split('/').filter(Boolean); - // Build segments array with static and dynamic segments - const segments = []; - // Parse if this is an interception route. - let interceptionMarker; - let interceptingRoute; - let interceptedRoute; - for (const segment of pathnameSegments){ - // Parse the segment into an AppSegment. - const appSegment = parseAppRouteSegment(segment); - if (!appSegment) { - continue; - } - if (normalized && (appSegment.type === 'route-group' || appSegment.type === 'parallel-route')) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`), "__NEXT_ERROR_CODE", { - value: "E923", - enumerable: false, - configurable: true - }); - } - segments.push(appSegment); - if (appSegment.interceptionMarker) { - const parts = pathname.split(appSegment.interceptionMarker); - if (parts.length !== 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${pathname}`), "__NEXT_ERROR_CODE", { - value: "E924", - enumerable: false, - configurable: true - }); - } - interceptingRoute = normalized ? parseAppRoute(parts[0], true) : parseAppRoute(parts[0], false); - interceptedRoute = normalized ? parseAppRoute(parts[1], true) : parseAppRoute(parts[1], false); - interceptionMarker = appSegment.interceptionMarker; - } - } - const dynamicSegments = segments.filter((segment)=>segment.type === 'dynamic'); - return { - normalized, - pathname, - segments, - dynamicSegments, - interceptionMarker, - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=app.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "parseLoaderTree", - ()=>parseLoaderTree -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -; -function parseLoaderTree(tree) { - const [segment, parallelRoutes, modules] = tree; - const { layout, template } = modules; - let { page } = modules; - // a __DEFAULT__ segment means that this route didn't match any of the - // segments in the route, so we should use the default page - page = segment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"] ? modules.defaultPage : page; - const conventionPath = layout?.[1] || template?.[1] || page?.[1]; - return { - page, - segment, - modules, - /* it can be either layout / template / page */ conventionPath, - parallelRoutes - }; -} //# sourceMappingURL=parse-loader-tree.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-prefix-from-param-type.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "interceptionPrefixFromParamType", - ()=>interceptionPrefixFromParamType -]); -function interceptionPrefixFromParamType(paramType) { - switch(paramType){ - case 'catchall-intercepted-(..)(..)': - case 'dynamic-intercepted-(..)(..)': - return '(..)(..)'; - case 'catchall-intercepted-(.)': - case 'dynamic-intercepted-(.)': - return '(.)'; - case 'catchall-intercepted-(..)': - case 'dynamic-intercepted-(..)': - return '(..)'; - case 'catchall-intercepted-(...)': - case 'dynamic-intercepted-(...)': - return '(...)'; - case 'catchall': - case 'dynamic': - case 'optional-catchall': - default: - return null; - } -} //# sourceMappingURL=interception-prefix-from-param-type.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveParamValue", - ()=>resolveParamValue -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$prefix$2d$from$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-prefix-from-param-type.js [app-rsc] (ecmascript)"); -; -; -/** - * Extracts the param value from a path segment, handling interception markers - * based on the expected param type. - * - * @param pathSegment - The path segment to extract the value from - * @param params - The current params object for resolving dynamic param references - * @param paramType - The expected param type which may include interception marker info - * @returns The extracted param value - */ function getParamValueFromSegment(pathSegment, params, paramType) { - // If the segment is dynamic, resolve it from the params object - if (pathSegment.type === 'dynamic') { - return params[pathSegment.param.paramName]; - } - // If the paramType indicates this is an intercepted param, strip the marker - // that matches the interception marker in the param type - const interceptionPrefix = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$prefix$2d$from$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["interceptionPrefixFromParamType"])(paramType); - if (interceptionPrefix === pathSegment.interceptionMarker) { - return pathSegment.name.replace(pathSegment.interceptionMarker, ''); - } - // For static segments, use the name - return pathSegment.name; -} -function resolveParamValue(paramName, paramType, depth, route, params) { - switch(paramType){ - case 'catchall': - case 'optional-catchall': - case 'catchall-intercepted-(..)(..)': - case 'catchall-intercepted-(.)': - case 'catchall-intercepted-(..)': - case 'catchall-intercepted-(...)': - // For catchall routes, derive from pathname using depth to determine - // which segments to use - const processedSegments = []; - // Process segments to handle any embedded dynamic params - for(let index = depth; index < route.segments.length; index++){ - const pathSegment = route.segments[index]; - if (pathSegment.type === 'static') { - let value = pathSegment.name; - // For intercepted catch-all params, strip the marker from the first segment - const interceptionPrefix = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$prefix$2d$from$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["interceptionPrefixFromParamType"])(paramType); - if (interceptionPrefix && index === depth && interceptionPrefix === pathSegment.interceptionMarker) { - // Strip the interception marker from the value - value = value.replace(pathSegment.interceptionMarker, ''); - } - processedSegments.push(value); - } else { - // If the segment is a param placeholder, check if we have its value - if (!params.hasOwnProperty(pathSegment.param.paramName)) { - // If the segment is an optional catchall, we can break out of the - // loop because it's optional! - if (pathSegment.param.paramType === 'optional-catchall') { - break; - } - // Unknown param placeholder in pathname - can't derive full value - return undefined; - } - // If the segment matches a param, use the param value - // We don't encode values here as that's handled during retrieval. - const paramValue = params[pathSegment.param.paramName]; - if (Array.isArray(paramValue)) { - processedSegments.push(...paramValue); - } else { - processedSegments.push(paramValue); - } - } - } - if (processedSegments.length > 0) { - return processedSegments; - } else if (paramType === 'optional-catchall') { - return undefined; - } else { - // We shouldn't be able to match a catchall segment without any path - // segments if it's not an optional catchall - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Unexpected empty path segments match for a route "${route.pathname}" with param "${paramName}" of type "${paramType}"`), "__NEXT_ERROR_CODE", { - value: "E931", - enumerable: false, - configurable: true - }); - } - case 'dynamic': - case 'dynamic-intercepted-(..)(..)': - case 'dynamic-intercepted-(.)': - case 'dynamic-intercepted-(..)': - case 'dynamic-intercepted-(...)': - // For regular dynamic parameters, take the segment at this depth - if (depth < route.segments.length) { - const pathSegment = route.segments[depth]; - // Check if the segment at this depth is a placeholder for an unknown param - if (pathSegment.type === 'dynamic' && !params.hasOwnProperty(pathSegment.param.paramName)) { - // The segment is a placeholder like [category] and we don't have the value - return undefined; - } - // If the segment matches a param, use the param value from params object - // Otherwise it's a static segment, just use it directly - // We don't encode values here as that's handled during retrieval - return getParamValueFromSegment(pathSegment, params, paramType); - } - return undefined; - default: - paramType; - } -} //# sourceMappingURL=resolve-param-value.js.map -}), -"[project]/node_modules/next/dist/esm/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "extractPathnameRouteParamSegmentsFromLoaderTree", - ()=>extractPathnameRouteParamSegmentsFromLoaderTree -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/routes/app.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$resolve$2d$param$2d$value$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)"); -; -; -; -/** - * Validates that the static segments in currentPath match the corresponding - * segments in targetSegments. This ensures we only extract dynamic parameters - * that are part of the target pathname structure. - * - * Segments are compared literally - interception markers like "(.)photo" are - * part of the pathname and must match exactly. - * - * @example - * // Matching paths - * currentPath: ['blog', '(.)photo'] - * targetSegments: ['blog', '(.)photo', '[id]'] - * → Returns true (both static segments match exactly) - * - * @example - * // Non-matching paths - * currentPath: ['blog', '(.)photo'] - * targetSegments: ['blog', 'photo', '[id]'] - * → Returns false (segments don't match - marker is part of pathname) - * - * @param currentPath - The accumulated path segments from the loader tree - * @param targetSegments - The target pathname split into segments - * @returns true if all static segments match, false otherwise - */ function validatePrefixMatch(currentPath, route) { - for(let i = 0; i < currentPath.length; i++){ - const pathSegment = currentPath[i]; - const targetPathSegment = route.segments[i]; - // Type mismatch - one is static, one is dynamic - if (pathSegment.type !== targetPathSegment.type) { - return false; - } - // One has an interception marker, the other doesn't. - if (pathSegment.interceptionMarker !== targetPathSegment.interceptionMarker) { - return false; - } - // Both are static but names don't match - if (pathSegment.type === 'static' && targetPathSegment.type === 'static' && pathSegment.name !== targetPathSegment.name) { - return false; - } else if (pathSegment.type === 'dynamic' && targetPathSegment.type === 'dynamic' && pathSegment.param.paramType !== targetPathSegment.param.paramType && pathSegment.param.paramName !== targetPathSegment.param.paramName) { - return false; - } - } - return true; -} -function extractPathnameRouteParamSegmentsFromLoaderTree(loaderTree, route) { - const pathnameRouteParamSegments = []; - const params = {}; - // BFS traversal with depth and path tracking - const queue = [ - { - tree: loaderTree, - depth: 0, - currentPath: [] - } - ]; - while(queue.length > 0){ - const { tree, depth, currentPath } = queue.shift(); - const { segment, parallelRoutes } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseLoaderTree"])(tree); - // Build the path for the current node - let updatedPath = currentPath; - let nextDepth = depth; - const appSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseAppRouteSegment"])(segment); - // Only add to path if it's a real segment that appears in the URL - // Route groups and parallel markers don't contribute to URL pathname - if (appSegment && appSegment.type !== 'route-group' && appSegment.type !== 'parallel-route') { - updatedPath = [ - ...currentPath, - appSegment - ]; - nextDepth = depth + 1; - } - // Check if this segment has a param and matches the target pathname at this depth - if ((appSegment == null ? void 0 : appSegment.type) === 'dynamic') { - const { paramName, paramType } = appSegment.param; - // Check if this segment is at the correct depth in the target pathname - // A segment matches if: - // 1. There's a dynamic segment at this depth in the pathname - // 2. The parameter names match (e.g., [id] matches [id], not [category]) - // 3. The static segments leading up to this point match (prefix check) - if (depth < route.segments.length) { - const targetSegment = route.segments[depth]; - // Match if the target pathname has a dynamic segment at this depth - if (targetSegment.type === 'dynamic') { - // Check that parameter names match exactly - // This prevents [category] from matching against /[id] - if (paramName !== targetSegment.param.paramName) { - continue; // Different param names, skip this segment - } - // Validate that the path leading up to this dynamic segment matches - // the target pathname. This prevents false matches like extracting - // [slug] from "/news/[slug]" when the tree has "/blog/[slug]" - if (validatePrefixMatch(currentPath, route)) { - pathnameRouteParamSegments.push({ - name: segment, - paramName, - paramType - }); - } - } - } - // Resolve parameter value if it's not already known. - if (!params.hasOwnProperty(paramName)) { - const paramValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$resolve$2d$param$2d$value$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveParamValue"])(paramName, paramType, depth, route, params); - if (paramValue !== undefined) { - params[paramName] = paramValue; - } - } - } - // Continue traversing all parallel routes to find matching segments - for (const parallelRoute of Object.values(parallelRoutes)){ - queue.push({ - tree: parallelRoute, - depth: nextDepth, - currentPath: updatedPath - }); - } - } - return { - pathnameRouteParamSegments, - params - }; -} //# sourceMappingURL=extract-pathname-route-param-segments-from-loader-tree.js.map -}), -"[project]/node_modules/next/dist/esm/build/static-paths/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "encodeParam", - ()=>encodeParam, - "extractPathnameRouteParamSegments", - ()=>extractPathnameRouteParamSegments, - "extractPathnameRouteParamSegmentsFromSegments", - ()=>extractPathnameRouteParamSegmentsFromSegments, - "normalizePathname", - ()=>normalizePathname, - "resolveRouteParamsFromTree", - ()=>resolveRouteParamsFromTree -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$modules$2f$checks$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-modules/checks.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/routes/app.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$app$2f$extract$2d$pathname$2d$route$2d$param$2d$segments$2d$from$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$resolve$2d$param$2d$value$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)"); -; -; -; -; -; -function encodeParam(value, encoder) { - let replaceValue; - if (Array.isArray(value)) { - replaceValue = value.map(encoder).join('/'); - } else { - replaceValue = encoder(value); - } - return replaceValue; -} -function normalizePathname(pathname) { - return pathname.replace(/\\/g, '/').replace(/(?!^)\/$/, ''); -} -function extractPathnameRouteParamSegments(routeModule, segments, route) { - // For AppPageRouteModule, use the loaderTree traversal approach - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$modules$2f$checks$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAppPageRouteModule"])(routeModule)) { - const { pathnameRouteParamSegments } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$app$2f$extract$2d$pathname$2d$route$2d$param$2d$segments$2d$from$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["extractPathnameRouteParamSegmentsFromLoaderTree"])(routeModule.userland.loaderTree, route); - return pathnameRouteParamSegments; - } - return extractPathnameRouteParamSegmentsFromSegments(segments); -} -function extractPathnameRouteParamSegmentsFromSegments(segments) { - // TODO: should we consider what values are already present in the page? - // For AppRouteRouteModule, filter the segments array to get the route params - // that contribute to the pathname. - const result = []; - for (const segment of segments){ - // Skip segments without param info. - if (!segment.paramName || !segment.paramType) continue; - // Collect all the route param keys that contribute to the pathname. - result.push({ - name: segment.name, - paramName: segment.paramName, - paramType: segment.paramType - }); - } - return result; -} -function resolveRouteParamsFromTree(loaderTree, params, route, fallbackRouteParams) { - // Stack-based traversal with depth tracking - const stack = [ - { - tree: loaderTree, - depth: 0 - } - ]; - while(stack.length > 0){ - const { tree, depth } = stack.pop(); - const { segment, parallelRoutes } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseLoaderTree"])(tree); - const appSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseAppRouteSegment"])(segment); - // If this segment is a route parameter, then we should process it if it's - // not already known and is not already marked as a fallback route param. - if ((appSegment == null ? void 0 : appSegment.type) === 'dynamic' && !params.hasOwnProperty(appSegment.param.paramName) && !fallbackRouteParams.some((param)=>param.paramName === appSegment.param.paramName)) { - const { paramName, paramType } = appSegment.param; - const paramValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$resolve$2d$param$2d$value$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveParamValue"])(paramName, paramType, depth, route, params); - if (paramValue !== undefined) { - params[paramName] = paramValue; - } else if (paramType !== 'optional-catchall') { - // If we couldn't resolve the param, mark it as a fallback - fallbackRouteParams.push({ - paramName, - paramType - }); - } - } - // Calculate next depth - increment if this is not a route group and not empty - let nextDepth = depth; - if (appSegment && appSegment.type !== 'route-group' && appSegment.type !== 'parallel-route') { - nextDepth++; - } - // Add all parallel routes to the stack for processing. - for (const parallelRoute of Object.values(parallelRoutes)){ - stack.push({ - tree: parallelRoute, - depth: nextDepth - }); - } - } -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/get-short-dynamic-param-type.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "dynamicParamTypes", - ()=>dynamicParamTypes -]); -const dynamicParamTypes = { - catchall: 'c', - 'catchall-intercepted-(..)(..)': 'ci(..)(..)', - 'catchall-intercepted-(.)': 'ci(.)', - 'catchall-intercepted-(..)': 'ci(..)', - 'catchall-intercepted-(...)': 'ci(...)', - 'optional-catchall': 'oc', - dynamic: 'd', - 'dynamic-intercepted-(..)(..)': 'di(..)(..)', - 'dynamic-intercepted-(.)': 'di(.)', - 'dynamic-intercepted-(..)': 'di(..)', - 'dynamic-intercepted-(...)': 'di(...)' -}; //# sourceMappingURL=get-short-dynamic-param-type.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/fallback-params.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createOpaqueFallbackRouteParams", - ()=>createOpaqueFallbackRouteParams, - "getFallbackRouteParams", - ()=>getFallbackRouteParams -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/static-paths/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$get$2d$short$2d$dynamic$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/get-short-dynamic-param-type.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/routes/app.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$app$2f$extract$2d$pathname$2d$route$2d$param$2d$segments$2d$from$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js [app-rsc] (ecmascript)"); -; -; -; -; -function createOpaqueFallbackRouteParams(fallbackRouteParams) { - // If there are no fallback route params, we can return early. - if (fallbackRouteParams.length === 0) return null; - // As we're creating unique keys for each of the dynamic route params, we only - // need to generate a unique ID once per request because each of the keys will - // be also be unique. - const uniqueID = Math.random().toString(16).slice(2); - const keys = new Map(); - // Generate a unique key for the fallback route param, if this key is found - // in the static output, it represents a bug in cache components. - for (const { paramName, paramType } of fallbackRouteParams){ - keys.set(paramName, [ - `%%drp:${paramName}:${uniqueID}%%`, - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$get$2d$short$2d$dynamic$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["dynamicParamTypes"][paramType] - ]); - } - return keys; -} -function getFallbackRouteParams(page, routeModule) { - const route = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseAppRoute"])(page, true); - // Extract the pathname-contributing segments from the loader tree. This - // mirrors the logic in buildAppStaticPaths where we determine which segments - // actually contribute to the pathname. - const { pathnameRouteParamSegments, params } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$app$2f$extract$2d$pathname$2d$route$2d$param$2d$segments$2d$from$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["extractPathnameRouteParamSegmentsFromLoaderTree"])(routeModule.userland.loaderTree, route); - // Create fallback route params for the pathname segments. - const fallbackRouteParams = pathnameRouteParamSegments.map(({ paramName, paramType })=>({ - paramName, - paramType - })); - // Resolve route params from the loader tree. This mutates the - // fallbackRouteParams array to add any route params that are - // unknown at request time. - // - // The page parameter contains placeholders like [slug], which helps - // resolveRouteParamsFromTree determine which params are unknown. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveRouteParamsFromTree"])(routeModule.userland.loaderTree, params, route, fallbackRouteParams // Will be mutated to add route params - ); - // Convert the fallback route params to an opaque format that can be safely - // used in the postponed state without exposing implementation details. - return createOpaqueFallbackRouteParams(fallbackRouteParams); -} //# sourceMappingURL=fallback-params.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/manifests-singleton.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getClientReferenceManifest", - ()=>getClientReferenceManifest, - "getServerActionsManifest", - ()=>getServerActionsManifest, - "getServerModuleMap", - ()=>getServerModuleMap, - "selectWorkerForForwarding", - ()=>selectWorkerForForwarding, - "setManifestsSingleton", - ()=>setManifestsSingleton -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-path-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -; -; -; -; -; -// This is a global singleton that is, among other things, also used to -// encode/decode bound args of server function closures. This can't be using a -// AsyncLocalStorage as it might happen at the module level. -const MANIFESTS_SINGLETON = Symbol.for('next.server.manifests'); -const globalThisWithManifests = globalThis; -function createProxiedClientReferenceManifest(clientReferenceManifestsPerRoute) { - const createMappingProxy = (prop)=>{ - return new Proxy({}, { - get (_, id) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - if (workStore) { - const currentManifest = clientReferenceManifestsPerRoute.get(workStore.route); - if (currentManifest == null ? void 0 : currentManifest[prop][id]) { - return currentManifest[prop][id]; - } - // In development, we also check all other manifests to see if the - // module exists there. This is to support a scenario where React's - // I/O tracking (dev-only) creates a connection from one page to - // another through an emitted async I/O node that references client - // components from the other page, e.g. in owner props. - // TODO: Maybe we need to add a `debugBundlerConfig` option to React - // to avoid this workaround. The current workaround has the - // disadvantage that one might accidentally or intentionally share - // client references across pages (e.g. by storing them in a global - // variable), which would then only be caught in production. - if ("TURBOPACK compile-time truthy", 1) { - for (const [route, manifest] of clientReferenceManifestsPerRoute){ - if (route === workStore.route) { - continue; - } - const entry = manifest[prop][id]; - if (entry !== undefined) { - return entry; - } - } - } - } else { - // If there's no work store defined, we can assume that a client - // reference manifest is needed during module evaluation, e.g. to - // create a server function using a higher-order function. This - // might also use client components which need to be serialized by - // Flight, and therefore client references need to be resolvable. In - // that case we search all page manifests to find the module. - for (const manifest of clientReferenceManifestsPerRoute.values()){ - const entry = manifest[prop][id]; - if (entry !== undefined) { - return entry; - } - } - } - return undefined; - } - }); - }; - const mappingProxies = new Map(); - return new Proxy({}, { - get (_, prop) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - switch(prop){ - case 'moduleLoading': - case 'entryCSSFiles': - case 'entryJSFiles': - { - if (!workStore) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Cannot access "${prop}" without a work store.`), "__NEXT_ERROR_CODE", { - value: "E952", - enumerable: false, - configurable: true - }); - } - const currentManifest = clientReferenceManifestsPerRoute.get(workStore.route); - if (!currentManifest) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`The client reference manifest for route "${workStore.route}" does not exist.`), "__NEXT_ERROR_CODE", { - value: "E951", - enumerable: false, - configurable: true - }); - } - return currentManifest[prop]; - } - case 'clientModules': - case 'rscModuleMapping': - case 'edgeRscModuleMapping': - case 'ssrModuleMapping': - case 'edgeSSRModuleMapping': - { - let proxy = mappingProxies.get(prop); - if (!proxy) { - proxy = createMappingProxy(prop); - mappingProxies.set(prop, proxy); - } - return proxy; - } - default: - { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`This is a proxied client reference manifest. The property "${String(prop)}" is not handled.`), "__NEXT_ERROR_CODE", { - value: "E953", - enumerable: false, - configurable: true - }); - } - } - } - }); -} -/** - * This function creates a Flight-acceptable server module map proxy from our - * Server Reference Manifest similar to our client module map. This is because - * our manifest contains a lot of internal Next.js data that are relevant to the - * runtime, workers, etc. that React doesn't need to know. - */ function createServerModuleMap() { - return new Proxy({}, { - get: (_, id)=>{ - var _getServerActionsManifest__id, _getServerActionsManifest_; - const workers = (_getServerActionsManifest_ = getServerActionsManifest()[("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 'node']) == null ? void 0 : (_getServerActionsManifest__id = _getServerActionsManifest_[id]) == null ? void 0 : _getServerActionsManifest__id.workers; - if (!workers) { - return undefined; - } - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - let workerEntry; - if (workStore) { - workerEntry = workers[normalizeWorkerPageName(workStore.page)]; - } else { - // If there's no work store defined, we can assume that a server - // module map is needed during module evaluation, e.g. to create a - // server action using a higher-order function. Therefore it should be - // safe to return any entry from the manifest that matches the action - // ID. They all refer to the same module ID, which must also exist in - // the current page bundle. TODO: This is currently not guaranteed in - // Turbopack, and needs to be fixed. - workerEntry = Object.values(workers).at(0); - } - if (!workerEntry) { - return undefined; - } - const { moduleId, async } = workerEntry; - return { - id: moduleId, - name: id, - chunks: [], - async - }; - } - }); -} -/** - * The flight entry loader keys actions by bundlePath. bundlePath corresponds - * with the relative path (including 'app') to the page entrypoint. - */ function normalizeWorkerPageName(pageName) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(pageName, 'app')) { - return pageName; - } - return 'app' + pageName; -} -/** - * Converts a bundlePath (relative path to the entrypoint) to a routable page - * name. - */ function denormalizeWorkerPageName(bundlePath) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removePathPrefix"])(bundlePath, 'app')); -} -function selectWorkerForForwarding(actionId, pageName) { - var _serverActionsManifest__actionId; - const serverActionsManifest = getServerActionsManifest(); - const workers = (_serverActionsManifest__actionId = serverActionsManifest[("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 'node'][actionId]) == null ? void 0 : _serverActionsManifest__actionId.workers; - // There are no workers to handle this action, nothing to forward to. - if (!workers) { - return; - } - // If there is an entry for the current page, we don't need to forward. - if (workers[normalizeWorkerPageName(pageName)]) { - return; - } - // Otherwise, grab the first worker that has a handler for this action id. - return denormalizeWorkerPageName(Object.keys(workers)[0]); -} -function setManifestsSingleton({ page, clientReferenceManifest, serverActionsManifest }) { - const existingSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]; - if (existingSingleton) { - existingSingleton.clientReferenceManifestsPerRoute.set((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])(page), clientReferenceManifest); - existingSingleton.serverActionsManifest = serverActionsManifest; - } else { - const clientReferenceManifestsPerRoute = new Map([ - [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])(page), - clientReferenceManifest - ] - ]); - const proxiedClientReferenceManifest = createProxiedClientReferenceManifest(clientReferenceManifestsPerRoute); - globalThisWithManifests[MANIFESTS_SINGLETON] = { - clientReferenceManifestsPerRoute, - proxiedClientReferenceManifest, - serverActionsManifest, - serverModuleMap: createServerModuleMap() - }; - } -} -function getManifestsSingleton() { - const manifestSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]; - if (!manifestSingleton) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('The manifests singleton was not initialized.'), "__NEXT_ERROR_CODE", { - value: "E950", - enumerable: false, - configurable: true - }); - } - return manifestSingleton; -} -function getClientReferenceManifest() { - return getManifestsSingleton().proxiedClientReferenceManifest; -} -function getServerActionsManifest() { - return getManifestsSingleton().serverActionsManifest; -} -function getServerModuleMap() { - return getManifestsSingleton().serverModuleMap; -} //# sourceMappingURL=manifests-singleton.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// This regex contains the bots that we need to do a blocking render for and can't safely stream the response -// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent. -// Note: The pattern [\w-]+-Google captures all Google crawlers with "-Google" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google) -// as well as crawlers starting with "Google-" (e.g., Google-PageRenderer, Google-InspectionTool) -__turbopack_context__.s([ - "HTML_LIMITED_BOT_UA_RE", - ()=>HTML_LIMITED_BOT_UA_RE -]); -const HTML_LIMITED_BOT_UA_RE = /[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i; //# sourceMappingURL=html-bots.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-rsc] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTML_LIMITED_BOT_UA_RE_STRING", - ()=>HTML_LIMITED_BOT_UA_RE_STRING, - "getBotType", - ()=>getBotType, - "isBot", - ()=>isBot -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js [app-rsc] (ecmascript)"); -; -// Bot crawler that will spin up a headless browser and execute JS. -// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers. -// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers -// This regex specifically matches "Googlebot" but NOT "Mediapartners-Google", "AdsBot-Google", etc. -const HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i; -const HTML_LIMITED_BOT_UA_RE_STRING = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_LIMITED_BOT_UA_RE"].source; -; -function isDomBotUA(userAgent) { - return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent); -} -function isHtmlLimitedBotUA(userAgent) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_LIMITED_BOT_UA_RE"].test(userAgent); -} -function isBot(userAgent) { - return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent); -} -function getBotType(userAgent) { - if (isDomBotUA(userAgent)) { - return 'dom'; - } - if (isHtmlLimitedBotUA(userAgent)) { - return 'html'; - } - return undefined; -} //# sourceMappingURL=is-bot.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/streaming-metadata.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isHtmlBotRequest", - ()=>isHtmlBotRequest, - "shouldServeStreamingMetadata", - ()=>shouldServeStreamingMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-rsc] (ecmascript) "); -; -function shouldServeStreamingMetadata(userAgent, htmlLimitedBots) { - const blockingMetadataUARegex = new RegExp(htmlLimitedBots || __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["HTML_LIMITED_BOT_UA_RE_STRING"], 'i'); - // Only block metadata for HTML-limited bots - if (userAgent && blockingMetadataUARegex.test(userAgent)) { - return false; - } - return true; -} -function isHtmlBotRequest(req) { - const ua = req.headers['user-agent'] || ''; - const botType = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["getBotType"])(ua); - return botType === 'html'; -} //# sourceMappingURL=streaming-metadata.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/server-action-request-meta.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getIsPossibleServerAction", - ()=>getIsPossibleServerAction, - "getServerActionRequestMetadata", - ()=>getServerActionRequestMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -; -function getServerActionRequestMetadata(req) { - let actionId; - let contentType; - if (req.headers instanceof Headers) { - actionId = req.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ACTION_HEADER"]) ?? null; - contentType = req.headers.get('content-type'); - } else { - actionId = req.headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ACTION_HEADER"]] ?? null; - contentType = req.headers['content-type'] ?? null; - } - // We don't actually support URL encoded actions, and the action handler will bail out if it sees one. - // But we still want it to flow through to the action handler, to prevent changes in behavior when a regular - // page component tries to handle a POST. - const isURLEncodedAction = Boolean(req.method === 'POST' && contentType === 'application/x-www-form-urlencoded'); - const isMultipartAction = Boolean(req.method === 'POST' && (contentType == null ? void 0 : contentType.startsWith('multipart/form-data'))); - const isFetchAction = Boolean(actionId !== undefined && typeof actionId === 'string' && req.method === 'POST'); - const isPossibleServerAction = Boolean(isFetchAction || isURLEncodedAction || isMultipartAction); - return { - actionId, - isURLEncodedAction, - isMultipartAction, - isFetchAction, - isPossibleServerAction - }; -} -function getIsPossibleServerAction(req) { - return getServerActionRequestMetadata(req).isPossibleServerAction; -} //# sourceMappingURL=server-action-request-meta.js.map -}), -"[project]/node_modules/next/dist/esm/lib/fallback.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Describes the different fallback modes that a given page can have. - */ __turbopack_context__.s([ - "FallbackMode", - ()=>FallbackMode, - "fallbackModeToFallbackField", - ()=>fallbackModeToFallbackField, - "parseFallbackField", - ()=>parseFallbackField, - "parseStaticPathsResult", - ()=>parseStaticPathsResult -]); -var FallbackMode = /*#__PURE__*/ function(FallbackMode) { - /** - * A BLOCKING_STATIC_RENDER fallback will block the request until the page is - * generated. No fallback page will be rendered, and users will have to wait - * to render the page. - */ FallbackMode["BLOCKING_STATIC_RENDER"] = "BLOCKING_STATIC_RENDER"; - /** - * When set to PRERENDER, a fallback page will be sent to users in place of - * forcing them to wait for the page to be generated. This allows the user to - * see a rendered page earlier. - */ FallbackMode["PRERENDER"] = "PRERENDER"; - /** - * When set to NOT_FOUND, pages that are not already prerendered will result - * in a not found response. - */ FallbackMode["NOT_FOUND"] = "NOT_FOUND"; - return FallbackMode; -}({}); -function parseFallbackField(fallbackField) { - if (typeof fallbackField === 'string') { - return "PRERENDER"; - } else if (fallbackField === null) { - return "BLOCKING_STATIC_RENDER"; - } else if (fallbackField === false) { - return "NOT_FOUND"; - } else if (fallbackField === undefined) { - return undefined; - } else { - throw Object.defineProperty(new Error(`Invalid fallback option: ${fallbackField}. Fallback option must be a string, null, undefined, or false.`), "__NEXT_ERROR_CODE", { - value: "E285", - enumerable: false, - configurable: true - }); - } -} -function fallbackModeToFallbackField(fallback, page) { - switch(fallback){ - case "BLOCKING_STATIC_RENDER": - return null; - case "NOT_FOUND": - return false; - case "PRERENDER": - if (!page) { - throw Object.defineProperty(new Error(`Invariant: expected a page to be provided when fallback mode is "${fallback}"`), "__NEXT_ERROR_CODE", { - value: "E422", - enumerable: false, - configurable: true - }); - } - return page; - default: - throw Object.defineProperty(new Error(`Invalid fallback mode: ${fallback}`), "__NEXT_ERROR_CODE", { - value: "E254", - enumerable: false, - configurable: true - }); - } -} -function parseStaticPathsResult(result) { - if (result === true) { - return "PRERENDER"; - } else if (result === 'blocking') { - return "BLOCKING_STATIC_RENDER"; - } else { - return "NOT_FOUND"; - } -} //# sourceMappingURL=fallback.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Web vitals provided to _app.reportWebVitals by Core Web Vitals plugin developed by Google Chrome team. - * https://nextjs.org/blog/next-9-4#integrated-web-vitals-reporting - */ __turbopack_context__.s([ - "DecodeError", - ()=>DecodeError, - "MiddlewareNotFoundError", - ()=>MiddlewareNotFoundError, - "MissingStaticPage", - ()=>MissingStaticPage, - "NormalizeError", - ()=>NormalizeError, - "PageNotFoundError", - ()=>PageNotFoundError, - "SP", - ()=>SP, - "ST", - ()=>ST, - "WEB_VITALS", - ()=>WEB_VITALS, - "execOnce", - ()=>execOnce, - "getDisplayName", - ()=>getDisplayName, - "getLocationOrigin", - ()=>getLocationOrigin, - "getURL", - ()=>getURL, - "isAbsoluteUrl", - ()=>isAbsoluteUrl, - "isResSent", - ()=>isResSent, - "loadGetInitialProps", - ()=>loadGetInitialProps, - "normalizeRepeatedSlashes", - ()=>normalizeRepeatedSlashes, - "stringifyError", - ()=>stringifyError -]); -const WEB_VITALS = [ - 'CLS', - 'FCP', - 'FID', - 'INP', - 'LCP', - 'TTFB' -]; -function execOnce(fn) { - let used = false; - let result; - return (...args)=>{ - if (!used) { - used = true; - result = fn(...args); - } - return result; - }; -} -// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1 -// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3 -const ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\d+\-.]*?:/; -const isAbsoluteUrl = (url)=>ABSOLUTE_URL_REGEX.test(url); -function getLocationOrigin() { - const { protocol, hostname, port } = window.location; - return `${protocol}//${hostname}${port ? ':' + port : ''}`; -} -function getURL() { - const { href } = window.location; - const origin = getLocationOrigin(); - return href.substring(origin.length); -} -function getDisplayName(Component) { - return typeof Component === 'string' ? Component : Component.displayName || Component.name || 'Unknown'; -} -function isResSent(res) { - return res.finished || res.headersSent; -} -function normalizeRepeatedSlashes(url) { - const urlParts = url.split('?'); - const urlNoQuery = urlParts[0]; - return urlNoQuery // first we replace any non-encoded backslashes with forward - // then normalize repeated forward slashes - .replace(/\\/g, '/').replace(/\/\/+/g, '/') + (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : ''); -} -async function loadGetInitialProps(App, ctx) { - if ("TURBOPACK compile-time truthy", 1) { - if (App.prototype?.getInitialProps) { - const message = `"${getDisplayName(App)}.getInitialProps()" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - } - // when called from _app `ctx` is nested in `ctx` - const res = ctx.res || ctx.ctx && ctx.ctx.res; - if (!App.getInitialProps) { - if (ctx.ctx && ctx.Component) { - // @ts-ignore pageProps default - return { - pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx) - }; - } - return {}; - } - const props = await App.getInitialProps(ctx); - if (res && isResSent(res)) { - return props; - } - if (!props) { - const message = `"${getDisplayName(App)}.getInitialProps()" should resolve to an object. But found "${props}" instead.`; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - if (Object.keys(props).length === 0 && !ctx.ctx) { - console.warn(`${getDisplayName(App)} returned an empty object from \`getInitialProps\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`); - } - } - return props; -} -const SP = typeof performance !== 'undefined'; -const ST = SP && [ - 'mark', - 'measure', - 'getEntriesByName' -].every((method)=>typeof performance[method] === 'function'); -class DecodeError extends Error { -} -class NormalizeError extends Error { -} -class PageNotFoundError extends Error { - constructor(page){ - super(); - this.code = 'ENOENT'; - this.name = 'PageNotFoundError'; - this.message = `Cannot find module for page: ${page}`; - } -} -class MissingStaticPage extends Error { - constructor(page, message){ - super(); - this.message = `Failed to load static file for page: ${page} ${message}`; - } -} -class MiddlewareNotFoundError extends Error { - constructor(){ - super(); - this.code = 'ENOENT'; - this.message = `Cannot find the middleware module`; - } -} -function stringifyError(error) { - return JSON.stringify({ - message: error.message, - stack: error.stack - }); -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/etag.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * FNV-1a Hash implementation - * @author Travis Webb (tjwebb) - * - * Ported from https://github.com/tjwebb/fnv-plus/blob/master/index.js - * - * Simplified, optimized and add modified for 52 bit, which provides a larger hash space - * and still making use of Javascript's 53-bit integer space. - */ __turbopack_context__.s([ - "fnv1a52", - ()=>fnv1a52, - "generateETag", - ()=>generateETag -]); -const fnv1a52 = (str)=>{ - const len = str.length; - let i = 0, t0 = 0, v0 = 0x2325, t1 = 0, v1 = 0x8422, t2 = 0, v2 = 0x9ce4, t3 = 0, v3 = 0xcbf2; - while(i < len){ - v0 ^= str.charCodeAt(i++); - t0 = v0 * 435; - t1 = v1 * 435; - t2 = v2 * 435; - t3 = v3 * 435; - t2 += v0 << 8; - t3 += v1 << 8; - t1 += t0 >>> 16; - v0 = t0 & 65535; - t2 += t1 >>> 16; - v1 = t1 & 65535; - v3 = t3 + (t2 >>> 16) & 65535; - v2 = t2 & 65535; - } - return (v3 & 15) * 281474976710656 + v2 * 4294967296 + v1 * 65536 + (v0 ^ v3 >> 4); -}; -const generateETag = (payload, weak = false)=>{ - const prefix = weak ? 'W/"' : '"'; - return prefix + fnv1a52(payload).toString(36) + payload.length.toString(36) + '"'; -}; //# sourceMappingURL=etag.js.map -}), -"[project]/node_modules/next/dist/compiled/fresh/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 695: (e)=>{ - /*! - * fresh - * Copyright(c) 2012 TJ Holowaychuk - * Copyright(c) 2016-2017 Douglas Christopher Wilson - * MIT Licensed - */ var r = /(?:^|,)\s*?no-cache\s*?(?:,|$)/; - e.exports = fresh; - function fresh(e, a) { - var t = e["if-modified-since"]; - var s = e["if-none-match"]; - if (!t && !s) { - return false; - } - var i = e["cache-control"]; - if (i && r.test(i)) { - return false; - } - if (s && s !== "*") { - var f = a["etag"]; - if (!f) { - return false; - } - var n = true; - var u = parseTokenList(s); - for(var _ = 0; _ < u.length; _++){ - var o = u[_]; - if (o === f || o === "W/" + f || "W/" + o === f) { - n = false; - break; - } - } - if (n) { - return false; - } - } - if (t) { - var p = a["last-modified"]; - var v = !p || !(parseHttpDate(p) <= parseHttpDate(t)); - if (v) { - return false; - } - } - return true; - } - function parseHttpDate(e) { - var r = e && Date.parse(e); - return typeof r === "number" ? r : NaN; - } - function parseTokenList(e) { - var r = 0; - var a = []; - var t = 0; - for(var s = 0, i = e.length; s < i; s++){ - switch(e.charCodeAt(s)){ - case 32: - if (t === r) { - t = r = s + 1; - } - break; - case 44: - a.push(e.substring(t, r)); - t = r = s + 1; - break; - default: - r = s + 1; - break; - } - } - a.push(e.substring(t, r)); - return a; - } - } - }; - var r = {}; - function __nccwpck_require__(a) { - var t = r[a]; - if (t !== undefined) { - return t.exports; - } - var s = r[a] = { - exports: {} - }; - var i = true; - try { - e[a](s, s.exports, __nccwpck_require__); - i = false; - } finally{ - if (i) delete r[a]; - } - return s.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/fresh") + "/"; - var a = __nccwpck_require__(695); - module.exports = a; -})(); -}), -"[project]/node_modules/next/dist/esm/server/lib/cache-control.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getCacheControlHeader", - ()=>getCacheControlHeader -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -; -function getCacheControlHeader({ revalidate, expire }) { - const swrHeader = typeof revalidate === 'number' && expire !== undefined && revalidate < expire ? `, stale-while-revalidate=${expire - revalidate}` : ''; - if (revalidate === 0) { - return 'private, no-cache, no-store, max-age=0, must-revalidate'; - } else if (typeof revalidate === 'number') { - return `s-maxage=${revalidate}${swrHeader}`; - } - return `s-maxage=${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CACHE_ONE_YEAR"]}${swrHeader}`; -} //# sourceMappingURL=cache-control.js.map -}), -"[project]/node_modules/next/dist/esm/server/send-payload.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "sendEtagResponse", - ()=>sendEtagResponse, - "sendRenderResult", - ()=>sendRenderResult -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$etag$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/etag.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$fresh$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/fresh/index.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$cache$2d$control$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/cache-control.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -; -; -; -; -; -function sendEtagResponse(req, res, etag) { - if (etag) { - /** - * The server generating a 304 response MUST generate any of the - * following header fields that would have been sent in a 200 (OK) - * response to the same request: Cache-Control, Content-Location, Date, - * ETag, Expires, and Vary. https://tools.ietf.org/html/rfc7232#section-4.1 - */ res.setHeader('ETag', etag); - } - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$fresh$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"])(req.headers, { - etag - })) { - res.statusCode = 304; - res.end(); - return true; - } - return false; -} -async function sendRenderResult({ req, res, result, generateEtags, poweredByHeader, cacheControl }) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isResSent"])(res)) { - return; - } - if (poweredByHeader && result.contentType === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_CONTENT_TYPE_HEADER"]) { - res.setHeader('X-Powered-By', 'Next.js'); - } - // If cache control is already set on the response we don't - // override it to allow users to customize it via next.config - if (cacheControl && !res.getHeader('Cache-Control')) { - res.setHeader('Cache-Control', (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$cache$2d$control$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getCacheControlHeader"])(cacheControl)); - } - const payload = result.isDynamic ? null : result.toUnchunkedString(); - if (generateEtags && payload !== null) { - const etag = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$etag$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["generateETag"])(payload); - if (sendEtagResponse(req, res, etag)) { - return; - } - } - if (!res.getHeader('Content-Type') && result.contentType) { - res.setHeader('Content-Type', result.contentType); - } - if (payload) { - res.setHeader('Content-Length', Buffer.byteLength(payload)); - } - if (req.method === 'HEAD') { - res.end(null); - return; - } - if (payload !== null) { - res.end(payload); - return; - } - // Pipe the render result to the response after we get a writer for it. - await result.pipeToNodeResponse(res); -} //# sourceMappingURL=send-payload.js.map -}), -"[project]/node_modules/next/dist/compiled/bytes/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 56: (e)=>{ - /*! - * bytes - * Copyright(c) 2012-2014 TJ Holowaychuk - * Copyright(c) 2015 Jed Watson - * MIT Licensed - */ e.exports = bytes; - e.exports.format = format; - e.exports.parse = parse; - var r = /\B(?=(\d{3})+(?!\d))/g; - var a = /(?:\.0*|(\.[^0]+)0+)$/; - var t = { - b: 1, - kb: 1 << 10, - mb: 1 << 20, - gb: 1 << 30, - tb: Math.pow(1024, 4), - pb: Math.pow(1024, 5) - }; - var i = /^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb|pb)$/i; - function bytes(e, r) { - if (typeof e === "string") { - return parse(e); - } - if (typeof e === "number") { - return format(e, r); - } - return null; - } - function format(e, i) { - if (!Number.isFinite(e)) { - return null; - } - var n = Math.abs(e); - var o = i && i.thousandsSeparator || ""; - var s = i && i.unitSeparator || ""; - var f = i && i.decimalPlaces !== undefined ? i.decimalPlaces : 2; - var u = Boolean(i && i.fixedDecimals); - var p = i && i.unit || ""; - if (!p || !t[p.toLowerCase()]) { - if (n >= t.pb) { - p = "PB"; - } else if (n >= t.tb) { - p = "TB"; - } else if (n >= t.gb) { - p = "GB"; - } else if (n >= t.mb) { - p = "MB"; - } else if (n >= t.kb) { - p = "KB"; - } else { - p = "B"; - } - } - var b = e / t[p.toLowerCase()]; - var l = b.toFixed(f); - if (!u) { - l = l.replace(a, "$1"); - } - if (o) { - l = l.split(".").map(function(e, a) { - return a === 0 ? e.replace(r, o) : e; - }).join("."); - } - return l + s + p; - } - function parse(e) { - if (typeof e === "number" && !isNaN(e)) { - return e; - } - if (typeof e !== "string") { - return null; - } - var r = i.exec(e); - var a; - var n = "b"; - if (!r) { - a = parseInt(e, 10); - n = "b"; - } else { - a = parseFloat(r[1]); - n = r[4].toLowerCase(); - } - return Math.floor(t[n] * a); - } - } - }; - var r = {}; - function __nccwpck_require__(a) { - var t = r[a]; - if (t !== undefined) { - return t.exports; - } - var i = r[a] = { - exports: {} - }; - var n = true; - try { - e[a](i, i.exports, __nccwpck_require__); - n = false; - } finally{ - if (n) delete r[a]; - } - return i.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/bytes") + "/"; - var a = __nccwpck_require__(56); - module.exports = a; -})(); -}), -"[project]/node_modules/next/dist/esm/shared/lib/size-limit.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DEFAULT_MAX_POSTPONED_STATE_SIZE", - ()=>DEFAULT_MAX_POSTPONED_STATE_SIZE, - "parseMaxPostponedStateSize", - ()=>parseMaxPostponedStateSize -]); -const DEFAULT_MAX_POSTPONED_STATE_SIZE = '100 MB'; -function parseSizeLimit(size) { - const bytes = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/bytes/index.js [app-rsc] (ecmascript)").parse(size); - if (bytes === null || isNaN(bytes) || bytes < 1) { - return undefined; - } - return bytes; -} -function parseMaxPostponedStateSize(size) { - return parseSizeLimit(size ?? DEFAULT_MAX_POSTPONED_STATE_SIZE); -} //# sourceMappingURL=size-limit.js.map -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript)")); -}), -"[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility) ", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript) "));}), -"[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript)"));}), -"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript)")); -}), -"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript)")); -}), -"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript)")); -}), -"[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -function _interop_require_default(obj) { - return obj && obj.__esModule ? obj : { - default: obj - }; -} -exports._ = _interop_require_default; -}), -"[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "warnOnce", { - enumerable: true, - get: function() { - return warnOnce; - } -}); -let warnOnce = (_)=>{}; -if ("TURBOPACK compile-time truthy", 1) { - const warnings = new Set(); - warnOnce = (msg)=>{ - if (!warnings.has(msg)) { - console.warn(msg); - } - warnings.add(msg); - }; -} //# sourceMappingURL=warn-once.js.map -}), -"[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// This could also be a variable instead of a function, but some unit tests want to change the ID at -// runtime. Even though that would never happen in a real deployment. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getDeploymentId: null, - getDeploymentIdQueryOrEmptyString: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getDeploymentId: function() { - return getDeploymentId; - }, - getDeploymentIdQueryOrEmptyString: function() { - return getDeploymentIdQueryOrEmptyString; - } -}); -function getDeploymentId() { - return "TURBOPACK compile-time value", false; -} -function getDeploymentIdQueryOrEmptyString() { - let deploymentId = getDeploymentId(); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return ''; -} //# sourceMappingURL=deployment-id.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-blur-svg.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * A shared function, used on both client and server, to generate a SVG blur placeholder. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getImageBlurSvg", { - enumerable: true, - get: function() { - return getImageBlurSvg; - } -}); -function getImageBlurSvg({ widthInt, heightInt, blurWidth, blurHeight, blurDataURL, objectFit }) { - const std = 20; - const svgWidth = blurWidth ? blurWidth * 40 : widthInt; - const svgHeight = blurHeight ? blurHeight * 40 : heightInt; - const viewBox = svgWidth && svgHeight ? `viewBox='0 0 ${svgWidth} ${svgHeight}'` : ''; - const preserveAspectRatio = viewBox ? 'none' : objectFit === 'contain' ? 'xMidYMid' : objectFit === 'cover' ? 'xMidYMid slice' : 'none'; - return `%3Csvg xmlns='http://www.w3.org/2000/svg' ${viewBox}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${preserveAspectRatio}' style='filter: url(%23b);' href='${blurDataURL}'/%3E%3C/svg%3E`; -} //# sourceMappingURL=image-blur-svg.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-config.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - VALID_LOADERS: null, - imageConfigDefault: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - VALID_LOADERS: function() { - return VALID_LOADERS; - }, - imageConfigDefault: function() { - return imageConfigDefault; - } -}); -const VALID_LOADERS = [ - 'default', - 'imgix', - 'cloudinary', - 'akamai', - 'custom' -]; -const imageConfigDefault = { - deviceSizes: [ - 640, - 750, - 828, - 1080, - 1200, - 1920, - 2048, - 3840 - ], - imageSizes: [ - 32, - 48, - 64, - 96, - 128, - 256, - 384 - ], - path: '/_next/image', - loader: 'default', - loaderFile: '', - /** - * @deprecated Use `remotePatterns` instead to protect your application from malicious users. - */ domains: [], - disableStaticImages: false, - minimumCacheTTL: 14400, - formats: [ - 'image/webp' - ], - maximumRedirects: 3, - maximumResponseBody: 50000000, - dangerouslyAllowLocalIP: false, - dangerouslyAllowSVG: false, - contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`, - contentDispositionType: 'attachment', - localPatterns: undefined, - remotePatterns: [], - qualities: [ - 75 - ], - unoptimized: false -}; //# sourceMappingURL=image-config.js.map -}), -"[project]/node_modules/next/dist/shared/lib/get-img-props.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getImgProps", { - enumerable: true, - get: function() { - return getImgProps; - } -}); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-rsc] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-rsc] (ecmascript)"); -const _imageblursvg = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-blur-svg.js [app-rsc] (ecmascript)"); -const _imageconfig = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-config.js [app-rsc] (ecmascript)"); -const VALID_LOADING_VALUES = [ - 'lazy', - 'eager', - undefined -]; -// Object-fit values that are not valid background-size values -const INVALID_BACKGROUND_SIZE_VALUES = [ - '-moz-initial', - 'fill', - 'none', - 'scale-down', - undefined -]; -function isStaticRequire(src) { - return src.default !== undefined; -} -function isStaticImageData(src) { - return src.src !== undefined; -} -function isStaticImport(src) { - return !!src && typeof src === 'object' && (isStaticRequire(src) || isStaticImageData(src)); -} -const allImgs = new Map(); -let perfObserver; -function getInt(x) { - if (typeof x === 'undefined') { - return x; - } - if (typeof x === 'number') { - return Number.isFinite(x) ? x : NaN; - } - if (typeof x === 'string' && /^[0-9]+$/.test(x)) { - return parseInt(x, 10); - } - return NaN; -} -function getWidths({ deviceSizes, allSizes }, width, sizes) { - if (sizes) { - // Find all the "vw" percent sizes used in the sizes prop - const viewportWidthRe = /(^|\s)(1?\d?\d)vw/g; - const percentSizes = []; - for(let match; match = viewportWidthRe.exec(sizes); match){ - percentSizes.push(parseInt(match[2])); - } - if (percentSizes.length) { - const smallestRatio = Math.min(...percentSizes) * 0.01; - return { - widths: allSizes.filter((s)=>s >= deviceSizes[0] * smallestRatio), - kind: 'w' - }; - } - return { - widths: allSizes, - kind: 'w' - }; - } - if (typeof width !== 'number') { - return { - widths: deviceSizes, - kind: 'w' - }; - } - const widths = [ - ...new Set(// > are actually 3x in the green color, but only 1.5x in the red and - // > blue colors. Showing a 3x resolution image in the app vs a 2x - // > resolution image will be visually the same, though the 3x image - // > takes significantly more data. Even true 3x resolution screens are - // > wasteful as the human eye cannot see that level of detail without - // > something like a magnifying glass. - // https://blog.twitter.com/engineering/en_us/topics/infrastructure/2019/capping-image-fidelity-on-ultra-high-resolution-devices.html - [ - width, - width * 2 /*, width * 3*/ - ].map((w)=>allSizes.find((p)=>p >= w) || allSizes[allSizes.length - 1])) - ]; - return { - widths, - kind: 'x' - }; -} -function generateImgAttrs({ config, src, unoptimized, width, quality, sizes, loader }) { - if (unoptimized) { - const deploymentId = (0, _deploymentid.getDeploymentId)(); - if (src.startsWith('/') && !src.startsWith('//') && deploymentId) { - const sep = src.includes('?') ? '&' : '?'; - src = `${src}${sep}dpl=${deploymentId}`; - } - return { - src, - srcSet: undefined, - sizes: undefined - }; - } - const { widths, kind } = getWidths(config, width, sizes); - const last = widths.length - 1; - return { - sizes: !sizes && kind === 'w' ? '100vw' : sizes, - srcSet: widths.map((w, i)=>`${loader({ - config, - src, - quality, - width: w - })} ${kind === 'w' ? w : i + 1}${kind}`).join(', '), - // It's intended to keep `src` the last attribute because React updates - // attributes in order. If we keep `src` the first one, Safari will - // immediately start to fetch `src`, before `sizes` and `srcSet` are even - // updated by React. That causes multiple unnecessary requests if `srcSet` - // and `sizes` are defined. - // This bug cannot be reproduced in Chrome or Firefox. - src: loader({ - config, - src, - quality, - width: widths[last] - }) - }; -} -function getImgProps({ src, sizes, unoptimized = false, priority = false, preload = false, loading, className, quality, width, height, fill = false, style, overrideSrc, onLoad, onLoadingComplete, placeholder = 'empty', blurDataURL, fetchPriority, decoding = 'async', layout, objectFit, objectPosition, lazyBoundary, lazyRoot, ...rest }, _state) { - const { imgConf, showAltText, blurComplete, defaultLoader } = _state; - let config; - let c = imgConf || _imageconfig.imageConfigDefault; - if ('allSizes' in c) { - config = c; - } else { - const allSizes = [ - ...c.deviceSizes, - ...c.imageSizes - ].sort((a, b)=>a - b); - const deviceSizes = c.deviceSizes.sort((a, b)=>a - b); - const qualities = c.qualities?.sort((a, b)=>a - b); - config = { - ...c, - allSizes, - deviceSizes, - qualities - }; - } - if (typeof defaultLoader === 'undefined') { - throw Object.defineProperty(new Error('images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config'), "__NEXT_ERROR_CODE", { - value: "E163", - enumerable: false, - configurable: true - }); - } - let loader = rest.loader || defaultLoader; - // Remove property so it's not spread on element - delete rest.loader; - delete rest.srcSet; - // This special value indicates that the user - // didn't define a "loader" prop or "loader" config. - const isDefaultLoader = '__next_img_default' in loader; - if (isDefaultLoader) { - if (config.loader === 'custom') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing "loader" prop.` + `\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader`), "__NEXT_ERROR_CODE", { - value: "E252", - enumerable: false, - configurable: true - }); - } - } else { - // The user defined a "loader" prop or config. - // Since the config object is internal only, we - // must not pass it to the user-defined "loader". - const customImageLoader = loader; - loader = (obj)=>{ - const { config: _, ...opts } = obj; - return customImageLoader(opts); - }; - } - if (layout) { - if (layout === 'fill') { - fill = true; - } - const layoutToStyle = { - intrinsic: { - maxWidth: '100%', - height: 'auto' - }, - responsive: { - width: '100%', - height: 'auto' - } - }; - const layoutToSizes = { - responsive: '100vw', - fill: '100vw' - }; - const layoutStyle = layoutToStyle[layout]; - if (layoutStyle) { - style = { - ...style, - ...layoutStyle - }; - } - const layoutSizes = layoutToSizes[layout]; - if (layoutSizes && !sizes) { - sizes = layoutSizes; - } - } - let staticSrc = ''; - let widthInt = getInt(width); - let heightInt = getInt(height); - let blurWidth; - let blurHeight; - if (isStaticImport(src)) { - const staticImageData = isStaticRequire(src) ? src.default : src; - if (!staticImageData.src) { - throw Object.defineProperty(new Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(staticImageData)}`), "__NEXT_ERROR_CODE", { - value: "E460", - enumerable: false, - configurable: true - }); - } - if (!staticImageData.height || !staticImageData.width) { - throw Object.defineProperty(new Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(staticImageData)}`), "__NEXT_ERROR_CODE", { - value: "E48", - enumerable: false, - configurable: true - }); - } - blurWidth = staticImageData.blurWidth; - blurHeight = staticImageData.blurHeight; - blurDataURL = blurDataURL || staticImageData.blurDataURL; - staticSrc = staticImageData.src; - if (!fill) { - if (!widthInt && !heightInt) { - widthInt = staticImageData.width; - heightInt = staticImageData.height; - } else if (widthInt && !heightInt) { - const ratio = widthInt / staticImageData.width; - heightInt = Math.round(staticImageData.height * ratio); - } else if (!widthInt && heightInt) { - const ratio = heightInt / staticImageData.height; - widthInt = Math.round(staticImageData.width * ratio); - } - } - } - src = typeof src === 'string' ? src : staticSrc; - let isLazy = !priority && !preload && (loading === 'lazy' || typeof loading === 'undefined'); - if (!src || src.startsWith('data:') || src.startsWith('blob:')) { - // https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs - unoptimized = true; - isLazy = false; - } - if (config.unoptimized) { - unoptimized = true; - } - if (isDefaultLoader && !config.dangerouslyAllowSVG && src.split('?', 1)[0].endsWith('.svg')) { - // Special case to make svg serve as-is to avoid proxying - // through the built-in Image Optimization API. - unoptimized = true; - } - const qualityInt = getInt(quality); - if ("TURBOPACK compile-time truthy", 1) { - if (config.output === 'export' && isDefaultLoader && !unoptimized) { - throw Object.defineProperty(new Error(`Image Optimization using the default loader is not compatible with \`{ output: 'export' }\`. - Possible solutions: - - Remove \`{ output: 'export' }\` and run "next start" to run server mode including the Image Optimization API. - - Configure \`{ images: { unoptimized: true } }\` in \`next.config.js\` to disable the Image Optimization API. - Read more: https://nextjs.org/docs/messages/export-image-api`), "__NEXT_ERROR_CODE", { - value: "E500", - enumerable: false, - configurable: true - }); - } - if (!src) { - // React doesn't show the stack trace and there's - // no `src` to help identify which image, so we - // instead console.error(ref) during mount. - unoptimized = true; - } else { - if (fill) { - if (width) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "width" and "fill" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E96", - enumerable: false, - configurable: true - }); - } - if (height) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "height" and "fill" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E115", - enumerable: false, - configurable: true - }); - } - if (style?.position && style.position !== 'absolute') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.position" properties. Images with "fill" always use position absolute - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E216", - enumerable: false, - configurable: true - }); - } - if (style?.width && style.width !== '100%') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.width" properties. Images with "fill" always use width 100% - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E73", - enumerable: false, - configurable: true - }); - } - if (style?.height && style.height !== '100%') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.height" properties. Images with "fill" always use height 100% - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E404", - enumerable: false, - configurable: true - }); - } - } else { - if (typeof widthInt === 'undefined') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing required "width" property.`), "__NEXT_ERROR_CODE", { - value: "E451", - enumerable: false, - configurable: true - }); - } else if (isNaN(widthInt)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "width" property. Expected a numeric value in pixels but received "${width}".`), "__NEXT_ERROR_CODE", { - value: "E66", - enumerable: false, - configurable: true - }); - } - if (typeof heightInt === 'undefined') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing required "height" property.`), "__NEXT_ERROR_CODE", { - value: "E397", - enumerable: false, - configurable: true - }); - } else if (isNaN(heightInt)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "height" property. Expected a numeric value in pixels but received "${height}".`), "__NEXT_ERROR_CODE", { - value: "E444", - enumerable: false, - configurable: true - }); - } - // eslint-disable-next-line no-control-regex - if (/^[\x00-\x20]/.test(src)) { - throw Object.defineProperty(new Error(`Image with src "${src}" cannot start with a space or control character. Use src.trimStart() to remove it or encodeURIComponent(src) to keep it.`), "__NEXT_ERROR_CODE", { - value: "E176", - enumerable: false, - configurable: true - }); - } - // eslint-disable-next-line no-control-regex - if (/[\x00-\x20]$/.test(src)) { - throw Object.defineProperty(new Error(`Image with src "${src}" cannot end with a space or control character. Use src.trimEnd() to remove it or encodeURIComponent(src) to keep it.`), "__NEXT_ERROR_CODE", { - value: "E21", - enumerable: false, - configurable: true - }); - } - } - } - if (!VALID_LOADING_VALUES.includes(loading)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "loading" property. Provided "${loading}" should be one of ${VALID_LOADING_VALUES.map(String).join(',')}.`), "__NEXT_ERROR_CODE", { - value: "E357", - enumerable: false, - configurable: true - }); - } - if (priority && loading === 'lazy') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "priority" and "loading='lazy'" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E218", - enumerable: false, - configurable: true - }); - } - if (preload && loading === 'lazy') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "preload" and "loading='lazy'" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E803", - enumerable: false, - configurable: true - }); - } - if (preload && priority) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "preload" and "priority" properties. Only "preload" should be used.`), "__NEXT_ERROR_CODE", { - value: "E802", - enumerable: false, - configurable: true - }); - } - if (placeholder !== 'empty' && placeholder !== 'blur' && !placeholder.startsWith('data:image/')) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "placeholder" property "${placeholder}".`), "__NEXT_ERROR_CODE", { - value: "E431", - enumerable: false, - configurable: true - }); - } - if (placeholder !== 'empty') { - if (widthInt && heightInt && widthInt * heightInt < 1600) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is smaller than 40x40. Consider removing the "placeholder" property to improve performance.`); - } - } - if (qualityInt && config.qualities && !config.qualities.includes(qualityInt)) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using quality "${qualityInt}" which is not configured in images.qualities [${config.qualities.join(', ')}]. Please update your config to [${[ - ...config.qualities, - qualityInt - ].sort().join(', ')}].` + `\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-qualities`); - } - if (placeholder === 'blur' && !blurDataURL) { - const VALID_BLUR_EXT = [ - 'jpeg', - 'png', - 'webp', - 'avif' - ] // should match next-image-loader - ; - throw Object.defineProperty(new Error(`Image with src "${src}" has "placeholder='blur'" property but is missing the "blurDataURL" property. - Possible solutions: - - Add a "blurDataURL" property, the contents should be a small Data URL to represent the image - - Change the "src" property to a static import with one of the supported file types: ${VALID_BLUR_EXT.join(',')} (animated images not supported) - - Remove the "placeholder" property, effectively no blur effect - Read more: https://nextjs.org/docs/messages/placeholder-blur-data-url`), "__NEXT_ERROR_CODE", { - value: "E371", - enumerable: false, - configurable: true - }); - } - if ('ref' in rest) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using unsupported "ref" property. Consider using the "onLoad" property instead.`); - } - if (!unoptimized && !isDefaultLoader) { - const urlStr = loader({ - config, - src, - width: widthInt || 400, - quality: qualityInt || 75 - }); - let url; - try { - url = new URL(urlStr); - } catch (err) {} - if (urlStr === src || url && url.pathname === src && !url.search) { - (0, _warnonce.warnOnce)(`Image with src "${src}" has a "loader" property that does not implement width. Please implement it or use the "unoptimized" property instead.` + `\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader-width`); - } - } - if (onLoadingComplete) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using deprecated "onLoadingComplete" property. Please use the "onLoad" property instead.`); - } - for (const [legacyKey, legacyValue] of Object.entries({ - layout, - objectFit, - objectPosition, - lazyBoundary, - lazyRoot - })){ - if (legacyValue) { - (0, _warnonce.warnOnce)(`Image with src "${src}" has legacy prop "${legacyKey}". Did you forget to run the codemod?` + `\nRead more: https://nextjs.org/docs/messages/next-image-upgrade-to-13`); - } - } - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - } - const imgStyle = Object.assign(fill ? { - position: 'absolute', - height: '100%', - width: '100%', - left: 0, - top: 0, - right: 0, - bottom: 0, - objectFit, - objectPosition - } : {}, showAltText ? {} : { - color: 'transparent' - }, style); - const backgroundImage = !blurComplete && placeholder !== 'empty' ? placeholder === 'blur' ? `url("data:image/svg+xml;charset=utf-8,${(0, _imageblursvg.getImageBlurSvg)({ - widthInt, - heightInt, - blurWidth, - blurHeight, - blurDataURL: blurDataURL || '', - objectFit: imgStyle.objectFit - })}")` : `url("${placeholder}")` // assume `data:image/` - : null; - const backgroundSize = !INVALID_BACKGROUND_SIZE_VALUES.includes(imgStyle.objectFit) ? imgStyle.objectFit : imgStyle.objectFit === 'fill' ? '100% 100%' // the background-size equivalent of `fill` - : 'cover'; - let placeholderStyle = backgroundImage ? { - backgroundSize, - backgroundPosition: imgStyle.objectPosition || '50% 50%', - backgroundRepeat: 'no-repeat', - backgroundImage - } : {}; - if ("TURBOPACK compile-time truthy", 1) { - if (placeholderStyle.backgroundImage && placeholder === 'blur' && blurDataURL?.startsWith('/')) { - // During `next dev`, we don't want to generate blur placeholders with webpack - // because it can delay starting the dev server. Instead, `next-image-loader.js` - // will inline a special url to lazily generate the blur placeholder at request time. - placeholderStyle.backgroundImage = `url("${blurDataURL}")`; - } - } - const imgAttributes = generateImgAttrs({ - config, - src, - unoptimized, - width: widthInt, - quality: qualityInt, - sizes, - loader - }); - const loadingFinal = isLazy ? 'lazy' : loading; - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - } - const props = { - ...rest, - loading: loadingFinal, - fetchPriority, - width: widthInt, - height: heightInt, - decoding, - className, - style: { - ...imgStyle, - ...placeholderStyle - }, - sizes: imgAttributes.sizes, - srcSet: imgAttributes.srcSet, - src: overrideSrc || imgAttributes.src - }; - const meta = { - unoptimized, - preload: preload || priority, - placeholder, - fill - }; - return { - props, - meta - }; -} //# sourceMappingURL=get-img-props.js.map -}), -"[project]/node_modules/next/dist/client/image-component.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/client/image-component.js ")); -}), -"[project]/node_modules/next/dist/client/image-component.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/client/image-component.js")); -}), -"[project]/node_modules/next/dist/client/image-component.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$image$2d$component$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/image-component.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$image$2d$component$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/image-component.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$image$2d$component$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -"[project]/node_modules/next/dist/shared/lib/find-closest-quality.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "findClosestQuality", { - enumerable: true, - get: function() { - return findClosestQuality; - } -}); -function findClosestQuality(quality, config) { - const q = quality || 75; - if (!config?.qualities?.length) { - return q; - } - return config.qualities.reduce((prev, cur)=>Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev, 0); -} //# sourceMappingURL=find-closest-quality.js.map -}), -"[project]/node_modules/next/dist/compiled/picomatch/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var t = { - 170: (t, e, u)=>{ - const n = u(510); - const isWindows = ()=>{ - if (typeof navigator !== "undefined" && navigator.platform) { - const t = navigator.platform.toLowerCase(); - return t === "win32" || t === "windows"; - } - if (typeof process !== "undefined" && process.platform) { - return process.platform === "win32"; - } - return false; - }; - function picomatch(t, e, u = false) { - if (e && (e.windows === null || e.windows === undefined)) { - e = { - ...e, - windows: isWindows() - }; - } - return n(t, e, u); - } - Object.assign(picomatch, n); - t.exports = picomatch; - }, - 154: (t)=>{ - const e = "\\\\/"; - const u = `[^${e}]`; - const n = "\\."; - const o = "\\+"; - const s = "\\?"; - const r = "\\/"; - const a = "(?=.)"; - const i = "[^/]"; - const c = `(?:${r}|$)`; - const p = `(?:^|${r})`; - const l = `${n}{1,2}${c}`; - const f = `(?!${n})`; - const A = `(?!${p}${l})`; - const _ = `(?!${n}{0,1}${c})`; - const R = `(?!${l})`; - const E = `[^.${r}]`; - const h = `${i}*?`; - const g = "/"; - const b = { - DOT_LITERAL: n, - PLUS_LITERAL: o, - QMARK_LITERAL: s, - SLASH_LITERAL: r, - ONE_CHAR: a, - QMARK: i, - END_ANCHOR: c, - DOTS_SLASH: l, - NO_DOT: f, - NO_DOTS: A, - NO_DOT_SLASH: _, - NO_DOTS_SLASH: R, - QMARK_NO_DOT: E, - STAR: h, - START_ANCHOR: p, - SEP: g - }; - const C = { - ...b, - SLASH_LITERAL: `[${e}]`, - QMARK: u, - STAR: `${u}*?`, - DOTS_SLASH: `${n}{1,2}(?:[${e}]|$)`, - NO_DOT: `(?!${n})`, - NO_DOTS: `(?!(?:^|[${e}])${n}{1,2}(?:[${e}]|$))`, - NO_DOT_SLASH: `(?!${n}{0,1}(?:[${e}]|$))`, - NO_DOTS_SLASH: `(?!${n}{1,2}(?:[${e}]|$))`, - QMARK_NO_DOT: `[^.${e}]`, - START_ANCHOR: `(?:^|[${e}])`, - END_ANCHOR: `(?:[${e}]|$)`, - SEP: "\\" - }; - const y = { - alnum: "a-zA-Z0-9", - alpha: "a-zA-Z", - ascii: "\\x00-\\x7F", - blank: " \\t", - cntrl: "\\x00-\\x1F\\x7F", - digit: "0-9", - graph: "\\x21-\\x7E", - lower: "a-z", - print: "\\x20-\\x7E ", - punct: "\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~", - space: " \\t\\r\\n\\v\\f", - upper: "A-Z", - word: "A-Za-z0-9_", - xdigit: "A-Fa-f0-9" - }; - t.exports = { - MAX_LENGTH: 1024 * 64, - POSIX_REGEX_SOURCE: y, - REGEX_BACKSLASH: /\\(?![*+?^${}(|)[\]])/g, - REGEX_NON_SPECIAL_CHARS: /^[^@![\].,$*+?^{}()|\\/]+/, - REGEX_SPECIAL_CHARS: /[-*+?.^${}(|)[\]]/, - REGEX_SPECIAL_CHARS_BACKREF: /(\\?)((\W)(\3*))/g, - REGEX_SPECIAL_CHARS_GLOBAL: /([-*+?.^${}(|)[\]])/g, - REGEX_REMOVE_BACKSLASH: /(?:\[.*?[^\\]\]|\\(?=.))/g, - REPLACEMENTS: { - "***": "*", - "**/**": "**", - "**/**/**": "**" - }, - CHAR_0: 48, - CHAR_9: 57, - CHAR_UPPERCASE_A: 65, - CHAR_LOWERCASE_A: 97, - CHAR_UPPERCASE_Z: 90, - CHAR_LOWERCASE_Z: 122, - CHAR_LEFT_PARENTHESES: 40, - CHAR_RIGHT_PARENTHESES: 41, - CHAR_ASTERISK: 42, - CHAR_AMPERSAND: 38, - CHAR_AT: 64, - CHAR_BACKWARD_SLASH: 92, - CHAR_CARRIAGE_RETURN: 13, - CHAR_CIRCUMFLEX_ACCENT: 94, - CHAR_COLON: 58, - CHAR_COMMA: 44, - CHAR_DOT: 46, - CHAR_DOUBLE_QUOTE: 34, - CHAR_EQUAL: 61, - CHAR_EXCLAMATION_MARK: 33, - CHAR_FORM_FEED: 12, - CHAR_FORWARD_SLASH: 47, - CHAR_GRAVE_ACCENT: 96, - CHAR_HASH: 35, - CHAR_HYPHEN_MINUS: 45, - CHAR_LEFT_ANGLE_BRACKET: 60, - CHAR_LEFT_CURLY_BRACE: 123, - CHAR_LEFT_SQUARE_BRACKET: 91, - CHAR_LINE_FEED: 10, - CHAR_NO_BREAK_SPACE: 160, - CHAR_PERCENT: 37, - CHAR_PLUS: 43, - CHAR_QUESTION_MARK: 63, - CHAR_RIGHT_ANGLE_BRACKET: 62, - CHAR_RIGHT_CURLY_BRACE: 125, - CHAR_RIGHT_SQUARE_BRACKET: 93, - CHAR_SEMICOLON: 59, - CHAR_SINGLE_QUOTE: 39, - CHAR_SPACE: 32, - CHAR_TAB: 9, - CHAR_UNDERSCORE: 95, - CHAR_VERTICAL_LINE: 124, - CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279, - extglobChars (t) { - return { - "!": { - type: "negate", - open: "(?:(?!(?:", - close: `))${t.STAR})` - }, - "?": { - type: "qmark", - open: "(?:", - close: ")?" - }, - "+": { - type: "plus", - open: "(?:", - close: ")+" - }, - "*": { - type: "star", - open: "(?:", - close: ")*" - }, - "@": { - type: "at", - open: "(?:", - close: ")" - } - }; - }, - globChars (t) { - return t === true ? C : b; - } - }; - }, - 697: (t, e, u)=>{ - const n = u(154); - const o = u(96); - const { MAX_LENGTH: s, POSIX_REGEX_SOURCE: r, REGEX_NON_SPECIAL_CHARS: a, REGEX_SPECIAL_CHARS_BACKREF: i, REPLACEMENTS: c } = n; - const expandRange = (t, e)=>{ - if (typeof e.expandRange === "function") { - return e.expandRange(...t, e); - } - t.sort(); - const u = `[${t.join("-")}]`; - try { - new RegExp(u); - } catch (e) { - return t.map((t)=>o.escapeRegex(t)).join(".."); - } - return u; - }; - const syntaxError = (t, e)=>`Missing ${t}: "${e}" - use "\\\\${e}" to match literal characters`; - const parse = (t, e)=>{ - if (typeof t !== "string") { - throw new TypeError("Expected a string"); - } - t = c[t] || t; - const u = { - ...e - }; - const p = typeof u.maxLength === "number" ? Math.min(s, u.maxLength) : s; - let l = t.length; - if (l > p) { - throw new SyntaxError(`Input length: ${l}, exceeds maximum allowed length: ${p}`); - } - const f = { - type: "bos", - value: "", - output: u.prepend || "" - }; - const A = [ - f - ]; - const _ = u.capture ? "" : "?:"; - const R = n.globChars(u.windows); - const E = n.extglobChars(R); - const { DOT_LITERAL: h, PLUS_LITERAL: g, SLASH_LITERAL: b, ONE_CHAR: C, DOTS_SLASH: y, NO_DOT: $, NO_DOT_SLASH: x, NO_DOTS_SLASH: S, QMARK: H, QMARK_NO_DOT: v, STAR: d, START_ANCHOR: L } = R; - const globstar = (t)=>`(${_}(?:(?!${L}${t.dot ? y : h}).)*?)`; - const T = u.dot ? "" : $; - const O = u.dot ? H : v; - let k = u.bash === true ? globstar(u) : d; - if (u.capture) { - k = `(${k})`; - } - if (typeof u.noext === "boolean") { - u.noextglob = u.noext; - } - const m = { - input: t, - index: -1, - start: 0, - dot: u.dot === true, - consumed: "", - output: "", - prefix: "", - backtrack: false, - negated: false, - brackets: 0, - braces: 0, - parens: 0, - quotes: 0, - globstar: false, - tokens: A - }; - t = o.removePrefix(t, m); - l = t.length; - const w = []; - const N = []; - const I = []; - let B = f; - let G; - const eos = ()=>m.index === l - 1; - const D = m.peek = (e = 1)=>t[m.index + e]; - const M = m.advance = ()=>t[++m.index] || ""; - const remaining = ()=>t.slice(m.index + 1); - const consume = (t = "", e = 0)=>{ - m.consumed += t; - m.index += e; - }; - const append = (t)=>{ - m.output += t.output != null ? t.output : t.value; - consume(t.value); - }; - const negate = ()=>{ - let t = 1; - while(D() === "!" && (D(2) !== "(" || D(3) === "?")){ - M(); - m.start++; - t++; - } - if (t % 2 === 0) { - return false; - } - m.negated = true; - m.start++; - return true; - }; - const increment = (t)=>{ - m[t]++; - I.push(t); - }; - const decrement = (t)=>{ - m[t]--; - I.pop(); - }; - const push = (t)=>{ - if (B.type === "globstar") { - const e = m.braces > 0 && (t.type === "comma" || t.type === "brace"); - const u = t.extglob === true || w.length && (t.type === "pipe" || t.type === "paren"); - if (t.type !== "slash" && t.type !== "paren" && !e && !u) { - m.output = m.output.slice(0, -B.output.length); - B.type = "star"; - B.value = "*"; - B.output = k; - m.output += B.output; - } - } - if (w.length && t.type !== "paren") { - w[w.length - 1].inner += t.value; - } - if (t.value || t.output) append(t); - if (B && B.type === "text" && t.type === "text") { - B.output = (B.output || B.value) + t.value; - B.value += t.value; - return; - } - t.prev = B; - A.push(t); - B = t; - }; - const extglobOpen = (t, e)=>{ - const n = { - ...E[e], - conditions: 1, - inner: "" - }; - n.prev = B; - n.parens = m.parens; - n.output = m.output; - const o = (u.capture ? "(" : "") + n.open; - increment("parens"); - push({ - type: t, - value: e, - output: m.output ? "" : C - }); - push({ - type: "paren", - extglob: true, - value: M(), - output: o - }); - w.push(n); - }; - const extglobClose = (t)=>{ - let n = t.close + (u.capture ? ")" : ""); - let o; - if (t.type === "negate") { - let s = k; - if (t.inner && t.inner.length > 1 && t.inner.includes("/")) { - s = globstar(u); - } - if (s !== k || eos() || /^\)+$/.test(remaining())) { - n = t.close = `)$))${s}`; - } - if (t.inner.includes("*") && (o = remaining()) && /^\.[^\\/.]+$/.test(o)) { - const u = parse(o, { - ...e, - fastpaths: false - }).output; - n = t.close = `)${u})${s})`; - } - if (t.prev.type === "bos") { - m.negatedExtglob = true; - } - } - push({ - type: "paren", - extglob: true, - value: G, - output: n - }); - decrement("parens"); - }; - if (u.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(t)) { - let n = false; - let s = t.replace(i, (t, e, u, o, s, r)=>{ - if (o === "\\") { - n = true; - return t; - } - if (o === "?") { - if (e) { - return e + o + (s ? H.repeat(s.length) : ""); - } - if (r === 0) { - return O + (s ? H.repeat(s.length) : ""); - } - return H.repeat(u.length); - } - if (o === ".") { - return h.repeat(u.length); - } - if (o === "*") { - if (e) { - return e + o + (s ? k : ""); - } - return k; - } - return e ? t : `\\${t}`; - }); - if (n === true) { - if (u.unescape === true) { - s = s.replace(/\\/g, ""); - } else { - s = s.replace(/\\+/g, (t)=>t.length % 2 === 0 ? "\\\\" : t ? "\\" : ""); - } - } - if (s === t && u.contains === true) { - m.output = t; - return m; - } - m.output = o.wrapOutput(s, m, e); - return m; - } - while(!eos()){ - G = M(); - if (G === "\0") { - continue; - } - if (G === "\\") { - const t = D(); - if (t === "/" && u.bash !== true) { - continue; - } - if (t === "." || t === ";") { - continue; - } - if (!t) { - G += "\\"; - push({ - type: "text", - value: G - }); - continue; - } - const e = /^\\+/.exec(remaining()); - let n = 0; - if (e && e[0].length > 2) { - n = e[0].length; - m.index += n; - if (n % 2 !== 0) { - G += "\\"; - } - } - if (u.unescape === true) { - G = M(); - } else { - G += M(); - } - if (m.brackets === 0) { - push({ - type: "text", - value: G - }); - continue; - } - } - if (m.brackets > 0 && (G !== "]" || B.value === "[" || B.value === "[^")) { - if (u.posix !== false && G === ":") { - const t = B.value.slice(1); - if (t.includes("[")) { - B.posix = true; - if (t.includes(":")) { - const t = B.value.lastIndexOf("["); - const e = B.value.slice(0, t); - const u = B.value.slice(t + 2); - const n = r[u]; - if (n) { - B.value = e + n; - m.backtrack = true; - M(); - if (!f.output && A.indexOf(B) === 1) { - f.output = C; - } - continue; - } - } - } - } - if (G === "[" && D() !== ":" || G === "-" && D() === "]") { - G = `\\${G}`; - } - if (G === "]" && (B.value === "[" || B.value === "[^")) { - G = `\\${G}`; - } - if (u.posix === true && G === "!" && B.value === "[") { - G = "^"; - } - B.value += G; - append({ - value: G - }); - continue; - } - if (m.quotes === 1 && G !== '"') { - G = o.escapeRegex(G); - B.value += G; - append({ - value: G - }); - continue; - } - if (G === '"') { - m.quotes = m.quotes === 1 ? 0 : 1; - if (u.keepQuotes === true) { - push({ - type: "text", - value: G - }); - } - continue; - } - if (G === "(") { - increment("parens"); - push({ - type: "paren", - value: G - }); - continue; - } - if (G === ")") { - if (m.parens === 0 && u.strictBrackets === true) { - throw new SyntaxError(syntaxError("opening", "(")); - } - const t = w[w.length - 1]; - if (t && m.parens === t.parens + 1) { - extglobClose(w.pop()); - continue; - } - push({ - type: "paren", - value: G, - output: m.parens ? ")" : "\\)" - }); - decrement("parens"); - continue; - } - if (G === "[") { - if (u.nobracket === true || !remaining().includes("]")) { - if (u.nobracket !== true && u.strictBrackets === true) { - throw new SyntaxError(syntaxError("closing", "]")); - } - G = `\\${G}`; - } else { - increment("brackets"); - } - push({ - type: "bracket", - value: G - }); - continue; - } - if (G === "]") { - if (u.nobracket === true || B && B.type === "bracket" && B.value.length === 1) { - push({ - type: "text", - value: G, - output: `\\${G}` - }); - continue; - } - if (m.brackets === 0) { - if (u.strictBrackets === true) { - throw new SyntaxError(syntaxError("opening", "[")); - } - push({ - type: "text", - value: G, - output: `\\${G}` - }); - continue; - } - decrement("brackets"); - const t = B.value.slice(1); - if (B.posix !== true && t[0] === "^" && !t.includes("/")) { - G = `/${G}`; - } - B.value += G; - append({ - value: G - }); - if (u.literalBrackets === false || o.hasRegexChars(t)) { - continue; - } - const e = o.escapeRegex(B.value); - m.output = m.output.slice(0, -B.value.length); - if (u.literalBrackets === true) { - m.output += e; - B.value = e; - continue; - } - B.value = `(${_}${e}|${B.value})`; - m.output += B.value; - continue; - } - if (G === "{" && u.nobrace !== true) { - increment("braces"); - const t = { - type: "brace", - value: G, - output: "(", - outputIndex: m.output.length, - tokensIndex: m.tokens.length - }; - N.push(t); - push(t); - continue; - } - if (G === "}") { - const t = N[N.length - 1]; - if (u.nobrace === true || !t) { - push({ - type: "text", - value: G, - output: G - }); - continue; - } - let e = ")"; - if (t.dots === true) { - const t = A.slice(); - const n = []; - for(let e = t.length - 1; e >= 0; e--){ - A.pop(); - if (t[e].type === "brace") { - break; - } - if (t[e].type !== "dots") { - n.unshift(t[e].value); - } - } - e = expandRange(n, u); - m.backtrack = true; - } - if (t.comma !== true && t.dots !== true) { - const u = m.output.slice(0, t.outputIndex); - const n = m.tokens.slice(t.tokensIndex); - t.value = t.output = "\\{"; - G = e = "\\}"; - m.output = u; - for (const t of n){ - m.output += t.output || t.value; - } - } - push({ - type: "brace", - value: G, - output: e - }); - decrement("braces"); - N.pop(); - continue; - } - if (G === "|") { - if (w.length > 0) { - w[w.length - 1].conditions++; - } - push({ - type: "text", - value: G - }); - continue; - } - if (G === ",") { - let t = G; - const e = N[N.length - 1]; - if (e && I[I.length - 1] === "braces") { - e.comma = true; - t = "|"; - } - push({ - type: "comma", - value: G, - output: t - }); - continue; - } - if (G === "/") { - if (B.type === "dot" && m.index === m.start + 1) { - m.start = m.index + 1; - m.consumed = ""; - m.output = ""; - A.pop(); - B = f; - continue; - } - push({ - type: "slash", - value: G, - output: b - }); - continue; - } - if (G === ".") { - if (m.braces > 0 && B.type === "dot") { - if (B.value === ".") B.output = h; - const t = N[N.length - 1]; - B.type = "dots"; - B.output += G; - B.value += G; - t.dots = true; - continue; - } - if (m.braces + m.parens === 0 && B.type !== "bos" && B.type !== "slash") { - push({ - type: "text", - value: G, - output: h - }); - continue; - } - push({ - type: "dot", - value: G, - output: h - }); - continue; - } - if (G === "?") { - const t = B && B.value === "("; - if (!t && u.noextglob !== true && D() === "(" && D(2) !== "?") { - extglobOpen("qmark", G); - continue; - } - if (B && B.type === "paren") { - const t = D(); - let e = G; - if (B.value === "(" && !/[!=<:]/.test(t) || t === "<" && !/<([!=]|\w+>)/.test(remaining())) { - e = `\\${G}`; - } - push({ - type: "text", - value: G, - output: e - }); - continue; - } - if (u.dot !== true && (B.type === "slash" || B.type === "bos")) { - push({ - type: "qmark", - value: G, - output: v - }); - continue; - } - push({ - type: "qmark", - value: G, - output: H - }); - continue; - } - if (G === "!") { - if (u.noextglob !== true && D() === "(") { - if (D(2) !== "?" || !/[!=<:]/.test(D(3))) { - extglobOpen("negate", G); - continue; - } - } - if (u.nonegate !== true && m.index === 0) { - negate(); - continue; - } - } - if (G === "+") { - if (u.noextglob !== true && D() === "(" && D(2) !== "?") { - extglobOpen("plus", G); - continue; - } - if (B && B.value === "(" || u.regex === false) { - push({ - type: "plus", - value: G, - output: g - }); - continue; - } - if (B && (B.type === "bracket" || B.type === "paren" || B.type === "brace") || m.parens > 0) { - push({ - type: "plus", - value: G - }); - continue; - } - push({ - type: "plus", - value: g - }); - continue; - } - if (G === "@") { - if (u.noextglob !== true && D() === "(" && D(2) !== "?") { - push({ - type: "at", - extglob: true, - value: G, - output: "" - }); - continue; - } - push({ - type: "text", - value: G - }); - continue; - } - if (G !== "*") { - if (G === "$" || G === "^") { - G = `\\${G}`; - } - const t = a.exec(remaining()); - if (t) { - G += t[0]; - m.index += t[0].length; - } - push({ - type: "text", - value: G - }); - continue; - } - if (B && (B.type === "globstar" || B.star === true)) { - B.type = "star"; - B.star = true; - B.value += G; - B.output = k; - m.backtrack = true; - m.globstar = true; - consume(G); - continue; - } - let e = remaining(); - if (u.noextglob !== true && /^\([^?]/.test(e)) { - extglobOpen("star", G); - continue; - } - if (B.type === "star") { - if (u.noglobstar === true) { - consume(G); - continue; - } - const n = B.prev; - const o = n.prev; - const s = n.type === "slash" || n.type === "bos"; - const r = o && (o.type === "star" || o.type === "globstar"); - if (u.bash === true && (!s || e[0] && e[0] !== "/")) { - push({ - type: "star", - value: G, - output: "" - }); - continue; - } - const a = m.braces > 0 && (n.type === "comma" || n.type === "brace"); - const i = w.length && (n.type === "pipe" || n.type === "paren"); - if (!s && n.type !== "paren" && !a && !i) { - push({ - type: "star", - value: G, - output: "" - }); - continue; - } - while(e.slice(0, 3) === "/**"){ - const u = t[m.index + 4]; - if (u && u !== "/") { - break; - } - e = e.slice(3); - consume("/**", 3); - } - if (n.type === "bos" && eos()) { - B.type = "globstar"; - B.value += G; - B.output = globstar(u); - m.output = B.output; - m.globstar = true; - consume(G); - continue; - } - if (n.type === "slash" && n.prev.type !== "bos" && !r && eos()) { - m.output = m.output.slice(0, -(n.output + B.output).length); - n.output = `(?:${n.output}`; - B.type = "globstar"; - B.output = globstar(u) + (u.strictSlashes ? ")" : "|$)"); - B.value += G; - m.globstar = true; - m.output += n.output + B.output; - consume(G); - continue; - } - if (n.type === "slash" && n.prev.type !== "bos" && e[0] === "/") { - const t = e[1] !== void 0 ? "|$" : ""; - m.output = m.output.slice(0, -(n.output + B.output).length); - n.output = `(?:${n.output}`; - B.type = "globstar"; - B.output = `${globstar(u)}${b}|${b}${t})`; - B.value += G; - m.output += n.output + B.output; - m.globstar = true; - consume(G + M()); - push({ - type: "slash", - value: "/", - output: "" - }); - continue; - } - if (n.type === "bos" && e[0] === "/") { - B.type = "globstar"; - B.value += G; - B.output = `(?:^|${b}|${globstar(u)}${b})`; - m.output = B.output; - m.globstar = true; - consume(G + M()); - push({ - type: "slash", - value: "/", - output: "" - }); - continue; - } - m.output = m.output.slice(0, -B.output.length); - B.type = "globstar"; - B.output = globstar(u); - B.value += G; - m.output += B.output; - m.globstar = true; - consume(G); - continue; - } - const n = { - type: "star", - value: G, - output: k - }; - if (u.bash === true) { - n.output = ".*?"; - if (B.type === "bos" || B.type === "slash") { - n.output = T + n.output; - } - push(n); - continue; - } - if (B && (B.type === "bracket" || B.type === "paren") && u.regex === true) { - n.output = G; - push(n); - continue; - } - if (m.index === m.start || B.type === "slash" || B.type === "dot") { - if (B.type === "dot") { - m.output += x; - B.output += x; - } else if (u.dot === true) { - m.output += S; - B.output += S; - } else { - m.output += T; - B.output += T; - } - if (D() !== "*") { - m.output += C; - B.output += C; - } - } - push(n); - } - while(m.brackets > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "]")); - m.output = o.escapeLast(m.output, "["); - decrement("brackets"); - } - while(m.parens > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", ")")); - m.output = o.escapeLast(m.output, "("); - decrement("parens"); - } - while(m.braces > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "}")); - m.output = o.escapeLast(m.output, "{"); - decrement("braces"); - } - if (u.strictSlashes !== true && (B.type === "star" || B.type === "bracket")) { - push({ - type: "maybe_slash", - value: "", - output: `${b}?` - }); - } - if (m.backtrack === true) { - m.output = ""; - for (const t of m.tokens){ - m.output += t.output != null ? t.output : t.value; - if (t.suffix) { - m.output += t.suffix; - } - } - } - return m; - }; - parse.fastpaths = (t, e)=>{ - const u = { - ...e - }; - const r = typeof u.maxLength === "number" ? Math.min(s, u.maxLength) : s; - const a = t.length; - if (a > r) { - throw new SyntaxError(`Input length: ${a}, exceeds maximum allowed length: ${r}`); - } - t = c[t] || t; - const { DOT_LITERAL: i, SLASH_LITERAL: p, ONE_CHAR: l, DOTS_SLASH: f, NO_DOT: A, NO_DOTS: _, NO_DOTS_SLASH: R, STAR: E, START_ANCHOR: h } = n.globChars(u.windows); - const g = u.dot ? _ : A; - const b = u.dot ? R : A; - const C = u.capture ? "" : "?:"; - const y = { - negated: false, - prefix: "" - }; - let $ = u.bash === true ? ".*?" : E; - if (u.capture) { - $ = `(${$})`; - } - const globstar = (t)=>{ - if (t.noglobstar === true) return $; - return `(${C}(?:(?!${h}${t.dot ? f : i}).)*?)`; - }; - const create = (t)=>{ - switch(t){ - case "*": - return `${g}${l}${$}`; - case ".*": - return `${i}${l}${$}`; - case "*.*": - return `${g}${$}${i}${l}${$}`; - case "*/*": - return `${g}${$}${p}${l}${b}${$}`; - case "**": - return g + globstar(u); - case "**/*": - return `(?:${g}${globstar(u)}${p})?${b}${l}${$}`; - case "**/*.*": - return `(?:${g}${globstar(u)}${p})?${b}${$}${i}${l}${$}`; - case "**/.*": - return `(?:${g}${globstar(u)}${p})?${i}${l}${$}`; - default: - { - const e = /^(.*?)\.(\w+)$/.exec(t); - if (!e) return; - const u = create(e[1]); - if (!u) return; - return u + i + e[2]; - } - } - }; - const x = o.removePrefix(t, y); - let S = create(x); - if (S && u.strictSlashes !== true) { - S += `${p}?`; - } - return S; - }; - t.exports = parse; - }, - 510: (t, e, u)=>{ - const n = u(716); - const o = u(697); - const s = u(96); - const r = u(154); - const isObject = (t)=>t && typeof t === "object" && !Array.isArray(t); - const picomatch = (t, e, u = false)=>{ - if (Array.isArray(t)) { - const n = t.map((t)=>picomatch(t, e, u)); - const arrayMatcher = (t)=>{ - for (const e of n){ - const u = e(t); - if (u) return u; - } - return false; - }; - return arrayMatcher; - } - const n = isObject(t) && t.tokens && t.input; - if (t === "" || typeof t !== "string" && !n) { - throw new TypeError("Expected pattern to be a non-empty string"); - } - const o = e || {}; - const s = o.windows; - const r = n ? picomatch.compileRe(t, e) : picomatch.makeRe(t, e, false, true); - const a = r.state; - delete r.state; - let isIgnored = ()=>false; - if (o.ignore) { - const t = { - ...e, - ignore: null, - onMatch: null, - onResult: null - }; - isIgnored = picomatch(o.ignore, t, u); - } - const matcher = (u, n = false)=>{ - const { isMatch: i, match: c, output: p } = picomatch.test(u, r, e, { - glob: t, - posix: s - }); - const l = { - glob: t, - state: a, - regex: r, - posix: s, - input: u, - output: p, - match: c, - isMatch: i - }; - if (typeof o.onResult === "function") { - o.onResult(l); - } - if (i === false) { - l.isMatch = false; - return n ? l : false; - } - if (isIgnored(u)) { - if (typeof o.onIgnore === "function") { - o.onIgnore(l); - } - l.isMatch = false; - return n ? l : false; - } - if (typeof o.onMatch === "function") { - o.onMatch(l); - } - return n ? l : true; - }; - if (u) { - matcher.state = a; - } - return matcher; - }; - picomatch.test = (t, e, u, { glob: n, posix: o } = {})=>{ - if (typeof t !== "string") { - throw new TypeError("Expected input to be a string"); - } - if (t === "") { - return { - isMatch: false, - output: "" - }; - } - const r = u || {}; - const a = r.format || (o ? s.toPosixSlashes : null); - let i = t === n; - let c = i && a ? a(t) : t; - if (i === false) { - c = a ? a(t) : t; - i = c === n; - } - if (i === false || r.capture === true) { - if (r.matchBase === true || r.basename === true) { - i = picomatch.matchBase(t, e, u, o); - } else { - i = e.exec(c); - } - } - return { - isMatch: Boolean(i), - match: i, - output: c - }; - }; - picomatch.matchBase = (t, e, u)=>{ - const n = e instanceof RegExp ? e : picomatch.makeRe(e, u); - return n.test(s.basename(t)); - }; - picomatch.isMatch = (t, e, u)=>picomatch(e, u)(t); - picomatch.parse = (t, e)=>{ - if (Array.isArray(t)) return t.map((t)=>picomatch.parse(t, e)); - return o(t, { - ...e, - fastpaths: false - }); - }; - picomatch.scan = (t, e)=>n(t, e); - picomatch.compileRe = (t, e, u = false, n = false)=>{ - if (u === true) { - return t.output; - } - const o = e || {}; - const s = o.contains ? "" : "^"; - const r = o.contains ? "" : "$"; - let a = `${s}(?:${t.output})${r}`; - if (t && t.negated === true) { - a = `^(?!${a}).*$`; - } - const i = picomatch.toRegex(a, e); - if (n === true) { - i.state = t; - } - return i; - }; - picomatch.makeRe = (t, e = {}, u = false, n = false)=>{ - if (!t || typeof t !== "string") { - throw new TypeError("Expected a non-empty string"); - } - let s = { - negated: false, - fastpaths: true - }; - if (e.fastpaths !== false && (t[0] === "." || t[0] === "*")) { - s.output = o.fastpaths(t, e); - } - if (!s.output) { - s = o(t, e); - } - return picomatch.compileRe(s, e, u, n); - }; - picomatch.toRegex = (t, e)=>{ - try { - const u = e || {}; - return new RegExp(t, u.flags || (u.nocase ? "i" : "")); - } catch (t) { - if (e && e.debug === true) throw t; - return /$^/; - } - }; - picomatch.constants = r; - t.exports = picomatch; - }, - 716: (t, e, u)=>{ - const n = u(96); - const { CHAR_ASTERISK: o, CHAR_AT: s, CHAR_BACKWARD_SLASH: r, CHAR_COMMA: a, CHAR_DOT: i, CHAR_EXCLAMATION_MARK: c, CHAR_FORWARD_SLASH: p, CHAR_LEFT_CURLY_BRACE: l, CHAR_LEFT_PARENTHESES: f, CHAR_LEFT_SQUARE_BRACKET: A, CHAR_PLUS: _, CHAR_QUESTION_MARK: R, CHAR_RIGHT_CURLY_BRACE: E, CHAR_RIGHT_PARENTHESES: h, CHAR_RIGHT_SQUARE_BRACKET: g } = u(154); - const isPathSeparator = (t)=>t === p || t === r; - const depth = (t)=>{ - if (t.isPrefix !== true) { - t.depth = t.isGlobstar ? Infinity : 1; - } - }; - const scan = (t, e)=>{ - const u = e || {}; - const b = t.length - 1; - const C = u.parts === true || u.scanToEnd === true; - const y = []; - const $ = []; - const x = []; - let S = t; - let H = -1; - let v = 0; - let d = 0; - let L = false; - let T = false; - let O = false; - let k = false; - let m = false; - let w = false; - let N = false; - let I = false; - let B = false; - let G = false; - let D = 0; - let M; - let P; - let K = { - value: "", - depth: 0, - isGlob: false - }; - const eos = ()=>H >= b; - const peek = ()=>S.charCodeAt(H + 1); - const advance = ()=>{ - M = P; - return S.charCodeAt(++H); - }; - while(H < b){ - P = advance(); - let t; - if (P === r) { - N = K.backslashes = true; - P = advance(); - if (P === l) { - w = true; - } - continue; - } - if (w === true || P === l) { - D++; - while(eos() !== true && (P = advance())){ - if (P === r) { - N = K.backslashes = true; - advance(); - continue; - } - if (P === l) { - D++; - continue; - } - if (w !== true && P === i && (P = advance()) === i) { - L = K.isBrace = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (w !== true && P === a) { - L = K.isBrace = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === E) { - D--; - if (D === 0) { - w = false; - L = K.isBrace = true; - G = true; - break; - } - } - } - if (C === true) { - continue; - } - break; - } - if (P === p) { - y.push(H); - $.push(K); - K = { - value: "", - depth: 0, - isGlob: false - }; - if (G === true) continue; - if (M === i && H === v + 1) { - v += 2; - continue; - } - d = H + 1; - continue; - } - if (u.noext !== true) { - const t = P === _ || P === s || P === o || P === R || P === c; - if (t === true && peek() === f) { - O = K.isGlob = true; - k = K.isExtglob = true; - G = true; - if (P === c && H === v) { - B = true; - } - if (C === true) { - while(eos() !== true && (P = advance())){ - if (P === r) { - N = K.backslashes = true; - P = advance(); - continue; - } - if (P === h) { - O = K.isGlob = true; - G = true; - break; - } - } - continue; - } - break; - } - } - if (P === o) { - if (M === o) m = K.isGlobstar = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === R) { - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === A) { - while(eos() !== true && (t = advance())){ - if (t === r) { - N = K.backslashes = true; - advance(); - continue; - } - if (t === g) { - T = K.isBracket = true; - O = K.isGlob = true; - G = true; - break; - } - } - if (C === true) { - continue; - } - break; - } - if (u.nonegate !== true && P === c && H === v) { - I = K.negated = true; - v++; - continue; - } - if (u.noparen !== true && P === f) { - O = K.isGlob = true; - if (C === true) { - while(eos() !== true && (P = advance())){ - if (P === f) { - N = K.backslashes = true; - P = advance(); - continue; - } - if (P === h) { - G = true; - break; - } - } - continue; - } - break; - } - if (O === true) { - G = true; - if (C === true) { - continue; - } - break; - } - } - if (u.noext === true) { - k = false; - O = false; - } - let U = S; - let X = ""; - let F = ""; - if (v > 0) { - X = S.slice(0, v); - S = S.slice(v); - d -= v; - } - if (U && O === true && d > 0) { - U = S.slice(0, d); - F = S.slice(d); - } else if (O === true) { - U = ""; - F = S; - } else { - U = S; - } - if (U && U !== "" && U !== "/" && U !== S) { - if (isPathSeparator(U.charCodeAt(U.length - 1))) { - U = U.slice(0, -1); - } - } - if (u.unescape === true) { - if (F) F = n.removeBackslashes(F); - if (U && N === true) { - U = n.removeBackslashes(U); - } - } - const Q = { - prefix: X, - input: t, - start: v, - base: U, - glob: F, - isBrace: L, - isBracket: T, - isGlob: O, - isExtglob: k, - isGlobstar: m, - negated: I, - negatedExtglob: B - }; - if (u.tokens === true) { - Q.maxDepth = 0; - if (!isPathSeparator(P)) { - $.push(K); - } - Q.tokens = $; - } - if (u.parts === true || u.tokens === true) { - let e; - for(let n = 0; n < y.length; n++){ - const o = e ? e + 1 : v; - const s = y[n]; - const r = t.slice(o, s); - if (u.tokens) { - if (n === 0 && v !== 0) { - $[n].isPrefix = true; - $[n].value = X; - } else { - $[n].value = r; - } - depth($[n]); - Q.maxDepth += $[n].depth; - } - if (n !== 0 || r !== "") { - x.push(r); - } - e = s; - } - if (e && e + 1 < t.length) { - const n = t.slice(e + 1); - x.push(n); - if (u.tokens) { - $[$.length - 1].value = n; - depth($[$.length - 1]); - Q.maxDepth += $[$.length - 1].depth; - } - } - Q.slashes = y; - Q.parts = x; - } - return Q; - }; - t.exports = scan; - }, - 96: (t, e, u)=>{ - const { REGEX_BACKSLASH: n, REGEX_REMOVE_BACKSLASH: o, REGEX_SPECIAL_CHARS: s, REGEX_SPECIAL_CHARS_GLOBAL: r } = u(154); - e.isObject = (t)=>t !== null && typeof t === "object" && !Array.isArray(t); - e.hasRegexChars = (t)=>s.test(t); - e.isRegexChar = (t)=>t.length === 1 && e.hasRegexChars(t); - e.escapeRegex = (t)=>t.replace(r, "\\$1"); - e.toPosixSlashes = (t)=>t.replace(n, "/"); - e.removeBackslashes = (t)=>t.replace(o, (t)=>t === "\\" ? "" : t); - e.escapeLast = (t, u, n)=>{ - const o = t.lastIndexOf(u, n); - if (o === -1) return t; - if (t[o - 1] === "\\") return e.escapeLast(t, u, o - 1); - return `${t.slice(0, o)}\\${t.slice(o)}`; - }; - e.removePrefix = (t, e = {})=>{ - let u = t; - if (u.startsWith("./")) { - u = u.slice(2); - e.prefix = "./"; - } - return u; - }; - e.wrapOutput = (t, e = {}, u = {})=>{ - const n = u.contains ? "" : "^"; - const o = u.contains ? "" : "$"; - let s = `${n}(?:${t})${o}`; - if (e.negated === true) { - s = `(?:^(?!${s}).*$)`; - } - return s; - }; - e.basename = (t, { windows: e } = {})=>{ - const u = t.split(e ? /[\\/]/ : "/"); - const n = u[u.length - 1]; - if (n === "") { - return u[u.length - 2]; - } - return n; - }; - } - }; - var e = {}; - function __nccwpck_require__(u) { - var n = e[u]; - if (n !== undefined) { - return n.exports; - } - var o = e[u] = { - exports: {} - }; - var s = true; - try { - t[u](o, o.exports, __nccwpck_require__); - s = false; - } finally{ - if (s) delete e[u]; - } - return o.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/picomatch") + "/"; - var u = __nccwpck_require__(170); - module.exports = u; -})(); -}), -"[project]/node_modules/next/dist/shared/lib/match-local-pattern.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - hasLocalMatch: null, - matchLocalPattern: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - hasLocalMatch: function() { - return hasLocalMatch; - }, - matchLocalPattern: function() { - return matchLocalPattern; - } -}); -const _picomatch = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/picomatch/index.js [app-rsc] (ecmascript)"); -function matchLocalPattern(pattern, url) { - if (pattern.search !== undefined) { - if (pattern.search !== url.search) { - return false; - } - } - if (!(0, _picomatch.makeRe)(pattern.pathname ?? '**', { - dot: true - }).test(url.pathname)) { - return false; - } - return true; -} -function hasLocalMatch(localPatterns, urlPathAndQuery) { - if (!localPatterns) { - // if the user didn't define "localPatterns", we allow all local images - return true; - } - const url = new URL(urlPathAndQuery, 'http://n'); - return localPatterns.some((p)=>matchLocalPattern(p, url)); -} //# sourceMappingURL=match-local-pattern.js.map -}), -"[project]/node_modules/next/dist/shared/lib/match-remote-pattern.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - hasRemoteMatch: null, - matchRemotePattern: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - hasRemoteMatch: function() { - return hasRemoteMatch; - }, - matchRemotePattern: function() { - return matchRemotePattern; - } -}); -const _picomatch = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/picomatch/index.js [app-rsc] (ecmascript)"); -function matchRemotePattern(pattern, url) { - if (pattern.protocol !== undefined) { - if (pattern.protocol.replace(/:$/, '') !== url.protocol.replace(/:$/, '')) { - return false; - } - } - if (pattern.port !== undefined) { - if (pattern.port !== url.port) { - return false; - } - } - if (pattern.hostname === undefined) { - throw Object.defineProperty(new Error(`Pattern should define hostname but found\n${JSON.stringify(pattern)}`), "__NEXT_ERROR_CODE", { - value: "E410", - enumerable: false, - configurable: true - }); - } else { - if (!(0, _picomatch.makeRe)(pattern.hostname).test(url.hostname)) { - return false; - } - } - if (pattern.search !== undefined) { - if (pattern.search !== url.search) { - return false; - } - } - // Should be the same as writeImagesManifest() - if (!(0, _picomatch.makeRe)(pattern.pathname ?? '**', { - dot: true - }).test(url.pathname)) { - return false; - } - return true; -} -function hasRemoteMatch(domains, remotePatterns, url) { - return domains.some((domain)=>url.hostname === domain) || remotePatterns.some((p)=>matchRemotePattern(p, url)); -} //# sourceMappingURL=match-remote-pattern.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-loader.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return _default; - } -}); -const _findclosestquality = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/find-closest-quality.js [app-rsc] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-rsc] (ecmascript)"); -function defaultLoader({ config, src, width, quality }) { - if (src.startsWith('/') && src.includes('?') && config.localPatterns?.length === 1 && config.localPatterns[0].pathname === '**' && config.localPatterns[0].search === '') { - throw Object.defineProperty(new Error(`Image with src "${src}" is using a query string which is not configured in images.localPatterns.` + `\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`), "__NEXT_ERROR_CODE", { - value: "E871", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - const missingValues = []; - // these should always be provided but make sure they are - if (!src) missingValues.push('src'); - if (!width) missingValues.push('width'); - if (missingValues.length > 0) { - throw Object.defineProperty(new Error(`Next Image Optimization requires ${missingValues.join(', ')} to be provided. Make sure you pass them as props to the \`next/image\` component. Received: ${JSON.stringify({ - src, - width, - quality - })}`), "__NEXT_ERROR_CODE", { - value: "E188", - enumerable: false, - configurable: true - }); - } - if (src.startsWith('//')) { - throw Object.defineProperty(new Error(`Failed to parse src "${src}" on \`next/image\`, protocol-relative URL (//) must be changed to an absolute URL (http:// or https://)`), "__NEXT_ERROR_CODE", { - value: "E360", - enumerable: false, - configurable: true - }); - } - if (src.startsWith('/') && config.localPatterns) { - if ("TURBOPACK compile-time truthy", 1) { - // We use dynamic require because this should only error in development - const { hasLocalMatch } = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/match-local-pattern.js [app-rsc] (ecmascript)"); - if (!hasLocalMatch(config.localPatterns, src)) { - throw Object.defineProperty(new Error(`Invalid src prop (${src}) on \`next/image\` does not match \`images.localPatterns\` configured in your \`next.config.js\`\n` + `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`), "__NEXT_ERROR_CODE", { - value: "E426", - enumerable: false, - configurable: true - }); - } - } - } - if (!src.startsWith('/') && (config.domains || config.remotePatterns)) { - let parsedSrc; - try { - parsedSrc = new URL(src); - } catch (err) { - console.error(err); - throw Object.defineProperty(new Error(`Failed to parse src "${src}" on \`next/image\`, if using relative image it must start with a leading slash "/" or be an absolute URL (http:// or https://)`), "__NEXT_ERROR_CODE", { - value: "E63", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - // We use dynamic require because this should only error in development - const { hasRemoteMatch } = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/match-remote-pattern.js [app-rsc] (ecmascript)"); - if (!hasRemoteMatch(config.domains, config.remotePatterns, parsedSrc)) { - throw Object.defineProperty(new Error(`Invalid src prop (${src}) on \`next/image\`, hostname "${parsedSrc.hostname}" is not configured under images in your \`next.config.js\`\n` + `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host`), "__NEXT_ERROR_CODE", { - value: "E231", - enumerable: false, - configurable: true - }); - } - } - } - } - const q = (0, _findclosestquality.findClosestQuality)(quality, config); - let deploymentId = (0, _deploymentid.getDeploymentId)(); - return `${config.path}?url=${encodeURIComponent(src)}&w=${width}&q=${q}${src.startsWith('/') && deploymentId ? `&dpl=${deploymentId}` : ''}`; -} -// We use this to determine if the import is the default loader -// or a custom loader defined by the user in next.config.js -defaultLoader.__next_img_default = true; -const _default = defaultLoader; //# sourceMappingURL=image-loader.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-external.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - default: null, - getImageProps: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - default: function() { - return _default; - }, - getImageProps: function() { - return getImageProps; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-rsc] (ecmascript)"); -const _getimgprops = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/get-img-props.js [app-rsc] (ecmascript)"); -const _imagecomponent = __turbopack_context__.r("[project]/node_modules/next/dist/client/image-component.js [app-rsc] (ecmascript)"); -const _imageloader = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-loader.js [app-rsc] (ecmascript)")); -function getImageProps(imgProps) { - const { props } = (0, _getimgprops.getImgProps)(imgProps, { - defaultLoader: _imageloader.default, - // This is replaced by webpack define plugin - imgConf: ("TURBOPACK compile-time value", { - "deviceSizes": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 640), - ("TURBOPACK compile-time value", 750), - ("TURBOPACK compile-time value", 828), - ("TURBOPACK compile-time value", 1080), - ("TURBOPACK compile-time value", 1200), - ("TURBOPACK compile-time value", 1920), - ("TURBOPACK compile-time value", 2048), - ("TURBOPACK compile-time value", 3840) - ]), - "imageSizes": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 32), - ("TURBOPACK compile-time value", 48), - ("TURBOPACK compile-time value", 64), - ("TURBOPACK compile-time value", 96), - ("TURBOPACK compile-time value", 128), - ("TURBOPACK compile-time value", 256), - ("TURBOPACK compile-time value", 384) - ]), - "qualities": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 75) - ]), - "path": ("TURBOPACK compile-time value", "/_next/image"), - "loader": ("TURBOPACK compile-time value", "default"), - "dangerouslyAllowSVG": ("TURBOPACK compile-time value", false), - "unoptimized": ("TURBOPACK compile-time value", false), - "domains": ("TURBOPACK compile-time value", []), - "remotePatterns": ("TURBOPACK compile-time value", []), - "localPatterns": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", { - "pathname": ("TURBOPACK compile-time value", "**"), - "search": ("TURBOPACK compile-time value", "") - }) - ]) - }) - }); - // Normally we don't care about undefined props because we pass to JSX, - // but this exported function could be used by the end user for anything - // so we delete undefined props to clean it up a little. - for (const [key, value] of Object.entries(props)){ - if (value === undefined) { - delete props[key]; - } - } - return { - props - }; -} -const _default = _imagecomponent.Image; //# sourceMappingURL=image-external.js.map -}), -"[project]/node_modules/next/image.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-external.js [app-rsc] (ecmascript)"); -}), -"[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/page { GLOBAL_ERROR_MODULE => \"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)\", METADATA_0 => \"[project]/src/app/favicon.ico.mjs { IMAGE => \\\"[project]/src/app/favicon.ico (static in ecmascript, tag client)\\\" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)\", MODULE_1 => \"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_2 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_3 => \"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_4 => \"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_5 => \"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_6 => \"[project]/src/app/page.tsx [app-rsc] (ecmascript, Next.js Server Component)\" } [app-rsc] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "__next_app__", - ()=>__next_app__, - "handler", - ()=>handler, - "routeModule", - ()=>routeModule -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$lib$2f$metadata$2f$get$2d$metadata$2d$route$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/lib/metadata/get-metadata-route.js [app-rsc] (ecmascript, Next.js server utility)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29$__ = __turbopack_context__.i('[project]/src/app/favicon.ico.mjs { IMAGE => "[project]/src/app/favicon.ico (static in ecmascript, tag client)" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)'); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$module$2e$compiled$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript, Next.js server utility)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$instrumentation$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/instrumentation/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request-meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$interop$2d$default$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/interop-default.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$strip$2d$flight$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/strip-flight-headers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/base-http/node.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$experimental$2f$ppr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/experimental/ppr.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/fallback-params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$manifests$2d$singleton$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/manifests-singleton.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$streaming$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/streaming-metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$server$2d$action$2d$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/server-action-request-meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-rsc] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/index.js [app-rsc] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/fallback.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/render-result.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/encoded-tags.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/send-payload.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/shared/lib/no-fallback-error.external.js [external] (next/dist/shared/lib/no-fallback-error.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$size$2d$limit$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/size-limit.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -; -; -const __TURBOPACK__layout__$23$1__ = ()=>__turbopack_context__.r("[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__not$2d$found__$23$2__ = ()=>__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__forbidden__$23$3__ = ()=>__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__unauthorized__$23$4__ = ()=>__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__global$2d$error__$23$5__ = ()=>__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__page__$23$6__ = ()=>__turbopack_context__.r("[project]/src/app/page.tsx [app-rsc] (ecmascript, Next.js Server Component)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -// We inject the tree and pages here so that we can use them in the route -// module. -const tree = [ - "", - { - "children": [ - "__PAGE__", - {}, - { - metadata: {}, - "page": [ - __TURBOPACK__page__$23$6__, - "[project]/src/app/page.tsx" - ] - } - ] - }, - { - metadata: { - icon: [ - async (props)=>[ - { - url: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$lib$2f$metadata$2f$get$2d$metadata$2d$route$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["fillMetadataSegment"])("//", await props.params, "favicon.ico") + `?${__TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29$__["default"].src.split("/").splice(-1)[0]}`, - sizes: `${__TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29$__["default"].width}x${__TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29$__["default"].height}`, - type: `image/x-icon` - } - ] - ] - }, - "layout": [ - __TURBOPACK__layout__$23$1__, - "[project]/src/app/layout.tsx" - ], - "not-found": [ - __TURBOPACK__not$2d$found__$23$2__, - "[project]/node_modules/next/dist/client/components/builtin/not-found.js" - ], - "forbidden": [ - __TURBOPACK__forbidden__$23$3__, - "[project]/node_modules/next/dist/client/components/builtin/forbidden.js" - ], - "unauthorized": [ - __TURBOPACK__unauthorized__$23$4__, - "[project]/node_modules/next/dist/client/components/builtin/unauthorized.js" - ], - "global-error": [ - __TURBOPACK__global$2d$error__$23$5__, - "[project]/node_modules/next/dist/client/components/builtin/global-error.js" - ] - } -]; -; -; -const __next_app_require__ = __turbopack_context__.r.bind(__turbopack_context__); -const __next_app_load_chunk__ = __turbopack_context__.l.bind(__turbopack_context__); -const __next_app__ = { - require: __next_app_require__, - loadChunk: __next_app_load_chunk__ -}; -; -; -; -; -; -; -const routeModule = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$module$2e$compiled$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["AppPageRouteModule"]({ - definition: { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RouteKind"].APP_PAGE, - page: "/page", - pathname: "/", - // The following aren't used in production. - bundlePath: '', - filename: '', - appPaths: [] - }, - userland: { - loaderTree: tree - }, - distDir: ("TURBOPACK compile-time value", ".next/dev") || '', - relativeProjectDir: ("TURBOPACK compile-time value", "") || '' -}); -async function handler(req, res, ctx) { - var _this; - if (routeModule.isDev) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addRequestMeta"])(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint()); - } - const isMinimalMode = Boolean(("TURBOPACK compile-time value", false) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'minimalMode')); - let srcPage = "/page"; - // turbopack doesn't normalize `/index` in the page name - // so we need to to process dynamic routes properly - // TODO: fix turbopack providing differing value from webpack - if ("TURBOPACK compile-time truthy", 1) { - srcPage = srcPage.replace(/\/index$/, '') || '/'; - } else if (srcPage === '/index') { - // we always normalize /index specifically - srcPage = '/'; - } - const multiZoneDraftMode = ("TURBOPACK compile-time value", false); - const prepareResult = await routeModule.prepare(req, res, { - srcPage, - multiZoneDraftMode - }); - if (!prepareResult) { - res.statusCode = 400; - res.end('Bad Request'); - ctx.waitUntil == null ? void 0 : ctx.waitUntil.call(ctx, Promise.resolve()); - return null; - } - const { buildId, query, params, pageIsDynamic, buildManifest, nextFontManifest, reactLoadableManifest, serverActionsManifest, clientReferenceManifest, subresourceIntegrityManifest, prerenderManifest, isDraftMode, resolvedPathname, revalidateOnlyGenerated, routerServerContext, nextConfig, parsedUrl, interceptionRoutePatterns, deploymentId } = prepareResult; - const normalizedSrcPage = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])(srcPage); - let { isOnDemandRevalidate } = prepareResult; - // We use the resolvedPathname instead of the parsedUrl.pathname because it - // is not rewritten as resolvedPathname is. This will ensure that the correct - // prerender info is used instead of using the original pathname as the - // source. If however PPR is enabled and cacheComponents is disabled, we - // treat the pathname as dynamic. Currently, there's a bug in the PPR - // implementation that incorrectly leaves %%drp placeholders in the output of - // parallel routes. This is addressed with cacheComponents. - const prerenderInfo = nextConfig.experimental.ppr && !nextConfig.cacheComponents && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isInterceptionRouteAppPath"])(resolvedPathname) ? null : routeModule.match(resolvedPathname, prerenderManifest); - const isPrerendered = !!prerenderManifest.routes[resolvedPathname]; - const userAgent = req.headers['user-agent'] || ''; - const botType = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["getBotType"])(userAgent); - const isHtmlBot = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$streaming$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isHtmlBotRequest"])(req); - /** - * If true, this indicates that the request being made is for an app - * prefetch request. - */ const isPrefetchRSCRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'isPrefetchRSCRequest') ?? req.headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]] === '1' // exclude runtime prefetches, which use '2' - ; - // NOTE: Don't delete headers[RSC] yet, it still needs to be used in renderToHTML later - const isRSCRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'isRSCRequest') ?? Boolean(req.headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_HEADER"]]); - const isPossibleServerAction = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$server$2d$action$2d$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getIsPossibleServerAction"])(req); - /** - * If the route being rendered is an app page, and the ppr feature has been - * enabled, then the given route _could_ support PPR. - */ const couldSupportPPR = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$experimental$2f$ppr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["checkIsAppPPREnabled"])(nextConfig.experimental.ppr); - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'postponed') && couldSupportPPR && req.headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_RESUME_HEADER"]] === '1' && req.method === 'POST') { - // Decode the postponed state from the request body, it will come as - // an array of buffers, so collect them and then concat them to form - // the string. - const body = []; - for await (const chunk of req){ - body.push(chunk); - } - const postponed = Buffer.concat(body).toString('utf8'); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addRequestMeta"])(req, 'postponed', postponed); - } - // When enabled, this will allow the use of the `?__nextppronly` query to - // enable debugging of the static shell. - const hasDebugStaticShellQuery = ("TURBOPACK compile-time value", false) === '1' && typeof query.__nextppronly !== 'undefined' && couldSupportPPR; - // When enabled, this will allow the use of the `?__nextppronly` query - // to enable debugging of the fallback shell. - const hasDebugFallbackShellQuery = hasDebugStaticShellQuery && query.__nextppronly === 'fallback'; - // This page supports PPR if it is marked as being `PARTIALLY_STATIC` in the - // prerender manifest and this is an app page. - const isRoutePPREnabled = couldSupportPPR && (((_this = prerenderManifest.routes[normalizedSrcPage] ?? prerenderManifest.dynamicRoutes[normalizedSrcPage]) == null ? void 0 : _this.renderingMode) === 'PARTIALLY_STATIC' || // Ideally we'd want to check the appConfig to see if this page has PPR - // enabled or not, but that would require plumbing the appConfig through - // to the server during development. We assume that the page supports it - // but only during development. - hasDebugStaticShellQuery && (routeModule.isDev === true || (routerServerContext == null ? void 0 : routerServerContext.experimentalTestProxy) === true)); - const isDebugStaticShell = hasDebugStaticShellQuery && isRoutePPREnabled; - // We should enable debugging dynamic accesses when the static shell - // debugging has been enabled and we're also in development mode. - const isDebugDynamicAccesses = isDebugStaticShell && routeModule.isDev === true; - const isDebugFallbackShell = hasDebugFallbackShellQuery && isRoutePPREnabled; - // If we're in minimal mode, then try to get the postponed information from - // the request metadata. If available, use it for resuming the postponed - // render. - const minimalPostponed = isRoutePPREnabled ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'postponed') : undefined; - // If PPR is enabled, and this is a RSC request (but not a prefetch), then - // we can use this fact to only generate the flight data for the request - // because we can't cache the HTML (as it's also dynamic). - let isDynamicRSCRequest = isRoutePPREnabled && isRSCRequest && !isPrefetchRSCRequest; - // During a PPR revalidation, the RSC request is not dynamic if we do not have the postponed data. - // We only attach the postponed data during a resume. If there's no postponed data, then it must be a revalidation. - // This is to ensure that we don't bypass the cache during a revalidation. - if (isMinimalMode) { - isDynamicRSCRequest = isDynamicRSCRequest && !!minimalPostponed; - } - // Need to read this before it's stripped by stripFlightHeaders. We don't - // need to transfer it to the request meta because it's only read - // within this function; the static segment data should have already been - // generated, so we will always either return a static response or a 404. - const segmentPrefetchHeader = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'segmentPrefetchRSCRequest'); - // TODO: investigate existing bug with shouldServeStreamingMetadata always - // being true for a revalidate due to modifying the base-server this.renderOpts - // when fixing this to correct logic it causes hydration issue since we set - // serveStreamingMetadata to true during export - const serveStreamingMetadata = isHtmlBot && isRoutePPREnabled ? false : !userAgent ? true : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$streaming$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["shouldServeStreamingMetadata"])(userAgent, nextConfig.htmlLimitedBots); - const isSSG = Boolean((prerenderInfo || isPrerendered || prerenderManifest.routes[normalizedSrcPage]) && // If this is a html bot request and PPR is enabled, then we don't want - // to serve a static response. - !(isHtmlBot && isRoutePPREnabled)); - // When a page supports cacheComponents, we can support RDC for Navigations - const supportsRDCForNavigations = isRoutePPREnabled && nextConfig.cacheComponents === true; - // In development, we always want to generate dynamic HTML. - const supportsDynamicResponse = // a data request, in which case we only produce static HTML. - routeModule.isDev === true || // If this is not SSG or does not have static paths, then it supports - // dynamic HTML. - !isSSG || // If this request has provided postponed data, it supports dynamic - // HTML. - typeof minimalPostponed === 'string' || // If this handler supports onCacheEntryV2, then we can only support - // dynamic responses if it's a dynamic RSC request and not in minimal mode. If it - // doesn't support it we must fallback to the default behavior. - (supportsRDCForNavigations && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'onCacheEntryV2') ? // RSC request, we'll pass the minimal postponed data to the render - // which will trigger the `supportsDynamicResponse` to be true. - isDynamicRSCRequest && !isMinimalMode : isDynamicRSCRequest); - // When html bots request PPR page, perform the full dynamic rendering. - const shouldWaitOnAllReady = isHtmlBot && isRoutePPREnabled; - let ssgCacheKey = null; - if (!isDraftMode && isSSG && !supportsDynamicResponse && !isPossibleServerAction && !minimalPostponed && !isDynamicRSCRequest) { - ssgCacheKey = resolvedPathname; - } - // the staticPathKey differs from ssgCacheKey since - // ssgCacheKey is null in dev since we're always in "dynamic" - // mode in dev to bypass the cache, but we still need to honor - // dynamicParams = false in dev mode - let staticPathKey = ssgCacheKey; - if (!staticPathKey && routeModule.isDev) { - staticPathKey = resolvedPathname; - } - // If this is a request for an app path that should be statically generated - // and we aren't in the edge runtime, strip the flight headers so it will - // generate the static response. - if (!routeModule.isDev && !isDraftMode && isSSG && isRSCRequest && !isDynamicRSCRequest) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$strip$2d$flight$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["stripFlightHeaders"])(req.headers); - } - const ComponentMod = { - ...__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__, - tree, - GlobalError: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29$__["default"], - handler, - routeModule, - __next_app__ - }; - // Before rendering (which initializes component tree modules), we have to - // set the reference manifests to our global store so Server Action's - // encryption util can access to them at the top level of the page module. - if (serverActionsManifest && clientReferenceManifest) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$manifests$2d$singleton$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["setManifestsSingleton"])({ - page: srcPage, - clientReferenceManifest, - serverActionsManifest - }); - } - const method = req.method || 'GET'; - const tracer = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])(); - const activeSpan = tracer.getActiveScopeSpan(); - const render404 = async ()=>{ - // TODO: should route-module itself handle rendering the 404 - if (routerServerContext == null ? void 0 : routerServerContext.render404) { - await routerServerContext.render404(req, res, parsedUrl, false); - } else { - res.end('This page could not be found'); - } - return null; - }; - try { - const varyHeader = routeModule.getVaryHeader(resolvedPathname, interceptionRoutePatterns); - res.setHeader('Vary', varyHeader); - const invokeRouteModule = async (span, context)=>{ - const nextReq = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NodeNextRequest"](req); - const nextRes = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NodeNextResponse"](res); - return routeModule.render(nextReq, nextRes, context).finally(()=>{ - if (!span) return; - span.setAttributes({ - 'http.status_code': res.statusCode, - 'next.rsc': false - }); - const rootSpanAttributes = tracer.getRootSpanAttributes(); - // We were unable to get attributes, probably OTEL is not enabled - if (!rootSpanAttributes) { - return; - } - if (rootSpanAttributes.get('next.span_type') !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BaseServerSpan"].handleRequest) { - console.warn(`Unexpected root span type '${rootSpanAttributes.get('next.span_type')}'. Please report this Next.js issue https://github.com/vercel/next.js`); - return; - } - const route = rootSpanAttributes.get('next.route'); - if (route) { - const name = `${method} ${route}`; - span.setAttributes({ - 'next.route': route, - 'http.route': route, - 'next.span_name': name - }); - span.updateName(name); - } else { - span.updateName(`${method} ${srcPage}`); - } - }); - }; - const incrementalCache = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'incrementalCache'); - const doRender = async ({ span, postponed, fallbackRouteParams, forceStaticRender })=>{ - const context = { - query, - params, - page: normalizedSrcPage, - sharedContext: { - buildId - }, - serverComponentsHmrCache: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'serverComponentsHmrCache'), - fallbackRouteParams, - renderOpts: { - App: ()=>null, - Document: ()=>null, - pageConfig: {}, - ComponentMod, - Component: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$interop$2d$default$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["interopDefault"])(ComponentMod), - params, - routeModule, - page: srcPage, - postponed, - shouldWaitOnAllReady, - serveStreamingMetadata, - supportsDynamicResponse: typeof postponed === 'string' || supportsDynamicResponse, - buildManifest, - nextFontManifest, - reactLoadableManifest, - subresourceIntegrityManifest, - setCacheStatus: routerServerContext == null ? void 0 : routerServerContext.setCacheStatus, - setIsrStatus: routerServerContext == null ? void 0 : routerServerContext.setIsrStatus, - setReactDebugChannel: routerServerContext == null ? void 0 : routerServerContext.setReactDebugChannel, - sendErrorsToBrowser: routerServerContext == null ? void 0 : routerServerContext.sendErrorsToBrowser, - dir: ("TURBOPACK compile-time truthy", 1) ? require('path').join(/* turbopackIgnore: true */ process.cwd(), routeModule.relativeProjectDir) : "TURBOPACK unreachable", - isDraftMode, - botType, - isOnDemandRevalidate, - isPossibleServerAction, - assetPrefix: nextConfig.assetPrefix, - nextConfigOutput: nextConfig.output, - crossOrigin: nextConfig.crossOrigin, - trailingSlash: nextConfig.trailingSlash, - images: nextConfig.images, - previewProps: prerenderManifest.preview, - deploymentId: deploymentId, - enableTainting: nextConfig.experimental.taint, - htmlLimitedBots: nextConfig.htmlLimitedBots, - reactMaxHeadersLength: nextConfig.reactMaxHeadersLength, - multiZoneDraftMode, - incrementalCache, - cacheLifeProfiles: nextConfig.cacheLife, - basePath: nextConfig.basePath, - serverActions: nextConfig.experimental.serverActions, - ...isDebugStaticShell || isDebugDynamicAccesses || isDebugFallbackShell ? { - nextExport: true, - supportsDynamicResponse: false, - isStaticGeneration: true, - isDebugDynamicAccesses: isDebugDynamicAccesses - } : {}, - cacheComponents: Boolean(nextConfig.cacheComponents), - experimental: { - isRoutePPREnabled, - expireTime: nextConfig.expireTime, - staleTimes: nextConfig.experimental.staleTimes, - dynamicOnHover: Boolean(nextConfig.experimental.dynamicOnHover), - inlineCss: Boolean(nextConfig.experimental.inlineCss), - authInterrupts: Boolean(nextConfig.experimental.authInterrupts), - clientTraceMetadata: nextConfig.experimental.clientTraceMetadata || [], - clientParamParsingOrigins: nextConfig.experimental.clientParamParsingOrigins, - maxPostponedStateSizeBytes: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$size$2d$limit$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseMaxPostponedStateSize"])(nextConfig.experimental.maxPostponedStateSize) - }, - waitUntil: ctx.waitUntil, - onClose: (cb)=>{ - res.on('close', cb); - }, - onAfterTaskError: ()=>{}, - onInstrumentationRequestError: (error, _request, errorContext, silenceLog)=>routeModule.onRequestError(req, error, errorContext, silenceLog, routerServerContext), - err: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'invokeError'), - dev: routeModule.isDev - } - }; - if (isDebugStaticShell || isDebugDynamicAccesses) { - context.renderOpts.nextExport = true; - context.renderOpts.supportsDynamicResponse = false; - context.renderOpts.isDebugDynamicAccesses = isDebugDynamicAccesses; - } - // When we're revalidating in the background, we should not allow dynamic - // responses. - if (forceStaticRender) { - context.renderOpts.supportsDynamicResponse = false; - } - const result = await invokeRouteModule(span, context); - const { metadata } = result; - const { cacheControl, headers = {}, fetchTags: cacheTags, fetchMetrics } = metadata; - if (cacheTags) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"]] = cacheTags; - } - // Pull any fetch metrics from the render onto the request. - ; - req.fetchMetrics = fetchMetrics; - // we don't throw static to dynamic errors in dev as isSSG - // is a best guess in dev since we don't have the prerender pass - // to know whether the path is actually static or not - if (isSSG && (cacheControl == null ? void 0 : cacheControl.revalidate) === 0 && !routeModule.isDev && !isRoutePPREnabled) { - const staticBailoutInfo = metadata.staticBailoutInfo; - const err = Object.defineProperty(new Error(`Page changed from static to dynamic at runtime ${resolvedPathname}${(staticBailoutInfo == null ? void 0 : staticBailoutInfo.description) ? `, reason: ${staticBailoutInfo.description}` : ``}` + `\nsee more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`), "__NEXT_ERROR_CODE", { - value: "E132", - enumerable: false, - configurable: true - }); - if (staticBailoutInfo == null ? void 0 : staticBailoutInfo.stack) { - const stack = staticBailoutInfo.stack; - err.stack = err.message + stack.substring(stack.indexOf('\n')); - } - throw err; - } - return { - value: { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE, - html: result, - headers, - rscData: metadata.flightData, - postponed: metadata.postponed, - status: metadata.statusCode, - segmentData: metadata.segmentData - }, - cacheControl - }; - }; - const responseGenerator = async ({ hasResolved, previousCacheEntry: previousIncrementalCacheEntry, isRevalidating, span, forceStaticRender = false })=>{ - const isProduction = routeModule.isDev === false; - const didRespond = hasResolved || res.writableEnded; - // skip on-demand revalidate if cache is not present and - // revalidate-if-generated is set - if (isOnDemandRevalidate && revalidateOnlyGenerated && !previousIncrementalCacheEntry && !isMinimalMode) { - if (routerServerContext == null ? void 0 : routerServerContext.render404) { - await routerServerContext.render404(req, res); - } else { - res.statusCode = 404; - res.end('This page could not be found'); - } - return null; - } - let fallbackMode; - if (prerenderInfo) { - fallbackMode = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseFallbackField"])(prerenderInfo.fallback); - } - // When serving a HTML bot request, we want to serve a blocking render and - // not the prerendered page. This ensures that the correct content is served - // to the bot in the head. - if (fallbackMode === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].PRERENDER && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["isBot"])(userAgent)) { - if (!isRoutePPREnabled || isHtmlBot) { - fallbackMode = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].BLOCKING_STATIC_RENDER; - } - } - if ((previousIncrementalCacheEntry == null ? void 0 : previousIncrementalCacheEntry.isStale) === -1) { - isOnDemandRevalidate = true; - } - // TODO: adapt for PPR - // only allow on-demand revalidate for fallback: true/blocking - // or for prerendered fallback: false paths - if (isOnDemandRevalidate && (fallbackMode !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].NOT_FOUND || previousIncrementalCacheEntry)) { - fallbackMode = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].BLOCKING_STATIC_RENDER; - } - if (!isMinimalMode && fallbackMode !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].BLOCKING_STATIC_RENDER && staticPathKey && !didRespond && !isDraftMode && pageIsDynamic && (isProduction || !isPrerendered)) { - // if the page has dynamicParams: false and this pathname wasn't - // prerendered trigger the no fallback handling - if (// getStaticPaths. - (isProduction || prerenderInfo) && // When fallback isn't present, abort this render so we 404 - fallbackMode === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].NOT_FOUND) { - if (nextConfig.experimental.adapterPath) { - return await render404(); - } - throw new __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js$2c$__cjs$29$__["NoFallbackError"](); - } - // When cacheComponents is enabled, we can use the fallback - // response if the request is not a dynamic RSC request because the - // RSC data when this feature flag is enabled does not contain any - // param references. Without this feature flag enabled, the RSC data - // contains param references, and therefore we can't use the fallback. - if (isRoutePPREnabled && (nextConfig.cacheComponents ? !isDynamicRSCRequest : !isRSCRequest)) { - const cacheKey = isProduction && typeof (prerenderInfo == null ? void 0 : prerenderInfo.fallback) === 'string' ? prerenderInfo.fallback : normalizedSrcPage; - const fallbackRouteParams = // can use the manifest fallback route params. - isProduction && (prerenderInfo == null ? void 0 : prerenderInfo.fallbackRouteParams) ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createOpaqueFallbackRouteParams"])(prerenderInfo.fallbackRouteParams) : isDebugFallbackShell ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getFallbackRouteParams"])(normalizedSrcPage, routeModule) : null; - // We use the response cache here to handle the revalidation and - // management of the fallback shell. - const fallbackResponse = await routeModule.handleResponse({ - cacheKey, - req, - nextConfig, - routeKind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RouteKind"].APP_PAGE, - isFallback: true, - prerenderManifest, - isRoutePPREnabled, - responseGenerator: async ()=>doRender({ - span, - // We pass `undefined` as rendering a fallback isn't resumed - // here. - postponed: undefined, - fallbackRouteParams, - forceStaticRender: false - }), - waitUntil: ctx.waitUntil, - isMinimalMode - }); - // If the fallback response was set to null, then we should return null. - if (fallbackResponse === null) return null; - // Otherwise, if we did get a fallback response, we should return it. - if (fallbackResponse) { - // Remove the cache control from the response to prevent it from being - // used in the surrounding cache. - delete fallbackResponse.cacheControl; - return fallbackResponse; - } - } - } - // Only requests that aren't revalidating can be resumed. If we have the - // minimal postponed data, then we should resume the render with it. - let postponed = !isOnDemandRevalidate && !isRevalidating && minimalPostponed ? minimalPostponed : undefined; - // If this is a dynamic RSC request, we should use the postponed data from - // the static render (if available). This ensures that we can utilize the - // resume data cache (RDC) from the static render to ensure that the data - // is consistent between the static and dynamic renders. - if (supportsRDCForNavigations && ("TURBOPACK compile-time value", "nodejs") !== 'edge' && !isMinimalMode && incrementalCache && isDynamicRSCRequest && // We don't typically trigger an on-demand revalidation for dynamic RSC - // requests, as we're typically revalidating the page in the background - // instead. However, if the cache entry is stale, we should trigger a - // background revalidation on dynamic RSC requests. This prevents us - // from entering an infinite loop of revalidations. - !forceStaticRender) { - const incrementalCacheEntry = await incrementalCache.get(resolvedPathname, { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].APP_PAGE, - isRoutePPREnabled: true, - isFallback: false - }); - // If the cache entry is found, we should use the postponed data from - // the cache. - if (incrementalCacheEntry && incrementalCacheEntry.value && incrementalCacheEntry.value.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE) { - // CRITICAL: we're assigning the postponed data from the cache entry - // here as we're using the RDC to resume the render. - postponed = incrementalCacheEntry.value.postponed; - // If the cache entry is stale, we should trigger a background - // revalidation so that subsequent requests will get a fresh response. - if (incrementalCacheEntry && // We want to trigger this flow if the cache entry is stale and if - // the requested revalidation flow is either foreground or - // background. - (incrementalCacheEntry.isStale === -1 || incrementalCacheEntry.isStale === true)) { - // We want to schedule this on the next tick to ensure that the - // render is not blocked on it. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(async ()=>{ - const responseCache = routeModule.getResponseCache(req); - try { - await responseCache.revalidate(resolvedPathname, incrementalCache, isRoutePPREnabled, false, (c)=>responseGenerator({ - ...c, - // CRITICAL: we need to set this to true as we're - // revalidating in the background and typically this dynamic - // RSC request is not treated as static. - forceStaticRender: true - }), // previous cache entry here (which is stale) will switch on - // isOnDemandRevalidate and break the prerendering. - null, hasResolved, ctx.waitUntil); - } catch (err) { - console.error('Error revalidating the page in the background', err); - } - }); - } - } - } - // When we're in minimal mode, if we're trying to debug the static shell, - // we should just return nothing instead of resuming the dynamic render. - if ((isDebugStaticShell || isDebugDynamicAccesses) && typeof postponed !== 'undefined') { - return { - cacheControl: { - revalidate: 1, - expire: undefined - }, - value: { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES, - html: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].EMPTY, - pageData: {}, - headers: undefined, - status: undefined - } - }; - } - const fallbackRouteParams = // can use the manifest fallback route params if we need to render the - // fallback shell. - isProduction && (prerenderInfo == null ? void 0 : prerenderInfo.fallbackRouteParams) && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'renderFallbackShell') ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createOpaqueFallbackRouteParams"])(prerenderInfo.fallbackRouteParams) : isDebugFallbackShell ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getFallbackRouteParams"])(normalizedSrcPage, routeModule) : null; - // Perform the render. - return doRender({ - span, - postponed, - fallbackRouteParams, - forceStaticRender - }); - }; - const handleResponse = async (span)=>{ - var _cacheEntry_value, _cachedData_headers; - const cacheEntry = await routeModule.handleResponse({ - cacheKey: ssgCacheKey, - responseGenerator: (c)=>responseGenerator({ - span, - ...c - }), - routeKind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RouteKind"].APP_PAGE, - isOnDemandRevalidate, - isRoutePPREnabled, - req, - nextConfig, - prerenderManifest, - waitUntil: ctx.waitUntil, - isMinimalMode - }); - if (isDraftMode) { - res.setHeader('Cache-Control', 'private, no-cache, no-store, max-age=0, must-revalidate'); - } - // In dev, we should not cache pages for any reason. - if (routeModule.isDev) { - res.setHeader('Cache-Control', 'no-store, must-revalidate'); - } - if (!cacheEntry) { - if (ssgCacheKey) { - // A cache entry might not be generated if a response is written - // in `getInitialProps` or `getServerSideProps`, but those shouldn't - // have a cache key. If we do have a cache key but we don't end up - // with a cache entry, then either Next.js or the application has a - // bug that needs fixing. - throw Object.defineProperty(new Error('invariant: cache entry required but not generated'), "__NEXT_ERROR_CODE", { - value: "E62", - enumerable: false, - configurable: true - }); - } - return null; - } - if (((_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE) { - var _cacheEntry_value1; - throw Object.defineProperty(new Error(`Invariant app-page handler received invalid cache entry ${(_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind}`), "__NEXT_ERROR_CODE", { - value: "E707", - enumerable: false, - configurable: true - }); - } - const didPostpone = typeof cacheEntry.value.postponed === 'string'; - if (isSSG && // We don't want to send a cache header for requests that contain dynamic - // data. If this is a Dynamic RSC request or wasn't a Prefetch RSC - // request, then we should set the cache header. - !isDynamicRSCRequest && (!didPostpone || isPrefetchRSCRequest)) { - if (!isMinimalMode) { - // set x-nextjs-cache header to match the header - // we set for the image-optimizer - res.setHeader('x-nextjs-cache', isOnDemandRevalidate ? 'REVALIDATED' : cacheEntry.isMiss ? 'MISS' : cacheEntry.isStale ? 'STALE' : 'HIT'); - } - // Set a header used by the client router to signal the response is static - // and should respect the `static` cache staleTime value. - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_IS_PRERENDER_HEADER"], '1'); - } - const { value: cachedData } = cacheEntry; - // Coerce the cache control parameter from the render. - let cacheControl; - // If this is a resume request in minimal mode it is streamed with dynamic - // content and should not be cached. - if (minimalPostponed) { - cacheControl = { - revalidate: 0, - expire: undefined - }; - } else if (isDynamicRSCRequest) { - cacheControl = { - revalidate: 0, - expire: undefined - }; - } else if (!routeModule.isDev) { - // If this is a preview mode request, we shouldn't cache it - if (isDraftMode) { - cacheControl = { - revalidate: 0, - expire: undefined - }; - } else if (!isSSG) { - if (!res.getHeader('Cache-Control')) { - cacheControl = { - revalidate: 0, - expire: undefined - }; - } - } else if (cacheEntry.cacheControl) { - // If the cache entry has a cache control with a revalidate value that's - // a number, use it. - if (typeof cacheEntry.cacheControl.revalidate === 'number') { - var _cacheEntry_cacheControl; - if (cacheEntry.cacheControl.revalidate < 1) { - throw Object.defineProperty(new Error(`Invalid revalidate configuration provided: ${cacheEntry.cacheControl.revalidate} < 1`), "__NEXT_ERROR_CODE", { - value: "E22", - enumerable: false, - configurable: true - }); - } - cacheControl = { - revalidate: cacheEntry.cacheControl.revalidate, - expire: ((_cacheEntry_cacheControl = cacheEntry.cacheControl) == null ? void 0 : _cacheEntry_cacheControl.expire) ?? nextConfig.expireTime - }; - } else { - cacheControl = { - revalidate: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CACHE_ONE_YEAR"], - expire: undefined - }; - } - } - } - cacheEntry.cacheControl = cacheControl; - if (typeof segmentPrefetchHeader === 'string' && (cachedData == null ? void 0 : cachedData.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE && cachedData.segmentData) { - var _cachedData_headers1; - // This is a prefetch request issued by the client Segment Cache. These - // should never reach the application layer (lambda). We should either - // respond from the cache (HIT) or respond with 204 No Content (MISS). - // Set a header to indicate that PPR is enabled for this route. This - // lets the client distinguish between a regular cache miss and a cache - // miss due to PPR being disabled. In other contexts this header is used - // to indicate that the response contains dynamic data, but here we're - // only using it to indicate that the feature is enabled — the segment - // response itself contains whether the data is dynamic. - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"], '2'); - // Add the cache tags header to the response if it exists and we're in - // minimal mode while rendering a static page. - const tags = (_cachedData_headers1 = cachedData.headers) == null ? void 0 : _cachedData_headers1[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"]]; - if (isMinimalMode && isSSG && tags && typeof tags === 'string') { - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"], tags); - } - const matchedSegment = cachedData.segmentData.get(segmentPrefetchHeader); - if (matchedSegment !== undefined) { - // Cache hit - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].fromStatic(matchedSegment, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]), - cacheControl: cacheEntry.cacheControl - }); - } - // Cache miss. Either a cache entry for this route has not been generated - // (which technically should not be possible when PPR is enabled, because - // at a minimum there should always be a fallback entry) or there's no - // match for the requested segment. Respond with a 204 No Content. We - // don't bother to respond with 404, because these requests are only - // issued as part of a prefetch. - res.statusCode = 204; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].EMPTY, - cacheControl: cacheEntry.cacheControl - }); - } - // If there's a callback for `onCacheEntry`, call it with the cache entry - // and the revalidate options. If we support RDC for Navigations, we - // prefer the `onCacheEntryV2` callback. Once RDC for Navigations is the - // default, we can remove the fallback to `onCacheEntry` as - // `onCacheEntryV2` is now fully supported. - const onCacheEntry = supportsRDCForNavigations ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'onCacheEntryV2') ?? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'onCacheEntry') : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'onCacheEntry'); - if (onCacheEntry) { - const finished = await onCacheEntry(cacheEntry, { - url: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'initURL') ?? req.url - }); - if (finished) return null; - } - if (cachedData.headers) { - const headers = { - ...cachedData.headers - }; - if (!isMinimalMode || !isSSG) { - delete headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"]]; - } - for (let [key, value] of Object.entries(headers)){ - if (typeof value === 'undefined') continue; - if (Array.isArray(value)) { - for (const v of value){ - res.appendHeader(key, v); - } - } else if (typeof value === 'number') { - value = value.toString(); - res.appendHeader(key, value); - } else { - res.appendHeader(key, value); - } - } - } - // Add the cache tags header to the response if it exists and we're in - // minimal mode while rendering a static page. - const tags = (_cachedData_headers = cachedData.headers) == null ? void 0 : _cachedData_headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"]]; - if (isMinimalMode && isSSG && tags && typeof tags === 'string') { - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"], tags); - } - // If the request is a data request, then we shouldn't set the status code - // from the response because it should always be 200. This should be gated - // behind the experimental PPR flag. - if (cachedData.status && (!isRSCRequest || !isRoutePPREnabled)) { - res.statusCode = cachedData.status; - } - // Redirect information is encoded in RSC payload, so we don't need to use redirect status codes - if (!isMinimalMode && cachedData.status && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RedirectStatusCode"][cachedData.status] && isRSCRequest) { - res.statusCode = 200; - } - // Mark that the request did postpone. - if (didPostpone && !isDynamicRSCRequest) { - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"], '1'); - } - // we don't go through this block when preview mode is true - // as preview mode is a dynamic request (bypasses cache) and doesn't - // generate both HTML and payloads in the same request so continue to just - // return the generated payload - if (isRSCRequest && !isDraftMode) { - // If this is a dynamic RSC request, then stream the response. - if (typeof cachedData.rscData === 'undefined') { - // If the response is not an RSC response, then we can't serve it. - if (cachedData.html.contentType !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]) { - if (nextConfig.cacheComponents) { - res.statusCode = 404; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].EMPTY, - cacheControl: cacheEntry.cacheControl - }); - } else { - // Otherwise this case is not expected. - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Expected RSC response, got ${cachedData.html.contentType}`), "__NEXT_ERROR_CODE", { - value: "E789", - enumerable: false, - configurable: true - }); - } - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: cachedData.html, - cacheControl: cacheEntry.cacheControl - }); - } - // As this isn't a prefetch request, we should serve the static flight - // data. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].fromStatic(cachedData.rscData, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]), - cacheControl: cacheEntry.cacheControl - }); - } - // This is a request for HTML data. - const body = cachedData.html; - // If there's no postponed state, we should just serve the HTML. This - // should also be the case for a resume request because it's completed - // as a server render (rather than a static render). - if (!didPostpone || isMinimalMode || isRSCRequest) { - // If we're in test mode, we should add a sentinel chunk to the response - // that's between the static and dynamic parts so we can compare the - // chunks and add assertions. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: body, - cacheControl: cacheEntry.cacheControl - }); - } - // If we're debugging the static shell or the dynamic API accesses, we - // should just serve the HTML without resuming the render. The returned - // HTML will be the static shell so all the Dynamic API's will be used - // during static generation. - if (isDebugStaticShell || isDebugDynamicAccesses) { - // Since we're not resuming the render, we need to at least add the - // closing body and html tags to create valid HTML. - body.push(new ReadableStream({ - start (controller) { - controller.enqueue(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML); - controller.close(); - } - })); - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: body, - cacheControl: { - revalidate: 0, - expire: undefined - } - }); - } - // If we're in test mode, we should add a sentinel chunk to the response - // that's between the static and dynamic parts so we can compare the - // chunks and add assertions. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // This request has postponed, so let's create a new transformer that the - // dynamic data can pipe to that will attach the dynamic data to the end - // of the response. - const transformer = new TransformStream(); - body.push(transformer.readable); - // Perform the render again, but this time, provide the postponed state. - // We don't await because we want the result to start streaming now, and - // we've already chained the transformer's readable to the render result. - doRender({ - span, - postponed: cachedData.postponed, - // This is a resume render, not a fallback render, so we don't need to - // set this. - fallbackRouteParams: null, - forceStaticRender: false - }).then(async (result)=>{ - var _result_value; - if (!result) { - throw Object.defineProperty(new Error('Invariant: expected a result to be returned'), "__NEXT_ERROR_CODE", { - value: "E463", - enumerable: false, - configurable: true - }); - } - if (((_result_value = result.value) == null ? void 0 : _result_value.kind) !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE) { - var _result_value1; - throw Object.defineProperty(new Error(`Invariant: expected a page response, got ${(_result_value1 = result.value) == null ? void 0 : _result_value1.kind}`), "__NEXT_ERROR_CODE", { - value: "E305", - enumerable: false, - configurable: true - }); - } - // Pipe the resume result to the transformer. - await result.value.html.pipeTo(transformer.writable); - }).catch((err)=>{ - // An error occurred during piping or preparing the render, abort - // the transformers writer so we can terminate the stream. - transformer.writable.abort(err).catch((e)=>{ - console.error("couldn't abort transformer", e); - }); - }); - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: body, - // We don't want to cache the response if it has postponed data because - // the response being sent to the client it's dynamic parts are streamed - // to the client on the same request. - cacheControl: { - revalidate: 0, - expire: undefined - } - }); - }; - // TODO: activeSpan code path is for when wrapped by - // next-server can be removed when this is no longer used - if (activeSpan) { - await handleResponse(activeSpan); - } else { - return await tracer.withPropagatedContext(req.headers, ()=>tracer.trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BaseServerSpan"].handleRequest, { - spanName: `${method} ${srcPage}`, - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SpanKind"].SERVER, - attributes: { - 'http.method': method, - 'http.target': req.url - } - }, handleResponse)); - } - } catch (err) { - if (!(err instanceof __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js$2c$__cjs$29$__["NoFallbackError"])) { - const silenceLog = false; - await routeModule.onRequestError(req, err, { - routerKind: 'App Router', - routePath: srcPage, - routeType: 'render', - revalidateReason: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$instrumentation$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRevalidateReason"])({ - isStaticGeneration: isSSG, - isOnDemandRevalidate - }) - }, silenceLog, routerServerContext); - } - // rethrow so that we can handle serving error page - throw err; - } -} -// TODO: omit this from production builds, only test builds should include it -/** - * Creates a readable stream that emits a PPR boundary sentinel. - * - * @returns A readable stream that emits a PPR boundary sentinel. - */ function createPPRBoundarySentinel() { - return new ReadableStream({ - start (controller) { - controller.enqueue(new TextEncoder().encode('')); - controller.close(); - } - }); -} //# sourceMappingURL=app-page.js.map -}), -"[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/page { GLOBAL_ERROR_MODULE => \"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)\", METADATA_0 => \"[project]/src/app/favicon.ico.mjs { IMAGE => \\\"[project]/src/app/favicon.ico (static in ecmascript, tag client)\\\" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)\", MODULE_1 => \"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_2 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_3 => \"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_4 => \"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_5 => \"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_6 => \"[project]/src/app/page.tsx [app-rsc] (ecmascript, Next.js Server Component)\" } [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ClientPageRoot", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["ClientPageRoot"], - "ClientSegmentRoot", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["ClientSegmentRoot"], - "Fragment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["Fragment"], - "GlobalError", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29$__["default"], - "HTTPAccessFallbackBoundary", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["HTTPAccessFallbackBoundary"], - "LayoutRouter", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["LayoutRouter"], - "Postpone", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["Postpone"], - "RenderFromTemplateContext", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RenderFromTemplateContext"], - "RootLayoutBoundary", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RootLayoutBoundary"], - "SegmentViewNode", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["SegmentViewNode"], - "SegmentViewStateNode", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["SegmentViewStateNode"], - "__next_app__", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$templates$2f$app$2d$page$2e$js$3f$page$3d2f$page__$7b$__GLOBAL_ERROR_MODULE__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__METADATA_0__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$5c225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$295c22$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_1__$3d3e$__$225b$project$5d2f$src$2f$app$2f$layout$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_2__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_3__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$forbidden$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_4__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$unauthorized$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_5__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_6__$3d3e$__$225b$project$5d2f$src$2f$app$2f$page$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["__next_app__"], - "actionAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["actionAsyncStorage"], - "captureOwnerStack", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["captureOwnerStack"], - "collectSegmentData", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["collectSegmentData"], - "createElement", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createElement"], - "createMetadataComponents", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createMetadataComponents"], - "createPrerenderParamsForClientSegment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createPrerenderParamsForClientSegment"], - "createPrerenderSearchParamsForClientPage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createPrerenderSearchParamsForClientPage"], - "createServerParamsForServerSegment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createServerParamsForServerSegment"], - "createServerSearchParamsForServerPage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createServerSearchParamsForServerPage"], - "createTemporaryReferenceSet", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createTemporaryReferenceSet"], - "decodeAction", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["decodeAction"], - "decodeFormState", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["decodeFormState"], - "decodeReply", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["decodeReply"], - "handler", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$templates$2f$app$2d$page$2e$js$3f$page$3d2f$page__$7b$__GLOBAL_ERROR_MODULE__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__METADATA_0__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$5c225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$295c22$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_1__$3d3e$__$225b$project$5d2f$src$2f$app$2f$layout$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_2__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_3__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$forbidden$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_4__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$unauthorized$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_5__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_6__$3d3e$__$225b$project$5d2f$src$2f$app$2f$page$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["handler"], - "patchFetch", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["patchFetch"], - "preconnect", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["preconnect"], - "preloadFont", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["preloadFont"], - "preloadStyle", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["preloadStyle"], - "prerender", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["prerender"], - "renderToReadableStream", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["renderToReadableStream"], - "routeModule", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$templates$2f$app$2d$page$2e$js$3f$page$3d2f$page__$7b$__GLOBAL_ERROR_MODULE__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__METADATA_0__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$5c225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$295c22$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_1__$3d3e$__$225b$project$5d2f$src$2f$app$2f$layout$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_2__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_3__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$forbidden$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_4__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$unauthorized$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_5__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_6__$3d3e$__$225b$project$5d2f$src$2f$app$2f$page$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["routeModule"], - "serverHooks", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["serverHooks"], - "taintObjectReference", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["taintObjectReference"], - "workAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["workAsyncStorage"], - "workUnitAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["workUnitAsyncStorage"] -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$templates$2f$app$2d$page$2e$js$3f$page$3d2f$page__$7b$__GLOBAL_ERROR_MODULE__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__METADATA_0__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$5c225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$295c22$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_1__$3d3e$__$225b$project$5d2f$src$2f$app$2f$layout$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_2__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_3__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$forbidden$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_4__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$unauthorized$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_5__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_6__$3d3e$__$225b$project$5d2f$src$2f$app$2f$page$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i('[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/page { GLOBAL_ERROR_MODULE => "[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)", METADATA_0 => "[project]/src/app/favicon.ico.mjs { IMAGE => \\"[project]/src/app/favicon.ico (static in ecmascript, tag client)\\" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)", MODULE_1 => "[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)", MODULE_2 => "[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)", MODULE_3 => "[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)", MODULE_4 => "[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)", MODULE_5 => "[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)", MODULE_6 => "[project]/src/app/page.tsx [app-rsc] (ecmascript, Next.js Server Component)" } [app-rsc] (ecmascript) '); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js Server Component)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility)"); -}), -]; - -//# sourceMappingURL=node_modules_e3c9fcc1._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e3c9fcc1._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e3c9fcc1._.js.map deleted file mode 100644 index c027d51..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_e3c9fcc1._.js.map +++ /dev/null @@ -1,58 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 6, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK"],"mappings":"AAAA,IAAIA,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACL,IAAIF,QAAQC,GAAG,CAACK,yBAAyB,EAAE;;SAcpC;QACL,IAAIN,QAAQC,GAAG,CAACM,QAAQ,KAAK,WAAe;YAC1C,IAAIP,QAAQC,GAAG,CAACO,SAAS,eAAE;gBACzBL,OAAOC,OAAO,GAAGC,QAAQ;YAC3B,OAAO;;QAGT,OAAO;;IAOT;AACF","ignoreList":[0]}}, - {"offset": {"line": 28, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/instrumentation/utils.ts"],"sourcesContent":["export function getRevalidateReason(params: {\n isOnDemandRevalidate?: boolean\n isStaticGeneration?: boolean\n}): 'on-demand' | 'stale' | undefined {\n if (params.isOnDemandRevalidate) {\n return 'on-demand'\n }\n if (params.isStaticGeneration) {\n return 'stale'\n }\n return undefined\n}\n"],"names":["getRevalidateReason","params","isOnDemandRevalidate","isStaticGeneration","undefined"],"mappings":";;;;AAAO,SAASA,oBAAoBC,MAGnC;IACC,IAAIA,OAAOC,oBAAoB,EAAE;QAC/B,OAAO;IACT;IACA,IAAID,OAAOE,kBAAkB,EAAE;QAC7B,OAAO;IACT;IACA,OAAOC;AACT","ignoreList":[0]}}, - {"offset": {"line": 45, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/interop-default.ts"],"sourcesContent":["/**\n * Interop between \"export default\" and \"module.exports\".\n */\nexport function interopDefault(mod: any) {\n return mod.default || mod\n}\n"],"names":["interopDefault","mod","default"],"mappings":"AAAA;;CAEC,GACD;;;;AAAO,SAASA,eAAeC,GAAQ;IACrC,OAAOA,IAAIC,OAAO,IAAID;AACxB","ignoreList":[0]}}, - {"offset": {"line": 58, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/strip-flight-headers.ts"],"sourcesContent":["import type { IncomingHttpHeaders } from 'node:http'\n\nimport { FLIGHT_HEADERS } from '../../client/components/app-router-headers'\n\n/**\n * Removes the flight headers from the request.\n *\n * @param req the request to strip the headers from\n */\nexport function stripFlightHeaders(headers: IncomingHttpHeaders) {\n for (const header of FLIGHT_HEADERS) {\n delete headers[header]\n }\n}\n"],"names":["FLIGHT_HEADERS","stripFlightHeaders","headers","header"],"mappings":";;;;AAEA,SAASA,cAAc,QAAQ,6CAA4C;;AAOpE,SAASC,mBAAmBC,OAA4B;IAC7D,KAAK,MAAMC,UAAUH,yMAAAA,CAAgB;QACnC,OAAOE,OAAO,CAACC,OAAO;IACxB;AACF","ignoreList":[0]}}, - {"offset": {"line": 73, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/headers.ts"],"sourcesContent":["import type { IncomingHttpHeaders } from 'http'\n\nimport { ReflectAdapter } from './reflect'\n\n/**\n * @internal\n */\nexport class ReadonlyHeadersError extends Error {\n constructor() {\n super(\n 'Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers'\n )\n }\n\n public static callable() {\n throw new ReadonlyHeadersError()\n }\n}\n\nexport type ReadonlyHeaders = Headers & {\n /** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */\n append(...args: any[]): void\n /** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */\n set(...args: any[]): void\n /** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */\n delete(...args: any[]): void\n}\nexport class HeadersAdapter extends Headers {\n private readonly headers: IncomingHttpHeaders\n\n constructor(headers: IncomingHttpHeaders) {\n // We've already overridden the methods that would be called, so we're just\n // calling the super constructor to ensure that the instanceof check works.\n super()\n\n this.headers = new Proxy(headers, {\n get(target, prop, receiver) {\n // Because this is just an object, we expect that all \"get\" operations\n // are for properties. If it's a \"get\" for a symbol, we'll just return\n // the symbol.\n if (typeof prop === 'symbol') {\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n const lowercased = prop.toLowerCase()\n\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find(\n (o) => o.toLowerCase() === lowercased\n )\n\n // If the original casing doesn't exist, return undefined.\n if (typeof original === 'undefined') return\n\n // If the original casing exists, return the value.\n return ReflectAdapter.get(target, original, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'symbol') {\n return ReflectAdapter.set(target, prop, value, receiver)\n }\n\n const lowercased = prop.toLowerCase()\n\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find(\n (o) => o.toLowerCase() === lowercased\n )\n\n // If the original casing doesn't exist, use the prop as the key.\n return ReflectAdapter.set(target, original ?? prop, value, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'symbol') return ReflectAdapter.has(target, prop)\n\n const lowercased = prop.toLowerCase()\n\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find(\n (o) => o.toLowerCase() === lowercased\n )\n\n // If the original casing doesn't exist, return false.\n if (typeof original === 'undefined') return false\n\n // If the original casing exists, return true.\n return ReflectAdapter.has(target, original)\n },\n deleteProperty(target, prop) {\n if (typeof prop === 'symbol')\n return ReflectAdapter.deleteProperty(target, prop)\n\n const lowercased = prop.toLowerCase()\n\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find(\n (o) => o.toLowerCase() === lowercased\n )\n\n // If the original casing doesn't exist, return true.\n if (typeof original === 'undefined') return true\n\n // If the original casing exists, delete the property.\n return ReflectAdapter.deleteProperty(target, original)\n },\n })\n }\n\n /**\n * Seals a Headers instance to prevent modification by throwing an error when\n * any mutating method is called.\n */\n public static seal(headers: Headers): ReadonlyHeaders {\n return new Proxy(headers, {\n get(target, prop, receiver) {\n switch (prop) {\n case 'append':\n case 'delete':\n case 'set':\n return ReadonlyHeadersError.callable\n default:\n return ReflectAdapter.get(target, prop, receiver)\n }\n },\n })\n }\n\n /**\n * Merges a header value into a string. This stores multiple values as an\n * array, so we need to merge them into a string.\n *\n * @param value a header value\n * @returns a merged header value (a string)\n */\n private merge(value: string | string[]): string {\n if (Array.isArray(value)) return value.join(', ')\n\n return value\n }\n\n /**\n * Creates a Headers instance from a plain object or a Headers instance.\n *\n * @param headers a plain object or a Headers instance\n * @returns a headers instance\n */\n public static from(headers: IncomingHttpHeaders | Headers): Headers {\n if (headers instanceof Headers) return headers\n\n return new HeadersAdapter(headers)\n }\n\n public append(name: string, value: string): void {\n const existing = this.headers[name]\n if (typeof existing === 'string') {\n this.headers[name] = [existing, value]\n } else if (Array.isArray(existing)) {\n existing.push(value)\n } else {\n this.headers[name] = value\n }\n }\n\n public delete(name: string): void {\n delete this.headers[name]\n }\n\n public get(name: string): string | null {\n const value = this.headers[name]\n if (typeof value !== 'undefined') return this.merge(value)\n\n return null\n }\n\n public has(name: string): boolean {\n return typeof this.headers[name] !== 'undefined'\n }\n\n public set(name: string, value: string): void {\n this.headers[name] = value\n }\n\n public forEach(\n callbackfn: (value: string, name: string, parent: Headers) => void,\n thisArg?: any\n ): void {\n for (const [name, value] of this.entries()) {\n callbackfn.call(thisArg, value, name, this)\n }\n }\n\n public *entries(): HeadersIterator<[string, string]> {\n for (const key of Object.keys(this.headers)) {\n const name = key.toLowerCase()\n // We assert here that this is a string because we got it from the\n // Object.keys() call above.\n const value = this.get(name) as string\n\n yield [name, value] as [string, string]\n }\n }\n\n public *keys(): HeadersIterator {\n for (const key of Object.keys(this.headers)) {\n const name = key.toLowerCase()\n yield name\n }\n }\n\n public *values(): HeadersIterator {\n for (const key of Object.keys(this.headers)) {\n // We assert here that this is a string because we got it from the\n // Object.keys() call above.\n const value = this.get(key) as string\n\n yield value\n }\n }\n\n public [Symbol.iterator](): HeadersIterator<[string, string]> {\n return this.entries()\n }\n}\n"],"names":["ReflectAdapter","ReadonlyHeadersError","Error","constructor","callable","HeadersAdapter","Headers","headers","Proxy","get","target","prop","receiver","lowercased","toLowerCase","original","Object","keys","find","o","set","value","has","deleteProperty","seal","merge","Array","isArray","join","from","append","name","existing","push","delete","forEach","callbackfn","thisArg","entries","call","key","values","Symbol","iterator"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 252, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/api-utils/index.ts"],"sourcesContent":["import type { IncomingMessage } from 'http'\nimport type { BaseNextRequest } from '../base-http'\nimport type { CookieSerializeOptions } from 'next/dist/compiled/cookie'\nimport type { NextApiResponse } from '../../shared/lib/utils'\n\nimport { HeadersAdapter } from '../web/spec-extension/adapters/headers'\nimport {\n PRERENDER_REVALIDATE_HEADER,\n PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER,\n} from '../../lib/constants'\nimport { getTracer } from '../lib/trace/tracer'\nimport { NodeSpan } from '../lib/trace/constants'\n\nexport type NextApiRequestCookies = Partial<{ [key: string]: string }>\nexport type NextApiRequestQuery = Partial<{ [key: string]: string | string[] }>\n\nexport type __ApiPreviewProps = {\n previewModeId: string\n previewModeEncryptionKey: string\n previewModeSigningKey: string\n}\n\nexport function wrapApiHandler any>(\n page: string,\n handler: T\n): T {\n return ((...args) => {\n getTracer().setRootSpanAttribute('next.route', page)\n // Call API route method\n return getTracer().trace(\n NodeSpan.runHandler,\n {\n spanName: `executing api route (pages) ${page}`,\n },\n () => handler(...args)\n )\n }) as T\n}\n\n/**\n *\n * @param res response object\n * @param statusCode `HTTP` status code of response\n */\nexport function sendStatusCode(\n res: NextApiResponse,\n statusCode: number\n): NextApiResponse {\n res.statusCode = statusCode\n return res\n}\n\n/**\n *\n * @param res response object\n * @param [statusOrUrl] `HTTP` status code of redirect\n * @param url URL of redirect\n */\nexport function redirect(\n res: NextApiResponse,\n statusOrUrl: string | number,\n url?: string\n): NextApiResponse {\n if (typeof statusOrUrl === 'string') {\n url = statusOrUrl\n statusOrUrl = 307\n }\n if (typeof statusOrUrl !== 'number' || typeof url !== 'string') {\n throw new Error(\n `Invalid redirect arguments. Please use a single argument URL, e.g. res.redirect('/destination') or use a status code and URL, e.g. res.redirect(307, '/destination').`\n )\n }\n res.writeHead(statusOrUrl, { Location: url })\n res.write(url)\n res.end()\n return res\n}\n\nexport function checkIsOnDemandRevalidate(\n req: Request | IncomingMessage | BaseNextRequest,\n previewProps: __ApiPreviewProps\n): {\n isOnDemandRevalidate: boolean\n revalidateOnlyGenerated: boolean\n} {\n const headers = HeadersAdapter.from(req.headers)\n\n const previewModeId = headers.get(PRERENDER_REVALIDATE_HEADER)\n const isOnDemandRevalidate = previewModeId === previewProps.previewModeId\n\n const revalidateOnlyGenerated = headers.has(\n PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER\n )\n\n return { isOnDemandRevalidate, revalidateOnlyGenerated }\n}\n\nexport const COOKIE_NAME_PRERENDER_BYPASS = `__prerender_bypass`\nexport const COOKIE_NAME_PRERENDER_DATA = `__next_preview_data`\n\nexport const RESPONSE_LIMIT_DEFAULT = 4 * 1024 * 1024\n\nexport const SYMBOL_PREVIEW_DATA = Symbol(COOKIE_NAME_PRERENDER_DATA)\nexport const SYMBOL_CLEARED_COOKIES = Symbol(COOKIE_NAME_PRERENDER_BYPASS)\n\nexport function clearPreviewData(\n res: NextApiResponse,\n options: {\n path?: string\n } = {}\n): NextApiResponse {\n if (SYMBOL_CLEARED_COOKIES in res) {\n return res\n }\n\n const { serialize } =\n require('next/dist/compiled/cookie') as typeof import('next/dist/compiled/cookie')\n const previous = res.getHeader('Set-Cookie')\n res.setHeader(`Set-Cookie`, [\n ...(typeof previous === 'string'\n ? [previous]\n : Array.isArray(previous)\n ? previous\n : []),\n serialize(COOKIE_NAME_PRERENDER_BYPASS, '', {\n // To delete a cookie, set `expires` to a date in the past:\n // https://tools.ietf.org/html/rfc6265#section-4.1.1\n // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted.\n expires: new Date(0),\n httpOnly: true,\n sameSite: process.env.NODE_ENV !== 'development' ? 'none' : 'lax',\n secure: process.env.NODE_ENV !== 'development',\n path: '/',\n ...(options.path !== undefined\n ? ({ path: options.path } as CookieSerializeOptions)\n : undefined),\n }),\n serialize(COOKIE_NAME_PRERENDER_DATA, '', {\n // To delete a cookie, set `expires` to a date in the past:\n // https://tools.ietf.org/html/rfc6265#section-4.1.1\n // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted.\n expires: new Date(0),\n httpOnly: true,\n sameSite: process.env.NODE_ENV !== 'development' ? 'none' : 'lax',\n secure: process.env.NODE_ENV !== 'development',\n path: '/',\n ...(options.path !== undefined\n ? ({ path: options.path } as CookieSerializeOptions)\n : undefined),\n }),\n ])\n\n Object.defineProperty(res, SYMBOL_CLEARED_COOKIES, {\n value: true,\n enumerable: false,\n })\n return res\n}\n\n/**\n * Custom error class\n */\nexport class ApiError extends Error {\n readonly statusCode: number\n\n constructor(statusCode: number, message: string) {\n super(message)\n this.statusCode = statusCode\n }\n}\n\n/**\n * Sends error in `response`\n * @param res response object\n * @param statusCode of response\n * @param message of response\n */\nexport function sendError(\n res: NextApiResponse,\n statusCode: number,\n message: string\n): void {\n res.statusCode = statusCode\n res.statusMessage = message\n res.end(message)\n}\n\ninterface LazyProps {\n req: IncomingMessage\n}\n\n/**\n * Execute getter function only if its needed\n * @param LazyProps `req` and `params` for lazyProp\n * @param prop name of property\n * @param getter function to get data\n */\nexport function setLazyProp(\n { req }: LazyProps,\n prop: string,\n getter: () => T\n): void {\n const opts = { configurable: true, enumerable: true }\n const optsReset = { ...opts, writable: true }\n\n Object.defineProperty(req, prop, {\n ...opts,\n get: () => {\n const value = getter()\n // we set the property on the object to avoid recalculating it\n Object.defineProperty(req, prop, { ...optsReset, value })\n return value\n },\n set: (value) => {\n Object.defineProperty(req, prop, { ...optsReset, value })\n },\n })\n}\n"],"names":["HeadersAdapter","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","getTracer","NodeSpan","wrapApiHandler","page","handler","args","setRootSpanAttribute","trace","runHandler","spanName","sendStatusCode","res","statusCode","redirect","statusOrUrl","url","Error","writeHead","Location","write","end","checkIsOnDemandRevalidate","req","previewProps","headers","from","previewModeId","get","isOnDemandRevalidate","revalidateOnlyGenerated","has","COOKIE_NAME_PRERENDER_BYPASS","COOKIE_NAME_PRERENDER_DATA","RESPONSE_LIMIT_DEFAULT","SYMBOL_PREVIEW_DATA","Symbol","SYMBOL_CLEARED_COOKIES","clearPreviewData","options","serialize","require","previous","getHeader","setHeader","Array","isArray","expires","Date","httpOnly","sameSite","process","env","NODE_ENV","secure","path","undefined","Object","defineProperty","value","enumerable","ApiError","constructor","message","sendError","statusMessage","setLazyProp","prop","getter","opts","configurable","optsReset","writable","set"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKA,SAASA,cAAc,QAAQ,yCAAwC;AACvE,SACEC,2BAA2B,EAC3BC,0CAA0C,QACrC,sBAAqB;AAC5B,SAASC,SAAS,QAAQ,sBAAqB;AAC/C,SAASC,QAAQ,QAAQ,yBAAwB;;;;;AAW1C,SAASC,eACdC,IAAY,EACZC,OAAU;IAEV,OAAQ,CAAC,GAAGC;YACVL,oLAAAA,IAAYM,oBAAoB,CAAC,cAAcH;QAC/C,wBAAwB;QACxB,WAAOH,oLAAAA,IAAYO,KAAK,CACtBN,sLAAAA,CAASO,UAAU,EACnB;YACEC,UAAU,CAAC,4BAA4B,EAAEN,MAAM;QACjD,GACA,IAAMC,WAAWC;IAErB;AACF;AAOO,SAASK,eACdC,GAAoB,EACpBC,UAAkB;IAElBD,IAAIC,UAAU,GAAGA;IACjB,OAAOD;AACT;AAQO,SAASE,SACdF,GAAoB,EACpBG,WAA4B,EAC5BC,GAAY;IAEZ,IAAI,OAAOD,gBAAgB,UAAU;QACnCC,MAAMD;QACNA,cAAc;IAChB;IACA,IAAI,OAAOA,gBAAgB,YAAY,OAAOC,QAAQ,UAAU;QAC9D,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,qKAAqK,CAAC,GADnK,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IACAL,IAAIM,SAAS,CAACH,aAAa;QAAEI,UAAUH;IAAI;IAC3CJ,IAAIQ,KAAK,CAACJ;IACVJ,IAAIS,GAAG;IACP,OAAOT;AACT;AAEO,SAASU,0BACdC,GAAgD,EAChDC,YAA+B;IAK/B,MAAMC,UAAU3B,kNAAAA,CAAe4B,IAAI,CAACH,IAAIE,OAAO;IAE/C,MAAME,gBAAgBF,QAAQG,GAAG,CAAC7B,sLAAAA;IAClC,MAAM8B,uBAAuBF,kBAAkBH,aAAaG,aAAa;IAEzE,MAAMG,0BAA0BL,QAAQM,GAAG,CACzC/B,qMAAAA;IAGF,OAAO;QAAE6B;QAAsBC;IAAwB;AACzD;AAEO,MAAME,+BAA+B,CAAC,kBAAkB,CAAC,CAAA;AACzD,MAAMC,6BAA6B,CAAC,mBAAmB,CAAC,CAAA;AAExD,MAAMC,yBAAyB,IAAI,OAAO,KAAI;AAE9C,MAAMC,sBAAsBC,OAAOH,4BAA2B;AAC9D,MAAMI,yBAAyBD,OAAOJ,8BAA6B;AAEnE,SAASM,iBACd1B,GAAuB,EACvB2B,UAEI,CAAC,CAAC;IAEN,IAAIF,0BAA0BzB,KAAK;QACjC,OAAOA;IACT;IAEA,MAAM,EAAE4B,SAAS,EAAE,GACjBC,QAAQ;IACV,MAAMC,WAAW9B,IAAI+B,SAAS,CAAC;IAC/B/B,IAAIgC,SAAS,CAAC,CAAC,UAAU,CAAC,EAAE;WACtB,OAAOF,aAAa,WACpB;YAACA;SAAS,GACVG,MAAMC,OAAO,CAACJ,YACZA,WACA,EAAE;QACRF,UAAUR,8BAA8B,IAAI;YAC1C,2DAA2D;YAC3D,oDAAoD;YACpD,wEAAwE;YACxEe,SAAS,IAAIC,KAAK;YAClBC,UAAU;YACVC,UAAUC,QAAQC,GAAG,CAACC,QAAQ,KAAK,aAAgB,0BAAS;YAC5DC,QAAQH,QAAQC,GAAG,CAACC,QAAQ,gCAAK;YACjCE,MAAM;YACN,GAAIhB,QAAQgB,IAAI,KAAKC,YAChB;gBAAED,MAAMhB,QAAQgB,IAAI;YAAC,IACtBC,SAAS;QACf;QACAhB,UAAUP,4BAA4B,IAAI;YACxC,2DAA2D;YAC3D,oDAAoD;YACpD,wEAAwE;YACxEc,SAAS,IAAIC,KAAK;YAClBC,UAAU;YACVC,UAAUC,QAAQC,GAAG,CAACC,QAAQ,KAAK,aAAgB,0BAAS;YAC5DC,QAAQH,QAAQC,GAAG,CAACC,QAAQ,gCAAK;YACjCE,MAAM;YACN,GAAIhB,QAAQgB,IAAI,KAAKC,YAChB;gBAAED,MAAMhB,QAAQgB,IAAI;YAAC,IACtBC,SAAS;QACf;KACD;IAEDC,OAAOC,cAAc,CAAC9C,KAAKyB,wBAAwB;QACjDsB,OAAO;QACPC,YAAY;IACd;IACA,OAAOhD;AACT;AAKO,MAAMiD,iBAAiB5C;IAG5B6C,YAAYjD,UAAkB,EAAEkD,OAAe,CAAE;QAC/C,KAAK,CAACA;QACN,IAAI,CAAClD,UAAU,GAAGA;IACpB;AACF;AAQO,SAASmD,UACdpD,GAAoB,EACpBC,UAAkB,EAClBkD,OAAe;IAEfnD,IAAIC,UAAU,GAAGA;IACjBD,IAAIqD,aAAa,GAAGF;IACpBnD,IAAIS,GAAG,CAAC0C;AACV;AAYO,SAASG,YACd,EAAE3C,GAAG,EAAa,EAClB4C,IAAY,EACZC,MAAe;IAEf,MAAMC,OAAO;QAAEC,cAAc;QAAMV,YAAY;IAAK;IACpD,MAAMW,YAAY;QAAE,GAAGF,IAAI;QAAEG,UAAU;IAAK;IAE5Cf,OAAOC,cAAc,CAACnC,KAAK4C,MAAM;QAC/B,GAAGE,IAAI;QACPzC,KAAK;YACH,MAAM+B,QAAQS;YACd,8DAA8D;YAC9DX,OAAOC,cAAc,CAACnC,KAAK4C,MAAM;gBAAE,GAAGI,SAAS;gBAAEZ;YAAM;YACvD,OAAOA;QACT;QACAc,KAAK,CAACd;YACJF,OAAOC,cAAc,CAACnC,KAAK4C,MAAM;gBAAE,GAAGI,SAAS;gBAAEZ;YAAM;QACzD;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 421, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/api-utils/get-cookie-parser.ts"],"sourcesContent":["import type { NextApiRequestCookies } from '.'\n\n/**\n * Parse cookies from the `headers` of request\n * @param req request object\n */\n\nexport function getCookieParser(headers: {\n [key: string]: string | string[] | null | undefined\n}): () => NextApiRequestCookies {\n return function parseCookie(): NextApiRequestCookies {\n const { cookie } = headers\n\n if (!cookie) {\n return {}\n }\n\n const { parse: parseCookieFn } =\n require('next/dist/compiled/cookie') as typeof import('next/dist/compiled/cookie')\n return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie)\n }\n}\n"],"names":["getCookieParser","headers","parseCookie","cookie","parse","parseCookieFn","require","Array","isArray","join"],"mappings":"AAEA;;;CAGC,GAED;;;;AAAO,SAASA,gBAAgBC,OAE/B;IACC,OAAO,SAASC;QACd,MAAM,EAAEC,MAAM,EAAE,GAAGF;QAEnB,IAAI,CAACE,QAAQ;YACX,OAAO,CAAC;QACV;QAEA,MAAM,EAAEC,OAAOC,aAAa,EAAE,GAC5BC,QAAQ;QACV,OAAOD,cAAcE,MAAMC,OAAO,CAACL,UAAUA,OAAOM,IAAI,CAAC,QAAQN;IACnE;AACF","ignoreList":[0]}}, - {"offset": {"line": 442, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/base-http/index.ts"],"sourcesContent":["import type { IncomingHttpHeaders, OutgoingHttpHeaders } from 'http'\nimport type { I18NConfig } from '../config-shared'\n\nimport { RedirectStatusCode } from '../../client/components/redirect-status-code'\nimport type { NextApiRequestCookies } from '../api-utils'\nimport { getCookieParser } from '../api-utils/get-cookie-parser'\n\nexport interface BaseNextRequestConfig {\n basePath: string | undefined\n i18n?: I18NConfig\n trailingSlash?: boolean | undefined\n}\n\nexport type FetchMetric = {\n url: string\n idx: number\n end: number\n start: number\n method: string\n status: number\n cacheReason: string\n cacheStatus: 'hit' | 'miss' | 'skip' | 'hmr'\n cacheWarning?: string\n}\n\nexport type FetchMetrics = Array\n\nexport abstract class BaseNextRequest {\n protected _cookies: NextApiRequestCookies | undefined\n public abstract headers: IncomingHttpHeaders\n public abstract fetchMetrics: FetchMetric[] | undefined\n\n constructor(\n public method: string,\n public url: string,\n public body: Body\n ) {}\n\n // Utils implemented using the abstract methods above\n\n public get cookies() {\n if (this._cookies) return this._cookies\n return (this._cookies = getCookieParser(this.headers)())\n }\n}\n\nexport abstract class BaseNextResponse {\n abstract statusCode: number | undefined\n abstract statusMessage: string | undefined\n abstract get sent(): boolean\n\n constructor(public destination: Destination) {}\n\n /**\n * Sets a value for the header overwriting existing values\n */\n abstract setHeader(name: string, value: string | string[]): this\n\n /**\n * Removes a header\n */\n abstract removeHeader(name: string): this\n\n /**\n * Appends value for the given header name\n */\n abstract appendHeader(name: string, value: string): this\n\n /**\n * Get all values for a header as an array or undefined if no value is present\n */\n abstract getHeaderValues(name: string): string[] | undefined\n\n abstract hasHeader(name: string): boolean\n\n /**\n * Get values for a header concatenated using `,` or undefined if no value is present\n */\n abstract getHeader(name: string): string | undefined\n\n abstract getHeaders(): OutgoingHttpHeaders\n\n abstract body(value: string): this\n\n abstract send(): void\n\n abstract onClose(callback: () => void): void\n\n // Utils implemented using the abstract methods above\n\n public redirect(destination: string, statusCode: number) {\n this.setHeader('Location', destination)\n this.statusCode = statusCode\n\n // Since IE11 doesn't support the 308 header add backwards\n // compatibility using refresh header\n if (statusCode === RedirectStatusCode.PermanentRedirect) {\n this.setHeader('Refresh', `0;url=${destination}`)\n }\n\n return this\n }\n}\n"],"names":["RedirectStatusCode","getCookieParser","BaseNextRequest","constructor","method","url","body","cookies","_cookies","headers","BaseNextResponse","destination","redirect","statusCode","setHeader","PermanentRedirect"],"mappings":";;;;;;AAGA,SAASA,kBAAkB,QAAQ,+CAA8C;AAEjF,SAASC,eAAe,QAAQ,iCAAgC;;;AAsBzD,MAAeC;IAKpBC,YACSC,MAAc,EACdC,GAAW,EACXC,IAAU,CACjB;aAHOF,MAAAA,GAAAA;aACAC,GAAAA,GAAAA;aACAC,IAAAA,GAAAA;IACN;IAEH,qDAAqD;IAErD,IAAWC,UAAU;QACnB,IAAI,IAAI,CAACC,QAAQ,EAAE,OAAO,IAAI,CAACA,QAAQ;QACvC,OAAQ,IAAI,CAACA,QAAQ,OAAGP,2MAAAA,EAAgB,IAAI,CAACQ,OAAO;IACtD;AACF;AAEO,MAAeC;IAKpBP,YAAmBQ,WAAwB,CAAE;aAA1BA,WAAAA,GAAAA;IAA2B;IAqC9C,qDAAqD;IAE9CC,SAASD,WAAmB,EAAEE,UAAkB,EAAE;QACvD,IAAI,CAACC,SAAS,CAAC,YAAYH;QAC3B,IAAI,CAACE,UAAU,GAAGA;QAElB,0DAA0D;QAC1D,qCAAqC;QACrC,IAAIA,eAAeb,+MAAAA,CAAmBe,iBAAiB,EAAE;YACvD,IAAI,CAACD,SAAS,CAAC,WAAW,CAAC,MAAM,EAAEH,aAAa;QAClD;QAEA,OAAO,IAAI;IACb;AACF","ignoreList":[0]}}, - {"offset": {"line": 484, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/base-http/node.ts"],"sourcesContent":["import type { ServerResponse, IncomingMessage } from 'http'\nimport type { Writable, Readable } from 'stream'\n\nimport { SYMBOL_CLEARED_COOKIES } from '../api-utils'\nimport type { NextApiRequestCookies } from '../api-utils'\n\nimport { NEXT_REQUEST_META } from '../request-meta'\nimport type { RequestMeta } from '../request-meta'\n\nimport { BaseNextRequest, BaseNextResponse, type FetchMetric } from './index'\nimport type { OutgoingHttpHeaders } from 'node:http'\n\ntype Req = IncomingMessage & {\n [NEXT_REQUEST_META]?: RequestMeta\n cookies?: NextApiRequestCookies\n fetchMetrics?: FetchMetric[]\n}\n\nexport class NodeNextRequest extends BaseNextRequest {\n public headers = this._req.headers\n public fetchMetrics: FetchMetric[] | undefined = this._req?.fetchMetrics;\n\n [NEXT_REQUEST_META]: RequestMeta = this._req[NEXT_REQUEST_META] || {}\n\n constructor(private _req: Req) {\n super(_req.method!.toUpperCase(), _req.url!, _req)\n }\n\n get originalRequest() {\n // Need to mimic these changes to the original req object for places where we use it:\n // render.tsx, api/ssg requests\n this._req[NEXT_REQUEST_META] = this[NEXT_REQUEST_META]\n this._req.url = this.url\n this._req.cookies = this.cookies\n return this._req\n }\n\n set originalRequest(value: Req) {\n this._req = value\n }\n\n private streaming = false\n\n /**\n * Returns the request body as a Web Readable Stream. The body here can only\n * be read once as the body will start flowing as soon as the data handler\n * is attached.\n *\n * @internal\n */\n public stream() {\n if (this.streaming) {\n throw new Error(\n 'Invariant: NodeNextRequest.stream() can only be called once'\n )\n }\n this.streaming = true\n\n return new ReadableStream({\n start: (controller) => {\n this._req.on('data', (chunk) => {\n controller.enqueue(new Uint8Array(chunk))\n })\n this._req.on('end', () => {\n controller.close()\n })\n this._req.on('error', (err) => {\n controller.error(err)\n })\n },\n })\n }\n}\n\nexport class NodeNextResponse extends BaseNextResponse {\n private textBody: string | undefined = undefined\n\n public [SYMBOL_CLEARED_COOKIES]?: boolean\n\n get originalResponse() {\n if (SYMBOL_CLEARED_COOKIES in this) {\n this._res[SYMBOL_CLEARED_COOKIES] = this[SYMBOL_CLEARED_COOKIES]\n }\n\n return this._res\n }\n\n constructor(\n private _res: ServerResponse & { [SYMBOL_CLEARED_COOKIES]?: boolean }\n ) {\n super(_res)\n }\n\n get sent() {\n return this._res.finished || this._res.headersSent\n }\n\n get statusCode() {\n return this._res.statusCode\n }\n\n set statusCode(value: number) {\n this._res.statusCode = value\n }\n\n get statusMessage() {\n return this._res.statusMessage\n }\n\n set statusMessage(value: string) {\n this._res.statusMessage = value\n }\n\n setHeader(name: string, value: string | string[]): this {\n this._res.setHeader(name, value)\n return this\n }\n\n removeHeader(name: string): this {\n this._res.removeHeader(name)\n return this\n }\n\n getHeaderValues(name: string): string[] | undefined {\n const values = this._res.getHeader(name)\n\n if (values === undefined) return undefined\n\n return (Array.isArray(values) ? values : [values]).map((value) =>\n value.toString()\n )\n }\n\n hasHeader(name: string): boolean {\n return this._res.hasHeader(name)\n }\n\n getHeader(name: string): string | undefined {\n const values = this.getHeaderValues(name)\n return Array.isArray(values) ? values.join(',') : undefined\n }\n\n getHeaders(): OutgoingHttpHeaders {\n return this._res.getHeaders()\n }\n\n appendHeader(name: string, value: string): this {\n const currentValues = this.getHeaderValues(name) ?? []\n\n if (!currentValues.includes(value)) {\n this._res.setHeader(name, [...currentValues, value])\n }\n\n return this\n }\n\n body(value: string) {\n this.textBody = value\n return this\n }\n\n send() {\n this._res.end(this.textBody)\n }\n\n public onClose(callback: () => void) {\n this.originalResponse.on('close', callback)\n }\n}\n"],"names":["SYMBOL_CLEARED_COOKIES","NEXT_REQUEST_META","BaseNextRequest","BaseNextResponse","NodeNextRequest","constructor","_req","method","toUpperCase","url","headers","fetchMetrics","streaming","originalRequest","cookies","value","stream","Error","ReadableStream","start","controller","on","chunk","enqueue","Uint8Array","close","err","error","NodeNextResponse","originalResponse","_res","textBody","undefined","sent","finished","headersSent","statusCode","statusMessage","setHeader","name","removeHeader","getHeaderValues","values","getHeader","Array","isArray","map","toString","hasHeader","join","getHeaders","appendHeader","currentValues","includes","body","send","end","onClose","callback"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 620, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/experimental/ppr.ts"],"sourcesContent":["/**\n * If set to `incremental`, only those leaf pages that export\n * `experimental_ppr = true` will have partial prerendering enabled. If any\n * page exports this value as `false` or does not export it at all will not\n * have partial prerendering enabled. If set to a boolean, the options for\n * `experimental_ppr` will be ignored.\n */\n\nexport type ExperimentalPPRConfig = boolean | 'incremental'\n\n/**\n * Returns true if partial prerendering is enabled for the application. It does\n * not tell you if a given route has PPR enabled, as that requires analysis of\n * the route's configuration.\n *\n * @see {@link checkIsRoutePPREnabled} - for checking if a specific route has PPR enabled.\n */\nexport function checkIsAppPPREnabled(\n config: ExperimentalPPRConfig | undefined\n): boolean {\n // If the config is undefined, partial prerendering is disabled.\n if (typeof config === 'undefined') return false\n\n // If the config is a boolean, use it directly.\n if (typeof config === 'boolean') return config\n\n // If the config is a string, it must be 'incremental' to enable partial\n // prerendering.\n if (config === 'incremental') return true\n\n return false\n}\n\n/**\n * Returns true if partial prerendering is supported for the current page with\n * the provided app configuration. If the application doesn't have partial\n * prerendering enabled, this function will always return false. If you want to\n * check if the application has partial prerendering enabled\n *\n * @see {@link checkIsAppPPREnabled} for checking if the application has PPR enabled.\n */\nexport function checkIsRoutePPREnabled(\n config: ExperimentalPPRConfig | undefined\n): boolean {\n // If the config is undefined, partial prerendering is disabled.\n if (typeof config === 'undefined') return false\n\n // If the config is a boolean, use it directly.\n if (typeof config === 'boolean') return config\n\n return false\n}\n"],"names":["checkIsAppPPREnabled","config","checkIsRoutePPREnabled"],"mappings":"AAAA;;;;;;CAMC,GAID;;;;;;CAMC,GACD;;;;;;AAAO,SAASA,qBACdC,MAAyC;IAEzC,gEAAgE;IAChE,IAAI,OAAOA,WAAW,aAAa,OAAO;IAE1C,+CAA+C;IAC/C,IAAI,OAAOA,WAAW,WAAW,OAAOA;IAExC,wEAAwE;IACxE,gBAAgB;IAChB,IAAIA,WAAW,eAAe,OAAO;IAErC,OAAO;AACT;AAUO,SAASC,uBACdD,MAAyC;IAEzC,gEAAgE;IAChE,IAAI,OAAOA,WAAW,aAAa,OAAO;IAE1C,+CAA+C;IAC/C,IAAI,OAAOA,WAAW,WAAW,OAAOA;IAExC,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 659, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/checks.ts"],"sourcesContent":["import type { AppRouteRouteModule } from './app-route/module'\nimport type { AppPageRouteModule } from './app-page/module'\nimport type { PagesRouteModule } from './pages/module'\nimport type { PagesAPIRouteModule } from './pages-api/module'\n\nimport type { RouteModule } from './route-module'\n\nimport { RouteKind } from '../route-kind'\n\nexport function isAppRouteRouteModule(\n routeModule: RouteModule\n): routeModule is AppRouteRouteModule {\n return routeModule.definition.kind === RouteKind.APP_ROUTE\n}\n\nexport function isAppPageRouteModule(\n routeModule: RouteModule\n): routeModule is AppPageRouteModule {\n return routeModule.definition.kind === RouteKind.APP_PAGE\n}\n\nexport function isPagesRouteModule(\n routeModule: RouteModule\n): routeModule is PagesRouteModule {\n return routeModule.definition.kind === RouteKind.PAGES\n}\n\nexport function isPagesAPIRouteModule(\n routeModule: RouteModule\n): routeModule is PagesAPIRouteModule {\n return routeModule.definition.kind === RouteKind.PAGES_API\n}\n"],"names":["RouteKind","isAppRouteRouteModule","routeModule","definition","kind","APP_ROUTE","isAppPageRouteModule","APP_PAGE","isPagesRouteModule","PAGES","isPagesAPIRouteModule","PAGES_API"],"mappings":";;;;;;;;;;AAOA,SAASA,SAAS,QAAQ,gBAAe;;AAElC,SAASC,sBACdC,WAAwB;IAExB,OAAOA,YAAYC,UAAU,CAACC,IAAI,KAAKJ,2KAAAA,CAAUK,SAAS;AAC5D;AAEO,SAASC,qBACdJ,WAAwB;IAExB,OAAOA,YAAYC,UAAU,CAACC,IAAI,KAAKJ,2KAAAA,CAAUO,QAAQ;AAC3D;AAEO,SAASC,mBACdN,WAAwB;IAExB,OAAOA,YAAYC,UAAU,CAACC,IAAI,KAAKJ,2KAAAA,CAAUS,KAAK;AACxD;AAEO,SAASC,sBACdR,WAAwB;IAExB,OAAOA,YAAYC,UAAU,CAACC,IAAI,KAAKJ,2KAAAA,CAAUW,SAAS;AAC5D","ignoreList":[0]}}, - {"offset": {"line": 687, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n"],"names":["ensureLeadingSlash","path","startsWith"],"mappings":"AAAA;;;CAGC,GACD;;;;AAAO,SAASA,mBAAmBC,IAAY;IAC7C,OAAOA,KAAKC,UAAU,CAAC,OAAOD,OAAO,CAAC,CAAC,EAAEA,MAAM;AACjD","ignoreList":[0]}}, - {"offset": {"line": 701, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/app-paths.ts"],"sourcesContent":["import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n"],"names":["ensureLeadingSlash","isGroupSegment","normalizeAppPath","route","split","reduce","pathname","segment","index","segments","length","normalizeRscURL","url","replace"],"mappings":";;;;;;AAAA,SAASA,kBAAkB,QAAQ,uCAAsC;AACzE,SAASC,cAAc,QAAQ,gBAAe;;;AAqBvC,SAASC,iBAAiBC,KAAa;IAC5C,WAAOH,wNAAAA,EACLG,MAAMC,KAAK,CAAC,KAAKC,MAAM,CAAC,CAACC,UAAUC,SAASC,OAAOC;QACjD,8BAA8B;QAC9B,IAAI,CAACF,SAAS;YACZ,OAAOD;QACT;QAEA,sBAAsB;QACtB,QAAIL,iLAAAA,EAAeM,UAAU;YAC3B,OAAOD;QACT;QAEA,iCAAiC;QACjC,IAAIC,OAAO,CAAC,EAAE,KAAK,KAAK;YACtB,OAAOD;QACT;QAEA,uDAAuD;QACvD,IACGC,CAAAA,YAAY,UAAUA,YAAY,OAAM,KACzCC,UAAUC,SAASC,MAAM,GAAG,GAC5B;YACA,OAAOJ;QACT;QAEA,OAAO,GAAGA,SAAS,CAAC,EAAEC,SAAS;IACjC,GAAG;AAEP;AAMO,SAASI,gBAAgBC,GAAW;IACzC,OAAOA,IAAIC,OAAO,CAChB,eACA,AACA,8BAD8B;AAGlC","ignoreList":[0]}}, - {"offset": {"line": 739, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-routes.ts"],"sourcesContent":["import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n"],"names":["normalizeAppPath","INTERCEPTION_ROUTE_MARKERS","isInterceptionRouteAppPath","path","split","find","segment","m","startsWith","undefined","extractInterceptionRouteInformation","interceptingRoute","marker","interceptedRoute","Error","slice","concat","join","splitInterceptingRoute","length"],"mappings":";;;;;;;;AAAA,SAASA,gBAAgB,QAAQ,cAAa;;AAGvC,MAAMC,6BAA6B;IACxC;IACA;IACA;IACA;CACD,CAAS;AAIH,SAASC,2BAA2BC,IAAY;IACrD,wCAAwC;IACxC,OACEA,KACGC,KAAK,CAAC,KACNC,IAAI,CAAC,CAACC,UACLL,2BAA2BI,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD,SACtDE;AAEZ;AAiBO,SAASC,oCACdP,IAAY;IAEZ,IAAIQ;IACJ,IAAIC;IACJ,IAAIC;IAEJ,KAAK,MAAMP,WAAWH,KAAKC,KAAK,CAAC,KAAM;QACrCQ,SAASX,2BAA2BI,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD;QACnE,IAAIK,QAAQ;;YACT,CAACD,mBAAmBE,iBAAiB,GAAGV,KAAKC,KAAK,CAACQ,QAAQ;YAC5D;QACF;IACF;IAEA,IAAI,CAACD,qBAAqB,CAACC,UAAU,CAACC,kBAAkB;QACtD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,4BAA4B,EAAEX,KAAK,iFAAiF,CAAC,GADlH,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEAQ,wBAAoBX,2MAAAA,EAAiBW,mBAAmB,iDAAiD;;IAEzG,OAAQC;QACN,KAAK;YACH,oIAAoI;YACpI,IAAID,sBAAsB,KAAK;gBAC7BE,mBAAmB,CAAC,CAAC,EAAEA,kBAAkB;YAC3C,OAAO;gBACLA,mBAAmBF,oBAAoB,MAAME;YAC/C;YACA;QACF,KAAK;YACH,uHAAuH;YACvH,IAAIF,sBAAsB,KAAK;gBAC7B,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,CAAC,4BAA4B,EAAEX,KAAK,4DAA4D,CAAC,GAD7F,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YACAU,mBAAmBF,kBAChBP,KAAK,CAAC,KACNW,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACH,kBACPI,IAAI,CAAC;YACR;QACF,KAAK;YACH,kIAAkI;YAClIJ,mBAAmB,MAAMA;YACzB;QACF,KAAK;YACH,iIAAiI;YAEjI,MAAMK,yBAAyBP,kBAAkBP,KAAK,CAAC;YACvD,IAAIc,uBAAuBC,MAAM,IAAI,GAAG;gBACtC,MAAM,OAAA,cAEL,CAFK,IAAIL,MACR,CAAC,4BAA4B,EAAEX,KAAK,+DAA+D,CAAC,GADhG,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEAU,mBAAmBK,uBAChBH,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACH,kBACPI,IAAI,CAAC;YACR;QACF;YACE,MAAM,OAAA,cAAyC,CAAzC,IAAIH,MAAM,iCAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAAwC;IAClD;IAEA,OAAO;QAAEH;QAAmBE;IAAiB;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 832, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/get-segment-param.tsx"],"sourcesContent":["import { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport type { DynamicParamTypes } from '../../app-router-types'\n\nexport type SegmentParam = {\n paramName: string\n paramType: DynamicParamTypes\n}\n\n/**\n * Parse dynamic route segment to type of parameter\n */\nexport function getSegmentParam(segment: string): SegmentParam | null {\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((marker) =>\n segment.startsWith(marker)\n )\n\n // if an interception marker is part of the path segment, we need to jump ahead\n // to the relevant portion for param parsing\n if (interceptionMarker) {\n segment = segment.slice(interceptionMarker.length)\n }\n\n if (segment.startsWith('[[...') && segment.endsWith(']]')) {\n return {\n // TODO-APP: Optional catchall does not currently work with parallel routes,\n // so for now aren't handling a potential interception marker.\n paramType: 'optional-catchall',\n paramName: segment.slice(5, -2),\n }\n }\n\n if (segment.startsWith('[...') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `catchall-intercepted-${interceptionMarker}`\n : 'catchall',\n paramName: segment.slice(4, -1),\n }\n }\n\n if (segment.startsWith('[') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `dynamic-intercepted-${interceptionMarker}`\n : 'dynamic',\n paramName: segment.slice(1, -1),\n }\n }\n\n return null\n}\n\nexport function isCatchAll(\n type: DynamicParamTypes\n): type is\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall' {\n return (\n type === 'catchall' ||\n type === 'catchall-intercepted-(..)(..)' ||\n type === 'catchall-intercepted-(.)' ||\n type === 'catchall-intercepted-(..)' ||\n type === 'catchall-intercepted-(...)' ||\n type === 'optional-catchall'\n )\n}\n\nexport function getParamProperties(paramType: DynamicParamTypes): {\n repeat: boolean\n optional: boolean\n} {\n let repeat = false\n let optional = false\n\n switch (paramType) {\n case 'catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n repeat = true\n break\n case 'optional-catchall':\n repeat = true\n optional = true\n break\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n break\n default:\n paramType satisfies never\n }\n\n return { repeat, optional }\n}\n"],"names":["INTERCEPTION_ROUTE_MARKERS","getSegmentParam","segment","interceptionMarker","find","marker","startsWith","slice","length","endsWith","paramType","paramName","isCatchAll","type","getParamProperties","repeat","optional"],"mappings":";;;;;;;;AAAA,SAASA,0BAA0B,QAAQ,wBAAuB;;AAW3D,SAASC,gBAAgBC,OAAe;IAC7C,MAAMC,qBAAqBH,+NAAAA,CAA2BI,IAAI,CAAC,CAACC,SAC1DH,QAAQI,UAAU,CAACD;IAGrB,+EAA+E;IAC/E,4CAA4C;IAC5C,IAAIF,oBAAoB;QACtBD,UAAUA,QAAQK,KAAK,CAACJ,mBAAmBK,MAAM;IACnD;IAEA,IAAIN,QAAQI,UAAU,CAAC,YAAYJ,QAAQO,QAAQ,CAAC,OAAO;QACzD,OAAO;YACL,4EAA4E;YAC5E,8DAA8D;YAC9DC,WAAW;YACXC,WAAWT,QAAQK,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,IAAIL,QAAQI,UAAU,CAAC,WAAWJ,QAAQO,QAAQ,CAAC,MAAM;QACvD,OAAO;YACLC,WAAWP,qBACP,CAAC,qBAAqB,EAAEA,oBAAoB,GAC5C;YACJQ,WAAWT,QAAQK,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,IAAIL,QAAQI,UAAU,CAAC,QAAQJ,QAAQO,QAAQ,CAAC,MAAM;QACpD,OAAO;YACLC,WAAWP,qBACP,CAAC,oBAAoB,EAAEA,oBAAoB,GAC3C;YACJQ,WAAWT,QAAQK,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,OAAO;AACT;AAEO,SAASK,WACdC,IAAuB;IAQvB,OACEA,SAAS,cACTA,SAAS,mCACTA,SAAS,8BACTA,SAAS,+BACTA,SAAS,gCACTA,SAAS;AAEb;AAEO,SAASC,mBAAmBJ,SAA4B;IAI7D,IAAIK,SAAS;IACb,IAAIC,WAAW;IAEf,OAAQN;QACN,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACHK,SAAS;YACT;QACF,KAAK;YACHA,SAAS;YACTC,WAAW;YACX;QACF,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACH;QACF;YACEN;IACJ;IAEA,OAAO;QAAEK;QAAQC;IAAS;AAC5B","ignoreList":[0]}}, - {"offset": {"line": 907, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/routes/app.ts"],"sourcesContent":["import { InvariantError } from '../../invariant-error'\nimport { getSegmentParam, type SegmentParam } from '../utils/get-segment-param'\nimport {\n INTERCEPTION_ROUTE_MARKERS,\n type InterceptionMarker,\n} from '../utils/interception-routes'\n\nexport type RouteGroupAppRouteSegment = {\n type: 'route-group'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type ParallelRouteAppRouteSegment = {\n type: 'parallel-route'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type StaticAppRouteSegment = {\n type: 'static'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type DynamicAppRouteSegment = {\n type: 'dynamic'\n name: string\n param: SegmentParam\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\n/**\n * Represents a single segment in a route path.\n * Can be either static (e.g., \"blog\") or dynamic (e.g., \"[slug]\").\n */\nexport type AppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n | RouteGroupAppRouteSegment\n | ParallelRouteAppRouteSegment\n\nexport type NormalizedAppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n\nexport function parseAppRouteSegment(segment: string): AppRouteSegment | null {\n if (segment === '') {\n return null\n }\n\n // Check if the segment starts with an interception marker\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n\n const param = getSegmentParam(segment)\n if (param) {\n return {\n type: 'dynamic',\n name: segment,\n param,\n interceptionMarker,\n }\n } else if (segment.startsWith('(') && segment.endsWith(')')) {\n return {\n type: 'route-group',\n name: segment,\n interceptionMarker,\n }\n } else if (segment.startsWith('@')) {\n return {\n type: 'parallel-route',\n name: segment,\n interceptionMarker,\n }\n } else {\n return {\n type: 'static',\n name: segment,\n interceptionMarker,\n }\n }\n}\n\nexport type AppRoute = {\n normalized: boolean\n pathname: string\n segments: AppRouteSegment[]\n dynamicSegments: DynamicAppRouteSegment[]\n interceptionMarker: InterceptionMarker | undefined\n interceptingRoute: AppRoute | undefined\n interceptedRoute: AppRoute | undefined\n}\n\nexport type NormalizedAppRoute = Omit & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n}\n\nexport function isNormalizedAppRoute(\n route: InterceptionAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isNormalizedAppRoute(\n route: AppRoute | InterceptionAppRoute\n): route is NormalizedAppRoute {\n return route.normalized\n}\n\nexport type InterceptionAppRoute = Omit<\n AppRoute,\n 'interceptionMarker' | 'interceptingRoute' | 'interceptedRoute'\n> & {\n interceptionMarker: InterceptionMarker\n interceptingRoute: AppRoute\n interceptedRoute: AppRoute\n}\n\nexport type NormalizedInterceptionAppRoute = Omit<\n InterceptionAppRoute,\n | 'normalized'\n | 'segments'\n | 'interceptionMarker'\n | 'interceptingRoute'\n | 'interceptedRoute'\n> & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n interceptionMarker: InterceptionMarker\n interceptingRoute: NormalizedAppRoute\n interceptedRoute: NormalizedAppRoute\n}\n\nexport function isInterceptionAppRoute(\n route: NormalizedAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isInterceptionAppRoute(\n route: AppRoute\n): route is InterceptionAppRoute {\n return (\n route.interceptionMarker !== undefined &&\n route.interceptingRoute !== undefined &&\n route.interceptedRoute !== undefined\n )\n}\n\nexport function parseAppRoute(\n pathname: string,\n normalized: true\n): NormalizedAppRoute\nexport function parseAppRoute(pathname: string, normalized: false): AppRoute\nexport function parseAppRoute(\n pathname: string,\n normalized: boolean\n): AppRoute | NormalizedAppRoute {\n const pathnameSegments = pathname.split('/').filter(Boolean)\n\n // Build segments array with static and dynamic segments\n const segments: AppRouteSegment[] = []\n\n // Parse if this is an interception route.\n let interceptionMarker: InterceptionMarker | undefined\n let interceptingRoute: AppRoute | NormalizedAppRoute | undefined\n let interceptedRoute: AppRoute | NormalizedAppRoute | undefined\n\n for (const segment of pathnameSegments) {\n // Parse the segment into an AppSegment.\n const appSegment = parseAppRouteSegment(segment)\n if (!appSegment) {\n continue\n }\n\n if (\n normalized &&\n (appSegment.type === 'route-group' ||\n appSegment.type === 'parallel-route')\n ) {\n throw new InvariantError(\n `${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`\n )\n }\n\n segments.push(appSegment)\n\n if (appSegment.interceptionMarker) {\n const parts = pathname.split(appSegment.interceptionMarker)\n if (parts.length !== 2) {\n throw new Error(`Invalid interception route: ${pathname}`)\n }\n\n interceptingRoute = normalized\n ? parseAppRoute(parts[0], true)\n : parseAppRoute(parts[0], false)\n interceptedRoute = normalized\n ? parseAppRoute(parts[1], true)\n : parseAppRoute(parts[1], false)\n interceptionMarker = appSegment.interceptionMarker\n }\n }\n\n const dynamicSegments = segments.filter(\n (segment) => segment.type === 'dynamic'\n )\n\n return {\n normalized,\n pathname,\n segments,\n dynamicSegments,\n interceptionMarker,\n interceptingRoute,\n interceptedRoute,\n }\n}\n"],"names":["InvariantError","getSegmentParam","INTERCEPTION_ROUTE_MARKERS","parseAppRouteSegment","segment","interceptionMarker","find","m","startsWith","param","type","name","endsWith","isNormalizedAppRoute","route","normalized","isInterceptionAppRoute","undefined","interceptingRoute","interceptedRoute","parseAppRoute","pathname","pathnameSegments","split","filter","Boolean","segments","appSegment","push","parts","length","Error","dynamicSegments"],"mappings":";;;;;;;;;;AAAA,SAASA,cAAc,QAAQ,wBAAuB;AACtD,SAASC,eAAe,QAA2B,6BAA4B;AAC/E,SACEC,0BAA0B,QAErB,+BAA8B;;;;AAyD9B,SAASC,qBAAqBC,OAAe;IAClD,IAAIA,YAAY,IAAI;QAClB,OAAO;IACT;IAEA,0DAA0D;IAC1D,MAAMC,qBAAqBH,+NAAAA,CAA2BI,IAAI,CAAC,CAACC,IAC1DH,QAAQI,UAAU,CAACD;IAGrB,MAAME,YAAQR,qNAAAA,EAAgBG;IAC9B,IAAIK,OAAO;QACT,OAAO;YACLC,MAAM;YACNC,MAAMP;YACNK;YACAJ;QACF;IACF,OAAO,IAAID,QAAQI,UAAU,CAAC,QAAQJ,QAAQQ,QAAQ,CAAC,MAAM;QAC3D,OAAO;YACLF,MAAM;YACNC,MAAMP;YACNC;QACF;IACF,OAAO,IAAID,QAAQI,UAAU,CAAC,MAAM;QAClC,OAAO;YACLE,MAAM;YACNC,MAAMP;YACNC;QACF;IACF,OAAO;QACL,OAAO;YACLK,MAAM;YACNC,MAAMP;YACNC;QACF;IACF;AACF;AAoBO,SAASQ,qBACdC,KAAsC;IAEtC,OAAOA,MAAMC,UAAU;AACzB;AA6BO,SAASC,uBACdF,KAAe;IAEf,OACEA,MAAMT,kBAAkB,KAAKY,aAC7BH,MAAMI,iBAAiB,KAAKD,aAC5BH,MAAMK,gBAAgB,KAAKF;AAE/B;AAOO,SAASG,cACdC,QAAgB,EAChBN,UAAmB;IAEnB,MAAMO,mBAAmBD,SAASE,KAAK,CAAC,KAAKC,MAAM,CAACC;IAEpD,wDAAwD;IACxD,MAAMC,WAA8B,EAAE;IAEtC,0CAA0C;IAC1C,IAAIrB;IACJ,IAAIa;IACJ,IAAIC;IAEJ,KAAK,MAAMf,WAAWkB,iBAAkB;QACtC,wCAAwC;QACxC,MAAMK,aAAaxB,qBAAqBC;QACxC,IAAI,CAACuB,YAAY;YACf;QACF;QAEA,IACEZ,cACCY,CAAAA,WAAWjB,IAAI,KAAK,iBACnBiB,WAAWjB,IAAI,KAAK,gBAAe,GACrC;YACA,MAAM,OAAA,cAEL,CAFK,IAAIV,4LAAAA,CACR,GAAGqB,SAAS,2FAA2F,CAAC,GADpG,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEAK,SAASE,IAAI,CAACD;QAEd,IAAIA,WAAWtB,kBAAkB,EAAE;YACjC,MAAMwB,QAAQR,SAASE,KAAK,CAACI,WAAWtB,kBAAkB;YAC1D,IAAIwB,MAAMC,MAAM,KAAK,GAAG;gBACtB,MAAM,OAAA,cAAoD,CAApD,IAAIC,MAAM,CAAC,4BAA4B,EAAEV,UAAU,GAAnD,qBAAA;2BAAA;gCAAA;kCAAA;gBAAmD;YAC3D;YAEAH,oBAAoBH,aAChBK,cAAcS,KAAK,CAAC,EAAE,EAAE,QACxBT,cAAcS,KAAK,CAAC,EAAE,EAAE;YAC5BV,mBAAmBJ,aACfK,cAAcS,KAAK,CAAC,EAAE,EAAE,QACxBT,cAAcS,KAAK,CAAC,EAAE,EAAE;YAC5BxB,qBAAqBsB,WAAWtB,kBAAkB;QACpD;IACF;IAEA,MAAM2B,kBAAkBN,SAASF,MAAM,CACrC,CAACpB,UAAYA,QAAQM,IAAI,KAAK;IAGhC,OAAO;QACLK;QACAM;QACAK;QACAM;QACA3B;QACAa;QACAC;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1014, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-loader-tree.ts"],"sourcesContent":["import { DEFAULT_SEGMENT_KEY } from '../../segment'\nimport type { LoaderTree } from '../../../../server/lib/app-dir-module'\n\nexport function parseLoaderTree(tree: LoaderTree) {\n const [segment, parallelRoutes, modules] = tree\n const { layout, template } = modules\n let { page } = modules\n // a __DEFAULT__ segment means that this route didn't match any of the\n // segments in the route, so we should use the default page\n page = segment === DEFAULT_SEGMENT_KEY ? modules.defaultPage : page\n\n const conventionPath = layout?.[1] || template?.[1] || page?.[1]\n\n return {\n page,\n segment,\n modules,\n /* it can be either layout / template / page */\n conventionPath,\n parallelRoutes,\n }\n}\n"],"names":["DEFAULT_SEGMENT_KEY","parseLoaderTree","tree","segment","parallelRoutes","modules","layout","template","page","defaultPage","conventionPath"],"mappings":";;;;AAAA,SAASA,mBAAmB,QAAQ,gBAAe;;AAG5C,SAASC,gBAAgBC,IAAgB;IAC9C,MAAM,CAACC,SAASC,gBAAgBC,QAAQ,GAAGH;IAC3C,MAAM,EAAEI,MAAM,EAAEC,QAAQ,EAAE,GAAGF;IAC7B,IAAI,EAAEG,IAAI,EAAE,GAAGH;IACf,sEAAsE;IACtE,2DAA2D;IAC3DG,OAAOL,YAAYH,sLAAAA,GAAsBK,QAAQI,WAAW,GAAGD;IAE/D,MAAME,iBAAiBJ,QAAQ,CAAC,EAAE,IAAIC,UAAU,CAAC,EAAE,IAAIC,MAAM,CAAC,EAAE;IAEhE,OAAO;QACLA;QACAL;QACAE;QACA,6CAA6C,GAC7CK;QACAN;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1040, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-prefix-from-param-type.ts"],"sourcesContent":["import type { DynamicParamTypes } from '../../app-router-types'\n\nexport function interceptionPrefixFromParamType(\n paramType: DynamicParamTypes\n): string | null {\n switch (paramType) {\n case 'catchall-intercepted-(..)(..)':\n case 'dynamic-intercepted-(..)(..)':\n return '(..)(..)'\n case 'catchall-intercepted-(.)':\n case 'dynamic-intercepted-(.)':\n return '(.)'\n case 'catchall-intercepted-(..)':\n case 'dynamic-intercepted-(..)':\n return '(..)'\n case 'catchall-intercepted-(...)':\n case 'dynamic-intercepted-(...)':\n return '(...)'\n case 'catchall':\n case 'dynamic':\n case 'optional-catchall':\n default:\n return null\n }\n}\n"],"names":["interceptionPrefixFromParamType","paramType"],"mappings":";;;;AAEO,SAASA,gCACdC,SAA4B;IAE5B,OAAQA;QACN,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;QACL,KAAK;QACL;YACE,OAAO;IACX;AACF","ignoreList":[0]}}, - {"offset": {"line": 1069, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/resolve-param-value.ts"],"sourcesContent":["import type { Params } from '../../../../server/request/params'\nimport type { DynamicParamTypes } from '../../app-router-types'\nimport { InvariantError } from '../../invariant-error'\nimport type {\n NormalizedAppRoute,\n NormalizedAppRouteSegment,\n} from '../routes/app'\nimport { interceptionPrefixFromParamType } from './interception-prefix-from-param-type'\n\n/**\n * Extracts the param value from a path segment, handling interception markers\n * based on the expected param type.\n *\n * @param pathSegment - The path segment to extract the value from\n * @param params - The current params object for resolving dynamic param references\n * @param paramType - The expected param type which may include interception marker info\n * @returns The extracted param value\n */\nfunction getParamValueFromSegment(\n pathSegment: NormalizedAppRouteSegment,\n params: Params,\n paramType: DynamicParamTypes\n): string {\n // If the segment is dynamic, resolve it from the params object\n if (pathSegment.type === 'dynamic') {\n return params[pathSegment.param.paramName] as string\n }\n\n // If the paramType indicates this is an intercepted param, strip the marker\n // that matches the interception marker in the param type\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (interceptionPrefix === pathSegment.interceptionMarker) {\n return pathSegment.name.replace(pathSegment.interceptionMarker, '')\n }\n\n // For static segments, use the name\n return pathSegment.name\n}\n\n/**\n * Resolves a route parameter value from the route segments at the given depth.\n * This shared logic is used by both extractPathnameRouteParamSegmentsFromLoaderTree\n * and resolveRouteParamsFromTree.\n *\n * @param paramName - The parameter name to resolve\n * @param paramType - The parameter type (dynamic, catchall, etc.)\n * @param depth - The current depth in the route tree\n * @param route - The normalized route containing segments\n * @param params - The current params object (used to resolve embedded param references)\n * @param options - Configuration options\n * @returns The resolved parameter value, or undefined if it cannot be resolved\n */\nexport function resolveParamValue(\n paramName: string,\n paramType: DynamicParamTypes,\n depth: number,\n route: NormalizedAppRoute,\n params: Params\n): string | string[] | undefined {\n switch (paramType) {\n case 'catchall':\n case 'optional-catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n // For catchall routes, derive from pathname using depth to determine\n // which segments to use\n const processedSegments: string[] = []\n\n // Process segments to handle any embedded dynamic params\n for (let index = depth; index < route.segments.length; index++) {\n const pathSegment = route.segments[index]\n\n if (pathSegment.type === 'static') {\n let value = pathSegment.name\n\n // For intercepted catch-all params, strip the marker from the first segment\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (\n interceptionPrefix &&\n index === depth &&\n interceptionPrefix === pathSegment.interceptionMarker\n ) {\n // Strip the interception marker from the value\n value = value.replace(pathSegment.interceptionMarker, '')\n }\n\n processedSegments.push(value)\n } else {\n // If the segment is a param placeholder, check if we have its value\n if (!params.hasOwnProperty(pathSegment.param.paramName)) {\n // If the segment is an optional catchall, we can break out of the\n // loop because it's optional!\n if (pathSegment.param.paramType === 'optional-catchall') {\n break\n }\n\n // Unknown param placeholder in pathname - can't derive full value\n return undefined\n }\n\n // If the segment matches a param, use the param value\n // We don't encode values here as that's handled during retrieval.\n const paramValue = params[pathSegment.param.paramName]\n if (Array.isArray(paramValue)) {\n processedSegments.push(...paramValue)\n } else {\n processedSegments.push(paramValue as string)\n }\n }\n }\n\n if (processedSegments.length > 0) {\n return processedSegments\n } else if (paramType === 'optional-catchall') {\n return undefined\n } else {\n // We shouldn't be able to match a catchall segment without any path\n // segments if it's not an optional catchall\n throw new InvariantError(\n `Unexpected empty path segments match for a route \"${route.pathname}\" with param \"${paramName}\" of type \"${paramType}\"`\n )\n }\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n // For regular dynamic parameters, take the segment at this depth\n if (depth < route.segments.length) {\n const pathSegment = route.segments[depth]\n\n // Check if the segment at this depth is a placeholder for an unknown param\n if (\n pathSegment.type === 'dynamic' &&\n !params.hasOwnProperty(pathSegment.param.paramName)\n ) {\n // The segment is a placeholder like [category] and we don't have the value\n return undefined\n }\n\n // If the segment matches a param, use the param value from params object\n // Otherwise it's a static segment, just use it directly\n // We don't encode values here as that's handled during retrieval\n return getParamValueFromSegment(pathSegment, params, paramType)\n }\n\n return undefined\n\n default:\n paramType satisfies never\n }\n}\n"],"names":["InvariantError","interceptionPrefixFromParamType","getParamValueFromSegment","pathSegment","params","paramType","type","param","paramName","interceptionPrefix","interceptionMarker","name","replace","resolveParamValue","depth","route","processedSegments","index","segments","length","value","push","hasOwnProperty","undefined","paramValue","Array","isArray","pathname"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1183, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.ts"],"sourcesContent":["import type { LoaderTree } from '../../../server/lib/app-dir-module'\nimport type { Params } from '../../../server/request/params'\nimport type { DynamicParamTypes } from '../../../shared/lib/app-router-types'\nimport {\n parseAppRouteSegment,\n type NormalizedAppRoute,\n type NormalizedAppRouteSegment,\n} from '../../../shared/lib/router/routes/app'\nimport { parseLoaderTree } from '../../../shared/lib/router/utils/parse-loader-tree'\nimport { resolveParamValue } from '../../../shared/lib/router/utils/resolve-param-value'\n\n/**\n * Validates that the static segments in currentPath match the corresponding\n * segments in targetSegments. This ensures we only extract dynamic parameters\n * that are part of the target pathname structure.\n *\n * Segments are compared literally - interception markers like \"(.)photo\" are\n * part of the pathname and must match exactly.\n *\n * @example\n * // Matching paths\n * currentPath: ['blog', '(.)photo']\n * targetSegments: ['blog', '(.)photo', '[id]']\n * → Returns true (both static segments match exactly)\n *\n * @example\n * // Non-matching paths\n * currentPath: ['blog', '(.)photo']\n * targetSegments: ['blog', 'photo', '[id]']\n * → Returns false (segments don't match - marker is part of pathname)\n *\n * @param currentPath - The accumulated path segments from the loader tree\n * @param targetSegments - The target pathname split into segments\n * @returns true if all static segments match, false otherwise\n */\nfunction validatePrefixMatch(\n currentPath: NormalizedAppRouteSegment[],\n route: NormalizedAppRoute\n): boolean {\n for (let i = 0; i < currentPath.length; i++) {\n const pathSegment = currentPath[i]\n const targetPathSegment = route.segments[i]\n\n // Type mismatch - one is static, one is dynamic\n if (pathSegment.type !== targetPathSegment.type) {\n return false\n }\n\n // One has an interception marker, the other doesn't.\n if (\n pathSegment.interceptionMarker !== targetPathSegment.interceptionMarker\n ) {\n return false\n }\n\n // Both are static but names don't match\n if (\n pathSegment.type === 'static' &&\n targetPathSegment.type === 'static' &&\n pathSegment.name !== targetPathSegment.name\n ) {\n return false\n }\n // Both are dynamic but param names don't match\n else if (\n pathSegment.type === 'dynamic' &&\n targetPathSegment.type === 'dynamic' &&\n pathSegment.param.paramType !== targetPathSegment.param.paramType &&\n pathSegment.param.paramName !== targetPathSegment.param.paramName\n ) {\n return false\n }\n }\n\n return true\n}\n\n/**\n * Extracts pathname route param segments from a loader tree and resolves\n * parameter values from static segments in the route.\n *\n * @param loaderTree - The loader tree structure containing route hierarchy\n * @param route - The target route to match against\n * @returns Object containing pathname route param segments and resolved params\n */\nexport function extractPathnameRouteParamSegmentsFromLoaderTree(\n loaderTree: LoaderTree,\n route: NormalizedAppRoute\n): {\n pathnameRouteParamSegments: Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n }>\n params: Params\n} {\n const pathnameRouteParamSegments: Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n }> = []\n const params: Params = {}\n\n // BFS traversal with depth and path tracking\n const queue: Array<{\n tree: LoaderTree\n depth: number\n currentPath: NormalizedAppRouteSegment[]\n }> = [{ tree: loaderTree, depth: 0, currentPath: [] }]\n\n while (queue.length > 0) {\n const { tree, depth, currentPath } = queue.shift()!\n const { segment, parallelRoutes } = parseLoaderTree(tree)\n\n // Build the path for the current node\n let updatedPath = currentPath\n let nextDepth = depth\n\n const appSegment = parseAppRouteSegment(segment)\n\n // Only add to path if it's a real segment that appears in the URL\n // Route groups and parallel markers don't contribute to URL pathname\n if (\n appSegment &&\n appSegment.type !== 'route-group' &&\n appSegment.type !== 'parallel-route'\n ) {\n updatedPath = [...currentPath, appSegment]\n nextDepth = depth + 1\n }\n\n // Check if this segment has a param and matches the target pathname at this depth\n if (appSegment?.type === 'dynamic') {\n const { paramName, paramType } = appSegment.param\n\n // Check if this segment is at the correct depth in the target pathname\n // A segment matches if:\n // 1. There's a dynamic segment at this depth in the pathname\n // 2. The parameter names match (e.g., [id] matches [id], not [category])\n // 3. The static segments leading up to this point match (prefix check)\n if (depth < route.segments.length) {\n const targetSegment = route.segments[depth]\n\n // Match if the target pathname has a dynamic segment at this depth\n if (targetSegment.type === 'dynamic') {\n // Check that parameter names match exactly\n // This prevents [category] from matching against /[id]\n if (paramName !== targetSegment.param.paramName) {\n continue // Different param names, skip this segment\n }\n\n // Validate that the path leading up to this dynamic segment matches\n // the target pathname. This prevents false matches like extracting\n // [slug] from \"/news/[slug]\" when the tree has \"/blog/[slug]\"\n if (validatePrefixMatch(currentPath, route)) {\n pathnameRouteParamSegments.push({\n name: segment,\n paramName,\n paramType,\n })\n }\n }\n }\n\n // Resolve parameter value if it's not already known.\n if (!params.hasOwnProperty(paramName)) {\n const paramValue = resolveParamValue(\n paramName,\n paramType,\n depth,\n route,\n params\n )\n\n if (paramValue !== undefined) {\n params[paramName] = paramValue\n }\n }\n }\n\n // Continue traversing all parallel routes to find matching segments\n for (const parallelRoute of Object.values(parallelRoutes)) {\n queue.push({\n tree: parallelRoute,\n depth: nextDepth,\n currentPath: updatedPath,\n })\n }\n }\n\n return { pathnameRouteParamSegments, params }\n}\n"],"names":["parseAppRouteSegment","parseLoaderTree","resolveParamValue","validatePrefixMatch","currentPath","route","i","length","pathSegment","targetPathSegment","segments","type","interceptionMarker","name","param","paramType","paramName","extractPathnameRouteParamSegmentsFromLoaderTree","loaderTree","pathnameRouteParamSegments","params","queue","tree","depth","shift","segment","parallelRoutes","updatedPath","nextDepth","appSegment","targetSegment","push","hasOwnProperty","paramValue","undefined","parallelRoute","Object","values"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1319, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/static-paths/utils.ts"],"sourcesContent":["import type { LoaderTree } from '../../server/lib/app-dir-module'\nimport type { Params } from '../../server/request/params'\nimport type { AppPageRouteModule } from '../../server/route-modules/app-page/module.compiled'\nimport type { AppRouteRouteModule } from '../../server/route-modules/app-route/module.compiled'\nimport { isAppPageRouteModule } from '../../server/route-modules/checks'\nimport type { DynamicParamTypes } from '../../shared/lib/app-router-types'\nimport {\n parseAppRouteSegment,\n type NormalizedAppRoute,\n} from '../../shared/lib/router/routes/app'\nimport { parseLoaderTree } from '../../shared/lib/router/utils/parse-loader-tree'\nimport type { AppSegment } from '../segment-config/app/app-segments'\nimport { extractPathnameRouteParamSegmentsFromLoaderTree } from './app/extract-pathname-route-param-segments-from-loader-tree'\nimport { resolveParamValue } from '../../shared/lib/router/utils/resolve-param-value'\nimport type { FallbackRouteParam } from './types'\n\n/**\n * Encodes a parameter value using the provided encoder.\n *\n * @param value - The value to encode.\n * @param encoder - The encoder to use.\n * @returns The encoded value.\n */\nexport function encodeParam(\n value: string | string[],\n encoder: (value: string) => string\n) {\n let replaceValue: string\n if (Array.isArray(value)) {\n replaceValue = value.map(encoder).join('/')\n } else {\n replaceValue = encoder(value)\n }\n\n return replaceValue\n}\n\n/**\n * Normalizes a pathname to a consistent format.\n *\n * @param pathname - The pathname to normalize.\n * @returns The normalized pathname.\n */\nexport function normalizePathname(pathname: string) {\n return pathname.replace(/\\\\/g, '/').replace(/(?!^)\\/$/, '')\n}\n\n/**\n * Extracts segments that contribute to the pathname by traversing the loader tree\n * based on the route module type.\n *\n * @param routeModule - The app route module (page or route handler)\n * @param segments - Array of AppSegment objects collected from the route\n * @param page - The target pathname to match against, INCLUDING interception\n * markers (e.g., \"/blog/[slug]\", \"/(.)photo/[id]\")\n * @returns Array of segments with param info that contribute to the pathname\n */\nexport function extractPathnameRouteParamSegments(\n routeModule: AppRouteRouteModule | AppPageRouteModule,\n segments: readonly Readonly[],\n route: NormalizedAppRoute\n): Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n}> {\n // For AppPageRouteModule, use the loaderTree traversal approach\n if (isAppPageRouteModule(routeModule)) {\n const { pathnameRouteParamSegments } =\n extractPathnameRouteParamSegmentsFromLoaderTree(\n routeModule.userland.loaderTree,\n route\n )\n return pathnameRouteParamSegments\n }\n\n return extractPathnameRouteParamSegmentsFromSegments(segments)\n}\n\nexport function extractPathnameRouteParamSegmentsFromSegments(\n segments: readonly Readonly[]\n): Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n}> {\n // TODO: should we consider what values are already present in the page?\n\n // For AppRouteRouteModule, filter the segments array to get the route params\n // that contribute to the pathname.\n const result: Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n }> = []\n\n for (const segment of segments) {\n // Skip segments without param info.\n if (!segment.paramName || !segment.paramType) continue\n\n // Collect all the route param keys that contribute to the pathname.\n result.push({\n name: segment.name,\n paramName: segment.paramName,\n paramType: segment.paramType,\n })\n }\n\n return result\n}\n\n/**\n * Resolves all route parameters from the loader tree. This function uses\n * tree-based traversal to correctly handle the hierarchical structure of routes\n * and accurately determine parameter values based on their depth in the tree.\n *\n * This processes both regular route parameters (from the main children route) and\n * parallel route parameters (from slots like @modal, @sidebar).\n *\n * Unlike interpolateParallelRouteParams (which has a complete URL at runtime),\n * this build-time function determines which route params are unknown.\n * The pathname may contain placeholders like [slug], making it incomplete.\n *\n * @param loaderTree - The loader tree structure containing route hierarchy\n * @param params - The current route parameters object (will be mutated)\n * @param route - The current route being processed\n * @param fallbackRouteParams - Array of fallback route parameters (will be mutated)\n */\nexport function resolveRouteParamsFromTree(\n loaderTree: LoaderTree,\n params: Params,\n route: NormalizedAppRoute,\n fallbackRouteParams: FallbackRouteParam[]\n): void {\n // Stack-based traversal with depth tracking\n const stack: Array<{\n tree: LoaderTree\n depth: number\n }> = [{ tree: loaderTree, depth: 0 }]\n\n while (stack.length > 0) {\n const { tree, depth } = stack.pop()!\n const { segment, parallelRoutes } = parseLoaderTree(tree)\n\n const appSegment = parseAppRouteSegment(segment)\n\n // If this segment is a route parameter, then we should process it if it's\n // not already known and is not already marked as a fallback route param.\n if (\n appSegment?.type === 'dynamic' &&\n !params.hasOwnProperty(appSegment.param.paramName) &&\n !fallbackRouteParams.some(\n (param) => param.paramName === appSegment.param.paramName\n )\n ) {\n const { paramName, paramType } = appSegment.param\n\n const paramValue = resolveParamValue(\n paramName,\n paramType,\n depth,\n route,\n params\n )\n\n if (paramValue !== undefined) {\n params[paramName] = paramValue\n } else if (paramType !== 'optional-catchall') {\n // If we couldn't resolve the param, mark it as a fallback\n fallbackRouteParams.push({ paramName, paramType })\n }\n }\n\n // Calculate next depth - increment if this is not a route group and not empty\n let nextDepth = depth\n if (\n appSegment &&\n appSegment.type !== 'route-group' &&\n appSegment.type !== 'parallel-route'\n ) {\n nextDepth++\n }\n\n // Add all parallel routes to the stack for processing.\n for (const parallelRoute of Object.values(parallelRoutes)) {\n stack.push({ tree: parallelRoute, depth: nextDepth })\n }\n }\n}\n"],"names":["isAppPageRouteModule","parseAppRouteSegment","parseLoaderTree","extractPathnameRouteParamSegmentsFromLoaderTree","resolveParamValue","encodeParam","value","encoder","replaceValue","Array","isArray","map","join","normalizePathname","pathname","replace","extractPathnameRouteParamSegments","routeModule","segments","route","pathnameRouteParamSegments","userland","loaderTree","extractPathnameRouteParamSegmentsFromSegments","result","segment","paramName","paramType","push","name","resolveRouteParamsFromTree","params","fallbackRouteParams","stack","tree","depth","length","pop","parallelRoutes","appSegment","type","hasOwnProperty","param","some","paramValue","undefined","nextDepth","parallelRoute","Object","values"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1423, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/get-short-dynamic-param-type.tsx"],"sourcesContent":["import type {\n DynamicParamTypes,\n DynamicParamTypesShort,\n} from '../../shared/lib/app-router-types'\n\nexport const dynamicParamTypes: Record<\n DynamicParamTypes,\n DynamicParamTypesShort\n> = {\n catchall: 'c',\n 'catchall-intercepted-(..)(..)': 'ci(..)(..)',\n 'catchall-intercepted-(.)': 'ci(.)',\n 'catchall-intercepted-(..)': 'ci(..)',\n 'catchall-intercepted-(...)': 'ci(...)',\n 'optional-catchall': 'oc',\n dynamic: 'd',\n 'dynamic-intercepted-(..)(..)': 'di(..)(..)',\n 'dynamic-intercepted-(.)': 'di(.)',\n 'dynamic-intercepted-(..)': 'di(..)',\n 'dynamic-intercepted-(...)': 'di(...)',\n}\n"],"names":["dynamicParamTypes","catchall","dynamic"],"mappings":";;;;AAKO,MAAMA,oBAGT;IACFC,UAAU;IACV,iCAAiC;IACjC,4BAA4B;IAC5B,6BAA6B;IAC7B,8BAA8B;IAC9B,qBAAqB;IACrBC,SAAS;IACT,gCAAgC;IAChC,2BAA2B;IAC3B,4BAA4B;IAC5B,6BAA6B;AAC/B,EAAC","ignoreList":[0]}}, - {"offset": {"line": 1444, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/fallback-params.ts"],"sourcesContent":["import { resolveRouteParamsFromTree } from '../../build/static-paths/utils'\nimport type { FallbackRouteParam } from '../../build/static-paths/types'\nimport type { DynamicParamTypesShort } from '../../shared/lib/app-router-types'\nimport { dynamicParamTypes } from '../app-render/get-short-dynamic-param-type'\nimport type AppPageRouteModule from '../route-modules/app-page/module'\nimport { parseAppRoute } from '../../shared/lib/router/routes/app'\nimport { extractPathnameRouteParamSegmentsFromLoaderTree } from '../../build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree'\n\nexport type OpaqueFallbackRouteParamValue = [\n /**\n * The search value of the fallback route param. This is the opaque key\n * that will be used to replace the dynamic param in the postponed state.\n */\n searchValue: string,\n\n /**\n * The dynamic param type of the fallback route param. This is the type of\n * the dynamic param that will be used to replace the dynamic param in the\n * postponed state.\n */\n dynamicParamType: DynamicParamTypesShort,\n]\n\n/**\n * An opaque fallback route params object. This is used to store the fallback\n * route params in a way that is not easily accessible to the client.\n */\nexport type OpaqueFallbackRouteParams = ReadonlyMap<\n string,\n OpaqueFallbackRouteParamValue\n>\n\n/**\n * The entries of the opaque fallback route params object.\n *\n * @param key the key of the fallback route param\n * @param value the value of the fallback route param\n */\nexport type OpaqueFallbackRouteParamEntries =\n ReturnType extends MapIterator<\n [infer K, infer V]\n >\n ? ReadonlyArray<[K, V]>\n : never\n\n/**\n * Creates an opaque fallback route params object from the fallback route params.\n *\n * @param fallbackRouteParams the fallback route params\n * @returns the opaque fallback route params\n */\nexport function createOpaqueFallbackRouteParams(\n fallbackRouteParams: readonly FallbackRouteParam[]\n): OpaqueFallbackRouteParams | null {\n // If there are no fallback route params, we can return early.\n if (fallbackRouteParams.length === 0) return null\n\n // As we're creating unique keys for each of the dynamic route params, we only\n // need to generate a unique ID once per request because each of the keys will\n // be also be unique.\n const uniqueID = Math.random().toString(16).slice(2)\n\n const keys = new Map()\n\n // Generate a unique key for the fallback route param, if this key is found\n // in the static output, it represents a bug in cache components.\n for (const { paramName, paramType } of fallbackRouteParams) {\n keys.set(paramName, [\n `%%drp:${paramName}:${uniqueID}%%`,\n dynamicParamTypes[paramType],\n ])\n }\n\n return keys\n}\n\n/**\n * Gets the fallback route params for a given page. This is an expensive\n * operation because it requires parsing the loader tree to extract the fallback\n * route params.\n *\n * @param page the page\n * @param routeModule the route module\n * @returns the opaque fallback route params\n */\nexport function getFallbackRouteParams(\n page: string,\n routeModule: AppPageRouteModule\n) {\n const route = parseAppRoute(page, true)\n\n // Extract the pathname-contributing segments from the loader tree. This\n // mirrors the logic in buildAppStaticPaths where we determine which segments\n // actually contribute to the pathname.\n const { pathnameRouteParamSegments, params } =\n extractPathnameRouteParamSegmentsFromLoaderTree(\n routeModule.userland.loaderTree,\n route\n )\n\n // Create fallback route params for the pathname segments.\n const fallbackRouteParams: FallbackRouteParam[] =\n pathnameRouteParamSegments.map(({ paramName, paramType }) => ({\n paramName,\n paramType,\n }))\n\n // Resolve route params from the loader tree. This mutates the\n // fallbackRouteParams array to add any route params that are\n // unknown at request time.\n //\n // The page parameter contains placeholders like [slug], which helps\n // resolveRouteParamsFromTree determine which params are unknown.\n resolveRouteParamsFromTree(\n routeModule.userland.loaderTree,\n params, // Static params extracted from the page\n route, // The page pattern with placeholders\n fallbackRouteParams // Will be mutated to add route params\n )\n\n // Convert the fallback route params to an opaque format that can be safely\n // used in the postponed state without exposing implementation details.\n return createOpaqueFallbackRouteParams(fallbackRouteParams)\n}\n"],"names":["resolveRouteParamsFromTree","dynamicParamTypes","parseAppRoute","extractPathnameRouteParamSegmentsFromLoaderTree","createOpaqueFallbackRouteParams","fallbackRouteParams","length","uniqueID","Math","random","toString","slice","keys","Map","paramName","paramType","set","getFallbackRouteParams","page","routeModule","route","pathnameRouteParamSegments","params","userland","loaderTree","map"],"mappings":";;;;;;AAAA,SAASA,0BAA0B,QAAQ,iCAAgC;AAG3E,SAASC,iBAAiB,QAAQ,6CAA4C;AAE9E,SAASC,aAAa,QAAQ,qCAAoC;AAClE,SAASC,+CAA+C,QAAQ,sFAAqF;;;;;AA6C9I,SAASC,gCACdC,mBAAkD;IAElD,8DAA8D;IAC9D,IAAIA,oBAAoBC,MAAM,KAAK,GAAG,OAAO;IAE7C,8EAA8E;IAC9E,8EAA8E;IAC9E,qBAAqB;IACrB,MAAMC,WAAWC,KAAKC,MAAM,GAAGC,QAAQ,CAAC,IAAIC,KAAK,CAAC;IAElD,MAAMC,OAAO,IAAIC;IAEjB,2EAA2E;IAC3E,iEAAiE;IACjE,KAAK,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAE,IAAIV,oBAAqB;QAC1DO,KAAKI,GAAG,CAACF,WAAW;YAClB,CAAC,MAAM,EAAEA,UAAU,CAAC,EAAEP,SAAS,EAAE,CAAC;YAClCN,+NAAiB,CAACc,UAAU;SAC7B;IACH;IAEA,OAAOH;AACT;AAWO,SAASK,uBACdC,IAAY,EACZC,WAA+B;IAE/B,MAAMC,YAAQlB,gMAAAA,EAAcgB,MAAM;IAElC,wEAAwE;IACxE,6EAA6E;IAC7E,uCAAuC;IACvC,MAAM,EAAEG,0BAA0B,EAAEC,MAAM,EAAE,OAC1CnB,wSAAAA,EACEgB,YAAYI,QAAQ,CAACC,UAAU,EAC/BJ;IAGJ,0DAA0D;IAC1D,MAAMf,sBACJgB,2BAA2BI,GAAG,CAAC,CAAC,EAAEX,SAAS,EAAEC,SAAS,EAAE,GAAM,CAAA;YAC5DD;YACAC;QACF,CAAA;IAEF,8DAA8D;IAC9D,6DAA6D;IAC7D,2BAA2B;IAC3B,EAAE;IACF,oEAAoE;IACpE,iEAAiE;QACjEf,sMAAAA,EACEmB,YAAYI,QAAQ,CAACC,UAAU,EAC/BF,QACAF,OACAf,oBAAoB,sCAAsC;;IAG5D,2EAA2E;IAC3E,uEAAuE;IACvE,OAAOD,gCAAgCC;AACzC","ignoreList":[0]}}, - {"offset": {"line": 1503, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/manifests-singleton.ts"],"sourcesContent":["import type { ActionManifest } from '../../build/webpack/plugins/flight-client-entry-plugin'\nimport type { ClientReferenceManifest } from '../../build/webpack/plugins/flight-manifest-plugin'\nimport type { DeepReadonly } from '../../shared/lib/deep-readonly'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { pathHasPrefix } from '../../shared/lib/router/utils/path-has-prefix'\nimport { removePathPrefix } from '../../shared/lib/router/utils/remove-path-prefix'\nimport { workAsyncStorage } from './work-async-storage.external'\n\nexport interface ServerModuleMap {\n readonly [name: string]: {\n readonly id: string | number\n readonly name: string\n readonly chunks: Readonly> // currently not used\n readonly async?: boolean\n }\n}\n\n// This is a global singleton that is, among other things, also used to\n// encode/decode bound args of server function closures. This can't be using a\n// AsyncLocalStorage as it might happen at the module level.\nconst MANIFESTS_SINGLETON = Symbol.for('next.server.manifests')\n\ninterface ManifestsSingleton {\n readonly clientReferenceManifestsPerRoute: Map<\n string,\n DeepReadonly\n >\n readonly proxiedClientReferenceManifest: DeepReadonly\n serverActionsManifest: DeepReadonly\n serverModuleMap: ServerModuleMap\n}\n\ntype GlobalThisWithManifests = typeof globalThis & {\n [MANIFESTS_SINGLETON]?: ManifestsSingleton\n}\n\ntype ClientReferenceManifestMappingProp =\n | 'clientModules'\n | 'rscModuleMapping'\n | 'edgeRscModuleMapping'\n | 'ssrModuleMapping'\n | 'edgeSSRModuleMapping'\n\nconst globalThisWithManifests = globalThis as GlobalThisWithManifests\n\nfunction createProxiedClientReferenceManifest(\n clientReferenceManifestsPerRoute: Map<\n string,\n DeepReadonly\n >\n): DeepReadonly {\n const createMappingProxy = (prop: ClientReferenceManifestMappingProp) => {\n return new Proxy(\n {},\n {\n get(_, id: string) {\n const workStore = workAsyncStorage.getStore()\n\n if (workStore) {\n const currentManifest = clientReferenceManifestsPerRoute.get(\n workStore.route\n )\n\n if (currentManifest?.[prop][id]) {\n return currentManifest[prop][id]\n }\n\n // In development, we also check all other manifests to see if the\n // module exists there. This is to support a scenario where React's\n // I/O tracking (dev-only) creates a connection from one page to\n // another through an emitted async I/O node that references client\n // components from the other page, e.g. in owner props.\n // TODO: Maybe we need to add a `debugBundlerConfig` option to React\n // to avoid this workaround. The current workaround has the\n // disadvantage that one might accidentally or intentionally share\n // client references across pages (e.g. by storing them in a global\n // variable), which would then only be caught in production.\n if (process.env.NODE_ENV !== 'production') {\n for (const [\n route,\n manifest,\n ] of clientReferenceManifestsPerRoute) {\n if (route === workStore.route) {\n continue\n }\n\n const entry = manifest[prop][id]\n\n if (entry !== undefined) {\n return entry\n }\n }\n }\n } else {\n // If there's no work store defined, we can assume that a client\n // reference manifest is needed during module evaluation, e.g. to\n // create a server function using a higher-order function. This\n // might also use client components which need to be serialized by\n // Flight, and therefore client references need to be resolvable. In\n // that case we search all page manifests to find the module.\n for (const manifest of clientReferenceManifestsPerRoute.values()) {\n const entry = manifest[prop][id]\n\n if (entry !== undefined) {\n return entry\n }\n }\n }\n\n return undefined\n },\n }\n )\n }\n\n const mappingProxies = new Map<\n ClientReferenceManifestMappingProp,\n ReturnType\n >()\n\n return new Proxy(\n {},\n {\n get(_, prop) {\n const workStore = workAsyncStorage.getStore()\n\n switch (prop) {\n case 'moduleLoading':\n case 'entryCSSFiles':\n case 'entryJSFiles': {\n if (!workStore) {\n throw new InvariantError(\n `Cannot access \"${prop}\" without a work store.`\n )\n }\n\n const currentManifest = clientReferenceManifestsPerRoute.get(\n workStore.route\n )\n\n if (!currentManifest) {\n throw new InvariantError(\n `The client reference manifest for route \"${workStore.route}\" does not exist.`\n )\n }\n\n return currentManifest[prop]\n }\n case 'clientModules':\n case 'rscModuleMapping':\n case 'edgeRscModuleMapping':\n case 'ssrModuleMapping':\n case 'edgeSSRModuleMapping': {\n let proxy = mappingProxies.get(prop)\n\n if (!proxy) {\n proxy = createMappingProxy(prop)\n mappingProxies.set(prop, proxy)\n }\n\n return proxy\n }\n default: {\n throw new InvariantError(\n `This is a proxied client reference manifest. The property \"${String(prop)}\" is not handled.`\n )\n }\n }\n },\n }\n ) as DeepReadonly\n}\n\n/**\n * This function creates a Flight-acceptable server module map proxy from our\n * Server Reference Manifest similar to our client module map. This is because\n * our manifest contains a lot of internal Next.js data that are relevant to the\n * runtime, workers, etc. that React doesn't need to know.\n */\nfunction createServerModuleMap(): ServerModuleMap {\n return new Proxy(\n {},\n {\n get: (_, id: string) => {\n const workers =\n getServerActionsManifest()[\n process.env.NEXT_RUNTIME === 'edge' ? 'edge' : 'node'\n ]?.[id]?.workers\n\n if (!workers) {\n return undefined\n }\n\n const workStore = workAsyncStorage.getStore()\n\n let workerEntry:\n | { moduleId: string | number; async: boolean }\n | undefined\n\n if (workStore) {\n workerEntry = workers[normalizeWorkerPageName(workStore.page)]\n } else {\n // If there's no work store defined, we can assume that a server\n // module map is needed during module evaluation, e.g. to create a\n // server action using a higher-order function. Therefore it should be\n // safe to return any entry from the manifest that matches the action\n // ID. They all refer to the same module ID, which must also exist in\n // the current page bundle. TODO: This is currently not guaranteed in\n // Turbopack, and needs to be fixed.\n workerEntry = Object.values(workers).at(0)\n }\n\n if (!workerEntry) {\n return undefined\n }\n\n const { moduleId, async } = workerEntry\n\n return { id: moduleId, name: id, chunks: [], async }\n },\n }\n )\n}\n\n/**\n * The flight entry loader keys actions by bundlePath. bundlePath corresponds\n * with the relative path (including 'app') to the page entrypoint.\n */\nfunction normalizeWorkerPageName(pageName: string) {\n if (pathHasPrefix(pageName, 'app')) {\n return pageName\n }\n\n return 'app' + pageName\n}\n\n/**\n * Converts a bundlePath (relative path to the entrypoint) to a routable page\n * name.\n */\nfunction denormalizeWorkerPageName(bundlePath: string) {\n return normalizeAppPath(removePathPrefix(bundlePath, 'app'))\n}\n\n/**\n * Checks if the requested action has a worker for the current page.\n * If not, it returns the first worker that has a handler for the action.\n */\nexport function selectWorkerForForwarding(\n actionId: string,\n pageName: string\n): string | undefined {\n const serverActionsManifest = getServerActionsManifest()\n const workers =\n serverActionsManifest[\n process.env.NEXT_RUNTIME === 'edge' ? 'edge' : 'node'\n ][actionId]?.workers\n\n // There are no workers to handle this action, nothing to forward to.\n if (!workers) {\n return\n }\n\n // If there is an entry for the current page, we don't need to forward.\n if (workers[normalizeWorkerPageName(pageName)]) {\n return\n }\n\n // Otherwise, grab the first worker that has a handler for this action id.\n return denormalizeWorkerPageName(Object.keys(workers)[0])\n}\n\nexport function setManifestsSingleton({\n page,\n clientReferenceManifest,\n serverActionsManifest,\n}: {\n page: string\n clientReferenceManifest: DeepReadonly\n serverActionsManifest: DeepReadonly\n}) {\n const existingSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]\n\n if (existingSingleton) {\n existingSingleton.clientReferenceManifestsPerRoute.set(\n normalizeAppPath(page),\n clientReferenceManifest\n )\n\n existingSingleton.serverActionsManifest = serverActionsManifest\n } else {\n const clientReferenceManifestsPerRoute = new Map<\n string,\n DeepReadonly\n >([[normalizeAppPath(page), clientReferenceManifest]])\n\n const proxiedClientReferenceManifest = createProxiedClientReferenceManifest(\n clientReferenceManifestsPerRoute\n )\n\n globalThisWithManifests[MANIFESTS_SINGLETON] = {\n clientReferenceManifestsPerRoute,\n proxiedClientReferenceManifest,\n serverActionsManifest,\n serverModuleMap: createServerModuleMap(),\n }\n }\n}\n\nfunction getManifestsSingleton(): ManifestsSingleton {\n const manifestSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]\n\n if (!manifestSingleton) {\n throw new InvariantError('The manifests singleton was not initialized.')\n }\n\n return manifestSingleton\n}\n\nexport function getClientReferenceManifest(): DeepReadonly {\n return getManifestsSingleton().proxiedClientReferenceManifest\n}\n\nexport function getServerActionsManifest(): DeepReadonly {\n return getManifestsSingleton().serverActionsManifest\n}\n\nexport function getServerModuleMap() {\n return getManifestsSingleton().serverModuleMap\n}\n"],"names":["InvariantError","normalizeAppPath","pathHasPrefix","removePathPrefix","workAsyncStorage","MANIFESTS_SINGLETON","Symbol","for","globalThisWithManifests","globalThis","createProxiedClientReferenceManifest","clientReferenceManifestsPerRoute","createMappingProxy","prop","Proxy","get","_","id","workStore","getStore","currentManifest","route","process","env","NODE_ENV","manifest","entry","undefined","values","mappingProxies","Map","proxy","set","String","createServerModuleMap","getServerActionsManifest","workers","NEXT_RUNTIME","workerEntry","normalizeWorkerPageName","page","Object","at","moduleId","async","name","chunks","pageName","denormalizeWorkerPageName","bundlePath","selectWorkerForForwarding","actionId","serverActionsManifest","keys","setManifestsSingleton","clientReferenceManifest","existingSingleton","proxiedClientReferenceManifest","serverModuleMap","getManifestsSingleton","manifestSingleton","getClientReferenceManifest","getServerModuleMap"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1745, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/html-bots.ts"],"sourcesContent":["// This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent.\n// Note: The pattern [\\w-]+-Google captures all Google crawlers with \"-Google\" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google)\n// as well as crawlers starting with \"Google-\" (e.g., Google-PageRenderer, Google-InspectionTool)\nexport const HTML_LIMITED_BOT_UA_RE =\n /[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i\n"],"names":["HTML_LIMITED_BOT_UA_RE"],"mappings":"AAAA,6GAA6G;AAC7G,sKAAsK;AACtK,kJAAkJ;AAClJ,iGAAiG;;;;;AAC1F,MAAMA,yBACX,sTAAqT","ignoreList":[0]}}, - {"offset": {"line": 1758, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/is-bot.ts"],"sourcesContent":["import { HTML_LIMITED_BOT_UA_RE } from './html-bots'\n\n// Bot crawler that will spin up a headless browser and execute JS.\n// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers.\n// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers\n// This regex specifically matches \"Googlebot\" but NOT \"Mediapartners-Google\", \"AdsBot-Google\", etc.\nconst HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i\n\nexport const HTML_LIMITED_BOT_UA_RE_STRING = HTML_LIMITED_BOT_UA_RE.source\n\nexport { HTML_LIMITED_BOT_UA_RE }\n\nfunction isDomBotUA(userAgent: string) {\n return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent)\n}\n\nfunction isHtmlLimitedBotUA(userAgent: string) {\n return HTML_LIMITED_BOT_UA_RE.test(userAgent)\n}\n\nexport function isBot(userAgent: string): boolean {\n return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent)\n}\n\nexport function getBotType(userAgent: string): 'dom' | 'html' | undefined {\n if (isDomBotUA(userAgent)) {\n return 'dom'\n }\n if (isHtmlLimitedBotUA(userAgent)) {\n return 'html'\n }\n return undefined\n}\n"],"names":["HTML_LIMITED_BOT_UA_RE","HEADLESS_BROWSER_BOT_UA_RE","HTML_LIMITED_BOT_UA_RE_STRING","source","isDomBotUA","userAgent","test","isHtmlLimitedBotUA","isBot","getBotType","undefined"],"mappings":";;;;;;;;AAAA,SAASA,sBAAsB,QAAQ,cAAa;;AAEpD,mEAAmE;AACnE,yFAAyF;AACzF,4FAA4F;AAC5F,oGAAoG;AACpG,MAAMC,6BAA6B;AAE5B,MAAMC,gCAAgCF,iNAAAA,CAAuBG,MAAM,CAAA;;AAI1E,SAASC,WAAWC,SAAiB;IACnC,OAAOJ,2BAA2BK,IAAI,CAACD;AACzC;AAEA,SAASE,mBAAmBF,SAAiB;IAC3C,OAAOL,iNAAAA,CAAuBM,IAAI,CAACD;AACrC;AAEO,SAASG,MAAMH,SAAiB;IACrC,OAAOD,WAAWC,cAAcE,mBAAmBF;AACrD;AAEO,SAASI,WAAWJ,SAAiB;IAC1C,IAAID,WAAWC,YAAY;QACzB,OAAO;IACT;IACA,IAAIE,mBAAmBF,YAAY;QACjC,OAAO;IACT;IACA,OAAOK;AACT","ignoreList":[0]}}, - {"offset": {"line": 1797, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/streaming-metadata.ts"],"sourcesContent":["import {\n getBotType,\n HTML_LIMITED_BOT_UA_RE_STRING,\n} from '../../shared/lib/router/utils/is-bot'\nimport type { BaseNextRequest } from '../base-http'\n\nexport function shouldServeStreamingMetadata(\n userAgent: string,\n htmlLimitedBots: string | undefined\n): boolean {\n const blockingMetadataUARegex = new RegExp(\n htmlLimitedBots || HTML_LIMITED_BOT_UA_RE_STRING,\n 'i'\n )\n // Only block metadata for HTML-limited bots\n if (userAgent && blockingMetadataUARegex.test(userAgent)) {\n return false\n }\n return true\n}\n\n// When the request UA is a html-limited bot, we should do a dynamic render.\n// In this case, postpone state is not sent.\nexport function isHtmlBotRequest(req: {\n headers: BaseNextRequest['headers']\n}): boolean {\n const ua = req.headers['user-agent'] || ''\n const botType = getBotType(ua)\n\n return botType === 'html'\n}\n"],"names":["getBotType","HTML_LIMITED_BOT_UA_RE_STRING","shouldServeStreamingMetadata","userAgent","htmlLimitedBots","blockingMetadataUARegex","RegExp","test","isHtmlBotRequest","req","ua","headers","botType"],"mappings":";;;;;;AAAA,SACEA,UAAU,EACVC,6BAA6B,QACxB,uCAAsC;;AAGtC,SAASC,6BACdC,SAAiB,EACjBC,eAAmC;IAEnC,MAAMC,0BAA0B,IAAIC,OAClCF,mBAAmBH,qOAAAA,EACnB;IAEF,4CAA4C;IAC5C,IAAIE,aAAaE,wBAAwBE,IAAI,CAACJ,YAAY;QACxD,OAAO;IACT;IACA,OAAO;AACT;AAIO,SAASK,iBAAiBC,GAEhC;IACC,MAAMC,KAAKD,IAAIE,OAAO,CAAC,aAAa,IAAI;IACxC,MAAMC,cAAUZ,kNAAAA,EAAWU;IAE3B,OAAOE,YAAY;AACrB","ignoreList":[0]}}, - {"offset": {"line": 1822, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/server-action-request-meta.ts"],"sourcesContent":["import type { IncomingMessage } from 'http'\nimport type { BaseNextRequest } from '../base-http'\nimport type { NextRequest } from '../web/exports'\nimport { ACTION_HEADER } from '../../client/components/app-router-headers'\n\nexport function getServerActionRequestMetadata(\n req: IncomingMessage | BaseNextRequest | NextRequest\n): {\n actionId: string | null\n isURLEncodedAction: boolean\n isMultipartAction: boolean\n isFetchAction: boolean\n isPossibleServerAction: boolean\n} {\n let actionId: string | null\n let contentType: string | null\n\n if (req.headers instanceof Headers) {\n actionId = req.headers.get(ACTION_HEADER) ?? null\n contentType = req.headers.get('content-type')\n } else {\n actionId = (req.headers[ACTION_HEADER] as string) ?? null\n contentType = req.headers['content-type'] ?? null\n }\n\n // We don't actually support URL encoded actions, and the action handler will bail out if it sees one.\n // But we still want it to flow through to the action handler, to prevent changes in behavior when a regular\n // page component tries to handle a POST.\n const isURLEncodedAction = Boolean(\n req.method === 'POST' && contentType === 'application/x-www-form-urlencoded'\n )\n const isMultipartAction = Boolean(\n req.method === 'POST' && contentType?.startsWith('multipart/form-data')\n )\n const isFetchAction = Boolean(\n actionId !== undefined &&\n typeof actionId === 'string' &&\n req.method === 'POST'\n )\n\n const isPossibleServerAction = Boolean(\n isFetchAction || isURLEncodedAction || isMultipartAction\n )\n\n return {\n actionId,\n isURLEncodedAction,\n isMultipartAction,\n isFetchAction,\n isPossibleServerAction,\n }\n}\n\nexport function getIsPossibleServerAction(\n req: IncomingMessage | BaseNextRequest | NextRequest\n): boolean {\n return getServerActionRequestMetadata(req).isPossibleServerAction\n}\n"],"names":["ACTION_HEADER","getServerActionRequestMetadata","req","actionId","contentType","headers","Headers","get","isURLEncodedAction","Boolean","method","isMultipartAction","startsWith","isFetchAction","undefined","isPossibleServerAction","getIsPossibleServerAction"],"mappings":";;;;;;AAGA,SAASA,aAAa,QAAQ,6CAA4C;;AAEnE,SAASC,+BACdC,GAAoD;IAQpD,IAAIC;IACJ,IAAIC;IAEJ,IAAIF,IAAIG,OAAO,YAAYC,SAAS;QAClCH,WAAWD,IAAIG,OAAO,CAACE,GAAG,CAACP,wMAAAA,KAAkB;QAC7CI,cAAcF,IAAIG,OAAO,CAACE,GAAG,CAAC;IAChC,OAAO;QACLJ,WAAYD,IAAIG,OAAO,CAACL,wMAAAA,CAAc,IAAe;QACrDI,cAAcF,IAAIG,OAAO,CAAC,eAAe,IAAI;IAC/C;IAEA,sGAAsG;IACtG,4GAA4G;IAC5G,yCAAyC;IACzC,MAAMG,qBAAqBC,QACzBP,IAAIQ,MAAM,KAAK,UAAUN,gBAAgB;IAE3C,MAAMO,oBAAoBF,QACxBP,IAAIQ,MAAM,KAAK,UAAA,CAAUN,eAAAA,OAAAA,KAAAA,IAAAA,YAAaQ,UAAU,CAAC,sBAAA;IAEnD,MAAMC,gBAAgBJ,QACpBN,aAAaW,aACX,OAAOX,aAAa,YACpBD,IAAIQ,MAAM,KAAK;IAGnB,MAAMK,yBAAyBN,QAC7BI,iBAAiBL,sBAAsBG;IAGzC,OAAO;QACLR;QACAK;QACAG;QACAE;QACAE;IACF;AACF;AAEO,SAASC,0BACdd,GAAoD;IAEpD,OAAOD,+BAA+BC,KAAKa,sBAAsB;AACnE","ignoreList":[0]}}, - {"offset": {"line": 1862, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/fallback.ts"],"sourcesContent":["/**\n * Describes the different fallback modes that a given page can have.\n */\nexport const enum FallbackMode {\n /**\n * A BLOCKING_STATIC_RENDER fallback will block the request until the page is\n * generated. No fallback page will be rendered, and users will have to wait\n * to render the page.\n */\n BLOCKING_STATIC_RENDER = 'BLOCKING_STATIC_RENDER',\n\n /**\n * When set to PRERENDER, a fallback page will be sent to users in place of\n * forcing them to wait for the page to be generated. This allows the user to\n * see a rendered page earlier.\n */\n PRERENDER = 'PRERENDER',\n\n /**\n * When set to NOT_FOUND, pages that are not already prerendered will result\n * in a not found response.\n */\n NOT_FOUND = 'NOT_FOUND',\n}\n\n/**\n * The fallback value returned from the `getStaticPaths` function.\n */\nexport type GetStaticPathsFallback = boolean | 'blocking'\n\n/**\n * Parses the fallback field from the prerender manifest.\n *\n * @param fallbackField The fallback field from the prerender manifest.\n * @returns The fallback mode.\n */\nexport function parseFallbackField(\n fallbackField: string | boolean | null | undefined\n): FallbackMode | undefined {\n if (typeof fallbackField === 'string') {\n return FallbackMode.PRERENDER\n } else if (fallbackField === null) {\n return FallbackMode.BLOCKING_STATIC_RENDER\n } else if (fallbackField === false) {\n return FallbackMode.NOT_FOUND\n } else if (fallbackField === undefined) {\n return undefined\n } else {\n throw new Error(\n `Invalid fallback option: ${fallbackField}. Fallback option must be a string, null, undefined, or false.`\n )\n }\n}\n\nexport function fallbackModeToFallbackField(\n fallback: FallbackMode,\n page: string | undefined\n): string | false | null {\n switch (fallback) {\n case FallbackMode.BLOCKING_STATIC_RENDER:\n return null\n case FallbackMode.NOT_FOUND:\n return false\n case FallbackMode.PRERENDER:\n if (!page) {\n throw new Error(\n `Invariant: expected a page to be provided when fallback mode is \"${fallback}\"`\n )\n }\n\n return page\n default:\n throw new Error(`Invalid fallback mode: ${fallback}`)\n }\n}\n\n/**\n * Parses the fallback from the static paths result.\n *\n * @param result The result from the static paths function.\n * @returns The fallback mode.\n */\nexport function parseStaticPathsResult(\n result: GetStaticPathsFallback\n): FallbackMode {\n if (result === true) {\n return FallbackMode.PRERENDER\n } else if (result === 'blocking') {\n return FallbackMode.BLOCKING_STATIC_RENDER\n } else {\n return FallbackMode.NOT_FOUND\n }\n}\n"],"names":["FallbackMode","parseFallbackField","fallbackField","undefined","Error","fallbackModeToFallbackField","fallback","page","parseStaticPathsResult","result"],"mappings":"AAAA;;CAEC,GACD;;;;;;;;;;AAAO,IAAWA,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;IAChB;;;;GAIC,GAAA,YAAA,CAAA,yBAAA,GAAA;IAGD;;;;GAIC,GAAA,YAAA,CAAA,YAAA,GAAA;IAGD;;;GAGC,GAAA,YAAA,CAAA,YAAA,GAAA;WAlBeA;MAoBjB;AAaM,SAASC,mBACdC,aAAkD;IAElD,IAAI,OAAOA,kBAAkB,UAAU;QACrC,OAAA;IACF,OAAO,IAAIA,kBAAkB,MAAM;QACjC,OAAA;IACF,OAAO,IAAIA,kBAAkB,OAAO;QAClC,OAAA;IACF,OAAO,IAAIA,kBAAkBC,WAAW;QACtC,OAAOA;IACT,OAAO;QACL,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,yBAAyB,EAAEF,cAAc,8DAA8D,CAAC,GADrG,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;AACF;AAEO,SAASG,4BACdC,QAAsB,EACtBC,IAAwB;IAExB,OAAQD;QACN,KAAA;YACE,OAAO;QACT,KAAA;YACE,OAAO;QACT,KAAA;YACE,IAAI,CAACC,MAAM;gBACT,MAAM,OAAA,cAEL,CAFK,IAAIH,MACR,CAAC,iEAAiE,EAAEE,SAAS,CAAC,CAAC,GAD3E,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEA,OAAOC;QACT;YACE,MAAM,OAAA,cAA+C,CAA/C,IAAIH,MAAM,CAAC,uBAAuB,EAAEE,UAAU,GAA9C,qBAAA;uBAAA;4BAAA;8BAAA;YAA8C;IACxD;AACF;AAQO,SAASE,uBACdC,MAA8B;IAE9B,IAAIA,WAAW,MAAM;QACnB,OAAA;IACF,OAAO,IAAIA,WAAW,YAAY;QAChC,OAAA;IACF,OAAO;QACL,OAAA;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1944, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils.ts"],"sourcesContent":["import type { HtmlProps } from './html-context.shared-runtime'\nimport type { ComponentType, JSX } from 'react'\nimport type { DomainLocale } from '../../server/config'\nimport type { Env } from '@next/env'\nimport type { IncomingMessage, ServerResponse } from 'http'\nimport type { NextRouter } from './router/router'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { PreviewData } from '../../types'\nimport type { COMPILER_NAMES } from './constants'\nimport type fs from 'fs'\n\nexport type NextComponentType<\n Context extends BaseContext = NextPageContext,\n InitialProps = {},\n Props = {},\n> = ComponentType & {\n /**\n * Used for initial page load data population. Data returned from `getInitialProps` is serialized when server rendered.\n * Make sure to return plain `Object` without using `Date`, `Map`, `Set`.\n * @param context Context of `page`\n */\n getInitialProps?(context: Context): InitialProps | Promise\n}\n\nexport type DocumentType = NextComponentType<\n DocumentContext,\n DocumentInitialProps,\n DocumentProps\n>\n\nexport type AppType

= NextComponentType<\n AppContextType,\n P,\n AppPropsType\n>\n\nexport type AppTreeType = ComponentType<\n AppInitialProps & { [name: string]: any }\n>\n\n/**\n * Web vitals provided to _app.reportWebVitals by Core Web Vitals plugin developed by Google Chrome team.\n * https://nextjs.org/blog/next-9-4#integrated-web-vitals-reporting\n */\nexport const WEB_VITALS = ['CLS', 'FCP', 'FID', 'INP', 'LCP', 'TTFB'] as const\nexport type NextWebVitalsMetric = {\n id: string\n startTime: number\n value: number\n attribution?: { [key: string]: unknown }\n} & (\n | {\n label: 'web-vital'\n name: (typeof WEB_VITALS)[number]\n }\n | {\n label: 'custom'\n name:\n | 'Next.js-hydration'\n | 'Next.js-route-change-to-render'\n | 'Next.js-render'\n }\n)\n\nexport type Enhancer = (Component: C) => C\n\nexport type ComponentsEnhancer =\n | {\n enhanceApp?: Enhancer\n enhanceComponent?: Enhancer\n }\n | Enhancer\n\nexport type RenderPageResult = {\n html: string\n head?: Array\n}\n\nexport type RenderPage = (\n options?: ComponentsEnhancer\n) => DocumentInitialProps | Promise\n\nexport type BaseContext = {\n res?: ServerResponse\n [k: string]: any\n}\n\nexport type NEXT_DATA = {\n props: Record\n page: string\n query: ParsedUrlQuery\n buildId: string\n assetPrefix?: string\n nextExport?: boolean\n autoExport?: boolean\n isFallback?: boolean\n isExperimentalCompile?: boolean\n dynamicIds?: (string | number)[]\n err?: Error & {\n statusCode?: number\n source?: typeof COMPILER_NAMES.server | typeof COMPILER_NAMES.edgeServer\n }\n gsp?: boolean\n gssp?: boolean\n customServer?: boolean\n gip?: boolean\n appGip?: boolean\n locale?: string\n locales?: readonly string[]\n defaultLocale?: string\n domainLocales?: readonly DomainLocale[]\n scriptLoader?: any[]\n isPreview?: boolean\n notFoundSrcPage?: string\n}\n\n/**\n * `Next` context\n */\nexport interface NextPageContext {\n /**\n * Error object if encountered during rendering\n */\n err?: (Error & { statusCode?: number }) | null\n /**\n * `HTTP` request object.\n */\n req?: IncomingMessage\n /**\n * `HTTP` response object.\n */\n res?: ServerResponse\n /**\n * Path section of `URL`.\n */\n pathname: string\n /**\n * Query string section of `URL` parsed as an object.\n */\n query: ParsedUrlQuery\n /**\n * `String` of the actual path including query.\n */\n asPath?: string\n /**\n * The currently active locale\n */\n locale?: string\n /**\n * All configured locales\n */\n locales?: readonly string[]\n /**\n * The configured default locale\n */\n defaultLocale?: string\n /**\n * `Component` the tree of the App to use if needing to render separately\n */\n AppTree: AppTreeType\n}\n\nexport type AppContextType = {\n Component: NextComponentType\n AppTree: AppTreeType\n ctx: NextPageContext\n router: Router\n}\n\nexport type AppInitialProps = {\n pageProps: PageProps\n}\n\nexport type AppPropsType<\n Router extends NextRouter = NextRouter,\n PageProps = {},\n> = AppInitialProps & {\n Component: NextComponentType\n router: Router\n __N_SSG?: boolean\n __N_SSP?: boolean\n}\n\nexport type DocumentContext = NextPageContext & {\n renderPage: RenderPage\n defaultGetInitialProps(\n ctx: DocumentContext,\n options?: { nonce?: string }\n ): Promise\n}\n\nexport type DocumentInitialProps = RenderPageResult & {\n styles?: React.ReactElement[] | Iterable | JSX.Element\n}\n\nexport type DocumentProps = DocumentInitialProps & HtmlProps\n\n/**\n * Next `API` route request\n */\nexport interface NextApiRequest extends IncomingMessage {\n /**\n * Object of `query` values from url\n */\n query: Partial<{\n [key: string]: string | string[]\n }>\n /**\n * Object of `cookies` from header\n */\n cookies: Partial<{\n [key: string]: string\n }>\n\n body: any\n\n env: Env\n\n draftMode?: boolean\n\n preview?: boolean\n /**\n * Preview data set on the request, if any\n * */\n previewData?: PreviewData\n}\n\n/**\n * Send body of response\n */\ntype Send = (body: T) => void\n\n/**\n * Next `API` route response\n */\nexport type NextApiResponse = ServerResponse & {\n /**\n * Send data `any` data in response\n */\n send: Send\n /**\n * Send data `json` data in response\n */\n json: Send\n status: (statusCode: number) => NextApiResponse\n redirect(url: string): NextApiResponse\n redirect(status: number, url: string): NextApiResponse\n\n /**\n * Set draft mode\n */\n setDraftMode: (options: { enable: boolean }) => NextApiResponse\n\n /**\n * Set preview data for Next.js' prerender mode\n */\n setPreviewData: (\n data: object | string,\n options?: {\n /**\n * Specifies the number (in seconds) for the preview session to last for.\n * The given number will be converted to an integer by rounding down.\n * By default, no maximum age is set and the preview session finishes\n * when the client shuts down (browser is closed).\n */\n maxAge?: number\n /**\n * Specifies the path for the preview session to work under. By default,\n * the path is considered the \"default path\", i.e., any pages under \"/\".\n */\n path?: string\n }\n ) => NextApiResponse\n\n /**\n * Clear preview data for Next.js' prerender mode\n */\n clearPreviewData: (options?: { path?: string }) => NextApiResponse\n\n /**\n * Revalidate a specific page and regenerate it using On-Demand Incremental\n * Static Regeneration.\n * The path should be an actual path, not a rewritten path. E.g. for\n * \"/blog/[slug]\" this should be \"/blog/post-1\".\n * @link https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration#on-demand-revalidation-with-revalidatepath\n */\n revalidate: (\n urlPath: string,\n opts?: {\n unstable_onlyGenerated?: boolean\n }\n ) => Promise\n}\n\n/**\n * Next `API` route handler\n */\nexport type NextApiHandler = (\n req: NextApiRequest,\n res: NextApiResponse\n) => unknown | Promise\n\n/**\n * Utils\n */\nexport function execOnce ReturnType>(\n fn: T\n): T {\n let used = false\n let result: ReturnType\n\n return ((...args: any[]) => {\n if (!used) {\n used = true\n result = fn(...args)\n }\n return result\n }) as T\n}\n\n// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1\n// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3\nconst ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\\d+\\-.]*?:/\nexport const isAbsoluteUrl = (url: string) => ABSOLUTE_URL_REGEX.test(url)\n\nexport function getLocationOrigin() {\n const { protocol, hostname, port } = window.location\n return `${protocol}//${hostname}${port ? ':' + port : ''}`\n}\n\nexport function getURL() {\n const { href } = window.location\n const origin = getLocationOrigin()\n return href.substring(origin.length)\n}\n\nexport function getDisplayName

(Component: ComponentType

) {\n return typeof Component === 'string'\n ? Component\n : Component.displayName || Component.name || 'Unknown'\n}\n\nexport function isResSent(res: ServerResponse) {\n return res.finished || res.headersSent\n}\n\nexport function normalizeRepeatedSlashes(url: string) {\n const urlParts = url.split('?')\n const urlNoQuery = urlParts[0]\n\n return (\n urlNoQuery\n // first we replace any non-encoded backslashes with forward\n // then normalize repeated forward slashes\n .replace(/\\\\/g, '/')\n .replace(/\\/\\/+/g, '/') +\n (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : '')\n )\n}\n\nexport async function loadGetInitialProps<\n C extends BaseContext,\n IP = {},\n P = {},\n>(App: NextComponentType, ctx: C): Promise {\n if (process.env.NODE_ENV !== 'production') {\n if (App.prototype?.getInitialProps) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`\n throw new Error(message)\n }\n }\n // when called from _app `ctx` is nested in `ctx`\n const res = ctx.res || (ctx.ctx && ctx.ctx.res)\n\n if (!App.getInitialProps) {\n if (ctx.ctx && ctx.Component) {\n // @ts-ignore pageProps default\n return {\n pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx),\n }\n }\n return {} as IP\n }\n\n const props = await App.getInitialProps(ctx)\n\n if (res && isResSent(res)) {\n return props\n }\n\n if (!props) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" should resolve to an object. But found \"${props}\" instead.`\n throw new Error(message)\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (Object.keys(props).length === 0 && !ctx.ctx) {\n console.warn(\n `${getDisplayName(\n App\n )} returned an empty object from \\`getInitialProps\\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`\n )\n }\n }\n\n return props\n}\n\nexport const SP = typeof performance !== 'undefined'\nexport const ST =\n SP &&\n (['mark', 'measure', 'getEntriesByName'] as const).every(\n (method) => typeof performance[method] === 'function'\n )\n\nexport class DecodeError extends Error {}\nexport class NormalizeError extends Error {}\nexport class PageNotFoundError extends Error {\n code: string\n\n constructor(page: string) {\n super()\n this.code = 'ENOENT'\n this.name = 'PageNotFoundError'\n this.message = `Cannot find module for page: ${page}`\n }\n}\n\nexport class MissingStaticPage extends Error {\n constructor(page: string, message: string) {\n super()\n this.message = `Failed to load static file for page: ${page} ${message}`\n }\n}\n\nexport class MiddlewareNotFoundError extends Error {\n code: string\n constructor() {\n super()\n this.code = 'ENOENT'\n this.message = `Cannot find the middleware module`\n }\n}\n\nexport interface CacheFs {\n existsSync: typeof fs.existsSync\n readFile: typeof fs.promises.readFile\n readFileSync: typeof fs.readFileSync\n writeFile(f: string, d: any): Promise\n mkdir(dir: string): Promise\n stat(f: string): Promise<{ mtime: Date }>\n}\n\nexport function stringifyError(error: Error) {\n return JSON.stringify({ message: error.message, stack: error.stack })\n}\n"],"names":["WEB_VITALS","execOnce","fn","used","result","args","ABSOLUTE_URL_REGEX","isAbsoluteUrl","url","test","getLocationOrigin","protocol","hostname","port","window","location","getURL","href","origin","substring","length","getDisplayName","Component","displayName","name","isResSent","res","finished","headersSent","normalizeRepeatedSlashes","urlParts","split","urlNoQuery","replace","slice","join","loadGetInitialProps","App","ctx","process","env","NODE_ENV","prototype","getInitialProps","message","Error","pageProps","props","Object","keys","console","warn","SP","performance","ST","every","method","DecodeError","NormalizeError","PageNotFoundError","constructor","page","code","MissingStaticPage","MiddlewareNotFoundError","stringifyError","error","JSON","stringify","stack"],"mappings":"AAwCA;;;CAGC,GACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAO,MAAMA,aAAa;IAAC;IAAO;IAAO;IAAO;IAAO;IAAO;CAAO,CAAS;AAqQvE,SAASC,SACdC,EAAK;IAEL,IAAIC,OAAO;IACX,IAAIC;IAEJ,OAAQ,CAAC,GAAGC;QACV,IAAI,CAACF,MAAM;YACTA,OAAO;YACPC,SAASF,MAAMG;QACjB;QACA,OAAOD;IACT;AACF;AAEA,0DAA0D;AAC1D,gEAAgE;AAChE,MAAME,qBAAqB;AACpB,MAAMC,gBAAgB,CAACC,MAAgBF,mBAAmBG,IAAI,CAACD,KAAI;AAEnE,SAASE;IACd,MAAM,EAAEC,QAAQ,EAAEC,QAAQ,EAAEC,IAAI,EAAE,GAAGC,OAAOC,QAAQ;IACpD,OAAO,GAAGJ,SAAS,EAAE,EAAEC,WAAWC,OAAO,MAAMA,OAAO,IAAI;AAC5D;AAEO,SAASG;IACd,MAAM,EAAEC,IAAI,EAAE,GAAGH,OAAOC,QAAQ;IAChC,MAAMG,SAASR;IACf,OAAOO,KAAKE,SAAS,CAACD,OAAOE,MAAM;AACrC;AAEO,SAASC,eAAkBC,SAA2B;IAC3D,OAAO,OAAOA,cAAc,WACxBA,YACAA,UAAUC,WAAW,IAAID,UAAUE,IAAI,IAAI;AACjD;AAEO,SAASC,UAAUC,GAAmB;IAC3C,OAAOA,IAAIC,QAAQ,IAAID,IAAIE,WAAW;AACxC;AAEO,SAASC,yBAAyBrB,GAAW;IAClD,MAAMsB,WAAWtB,IAAIuB,KAAK,CAAC;IAC3B,MAAMC,aAAaF,QAAQ,CAAC,EAAE;IAE9B,OACEE,WACE,4DAA4D;IAC5D,0CAA0C;KACzCC,OAAO,CAAC,OAAO,KACfA,OAAO,CAAC,UAAU,OACpBH,CAAAA,QAAQ,CAAC,EAAE,GAAG,CAAC,CAAC,EAAEA,SAASI,KAAK,CAAC,GAAGC,IAAI,CAAC,MAAM,GAAG,EAAC;AAExD;AAEO,eAAeC,oBAIpBC,GAAgC,EAAEC,GAAM;IACxC,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,IAAIJ,IAAIK,SAAS,EAAEC,iBAAiB;YAClC,MAAMC,UAAU,CAAC,CAAC,EAAEvB,eAClBgB,KACA,2JAA2J,CAAC;YAC9J,MAAM,OAAA,cAAkB,CAAlB,IAAIQ,MAAMD,UAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAAiB;QACzB;IACF;IACA,iDAAiD;IACjD,MAAMlB,MAAMY,IAAIZ,GAAG,IAAKY,IAAIA,GAAG,IAAIA,IAAIA,GAAG,CAACZ,GAAG;IAE9C,IAAI,CAACW,IAAIM,eAAe,EAAE;QACxB,IAAIL,IAAIA,GAAG,IAAIA,IAAIhB,SAAS,EAAE;YAC5B,+BAA+B;YAC/B,OAAO;gBACLwB,WAAW,MAAMV,oBAAoBE,IAAIhB,SAAS,EAAEgB,IAAIA,GAAG;YAC7D;QACF;QACA,OAAO,CAAC;IACV;IAEA,MAAMS,QAAQ,MAAMV,IAAIM,eAAe,CAACL;IAExC,IAAIZ,OAAOD,UAAUC,MAAM;QACzB,OAAOqB;IACT;IAEA,IAAI,CAACA,OAAO;QACV,MAAMH,UAAU,CAAC,CAAC,EAAEvB,eAClBgB,KACA,4DAA4D,EAAEU,MAAM,UAAU,CAAC;QACjF,MAAM,OAAA,cAAkB,CAAlB,IAAIF,MAAMD,UAAV,qBAAA;mBAAA;wBAAA;0BAAA;QAAiB;IACzB;IAEA,IAAIL,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,IAAIO,OAAOC,IAAI,CAACF,OAAO3B,MAAM,KAAK,KAAK,CAACkB,IAAIA,GAAG,EAAE;YAC/CY,QAAQC,IAAI,CACV,GAAG9B,eACDgB,KACA,+KAA+K,CAAC;QAEtL;IACF;IAEA,OAAOU;AACT;AAEO,MAAMK,KAAK,OAAOC,gBAAgB,YAAW;AAC7C,MAAMC,KACXF,MACC;IAAC;IAAQ;IAAW;CAAmB,CAAWG,KAAK,CACtD,CAACC,SAAW,OAAOH,WAAW,CAACG,OAAO,KAAK,YAC5C;AAEI,MAAMC,oBAAoBZ;AAAO;AACjC,MAAMa,uBAAuBb;AAAO;AACpC,MAAMc,0BAA0Bd;IAGrCe,YAAYC,IAAY,CAAE;QACxB,KAAK;QACL,IAAI,CAACC,IAAI,GAAG;QACZ,IAAI,CAACtC,IAAI,GAAG;QACZ,IAAI,CAACoB,OAAO,GAAG,CAAC,6BAA6B,EAAEiB,MAAM;IACvD;AACF;AAEO,MAAME,0BAA0BlB;IACrCe,YAAYC,IAAY,EAAEjB,OAAe,CAAE;QACzC,KAAK;QACL,IAAI,CAACA,OAAO,GAAG,CAAC,qCAAqC,EAAEiB,KAAK,CAAC,EAAEjB,SAAS;IAC1E;AACF;AAEO,MAAMoB,gCAAgCnB;IAE3Ce,aAAc;QACZ,KAAK;QACL,IAAI,CAACE,IAAI,GAAG;QACZ,IAAI,CAAClB,OAAO,GAAG,CAAC,iCAAiC,CAAC;IACpD;AACF;AAWO,SAASqB,eAAeC,KAAY;IACzC,OAAOC,KAAKC,SAAS,CAAC;QAAExB,SAASsB,MAAMtB,OAAO;QAAEyB,OAAOH,MAAMG,KAAK;IAAC;AACrE","ignoreList":[0]}}, - {"offset": {"line": 2110, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/etag.ts"],"sourcesContent":["/**\n * FNV-1a Hash implementation\n * @author Travis Webb (tjwebb) \n *\n * Ported from https://github.com/tjwebb/fnv-plus/blob/master/index.js\n *\n * Simplified, optimized and add modified for 52 bit, which provides a larger hash space\n * and still making use of Javascript's 53-bit integer space.\n */\nexport const fnv1a52 = (str: string) => {\n const len = str.length\n let i = 0,\n t0 = 0,\n v0 = 0x2325,\n t1 = 0,\n v1 = 0x8422,\n t2 = 0,\n v2 = 0x9ce4,\n t3 = 0,\n v3 = 0xcbf2\n\n while (i < len) {\n v0 ^= str.charCodeAt(i++)\n t0 = v0 * 435\n t1 = v1 * 435\n t2 = v2 * 435\n t3 = v3 * 435\n t2 += v0 << 8\n t3 += v1 << 8\n t1 += t0 >>> 16\n v0 = t0 & 65535\n t2 += t1 >>> 16\n v1 = t1 & 65535\n v3 = (t3 + (t2 >>> 16)) & 65535\n v2 = t2 & 65535\n }\n\n return (\n (v3 & 15) * 281474976710656 +\n v2 * 4294967296 +\n v1 * 65536 +\n (v0 ^ (v3 >> 4))\n )\n}\n\nexport const generateETag = (payload: string, weak = false) => {\n const prefix = weak ? 'W/\"' : '\"'\n return (\n prefix + fnv1a52(payload).toString(36) + payload.length.toString(36) + '\"'\n )\n}\n"],"names":["fnv1a52","str","len","length","i","t0","v0","t1","v1","t2","v2","t3","v3","charCodeAt","generateETag","payload","weak","prefix","toString"],"mappings":"AAAA;;;;;;;;CAQC,GACD;;;;;;AAAO,MAAMA,UAAU,CAACC;IACtB,MAAMC,MAAMD,IAAIE,MAAM;IACtB,IAAIC,IAAI,GACNC,KAAK,GACLC,KAAK,QACLC,KAAK,GACLC,KAAK,QACLC,KAAK,GACLC,KAAK,QACLC,KAAK,GACLC,KAAK;IAEP,MAAOR,IAAIF,IAAK;QACdI,MAAML,IAAIY,UAAU,CAACT;QACrBC,KAAKC,KAAK;QACVC,KAAKC,KAAK;QACVC,KAAKC,KAAK;QACVC,KAAKC,KAAK;QACVH,MAAMH,MAAM;QACZK,MAAMH,MAAM;QACZD,MAAMF,OAAO;QACbC,KAAKD,KAAK;QACVI,MAAMF,OAAO;QACbC,KAAKD,KAAK;QACVK,KAAMD,KAAMF,CAAAA,OAAO,EAAC,IAAM;QAC1BC,KAAKD,KAAK;IACZ;IAEA,OACGG,CAAAA,KAAK,EAAC,IAAK,kBACZF,KAAK,aACLF,KAAK,QACJF,CAAAA,KAAMM,MAAM,CAAC;AAElB,EAAC;AAEM,MAAME,eAAe,CAACC,SAAiBC,OAAO,KAAK;IACxD,MAAMC,SAASD,OAAO,QAAQ;IAC9B,OACEC,SAASjB,QAAQe,SAASG,QAAQ,CAAC,MAAMH,QAAQZ,MAAM,CAACe,QAAQ,CAAC,MAAM;AAE3E,EAAC","ignoreList":[0]}}, - {"offset": {"line": 2151, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/fresh/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={695:e=>{\n/*!\n * fresh\n * Copyright(c) 2012 TJ Holowaychuk\n * Copyright(c) 2016-2017 Douglas Christopher Wilson\n * MIT Licensed\n */\nvar r=/(?:^|,)\\s*?no-cache\\s*?(?:,|$)/;e.exports=fresh;function fresh(e,a){var t=e[\"if-modified-since\"];var s=e[\"if-none-match\"];if(!t&&!s){return false}var i=e[\"cache-control\"];if(i&&r.test(i)){return false}if(s&&s!==\"*\"){var f=a[\"etag\"];if(!f){return false}var n=true;var u=parseTokenList(s);for(var _=0;_ {\n if (isResSent(res)) {\n return\n }\n\n if (poweredByHeader && result.contentType === HTML_CONTENT_TYPE_HEADER) {\n res.setHeader('X-Powered-By', 'Next.js')\n }\n\n // If cache control is already set on the response we don't\n // override it to allow users to customize it via next.config\n if (cacheControl && !res.getHeader('Cache-Control')) {\n res.setHeader('Cache-Control', getCacheControlHeader(cacheControl))\n }\n\n const payload = result.isDynamic ? null : result.toUnchunkedString()\n\n if (generateEtags && payload !== null) {\n const etag = generateETag(payload)\n if (sendEtagResponse(req, res, etag)) {\n return\n }\n }\n\n if (!res.getHeader('Content-Type') && result.contentType) {\n res.setHeader('Content-Type', result.contentType)\n }\n\n if (payload) {\n res.setHeader('Content-Length', Buffer.byteLength(payload))\n }\n\n if (req.method === 'HEAD') {\n res.end(null)\n return\n }\n\n if (payload !== null) {\n res.end(payload)\n return\n }\n\n // Pipe the render result to the response after we get a writer for it.\n await result.pipeToNodeResponse(res)\n}\n"],"names":["isResSent","generateETag","fresh","getCacheControlHeader","HTML_CONTENT_TYPE_HEADER","sendEtagResponse","req","res","etag","setHeader","headers","statusCode","end","sendRenderResult","result","generateEtags","poweredByHeader","cacheControl","contentType","getHeader","payload","isDynamic","toUnchunkedString","Buffer","byteLength","method","pipeToNodeResponse"],"mappings":";;;;;;AAIA,SAASA,SAAS,QAAQ,sBAAqB;AAC/C,SAASC,YAAY,QAAQ,aAAY;AACzC,OAAOC,WAAW,2BAA0B;AAC5C,SAASC,qBAAqB,QAAQ,sBAAqB;AAC3D,SAASC,wBAAwB,QAAQ,mBAAkB;;;;;;AAEpD,SAASC,iBACdC,GAAoB,EACpBC,GAAmB,EACnBC,IAAwB;IAExB,IAAIA,MAAM;QACR;;;;;KAKC,GACDD,IAAIE,SAAS,CAAC,QAAQD;IACxB;IAEA,QAAIN,qKAAAA,EAAMI,IAAII,OAAO,EAAE;QAAEF;IAAK,IAAI;QAChCD,IAAII,UAAU,GAAG;QACjBJ,IAAIK,GAAG;QACP,OAAO;IACT;IAEA,OAAO;AACT;AAEO,eAAeC,iBAAiB,EACrCP,GAAG,EACHC,GAAG,EACHO,MAAM,EACNC,aAAa,EACbC,eAAe,EACfC,YAAY,EAQb;IACC,QAAIjB,0KAAAA,EAAUO,MAAM;QAClB;IACF;IAEA,IAAIS,mBAAmBF,OAAOI,WAAW,KAAKd,mLAAAA,EAA0B;QACtEG,IAAIE,SAAS,CAAC,gBAAgB;IAChC;IAEA,2DAA2D;IAC3D,6DAA6D;IAC7D,IAAIQ,gBAAgB,CAACV,IAAIY,SAAS,CAAC,kBAAkB;QACnDZ,IAAIE,SAAS,CAAC,qBAAiBN,iMAAAA,EAAsBc;IACvD;IAEA,MAAMG,UAAUN,OAAOO,SAAS,GAAG,OAAOP,OAAOQ,iBAAiB;IAElE,IAAIP,iBAAiBK,YAAY,MAAM;QACrC,MAAMZ,WAAOP,4KAAAA,EAAamB;QAC1B,IAAIf,iBAAiBC,KAAKC,KAAKC,OAAO;YACpC;QACF;IACF;IAEA,IAAI,CAACD,IAAIY,SAAS,CAAC,mBAAmBL,OAAOI,WAAW,EAAE;QACxDX,IAAIE,SAAS,CAAC,gBAAgBK,OAAOI,WAAW;IAClD;IAEA,IAAIE,SAAS;QACXb,IAAIE,SAAS,CAAC,kBAAkBc,OAAOC,UAAU,CAACJ;IACpD;IAEA,IAAId,IAAImB,MAAM,KAAK,QAAQ;QACzBlB,IAAIK,GAAG,CAAC;QACR;IACF;IAEA,IAAIQ,YAAY,MAAM;QACpBb,IAAIK,GAAG,CAACQ;QACR;IACF;IAEA,uEAAuE;IACvE,MAAMN,OAAOY,kBAAkB,CAACnB;AAClC","ignoreList":[0]}}, - {"offset": {"line": 2346, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/bytes/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={56:e=>{\n/*!\n * bytes\n * Copyright(c) 2012-2014 TJ Holowaychuk\n * Copyright(c) 2015 Jed Watson\n * MIT Licensed\n */\ne.exports=bytes;e.exports.format=format;e.exports.parse=parse;var r=/\\B(?=(\\d{3})+(?!\\d))/g;var a=/(?:\\.0*|(\\.[^0]+)0+)$/;var t={b:1,kb:1<<10,mb:1<<20,gb:1<<30,tb:Math.pow(1024,4),pb:Math.pow(1024,5)};var i=/^((-|\\+)?(\\d+(?:\\.\\d+)?)) *(kb|mb|gb|tb|pb)$/i;function bytes(e,r){if(typeof e===\"string\"){return parse(e)}if(typeof e===\"number\"){return format(e,r)}return null}function format(e,i){if(!Number.isFinite(e)){return null}var n=Math.abs(e);var o=i&&i.thousandsSeparator||\"\";var s=i&&i.unitSeparator||\"\";var f=i&&i.decimalPlaces!==undefined?i.decimalPlaces:2;var u=Boolean(i&&i.fixedDecimals);var p=i&&i.unit||\"\";if(!p||!t[p.toLowerCase()]){if(n>=t.pb){p=\"PB\"}else if(n>=t.tb){p=\"TB\"}else if(n>=t.gb){p=\"GB\"}else if(n>=t.mb){p=\"MB\"}else if(n>=t.kb){p=\"KB\"}else{p=\"B\"}}var b=e/t[p.toLowerCase()];var l=b.toFixed(f);if(!u){l=l.replace(a,\"$1\")}if(o){l=l.split(\".\").map((function(e,a){return a===0?e.replace(r,o):e})).join(\".\")}return l+s+p}function parse(e){if(typeof e===\"number\"&&!isNaN(e)){return e}if(typeof e!==\"string\"){return null}var r=i.exec(e);var a;var n=\"b\";if(!r){a=parseInt(e,10);n=\"b\"}else{a=parseFloat(r[1]);n=r[4].toLowerCase()}return Math.floor(t[n]*a)}}};var r={};function __nccwpck_require__(a){var t=r[a];if(t!==undefined){return t.exports}var i=r[a]={exports:{}};var n=true;try{e[a](i,i.exports,__nccwpck_require__);n=false}finally{if(n)delete r[a]}return i.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var a=__nccwpck_require__(56);module.exports=a})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2462, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/size-limit.ts"],"sourcesContent":["import type { SizeLimit } from '../../types'\n\nexport const DEFAULT_MAX_POSTPONED_STATE_SIZE: SizeLimit = '100 MB'\n\nfunction parseSizeLimit(size: SizeLimit): number | undefined {\n const bytes = (\n require('next/dist/compiled/bytes') as typeof import('next/dist/compiled/bytes')\n ).parse(size)\n if (bytes === null || isNaN(bytes) || bytes < 1) {\n return undefined\n }\n return bytes\n}\n\n/**\n * Parses the maxPostponedStateSize config value, using the default if not provided.\n */\nexport function parseMaxPostponedStateSize(\n size: SizeLimit | undefined\n): number | undefined {\n return parseSizeLimit(size ?? DEFAULT_MAX_POSTPONED_STATE_SIZE)\n}\n"],"names":["DEFAULT_MAX_POSTPONED_STATE_SIZE","parseSizeLimit","size","bytes","require","parse","isNaN","undefined","parseMaxPostponedStateSize"],"mappings":";;;;;;AAEO,MAAMA,mCAA8C,SAAQ;AAEnE,SAASC,eAAeC,IAAe;IACrC,MAAMC,QACJC,QAAQ,mGACRC,KAAK,CAACH;IACR,IAAIC,UAAU,QAAQG,MAAMH,UAAUA,QAAQ,GAAG;QAC/C,OAAOI;IACT;IACA,OAAOJ;AACT;AAKO,SAASK,2BACdN,IAA2B;IAE3B,OAAOD,eAAeC,QAAQF;AAChC","ignoreList":[0]}}, - {"offset": {"line": 2505, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/%40swc/helpers/cjs/_interop_require_default.cjs"],"sourcesContent":["\"use strict\";\n\nfunction _interop_require_default(obj) {\n return obj && obj.__esModule ? obj : { default: obj };\n}\nexports._ = _interop_require_default;\n"],"names":[],"mappings":"AAEA,SAAS,yBAAyB,GAAG;IACjC,OAAO,OAAO,IAAI,UAAU,GAAG,MAAM;QAAE,SAAS;IAAI;AACxD;AACA,QAAQ,CAAC,GAAG","ignoreList":[0]}}, - {"offset": {"line": 2515, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/warn-once.ts"],"sourcesContent":["let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n"],"names":["warnOnce","_","process","env","NODE_ENV","warnings","Set","msg","has","console","warn","add"],"mappings":";;;+BAWSA,YAAAA;;;eAAAA;;;AAXT,IAAIA,WAAW,CAACC,KAAe;AAC/B,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;IACzC,MAAMC,WAAW,IAAIC;IACrBN,WAAW,CAACO;QACV,IAAI,CAACF,SAASG,GAAG,CAACD,MAAM;YACtBE,QAAQC,IAAI,CAACH;QACf;QACAF,SAASM,GAAG,CAACJ;IACf;AACF","ignoreList":[0]}}, - {"offset": {"line": 2538, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/deployment-id.ts"],"sourcesContent":["// This could also be a variable instead of a function, but some unit tests want to change the ID at\n// runtime. Even though that would never happen in a real deployment.\nexport function getDeploymentId(): string | undefined {\n return process.env.NEXT_DEPLOYMENT_ID\n}\n\nexport function getDeploymentIdQueryOrEmptyString(): string {\n let deploymentId = getDeploymentId()\n if (deploymentId) {\n return `?dpl=${deploymentId}`\n }\n return ''\n}\n"],"names":["getDeploymentId","getDeploymentIdQueryOrEmptyString","process","env","NEXT_DEPLOYMENT_ID","deploymentId"],"mappings":"AAAA,oGAAoG;AACpG,qEAAqE;;;;;;;;;;;;;;;IACrDA,eAAe,EAAA;eAAfA;;IAIAC,iCAAiC,EAAA;eAAjCA;;;AAJT,SAASD;IACd,OAAOE,QAAQC,GAAG,CAACC,kBAAkB;AACvC;AAEO,SAASH;IACd,IAAII,eAAeL;IACnB,IAAIK,cAAc;;IAGlB,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 2574, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-blur-svg.ts"],"sourcesContent":["/**\n * A shared function, used on both client and server, to generate a SVG blur placeholder.\n */\nexport function getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL,\n objectFit,\n}: {\n widthInt?: number\n heightInt?: number\n blurWidth?: number\n blurHeight?: number\n blurDataURL: string\n objectFit?: string\n}): string {\n const std = 20\n const svgWidth = blurWidth ? blurWidth * 40 : widthInt\n const svgHeight = blurHeight ? blurHeight * 40 : heightInt\n\n const viewBox =\n svgWidth && svgHeight ? `viewBox='0 0 ${svgWidth} ${svgHeight}'` : ''\n const preserveAspectRatio = viewBox\n ? 'none'\n : objectFit === 'contain'\n ? 'xMidYMid'\n : objectFit === 'cover'\n ? 'xMidYMid slice'\n : 'none'\n\n return `%3Csvg xmlns='http://www.w3.org/2000/svg' ${viewBox}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${preserveAspectRatio}' style='filter: url(%23b);' href='${blurDataURL}'/%3E%3C/svg%3E`\n}\n"],"names":["getImageBlurSvg","widthInt","heightInt","blurWidth","blurHeight","blurDataURL","objectFit","std","svgWidth","svgHeight","viewBox","preserveAspectRatio"],"mappings":"AAAA;;CAEC;;;+BACeA,mBAAAA;;;eAAAA;;;AAAT,SAASA,gBAAgB,EAC9BC,QAAQ,EACRC,SAAS,EACTC,SAAS,EACTC,UAAU,EACVC,WAAW,EACXC,SAAS,EAQV;IACC,MAAMC,MAAM;IACZ,MAAMC,WAAWL,YAAYA,YAAY,KAAKF;IAC9C,MAAMQ,YAAYL,aAAaA,aAAa,KAAKF;IAEjD,MAAMQ,UACJF,YAAYC,YAAY,CAAC,aAAa,EAAED,SAAS,CAAC,EAAEC,UAAU,CAAC,CAAC,GAAG;IACrE,MAAME,sBAAsBD,UACxB,SACAJ,cAAc,YACZ,aACAA,cAAc,UACZ,mBACA;IAER,OAAO,CAAC,0CAA0C,EAAEI,QAAQ,yFAAyF,EAAEH,IAAI,+PAA+P,EAAEA,IAAI,2FAA2F,EAAEI,oBAAoB,mCAAmC,EAAEN,YAAY,eAAe,CAAC;AACplB","ignoreList":[0]}}, - {"offset": {"line": 2597, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-config.ts"],"sourcesContent":["export const VALID_LOADERS = [\n 'default',\n 'imgix',\n 'cloudinary',\n 'akamai',\n 'custom',\n] as const\n\nexport type LoaderValue = (typeof VALID_LOADERS)[number]\n\nexport type ImageLoaderProps = {\n src: string\n width: number\n quality?: number\n}\n\nexport type ImageLoaderPropsWithConfig = ImageLoaderProps & {\n config: Readonly\n}\n\nexport type LocalPattern = {\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\nexport type RemotePattern = {\n /**\n * Must be `http` or `https`.\n */\n protocol?: 'http' | 'https'\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single subdomain.\n * Double `**` matches any number of subdomains.\n */\n hostname: string\n\n /**\n * Can be literal port such as `8080` or empty string\n * meaning no port.\n */\n port?: string\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\ntype ImageFormat = 'image/avif' | 'image/webp'\n\n/**\n * Image configurations\n *\n * @see [Image configuration options](https://nextjs.org/docs/api-reference/next/image#configuration-options)\n */\nexport type ImageConfigComplete = {\n /** @see [Device sizes documentation](https://nextjs.org/docs/api-reference/next/image#device-sizes) */\n deviceSizes: number[]\n\n /** @see [Image sizing documentation](https://nextjs.org/docs/app/building-your-application/optimizing/images#image-sizing) */\n imageSizes: number[]\n\n /** @see [Image loaders configuration](https://nextjs.org/docs/api-reference/next/legacy/image#loader) */\n loader: LoaderValue\n\n /** @see [Image loader configuration](https://nextjs.org/docs/app/api-reference/components/image#path) */\n path: string\n\n /** @see [Image loader configuration](https://nextjs.org/docs/api-reference/next/image#loader-configuration) */\n loaderFile: string\n\n /**\n * @deprecated Use `remotePatterns` instead.\n */\n domains: string[]\n\n /** @see [Disable static image import configuration](https://nextjs.org/docs/api-reference/next/image#disable-static-imports) */\n disableStaticImages: boolean\n\n /** @see [Cache behavior](https://nextjs.org/docs/api-reference/next/image#caching-behavior) */\n minimumCacheTTL: number\n\n /** @see [Acceptable formats](https://nextjs.org/docs/api-reference/next/image#acceptable-formats) */\n formats: ImageFormat[]\n\n /** @see [Maximum Redirects](https://nextjs.org/docs/api-reference/next/image#maximumredirects) */\n maximumRedirects: number\n\n /** @see [Maximum Response Body](https://nextjs.org/docs/api-reference/next/image#maximumresponsebody) */\n maximumResponseBody: number\n\n /** @see [Dangerously Allow Local IP](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-local-ip) */\n dangerouslyAllowLocalIP: boolean\n\n /** @see [Dangerously Allow SVG](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-svg) */\n dangerouslyAllowSVG: boolean\n\n /** @see [Content Security Policy](https://nextjs.org/docs/api-reference/next/image#contentsecuritypolicy) */\n contentSecurityPolicy: string\n\n /** @see [Content Disposition Type](https://nextjs.org/docs/api-reference/next/image#contentdispositiontype) */\n contentDispositionType: 'inline' | 'attachment'\n\n /** @see [Remote Patterns](https://nextjs.org/docs/api-reference/next/image#remotepatterns) */\n remotePatterns: Array\n\n /** @see [Local Patterns](https://nextjs.org/docs/api-reference/next/image#localPatterns) */\n localPatterns: LocalPattern[] | undefined\n\n /** @see [Qualities](https://nextjs.org/docs/api-reference/next/image#qualities) */\n qualities: number[] | undefined\n\n /** @see [Unoptimized](https://nextjs.org/docs/api-reference/next/image#unoptimized) */\n unoptimized: boolean\n}\n\nexport type ImageConfig = Partial\n\nexport const imageConfigDefault: ImageConfigComplete = {\n deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],\n imageSizes: [32, 48, 64, 96, 128, 256, 384],\n path: '/_next/image',\n loader: 'default',\n loaderFile: '',\n /**\n * @deprecated Use `remotePatterns` instead to protect your application from malicious users.\n */\n domains: [],\n disableStaticImages: false,\n minimumCacheTTL: 14400, // 4 hours\n formats: ['image/webp'],\n maximumRedirects: 3,\n maximumResponseBody: 50_000_000, // 50 MB\n dangerouslyAllowLocalIP: false,\n dangerouslyAllowSVG: false,\n contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`,\n contentDispositionType: 'attachment',\n localPatterns: undefined, // default: allow all local images\n remotePatterns: [], // default: allow no remote images\n qualities: [75],\n unoptimized: false,\n}\n"],"names":["VALID_LOADERS","imageConfigDefault","deviceSizes","imageSizes","path","loader","loaderFile","domains","disableStaticImages","minimumCacheTTL","formats","maximumRedirects","maximumResponseBody","dangerouslyAllowLocalIP","dangerouslyAllowSVG","contentSecurityPolicy","contentDispositionType","localPatterns","undefined","remotePatterns","qualities","unoptimized"],"mappings":";;;;;;;;;;;;;;IAAaA,aAAa,EAAA;eAAbA;;IA0IAC,kBAAkB,EAAA;eAAlBA;;;AA1IN,MAAMD,gBAAgB;IAC3B;IACA;IACA;IACA;IACA;CACD;AAoIM,MAAMC,qBAA0C;IACrDC,aAAa;QAAC;QAAK;QAAK;QAAK;QAAM;QAAM;QAAM;QAAM;KAAK;IAC1DC,YAAY;QAAC;QAAI;QAAI;QAAI;QAAI;QAAK;QAAK;KAAI;IAC3CC,MAAM;IACNC,QAAQ;IACRC,YAAY;IACZ;;GAEC,GACDC,SAAS,EAAE;IACXC,qBAAqB;IACrBC,iBAAiB;IACjBC,SAAS;QAAC;KAAa;IACvBC,kBAAkB;IAClBC,qBAAqB;IACrBC,yBAAyB;IACzBC,qBAAqB;IACrBC,uBAAuB,CAAC,6CAA6C,CAAC;IACtEC,wBAAwB;IACxBC,eAAeC;IACfC,gBAAgB,EAAE;IAClBC,WAAW;QAAC;KAAG;IACfC,aAAa;AACf","ignoreList":[0]}}, - {"offset": {"line": 2673, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/get-img-props.ts"],"sourcesContent":["import { warnOnce } from './utils/warn-once'\nimport { getDeploymentId } from './deployment-id'\nimport { getImageBlurSvg } from './image-blur-svg'\nimport { imageConfigDefault } from './image-config'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n ImageLoaderPropsWithConfig,\n} from './image-config'\n\nimport type { CSSProperties, JSX } from 'react'\n\nexport interface StaticImageData {\n src: string\n height: number\n width: number\n blurDataURL?: string\n blurWidth?: number\n blurHeight?: number\n}\n\nexport interface StaticRequire {\n default: StaticImageData\n}\n\nexport type StaticImport = StaticRequire | StaticImageData\n\nexport type ImageProps = Omit<\n JSX.IntrinsicElements['img'],\n 'src' | 'srcSet' | 'ref' | 'alt' | 'width' | 'height' | 'loading'\n> & {\n src: string | StaticImport\n alt: string\n width?: number | `${number}`\n height?: number | `${number}`\n fill?: boolean\n loader?: ImageLoader\n quality?: number | `${number}`\n preload?: boolean\n /**\n * @deprecated Use `preload` prop instead.\n * See https://nextjs.org/docs/app/api-reference/components/image#preload\n */\n priority?: boolean\n loading?: LoadingValue\n placeholder?: PlaceholderValue\n blurDataURL?: string\n unoptimized?: boolean\n overrideSrc?: string\n /**\n * @deprecated Use `onLoad` instead.\n * @see https://nextjs.org/docs/app/api-reference/components/image#onload\n */\n onLoadingComplete?: OnLoadingComplete\n /**\n * @deprecated Use `fill` prop instead of `layout=\"fill\"` or change import to `next/legacy/image`.\n * @see https://nextjs.org/docs/api-reference/next/legacy/image\n */\n layout?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectFit?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectPosition?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyBoundary?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyRoot?: string\n}\n\nexport type ImgProps = Omit & {\n loading: LoadingValue\n width: number | undefined\n height: number | undefined\n style: NonNullable\n sizes: string | undefined\n srcSet: string | undefined\n src: string\n}\n\nconst VALID_LOADING_VALUES = ['lazy', 'eager', undefined] as const\n\n// Object-fit values that are not valid background-size values\nconst INVALID_BACKGROUND_SIZE_VALUES = [\n '-moz-initial',\n 'fill',\n 'none',\n 'scale-down',\n undefined,\n]\ntype LoadingValue = (typeof VALID_LOADING_VALUES)[number]\ntype ImageConfig = ImageConfigComplete & {\n allSizes: number[]\n output?: 'standalone' | 'export'\n}\n\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\n// Do not export - this is an internal type only\n// because `next.config.js` is only meant for the\n// built-in loaders, not for a custom loader() prop.\ntype ImageLoaderWithConfig = (p: ImageLoaderPropsWithConfig) => string\n\nexport type PlaceholderValue = 'blur' | 'empty' | `data:image/${string}`\nexport type OnLoad = React.ReactEventHandler | undefined\nexport type OnLoadingComplete = (img: HTMLImageElement) => void\n\nexport type PlaceholderStyle = Partial<\n Pick<\n CSSProperties,\n | 'backgroundSize'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundImage'\n >\n>\n\nfunction isStaticRequire(\n src: StaticRequire | StaticImageData\n): src is StaticRequire {\n return (src as StaticRequire).default !== undefined\n}\n\nfunction isStaticImageData(\n src: StaticRequire | StaticImageData\n): src is StaticImageData {\n return (src as StaticImageData).src !== undefined\n}\n\nfunction isStaticImport(src: string | StaticImport): src is StaticImport {\n return (\n !!src &&\n typeof src === 'object' &&\n (isStaticRequire(src as StaticImport) ||\n isStaticImageData(src as StaticImport))\n )\n}\n\nconst allImgs = new Map<\n string,\n { src: string; loading: LoadingValue; placeholder: PlaceholderValue }\n>()\nlet perfObserver: PerformanceObserver | undefined\n\nfunction getInt(x: unknown): number | undefined {\n if (typeof x === 'undefined') {\n return x\n }\n if (typeof x === 'number') {\n return Number.isFinite(x) ? x : NaN\n }\n if (typeof x === 'string' && /^[0-9]+$/.test(x)) {\n return parseInt(x, 10)\n }\n return NaN\n}\n\nfunction getWidths(\n { deviceSizes, allSizes }: ImageConfig,\n width: number | undefined,\n sizes: string | undefined\n): { widths: number[]; kind: 'w' | 'x' } {\n if (sizes) {\n // Find all the \"vw\" percent sizes used in the sizes prop\n const viewportWidthRe = /(^|\\s)(1?\\d?\\d)vw/g\n const percentSizes = []\n for (let match; (match = viewportWidthRe.exec(sizes)); match) {\n percentSizes.push(parseInt(match[2]))\n }\n if (percentSizes.length) {\n const smallestRatio = Math.min(...percentSizes) * 0.01\n return {\n widths: allSizes.filter((s) => s >= deviceSizes[0] * smallestRatio),\n kind: 'w',\n }\n }\n return { widths: allSizes, kind: 'w' }\n }\n if (typeof width !== 'number') {\n return { widths: deviceSizes, kind: 'w' }\n }\n\n const widths = [\n ...new Set(\n // > This means that most OLED screens that say they are 3x resolution,\n // > are actually 3x in the green color, but only 1.5x in the red and\n // > blue colors. Showing a 3x resolution image in the app vs a 2x\n // > resolution image will be visually the same, though the 3x image\n // > takes significantly more data. Even true 3x resolution screens are\n // > wasteful as the human eye cannot see that level of detail without\n // > something like a magnifying glass.\n // https://blog.twitter.com/engineering/en_us/topics/infrastructure/2019/capping-image-fidelity-on-ultra-high-resolution-devices.html\n [width, width * 2 /*, width * 3*/].map(\n (w) => allSizes.find((p) => p >= w) || allSizes[allSizes.length - 1]\n )\n ),\n ]\n return { widths, kind: 'x' }\n}\n\ntype GenImgAttrsData = {\n config: ImageConfig\n src: string\n unoptimized: boolean\n loader: ImageLoaderWithConfig\n width?: number\n quality?: number\n sizes?: string\n}\n\ntype GenImgAttrsResult = {\n src: string\n srcSet: string | undefined\n sizes: string | undefined\n}\n\nfunction generateImgAttrs({\n config,\n src,\n unoptimized,\n width,\n quality,\n sizes,\n loader,\n}: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n const deploymentId = getDeploymentId()\n if (src.startsWith('/') && !src.startsWith('//') && deploymentId) {\n const sep = src.includes('?') ? '&' : '?'\n src = `${src}${sep}dpl=${deploymentId}`\n }\n return { src, srcSet: undefined, sizes: undefined }\n }\n\n const { widths, kind } = getWidths(config, width, sizes)\n const last = widths.length - 1\n\n return {\n sizes: !sizes && kind === 'w' ? '100vw' : sizes,\n srcSet: widths\n .map(\n (w, i) =>\n `${loader({ config, src, quality, width: w })} ${\n kind === 'w' ? w : i + 1\n }${kind}`\n )\n .join(', '),\n\n // It's intended to keep `src` the last attribute because React updates\n // attributes in order. If we keep `src` the first one, Safari will\n // immediately start to fetch `src`, before `sizes` and `srcSet` are even\n // updated by React. That causes multiple unnecessary requests if `srcSet`\n // and `sizes` are defined.\n // This bug cannot be reproduced in Chrome or Firefox.\n src: loader({ config, src, quality, width: widths[last] }),\n }\n}\n\n/**\n * A shared function, used on both client and server, to generate the props for .\n */\nexport function getImgProps(\n {\n src,\n sizes,\n unoptimized = false,\n priority = false,\n preload = false,\n loading,\n className,\n quality,\n width,\n height,\n fill = false,\n style,\n overrideSrc,\n onLoad,\n onLoadingComplete,\n placeholder = 'empty',\n blurDataURL,\n fetchPriority,\n decoding = 'async',\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n ...rest\n }: ImageProps,\n _state: {\n defaultLoader: ImageLoaderWithConfig\n imgConf: ImageConfigComplete\n showAltText?: boolean\n blurComplete?: boolean\n }\n): {\n props: ImgProps\n meta: {\n unoptimized: boolean\n preload: boolean\n placeholder: NonNullable\n fill: boolean\n }\n} {\n const { imgConf, showAltText, blurComplete, defaultLoader } = _state\n let config: ImageConfig\n let c = imgConf || imageConfigDefault\n if ('allSizes' in c) {\n config = c as ImageConfig\n } else {\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n config = { ...c, allSizes, deviceSizes, qualities }\n }\n\n if (typeof defaultLoader === 'undefined') {\n throw new Error(\n 'images.loaderFile detected but the file is missing default export.\\nRead more: https://nextjs.org/docs/messages/invalid-images-config'\n )\n }\n let loader: ImageLoaderWithConfig = rest.loader || defaultLoader\n\n // Remove property so it's not spread on element\n delete rest.loader\n delete (rest as any).srcSet\n\n // This special value indicates that the user\n // didn't define a \"loader\" prop or \"loader\" config.\n const isDefaultLoader = '__next_img_default' in loader\n\n if (isDefaultLoader) {\n if (config.loader === 'custom') {\n throw new Error(\n `Image with src \"${src}\" is missing \"loader\" prop.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader`\n )\n }\n } else {\n // The user defined a \"loader\" prop or config.\n // Since the config object is internal only, we\n // must not pass it to the user-defined \"loader\".\n const customImageLoader = loader as ImageLoader\n loader = (obj) => {\n const { config: _, ...opts } = obj\n return customImageLoader(opts)\n }\n }\n\n if (layout) {\n if (layout === 'fill') {\n fill = true\n }\n const layoutToStyle: Record | undefined> = {\n intrinsic: { maxWidth: '100%', height: 'auto' },\n responsive: { width: '100%', height: 'auto' },\n }\n const layoutToSizes: Record = {\n responsive: '100vw',\n fill: '100vw',\n }\n const layoutStyle = layoutToStyle[layout]\n if (layoutStyle) {\n style = { ...style, ...layoutStyle }\n }\n const layoutSizes = layoutToSizes[layout]\n if (layoutSizes && !sizes) {\n sizes = layoutSizes\n }\n }\n\n let staticSrc = ''\n let widthInt = getInt(width)\n let heightInt = getInt(height)\n let blurWidth: number | undefined\n let blurHeight: number | undefined\n if (isStaticImport(src)) {\n const staticImageData = isStaticRequire(src) ? src.default : src\n\n if (!staticImageData.src) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n if (!staticImageData.height || !staticImageData.width) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n\n blurWidth = staticImageData.blurWidth\n blurHeight = staticImageData.blurHeight\n blurDataURL = blurDataURL || staticImageData.blurDataURL\n staticSrc = staticImageData.src\n\n if (!fill) {\n if (!widthInt && !heightInt) {\n widthInt = staticImageData.width\n heightInt = staticImageData.height\n } else if (widthInt && !heightInt) {\n const ratio = widthInt / staticImageData.width\n heightInt = Math.round(staticImageData.height * ratio)\n } else if (!widthInt && heightInt) {\n const ratio = heightInt / staticImageData.height\n widthInt = Math.round(staticImageData.width * ratio)\n }\n }\n }\n src = typeof src === 'string' ? src : staticSrc\n\n let isLazy =\n !priority &&\n !preload &&\n (loading === 'lazy' || typeof loading === 'undefined')\n if (!src || src.startsWith('data:') || src.startsWith('blob:')) {\n // https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs\n unoptimized = true\n isLazy = false\n }\n if (config.unoptimized) {\n unoptimized = true\n }\n if (\n isDefaultLoader &&\n !config.dangerouslyAllowSVG &&\n src.split('?', 1)[0].endsWith('.svg')\n ) {\n // Special case to make svg serve as-is to avoid proxying\n // through the built-in Image Optimization API.\n unoptimized = true\n }\n\n const qualityInt = getInt(quality)\n\n if (process.env.NODE_ENV !== 'production') {\n if (config.output === 'export' && isDefaultLoader && !unoptimized) {\n throw new Error(\n `Image Optimization using the default loader is not compatible with \\`{ output: 'export' }\\`.\n Possible solutions:\n - Remove \\`{ output: 'export' }\\` and run \"next start\" to run server mode including the Image Optimization API.\n - Configure \\`{ images: { unoptimized: true } }\\` in \\`next.config.js\\` to disable the Image Optimization API.\n Read more: https://nextjs.org/docs/messages/export-image-api`\n )\n }\n if (!src) {\n // React doesn't show the stack trace and there's\n // no `src` to help identify which image, so we\n // instead console.error(ref) during mount.\n unoptimized = true\n } else {\n if (fill) {\n if (width) {\n throw new Error(\n `Image with src \"${src}\" has both \"width\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (height) {\n throw new Error(\n `Image with src \"${src}\" has both \"height\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (style?.position && style.position !== 'absolute') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.position\" properties. Images with \"fill\" always use position absolute - it cannot be modified.`\n )\n }\n if (style?.width && style.width !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.width\" properties. Images with \"fill\" always use width 100% - it cannot be modified.`\n )\n }\n if (style?.height && style.height !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.height\" properties. Images with \"fill\" always use height 100% - it cannot be modified.`\n )\n }\n } else {\n if (typeof widthInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"width\" property.`\n )\n } else if (isNaN(widthInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"width\" property. Expected a numeric value in pixels but received \"${width}\".`\n )\n }\n if (typeof heightInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"height\" property.`\n )\n } else if (isNaN(heightInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"height\" property. Expected a numeric value in pixels but received \"${height}\".`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/^[\\x00-\\x20]/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot start with a space or control character. Use src.trimStart() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/[\\x00-\\x20]$/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot end with a space or control character. Use src.trimEnd() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n }\n }\n if (!VALID_LOADING_VALUES.includes(loading)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"loading\" property. Provided \"${loading}\" should be one of ${VALID_LOADING_VALUES.map(\n String\n ).join(',')}.`\n )\n }\n if (priority && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"priority\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && priority) {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"priority\" properties. Only \"preload\" should be used.`\n )\n }\n if (\n placeholder !== 'empty' &&\n placeholder !== 'blur' &&\n !placeholder.startsWith('data:image/')\n ) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"placeholder\" property \"${placeholder}\".`\n )\n }\n if (placeholder !== 'empty') {\n if (widthInt && heightInt && widthInt * heightInt < 1600) {\n warnOnce(\n `Image with src \"${src}\" is smaller than 40x40. Consider removing the \"placeholder\" property to improve performance.`\n )\n }\n }\n if (\n qualityInt &&\n config.qualities &&\n !config.qualities.includes(qualityInt)\n ) {\n warnOnce(\n `Image with src \"${src}\" is using quality \"${qualityInt}\" which is not configured in images.qualities [${config.qualities.join(', ')}]. Please update your config to [${[...config.qualities, qualityInt].sort().join(', ')}].` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-qualities`\n )\n }\n if (placeholder === 'blur' && !blurDataURL) {\n const VALID_BLUR_EXT = ['jpeg', 'png', 'webp', 'avif'] // should match next-image-loader\n\n throw new Error(\n `Image with src \"${src}\" has \"placeholder='blur'\" property but is missing the \"blurDataURL\" property.\n Possible solutions:\n - Add a \"blurDataURL\" property, the contents should be a small Data URL to represent the image\n - Change the \"src\" property to a static import with one of the supported file types: ${VALID_BLUR_EXT.join(\n ','\n )} (animated images not supported)\n - Remove the \"placeholder\" property, effectively no blur effect\n Read more: https://nextjs.org/docs/messages/placeholder-blur-data-url`\n )\n }\n if ('ref' in rest) {\n warnOnce(\n `Image with src \"${src}\" is using unsupported \"ref\" property. Consider using the \"onLoad\" property instead.`\n )\n }\n\n if (!unoptimized && !isDefaultLoader) {\n const urlStr = loader({\n config,\n src,\n width: widthInt || 400,\n quality: qualityInt || 75,\n })\n let url: URL | undefined\n try {\n url = new URL(urlStr)\n } catch (err) {}\n if (urlStr === src || (url && url.pathname === src && !url.search)) {\n warnOnce(\n `Image with src \"${src}\" has a \"loader\" property that does not implement width. Please implement it or use the \"unoptimized\" property instead.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader-width`\n )\n }\n }\n\n if (onLoadingComplete) {\n warnOnce(\n `Image with src \"${src}\" is using deprecated \"onLoadingComplete\" property. Please use the \"onLoad\" property instead.`\n )\n }\n\n for (const [legacyKey, legacyValue] of Object.entries({\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n })) {\n if (legacyValue) {\n warnOnce(\n `Image with src \"${src}\" has legacy prop \"${legacyKey}\". Did you forget to run the codemod?` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-upgrade-to-13`\n )\n }\n }\n\n if (\n typeof window !== 'undefined' &&\n !perfObserver &&\n window.PerformanceObserver\n ) {\n perfObserver = new PerformanceObserver((entryList) => {\n for (const entry of entryList.getEntries()) {\n // @ts-ignore - missing \"LargestContentfulPaint\" class with \"element\" prop\n const imgSrc = entry?.element?.src || ''\n const lcpImage = allImgs.get(imgSrc)\n if (\n lcpImage &&\n lcpImage.loading === 'lazy' &&\n lcpImage.placeholder === 'empty' &&\n !lcpImage.src.startsWith('data:') &&\n !lcpImage.src.startsWith('blob:')\n ) {\n // https://web.dev/lcp/#measure-lcp-in-javascript\n warnOnce(\n `Image with src \"${lcpImage.src}\" was detected as the Largest Contentful Paint (LCP). Please add the \\`loading=\"eager\"\\` property if this image is above the fold.` +\n `\\nRead more: https://nextjs.org/docs/app/api-reference/components/image#loading`\n )\n }\n }\n })\n try {\n perfObserver.observe({\n type: 'largest-contentful-paint',\n buffered: true,\n })\n } catch (err) {\n // Log error but don't crash the app\n console.error(err)\n }\n }\n }\n const imgStyle = Object.assign(\n fill\n ? {\n position: 'absolute',\n height: '100%',\n width: '100%',\n left: 0,\n top: 0,\n right: 0,\n bottom: 0,\n objectFit,\n objectPosition,\n }\n : {},\n showAltText ? {} : { color: 'transparent' },\n style\n )\n\n const backgroundImage =\n !blurComplete && placeholder !== 'empty'\n ? placeholder === 'blur'\n ? `url(\"data:image/svg+xml;charset=utf-8,${getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL: blurDataURL || '', // assume not undefined\n objectFit: imgStyle.objectFit,\n })}\")`\n : `url(\"${placeholder}\")` // assume `data:image/`\n : null\n\n const backgroundSize = !INVALID_BACKGROUND_SIZE_VALUES.includes(\n imgStyle.objectFit\n )\n ? imgStyle.objectFit\n : imgStyle.objectFit === 'fill'\n ? '100% 100%' // the background-size equivalent of `fill`\n : 'cover'\n\n let placeholderStyle: PlaceholderStyle = backgroundImage\n ? {\n backgroundSize,\n backgroundPosition: imgStyle.objectPosition || '50% 50%',\n backgroundRepeat: 'no-repeat',\n backgroundImage,\n }\n : {}\n\n if (process.env.NODE_ENV === 'development') {\n if (\n placeholderStyle.backgroundImage &&\n placeholder === 'blur' &&\n blurDataURL?.startsWith('/')\n ) {\n // During `next dev`, we don't want to generate blur placeholders with webpack\n // because it can delay starting the dev server. Instead, `next-image-loader.js`\n // will inline a special url to lazily generate the blur placeholder at request time.\n placeholderStyle.backgroundImage = `url(\"${blurDataURL}\")`\n }\n }\n\n const imgAttributes = generateImgAttrs({\n config,\n src,\n unoptimized,\n width: widthInt,\n quality: qualityInt,\n sizes,\n loader,\n })\n\n const loadingFinal = isLazy ? 'lazy' : loading\n\n if (process.env.NODE_ENV !== 'production') {\n if (typeof window !== 'undefined') {\n let fullUrl: URL\n try {\n fullUrl = new URL(imgAttributes.src)\n } catch (e) {\n fullUrl = new URL(imgAttributes.src, window.location.href)\n }\n allImgs.set(fullUrl.href, { src, loading: loadingFinal, placeholder })\n }\n }\n\n const props: ImgProps = {\n ...rest,\n loading: loadingFinal,\n fetchPriority,\n width: widthInt,\n height: heightInt,\n decoding,\n className,\n style: { ...imgStyle, ...placeholderStyle },\n sizes: imgAttributes.sizes,\n srcSet: imgAttributes.srcSet,\n src: overrideSrc || imgAttributes.src,\n }\n const meta = { unoptimized, preload: preload || priority, placeholder, fill }\n return { props, meta }\n}\n"],"names":["getImgProps","VALID_LOADING_VALUES","undefined","INVALID_BACKGROUND_SIZE_VALUES","isStaticRequire","src","default","isStaticImageData","isStaticImport","allImgs","Map","perfObserver","getInt","x","Number","isFinite","NaN","test","parseInt","getWidths","deviceSizes","allSizes","width","sizes","viewportWidthRe","percentSizes","match","exec","push","length","smallestRatio","Math","min","widths","filter","s","kind","Set","map","w","find","p","generateImgAttrs","config","unoptimized","quality","loader","deploymentId","getDeploymentId","startsWith","sep","includes","srcSet","last","i","join","priority","preload","loading","className","height","fill","style","overrideSrc","onLoad","onLoadingComplete","placeholder","blurDataURL","fetchPriority","decoding","layout","objectFit","objectPosition","lazyBoundary","lazyRoot","rest","_state","imgConf","showAltText","blurComplete","defaultLoader","c","imageConfigDefault","imageSizes","sort","a","b","qualities","Error","isDefaultLoader","customImageLoader","obj","_","opts","layoutToStyle","intrinsic","maxWidth","responsive","layoutToSizes","layoutStyle","layoutSizes","staticSrc","widthInt","heightInt","blurWidth","blurHeight","staticImageData","JSON","stringify","ratio","round","isLazy","dangerouslyAllowSVG","split","endsWith","qualityInt","process","env","NODE_ENV","output","position","isNaN","String","warnOnce","VALID_BLUR_EXT","urlStr","url","URL","err","pathname","search","legacyKey","legacyValue","Object","entries","window","PerformanceObserver","entryList","entry","getEntries","imgSrc","element","lcpImage","get","observe","type","buffered","console","error","imgStyle","assign","left","top","right","bottom","color","backgroundImage","getImageBlurSvg","backgroundSize","placeholderStyle","backgroundPosition","backgroundRepeat","imgAttributes","loadingFinal","fullUrl","e","location","href","set","props","meta"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3220, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/client/image-component.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/image-component.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 3226, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/client/image-component.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/image-component.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 3233, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/image-component.tsx"],"sourcesContent":["'use client'\n\nimport React, {\n useRef,\n useEffect,\n useCallback,\n useContext,\n useMemo,\n useState,\n forwardRef,\n use,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport Head from '../shared/lib/head'\nimport { getImgProps } from '../shared/lib/get-img-props'\nimport type {\n ImageProps,\n ImgProps,\n OnLoad,\n OnLoadingComplete,\n PlaceholderValue,\n} from '../shared/lib/get-img-props'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n} from '../shared/lib/image-config'\nimport { imageConfigDefault } from '../shared/lib/image-config'\nimport { ImageConfigContext } from '../shared/lib/image-config-context.shared-runtime'\nimport { warnOnce } from '../shared/lib/utils/warn-once'\nimport { RouterContext } from '../shared/lib/router-context.shared-runtime'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\nimport { useMergedRef } from './use-merged-ref'\n\n// This is replaced by webpack define plugin\nconst configEnv = process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete\n\nif (typeof window === 'undefined') {\n ;(globalThis as any).__NEXT_IMAGE_IMPORTED = true\n}\n\nexport type { ImageLoaderProps }\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\ntype ImgElementWithDataProp = HTMLImageElement & {\n 'data-loaded-src': string | undefined\n}\n\ntype ImageElementProps = ImgProps & {\n unoptimized: boolean\n placeholder: PlaceholderValue\n onLoadRef: React.MutableRefObject\n onLoadingCompleteRef: React.MutableRefObject\n setBlurComplete: (b: boolean) => void\n setShowAltText: (b: boolean) => void\n sizesInput: string | undefined\n}\n\n// See https://stackoverflow.com/q/39777833/266535 for why we use this ref\n// handler instead of the img's onLoad attribute.\nfunction handleLoading(\n img: ImgElementWithDataProp,\n placeholder: PlaceholderValue,\n onLoadRef: React.MutableRefObject,\n onLoadingCompleteRef: React.MutableRefObject,\n setBlurComplete: (b: boolean) => void,\n unoptimized: boolean,\n sizesInput: string | undefined\n) {\n const src = img?.src\n if (!img || img['data-loaded-src'] === src) {\n return\n }\n img['data-loaded-src'] = src\n const p = 'decode' in img ? img.decode() : Promise.resolve()\n p.catch(() => {}).then(() => {\n if (!img.parentElement || !img.isConnected) {\n // Exit early in case of race condition:\n // - onload() is called\n // - decode() is called but incomplete\n // - unmount is called\n // - decode() completes\n return\n }\n if (placeholder !== 'empty') {\n setBlurComplete(true)\n }\n if (onLoadRef?.current) {\n // Since we don't have the SyntheticEvent here,\n // we must create one with the same shape.\n // See https://reactjs.org/docs/events.html\n const event = new Event('load')\n Object.defineProperty(event, 'target', { writable: false, value: img })\n let prevented = false\n let stopped = false\n onLoadRef.current({\n ...event,\n nativeEvent: event,\n currentTarget: img,\n target: img,\n isDefaultPrevented: () => prevented,\n isPropagationStopped: () => stopped,\n persist: () => {},\n preventDefault: () => {\n prevented = true\n event.preventDefault()\n },\n stopPropagation: () => {\n stopped = true\n event.stopPropagation()\n },\n })\n }\n if (onLoadingCompleteRef?.current) {\n onLoadingCompleteRef.current(img)\n }\n if (process.env.NODE_ENV !== 'production') {\n const origSrc = new URL(src, 'http://n').searchParams.get('url') || src\n if (img.getAttribute('data-nimg') === 'fill') {\n if (!unoptimized && (!sizesInput || sizesInput === '100vw')) {\n let widthViewportRatio =\n img.getBoundingClientRect().width / window.innerWidth\n if (widthViewportRatio < 0.6) {\n if (sizesInput === '100vw') {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" prop and \"sizes\" prop of \"100vw\", but image is not rendered at full viewport width. Please adjust \"sizes\" to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n } else {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" but is missing \"sizes\" prop. Please add it to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n }\n }\n }\n if (img.parentElement) {\n const { position } = window.getComputedStyle(img.parentElement)\n const valid = ['absolute', 'fixed', 'relative']\n if (!valid.includes(position)) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and parent element with invalid \"position\". Provided \"${position}\" should be one of ${valid\n .map(String)\n .join(',')}.`\n )\n }\n }\n if (img.height === 0) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and a height value of 0. This is likely because the parent element of the image has not been styled to have a set height.`\n )\n }\n }\n\n const heightModified =\n img.height.toString() !== img.getAttribute('height')\n const widthModified = img.width.toString() !== img.getAttribute('width')\n if (\n (heightModified && !widthModified) ||\n (!heightModified && widthModified)\n ) {\n warnOnce(\n `Image with src \"${origSrc}\" has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: \"auto\"' or 'height: \"auto\"' to maintain the aspect ratio.`\n )\n }\n }\n })\n}\n\nfunction getDynamicProps(\n fetchPriority?: string\n): Record {\n if (Boolean(use)) {\n // In React 19.0.0 or newer, we must use camelCase\n // prop to avoid \"Warning: Invalid DOM property\".\n // See https://github.com/facebook/react/pull/25927\n return { fetchPriority }\n }\n // In React 18.2.0 or older, we must use lowercase prop\n // to avoid \"Warning: Invalid DOM property\".\n return { fetchpriority: fetchPriority }\n}\n\nconst ImageElement = forwardRef(\n (\n {\n src,\n srcSet,\n sizes,\n height,\n width,\n decoding,\n className,\n style,\n fetchPriority,\n placeholder,\n loading,\n unoptimized,\n fill,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n setShowAltText,\n sizesInput,\n onLoad,\n onError,\n ...rest\n },\n forwardedRef\n ) => {\n const ownRef = useCallback(\n (img: ImgElementWithDataProp | null) => {\n if (!img) {\n return\n }\n if (onError) {\n // If the image has an error before react hydrates, then the error is lost.\n // The workaround is to wait until the image is mounted which is after hydration,\n // then we set the src again to trigger the error handler (if there was an error).\n // eslint-disable-next-line no-self-assign\n img.src = img.src\n }\n if (process.env.NODE_ENV !== 'production') {\n if (!src) {\n console.error(`Image is missing required \"src\" property:`, img)\n }\n if (img.getAttribute('alt') === null) {\n console.error(\n `Image is missing required \"alt\" property. Please add Alternative Text to describe the image for screen readers and search engines.`\n )\n }\n }\n if (img.complete) {\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }\n },\n [\n src,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n onError,\n unoptimized,\n sizesInput,\n ]\n )\n\n const ref = useMergedRef(forwardedRef, ownRef)\n\n return (\n {\n const img = event.currentTarget as ImgElementWithDataProp\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }}\n onError={(event) => {\n // if the real image fails to load, this will ensure \"alt\" is visible\n setShowAltText(true)\n if (placeholder !== 'empty') {\n // If the real image fails to load, this will still remove the placeholder.\n setBlurComplete(true)\n }\n if (onError) {\n onError(event)\n }\n }}\n />\n )\n }\n)\n\nfunction ImagePreload({\n isAppRouter,\n imgAttributes,\n}: {\n isAppRouter: boolean\n imgAttributes: ImgProps\n}) {\n const opts: ReactDOM.PreloadOptions = {\n as: 'image',\n imageSrcSet: imgAttributes.srcSet,\n imageSizes: imgAttributes.sizes,\n crossOrigin: imgAttributes.crossOrigin,\n referrerPolicy: imgAttributes.referrerPolicy,\n ...getDynamicProps(imgAttributes.fetchPriority),\n }\n\n if (isAppRouter && ReactDOM.preload) {\n ReactDOM.preload(imgAttributes.src, opts)\n return null\n }\n\n return (\n \n \n \n )\n}\n\n/**\n * The `Image` component is used to optimize images.\n *\n * Read more: [Next.js docs: `Image`](https://nextjs.org/docs/app/api-reference/components/image)\n */\nexport const Image = forwardRef(\n (props, forwardedRef) => {\n const pagesRouter = useContext(RouterContext)\n // We're in the app directory if there is no pages router.\n const isAppRouter = !pagesRouter\n\n const configContext = useContext(ImageConfigContext)\n const config = useMemo(() => {\n const c = configEnv || configContext || imageConfigDefault\n\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n return {\n ...c,\n allSizes,\n deviceSizes,\n qualities,\n // During the SSR, configEnv (__NEXT_IMAGE_OPTS) does not include\n // security sensitive configs like `localPatterns`, which is needed\n // during the server render to ensure it's validated. Therefore use\n // configContext, which holds the config from the server for validation.\n localPatterns:\n typeof window === 'undefined'\n ? configContext?.localPatterns\n : c.localPatterns,\n }\n }, [configContext])\n\n const { onLoad, onLoadingComplete } = props\n const onLoadRef = useRef(onLoad)\n\n useEffect(() => {\n onLoadRef.current = onLoad\n }, [onLoad])\n\n const onLoadingCompleteRef = useRef(onLoadingComplete)\n\n useEffect(() => {\n onLoadingCompleteRef.current = onLoadingComplete\n }, [onLoadingComplete])\n\n const [blurComplete, setBlurComplete] = useState(false)\n const [showAltText, setShowAltText] = useState(false)\n const { props: imgAttributes, meta: imgMeta } = getImgProps(props, {\n defaultLoader,\n imgConf: config,\n blurComplete,\n showAltText,\n })\n\n return (\n <>\n {\n \n }\n {imgMeta.preload ? (\n \n ) : null}\n \n )\n }\n)\n"],"names":["Image","configEnv","process","env","__NEXT_IMAGE_OPTS","window","globalThis","__NEXT_IMAGE_IMPORTED","handleLoading","img","placeholder","onLoadRef","onLoadingCompleteRef","setBlurComplete","unoptimized","sizesInput","src","p","decode","Promise","resolve","catch","then","parentElement","isConnected","current","event","Event","Object","defineProperty","writable","value","prevented","stopped","nativeEvent","currentTarget","target","isDefaultPrevented","isPropagationStopped","persist","preventDefault","stopPropagation","NODE_ENV","origSrc","URL","searchParams","get","getAttribute","widthViewportRatio","getBoundingClientRect","width","innerWidth","warnOnce","position","getComputedStyle","valid","includes","map","String","join","height","heightModified","toString","widthModified","getDynamicProps","fetchPriority","Boolean","use","fetchpriority","ImageElement","forwardRef","srcSet","sizes","decoding","className","style","loading","fill","setShowAltText","onLoad","onError","rest","forwardedRef","ownRef","useCallback","console","error","complete","ref","useMergedRef","data-nimg","ImagePreload","isAppRouter","imgAttributes","opts","as","imageSrcSet","imageSizes","crossOrigin","referrerPolicy","ReactDOM","preload","Head","link","rel","href","undefined","props","pagesRouter","useContext","RouterContext","configContext","ImageConfigContext","config","useMemo","c","imageConfigDefault","allSizes","deviceSizes","sort","a","b","qualities","localPatterns","onLoadingComplete","useRef","useEffect","blurComplete","useState","showAltText","meta","imgMeta","getImgProps","defaultLoader","imgConf"],"mappings":"","ignoreList":[0]}}, - {"offset": {"line": 3241, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/find-closest-quality.ts"],"sourcesContent":["import type { NextConfig } from '../../server/config-shared'\n\n/**\n * Find the closest matching `quality` in the list of `config.qualities`\n * @param quality the quality prop passed to the image component\n * @param config the \"images\" configuration from next.config.js\n * @returns the closest matching quality value\n */\nexport function findClosestQuality(\n quality: number | undefined,\n config: NextConfig['images'] | undefined\n): number {\n const q = quality || 75\n if (!config?.qualities?.length) {\n return q\n }\n return config.qualities.reduce(\n (prev, cur) => (Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev),\n 0\n )\n}\n"],"names":["findClosestQuality","quality","config","q","qualities","length","reduce","prev","cur","Math","abs"],"mappings":";;;+BAQgBA,sBAAAA;;;eAAAA;;;AAAT,SAASA,mBACdC,OAA2B,EAC3BC,MAAwC;IAExC,MAAMC,IAAIF,WAAW;IACrB,IAAI,CAACC,QAAQE,WAAWC,QAAQ;QAC9B,OAAOF;IACT;IACA,OAAOD,OAAOE,SAAS,CAACE,MAAM,CAC5B,CAACC,MAAMC,MAASC,KAAKC,GAAG,CAACF,MAAML,KAAKM,KAAKC,GAAG,CAACH,OAAOJ,KAAKK,MAAMD,MAC/D;AAEJ","ignoreList":[0]}}, - {"offset": {"line": 3260, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/picomatch/index.js"],"sourcesContent":["(()=>{\"use strict\";var t={170:(t,e,u)=>{const n=u(510);const isWindows=()=>{if(typeof navigator!==\"undefined\"&&navigator.platform){const t=navigator.platform.toLowerCase();return t===\"win32\"||t===\"windows\"}if(typeof process!==\"undefined\"&&process.platform){return process.platform===\"win32\"}return false};function picomatch(t,e,u=false){if(e&&(e.windows===null||e.windows===undefined)){e={...e,windows:isWindows()}}return n(t,e,u)}Object.assign(picomatch,n);t.exports=picomatch},154:t=>{const e=\"\\\\\\\\/\";const u=`[^${e}]`;const n=\"\\\\.\";const o=\"\\\\+\";const s=\"\\\\?\";const r=\"\\\\/\";const a=\"(?=.)\";const i=\"[^/]\";const c=`(?:${r}|$)`;const p=`(?:^|${r})`;const l=`${n}{1,2}${c}`;const f=`(?!${n})`;const A=`(?!${p}${l})`;const _=`(?!${n}{0,1}${c})`;const R=`(?!${l})`;const E=`[^.${r}]`;const h=`${i}*?`;const g=\"/\";const b={DOT_LITERAL:n,PLUS_LITERAL:o,QMARK_LITERAL:s,SLASH_LITERAL:r,ONE_CHAR:a,QMARK:i,END_ANCHOR:c,DOTS_SLASH:l,NO_DOT:f,NO_DOTS:A,NO_DOT_SLASH:_,NO_DOTS_SLASH:R,QMARK_NO_DOT:E,STAR:h,START_ANCHOR:p,SEP:g};const C={...b,SLASH_LITERAL:`[${e}]`,QMARK:u,STAR:`${u}*?`,DOTS_SLASH:`${n}{1,2}(?:[${e}]|$)`,NO_DOT:`(?!${n})`,NO_DOTS:`(?!(?:^|[${e}])${n}{1,2}(?:[${e}]|$))`,NO_DOT_SLASH:`(?!${n}{0,1}(?:[${e}]|$))`,NO_DOTS_SLASH:`(?!${n}{1,2}(?:[${e}]|$))`,QMARK_NO_DOT:`[^.${e}]`,START_ANCHOR:`(?:^|[${e}])`,END_ANCHOR:`(?:[${e}]|$)`,SEP:\"\\\\\"};const y={alnum:\"a-zA-Z0-9\",alpha:\"a-zA-Z\",ascii:\"\\\\x00-\\\\x7F\",blank:\" \\\\t\",cntrl:\"\\\\x00-\\\\x1F\\\\x7F\",digit:\"0-9\",graph:\"\\\\x21-\\\\x7E\",lower:\"a-z\",print:\"\\\\x20-\\\\x7E \",punct:\"\\\\-!\\\"#$%&'()\\\\*+,./:;<=>?@[\\\\]^_`{|}~\",space:\" \\\\t\\\\r\\\\n\\\\v\\\\f\",upper:\"A-Z\",word:\"A-Za-z0-9_\",xdigit:\"A-Fa-f0-9\"};t.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:y,REGEX_BACKSLASH:/\\\\(?![*+?^${}(|)[\\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\\].,$*+?^{}()|\\\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\\\?)((\\W)(\\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\\[.*?[^\\\\]\\]|\\\\(?=.))/g,REPLACEMENTS:{\"***\":\"*\",\"**/**\":\"**\",\"**/**/**\":\"**\"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,extglobChars(t){return{\"!\":{type:\"negate\",open:\"(?:(?!(?:\",close:`))${t.STAR})`},\"?\":{type:\"qmark\",open:\"(?:\",close:\")?\"},\"+\":{type:\"plus\",open:\"(?:\",close:\")+\"},\"*\":{type:\"star\",open:\"(?:\",close:\")*\"},\"@\":{type:\"at\",open:\"(?:\",close:\")\"}}},globChars(t){return t===true?C:b}}},697:(t,e,u)=>{const n=u(154);const o=u(96);const{MAX_LENGTH:s,POSIX_REGEX_SOURCE:r,REGEX_NON_SPECIAL_CHARS:a,REGEX_SPECIAL_CHARS_BACKREF:i,REPLACEMENTS:c}=n;const expandRange=(t,e)=>{if(typeof e.expandRange===\"function\"){return e.expandRange(...t,e)}t.sort();const u=`[${t.join(\"-\")}]`;try{new RegExp(u)}catch(e){return t.map((t=>o.escapeRegex(t))).join(\"..\")}return u};const syntaxError=(t,e)=>`Missing ${t}: \"${e}\" - use \"\\\\\\\\${e}\" to match literal characters`;const parse=(t,e)=>{if(typeof t!==\"string\"){throw new TypeError(\"Expected a string\")}t=c[t]||t;const u={...e};const p=typeof u.maxLength===\"number\"?Math.min(s,u.maxLength):s;let l=t.length;if(l>p){throw new SyntaxError(`Input length: ${l}, exceeds maximum allowed length: ${p}`)}const f={type:\"bos\",value:\"\",output:u.prepend||\"\"};const A=[f];const _=u.capture?\"\":\"?:\";const R=n.globChars(u.windows);const E=n.extglobChars(R);const{DOT_LITERAL:h,PLUS_LITERAL:g,SLASH_LITERAL:b,ONE_CHAR:C,DOTS_SLASH:y,NO_DOT:$,NO_DOT_SLASH:x,NO_DOTS_SLASH:S,QMARK:H,QMARK_NO_DOT:v,STAR:d,START_ANCHOR:L}=R;const globstar=t=>`(${_}(?:(?!${L}${t.dot?y:h}).)*?)`;const T=u.dot?\"\":$;const O=u.dot?H:v;let k=u.bash===true?globstar(u):d;if(u.capture){k=`(${k})`}if(typeof u.noext===\"boolean\"){u.noextglob=u.noext}const m={input:t,index:-1,start:0,dot:u.dot===true,consumed:\"\",output:\"\",prefix:\"\",backtrack:false,negated:false,brackets:0,braces:0,parens:0,quotes:0,globstar:false,tokens:A};t=o.removePrefix(t,m);l=t.length;const w=[];const N=[];const I=[];let B=f;let G;const eos=()=>m.index===l-1;const D=m.peek=(e=1)=>t[m.index+e];const M=m.advance=()=>t[++m.index]||\"\";const remaining=()=>t.slice(m.index+1);const consume=(t=\"\",e=0)=>{m.consumed+=t;m.index+=e};const append=t=>{m.output+=t.output!=null?t.output:t.value;consume(t.value)};const negate=()=>{let t=1;while(D()===\"!\"&&(D(2)!==\"(\"||D(3)===\"?\")){M();m.start++;t++}if(t%2===0){return false}m.negated=true;m.start++;return true};const increment=t=>{m[t]++;I.push(t)};const decrement=t=>{m[t]--;I.pop()};const push=t=>{if(B.type===\"globstar\"){const e=m.braces>0&&(t.type===\"comma\"||t.type===\"brace\");const u=t.extglob===true||w.length&&(t.type===\"pipe\"||t.type===\"paren\");if(t.type!==\"slash\"&&t.type!==\"paren\"&&!e&&!u){m.output=m.output.slice(0,-B.output.length);B.type=\"star\";B.value=\"*\";B.output=k;m.output+=B.output}}if(w.length&&t.type!==\"paren\"){w[w.length-1].inner+=t.value}if(t.value||t.output)append(t);if(B&&B.type===\"text\"&&t.type===\"text\"){B.output=(B.output||B.value)+t.value;B.value+=t.value;return}t.prev=B;A.push(t);B=t};const extglobOpen=(t,e)=>{const n={...E[e],conditions:1,inner:\"\"};n.prev=B;n.parens=m.parens;n.output=m.output;const o=(u.capture?\"(\":\"\")+n.open;increment(\"parens\");push({type:t,value:e,output:m.output?\"\":C});push({type:\"paren\",extglob:true,value:M(),output:o});w.push(n)};const extglobClose=t=>{let n=t.close+(u.capture?\")\":\"\");let o;if(t.type===\"negate\"){let s=k;if(t.inner&&t.inner.length>1&&t.inner.includes(\"/\")){s=globstar(u)}if(s!==k||eos()||/^\\)+$/.test(remaining())){n=t.close=`)$))${s}`}if(t.inner.includes(\"*\")&&(o=remaining())&&/^\\.[^\\\\/.]+$/.test(o)){const u=parse(o,{...e,fastpaths:false}).output;n=t.close=`)${u})${s})`}if(t.prev.type===\"bos\"){m.negatedExtglob=true}}push({type:\"paren\",extglob:true,value:G,output:n});decrement(\"parens\")};if(u.fastpaths!==false&&!/(^[*!]|[/()[\\]{}\"])/.test(t)){let n=false;let s=t.replace(i,((t,e,u,o,s,r)=>{if(o===\"\\\\\"){n=true;return t}if(o===\"?\"){if(e){return e+o+(s?H.repeat(s.length):\"\")}if(r===0){return O+(s?H.repeat(s.length):\"\")}return H.repeat(u.length)}if(o===\".\"){return h.repeat(u.length)}if(o===\"*\"){if(e){return e+o+(s?k:\"\")}return k}return e?t:`\\\\${t}`}));if(n===true){if(u.unescape===true){s=s.replace(/\\\\/g,\"\")}else{s=s.replace(/\\\\+/g,(t=>t.length%2===0?\"\\\\\\\\\":t?\"\\\\\":\"\"))}}if(s===t&&u.contains===true){m.output=t;return m}m.output=o.wrapOutput(s,m,e);return m}while(!eos()){G=M();if(G===\"\\0\"){continue}if(G===\"\\\\\"){const t=D();if(t===\"/\"&&u.bash!==true){continue}if(t===\".\"||t===\";\"){continue}if(!t){G+=\"\\\\\";push({type:\"text\",value:G});continue}const e=/^\\\\+/.exec(remaining());let n=0;if(e&&e[0].length>2){n=e[0].length;m.index+=n;if(n%2!==0){G+=\"\\\\\"}}if(u.unescape===true){G=M()}else{G+=M()}if(m.brackets===0){push({type:\"text\",value:G});continue}}if(m.brackets>0&&(G!==\"]\"||B.value===\"[\"||B.value===\"[^\")){if(u.posix!==false&&G===\":\"){const t=B.value.slice(1);if(t.includes(\"[\")){B.posix=true;if(t.includes(\":\")){const t=B.value.lastIndexOf(\"[\");const e=B.value.slice(0,t);const u=B.value.slice(t+2);const n=r[u];if(n){B.value=e+n;m.backtrack=true;M();if(!f.output&&A.indexOf(B)===1){f.output=C}continue}}}}if(G===\"[\"&&D()!==\":\"||G===\"-\"&&D()===\"]\"){G=`\\\\${G}`}if(G===\"]\"&&(B.value===\"[\"||B.value===\"[^\")){G=`\\\\${G}`}if(u.posix===true&&G===\"!\"&&B.value===\"[\"){G=\"^\"}B.value+=G;append({value:G});continue}if(m.quotes===1&&G!=='\"'){G=o.escapeRegex(G);B.value+=G;append({value:G});continue}if(G==='\"'){m.quotes=m.quotes===1?0:1;if(u.keepQuotes===true){push({type:\"text\",value:G})}continue}if(G===\"(\"){increment(\"parens\");push({type:\"paren\",value:G});continue}if(G===\")\"){if(m.parens===0&&u.strictBrackets===true){throw new SyntaxError(syntaxError(\"opening\",\"(\"))}const t=w[w.length-1];if(t&&m.parens===t.parens+1){extglobClose(w.pop());continue}push({type:\"paren\",value:G,output:m.parens?\")\":\"\\\\)\"});decrement(\"parens\");continue}if(G===\"[\"){if(u.nobracket===true||!remaining().includes(\"]\")){if(u.nobracket!==true&&u.strictBrackets===true){throw new SyntaxError(syntaxError(\"closing\",\"]\"))}G=`\\\\${G}`}else{increment(\"brackets\")}push({type:\"bracket\",value:G});continue}if(G===\"]\"){if(u.nobracket===true||B&&B.type===\"bracket\"&&B.value.length===1){push({type:\"text\",value:G,output:`\\\\${G}`});continue}if(m.brackets===0){if(u.strictBrackets===true){throw new SyntaxError(syntaxError(\"opening\",\"[\"))}push({type:\"text\",value:G,output:`\\\\${G}`});continue}decrement(\"brackets\");const t=B.value.slice(1);if(B.posix!==true&&t[0]===\"^\"&&!t.includes(\"/\")){G=`/${G}`}B.value+=G;append({value:G});if(u.literalBrackets===false||o.hasRegexChars(t)){continue}const e=o.escapeRegex(B.value);m.output=m.output.slice(0,-B.value.length);if(u.literalBrackets===true){m.output+=e;B.value=e;continue}B.value=`(${_}${e}|${B.value})`;m.output+=B.value;continue}if(G===\"{\"&&u.nobrace!==true){increment(\"braces\");const t={type:\"brace\",value:G,output:\"(\",outputIndex:m.output.length,tokensIndex:m.tokens.length};N.push(t);push(t);continue}if(G===\"}\"){const t=N[N.length-1];if(u.nobrace===true||!t){push({type:\"text\",value:G,output:G});continue}let e=\")\";if(t.dots===true){const t=A.slice();const n=[];for(let e=t.length-1;e>=0;e--){A.pop();if(t[e].type===\"brace\"){break}if(t[e].type!==\"dots\"){n.unshift(t[e].value)}}e=expandRange(n,u);m.backtrack=true}if(t.comma!==true&&t.dots!==true){const u=m.output.slice(0,t.outputIndex);const n=m.tokens.slice(t.tokensIndex);t.value=t.output=\"\\\\{\";G=e=\"\\\\}\";m.output=u;for(const t of n){m.output+=t.output||t.value}}push({type:\"brace\",value:G,output:e});decrement(\"braces\");N.pop();continue}if(G===\"|\"){if(w.length>0){w[w.length-1].conditions++}push({type:\"text\",value:G});continue}if(G===\",\"){let t=G;const e=N[N.length-1];if(e&&I[I.length-1]===\"braces\"){e.comma=true;t=\"|\"}push({type:\"comma\",value:G,output:t});continue}if(G===\"/\"){if(B.type===\"dot\"&&m.index===m.start+1){m.start=m.index+1;m.consumed=\"\";m.output=\"\";A.pop();B=f;continue}push({type:\"slash\",value:G,output:b});continue}if(G===\".\"){if(m.braces>0&&B.type===\"dot\"){if(B.value===\".\")B.output=h;const t=N[N.length-1];B.type=\"dots\";B.output+=G;B.value+=G;t.dots=true;continue}if(m.braces+m.parens===0&&B.type!==\"bos\"&&B.type!==\"slash\"){push({type:\"text\",value:G,output:h});continue}push({type:\"dot\",value:G,output:h});continue}if(G===\"?\"){const t=B&&B.value===\"(\";if(!t&&u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){extglobOpen(\"qmark\",G);continue}if(B&&B.type===\"paren\"){const t=D();let e=G;if(B.value===\"(\"&&!/[!=<:]/.test(t)||t===\"<\"&&!/<([!=]|\\w+>)/.test(remaining())){e=`\\\\${G}`}push({type:\"text\",value:G,output:e});continue}if(u.dot!==true&&(B.type===\"slash\"||B.type===\"bos\")){push({type:\"qmark\",value:G,output:v});continue}push({type:\"qmark\",value:G,output:H});continue}if(G===\"!\"){if(u.noextglob!==true&&D()===\"(\"){if(D(2)!==\"?\"||!/[!=<:]/.test(D(3))){extglobOpen(\"negate\",G);continue}}if(u.nonegate!==true&&m.index===0){negate();continue}}if(G===\"+\"){if(u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){extglobOpen(\"plus\",G);continue}if(B&&B.value===\"(\"||u.regex===false){push({type:\"plus\",value:G,output:g});continue}if(B&&(B.type===\"bracket\"||B.type===\"paren\"||B.type===\"brace\")||m.parens>0){push({type:\"plus\",value:G});continue}push({type:\"plus\",value:g});continue}if(G===\"@\"){if(u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){push({type:\"at\",extglob:true,value:G,output:\"\"});continue}push({type:\"text\",value:G});continue}if(G!==\"*\"){if(G===\"$\"||G===\"^\"){G=`\\\\${G}`}const t=a.exec(remaining());if(t){G+=t[0];m.index+=t[0].length}push({type:\"text\",value:G});continue}if(B&&(B.type===\"globstar\"||B.star===true)){B.type=\"star\";B.star=true;B.value+=G;B.output=k;m.backtrack=true;m.globstar=true;consume(G);continue}let e=remaining();if(u.noextglob!==true&&/^\\([^?]/.test(e)){extglobOpen(\"star\",G);continue}if(B.type===\"star\"){if(u.noglobstar===true){consume(G);continue}const n=B.prev;const o=n.prev;const s=n.type===\"slash\"||n.type===\"bos\";const r=o&&(o.type===\"star\"||o.type===\"globstar\");if(u.bash===true&&(!s||e[0]&&e[0]!==\"/\")){push({type:\"star\",value:G,output:\"\"});continue}const a=m.braces>0&&(n.type===\"comma\"||n.type===\"brace\");const i=w.length&&(n.type===\"pipe\"||n.type===\"paren\");if(!s&&n.type!==\"paren\"&&!a&&!i){push({type:\"star\",value:G,output:\"\"});continue}while(e.slice(0,3)===\"/**\"){const u=t[m.index+4];if(u&&u!==\"/\"){break}e=e.slice(3);consume(\"/**\",3)}if(n.type===\"bos\"&&eos()){B.type=\"globstar\";B.value+=G;B.output=globstar(u);m.output=B.output;m.globstar=true;consume(G);continue}if(n.type===\"slash\"&&n.prev.type!==\"bos\"&&!r&&eos()){m.output=m.output.slice(0,-(n.output+B.output).length);n.output=`(?:${n.output}`;B.type=\"globstar\";B.output=globstar(u)+(u.strictSlashes?\")\":\"|$)\");B.value+=G;m.globstar=true;m.output+=n.output+B.output;consume(G);continue}if(n.type===\"slash\"&&n.prev.type!==\"bos\"&&e[0]===\"/\"){const t=e[1]!==void 0?\"|$\":\"\";m.output=m.output.slice(0,-(n.output+B.output).length);n.output=`(?:${n.output}`;B.type=\"globstar\";B.output=`${globstar(u)}${b}|${b}${t})`;B.value+=G;m.output+=n.output+B.output;m.globstar=true;consume(G+M());push({type:\"slash\",value:\"/\",output:\"\"});continue}if(n.type===\"bos\"&&e[0]===\"/\"){B.type=\"globstar\";B.value+=G;B.output=`(?:^|${b}|${globstar(u)}${b})`;m.output=B.output;m.globstar=true;consume(G+M());push({type:\"slash\",value:\"/\",output:\"\"});continue}m.output=m.output.slice(0,-B.output.length);B.type=\"globstar\";B.output=globstar(u);B.value+=G;m.output+=B.output;m.globstar=true;consume(G);continue}const n={type:\"star\",value:G,output:k};if(u.bash===true){n.output=\".*?\";if(B.type===\"bos\"||B.type===\"slash\"){n.output=T+n.output}push(n);continue}if(B&&(B.type===\"bracket\"||B.type===\"paren\")&&u.regex===true){n.output=G;push(n);continue}if(m.index===m.start||B.type===\"slash\"||B.type===\"dot\"){if(B.type===\"dot\"){m.output+=x;B.output+=x}else if(u.dot===true){m.output+=S;B.output+=S}else{m.output+=T;B.output+=T}if(D()!==\"*\"){m.output+=C;B.output+=C}}push(n)}while(m.brackets>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\"]\"));m.output=o.escapeLast(m.output,\"[\");decrement(\"brackets\")}while(m.parens>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\")\"));m.output=o.escapeLast(m.output,\"(\");decrement(\"parens\")}while(m.braces>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\"}\"));m.output=o.escapeLast(m.output,\"{\");decrement(\"braces\")}if(u.strictSlashes!==true&&(B.type===\"star\"||B.type===\"bracket\")){push({type:\"maybe_slash\",value:\"\",output:`${b}?`})}if(m.backtrack===true){m.output=\"\";for(const t of m.tokens){m.output+=t.output!=null?t.output:t.value;if(t.suffix){m.output+=t.suffix}}}return m};parse.fastpaths=(t,e)=>{const u={...e};const r=typeof u.maxLength===\"number\"?Math.min(s,u.maxLength):s;const a=t.length;if(a>r){throw new SyntaxError(`Input length: ${a}, exceeds maximum allowed length: ${r}`)}t=c[t]||t;const{DOT_LITERAL:i,SLASH_LITERAL:p,ONE_CHAR:l,DOTS_SLASH:f,NO_DOT:A,NO_DOTS:_,NO_DOTS_SLASH:R,STAR:E,START_ANCHOR:h}=n.globChars(u.windows);const g=u.dot?_:A;const b=u.dot?R:A;const C=u.capture?\"\":\"?:\";const y={negated:false,prefix:\"\"};let $=u.bash===true?\".*?\":E;if(u.capture){$=`(${$})`}const globstar=t=>{if(t.noglobstar===true)return $;return`(${C}(?:(?!${h}${t.dot?f:i}).)*?)`};const create=t=>{switch(t){case\"*\":return`${g}${l}${$}`;case\".*\":return`${i}${l}${$}`;case\"*.*\":return`${g}${$}${i}${l}${$}`;case\"*/*\":return`${g}${$}${p}${l}${b}${$}`;case\"**\":return g+globstar(u);case\"**/*\":return`(?:${g}${globstar(u)}${p})?${b}${l}${$}`;case\"**/*.*\":return`(?:${g}${globstar(u)}${p})?${b}${$}${i}${l}${$}`;case\"**/.*\":return`(?:${g}${globstar(u)}${p})?${i}${l}${$}`;default:{const e=/^(.*?)\\.(\\w+)$/.exec(t);if(!e)return;const u=create(e[1]);if(!u)return;return u+i+e[2]}}};const x=o.removePrefix(t,y);let S=create(x);if(S&&u.strictSlashes!==true){S+=`${p}?`}return S};t.exports=parse},510:(t,e,u)=>{const n=u(716);const o=u(697);const s=u(96);const r=u(154);const isObject=t=>t&&typeof t===\"object\"&&!Array.isArray(t);const picomatch=(t,e,u=false)=>{if(Array.isArray(t)){const n=t.map((t=>picomatch(t,e,u)));const arrayMatcher=t=>{for(const e of n){const u=e(t);if(u)return u}return false};return arrayMatcher}const n=isObject(t)&&t.tokens&&t.input;if(t===\"\"||typeof t!==\"string\"&&!n){throw new TypeError(\"Expected pattern to be a non-empty string\")}const o=e||{};const s=o.windows;const r=n?picomatch.compileRe(t,e):picomatch.makeRe(t,e,false,true);const a=r.state;delete r.state;let isIgnored=()=>false;if(o.ignore){const t={...e,ignore:null,onMatch:null,onResult:null};isIgnored=picomatch(o.ignore,t,u)}const matcher=(u,n=false)=>{const{isMatch:i,match:c,output:p}=picomatch.test(u,r,e,{glob:t,posix:s});const l={glob:t,state:a,regex:r,posix:s,input:u,output:p,match:c,isMatch:i};if(typeof o.onResult===\"function\"){o.onResult(l)}if(i===false){l.isMatch=false;return n?l:false}if(isIgnored(u)){if(typeof o.onIgnore===\"function\"){o.onIgnore(l)}l.isMatch=false;return n?l:false}if(typeof o.onMatch===\"function\"){o.onMatch(l)}return n?l:true};if(u){matcher.state=a}return matcher};picomatch.test=(t,e,u,{glob:n,posix:o}={})=>{if(typeof t!==\"string\"){throw new TypeError(\"Expected input to be a string\")}if(t===\"\"){return{isMatch:false,output:\"\"}}const r=u||{};const a=r.format||(o?s.toPosixSlashes:null);let i=t===n;let c=i&&a?a(t):t;if(i===false){c=a?a(t):t;i=c===n}if(i===false||r.capture===true){if(r.matchBase===true||r.basename===true){i=picomatch.matchBase(t,e,u,o)}else{i=e.exec(c)}}return{isMatch:Boolean(i),match:i,output:c}};picomatch.matchBase=(t,e,u)=>{const n=e instanceof RegExp?e:picomatch.makeRe(e,u);return n.test(s.basename(t))};picomatch.isMatch=(t,e,u)=>picomatch(e,u)(t);picomatch.parse=(t,e)=>{if(Array.isArray(t))return t.map((t=>picomatch.parse(t,e)));return o(t,{...e,fastpaths:false})};picomatch.scan=(t,e)=>n(t,e);picomatch.compileRe=(t,e,u=false,n=false)=>{if(u===true){return t.output}const o=e||{};const s=o.contains?\"\":\"^\";const r=o.contains?\"\":\"$\";let a=`${s}(?:${t.output})${r}`;if(t&&t.negated===true){a=`^(?!${a}).*$`}const i=picomatch.toRegex(a,e);if(n===true){i.state=t}return i};picomatch.makeRe=(t,e={},u=false,n=false)=>{if(!t||typeof t!==\"string\"){throw new TypeError(\"Expected a non-empty string\")}let s={negated:false,fastpaths:true};if(e.fastpaths!==false&&(t[0]===\".\"||t[0]===\"*\")){s.output=o.fastpaths(t,e)}if(!s.output){s=o(t,e)}return picomatch.compileRe(s,e,u,n)};picomatch.toRegex=(t,e)=>{try{const u=e||{};return new RegExp(t,u.flags||(u.nocase?\"i\":\"\"))}catch(t){if(e&&e.debug===true)throw t;return/$^/}};picomatch.constants=r;t.exports=picomatch},716:(t,e,u)=>{const n=u(96);const{CHAR_ASTERISK:o,CHAR_AT:s,CHAR_BACKWARD_SLASH:r,CHAR_COMMA:a,CHAR_DOT:i,CHAR_EXCLAMATION_MARK:c,CHAR_FORWARD_SLASH:p,CHAR_LEFT_CURLY_BRACE:l,CHAR_LEFT_PARENTHESES:f,CHAR_LEFT_SQUARE_BRACKET:A,CHAR_PLUS:_,CHAR_QUESTION_MARK:R,CHAR_RIGHT_CURLY_BRACE:E,CHAR_RIGHT_PARENTHESES:h,CHAR_RIGHT_SQUARE_BRACKET:g}=u(154);const isPathSeparator=t=>t===p||t===r;const depth=t=>{if(t.isPrefix!==true){t.depth=t.isGlobstar?Infinity:1}};const scan=(t,e)=>{const u=e||{};const b=t.length-1;const C=u.parts===true||u.scanToEnd===true;const y=[];const $=[];const x=[];let S=t;let H=-1;let v=0;let d=0;let L=false;let T=false;let O=false;let k=false;let m=false;let w=false;let N=false;let I=false;let B=false;let G=false;let D=0;let M;let P;let K={value:\"\",depth:0,isGlob:false};const eos=()=>H>=b;const peek=()=>S.charCodeAt(H+1);const advance=()=>{M=P;return S.charCodeAt(++H)};while(H0){X=S.slice(0,v);S=S.slice(v);d-=v}if(U&&O===true&&d>0){U=S.slice(0,d);F=S.slice(d)}else if(O===true){U=\"\";F=S}else{U=S}if(U&&U!==\"\"&&U!==\"/\"&&U!==S){if(isPathSeparator(U.charCodeAt(U.length-1))){U=U.slice(0,-1)}}if(u.unescape===true){if(F)F=n.removeBackslashes(F);if(U&&N===true){U=n.removeBackslashes(U)}}const Q={prefix:X,input:t,start:v,base:U,glob:F,isBrace:L,isBracket:T,isGlob:O,isExtglob:k,isGlobstar:m,negated:I,negatedExtglob:B};if(u.tokens===true){Q.maxDepth=0;if(!isPathSeparator(P)){$.push(K)}Q.tokens=$}if(u.parts===true||u.tokens===true){let e;for(let n=0;n{const{REGEX_BACKSLASH:n,REGEX_REMOVE_BACKSLASH:o,REGEX_SPECIAL_CHARS:s,REGEX_SPECIAL_CHARS_GLOBAL:r}=u(154);e.isObject=t=>t!==null&&typeof t===\"object\"&&!Array.isArray(t);e.hasRegexChars=t=>s.test(t);e.isRegexChar=t=>t.length===1&&e.hasRegexChars(t);e.escapeRegex=t=>t.replace(r,\"\\\\$1\");e.toPosixSlashes=t=>t.replace(n,\"/\");e.removeBackslashes=t=>t.replace(o,(t=>t===\"\\\\\"?\"\":t));e.escapeLast=(t,u,n)=>{const o=t.lastIndexOf(u,n);if(o===-1)return t;if(t[o-1]===\"\\\\\")return e.escapeLast(t,u,o-1);return`${t.slice(0,o)}\\\\${t.slice(o)}`};e.removePrefix=(t,e={})=>{let u=t;if(u.startsWith(\"./\")){u=u.slice(2);e.prefix=\"./\"}return u};e.wrapOutput=(t,e={},u={})=>{const n=u.contains?\"\":\"^\";const o=u.contains?\"\":\"$\";let s=`${n}(?:${t})${o}`;if(e.negated===true){s=`(?:^(?!${s}).*$)`}return s};e.basename=(t,{windows:e}={})=>{const u=t.split(e?/[\\\\/]/:\"/\");const n=u[u.length-1];if(n===\"\"){return u[u.length-2]}return n}}};var e={};function __nccwpck_require__(u){var n=e[u];if(n!==undefined){return n.exports}var o=e[u]={exports:{}};var s=true;try{t[u](o,o.exports,__nccwpck_require__);s=false}finally{if(s)delete e[u]}return o.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var u=__nccwpck_require__(170);module.exports=u})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4858, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/match-local-pattern.ts"],"sourcesContent":["import type { LocalPattern } from './image-config'\nimport { makeRe } from 'next/dist/compiled/picomatch'\n\n// Modifying this function should also modify writeImagesManifest()\nexport function matchLocalPattern(pattern: LocalPattern, url: URL): boolean {\n if (pattern.search !== undefined) {\n if (pattern.search !== url.search) {\n return false\n }\n }\n\n if (!makeRe(pattern.pathname ?? '**', { dot: true }).test(url.pathname)) {\n return false\n }\n\n return true\n}\n\nexport function hasLocalMatch(\n localPatterns: LocalPattern[] | undefined,\n urlPathAndQuery: string\n): boolean {\n if (!localPatterns) {\n // if the user didn't define \"localPatterns\", we allow all local images\n return true\n }\n const url = new URL(urlPathAndQuery, 'http://n')\n return localPatterns.some((p) => matchLocalPattern(p, url))\n}\n"],"names":["hasLocalMatch","matchLocalPattern","pattern","url","search","undefined","makeRe","pathname","dot","test","localPatterns","urlPathAndQuery","URL","some","p"],"mappings":";;;;;;;;;;;;;;IAkBgBA,aAAa,EAAA;eAAbA;;IAdAC,iBAAiB,EAAA;eAAjBA;;;2BAHO;AAGhB,SAASA,kBAAkBC,OAAqB,EAAEC,GAAQ;IAC/D,IAAID,QAAQE,MAAM,KAAKC,WAAW;QAChC,IAAIH,QAAQE,MAAM,KAAKD,IAAIC,MAAM,EAAE;YACjC,OAAO;QACT;IACF;IAEA,IAAI,CAACE,CAAAA,GAAAA,WAAAA,MAAM,EAACJ,QAAQK,QAAQ,IAAI,MAAM;QAAEC,KAAK;IAAK,GAAGC,IAAI,CAACN,IAAII,QAAQ,GAAG;QACvE,OAAO;IACT;IAEA,OAAO;AACT;AAEO,SAASP,cACdU,aAAyC,EACzCC,eAAuB;IAEvB,IAAI,CAACD,eAAe;QAClB,uEAAuE;QACvE,OAAO;IACT;IACA,MAAMP,MAAM,IAAIS,IAAID,iBAAiB;IACrC,OAAOD,cAAcG,IAAI,CAAC,CAACC,IAAMb,kBAAkBa,GAAGX;AACxD","ignoreList":[0]}}, - {"offset": {"line": 4905, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/match-remote-pattern.ts"],"sourcesContent":["import type { RemotePattern } from './image-config'\nimport { makeRe } from 'next/dist/compiled/picomatch'\n\n// Modifying this function should also modify writeImagesManifest()\nexport function matchRemotePattern(\n pattern: RemotePattern | URL,\n url: URL\n): boolean {\n if (pattern.protocol !== undefined) {\n if (pattern.protocol.replace(/:$/, '') !== url.protocol.replace(/:$/, '')) {\n return false\n }\n }\n if (pattern.port !== undefined) {\n if (pattern.port !== url.port) {\n return false\n }\n }\n\n if (pattern.hostname === undefined) {\n throw new Error(\n `Pattern should define hostname but found\\n${JSON.stringify(pattern)}`\n )\n } else {\n if (!makeRe(pattern.hostname).test(url.hostname)) {\n return false\n }\n }\n\n if (pattern.search !== undefined) {\n if (pattern.search !== url.search) {\n return false\n }\n }\n\n // Should be the same as writeImagesManifest()\n if (!makeRe(pattern.pathname ?? '**', { dot: true }).test(url.pathname)) {\n return false\n }\n\n return true\n}\n\nexport function hasRemoteMatch(\n domains: string[],\n remotePatterns: Array,\n url: URL\n): boolean {\n return (\n domains.some((domain) => url.hostname === domain) ||\n remotePatterns.some((p) => matchRemotePattern(p, url))\n )\n}\n"],"names":["hasRemoteMatch","matchRemotePattern","pattern","url","protocol","undefined","replace","port","hostname","Error","JSON","stringify","makeRe","test","search","pathname","dot","domains","remotePatterns","some","domain","p"],"mappings":";;;;;;;;;;;;;;IA2CgBA,cAAc,EAAA;eAAdA;;IAvCAC,kBAAkB,EAAA;eAAlBA;;;2BAHO;AAGhB,SAASA,mBACdC,OAA4B,EAC5BC,GAAQ;IAER,IAAID,QAAQE,QAAQ,KAAKC,WAAW;QAClC,IAAIH,QAAQE,QAAQ,CAACE,OAAO,CAAC,MAAM,QAAQH,IAAIC,QAAQ,CAACE,OAAO,CAAC,MAAM,KAAK;YACzE,OAAO;QACT;IACF;IACA,IAAIJ,QAAQK,IAAI,KAAKF,WAAW;QAC9B,IAAIH,QAAQK,IAAI,KAAKJ,IAAII,IAAI,EAAE;YAC7B,OAAO;QACT;IACF;IAEA,IAAIL,QAAQM,QAAQ,KAAKH,WAAW;QAClC,MAAM,OAAA,cAEL,CAFK,IAAII,MACR,CAAC,0CAA0C,EAAEC,KAAKC,SAAS,CAACT,UAAU,GADlE,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF,OAAO;QACL,IAAI,CAACU,CAAAA,GAAAA,WAAAA,MAAM,EAACV,QAAQM,QAAQ,EAAEK,IAAI,CAACV,IAAIK,QAAQ,GAAG;YAChD,OAAO;QACT;IACF;IAEA,IAAIN,QAAQY,MAAM,KAAKT,WAAW;QAChC,IAAIH,QAAQY,MAAM,KAAKX,IAAIW,MAAM,EAAE;YACjC,OAAO;QACT;IACF;IAEA,8CAA8C;IAC9C,IAAI,CAACF,CAAAA,GAAAA,WAAAA,MAAM,EAACV,QAAQa,QAAQ,IAAI,MAAM;QAAEC,KAAK;IAAK,GAAGH,IAAI,CAACV,IAAIY,QAAQ,GAAG;QACvE,OAAO;IACT;IAEA,OAAO;AACT;AAEO,SAASf,eACdiB,OAAiB,EACjBC,cAA0C,EAC1Cf,GAAQ;IAER,OACEc,QAAQE,IAAI,CAAC,CAACC,SAAWjB,IAAIK,QAAQ,KAAKY,WAC1CF,eAAeC,IAAI,CAAC,CAACE,IAAMpB,mBAAmBoB,GAAGlB;AAErD","ignoreList":[0]}}, - {"offset": {"line": 4969, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-loader.ts"],"sourcesContent":["import type { ImageLoaderPropsWithConfig } from './image-config'\nimport { findClosestQuality } from './find-closest-quality'\nimport { getDeploymentId } from './deployment-id'\n\nfunction defaultLoader({\n config,\n src,\n width,\n quality,\n}: ImageLoaderPropsWithConfig): string {\n if (\n src.startsWith('/') &&\n src.includes('?') &&\n config.localPatterns?.length === 1 &&\n config.localPatterns[0].pathname === '**' &&\n config.localPatterns[0].search === ''\n ) {\n throw new Error(\n `Image with src \"${src}\" is using a query string which is not configured in images.localPatterns.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n\n if (process.env.NODE_ENV !== 'production') {\n const missingValues = []\n\n // these should always be provided but make sure they are\n if (!src) missingValues.push('src')\n if (!width) missingValues.push('width')\n\n if (missingValues.length > 0) {\n throw new Error(\n `Next Image Optimization requires ${missingValues.join(\n ', '\n )} to be provided. Make sure you pass them as props to the \\`next/image\\` component. Received: ${JSON.stringify(\n { src, width, quality }\n )}`\n )\n }\n\n if (src.startsWith('//')) {\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, protocol-relative URL (//) must be changed to an absolute URL (http:// or https://)`\n )\n }\n\n if (src.startsWith('/') && config.localPatterns) {\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasLocalMatch } =\n require('./match-local-pattern') as typeof import('./match-local-pattern')\n if (!hasLocalMatch(config.localPatterns, src)) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\` does not match \\`images.localPatterns\\` configured in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n }\n }\n\n if (!src.startsWith('/') && (config.domains || config.remotePatterns)) {\n let parsedSrc: URL\n try {\n parsedSrc = new URL(src)\n } catch (err) {\n console.error(err)\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, if using relative image it must start with a leading slash \"/\" or be an absolute URL (http:// or https://)`\n )\n }\n\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasRemoteMatch } =\n require('./match-remote-pattern') as typeof import('./match-remote-pattern')\n if (\n !hasRemoteMatch(config.domains!, config.remotePatterns!, parsedSrc)\n ) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\`, hostname \"${parsedSrc.hostname}\" is not configured under images in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host`\n )\n }\n }\n }\n }\n\n const q = findClosestQuality(quality, config)\n\n let deploymentId = getDeploymentId()\n return `${config.path}?url=${encodeURIComponent(src)}&w=${width}&q=${q}${\n src.startsWith('/') && deploymentId ? `&dpl=${deploymentId}` : ''\n }`\n}\n\n// We use this to determine if the import is the default loader\n// or a custom loader defined by the user in next.config.js\ndefaultLoader.__next_img_default = true\n\nexport default defaultLoader\n"],"names":["defaultLoader","config","src","width","quality","startsWith","includes","localPatterns","length","pathname","search","Error","process","env","NODE_ENV","missingValues","push","join","JSON","stringify","NEXT_RUNTIME","hasLocalMatch","require","domains","remotePatterns","parsedSrc","URL","err","console","error","hasRemoteMatch","hostname","q","findClosestQuality","deploymentId","getDeploymentId","path","encodeURIComponent","__next_img_default"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 5061, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-external.tsx"],"sourcesContent":["import type { ImageConfigComplete, ImageLoaderProps } from './image-config'\nimport type { ImageProps, ImageLoader, StaticImageData } from './get-img-props'\n\nimport { getImgProps } from './get-img-props'\nimport { Image } from '../../client/image-component'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\n\n/**\n * For more advanced use cases, you can call `getImageProps()`\n * to get the props that would be passed to the underlying `` element,\n * and instead pass to them to another component, style, canvas, etc.\n *\n * Read more: [Next.js docs: `getImageProps`](https://nextjs.org/docs/app/api-reference/components/image#getimageprops)\n */\nexport function getImageProps(imgProps: ImageProps) {\n const { props } = getImgProps(imgProps, {\n defaultLoader,\n // This is replaced by webpack define plugin\n imgConf: process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete,\n })\n // Normally we don't care about undefined props because we pass to JSX,\n // but this exported function could be used by the end user for anything\n // so we delete undefined props to clean it up a little.\n for (const [key, value] of Object.entries(props)) {\n if (value === undefined) {\n delete props[key as keyof typeof props]\n }\n }\n return { props }\n}\n\nexport default Image\n\nexport type { ImageProps, ImageLoaderProps, ImageLoader, StaticImageData }\n"],"names":["getImageProps","imgProps","props","getImgProps","defaultLoader","imgConf","process","env","__NEXT_IMAGE_OPTS","key","value","Object","entries","undefined","Image"],"mappings":";;;;;;;;;;;;;;IAiCA,OAAoB,EAAA;eAApB;;IAjBgBA,aAAa,EAAA;eAAbA;;;;6BAbY;gCACN;sEAGI;AASnB,SAASA,cAAcC,QAAoB;IAChD,MAAM,EAAEC,KAAK,EAAE,GAAGC,CAAAA,GAAAA,aAAAA,WAAW,EAACF,UAAU;QACtCG,eAAAA,aAAAA,OAAa;QACb,4CAA4C;QAC5CC,OAAAA,EAASC,QAAQC,GAAG,CAACC,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IACxC;IACA,uEAAuE;IACvE,wEAAwE;IACxE,wDAAwD;IACxD,KAAK,MAAM,CAACC,KAAKC,MAAM,IAAIC,OAAOC,OAAO,CAACV,OAAQ;QAChD,IAAIQ,UAAUG,WAAW;YACvB,OAAOX,KAAK,CAACO,IAA0B;QACzC;IACF;IACA,OAAO;QAAEP;IAAM;AACjB;MAEA,WAAeY,gBAAAA,KAAK","ignoreList":[0]}}, - {"offset": {"line": 5143, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/image.js"],"sourcesContent":["module.exports = require('./dist/shared/lib/image-external')\n"],"names":[],"mappings":"AAAA,OAAO,OAAO","ignoreList":[0]}}, - {"offset": {"line": 5148, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/templates/app-page.ts"],"sourcesContent":["import type { LoaderTree } from '../../server/lib/app-dir-module'\nimport type { IncomingMessage, ServerResponse } from 'node:http'\n\nimport {\n AppPageRouteModule,\n type AppPageRouteHandlerContext,\n} from '../../server/route-modules/app-page/module.compiled' with { 'turbopack-transition': 'next-ssr' }\n\nimport { RouteKind } from '../../server/route-kind' with { 'turbopack-transition': 'next-server-utility' }\n\nimport { getRevalidateReason } from '../../server/instrumentation/utils'\nimport { getTracer, SpanKind, type Span } from '../../server/lib/trace/tracer'\nimport { addRequestMeta, getRequestMeta } from '../../server/request-meta'\nimport { BaseServerSpan } from '../../server/lib/trace/constants'\nimport { interopDefault } from '../../server/app-render/interop-default'\nimport { stripFlightHeaders } from '../../server/app-render/strip-flight-headers'\nimport { NodeNextRequest, NodeNextResponse } from '../../server/base-http/node'\nimport { checkIsAppPPREnabled } from '../../server/lib/experimental/ppr'\nimport {\n getFallbackRouteParams,\n createOpaqueFallbackRouteParams,\n type OpaqueFallbackRouteParams,\n} from '../../server/request/fallback-params'\nimport { setManifestsSingleton } from '../../server/app-render/manifests-singleton'\nimport {\n isHtmlBotRequest,\n shouldServeStreamingMetadata,\n} from '../../server/lib/streaming-metadata'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { getIsPossibleServerAction } from '../../server/lib/server-action-request-meta'\nimport {\n RSC_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_IS_PRERENDER_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n} from '../../client/components/app-router-headers'\nimport { getBotType, isBot } from '../../shared/lib/router/utils/is-bot'\nimport {\n CachedRouteKind,\n IncrementalCacheKind,\n type CachedAppPageValue,\n type CachedPageValue,\n type ResponseCacheEntry,\n type ResponseGenerator,\n} from '../../server/response-cache'\nimport { FallbackMode, parseFallbackField } from '../../lib/fallback'\nimport RenderResult from '../../server/render-result'\nimport {\n CACHE_ONE_YEAR,\n HTML_CONTENT_TYPE_HEADER,\n NEXT_CACHE_TAGS_HEADER,\n NEXT_RESUME_HEADER,\n} from '../../lib/constants'\nimport type { CacheControl } from '../../server/lib/cache-control'\nimport { ENCODED_TAGS } from '../../server/stream-utils/encoded-tags'\nimport { sendRenderResult } from '../../server/send-payload'\nimport { NoFallbackError } from '../../shared/lib/no-fallback-error.external'\nimport { parseMaxPostponedStateSize } from '../../shared/lib/size-limit'\n\n// These are injected by the loader afterwards.\n\n/**\n * The tree created in next-app-loader that holds component segments and modules\n * and I've updated it.\n */\ndeclare const tree: LoaderTree\n\n// We inject the tree and pages here so that we can use them in the route\n// module.\n// INJECT:tree\n\nimport GlobalError from 'VAR_MODULE_GLOBAL_ERROR' with { 'turbopack-transition': 'next-server-utility' }\n\nexport { GlobalError }\n\n// These are injected by the loader afterwards.\ndeclare const __next_app_require__: (id: string | number) => unknown\ndeclare const __next_app_load_chunk__: (id: string | number) => Promise\n\n// INJECT:__next_app_require__\n// INJECT:__next_app_load_chunk__\n\nexport const __next_app__ = {\n require: __next_app_require__,\n loadChunk: __next_app_load_chunk__,\n}\n\nimport * as entryBase from '../../server/app-render/entry-base' with { 'turbopack-transition': 'next-server-utility' }\nimport { RedirectStatusCode } from '../../client/components/redirect-status-code'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { isInterceptionRouteAppPath } from '../../shared/lib/router/utils/interception-routes'\n\nexport * from '../../server/app-render/entry-base' with { 'turbopack-transition': 'next-server-utility' }\n\n// Create and export the route module that will be consumed.\nexport const routeModule = new AppPageRouteModule({\n definition: {\n kind: RouteKind.APP_PAGE,\n page: 'VAR_DEFINITION_PAGE',\n pathname: 'VAR_DEFINITION_PATHNAME',\n // The following aren't used in production.\n bundlePath: '',\n filename: '',\n appPaths: [],\n },\n userland: {\n loaderTree: tree,\n },\n distDir: process.env.__NEXT_RELATIVE_DIST_DIR || '',\n relativeProjectDir: process.env.__NEXT_RELATIVE_PROJECT_DIR || '',\n})\n\nexport async function handler(\n req: IncomingMessage,\n res: ServerResponse,\n ctx: {\n waitUntil: (prom: Promise) => void\n }\n) {\n if (routeModule.isDev) {\n addRequestMeta(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint())\n }\n const isMinimalMode = Boolean(\n process.env.MINIMAL_MODE || getRequestMeta(req, 'minimalMode')\n )\n\n let srcPage = 'VAR_DEFINITION_PAGE'\n\n // turbopack doesn't normalize `/index` in the page name\n // so we need to to process dynamic routes properly\n // TODO: fix turbopack providing differing value from webpack\n if (process.env.TURBOPACK) {\n srcPage = srcPage.replace(/\\/index$/, '') || '/'\n } else if (srcPage === '/index') {\n // we always normalize /index specifically\n srcPage = '/'\n }\n const multiZoneDraftMode = process.env\n .__NEXT_MULTI_ZONE_DRAFT_MODE as any as boolean\n\n const prepareResult = await routeModule.prepare(req, res, {\n srcPage,\n multiZoneDraftMode,\n })\n\n if (!prepareResult) {\n res.statusCode = 400\n res.end('Bad Request')\n ctx.waitUntil?.(Promise.resolve())\n return null\n }\n\n const {\n buildId,\n query,\n params,\n pageIsDynamic,\n buildManifest,\n nextFontManifest,\n reactLoadableManifest,\n serverActionsManifest,\n clientReferenceManifest,\n subresourceIntegrityManifest,\n prerenderManifest,\n isDraftMode,\n resolvedPathname,\n revalidateOnlyGenerated,\n routerServerContext,\n nextConfig,\n parsedUrl,\n interceptionRoutePatterns,\n deploymentId,\n } = prepareResult\n\n const normalizedSrcPage = normalizeAppPath(srcPage)\n\n let { isOnDemandRevalidate } = prepareResult\n\n // We use the resolvedPathname instead of the parsedUrl.pathname because it\n // is not rewritten as resolvedPathname is. This will ensure that the correct\n // prerender info is used instead of using the original pathname as the\n // source. If however PPR is enabled and cacheComponents is disabled, we\n // treat the pathname as dynamic. Currently, there's a bug in the PPR\n // implementation that incorrectly leaves %%drp placeholders in the output of\n // parallel routes. This is addressed with cacheComponents.\n const prerenderInfo =\n nextConfig.experimental.ppr &&\n !nextConfig.cacheComponents &&\n isInterceptionRouteAppPath(resolvedPathname)\n ? null\n : routeModule.match(resolvedPathname, prerenderManifest)\n\n const isPrerendered = !!prerenderManifest.routes[resolvedPathname]\n\n const userAgent = req.headers['user-agent'] || ''\n const botType = getBotType(userAgent)\n const isHtmlBot = isHtmlBotRequest(req)\n\n /**\n * If true, this indicates that the request being made is for an app\n * prefetch request.\n */\n const isPrefetchRSCRequest =\n getRequestMeta(req, 'isPrefetchRSCRequest') ??\n req.headers[NEXT_ROUTER_PREFETCH_HEADER] === '1' // exclude runtime prefetches, which use '2'\n\n // NOTE: Don't delete headers[RSC] yet, it still needs to be used in renderToHTML later\n\n const isRSCRequest =\n getRequestMeta(req, 'isRSCRequest') ?? Boolean(req.headers[RSC_HEADER])\n\n const isPossibleServerAction = getIsPossibleServerAction(req)\n\n /**\n * If the route being rendered is an app page, and the ppr feature has been\n * enabled, then the given route _could_ support PPR.\n */\n const couldSupportPPR: boolean = checkIsAppPPREnabled(\n nextConfig.experimental.ppr\n )\n\n if (\n !getRequestMeta(req, 'postponed') &&\n couldSupportPPR &&\n req.headers[NEXT_RESUME_HEADER] === '1' &&\n req.method === 'POST'\n ) {\n // Decode the postponed state from the request body, it will come as\n // an array of buffers, so collect them and then concat them to form\n // the string.\n\n const body: Array = []\n for await (const chunk of req) {\n body.push(chunk)\n }\n const postponed = Buffer.concat(body).toString('utf8')\n\n addRequestMeta(req, 'postponed', postponed)\n }\n\n // When enabled, this will allow the use of the `?__nextppronly` query to\n // enable debugging of the static shell.\n const hasDebugStaticShellQuery =\n process.env.__NEXT_EXPERIMENTAL_STATIC_SHELL_DEBUGGING === '1' &&\n typeof query.__nextppronly !== 'undefined' &&\n couldSupportPPR\n\n // When enabled, this will allow the use of the `?__nextppronly` query\n // to enable debugging of the fallback shell.\n const hasDebugFallbackShellQuery =\n hasDebugStaticShellQuery && query.__nextppronly === 'fallback'\n\n // This page supports PPR if it is marked as being `PARTIALLY_STATIC` in the\n // prerender manifest and this is an app page.\n const isRoutePPREnabled: boolean =\n couldSupportPPR &&\n ((\n prerenderManifest.routes[normalizedSrcPage] ??\n prerenderManifest.dynamicRoutes[normalizedSrcPage]\n )?.renderingMode === 'PARTIALLY_STATIC' ||\n // Ideally we'd want to check the appConfig to see if this page has PPR\n // enabled or not, but that would require plumbing the appConfig through\n // to the server during development. We assume that the page supports it\n // but only during development.\n (hasDebugStaticShellQuery &&\n (routeModule.isDev === true ||\n routerServerContext?.experimentalTestProxy === true)))\n\n const isDebugStaticShell: boolean =\n hasDebugStaticShellQuery && isRoutePPREnabled\n\n // We should enable debugging dynamic accesses when the static shell\n // debugging has been enabled and we're also in development mode.\n const isDebugDynamicAccesses =\n isDebugStaticShell && routeModule.isDev === true\n\n const isDebugFallbackShell = hasDebugFallbackShellQuery && isRoutePPREnabled\n\n // If we're in minimal mode, then try to get the postponed information from\n // the request metadata. If available, use it for resuming the postponed\n // render.\n const minimalPostponed = isRoutePPREnabled\n ? getRequestMeta(req, 'postponed')\n : undefined\n\n // If PPR is enabled, and this is a RSC request (but not a prefetch), then\n // we can use this fact to only generate the flight data for the request\n // because we can't cache the HTML (as it's also dynamic).\n let isDynamicRSCRequest =\n isRoutePPREnabled && isRSCRequest && !isPrefetchRSCRequest\n\n // During a PPR revalidation, the RSC request is not dynamic if we do not have the postponed data.\n // We only attach the postponed data during a resume. If there's no postponed data, then it must be a revalidation.\n // This is to ensure that we don't bypass the cache during a revalidation.\n if (isMinimalMode) {\n isDynamicRSCRequest = isDynamicRSCRequest && !!minimalPostponed\n }\n\n // Need to read this before it's stripped by stripFlightHeaders. We don't\n // need to transfer it to the request meta because it's only read\n // within this function; the static segment data should have already been\n // generated, so we will always either return a static response or a 404.\n const segmentPrefetchHeader = getRequestMeta(req, 'segmentPrefetchRSCRequest')\n\n // TODO: investigate existing bug with shouldServeStreamingMetadata always\n // being true for a revalidate due to modifying the base-server this.renderOpts\n // when fixing this to correct logic it causes hydration issue since we set\n // serveStreamingMetadata to true during export\n const serveStreamingMetadata =\n isHtmlBot && isRoutePPREnabled\n ? false\n : !userAgent\n ? true\n : shouldServeStreamingMetadata(userAgent, nextConfig.htmlLimitedBots)\n\n const isSSG = Boolean(\n (prerenderInfo ||\n isPrerendered ||\n prerenderManifest.routes[normalizedSrcPage]) &&\n // If this is a html bot request and PPR is enabled, then we don't want\n // to serve a static response.\n !(isHtmlBot && isRoutePPREnabled)\n )\n\n // When a page supports cacheComponents, we can support RDC for Navigations\n const supportsRDCForNavigations =\n isRoutePPREnabled && nextConfig.cacheComponents === true\n\n // In development, we always want to generate dynamic HTML.\n const supportsDynamicResponse: boolean =\n // If we're in development, we always support dynamic HTML, unless it's\n // a data request, in which case we only produce static HTML.\n routeModule.isDev === true ||\n // If this is not SSG or does not have static paths, then it supports\n // dynamic HTML.\n !isSSG ||\n // If this request has provided postponed data, it supports dynamic\n // HTML.\n typeof minimalPostponed === 'string' ||\n // If this handler supports onCacheEntryV2, then we can only support\n // dynamic responses if it's a dynamic RSC request and not in minimal mode. If it\n // doesn't support it we must fallback to the default behavior.\n (supportsRDCForNavigations && getRequestMeta(req, 'onCacheEntryV2')\n ? // In minimal mode, we'll always want to generate a static response\n // which will generate the RDC for the route. When resuming a Dynamic\n // RSC request, we'll pass the minimal postponed data to the render\n // which will trigger the `supportsDynamicResponse` to be true.\n isDynamicRSCRequest && !isMinimalMode\n : // Otherwise, we can support dynamic responses if it's a dynamic RSC request.\n isDynamicRSCRequest)\n\n // When html bots request PPR page, perform the full dynamic rendering.\n const shouldWaitOnAllReady = isHtmlBot && isRoutePPREnabled\n\n let ssgCacheKey: string | null = null\n if (\n !isDraftMode &&\n isSSG &&\n !supportsDynamicResponse &&\n !isPossibleServerAction &&\n !minimalPostponed &&\n !isDynamicRSCRequest\n ) {\n ssgCacheKey = resolvedPathname\n }\n\n // the staticPathKey differs from ssgCacheKey since\n // ssgCacheKey is null in dev since we're always in \"dynamic\"\n // mode in dev to bypass the cache, but we still need to honor\n // dynamicParams = false in dev mode\n let staticPathKey = ssgCacheKey\n if (!staticPathKey && routeModule.isDev) {\n staticPathKey = resolvedPathname\n }\n\n // If this is a request for an app path that should be statically generated\n // and we aren't in the edge runtime, strip the flight headers so it will\n // generate the static response.\n if (\n !routeModule.isDev &&\n !isDraftMode &&\n isSSG &&\n isRSCRequest &&\n !isDynamicRSCRequest\n ) {\n stripFlightHeaders(req.headers)\n }\n\n const ComponentMod = {\n ...entryBase,\n tree,\n GlobalError,\n handler,\n routeModule,\n __next_app__,\n }\n\n // Before rendering (which initializes component tree modules), we have to\n // set the reference manifests to our global store so Server Action's\n // encryption util can access to them at the top level of the page module.\n if (serverActionsManifest && clientReferenceManifest) {\n setManifestsSingleton({\n page: srcPage,\n clientReferenceManifest,\n serverActionsManifest,\n })\n }\n\n const method = req.method || 'GET'\n const tracer = getTracer()\n const activeSpan = tracer.getActiveScopeSpan()\n\n const render404 = async () => {\n // TODO: should route-module itself handle rendering the 404\n if (routerServerContext?.render404) {\n await routerServerContext.render404(req, res, parsedUrl, false)\n } else {\n res.end('This page could not be found')\n }\n return null\n }\n\n try {\n const varyHeader = routeModule.getVaryHeader(\n resolvedPathname,\n interceptionRoutePatterns\n )\n res.setHeader('Vary', varyHeader)\n const invokeRouteModule = async (\n span: Span | undefined,\n context: AppPageRouteHandlerContext\n ) => {\n const nextReq = new NodeNextRequest(req)\n const nextRes = new NodeNextResponse(res)\n\n return routeModule.render(nextReq, nextRes, context).finally(() => {\n if (!span) return\n\n span.setAttributes({\n 'http.status_code': res.statusCode,\n 'next.rsc': false,\n })\n\n const rootSpanAttributes = tracer.getRootSpanAttributes()\n // We were unable to get attributes, probably OTEL is not enabled\n if (!rootSpanAttributes) {\n return\n }\n\n if (\n rootSpanAttributes.get('next.span_type') !==\n BaseServerSpan.handleRequest\n ) {\n console.warn(\n `Unexpected root span type '${rootSpanAttributes.get(\n 'next.span_type'\n )}'. Please report this Next.js issue https://github.com/vercel/next.js`\n )\n return\n }\n\n const route = rootSpanAttributes.get('next.route')\n if (route) {\n const name = `${method} ${route}`\n\n span.setAttributes({\n 'next.route': route,\n 'http.route': route,\n 'next.span_name': name,\n })\n span.updateName(name)\n } else {\n span.updateName(`${method} ${srcPage}`)\n }\n })\n }\n\n const incrementalCache = getRequestMeta(req, 'incrementalCache')\n\n const doRender = async ({\n span,\n postponed,\n fallbackRouteParams,\n forceStaticRender,\n }: {\n span?: Span\n\n /**\n * The postponed data for this render. This is only provided when resuming\n * a render that has been postponed.\n */\n postponed: string | undefined\n\n /**\n * The unknown route params for this render.\n */\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n\n /**\n * When true, this indicates that the response generator is being called\n * in a context where the response must be generated statically.\n *\n * CRITICAL: This should only currently be used when revalidating due to a\n * dynamic RSC request.\n */\n forceStaticRender: boolean\n }): Promise => {\n const context: AppPageRouteHandlerContext = {\n query,\n params,\n page: normalizedSrcPage,\n sharedContext: {\n buildId,\n },\n serverComponentsHmrCache: getRequestMeta(\n req,\n 'serverComponentsHmrCache'\n ),\n fallbackRouteParams,\n renderOpts: {\n App: () => null,\n Document: () => null,\n pageConfig: {},\n ComponentMod,\n Component: interopDefault(ComponentMod),\n\n params,\n routeModule,\n page: srcPage,\n postponed,\n shouldWaitOnAllReady,\n serveStreamingMetadata,\n supportsDynamicResponse:\n typeof postponed === 'string' || supportsDynamicResponse,\n buildManifest,\n nextFontManifest,\n reactLoadableManifest,\n subresourceIntegrityManifest,\n setCacheStatus: routerServerContext?.setCacheStatus,\n setIsrStatus: routerServerContext?.setIsrStatus,\n setReactDebugChannel: routerServerContext?.setReactDebugChannel,\n sendErrorsToBrowser: routerServerContext?.sendErrorsToBrowser,\n\n dir:\n process.env.NEXT_RUNTIME === 'nodejs'\n ? (require('path') as typeof import('path')).join(\n /* turbopackIgnore: true */\n process.cwd(),\n routeModule.relativeProjectDir\n )\n : `${process.cwd()}/${routeModule.relativeProjectDir}`,\n isDraftMode,\n botType,\n isOnDemandRevalidate,\n isPossibleServerAction,\n assetPrefix: nextConfig.assetPrefix,\n nextConfigOutput: nextConfig.output,\n crossOrigin: nextConfig.crossOrigin,\n trailingSlash: nextConfig.trailingSlash,\n images: nextConfig.images,\n previewProps: prerenderManifest.preview,\n deploymentId: deploymentId,\n enableTainting: nextConfig.experimental.taint,\n htmlLimitedBots: nextConfig.htmlLimitedBots,\n reactMaxHeadersLength: nextConfig.reactMaxHeadersLength,\n\n multiZoneDraftMode,\n incrementalCache,\n cacheLifeProfiles: nextConfig.cacheLife,\n basePath: nextConfig.basePath,\n serverActions: nextConfig.experimental.serverActions,\n\n ...(isDebugStaticShell ||\n isDebugDynamicAccesses ||\n isDebugFallbackShell\n ? {\n nextExport: true,\n supportsDynamicResponse: false,\n isStaticGeneration: true,\n isDebugDynamicAccesses: isDebugDynamicAccesses,\n }\n : {}),\n cacheComponents: Boolean(nextConfig.cacheComponents),\n experimental: {\n isRoutePPREnabled,\n expireTime: nextConfig.expireTime,\n staleTimes: nextConfig.experimental.staleTimes,\n dynamicOnHover: Boolean(nextConfig.experimental.dynamicOnHover),\n inlineCss: Boolean(nextConfig.experimental.inlineCss),\n authInterrupts: Boolean(nextConfig.experimental.authInterrupts),\n clientTraceMetadata:\n nextConfig.experimental.clientTraceMetadata || ([] as any),\n clientParamParsingOrigins:\n nextConfig.experimental.clientParamParsingOrigins,\n maxPostponedStateSizeBytes: parseMaxPostponedStateSize(\n nextConfig.experimental.maxPostponedStateSize\n ),\n },\n\n waitUntil: ctx.waitUntil,\n onClose: (cb) => {\n res.on('close', cb)\n },\n onAfterTaskError: () => {},\n\n onInstrumentationRequestError: (\n error,\n _request,\n errorContext,\n silenceLog\n ) =>\n routeModule.onRequestError(\n req,\n error,\n errorContext,\n silenceLog,\n routerServerContext\n ),\n err: getRequestMeta(req, 'invokeError'),\n dev: routeModule.isDev,\n },\n }\n\n if (isDebugStaticShell || isDebugDynamicAccesses) {\n context.renderOpts.nextExport = true\n context.renderOpts.supportsDynamicResponse = false\n context.renderOpts.isDebugDynamicAccesses = isDebugDynamicAccesses\n }\n\n // When we're revalidating in the background, we should not allow dynamic\n // responses.\n if (forceStaticRender) {\n context.renderOpts.supportsDynamicResponse = false\n }\n\n const result = await invokeRouteModule(span, context)\n\n const { metadata } = result\n\n const {\n cacheControl,\n headers = {},\n // Add any fetch tags that were on the page to the response headers.\n fetchTags: cacheTags,\n fetchMetrics,\n } = metadata\n\n if (cacheTags) {\n headers[NEXT_CACHE_TAGS_HEADER] = cacheTags\n }\n\n // Pull any fetch metrics from the render onto the request.\n ;(req as any).fetchMetrics = fetchMetrics\n\n // we don't throw static to dynamic errors in dev as isSSG\n // is a best guess in dev since we don't have the prerender pass\n // to know whether the path is actually static or not\n if (\n isSSG &&\n cacheControl?.revalidate === 0 &&\n !routeModule.isDev &&\n !isRoutePPREnabled\n ) {\n const staticBailoutInfo = metadata.staticBailoutInfo\n\n const err = new Error(\n `Page changed from static to dynamic at runtime ${resolvedPathname}${\n staticBailoutInfo?.description\n ? `, reason: ${staticBailoutInfo.description}`\n : ``\n }` +\n `\\nsee more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`\n )\n\n if (staticBailoutInfo?.stack) {\n const stack = staticBailoutInfo.stack\n err.stack = err.message + stack.substring(stack.indexOf('\\n'))\n }\n\n throw err\n }\n\n return {\n value: {\n kind: CachedRouteKind.APP_PAGE,\n html: result,\n headers,\n rscData: metadata.flightData,\n postponed: metadata.postponed,\n status: metadata.statusCode,\n segmentData: metadata.segmentData,\n } satisfies CachedAppPageValue,\n cacheControl,\n } satisfies ResponseCacheEntry\n }\n\n const responseGenerator: ResponseGenerator = async ({\n hasResolved,\n previousCacheEntry: previousIncrementalCacheEntry,\n isRevalidating,\n span,\n forceStaticRender = false,\n }) => {\n const isProduction = routeModule.isDev === false\n const didRespond = hasResolved || res.writableEnded\n\n // skip on-demand revalidate if cache is not present and\n // revalidate-if-generated is set\n if (\n isOnDemandRevalidate &&\n revalidateOnlyGenerated &&\n !previousIncrementalCacheEntry &&\n !isMinimalMode\n ) {\n if (routerServerContext?.render404) {\n await routerServerContext.render404(req, res)\n } else {\n res.statusCode = 404\n res.end('This page could not be found')\n }\n return null\n }\n\n let fallbackMode: FallbackMode | undefined\n\n if (prerenderInfo) {\n fallbackMode = parseFallbackField(prerenderInfo.fallback)\n }\n\n // When serving a HTML bot request, we want to serve a blocking render and\n // not the prerendered page. This ensures that the correct content is served\n // to the bot in the head.\n if (fallbackMode === FallbackMode.PRERENDER && isBot(userAgent)) {\n if (!isRoutePPREnabled || isHtmlBot) {\n fallbackMode = FallbackMode.BLOCKING_STATIC_RENDER\n }\n }\n\n if (previousIncrementalCacheEntry?.isStale === -1) {\n isOnDemandRevalidate = true\n }\n\n // TODO: adapt for PPR\n // only allow on-demand revalidate for fallback: true/blocking\n // or for prerendered fallback: false paths\n if (\n isOnDemandRevalidate &&\n (fallbackMode !== FallbackMode.NOT_FOUND ||\n previousIncrementalCacheEntry)\n ) {\n fallbackMode = FallbackMode.BLOCKING_STATIC_RENDER\n }\n\n if (\n !isMinimalMode &&\n fallbackMode !== FallbackMode.BLOCKING_STATIC_RENDER &&\n staticPathKey &&\n !didRespond &&\n !isDraftMode &&\n pageIsDynamic &&\n (isProduction || !isPrerendered)\n ) {\n // if the page has dynamicParams: false and this pathname wasn't\n // prerendered trigger the no fallback handling\n if (\n // In development, fall through to render to handle missing\n // getStaticPaths.\n (isProduction || prerenderInfo) &&\n // When fallback isn't present, abort this render so we 404\n fallbackMode === FallbackMode.NOT_FOUND\n ) {\n if (nextConfig.experimental.adapterPath) {\n return await render404()\n }\n throw new NoFallbackError()\n }\n\n // When cacheComponents is enabled, we can use the fallback\n // response if the request is not a dynamic RSC request because the\n // RSC data when this feature flag is enabled does not contain any\n // param references. Without this feature flag enabled, the RSC data\n // contains param references, and therefore we can't use the fallback.\n if (\n isRoutePPREnabled &&\n (nextConfig.cacheComponents ? !isDynamicRSCRequest : !isRSCRequest)\n ) {\n const cacheKey =\n isProduction && typeof prerenderInfo?.fallback === 'string'\n ? prerenderInfo.fallback\n : normalizedSrcPage\n\n const fallbackRouteParams =\n // If we're in production and we have fallback route params, then we\n // can use the manifest fallback route params.\n isProduction && prerenderInfo?.fallbackRouteParams\n ? createOpaqueFallbackRouteParams(\n prerenderInfo.fallbackRouteParams\n )\n : // Otherwise, if we're debugging the fallback shell, then we\n // have to manually generate the fallback route params.\n isDebugFallbackShell\n ? getFallbackRouteParams(normalizedSrcPage, routeModule)\n : null\n\n // We use the response cache here to handle the revalidation and\n // management of the fallback shell.\n const fallbackResponse = await routeModule.handleResponse({\n cacheKey,\n req,\n nextConfig,\n routeKind: RouteKind.APP_PAGE,\n isFallback: true,\n prerenderManifest,\n isRoutePPREnabled,\n responseGenerator: async () =>\n doRender({\n span,\n // We pass `undefined` as rendering a fallback isn't resumed\n // here.\n postponed: undefined,\n fallbackRouteParams,\n forceStaticRender: false,\n }),\n waitUntil: ctx.waitUntil,\n isMinimalMode,\n })\n\n // If the fallback response was set to null, then we should return null.\n if (fallbackResponse === null) return null\n\n // Otherwise, if we did get a fallback response, we should return it.\n if (fallbackResponse) {\n // Remove the cache control from the response to prevent it from being\n // used in the surrounding cache.\n delete fallbackResponse.cacheControl\n\n return fallbackResponse\n }\n }\n }\n\n // Only requests that aren't revalidating can be resumed. If we have the\n // minimal postponed data, then we should resume the render with it.\n let postponed =\n !isOnDemandRevalidate && !isRevalidating && minimalPostponed\n ? minimalPostponed\n : undefined\n\n // If this is a dynamic RSC request, we should use the postponed data from\n // the static render (if available). This ensures that we can utilize the\n // resume data cache (RDC) from the static render to ensure that the data\n // is consistent between the static and dynamic renders.\n if (\n // Only enable RDC for Navigations if the feature is enabled.\n supportsRDCForNavigations &&\n process.env.NEXT_RUNTIME !== 'edge' &&\n !isMinimalMode &&\n incrementalCache &&\n isDynamicRSCRequest &&\n // We don't typically trigger an on-demand revalidation for dynamic RSC\n // requests, as we're typically revalidating the page in the background\n // instead. However, if the cache entry is stale, we should trigger a\n // background revalidation on dynamic RSC requests. This prevents us\n // from entering an infinite loop of revalidations.\n !forceStaticRender\n ) {\n const incrementalCacheEntry = await incrementalCache.get(\n resolvedPathname,\n {\n kind: IncrementalCacheKind.APP_PAGE,\n isRoutePPREnabled: true,\n isFallback: false,\n }\n )\n\n // If the cache entry is found, we should use the postponed data from\n // the cache.\n if (\n incrementalCacheEntry &&\n incrementalCacheEntry.value &&\n incrementalCacheEntry.value.kind === CachedRouteKind.APP_PAGE\n ) {\n // CRITICAL: we're assigning the postponed data from the cache entry\n // here as we're using the RDC to resume the render.\n postponed = incrementalCacheEntry.value.postponed\n\n // If the cache entry is stale, we should trigger a background\n // revalidation so that subsequent requests will get a fresh response.\n if (\n incrementalCacheEntry &&\n // We want to trigger this flow if the cache entry is stale and if\n // the requested revalidation flow is either foreground or\n // background.\n (incrementalCacheEntry.isStale === -1 ||\n incrementalCacheEntry.isStale === true)\n ) {\n // We want to schedule this on the next tick to ensure that the\n // render is not blocked on it.\n scheduleOnNextTick(async () => {\n const responseCache = routeModule.getResponseCache(req)\n\n try {\n await responseCache.revalidate(\n resolvedPathname,\n incrementalCache,\n isRoutePPREnabled,\n false,\n (c) =>\n responseGenerator({\n ...c,\n // CRITICAL: we need to set this to true as we're\n // revalidating in the background and typically this dynamic\n // RSC request is not treated as static.\n forceStaticRender: true,\n }),\n // CRITICAL: we need to pass null here because passing the\n // previous cache entry here (which is stale) will switch on\n // isOnDemandRevalidate and break the prerendering.\n null,\n hasResolved,\n ctx.waitUntil\n )\n } catch (err) {\n console.error(\n 'Error revalidating the page in the background',\n err\n )\n }\n })\n }\n }\n }\n\n // When we're in minimal mode, if we're trying to debug the static shell,\n // we should just return nothing instead of resuming the dynamic render.\n if (\n (isDebugStaticShell || isDebugDynamicAccesses) &&\n typeof postponed !== 'undefined'\n ) {\n return {\n cacheControl: { revalidate: 1, expire: undefined },\n value: {\n kind: CachedRouteKind.PAGES,\n html: RenderResult.EMPTY,\n pageData: {},\n headers: undefined,\n status: undefined,\n } satisfies CachedPageValue,\n }\n }\n\n const fallbackRouteParams =\n // If we're in production and we have fallback route params, then we\n // can use the manifest fallback route params if we need to render the\n // fallback shell.\n isProduction &&\n prerenderInfo?.fallbackRouteParams &&\n getRequestMeta(req, 'renderFallbackShell')\n ? createOpaqueFallbackRouteParams(prerenderInfo.fallbackRouteParams)\n : // Otherwise, if we're debugging the fallback shell, then we have to\n // manually generate the fallback route params.\n isDebugFallbackShell\n ? getFallbackRouteParams(normalizedSrcPage, routeModule)\n : null\n\n // Perform the render.\n return doRender({\n span,\n postponed,\n fallbackRouteParams,\n forceStaticRender,\n })\n }\n\n const handleResponse = async (span?: Span): Promise => {\n const cacheEntry = await routeModule.handleResponse({\n cacheKey: ssgCacheKey,\n responseGenerator: (c) =>\n responseGenerator({\n span,\n ...c,\n }),\n routeKind: RouteKind.APP_PAGE,\n isOnDemandRevalidate,\n isRoutePPREnabled,\n req,\n nextConfig,\n prerenderManifest,\n waitUntil: ctx.waitUntil,\n isMinimalMode,\n })\n\n if (isDraftMode) {\n res.setHeader(\n 'Cache-Control',\n 'private, no-cache, no-store, max-age=0, must-revalidate'\n )\n }\n\n // In dev, we should not cache pages for any reason.\n if (routeModule.isDev) {\n res.setHeader('Cache-Control', 'no-store, must-revalidate')\n }\n\n if (!cacheEntry) {\n if (ssgCacheKey) {\n // A cache entry might not be generated if a response is written\n // in `getInitialProps` or `getServerSideProps`, but those shouldn't\n // have a cache key. If we do have a cache key but we don't end up\n // with a cache entry, then either Next.js or the application has a\n // bug that needs fixing.\n throw new Error('invariant: cache entry required but not generated')\n }\n return null\n }\n\n if (cacheEntry.value?.kind !== CachedRouteKind.APP_PAGE) {\n throw new Error(\n `Invariant app-page handler received invalid cache entry ${cacheEntry.value?.kind}`\n )\n }\n\n const didPostpone = typeof cacheEntry.value.postponed === 'string'\n\n if (\n isSSG &&\n // We don't want to send a cache header for requests that contain dynamic\n // data. If this is a Dynamic RSC request or wasn't a Prefetch RSC\n // request, then we should set the cache header.\n !isDynamicRSCRequest &&\n (!didPostpone || isPrefetchRSCRequest)\n ) {\n if (!isMinimalMode) {\n // set x-nextjs-cache header to match the header\n // we set for the image-optimizer\n res.setHeader(\n 'x-nextjs-cache',\n isOnDemandRevalidate\n ? 'REVALIDATED'\n : cacheEntry.isMiss\n ? 'MISS'\n : cacheEntry.isStale\n ? 'STALE'\n : 'HIT'\n )\n }\n // Set a header used by the client router to signal the response is static\n // and should respect the `static` cache staleTime value.\n res.setHeader(NEXT_IS_PRERENDER_HEADER, '1')\n }\n const { value: cachedData } = cacheEntry\n\n // Coerce the cache control parameter from the render.\n let cacheControl: CacheControl | undefined\n\n // If this is a resume request in minimal mode it is streamed with dynamic\n // content and should not be cached.\n if (minimalPostponed) {\n cacheControl = { revalidate: 0, expire: undefined }\n }\n\n // If this is in minimal mode and this is a flight request that isn't a\n // prefetch request while PPR is enabled, it cannot be cached as it contains\n // dynamic content.\n else if (isDynamicRSCRequest) {\n cacheControl = { revalidate: 0, expire: undefined }\n } else if (!routeModule.isDev) {\n // If this is a preview mode request, we shouldn't cache it\n if (isDraftMode) {\n cacheControl = { revalidate: 0, expire: undefined }\n }\n\n // If this isn't SSG, then we should set change the header only if it is\n // not set already.\n else if (!isSSG) {\n if (!res.getHeader('Cache-Control')) {\n cacheControl = { revalidate: 0, expire: undefined }\n }\n } else if (cacheEntry.cacheControl) {\n // If the cache entry has a cache control with a revalidate value that's\n // a number, use it.\n if (typeof cacheEntry.cacheControl.revalidate === 'number') {\n if (cacheEntry.cacheControl.revalidate < 1) {\n throw new Error(\n `Invalid revalidate configuration provided: ${cacheEntry.cacheControl.revalidate} < 1`\n )\n }\n\n cacheControl = {\n revalidate: cacheEntry.cacheControl.revalidate,\n expire: cacheEntry.cacheControl?.expire ?? nextConfig.expireTime,\n }\n }\n // Otherwise if the revalidate value is false, then we should use the\n // cache time of one year.\n else {\n cacheControl = { revalidate: CACHE_ONE_YEAR, expire: undefined }\n }\n }\n }\n\n cacheEntry.cacheControl = cacheControl\n\n if (\n typeof segmentPrefetchHeader === 'string' &&\n cachedData?.kind === CachedRouteKind.APP_PAGE &&\n cachedData.segmentData\n ) {\n // This is a prefetch request issued by the client Segment Cache. These\n // should never reach the application layer (lambda). We should either\n // respond from the cache (HIT) or respond with 204 No Content (MISS).\n\n // Set a header to indicate that PPR is enabled for this route. This\n // lets the client distinguish between a regular cache miss and a cache\n // miss due to PPR being disabled. In other contexts this header is used\n // to indicate that the response contains dynamic data, but here we're\n // only using it to indicate that the feature is enabled — the segment\n // response itself contains whether the data is dynamic.\n res.setHeader(NEXT_DID_POSTPONE_HEADER, '2')\n\n // Add the cache tags header to the response if it exists and we're in\n // minimal mode while rendering a static page.\n const tags = cachedData.headers?.[NEXT_CACHE_TAGS_HEADER]\n if (isMinimalMode && isSSG && tags && typeof tags === 'string') {\n res.setHeader(NEXT_CACHE_TAGS_HEADER, tags)\n }\n\n const matchedSegment = cachedData.segmentData.get(segmentPrefetchHeader)\n if (matchedSegment !== undefined) {\n // Cache hit\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: RenderResult.fromStatic(\n matchedSegment,\n RSC_CONTENT_TYPE_HEADER\n ),\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // Cache miss. Either a cache entry for this route has not been generated\n // (which technically should not be possible when PPR is enabled, because\n // at a minimum there should always be a fallback entry) or there's no\n // match for the requested segment. Respond with a 204 No Content. We\n // don't bother to respond with 404, because these requests are only\n // issued as part of a prefetch.\n res.statusCode = 204\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: RenderResult.EMPTY,\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // If there's a callback for `onCacheEntry`, call it with the cache entry\n // and the revalidate options. If we support RDC for Navigations, we\n // prefer the `onCacheEntryV2` callback. Once RDC for Navigations is the\n // default, we can remove the fallback to `onCacheEntry` as\n // `onCacheEntryV2` is now fully supported.\n const onCacheEntry = supportsRDCForNavigations\n ? (getRequestMeta(req, 'onCacheEntryV2') ??\n getRequestMeta(req, 'onCacheEntry'))\n : getRequestMeta(req, 'onCacheEntry')\n if (onCacheEntry) {\n const finished = await onCacheEntry(cacheEntry, {\n url: getRequestMeta(req, 'initURL') ?? req.url,\n })\n if (finished) return null\n }\n\n if (cachedData.headers) {\n const headers = { ...cachedData.headers }\n\n if (!isMinimalMode || !isSSG) {\n delete headers[NEXT_CACHE_TAGS_HEADER]\n }\n\n for (let [key, value] of Object.entries(headers)) {\n if (typeof value === 'undefined') continue\n\n if (Array.isArray(value)) {\n for (const v of value) {\n res.appendHeader(key, v)\n }\n } else if (typeof value === 'number') {\n value = value.toString()\n res.appendHeader(key, value)\n } else {\n res.appendHeader(key, value)\n }\n }\n }\n\n // Add the cache tags header to the response if it exists and we're in\n // minimal mode while rendering a static page.\n const tags = cachedData.headers?.[NEXT_CACHE_TAGS_HEADER]\n if (isMinimalMode && isSSG && tags && typeof tags === 'string') {\n res.setHeader(NEXT_CACHE_TAGS_HEADER, tags)\n }\n\n // If the request is a data request, then we shouldn't set the status code\n // from the response because it should always be 200. This should be gated\n // behind the experimental PPR flag.\n if (cachedData.status && (!isRSCRequest || !isRoutePPREnabled)) {\n res.statusCode = cachedData.status\n }\n\n // Redirect information is encoded in RSC payload, so we don't need to use redirect status codes\n if (\n !isMinimalMode &&\n cachedData.status &&\n RedirectStatusCode[cachedData.status] &&\n isRSCRequest\n ) {\n res.statusCode = 200\n }\n\n // Mark that the request did postpone.\n if (didPostpone && !isDynamicRSCRequest) {\n res.setHeader(NEXT_DID_POSTPONE_HEADER, '1')\n }\n\n // we don't go through this block when preview mode is true\n // as preview mode is a dynamic request (bypasses cache) and doesn't\n // generate both HTML and payloads in the same request so continue to just\n // return the generated payload\n if (isRSCRequest && !isDraftMode) {\n // If this is a dynamic RSC request, then stream the response.\n if (typeof cachedData.rscData === 'undefined') {\n // If the response is not an RSC response, then we can't serve it.\n if (cachedData.html.contentType !== RSC_CONTENT_TYPE_HEADER) {\n if (nextConfig.cacheComponents) {\n res.statusCode = 404\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: RenderResult.EMPTY,\n cacheControl: cacheEntry.cacheControl,\n })\n } else {\n // Otherwise this case is not expected.\n throw new InvariantError(\n `Expected RSC response, got ${cachedData.html.contentType}`\n )\n }\n }\n\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: cachedData.html,\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // As this isn't a prefetch request, we should serve the static flight\n // data.\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: RenderResult.fromStatic(\n cachedData.rscData,\n RSC_CONTENT_TYPE_HEADER\n ),\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // This is a request for HTML data.\n const body = cachedData.html\n\n // If there's no postponed state, we should just serve the HTML. This\n // should also be the case for a resume request because it's completed\n // as a server render (rather than a static render).\n if (!didPostpone || isMinimalMode || isRSCRequest) {\n // If we're in test mode, we should add a sentinel chunk to the response\n // that's between the static and dynamic parts so we can compare the\n // chunks and add assertions.\n if (\n process.env.__NEXT_TEST_MODE &&\n isMinimalMode &&\n isRoutePPREnabled &&\n body.contentType === HTML_CONTENT_TYPE_HEADER\n ) {\n // As we're in minimal mode, the static part would have already been\n // streamed first. The only part that this streams is the dynamic part\n // so we should FIRST stream the sentinel and THEN the dynamic part.\n body.unshift(createPPRBoundarySentinel())\n }\n\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: body,\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // If we're debugging the static shell or the dynamic API accesses, we\n // should just serve the HTML without resuming the render. The returned\n // HTML will be the static shell so all the Dynamic API's will be used\n // during static generation.\n if (isDebugStaticShell || isDebugDynamicAccesses) {\n // Since we're not resuming the render, we need to at least add the\n // closing body and html tags to create valid HTML.\n body.push(\n new ReadableStream({\n start(controller) {\n controller.enqueue(ENCODED_TAGS.CLOSED.BODY_AND_HTML)\n controller.close()\n },\n })\n )\n\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: body,\n cacheControl: { revalidate: 0, expire: undefined },\n })\n }\n\n // If we're in test mode, we should add a sentinel chunk to the response\n // that's between the static and dynamic parts so we can compare the\n // chunks and add assertions.\n if (process.env.__NEXT_TEST_MODE) {\n body.push(createPPRBoundarySentinel())\n }\n\n // This request has postponed, so let's create a new transformer that the\n // dynamic data can pipe to that will attach the dynamic data to the end\n // of the response.\n const transformer = new TransformStream()\n body.push(transformer.readable)\n\n // Perform the render again, but this time, provide the postponed state.\n // We don't await because we want the result to start streaming now, and\n // we've already chained the transformer's readable to the render result.\n doRender({\n span,\n postponed: cachedData.postponed,\n // This is a resume render, not a fallback render, so we don't need to\n // set this.\n fallbackRouteParams: null,\n forceStaticRender: false,\n })\n .then(async (result) => {\n if (!result) {\n throw new Error('Invariant: expected a result to be returned')\n }\n\n if (result.value?.kind !== CachedRouteKind.APP_PAGE) {\n throw new Error(\n `Invariant: expected a page response, got ${result.value?.kind}`\n )\n }\n\n // Pipe the resume result to the transformer.\n await result.value.html.pipeTo(transformer.writable)\n })\n .catch((err) => {\n // An error occurred during piping or preparing the render, abort\n // the transformers writer so we can terminate the stream.\n transformer.writable.abort(err).catch((e) => {\n console.error(\"couldn't abort transformer\", e)\n })\n })\n\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: body,\n // We don't want to cache the response if it has postponed data because\n // the response being sent to the client it's dynamic parts are streamed\n // to the client on the same request.\n cacheControl: { revalidate: 0, expire: undefined },\n })\n }\n\n // TODO: activeSpan code path is for when wrapped by\n // next-server can be removed when this is no longer used\n if (activeSpan) {\n await handleResponse(activeSpan)\n } else {\n return await tracer.withPropagatedContext(req.headers, () =>\n tracer.trace(\n BaseServerSpan.handleRequest,\n {\n spanName: `${method} ${srcPage}`,\n kind: SpanKind.SERVER,\n attributes: {\n 'http.method': method,\n 'http.target': req.url,\n },\n },\n handleResponse\n )\n )\n }\n } catch (err) {\n if (!(err instanceof NoFallbackError)) {\n const silenceLog = false\n await routeModule.onRequestError(\n req,\n err,\n {\n routerKind: 'App Router',\n routePath: srcPage,\n routeType: 'render',\n revalidateReason: getRevalidateReason({\n isStaticGeneration: isSSG,\n isOnDemandRevalidate,\n }),\n },\n silenceLog,\n routerServerContext\n )\n }\n\n // rethrow so that we can handle serving error page\n throw err\n }\n}\n\n// TODO: omit this from production builds, only test builds should include it\n/**\n * Creates a readable stream that emits a PPR boundary sentinel.\n *\n * @returns A readable stream that emits a PPR boundary sentinel.\n */\nfunction createPPRBoundarySentinel() {\n return new ReadableStream({\n start(controller) {\n controller.enqueue(\n new TextEncoder().encode('')\n )\n controller.close()\n },\n })\n}\n"],"names":["AppPageRouteModule","RouteKind","getRevalidateReason","getTracer","SpanKind","addRequestMeta","getRequestMeta","BaseServerSpan","interopDefault","stripFlightHeaders","NodeNextRequest","NodeNextResponse","checkIsAppPPREnabled","getFallbackRouteParams","createOpaqueFallbackRouteParams","setManifestsSingleton","isHtmlBotRequest","shouldServeStreamingMetadata","normalizeAppPath","getIsPossibleServerAction","RSC_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_DID_POSTPONE_HEADER","RSC_CONTENT_TYPE_HEADER","getBotType","isBot","CachedRouteKind","IncrementalCacheKind","FallbackMode","parseFallbackField","RenderResult","CACHE_ONE_YEAR","HTML_CONTENT_TYPE_HEADER","NEXT_CACHE_TAGS_HEADER","NEXT_RESUME_HEADER","ENCODED_TAGS","sendRenderResult","NoFallbackError","parseMaxPostponedStateSize","GlobalError","__next_app__","require","__next_app_require__","loadChunk","__next_app_load_chunk__","entryBase","RedirectStatusCode","InvariantError","scheduleOnNextTick","isInterceptionRouteAppPath","routeModule","definition","kind","APP_PAGE","page","pathname","bundlePath","filename","appPaths","userland","loaderTree","tree","distDir","process","env","__NEXT_RELATIVE_DIST_DIR","relativeProjectDir","__NEXT_RELATIVE_PROJECT_DIR","handler","req","res","ctx","prerenderManifest","isDev","hrtime","bigint","isMinimalMode","Boolean","MINIMAL_MODE","srcPage","TURBOPACK","replace","multiZoneDraftMode","__NEXT_MULTI_ZONE_DRAFT_MODE","prepareResult","prepare","statusCode","end","waitUntil","Promise","resolve","buildId","query","params","pageIsDynamic","buildManifest","nextFontManifest","reactLoadableManifest","serverActionsManifest","clientReferenceManifest","subresourceIntegrityManifest","isDraftMode","resolvedPathname","revalidateOnlyGenerated","routerServerContext","nextConfig","parsedUrl","interceptionRoutePatterns","deploymentId","normalizedSrcPage","isOnDemandRevalidate","prerenderInfo","experimental","ppr","cacheComponents","match","isPrerendered","routes","userAgent","headers","botType","isHtmlBot","isPrefetchRSCRequest","isRSCRequest","isPossibleServerAction","couldSupportPPR","method","body","chunk","push","postponed","Buffer","concat","toString","hasDebugStaticShellQuery","__NEXT_EXPERIMENTAL_STATIC_SHELL_DEBUGGING","__nextppronly","hasDebugFallbackShellQuery","isRoutePPREnabled","dynamicRoutes","renderingMode","experimentalTestProxy","isDebugStaticShell","isDebugDynamicAccesses","isDebugFallbackShell","minimalPostponed","undefined","isDynamicRSCRequest","segmentPrefetchHeader","serveStreamingMetadata","htmlLimitedBots","isSSG","supportsRDCForNavigations","supportsDynamicResponse","shouldWaitOnAllReady","ssgCacheKey","staticPathKey","ComponentMod","tracer","activeSpan","getActiveScopeSpan","render404","varyHeader","getVaryHeader","setHeader","invokeRouteModule","span","context","nextReq","nextRes","render","finally","setAttributes","rootSpanAttributes","getRootSpanAttributes","get","handleRequest","console","warn","route","name","updateName","incrementalCache","doRender","fallbackRouteParams","forceStaticRender","sharedContext","serverComponentsHmrCache","renderOpts","App","Document","pageConfig","Component","setCacheStatus","setIsrStatus","setReactDebugChannel","sendErrorsToBrowser","dir","NEXT_RUNTIME","join","cwd","assetPrefix","nextConfigOutput","output","crossOrigin","trailingSlash","images","previewProps","preview","enableTainting","taint","reactMaxHeadersLength","cacheLifeProfiles","cacheLife","basePath","serverActions","nextExport","isStaticGeneration","expireTime","staleTimes","dynamicOnHover","inlineCss","authInterrupts","clientTraceMetadata","clientParamParsingOrigins","maxPostponedStateSizeBytes","maxPostponedStateSize","onClose","cb","on","onAfterTaskError","onInstrumentationRequestError","error","_request","errorContext","silenceLog","onRequestError","err","dev","result","metadata","cacheControl","fetchTags","cacheTags","fetchMetrics","revalidate","staticBailoutInfo","Error","description","stack","message","substring","indexOf","value","html","rscData","flightData","status","segmentData","responseGenerator","hasResolved","previousCacheEntry","previousIncrementalCacheEntry","isRevalidating","isProduction","didRespond","writableEnded","fallbackMode","fallback","PRERENDER","BLOCKING_STATIC_RENDER","isStale","NOT_FOUND","adapterPath","cacheKey","fallbackResponse","handleResponse","routeKind","isFallback","incrementalCacheEntry","responseCache","getResponseCache","c","expire","PAGES","EMPTY","pageData","cacheEntry","cachedData","didPostpone","isMiss","getHeader","tags","matchedSegment","generateEtags","poweredByHeader","fromStatic","onCacheEntry","finished","url","key","Object","entries","Array","isArray","v","appendHeader","contentType","__NEXT_TEST_MODE","unshift","createPPRBoundarySentinel","ReadableStream","start","controller","enqueue","CLOSED","BODY_AND_HTML","close","transformer","TransformStream","readable","then","pipeTo","writable","catch","abort","e","withPropagatedContext","trace","spanName","SERVER","attributes","routerKind","routePath","routeType","revalidateReason","TextEncoder","encode"],"mappings":"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","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_3e1f69b5._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_3e1f69b5._.js deleted file mode 100644 index bce26cc..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_3e1f69b5._.js +++ /dev/null @@ -1,11212 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time truthy", 1) { - module.exports = __turbopack_context__.r("[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)"); - } else //TURBOPACK unreachable - ; - } else //TURBOPACK unreachable - ; - } -} //# sourceMappingURL=module.compiled.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactJsxRuntime; //# sourceMappingURL=react-jsx-runtime.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].React; //# sourceMappingURL=react.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactDOM; //# sourceMappingURL=react-dom.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].AppRouterContext; //# sourceMappingURL=app-router-context.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unresolved-thenable.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Create a "Thenable" that does not resolve. This is used to suspend indefinitely when data is not available yet. - */ __turbopack_context__.s([ - "unresolvedThenable", - ()=>unresolvedThenable -]); -const unresolvedThenable = { - then: ()=>{} -}; //# sourceMappingURL=unresolved-thenable.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].HooksClientContext; //# sourceMappingURL=hooks-client-context.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/navigation-untracked.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "useUntrackedPathname", - ()=>useUntrackedPathname -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -; -; -/** - * This checks to see if the current render has any unknown route parameters that - * would cause the pathname to be dynamic. It's used to trigger a different - * render path in the error boundary. - * - * @returns true if there are any unknown route parameters, false otherwise - */ function hasFallbackRouteParams() { - if ("TURBOPACK compile-time truthy", 1) { - // AsyncLocalStorage should not be included in the client bundle. - const { workUnitAsyncStorage } = __turbopack_context__.r("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); - const workUnitStore = workUnitAsyncStorage.getStore(); - if (!workUnitStore) return false; - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - const fallbackParams = workUnitStore.fallbackRouteParams; - return fallbackParams ? fallbackParams.size > 0 : false; - case 'prerender-legacy': - case 'request': - case 'prerender-runtime': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - return false; - } - //TURBOPACK unreachable - ; -} -function useUntrackedPathname() { - // If there are any unknown route parameters we would typically throw - // an error, but this internal method allows us to return a null value instead - // for components that do not propagate the pathname to the static shell (like - // the error boundary). - if (hasFallbackRouteParams()) { - return null; - } - // This shouldn't cause any issues related to conditional rendering because - // the environment will be consistent for the render. - // eslint-disable-next-line react-hooks/rules-of-hooks - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PathnameContext"]); -} //# sourceMappingURL=navigation-untracked.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTTPAccessErrorStatus", - ()=>HTTPAccessErrorStatus, - "HTTP_ERROR_FALLBACK_ERROR_CODE", - ()=>HTTP_ERROR_FALLBACK_ERROR_CODE, - "getAccessFallbackErrorTypeByStatus", - ()=>getAccessFallbackErrorTypeByStatus, - "getAccessFallbackHTTPStatus", - ()=>getAccessFallbackHTTPStatus, - "isHTTPAccessFallbackError", - ()=>isHTTPAccessFallbackError -]); -const HTTPAccessErrorStatus = { - NOT_FOUND: 404, - FORBIDDEN: 403, - UNAUTHORIZED: 401 -}; -const ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus)); -const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'; -function isHTTPAccessFallbackError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const [prefix, httpStatus] = error.digest.split(';'); - return prefix === HTTP_ERROR_FALLBACK_ERROR_CODE && ALLOWED_CODES.has(Number(httpStatus)); -} -function getAccessFallbackHTTPStatus(error) { - const httpStatus = error.digest.split(';')[1]; - return Number(httpStatus); -} -function getAccessFallbackErrorTypeByStatus(status) { - switch(status){ - case 401: - return 'unauthorized'; - case 403: - return 'forbidden'; - case 404: - return 'not-found'; - default: - return; - } -} //# sourceMappingURL=http-access-fallback.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RedirectStatusCode", - ()=>RedirectStatusCode -]); -var RedirectStatusCode = /*#__PURE__*/ function(RedirectStatusCode) { - RedirectStatusCode[RedirectStatusCode["SeeOther"] = 303] = "SeeOther"; - RedirectStatusCode[RedirectStatusCode["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - RedirectStatusCode[RedirectStatusCode["PermanentRedirect"] = 308] = "PermanentRedirect"; - return RedirectStatusCode; -}({}); //# sourceMappingURL=redirect-status-code.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "REDIRECT_ERROR_CODE", - ()=>REDIRECT_ERROR_CODE, - "RedirectType", - ()=>RedirectType, - "isRedirectError", - ()=>isRedirectError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-ssr] (ecmascript)"); -; -const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'; -var RedirectType = /*#__PURE__*/ function(RedirectType) { - RedirectType["push"] = "push"; - RedirectType["replace"] = "replace"; - return RedirectType; -}({}); -function isRedirectError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const digest = error.digest.split(';'); - const [errorCode, type] = digest; - const destination = digest.slice(2, -2).join(';'); - const status = digest.at(-2); - const statusCode = Number(status); - return errorCode === REDIRECT_ERROR_CODE && (type === 'replace' || type === 'push') && typeof destination === 'string' && !isNaN(statusCode) && statusCode in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectStatusCode"]; -} //# sourceMappingURL=redirect-error.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isNextRouterError", - ()=>isNextRouterError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)"); -; -; -function isNextRouterError(error) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(error); -} //# sourceMappingURL=is-next-router-error.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createHrefFromUrl", - ()=>createHrefFromUrl -]); -function createHrefFromUrl(url, includeHash = true) { - return url.pathname + url.search + (includeHash ? url.hash : ''); -} //# sourceMappingURL=create-href-from-url.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/nav-failure-handler.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "handleHardNavError", - ()=>handleHardNavError, - "useNavFailureHandler", - ()=>useNavFailureHandler -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -; -; -function handleHardNavError(error) { - if (error && ("TURBOPACK compile-time value", "undefined") !== 'undefined' && window.next.__pendingUrl && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(new URL(window.location.href)) !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(window.next.__pendingUrl)) //TURBOPACK unreachable - ; - return false; -} -function useNavFailureHandler() { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; -} //# sourceMappingURL=nav-failure-handler.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/handle-isr-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HandleISRError", - ()=>HandleISRError -]); -const workAsyncStorage = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)").workAsyncStorage : "TURBOPACK unreachable"; -function HandleISRError({ error }) { - if (workAsyncStorage) { - const store = workAsyncStorage.getStore(); - if (store?.isStaticGeneration) { - if (error) { - console.error(error); - } - throw error; - } - } - return null; -} //# sourceMappingURL=handle-isr-error.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// This regex contains the bots that we need to do a blocking render for and can't safely stream the response -// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent. -// Note: The pattern [\w-]+-Google captures all Google crawlers with "-Google" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google) -// as well as crawlers starting with "Google-" (e.g., Google-PageRenderer, Google-InspectionTool) -__turbopack_context__.s([ - "HTML_LIMITED_BOT_UA_RE", - ()=>HTML_LIMITED_BOT_UA_RE -]); -const HTML_LIMITED_BOT_UA_RE = /[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i; //# sourceMappingURL=html-bots.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-ssr] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTML_LIMITED_BOT_UA_RE_STRING", - ()=>HTML_LIMITED_BOT_UA_RE_STRING, - "getBotType", - ()=>getBotType, - "isBot", - ()=>isBot -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js [app-ssr] (ecmascript)"); -; -// Bot crawler that will spin up a headless browser and execute JS. -// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers. -// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers -// This regex specifically matches "Googlebot" but NOT "Mediapartners-Google", "AdsBot-Google", etc. -const HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i; -const HTML_LIMITED_BOT_UA_RE_STRING = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTML_LIMITED_BOT_UA_RE"].source; -; -function isDomBotUA(userAgent) { - return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent); -} -function isHtmlLimitedBotUA(userAgent) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTML_LIMITED_BOT_UA_RE"].test(userAgent); -} -function isBot(userAgent) { - return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent); -} -function getBotType(userAgent) { - if (isDomBotUA(userAgent)) { - return 'dom'; - } - if (isHtmlLimitedBotUA(userAgent)) { - return 'html'; - } - return undefined; -} //# sourceMappingURL=is-bot.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/error-boundary.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ErrorBoundary", - ()=>ErrorBoundary, - "ErrorBoundaryHandler", - ()=>ErrorBoundaryHandler -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2d$untracked$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/navigation-untracked.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$nav$2d$failure$2d$handler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/nav-failure-handler.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$handle$2d$isr$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/handle-isr-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-ssr] (ecmascript) "); -'use client'; -; -; -; -; -; -; -; -const isBotUserAgent = ("TURBOPACK compile-time value", "undefined") !== 'undefined' && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__["isBot"])(window.navigator.userAgent); -class ErrorBoundaryHandler extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].Component { - constructor(props){ - super(props), this.reset = ()=>{ - this.setState({ - error: null - }); - }; - this.state = { - error: null, - previousPathname: this.props.pathname - }; - } - static getDerivedStateFromError(error) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isNextRouterError"])(error)) { - // Re-throw if an expected internal Next.js router error occurs - // this means it should be handled by a different boundary (such as a NotFound boundary in a parent segment) - throw error; - } - return { - error - }; - } - static getDerivedStateFromProps(props, state) { - const { error } = state; - // if we encounter an error while - // a navigation is pending we shouldn't render - // the error boundary and instead should fallback - // to a hard navigation to attempt recovering - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - /** - * Handles reset of the error boundary when a navigation happens. - * Ensures the error boundary does not stay enabled when navigating to a new page. - * Approach of setState in render is safe as it checks the previous pathname and then overrides - * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders - */ if (props.pathname !== state.previousPathname && state.error) { - return { - error: null, - previousPathname: props.pathname - }; - } - return { - error: state.error, - previousPathname: props.pathname - }; - } - // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version. - render() { - //When it's bot request, segment level error boundary will keep rendering the children, - // the final error will be caught by the root error boundary and determine wether need to apply graceful degrade. - if (this.state.error && !isBotUserAgent) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$handle$2d$isr$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HandleISRError"], { - error: this.state.error - }), - this.props.errorStyles, - this.props.errorScripts, - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(this.props.errorComponent, { - error: this.state.error, - reset: this.reset - }) - ] - }); - } - return this.props.children; - } -} -function ErrorBoundary({ errorComponent, errorStyles, errorScripts, children }) { - // When we're rendering the missing params shell, this will return null. This - // is because we won't be rendering any not found boundaries or error - // boundaries for the missing params shell. When this runs on the client - // (where these errors can occur), we will get the correct pathname. - const pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2d$untracked$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useUntrackedPathname"])(); - if (errorComponent) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(ErrorBoundaryHandler, { - pathname: pathname, - errorComponent: errorComponent, - errorStyles: errorStyles, - errorScripts: errorScripts, - children: children - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: children - }); -} //# sourceMappingURL=error-boundary.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "matchSegment", - ()=>matchSegment -]); -const matchSegment = (existingSegment, segment)=>{ - // segment is either Array or string - if (typeof existingSegment === 'string') { - if (typeof segment === 'string') { - // Common case: segment is just a string - return existingSegment === segment; - } - return false; - } - if (typeof segment === 'string') { - return false; - } - return existingSegment[0] === segment[0] && existingSegment[1] === segment[1]; -}; //# sourceMappingURL=match-segments.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "warnOnce", - ()=>warnOnce -]); -let warnOnce = (_)=>{}; -if ("TURBOPACK compile-time truthy", 1) { - const warnings = new Set(); - warnOnce = (msg)=>{ - if (!warnings.has(msg)) { - console.warn(msg); - } - warnings.add(msg); - }; -} -; - //# sourceMappingURL=warn-once.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/disable-smooth-scroll.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "disableSmoothScrollDuringRouteTransition", - ()=>disableSmoothScrollDuringRouteTransition -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$warn$2d$once$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)"); -; -function disableSmoothScrollDuringRouteTransition(fn, options = {}) { - // if only the hash is changed, we don't need to disable smooth scrolling - // we only care to prevent smooth scrolling when navigating to a new page to avoid jarring UX - if (options.onlyHashChange) { - fn(); - return; - } - const htmlElement = document.documentElement; - const hasDataAttribute = htmlElement.dataset.scrollBehavior === 'smooth'; - if (!hasDataAttribute) { - // Warn if smooth scrolling is detected but no data attribute is present - if (("TURBOPACK compile-time value", "development") === 'development' && getComputedStyle(htmlElement).scrollBehavior === 'smooth') { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$warn$2d$once$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["warnOnce"])('Detected `scroll-behavior: smooth` on the `` element. To disable smooth scrolling during route transitions, ' + 'add `data-scroll-behavior="smooth"` to your element. ' + 'Learn more: https://nextjs.org/docs/messages/missing-data-scroll-behavior'); - } - // No smooth scrolling configured, run directly without style manipulation - fn(); - return; - } - // Proceed with temporarily disabling smooth scrolling - const existing = htmlElement.style.scrollBehavior; - htmlElement.style.scrollBehavior = 'auto'; - if (!options.dontForceLayout) { - // In Chrome-based browsers we need to force reflow before calling `scrollTo`. - // Otherwise it will not pickup the change in scrollBehavior - // More info here: https://github.com/vercel/next.js/issues/40719#issuecomment-1336248042 - htmlElement.getClientRects(); - } - fn(); - htmlElement.style.scrollBehavior = existing; -} //# sourceMappingURL=disable-smooth-scroll.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DEFAULT_SEGMENT_KEY", - ()=>DEFAULT_SEGMENT_KEY, - "NOT_FOUND_SEGMENT_KEY", - ()=>NOT_FOUND_SEGMENT_KEY, - "PAGE_SEGMENT_KEY", - ()=>PAGE_SEGMENT_KEY, - "addSearchParamsIfPageSegment", - ()=>addSearchParamsIfPageSegment, - "computeSelectedLayoutSegment", - ()=>computeSelectedLayoutSegment, - "getSegmentValue", - ()=>getSegmentValue, - "getSelectedLayoutSegmentPath", - ()=>getSelectedLayoutSegmentPath, - "isGroupSegment", - ()=>isGroupSegment, - "isParallelRouteSegment", - ()=>isParallelRouteSegment -]); -function getSegmentValue(segment) { - return Array.isArray(segment) ? segment[1] : segment; -} -function isGroupSegment(segment) { - // Use array[0] for performant purpose - return segment[0] === '(' && segment.endsWith(')'); -} -function isParallelRouteSegment(segment) { - return segment.startsWith('@') && segment !== '@children'; -} -function addSearchParamsIfPageSegment(segment, searchParams) { - const isPageSegment = segment.includes(PAGE_SEGMENT_KEY); - if (isPageSegment) { - const stringifiedQuery = JSON.stringify(searchParams); - return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY; - } - return segment; -} -function computeSelectedLayoutSegment(segments, parallelRouteKey) { - if (!segments || segments.length === 0) { - return null; - } - // For 'children', use first segment; for other parallel routes, use last segment - const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1]; - // If the default slot is showing, return null since it's not technically "selected" (it's a fallback) - // Returning an internal value like `__DEFAULT__` would be confusing - return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment; -} -function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) { - let node; - if (first) { - // Use the provided parallel route key on the first parallel route - node = tree[1][parallelRouteKey]; - } else { - // After first parallel route prefer children, if there's no children pick the first parallel route. - const parallelRoutes = tree[1]; - node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]; - } - if (!node) return segmentPath; - const segment = node[0]; - let segmentValue = getSegmentValue(segment); - if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) { - return segmentPath; - } - segmentPath.push(segmentValue); - return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath); -} -const PAGE_SEGMENT_KEY = '__PAGE__'; -const DEFAULT_SEGMENT_KEY = '__DEFAULT__'; -const NOT_FOUND_SEGMENT_KEY = '/_not-found'; //# sourceMappingURL=segment.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].ServerInsertedHtml; //# sourceMappingURL=server-inserted-html.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unrecognized-action-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "UnrecognizedActionError", - ()=>UnrecognizedActionError, - "unstable_isUnrecognizedActionError", - ()=>unstable_isUnrecognizedActionError -]); -class UnrecognizedActionError extends Error { - constructor(...args){ - super(...args); - this.name = 'UnrecognizedActionError'; - } -} -function unstable_isUnrecognizedActionError(error) { - return !!(error && typeof error === 'object' && error instanceof UnrecognizedActionError); -} //# sourceMappingURL=unrecognized-action-error.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/readonly-url-search-params.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ReadonlyURLSearchParams", - ()=>ReadonlyURLSearchParams -]); -/** - * ReadonlyURLSearchParams implementation shared between client and server. - * This file is intentionally not marked as 'use client' or 'use server' - * so it can be imported by both environments. - */ /** @internal */ class ReadonlyURLSearchParamsError extends Error { - constructor(){ - super('Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams'); - } -} -class ReadonlyURLSearchParams extends URLSearchParams { - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ append() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ delete() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ set() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ sort() { - throw new ReadonlyURLSearchParamsError(); - } -} //# sourceMappingURL=readonly-url-search-params.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getRedirectError", - ()=>getRedirectError, - "getRedirectStatusCodeFromError", - ()=>getRedirectStatusCodeFromError, - "getRedirectTypeFromError", - ()=>getRedirectTypeFromError, - "getURLFromRedirectError", - ()=>getURLFromRedirectError, - "permanentRedirect", - ()=>permanentRedirect, - "redirect", - ()=>redirect -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)"); -; -; -const actionAsyncStorage = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)").actionAsyncStorage : "TURBOPACK unreachable"; -function getRedirectError(url, type, statusCode = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectStatusCode"].TemporaryRedirect) { - const error = Object.defineProperty(new Error(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["REDIRECT_ERROR_CODE"]), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["REDIRECT_ERROR_CODE"]};${type};${url};${statusCode};`; - return error; -} -function redirect(/** The URL to redirect to */ url, type) { - type ??= actionAsyncStorage?.getStore()?.isAction ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectType"].push : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectType"].replace; - throw getRedirectError(url, type, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectStatusCode"].TemporaryRedirect); -} -function permanentRedirect(/** The URL to redirect to */ url, type = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectType"].replace) { - throw getRedirectError(url, type, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectStatusCode"].PermanentRedirect); -} -function getURLFromRedirectError(error) { - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error)) return null; - // Slices off the beginning of the digest that contains the code and the - // separating ';'. - return error.digest.split(';').slice(2, -2).join(';'); -} -function getRedirectTypeFromError(error) { - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error)) { - throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", { - value: "E260", - enumerable: false, - configurable: true - }); - } - return error.digest.split(';', 2)[1]; -} -function getRedirectStatusCodeFromError(error) { - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error)) { - throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", { - value: "E260", - enumerable: false, - configurable: true - }); - } - return Number(error.digest.split(';').at(-2)); -} //# sourceMappingURL=redirect.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/not-found.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "notFound", - ()=>notFound -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -; -/** - * This function allows you to render the [not-found.js file](https://nextjs.org/docs/app/api-reference/file-conventions/not-found) - * within a route segment as well as inject a tag. - * - * `notFound()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * - In a Server Component, this will insert a `` meta tag and set the status code to 404. - * - In a Route Handler or Server Action, it will serve a 404 to the caller. - * - * Read more: [Next.js Docs: `notFound`](https://nextjs.org/docs/app/api-reference/functions/not-found) - */ const DIGEST = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTP_ERROR_FALLBACK_ERROR_CODE"]};404`; -function notFound() { - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} //# sourceMappingURL=not-found.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/forbidden.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "forbidden", - ()=>forbidden -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -; -// TODO: Add `forbidden` docs -/** - * @experimental - * This function allows you to render the [forbidden.js file](https://nextjs.org/docs/app/api-reference/file-conventions/forbidden) - * within a route segment as well as inject a tag. - * - * `forbidden()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * Read more: [Next.js Docs: `forbidden`](https://nextjs.org/docs/app/api-reference/functions/forbidden) - */ const DIGEST = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTP_ERROR_FALLBACK_ERROR_CODE"]};403`; -function forbidden() { - if ("TURBOPACK compile-time truthy", 1) { - throw Object.defineProperty(new Error(`\`forbidden()\` is experimental and only allowed to be enabled when \`experimental.authInterrupts\` is enabled.`), "__NEXT_ERROR_CODE", { - value: "E488", - enumerable: false, - configurable: true - }); - } - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} //# sourceMappingURL=forbidden.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unauthorized.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "unauthorized", - ()=>unauthorized -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -; -// TODO: Add `unauthorized` docs -/** - * @experimental - * This function allows you to render the [unauthorized.js file](https://nextjs.org/docs/app/api-reference/file-conventions/unauthorized) - * within a route segment as well as inject a tag. - * - * `unauthorized()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * - * Read more: [Next.js Docs: `unauthorized`](https://nextjs.org/docs/app/api-reference/functions/unauthorized) - */ const DIGEST = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTP_ERROR_FALLBACK_ERROR_CODE"]};401`; -function unauthorized() { - if ("TURBOPACK compile-time truthy", 1) { - throw Object.defineProperty(new Error(`\`unauthorized()\` is experimental and only allowed to be used when \`experimental.authInterrupts\` is enabled.`), "__NEXT_ERROR_CODE", { - value: "E411", - enumerable: false, - configurable: true - }); - } - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} //# sourceMappingURL=unauthorized.js.map -}), -"[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isHangingPromiseRejectionError", - ()=>isHangingPromiseRejectionError, - "makeDevtoolsIOAwarePromise", - ()=>makeDevtoolsIOAwarePromise, - "makeHangingPromise", - ()=>makeHangingPromise -]); -function isHangingPromiseRejectionError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === HANGING_PROMISE_REJECTION; -} -const HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'; -class HangingPromiseRejectionError extends Error { - constructor(route, expression){ - super(`During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${route}".`), this.route = route, this.expression = expression, this.digest = HANGING_PROMISE_REJECTION; - } -} -const abortListenersBySignal = new WeakMap(); -function makeHangingPromise(signal, route, expression) { - if (signal.aborted) { - return Promise.reject(new HangingPromiseRejectionError(route, expression)); - } else { - const hangingPromise = new Promise((_, reject)=>{ - const boundRejection = reject.bind(null, new HangingPromiseRejectionError(route, expression)); - let currentListeners = abortListenersBySignal.get(signal); - if (currentListeners) { - currentListeners.push(boundRejection); - } else { - const listeners = [ - boundRejection - ]; - abortListenersBySignal.set(signal, listeners); - signal.addEventListener('abort', ()=>{ - for(let i = 0; i < listeners.length; i++){ - listeners[i](); - } - }, { - once: true - }); - } - }); - // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so - // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct - // your own promise out of it you'll need to ensure you handle the error when it rejects. - hangingPromise.catch(ignoreReject); - return hangingPromise; - } -} -function ignoreReject() {} -function makeDevtoolsIOAwarePromise(underlying, requestStore, stage) { - if (requestStore.stagedRendering) { - // We resolve each stage in a timeout, so React DevTools will pick this up as IO. - return requestStore.stagedRendering.delayUntilStage(stage, undefined, underlying); - } - // in React DevTools if we resolve in a setTimeout we will observe - // the promise resolution as something that can suspend a boundary or root. - return new Promise((resolve)=>{ - // Must use setTimeout to be considered IO React DevTools. setImmediate will not work. - setTimeout(()=>{ - resolve(underlying); - }, 0); - }); -} //# sourceMappingURL=dynamic-rendering-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isPostpone", - ()=>isPostpone -]); -const REACT_POSTPONE_TYPE = Symbol.for('react.postpone'); -function isPostpone(error) { - return typeof error === 'object' && error !== null && error.$$typeof === REACT_POSTPONE_TYPE; -} //# sourceMappingURL=is-postpone.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "BailoutToCSRError", - ()=>BailoutToCSRError, - "isBailoutToCSRError", - ()=>isBailoutToCSRError -]); -// This has to be a shared module which is shared between client component error boundary and dynamic component -const BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'; -class BailoutToCSRError extends Error { - constructor(reason){ - super(`Bail out to client-side rendering: ${reason}`), this.reason = reason, this.digest = BAILOUT_TO_CSR; - } -} -function isBailoutToCSRError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === BAILOUT_TO_CSR; -} //# sourceMappingURL=bailout-to-csr.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DynamicServerError", - ()=>DynamicServerError, - "isDynamicServerError", - ()=>isDynamicServerError -]); -const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'; -class DynamicServerError extends Error { - constructor(description){ - super(`Dynamic server usage: ${description}`), this.description = description, this.digest = DYNAMIC_ERROR_CODE; - } -} -function isDynamicServerError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') { - return false; - } - return err.digest === DYNAMIC_ERROR_CODE; -} //# sourceMappingURL=hooks-server-context.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "StaticGenBailoutError", - ()=>StaticGenBailoutError, - "isStaticGenBailoutError", - ()=>isStaticGenBailoutError -]); -const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'; -class StaticGenBailoutError extends Error { - constructor(...args){ - super(...args), this.code = NEXT_STATIC_GEN_BAILOUT; - } -} -function isStaticGenBailoutError(error) { - if (typeof error !== 'object' || error === null || !('code' in error)) { - return false; - } - return error.code === NEXT_STATIC_GEN_BAILOUT; -} //# sourceMappingURL=static-generation-bailout.js.map -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "METADATA_BOUNDARY_NAME", - ()=>METADATA_BOUNDARY_NAME, - "OUTLET_BOUNDARY_NAME", - ()=>OUTLET_BOUNDARY_NAME, - "ROOT_LAYOUT_BOUNDARY_NAME", - ()=>ROOT_LAYOUT_BOUNDARY_NAME, - "VIEWPORT_BOUNDARY_NAME", - ()=>VIEWPORT_BOUNDARY_NAME -]); -const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'; -const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'; -const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'; -const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'; //# sourceMappingURL=boundary-constants.js.map -}), -"[project]/node_modules/next/dist/esm/lib/scheduler.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Schedules a function to be called on the next tick after the other promises - * have been resolved. - * - * @param cb the function to schedule - */ __turbopack_context__.s([ - "atLeastOneTask", - ()=>atLeastOneTask, - "scheduleImmediate", - ()=>scheduleImmediate, - "scheduleOnNextTick", - ()=>scheduleOnNextTick, - "waitAtLeastOneReactRenderTask", - ()=>waitAtLeastOneReactRenderTask -]); -const scheduleOnNextTick = (cb)=>{ - // We use Promise.resolve().then() here so that the operation is scheduled at - // the end of the promise job queue, we then add it to the next process tick - // to ensure it's evaluated afterwards. - // - // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255 - // - Promise.resolve().then(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - process.nextTick(cb); - } - }); -}; -const scheduleImmediate = (cb)=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - setImmediate(cb); - } -}; -function atLeastOneTask() { - return new Promise((resolve)=>scheduleImmediate(resolve)); -} -function waitAtLeastOneReactRenderTask() { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - return new Promise((r)=>setImmediate(r)); - } -} //# sourceMappingURL=scheduler.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "InvariantError", - ()=>InvariantError -]); -class InvariantError extends Error { - constructor(message, options){ - super(`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`, options); - this.name = 'InvariantError'; - } -} //# sourceMappingURL=invariant-error.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Postpone", - ()=>Postpone, - "PreludeState", - ()=>PreludeState, - "abortAndThrowOnSynchronousRequestDataAccess", - ()=>abortAndThrowOnSynchronousRequestDataAccess, - "abortOnSynchronousPlatformIOAccess", - ()=>abortOnSynchronousPlatformIOAccess, - "accessedDynamicData", - ()=>accessedDynamicData, - "annotateDynamicAccess", - ()=>annotateDynamicAccess, - "consumeDynamicAccess", - ()=>consumeDynamicAccess, - "createDynamicTrackingState", - ()=>createDynamicTrackingState, - "createDynamicValidationState", - ()=>createDynamicValidationState, - "createHangingInputAbortSignal", - ()=>createHangingInputAbortSignal, - "createRenderInBrowserAbortSignal", - ()=>createRenderInBrowserAbortSignal, - "delayUntilRuntimeStage", - ()=>delayUntilRuntimeStage, - "formatDynamicAPIAccesses", - ()=>formatDynamicAPIAccesses, - "getFirstDynamicReason", - ()=>getFirstDynamicReason, - "getStaticShellDisallowedDynamicReasons", - ()=>getStaticShellDisallowedDynamicReasons, - "isDynamicPostpone", - ()=>isDynamicPostpone, - "isPrerenderInterruptedError", - ()=>isPrerenderInterruptedError, - "logDisallowedDynamicError", - ()=>logDisallowedDynamicError, - "markCurrentScopeAsDynamic", - ()=>markCurrentScopeAsDynamic, - "postponeWithTracking", - ()=>postponeWithTracking, - "throwIfDisallowedDynamic", - ()=>throwIfDisallowedDynamic, - "throwToInterruptStaticGeneration", - ()=>throwToInterruptStaticGeneration, - "trackAllowedDynamicAccess", - ()=>trackAllowedDynamicAccess, - "trackDynamicDataInDynamicRender", - ()=>trackDynamicDataInDynamicRender, - "trackDynamicHoleInRuntimeShell", - ()=>trackDynamicHoleInRuntimeShell, - "trackDynamicHoleInStaticShell", - ()=>trackDynamicHoleInStaticShell, - "useDynamicRouteParams", - ()=>useDynamicRouteParams, - "useDynamicSearchParams", - ()=>useDynamicSearchParams -]); -/** - * The functions provided by this module are used to communicate certain properties - * about the currently running code so that Next.js can make decisions on how to handle - * the current execution in different rendering modes such as pre-rendering, resuming, and SSR. - * - * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering. - * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts - * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of - * Dynamic indications. - * - * The first is simply an intention to be dynamic. unstable_noStore is an example of this where - * the currently executing code simply declares that the current scope is dynamic but if you use it - * inside unstable_cache it can still be cached. This type of indication can be removed if we ever - * make the default dynamic to begin with because the only way you would ever be static is inside - * a cache scope which this indication does not affect. - * - * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic - * because it means that it is inappropriate to cache this at all. using a dynamic data source inside - * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should - * read that data outside the cache and pass it in as an argument to the cached function. - */ // Once postpone is in stable we should switch to importing the postpone export directly -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -const hasPostpone = typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].unstable_postpone === 'function'; -function createDynamicTrackingState(isDebugDynamicAccesses) { - return { - isDebugDynamicAccesses, - dynamicAccesses: [], - syncDynamicErrorWithStack: null - }; -} -function createDynamicValidationState() { - return { - hasSuspenseAboveBody: false, - hasDynamicMetadata: false, - dynamicMetadata: null, - hasDynamicViewport: false, - hasAllowedDynamic: false, - dynamicErrors: [] - }; -} -function getFirstDynamicReason(trackingState) { - var _trackingState_dynamicAccesses_; - return (_trackingState_dynamicAccesses_ = trackingState.dynamicAccesses[0]) == null ? void 0 : _trackingState_dynamicAccesses_.expression; -} -function markCurrentScopeAsDynamic(store, workUnitStore, expression) { - if (workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender-legacy': - case 'prerender-ppr': - case 'request': - break; - default: - workUnitStore; - } - } - // If we're forcing dynamic rendering or we're forcing static rendering, we - // don't need to do anything here because the entire page is already dynamic - // or it's static and it should not throw or postpone here. - if (store.forceDynamic || store.forceStatic) return; - if (store.dynamicShouldError) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](`Route ${store.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E553", - enumerable: false, - configurable: true - }); - } - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-ppr': - return postponeWithTracking(store.route, expression, workUnitStore.dynamicTracking); - case 'prerender-legacy': - workUnitStore.revalidate = 0; - // We aren't prerendering, but we are generating a static page. We need - // to bail out of static generation. - const err = Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DynamicServerError"](`Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E550", - enumerable: false, - configurable: true - }); - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } - } -} -function throwToInterruptStaticGeneration(expression, store, prerenderStore) { - // We aren't prerendering but we are generating a static page. We need to bail out of static generation - const err = Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DynamicServerError"](`Route ${store.route} couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E558", - enumerable: false, - configurable: true - }); - prerenderStore.revalidate = 0; - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; -} -function trackDynamicDataInDynamicRender(workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender': - case 'prerender-runtime': - case 'prerender-legacy': - case 'prerender-ppr': - case 'prerender-client': - break; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } -} -function abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore) { - const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`; - const error = createPrerenderInterruptedError(reason); - prerenderStore.controller.abort(error); - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function abortOnSynchronousPlatformIOAccess(route, expression, errorWithStack, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } -} -function abortAndThrowOnSynchronousRequestDataAccess(route, expression, errorWithStack, prerenderStore) { - const prerenderSignal = prerenderStore.controller.signal; - if (prerenderSignal.aborted === false) { - // TODO it would be better to move this aborted check into the callsite so we can avoid making - // the error object when it isn't relevant to the aborting of the prerender however - // since we need the throw semantics regardless of whether we abort it is easier to land - // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer - // to ideal implementation - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } - } - throw createPrerenderInterruptedError(`Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`); -} -function Postpone({ reason, route }) { - const prerenderStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - const dynamicTracking = prerenderStore && prerenderStore.type === 'prerender-ppr' ? prerenderStore.dynamicTracking : null; - postponeWithTracking(route, reason, dynamicTracking); -} -function postponeWithTracking(route, expression, dynamicTracking) { - assertPostpone(); - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].unstable_postpone(createPostponeReason(route, expression)); -} -function createPostponeReason(route, expression) { - return `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` + `React throws this special object to indicate where. It should not be caught by ` + `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`; -} -function isDynamicPostpone(err) { - if (typeof err === 'object' && err !== null && typeof err.message === 'string') { - return isDynamicPostponeReason(err.message); - } - return false; -} -function isDynamicPostponeReason(reason) { - return reason.includes('needs to bail out of prerendering at this point because it used') && reason.includes('Learn more: https://nextjs.org/docs/messages/ppr-caught-error'); -} -if (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) { - throw Object.defineProperty(new Error('Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'), "__NEXT_ERROR_CODE", { - value: "E296", - enumerable: false, - configurable: true - }); -} -const NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'; -function createPrerenderInterruptedError(message) { - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = NEXT_PRERENDER_INTERRUPTED; - return error; -} -function isPrerenderInterruptedError(error) { - return typeof error === 'object' && error !== null && error.digest === NEXT_PRERENDER_INTERRUPTED && 'name' in error && 'message' in error && error instanceof Error; -} -function accessedDynamicData(dynamicAccesses) { - return dynamicAccesses.length > 0; -} -function consumeDynamicAccess(serverDynamic, clientDynamic) { - // We mutate because we only call this once we are no longer writing - // to the dynamicTrackingState and it's more efficient than creating a new - // array. - serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses); - return serverDynamic.dynamicAccesses; -} -function formatDynamicAPIAccesses(dynamicAccesses) { - return dynamicAccesses.filter((access)=>typeof access.stack === 'string' && access.stack.length > 0).map(({ expression, stack })=>{ - stack = stack.split('\n') // Remove the "Error: " prefix from the first line of the stack trace as - // well as the first 4 lines of the stack trace which is the distance - // from the user code and the `new Error().stack` call. - .slice(4).filter((line)=>{ - // Exclude Next.js internals from the stack trace. - if (line.includes('node_modules/next/')) { - return false; - } - // Exclude anonymous functions from the stack trace. - if (line.includes(' ()')) { - return false; - } - // Exclude Node.js internals from the stack trace. - if (line.includes(' (node:')) { - return false; - } - return true; - }).join('\n'); - return `Dynamic API Usage Debug - ${expression}:\n${stack}`; - }); -} -function assertPostpone() { - if (!hasPostpone) { - throw Object.defineProperty(new Error(`Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`), "__NEXT_ERROR_CODE", { - value: "E224", - enumerable: false, - configurable: true - }); - } -} -function createRenderInBrowserAbortSignal() { - const controller = new AbortController(); - controller.abort(Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["BailoutToCSRError"]('Render in Browser'), "__NEXT_ERROR_CODE", { - value: "E721", - enumerable: false, - configurable: true - })); - return controller.signal; -} -function createHangingInputAbortSignal(workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - const controller = new AbortController(); - if (workUnitStore.cacheSignal) { - // If we have a cacheSignal it means we're in a prospective render. If - // the input we're waiting on is coming from another cache, we do want - // to wait for it so that we can resolve this cache entry too. - workUnitStore.cacheSignal.inputReady().then(()=>{ - controller.abort(); - }); - } else { - // Otherwise we're in the final render and we should already have all - // our caches filled. - // If the prerender uses stages, we have wait until the runtime stage, - // at which point all runtime inputs will be resolved. - // (otherwise, a runtime prerender might consider `cookies()` hanging - // even though they'd resolve in the next task.) - // - // We might still be waiting on some microtasks so we - // wait one tick before giving up. When we give up, we still want to - // render the content of this cache as deeply as we can so that we can - // suspend as deeply as possible in the tree or not at all if we don't - // end up waiting for the input. - const runtimeStagePromise = (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["getRuntimeStagePromise"])(workUnitStore); - if (runtimeStagePromise) { - runtimeStagePromise.then(()=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(()=>controller.abort())); - } else { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(()=>controller.abort()); - } - } - return controller.signal; - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - case 'cache': - case 'private-cache': - case 'unstable-cache': - return undefined; - default: - workUnitStore; - } -} -function annotateDynamicAccess(expression, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function useDynamicRouteParams(expression) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workStore && workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-client': - case 'prerender': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - // We are in a prerender with cacheComponents semantics. We are going to - // hang here and never resolve. This will cause the currently - // rendering component to effectively be a dynamic hole. - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].use((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, expression)); - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return postponeWithTracking(workStore.route, expression, workUnitStore.dynamicTracking); - } - break; - } - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E771", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'prerender-legacy': - case 'request': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } -} -function useDynamicSearchParams(expression) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (!workStore) { - // We assume pages router context and just return - return; - } - if (!workUnitStore) { - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwForMissingRequestStore"])(expression); - } - switch(workUnitStore.type){ - case 'prerender-client': - { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].use((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, expression)); - break; - } - case 'prerender-legacy': - case 'prerender-ppr': - { - if (workStore.forceStatic) { - return; - } - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["BailoutToCSRError"](expression), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - case 'prerender': - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E795", - enumerable: false, - configurable: true - }); - case 'cache': - case 'unstable-cache': - case 'private-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'request': - return; - default: - workUnitStore; - } -} -const hasSuspenseRegex = /\n\s+at Suspense \(\)/; -// Common implicit body tags that React will treat as body when placed directly in html -const bodyAndImplicitTags = 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'; -// Detects when RootLayoutBoundary (our framework marker component) appears -// after Suspense in the component stack, indicating the root layout is wrapped -// within a Suspense boundary. Ensures no body/html/implicit-body components are in between. -// -// Example matches: -// at Suspense () -// at __next_root_layout_boundary__ () -// -// Or with other components in between (but not body/html/implicit-body): -// at Suspense () -// at SomeComponent () -// at __next_root_layout_boundary__ () -const hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(`\\n\\s+at Suspense \\(\\)(?:(?!\\n\\s+at (?:${bodyAndImplicitTags}) \\(\\))[\\s\\S])*?\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_LAYOUT_BOUNDARY_NAME"]} \\([^\\n]*\\)`); -const hasMetadataRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["METADATA_BOUNDARY_NAME"]}[\\n\\s]`); -const hasViewportRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["VIEWPORT_BOUNDARY_NAME"]}[\\n\\s]`); -const hasOutletRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["OUTLET_BOUNDARY_NAME"]}[\\n\\s]`); -function trackAllowedDynamicAccess(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - dynamicValidation.hasDynamicMetadata = true; - return; - } else if (hasViewportRegex.test(componentStack)) { - dynamicValidation.hasDynamicViewport = true; - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data was accessed outside of ` + '. This delays the entire page from rendering, resulting in a ' + 'slow user experience. Learn more: ' + 'https://nextjs.org/docs/messages/blocking-route'; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInRuntimeShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateMetadata\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInStaticShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateMetadata\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -/** - * In dev mode, we prefer using the owner stack, otherwise the provided - * component stack is used. - */ function createErrorWithComponentOrOwnerStack(message, componentStack) { - const ownerStack = ("TURBOPACK compile-time value", "development") !== 'production' && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].captureOwnerStack ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].captureOwnerStack() : null; - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right - // - error.stack = error.name + ': ' + message + (ownerStack || componentStack); - return error; -} -var PreludeState = /*#__PURE__*/ function(PreludeState) { - PreludeState[PreludeState["Full"] = 0] = "Full"; - PreludeState[PreludeState["Empty"] = 1] = "Empty"; - PreludeState[PreludeState["Errored"] = 2] = "Errored"; - return PreludeState; -}({}); -function logDisallowedDynamicError(workStore, error) { - console.error(error); - if (!workStore.dev) { - if (workStore.hasReadableErrorStacks) { - console.error(`To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error.`); - } else { - console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following: - - Start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error. - - Rerun the production build with \`next build --debug-prerender\` to generate better stack traces.`); - } - } -} -function throwIfDisallowedDynamic(workStore, prelude, dynamicValidation, serverDynamic) { - if (serverDynamic.syncDynamicErrorWithStack) { - logDisallowedDynamicError(workStore, serverDynamic.syncDynamicErrorWithStack); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - if (prelude !== 0) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return; - } - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - for(let i = 0; i < dynamicErrors.length; i++){ - logDisallowedDynamicError(workStore, dynamicErrors[i]); - } - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - // If we got this far then the only other thing that could be blocking - // the root is dynamic Viewport. If this is dynamic then - // you need to opt into that by adding a Suspense boundary above the body - // to indicate your are ok with fully dynamic rendering. - if (dynamicValidation.hasDynamicViewport) { - console.error(`Route "${workStore.route}" has a \`generateViewport\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - console.error(`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - } else { - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.hasDynamicMetadata) { - console.error(`Route "${workStore.route}" has a \`generateMetadata\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - } -} -function getStaticShellDisallowedDynamicReasons(workStore, prelude, dynamicValidation) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return []; - } - if (prelude !== 0) { - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - return dynamicErrors; - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - return [ - Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason.`), "__NEXT_ERROR_CODE", { - value: "E936", - enumerable: false, - configurable: true - }) - ]; - } - } else { - // We have a prelude but we might still have dynamic metadata without any other dynamic access - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicErrors.length === 0 && dynamicValidation.dynamicMetadata) { - return [ - dynamicValidation.dynamicMetadata - ]; - } - } - // We had a non-empty prelude and there are no dynamic holes - return []; -} -function delayUntilRuntimeStage(prerenderStore, result) { - if (prerenderStore.runtimeStagePromise) { - return prerenderStore.runtimeStagePromise.then(()=>result); - } - return result; -} //# sourceMappingURL=dynamic-rendering.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unstable-rethrow.server.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "unstable_rethrow", - ()=>unstable_rethrow -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -function unstable_rethrow(error) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isNextRouterError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isBailoutToCSRError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isDynamicServerError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isDynamicPostpone"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isPostpone"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isHangingPromiseRejectionError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isPrerenderInterruptedError"])(error)) { - throw error; - } - if (error instanceof Error && 'cause' in error) { - unstable_rethrow(error.cause); - } -} //# sourceMappingURL=unstable-rethrow.server.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unstable-rethrow.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * This function should be used to rethrow internal Next.js errors so that they can be handled by the framework. - * When wrapping an API that uses errors to interrupt control flow, you should use this function before you do any error handling. - * This function will rethrow the error if it is a Next.js error so it can be handled, otherwise it will do nothing. - * - * Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow) - */ __turbopack_context__.s([ - "unstable_rethrow", - ()=>unstable_rethrow -]); -const unstable_rethrow = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/client/components/unstable-rethrow.server.js [app-ssr] (ecmascript)").unstable_rethrow : "TURBOPACK unreachable"; //# sourceMappingURL=unstable-rethrow.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/navigation.react-server.js [app-ssr] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "unstable_isUnrecognizedActionError", - ()=>unstable_isUnrecognizedActionError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$readonly$2d$url$2d$search$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/readonly-url-search-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$not$2d$found$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/not-found.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$forbidden$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/forbidden.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unauthorized$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/unauthorized.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unstable$2d$rethrow$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/unstable-rethrow.js [app-ssr] (ecmascript)"); -; -function unstable_isUnrecognizedActionError() { - throw Object.defineProperty(new Error('`unstable_isUnrecognizedActionError` can only be used on the client.'), "__NEXT_ERROR_CODE", { - value: "E776", - enumerable: false, - configurable: true - }); -} -; -; -; -; -; -; -; - //# sourceMappingURL=navigation.react-server.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/navigation.js [app-ssr] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "useParams", - ()=>useParams, - "usePathname", - ()=>usePathname, - "useRouter", - ()=>useRouter, - "useSearchParams", - ()=>useSearchParams, - "useSelectedLayoutSegment", - ()=>useSelectedLayoutSegment, - "useSelectedLayoutSegments", - ()=>useSelectedLayoutSegments -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -// Client components API -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$server$2d$inserted$2d$html$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unrecognized$2d$action$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/unrecognized-action-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2e$react$2d$server$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/navigation.react-server.js [app-ssr] (ecmascript) "); //# sourceMappingURL=navigation.js.map -; -; -; -; -const useDynamicRouteParams = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)").useDynamicRouteParams : "TURBOPACK unreachable"; -const useDynamicSearchParams = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)").useDynamicSearchParams : "TURBOPACK unreachable"; -function useSearchParams() { - useDynamicSearchParams?.('useSearchParams()'); - const searchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["SearchParamsContext"]); - // In the case where this is `null`, the compat types added in - // `next-env.d.ts` will add a new overload that changes the return type to - // include `null`. - const readonlySearchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useMemo"])(()=>{ - if (!searchParams) { - // When the router is not ready in pages, we won't have the search params - // available. - return null; - } - return new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReadonlyURLSearchParams"](searchParams); - }, [ - searchParams - ]); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (navigationPromises) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(navigationPromises.searchParams); - } - } - return readonlySearchParams; -} -function usePathname() { - useDynamicRouteParams?.('usePathname()'); - // In the case where this is `null`, the compat types added in `next-env.d.ts` - // will add a new overload that changes the return type to include `null`. - const pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PathnameContext"]); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (navigationPromises) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(navigationPromises.pathname); - } - } - return pathname; -} -; -function useRouter() { - const router = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["AppRouterContext"]); - if (router === null) { - throw Object.defineProperty(new Error('invariant expected app router to be mounted'), "__NEXT_ERROR_CODE", { - value: "E238", - enumerable: false, - configurable: true - }); - } - return router; -} -function useParams() { - useDynamicRouteParams?.('useParams()'); - const params = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PathParamsContext"]); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (navigationPromises) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(navigationPromises.params); - } - } - return params; -} -function useSelectedLayoutSegments(parallelRouteKey = 'children') { - useDynamicRouteParams?.('useSelectedLayoutSegments()'); - const context = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"]); - // @ts-expect-error This only happens in `pages`. Type is overwritten in navigation.d.ts - if (!context) return null; - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (navigationPromises) { - const promise = navigationPromises.selectedLayoutSegmentsPromises?.get(parallelRouteKey); - if (promise) { - // We should always have a promise here, but if we don't, it's not worth erroring over. - // We just won't be able to instrument it, but can still provide the value. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(promise); - } - } - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSelectedLayoutSegmentPath"])(context.parentTree, parallelRouteKey); -} -function useSelectedLayoutSegment(parallelRouteKey = 'children') { - useDynamicRouteParams?.('useSelectedLayoutSegment()'); - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - const selectedLayoutSegments = useSelectedLayoutSegments(parallelRouteKey); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && navigationPromises && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const promise = navigationPromises.selectedLayoutSegmentPromises?.get(parallelRouteKey); - if (promise) { - // We should always have a promise here, but if we don't, it's not worth erroring over. - // We just won't be able to instrument it, but can still provide the value. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(promise); - } - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["computeSelectedLayoutSegment"])(selectedLayoutSegments, parallelRouteKey); -} -; -; -; -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-boundary.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RedirectBoundary", - ()=>RedirectBoundary, - "RedirectErrorBoundary", - ()=>RedirectErrorBoundary -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/navigation.js [app-ssr] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -function HandleRedirect({ redirect, reset, redirectType }) { - const router = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__["useRouter"])(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useEffect"])(()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].startTransition(()=>{ - if (redirectType === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectType"].push) { - router.push(redirect, {}); - } else { - router.replace(redirect, {}); - } - reset(); - }); - }, [ - redirect, - redirectType, - reset, - router - ]); - return null; -} -class RedirectErrorBoundary extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].Component { - constructor(props){ - super(props); - this.state = { - redirect: null, - redirectType: null - }; - } - static getDerivedStateFromError(error) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error)) { - const url = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getURLFromRedirectError"])(error); - const redirectType = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRedirectTypeFromError"])(error); - if ('handled' in error) { - // The redirect was already handled. We'll still catch the redirect error - // so that we can remount the subtree, but we don't actually need to trigger the - // router.push. - return { - redirect: null, - redirectType: null - }; - } - return { - redirect: url, - redirectType - }; - } - // Re-throw if error is not for redirect - throw error; - } - // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version. - render() { - const { redirect, redirectType } = this.state; - if (redirect !== null && redirectType !== null) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(HandleRedirect, { - redirect: redirect, - redirectType: redirectType, - reset: ()=>this.setState({ - redirect: null - }) - }); - } - return this.props.children; - } -} -function RedirectBoundary({ children }) { - const router = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__["useRouter"])(); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(RedirectErrorBoundary, { - router: router, - children: children - }); -} //# sourceMappingURL=redirect-boundary.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTTPAccessFallbackBoundary", - ()=>HTTPAccessFallbackBoundary -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -/** - * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a - * fallback component for HTTP errors. - * - * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors. - * - * e.g. 404 - * 404 represents not found, and the fallback component pair contains the component and its styles. - * - */ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2d$untracked$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/navigation-untracked.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$warn$2d$once$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -; -class HTTPAccessFallbackErrorBoundary extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].Component { - constructor(props){ - super(props); - this.state = { - triggeredStatus: undefined, - previousPathname: props.pathname - }; - } - componentDidCatch() { - if (("TURBOPACK compile-time value", "development") === 'development' && this.props.missingSlots && this.props.missingSlots.size > 0 && // A missing children slot is the typical not-found case, so no need to warn - !this.props.missingSlots.has('children')) { - let warningMessage = 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\n' + 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\n\n'; - const formattedSlots = Array.from(this.props.missingSlots).sort((a, b)=>a.localeCompare(b)).map((slot)=>`@${slot}`).join(', '); - warningMessage += 'Missing slots: ' + formattedSlots; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$warn$2d$once$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["warnOnce"])(warningMessage); - } - } - static getDerivedStateFromError(error) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(error)) { - const httpStatus = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAccessFallbackHTTPStatus"])(error); - return { - triggeredStatus: httpStatus - }; - } - // Re-throw if error is not for 404 - throw error; - } - static getDerivedStateFromProps(props, state) { - /** - * Handles reset of the error boundary when a navigation happens. - * Ensures the error boundary does not stay enabled when navigating to a new page. - * Approach of setState in render is safe as it checks the previous pathname and then overrides - * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders - */ if (props.pathname !== state.previousPathname && state.triggeredStatus) { - return { - triggeredStatus: undefined, - previousPathname: props.pathname - }; - } - return { - triggeredStatus: state.triggeredStatus, - previousPathname: props.pathname - }; - } - render() { - const { notFound, forbidden, unauthorized, children } = this.props; - const { triggeredStatus } = this.state; - const errorComponents = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].NOT_FOUND]: notFound, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].FORBIDDEN]: forbidden, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].UNAUTHORIZED]: unauthorized - }; - if (triggeredStatus) { - const isNotFound = triggeredStatus === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].NOT_FOUND && notFound; - const isForbidden = triggeredStatus === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].FORBIDDEN && forbidden; - const isUnauthorized = triggeredStatus === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].UNAUTHORIZED && unauthorized; - // If there's no matched boundary in this layer, keep throwing the error by rendering the children - if (!(isNotFound || isForbidden || isUnauthorized)) { - return children; - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "robots", - content: "noindex" - }), - ("TURBOPACK compile-time value", "development") === 'development' && /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "boundary-next-error", - content: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAccessFallbackErrorTypeByStatus"])(triggeredStatus) - }), - errorComponents[triggeredStatus] - ] - }); - } - return children; - } -} -function HTTPAccessFallbackBoundary({ notFound, forbidden, unauthorized, children }) { - // When we're rendering the missing params shell, this will return null. This - // is because we won't be rendering any not found boundaries or error - // boundaries for the missing params shell. When this runs on the client - // (where these error can occur), we will get the correct pathname. - const pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2d$untracked$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useUntrackedPathname"])(); - const missingSlots = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["MissingSlotContext"]); - const hasErrorFallback = !!(notFound || forbidden || unauthorized); - if (hasErrorFallback) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(HTTPAccessFallbackErrorBoundary, { - pathname: pathname, - notFound: notFound, - forbidden: forbidden, - unauthorized: unauthorized, - missingSlots: missingSlots, - children: children - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: children - }); -} //# sourceMappingURL=error-boundary.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/create-router-cache-key.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createRouterCacheKey", - ()=>createRouterCacheKey -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -function createRouterCacheKey(segment, withoutSearchParameters = false) { - // if the segment is an array, it means it's a dynamic segment - // for example, ['lang', 'en', 'd']. We need to convert it to a string to store it as a cache node key. - if (Array.isArray(segment)) { - return `${segment[0]}|${segment[1]}|${segment[2]}`; - } - // Page segments might have search parameters, ie __PAGE__?foo=bar - // When `withoutSearchParameters` is true, we only want to return the page segment - if (withoutSearchParameters && segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - } - return segment; -} //# sourceMappingURL=create-router-cache-key.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/bfcache.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "useRouterBFCache", - ()=>useRouterBFCache -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -; -// When the flag is disabled, only track the currently active tree -const MAX_BF_CACHE_ENTRIES = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 1; -function useRouterBFCache(activeTree, activeStateKey) { - // The currently active entry. The entries form a linked list, sorted in - // order of most recently active. This allows us to reuse parts of the list - // without cloning, unless there's a reordering or removal. - // TODO: Once we start tracking back/forward history at each route level, - // we should use the history order instead. In other words, when traversing - // to an existing entry as a result of a popstate event, we should maintain - // the existing order instead of moving it to the front of the list. I think - // an initial implementation of this could be to pass an incrementing id - // to history.pushState/replaceState, then use that here for ordering. - const [prevActiveEntry, setPrevActiveEntry] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useState"])(()=>{ - const initialEntry = { - tree: activeTree, - stateKey: activeStateKey, - next: null - }; - return initialEntry; - }); - if (prevActiveEntry.tree === activeTree) { - // Fast path. The active tree hasn't changed, so we can reuse the - // existing state. - return prevActiveEntry; - } - // The route tree changed. Note that this doesn't mean that the tree changed - // *at this level* — the change may be due to a child route. Either way, we - // need to either add or update the router tree in the bfcache. - // - // The rest of the code looks more complicated than it actually is because we - // can't mutate the state in place; we have to copy-on-write. - // Create a new entry for the active cache key. This is the head of the new - // linked list. - const newActiveEntry = { - tree: activeTree, - stateKey: activeStateKey, - next: null - }; - // We need to append the old list onto the new list. If the head of the new - // list was already present in the cache, then we'll need to clone everything - // that came before it. Then we can reuse the rest. - let n = 1; - let oldEntry = prevActiveEntry; - let clonedEntry = newActiveEntry; - while(oldEntry !== null && n < MAX_BF_CACHE_ENTRIES){ - if (oldEntry.stateKey === activeStateKey) { - // Fast path. This entry in the old list that corresponds to the key that - // is now active. We've already placed a clone of this entry at the front - // of the new list. We can reuse the rest of the old list without cloning. - // NOTE: We don't need to worry about eviction in this case because we - // haven't increased the size of the cache, and we assume the max size - // is constant across renders. If we were to change it to a dynamic limit, - // then the implementation would need to account for that. - clonedEntry.next = oldEntry.next; - break; - } else { - // Clone the entry and append it to the list. - n++; - const entry = { - tree: oldEntry.tree, - stateKey: oldEntry.stateKey, - next: null - }; - clonedEntry.next = entry; - clonedEntry = entry; - } - oldEntry = oldEntry.next; - } - setPrevActiveEntry(newActiveEntry); - return newActiveEntry; -} //# sourceMappingURL=bfcache.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is a leading slash. - * If there is not a leading slash, one is added, otherwise it is noop. - */ __turbopack_context__.s([ - "ensureLeadingSlash", - ()=>ensureLeadingSlash -]); -function ensureLeadingSlash(path) { - return path.startsWith('/') ? path : `/${path}`; -} //# sourceMappingURL=ensure-leading-slash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "normalizeAppPath", - ()=>normalizeAppPath, - "normalizeRscURL", - ()=>normalizeRscURL -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$page$2d$path$2f$ensure$2d$leading$2d$slash$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -; -function normalizeAppPath(route) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$page$2d$path$2f$ensure$2d$leading$2d$slash$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ensureLeadingSlash"])(route.split('/').reduce((pathname, segment, index, segments)=>{ - // Empty segments are ignored. - if (!segment) { - return pathname; - } - // Groups are ignored. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isGroupSegment"])(segment)) { - return pathname; - } - // Parallel segments are ignored. - if (segment[0] === '@') { - return pathname; - } - // The last segment (if it's a leaf) should be ignored. - if ((segment === 'page' || segment === 'route') && index === segments.length - 1) { - return pathname; - } - return `${pathname}/${segment}`; - }, '')); -} -function normalizeRscURL(url) { - return url.replace(/\.rsc($|\?)/, '$1'); -} //# sourceMappingURL=app-paths.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HEAD_REQUEST_KEY", - ()=>HEAD_REQUEST_KEY, - "ROOT_SEGMENT_REQUEST_KEY", - ()=>ROOT_SEGMENT_REQUEST_KEY, - "appendSegmentRequestKeyPart", - ()=>appendSegmentRequestKeyPart, - "convertSegmentPathToStaticExportFilename", - ()=>convertSegmentPathToStaticExportFilename, - "createSegmentRequestKeyPart", - ()=>createSegmentRequestKeyPart -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -const ROOT_SEGMENT_REQUEST_KEY = ''; -const HEAD_REQUEST_KEY = '/_head'; -function createSegmentRequestKeyPart(segment) { - if (typeof segment === 'string') { - if (segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - // The Flight Router State type sometimes includes the search params in - // the page segment. However, the Segment Cache tracks this as a separate - // key. So, we strip the search params here, and then add them back when - // the cache entry is turned back into a FlightRouterState. This is an - // unfortunate consequence of the FlightRouteState being used both as a - // transport type and as a cache key; we'll address this once more of the - // Segment Cache implementation has settled. - // TODO: We should hoist the search params out of the FlightRouterState - // type entirely, This is our plan for dynamic route params, too. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - } - const safeName = // But params typically don't include the leading slash. We should use - // a different encoding to avoid this special case. - segment === '/_not-found' ? '_not-found' : encodeToFilesystemAndURLSafeString(segment); - // Since this is not a dynamic segment, it's fully encoded. It does not - // need to be "hydrated" with a param value. - return safeName; - } - const name = segment[0]; - const paramType = segment[2]; - const safeName = encodeToFilesystemAndURLSafeString(name); - const encodedName = '$' + paramType + '$' + safeName; - return encodedName; -} -function appendSegmentRequestKeyPart(parentRequestKey, parallelRouteKey, childRequestKeyPart) { - // Aside from being filesystem safe, segment keys are also designed so that - // each segment and parallel route creates its own subdirectory. Roughly in - // the same shape as the source app directory. This is mostly just for easier - // debugging (you can open up the build folder and navigate the output); if - // we wanted to do we could just use a flat structure. - // Omit the parallel route key for children, since this is the most - // common case. Saves some bytes (and it's what the app directory does). - const slotKey = parallelRouteKey === 'children' ? childRequestKeyPart : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`; - return parentRequestKey + '/' + slotKey; -} -// Define a regex pattern to match the most common characters found in a route -// param. It excludes anything that might not be cross-platform filesystem -// compatible, like |. It does not need to be precise because the fallback is to -// just base64url-encode the whole parameter, which is fine; we just don't do it -// by default for compactness, and for easier debugging. -const simpleParamValueRegex = /^[a-zA-Z0-9\-_@]+$/; -function encodeToFilesystemAndURLSafeString(value) { - if (simpleParamValueRegex.test(value)) { - return value; - } - // If there are any unsafe characters, base64url-encode the entire value. - // We also add a ! prefix so it doesn't collide with the simple case. - const base64url = btoa(value).replace(/\+/g, '-') // Replace '+' with '-' - .replace(/\//g, '_') // Replace '/' with '_' - .replace(/=+$/, '') // Remove trailing '=' - ; - return '!' + base64url; -} -function convertSegmentPathToStaticExportFilename(segmentPath) { - return `__next${segmentPath.replace(/\//g, '.')}.txt`; -} //# sourceMappingURL=segment-value-encoding.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ACTION_HEADER", - ()=>ACTION_HEADER, - "FLIGHT_HEADERS", - ()=>FLIGHT_HEADERS, - "NEXT_ACTION_NOT_FOUND_HEADER", - ()=>NEXT_ACTION_NOT_FOUND_HEADER, - "NEXT_ACTION_REVALIDATED_HEADER", - ()=>NEXT_ACTION_REVALIDATED_HEADER, - "NEXT_DID_POSTPONE_HEADER", - ()=>NEXT_DID_POSTPONE_HEADER, - "NEXT_HMR_REFRESH_HASH_COOKIE", - ()=>NEXT_HMR_REFRESH_HASH_COOKIE, - "NEXT_HMR_REFRESH_HEADER", - ()=>NEXT_HMR_REFRESH_HEADER, - "NEXT_HTML_REQUEST_ID_HEADER", - ()=>NEXT_HTML_REQUEST_ID_HEADER, - "NEXT_IS_PRERENDER_HEADER", - ()=>NEXT_IS_PRERENDER_HEADER, - "NEXT_REQUEST_ID_HEADER", - ()=>NEXT_REQUEST_ID_HEADER, - "NEXT_REWRITTEN_PATH_HEADER", - ()=>NEXT_REWRITTEN_PATH_HEADER, - "NEXT_REWRITTEN_QUERY_HEADER", - ()=>NEXT_REWRITTEN_QUERY_HEADER, - "NEXT_ROUTER_PREFETCH_HEADER", - ()=>NEXT_ROUTER_PREFETCH_HEADER, - "NEXT_ROUTER_SEGMENT_PREFETCH_HEADER", - ()=>NEXT_ROUTER_SEGMENT_PREFETCH_HEADER, - "NEXT_ROUTER_STALE_TIME_HEADER", - ()=>NEXT_ROUTER_STALE_TIME_HEADER, - "NEXT_ROUTER_STATE_TREE_HEADER", - ()=>NEXT_ROUTER_STATE_TREE_HEADER, - "NEXT_RSC_UNION_QUERY", - ()=>NEXT_RSC_UNION_QUERY, - "NEXT_URL", - ()=>NEXT_URL, - "RSC_CONTENT_TYPE_HEADER", - ()=>RSC_CONTENT_TYPE_HEADER, - "RSC_HEADER", - ()=>RSC_HEADER -]); -const RSC_HEADER = 'rsc'; -const ACTION_HEADER = 'next-action'; -const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree'; -const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch'; -const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER = 'next-router-segment-prefetch'; -const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh'; -const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__'; -const NEXT_URL = 'next-url'; -const RSC_CONTENT_TYPE_HEADER = 'text/x-component'; -const FLIGHT_HEADERS = [ - RSC_HEADER, - NEXT_ROUTER_STATE_TREE_HEADER, - NEXT_ROUTER_PREFETCH_HEADER, - NEXT_HMR_REFRESH_HEADER, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER -]; -const NEXT_RSC_UNION_QUERY = '_rsc'; -const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time'; -const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed'; -const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path'; -const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query'; -const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender'; -const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found'; -const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id'; -const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id'; -const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated'; //# sourceMappingURL=app-router-headers.js.map -}), -"[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "doesStaticSegmentAppearInURL", - ()=>doesStaticSegmentAppearInURL, - "getCacheKeyForDynamicParam", - ()=>getCacheKeyForDynamicParam, - "getParamValueFromCacheKey", - ()=>getParamValueFromCacheKey, - "getRenderedPathname", - ()=>getRenderedPathname, - "getRenderedSearch", - ()=>getRenderedSearch, - "parseDynamicParamFromURLPart", - ()=>parseDynamicParamFromURLPart, - "urlSearchParamsToParsedUrlQuery", - ()=>urlSearchParamsToParsedUrlQuery, - "urlToUrlWithoutFlightMarker", - ()=>urlToUrlWithoutFlightMarker -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)"); -; -; -; -function getRenderedSearch(response) { - // If the server performed a rewrite, the search params used to render the - // page will be different from the params in the request URL. In this case, - // the response will include a header that gives the rewritten search query. - const rewrittenQuery = response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_REWRITTEN_QUERY_HEADER"]); - if (rewrittenQuery !== null) { - return rewrittenQuery === '' ? '' : '?' + rewrittenQuery; - } - // If the header is not present, there was no rewrite, so we use the search - // query of the response URL. - return urlToUrlWithoutFlightMarker(new URL(response.url)).search; -} -function getRenderedPathname(response) { - // If the server performed a rewrite, the pathname used to render the - // page will be different from the pathname in the request URL. In this case, - // the response will include a header that gives the rewritten pathname. - const rewrittenPath = response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_REWRITTEN_PATH_HEADER"]); - return rewrittenPath ?? urlToUrlWithoutFlightMarker(new URL(response.url)).pathname; -} -function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) { - // This needs to match the behavior in get-dynamic-param.ts. - switch(paramType){ - // Catchalls - case 'c': - { - // Catchalls receive all the remaining URL parts. If there are no - // remaining pathname parts, return an empty array. - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>encodeURIComponent(s)) : []; - } - // Catchall intercepted - case 'ci(..)(..)': - case 'ci(.)': - case 'ci(..)': - case 'ci(...)': - { - const prefix = paramType.length - 2; - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s, i)=>{ - if (i === 0) { - return encodeURIComponent(s.slice(prefix)); - } - return encodeURIComponent(s); - }) : []; - } - // Optional catchalls - case 'oc': - { - // Optional catchalls receive all the remaining URL parts, unless this is - // the end of the pathname, in which case they return null. - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>encodeURIComponent(s)) : null; - } - // Dynamic - case 'd': - { - if (partIndex >= pathnameParts.length) { - // The route tree expected there to be more parts in the URL than there - // actually are. This could happen if the x-nextjs-rewritten-path header - // is incorrectly set, or potentially due to bug in Next.js. TODO: - // Should this be a hard error? During a prefetch, we can just abort. - // During a client navigation, we could trigger a hard refresh. But if - // it happens during initial render, we don't really have any - // recovery options. - return ''; - } - return encodeURIComponent(pathnameParts[partIndex]); - } - // Dynamic intercepted - case 'di(..)(..)': - case 'di(.)': - case 'di(..)': - case 'di(...)': - { - const prefix = paramType.length - 2; - if (partIndex >= pathnameParts.length) { - // The route tree expected there to be more parts in the URL than there - // actually are. This could happen if the x-nextjs-rewritten-path header - // is incorrectly set, or potentially due to bug in Next.js. TODO: - // Should this be a hard error? During a prefetch, we can just abort. - // During a client navigation, we could trigger a hard refresh. But if - // it happens during initial render, we don't really have any - // recovery options. - return ''; - } - return encodeURIComponent(pathnameParts[partIndex].slice(prefix)); - } - default: - paramType; - return ''; - } -} -function doesStaticSegmentAppearInURL(segment) { - // This is not a parameterized segment; however, we need to determine - // whether or not this segment appears in the URL. For example, this route - // groups do not appear in the URL, so they should be skipped. Any other - // special cases must be handled here. - // TODO: Consider encoding this directly into the router tree instead of - // inferring it on the client based on the segment type. Something like - // a `doesAppearInURL` flag in FlightRouterState. - if (segment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"] || // For some reason, the loader tree sometimes includes extra __PAGE__ - // "layouts" when part of a parallel route. But it's not a leaf node. - // Otherwise, we wouldn't need this special case because pages are - // always leaf nodes. - // TODO: Investigate why the loader produces these fake page segments. - segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]) || // Route groups. - segment[0] === '(' && segment.endsWith(')') || segment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"] || segment === '/_not-found') { - return false; - } else { - // All other segment types appear in the URL - return true; - } -} -function getCacheKeyForDynamicParam(paramValue, renderedSearch) { - // This needs to match the logic in get-dynamic-param.ts, until we're able to - // unify the various implementations so that these are always computed on - // the client. - if (typeof paramValue === 'string') { - // TODO: Refactor or remove this helper function to accept a string rather - // than the whole segment type. Also we can probably just append the - // search string instead of turning it into JSON. - const pageSegmentWithSearchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["addSearchParamsIfPageSegment"])(paramValue, Object.fromEntries(new URLSearchParams(renderedSearch))); - return pageSegmentWithSearchParams; - } else if (paramValue === null) { - return ''; - } else { - return paramValue.join('/'); - } -} -function urlToUrlWithoutFlightMarker(url) { - const urlWithoutFlightParameters = new URL(url); - urlWithoutFlightParameters.searchParams.delete(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return urlWithoutFlightParameters; -} -function getParamValueFromCacheKey(paramCacheKey, paramType) { - // Turn the cache key string sent by the server (as part of FlightRouterState) - // into a value that can be passed to `useParams` and client components. - const isCatchAll = paramType === 'c' || paramType === 'oc'; - if (isCatchAll) { - // Catch-all param keys are a concatenation of the path segments. - // See equivalent logic in `getSelectedParams`. - // TODO: We should just pass the array directly, rather than concatenate - // it to a string and then split it back to an array. It needs to be an - // array in some places, like when passing a key React, but we can convert - // it at runtime in those places. - return paramCacheKey.split('/'); - } - return paramCacheKey; -} -function urlSearchParamsToParsedUrlQuery(searchParams) { - // Converts a URLSearchParams object to the same type used by the server when - // creating search params props, i.e. the type returned by Node's - // "querystring" module. - const result = {}; - for (const [key, value] of searchParams.entries()){ - if (result[key] === undefined) { - result[key] = value; - } else if (Array.isArray(result[key])) { - result[key].push(value); - } else { - result[key] = [ - result[key], - value - ]; - } - } - return result; -} //# sourceMappingURL=route-params.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-turbopack-client.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactServerDOMTurbopackClient; //# sourceMappingURL=react-server-dom-turbopack-client.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/router-reducer-types.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ACTION_HMR_REFRESH", - ()=>ACTION_HMR_REFRESH, - "ACTION_NAVIGATE", - ()=>ACTION_NAVIGATE, - "ACTION_REFRESH", - ()=>ACTION_REFRESH, - "ACTION_RESTORE", - ()=>ACTION_RESTORE, - "ACTION_SERVER_ACTION", - ()=>ACTION_SERVER_ACTION, - "ACTION_SERVER_PATCH", - ()=>ACTION_SERVER_PATCH, - "PrefetchKind", - ()=>PrefetchKind -]); -const ACTION_REFRESH = 'refresh'; -const ACTION_NAVIGATE = 'navigate'; -const ACTION_RESTORE = 'restore'; -const ACTION_SERVER_PATCH = 'server-patch'; -const ACTION_HMR_REFRESH = 'hmr-refresh'; -const ACTION_SERVER_ACTION = 'server-action'; -var PrefetchKind = /*#__PURE__*/ function(PrefetchKind) { - PrefetchKind["AUTO"] = "auto"; - PrefetchKind["FULL"] = "full"; - return PrefetchKind; -}({}); //# sourceMappingURL=router-reducer-types.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/is-thenable.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Check to see if a value is Thenable. - * - * @param promise the maybe-thenable value - * @returns true if the value is thenable - */ __turbopack_context__.s([ - "isThenable", - ()=>isThenable -]); -function isThenable(promise) { - return promise !== null && typeof promise === 'object' && 'then' in promise && typeof promise.then === 'function'; -} //# sourceMappingURL=is-thenable.js.map -}), -"[project]/node_modules/next/dist/next-devtools/dev-overlay.shim.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - dispatcher: null, - renderAppDevOverlay: null, - renderPagesDevOverlay: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - dispatcher: function() { - return dispatcher; - }, - renderAppDevOverlay: function() { - return renderAppDevOverlay; - }, - renderPagesDevOverlay: function() { - return renderPagesDevOverlay; - } -}); -function renderAppDevOverlay() { - throw Object.defineProperty(new Error("Next DevTools: Can't render in this environment. This is a bug in Next.js"), "__NEXT_ERROR_CODE", { - value: "E697", - enumerable: false, - configurable: true - }); -} -function renderPagesDevOverlay() { - throw Object.defineProperty(new Error("Next DevTools: Can't render in this environment. This is a bug in Next.js"), "__NEXT_ERROR_CODE", { - value: "E697", - enumerable: false, - configurable: true - }); -} -const dispatcher = new Proxy({}, { - get: (_, prop)=>{ - return ()=>{ - throw Object.defineProperty(new Error(`Next DevTools: Can't dispatch ${String(prop)} in this environment. This is a bug in Next.js`), "__NEXT_ERROR_CODE", { - value: "E698", - enumerable: false, - configurable: true - }); - }; - } -}); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=dev-overlay.shim.js.map -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/use-app-dev-rendering-indicator.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "useAppDevRenderingIndicator", - ()=>useAppDevRenderingIndicator -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/next-devtools/dev-overlay.shim.js [app-ssr] (ecmascript)"); -'use client'; -; -; -const useAppDevRenderingIndicator = ()=>{ - const [isPending, startTransition] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useTransition"])(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useEffect"])(()=>{ - if (isPending) { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].renderingIndicatorShow(); - } else { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].renderingIndicatorHide(); - } - }, [ - isPending - ]); - return startTransition; -}; //# sourceMappingURL=use-app-dev-rendering-indicator.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/use-action-queue.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "dispatchAppRouterAction", - ()=>dispatchAppRouterAction, - "useActionQueue", - ()=>useActionQueue -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/is-thenable.js [app-ssr] (ecmascript)"); -; -; -// The app router state lives outside of React, so we can import the dispatch -// method directly wherever we need it, rather than passing it around via props -// or context. -let dispatch = null; -function dispatchAppRouterAction(action) { - if (dispatch === null) { - throw Object.defineProperty(new Error('Internal Next.js error: Router action dispatched before initialization.'), "__NEXT_ERROR_CODE", { - value: "E668", - enumerable: false, - configurable: true - }); - } - dispatch(action); -} -const __DEV__ = ("TURBOPACK compile-time value", "development") !== 'production'; -const promisesWithDebugInfo = ("TURBOPACK compile-time truthy", 1) ? new WeakMap() : "TURBOPACK unreachable"; -function useActionQueue(actionQueue) { - const [state, setState] = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].useState(actionQueue.state); - // Because of a known issue that requires to decode Flight streams inside the - // render phase, we have to be a bit clever and assign the dispatch method to - // a module-level variable upon initialization. The useState hook in this - // module only exists to synchronize state that lives outside of React. - // Ideally, what we'd do instead is pass the state as a prop to root.render; - // this is conceptually how we're modeling the app router state, despite the - // weird implementation details. - if ("TURBOPACK compile-time truthy", 1) { - const { useAppDevRenderingIndicator } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/next-devtools/userspace/use-app-dev-rendering-indicator.js [app-ssr] (ecmascript)"); - // eslint-disable-next-line react-hooks/rules-of-hooks - const appDevRenderingIndicator = useAppDevRenderingIndicator(); - dispatch = (action)=>{ - appDevRenderingIndicator(()=>{ - actionQueue.dispatch(action, setState); - }); - }; - } else //TURBOPACK unreachable - ; - // When navigating to a non-prefetched route, then App Router state will be - // blocked until the server responds. We need to transfer the `_debugInfo` - // from the underlying Flight response onto the top-level promise that is - // passed to React (via `use`) so that the latency is accurately represented - // in the React DevTools. - const stateWithDebugInfo = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useMemo"])(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isThenable"])(state)) { - // useMemo can't be used to cache a Promise since the memoized value is thrown - // away when we suspend. So we use a WeakMap to cache the Promise with debug info. - let promiseWithDebugInfo = promisesWithDebugInfo.get(state); - if (promiseWithDebugInfo === undefined) { - const debugInfo = []; - promiseWithDebugInfo = Promise.resolve(state).then((asyncState)=>{ - if (asyncState.debugInfo !== null) { - debugInfo.push(...asyncState.debugInfo); - } - return asyncState; - }); - promiseWithDebugInfo._debugInfo = debugInfo; - promisesWithDebugInfo.set(state, promiseWithDebugInfo); - } - return promiseWithDebugInfo; - } - return state; - }, [ - state - ]); - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isThenable"])(stateWithDebugInfo) ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(stateWithDebugInfo) : stateWithDebugInfo; -} //# sourceMappingURL=use-action-queue.js.map -}), -"[project]/node_modules/next/dist/esm/client/app-call-server.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "callServer", - ()=>callServer -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$router$2d$reducer$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/router-reducer-types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$use$2d$action$2d$queue$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/use-action-queue.js [app-ssr] (ecmascript)"); -; -; -; -async function callServer(actionId, actionArgs) { - return new Promise((resolve, reject)=>{ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startTransition"])(()=>{ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$use$2d$action$2d$queue$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatchAppRouterAction"])({ - type: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$router$2d$reducer$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ACTION_SERVER_ACTION"], - actionId, - actionArgs, - resolve, - reject - }); - }); - }); -} //# sourceMappingURL=app-call-server.js.map -}), -"[project]/node_modules/next/dist/esm/client/app-find-source-map-url.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "findSourceMapURL", - ()=>findSourceMapURL -]); -const basePath = ("TURBOPACK compile-time value", "") || ''; -const pathname = `${basePath}/__nextjs_source-map`; -const findSourceMapURL = ("TURBOPACK compile-time truthy", 1) ? function findSourceMapURL(filename) { - if (filename === '') { - return null; - } - if (filename.startsWith(document.location.origin) && filename.includes('/_next/static')) { - // This is a request for a client chunk. This can only happen when - // using Turbopack. In this case, since we control how those source - // maps are generated, we can safely assume that the sourceMappingURL - // is relative to the filename, with an added `.map` extension. The - // browser can just request this file, and it gets served through the - // normal dev server, without the need to route this through - // the `/__nextjs_source-map` dev middleware. - return `${filename}.map`; - } - const url = new URL(pathname, document.location.origin); - url.searchParams.set('filename', filename); - return url.href; -} : "TURBOPACK unreachable"; //# sourceMappingURL=app-find-source-map-url.js.map -}), -"[project]/node_modules/next/dist/esm/client/flight-data-helpers.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createInitialRSCPayloadFromFallbackPrerender", - ()=>createInitialRSCPayloadFromFallbackPrerender, - "getFlightDataPartsFromPath", - ()=>getFlightDataPartsFromPath, - "getNextFlightSegmentPath", - ()=>getNextFlightSegmentPath, - "normalizeFlightData", - ()=>normalizeFlightData, - "prepareFlightRouterStateForRequest", - ()=>prepareFlightRouterStateForRequest -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -; -; -; -function getFlightDataPartsFromPath(flightDataPath) { - // Pick the last 4 items from the `FlightDataPath` to get the [tree, seedData, viewport, isHeadPartial]. - const flightDataPathLength = 4; - // tree, seedData, and head are *always* the last three items in the `FlightDataPath`. - const [tree, seedData, head, isHeadPartial] = flightDataPath.slice(-flightDataPathLength); - // The `FlightSegmentPath` is everything except the last three items. For a root render, it won't be present. - const segmentPath = flightDataPath.slice(0, -flightDataPathLength); - return { - // TODO: Unify these two segment path helpers. We are inconsistently pushing an empty segment ("") - // to the start of the segment path in some places which makes it hard to use solely the segment path. - // Look for "// TODO-APP: remove ''" in the codebase. - pathToSegment: segmentPath.slice(0, -1), - segmentPath, - // if the `FlightDataPath` corresponds with the root, there'll be no segment path, - // in which case we default to ''. - segment: segmentPath[segmentPath.length - 1] ?? '', - tree, - seedData, - head, - isHeadPartial, - isRootRender: flightDataPath.length === flightDataPathLength - }; -} -function createInitialRSCPayloadFromFallbackPrerender(response, fallbackInitialRSCPayload) { - // This is a static fallback page. In order to hydrate the page, we need to - // parse the client params from the URL, but to account for the possibility - // that the page was rewritten, we need to check the response headers - // for x-nextjs-rewritten-path or x-nextjs-rewritten-query headers. Since - // we can't access the headers of the initial document response, the client - // performs a fetch request to the current location. Since it's possible that - // the fetch request will be dynamically rewritten to a different path than - // the initial document, this fetch request delivers _all_ the hydration data - // for the page; it was not inlined into the document, like it normally - // would be. - // - // TODO: Consider treating the case where fetch is rewritten to a different - // path from the document as a special deopt case. We should optimistically - // assume this won't happen, inline the data into the document, and perform - // a minimal request (like a HEAD or range request) to verify that the - // response matches. Tricky to get right because we need to account for - // all the different deployment environments we support, like output: - // "export" mode, where we currently don't assume that custom response - // headers are present. - // Patch the Flight data sent by the server with the correct params parsed - // from the URL + response object. - const renderedPathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedPathname"])(response); - const renderedSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(response); - const canonicalUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(new URL(location.href)); - const originalFlightDataPath = fallbackInitialRSCPayload.f[0]; - const originalFlightRouterState = originalFlightDataPath[0]; - return { - b: fallbackInitialRSCPayload.b, - c: canonicalUrl.split('/'), - q: renderedSearch, - i: fallbackInitialRSCPayload.i, - f: [ - [ - fillInFallbackFlightRouterState(originalFlightRouterState, renderedPathname, renderedSearch), - originalFlightDataPath[1], - originalFlightDataPath[2], - originalFlightDataPath[2] - ] - ], - m: fallbackInitialRSCPayload.m, - G: fallbackInitialRSCPayload.G, - S: fallbackInitialRSCPayload.S - }; -} -function fillInFallbackFlightRouterState(flightRouterState, renderedPathname, renderedSearch) { - const pathnameParts = renderedPathname.split('/').filter((p)=>p !== ''); - const index = 0; - return fillInFallbackFlightRouterStateImpl(flightRouterState, renderedSearch, pathnameParts, index); -} -function fillInFallbackFlightRouterStateImpl(flightRouterState, renderedSearch, pathnameParts, pathnamePartsIndex) { - const originalSegment = flightRouterState[0]; - let newSegment; - let doesAppearInURL; - if (typeof originalSegment === 'string') { - newSegment = originalSegment; - doesAppearInURL = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["doesStaticSegmentAppearInURL"])(originalSegment); - } else { - const paramName = originalSegment[0]; - const paramType = originalSegment[2]; - const paramValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["parseDynamicParamFromURLPart"])(paramType, pathnameParts, pathnamePartsIndex); - const cacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCacheKeyForDynamicParam"])(paramValue, renderedSearch); - newSegment = [ - paramName, - cacheKey, - paramType - ]; - doesAppearInURL = true; - } - // Only increment the index if the segment appears in the URL. If it's a - // "virtual" segment, like a route group, it remains the same. - const childPathnamePartsIndex = doesAppearInURL ? pathnamePartsIndex + 1 : pathnamePartsIndex; - const children = flightRouterState[1]; - const newChildren = {}; - for(let key in children){ - const childFlightRouterState = children[key]; - newChildren[key] = fillInFallbackFlightRouterStateImpl(childFlightRouterState, renderedSearch, pathnameParts, childPathnamePartsIndex); - } - const newState = [ - newSegment, - newChildren, - null, - flightRouterState[3], - flightRouterState[4] - ]; - return newState; -} -function getNextFlightSegmentPath(flightSegmentPath) { - // Since `FlightSegmentPath` is a repeated tuple of `Segment` and `ParallelRouteKey`, we slice off two items - // to get the next segment path. - return flightSegmentPath.slice(2); -} -function normalizeFlightData(flightData) { - // FlightData can be a string when the server didn't respond with a proper flight response, - // or when a redirect happens, to signal to the client that it needs to perform an MPA navigation. - if (typeof flightData === 'string') { - return flightData; - } - return flightData.map((flightDataPath)=>getFlightDataPartsFromPath(flightDataPath)); -} -function prepareFlightRouterStateForRequest(flightRouterState, isHmrRefresh) { - // HMR requests need the complete, unmodified state for proper functionality - if (isHmrRefresh) { - return encodeURIComponent(JSON.stringify(flightRouterState)); - } - return encodeURIComponent(JSON.stringify(stripClientOnlyDataFromFlightRouterState(flightRouterState))); -} -/** - * Recursively strips client-only data from FlightRouterState while preserving - * server-needed information for proper rendering decisions. - */ function stripClientOnlyDataFromFlightRouterState(flightRouterState) { - const [segment, parallelRoutes, _url, refreshMarker, isRootLayout, hasLoadingBoundary] = flightRouterState; - // __PAGE__ segments are always fetched from the server, so there's - // no need to send them up - const cleanedSegment = stripSearchParamsFromPageSegment(segment); - // Recursively process parallel routes - const cleanedParallelRoutes = {}; - for (const [key, childState] of Object.entries(parallelRoutes)){ - cleanedParallelRoutes[key] = stripClientOnlyDataFromFlightRouterState(childState); - } - const result = [ - cleanedSegment, - cleanedParallelRoutes, - null, - shouldPreserveRefreshMarker(refreshMarker) ? refreshMarker : null - ]; - // Append optional fields if present - if (isRootLayout !== undefined) { - result[4] = isRootLayout; - } - if (hasLoadingBoundary !== undefined) { - result[5] = hasLoadingBoundary; - } - return result; -} -/** - * Strips search parameters from __PAGE__ segments to prevent sensitive - * client-side data from being sent to the server. - */ function stripSearchParamsFromPageSegment(segment) { - if (typeof segment === 'string' && segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"] + '?')) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - } - return segment; -} -/** - * Determines whether the refresh marker should be sent to the server - * Client-only markers like 'refresh' are stripped, while server-needed markers - * like 'refetch' and 'inside-shared-layout' are preserved. - */ function shouldPreserveRefreshMarker(refreshMarker) { - return Boolean(refreshMarker && refreshMarker !== 'refresh'); -} //# sourceMappingURL=flight-data-helpers.js.map -}), -"[project]/node_modules/next/dist/esm/client/app-build-id.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getAppBuildId", - ()=>getAppBuildId, - "setAppBuildId", - ()=>setAppBuildId -]); -// This gets assigned as a side-effect during app initialization. Because it -// represents the build used to create the JS bundle, it should never change -// after being set, so we store it in a global variable. -// -// When performing RSC requests, if the incoming data has a different build ID, -// we perform an MPA navigation/refresh to load the updated build and ensure -// that the client and server in sync. -// Starts as an empty string. In practice, because setAppBuildId is called -// during initialization before hydration starts, this will always get -// reassigned to the actual build ID before it's ever needed by a navigation. -// If for some reasons it didn't, due to a bug or race condition, then on -// navigation the build comparision would fail and trigger an MPA navigation. -let globalBuildId = ''; -function setAppBuildId(buildId) { - globalBuildId = buildId; -} -function getAppBuildId() { - return globalBuildId; -} //# sourceMappingURL=app-build-id.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/hash.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// http://www.cse.yorku.ca/~oz/hash.html -// More specifically, 32-bit hash via djbxor -// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765) -// This is due to number type differences between rust for turbopack to js number types, -// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching -// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation -// as can gaurantee determinstic output from 32bit hash. -__turbopack_context__.s([ - "djb2Hash", - ()=>djb2Hash, - "hexHash", - ()=>hexHash -]); -function djb2Hash(str) { - let hash = 5381; - for(let i = 0; i < str.length; i++){ - const char = str.charCodeAt(i); - hash = (hash << 5) + hash + char & 0xffffffff; - } - return hash >>> 0; -} -function hexHash(str) { - return djb2Hash(str).toString(36).slice(0, 5); -} //# sourceMappingURL=hash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "computeCacheBustingSearchParam", - ()=>computeCacheBustingSearchParam -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$hash$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/hash.js [app-ssr] (ecmascript)"); -; -function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) { - if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) { - return ''; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$hash$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["hexHash"])([ - prefetchHeader || '0', - segmentPrefetchHeader || '0', - stateTreeHeader || '0', - nextUrlHeader || '0' - ].join(',')); -} //# sourceMappingURL=cache-busting-search-param.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/set-cache-busting-search-param.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "setCacheBustingSearchParam", - ()=>setCacheBustingSearchParam, - "setCacheBustingSearchParamWithHash", - ()=>setCacheBustingSearchParamWithHash -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)"); -'use client'; -; -; -const setCacheBustingSearchParam = (url, headers)=>{ - const uniqueCacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["computeCacheBustingSearchParam"])(headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]], headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_SEGMENT_PREFETCH_HEADER"]], headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STATE_TREE_HEADER"]], headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]]); - setCacheBustingSearchParamWithHash(url, uniqueCacheKey); -}; -const setCacheBustingSearchParamWithHash = (url, hash)=>{ - /** - * Note that we intentionally do not use `url.searchParams.set` here: - * - * const url = new URL('https://example.com/search?q=custom%20spacing'); - * url.searchParams.set('_rsc', 'abc123'); - * console.log(url.toString()); // Outputs: https://example.com/search?q=custom+spacing&_rsc=abc123 - * ^ <--- this is causing confusion - * This is in fact intended based on https://url.spec.whatwg.org/#interface-urlsearchparams, but - * we want to preserve the %20 as %20 if that's what the user passed in, hence the custom - * logic below. - */ const existingSearch = url.search; - const rawQuery = existingSearch.startsWith('?') ? existingSearch.slice(1) : existingSearch; - // Always remove any existing cache busting param and add a fresh one to ensure - // we have the correct value based on current request headers - const pairs = rawQuery.split('&').filter((pair)=>pair && !pair.startsWith(`${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]}=`)); - if (hash.length > 0) { - pairs.push(`${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]}=${hash}`); - } else { - pairs.push(`${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]}`); - } - url.search = pairs.length ? `?${pairs.join('&')}` : ''; -}; //# sourceMappingURL=set-cache-busting-search-param.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/deployment-id.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// This could also be a variable instead of a function, but some unit tests want to change the ID at -// runtime. Even though that would never happen in a real deployment. -__turbopack_context__.s([ - "getDeploymentId", - ()=>getDeploymentId, - "getDeploymentIdQueryOrEmptyString", - ()=>getDeploymentIdQueryOrEmptyString -]); -function getDeploymentId() { - return "TURBOPACK compile-time value", false; -} -function getDeploymentIdQueryOrEmptyString() { - let deploymentId = getDeploymentId(); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return ''; -} //# sourceMappingURL=deployment-id.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createFetch", - ()=>createFetch, - "createFromNextReadableStream", - ()=>createFromNextReadableStream, - "fetchServerResponse", - ()=>fetchServerResponse -]); -// TODO: Explicitly import from client.browser -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$server$2d$dom$2d$turbopack$2d$client$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-turbopack-client.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$call$2d$server$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/app-call-server.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$find$2d$source$2d$map$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/app-find-source-map-url.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/flight-data-helpers.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/app-build-id.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$set$2d$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/set-cache-busting-search-param.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$deployment$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/deployment-id.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -; -; -; -; -const createFromReadableStream = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$server$2d$dom$2d$turbopack$2d$client$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromReadableStream"]; -const createFromFetch = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$server$2d$dom$2d$turbopack$2d$client$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromFetch"]; -let createDebugChannel; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -function doMpaNavigation(url) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["urlToUrlWithoutFlightMarker"])(new URL(url, location.origin)).toString(); -} -let isPageUnloading = false; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -async function fetchServerResponse(url, options) { - const { flightRouterState, nextUrl } = options; - const headers = { - // Enable flight response - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_HEADER"]]: '1', - // Provide the current router state - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STATE_TREE_HEADER"]]: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["prepareFlightRouterStateForRequest"])(flightRouterState, options.isHmrRefresh) - }; - if (("TURBOPACK compile-time value", "development") === 'development' && options.isHmrRefresh) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_HMR_REFRESH_HEADER"]] = '1'; - } - if (nextUrl) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]] = nextUrl; - } - // In static export mode, we need to modify the URL to request the .txt file, - // but we should preserve the original URL for the canonical URL and error handling. - const originalUrl = url; - try { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Typically, during a navigation, we decode the response using Flight's - // `createFromFetch` API, which accepts a `fetch` promise. - // TODO: Remove this check once the old PPR flag is removed - const isLegacyPPR = ("TURBOPACK compile-time value", false) && !("TURBOPACK compile-time value", false); - const shouldImmediatelyDecode = !isLegacyPPR; - const res = await createFetch(url, headers, 'auto', shouldImmediatelyDecode); - const responseUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["urlToUrlWithoutFlightMarker"])(new URL(res.url)); - const canonicalUrl = res.redirected ? responseUrl : originalUrl; - const contentType = res.headers.get('content-type') || ''; - const interception = !!res.headers.get('vary')?.includes(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]); - const postponed = !!res.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"]); - const staleTimeHeaderSeconds = res.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STALE_TIME_HEADER"]); - const staleTime = staleTimeHeaderSeconds !== null ? parseInt(staleTimeHeaderSeconds, 10) * 1000 : -1; - let isFlightResponse = contentType.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // If fetch returns something different than flight response handle it like a mpa navigation - // If the fetch was not 200, we also handle it like a mpa navigation - if (!isFlightResponse || !res.ok || !res.body) { - // in case the original URL came with a hash, preserve it before redirecting to the new URL - if (url.hash) { - responseUrl.hash = url.hash; - } - return doMpaNavigation(responseUrl.toString()); - } - // We may navigate to a page that requires a different Webpack runtime. - // In prod, every page will have the same Webpack runtime. - // In dev, the Webpack runtime is minimal for each page. - // We need to ensure the Webpack runtime is updated before executing client-side JS of the new page. - // TODO: This needs to happen in the Flight Client. - // Or Webpack needs to include the runtime update in the Flight response as - // a blocking script. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - let flightResponsePromise = res.flightResponse; - if (flightResponsePromise === null) { - // Typically, `createFetch` would have already started decoding the - // Flight response. If it hasn't, though, we need to decode it now. - // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR - // without Cache Components). Remove this branch once legacy PPR - // is deleted. - const flightStream = postponed ? createUnclosingPrefetchStream(res.body) : res.body; - flightResponsePromise = createFromNextReadableStream(flightStream, headers); - } - const flightResponse = await flightResponsePromise; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])() !== flightResponse.b) { - return doMpaNavigation(res.url); - } - const normalizedFlightData = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeFlightData"])(flightResponse.f); - if (typeof normalizedFlightData === 'string') { - return doMpaNavigation(normalizedFlightData); - } - return { - flightData: normalizedFlightData, - canonicalUrl: canonicalUrl, - renderedSearch: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(res), - couldBeIntercepted: interception, - prerendered: flightResponse.S, - postponed, - staleTime, - debugInfo: flightResponsePromise._debugInfo ?? null - }; - } catch (err) { - if (!isPageUnloading) { - console.error(`Failed to fetch RSC payload for ${originalUrl}. Falling back to browser navigation.`, err); - } - // If fetch fails handle it like a mpa navigation - // TODO-APP: Add a test for the case where a CORS request fails, e.g. external url redirect coming from the response. - // See https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521 for a reproduction. - return originalUrl.toString(); - } -} -async function createFetch(url, headers, fetchPriority, shouldImmediatelyDecode, signal) { - // TODO: In output: "export" mode, the headers do nothing. Omit them (and the - // cache busting search param) from the request so they're - // maximally cacheable. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - const deploymentId = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$deployment$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getDeploymentId"])(); - if (deploymentId) { - headers['x-deployment-id'] = deploymentId; - } - if ("TURBOPACK compile-time truthy", 1) { - if (self.__next_r) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_HTML_REQUEST_ID_HEADER"]] = self.__next_r; - } - // Create a new request ID for the server action request. The server uses - // this to tag debug information sent via WebSocket to the client, which - // then routes those chunks to the debug channel associated with this ID. - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_REQUEST_ID_HEADER"]] = crypto.getRandomValues(new Uint32Array(1))[0].toString(16); - } - const fetchOptions = { - // Backwards compat for older browsers. `same-origin` is the default in modern browsers. - credentials: 'same-origin', - headers, - priority: fetchPriority || undefined, - signal - }; - // `fetchUrl` is slightly different from `url` because we add a cache-busting - // search param to it. This should not leak outside of this function, so we - // track them separately. - let fetchUrl = new URL(url); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$set$2d$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setCacheBustingSearchParam"])(fetchUrl, headers); - let fetchPromise = fetch(fetchUrl, fetchOptions); - // Immediately pass the fetch promise to the Flight client so that the debug - // info includes the latency from the client to the server. The internal timer - // in React starts as soon as `createFromFetch` is called. - // - // The only case where we don't do this is during a prefetch, because we have - // to do some extra processing of the response stream (see - // `createUnclosingPrefetchStream`). But this is fine, because a top-level - // prefetch response never blocks a navigation; if it hasn't already been - // written into the cache by the time the navigation happens, the router will - // go straight to a dynamic request. - let flightResponsePromise = shouldImmediatelyDecode ? createFromNextFetch(fetchPromise, headers) : null; - let browserResponse = await fetchPromise; - // If the server responds with a redirect (e.g. 307), and the redirected - // location does not contain the cache busting search param set in the - // original request, the response is likely invalid — when following the - // redirect, the browser forwards the request headers, but since the cache - // busting search param is missing, the server will reject the request due to - // a mismatch. - // - // Ideally, we would be able to intercept the redirect response and perform it - // manually, instead of letting the browser automatically follow it, but this - // is not allowed by the fetch API. - // - // So instead, we must "replay" the redirect by fetching the new location - // again, but this time we'll append the cache busting search param to prevent - // a mismatch. - // - // TODO: We can optimize Next.js's built-in middleware APIs by returning a - // custom status code, to prevent the browser from automatically following it. - // - // This does not affect Server Action-based redirects; those are encoded - // differently, as part of the Flight body. It only affects redirects that - // occur in a middleware or a third-party proxy. - let redirected = browserResponse.redirected; - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Remove the cache busting search param from the response URL, to prevent it - // from leaking outside of this function. - const responseUrl = new URL(browserResponse.url, fetchUrl); - responseUrl.searchParams.delete(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]); - const rscResponse = { - url: responseUrl.href, - // This is true if any redirects occurred, either automatically by the - // browser, or manually by us. So it's different from - // `browserResponse.redirected`, which only tells us whether the browser - // followed a redirect, and only for the last response in the chain. - redirected, - // These can be copied from the last browser response we received. We - // intentionally only expose the subset of fields that are actually used - // elsewhere in the codebase. - ok: browserResponse.ok, - headers: browserResponse.headers, - body: browserResponse.body, - status: browserResponse.status, - // This is the exact promise returned by `createFromFetch`. It contains - // debug information that we need to transfer to any derived promises that - // are later rendered by React. - flightResponse: flightResponsePromise - }; - return rscResponse; -} -function createFromNextReadableStream(flightStream, requestHeaders) { - return createFromReadableStream(flightStream, { - callServer: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$call$2d$server$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["callServer"], - findSourceMapURL: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$find$2d$source$2d$map$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["findSourceMapURL"], - debugChannel: createDebugChannel && createDebugChannel(requestHeaders) - }); -} -function createFromNextFetch(promiseForResponse, requestHeaders) { - return createFromFetch(promiseForResponse, { - callServer: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$call$2d$server$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["callServer"], - findSourceMapURL: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$find$2d$source$2d$map$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["findSourceMapURL"], - debugChannel: createDebugChannel && createDebugChannel(requestHeaders) - }); -} -function createUnclosingPrefetchStream(originalFlightStream) { - // When PPR is enabled, prefetch streams may contain references that never - // resolve, because that's how we encode dynamic data access. In the decoded - // object returned by the Flight client, these are reified into hanging - // promises that suspend during render, which is effectively what we want. - // The UI resolves when it switches to the dynamic data stream - // (via useDeferredValue(dynamic, static)). - // - // However, the Flight implementation currently errors if the server closes - // the response before all the references are resolved. As a cheat to work - // around this, we wrap the original stream in a new stream that never closes, - // and therefore doesn't error. - const reader = originalFlightStream.getReader(); - return new ReadableStream({ - async pull (controller) { - while(true){ - const { done, value } = await reader.read(); - if (!done) { - // Pass to the target stream and keep consuming the Flight response - // from the server. - controller.enqueue(value); - continue; - } - // The server stream has closed. Exit, but intentionally do not close - // the target stream. - return; - } - } - }); -} //# sourceMappingURL=fetch-server-response.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/is-navigating-to-new-root-layout.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isNavigatingToNewRootLayout", - ()=>isNavigatingToNewRootLayout -]); -function isNavigatingToNewRootLayout(currentTree, nextTree) { - // Compare segments - const currentTreeSegment = currentTree[0]; - const nextTreeSegment = nextTree[0]; - // If any segment is different before we find the root layout, the root layout has changed. - // E.g. /same/(group1)/layout.js -> /same/(group2)/layout.js - // First segment is 'same' for both, keep looking. (group1) changed to (group2) before the root layout was found, it must have changed. - if (Array.isArray(currentTreeSegment) && Array.isArray(nextTreeSegment)) { - // Compare dynamic param name and type but ignore the value, different values would not affect the current root layout - // /[name] - /slug1 and /slug2, both values (slug1 & slug2) still has the same layout /[name]/layout.js - if (currentTreeSegment[0] !== nextTreeSegment[0] || currentTreeSegment[2] !== nextTreeSegment[2]) { - return true; - } - } else if (currentTreeSegment !== nextTreeSegment) { - return true; - } - // Current tree root layout found - if (currentTree[4]) { - // If the next tree doesn't have the root layout flag, it must have changed. - return !nextTree[4]; - } - // Current tree didn't have its root layout here, must have changed. - if (nextTree[4]) { - return true; - } - // We can't assume it's `parallelRoutes.children` here in case the root layout is `app/@something/layout.js` - // But it's not possible to be more than one parallelRoutes before the root layout is found - // TODO-APP: change to traverse all parallel routes - const currentTreeChild = Object.values(currentTree[1])[0]; - const nextTreeChild = Object.values(nextTree[1])[0]; - if (!currentTreeChild || !nextTreeChild) return true; - return isNavigatingToNewRootLayout(currentTreeChild, nextTreeChild); -} //# sourceMappingURL=is-navigating-to-new-root-layout.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "INTERCEPTION_ROUTE_MARKERS", - ()=>INTERCEPTION_ROUTE_MARKERS, - "extractInterceptionRouteInformation", - ()=>extractInterceptionRouteInformation, - "isInterceptionRouteAppPath", - ()=>isInterceptionRouteAppPath -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-ssr] (ecmascript)"); -; -const INTERCEPTION_ROUTE_MARKERS = [ - '(..)(..)', - '(.)', - '(..)', - '(...)' -]; -function isInterceptionRouteAppPath(path) { - // TODO-APP: add more serious validation - return path.split('/').find((segment)=>INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m))) !== undefined; -} -function extractInterceptionRouteInformation(path) { - let interceptingRoute; - let marker; - let interceptedRoute; - for (const segment of path.split('/')){ - marker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - ; - [interceptingRoute, interceptedRoute] = path.split(marker, 2); - break; - } - } - if (!interceptingRoute || !marker || !interceptedRoute) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`), "__NEXT_ERROR_CODE", { - value: "E269", - enumerable: false, - configurable: true - }); - } - interceptingRoute = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeAppPath"])(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed - ; - switch(marker){ - case '(.)': - // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route - if (interceptingRoute === '/') { - interceptedRoute = `/${interceptedRoute}`; - } else { - interceptedRoute = interceptingRoute + '/' + interceptedRoute; - } - break; - case '(..)': - // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route - if (interceptingRoute === '/') { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`), "__NEXT_ERROR_CODE", { - value: "E207", - enumerable: false, - configurable: true - }); - } - interceptedRoute = interceptingRoute.split('/').slice(0, -1).concat(interceptedRoute).join('/'); - break; - case '(...)': - // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route - interceptedRoute = '/' + interceptedRoute; - break; - case '(..)(..)': - // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route - const splitInterceptingRoute = interceptingRoute.split('/'); - if (splitInterceptingRoute.length <= 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`), "__NEXT_ERROR_CODE", { - value: "E486", - enumerable: false, - configurable: true - }); - } - interceptedRoute = splitInterceptingRoute.slice(0, -2).concat(interceptedRoute).join('/'); - break; - default: - throw Object.defineProperty(new Error('Invariant: unexpected marker'), "__NEXT_ERROR_CODE", { - value: "E112", - enumerable: false, - configurable: true - }); - } - return { - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=interception-routes.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/compute-changed-path.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "computeChangedPath", - ()=>computeChangedPath, - "extractPathFromFlightRouterState", - ()=>extractPathFromFlightRouterState, - "getSelectedParams", - ()=>getSelectedParams -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)"); -; -; -; -const removeLeadingSlash = (segment)=>{ - return segment[0] === '/' ? segment.slice(1) : segment; -}; -const segmentToPathname = (segment)=>{ - if (typeof segment === 'string') { - // 'children' is not a valid path -- it's technically a parallel route that corresponds with the current segment's page - // if we don't skip it, then the computed pathname might be something like `/children` which doesn't make sense. - if (segment === 'children') return ''; - return segment; - } - return segment[1]; -}; -function normalizeSegments(segments) { - return segments.reduce((acc, segment)=>{ - segment = removeLeadingSlash(segment); - if (segment === '' || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isGroupSegment"])(segment)) { - return acc; - } - return `${acc}/${segment}`; - }, '') || '/'; -} -function extractPathFromFlightRouterState(flightRouterState) { - const segment = Array.isArray(flightRouterState[0]) ? flightRouterState[0][1] : flightRouterState[0]; - if (segment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"] || __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["INTERCEPTION_ROUTE_MARKERS"].some((m)=>segment.startsWith(m))) return undefined; - if (segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) return ''; - const segments = [ - segmentToPathname(segment) - ]; - const parallelRoutes = flightRouterState[1] ?? {}; - const childrenPath = parallelRoutes.children ? extractPathFromFlightRouterState(parallelRoutes.children) : undefined; - if (childrenPath !== undefined) { - segments.push(childrenPath); - } else { - for (const [key, value] of Object.entries(parallelRoutes)){ - if (key === 'children') continue; - const childPath = extractPathFromFlightRouterState(value); - if (childPath !== undefined) { - segments.push(childPath); - } - } - } - return normalizeSegments(segments); -} -function computeChangedPathImpl(treeA, treeB) { - const [segmentA, parallelRoutesA] = treeA; - const [segmentB, parallelRoutesB] = treeB; - const normalizedSegmentA = segmentToPathname(segmentA); - const normalizedSegmentB = segmentToPathname(segmentB); - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["INTERCEPTION_ROUTE_MARKERS"].some((m)=>normalizedSegmentA.startsWith(m) || normalizedSegmentB.startsWith(m))) { - return ''; - } - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(segmentA, segmentB)) { - // once we find where the tree changed, we compute the rest of the path by traversing the tree - return extractPathFromFlightRouterState(treeB) ?? ''; - } - for(const parallelRouterKey in parallelRoutesA){ - if (parallelRoutesB[parallelRouterKey]) { - const changedPath = computeChangedPathImpl(parallelRoutesA[parallelRouterKey], parallelRoutesB[parallelRouterKey]); - if (changedPath !== null) { - return `${segmentToPathname(segmentB)}/${changedPath}`; - } - } - } - return null; -} -function computeChangedPath(treeA, treeB) { - const changedPath = computeChangedPathImpl(treeA, treeB); - if (changedPath == null || changedPath === '/') { - return changedPath; - } - // lightweight normalization to remove route groups - return normalizeSegments(changedPath.split('/')); -} -function getSelectedParams(currentTree, params = {}) { - const parallelRoutes = currentTree[1]; - for (const parallelRoute of Object.values(parallelRoutes)){ - const segment = parallelRoute[0]; - const isDynamicParameter = Array.isArray(segment); - const segmentValue = isDynamicParameter ? segment[1] : segment; - if (!segmentValue || segmentValue.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) continue; - // Ensure catchAll and optional catchall are turned into an array - const isCatchAll = isDynamicParameter && (segment[2] === 'c' || segment[2] === 'oc'); - if (isCatchAll) { - params[segment[0]] = segment[1].split('/'); - } else if (isDynamicParameter) { - params[segment[0]] = segment[1]; - } - params = getSelectedParams(parallelRoute, params); - } - return params; -} //# sourceMappingURL=compute-changed-path.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/handle-mutable.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "handleMutable", - ()=>handleMutable -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$compute$2d$changed$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/compute-changed-path.js [app-ssr] (ecmascript)"); -; -function isNotUndefined(value) { - return typeof value !== 'undefined'; -} -function handleMutable(state, mutable) { - // shouldScroll is true by default, can override to false. - const shouldScroll = mutable.shouldScroll ?? true; - let previousNextUrl = state.previousNextUrl; - let nextUrl = state.nextUrl; - if (isNotUndefined(mutable.patchedTree)) { - // If we received a patched tree, we need to compute the changed path. - const changedPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$compute$2d$changed$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["computeChangedPath"])(state.tree, mutable.patchedTree); - if (changedPath) { - // If the tree changed, we need to update the nextUrl - previousNextUrl = nextUrl; - nextUrl = changedPath; - } else if (!nextUrl) { - // if the tree ends up being the same (ie, no changed path), and we don't have a nextUrl, then we should use the canonicalUrl - nextUrl = state.canonicalUrl; - } - // otherwise this will be a no-op and continue to use the existing nextUrl - } - return { - // Set href. - canonicalUrl: mutable.canonicalUrl ?? state.canonicalUrl, - renderedSearch: mutable.renderedSearch ?? state.renderedSearch, - pushRef: { - pendingPush: isNotUndefined(mutable.pendingPush) ? mutable.pendingPush : state.pushRef.pendingPush, - mpaNavigation: isNotUndefined(mutable.mpaNavigation) ? mutable.mpaNavigation : state.pushRef.mpaNavigation, - preserveCustomHistoryState: isNotUndefined(mutable.preserveCustomHistoryState) ? mutable.preserveCustomHistoryState : state.pushRef.preserveCustomHistoryState - }, - // All navigation requires scroll and focus management to trigger. - focusAndScrollRef: { - apply: shouldScroll ? isNotUndefined(mutable?.scrollableSegments) ? true : state.focusAndScrollRef.apply : false, - onlyHashChange: mutable.onlyHashChange || false, - hashFragment: shouldScroll ? mutable.hashFragment && mutable.hashFragment !== '' ? decodeURIComponent(mutable.hashFragment.slice(1)) : state.focusAndScrollRef.hashFragment : null, - segmentPaths: shouldScroll ? mutable?.scrollableSegments ?? state.focusAndScrollRef.segmentPaths : [] - }, - // Apply cache. - cache: mutable.cache ? mutable.cache : state.cache, - // Apply patched router state. - tree: isNotUndefined(mutable.patchedTree) ? mutable.patchedTree : state.tree, - nextUrl, - previousNextUrl: previousNextUrl, - debugInfo: mutable.collectedDebugInfo ?? null - }; -} //# sourceMappingURL=handle-mutable.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/app-router-types.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * App Router types - Client-safe types for the Next.js App Router - * - * This file contains type definitions that can be safely imported - * by both client-side and server-side code without circular dependencies. - */ __turbopack_context__.s([ - "HasLoadingBoundary", - ()=>HasLoadingBoundary -]); -var HasLoadingBoundary = /*#__PURE__*/ function(HasLoadingBoundary) { - // There is a loading boundary in this particular segment - HasLoadingBoundary[HasLoadingBoundary["SegmentHasLoadingBoundary"] = 1] = "SegmentHasLoadingBoundary"; - // There is a loading boundary somewhere in the subtree (but not in - // this segment) - HasLoadingBoundary[HasLoadingBoundary["SubtreeHasLoadingBoundary"] = 2] = "SubtreeHasLoadingBoundary"; - // There is no loading boundary in this segment or any of its descendants - HasLoadingBoundary[HasLoadingBoundary["SubtreeHasNoLoadingBoundary"] = 3] = "SubtreeHasNoLoadingBoundary"; - return HasLoadingBoundary; -}({}); //# sourceMappingURL=app-router-types.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Shared types and constants for the Segment Cache. - */ __turbopack_context__.s([ - "FetchStrategy", - ()=>FetchStrategy, - "NavigationResultTag", - ()=>NavigationResultTag, - "PrefetchPriority", - ()=>PrefetchPriority -]); -var NavigationResultTag = /*#__PURE__*/ function(NavigationResultTag) { - NavigationResultTag[NavigationResultTag["MPA"] = 0] = "MPA"; - NavigationResultTag[NavigationResultTag["Success"] = 1] = "Success"; - NavigationResultTag[NavigationResultTag["NoOp"] = 2] = "NoOp"; - NavigationResultTag[NavigationResultTag["Async"] = 3] = "Async"; - return NavigationResultTag; -}({}); -var PrefetchPriority = /*#__PURE__*/ function(PrefetchPriority) { - /** - * Assigned to the most recently hovered/touched link. Special network - * bandwidth is reserved for this task only. There's only ever one Intent- - * priority task at a time; when a new Intent task is scheduled, the previous - * one is bumped down to Default. - */ PrefetchPriority[PrefetchPriority["Intent"] = 2] = "Intent"; - /** - * The default priority for prefetch tasks. - */ PrefetchPriority[PrefetchPriority["Default"] = 1] = "Default"; - /** - * Assigned to tasks when they spawn non-blocking background work, like - * revalidating a partially cached entry to see if more data is available. - */ PrefetchPriority[PrefetchPriority["Background"] = 0] = "Background"; - return PrefetchPriority; -}({}); -var FetchStrategy = /*#__PURE__*/ function(FetchStrategy) { - // Deliberately ordered so we can easily compare two segments - // and determine if one segment is "more specific" than another - // (i.e. if it's likely that it contains more data) - FetchStrategy[FetchStrategy["LoadingBoundary"] = 0] = "LoadingBoundary"; - FetchStrategy[FetchStrategy["PPR"] = 1] = "PPR"; - FetchStrategy[FetchStrategy["PPRRuntime"] = 2] = "PPRRuntime"; - FetchStrategy[FetchStrategy["Full"] = 3] = "Full"; - return FetchStrategy; -}({}); //# sourceMappingURL=types.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/lru.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "deleteFromLru", - ()=>deleteFromLru, - "lruPut", - ()=>lruPut, - "updateLruSize", - ()=>updateLruSize -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-map.js [app-ssr] (ecmascript)"); -; -// We use an LRU for memory management. We must update this whenever we add or -// remove a new cache entry, or when an entry changes size. -let head = null; -let didScheduleCleanup = false; -let lruSize = 0; -// TODO: I chose the max size somewhat arbitrarily. Consider setting this based -// on navigator.deviceMemory, or some other heuristic. We should make this -// customizable via the Next.js config, too. -const maxLruSize = 50 * 1024 * 1024 // 50 MB -; -function lruPut(node) { - if (head === node) { - // Already at the head - return; - } - const prev = node.prev; - const next = node.next; - if (next === null || prev === null) { - // This is an insertion - lruSize += node.size; - // Whenever we add an entry, we need to check if we've exceeded the - // max size. We don't evict entries immediately; they're evicted later in - // an asynchronous task. - ensureCleanupIsScheduled(); - } else { - // This is a move. Remove from its current position. - prev.next = next; - next.prev = prev; - } - // Move to the front of the list - if (head === null) { - // This is the first entry - node.prev = node; - node.next = node; - } else { - // Add to the front of the list - const tail = head.prev; - node.prev = tail; - // In practice, this is never null, but that isn't encoded in the type - if (tail !== null) { - tail.next = node; - } - node.next = head; - head.prev = node; - } - head = node; -} -function updateLruSize(node, newNodeSize) { - // This is a separate function from `put` so that we can resize the entry - // regardless of whether it's currently being tracked by the LRU. - const prevNodeSize = node.size; - node.size = newNodeSize; - if (node.next === null) { - // This entry is not currently being tracked by the LRU. - return; - } - // Update the total LRU size - lruSize = lruSize - prevNodeSize + newNodeSize; - ensureCleanupIsScheduled(); -} -function deleteFromLru(deleted) { - const next = deleted.next; - const prev = deleted.prev; - if (next !== null && prev !== null) { - lruSize -= deleted.size; - deleted.next = null; - deleted.prev = null; - // Remove from the list - if (head === deleted) { - // Update the head - if (next === head) { - // This was the last entry - head = null; - } else { - head = next; - prev.next = next; - next.prev = prev; - } - } else { - prev.next = next; - next.prev = prev; - } - } else { - // Already deleted - } -} -function ensureCleanupIsScheduled() { - if (didScheduleCleanup || lruSize <= maxLruSize) { - return; - } - didScheduleCleanup = true; - requestCleanupCallback(cleanup); -} -function cleanup() { - didScheduleCleanup = false; - // Evict entries until we're at 90% capacity. We can assume this won't - // infinite loop because even if `maxLruSize` were 0, eventually - // `deleteFromLru` sets `head` to `null` when we run out entries. - const ninetyPercentMax = maxLruSize * 0.9; - while(lruSize > ninetyPercentMax && head !== null){ - const tail = head.prev; - // In practice, this is never null, but that isn't encoded in the type - if (tail !== null) { - // Delete the entry from the map. In turn, this will remove it from - // the LRU. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["deleteMapEntry"])(tail); - } - } -} -const requestCleanupCallback = typeof requestIdleCallback === 'function' ? requestIdleCallback : (cb)=>setTimeout(cb, 0); //# sourceMappingURL=lru.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-map.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Fallback", - ()=>Fallback, - "createCacheMap", - ()=>createCacheMap, - "deleteFromCacheMap", - ()=>deleteFromCacheMap, - "deleteMapEntry", - ()=>deleteMapEntry, - "getFromCacheMap", - ()=>getFromCacheMap, - "isValueExpired", - ()=>isValueExpired, - "setInCacheMap", - ()=>setInCacheMap, - "setSizeInCacheMap", - ()=>setSizeInCacheMap -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/lru.js [app-ssr] (ecmascript)"); -; -const Fallback = {}; -// This is a special internal key that is used for "revalidation" entries. It's -// an implementation detail that shouldn't leak outside of this module. -const Revalidation = {}; -function createCacheMap() { - const cacheMap = { - parent: null, - key: null, - value: null, - map: null, - // LRU-related fields - prev: null, - next: null, - size: 0 - }; - return cacheMap; -} -function getOrInitialize(cacheMap, keys, isRevalidation) { - // Go through each level of keys until we find the entry that matches, or - // create a new entry if one doesn't exist. - // - // This function will only return entries that match the keypath _exactly_. - // Unlike getWithFallback, it will not access fallback entries unless it's - // explicitly part of the keypath. - let entry = cacheMap; - let remainingKeys = keys; - let key = null; - while(true){ - const previousKey = key; - if (remainingKeys !== null) { - key = remainingKeys.value; - remainingKeys = remainingKeys.parent; - } else if (isRevalidation && previousKey !== Revalidation) { - // During a revalidation, we append an internal "Revalidation" key to - // the end of the keypath. The "normal" entry is its parent. - // However, if the parent entry is currently empty, we don't need to store - // this as a revalidation entry. Just insert the revalidation into the - // normal slot. - if (entry.value === null) { - return entry; - } - // Otheriwse, create a child entry. - key = Revalidation; - } else { - break; - } - let map = entry.map; - if (map !== null) { - const existingEntry = map.get(key); - if (existingEntry !== undefined) { - // Found a match. Keep going. - entry = existingEntry; - continue; - } - } else { - map = new Map(); - entry.map = map; - } - // No entry exists yet at this level. Create a new one. - const newEntry = { - parent: entry, - key, - value: null, - map: null, - // LRU-related fields - prev: null, - next: null, - size: 0 - }; - map.set(key, newEntry); - entry = newEntry; - } - return entry; -} -function getFromCacheMap(now, currentCacheVersion, rootEntry, keys, isRevalidation) { - const entry = getEntryWithFallbackImpl(now, currentCacheVersion, rootEntry, keys, isRevalidation, 0); - if (entry === null || entry.value === null) { - return null; - } - // This is an LRU access. Move the entry to the front of the list. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["lruPut"])(entry); - return entry.value; -} -function isValueExpired(now, currentCacheVersion, value) { - return value.staleAt <= now || value.version < currentCacheVersion; -} -function lazilyEvictIfNeeded(now, currentCacheVersion, entry) { - // We have a matching entry, but before we can return it, we need to check if - // it's still fresh. Otherwise it should be treated the same as a cache miss. - if (entry.value === null) { - // This entry has no value, so there's nothing to evict. - return entry; - } - const value = entry.value; - if (isValueExpired(now, currentCacheVersion, value)) { - // The value expired. Lazily evict it from the cache, and return null. This - // is conceptually the same as a cache miss. - deleteMapEntry(entry); - return null; - } - // The matched entry has not expired. Return it. - return entry; -} -function getEntryWithFallbackImpl(now, currentCacheVersion, entry, keys, isRevalidation, previousKey) { - // This is similar to getExactEntry, but if an exact match is not found for - // a key, it will return the fallback entry instead. This is recursive at - // every level, e.g. an entry with keypath [a, Fallback, c, Fallback] is - // valid match for [a, b, c, d]. - // - // It will return the most specific match available. - let key; - let remainingKeys; - if (keys !== null) { - key = keys.value; - remainingKeys = keys.parent; - } else if (isRevalidation && previousKey !== Revalidation) { - // During a revalidation, we append an internal "Revalidation" key to - // the end of the keypath. - key = Revalidation; - remainingKeys = null; - } else { - // There are no more keys. This is the terminal entry. - // TODO: When performing a lookup during a navigation, as opposed to a - // prefetch, we may want to skip entries that are Pending if there's also - // a Fulfilled fallback entry. Tricky to say, though, since if it's - // already pending, it's likely to stream in soon. Maybe we could do this - // just on slow connections and offline mode. - return lazilyEvictIfNeeded(now, currentCacheVersion, entry); - } - const map = entry.map; - if (map !== null) { - const existingEntry = map.get(key); - if (existingEntry !== undefined) { - // Found an exact match for this key. Keep searching. - const result = getEntryWithFallbackImpl(now, currentCacheVersion, existingEntry, remainingKeys, isRevalidation, key); - if (result !== null) { - return result; - } - } - // No match found for this key. Check if there's a fallback. - const fallbackEntry = map.get(Fallback); - if (fallbackEntry !== undefined) { - // Found a fallback for this key. Keep searching. - return getEntryWithFallbackImpl(now, currentCacheVersion, fallbackEntry, remainingKeys, isRevalidation, key); - } - } - return null; -} -function setInCacheMap(cacheMap, keys, value, isRevalidation) { - // Add a value to the map at the given keypath. If the value is already - // part of the map, it's removed from its previous keypath. (NOTE: This is - // unlike a regular JS map, but the behavior is intentional.) - const entry = getOrInitialize(cacheMap, keys, isRevalidation); - setMapEntryValue(entry, value); - // This is an LRU access. Move the entry to the front of the list. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["lruPut"])(entry); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["updateLruSize"])(entry, value.size); -} -function setMapEntryValue(entry, value) { - if (entry.value !== null) { - // There's already a value at the given keypath. Disconnect the old value - // from the map. We're not calling `deleteMapEntry` here because the - // entry itself is still in the map. We just want to overwrite its value. - dropRef(entry.value); - entry.value = null; - } - // This value may already be in the map at a different keypath. - // Grab a reference before we overwrite it. - const oldEntry = value.ref; - entry.value = value; - value.ref = entry; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["updateLruSize"])(entry, value.size); - if (oldEntry !== null && oldEntry !== entry && oldEntry.value === value) { - // This value is already in the map at a different keypath in the map. - // Values only exist at a single keypath at a time. Remove it from the - // previous keypath. - // - // Note that only the internal map entry is garbage collected; we don't - // call `dropRef` here because it's still in the map, just - // at a new keypath (the one we just set, above). - deleteMapEntry(oldEntry); - } -} -function deleteFromCacheMap(value) { - const entry = value.ref; - if (entry === null) { - // This value is not a member of any map. - return; - } - dropRef(value); - deleteMapEntry(entry); -} -function dropRef(value) { - // Drop the value from the map by setting its `ref` backpointer to - // null. This is a separate operation from `deleteMapEntry` because when - // re-keying a value we need to be able to delete the old, internal map - // entry without garbage collecting the value itself. - value.ref = null; -} -function deleteMapEntry(entry) { - // Delete the entry from the cache. - entry.value = null; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["deleteFromLru"])(entry); - // Check if we can garbage collect the entry. - const map = entry.map; - if (map === null) { - // Since this entry has no value, and also no child entries, we can - // garbage collect it. Remove it from its parent, and keep garbage - // collecting the parents until we reach a non-empty entry. - let parent = entry.parent; - let key = entry.key; - while(parent !== null){ - const parentMap = parent.map; - if (parentMap !== null) { - parentMap.delete(key); - if (parentMap.size === 0) { - // We just removed the last entry in the parent map. - parent.map = null; - if (parent.value === null) { - // The parent node has no child entries, nor does it have a value - // on itself. It can be garbage collected. Keep going. - key = parent.key; - parent = parent.parent; - continue; - } - } - } - break; - } - } else { - // Check if there's a revalidating entry. If so, promote it to a - // "normal" entry, since the normal one was just deleted. - const revalidatingEntry = map.get(Revalidation); - if (revalidatingEntry !== undefined && revalidatingEntry.value !== null) { - setMapEntryValue(entry, revalidatingEntry.value); - } - } -} -function setSizeInCacheMap(value, size) { - const entry = value.ref; - if (entry === null) { - // This value is not a member of any map. - return; - } - // Except during initialization (when the size is set to 0), this is the only - // place the `size` field should be updated, to ensure it's in sync with the - // the LRU. - value.size = size; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["updateLruSize"])(entry, size); -} //# sourceMappingURL=cache-map.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/vary-path.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "appendLayoutVaryPath", - ()=>appendLayoutVaryPath, - "clonePageVaryPathWithNewSearchParams", - ()=>clonePageVaryPathWithNewSearchParams, - "finalizeLayoutVaryPath", - ()=>finalizeLayoutVaryPath, - "finalizeMetadataVaryPath", - ()=>finalizeMetadataVaryPath, - "finalizePageVaryPath", - ()=>finalizePageVaryPath, - "getFulfilledRouteVaryPath", - ()=>getFulfilledRouteVaryPath, - "getRouteVaryPath", - ()=>getRouteVaryPath, - "getSegmentVaryPathForRequest", - ()=>getSegmentVaryPathForRequest -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-map.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-ssr] (ecmascript)"); -; -; -; -function getRouteVaryPath(pathname, search, nextUrl) { - // requestKey -> searchParams -> nextUrl - const varyPath = { - value: pathname, - parent: { - value: search, - parent: { - value: nextUrl, - parent: null - } - } - }; - return varyPath; -} -function getFulfilledRouteVaryPath(pathname, search, nextUrl, couldBeIntercepted) { - // This is called when a route's data is fulfilled. The cache entry will be - // re-keyed based on which inputs the response varies by. - // requestKey -> searchParams -> nextUrl - const varyPath = { - value: pathname, - parent: { - value: search, - parent: { - value: couldBeIntercepted ? nextUrl : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fallback"], - parent: null - } - } - }; - return varyPath; -} -function appendLayoutVaryPath(parentPath, cacheKey) { - const varyPathPart = { - value: cacheKey, - parent: parentPath - }; - return varyPathPart; -} -function finalizeLayoutVaryPath(requestKey, varyPath) { - const layoutVaryPath = { - value: requestKey, - parent: varyPath - }; - return layoutVaryPath; -} -function finalizePageVaryPath(requestKey, renderedSearch, varyPath) { - // Unlike layouts, a page segment's vary path also includes the search string. - // requestKey -> searchParams -> pathParams - const pageVaryPath = { - value: requestKey, - parent: { - value: renderedSearch, - parent: varyPath - } - }; - return pageVaryPath; -} -function finalizeMetadataVaryPath(pageRequestKey, renderedSearch, varyPath) { - // The metadata "segment" is not a real segment because it doesn't exist in - // the normal structure of the route tree, but in terms of caching, it - // behaves like a page segment because it varies by all the same params as - // a page. - // - // To keep the protocol for querying the server simple, the request key for - // the metadata does not include any path information. It's unnecessary from - // the server's perspective, because unlike page segments, there's only one - // metadata response per URL, i.e. there's no need to distinguish multiple - // parallel pages. - // - // However, this means the metadata request key is insufficient for - // caching the the metadata in the client cache, because on the client we - // use the request key to distinguish the metadata entry from all other - // page's metadata entries. - // - // So instead we create a simulated request key based on the page segment. - // Conceptually this is equivalent to the request key the server would have - // assigned the metadata segment if it treated it as part of the actual - // route structure. - // If there are multiple parallel pages, we use whichever is the first one. - // This is fine because the only difference between request keys for - // different parallel pages are things like route groups and parallel - // route slots. As long as it's always the same one, it doesn't matter. - const pageVaryPath = { - // Append the actual metadata request key to the page request key. Note - // that we're not using a separate vary path part; it's unnecessary because - // these are not conceptually separate inputs. - value: pageRequestKey + __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HEAD_REQUEST_KEY"], - parent: { - value: renderedSearch, - parent: varyPath - } - }; - return pageVaryPath; -} -function getSegmentVaryPathForRequest(fetchStrategy, tree) { - // This is used for storing pending requests in the cache. We want to choose - // the most generic vary path based on the strategy used to fetch it, i.e. - // static/PPR versus runtime prefetching, so that it can be reused as much - // as possible. - // - // We may be able to re-key the response to something even more generic once - // we receive it — for example, if the server tells us that the response - // doesn't vary on a particular param — but even before we send the request, - // we know some params are reusable based on the fetch strategy alone. For - // example, a static prefetch will never vary on search params. - // - // The original vary path with all the params filled in is stored on the - // route tree object. We will clone this one to create a new vary path - // where certain params are replaced with Fallback. - // - // This result of this function is not stored anywhere. It's only used to - // access the cache a single time. - // - // TODO: Rather than create a new list object just to access the cache, the - // plan is to add the concept of a "vary mask". This will represent all the - // params that can be treated as Fallback. (Or perhaps the inverse.) - const originalVaryPath = tree.varyPath; - // Only page segments (and the special "metadata" segment, which is treated - // like a page segment for the purposes of caching) may contain search - // params. There's no reason to include them in the vary path otherwise. - if (tree.isPage) { - // Only a runtime prefetch will include search params in the vary path. - // Static prefetches never include search params, so they can be reused - // across all possible search param values. - const doesVaryOnSearchParams = fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full || fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime; - if (!doesVaryOnSearchParams) { - // The response from the the server will not vary on search params. Clone - // the end of the original vary path to replace the search params - // with Fallback. - // - // requestKey -> searchParams -> pathParams - // ^ This part gets replaced with Fallback - const searchParamsVaryPath = originalVaryPath.parent; - const pathParamsVaryPath = searchParamsVaryPath.parent; - const patchedVaryPath = { - value: originalVaryPath.value, - parent: { - value: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fallback"], - parent: pathParamsVaryPath - } - }; - return patchedVaryPath; - } - } - // The request does vary on search params. We don't need to modify anything. - return originalVaryPath; -} -function clonePageVaryPathWithNewSearchParams(originalVaryPath, newSearch) { - // requestKey -> searchParams -> pathParams - // ^ This part gets replaced with newSearch - const searchParamsVaryPath = originalVaryPath.parent; - const clonedVaryPath = { - value: originalVaryPath.value, - parent: { - value: newSearch, - parent: searchParamsVaryPath.parent - } - }; - return clonedVaryPath; -} //# sourceMappingURL=vary-path.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// TypeScript trick to simulate opaque types, like in Flow. -__turbopack_context__.s([ - "createCacheKey", - ()=>createCacheKey -]); -function createCacheKey(originalHref, nextUrl) { - const originalUrl = new URL(originalHref); - const cacheKey = { - pathname: originalUrl.pathname, - search: originalUrl.search, - nextUrl: nextUrl - }; - return cacheKey; -} //# sourceMappingURL=cache-key.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/scheduler.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "cancelPrefetchTask", - ()=>cancelPrefetchTask, - "isPrefetchTaskDirty", - ()=>isPrefetchTaskDirty, - "pingPrefetchTask", - ()=>pingPrefetchTask, - "reschedulePrefetchTask", - ()=>reschedulePrefetchTask, - "schedulePrefetchTask", - ()=>schedulePrefetchTask, - "startRevalidationCooldown", - ()=>startRevalidationCooldown -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/app-router-types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/vary-path.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -const scheduleMicrotask = typeof queueMicrotask === 'function' ? queueMicrotask : (fn)=>Promise.resolve().then(fn).catch((error)=>setTimeout(()=>{ - throw error; - })); -const taskHeap = []; -let inProgressRequests = 0; -let sortIdCounter = 0; -let didScheduleMicrotask = false; -// The most recently hovered (or touched, etc) link, i.e. the most recent task -// scheduled at Intent priority. There's only ever a single task at Intent -// priority at a time. We reserve special network bandwidth for this task only. -let mostRecentlyHoveredLink = null; -// CDN cache propagation delay after revalidation (in milliseconds) -const REVALIDATION_COOLDOWN_MS = 300; -// Timeout handle for the revalidation cooldown. When non-null, prefetch -// requests are blocked to allow CDN cache propagation. -let revalidationCooldownTimeoutHandle = null; -function startRevalidationCooldown() { - // Clear any existing timeout in case multiple revalidations happen - // in quick succession. - if (revalidationCooldownTimeoutHandle !== null) { - clearTimeout(revalidationCooldownTimeoutHandle); - } - // Schedule the cooldown to expire after the delay. - revalidationCooldownTimeoutHandle = setTimeout(()=>{ - revalidationCooldownTimeoutHandle = null; - // Retry the prefetch queue now that the cooldown has expired. - ensureWorkIsScheduled(); - }, REVALIDATION_COOLDOWN_MS); -} -function schedulePrefetchTask(key, treeAtTimeOfPrefetch, fetchStrategy, priority, onInvalidate) { - // Spawn a new prefetch task - const task = { - key, - treeAtTimeOfPrefetch, - cacheVersion: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCurrentCacheVersion"])(), - priority, - phase: 1, - hasBackgroundWork: false, - spawnedRuntimePrefetches: null, - fetchStrategy, - sortId: sortIdCounter++, - isCanceled: false, - onInvalidate, - _heapIndex: -1 - }; - trackMostRecentlyHoveredLink(task); - heapPush(taskHeap, task); - // Schedule an async task to process the queue. - // - // The main reason we process the queue in an async task is for batching. - // It's common for a single JS task/event to trigger multiple prefetches. - // By deferring to a microtask, we only process the queue once per JS task. - // If they have different priorities, it also ensures they are processed in - // the optimal order. - ensureWorkIsScheduled(); - return task; -} -function cancelPrefetchTask(task) { - // Remove the prefetch task from the queue. If the task already completed, - // then this is a no-op. - // - // We must also explicitly mark the task as canceled so that a blocked task - // does not get added back to the queue when it's pinged by the network. - task.isCanceled = true; - heapDelete(taskHeap, task); -} -function reschedulePrefetchTask(task, treeAtTimeOfPrefetch, fetchStrategy, priority) { - // Bump the prefetch task to the top of the queue, as if it were a fresh - // task. This is essentially the same as canceling the task and scheduling - // a new one, except it reuses the original object. - // - // The primary use case is to increase the priority of a Link-initated - // prefetch on hover. - // Un-cancel the task, in case it was previously canceled. - task.isCanceled = false; - task.phase = 1; - // Assign a new sort ID to move it ahead of all other tasks at the same - // priority level. (Higher sort IDs are processed first.) - task.sortId = sortIdCounter++; - task.priority = // Intent priority, even if the rescheduled priority is lower. - task === mostRecentlyHoveredLink ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Intent : priority; - task.treeAtTimeOfPrefetch = treeAtTimeOfPrefetch; - task.fetchStrategy = fetchStrategy; - trackMostRecentlyHoveredLink(task); - if (task._heapIndex !== -1) { - // The task is already in the queue. - heapResift(taskHeap, task); - } else { - heapPush(taskHeap, task); - } - ensureWorkIsScheduled(); -} -function isPrefetchTaskDirty(task, nextUrl, tree) { - // This is used to quickly bail out of a prefetch task if the result is - // guaranteed to not have changed since the task was initiated. This is - // strictly an optimization — theoretically, if it always returned true, no - // behavior should change because a full prefetch task will effectively - // perform the same checks. - const currentCacheVersion = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCurrentCacheVersion"])(); - return task.cacheVersion !== currentCacheVersion || task.treeAtTimeOfPrefetch !== tree || task.key.nextUrl !== nextUrl; -} -function trackMostRecentlyHoveredLink(task) { - // Track the mostly recently hovered link, i.e. the most recently scheduled - // task at Intent priority. There must only be one such task at a time. - if (task.priority === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Intent && task !== mostRecentlyHoveredLink) { - if (mostRecentlyHoveredLink !== null) { - // Bump the previously hovered link's priority down to Default. - if (mostRecentlyHoveredLink.priority !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Background) { - mostRecentlyHoveredLink.priority = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Default; - heapResift(taskHeap, mostRecentlyHoveredLink); - } - } - mostRecentlyHoveredLink = task; - } -} -function ensureWorkIsScheduled() { - if (didScheduleMicrotask) { - // Already scheduled a task to process the queue - return; - } - didScheduleMicrotask = true; - scheduleMicrotask(processQueueInMicrotask); -} -/** - * Checks if we've exceeded the maximum number of concurrent prefetch requests, - * to avoid saturating the browser's internal network queue. This is a - * cooperative limit — prefetch tasks should check this before issuing - * new requests. - * - * Also checks if we're within the revalidation cooldown window, during which - * prefetch requests are delayed to allow CDN cache propagation. - */ function hasNetworkBandwidth(task) { - // Check if we're within the revalidation cooldown window - if (revalidationCooldownTimeoutHandle !== null) { - // We're within the cooldown window. Return false to prevent prefetching. - // When the cooldown expires, the timeout will call ensureWorkIsScheduled() - // to retry the queue. - return false; - } - // TODO: Also check if there's an in-progress navigation. We should never - // add prefetch requests to the network queue if an actual navigation is - // taking place, to ensure there's sufficient bandwidth for render-blocking - // data and resources. - // TODO: Consider reserving some amount of bandwidth for static prefetches. - if (task.priority === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Intent) { - // The most recently hovered link is allowed to exceed the default limit. - // - // The goal is to always have enough bandwidth to start a new prefetch - // request when hovering over a link. - // - // However, because we don't abort in-progress requests, it's still possible - // we'll run out of bandwidth. When links are hovered in quick succession, - // there could be multiple hover requests running simultaneously. - return inProgressRequests < 12; - } - // The default limit is lower than the limit for a hovered link. - return inProgressRequests < 4; -} -function spawnPrefetchSubtask(prefetchSubtask) { - // When the scheduler spawns an async task, we don't await its result. - // Instead, the async task writes its result directly into the cache, then - // pings the scheduler to continue. - // - // We process server responses streamingly, so the prefetch subtask will - // likely resolve before we're finished receiving all the data. The subtask - // result includes a promise that resolves once the network connection is - // closed. The scheduler uses this to control network bandwidth by tracking - // and limiting the number of concurrent requests. - inProgressRequests++; - return prefetchSubtask.then((result)=>{ - if (result === null) { - // The prefetch task errored before it could start processing the - // network stream. Assume the connection is closed. - onPrefetchConnectionClosed(); - return null; - } - // Wait for the connection to close before freeing up more bandwidth. - result.closed.then(onPrefetchConnectionClosed); - return result.value; - }); -} -function onPrefetchConnectionClosed() { - inProgressRequests--; - // Notify the scheduler that we have more bandwidth, and can continue - // processing tasks. - ensureWorkIsScheduled(); -} -function pingPrefetchTask(task) { - // "Ping" a prefetch that's already in progress to notify it of new data. - if (task.isCanceled || // Check if prefetch is already queued. - task._heapIndex !== -1) { - return; - } - // Add the task back to the queue. - heapPush(taskHeap, task); - ensureWorkIsScheduled(); -} -function processQueueInMicrotask() { - didScheduleMicrotask = false; - // We aim to minimize how often we read the current time. Since nearly all - // functions in the prefetch scheduler are synchronous, we can read the time - // once and pass it as an argument wherever it's needed. - const now = Date.now(); - // Process the task queue until we run out of network bandwidth. - let task = heapPeek(taskHeap); - while(task !== null && hasNetworkBandwidth(task)){ - task.cacheVersion = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCurrentCacheVersion"])(); - const exitStatus = pingRoute(now, task); - // These fields are only valid for a single attempt. Reset them after each - // iteration of the task queue. - const hasBackgroundWork = task.hasBackgroundWork; - task.hasBackgroundWork = false; - task.spawnedRuntimePrefetches = null; - switch(exitStatus){ - case 0: - // The task yielded because there are too many requests in progress. - // Stop processing tasks until we have more bandwidth. - return; - case 1: - // The task is blocked. It needs more data before it can proceed. - // Keep the task out of the queue until the server responds. - heapPop(taskHeap); - // Continue to the next task - task = heapPeek(taskHeap); - continue; - case 2: - if (task.phase === 1) { - // Finished prefetching the route tree. Proceed to prefetching - // the segments. - task.phase = 0; - heapResift(taskHeap, task); - } else if (hasBackgroundWork) { - // The task spawned additional background work. Reschedule the task - // at background priority. - task.priority = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Background; - heapResift(taskHeap, task); - } else { - // The prefetch is complete. Continue to the next task. - heapPop(taskHeap); - } - task = heapPeek(taskHeap); - continue; - default: - exitStatus; - } - } -} -/** - * Check this during a prefetch task to determine if background work can be - * performed. If so, it evaluates to `true`. Otherwise, it returns `false`, - * while also scheduling a background task to run later. Usage: - * - * @example - * if (background(task)) { - * // Perform background-pri work - * } - */ function background(task) { - if (task.priority === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Background) { - return true; - } - task.hasBackgroundWork = true; - return false; -} -function pingRoute(now, task) { - const key = task.key; - const route = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateRouteCacheEntry"])(now, task, key); - const exitStatus = pingRootRouteTree(now, task, route); - if (exitStatus !== 0 && key.search !== '') { - // If the URL has a non-empty search string, also prefetch the pathname - // without the search string. We use the searchless route tree as a base for - // optimistic routing; see requestOptimisticRouteCacheEntry for details. - // - // Note that we don't need to prefetch any of the segment data. Just the - // route tree. - // - // TODO: This is a temporary solution; the plan is to replace this by adding - // a wildcard lookup method to the TupleMap implementation. This is - // non-trivial to implement because it needs to account for things like - // fallback route entries, hence this temporary workaround. - const url = new URL(key.pathname, location.origin); - const keyWithoutSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheKey"])(url.href, key.nextUrl); - const routeWithoutSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateRouteCacheEntry"])(now, task, keyWithoutSearch); - switch(routeWithoutSearch.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - { - if (background(task)) { - routeWithoutSearch.status = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending; - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchRouteOnCacheMiss"])(routeWithoutSearch, task, keyWithoutSearch)); - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - break; - } - default: - routeWithoutSearch; - } - } - return exitStatus; -} -function pingRootRouteTree(now, task, route) { - switch(route.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - { - // Route is not yet cached, and there's no request already in progress. - // Spawn a task to request the route, load it into the cache, and ping - // the task to continue. - // TODO: There are multiple strategies in the API for prefetching - // a route. Currently we've only implemented the main one: per-segment, - // static-data only. - // - // There's also `` - // which prefetch both static *and* dynamic data. - // Similarly, we need to fallback to the old, per-page - // behavior if PPR is disabled for a route (via the incremental opt-in). - // - // Those cases will be handled here. - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchRouteOnCacheMiss"])(route, task, task.key)); - // If the request takes longer than a minute, a subsequent request should - // retry instead of waiting for this one. When the response is received, - // this value will be replaced by a new value based on the stale time sent - // from the server. - // TODO: We should probably also manually abort the fetch task, to reclaim - // server bandwidth. - route.staleAt = now + 60 * 1000; - // Upgrade to Pending so we know there's already a request in progress - route.status = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending; - // Intentional fallthrough to the Pending branch - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - // Still pending. We can't start prefetching the segments until the route - // tree has loaded. Add the task to the set of blocked tasks so that it - // is notified when the route tree is ready. - const blockedTasks = route.blockedTasks; - if (blockedTasks === null) { - route.blockedTasks = new Set([ - task - ]); - } else { - blockedTasks.add(task); - } - return 1; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - // Route tree failed to load. Treat as a 404. - return 2; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - if (task.phase !== 0) { - // Do not prefetch segment data until we've entered the segment phase. - return 2; - } - // Recursively fill in the segment tree. - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - const tree = route.tree; - // A task's fetch strategy gets set to `PPR` for any "auto" prefetch. - // If it turned out that the route isn't PPR-enabled, we need to use `LoadingBoundary` instead. - // We don't need to do this for runtime prefetches, because those are only available in - // `cacheComponents`, where every route is PPR. - const fetchStrategy = task.fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR ? route.isPPREnabled ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary : task.fetchStrategy; - switch(fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR: - { - // For Cache Components pages, each segment may be prefetched - // statically or using a runtime request, based on various - // configurations and heuristics. We'll do this in two passes: first - // traverse the tree and perform all the static prefetches. - // - // Then, if there are any segments that need a runtime request, - // do another pass to perform a runtime prefetch. - pingStaticHead(now, task, route); - const exitStatus = pingSharedPartOfCacheComponentsTree(now, task, route, task.treeAtTimeOfPrefetch, tree); - if (exitStatus === 0) { - // Child yielded without finishing. - return 0; - } - const spawnedRuntimePrefetches = task.spawnedRuntimePrefetches; - if (spawnedRuntimePrefetches !== null) { - // During the first pass, we discovered segments that require a - // runtime prefetch. Do a second pass to construct a request tree. - const spawnedEntries = new Map(); - pingRuntimeHead(now, task, route, spawnedEntries, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime); - const requestTree = pingRuntimePrefetches(now, task, route, tree, spawnedRuntimePrefetches, spawnedEntries); - let needsDynamicRequest = spawnedEntries.size > 0; - if (needsDynamicRequest) { - // Perform a dynamic prefetch request and populate the cache with - // the result. - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchSegmentPrefetchesUsingDynamicRequest"])(task, route, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime, requestTree, spawnedEntries)); - } - } - return 2; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - { - // Prefetch multiple segments using a single dynamic request. - // TODO: We can consolidate this branch with previous one by modeling - // it as if the first segment in the new tree has runtime prefetching - // enabled. Will do this as a follow-up refactor. Might want to remove - // the special metatdata case below first. In the meantime, it's not - // really that much duplication, just would be nice to remove one of - // these codepaths. - const spawnedEntries = new Map(); - pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy); - const dynamicRequestTree = diffRouteTreeAgainstCurrent(now, task, route, task.treeAtTimeOfPrefetch, tree, spawnedEntries, fetchStrategy); - let needsDynamicRequest = spawnedEntries.size > 0; - if (needsDynamicRequest) { - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchSegmentPrefetchesUsingDynamicRequest"])(task, route, fetchStrategy, dynamicRequestTree, spawnedEntries)); - } - return 2; - } - default: - fetchStrategy; - } - break; - } - default: - { - route; - } - } - return 2; -} -function pingStaticHead(now, task, route) { - // The Head data for a page (metadata, viewport) is not really a route - // segment, in the sense that it doesn't appear in the route tree. But we - // store it in the cache as if it were, using a special key. - pingStaticSegmentData(now, task, route, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR, route, route.metadata), task.key, route.metadata); -} -function pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy) { - pingRouteTreeAndIncludeDynamicData(now, task, route, route.metadata, false, spawnedEntries, // and LoadingBoundary - fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full : fetchStrategy); -} -// TODO: Rename dynamic -> runtime throughout this module -function pingSharedPartOfCacheComponentsTree(now, task, route, oldTree, newTree) { - // When Cache Components is enabled (or PPR, or a fully static route when PPR - // is disabled; those cases are treated equivalently to Cache Components), we - // start by prefetching each segment individually. Once we reach the "new" - // part of the tree — the part that doesn't exist on the current page — we - // may choose to switch to a runtime prefetch instead, based on the - // information sent by the server in the route tree. - // - // The traversal starts in the "shared" part of the tree. Once we reach the - // "new" part of the tree, we switch to a different traversal, - // pingNewPartOfCacheComponentsTree. - // Prefetch this segment's static data. - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, task.fetchStrategy, route, newTree); - pingStaticSegmentData(now, task, route, segment, task.key, newTree); - // Recursively ping the children. - const oldTreeChildren = oldTree[1]; - const newTreeChildren = newTree.slots; - if (newTreeChildren !== null) { - for(const parallelRouteKey in newTreeChildren){ - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - const newTreeChild = newTreeChildren[parallelRouteKey]; - const newTreeChildSegment = newTreeChild.segment; - const oldTreeChild = oldTreeChildren[parallelRouteKey]; - const oldTreeChildSegment = oldTreeChild?.[0]; - let childExitStatus; - if (oldTreeChildSegment !== undefined && doesCurrentSegmentMatchCachedSegment(route, newTreeChildSegment, oldTreeChildSegment)) { - // We're still in the "shared" part of the tree. - childExitStatus = pingSharedPartOfCacheComponentsTree(now, task, route, oldTreeChild, newTreeChild); - } else { - // We've entered the "new" part of the tree. Switch - // traversal functions. - childExitStatus = pingNewPartOfCacheComponentsTree(now, task, route, newTreeChild); - } - if (childExitStatus === 0) { - // Child yielded without finishing. - return 0; - } - } - } - return 2; -} -function pingNewPartOfCacheComponentsTree(now, task, route, tree) { - // We're now prefetching in the "new" part of the tree, the part that doesn't - // exist on the current page. (In other words, we're deeper than the - // shared layouts.) Segments in here default to being prefetched statically. - // However, if the server instructs us to, we may switch to a runtime - // prefetch instead. Traverse the tree and check at each segment. - if (tree.hasRuntimePrefetch) { - // This route has a runtime prefetch response. Since we're below the shared - // layout, everything from this point should be prefetched using a single, - // combined runtime request, rather than using per-segment static requests. - // This is true even if some of the child segments are known to be fully - // static — once we've decided to perform a runtime prefetch, we might as - // well respond with the static segments in the same roundtrip. (That's how - // regular navigations work, too.) We'll still skip over segments that are - // already cached, though. - // - // It's the server's responsibility to set a reasonable value of - // `hasRuntimePrefetch`. Currently it's user-defined, but eventually, the - // server may send a value of `false` even if the user opts in, if it - // determines during build that the route is always fully static. There are - // more optimizations we can do once we implement fallback param - // tracking, too. - // - // Use the task object to collect the segments that need a runtime prefetch. - // This will signal to the outer task queue that a second traversal is - // required to construct a request tree. - if (task.spawnedRuntimePrefetches === null) { - task.spawnedRuntimePrefetches = new Set([ - tree.requestKey - ]); - } else { - task.spawnedRuntimePrefetches.add(tree.requestKey); - } - // Then exit the traversal without prefetching anything further. - return 2; - } - // This segment should not be runtime prefetched. Prefetch its static data. - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, task.fetchStrategy, route, tree); - pingStaticSegmentData(now, task, route, segment, task.key, tree); - if (tree.slots !== null) { - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - // Recursively ping the children. - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - const childExitStatus = pingNewPartOfCacheComponentsTree(now, task, route, childTree); - if (childExitStatus === 0) { - // Child yielded without finishing. - return 0; - } - } - } - // This segment and all its children have finished prefetching. - return 2; -} -function diffRouteTreeAgainstCurrent(now, task, route, oldTree, newTree, spawnedEntries, fetchStrategy) { - // This is a single recursive traversal that does multiple things: - // - Finds the parts of the target route (newTree) that are not part of - // of the current page (oldTree) by diffing them, using the same algorithm - // as a real navigation. - // - Constructs a request tree (FlightRouterState) that describes which - // segments need to be prefetched and which ones are already cached. - // - Creates a set of pending cache entries for the segments that need to - // be prefetched, so that a subsequent prefetch task does not request the - // same segments again. - const oldTreeChildren = oldTree[1]; - const newTreeChildren = newTree.slots; - let requestTreeChildren = {}; - if (newTreeChildren !== null) { - for(const parallelRouteKey in newTreeChildren){ - const newTreeChild = newTreeChildren[parallelRouteKey]; - const newTreeChildSegment = newTreeChild.segment; - const oldTreeChild = oldTreeChildren[parallelRouteKey]; - const oldTreeChildSegment = oldTreeChild?.[0]; - if (oldTreeChildSegment !== undefined && doesCurrentSegmentMatchCachedSegment(route, newTreeChildSegment, oldTreeChildSegment)) { - // This segment is already part of the current route. Keep traversing. - const requestTreeChild = diffRouteTreeAgainstCurrent(now, task, route, oldTreeChild, newTreeChild, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - } else { - // This segment is not part of the current route. We're entering a - // part of the tree that we need to prefetch (unless everything is - // already cached). - switch(fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - { - // When PPR is disabled, we can't prefetch per segment. We must - // fallback to the old prefetch behavior and send a dynamic request. - // Only routes that include a loading boundary can be prefetched in - // this way. - // - // This is simlar to a "full" prefetch, but we're much more - // conservative about which segments to include in the request. - // - // The server will only render up to the first loading boundary - // inside new part of the tree. If there's no loading boundary - // anywhere in the tree, the server will never return any data, so - // we can skip the request. - const subtreeHasLoadingBoundary = newTreeChild.hasLoadingBoundary !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SubtreeHasNoLoadingBoundary; - const requestTreeChild = subtreeHasLoadingBoundary ? pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, newTreeChild, null, spawnedEntries) : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["convertRouteTreeToFlightRouterState"])(newTreeChild); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - { - // This is a runtime prefetch. Fetch all cacheable data in the tree, - // not just the static PPR shell. - const requestTreeChild = pingRouteTreeAndIncludeDynamicData(now, task, route, newTreeChild, false, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - { - // This is a "full" prefetch. Fetch all the data in the tree, both - // static and dynamic. We issue roughly the same request that we - // would during a real navigation. The goal is that once the - // navigation occurs, the router should not have to fetch any - // additional data. - // - // Although the response will include dynamic data, opting into a - // Full prefetch — via — implicitly - // instructs the cache to treat the response as "static", or non- - // dynamic, since the whole point is to cache it for - // future navigations. - // - // Construct a tree (currently a FlightRouterState) that represents - // which segments need to be prefetched and which ones are already - // cached. If the tree is empty, then we can exit. Otherwise, we'll - // send the request tree to the server and use the response to - // populate the segment cache. - const requestTreeChild = pingRouteTreeAndIncludeDynamicData(now, task, route, newTreeChild, false, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - default: - fetchStrategy; - } - } - } - } - const requestTree = [ - newTree.segment, - requestTreeChildren, - null, - null, - newTree.isRootLayout - ]; - return requestTree; -} -function pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, tree, refetchMarkerContext, spawnedEntries) { - // This function is similar to pingRouteTreeAndIncludeDynamicData, except the - // server is only going to return a minimal loading state — it will stop - // rendering at the first loading boundary. Whereas a Full prefetch is - // intentionally aggressive and tries to pretfetch all the data that will be - // needed for a navigation, a LoadingBoundary prefetch is much more - // conservative. For example, it will omit from the request tree any segment - // that is already cached, regardles of whether it's partial or full. By - // contrast, a Full prefetch will refetch partial segments. - // "inside-shared-layout" tells the server where to start looking for a - // loading boundary. - let refetchMarker = refetchMarkerContext === null ? 'inside-shared-layout' : null; - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, task.fetchStrategy, route, tree); - switch(segment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - { - // This segment is not cached. Add a refetch marker so the server knows - // to start rendering here. - // TODO: Instead of a "refetch" marker, we could just omit this subtree's - // FlightRouterState from the request tree. I think this would probably - // already work even without any updates to the server. For consistency, - // though, I'll send the full tree and we'll look into this later as part - // of a larger redesign of the request protocol. - // Add the pending cache entry to the result map. - spawnedEntries.set(tree.requestKey, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(segment, // might not include it in the pending response. If another route is able - // to issue a per-segment request, we'll do that in the background. - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary)); - if (refetchMarkerContext !== 'refetch') { - refetchMarker = refetchMarkerContext = 'refetch'; - } else { - // There's already a parent with a refetch marker, so we don't need - // to add another one. - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - // The segment is already cached. - const segmentHasLoadingBoundary = tree.hasLoadingBoundary === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SegmentHasLoadingBoundary; - if (segmentHasLoadingBoundary) { - // This segment has a loading boundary, which means the server won't - // render its children. So there's nothing left to prefetch along this - // path. We can bail out. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["convertRouteTreeToFlightRouterState"])(tree); - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - break; - } - default: - segment; - } - const requestTreeChildren = {}; - if (tree.slots !== null) { - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, childTree, refetchMarkerContext, spawnedEntries); - } - } - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - refetchMarker, - tree.isRootLayout - ]; - return requestTree; -} -function pingRouteTreeAndIncludeDynamicData(now, task, route, tree, isInsideRefetchingParent, spawnedEntries, fetchStrategy) { - // The tree we're constructing is the same shape as the tree we're navigating - // to. But even though this is a "new" tree, some of the individual segments - // may be cached as a result of other route prefetches. - // - // So we need to find the first uncached segment along each path add an - // explicit "refetch" marker so the server knows where to start rendering. - // Once the server starts rendering along a path, it keeps rendering the - // entire subtree. - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, // and we have to use the former here. - // We can have a task with `FetchStrategy.PPR` where some of its segments are configured to - // always use runtime prefetching (via `export const prefetch`), and those should check for - // entries that include search params. - fetchStrategy, route, tree); - let spawnedSegment = null; - switch(segment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - { - // This segment is not cached. Include it in the request. - spawnedSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(segment, fetchStrategy); - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - // The segment is already cached. - if (segment.isPartial && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["canNewFetchStrategyProvideMoreContent"])(segment.fetchStrategy, fetchStrategy)) { - // The cached segment contains dynamic holes, and was prefetched using a less specific strategy than the current one. - // This means we're in one of these cases: - // - we have a static prefetch, and we're doing a runtime prefetch - // - we have a static or runtime prefetch, and we're doing a Full prefetch (or a navigation). - // In either case, we need to include it in the request to get a more specific (or full) version. - spawnedSegment = pingFullSegmentRevalidation(now, route, tree, fetchStrategy); - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - // There's either another prefetch currently in progress, or the previous - // attempt failed. If the new strategy can provide more content, fetch it again. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["canNewFetchStrategyProvideMoreContent"])(segment.fetchStrategy, fetchStrategy)) { - spawnedSegment = pingFullSegmentRevalidation(now, route, tree, fetchStrategy); - } - break; - } - default: - segment; - } - const requestTreeChildren = {}; - if (tree.slots !== null) { - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingRouteTreeAndIncludeDynamicData(now, task, route, childTree, isInsideRefetchingParent || spawnedSegment !== null, spawnedEntries, fetchStrategy); - } - } - if (spawnedSegment !== null) { - // Add the pending entry to the result map. - spawnedEntries.set(tree.requestKey, spawnedSegment); - } - // Don't bother to add a refetch marker if one is already present in a parent. - const refetchMarker = !isInsideRefetchingParent && spawnedSegment !== null ? 'refetch' : null; - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - refetchMarker, - tree.isRootLayout - ]; - return requestTree; -} -function pingRuntimePrefetches(now, task, route, tree, spawnedRuntimePrefetches, spawnedEntries) { - // Construct a request tree (FlightRouterState) for a runtime prefetch. If - // a segment is part of the runtime prefetch, the tree is constructed by - // diffing against what's already in the prefetch cache. Otherwise, we send - // a regular FlightRouterState with no special markers. - // - // See pingRouteTreeAndIncludeDynamicData for details. - if (spawnedRuntimePrefetches.has(tree.requestKey)) { - // This segment needs a runtime prefetch. - return pingRouteTreeAndIncludeDynamicData(now, task, route, tree, false, spawnedEntries, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime); - } - let requestTreeChildren = {}; - const slots = tree.slots; - if (slots !== null) { - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingRuntimePrefetches(now, task, route, childTree, spawnedRuntimePrefetches, spawnedEntries); - } - } - // This segment is not part of the runtime prefetch. Clone the base tree. - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - null - ]; - return requestTree; -} -function pingStaticSegmentData(now, task, route, segment, routeKey, tree) { - switch(segment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - // Upgrade to Pending so we know there's already a request in progress - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchSegmentOnCacheMiss"])(route, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(segment, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR), routeKey, tree)); - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - // There's already a request in progress. Depending on what kind of - // request it is, we may want to revalidate it. - switch(segment.fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - // There's a pending request, but because it's using the old - // prefetching strategy, we can't be sure if it will be fulfilled by - // the response — it might be inside the loading boundary. Perform - // a revalidation, but because it's speculative, wait to do it at - // background priority. - if (background(task)) { - // TODO: Instead of speculatively revalidating, consider including - // `hasLoading` in the route tree prefetch response. - pingPPRSegmentRevalidation(now, route, routeKey, tree); - } - break; - default: - segment.fetchStrategy; - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - // The existing entry in the cache was rejected. Depending on how it - // was originally fetched, we may or may not want to revalidate it. - switch(segment.fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - // There's a rejected entry, but it was fetched using the loading - // boundary strategy. So the reason it wasn't returned by the server - // might just be because it was inside a loading boundary. Or because - // there was a dynamic rewrite. Revalidate it using the per- - // segment strategy. - // - // Because a rejected segment will definitely prevent the segment (and - // all of its children) from rendering, we perform this revalidation - // immediately instead of deferring it to a background task. - pingPPRSegmentRevalidation(now, route, routeKey, tree); - break; - default: - segment.fetchStrategy; - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - break; - default: - segment; - } -// Segments do not have dependent tasks, so once the prefetch is initiated, -// there's nothing else for us to do (except write the server data into the -// entry, which is handled by `fetchSegmentOnCacheMiss`). -} -function pingPPRSegmentRevalidation(now, route, routeKey, tree) { - const revalidatingSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateRevalidatingSegmentEntry"])(now, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR, route, tree); - switch(revalidatingSegment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - // Spawn a prefetch request and upsert the segment into the cache - // upon completion. - upsertSegmentOnCompletion(spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchSegmentOnCacheMiss"])(route, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(revalidatingSegment, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR), routeKey, tree)), (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR, tree)); - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - break; - default: - revalidatingSegment; - } -} -function pingFullSegmentRevalidation(now, route, tree, fetchStrategy) { - const revalidatingSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateRevalidatingSegmentEntry"])(now, fetchStrategy, route, tree); - if (revalidatingSegment.status === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty) { - // During a Full/PPRRuntime prefetch, a single dynamic request is made for all the - // segments that we need. So we don't initiate a request here directly. By - // returning a pending entry from this function, it signals to the caller - // that this segment should be included in the request that's sent to - // the server. - const pendingSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(revalidatingSegment, fetchStrategy); - upsertSegmentOnCompletion((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["waitForSegmentCacheEntry"])(pendingSegment), (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree)); - return pendingSegment; - } else { - // There's already a revalidation in progress. - const nonEmptyRevalidatingSegment = revalidatingSegment; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["canNewFetchStrategyProvideMoreContent"])(nonEmptyRevalidatingSegment.fetchStrategy, fetchStrategy)) { - // The existing revalidation was fetched using a less specific strategy. - // Reset it and start a new revalidation. - const emptySegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["overwriteRevalidatingSegmentCacheEntry"])(fetchStrategy, route, tree); - const pendingSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(emptySegment, fetchStrategy); - upsertSegmentOnCompletion((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["waitForSegmentCacheEntry"])(pendingSegment), (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree)); - return pendingSegment; - } - switch(nonEmptyRevalidatingSegment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - // There's already an in-progress prefetch that includes this segment. - return null; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - // A previous revalidation attempt finished, but we chose not to replace - // the existing entry in the cache. Don't try again until or unless the - // revalidation entry expires. - return null; - default: - nonEmptyRevalidatingSegment; - return null; - } - } -} -const noop = ()=>{}; -function upsertSegmentOnCompletion(promise, varyPath) { - // Wait for a segment to finish loading, then upsert it into the cache - promise.then((fulfilled)=>{ - if (fulfilled !== null) { - // Received new data. Attempt to replace the existing entry in the cache. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upsertSegmentEntry"])(Date.now(), varyPath, fulfilled); - } - }, noop); -} -function doesCurrentSegmentMatchCachedSegment(route, currentSegment, cachedSegment) { - if (cachedSegment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]) { - // In the FlightRouterState stored by the router, the page segment has the - // rendered search params appended to the name of the segment. In the - // prefetch cache, however, this is stored separately. So, when comparing - // the router's current FlightRouterState to the cached FlightRouterState, - // we need to make sure we compare both parts of the segment. - // TODO: This is not modeled clearly. We use the same type, - // FlightRouterState, for both the CacheNode tree _and_ the prefetch cache - // _and_ the server response format, when conceptually those are three - // different things and treated in different ways. We should encode more of - // this information into the type design so mistakes are less likely. - return currentSegment === (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["addSearchParamsIfPageSegment"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"], Object.fromEntries(new URLSearchParams(route.renderedSearch))); - } - // Non-page segments are compared using the same function as the server - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(cachedSegment, currentSegment); -} -// ----------------------------------------------------------------------------- -// The remainder of the module is a MinHeap implementation. Try not to put any -// logic below here unless it's related to the heap algorithm. We can extract -// this to a separate module if/when we need multiple kinds of heaps. -// ----------------------------------------------------------------------------- -function compareQueuePriority(a, b) { - // Since the queue is a MinHeap, this should return a positive number if b is - // higher priority than a, and a negative number if a is higher priority - // than b. - // `priority` is an integer, where higher numbers are higher priority. - const priorityDiff = b.priority - a.priority; - if (priorityDiff !== 0) { - return priorityDiff; - } - // If the priority is the same, check which phase the prefetch is in — is it - // prefetching the route tree, or the segments? Route trees are prioritized. - const phaseDiff = b.phase - a.phase; - if (phaseDiff !== 0) { - return phaseDiff; - } - // Finally, check the insertion order. `sortId` is an incrementing counter - // assigned to prefetches. We want to process the newest prefetches first. - return b.sortId - a.sortId; -} -function heapPush(heap, node) { - const index = heap.length; - heap.push(node); - node._heapIndex = index; - heapSiftUp(heap, node, index); -} -function heapPeek(heap) { - return heap.length === 0 ? null : heap[0]; -} -function heapPop(heap) { - if (heap.length === 0) { - return null; - } - const first = heap[0]; - first._heapIndex = -1; - const last = heap.pop(); - if (last !== first) { - heap[0] = last; - last._heapIndex = 0; - heapSiftDown(heap, last, 0); - } - return first; -} -function heapDelete(heap, node) { - const index = node._heapIndex; - if (index !== -1) { - node._heapIndex = -1; - if (heap.length !== 0) { - const last = heap.pop(); - if (last !== node) { - heap[index] = last; - last._heapIndex = index; - heapSiftDown(heap, last, index); - } - } - } -} -function heapResift(heap, node) { - const index = node._heapIndex; - if (index !== -1) { - if (index === 0) { - heapSiftDown(heap, node, 0); - } else { - const parentIndex = index - 1 >>> 1; - const parent = heap[parentIndex]; - if (compareQueuePriority(parent, node) > 0) { - // The parent is larger. Sift up. - heapSiftUp(heap, node, index); - } else { - // The parent is smaller (or equal). Sift down. - heapSiftDown(heap, node, index); - } - } - } -} -function heapSiftUp(heap, node, i) { - let index = i; - while(index > 0){ - const parentIndex = index - 1 >>> 1; - const parent = heap[parentIndex]; - if (compareQueuePriority(parent, node) > 0) { - // The parent is larger. Swap positions. - heap[parentIndex] = node; - node._heapIndex = parentIndex; - heap[index] = parent; - parent._heapIndex = index; - index = parentIndex; - } else { - // The parent is smaller. Exit. - return; - } - } -} -function heapSiftDown(heap, node, i) { - let index = i; - const length = heap.length; - const halfLength = length >>> 1; - while(index < halfLength){ - const leftIndex = (index + 1) * 2 - 1; - const left = heap[leftIndex]; - const rightIndex = leftIndex + 1; - const right = heap[rightIndex]; - // If the left or right node is smaller, swap with the smaller of those. - if (compareQueuePriority(left, node) < 0) { - if (rightIndex < length && compareQueuePriority(right, left) < 0) { - heap[index] = right; - right._heapIndex = index; - heap[rightIndex] = node; - node._heapIndex = rightIndex; - index = rightIndex; - } else { - heap[index] = left; - left._heapIndex = index; - heap[leftIndex] = node; - node._heapIndex = leftIndex; - index = leftIndex; - } - } else if (rightIndex < length && compareQueuePriority(right, node) < 0) { - heap[index] = right; - right._heapIndex = index; - heap[rightIndex] = node; - node._heapIndex = rightIndex; - index = rightIndex; - } else { - // Neither child is smaller. Exit. - return; - } - } -} //# sourceMappingURL=scheduler.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/links.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "IDLE_LINK_STATUS", - ()=>IDLE_LINK_STATUS, - "PENDING_LINK_STATUS", - ()=>PENDING_LINK_STATUS, - "mountFormInstance", - ()=>mountFormInstance, - "mountLinkInstance", - ()=>mountLinkInstance, - "onLinkVisibilityChanged", - ()=>onLinkVisibilityChanged, - "onNavigationIntent", - ()=>onNavigationIntent, - "pingVisibleLinks", - ()=>pingVisibleLinks, - "setLinkForCurrentNavigation", - ()=>setLinkForCurrentNavigation, - "unmountLinkForCurrentNavigation", - ()=>unmountLinkForCurrentNavigation, - "unmountPrefetchableInstance", - ()=>unmountPrefetchableInstance -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/scheduler.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -; -; -; -; -// Tracks the most recently navigated link instance. When null, indicates -// the current navigation was not initiated by a link click. -let linkForMostRecentNavigation = null; -const PENDING_LINK_STATUS = { - pending: true -}; -const IDLE_LINK_STATUS = { - pending: false -}; -function setLinkForCurrentNavigation(link) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startTransition"])(()=>{ - linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS); - link?.setOptimisticLinkStatus(PENDING_LINK_STATUS); - linkForMostRecentNavigation = link; - }); -} -function unmountLinkForCurrentNavigation(link) { - if (linkForMostRecentNavigation === link) { - linkForMostRecentNavigation = null; - } -} -// Use a WeakMap to associate a Link instance with its DOM element. This is -// used by the IntersectionObserver to track the link's visibility. -const prefetchable = typeof WeakMap === 'function' ? new WeakMap() : new Map(); -// A Set of the currently visible links. We re-prefetch visible links after a -// cache invalidation, or when the current URL changes. It's a separate data -// structure from the WeakMap above because only the visible links need to -// be enumerated. -const prefetchableAndVisible = new Set(); -// A single IntersectionObserver instance shared by all components. -const observer = typeof IntersectionObserver === 'function' ? new IntersectionObserver(handleIntersect, { - rootMargin: '200px' -}) : null; -function observeVisibility(element, instance) { - const existingInstance = prefetchable.get(element); - if (existingInstance !== undefined) { - // This shouldn't happen because each component should have its own - // anchor tag instance, but it's defensive coding to avoid a memory leak in - // case there's a logical error somewhere else. - unmountPrefetchableInstance(element); - } - // Only track prefetchable links that have a valid prefetch URL - prefetchable.set(element, instance); - if (observer !== null) { - observer.observe(element); - } -} -function coercePrefetchableUrl(href) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - return null; - } -} -function mountLinkInstance(element, href, router, fetchStrategy, prefetchEnabled, setOptimisticLinkStatus) { - if (prefetchEnabled) { - const prefetchURL = coercePrefetchableUrl(href); - if (prefetchURL !== null) { - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: prefetchURL.href, - setOptimisticLinkStatus - }; - // We only observe the link's visibility if it's prefetchable. For - // example, this excludes links to external URLs. - observeVisibility(element, instance); - return instance; - } - } - // If the link is not prefetchable, we still create an instance so we can - // track its optimistic state (i.e. useLinkStatus). - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: null, - setOptimisticLinkStatus - }; - return instance; -} -function mountFormInstance(element, href, router, fetchStrategy) { - const prefetchURL = coercePrefetchableUrl(href); - if (prefetchURL === null) { - // This href is not prefetchable, so we don't track it. - // TODO: We currently observe/unobserve a form every time its href changes. - // For Links, this isn't a big deal because the href doesn't usually change, - // but for forms it's extremely common. We should optimize this. - return; - } - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: prefetchURL.href, - setOptimisticLinkStatus: null - }; - observeVisibility(element, instance); -} -function unmountPrefetchableInstance(element) { - const instance = prefetchable.get(element); - if (instance !== undefined) { - prefetchable.delete(element); - prefetchableAndVisible.delete(instance); - const prefetchTask = instance.prefetchTask; - if (prefetchTask !== null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["cancelPrefetchTask"])(prefetchTask); - } - } - if (observer !== null) { - observer.unobserve(element); - } -} -function handleIntersect(entries) { - for (const entry of entries){ - // Some extremely old browsers or polyfills don't reliably support - // isIntersecting so we check intersectionRatio instead. (Do we care? Not - // really. But whatever this is fine.) - const isVisible = entry.intersectionRatio > 0; - onLinkVisibilityChanged(entry.target, isVisible); - } -} -function onLinkVisibilityChanged(element, isVisible) { - if ("TURBOPACK compile-time truthy", 1) { - // Prefetching on viewport is disabled in development for performance - // reasons, because it requires compiling the target page. - // TODO: Investigate re-enabling this. - return; - } - //TURBOPACK unreachable - ; - const instance = undefined; -} -function onNavigationIntent(element, unstable_upgradeToDynamicPrefetch) { - const instance = prefetchable.get(element); - if (instance === undefined) { - return; - } - // Prefetch the link on hover/touchstart. - if (instance !== undefined) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - rescheduleLinkPrefetch(instance, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Intent); - } -} -function rescheduleLinkPrefetch(instance, priority) { - // Ensures that app-router-instance is not compiled in the server bundle - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; -} -function pingVisibleLinks(nextUrl, tree) { - // For each currently visible link, cancel the existing prefetch task (if it - // exists) and schedule a new one. This is effectively the same as if all the - // visible links left and then re-entered the viewport. - // - // This is called when the Next-Url or the base tree changes, since those - // may affect the result of a prefetch task. It's also called after a - // cache invalidation. - for (const instance of prefetchableAndVisible){ - const task = instance.prefetchTask; - if (task !== null && !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isPrefetchTaskDirty"])(task, nextUrl, tree)) { - continue; - } - // Something changed. Cancel the existing prefetch task and schedule a - // new one. - if (task !== null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["cancelPrefetchTask"])(task); - } - const cacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheKey"])(instance.prefetchHref, nextUrl); - instance.prefetchTask = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["schedulePrefetchTask"])(cacheKey, tree, instance.fetchStrategy, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Default, null); - } -} //# sourceMappingURL=links.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createPromiseWithResolvers", - ()=>createPromiseWithResolvers -]); -function createPromiseWithResolvers() { - // Shim of Stage 4 Promise.withResolvers proposal - let resolve; - let reject; - const promise = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - return { - resolve: resolve, - reject: reject, - promise - }; -} //# sourceMappingURL=promise-with-resolvers.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/cache.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "EntryStatus", - ()=>EntryStatus, - "canNewFetchStrategyProvideMoreContent", - ()=>canNewFetchStrategyProvideMoreContent, - "convertRouteTreeToFlightRouterState", - ()=>convertRouteTreeToFlightRouterState, - "createDetachedSegmentCacheEntry", - ()=>createDetachedSegmentCacheEntry, - "fetchRouteOnCacheMiss", - ()=>fetchRouteOnCacheMiss, - "fetchSegmentOnCacheMiss", - ()=>fetchSegmentOnCacheMiss, - "fetchSegmentPrefetchesUsingDynamicRequest", - ()=>fetchSegmentPrefetchesUsingDynamicRequest, - "getCurrentCacheVersion", - ()=>getCurrentCacheVersion, - "getStaleTimeMs", - ()=>getStaleTimeMs, - "overwriteRevalidatingSegmentCacheEntry", - ()=>overwriteRevalidatingSegmentCacheEntry, - "pingInvalidationListeners", - ()=>pingInvalidationListeners, - "readOrCreateRevalidatingSegmentEntry", - ()=>readOrCreateRevalidatingSegmentEntry, - "readOrCreateRouteCacheEntry", - ()=>readOrCreateRouteCacheEntry, - "readOrCreateSegmentCacheEntry", - ()=>readOrCreateSegmentCacheEntry, - "readRouteCacheEntry", - ()=>readRouteCacheEntry, - "readSegmentCacheEntry", - ()=>readSegmentCacheEntry, - "requestOptimisticRouteCacheEntry", - ()=>requestOptimisticRouteCacheEntry, - "revalidateEntireCache", - ()=>revalidateEntireCache, - "upgradeToPendingSegment", - ()=>upgradeToPendingSegment, - "upsertSegmentEntry", - ()=>upsertSegmentEntry, - "waitForSegmentCacheEntry", - ()=>waitForSegmentCacheEntry -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/app-router-types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/scheduler.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/vary-path.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/app-build-id.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -// TODO: Rename this module to avoid confusion with other types of cache keys -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-map.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/flight-data-helpers.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/reducers/navigate-reducer.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$links$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/links.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -function getStaleTimeMs(staleTimeSeconds) { - return Math.max(staleTimeSeconds, 30) * 1000; -} -var EntryStatus = /*#__PURE__*/ function(EntryStatus) { - EntryStatus[EntryStatus["Empty"] = 0] = "Empty"; - EntryStatus[EntryStatus["Pending"] = 1] = "Pending"; - EntryStatus[EntryStatus["Fulfilled"] = 2] = "Fulfilled"; - EntryStatus[EntryStatus["Rejected"] = 3] = "Rejected"; - return EntryStatus; -}({}); -const isOutputExportMode = ("TURBOPACK compile-time value", "development") === 'production' && ("TURBOPACK compile-time value", void 0) === 'export'; -const MetadataOnlyRequestTree = [ - '', - {}, - null, - 'metadata-only' -]; -let routeCacheMap = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheMap"])(); -let segmentCacheMap = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheMap"])(); -// All invalidation listeners for the whole cache are tracked in single set. -// Since we don't yet support tag or path-based invalidation, there's no point -// tracking them any more granularly than this. Once we add granular -// invalidation, that may change, though generally the model is to just notify -// the listeners and allow the caller to poll the prefetch cache with a new -// prefetch task if desired. -let invalidationListeners = null; -// Incrementing counter used to track cache invalidations. -let currentCacheVersion = 0; -function getCurrentCacheVersion() { - return currentCacheVersion; -} -function revalidateEntireCache(nextUrl, tree) { - // Increment the current cache version. This does not eagerly evict anything - // from the cache, but because all the entries are versioned, and we check - // the version when reading from the cache, this effectively causes all - // entries to be evicted lazily. We do it lazily because in the future, - // actions like revalidateTag or refresh will not evict the entire cache, - // but rather some subset of the entries. - currentCacheVersion++; - // Start a cooldown before re-prefetching to allow CDN cache propagation. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startRevalidationCooldown"])(); - // Prefetch all the currently visible links again, to re-fill the cache. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$links$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["pingVisibleLinks"])(nextUrl, tree); - // Similarly, notify all invalidation listeners (i.e. those passed to - // `router.prefetch(onInvalidate)`), so they can trigger a new prefetch - // if needed. - pingInvalidationListeners(nextUrl, tree); -} -function attachInvalidationListener(task) { - // This function is called whenever a prefetch task reads a cache entry. If - // the task has an onInvalidate function associated with it — i.e. the one - // optionally passed to router.prefetch(onInvalidate) — then we attach that - // listener to the every cache entry that the task reads. Then, if an entry - // is invalidated, we call the function. - if (task.onInvalidate !== null) { - if (invalidationListeners === null) { - invalidationListeners = new Set([ - task - ]); - } else { - invalidationListeners.add(task); - } - } -} -function notifyInvalidationListener(task) { - const onInvalidate = task.onInvalidate; - if (onInvalidate !== null) { - // Clear the callback from the task object to guarantee it's not called more - // than once. - task.onInvalidate = null; - // This is a user-space function, so we must wrap in try/catch. - try { - onInvalidate(); - } catch (error) { - if (typeof reportError === 'function') { - reportError(error); - } else { - console.error(error); - } - } - } -} -function pingInvalidationListeners(nextUrl, tree) { - // The rough equivalent of pingVisibleLinks, but for onInvalidate callbacks. - // This is called when the Next-Url or the base tree changes, since those - // may affect the result of a prefetch task. It's also called after a - // cache invalidation. - if (invalidationListeners !== null) { - const tasks = invalidationListeners; - invalidationListeners = null; - for (const task of tasks){ - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isPrefetchTaskDirty"])(task, nextUrl, tree)) { - notifyInvalidationListener(task); - } - } - } -} -function readRouteCacheEntry(now, key) { - const varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRouteVaryPath"])(key.pathname, key.search, key.nextUrl); - const isRevalidation = false; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getFromCacheMap"])(now, getCurrentCacheVersion(), routeCacheMap, varyPath, isRevalidation); -} -function readSegmentCacheEntry(now, varyPath) { - const isRevalidation = false; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getFromCacheMap"])(now, getCurrentCacheVersion(), segmentCacheMap, varyPath, isRevalidation); -} -function readRevalidatingSegmentCacheEntry(now, varyPath) { - const isRevalidation = true; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getFromCacheMap"])(now, getCurrentCacheVersion(), segmentCacheMap, varyPath, isRevalidation); -} -function waitForSegmentCacheEntry(pendingEntry) { - // Because the entry is pending, there's already a in-progress request. - // Attach a promise to the entry that will resolve when the server responds. - let promiseWithResolvers = pendingEntry.promise; - if (promiseWithResolvers === null) { - promiseWithResolvers = pendingEntry.promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - } else { - // There's already a promise we can use - } - return promiseWithResolvers.promise; -} -function readOrCreateRouteCacheEntry(now, task, key) { - attachInvalidationListener(task); - const existingEntry = readRouteCacheEntry(now, key); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const pendingEntry = { - canonicalUrl: null, - status: 0, - blockedTasks: null, - tree: null, - metadata: null, - // This is initialized to true because we don't know yet whether the route - // could be intercepted. It's only set to false once we receive a response - // from the server. - couldBeIntercepted: true, - // Similarly, we don't yet know if the route supports PPR. - isPPREnabled: false, - renderedSearch: null, - // Map-related fields - ref: null, - size: 0, - // Since this is an empty entry, there's no reason to ever evict it. It will - // be updated when the data is populated. - staleAt: Infinity, - version: getCurrentCacheVersion() - }; - const varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRouteVaryPath"])(key.pathname, key.search, key.nextUrl); - const isRevalidation = false; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(routeCacheMap, varyPath, pendingEntry, isRevalidation); - return pendingEntry; -} -function requestOptimisticRouteCacheEntry(now, requestedUrl, nextUrl) { - // This function is called during a navigation when there was no matching - // route tree in the prefetch cache. Before de-opting to a blocking, - // unprefetched navigation, we will first attempt to construct an "optimistic" - // route tree by checking the cache for similar routes. - // - // Check if there's a route with the same pathname, but with different - // search params. We can then base our optimistic route tree on this entry. - // - // Conceptually, we are simulating what would happen if we did perform a - // prefetch the requested URL, under the assumption that the server will - // not redirect or rewrite the request in a different manner than the - // base route tree. This assumption might not hold, in which case we'll have - // to recover when we perform the dynamic navigation request. However, this - // is what would happen if a route were dynamically rewritten/redirected - // in between the prefetch and the navigation. So the logic needs to exist - // to handle this case regardless. - // Look for a route with the same pathname, but with an empty search string. - // TODO: There's nothing inherently special about the empty search string; - // it's chosen somewhat arbitrarily, with the rationale that it's the most - // likely one to exist. But we should update this to match _any_ search - // string. The plan is to generalize this logic alongside other improvements - // related to "fallback" cache entries. - const requestedSearch = requestedUrl.search; - if (requestedSearch === '') { - // The caller would have already checked if a route with an empty search - // string is in the cache. So we can bail out here. - return null; - } - const urlWithoutSearchParams = new URL(requestedUrl); - urlWithoutSearchParams.search = ''; - const routeWithNoSearchParams = readRouteCacheEntry(now, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheKey"])(urlWithoutSearchParams.href, nextUrl)); - if (routeWithNoSearchParams === null || routeWithNoSearchParams.status !== 2) { - // Bail out of constructing an optimistic route tree. This will result in - // a blocking, unprefetched navigation. - return null; - } - // Now we have a base route tree we can "patch" with our optimistic values. - // Optimistically assume that redirects for the requested pathname do - // not vary on the search string. Therefore, if the base route was - // redirected to a different search string, then the optimistic route - // should be redirected to the same search string. Otherwise, we use - // the requested search string. - const canonicalUrlForRouteWithNoSearchParams = new URL(routeWithNoSearchParams.canonicalUrl, requestedUrl.origin); - const optimisticCanonicalSearch = canonicalUrlForRouteWithNoSearchParams.search !== '' ? canonicalUrlForRouteWithNoSearchParams.search : requestedSearch; - // Similarly, optimistically assume that rewrites for the requested - // pathname do not vary on the search string. Therefore, if the base - // route was rewritten to a different search string, then the optimistic - // route should be rewritten to the same search string. Otherwise, we use - // the requested search string. - const optimisticRenderedSearch = routeWithNoSearchParams.renderedSearch !== '' ? routeWithNoSearchParams.renderedSearch : requestedSearch; - const optimisticUrl = new URL(routeWithNoSearchParams.canonicalUrl, location.origin); - optimisticUrl.search = optimisticCanonicalSearch; - const optimisticCanonicalUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(optimisticUrl); - const optimisticRouteTree = createOptimisticRouteTree(routeWithNoSearchParams.tree, optimisticRenderedSearch); - const optimisticMetadataTree = createOptimisticRouteTree(routeWithNoSearchParams.metadata, optimisticRenderedSearch); - // Clone the base route tree, and override the relevant fields with our - // optimistic values. - const optimisticEntry = { - canonicalUrl: optimisticCanonicalUrl, - status: 2, - // This isn't cloned because it's instance-specific - blockedTasks: null, - tree: optimisticRouteTree, - metadata: optimisticMetadataTree, - couldBeIntercepted: routeWithNoSearchParams.couldBeIntercepted, - isPPREnabled: routeWithNoSearchParams.isPPREnabled, - // Override the rendered search with the optimistic value. - renderedSearch: optimisticRenderedSearch, - // Map-related fields - ref: null, - size: 0, - staleAt: routeWithNoSearchParams.staleAt, - version: routeWithNoSearchParams.version - }; - // Do not insert this entry into the cache. It only exists so we can - // perform the current navigation. Just return it to the caller. - return optimisticEntry; -} -function createOptimisticRouteTree(tree, newRenderedSearch) { - // Create a new route tree that identical to the original one except for - // the rendered search string, which is contained in the vary path. - let clonedSlots = null; - const originalSlots = tree.slots; - if (originalSlots !== null) { - clonedSlots = {}; - for(const parallelRouteKey in originalSlots){ - const childTree = originalSlots[parallelRouteKey]; - clonedSlots[parallelRouteKey] = createOptimisticRouteTree(childTree, newRenderedSearch); - } - } - // We only need to clone the vary path if the route is a page. - if (tree.isPage) { - return { - requestKey: tree.requestKey, - segment: tree.segment, - varyPath: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["clonePageVaryPathWithNewSearchParams"])(tree.varyPath, newRenderedSearch), - isPage: true, - slots: clonedSlots, - isRootLayout: tree.isRootLayout, - hasLoadingBoundary: tree.hasLoadingBoundary, - hasRuntimePrefetch: tree.hasRuntimePrefetch - }; - } - return { - requestKey: tree.requestKey, - segment: tree.segment, - varyPath: tree.varyPath, - isPage: false, - slots: clonedSlots, - isRootLayout: tree.isRootLayout, - hasLoadingBoundary: tree.hasLoadingBoundary, - hasRuntimePrefetch: tree.hasRuntimePrefetch - }; -} -function readOrCreateSegmentCacheEntry(now, fetchStrategy, route, tree) { - const existingEntry = readSegmentCacheEntry(now, tree.varyPath); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const varyPathForRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = false; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function readOrCreateRevalidatingSegmentEntry(now, fetchStrategy, route, tree) { - // This function is called when we've already confirmed that a particular - // segment is cached, but we want to perform another request anyway in case it - // returns more complete and/or fresher data than we already have. The logic - // for deciding whether to replace the existing entry is handled elsewhere; - // this function just handles retrieving a cache entry that we can use to - // track the revalidation. - // - // The reason revalidations are stored in the cache is because we need to be - // able to dedupe multiple revalidation requests. The reason they have to be - // handled specially is because we shouldn't overwrite a "normal" entry if - // one exists at the same keypath. So, for each internal cache location, there - // is a special "revalidation" slot that is used solely for this purpose. - // - // You can think of it as if all the revalidation entries were stored in a - // separate cache map from the canonical entries, and then transfered to the - // canonical cache map once the request is complete — this isn't how it's - // actually implemented, since it's more efficient to store them in the same - // data structure as the normal entries, but that's how it's modeled - // conceptually. - // TODO: Once we implement Fallback behavior for params, where an entry is - // re-keyed based on response information, we'll need to account for the - // possibility that the keypath of the previous entry is more generic than - // the keypath of the revalidating entry. In other words, the server could - // return a less generic entry upon revalidation. For now, though, this isn't - // a concern because the keypath is based solely on the prefetch strategy, - // not on data contained in the response. - const existingEntry = readRevalidatingSegmentCacheEntry(now, tree.varyPath); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const varyPathForRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = true; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function overwriteRevalidatingSegmentCacheEntry(fetchStrategy, route, tree) { - // This function is called when we've already decided to replace an existing - // revalidation entry. Create a new entry and write it into the cache, - // overwriting the previous value. - const varyPathForRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = true; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function upsertSegmentEntry(now, varyPath, candidateEntry) { - // We have a new entry that has not yet been inserted into the cache. Before - // we do so, we need to confirm whether it takes precedence over the existing - // entry (if one exists). - // TODO: We should not upsert an entry if its key was invalidated in the time - // since the request was made. We can do that by passing the "owner" entry to - // this function and confirming it's the same as `existingEntry`. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isValueExpired"])(now, getCurrentCacheVersion(), candidateEntry)) { - // The entry is expired. We cannot upsert it. - return null; - } - const existingEntry = readSegmentCacheEntry(now, varyPath); - if (existingEntry !== null) { - // Don't replace a more specific segment with a less-specific one. A case where this - // might happen is if the existing segment was fetched via - // ``. - if (// than the segment we already have in the cache, so it can't have more content. - candidateEntry.fetchStrategy !== existingEntry.fetchStrategy && !canNewFetchStrategyProvideMoreContent(existingEntry.fetchStrategy, candidateEntry.fetchStrategy) || // The existing entry isn't partial, but the new one is. - // (TODO: can this be true if `candidateEntry.fetchStrategy >= existingEntry.fetchStrategy`?) - !existingEntry.isPartial && candidateEntry.isPartial) { - // We're going to leave revalidating entry in the cache so that it doesn't - // get revalidated again unnecessarily. Downgrade the Fulfilled entry to - // Rejected and null out the data so it can be garbage collected. We leave - // `staleAt` intact to prevent subsequent revalidation attempts only until - // the entry expires. - const rejectedEntry = candidateEntry; - rejectedEntry.status = 3; - rejectedEntry.loading = null; - rejectedEntry.rsc = null; - return null; - } - // Evict the existing entry from the cache. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["deleteFromCacheMap"])(existingEntry); - } - const isRevalidation = false; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(segmentCacheMap, varyPath, candidateEntry, isRevalidation); - return candidateEntry; -} -function createDetachedSegmentCacheEntry(staleAt) { - const emptyEntry = { - status: 0, - // Default to assuming the fetch strategy will be PPR. This will be updated - // when a fetch is actually initiated. - fetchStrategy: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR, - rsc: null, - loading: null, - isPartial: true, - promise: null, - // Map-related fields - ref: null, - size: 0, - staleAt, - version: 0 - }; - return emptyEntry; -} -function upgradeToPendingSegment(emptyEntry, fetchStrategy) { - const pendingEntry = emptyEntry; - pendingEntry.status = 1; - pendingEntry.fetchStrategy = fetchStrategy; - if (fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full) { - // We can assume the response will contain the full segment data. Set this - // to false so we know it's OK to omit this segment from any navigation - // requests that may happen while the data is still pending. - pendingEntry.isPartial = false; - } - // Set the version here, since this is right before the request is initiated. - // The next time the global cache version is incremented, the entry will - // effectively be evicted. This happens before initiating the request, rather - // than when receiving the response, because it's guaranteed to happen - // before the data is read on the server. - pendingEntry.version = getCurrentCacheVersion(); - return pendingEntry; -} -function pingBlockedTasks(entry) { - const blockedTasks = entry.blockedTasks; - if (blockedTasks !== null) { - for (const task of blockedTasks){ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["pingPrefetchTask"])(task); - } - entry.blockedTasks = null; - } -} -function fulfillRouteCacheEntry(entry, tree, metadataVaryPath, staleAt, couldBeIntercepted, canonicalUrl, renderedSearch, isPPREnabled) { - // The Head is not actually part of the route tree, but other than that, it's - // fetched and cached like a segment. Some functions expect a RouteTree - // object, so rather than fork the logic in all those places, we use this - // "fake" one. - const metadata = { - requestKey: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HEAD_REQUEST_KEY"], - segment: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HEAD_REQUEST_KEY"], - varyPath: metadataVaryPath, - // The metadata isn't really a "page" (though it isn't really a "segment" - // either) but for the purposes of how this field is used, it behaves like - // one. If this logic ever gets more complex we can change this to an enum. - isPage: true, - slots: null, - isRootLayout: false, - hasLoadingBoundary: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SubtreeHasNoLoadingBoundary, - hasRuntimePrefetch: false - }; - const fulfilledEntry = entry; - fulfilledEntry.status = 2; - fulfilledEntry.tree = tree; - fulfilledEntry.metadata = metadata; - fulfilledEntry.staleAt = staleAt; - fulfilledEntry.couldBeIntercepted = couldBeIntercepted; - fulfilledEntry.canonicalUrl = canonicalUrl; - fulfilledEntry.renderedSearch = renderedSearch; - fulfilledEntry.isPPREnabled = isPPREnabled; - pingBlockedTasks(entry); - return fulfilledEntry; -} -function fulfillSegmentCacheEntry(segmentCacheEntry, rsc, loading, staleAt, isPartial) { - const fulfilledEntry = segmentCacheEntry; - fulfilledEntry.status = 2; - fulfilledEntry.rsc = rsc; - fulfilledEntry.loading = loading; - fulfilledEntry.staleAt = staleAt; - fulfilledEntry.isPartial = isPartial; - // Resolve any listeners that were waiting for this data. - if (segmentCacheEntry.promise !== null) { - segmentCacheEntry.promise.resolve(fulfilledEntry); - // Free the promise for garbage collection. - fulfilledEntry.promise = null; - } - return fulfilledEntry; -} -function rejectRouteCacheEntry(entry, staleAt) { - const rejectedEntry = entry; - rejectedEntry.status = 3; - rejectedEntry.staleAt = staleAt; - pingBlockedTasks(entry); -} -function rejectSegmentCacheEntry(entry, staleAt) { - const rejectedEntry = entry; - rejectedEntry.status = 3; - rejectedEntry.staleAt = staleAt; - if (entry.promise !== null) { - // NOTE: We don't currently propagate the reason the prefetch was canceled - // but we could by accepting a `reason` argument. - entry.promise.resolve(null); - entry.promise = null; - } -} -function convertRootTreePrefetchToRouteTree(rootTree, renderedPathname, renderedSearch, acc) { - // Remove trailing and leading slashes - const pathnameParts = renderedPathname.split('/').filter((p)=>p !== ''); - const index = 0; - const rootSegment = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"]; - return convertTreePrefetchToRouteTree(rootTree.tree, rootSegment, null, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"], pathnameParts, index, renderedSearch, acc); -} -function convertTreePrefetchToRouteTree(prefetch, segment, partialVaryPath, requestKey, pathnameParts, pathnamePartsIndex, renderedSearch, acc) { - // Converts the route tree sent by the server into the format used by the - // cache. The cached version of the tree includes additional fields, such as a - // cache key for each segment. Since this is frequently accessed, we compute - // it once instead of on every access. This same cache key is also used to - // request the segment from the server. - let slots = null; - let isPage; - let varyPath; - const prefetchSlots = prefetch.slots; - if (prefetchSlots !== null) { - isPage = false; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeLayoutVaryPath"])(requestKey, partialVaryPath); - slots = {}; - for(let parallelRouteKey in prefetchSlots){ - const childPrefetch = prefetchSlots[parallelRouteKey]; - const childParamName = childPrefetch.name; - const childParamType = childPrefetch.paramType; - const childServerSentParamKey = childPrefetch.paramKey; - let childDoesAppearInURL; - let childSegment; - let childPartialVaryPath; - if (childParamType !== null) { - // This segment is parameterized. Get the param from the pathname. - const childParamValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["parseDynamicParamFromURLPart"])(childParamType, pathnameParts, pathnamePartsIndex); - // Assign a cache key to the segment, based on the param value. In the - // pre-Segment Cache implementation, the server computes this and sends - // it in the body of the response. In the Segment Cache implementation, - // the server sends an empty string and we fill it in here. - // TODO: We're intentionally not adding the search param to page - // segments here; it's tracked separately and added back during a read. - // This would clearer if we waited to construct the segment until it's - // read from the cache, since that's effectively what we're - // doing anyway. - const childParamKey = // cacheComponents is enabled. - childServerSentParamKey !== null ? childServerSentParamKey : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCacheKeyForDynamicParam"])(childParamValue, ''); - childPartialVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["appendLayoutVaryPath"])(partialVaryPath, childParamKey); - childSegment = [ - childParamName, - childParamKey, - childParamType - ]; - childDoesAppearInURL = true; - } else { - // This segment does not have a param. Inherit the partial vary path of - // the parent. - childPartialVaryPath = partialVaryPath; - childSegment = childParamName; - childDoesAppearInURL = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["doesStaticSegmentAppearInURL"])(childParamName); - } - // Only increment the index if the segment appears in the URL. If it's a - // "virtual" segment, like a route group, it remains the same. - const childPathnamePartsIndex = childDoesAppearInURL ? pathnamePartsIndex + 1 : pathnamePartsIndex; - const childRequestKeyPart = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createSegmentRequestKeyPart"])(childSegment); - const childRequestKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["appendSegmentRequestKeyPart"])(requestKey, parallelRouteKey, childRequestKeyPart); - slots[parallelRouteKey] = convertTreePrefetchToRouteTree(childPrefetch, childSegment, childPartialVaryPath, childRequestKey, pathnameParts, childPathnamePartsIndex, renderedSearch, acc); - } - } else { - if (requestKey.endsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - // This is a page segment. - isPage = true; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizePageVaryPath"])(requestKey, renderedSearch, partialVaryPath); - // The metadata "segment" is not part the route tree, but it has the same - // conceptual params as a page segment. Write the vary path into the - // accumulator object. If there are multiple parallel pages, we use the - // first one. Which page we choose is arbitrary as long as it's - // consistently the same one every time every time. See - // finalizeMetadataVaryPath for more details. - if (acc.metadataVaryPath === null) { - acc.metadataVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeMetadataVaryPath"])(requestKey, renderedSearch, partialVaryPath); - } - } else { - // This is a layout segment. - isPage = false; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeLayoutVaryPath"])(requestKey, partialVaryPath); - } - } - return { - requestKey, - segment, - varyPath, - // TODO: Cheating the type system here a bit because TypeScript can't tell - // that the type of isPage and varyPath are consistent. The fix would be to - // create separate constructors and call the appropriate one from each of - // the branches above. Just seems a bit overkill only for one field so I'll - // leave it as-is for now. If isPage were wrong it would break the behavior - // and we'd catch it quickly, anyway. - isPage: isPage, - slots, - isRootLayout: prefetch.isRootLayout, - // This field is only relevant to dynamic routes. For a PPR/static route, - // there's always some partial loading state we can fetch. - hasLoadingBoundary: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SegmentHasLoadingBoundary, - hasRuntimePrefetch: prefetch.hasRuntimePrefetch - }; -} -function convertRootFlightRouterStateToRouteTree(flightRouterState, renderedSearch, acc) { - return convertFlightRouterStateToRouteTree(flightRouterState, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"], null, renderedSearch, acc); -} -function convertFlightRouterStateToRouteTree(flightRouterState, requestKey, parentPartialVaryPath, renderedSearch, acc) { - const originalSegment = flightRouterState[0]; - let segment; - let partialVaryPath; - let isPage; - let varyPath; - if (Array.isArray(originalSegment)) { - isPage = false; - const paramCacheKey = originalSegment[1]; - partialVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["appendLayoutVaryPath"])(parentPartialVaryPath, paramCacheKey); - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeLayoutVaryPath"])(requestKey, partialVaryPath); - segment = originalSegment; - } else { - // This segment does not have a param. Inherit the partial vary path of - // the parent. - partialVaryPath = parentPartialVaryPath; - if (requestKey.endsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - // This is a page segment. - isPage = true; - // The navigation implementation expects the search params to be included - // in the segment. However, in the case of a static response, the search - // params are omitted. So the client needs to add them back in when reading - // from the Segment Cache. - // - // For consistency, we'll do this for dynamic responses, too. - // - // TODO: We should move search params out of FlightRouterState and handle - // them entirely on the client, similar to our plan for dynamic params. - segment = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizePageVaryPath"])(requestKey, renderedSearch, partialVaryPath); - // The metadata "segment" is not part the route tree, but it has the same - // conceptual params as a page segment. Write the vary path into the - // accumulator object. If there are multiple parallel pages, we use the - // first one. Which page we choose is arbitrary as long as it's - // consistently the same one every time every time. See - // finalizeMetadataVaryPath for more details. - if (acc.metadataVaryPath === null) { - acc.metadataVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeMetadataVaryPath"])(requestKey, renderedSearch, partialVaryPath); - } - } else { - // This is a layout segment. - isPage = false; - segment = originalSegment; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeLayoutVaryPath"])(requestKey, partialVaryPath); - } - } - let slots = null; - const parallelRoutes = flightRouterState[1]; - for(let parallelRouteKey in parallelRoutes){ - const childRouterState = parallelRoutes[parallelRouteKey]; - const childSegment = childRouterState[0]; - // TODO: Eventually, the param values will not be included in the response - // from the server. We'll instead fill them in on the client by parsing - // the URL. This is where we'll do that. - const childRequestKeyPart = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createSegmentRequestKeyPart"])(childSegment); - const childRequestKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["appendSegmentRequestKeyPart"])(requestKey, parallelRouteKey, childRequestKeyPart); - const childTree = convertFlightRouterStateToRouteTree(childRouterState, childRequestKey, partialVaryPath, renderedSearch, acc); - if (slots === null) { - slots = { - [parallelRouteKey]: childTree - }; - } else { - slots[parallelRouteKey] = childTree; - } - } - return { - requestKey, - segment, - varyPath, - // TODO: Cheating the type system here a bit because TypeScript can't tell - // that the type of isPage and varyPath are consistent. The fix would be to - // create separate constructors and call the appropriate one from each of - // the branches above. Just seems a bit overkill only for one field so I'll - // leave it as-is for now. If isPage were wrong it would break the behavior - // and we'd catch it quickly, anyway. - isPage: isPage, - slots, - isRootLayout: flightRouterState[4] === true, - hasLoadingBoundary: flightRouterState[5] !== undefined ? flightRouterState[5] : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SubtreeHasNoLoadingBoundary, - // Non-static tree responses are only used by apps that haven't adopted - // Cache Components. So this is always false. - hasRuntimePrefetch: false - }; -} -function convertRouteTreeToFlightRouterState(routeTree) { - const parallelRoutes = {}; - if (routeTree.slots !== null) { - for(const parallelRouteKey in routeTree.slots){ - parallelRoutes[parallelRouteKey] = convertRouteTreeToFlightRouterState(routeTree.slots[parallelRouteKey]); - } - } - const flightRouterState = [ - routeTree.segment, - parallelRoutes, - null, - null, - routeTree.isRootLayout - ]; - return flightRouterState; -} -async function fetchRouteOnCacheMiss(entry, task, key) { - // This function is allowed to use async/await because it contains the actual - // fetch that gets issued on a cache miss. Notice it writes the result to the - // cache entry directly, rather than return data that is then written by - // the caller. - const pathname = key.pathname; - const search = key.search; - const nextUrl = key.nextUrl; - const segmentPath = '/_tree'; - const headers = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_SEGMENT_PREFETCH_HEADER"]]: segmentPath - }; - if (nextUrl !== null) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]] = nextUrl; - } - try { - const url = new URL(pathname + search, location.origin); - let response; - let urlAfterRedirects; - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - // "Server" mode. We can use request headers instead of the pathname. - // TODO: The eventual plan is to get rid of our custom request headers and - // encode everything into the URL, using a similar strategy to the - // "output: export" block above. - response = await fetchPrefetchResponse(url, headers); - urlAfterRedirects = response !== null && response.redirected ? new URL(response.url) : url; - } - if (!response || !response.ok || // 204 is a Cache miss. Though theoretically this shouldn't happen when - // PPR is enabled, because we always respond to route tree requests, even - // if it needs to be blockingly generated on demand. - response.status === 204 || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - // TODO: The canonical URL is the href without the origin. I think - // historically the reason for this is because the initial canonical URL - // gets passed as a prop to the top-level React component, which means it - // needs to be computed during SSR. If it were to include the origin, it - // would need to always be same as location.origin on the client, to prevent - // a hydration mismatch. To sidestep this complexity, we omit the origin. - // - // However, since this is neither a native URL object nor a fully qualified - // URL string, we need to be careful about how we use it. To prevent subtle - // mistakes, we should create a special type for it, instead of just string. - // Or, we should just use a (readonly) URL object instead. The type of the - // prop that we pass to seed the initial state does not need to be the same - // type as the state itself. - const canonicalUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(urlAfterRedirects); - // Check whether the response varies based on the Next-Url header. - const varyHeader = response.headers.get('vary'); - const couldBeIntercepted = varyHeader !== null && varyHeader.includes(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]); - // Track when the network connection closes. - const closed = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - // This checks whether the response was served from the per-segment cache, - // rather than the old prefetching flow. If it fails, it implies that PPR - // is disabled on this route. - const routeIsPPREnabled = response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"]) === '2' || // In output: "export" mode, we can't rely on response headers. But if we - // receive a well-formed response, we can assume it's a static response, - // because all data is static in this mode. - isOutputExportMode; - if (routeIsPPREnabled) { - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setSizeInCacheMap"])(entry, size); - }); - const serverData = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromNextReadableStream"])(prefetchStream, headers); - if (serverData.buildId !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - // TODO: We should cache the fact that this is an MPA navigation. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - // Get the params that were used to render the target page. These may - // be different from the params in the request URL, if the page - // was rewritten. - const renderedPathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedPathname"])(response); - const renderedSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(response); - // Convert the server-sent data into the RouteTree format used by the - // client cache. - // - // During this traversal, we accumulate additional data into this - // "accumulator" object. - const acc = { - metadataVaryPath: null - }; - const routeTree = convertRootTreePrefetchToRouteTree(serverData, renderedPathname, renderedSearch, acc); - const metadataVaryPath = acc.metadataVaryPath; - if (metadataVaryPath === null) { - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - const staleTimeMs = getStaleTimeMs(serverData.staleTime); - fulfillRouteCacheEntry(entry, routeTree, metadataVaryPath, Date.now() + staleTimeMs, couldBeIntercepted, canonicalUrl, renderedSearch, routeIsPPREnabled); - } else { - // PPR is not enabled for this route. The server responds with a - // different format (FlightRouterState) that we need to convert. - // TODO: We will unify the responses eventually. I'm keeping the types - // separate for now because FlightRouterState has so many - // overloaded concerns. - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setSizeInCacheMap"])(entry, size); - }); - const serverData = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromNextReadableStream"])(prefetchStream, headers); - if (serverData.b !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - // TODO: We should cache the fact that this is an MPA navigation. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - writeDynamicTreeResponseIntoCache(Date.now(), task, // using the LoadingBoundary fetch strategy, so mark their cache entries accordingly. - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary, response, serverData, entry, couldBeIntercepted, canonicalUrl, routeIsPPREnabled); - } - if (!couldBeIntercepted) { - // This route will never be intercepted. So we can use this entry for all - // requests to this route, regardless of the Next-Url header. This works - // because when reading the cache we always check for a valid - // non-intercepted entry first. - // Re-key the entry. The `set` implementation handles removing it from - // its previous position in the cache. We don't need to do anything to - // update the LRU, because the entry is already in it. - // TODO: Treat this as an upsert — should check if an entry already - // exists at the new keypath, and if so, whether we should keep that - // one instead. - const fulfilledVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getFulfilledRouteVaryPath"])(pathname, search, nextUrl, couldBeIntercepted); - const isRevalidation = false; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(routeCacheMap, fulfilledVaryPath, entry, isRevalidation); - } - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - return { - value: null, - closed: closed.promise - }; - } catch (error) { - // Either the connection itself failed, or something bad happened while - // decoding the response. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } -} -async function fetchSegmentOnCacheMiss(route, segmentCacheEntry, routeKey, tree) { - // This function is allowed to use async/await because it contains the actual - // fetch that gets issued on a cache miss. Notice it writes the result to the - // cache entry directly, rather than return data that is then written by - // the caller. - // - // Segment fetches are non-blocking so we don't need to ping the scheduler - // on completion. - // Use the canonical URL to request the segment, not the original URL. These - // are usually the same, but the canonical URL will be different if the route - // tree response was redirected. To avoid an extra waterfall on every segment - // request, we pass the redirected URL instead of the original one. - const url = new URL(route.canonicalUrl, location.origin); - const nextUrl = routeKey.nextUrl; - const requestKey = tree.requestKey; - const normalizedRequestKey = requestKey === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"] ? // `_index` instead of as an empty string. This should be treated as - // an implementation detail and not as a stable part of the protocol. - // It just needs to match the equivalent logic that happens when - // prerendering the responses. It should not leak outside of Next.js. - '/_index' : requestKey; - const headers = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_SEGMENT_PREFETCH_HEADER"]]: normalizedRequestKey - }; - if (nextUrl !== null) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]] = nextUrl; - } - const requestUrl = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : url; - try { - const response = await fetchPrefetchResponse(requestUrl, headers); - if (!response || !response.ok || response.status === 204 || // Cache miss - // This checks whether the response was served from the per-segment cache, - // rather than the old prefetching flow. If it fails, it implies that PPR - // is disabled on this route. Theoretically this should never happen - // because we only issue requests for segments once we've verified that - // the route supports PPR. - response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"]) !== '2' && // In output: "export" mode, we can't rely on response headers. But if - // we receive a well-formed response, we can assume it's a static - // response, because all data is static in this mode. - !isOutputExportMode || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } - // Track when the network connection closes. - const closed = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - // Wrap the original stream in a new stream that never closes. That way the - // Flight client doesn't error if there's a hanging promise. - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setSizeInCacheMap"])(segmentCacheEntry, size); - }); - const serverData = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromNextReadableStream"])(prefetchStream, headers); - if (serverData.buildId !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } - return { - value: fulfillSegmentCacheEntry(segmentCacheEntry, serverData.rsc, serverData.loading, // So we use the stale time of the route. - route.staleAt, serverData.isPartial), - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - closed: closed.promise - }; - } catch (error) { - // Either the connection itself failed, or something bad happened while - // decoding the response. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } -} -async function fetchSegmentPrefetchesUsingDynamicRequest(task, route, fetchStrategy, dynamicRequestTree, spawnedEntries) { - const key = task.key; - const url = new URL(route.canonicalUrl, location.origin); - const nextUrl = key.nextUrl; - if (spawnedEntries.size === 1 && spawnedEntries.has(route.metadata.requestKey)) { - // The only thing pending is the head. Instruct the server to - // skip over everything else. - dynamicRequestTree = MetadataOnlyRequestTree; - } - const headers = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STATE_TREE_HEADER"]]: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["prepareFlightRouterStateForRequest"])(dynamicRequestTree) - }; - if (nextUrl !== null) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]] = nextUrl; - } - switch(fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - { - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]] = '2'; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]] = '1'; - break; - } - default: - { - fetchStrategy; - } - } - try { - const response = await fetchPrefetchResponse(url, headers); - if (!response || !response.ok || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } - const renderedSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(response); - if (renderedSearch !== route.renderedSearch) { - // The search params that were used to render the target page are - // different from the search params in the request URL. This only happens - // when there's a dynamic rewrite in between the tree prefetch and the - // data prefetch. - // TODO: For now, since this is an edge case, we reject the prefetch, but - // the proper way to handle this is to evict the stale route tree entry - // then fill the cache with the new response. - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } - // Track when the network connection closes. - const closed = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - let fulfilledEntries = null; - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(totalBytesReceivedSoFar) { - // When processing a dynamic response, we don't know how large each - // individual segment is, so approximate by assiging each segment - // the average of the total response size. - if (fulfilledEntries === null) { - // Haven't received enough data yet to know which segments - // were included. - return; - } - const averageSize = totalBytesReceivedSoFar / fulfilledEntries.length; - for (const entry of fulfilledEntries){ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setSizeInCacheMap"])(entry, averageSize); - } - }); - const serverData = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromNextReadableStream"])(prefetchStream, headers); - const isResponsePartial = fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime ? serverData.rp?.[0] === true : false; - // Aside from writing the data into the cache, this function also returns - // the entries that were fulfilled, so we can streamingly update their sizes - // in the LRU as more data comes in. - fulfilledEntries = writeDynamicRenderResponseIntoCache(Date.now(), task, fetchStrategy, response, serverData, isResponsePartial, route, spawnedEntries); - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - return { - value: null, - closed: closed.promise - }; - } catch (error) { - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } -} -function writeDynamicTreeResponseIntoCache(now, task, fetchStrategy, response, serverData, entry, couldBeIntercepted, canonicalUrl, routeIsPPREnabled) { - // Get the URL that was used to render the target page. This may be different - // from the URL in the request URL, if the page was rewritten. - const renderedSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(response); - const normalizedFlightDataResult = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeFlightData"])(serverData.f); - if (// MPA navigation. - typeof normalizedFlightDataResult === 'string' || normalizedFlightDataResult.length !== 1) { - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const flightData = normalizedFlightDataResult[0]; - if (!flightData.isRootRender) { - // Unexpected response format. - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const flightRouterState = flightData.tree; - // For runtime prefetches, stale time is in the payload at rp[1]. - // For other responses, fall back to the header. - const staleTimeSeconds = typeof serverData.rp?.[1] === 'number' ? serverData.rp[1] : parseInt(response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STALE_TIME_HEADER"]) ?? '', 10); - const staleTimeMs = !isNaN(staleTimeSeconds) ? getStaleTimeMs(staleTimeSeconds) : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["STATIC_STALETIME_MS"]; - // If the response contains dynamic holes, then we must conservatively assume - // that any individual segment might contain dynamic holes, and also the - // head. If it did not contain dynamic holes, then we can assume every segment - // and the head is completely static. - const isResponsePartial = response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"]) === '1'; - // Convert the server-sent data into the RouteTree format used by the - // client cache. - // - // During this traversal, we accumulate additional data into this - // "accumulator" object. - const acc = { - metadataVaryPath: null - }; - const routeTree = convertRootFlightRouterStateToRouteTree(flightRouterState, renderedSearch, acc); - const metadataVaryPath = acc.metadataVaryPath; - if (metadataVaryPath === null) { - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const fulfilledEntry = fulfillRouteCacheEntry(entry, routeTree, metadataVaryPath, now + staleTimeMs, couldBeIntercepted, canonicalUrl, renderedSearch, routeIsPPREnabled); - // If the server sent segment data as part of the response, we should write - // it into the cache to prevent a second, redundant prefetch request. - // - // TODO: When `clientSegmentCache` is enabled, the server does not include - // segment data when responding to a route tree prefetch request. However, - // when `clientSegmentCache` is set to "client-only", and PPR is enabled (or - // the page is fully static), the normal check is bypassed and the server - // responds with the full page. This is a temporary situation until we can - // remove the "client-only" option. Then, we can delete this function call. - writeDynamicRenderResponseIntoCache(now, task, fetchStrategy, response, serverData, isResponsePartial, fulfilledEntry, null); -} -function rejectSegmentEntriesIfStillPending(entries, staleAt) { - const fulfilledEntries = []; - for (const entry of entries.values()){ - if (entry.status === 1) { - rejectSegmentCacheEntry(entry, staleAt); - } else if (entry.status === 2) { - fulfilledEntries.push(entry); - } - } - return fulfilledEntries; -} -function writeDynamicRenderResponseIntoCache(now, task, fetchStrategy, response, serverData, isResponsePartial, route, spawnedEntries) { - if (serverData.b !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - if (spawnedEntries !== null) { - rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - } - return null; - } - const flightDatas = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeFlightData"])(serverData.f); - if (typeof flightDatas === 'string') { - // This means navigating to this route will result in an MPA navigation. - // TODO: We should cache this, too, so that the MPA navigation is immediate. - return null; - } - // For runtime prefetches, stale time is in the payload at rp[1]. - // For other responses, fall back to the header. - const staleTimeSeconds = typeof serverData.rp?.[1] === 'number' ? serverData.rp[1] : parseInt(response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STALE_TIME_HEADER"]) ?? '', 10); - const staleTimeMs = !isNaN(staleTimeSeconds) ? getStaleTimeMs(staleTimeSeconds) : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["STATIC_STALETIME_MS"]; - const staleAt = now + staleTimeMs; - for (const flightData of flightDatas){ - const seedData = flightData.seedData; - if (seedData !== null) { - // The data sent by the server represents only a subtree of the app. We - // need to find the part of the task tree that matches the response. - // - // segmentPath represents the parent path of subtree. It's a repeating - // pattern of parallel route key and segment: - // - // [string, Segment, string, Segment, string, Segment, ...] - const segmentPath = flightData.segmentPath; - let tree = route.tree; - for(let i = 0; i < segmentPath.length; i += 2){ - const parallelRouteKey = segmentPath[i]; - if (tree?.slots?.[parallelRouteKey] !== undefined) { - tree = tree.slots[parallelRouteKey]; - } else { - if (spawnedEntries !== null) { - rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - } - return null; - } - } - writeSeedDataIntoCache(now, task, fetchStrategy, route, tree, staleAt, seedData, isResponsePartial, spawnedEntries); - } - const head = flightData.head; - if (head !== null) { - fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, head, null, flightData.isHeadPartial, staleAt, route.metadata, spawnedEntries); - } - } - // Any entry that's still pending was intentionally not rendered by the - // server, because it was inside the loading boundary. Mark them as rejected - // so we know not to fetch them again. - // TODO: If PPR is enabled on some routes but not others, then it's possible - // that a different page is able to do a per-segment prefetch of one of the - // segments we're marking as rejected here. We should mark on the segment - // somehow that the reason for the rejection is because of a non-PPR prefetch. - // That way a per-segment prefetch knows to disregard the rejection. - if (spawnedEntries !== null) { - const fulfilledEntries = rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - return fulfilledEntries; - } - return null; -} -function writeSeedDataIntoCache(now, task, fetchStrategy, route, tree, staleAt, seedData, isResponsePartial, entriesOwnedByCurrentTask) { - // This function is used to write the result of a runtime server request - // (CacheNodeSeedData) into the prefetch cache. - const rsc = seedData[0]; - const loading = seedData[2]; - const isPartial = rsc === null || isResponsePartial; - fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, rsc, loading, isPartial, staleAt, tree, entriesOwnedByCurrentTask); - // Recursively write the child data into the cache. - const slots = tree.slots; - if (slots !== null) { - const seedDataChildren = seedData[1]; - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - const childSeedData = seedDataChildren[parallelRouteKey]; - if (childSeedData !== null && childSeedData !== undefined) { - writeSeedDataIntoCache(now, task, fetchStrategy, route, childTree, staleAt, childSeedData, isResponsePartial, entriesOwnedByCurrentTask); - } - } - } -} -function fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, rsc, loading, isPartial, staleAt, tree, entriesOwnedByCurrentTask) { - // We should only write into cache entries that are owned by us. Or create - // a new one and write into that. We must never write over an entry that was - // created by a different task, because that causes data races. - const ownedEntry = entriesOwnedByCurrentTask !== null ? entriesOwnedByCurrentTask.get(tree.requestKey) : undefined; - if (ownedEntry !== undefined) { - fulfillSegmentCacheEntry(ownedEntry, rsc, loading, staleAt, isPartial); - } else { - // There's no matching entry. Attempt to create a new one. - const possiblyNewEntry = readOrCreateSegmentCacheEntry(now, fetchStrategy, route, tree); - if (possiblyNewEntry.status === 0) { - // Confirmed this is a new entry. We can fulfill it. - const newEntry = possiblyNewEntry; - fulfillSegmentCacheEntry(upgradeToPendingSegment(newEntry, fetchStrategy), rsc, loading, staleAt, isPartial); - } else { - // There was already an entry in the cache. But we may be able to - // replace it with the new one from the server. - const newEntry = fulfillSegmentCacheEntry(upgradeToPendingSegment(createDetachedSegmentCacheEntry(staleAt), fetchStrategy), rsc, loading, staleAt, isPartial); - upsertSegmentEntry(now, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree), newEntry); - } - } -} -async function fetchPrefetchResponse(url, headers) { - const fetchPriority = 'low'; - // When issuing a prefetch request, don't immediately decode the response; we - // use the lower level `createFromResponse` API instead because we need to do - // some extra processing of the response stream. See - // `createPrefetchResponseStream` for more details. - const shouldImmediatelyDecode = false; - const response = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFetch"])(url, headers, fetchPriority, shouldImmediatelyDecode); - if (!response.ok) { - return null; - } - // Check the content type - if ("TURBOPACK compile-time falsy", 0) { - // In output: "export" mode, we relaxed about the content type, since it's - // not Next.js that's serving the response. If the status is OK, assume the - // response is valid. If it's not a valid response, the Flight client won't - // be able to decode it, and we'll treat it as a miss. - } else { - const contentType = response.headers.get('content-type'); - const isFlightResponse = contentType && contentType.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]); - if (!isFlightResponse) { - return null; - } - } - return response; -} -function createPrefetchResponseStream(originalFlightStream, onStreamClose, onResponseSizeUpdate) { - // When PPR is enabled, prefetch streams may contain references that never - // resolve, because that's how we encode dynamic data access. In the decoded - // object returned by the Flight client, these are reified into hanging - // promises that suspend during render, which is effectively what we want. - // The UI resolves when it switches to the dynamic data stream - // (via useDeferredValue(dynamic, static)). - // - // However, the Flight implementation currently errors if the server closes - // the response before all the references are resolved. As a cheat to work - // around this, we wrap the original stream in a new stream that never closes, - // and therefore doesn't error. - // - // While processing the original stream, we also incrementally update the size - // of the cache entry in the LRU. - let totalByteLength = 0; - const reader = originalFlightStream.getReader(); - return new ReadableStream({ - async pull (controller) { - while(true){ - const { done, value } = await reader.read(); - if (!done) { - // Pass to the target stream and keep consuming the Flight response - // from the server. - controller.enqueue(value); - // Incrementally update the size of the cache entry in the LRU. - // NOTE: Since prefetch responses are delivered in a single chunk, - // it's not really necessary to do this streamingly, but I'm doing it - // anyway in case this changes in the future. - totalByteLength += value.byteLength; - onResponseSizeUpdate(totalByteLength); - continue; - } - // The server stream has closed. Exit, but intentionally do not close - // the target stream. We do notify the caller, though. - onStreamClose(); - return; - } - } - }); -} -function addSegmentPathToUrlInOutputExportMode(url, segmentPath) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return url; -} -function canNewFetchStrategyProvideMoreContent(currentStrategy, newStrategy) { - return currentStrategy < newStrategy; -} //# sourceMappingURL=cache.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/navigation.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "convertServerPatchToFullTree", - ()=>convertServerPatchToFullTree, - "navigate", - ()=>navigate, - "navigateToSeededRoute", - ()=>navigateToSeededRoute -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -function navigate(url, currentUrl, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, shouldScroll, accumulation) { - const now = Date.now(); - const href = url.href; - // We special case navigations to the exact same URL as the current location. - // It's a common UI pattern for apps to refresh when you click a link to the - // current page. So when this happens, we refresh the dynamic data in the page - // segments. - // - // Note that this does not apply if the any part of the hash or search query - // has changed. This might feel a bit weird but it makes more sense when you - // consider that the way to trigger this behavior is to click the same link - // multiple times. - // - // TODO: We should probably refresh the *entire* route when this case occurs, - // not just the page segments. Essentially treating it the same as a refresh() - // triggered by an action, which is the more explicit way of modeling the UI - // pattern described above. - // - // Also note that this only refreshes the dynamic data, not static/ cached - // data. If the page segment is fully static and prefetched, the request is - // skipped. (This is also how refresh() works.) - const isSamePageNavigation = href === currentUrl.href; - const cacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheKey"])(href, nextUrl); - const route = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readRouteCacheEntry"])(now, cacheKey); - if (route !== null && route.status === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled) { - // We have a matching prefetch. - const snapshot = readRenderSnapshotFromCache(now, route, route.tree); - const prefetchFlightRouterState = snapshot.flightRouterState; - const prefetchSeedData = snapshot.seedData; - const headSnapshot = readHeadSnapshotFromCache(now, route); - const prefetchHead = headSnapshot.rsc; - const isPrefetchHeadPartial = headSnapshot.isPartial; - // TODO: The "canonicalUrl" stored in the cache doesn't include the hash, - // because hash entries do not vary by hash fragment. However, the one - // we set in the router state *does* include the hash, and it's used to - // sync with the actual browser location. To make this less of a refactor - // hazard, we should always track the hash separately from the rest of - // the URL. - const newCanonicalUrl = route.canonicalUrl + url.hash; - const renderedSearch = route.renderedSearch; - return navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, newCanonicalUrl, renderedSearch, freshnessPolicy, shouldScroll); - } - // There was no matching route tree in the cache. Let's see if we can - // construct an "optimistic" route tree. - // - // Do not construct an optimistic route tree if there was a cache hit, but - // the entry has a rejected status, since it may have been rejected due to a - // rewrite or redirect based on the search params. - // - // TODO: There are multiple reasons a prefetch might be rejected; we should - // track them explicitly and choose what to do here based on that. - if (route === null || route.status !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected) { - const optimisticRoute = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["requestOptimisticRouteCacheEntry"])(now, url, nextUrl); - if (optimisticRoute !== null) { - // We have an optimistic route tree. Proceed with the normal flow. - const snapshot = readRenderSnapshotFromCache(now, optimisticRoute, optimisticRoute.tree); - const prefetchFlightRouterState = snapshot.flightRouterState; - const prefetchSeedData = snapshot.seedData; - const headSnapshot = readHeadSnapshotFromCache(now, optimisticRoute); - const prefetchHead = headSnapshot.rsc; - const isPrefetchHeadPartial = headSnapshot.isPartial; - const newCanonicalUrl = optimisticRoute.canonicalUrl + url.hash; - const newRenderedSearch = optimisticRoute.renderedSearch; - return navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, newCanonicalUrl, newRenderedSearch, freshnessPolicy, shouldScroll); - } - } - // There's no matching prefetch for this route in the cache. - let collectedDebugInfo = accumulation.collectedDebugInfo ?? []; - if (accumulation.collectedDebugInfo === undefined) { - collectedDebugInfo = accumulation.collectedDebugInfo = []; - } - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].Async, - data: navigateDynamicallyWithNoPrefetch(now, url, currentUrl, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, shouldScroll, collectedDebugInfo) - }; -} -function navigateToSeededRoute(now, url, canonicalUrl, navigationSeed, currentUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, shouldScroll) { - // A version of navigate() that accepts the target route tree as an argument - // rather than reading it from the prefetch cache. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const isSamePageNavigation = url.href === currentUrl.href; - const task = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startPPRNavigation"])(now, currentUrl, currentCacheNode, currentFlightRouterState, navigationSeed.tree, freshnessPolicy, navigationSeed.data, navigationSeed.head, null, null, false, isSamePageNavigation, accumulation); - if (task !== null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["spawnDynamicRequests"])(task, url, nextUrl, freshnessPolicy, accumulation); - return navigationTaskToResult(task, canonicalUrl, navigationSeed.renderedSearch, accumulation.scrollableSegments, shouldScroll, url.hash); - } - // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation. - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].MPA, - data: canonicalUrl - }; -} -function navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, canonicalUrl, renderedSearch, freshnessPolicy, shouldScroll) { - // Recursively construct a prefetch tree by reading from the Segment Cache. To - // maintain compatibility, we output the same data structures as the old - // prefetching implementation: FlightRouterState and CacheNodeSeedData. - // TODO: Eventually updateCacheNodeOnNavigation (or the equivalent) should - // read from the Segment Cache directly. It's only structured this way for now - // so we can share code with the old prefetching implementation. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const seedData = null; - const seedHead = null; - const task = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startPPRNavigation"])(now, currentUrl, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, freshnessPolicy, seedData, seedHead, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, accumulation); - if (task !== null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["spawnDynamicRequests"])(task, url, nextUrl, freshnessPolicy, accumulation); - return navigationTaskToResult(task, canonicalUrl, renderedSearch, accumulation.scrollableSegments, shouldScroll, url.hash); - } - // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation. - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].MPA, - data: canonicalUrl - }; -} -function navigationTaskToResult(task, canonicalUrl, renderedSearch, scrollableSegments, shouldScroll, hash) { - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].Success, - data: { - flightRouterState: task.route, - cacheNode: task.node, - canonicalUrl, - renderedSearch, - scrollableSegments, - shouldScroll, - hash - } - }; -} -function readRenderSnapshotFromCache(now, route, tree) { - let childRouterStates = {}; - let childSeedDatas = {}; - const slots = tree.slots; - if (slots !== null) { - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - const childResult = readRenderSnapshotFromCache(now, route, childTree); - childRouterStates[parallelRouteKey] = childResult.flightRouterState; - childSeedDatas[parallelRouteKey] = childResult.seedData; - } - } - let rsc = null; - let loading = null; - let isPartial = true; - const segmentEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readSegmentCacheEntry"])(now, tree.varyPath); - if (segmentEntry !== null) { - switch(segmentEntry.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - // Happy path: a cache hit - rsc = segmentEntry.rsc; - loading = segmentEntry.loading; - isPartial = segmentEntry.isPartial; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - // We haven't received data for this segment yet, but there's already - // an in-progress request. Since it's extremely likely to arrive - // before the dynamic data response, we might as well use it. - const promiseForFulfilledEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["waitForSegmentCacheEntry"])(segmentEntry); - rsc = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.rsc : null); - loading = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.loading : null); - // Because the request is still pending, we typically don't know yet - // whether the response will be partial. We shouldn't skip this segment - // during the dynamic navigation request. Otherwise, we might need to - // do yet another request to fill in the remaining data, creating - // a waterfall. - // - // The one exception is if this segment is being fetched with via - // prefetch={true} (i.e. the "force stale" or "full" strategy). If so, - // we can assume the response will be full. This field is set to `false` - // for such segments. - isPartial = segmentEntry.isPartial; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - break; - default: - segmentEntry; - } - } - // The navigation implementation expects the search params to be - // included in the segment. However, the Segment Cache tracks search - // params separately from the rest of the segment key. So we need to - // add them back here. - // - // See corresponding comment in convertFlightRouterStateToTree. - // - // TODO: What we should do instead is update the navigation diffing - // logic to compare search params explicitly. This is a temporary - // solution until more of the Segment Cache implementation has settled. - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["addSearchParamsIfPageSegment"])(tree.segment, Object.fromEntries(new URLSearchParams(route.renderedSearch))); - // We don't need this information in a render snapshot, so this can just be a placeholder. - const hasRuntimePrefetch = false; - return { - flightRouterState: [ - segment, - childRouterStates, - null, - null, - tree.isRootLayout - ], - seedData: [ - rsc, - childSeedDatas, - loading, - isPartial, - hasRuntimePrefetch - ] - }; -} -function readHeadSnapshotFromCache(now, route) { - // Same as readRenderSnapshotFromCache, but for the head - let rsc = null; - let isPartial = true; - const segmentEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readSegmentCacheEntry"])(now, route.metadata.varyPath); - if (segmentEntry !== null) { - switch(segmentEntry.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - rsc = segmentEntry.rsc; - isPartial = segmentEntry.isPartial; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - const promiseForFulfilledEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["waitForSegmentCacheEntry"])(segmentEntry); - rsc = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.rsc : null); - isPartial = segmentEntry.isPartial; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - break; - default: - segmentEntry; - } - } - return { - rsc, - isPartial - }; -} -// Used to request all the dynamic data for a route, rather than just a subset, -// e.g. during a refresh or a revalidation. Typically this gets constructed -// during the normal flow when diffing the route tree, but for an unprefetched -// navigation, where we don't know the structure of the target route, we use -// this instead. -const DynamicRequestTreeForEntireRoute = [ - '', - {}, - null, - 'refetch' -]; -async function navigateDynamicallyWithNoPrefetch(now, url, currentUrl, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, shouldScroll, collectedDebugInfo) { - // Runs when a navigation happens but there's no cached prefetch we can use. - // Don't bother to wait for a prefetch response; go straight to a full - // navigation that contains both static and dynamic data in a single stream. - // (This is unlike the old navigation implementation, which instead blocks - // the dynamic request until a prefetch request is received.) - // - // To avoid duplication of logic, we're going to pretend that the tree - // returned by the dynamic request is, in fact, a prefetch tree. Then we can - // use the same server response to write the actual data into the CacheNode - // tree. So it's the same flow as the "happy path" (prefetch, then - // navigation), except we use a single server response for both stages. - let dynamicRequestTree; - switch(freshnessPolicy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].Default: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].HistoryTraversal: - dynamicRequestTree = currentFlightRouterState; - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].Hydration: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].RefreshAll: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].HMRRefresh: - dynamicRequestTree = DynamicRequestTreeForEntireRoute; - break; - default: - freshnessPolicy; - dynamicRequestTree = currentFlightRouterState; - break; - } - const promiseForDynamicServerResponse = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchServerResponse"])(url, { - flightRouterState: dynamicRequestTree, - nextUrl - }); - const result = await promiseForDynamicServerResponse; - if (typeof result === 'string') { - // This is an MPA navigation. - const newUrl = result; - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].MPA, - data: newUrl - }; - } - const { flightData, canonicalUrl, renderedSearch, debugInfo: debugInfoFromResponse } = result; - if (debugInfoFromResponse !== null) { - collectedDebugInfo.push(...debugInfoFromResponse); - } - // Since the response format of dynamic requests and prefetches is slightly - // different, we'll need to massage the data a bit. Create FlightRouterState - // tree that simulates what we'd receive as the result of a prefetch. - const navigationSeed = convertServerPatchToFullTree(currentFlightRouterState, flightData, renderedSearch); - return navigateToSeededRoute(now, url, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(canonicalUrl), navigationSeed, currentUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, shouldScroll); -} -function convertServerPatchToFullTree(currentTree, flightData, renderedSearch) { - // During a client navigation or prefetch, the server sends back only a patch - // for the parts of the tree that have changed. - // - // This applies the patch to the base tree to create a full representation of - // the resulting tree. - // - // The return type includes a full FlightRouterState tree and a full - // CacheNodeSeedData tree. (Conceptually these are the same tree, and should - // eventually be unified, but there's still lots of existing code that - // operates on FlightRouterState trees alone without the CacheNodeSeedData.) - // - // TODO: This similar to what apply-router-state-patch-to-tree does. It - // will eventually fully replace it. We should get rid of all the remaining - // places where we iterate over the server patch format. This should also - // eventually replace normalizeFlightData. - let baseTree = currentTree; - let baseData = null; - let head = null; - for (const { segmentPath, tree: treePatch, seedData: dataPatch, head: headPatch } of flightData){ - const result = convertServerPatchToFullTreeImpl(baseTree, baseData, treePatch, dataPatch, segmentPath, 0); - baseTree = result.tree; - baseData = result.data; - // This is the same for all patches per response, so just pick an - // arbitrary one - head = headPatch; - } - return { - tree: baseTree, - data: baseData, - renderedSearch, - head - }; -} -function convertServerPatchToFullTreeImpl(baseRouterState, baseData, treePatch, dataPatch, segmentPath, index) { - if (index === segmentPath.length) { - // We reached the part of the tree that we need to patch. - return { - tree: treePatch, - data: dataPatch - }; - } - // segmentPath represents the parent path of subtree. It's a repeating - // pattern of parallel route key and segment: - // - // [string, Segment, string, Segment, string, Segment, ...] - // - // This path tells us which part of the base tree to apply the tree patch. - // - // NOTE: We receive the FlightRouterState patch in the same request as the - // seed data patch. Therefore we don't need to worry about diffing the segment - // values; we can assume the server sent us a correct result. - const updatedParallelRouteKey = segmentPath[index]; - // const segment: Segment = segmentPath[index + 1] <-- Not used, see note above - const baseTreeChildren = baseRouterState[1]; - const baseSeedDataChildren = baseData !== null ? baseData[1] : null; - const newTreeChildren = {}; - const newSeedDataChildren = {}; - for(const parallelRouteKey in baseTreeChildren){ - const childBaseRouterState = baseTreeChildren[parallelRouteKey]; - const childBaseSeedData = baseSeedDataChildren !== null ? baseSeedDataChildren[parallelRouteKey] ?? null : null; - if (parallelRouteKey === updatedParallelRouteKey) { - const result = convertServerPatchToFullTreeImpl(childBaseRouterState, childBaseSeedData, treePatch, dataPatch, segmentPath, // the end of the segment path. - index + 2); - newTreeChildren[parallelRouteKey] = result.tree; - newSeedDataChildren[parallelRouteKey] = result.data; - } else { - // This child is not being patched. Copy it over as-is. - newTreeChildren[parallelRouteKey] = childBaseRouterState; - newSeedDataChildren[parallelRouteKey] = childBaseSeedData; - } - } - let clonedTree; - let clonedSeedData; - // Clone all the fields except the children. - // Clone the FlightRouterState tree. Based on equivalent logic in - // apply-router-state-patch-to-tree, but should confirm whether we need to - // copy all of these fields. Not sure the server ever sends, e.g. the - // refetch marker. - clonedTree = [ - baseRouterState[0], - newTreeChildren - ]; - if (2 in baseRouterState) { - clonedTree[2] = baseRouterState[2]; - } - if (3 in baseRouterState) { - clonedTree[3] = baseRouterState[3]; - } - if (4 in baseRouterState) { - clonedTree[4] = baseRouterState[4]; - } - // Clone the CacheNodeSeedData tree. - const isEmptySeedDataPartial = true; - clonedSeedData = [ - null, - newSeedDataChildren, - null, - isEmptySeedDataPartial, - false - ]; - return { - tree: clonedTree, - data: clonedSeedData - }; -} //# sourceMappingURL=navigation.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/reducers/navigate-reducer.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DYNAMIC_STALETIME_MS", - ()=>DYNAMIC_STALETIME_MS, - "STATIC_STALETIME_MS", - ()=>STATIC_STALETIME_MS, - "generateSegmentsFromPatch", - ()=>generateSegmentsFromPatch, - "handleExternalUrl", - ()=>handleExternalUrl, - "handleNavigationResult", - ()=>handleNavigationResult, - "navigateReducer", - ()=>navigateReducer -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$handle$2d$mutable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/handle-mutable.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/navigation.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -const DYNAMIC_STALETIME_MS = Number(("TURBOPACK compile-time value", "0")) * 1000; -const STATIC_STALETIME_MS = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getStaleTimeMs"])(Number(("TURBOPACK compile-time value", "300"))); -function handleExternalUrl(state, mutable, url, pendingPush) { - mutable.mpaNavigation = true; - mutable.canonicalUrl = url; - mutable.pendingPush = pendingPush; - mutable.scrollableSegments = undefined; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$handle$2d$mutable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["handleMutable"])(state, mutable); -} -function generateSegmentsFromPatch(flightRouterPatch) { - const segments = []; - const [segment, parallelRoutes] = flightRouterPatch; - if (Object.keys(parallelRoutes).length === 0) { - return [ - [ - segment - ] - ]; - } - for (const [parallelRouteKey, parallelRoute] of Object.entries(parallelRoutes)){ - for (const childSegment of generateSegmentsFromPatch(parallelRoute)){ - // If the segment is empty, it means we are at the root of the tree - if (segment === '') { - segments.push([ - parallelRouteKey, - ...childSegment - ]); - } else { - segments.push([ - segment, - parallelRouteKey, - ...childSegment - ]); - } - } - } - return segments; -} -function handleNavigationResult(url, state, mutable, pendingPush, result) { - switch(result.tag){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].MPA: - { - // Perform an MPA navigation. - const newUrl = result.data; - return handleExternalUrl(state, mutable, newUrl, pendingPush); - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].Success: - { - // Received a new result. - mutable.cache = result.data.cacheNode; - mutable.patchedTree = result.data.flightRouterState; - mutable.renderedSearch = result.data.renderedSearch; - mutable.canonicalUrl = result.data.canonicalUrl; - // TODO: During a refresh, we don't set the `scrollableSegments`. There's - // some confusing and subtle logic in `handleMutable` that decides what - // to do when `shouldScroll` is set but `scrollableSegments` is not. I'm - // not convinced it's totally coherent but the tests assert on this - // particular behavior so I've ported the logic as-is from the previous - // router implementation, for now. - mutable.scrollableSegments = result.data.scrollableSegments ?? undefined; - mutable.shouldScroll = result.data.shouldScroll; - mutable.hashFragment = result.data.hash; - // Check if the only thing that changed was the hash fragment. - const oldUrl = new URL(state.canonicalUrl, url); - const onlyHashChange = // navigations are always same-origin. - url.pathname === oldUrl.pathname && url.search === oldUrl.search && url.hash !== oldUrl.hash; - if (onlyHashChange) { - // The only updated part of the URL is the hash. - mutable.onlyHashChange = true; - mutable.shouldScroll = result.data.shouldScroll; - mutable.hashFragment = url.hash; - // Setting this to an empty array triggers a scroll for all new and - // updated segments. See `ScrollAndFocusHandler` for more details. - mutable.scrollableSegments = []; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$handle$2d$mutable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["handleMutable"])(state, mutable); - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].Async: - { - return result.data.then((asyncResult)=>handleNavigationResult(url, state, mutable, pendingPush, asyncResult), // TODO: This matches the current behavior but we need to do something - // better here if the network fails. - ()=>{ - return state; - }); - } - default: - { - result; - return state; - } - } -} -function navigateReducer(state, action) { - const { url, isExternalUrl, navigateType, shouldScroll } = action; - const mutable = {}; - const href = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(url); - const pendingPush = navigateType === 'push'; - mutable.preserveCustomHistoryState = false; - mutable.pendingPush = pendingPush; - if (isExternalUrl) { - return handleExternalUrl(state, mutable, url.toString(), pendingPush); - } - // Handles case where `` tag is present, - // which will trigger an MPA navigation. - if (document.getElementById('__next-page-redirect')) { - return handleExternalUrl(state, mutable, href, pendingPush); - } - // Temporary glue code between the router reducer and the new navigation - // implementation. Eventually we'll rewrite the router reducer to a - // state machine. - const currentUrl = new URL(state.canonicalUrl, location.origin); - const result = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["navigate"])(url, currentUrl, state.cache, state.tree, state.nextUrl, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].Default, shouldScroll, mutable); - return handleNavigationResult(url, state, mutable, pendingPush, result); -} //# sourceMappingURL=navigate-reducer.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "FreshnessPolicy", - ()=>FreshnessPolicy, - "createInitialCacheNodeForHydration", - ()=>createInitialCacheNodeForHydration, - "isDeferredRsc", - ()=>isDeferredRsc, - "spawnDynamicRequests", - ()=>spawnDynamicRequests, - "startPPRNavigation", - ()=>startPPRNavigation -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-router-cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$use$2d$action$2d$queue$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/use-action-queue.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$router$2d$reducer$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/router-reducer-types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$is$2d$navigating$2d$to$2d$new$2d$root$2d$layout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/is-navigating-to-new-root-layout.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/reducers/navigate-reducer.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/navigation.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -var FreshnessPolicy = /*#__PURE__*/ function(FreshnessPolicy) { - FreshnessPolicy[FreshnessPolicy["Default"] = 0] = "Default"; - FreshnessPolicy[FreshnessPolicy["Hydration"] = 1] = "Hydration"; - FreshnessPolicy[FreshnessPolicy["HistoryTraversal"] = 2] = "HistoryTraversal"; - FreshnessPolicy[FreshnessPolicy["RefreshAll"] = 3] = "RefreshAll"; - FreshnessPolicy[FreshnessPolicy["HMRRefresh"] = 4] = "HMRRefresh"; - return FreshnessPolicy; -}({}); -const noop = ()=>{}; -function createInitialCacheNodeForHydration(navigatedAt, initialTree, seedData, seedHead) { - // Create the initial cache node tree, using the data embedded into the - // HTML document. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const task = createCacheNodeOnNavigation(navigatedAt, initialTree, undefined, 1, seedData, seedHead, null, null, false, null, null, false, accumulation); - // NOTE: We intentionally don't check if any data needs to be fetched from the - // server. We assume the initial hydration payload is sufficient to render - // the page. - // - // The completeness of the initial data is an important property that we rely - // on as a last-ditch mechanism for recovering the app; we must always be able - // to reload a fresh HTML document to get to a consistent state. - // - // In the future, there may be cases where the server intentionally sends - // partial data and expects the client to fill in the rest, in which case this - // logic may change. (There already is a similar case where the server sends - // _no_ hydration data in the HTML document at all, and the client fetches it - // separately, but that's different because we still end up hydrating with a - // complete tree.) - return task.node; -} -function startPPRNavigation(navigatedAt, oldUrl, oldCacheNode, oldRouterState, newRouterState, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, accumulation) { - const didFindRootLayout = false; - const parentNeedsDynamicRequest = false; - const parentRefreshUrl = null; - return updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNode !== null ? oldCacheNode : undefined, oldRouterState, newRouterState, freshness, didFindRootLayout, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, null, null, parentNeedsDynamicRequest, parentRefreshUrl, accumulation); -} -function updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNode, oldRouterState, newRouterState, freshness, didFindRootLayout, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, parentRefreshUrl, accumulation) { - // Check if this segment matches the one in the previous route. - const oldSegment = oldRouterState[0]; - const newSegment = newRouterState[0]; - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(newSegment, oldSegment)) { - // This segment does not match the previous route. We're now entering the - // new part of the target route. Switch to the "create" path. - if (// highest-level layout in a route tree is referred to as the "root" - // layout.) This could mean that we're navigating between two different - // root layouts. When this happens, we perform a full-page (MPA-style) - // navigation. - // - // However, the algorithm for deciding where to start rendering a route - // (i.e. the one performed in order to reach this function) is stricter - // than the one used to detect a change in the root layout. So just - // because we're re-rendering a segment outside of the root layout does - // not mean we should trigger a full-page navigation. - // - // Specifically, we handle dynamic parameters differently: two segments - // are considered the same even if their parameter values are different. - // - // Refer to isNavigatingToNewRootLayout for details. - // - // Note that we only have to perform this extra traversal if we didn't - // already discover a root layout in the part of the tree that is - // unchanged. We also only need to compare the subtree that is not - // shared. In the common case, this branch is skipped completely. - !didFindRootLayout && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$is$2d$navigating$2d$to$2d$new$2d$root$2d$layout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isNavigatingToNewRootLayout"])(oldRouterState, newRouterState) || // The global Not Found route (app/global-not-found.tsx) is a special - // case, because it acts like a root layout, but in the router tree, it - // is rendered in the same position as app/layout.tsx. - // - // Any navigation to the global Not Found route should trigger a - // full-page navigation. - // - // TODO: We should probably model this by changing the key of the root - // segment when this happens. Then the root layout check would work - // as expected, without a special case. - newSegment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NOT_FOUND_SEGMENT_KEY"]) { - return null; - } - if (parentSegmentPath === null || parentParallelRouteKey === null) { - // The root should never mismatch. If it does, it suggests an internal - // Next.js error, or a malformed server response. Trigger a full- - // page navigation. - return null; - } - return createCacheNodeOnNavigation(navigatedAt, newRouterState, oldCacheNode, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, accumulation); - } - // TODO: The segment paths are tracked so that LayoutRouter knows which - // segments to scroll to after a navigation. But we should just mark this - // information on the CacheNode directly. It used to be necessary to do this - // separately because CacheNodes were created lazily during render, not when - // rather than when creating the route tree. - const segmentPath = parentParallelRouteKey !== null && parentSegmentPath !== null ? parentSegmentPath.concat([ - parentParallelRouteKey, - newSegment - ]) : []; - const newRouterStateChildren = newRouterState[1]; - const oldRouterStateChildren = oldRouterState[1]; - const seedDataChildren = seedData !== null ? seedData[1] : null; - const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null; - // We're currently traversing the part of the tree that was also part of - // the previous route. If we discover a root layout, then we don't need to - // trigger an MPA navigation. - const isRootLayout = newRouterState[4] === true; - const childDidFindRootLayout = didFindRootLayout || isRootLayout; - const oldParallelRoutes = oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined; - // Clone the current set of segment children, even if they aren't active in - // the new tree. - // TODO: We currently retain all the inactive segments indefinitely, until - // there's an explicit refresh, or a parent layout is lazily refreshed. We - // rely on this for popstate navigations, which update the Router State Tree - // but do not eagerly perform a data fetch, because they expect the segment - // data to already be in the Cache Node tree. For highly static sites that - // are mostly read-only, this may happen only rarely, causing memory to - // leak. We should figure out a better model for the lifetime of inactive - // segments, so we can maintain instant back/forward navigations without - // leaking memory indefinitely. - let shouldDropSiblingCaches = false; - let shouldRefreshDynamicData = false; - switch(freshness){ - case 0: - case 2: - case 1: - // We should never drop dynamic data in shared layouts, except during - // a refresh. - shouldDropSiblingCaches = false; - shouldRefreshDynamicData = false; - break; - case 3: - case 4: - shouldDropSiblingCaches = true; - shouldRefreshDynamicData = true; - break; - default: - freshness; - break; - } - const newParallelRoutes = new Map(shouldDropSiblingCaches ? undefined : oldParallelRoutes); - // TODO: We're not consistent about how we do this check. Some places - // check if the segment starts with PAGE_SEGMENT_KEY, but most seem to - // check if there any any children, which is why I'm doing it here. We - // should probably encode an empty children set as `null` though. Either - // way, we should update all the checks to be consistent. - const isLeafSegment = Object.keys(newRouterStateChildren).length === 0; - // Get the data for this segment. Since it was part of the previous route, - // usually we just clone the data from the old CacheNode. However, during a - // refresh or a revalidation, there won't be any existing CacheNode. So we - // may need to consult the prefetch cache, like we would for a new segment. - let newCacheNode; - let needsDynamicRequest; - if (oldCacheNode !== undefined && !shouldRefreshDynamicData && // During a same-page navigation, we always refetch the page segments - !(isLeafSegment && isSamePageNavigation)) { - // Reuse the existing CacheNode - const dropPrefetchRsc = false; - newCacheNode = reuseDynamicCacheNode(dropPrefetchRsc, oldCacheNode, newParallelRoutes); - needsDynamicRequest = false; - } else if (seedData !== null && seedData[0] !== null) { - // If this navigation was the result of an action, then check if the - // server sent back data in the action response. We should favor using - // that, rather than performing a separate request. This is both better - // for performance and it's more likely to be consistent with any - // writes that were just performed by the action, compared to a - // separate request. - const seedRsc = seedData[0]; - const seedLoading = seedData[2]; - const isSeedRscPartial = false; - const isSeedHeadPartial = seedHead === null; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isLeafSegment && isSeedHeadPartial; - } else if (prefetchData !== null) { - // Consult the prefetch cache. - const prefetchRsc = prefetchData[0]; - const prefetchLoading = prefetchData[2]; - const isPrefetchRSCPartial = prefetchData[3]; - newCacheNode = readCacheNodeFromSeedData(prefetchRsc, prefetchLoading, isPrefetchRSCPartial, prefetchHead, isPrefetchHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isPrefetchRSCPartial || isLeafSegment && isPrefetchHeadPartial; - } else { - // Spawn a request to fetch new data from the server. - newCacheNode = spawnNewCacheNode(newParallelRoutes, isLeafSegment, navigatedAt, freshness); - needsDynamicRequest = true; - } - // During a refresh navigation, there's a special case that happens when - // entering a "default" slot. The default slot may not be part of the - // current route; it may have been reused from an older route. If so, - // we need to fetch its data from the old route's URL rather than current - // route's URL. Keep track of this as we traverse the tree. - const href = newRouterState[2]; - const refreshUrl = typeof href === 'string' && newRouterState[3] === 'refresh' ? href : parentRefreshUrl; - // If this segment itself needs to fetch new data from the server, then by - // definition it is being refreshed. Track its refresh URL so we know which - // URL to request the data from. - if (needsDynamicRequest && refreshUrl !== null) { - accumulateRefreshUrl(accumulation, refreshUrl); - } - // As we diff the trees, we may sometimes modify (copy-on-write, not mutate) - // the Route Tree that was returned by the server — for example, in the case - // of default parallel routes, we preserve the currently active segment. To - // avoid mutating the original tree, we clone the router state children along - // the return path. - let patchedRouterStateChildren = {}; - let taskChildren = null; - // Most navigations require a request to fetch additional data from the - // server, either because the data was not already prefetched, or because the - // target route contains dynamic data that cannot be prefetched. - // - // However, if the target route is fully static, and it's already completely - // loaded into the segment cache, then we can skip the server request. - // - // This starts off as `false`, and is set to `true` if any of the child - // routes requires a dynamic request. - let childNeedsDynamicRequest = false; - // As we traverse the children, we'll construct a FlightRouterState that can - // be sent to the server to request the dynamic data. If it turns out that - // nothing in the subtree is dynamic (i.e. childNeedsDynamicRequest is false - // at the end), then this will be discarded. - // TODO: We can probably optimize the format of this data structure to only - // include paths that are dynamic. Instead of reusing the - // FlightRouterState type. - let dynamicRequestTreeChildren = {}; - for(let parallelRouteKey in newRouterStateChildren){ - let newRouterStateChild = newRouterStateChildren[parallelRouteKey]; - const oldRouterStateChild = oldRouterStateChildren[parallelRouteKey]; - if (oldRouterStateChild === undefined) { - // This should never happen, but if it does, it suggests a malformed - // server response. Trigger a full-page navigation. - return null; - } - const oldSegmentMapChild = oldParallelRoutes !== undefined ? oldParallelRoutes.get(parallelRouteKey) : undefined; - let seedDataChild = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null; - let prefetchDataChild = prefetchDataChildren !== null ? prefetchDataChildren[parallelRouteKey] : null; - let newSegmentChild = newRouterStateChild[0]; - let seedHeadChild = seedHead; - let prefetchHeadChild = prefetchHead; - let isPrefetchHeadPartialChild = isPrefetchHeadPartial; - if (// was stashed in the history entry as-is. - freshness !== 2 && newSegmentChild === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"]) { - // This is a "default" segment. These are never sent by the server during - // a soft navigation; instead, the client reuses whatever segment was - // already active in that slot on the previous route. - newRouterStateChild = reuseActiveSegmentInDefaultSlot(oldUrl, oldRouterStateChild); - newSegmentChild = newRouterStateChild[0]; - // Since we're switching to a different route tree, these are no - // longer valid, because they correspond to the outer tree. - seedDataChild = null; - seedHeadChild = null; - prefetchDataChild = null; - prefetchHeadChild = null; - isPrefetchHeadPartialChild = false; - } - const newSegmentKeyChild = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createRouterCacheKey"])(newSegmentChild); - const oldCacheNodeChild = oldSegmentMapChild !== undefined ? oldSegmentMapChild.get(newSegmentKeyChild) : undefined; - const taskChild = updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNodeChild, oldRouterStateChild, newRouterStateChild, freshness, childDidFindRootLayout, seedDataChild ?? null, seedHeadChild, prefetchDataChild ?? null, prefetchHeadChild, isPrefetchHeadPartialChild, isSamePageNavigation, segmentPath, parallelRouteKey, parentNeedsDynamicRequest || needsDynamicRequest, refreshUrl, accumulation); - if (taskChild === null) { - // One of the child tasks discovered a change to the root layout. - // Immediately unwind from this recursive traversal. This will trigger a - // full-page navigation. - return null; - } - // Recursively propagate up the child tasks. - if (taskChildren === null) { - taskChildren = new Map(); - } - taskChildren.set(parallelRouteKey, taskChild); - const newCacheNodeChild = taskChild.node; - if (newCacheNodeChild !== null) { - const newSegmentMapChild = new Map(shouldDropSiblingCaches ? undefined : oldSegmentMapChild); - newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild); - newParallelRoutes.set(parallelRouteKey, newSegmentMapChild); - } - // The child tree's route state may be different from the prefetched - // route sent by the server. We need to clone it as we traverse back up - // the tree. - const taskChildRoute = taskChild.route; - patchedRouterStateChildren[parallelRouteKey] = taskChildRoute; - const dynamicRequestTreeChild = taskChild.dynamicRequestTree; - if (dynamicRequestTreeChild !== null) { - // Something in the child tree is dynamic. - childNeedsDynamicRequest = true; - dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild; - } else { - dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute; - } - } - return { - status: needsDynamicRequest ? 0 : 1, - route: patchRouterStateWithNewChildren(newRouterState, patchedRouterStateChildren), - node: newCacheNode, - dynamicRequestTree: createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest), - refreshUrl, - children: taskChildren - }; -} -function createCacheNodeOnNavigation(navigatedAt, newRouterState, oldCacheNode, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, accumulation) { - // Same traversal as updateCacheNodeNavigation, but simpler. We switch to this - // path once we reach the part of the tree that was not in the previous route. - // We don't need to diff against the old tree, we just need to create a new - // one. We also don't need to worry about any refresh-related logic. - // - // For the most part, this is a subset of updateCacheNodeOnNavigation, so any - // change that happens in this function likely needs to be applied to that - // one, too. However there are some places where the behavior intentionally - // diverges, which is why we keep them separate. - const newSegment = newRouterState[0]; - const segmentPath = parentParallelRouteKey !== null && parentSegmentPath !== null ? parentSegmentPath.concat([ - parentParallelRouteKey, - newSegment - ]) : []; - const newRouterStateChildren = newRouterState[1]; - const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null; - const seedDataChildren = seedData !== null ? seedData[1] : null; - const oldParallelRoutes = oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined; - let shouldDropSiblingCaches = false; - let shouldRefreshDynamicData = false; - let dropPrefetchRsc = false; - switch(freshness){ - case 0: - // We should never drop dynamic data in sibling caches except during - // a refresh. - shouldDropSiblingCaches = false; - // Only reuse the dynamic data if experimental.staleTimes.dynamic config - // is set, and the data is not stale. (This is not a recommended API with - // Cache Components, but it's supported for backwards compatibility. Use - // cacheLife instead.) - // - // DYNAMIC_STALETIME_MS defaults to 0, but it can be increased. - shouldRefreshDynamicData = oldCacheNode === undefined || navigatedAt - oldCacheNode.navigatedAt >= __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DYNAMIC_STALETIME_MS"]; - dropPrefetchRsc = false; - break; - case 1: - // During hydration, we assume the data sent by the server is both - // consistent and complete. - shouldRefreshDynamicData = false; - shouldDropSiblingCaches = false; - dropPrefetchRsc = false; - break; - case 2: - // During back/forward navigations, we reuse the dynamic data regardless - // of how stale it may be. - shouldRefreshDynamicData = false; - shouldRefreshDynamicData = false; - // Only show prefetched data if the dynamic data is still pending. This - // avoids a flash back to the prefetch state in a case where it's highly - // likely to have already streamed in. - // - // Tehnically, what we're actually checking is whether the dynamic network - // response was received. But since it's a streaming response, this does - // not mean that all the dynamic data has fully streamed in. It just means - // that _some_ of the dynamic data was received. But as a heuristic, we - // assume that the rest dynamic data will stream in quickly, so it's still - // better to skip the prefetch state. - if (oldCacheNode !== undefined) { - const oldRsc = oldCacheNode.rsc; - const oldRscDidResolve = !isDeferredRsc(oldRsc) || oldRsc.status !== 'pending'; - dropPrefetchRsc = oldRscDidResolve; - } else { - dropPrefetchRsc = false; - } - break; - case 3: - case 4: - // Drop all dynamic data. - shouldRefreshDynamicData = true; - shouldDropSiblingCaches = true; - dropPrefetchRsc = false; - break; - default: - freshness; - break; - } - const newParallelRoutes = new Map(shouldDropSiblingCaches ? undefined : oldParallelRoutes); - const isLeafSegment = Object.keys(newRouterStateChildren).length === 0; - if (isLeafSegment) { - // The segment path of every leaf segment (i.e. page) is collected into - // a result array. This is used by the LayoutRouter to scroll to ensure that - // new pages are visible after a navigation. - // - // This only happens for new pages, not for refreshed pages. - // - // TODO: We should use a string to represent the segment path instead of - // an array. We already use a string representation for the path when - // accessing the Segment Cache, so we can use the same one. - if (accumulation.scrollableSegments === null) { - accumulation.scrollableSegments = []; - } - accumulation.scrollableSegments.push(segmentPath); - } - let newCacheNode; - let needsDynamicRequest; - if (!shouldRefreshDynamicData && oldCacheNode !== undefined) { - // Reuse the existing CacheNode - newCacheNode = reuseDynamicCacheNode(dropPrefetchRsc, oldCacheNode, newParallelRoutes); - needsDynamicRequest = false; - } else if (seedData !== null && seedData[0] !== null) { - // If this navigation was the result of an action, then check if the - // server sent back data in the action response. We should favor using - // that, rather than performing a separate request. This is both better - // for performance and it's more likely to be consistent with any - // writes that were just performed by the action, compared to a - // separate request. - const seedRsc = seedData[0]; - const seedLoading = seedData[2]; - const isSeedRscPartial = false; - const isSeedHeadPartial = seedHead === null && freshness !== 1; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isLeafSegment && isSeedHeadPartial; - } else if (freshness === 1 && isLeafSegment && seedHead !== null) { - // This is another weird case related to "not found" pages and hydration. - // There will be a head sent by the server, but no page seed data. - // TODO: We really should get rid of all these "not found" specific quirks - // and make sure the tree is always consistent. - const seedRsc = null; - const seedLoading = null; - const isSeedRscPartial = false; - const isSeedHeadPartial = false; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = false; - } else if (freshness !== 1 && prefetchData !== null) { - // Consult the prefetch cache. - const prefetchRsc = prefetchData[0]; - const prefetchLoading = prefetchData[2]; - const isPrefetchRSCPartial = prefetchData[3]; - newCacheNode = readCacheNodeFromSeedData(prefetchRsc, prefetchLoading, isPrefetchRSCPartial, prefetchHead, isPrefetchHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isPrefetchRSCPartial || isLeafSegment && isPrefetchHeadPartial; - } else { - // Spawn a request to fetch new data from the server. - newCacheNode = spawnNewCacheNode(newParallelRoutes, isLeafSegment, navigatedAt, freshness); - needsDynamicRequest = true; - } - let patchedRouterStateChildren = {}; - let taskChildren = null; - let childNeedsDynamicRequest = false; - let dynamicRequestTreeChildren = {}; - for(let parallelRouteKey in newRouterStateChildren){ - const newRouterStateChild = newRouterStateChildren[parallelRouteKey]; - const oldSegmentMapChild = oldParallelRoutes !== undefined ? oldParallelRoutes.get(parallelRouteKey) : undefined; - const seedDataChild = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null; - const prefetchDataChild = prefetchDataChildren !== null ? prefetchDataChildren[parallelRouteKey] : null; - const newSegmentChild = newRouterStateChild[0]; - const newSegmentKeyChild = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createRouterCacheKey"])(newSegmentChild); - const oldCacheNodeChild = oldSegmentMapChild !== undefined ? oldSegmentMapChild.get(newSegmentKeyChild) : undefined; - const taskChild = createCacheNodeOnNavigation(navigatedAt, newRouterStateChild, oldCacheNodeChild, freshness, seedDataChild ?? null, seedHead, prefetchDataChild ?? null, prefetchHead, isPrefetchHeadPartial, segmentPath, parallelRouteKey, parentNeedsDynamicRequest || needsDynamicRequest, accumulation); - if (taskChildren === null) { - taskChildren = new Map(); - } - taskChildren.set(parallelRouteKey, taskChild); - const newCacheNodeChild = taskChild.node; - if (newCacheNodeChild !== null) { - const newSegmentMapChild = new Map(shouldDropSiblingCaches ? undefined : oldSegmentMapChild); - newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild); - newParallelRoutes.set(parallelRouteKey, newSegmentMapChild); - } - const taskChildRoute = taskChild.route; - patchedRouterStateChildren[parallelRouteKey] = taskChildRoute; - const dynamicRequestTreeChild = taskChild.dynamicRequestTree; - if (dynamicRequestTreeChild !== null) { - childNeedsDynamicRequest = true; - dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild; - } else { - dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute; - } - } - return { - status: needsDynamicRequest ? 0 : 1, - route: patchRouterStateWithNewChildren(newRouterState, patchedRouterStateChildren), - node: newCacheNode, - dynamicRequestTree: createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest), - // This route is not part of the current tree, so there's no reason to - // track the refresh URL. - refreshUrl: null, - children: taskChildren - }; -} -function patchRouterStateWithNewChildren(baseRouterState, newChildren) { - const clone = [ - baseRouterState[0], - newChildren - ]; - // Based on equivalent logic in apply-router-state-patch-to-tree, but should - // confirm whether we need to copy all of these fields. Not sure the server - // ever sends, e.g. the refetch marker. - if (2 in baseRouterState) { - clone[2] = baseRouterState[2]; - } - if (3 in baseRouterState) { - clone[3] = baseRouterState[3]; - } - if (4 in baseRouterState) { - clone[4] = baseRouterState[4]; - } - return clone; -} -function createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest) { - // Create a FlightRouterState that instructs the server how to render the - // requested segment. - // - // Or, if neither this segment nor any of the children require a new data, - // then we return `null` to skip the request. - let dynamicRequestTree = null; - if (needsDynamicRequest) { - dynamicRequestTree = patchRouterStateWithNewChildren(newRouterState, dynamicRequestTreeChildren); - // The "refetch" marker is set on the top-most segment that requires new - // data. We can omit it if a parent was already marked. - if (!parentNeedsDynamicRequest) { - dynamicRequestTree[3] = 'refetch'; - } - } else if (childNeedsDynamicRequest) { - // This segment does not request new data, but at least one of its - // children does. - dynamicRequestTree = patchRouterStateWithNewChildren(newRouterState, dynamicRequestTreeChildren); - } else { - dynamicRequestTree = null; - } - return dynamicRequestTree; -} -function accumulateRefreshUrl(accumulation, refreshUrl) { - // This is a refresh navigation, and we're inside a "default" slot that's - // not part of the current route; it was reused from an older route. In - // order to get fresh data for this reused route, we need to issue a - // separate request using the old route's URL. - // - // Track these extra URLs in the accumulated result. Later, we'll construct - // an appropriate request for each unique URL in the final set. The reason - // we don't do it immediately here is so we can deduplicate multiple - // instances of the same URL into a single request. See - // listenForDynamicRequest for more details. - const separateRefreshUrls = accumulation.separateRefreshUrls; - if (separateRefreshUrls === null) { - accumulation.separateRefreshUrls = new Set([ - refreshUrl - ]); - } else { - separateRefreshUrls.add(refreshUrl); - } -} -function reuseActiveSegmentInDefaultSlot(oldUrl, oldRouterState) { - // This is a "default" segment. These are never sent by the server during a - // soft navigation; instead, the client reuses whatever segment was already - // active in that slot on the previous route. This means if we later need to - // refresh the segment, it will have to be refetched from the previous route's - // URL. We store it in the Flight Router State. - // - // TODO: We also mark the segment with a "refresh" marker but I think we can - // get rid of that eventually by making sure we only add URLs to page segments - // that are reused. Then the presence of the URL alone is enough. - let reusedRouterState; - const oldRefreshMarker = oldRouterState[3]; - if (oldRefreshMarker === 'refresh') { - // This segment was already reused from an even older route. Keep its - // existing URL and refresh marker. - reusedRouterState = oldRouterState; - } else { - // This segment was not previously reused, and it's not on the new route. - // So it must have been delivered in the old route. - reusedRouterState = patchRouterStateWithNewChildren(oldRouterState, oldRouterState[1]); - reusedRouterState[2] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(oldUrl); - reusedRouterState[3] = 'refresh'; - } - return reusedRouterState; -} -function reuseDynamicCacheNode(dropPrefetchRsc, existingCacheNode, parallelRoutes) { - // Clone an existing CacheNode's data, with (possibly) new children. - const cacheNode = { - rsc: existingCacheNode.rsc, - prefetchRsc: dropPrefetchRsc ? null : existingCacheNode.prefetchRsc, - head: existingCacheNode.head, - prefetchHead: dropPrefetchRsc ? null : existingCacheNode.prefetchHead, - loading: existingCacheNode.loading, - parallelRoutes, - // Don't update the navigatedAt timestamp, since we're reusing - // existing data. - navigatedAt: existingCacheNode.navigatedAt - }; - return cacheNode; -} -function readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isPageSegment, parallelRoutes, navigatedAt) { - // TODO: Currently this is threaded through the navigation logic using the - // CacheNodeSeedData type, but in the future this will read directly from - // the Segment Cache. See readRenderSnapshotFromCache. - let rsc; - let prefetchRsc; - if (isSeedRscPartial) { - // The prefetched data contains dynamic holes. Create a pending promise that - // will be fulfilled when the dynamic data is received from the server. - prefetchRsc = seedRsc; - rsc = createDeferredRsc(); - } else { - // The prefetched data is complete. Use it directly. - prefetchRsc = null; - rsc = seedRsc; - } - // If this is a page segment, also read the head. - let prefetchHead; - let head; - if (isPageSegment) { - if (isSeedHeadPartial) { - prefetchHead = seedHead; - head = createDeferredRsc(); - } else { - prefetchHead = null; - head = seedHead; - } - } else { - prefetchHead = null; - head = null; - } - const cacheNode = { - rsc, - prefetchRsc, - head, - prefetchHead, - // TODO: Technically, a loading boundary could contain dynamic data. We - // should have separate `loading` and `prefetchLoading` fields to handle - // this, like we do for the segment data and head. - loading: seedLoading, - parallelRoutes, - navigatedAt - }; - return cacheNode; -} -function spawnNewCacheNode(parallelRoutes, isLeafSegment, navigatedAt, freshness) { - // We should never spawn network requests during hydration. We must treat the - // initial payload as authoritative, because the initial page load is used - // as a last-ditch mechanism for recovering the app. - // - // This is also an important safety check because if this leaks into the - // server rendering path (which theoretically it never should because - // the server payload should be consistent), the server would hang because - // these promises would never resolve. - // - // TODO: There is an existing case where the global "not found" boundary - // triggers this path. But it does render correctly despite that. That's an - // unusual render path so it's not surprising, but we should look into - // modeling it in a more consistent way. See also the /_notFound special - // case in updateCacheNodeOnNavigation. - const isHydration = freshness === 1; - const cacheNode = { - rsc: !isHydration ? createDeferredRsc() : null, - prefetchRsc: null, - head: !isHydration && isLeafSegment ? createDeferredRsc() : null, - prefetchHead: null, - loading: !isHydration ? createDeferredRsc() : null, - parallelRoutes, - navigatedAt - }; - return cacheNode; -} -// Represents whether the previuos navigation resulted in a route tree mismatch. -// A mismatch results in a refresh of the page. If there are two successive -// mismatches, we will fall back to an MPA navigation, to prevent a retry loop. -let previousNavigationDidMismatch = false; -function spawnDynamicRequests(task, primaryUrl, nextUrl, freshnessPolicy, accumulation) { - const dynamicRequestTree = task.dynamicRequestTree; - if (dynamicRequestTree === null) { - // This navigation was fully cached. There are no dynamic requests to spawn. - previousNavigationDidMismatch = false; - return; - } - // This is intentionally not an async function to discourage the caller from - // awaiting the result. Any subsequent async operations spawned by this - // function should result in a separate navigation task, rather than - // block the original one. - // - // In this function we spawn (but do not await) all the network requests that - // block the navigation, and collect the promises. The next function, - // `finishNavigationTask`, can await the promises in any order without - // accidentally introducing a network waterfall. - const primaryRequestPromise = fetchMissingDynamicData(task, dynamicRequestTree, primaryUrl, nextUrl, freshnessPolicy); - const separateRefreshUrls = accumulation.separateRefreshUrls; - let refreshRequestPromises = null; - if (separateRefreshUrls !== null) { - // There are multiple URLs that we need to request the data from. This - // happens when a "default" parallel route slot is present in the tree, and - // its data cannot be fetched from the current route. We need to split the - // combined dynamic request tree into separate requests per URL. - // TODO: Create a scoped dynamic request tree that omits anything that - // is not relevant to the given URL. Without doing this, the server may - // sometimes render more data than necessary; this is not a regression - // compared to the pre-Segment Cache implementation, though, just an - // optimization we can make in the future. - // Construct a request tree for each additional refresh URL. This will - // prune away everything except the parts of the tree that match the - // given refresh URL. - refreshRequestPromises = []; - const canonicalUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(primaryUrl); - for (const refreshUrl of separateRefreshUrls){ - if (refreshUrl === canonicalUrl) { - continue; - } - // TODO: Create a scoped dynamic request tree that omits anything that - // is not relevant to the given URL. Without doing this, the server may - // sometimes render more data than necessary; this is not a regression - // compared to the pre-Segment Cache implementation, though, just an - // optimization we can make in the future. - // const scopedDynamicRequestTree = splitTaskByURL(task, refreshUrl) - const scopedDynamicRequestTree = dynamicRequestTree; - if (scopedDynamicRequestTree !== null) { - refreshRequestPromises.push(fetchMissingDynamicData(task, scopedDynamicRequestTree, new URL(refreshUrl, location.origin), // time the refresh URL was set, not the current Next-Url. Need to - // start tracking this alongside the refresh URL. In the meantime, - // if a refresh fails due to a mismatch, it will trigger a - // hard refresh. - nextUrl, freshnessPolicy)); - } - } - } - // Further async operations are moved into this separate function to - // discourage sequential network requests. - const voidPromise = finishNavigationTask(task, nextUrl, primaryRequestPromise, refreshRequestPromises); - // `finishNavigationTask` is responsible for error handling, so we can attach - // noop callbacks to this promise. - voidPromise.then(noop, noop); -} -async function finishNavigationTask(task, nextUrl, primaryRequestPromise, refreshRequestPromises) { - // Wait for all the requests to finish, or for the first one to fail. - let exitStatus = await waitForRequestsToFinish(primaryRequestPromise, refreshRequestPromises); - // Once the all the requests have finished, check the tree for any remaining - // pending tasks. If anything is still pending, it means the server response - // does not match the client, and we must refresh to get back to a consistent - // state. We can skip this step if we already detected a mismatch during the - // first phase; it doesn't matter in that case because we're going to refresh - // the whole tree regardless. - if (exitStatus === 0) { - exitStatus = abortRemainingPendingTasks(task, null, null); - } - switch(exitStatus){ - case 0: - { - // The task has completely finished. There's no missing data. Exit. - previousNavigationDidMismatch = false; - return; - } - case 1: - { - // Some data failed to finish loading. Trigger a soft retry. - // TODO: As an extra precaution against soft retry loops, consider - // tracking whether a navigation was itself triggered by a retry. If two - // happen in a row, fall back to a hard retry. - const isHardRetry = false; - const primaryRequestResult = await primaryRequestPromise; - dispatchRetryDueToTreeMismatch(isHardRetry, primaryRequestResult.url, nextUrl, primaryRequestResult.seed, task.route); - return; - } - case 2: - { - // Some data failed to finish loading in a non-recoverable way, such as a - // network error. Trigger an MPA navigation. - // - // Hard navigating/refreshing is how we prevent an infinite retry loop - // caused by a network error — when the network fails, we fall back to the - // browser behavior for offline navigations. In the future, Next.js may - // introduce its own custom handling of offline navigations, but that - // doesn't exist yet. - const isHardRetry = true; - const primaryRequestResult = await primaryRequestPromise; - dispatchRetryDueToTreeMismatch(isHardRetry, primaryRequestResult.url, nextUrl, primaryRequestResult.seed, task.route); - return; - } - default: - { - return exitStatus; - } - } -} -function waitForRequestsToFinish(primaryRequestPromise, refreshRequestPromises) { - // Custom async combinator logic. This could be replaced by Promise.any but - // we don't assume that's available. - // - // Each promise resolves once the server responsds and the data is written - // into the CacheNode tree. Resolve the combined promise once all the - // requests finish. - // - // Or, resolve as soon as one of the requests fails, without waiting for the - // others to finish. - return new Promise((resolve)=>{ - const onFulfill = (result)=>{ - if (result.exitStatus === 0) { - remainingCount--; - if (remainingCount === 0) { - // All the requests finished successfully. - resolve(0); - } - } else { - // One of the requests failed. Exit with a failing status. - // NOTE: It's possible for one of the requests to fail with SoftRetry - // and a later one to fail with HardRetry. In this case, we choose to - // retry immediately, rather than delay the retry until all the requests - // finish. If it fails again, we will hard retry on the next - // attempt, anyway. - resolve(result.exitStatus); - } - }; - // onReject shouldn't ever be called because fetchMissingDynamicData's - // entire body is wrapped in a try/catch. This is just defensive. - const onReject = ()=>resolve(2); - // Attach the listeners to the promises. - let remainingCount = 1; - primaryRequestPromise.then(onFulfill, onReject); - if (refreshRequestPromises !== null) { - remainingCount += refreshRequestPromises.length; - refreshRequestPromises.forEach((refreshRequestPromise)=>refreshRequestPromise.then(onFulfill, onReject)); - } - }); -} -function dispatchRetryDueToTreeMismatch(isHardRetry, retryUrl, retryNextUrl, seed, baseTree) { - // If this is the second time in a row that a navigation resulted in a - // mismatch, fall back to a hard (MPA) refresh. - isHardRetry = isHardRetry || previousNavigationDidMismatch; - previousNavigationDidMismatch = true; - const retryAction = { - type: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$router$2d$reducer$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ACTION_SERVER_PATCH"], - previousTree: baseTree, - url: retryUrl, - nextUrl: retryNextUrl, - seed, - mpa: isHardRetry - }; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$use$2d$action$2d$queue$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatchAppRouterAction"])(retryAction); -} -async function fetchMissingDynamicData(task, dynamicRequestTree, url, nextUrl, freshnessPolicy) { - try { - const result = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchServerResponse"])(url, { - flightRouterState: dynamicRequestTree, - nextUrl, - isHmrRefresh: freshnessPolicy === 4 - }); - if (typeof result === 'string') { - // fetchServerResponse will return an href to indicate that the SPA - // navigation failed. For example, if the server triggered a hard - // redirect, or the fetch request errored. Initiate an MPA navigation - // to the given href. - return { - exitStatus: 2, - url: new URL(result, location.origin), - seed: null - }; - } - const seed = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["convertServerPatchToFullTree"])(task.route, result.flightData, result.renderedSearch); - const didReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(task, seed.tree, seed.data, seed.head, result.debugInfo); - return { - exitStatus: didReceiveUnknownParallelRoute ? 1 : 0, - url: new URL(result.canonicalUrl, location.origin), - seed - }; - } catch { - // This shouldn't happen because fetchServerResponse's entire body is - // wrapped in a try/catch. If it does, though, it implies the server failed - // to respond with any tree at all. So we must fall back to a hard retry. - return { - exitStatus: 2, - url: url, - seed: null - }; - } -} -function writeDynamicDataIntoNavigationTask(task, serverRouterState, dynamicData, dynamicHead, debugInfo) { - if (task.status === 0 && dynamicData !== null) { - task.status = 1; - finishPendingCacheNode(task.node, dynamicData, dynamicHead, debugInfo); - } - const taskChildren = task.children; - const serverChildren = serverRouterState[1]; - const dynamicDataChildren = dynamicData !== null ? dynamicData[1] : null; - // Detect whether the server sends a parallel route slot that the client - // doesn't know about. - let didReceiveUnknownParallelRoute = false; - if (taskChildren !== null) { - for(const parallelRouteKey in serverChildren){ - const serverRouterStateChild = serverChildren[parallelRouteKey]; - const dynamicDataChild = dynamicDataChildren !== null ? dynamicDataChildren[parallelRouteKey] : null; - const taskChild = taskChildren.get(parallelRouteKey); - if (taskChild === undefined) { - // The server sent a child segment that the client doesn't know about. - // - // When we receive an unknown parallel route, we must consider it a - // mismatch. This is unlike the case where the segment itself - // mismatches, because multiple routes can be active simultaneously. - // But a given layout should never have a mismatching set of - // child slots. - // - // Theoretically, this should only happen in development during an HMR - // refresh, because the set of parallel routes for a layout does not - // change over the lifetime of a build/deployment. In production, we - // should have already mismatched on either the build id or the segment - // path. But as an extra precaution, we validate in prod, too. - didReceiveUnknownParallelRoute = true; - } else { - const taskSegment = taskChild.route[0]; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(serverRouterStateChild[0], taskSegment) && dynamicDataChild !== null && dynamicDataChild !== undefined) { - // Found a match for this task. Keep traversing down the task tree. - const childDidReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(taskChild, serverRouterStateChild, dynamicDataChild, dynamicHead, debugInfo); - if (childDidReceiveUnknownParallelRoute) { - didReceiveUnknownParallelRoute = true; - } - } - } - } - } - return didReceiveUnknownParallelRoute; -} -function finishPendingCacheNode(cacheNode, dynamicData, dynamicHead, debugInfo) { - // Writes a dynamic response into an existing Cache Node tree. This does _not_ - // create a new tree, it updates the existing tree in-place. So it must follow - // the Suspense rules of cache safety — it can resolve pending promises, but - // it cannot overwrite existing data. It can add segments to the tree (because - // a missing segment will cause the layout router to suspend). - // but it cannot delete them. - // - // We must resolve every promise in the tree, or else it will suspend - // indefinitely. If we did not receive data for a segment, we will resolve its - // data promise to `null` to trigger a lazy fetch during render. - // Use the dynamic data from the server to fulfill the deferred RSC promise - // on the Cache Node. - const rsc = cacheNode.rsc; - const dynamicSegmentData = dynamicData[0]; - if (dynamicSegmentData === null) { - // This is an empty CacheNode; this particular server request did not - // render this segment. There may be a separate pending request that will, - // though, so we won't abort the task until all pending requests finish. - return; - } - if (rsc === null) { - // This is a lazy cache node. We can overwrite it. This is only safe - // because we know that the LayoutRouter suspends if `rsc` is `null`. - cacheNode.rsc = dynamicSegmentData; - } else if (isDeferredRsc(rsc)) { - // This is a deferred RSC promise. We can fulfill it with the data we just - // received from the server. If it was already resolved by a different - // navigation, then this does nothing because we can't overwrite data. - rsc.resolve(dynamicSegmentData, debugInfo); - } else { - // This is not a deferred RSC promise, nor is it empty, so it must have - // been populated by a different navigation. We must not overwrite it. - } - // If we navigated without a prefetch, then `loading` will be a deferred promise too. - // Fulfill it using the dynamic response so that we can display the loading boundary. - const loading = cacheNode.loading; - if (isDeferredRsc(loading)) { - const dynamicLoading = dynamicData[2]; - loading.resolve(dynamicLoading, debugInfo); - } - // Check if this is a leaf segment. If so, it will have a `head` property with - // a pending promise that needs to be resolved with the dynamic head from - // the server. - const head = cacheNode.head; - if (isDeferredRsc(head)) { - head.resolve(dynamicHead, debugInfo); - } -} -function abortRemainingPendingTasks(task, error, debugInfo) { - let exitStatus; - if (task.status === 0) { - // The data for this segment is still missing. - task.status = 2; - abortPendingCacheNode(task.node, error, debugInfo); - // If the server failed to fulfill the data for this segment, it implies - // that the route tree received from the server mismatched the tree that - // was previously prefetched. - // - // In an app with fully static routes and no proxy-driven redirects or - // rewrites, this should never happen, because the route for a URL would - // always be the same across multiple requests. So, this implies that some - // runtime routing condition changed, likely in a proxy, without being - // pushed to the client. - // - // When this happens, we treat this the same as a refresh(). The entire - // tree will be re-rendered from the root. - if (task.refreshUrl === null) { - // Trigger a "soft" refresh. Essentially the same as calling `refresh()` - // in a Server Action. - exitStatus = 1; - } else { - // The mismatch was discovered inside an inactive parallel route. This - // implies the inactive parallel route is no longer reachable at the URL - // that originally rendered it. Fall back to an MPA refresh. - // TODO: An alternative could be to trigger a soft refresh but to _not_ - // re-use the inactive parallel routes this time. Similar to what would - // happen if were to do a hard refrehs, but without the HTML page. - exitStatus = 2; - } - } else { - // This segment finished. (An error here is treated as Done because they are - // surfaced to the application during render.) - exitStatus = 0; - } - const taskChildren = task.children; - if (taskChildren !== null) { - for (const [, taskChild] of taskChildren){ - const childExitStatus = abortRemainingPendingTasks(taskChild, error, debugInfo); - // Propagate the exit status up the tree. The statuses are ordered by - // their precedence. - if (childExitStatus > exitStatus) { - exitStatus = childExitStatus; - } - } - } - return exitStatus; -} -function abortPendingCacheNode(cacheNode, error, debugInfo) { - const rsc = cacheNode.rsc; - if (isDeferredRsc(rsc)) { - if (error === null) { - // This will trigger a lazy fetch during render. - rsc.resolve(null, debugInfo); - } else { - // This will trigger an error during rendering. - rsc.reject(error, debugInfo); - } - } - const loading = cacheNode.loading; - if (isDeferredRsc(loading)) { - loading.resolve(null, debugInfo); - } - // Check if this is a leaf segment. If so, it will have a `head` property with - // a pending promise that needs to be resolved. If an error was provided, we - // will not resolve it with an error, since this is rendered at the root of - // the app. We want the segment to error, not the entire app. - const head = cacheNode.head; - if (isDeferredRsc(head)) { - head.resolve(null, debugInfo); - } -} -const DEFERRED = Symbol(); -function isDeferredRsc(value) { - return value && typeof value === 'object' && value.tag === DEFERRED; -} -function createDeferredRsc() { - // Create an unresolved promise that represents data derived from a Flight - // response. The promise will be resolved later as soon as we start receiving - // data from the server, i.e. as soon as the Flight client decodes and returns - // the top-level response object. - // The `_debugInfo` field contains profiling information. Promises that are - // created by Flight already have this info added by React; for any derived - // promise created by the router, we need to transfer the Flight debug info - // onto the derived promise. - // - // The debug info represents the latency between the start of the navigation - // and the start of rendering. (It does not represent the time it takes for - // whole stream to finish.) - const debugInfo = []; - let resolve; - let reject; - const pendingRsc = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - pendingRsc.status = 'pending'; - pendingRsc.resolve = (value, responseDebugInfo)=>{ - if (pendingRsc.status === 'pending') { - const fulfilledRsc = pendingRsc; - fulfilledRsc.status = 'fulfilled'; - fulfilledRsc.value = value; - if (responseDebugInfo !== null) { - // Transfer the debug info to the derived promise. - debugInfo.push.apply(debugInfo, responseDebugInfo); - } - resolve(value); - } - }; - pendingRsc.reject = (error, responseDebugInfo)=>{ - if (pendingRsc.status === 'pending') { - const rejectedRsc = pendingRsc; - rejectedRsc.status = 'rejected'; - rejectedRsc.reason = error; - if (responseDebugInfo !== null) { - // Transfer the debug info to the derived promise. - debugInfo.push.apply(debugInfo, responseDebugInfo); - } - reject(error); - } - }; - pendingRsc.tag = DEFERRED; - pendingRsc._debugInfo = debugInfo; - return pendingRsc; -} //# sourceMappingURL=ppr-navigations.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/navigation-devtools.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createNestedLayoutNavigationPromises", - ()=>createNestedLayoutNavigationPromises, - "createRootNavigationPromises", - ()=>createRootNavigationPromises -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -; -const layoutSegmentPromisesCache = new WeakMap(); -/** - * Creates instrumented promises for layout segment hooks at a given tree level. - * This is dev-only code for React Suspense DevTools instrumentation. - */ function createLayoutSegmentPromises(tree) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Check if we already have cached promises for this tree - const cached = layoutSegmentPromisesCache.get(tree); - if (cached) { - return cached; - } - // Create new promises and cache them - const segmentPromises = new Map(); - const segmentsPromises = new Map(); - const parallelRoutes = tree[1]; - for (const parallelRouteKey of Object.keys(parallelRoutes)){ - const segments = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSelectedLayoutSegmentPath"])(tree, parallelRouteKey); - // Use the shared logic to compute the segment value - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["computeSelectedLayoutSegment"])(segments, parallelRouteKey); - segmentPromises.set(parallelRouteKey, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('useSelectedLayoutSegment', segment)); - segmentsPromises.set(parallelRouteKey, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('useSelectedLayoutSegments', segments)); - } - const result = { - selectedLayoutSegmentPromises: segmentPromises, - selectedLayoutSegmentsPromises: segmentsPromises - }; - // Cache the result for future renders - layoutSegmentPromisesCache.set(tree, result); - return result; -} -const rootNavigationPromisesCache = new WeakMap(); -function createRootNavigationPromises(tree, pathname, searchParams, pathParams) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Create stable cache keys from the values - const searchParamsString = searchParams.toString(); - const pathParamsString = JSON.stringify(pathParams); - const cacheKey = `${pathname}:${searchParamsString}:${pathParamsString}`; - // Get or create the cache for this tree - let treeCache = rootNavigationPromisesCache.get(tree); - if (!treeCache) { - treeCache = new Map(); - rootNavigationPromisesCache.set(tree, treeCache); - } - // Check if we have cached promises for this combination - const cached = treeCache.get(cacheKey); - if (cached) { - return cached; - } - const readonlySearchParams = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReadonlyURLSearchParams"](searchParams); - const layoutSegmentPromises = createLayoutSegmentPromises(tree); - const promises = { - pathname: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('usePathname', pathname), - searchParams: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('useSearchParams', readonlySearchParams), - params: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('useParams', pathParams), - ...layoutSegmentPromises - }; - treeCache.set(cacheKey, promises); - return promises; -} -const nestedLayoutPromisesCache = new WeakMap(); -function createNestedLayoutNavigationPromises(tree, parentNavPromises) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - const parallelRoutes = tree[1]; - const parallelRouteKeys = Object.keys(parallelRoutes); - // Only create promises if there are parallel routes at this level - if (parallelRouteKeys.length === 0) { - return null; - } - // Get or create the cache for this tree - let treeCache = nestedLayoutPromisesCache.get(tree); - if (!treeCache) { - treeCache = new Map(); - nestedLayoutPromisesCache.set(tree, treeCache); - } - // Check if we have cached promises for this parent combination - const cached = treeCache.get(parentNavPromises); - if (cached) { - return cached; - } - // Create merged promises - const layoutSegmentPromises = createLayoutSegmentPromises(tree); - const promises = { - ...parentNavPromises, - ...layoutSegmentPromises - }; - treeCache.set(parentNavPromises, promises); - return promises; -} //# sourceMappingURL=navigation-devtools.js.map -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE", - ()=>SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE, - "SegmentBoundaryTriggerNode", - ()=>SegmentBoundaryTriggerNode, - "SegmentStateProvider", - ()=>SegmentStateProvider, - "SegmentViewNode", - ()=>SegmentViewNode, - "SegmentViewStateNode", - ()=>SegmentViewStateNode, - "useSegmentState", - ()=>useSegmentState -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/next-devtools/dev-overlay.shim.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$not$2d$found$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/not-found.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE = 'NEXT_DEVTOOLS_SIMULATED_ERROR'; -function SegmentTrieNode({ type, pagePath }) { - const { boundaryType, setBoundaryType } = useSegmentState(); - const nodeState = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useMemo"])(()=>{ - return { - type, - pagePath, - boundaryType, - setBoundaryType - }; - }, [ - type, - pagePath, - boundaryType, - setBoundaryType - ]); - // Use `useLayoutEffect` to ensure the state is updated during suspense. - // `useEffect` won't work as the state is preserved during suspense. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useLayoutEffect"])(()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].segmentExplorerNodeAdd(nodeState); - return ()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].segmentExplorerNodeRemove(nodeState); - }; - }, [ - nodeState - ]); - return null; -} -function NotFoundSegmentNode() { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$not$2d$found$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["notFound"])(); -} -function ErrorSegmentNode() { - throw Object.defineProperty(new Error(SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); -} -const forever = new Promise(()=>{}); -function LoadingSegmentNode() { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(forever); - return null; -} -function SegmentViewStateNode({ page }) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useLayoutEffect"])(()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].segmentExplorerUpdateRouteState(page); - return ()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].segmentExplorerUpdateRouteState(''); - }; - }, [ - page - ]); - return null; -} -function SegmentBoundaryTriggerNode() { - const { boundaryType } = useSegmentState(); - let segmentNode = null; - if (boundaryType === 'loading') { - segmentNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(LoadingSegmentNode, {}); - } else if (boundaryType === 'not-found') { - segmentNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(NotFoundSegmentNode, {}); - } else if (boundaryType === 'error') { - segmentNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(ErrorSegmentNode, {}); - } - return segmentNode; -} -function SegmentViewNode({ type, pagePath, children }) { - const segmentNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(SegmentTrieNode, { - type: type, - pagePath: pagePath - }, type); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: [ - segmentNode, - children - ] - }); -} -const SegmentStateContext = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createContext"])({ - boundaryType: null, - setBoundaryType: ()=>{} -}); -function SegmentStateProvider({ children }) { - const [boundaryType, setBoundaryType] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useState"])(null); - const [errorBoundaryKey, setErrorBoundaryKey] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useState"])(0); - const reloadBoundary = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useCallback"])(()=>setErrorBoundaryKey((prev)=>prev + 1), []); - const setBoundaryTypeAndReload = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useCallback"])((type)=>{ - if (type === null) { - reloadBoundary(); - } - setBoundaryType(type); - }, [ - reloadBoundary - ]); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(SegmentStateContext.Provider, { - value: { - boundaryType, - setBoundaryType: setBoundaryTypeAndReload - }, - children: children - }, errorBoundaryKey); -} -function useSegmentState() { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(SegmentStateContext); -} //# sourceMappingURL=segment-explorer-node.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>OuterLayoutRouter -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$dom$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/unresolved-thenable.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$error$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/error-boundary.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$disable$2d$smooth$2d$scroll$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/disable-smooth-scroll.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-boundary.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-router-cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$bfcache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/bfcache.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -const __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$dom$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; -// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available -/** - * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning - */ function findDOMNode(instance) { - // Tree-shake for server bundle - if ("TURBOPACK compile-time truthy", 1) return null; - //TURBOPACK unreachable - ; - // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init. - // We need to lazily reference it. - const internal_reactDOMfindDOMNode = undefined; -} -const rectProperties = [ - 'bottom', - 'height', - 'left', - 'right', - 'top', - 'width', - 'x', - 'y' -]; -/** - * Check if a HTMLElement is hidden or fixed/sticky position - */ function shouldSkipElement(element) { - // we ignore fixed or sticky positioned elements since they'll likely pass the "in-viewport" check - // and will result in a situation we bail on scroll because of something like a fixed nav, - // even though the actual page content is offscreen - if ([ - 'sticky', - 'fixed' - ].includes(getComputedStyle(element).position)) { - return true; - } - // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent` - // because `offsetParent` doesn't consider document/body - const rect = element.getBoundingClientRect(); - return rectProperties.every((item)=>rect[item] === 0); -} -/** - * Check if the top corner of the HTMLElement is in the viewport. - */ function topOfElementInViewport(element, viewportHeight) { - const rect = element.getBoundingClientRect(); - return rect.top >= 0 && rect.top <= viewportHeight; -} -/** - * Find the DOM node for a hash fragment. - * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior. - * If the hash fragment is an id, the page has to scroll to the element with that id. - * If the hash fragment is a name, the page has to scroll to the first element with that name. - */ function getHashFragmentDomNode(hashFragment) { - // If the hash fragment is `top` the page has to scroll to the top of the page. - if (hashFragment === 'top') { - return document.body; - } - // If the hash fragment is an id, the page has to scroll to the element with that id. - return document.getElementById(hashFragment) ?? // If the hash fragment is a name, the page has to scroll to the first element with that name. - document.getElementsByName(hashFragment)[0]; -} -class InnerScrollAndFocusHandler extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].Component { - componentDidMount() { - this.handlePotentialScroll(); - } - componentDidUpdate() { - // Because this property is overwritten in handlePotentialScroll it's fine to always run it when true as it'll be set to false for subsequent renders. - if (this.props.focusAndScrollRef.apply) { - this.handlePotentialScroll(); - } - } - render() { - return this.props.children; - } - constructor(...args){ - super(...args), this.handlePotentialScroll = ()=>{ - // Handle scroll and focus, it's only applied once in the first useEffect that triggers that changed. - const { focusAndScrollRef, segmentPath } = this.props; - if (focusAndScrollRef.apply) { - // segmentPaths is an array of segment paths that should be scrolled to - // if the current segment path is not in the array, the scroll is not applied - // unless the array is empty, in which case the scroll is always applied - if (focusAndScrollRef.segmentPaths.length !== 0 && !focusAndScrollRef.segmentPaths.some((scrollRefSegmentPath)=>segmentPath.every((segment, index)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(segment, scrollRefSegmentPath[index])))) { - return; - } - let domNode = null; - const hashFragment = focusAndScrollRef.hashFragment; - if (hashFragment) { - domNode = getHashFragmentDomNode(hashFragment); - } - // `findDOMNode` is tricky because it returns just the first child if the component is a fragment. - // This already caused a bug where the first child was a in head. - if (!domNode) { - domNode = findDOMNode(this); - } - // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree. - if (!(domNode instanceof Element)) { - return; - } - // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior. - // If the element is skipped, try to select the next sibling and try again. - while(!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)){ - if ("TURBOPACK compile-time truthy", 1) { - if (domNode.parentElement?.localName === 'head') { - // TODO: We enter this state when metadata was rendered as part of the page or via Next.js. - // This is always a bug in Next.js and caused by React hoisting metadata. - // We need to replace `findDOMNode` in favor of Fragment Refs (when available) so that we can skip over metadata. - } - } - // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead. - if (domNode.nextElementSibling === null) { - return; - } - domNode = domNode.nextElementSibling; - } - // State is mutated to ensure that the focus and scroll is applied only once. - focusAndScrollRef.apply = false; - focusAndScrollRef.hashFragment = null; - focusAndScrollRef.segmentPaths = []; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$disable$2d$smooth$2d$scroll$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["disableSmoothScrollDuringRouteTransition"])(()=>{ - // In case of hash scroll, we only need to scroll the element into view - if (hashFragment) { - ; - domNode.scrollIntoView(); - return; - } - // Store the current viewport height because reading `clientHeight` causes a reflow, - // and it won't change during this function. - const htmlElement = document.documentElement; - const viewportHeight = htmlElement.clientHeight; - // If the element's top edge is already in the viewport, exit early. - if (topOfElementInViewport(domNode, viewportHeight)) { - return; - } - // Otherwise, try scrolling go the top of the document to be backward compatible with pages - // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen) - // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left - // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically - htmlElement.scrollTop = 0; - // Scroll to domNode if domNode is not in viewport when scrolled to top of document - if (!topOfElementInViewport(domNode, viewportHeight)) { - // Scroll into view doesn't scroll horizontally by default when not needed - ; - domNode.scrollIntoView(); - } - }, { - // We will force layout by querying domNode position - dontForceLayout: true, - onlyHashChange: focusAndScrollRef.onlyHashChange - }); - // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition` - focusAndScrollRef.onlyHashChange = false; - // Set focus on the element - domNode.focus(); - } - }; - } -} -function ScrollAndFocusHandler({ segmentPath, children }) { - const context = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["GlobalLayoutRouterContext"]); - if (!context) { - throw Object.defineProperty(new Error('invariant global layout router not mounted'), "__NEXT_ERROR_CODE", { - value: "E473", - enumerable: false, - configurable: true - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(InnerScrollAndFocusHandler, { - segmentPath: segmentPath, - focusAndScrollRef: context.focusAndScrollRef, - children: children - }); -} -/** - * InnerLayoutRouter handles rendering the provided segment based on the cache. - */ function InnerLayoutRouter({ tree, segmentPath, debugNameContext, cacheNode: maybeCacheNode, params, url, isActive }) { - const context = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["GlobalLayoutRouterContext"]); - const parentNavPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (!context) { - throw Object.defineProperty(new Error('invariant global layout router not mounted'), "__NEXT_ERROR_CODE", { - value: "E473", - enumerable: false, - configurable: true - }); - } - const cacheNode = maybeCacheNode !== null ? maybeCacheNode : // This should only be reachable for inactive/hidden segments, during - // prerendering The active segment should always be consistent with the - // CacheNode tree. Regardless, if we don't have a matching CacheNode, we - // must suspend rather than render nothing, to prevent showing an - // inconsistent route. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["unresolvedThenable"]); - // `rsc` represents the renderable node for this segment. - // If this segment has a `prefetchRsc`, it's the statically prefetched data. - // We should use that on initial render instead of `rsc`. Then we'll switch - // to `rsc` when the dynamic response streams in. - // - // If no prefetch data is available, then we go straight to rendering `rsc`. - const resolvedPrefetchRsc = cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc; - // We use `useDeferredValue` to handle switching between the prefetched and - // final values. The second argument is returned on initial render, then it - // re-renders with the first argument. - const rsc = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useDeferredValue"])(cacheNode.rsc, resolvedPrefetchRsc); - // `rsc` is either a React node or a promise for a React node, except we - // special case `null` to represent that this segment's data is missing. If - // it's a promise, we need to unwrap it so we can determine whether or not the - // data is missing. - let resolvedRsc; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isDeferredRsc"])(rsc)) { - const unwrappedRsc = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(rsc); - if (unwrappedRsc === null) { - // If the promise was resolved to `null`, it means the data for this - // segment was not returned by the server. Suspend indefinitely. When this - // happens, the router is responsible for triggering a new state update to - // un-suspend this segment. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["unresolvedThenable"]); - } - resolvedRsc = unwrappedRsc; - } else { - // This is not a deferred RSC promise. Don't need to unwrap it. - if (rsc === null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["unresolvedThenable"]); - } - resolvedRsc = rsc; - } - // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide - // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`. - // Promises are cached outside of render to survive suspense retries. - let navigationPromises = null; - if ("TURBOPACK compile-time truthy", 1) { - const { createNestedLayoutNavigationPromises } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/client/components/navigation-devtools.js [app-ssr] (ecmascript)"); - navigationPromises = createNestedLayoutNavigationPromises(tree, parentNavPromises); - } - let children = resolvedRsc; - if (navigationPromises) { - children = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"].Provider, { - value: navigationPromises, - children: resolvedRsc - }); - } - children = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"].Provider, { - value: { - parentTree: tree, - parentCacheNode: cacheNode, - parentSegmentPath: segmentPath, - parentParams: params, - debugNameContext: debugNameContext, - // TODO-APP: overriding of url for parallel routes - url: url, - isActive: isActive - }, - children: children - }); - return children; -} -/** - * Renders suspense boundary with the provided "loading" property as the fallback. - * If no loading property is provided it renders the children without a suspense boundary. - */ function LoadingBoundary({ name, loading, children }) { - // If loading is a promise, unwrap it. This happens in cases where we haven't - // yet received the loading data from the server — which includes whether or - // not this layout has a loading component at all. - // - // It's OK to suspend here instead of inside the fallback because this - // promise will resolve simultaneously with the data for the segment itself. - // So it will never suspend for longer than it would have if we didn't use - // a Suspense fallback at all. - let loadingModuleData; - if (typeof loading === 'object' && loading !== null && typeof loading.then === 'function') { - const promiseForLoading = loading; - loadingModuleData = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(promiseForLoading); - } else { - loadingModuleData = loading; - } - if (loadingModuleData) { - const loadingRsc = loadingModuleData[0]; - const loadingStyles = loadingModuleData[1]; - const loadingScripts = loadingModuleData[2]; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Suspense"], { - name: name, - fallback: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: [ - loadingStyles, - loadingScripts, - loadingRsc - ] - }), - children: children - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: children - }); -} -function OuterLayoutRouter({ parallelRouterKey, error, errorStyles, errorScripts, templateStyles, templateScripts, template, notFound, forbidden, unauthorized, segmentViewBoundaries }) { - const context = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"]); - if (!context) { - throw Object.defineProperty(new Error('invariant expected layout router to be mounted'), "__NEXT_ERROR_CODE", { - value: "E56", - enumerable: false, - configurable: true - }); - } - const { parentTree, parentCacheNode, parentSegmentPath, parentParams, url, isActive, debugNameContext } = context; - // Get the CacheNode for this segment by reading it from the parent segment's - // child map. - const parentParallelRoutes = parentCacheNode.parallelRoutes; - let segmentMap = parentParallelRoutes.get(parallelRouterKey); - // If the parallel router cache node does not exist yet, create it. - // This writes to the cache when there is no item in the cache yet. It never *overwrites* existing cache items which is why it's safe in concurrent mode. - if (!segmentMap) { - segmentMap = new Map(); - parentParallelRoutes.set(parallelRouterKey, segmentMap); - } - const parentTreeSegment = parentTree[0]; - const segmentPath = parentSegmentPath === null ? // the code. We should clean this up. - [ - parallelRouterKey - ] : parentSegmentPath.concat([ - parentTreeSegment, - parallelRouterKey - ]); - // The "state" key of a segment is the one passed to React — it represents the - // identity of the UI tree. Whenever the state key changes, the tree is - // recreated and the state is reset. In the App Router model, search params do - // not cause state to be lost, so two segments with the same segment path but - // different search params should have the same state key. - // - // The "cache" key of a segment, however, *does* include the search params, if - // it's possible that the segment accessed the search params on the server. - // (This only applies to page segments; layout segments cannot access search - // params on the server.) - const activeTree = parentTree[1][parallelRouterKey]; - if (activeTree === undefined) { - // Could not find a matching segment. The client tree is inconsistent with - // the server tree. Suspend indefinitely; the router will have already - // detected the inconsistency when handling the server response, and - // triggered a refresh of the page to recover. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["unresolvedThenable"]); - } - const activeSegment = activeTree[0]; - const activeStateKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createRouterCacheKey"])(activeSegment, true) // no search params - ; - // At each level of the route tree, not only do we render the currently - // active segment — we also render the last N segments that were active at - // this level inside a hidden boundary, to preserve their state - // if or when the user navigates to them again. - // - // bfcacheEntry is a linked list of FlightRouterStates. - let bfcacheEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$bfcache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useRouterBFCache"])(activeTree, activeStateKey); - let children = []; - do { - const tree = bfcacheEntry.tree; - const stateKey = bfcacheEntry.stateKey; - const segment = tree[0]; - const cacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createRouterCacheKey"])(segment); - // Read segment path from the parallel router cache node. - const cacheNode = segmentMap.get(cacheKey) ?? null; - /* - - Error boundary - - Only renders error boundary if error component is provided. - - Rendered for each segment to ensure they have their own error state. - - When gracefully degrade for bots, skip rendering error boundary. - - Loading boundary - - Only renders suspense boundary if loading components is provided. - - Rendered for each segment to ensure they have their own loading state. - - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch. - */ let segmentBoundaryTriggerNode = null; - let segmentViewStateNode = null; - if ("TURBOPACK compile-time truthy", 1) { - const { SegmentBoundaryTriggerNode, SegmentViewStateNode } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-ssr] (ecmascript)"); - const pagePrefix = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeAppPath"])(url); - segmentViewStateNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(SegmentViewStateNode, { - page: pagePrefix - }, pagePrefix); - segmentBoundaryTriggerNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(SegmentBoundaryTriggerNode, {}) - }); - } - let params = parentParams; - if (Array.isArray(segment)) { - // This segment contains a route param. Accumulate these as we traverse - // down the router tree. The result represents the set of params that - // the layout/page components are permitted to access below this point. - const paramName = segment[0]; - const paramCacheKey = segment[1]; - const paramType = segment[2]; - const paramValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getParamValueFromCacheKey"])(paramCacheKey, paramType); - if (paramValue !== null) { - params = { - ...parentParams, - [paramName]: paramValue - }; - } - } - const debugName = getBoundaryDebugNameFromSegment(segment); - // `debugNameContext` represents the nearest non-"virtual" parent segment. - // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments. - // So if `debugName` is undefined, the context is passed through unchanged. - const childDebugNameContext = debugName ?? debugNameContext; - // In practical terms, clicking this name in the Suspense DevTools - // should select the child slots of that layout. - // - // So the name we apply to the Activity boundary is actually based on - // the nearest parent segments. - // - // We skip over "virtual" parents, i.e. ones inserted by Next.js that - // don't correspond to application-defined code. - const isVirtual = debugName === undefined; - const debugNameToDisplay = isVirtual ? undefined : debugNameContext; - // TODO: The loading module data for a segment is stored on the parent, then - // applied to each of that parent segment's parallel route slots. In the - // simple case where there's only one parallel route (the `children` slot), - // this is no different from if the loading module data where stored on the - // child directly. But I'm not sure this actually makes sense when there are - // multiple parallel routes. It's not a huge issue because you always have - // the option to define a narrower loading boundary for a particular slot. But - // this sort of smells like an implementation accident to me. - const loadingModuleData = parentCacheNode.loading; - let child = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["TemplateContext"].Provider, { - value: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(ScrollAndFocusHandler, { - segmentPath: segmentPath, - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$error$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ErrorBoundary"], { - errorComponent: error, - errorStyles: errorStyles, - errorScripts: errorScripts, - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(LoadingBoundary, { - name: debugNameToDisplay, - loading: loadingModuleData, - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessFallbackBoundary"], { - notFound: notFound, - forbidden: forbidden, - unauthorized: unauthorized, - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectBoundary"], { - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(InnerLayoutRouter, { - url: url, - tree: tree, - params: params, - cacheNode: cacheNode, - segmentPath: segmentPath, - debugNameContext: childDebugNameContext, - isActive: isActive && stateKey === activeStateKey - }), - segmentBoundaryTriggerNode - ] - }) - }) - }) - }), - segmentViewStateNode - ] - }), - children: [ - templateStyles, - templateScripts, - template - ] - }, stateKey); - if ("TURBOPACK compile-time truthy", 1) { - const { SegmentStateProvider } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-ssr] (ecmascript)"); - child = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(SegmentStateProvider, { - children: [ - child, - segmentViewBoundaries - ] - }, stateKey); - } - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - children.push(child); - bfcacheEntry = bfcacheEntry.next; - }while (bfcacheEntry !== null) - return children; -} -function getBoundaryDebugNameFromSegment(segment) { - if (segment === '/') { - // Reached the root - return '/'; - } - if (typeof segment === 'string') { - if (isVirtualLayout(segment)) { - return undefined; - } else { - return segment + '/'; - } - } - const paramCacheKey = segment[1]; - return paramCacheKey + '/'; -} -function isVirtualLayout(segment) { - return(// in a more special way instead of checking the name, to distinguish them - // from app-defined groups. - segment === '(slot)'); -} //# sourceMappingURL=layout-router.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>RenderFromTemplateContext -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -function RenderFromTemplateContext() { - const children = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["TemplateContext"]); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: children - }); -} //# sourceMappingURL=render-from-template-context.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ReflectAdapter", - ()=>ReflectAdapter -]); -class ReflectAdapter { - static get(target, prop, receiver) { - const value = Reflect.get(target, prop, receiver); - if (typeof value === 'function') { - return value.bind(target); - } - return value; - } - static set(target, prop, value, receiver) { - return Reflect.set(target, prop, value, receiver); - } - static has(target, prop) { - return Reflect.has(target, prop); - } - static deleteProperty(target, prop) { - return Reflect.deleteProperty(target, prop); - } -} //# sourceMappingURL=reflect.js.map -}), -"[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDedupedByCallsiteServerErrorLoggerDev", - ()=>createDedupedByCallsiteServerErrorLoggerDev -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -; -const errorRef = { - current: null -}; -// React.cache is currently only available in canary/experimental React channels. -const cache = typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["cache"] === 'function' ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["cache"] : (fn)=>fn; -// When Cache Components is enabled, we record these as errors so that they -// are captured by the dev overlay as it's more critical to fix these -// when enabled. -const logErrorOrWarn = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : console.warn; -// We don't want to dedupe across requests. -// The developer might've just attempted to fix the warning so we should warn again if it still happens. -const flushCurrentErrorIfNew = cache((key)=>{ - try { - logErrorOrWarn(errorRef.current); - } finally{ - errorRef.current = null; - } -}); -function createDedupedByCallsiteServerErrorLoggerDev(getMessage) { - return function logDedupedError(...args) { - const message = getMessage(...args); - if ("TURBOPACK compile-time truthy", 1) { - var _stack; - const callStackFrames = (_stack = new Error().stack) == null ? void 0 : _stack.split('\n'); - if (callStackFrames === undefined || callStackFrames.length < 4) { - logErrorOrWarn(message); - } else { - // Error: - // logDedupedError - // asyncApiBeingAccessedSynchronously - // - // TODO: This breaks if sourcemaps with ignore lists are enabled. - const key = callStackFrames[4]; - errorRef.current = message; - flushCurrentErrorIfNew(key); - } - } else //TURBOPACK unreachable - ; - }; -} //# sourceMappingURL=create-deduped-by-callsite-server-error-logger.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "describeHasCheckingStringProperty", - ()=>describeHasCheckingStringProperty, - "describeStringPropertyAccess", - ()=>describeStringPropertyAccess, - "wellKnownProperties", - ()=>wellKnownProperties -]); -// This regex will have fast negatives meaning valid identifiers may not pass -// this test. However this is only used during static generation to provide hints -// about why a page bailed out of some or all prerendering and we can use bracket notation -// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']` -// even if this would have been fine too `searchParams.ಠ_ಠ` -const isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/; -function describeStringPropertyAccess(target, prop) { - if (isDefinitelyAValidIdentifier.test(prop)) { - return `\`${target}.${prop}\``; - } - return `\`${target}[${JSON.stringify(prop)}]\``; -} -function describeHasCheckingStringProperty(target, prop) { - const stringifiedProp = JSON.stringify(prop); - return `\`Reflect.has(${target}, ${stringifiedProp})\`, \`${stringifiedProp} in ${target}\`, or similar`; -} -const wellKnownProperties = new Set([ - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toString', - 'valueOf', - 'toLocaleString', - // Promise prototype - 'then', - 'catch', - 'finally', - // React Promise extension - 'status', - // 'value', - // 'error', - // React introspection - 'displayName', - '_debugInfo', - // Common tested properties - 'toJSON', - '$$typeof', - '__esModule' -]); //# sourceMappingURL=reflect-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/utils.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isRequestAPICallableInsideAfter", - ()=>isRequestAPICallableInsideAfter, - "throwForSearchParamsAccessInUseCache", - ()=>throwForSearchParamsAccessInUseCache, - "throwWithStaticGenerationBailoutErrorWithDynamicError", - ()=>throwWithStaticGenerationBailoutErrorWithDynamicError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/after-task-async-storage.external.js [external] (next/dist/server/app-render/after-task-async-storage.external.js, cjs)"); -; -; -function throwWithStaticGenerationBailoutErrorWithDynamicError(route, expression) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](`Route ${route} with \`dynamic = "error"\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E543", - enumerable: false, - configurable: true - }); -} -function throwForSearchParamsAccessInUseCache(workStore, constructorOpt) { - const error = Object.defineProperty(new Error(`Route ${workStore.route} used \`searchParams\` inside "use cache". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \`searchParams\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`), "__NEXT_ERROR_CODE", { - value: "E842", - enumerable: false, - configurable: true - }); - Error.captureStackTrace(error, constructorOpt); - workStore.invalidDynamicUsageError ??= error; - throw error; -} -function isRequestAPICallableInsideAfter() { - const afterTaskStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["afterTaskAsyncStorage"].getStore(); - return (afterTaskStore == null ? void 0 : afterTaskStore.rootTaskSpawnPhase) === 'action'; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RenderStage", - ()=>RenderStage, - "StagedRenderingController", - ()=>StagedRenderingController -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-ssr] (ecmascript)"); -; -; -var RenderStage = /*#__PURE__*/ function(RenderStage) { - RenderStage[RenderStage["Before"] = 1] = "Before"; - RenderStage[RenderStage["Static"] = 2] = "Static"; - RenderStage[RenderStage["Runtime"] = 3] = "Runtime"; - RenderStage[RenderStage["Dynamic"] = 4] = "Dynamic"; - RenderStage[RenderStage["Abandoned"] = 5] = "Abandoned"; - return RenderStage; -}({}); -class StagedRenderingController { - constructor(abortSignal = null, hasRuntimePrefetch){ - this.abortSignal = abortSignal; - this.hasRuntimePrefetch = hasRuntimePrefetch; - this.currentStage = 1; - this.staticInterruptReason = null; - this.runtimeInterruptReason = null; - this.staticStageEndTime = Infinity; - this.runtimeStageEndTime = Infinity; - this.runtimeStageListeners = []; - this.dynamicStageListeners = []; - this.runtimeStagePromise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - this.dynamicStagePromise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - this.mayAbandon = false; - if (abortSignal) { - abortSignal.addEventListener('abort', ()=>{ - const { reason } = abortSignal; - if (this.currentStage < 3) { - this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.runtimeStagePromise.reject(reason); - } - if (this.currentStage < 4 || this.currentStage === 5) { - this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.dynamicStagePromise.reject(reason); - } - }, { - once: true - }); - this.mayAbandon = true; - } - } - onStage(stage, callback) { - if (this.currentStage >= stage) { - callback(); - } else if (stage === 3) { - this.runtimeStageListeners.push(callback); - } else if (stage === 4) { - this.dynamicStageListeners.push(callback); - } else { - // This should never happen - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - canSyncInterrupt() { - // If we haven't started the render yet, it can't be interrupted. - if (this.currentStage === 1) { - return false; - } - const boundaryStage = this.hasRuntimePrefetch ? 4 : 3; - return this.currentStage < boundaryStage; - } - syncInterruptCurrentStageWithReason(reason) { - if (this.currentStage === 1) { - return; - } - // If Sync IO occurs during the initial (abandonable) render, we'll retry it, - // so we want a slightly different flow. - // See the implementation of `abandonRenderImpl` for more explanation. - if (this.mayAbandon) { - return this.abandonRenderImpl(); - } - // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage - // and capture the interruption reason. - switch(this.currentStage){ - case 2: - { - this.staticInterruptReason = reason; - this.advanceStage(4); - return; - } - case 3: - { - // We only error for Sync IO in the runtime stage if the route - // is configured to use runtime prefetching. - // We do this to reflect the fact that during a runtime prefetch, - // Sync IO aborts aborts the render. - // Note that `canSyncInterrupt` should prevent us from getting here at all - // if runtime prefetching isn't enabled. - if (this.hasRuntimePrefetch) { - this.runtimeInterruptReason = reason; - this.advanceStage(4); - } - return; - } - case 4: - case 5: - default: - } - } - getStaticInterruptReason() { - return this.staticInterruptReason; - } - getRuntimeInterruptReason() { - return this.runtimeInterruptReason; - } - getStaticStageEndTime() { - return this.staticStageEndTime; - } - getRuntimeStageEndTime() { - return this.runtimeStageEndTime; - } - abandonRender() { - if (!this.mayAbandon) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('`abandonRender` called on a stage controller that cannot be abandoned.'), "__NEXT_ERROR_CODE", { - value: "E938", - enumerable: false, - configurable: true - }); - } - this.abandonRenderImpl(); - } - abandonRenderImpl() { - // In staged rendering, only the initial render is abandonable. - // We can abandon the initial render if - // 1. We notice a cache miss, and need to wait for caches to fill - // 2. A sync IO error occurs, and the render should be interrupted - // (this might be a lazy intitialization of a module, - // so we still want to restart in this case and see if it still occurs) - // In either case, we'll be doing another render after this one, - // so we only want to unblock the Runtime stage, not Dynamic, because - // unblocking the dynamic stage would likely lead to wasted (uncached) IO. - const { currentStage } = this; - switch(currentStage){ - case 2: - { - this.currentStage = 5; - this.resolveRuntimeStage(); - return; - } - case 3: - { - this.currentStage = 5; - return; - } - case 4: - case 1: - case 5: - break; - default: - { - currentStage; - } - } - } - advanceStage(stage) { - // If we're already at the target stage or beyond, do nothing. - // (this can happen e.g. if sync IO advanced us to the dynamic stage) - if (stage <= this.currentStage) { - return; - } - let currentStage = this.currentStage; - this.currentStage = stage; - if (currentStage < 3 && stage >= 3) { - this.staticStageEndTime = performance.now() + performance.timeOrigin; - this.resolveRuntimeStage(); - } - if (currentStage < 4 && stage >= 4) { - this.runtimeStageEndTime = performance.now() + performance.timeOrigin; - this.resolveDynamicStage(); - return; - } - } - /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */ resolveRuntimeStage() { - const runtimeListeners = this.runtimeStageListeners; - for(let i = 0; i < runtimeListeners.length; i++){ - runtimeListeners[i](); - } - runtimeListeners.length = 0; - this.runtimeStagePromise.resolve(); - } - /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */ resolveDynamicStage() { - const dynamicListeners = this.dynamicStageListeners; - for(let i = 0; i < dynamicListeners.length; i++){ - dynamicListeners[i](); - } - dynamicListeners.length = 0; - this.dynamicStagePromise.resolve(); - } - getStagePromise(stage) { - switch(stage){ - case 3: - { - return this.runtimeStagePromise.promise; - } - case 4: - { - return this.dynamicStagePromise.promise; - } - default: - { - stage; - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - } - waitForStage(stage) { - return this.getStagePromise(stage); - } - delayUntilStage(stage, displayName, resolvedValue) { - const ioTriggerPromise = this.getStagePromise(stage); - const promise = makeDevtoolsIOPromiseFromIOTrigger(ioTriggerPromise, displayName, resolvedValue); - // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked. - // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it). - // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning. - if (this.abortSignal) { - promise.catch(ignoreReject); - } - return promise; - } -} -function ignoreReject() {} -// TODO(restart-on-cache-miss): the layering of `delayUntilStage`, -// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise` -// is confusing, we should clean it up. -function makeDevtoolsIOPromiseFromIOTrigger(ioTrigger, displayName, resolvedValue) { - // If we create a `new Promise` and give it a displayName - // (with no userspace code above us in the stack) - // React Devtools will use it as the IO cause when determining "suspended by". - // In particular, it should shadow any inner IO that resolved/rejected the promise - // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage) - const promise = new Promise((resolve, reject)=>{ - ioTrigger.then(resolve.bind(null, resolvedValue), reject); - }); - if (displayName !== undefined) { - // @ts-expect-error - promise.displayName = displayName; - } - return promise; -} //# sourceMappingURL=staged-rendering.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/search-params.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createPrerenderSearchParamsForClientPage", - ()=>createPrerenderSearchParamsForClientPage, - "createSearchParamsFromClient", - ()=>createSearchParamsFromClient, - "createServerSearchParamsForMetadata", - ()=>createServerSearchParamsForMetadata, - "createServerSearchParamsForServerPage", - ()=>createServerSearchParamsForServerPage, - "makeErroringSearchParamsForUseCache", - ()=>makeErroringSearchParamsForUseCache -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -function createSearchParamsFromClient(underlyingSearchParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createSearchParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E769", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createSearchParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E739", - enumerable: false, - configurable: true - }); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -const createServerSearchParamsForMetadata = createServerSearchParamsForServerPage; -function createServerSearchParamsForServerPage(underlyingSearchParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createServerSearchParamsForServerPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E747", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderSearchParamsForClientPage(workStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - // We're prerendering in a mode that aborts (cacheComponents) and should stall - // the promise to ensure the RSC side is considered dynamic - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, '`searchParams`'); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E768", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderSearchParamsForClientPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E746", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - return Promise.resolve({}); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createStaticPrerenderSearchParams(workStore, prerenderStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - // We are in a cacheComponents (PPR or otherwise) prerender - return makeHangingSearchParams(workStore, prerenderStore); - case 'prerender-ppr': - case 'prerender-legacy': - // We are in a legacy static generation and need to interrupt the - // prerender when search params are accessed. - return makeErroringSearchParams(workStore, prerenderStore); - default: - return prerenderStore; - } -} -function createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, makeUntrackedSearchParams(underlyingSearchParams)); -} -function createRenderSearchParams(underlyingSearchParams, workStore, requestStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } else { - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore); - } else //TURBOPACK unreachable - ; - } -} -const CachedSearchParams = new WeakMap(); -const CachedSearchParamsForUseCache = new WeakMap(); -function makeHangingSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(prerenderStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`searchParams`'); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - switch(prop){ - case 'then': - { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["annotateDynamicAccess"])(expression, prerenderStore); - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - case 'status': - { - const expression = '`use(searchParams)`, `searchParams.status`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["annotateDynamicAccess"])(expression, prerenderStore); - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - default: - { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - } - } - }); - CachedSearchParams.set(prerenderStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const underlyingSearchParams = {}; - // For search params we don't construct a ReactPromise because we want to interrupt - // rendering on any property access that was not set from outside and so we only want - // to have properties like value and status if React sets them. - const promise = Promise.resolve(underlyingSearchParams); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - if (typeof prop === 'string' && prop === 'then') { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - if (workStore.dynamicShouldError) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } else if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwToInterruptStaticGeneration"])(expression, workStore, prerenderStore); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - }); - CachedSearchParams.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParamsForUseCache(workStore) { - const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve({}); - const proxiedPromise = new Proxy(promise, { - get: function get(target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. We know it - // isn't a dynamic access because it can only be something that was - // previously written to the promise and thus not an underlying - // searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - if (typeof prop === 'string' && (prop === 'then' || !__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop))) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwForSearchParamsAccessInUseCache"])(workStore, get); - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - }); - CachedSearchParamsForUseCache.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeUntrackedSearchParams(underlyingSearchParams) { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve(underlyingSearchParams); - CachedSearchParams.set(underlyingSearchParams, promise); - return promise; -} -function makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore) { - if (requestStore.asyncApiPromises) { - // Do not cache the resulting promise. If we do, we'll only show the first "awaited at" - // across all segments that receive searchParams. - return makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - } else { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - CachedSearchParams.set(requestStore, promise); - return promise; - } -} -function makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore) { - const promiseInitialized = { - current: false - }; - const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized); - let promise; - if (requestStore.asyncApiPromises) { - // We wrap each instance of searchParams in a `new Promise()`. - // This is important when all awaits are in third party which would otherwise - // track all the way to the internal params. - const sharedSearchParamsParent = requestStore.asyncApiPromises.sharedSearchParamsParent; - promise = new Promise((resolve, reject)=>{ - sharedSearchParamsParent.then(()=>resolve(proxiedUnderlying), reject); - }); - // @ts-expect-error - promise.displayName = 'searchParams'; - } else { - promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeDevtoolsIOAwarePromise"])(proxiedUnderlying, requestStore, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RenderStage"].Runtime); - } - promise.then(()=>{ - promiseInitialized.current = true; - }, // is aborted before it can reach the runtime stage. - // In that case, we have to prevent an unhandled rejection from the promise - // created by this `.then()` call. - // This does not affect the `promiseInitialized` logic above, - // because `proxiedUnderlying` will not be used to resolve the promise, - // so there's no risk of any of its properties being accessed and triggering - // an undesireable warning. - ignoreReject); - return instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore); -} -function ignoreReject() {} -function instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized) { - // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying - // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender - // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking - // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger - // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce - // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise. - return new Proxy(underlyingSearchParams, { - get (target, prop, receiver) { - if (typeof prop === 'string' && promiseInitialized.current) { - if (workStore.dynamicShouldError) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('searchParams', prop); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (workStore.dynamicShouldError) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeHasCheckingStringProperty"])('searchParams', prop); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - if (workStore.dynamicShouldError) { - const expression = '`{...searchParams}`, `Object.keys(searchParams)`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - return Reflect.ownKeys(target); - } - }); -} -function instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingSearchParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (prop === 'then' && workStore.dynamicShouldError) { - const expression = '`searchParams.then`'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - if (typeof prop === 'string') { - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return Reflect.set(target, prop, value, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeHasCheckingStringProperty"])('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - const expression = '`Object.keys(searchParams)` or similar'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDedupedByCallsiteServerErrorLoggerDev"])(createSearchAccessError); -function createSearchAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`searchParams\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E848", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=search-params.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/params.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createParamsFromClient", - ()=>createParamsFromClient, - "createPrerenderParamsForClientSegment", - ()=>createPrerenderParamsForClientSegment, - "createServerParamsForMetadata", - ()=>createServerParamsForMetadata, - "createServerParamsForRoute", - ()=>createServerParamsForRoute, - "createServerParamsForServerSegment", - ()=>createServerParamsForServerSegment -]); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/dynamic-access-async-storage.external.js [external] (next/dist/server/app-render/dynamic-access-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -function createParamsFromClient(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E736", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E770", - enumerable: false, - configurable: true - }); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -const createServerParamsForMetadata = createServerParamsForServerSegment; -function createServerParamsForRoute(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createServerParamsForRoute should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E738", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createServerParamsForServerSegment(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createServerParamsForServerSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E743", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderParamsForClientSegment(underlyingParams) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - if (!workStore) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('Missing workStore in createPrerenderParamsForClientSegment'), "__NEXT_ERROR_CODE", { - value: "E773", - enumerable: false, - configurable: true - }); - } - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams) { - for(let key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, '`params`'); - } - } - } - break; - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderParamsForClientSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E734", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'prerender-runtime': - case 'request': - break; - default: - workUnitStore; - } - } - // We're prerendering in a mode that does not abort. We resolve the promise without - // any tracking because we're just transporting a value from server to client where the tracking - // will be applied. - return Promise.resolve(underlyingParams); -} -function createStaticPrerenderParams(underlyingParams, workStore, prerenderStore) { - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return makeHangingParams(underlyingParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - return makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-legacy': - break; - default: - prerenderStore; - } - return makeUntrackedParams(underlyingParams); -} -function createRuntimePrerenderParams(underlyingParams, workUnitStore) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, makeUntrackedParams(underlyingParams)); -} -function createRenderParamsInProd(underlyingParams) { - return makeUntrackedParams(underlyingParams); -} -function createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, requestStore) { - let hasFallbackParams = false; - if (devFallbackParams) { - for(let key in underlyingParams){ - if (devFallbackParams.has(key)) { - hasFallbackParams = true; - break; - } - } - } - return makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore); -} -const CachedParams = new WeakMap(); -const fallbackParamsProxyHandler = { - get: function get(target, prop, receiver) { - if (prop === 'then' || prop === 'catch' || prop === 'finally') { - const originalMethod = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - return ({ - [prop]: (...args)=>{ - const store = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["dynamicAccessAsyncStorage"].getStore(); - if (store) { - store.abortController.abort(Object.defineProperty(new Error(`Accessed fallback \`params\` during prerendering.`), "__NEXT_ERROR_CODE", { - value: "E691", - enumerable: false, - configurable: true - })); - } - return new Proxy(originalMethod.apply(target, args), fallbackParamsProxyHandler); - } - })[prop]; - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } -}; -function makeHangingParams(underlyingParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = new Proxy((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`params`'), fallbackParamsProxyHandler); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const augmentedUnderlying = { - ...underlyingParams - }; - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = Promise.resolve(augmentedUnderlying); - CachedParams.set(underlyingParams, promise); - Object.keys(underlyingParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - if (fallbackParams.has(prop)) { - Object.defineProperty(augmentedUnderlying, prop, { - get () { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('params', prop); - // In most dynamic APIs we also throw if `dynamic = "error"` however - // for params is only dynamic when we're generating a fallback shell - // and even when `dynamic = "error"` we still support generating dynamic - // fallback shells - // TODO remove this comment when cacheComponents is the default since there - // will be no `dynamic = "error"` - if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwToInterruptStaticGeneration"])(expression, workStore, prerenderStore); - } - }, - enumerable: true - }); - } - } - }); - return promise; -} -function makeUntrackedParams(underlyingParams) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = Promise.resolve(underlyingParams); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore) { - if (requestStore.asyncApiPromises && hasFallbackParams) { - // We wrap each instance of params in a `new Promise()`, because deduping - // them across requests doesn't work anyway and this let us show each - // await a different set of values. This is important when all awaits - // are in third party which would otherwise track all the way to the - // internal params. - const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent; - const promise = new Promise((resolve, reject)=>{ - sharedParamsParent.then(()=>resolve(underlyingParams), reject); - }); - // @ts-expect-error - promise.displayName = 'params'; - return instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - } - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = hasFallbackParams ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeDevtoolsIOAwarePromise"])(underlyingParams, requestStore, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RenderStage"].Runtime) : Promise.resolve(underlyingParams); - const proxiedPromise = instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - CachedParams.set(underlyingParams, proxiedPromise); - return proxiedPromise; -} -function instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (typeof prop === 'string') { - if (proxiedProperties.has(prop)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('params', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].set(target, prop, value, receiver); - }, - ownKeys (target) { - const expression = '`...params` or similar expression'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDedupedByCallsiteServerErrorLoggerDev"])(createParamsAccessError); -function createParamsAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`params\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E834", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=params.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ClientPageRoot", - ()=>ClientPageRoot -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -; -function ClientPageRoot({ Component, serverProvidedParams }) { - let searchParams; - let params; - if (serverProvidedParams !== null) { - searchParams = serverProvidedParams.searchParams; - params = serverProvidedParams.params; - } else { - // When Cache Components is enabled, the server does not pass the params as - // props; they are parsed on the client and passed via context. - const layoutRouterContext = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"]); - params = layoutRouterContext !== null ? layoutRouterContext.parentParams : {}; - // This is an intentional behavior change: when Cache Components is enabled, - // client segments receive the "canonical" search params, not the - // rewritten ones. Users should either call useSearchParams directly or pass - // the rewritten ones in from a Server Component. - // TODO: Log a deprecation error when this object is accessed - searchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["urlSearchParamsToParsedUrlQuery"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["SearchParamsContext"])); - } - if ("TURBOPACK compile-time truthy", 1) { - const { workAsyncStorage } = __turbopack_context__.r("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); - let clientSearchParams; - let clientParams; - // We are going to instrument the searchParams prop with tracking for the - // appropriate context. We wrap differently in prerendering vs rendering - const store = workAsyncStorage.getStore(); - if (!store) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('Expected workStore to exist when handling searchParams in a client Page.'), "__NEXT_ERROR_CODE", { - value: "E564", - enumerable: false, - configurable: true - }); - } - const { createSearchParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/request/search-params.js [app-ssr] (ecmascript)"); - clientSearchParams = createSearchParamsFromClient(searchParams, store); - const { createParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/request/params.js [app-ssr] (ecmascript)"); - clientParams = createParamsFromClient(params, store); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(Component, { - params: clientParams, - searchParams: clientSearchParams - }); - } else //TURBOPACK unreachable - ; -} //# sourceMappingURL=client-page.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ClientSegmentRoot", - ()=>ClientSegmentRoot -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -function ClientSegmentRoot({ Component, slots, serverProvidedParams }) { - let params; - if (serverProvidedParams !== null) { - params = serverProvidedParams.params; - } else { - // When Cache Components is enabled, the server does not pass the params - // as props; they are parsed on the client and passed via context. - const layoutRouterContext = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"]); - params = layoutRouterContext !== null ? layoutRouterContext.parentParams : {}; - } - if ("TURBOPACK compile-time truthy", 1) { - const { workAsyncStorage } = __turbopack_context__.r("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); - let clientParams; - // We are going to instrument the searchParams prop with tracking for the - // appropriate context. We wrap differently in prerendering vs rendering - const store = workAsyncStorage.getStore(); - if (!store) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('Expected workStore to exist when handling params in a client segment such as a Layout or Template.'), "__NEXT_ERROR_CODE", { - value: "E600", - enumerable: false, - configurable: true - }); - } - const { createParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/request/params.js [app-ssr] (ecmascript)"); - clientParams = createParamsFromClient(params, store); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(Component, { - ...slots, - params: clientParams - }); - } else //TURBOPACK unreachable - ; -} //# sourceMappingURL=client-segment.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "IconMark", - ()=>IconMark -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -'use client'; -; -const IconMark = ()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "\xabnxt-icon\xbb" - }); -}; //# sourceMappingURL=icon-mark.js.map -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "MetadataBoundary", - ()=>MetadataBoundary, - "OutletBoundary", - ()=>OutletBoundary, - "RootLayoutBoundary", - ()=>RootLayoutBoundary, - "ViewportBoundary", - ()=>ViewportBoundary -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-ssr] (ecmascript)"); -'use client'; -; -// We use a namespace object to allow us to recover the name of the function -// at runtime even when production bundling/minification is used. -const NameSpace = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["METADATA_BOUNDARY_NAME"]]: function({ children }) { - return children; - }, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["VIEWPORT_BOUNDARY_NAME"]]: function({ children }) { - return children; - }, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["OUTLET_BOUNDARY_NAME"]]: function({ children }) { - return children; - }, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_LAYOUT_BOUNDARY_NAME"]]: function({ children }) { - return children; - } -}; -const MetadataBoundary = // so it retains the name inferred from the namespace object -NameSpace[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["METADATA_BOUNDARY_NAME"].slice(0)]; -const ViewportBoundary = // so it retains the name inferred from the namespace object -NameSpace[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["VIEWPORT_BOUNDARY_NAME"].slice(0)]; -const OutletBoundary = // so it retains the name inferred from the namespace object -NameSpace[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["OUTLET_BOUNDARY_NAME"].slice(0)]; -const RootLayoutBoundary = // so it retains the name inferred from the namespace object -NameSpace[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_LAYOUT_BOUNDARY_NAME"].slice(0)]; //# sourceMappingURL=boundary-components.js.map -}), -]; - -//# sourceMappingURL=node_modules_next_dist_3e1f69b5._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_3e1f69b5._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_3e1f69b5._.js.map deleted file mode 100644 index e8bba9b..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_3e1f69b5._.js.map +++ /dev/null @@ -1,103 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK"],"mappings":"AAAA,IAAIA,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACL,IAAIF,QAAQC,GAAG,CAACK,yBAAyB,EAAE;;SAcpC;QACL,IAAIN,QAAQC,GAAG,CAACM,QAAQ,KAAK,WAAe;YAC1C,IAAIP,QAAQC,GAAG,CAACO,SAAS,eAAE;gBACzBL,OAAOC,OAAO,GAAGC,QAAQ;YAC3B,OAAO;;QAGT,OAAO;;IAOT;AACF","ignoreList":[0]}}, - {"offset": {"line": 23, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactJsxRuntime\n"],"names":["module","exports","require","vendored","ReactJsxRuntime"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,eAAe","ignoreList":[0]}}, - {"offset": {"line": 28, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.React\n"],"names":["module","exports","require","vendored","React"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,KAAK","ignoreList":[0]}}, - {"offset": {"line": 33, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-dom.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactDOM\n"],"names":["module","exports","require","vendored","ReactDOM"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,QAAQ","ignoreList":[0]}}, - {"offset": {"line": 38, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/app-router-context.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].AppRouterContext\n"],"names":["module","exports","require","vendored","AppRouterContext"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,gBAAgB","ignoreList":[0]}}, - {"offset": {"line": 43, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unresolved-thenable.ts"],"sourcesContent":["/**\n * Create a \"Thenable\" that does not resolve. This is used to suspend indefinitely when data is not available yet.\n */\nexport const unresolvedThenable = {\n then: () => {},\n} as PromiseLike\n"],"names":["unresolvedThenable","then"],"mappings":"AAAA;;CAEC,GACD;;;;AAAO,MAAMA,qBAAqB;IAChCC,MAAM,KAAO;AACf,EAAsB","ignoreList":[0]}}, - {"offset": {"line": 56, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/hooks-client-context.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].HooksClientContext\n"],"names":["module","exports","require","vendored","HooksClientContext"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,kBAAkB","ignoreList":[0]}}, - {"offset": {"line": 61, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation-untracked.ts"],"sourcesContent":["import { useContext } from 'react'\nimport { PathnameContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * This checks to see if the current render has any unknown route parameters that\n * would cause the pathname to be dynamic. It's used to trigger a different\n * render path in the error boundary.\n *\n * @returns true if there are any unknown route parameters, false otherwise\n */\nfunction hasFallbackRouteParams(): boolean {\n if (typeof window === 'undefined') {\n // AsyncLocalStorage should not be included in the client bundle.\n const { workUnitAsyncStorage } =\n require('../../server/app-render/work-unit-async-storage.external') as typeof import('../../server/app-render/work-unit-async-storage.external')\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (!workUnitStore) return false\n\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n const fallbackParams = workUnitStore.fallbackRouteParams\n return fallbackParams ? fallbackParams.size > 0 : false\n case 'prerender-legacy':\n case 'request':\n case 'prerender-runtime':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n\n return false\n }\n\n return false\n}\n\n/**\n * This returns a `null` value if there are any unknown route parameters, and\n * otherwise returns the pathname from the context. This is an alternative to\n * `usePathname` that is used in the error boundary to avoid rendering the\n * error boundary when there are unknown route parameters. This doesn't throw\n * when accessed with unknown route parameters.\n *\n * @returns\n *\n * @internal\n */\nexport function useUntrackedPathname(): string | null {\n // If there are any unknown route parameters we would typically throw\n // an error, but this internal method allows us to return a null value instead\n // for components that do not propagate the pathname to the static shell (like\n // the error boundary).\n if (hasFallbackRouteParams()) {\n return null\n }\n\n // This shouldn't cause any issues related to conditional rendering because\n // the environment will be consistent for the render.\n // eslint-disable-next-line react-hooks/rules-of-hooks\n return useContext(PathnameContext)\n}\n"],"names":["useContext","PathnameContext","hasFallbackRouteParams","window","workUnitAsyncStorage","require","workUnitStore","getStore","type","fallbackParams","fallbackRouteParams","size","useUntrackedPathname"],"mappings":";;;;AAAA,SAASA,UAAU,QAAQ,QAAO;AAClC,SAASC,eAAe,QAAQ,uDAAsD;;;AAEtF;;;;;;CAMC,GACD,SAASC;IACP,IAAI,OAAOC,WAAW,kBAAa;QACjC,iEAAiE;QACjE,MAAM,EAAEC,oBAAoB,EAAE,GAC5BC,QAAQ;QAEV,MAAMC,gBAAgBF,qBAAqBG,QAAQ;QACnD,IAAI,CAACD,eAAe,OAAO;QAE3B,OAAQA,cAAcE,IAAI;YACxB,KAAK;YACL,KAAK;YACL,KAAK;gBACH,MAAMC,iBAAiBH,cAAcI,mBAAmB;gBACxD,OAAOD,iBAAiBA,eAAeE,IAAI,GAAG,IAAI;YACpD,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;gBACH;YACF;gBACEL;QACJ;QAEA,OAAO;IACT;;;AAGF;AAaO,SAASM;IACd,qEAAqE;IACrE,8EAA8E;IAC9E,8EAA8E;IAC9E,uBAAuB;IACvB,IAAIV,0BAA0B;QAC5B,OAAO;IACT;IAEA,2EAA2E;IAC3E,qDAAqD;IACrD,sDAAsD;IACtD,WAAOF,mNAAAA,EAAWC,kPAAAA;AACpB","ignoreList":[0]}}, - {"offset": {"line": 119, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/http-access-fallback.ts"],"sourcesContent":["export const HTTPAccessErrorStatus = {\n NOT_FOUND: 404,\n FORBIDDEN: 403,\n UNAUTHORIZED: 401,\n}\n\nconst ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus))\n\nexport const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'\n\nexport type HTTPAccessFallbackError = Error & {\n digest: `${typeof HTTP_ERROR_FALLBACK_ERROR_CODE};${string}`\n}\n\n/**\n * Checks an error to determine if it's an error generated by\n * the HTTP navigation APIs `notFound()`, `forbidden()` or `unauthorized()`.\n *\n * @param error the error that may reference a HTTP access error\n * @returns true if the error is a HTTP access error\n */\nexport function isHTTPAccessFallbackError(\n error: unknown\n): error is HTTPAccessFallbackError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n const [prefix, httpStatus] = error.digest.split(';')\n\n return (\n prefix === HTTP_ERROR_FALLBACK_ERROR_CODE &&\n ALLOWED_CODES.has(Number(httpStatus))\n )\n}\n\nexport function getAccessFallbackHTTPStatus(\n error: HTTPAccessFallbackError\n): number {\n const httpStatus = error.digest.split(';')[1]\n return Number(httpStatus)\n}\n\nexport function getAccessFallbackErrorTypeByStatus(\n status: number\n): 'not-found' | 'forbidden' | 'unauthorized' | undefined {\n switch (status) {\n case 401:\n return 'unauthorized'\n case 403:\n return 'forbidden'\n case 404:\n return 'not-found'\n default:\n return\n }\n}\n"],"names":["HTTPAccessErrorStatus","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","ALLOWED_CODES","Set","Object","values","HTTP_ERROR_FALLBACK_ERROR_CODE","isHTTPAccessFallbackError","error","digest","prefix","httpStatus","split","has","Number","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","status"],"mappings":";;;;;;;;;;;;AAAO,MAAMA,wBAAwB;IACnCC,WAAW;IACXC,WAAW;IACXC,cAAc;AAChB,EAAC;AAED,MAAMC,gBAAgB,IAAIC,IAAIC,OAAOC,MAAM,CAACP;AAErC,MAAMQ,iCAAiC,2BAA0B;AAajE,SAASC,0BACdC,KAAc;IAEd,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IACA,MAAM,CAACC,QAAQC,WAAW,GAAGH,MAAMC,MAAM,CAACG,KAAK,CAAC;IAEhD,OACEF,WAAWJ,kCACXJ,cAAcW,GAAG,CAACC,OAAOH;AAE7B;AAEO,SAASI,4BACdP,KAA8B;IAE9B,MAAMG,aAAaH,MAAMC,MAAM,CAACG,KAAK,CAAC,IAAI,CAAC,EAAE;IAC7C,OAAOE,OAAOH;AAChB;AAEO,SAASK,mCACdC,MAAc;IAEd,OAAQA;QACN,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT;YACE;IACJ;AACF","ignoreList":[0]}}, - {"offset": {"line": 165, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-status-code.ts"],"sourcesContent":["export enum RedirectStatusCode {\n SeeOther = 303,\n TemporaryRedirect = 307,\n PermanentRedirect = 308,\n}\n"],"names":["RedirectStatusCode"],"mappings":";;;;AAAO,IAAKA,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;;WAAAA;MAIX","ignoreList":[0]}}, - {"offset": {"line": 179, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-error.ts"],"sourcesContent":["import { RedirectStatusCode } from './redirect-status-code'\n\nexport const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'\n\nexport enum RedirectType {\n push = 'push',\n replace = 'replace',\n}\n\nexport type RedirectError = Error & {\n digest: `${typeof REDIRECT_ERROR_CODE};${RedirectType};${string};${RedirectStatusCode};`\n}\n\n/**\n * Checks an error to determine if it's an error generated by the\n * `redirect(url)` helper.\n *\n * @param error the error that may reference a redirect error\n * @returns true if the error is a redirect error\n */\nexport function isRedirectError(error: unknown): error is RedirectError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n\n const digest = error.digest.split(';')\n const [errorCode, type] = digest\n const destination = digest.slice(2, -2).join(';')\n const status = digest.at(-2)\n\n const statusCode = Number(status)\n\n return (\n errorCode === REDIRECT_ERROR_CODE &&\n (type === 'replace' || type === 'push') &&\n typeof destination === 'string' &&\n !isNaN(statusCode) &&\n statusCode in RedirectStatusCode\n )\n}\n"],"names":["RedirectStatusCode","REDIRECT_ERROR_CODE","RedirectType","isRedirectError","error","digest","split","errorCode","type","destination","slice","join","status","at","statusCode","Number","isNaN"],"mappings":";;;;;;;;AAAA,SAASA,kBAAkB,QAAQ,yBAAwB;;AAEpD,MAAMC,sBAAsB,gBAAe;AAE3C,IAAKC,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;WAAAA;MAGX;AAaM,SAASC,gBAAgBC,KAAc;IAC5C,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IAEA,MAAMA,SAASD,MAAMC,MAAM,CAACC,KAAK,CAAC;IAClC,MAAM,CAACC,WAAWC,KAAK,GAAGH;IAC1B,MAAMI,cAAcJ,OAAOK,KAAK,CAAC,GAAG,CAAC,GAAGC,IAAI,CAAC;IAC7C,MAAMC,SAASP,OAAOQ,EAAE,CAAC,CAAC;IAE1B,MAAMC,aAAaC,OAAOH;IAE1B,OACEL,cAAcN,uBACbO,CAAAA,SAAS,aAAaA,SAAS,MAAK,KACrC,OAAOC,gBAAgB,YACvB,CAACO,MAAMF,eACPA,cAAcd,+MAAAA;AAElB","ignoreList":[0]}}, - {"offset": {"line": 210, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/is-next-router-error.ts"],"sourcesContent":["import {\n isHTTPAccessFallbackError,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\nimport { isRedirectError, type RedirectError } from './redirect-error'\n\n/**\n * Returns true if the error is a navigation signal error. These errors are\n * thrown by user code to perform navigation operations and interrupt the React\n * render.\n */\nexport function isNextRouterError(\n error: unknown\n): error is RedirectError | HTTPAccessFallbackError {\n return isRedirectError(error) || isHTTPAccessFallbackError(error)\n}\n"],"names":["isHTTPAccessFallbackError","isRedirectError","isNextRouterError","error"],"mappings":";;;;AAAA,SACEA,yBAAyB,QAEpB,8CAA6C;AACpD,SAASC,eAAe,QAA4B,mBAAkB;;;AAO/D,SAASC,kBACdC,KAAc;IAEd,WAAOF,mMAAAA,EAAgBE,cAAUH,oPAAAA,EAA0BG;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 225, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/create-href-from-url.ts"],"sourcesContent":["export function createHrefFromUrl(\n url: Pick,\n includeHash: boolean = true\n): string {\n return url.pathname + url.search + (includeHash ? url.hash : '')\n}\n"],"names":["createHrefFromUrl","url","includeHash","pathname","search","hash"],"mappings":";;;;AAAO,SAASA,kBACdC,GAA8C,EAC9CC,cAAuB,IAAI;IAE3B,OAAOD,IAAIE,QAAQ,GAAGF,IAAIG,MAAM,GAAIF,CAAAA,cAAcD,IAAII,IAAI,GAAG,EAAC;AAChE","ignoreList":[0]}}, - {"offset": {"line": 236, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/nav-failure-handler.ts"],"sourcesContent":["import { useEffect } from 'react'\nimport { createHrefFromUrl } from './router-reducer/create-href-from-url'\n\nexport function handleHardNavError(error: unknown): boolean {\n if (\n error &&\n typeof window !== 'undefined' &&\n window.next.__pendingUrl &&\n createHrefFromUrl(new URL(window.location.href)) !==\n createHrefFromUrl(window.next.__pendingUrl)\n ) {\n console.error(\n `Error occurred during navigation, falling back to hard navigation`,\n error\n )\n window.location.href = window.next.__pendingUrl.toString()\n return true\n }\n return false\n}\n\nexport function useNavFailureHandler() {\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n // this if is only for DCE of the feature flag not conditional\n // eslint-disable-next-line react-hooks/rules-of-hooks\n useEffect(() => {\n const uncaughtExceptionHandler = (\n evt: ErrorEvent | PromiseRejectionEvent\n ) => {\n const error = 'reason' in evt ? evt.reason : evt.error\n // if we have an unhandled exception/rejection during\n // a navigation we fall back to a hard navigation to\n // attempt recovering to a good state\n handleHardNavError(error)\n }\n window.addEventListener('unhandledrejection', uncaughtExceptionHandler)\n window.addEventListener('error', uncaughtExceptionHandler)\n return () => {\n window.removeEventListener('error', uncaughtExceptionHandler)\n window.removeEventListener(\n 'unhandledrejection',\n uncaughtExceptionHandler\n )\n }\n }, [])\n }\n}\n"],"names":["useEffect","createHrefFromUrl","handleHardNavError","error","window","next","__pendingUrl","URL","location","href","console","toString","useNavFailureHandler","process","env","__NEXT_APP_NAV_FAIL_HANDLING","uncaughtExceptionHandler","evt","reason","addEventListener","removeEventListener"],"mappings":";;;;;;AAAA,SAASA,SAAS,QAAQ,QAAO;AACjC,SAASC,iBAAiB,QAAQ,wCAAuC;;;AAElE,SAASC,mBAAmBC,KAAc;IAC/C,IACEA,SACA,OAAOC,2CAAW,eAClBA,OAAOC,IAAI,CAACC,YAAY,QACxBL,sOAAAA,EAAkB,IAAIM,IAAIH,OAAOI,QAAQ,CAACC,IAAI,WAC5CR,sOAAAA,EAAkBG,OAAOC,IAAI,CAACC,YAAY,GAC5C;;IAQF,OAAO;AACT;AAEO,SAASM;IACd,IAAIC,QAAQC,GAAG,CAACC,4BAA4B,EAAE;;AAwBhD","ignoreList":[0]}}, - {"offset": {"line": 259, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/handle-isr-error.tsx"],"sourcesContent":["const workAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n ).workAsyncStorage\n : undefined\n\n// if we are revalidating we want to re-throw the error so the\n// function crashes so we can maintain our previous cache\n// instead of caching the error page\nexport function HandleISRError({ error }: { error: any }) {\n if (workAsyncStorage) {\n const store = workAsyncStorage.getStore()\n if (store?.isStaticGeneration) {\n if (error) {\n console.error(error)\n }\n throw error\n }\n }\n\n return null\n}\n"],"names":["workAsyncStorage","window","require","undefined","HandleISRError","error","store","getStore","isStaticGeneration","console"],"mappings":";;;;AAAA,MAAMA,mBACJ,OAAOC,WAAW,qBAEZC,QAAQ,uKACRF,gBAAgB,GAClBG;AAKC,SAASC,eAAe,EAAEC,KAAK,EAAkB;IACtD,IAAIL,kBAAkB;QACpB,MAAMM,QAAQN,iBAAiBO,QAAQ;QACvC,IAAID,OAAOE,oBAAoB;YAC7B,IAAIH,OAAO;gBACTI,QAAQJ,KAAK,CAACA;YAChB;YACA,MAAMA;QACR;IACF;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 280, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/html-bots.ts"],"sourcesContent":["// This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent.\n// Note: The pattern [\\w-]+-Google captures all Google crawlers with \"-Google\" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google)\n// as well as crawlers starting with \"Google-\" (e.g., Google-PageRenderer, Google-InspectionTool)\nexport const HTML_LIMITED_BOT_UA_RE =\n /[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i\n"],"names":["HTML_LIMITED_BOT_UA_RE"],"mappings":"AAAA,6GAA6G;AAC7G,sKAAsK;AACtK,kJAAkJ;AAClJ,iGAAiG;;;;;AAC1F,MAAMA,yBACX,sTAAqT","ignoreList":[0]}}, - {"offset": {"line": 293, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/is-bot.ts"],"sourcesContent":["import { HTML_LIMITED_BOT_UA_RE } from './html-bots'\n\n// Bot crawler that will spin up a headless browser and execute JS.\n// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers.\n// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers\n// This regex specifically matches \"Googlebot\" but NOT \"Mediapartners-Google\", \"AdsBot-Google\", etc.\nconst HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i\n\nexport const HTML_LIMITED_BOT_UA_RE_STRING = HTML_LIMITED_BOT_UA_RE.source\n\nexport { HTML_LIMITED_BOT_UA_RE }\n\nfunction isDomBotUA(userAgent: string) {\n return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent)\n}\n\nfunction isHtmlLimitedBotUA(userAgent: string) {\n return HTML_LIMITED_BOT_UA_RE.test(userAgent)\n}\n\nexport function isBot(userAgent: string): boolean {\n return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent)\n}\n\nexport function getBotType(userAgent: string): 'dom' | 'html' | undefined {\n if (isDomBotUA(userAgent)) {\n return 'dom'\n }\n if (isHtmlLimitedBotUA(userAgent)) {\n return 'html'\n }\n return undefined\n}\n"],"names":["HTML_LIMITED_BOT_UA_RE","HEADLESS_BROWSER_BOT_UA_RE","HTML_LIMITED_BOT_UA_RE_STRING","source","isDomBotUA","userAgent","test","isHtmlLimitedBotUA","isBot","getBotType","undefined"],"mappings":";;;;;;;;AAAA,SAASA,sBAAsB,QAAQ,cAAa;;AAEpD,mEAAmE;AACnE,yFAAyF;AACzF,4FAA4F;AAC5F,oGAAoG;AACpG,MAAMC,6BAA6B;AAE5B,MAAMC,gCAAgCF,iNAAAA,CAAuBG,MAAM,CAAA;;AAI1E,SAASC,WAAWC,SAAiB;IACnC,OAAOJ,2BAA2BK,IAAI,CAACD;AACzC;AAEA,SAASE,mBAAmBF,SAAiB;IAC3C,OAAOL,iNAAAA,CAAuBM,IAAI,CAACD;AACrC;AAEO,SAASG,MAAMH,SAAiB;IACrC,OAAOD,WAAWC,cAAcE,mBAAmBF;AACrD;AAEO,SAASI,WAAWJ,SAAiB;IAC1C,IAAID,WAAWC,YAAY;QACzB,OAAO;IACT;IACA,IAAIE,mBAAmBF,YAAY;QACjC,OAAO;IACT;IACA,OAAOK;AACT","ignoreList":[0]}}, - {"offset": {"line": 332, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/error-boundary.tsx"],"sourcesContent":["'use client'\n\nimport React, { type JSX } from 'react'\nimport { useUntrackedPathname } from './navigation-untracked'\nimport { isNextRouterError } from './is-next-router-error'\nimport { handleHardNavError } from './nav-failure-handler'\nimport { HandleISRError } from './handle-isr-error'\nimport { isBot } from '../../shared/lib/router/utils/is-bot'\n\nconst isBotUserAgent =\n typeof window !== 'undefined' && isBot(window.navigator.userAgent)\n\nexport type ErrorComponent = React.ComponentType<{\n error: Error\n // global-error, there's no `reset` function;\n // regular error boundary, there's a `reset` function.\n reset?: () => void\n}>\n\nexport interface ErrorBoundaryProps {\n children?: React.ReactNode\n errorComponent: ErrorComponent | undefined\n errorStyles?: React.ReactNode | undefined\n errorScripts?: React.ReactNode | undefined\n}\n\ninterface ErrorBoundaryHandlerProps extends ErrorBoundaryProps {\n pathname: string | null\n errorComponent: ErrorComponent\n}\n\ninterface ErrorBoundaryHandlerState {\n error: Error | null\n previousPathname: string | null\n}\n\nexport class ErrorBoundaryHandler extends React.Component<\n ErrorBoundaryHandlerProps,\n ErrorBoundaryHandlerState\n> {\n constructor(props: ErrorBoundaryHandlerProps) {\n super(props)\n this.state = { error: null, previousPathname: this.props.pathname }\n }\n\n static getDerivedStateFromError(error: Error) {\n if (isNextRouterError(error)) {\n // Re-throw if an expected internal Next.js router error occurs\n // this means it should be handled by a different boundary (such as a NotFound boundary in a parent segment)\n throw error\n }\n\n return { error }\n }\n\n static getDerivedStateFromProps(\n props: ErrorBoundaryHandlerProps,\n state: ErrorBoundaryHandlerState\n ): ErrorBoundaryHandlerState | null {\n const { error } = state\n\n // if we encounter an error while\n // a navigation is pending we shouldn't render\n // the error boundary and instead should fallback\n // to a hard navigation to attempt recovering\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n if (error && handleHardNavError(error)) {\n // clear error so we don't render anything\n return {\n error: null,\n previousPathname: props.pathname,\n }\n }\n }\n\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.error) {\n return {\n error: null,\n previousPathname: props.pathname,\n }\n }\n return {\n error: state.error,\n previousPathname: props.pathname,\n }\n }\n\n reset = () => {\n this.setState({ error: null })\n }\n\n // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version.\n render(): React.ReactNode {\n //When it's bot request, segment level error boundary will keep rendering the children,\n // the final error will be caught by the root error boundary and determine wether need to apply graceful degrade.\n if (this.state.error && !isBotUserAgent) {\n return (\n <>\n \n {this.props.errorStyles}\n {this.props.errorScripts}\n \n \n )\n }\n\n return this.props.children\n }\n}\n\n/**\n * Handles errors through `getDerivedStateFromError`.\n * Renders the provided error component and provides a way to `reset` the error boundary state.\n */\n\n/**\n * Renders error boundary with the provided \"errorComponent\" property as the fallback.\n * If no \"errorComponent\" property is provided it renders the children without an error boundary.\n */\nexport function ErrorBoundary({\n errorComponent,\n errorStyles,\n errorScripts,\n children,\n}: ErrorBoundaryProps & {\n children: React.ReactNode\n}): JSX.Element {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these errors can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n if (errorComponent) {\n return (\n \n {children}\n \n )\n }\n\n return <>{children}\n}\n"],"names":["React","useUntrackedPathname","isNextRouterError","handleHardNavError","HandleISRError","isBot","isBotUserAgent","window","navigator","userAgent","ErrorBoundaryHandler","Component","constructor","props","reset","setState","error","state","previousPathname","pathname","getDerivedStateFromError","getDerivedStateFromProps","process","env","__NEXT_APP_NAV_FAIL_HANDLING","render","errorStyles","errorScripts","this","errorComponent","children","ErrorBoundary"],"mappings":";;;;;;;AAEA,OAAOA,WAAyB,QAAO;AACvC,SAASC,oBAAoB,QAAQ,yBAAwB;AAC7D,SAASC,iBAAiB,QAAQ,yBAAwB;AAC1D,SAASC,kBAAkB,QAAQ,wBAAuB;AAC1D,SAASC,cAAc,QAAQ,qBAAoB;AACnD,SAASC,KAAK,QAAQ,uCAAsC;AAP5D;;;;;;;;AASA,MAAMC,iBACJ,OAAOC,2CAAW,mBAAeF,6MAAAA,EAAME,OAAOC,SAAS,CAACC,SAAS;AA0B5D,MAAMC,6BAA6BV,gNAAAA,CAAMW,SAAS;IAIvDC,YAAYC,KAAgC,CAAE;QAC5C,KAAK,CAACA,QAAAA,IAAAA,CAoDRC,KAAAA,GAAQ;YACN,IAAI,CAACC,QAAQ,CAAC;gBAAEC,OAAO;YAAK;QAC9B;QArDE,IAAI,CAACC,KAAK,GAAG;YAAED,OAAO;YAAME,kBAAkB,IAAI,CAACL,KAAK,CAACM,QAAQ;QAAC;IACpE;IAEA,OAAOC,yBAAyBJ,KAAY,EAAE;QAC5C,QAAId,iNAAAA,EAAkBc,QAAQ;YAC5B,+DAA+D;YAC/D,4GAA4G;YAC5G,MAAMA;QACR;QAEA,OAAO;YAAEA;QAAM;IACjB;IAEA,OAAOK,yBACLR,KAAgC,EAChCI,KAAgC,EACE;QAClC,MAAM,EAAED,KAAK,EAAE,GAAGC;QAElB,iCAAiC;QACjC,8CAA8C;QAC9C,iDAAiD;QACjD,6CAA6C;QAC7C,IAAIK,QAAQC,GAAG,CAACC,4BAA4B,EAAE;;QAU9C;;;;;KAKC,GACD,IAAIX,MAAMM,QAAQ,KAAKF,MAAMC,gBAAgB,IAAID,MAAMD,KAAK,EAAE;YAC5D,OAAO;gBACLA,OAAO;gBACPE,kBAAkBL,MAAMM,QAAQ;YAClC;QACF;QACA,OAAO;YACLH,OAAOC,MAAMD,KAAK;YAClBE,kBAAkBL,MAAMM,QAAQ;QAClC;IACF;IAMA,yIAAyI;IACzIM,SAA0B;QACxB,uFAAuF;QACvF,iHAAiH;QACjH,IAAI,IAAI,CAACR,KAAK,CAACD,KAAK,IAAI,CAACV,gBAAgB;YACvC,OAAA,WAAA,OACE,+NAAA,EAAA,mOAAA,EAAA;;sCACE,8NAAA,EAACF,uMAAAA,EAAAA;wBAAeY,OAAO,IAAI,CAACC,KAAK,CAACD,KAAK;;oBACtC,IAAI,CAACH,KAAK,CAACa,WAAW;oBACtB,IAAI,CAACb,KAAK,CAACc,YAAY;sCACxB,8NAAA,EAACC,IAAI,CAACf,KAAK,CAACgB,cAAc,EAAA;wBACxBb,OAAO,IAAI,CAACC,KAAK,CAACD,KAAK;wBACvBF,OAAO,IAAI,CAACA,KAAK;;;;QAIzB;QAEA,OAAO,IAAI,CAACD,KAAK,CAACiB,QAAQ;IAC5B;AACF;AAWO,SAASC,cAAc,EAC5BF,cAAc,EACdH,WAAW,EACXC,YAAY,EACZG,QAAQ,EAGT;IACC,6EAA6E;IAC7E,qEAAqE;IACrE,wEAAwE;IACxE,oEAAoE;IACpE,MAAMX,eAAWlB,8MAAAA;IACjB,IAAI4B,gBAAgB;QAClB,OAAA,WAAA,OACE,8NAAA,EAACnB,sBAAAA;YACCS,UAAUA;YACVU,gBAAgBA;YAChBH,aAAaA;YACbC,cAAcA;sBAEbG;;IAGP;IAEA,OAAA,WAAA,OAAO,8NAAA,EAAA,mOAAA,EAAA;kBAAGA;;AACZ","ignoreList":[0]}}, - {"offset": {"line": 445, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/match-segments.ts"],"sourcesContent":["import type { Segment } from '../../shared/lib/app-router-types'\n\nexport const matchSegment = (\n existingSegment: Segment,\n segment: Segment\n): boolean => {\n // segment is either Array or string\n if (typeof existingSegment === 'string') {\n if (typeof segment === 'string') {\n // Common case: segment is just a string\n return existingSegment === segment\n }\n return false\n }\n\n if (typeof segment === 'string') {\n return false\n }\n return existingSegment[0] === segment[0] && existingSegment[1] === segment[1]\n}\n"],"names":["matchSegment","existingSegment","segment"],"mappings":";;;;AAEO,MAAMA,eAAe,CAC1BC,iBACAC;IAEA,oCAAoC;IACpC,IAAI,OAAOD,oBAAoB,UAAU;QACvC,IAAI,OAAOC,YAAY,UAAU;YAC/B,wCAAwC;YACxC,OAAOD,oBAAoBC;QAC7B;QACA,OAAO;IACT;IAEA,IAAI,OAAOA,YAAY,UAAU;QAC/B,OAAO;IACT;IACA,OAAOD,eAAe,CAAC,EAAE,KAAKC,OAAO,CAAC,EAAE,IAAID,eAAe,CAAC,EAAE,KAAKC,OAAO,CAAC,EAAE;AAC/E,EAAC","ignoreList":[0]}}, - {"offset": {"line": 467, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/warn-once.ts"],"sourcesContent":["let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n"],"names":["warnOnce","_","process","env","NODE_ENV","warnings","Set","msg","has","console","warn","add"],"mappings":";;;;AAAA,IAAIA,WAAW,CAACC,KAAe;AAC/B,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;IACzC,MAAMC,WAAW,IAAIC;IACrBN,WAAW,CAACO;QACV,IAAI,CAACF,SAASG,GAAG,CAACD,MAAM;YACtBE,QAAQC,IAAI,CAACH;QACf;QACAF,SAASM,GAAG,CAACJ;IACf;AACF","ignoreList":[0]}}, - {"offset": {"line": 487, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/disable-smooth-scroll.ts"],"sourcesContent":["import { warnOnce } from '../../utils/warn-once'\n\n/**\n * Run function with `scroll-behavior: auto` applied to ``.\n * This css change will be reverted after the function finishes.\n */\nexport function disableSmoothScrollDuringRouteTransition(\n fn: () => void,\n options: { dontForceLayout?: boolean; onlyHashChange?: boolean } = {}\n) {\n // if only the hash is changed, we don't need to disable smooth scrolling\n // we only care to prevent smooth scrolling when navigating to a new page to avoid jarring UX\n if (options.onlyHashChange) {\n fn()\n return\n }\n\n const htmlElement = document.documentElement\n const hasDataAttribute = htmlElement.dataset.scrollBehavior === 'smooth'\n\n if (!hasDataAttribute) {\n // Warn if smooth scrolling is detected but no data attribute is present\n if (\n process.env.NODE_ENV === 'development' &&\n getComputedStyle(htmlElement).scrollBehavior === 'smooth'\n ) {\n warnOnce(\n 'Detected `scroll-behavior: smooth` on the `` element. To disable smooth scrolling during route transitions, ' +\n 'add `data-scroll-behavior=\"smooth\"` to your element. ' +\n 'Learn more: https://nextjs.org/docs/messages/missing-data-scroll-behavior'\n )\n }\n // No smooth scrolling configured, run directly without style manipulation\n fn()\n return\n }\n\n // Proceed with temporarily disabling smooth scrolling\n const existing = htmlElement.style.scrollBehavior\n htmlElement.style.scrollBehavior = 'auto'\n if (!options.dontForceLayout) {\n // In Chrome-based browsers we need to force reflow before calling `scrollTo`.\n // Otherwise it will not pickup the change in scrollBehavior\n // More info here: https://github.com/vercel/next.js/issues/40719#issuecomment-1336248042\n htmlElement.getClientRects()\n }\n fn()\n htmlElement.style.scrollBehavior = existing\n}\n"],"names":["warnOnce","disableSmoothScrollDuringRouteTransition","fn","options","onlyHashChange","htmlElement","document","documentElement","hasDataAttribute","dataset","scrollBehavior","process","env","NODE_ENV","getComputedStyle","existing","style","dontForceLayout","getClientRects"],"mappings":";;;;AAAA,SAASA,QAAQ,QAAQ,wBAAuB;;AAMzC,SAASC,yCACdC,EAAc,EACdC,UAAmE,CAAC,CAAC;IAErE,yEAAyE;IACzE,6FAA6F;IAC7F,IAAIA,QAAQC,cAAc,EAAE;QAC1BF;QACA;IACF;IAEA,MAAMG,cAAcC,SAASC,eAAe;IAC5C,MAAMC,mBAAmBH,YAAYI,OAAO,CAACC,cAAc,KAAK;IAEhE,IAAI,CAACF,kBAAkB;QACrB,wEAAwE;QACxE,IACEG,QAAQC,GAAG,CAACC,QAAQ,gCAAK,iBACzBC,iBAAiBT,aAAaK,cAAc,KAAK,UACjD;gBACAV,yLAAAA,EACE,uHACE,iEACA;QAEN;QACA,0EAA0E;QAC1EE;QACA;IACF;IAEA,sDAAsD;IACtD,MAAMa,WAAWV,YAAYW,KAAK,CAACN,cAAc;IACjDL,YAAYW,KAAK,CAACN,cAAc,GAAG;IACnC,IAAI,CAACP,QAAQc,eAAe,EAAE;QAC5B,8EAA8E;QAC9E,4DAA4D;QAC5D,yFAAyF;QACzFZ,YAAYa,cAAc;IAC5B;IACAhB;IACAG,YAAYW,KAAK,CAACN,cAAc,GAAGK;AACrC","ignoreList":[0]}}, - {"offset": {"line": 527, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment.ts"],"sourcesContent":["import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n"],"names":["getSegmentValue","segment","Array","isArray","isGroupSegment","endsWith","isParallelRouteSegment","startsWith","addSearchParamsIfPageSegment","searchParams","isPageSegment","includes","PAGE_SEGMENT_KEY","stringifiedQuery","JSON","stringify","computeSelectedLayoutSegment","segments","parallelRouteKey","length","rawSegment","DEFAULT_SEGMENT_KEY","getSelectedLayoutSegmentPath","tree","first","segmentPath","node","parallelRoutes","children","Object","values","segmentValue","push","NOT_FOUND_SEGMENT_KEY"],"mappings":";;;;;;;;;;;;;;;;;;;;AAEO,SAASA,gBAAgBC,OAAgB;IAC9C,OAAOC,MAAMC,OAAO,CAACF,WAAWA,OAAO,CAAC,EAAE,GAAGA;AAC/C;AAEO,SAASG,eAAeH,OAAe;IAC5C,sCAAsC;IACtC,OAAOA,OAAO,CAAC,EAAE,KAAK,OAAOA,QAAQI,QAAQ,CAAC;AAChD;AAEO,SAASC,uBAAuBL,OAAe;IACpD,OAAOA,QAAQM,UAAU,CAAC,QAAQN,YAAY;AAChD;AAEO,SAASO,6BACdP,OAAgB,EAChBQ,YAA2D;IAE3D,MAAMC,gBAAgBT,QAAQU,QAAQ,CAACC;IAEvC,IAAIF,eAAe;QACjB,MAAMG,mBAAmBC,KAAKC,SAAS,CAACN;QACxC,OAAOI,qBAAqB,OACxBD,mBAAmB,MAAMC,mBACzBD;IACN;IAEA,OAAOX;AACT;AAEO,SAASe,6BACdC,QAAyB,EACzBC,gBAAwB;IAExB,IAAI,CAACD,YAAYA,SAASE,MAAM,KAAK,GAAG;QACtC,OAAO;IACT;IAEA,iFAAiF;IACjF,MAAMC,aACJF,qBAAqB,aACjBD,QAAQ,CAAC,EAAE,GACXA,QAAQ,CAACA,SAASE,MAAM,GAAG,EAAE;IAEnC,sGAAsG;IACtG,oEAAoE;IACpE,OAAOC,eAAeC,sBAAsB,OAAOD;AACrD;AAGO,SAASE,6BACdC,IAAuB,EACvBL,gBAAwB,EACxBM,QAAQ,IAAI,EACZC,cAAwB,EAAE;IAE1B,IAAIC;IACJ,IAAIF,OAAO;QACT,kEAAkE;QAClEE,OAAOH,IAAI,CAAC,EAAE,CAACL,iBAAiB;IAClC,OAAO;QACL,oGAAoG;QACpG,MAAMS,iBAAiBJ,IAAI,CAAC,EAAE;QAC9BG,OAAOC,eAAeC,QAAQ,IAAIC,OAAOC,MAAM,CAACH,eAAe,CAAC,EAAE;IACpE;IAEA,IAAI,CAACD,MAAM,OAAOD;IAClB,MAAMxB,UAAUyB,IAAI,CAAC,EAAE;IAEvB,IAAIK,eAAe/B,gBAAgBC;IAEnC,IAAI,CAAC8B,gBAAgBA,aAAaxB,UAAU,CAACK,mBAAmB;QAC9D,OAAOa;IACT;IAEAA,YAAYO,IAAI,CAACD;IAEjB,OAAOT,6BACLI,MACAR,kBACA,OACAO;AAEJ;AAEO,MAAMb,mBAAmB,WAAU;AACnC,MAAMS,sBAAsB,cAAa;AACzC,MAAMY,wBAAwB,cAAa","ignoreList":[0]}}, - {"offset": {"line": 601, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/server-inserted-html.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].ServerInsertedHtml\n"],"names":["module","exports","require","vendored","ServerInsertedHtml"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,kBAAkB","ignoreList":[0]}}, - {"offset": {"line": 606, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unrecognized-action-error.ts"],"sourcesContent":["export class UnrecognizedActionError extends Error {\n constructor(...args: ConstructorParameters) {\n super(...args)\n this.name = 'UnrecognizedActionError'\n }\n}\n\n/**\n * Check whether a server action call failed because the server action was not recognized by the server.\n * This can happen if the client and the server are not from the same deployment.\n *\n * Example usage:\n * ```ts\n * try {\n * await myServerAction();\n * } catch (err) {\n * if (unstable_isUnrecognizedActionError(err)) {\n * // The client is from a different deployment than the server.\n * // Reloading the page will fix this mismatch.\n * window.alert(\"Please refresh the page and try again\");\n * return;\n * }\n * }\n * ```\n * */\nexport function unstable_isUnrecognizedActionError(\n error: unknown\n): error is UnrecognizedActionError {\n return !!(\n error &&\n typeof error === 'object' &&\n error instanceof UnrecognizedActionError\n )\n}\n"],"names":["UnrecognizedActionError","Error","constructor","args","name","unstable_isUnrecognizedActionError","error"],"mappings":";;;;;;AAAO,MAAMA,gCAAgCC;IAC3CC,YAAY,GAAGC,IAAyC,CAAE;QACxD,KAAK,IAAIA;QACT,IAAI,CAACC,IAAI,GAAG;IACd;AACF;AAoBO,SAASC,mCACdC,KAAc;IAEd,OAAO,CAAC,CACNA,CAAAA,SACA,OAAOA,UAAU,YACjBA,iBAAiBN,uBAAsB;AAE3C","ignoreList":[0]}}, - {"offset": {"line": 625, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/readonly-url-search-params.ts"],"sourcesContent":["/**\n * ReadonlyURLSearchParams implementation shared between client and server.\n * This file is intentionally not marked as 'use client' or 'use server'\n * so it can be imported by both environments.\n */\n\n/** @internal */\nclass ReadonlyURLSearchParamsError extends Error {\n constructor() {\n super(\n 'Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams'\n )\n }\n}\n\n/**\n * A read-only version of URLSearchParams that throws errors when mutation methods are called.\n * This ensures that the URLSearchParams returned by useSearchParams() cannot be mutated.\n */\nexport class ReadonlyURLSearchParams extends URLSearchParams {\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n append() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n delete() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n set() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n sort() {\n throw new ReadonlyURLSearchParamsError()\n }\n}\n"],"names":["ReadonlyURLSearchParamsError","Error","constructor","ReadonlyURLSearchParams","URLSearchParams","append","delete","set","sort"],"mappings":";;;;AAAA;;;;CAIC,GAED,cAAc,GACd,MAAMA,qCAAqCC;IACzCC,aAAc;QACZ,KAAK,CACH;IAEJ;AACF;AAMO,MAAMC,gCAAgCC;IAC3C,wKAAwK,GACxKC,SAAS;QACP,MAAM,IAAIL;IACZ;IACA,wKAAwK,GACxKM,SAAS;QACP,MAAM,IAAIN;IACZ;IACA,wKAAwK,GACxKO,MAAM;QACJ,MAAM,IAAIP;IACZ;IACA,wKAAwK,GACxKQ,OAAO;QACL,MAAM,IAAIR;IACZ;AACF","ignoreList":[0]}}, - {"offset": {"line": 656, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect.ts"],"sourcesContent":["import { RedirectStatusCode } from './redirect-status-code'\nimport {\n RedirectType,\n type RedirectError,\n isRedirectError,\n REDIRECT_ERROR_CODE,\n} from './redirect-error'\n\nconst actionAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/action-async-storage.external') as typeof import('../../server/app-render/action-async-storage.external')\n ).actionAsyncStorage\n : undefined\n\nexport function getRedirectError(\n url: string,\n type: RedirectType,\n statusCode: RedirectStatusCode = RedirectStatusCode.TemporaryRedirect\n): RedirectError {\n const error = new Error(REDIRECT_ERROR_CODE) as RedirectError\n error.digest = `${REDIRECT_ERROR_CODE};${type};${url};${statusCode};`\n return error\n}\n\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 307/303 to the caller.\n * - In a Server Action, type defaults to 'push' and 'replace' elsewhere.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */\nexport function redirect(\n /** The URL to redirect to */\n url: string,\n type?: RedirectType\n): never {\n type ??= actionAsyncStorage?.getStore()?.isAction\n ? RedirectType.push\n : RedirectType.replace\n\n throw getRedirectError(url, type, RedirectStatusCode.TemporaryRedirect)\n}\n\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 308/303 to the caller.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */\nexport function permanentRedirect(\n /** The URL to redirect to */\n url: string,\n type: RedirectType = RedirectType.replace\n): never {\n throw getRedirectError(url, type, RedirectStatusCode.PermanentRedirect)\n}\n\n/**\n * Returns the encoded URL from the error if it's a RedirectError, null\n * otherwise. Note that this does not validate the URL returned.\n *\n * @param error the error that may be a redirect error\n * @return the url if the error was a redirect error\n */\nexport function getURLFromRedirectError(error: RedirectError): string\nexport function getURLFromRedirectError(error: unknown): string | null {\n if (!isRedirectError(error)) return null\n\n // Slices off the beginning of the digest that contains the code and the\n // separating ';'.\n return error.digest.split(';').slice(2, -2).join(';')\n}\n\nexport function getRedirectTypeFromError(error: RedirectError): RedirectType {\n if (!isRedirectError(error)) {\n throw new Error('Not a redirect error')\n }\n\n return error.digest.split(';', 2)[1] as RedirectType\n}\n\nexport function getRedirectStatusCodeFromError(error: RedirectError): number {\n if (!isRedirectError(error)) {\n throw new Error('Not a redirect error')\n }\n\n return Number(error.digest.split(';').at(-2))\n}\n"],"names":["RedirectStatusCode","RedirectType","isRedirectError","REDIRECT_ERROR_CODE","actionAsyncStorage","window","require","undefined","getRedirectError","url","type","statusCode","TemporaryRedirect","error","Error","digest","redirect","getStore","isAction","push","replace","permanentRedirect","PermanentRedirect","getURLFromRedirectError","split","slice","join","getRedirectTypeFromError","getRedirectStatusCodeFromError","Number","at"],"mappings":";;;;;;;;;;;;;;AAAA,SAASA,kBAAkB,QAAQ,yBAAwB;AAC3D,SACEC,YAAY,EAEZC,eAAe,EACfC,mBAAmB,QACd,mBAAkB;;;AAEzB,MAAMC,qBACJ,OAAOC,WAAW,qBAEZC,QAAQ,2KACRF,kBAAkB,GACpBG;AAEC,SAASC,iBACdC,GAAW,EACXC,IAAkB,EAClBC,aAAiCX,+MAAAA,CAAmBY,iBAAiB;IAErE,MAAMC,QAAQ,OAAA,cAA8B,CAA9B,IAAIC,MAAMX,uMAAAA,GAAV,qBAAA;eAAA;oBAAA;sBAAA;IAA6B;IAC3CU,MAAME,MAAM,GAAG,GAAGZ,uMAAAA,CAAoB,CAAC,EAAEO,KAAK,CAAC,EAAED,IAAI,CAAC,EAAEE,WAAW,CAAC,CAAC;IACrE,OAAOE;AACT;AAcO,SAASG,SACd,2BAA2B,GAC3BP,GAAW,EACXC,IAAmB;IAEnBA,SAASN,oBAAoBa,YAAYC,WACrCjB,gMAAAA,CAAakB,IAAI,GACjBlB,gMAAAA,CAAamB,OAAO;IAExB,MAAMZ,iBAAiBC,KAAKC,MAAMV,+MAAAA,CAAmBY,iBAAiB;AACxE;AAaO,SAASS,kBACd,2BAA2B,GAC3BZ,GAAW,EACXC,OAAqBT,gMAAAA,CAAamB,OAAO;IAEzC,MAAMZ,iBAAiBC,KAAKC,MAAMV,+MAAAA,CAAmBsB,iBAAiB;AACxE;AAUO,SAASC,wBAAwBV,KAAc;IACpD,IAAI,KAACX,mMAAAA,EAAgBW,QAAQ,OAAO;IAEpC,wEAAwE;IACxE,kBAAkB;IAClB,OAAOA,MAAME,MAAM,CAACS,KAAK,CAAC,KAAKC,KAAK,CAAC,GAAG,CAAC,GAAGC,IAAI,CAAC;AACnD;AAEO,SAASC,yBAAyBd,KAAoB;IAC3D,IAAI,KAACX,mMAAAA,EAAgBW,QAAQ;QAC3B,MAAM,OAAA,cAAiC,CAAjC,IAAIC,MAAM,yBAAV,qBAAA;mBAAA;wBAAA;0BAAA;QAAgC;IACxC;IAEA,OAAOD,MAAME,MAAM,CAACS,KAAK,CAAC,KAAK,EAAE,CAAC,EAAE;AACtC;AAEO,SAASI,+BAA+Bf,KAAoB;IACjE,IAAI,KAACX,mMAAAA,EAAgBW,QAAQ;QAC3B,MAAM,OAAA,cAAiC,CAAjC,IAAIC,MAAM,yBAAV,qBAAA;mBAAA;wBAAA;0BAAA;QAAgC;IACxC;IAEA,OAAOe,OAAOhB,MAAME,MAAM,CAACS,KAAK,CAAC,KAAKM,EAAE,CAAC,CAAC;AAC5C","ignoreList":[0]}}, - {"offset": {"line": 721, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/not-found.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n/**\n * This function allows you to render the [not-found.js file](https://nextjs.org/docs/app/api-reference/file-conventions/not-found)\n * within a route segment as well as inject a tag.\n *\n * `notFound()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a `` meta tag and set the status code to 404.\n * - In a Route Handler or Server Action, it will serve a 404 to the caller.\n *\n * Read more: [Next.js Docs: `notFound`](https://nextjs.org/docs/app/api-reference/functions/not-found)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};404`\n\nexport function notFound(): never {\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n\n throw error\n}\n"],"names":["HTTP_ERROR_FALLBACK_ERROR_CODE","DIGEST","notFound","error","Error","digest"],"mappings":";;;;AAAA,SACEA,8BAA8B,QAEzB,8CAA6C;;AAEpD;;;;;;;;;;;;;CAaC,GAED,MAAMC,SAAS,GAAGD,yPAAAA,CAA+B,IAAI,CAAC;AAE/C,SAASE;IACd,MAAMC,QAAQ,OAAA,cAAiB,CAAjB,IAAIC,MAAMH,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BE,MAAkCE,MAAM,GAAGJ;IAE7C,MAAME;AACR","ignoreList":[0]}}, - {"offset": {"line": 754, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/forbidden.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n// TODO: Add `forbidden` docs\n/**\n * @experimental\n * This function allows you to render the [forbidden.js file](https://nextjs.org/docs/app/api-reference/file-conventions/forbidden)\n * within a route segment as well as inject a tag.\n *\n * `forbidden()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * Read more: [Next.js Docs: `forbidden`](https://nextjs.org/docs/app/api-reference/functions/forbidden)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};403`\n\nexport function forbidden(): never {\n if (!process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS) {\n throw new Error(\n `\\`forbidden()\\` is experimental and only allowed to be enabled when \\`experimental.authInterrupts\\` is enabled.`\n )\n }\n\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n throw error\n}\n"],"names":["HTTP_ERROR_FALLBACK_ERROR_CODE","DIGEST","forbidden","process","env","__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS","Error","error","digest"],"mappings":";;;;AAAA,SACEA,8BAA8B,QAEzB,8CAA6C;;AAEpD,6BAA6B;AAC7B;;;;;;;;;;;CAWC,GAED,MAAMC,SAAS,GAAGD,yPAAAA,CAA+B,IAAI,CAAC;AAE/C,SAASE;IACd,IAAI,CAACC,QAAQC,GAAG,CAACC,uBAAqC,YAAF;QAClD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,+GAA+G,CAAC,GAD7G,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,MAAMC,QAAQ,OAAA,cAAiB,CAAjB,IAAID,MAAML,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BM,MAAkCC,MAAM,GAAGP;IAC7C,MAAMM;AACR","ignoreList":[0]}}, - {"offset": {"line": 793, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unauthorized.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n// TODO: Add `unauthorized` docs\n/**\n * @experimental\n * This function allows you to render the [unauthorized.js file](https://nextjs.org/docs/app/api-reference/file-conventions/unauthorized)\n * within a route segment as well as inject a tag.\n *\n * `unauthorized()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n *\n * Read more: [Next.js Docs: `unauthorized`](https://nextjs.org/docs/app/api-reference/functions/unauthorized)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};401`\n\nexport function unauthorized(): never {\n if (!process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS) {\n throw new Error(\n `\\`unauthorized()\\` is experimental and only allowed to be used when \\`experimental.authInterrupts\\` is enabled.`\n )\n }\n\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n throw error\n}\n"],"names":["HTTP_ERROR_FALLBACK_ERROR_CODE","DIGEST","unauthorized","process","env","__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS","Error","error","digest"],"mappings":";;;;AAAA,SACEA,8BAA8B,QAEzB,8CAA6C;;AAEpD,gCAAgC;AAChC;;;;;;;;;;;;CAYC,GAED,MAAMC,SAAS,GAAGD,yPAAAA,CAA+B,IAAI,CAAC;AAE/C,SAASE;IACd,IAAI,CAACC,QAAQC,GAAG,CAACC,uBAAqC,YAAF;QAClD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,+GAA+G,CAAC,GAD7G,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,MAAMC,QAAQ,OAAA,cAAiB,CAAjB,IAAID,MAAML,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BM,MAAkCC,MAAM,GAAGP;IAC7C,MAAMM;AACR","ignoreList":[0]}}, - {"offset": {"line": 833, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/dynamic-rendering-utils.ts"],"sourcesContent":["import type { NonStaticRenderStage } from './app-render/staged-rendering'\nimport type { RequestStore } from './app-render/work-unit-async-storage.external'\n\nexport function isHangingPromiseRejectionError(\n err: unknown\n): err is HangingPromiseRejectionError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === HANGING_PROMISE_REJECTION\n}\n\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'\n\nclass HangingPromiseRejectionError extends Error {\n public readonly digest = HANGING_PROMISE_REJECTION\n\n constructor(\n public readonly route: string,\n public readonly expression: string\n ) {\n super(\n `During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`\n )\n }\n}\n\ntype AbortListeners = Array<(err: unknown) => void>\nconst abortListenersBySignal = new WeakMap()\n\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */\nexport function makeHangingPromise(\n signal: AbortSignal,\n route: string,\n expression: string\n): Promise {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression))\n } else {\n const hangingPromise = new Promise((_, reject) => {\n const boundRejection = reject.bind(\n null,\n new HangingPromiseRejectionError(route, expression)\n )\n let currentListeners = abortListenersBySignal.get(signal)\n if (currentListeners) {\n currentListeners.push(boundRejection)\n } else {\n const listeners = [boundRejection]\n abortListenersBySignal.set(signal, listeners)\n signal.addEventListener(\n 'abort',\n () => {\n for (let i = 0; i < listeners.length; i++) {\n listeners[i]()\n }\n },\n { once: true }\n )\n }\n })\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject)\n return hangingPromise\n }\n}\n\nfunction ignoreReject() {}\n\nexport function makeDevtoolsIOAwarePromise(\n underlying: T,\n requestStore: RequestStore,\n stage: NonStaticRenderStage\n): Promise {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(\n stage,\n undefined,\n underlying\n )\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise((resolve) => {\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(() => {\n resolve(underlying)\n }, 0)\n })\n}\n"],"names":["isHangingPromiseRejectionError","err","digest","HANGING_PROMISE_REJECTION","HangingPromiseRejectionError","Error","constructor","route","expression","abortListenersBySignal","WeakMap","makeHangingPromise","signal","aborted","Promise","reject","hangingPromise","_","boundRejection","bind","currentListeners","get","push","listeners","set","addEventListener","i","length","once","catch","ignoreReject","makeDevtoolsIOAwarePromise","underlying","requestStore","stage","stagedRendering","delayUntilStage","undefined","resolve","setTimeout"],"mappings":";;;;;;;;AAGO,SAASA,+BACdC,GAAY;IAEZ,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIC,MAAM,KAAKC;AACxB;AAEA,MAAMA,4BAA4B;AAElC,MAAMC,qCAAqCC;IAGzCC,YACkBC,KAAa,EACbC,UAAkB,CAClC;QACA,KAAK,CACH,CAAC,qBAAqB,EAAEA,WAAW,qGAAqG,EAAEA,WAAW,8KAA8K,EAAED,MAAM,EAAE,CAAC,GAAA,IAAA,CAJhUA,KAAAA,GAAAA,OAAAA,IAAAA,CACAC,UAAAA,GAAAA,YAAAA,IAAAA,CAJFN,MAAAA,GAASC;IASzB;AACF;AAGA,MAAMM,yBAAyB,IAAIC;AAS5B,SAASC,mBACdC,MAAmB,EACnBL,KAAa,EACbC,UAAkB;IAElB,IAAII,OAAOC,OAAO,EAAE;QAClB,OAAOC,QAAQC,MAAM,CAAC,IAAIX,6BAA6BG,OAAOC;IAChE,OAAO;QACL,MAAMQ,iBAAiB,IAAIF,QAAW,CAACG,GAAGF;YACxC,MAAMG,iBAAiBH,OAAOI,IAAI,CAChC,MACA,IAAIf,6BAA6BG,OAAOC;YAE1C,IAAIY,mBAAmBX,uBAAuBY,GAAG,CAACT;YAClD,IAAIQ,kBAAkB;gBACpBA,iBAAiBE,IAAI,CAACJ;YACxB,OAAO;gBACL,MAAMK,YAAY;oBAACL;iBAAe;gBAClCT,uBAAuBe,GAAG,CAACZ,QAAQW;gBACnCX,OAAOa,gBAAgB,CACrB,SACA;oBACE,IAAK,IAAIC,IAAI,GAAGA,IAAIH,UAAUI,MAAM,EAAED,IAAK;wBACzCH,SAAS,CAACG,EAAE;oBACd;gBACF,GACA;oBAAEE,MAAM;gBAAK;YAEjB;QACF;QACA,2GAA2G;QAC3G,6GAA6G;QAC7G,yFAAyF;QACzFZ,eAAea,KAAK,CAACC;QACrB,OAAOd;IACT;AACF;AAEA,SAASc,gBAAgB;AAElB,SAASC,2BACdC,UAAa,EACbC,YAA0B,EAC1BC,KAA2B;IAE3B,IAAID,aAAaE,eAAe,EAAE;QAChC,iFAAiF;QACjF,OAAOF,aAAaE,eAAe,CAACC,eAAe,CACjDF,OACAG,WACAL;IAEJ;IACA,kEAAkE;IAClE,2EAA2E;IAC3E,OAAO,IAAIlB,QAAW,CAACwB;QACrB,sFAAsF;QACtFC,WAAW;YACTD,QAAQN;QACV,GAAG;IACL;AACF","ignoreList":[0]}}, - {"offset": {"line": 903, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/router-utils/is-postpone.ts"],"sourcesContent":["const REACT_POSTPONE_TYPE: symbol = Symbol.for('react.postpone')\n\nexport function isPostpone(error: any): boolean {\n return (\n typeof error === 'object' &&\n error !== null &&\n error.$$typeof === REACT_POSTPONE_TYPE\n )\n}\n"],"names":["REACT_POSTPONE_TYPE","Symbol","for","isPostpone","error","$$typeof"],"mappings":";;;;AAAA,MAAMA,sBAA8BC,OAAOC,GAAG,CAAC;AAExC,SAASC,WAAWC,KAAU;IACnC,OACE,OAAOA,UAAU,YACjBA,UAAU,QACVA,MAAMC,QAAQ,KAAKL;AAEvB","ignoreList":[0]}}, - {"offset": {"line": 915, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/lazy-dynamic/bailout-to-csr.ts"],"sourcesContent":["// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'\n\n/** An error that should be thrown when we want to bail out to client-side rendering. */\nexport class BailoutToCSRError extends Error {\n public readonly digest = BAILOUT_TO_CSR\n\n constructor(public readonly reason: string) {\n super(`Bail out to client-side rendering: ${reason}`)\n }\n}\n\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */\nexport function isBailoutToCSRError(err: unknown): err is BailoutToCSRError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === BAILOUT_TO_CSR\n}\n"],"names":["BAILOUT_TO_CSR","BailoutToCSRError","Error","constructor","reason","digest","isBailoutToCSRError","err"],"mappings":";;;;;;AAAA,+GAA+G;AAC/G,MAAMA,iBAAiB;AAGhB,MAAMC,0BAA0BC;IAGrCC,YAA4BC,MAAc,CAAE;QAC1C,KAAK,CAAC,CAAC,mCAAmC,EAAEA,QAAQ,GAAA,IAAA,CAD1BA,MAAAA,GAAAA,QAAAA,IAAAA,CAFZC,MAAAA,GAASL;IAIzB;AACF;AAGO,SAASM,oBAAoBC,GAAY;IAC9C,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIF,MAAM,KAAKL;AACxB","ignoreList":[0]}}, - {"offset": {"line": 938, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/hooks-server-context.ts"],"sourcesContent":["const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'\n\nexport class DynamicServerError extends Error {\n digest: typeof DYNAMIC_ERROR_CODE = DYNAMIC_ERROR_CODE\n\n constructor(public readonly description: string) {\n super(`Dynamic server usage: ${description}`)\n }\n}\n\nexport function isDynamicServerError(err: unknown): err is DynamicServerError {\n if (\n typeof err !== 'object' ||\n err === null ||\n !('digest' in err) ||\n typeof err.digest !== 'string'\n ) {\n return false\n }\n\n return err.digest === DYNAMIC_ERROR_CODE\n}\n"],"names":["DYNAMIC_ERROR_CODE","DynamicServerError","Error","constructor","description","digest","isDynamicServerError","err"],"mappings":";;;;;;AAAA,MAAMA,qBAAqB;AAEpB,MAAMC,2BAA2BC;IAGtCC,YAA4BC,WAAmB,CAAE;QAC/C,KAAK,CAAC,CAAC,sBAAsB,EAAEA,aAAa,GAAA,IAAA,CADlBA,WAAAA,GAAAA,aAAAA,IAAAA,CAF5BC,MAAAA,GAAoCL;IAIpC;AACF;AAEO,SAASM,qBAAqBC,GAAY;IAC/C,IACE,OAAOA,QAAQ,YACfA,QAAQ,QACR,CAAE,CAAA,YAAYA,GAAE,KAChB,OAAOA,IAAIF,MAAM,KAAK,UACtB;QACA,OAAO;IACT;IAEA,OAAOE,IAAIF,MAAM,KAAKL;AACxB","ignoreList":[0]}}, - {"offset": {"line": 960, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/static-generation-bailout.ts"],"sourcesContent":["const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'\n\nexport class StaticGenBailoutError extends Error {\n public readonly code = NEXT_STATIC_GEN_BAILOUT\n}\n\nexport function isStaticGenBailoutError(\n error: unknown\n): error is StaticGenBailoutError {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false\n }\n\n return error.code === NEXT_STATIC_GEN_BAILOUT\n}\n"],"names":["NEXT_STATIC_GEN_BAILOUT","StaticGenBailoutError","Error","code","isStaticGenBailoutError","error"],"mappings":";;;;;;AAAA,MAAMA,0BAA0B;AAEzB,MAAMC,8BAA8BC;;QAApC,KAAA,IAAA,OAAA,IAAA,CACWC,IAAAA,GAAOH;;AACzB;AAEO,SAASI,wBACdC,KAAc;IAEd,IAAI,OAAOA,UAAU,YAAYA,UAAU,QAAQ,CAAE,CAAA,UAAUA,KAAI,GAAI;QACrE,OAAO;IACT;IAEA,OAAOA,MAAMF,IAAI,KAAKH;AACxB","ignoreList":[0]}}, - {"offset": {"line": 982, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-constants.tsx"],"sourcesContent":["export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'\n"],"names":["METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME"],"mappings":";;;;;;;;;;AAAO,MAAMA,yBAAyB,6BAA4B;AAC3D,MAAMC,yBAAyB,6BAA4B;AAC3D,MAAMC,uBAAuB,2BAA0B;AACvD,MAAMC,4BAA4B,gCAA+B","ignoreList":[0]}}, - {"offset": {"line": 1000, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/scheduler.ts"],"sourcesContent":["export type ScheduledFn = () => T | PromiseLike\nexport type SchedulerFn = (cb: ScheduledFn) => void\n\n/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */\nexport const scheduleOnNextTick = (cb: ScheduledFn) => {\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(() => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n process.nextTick(cb)\n }\n })\n}\n\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */\nexport const scheduleImmediate = (cb: ScheduledFn): void => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n setImmediate(cb)\n }\n}\n\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */\nexport function atLeastOneTask() {\n return new Promise((resolve) => scheduleImmediate(resolve))\n}\n\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */\nexport function waitAtLeastOneReactRenderTask(): Promise {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r) => setTimeout(r, 0))\n } else {\n return new Promise((r) => setImmediate(r))\n }\n}\n"],"names":["scheduleOnNextTick","cb","Promise","resolve","then","process","env","NEXT_RUNTIME","setTimeout","nextTick","scheduleImmediate","setImmediate","atLeastOneTask","waitAtLeastOneReactRenderTask","r"],"mappings":"AAGA;;;;;CAKC,GACD;;;;;;;;;;AAAO,MAAMA,qBAAqB,CAACC;IACjC,6EAA6E;IAC7E,4EAA4E;IAC5E,uCAAuC;IACvC,EAAE;IACF,kLAAkL;IAClL,EAAE;IACFC,QAAQC,OAAO,GAAGC,IAAI,CAAC;QACrB,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;aAElC;YACLF,QAAQI,QAAQ,CAACR;QACnB;IACF;AACF,EAAC;AAQM,MAAMS,oBAAoB,CAACT;IAChC,IAAII,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACLI,aAAaV;IACf;AACF,EAAC;AAOM,SAASW;IACd,OAAO,IAAIV,QAAc,CAACC,UAAYO,kBAAkBP;AAC1D;AAWO,SAASU;IACd,IAAIR,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACL,OAAO,IAAIL,QAAQ,CAACY,IAAMH,aAAaG;IACzC;AACF","ignoreList":[0]}}, - {"offset": {"line": 1051, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/invariant-error.ts"],"sourcesContent":["export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n"],"names":["InvariantError","Error","constructor","message","options","endsWith","name"],"mappings":";;;;AAAO,MAAMA,uBAAuBC;IAClCC,YAAYC,OAAe,EAAEC,OAAsB,CAAE;QACnD,KAAK,CACH,CAAC,WAAW,EAAED,QAAQE,QAAQ,CAAC,OAAOF,UAAUA,UAAU,IAAI,0BAA0B,CAAC,EACzFC;QAEF,IAAI,CAACE,IAAI,GAAG;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 1065, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/dynamic-rendering.ts"],"sourcesContent":["/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */\n\nimport type { WorkStore } from '../app-render/work-async-storage.external'\nimport type {\n WorkUnitStore,\n PrerenderStoreLegacy,\n PrerenderStoreModern,\n PrerenderStoreModernRuntime,\n} from '../app-render/work-unit-async-storage.external'\n\n// Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react'\n\nimport { DynamicServerError } from '../../client/components/hooks-server-context'\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport {\n getRuntimeStagePromise,\n throwForMissingRequestStore,\n workUnitAsyncStorage,\n} from './work-unit-async-storage.external'\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from '../../lib/framework/boundary-constants'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nconst hasPostpone = typeof React.unstable_postpone === 'function'\n\nexport type DynamicAccess = {\n /**\n * If debugging, this will contain the stack trace of where the dynamic access\n * occurred. This is used to provide more information to the user about why\n * their page is being rendered dynamically.\n */\n stack?: string\n\n /**\n * The expression that was accessed dynamically.\n */\n expression: string\n}\n\n// Stores dynamic reasons used during an RSC render.\nexport type DynamicTrackingState = {\n /**\n * When true, stack information will also be tracked during dynamic access.\n */\n readonly isDebugDynamicAccesses: boolean | undefined\n\n /**\n * The dynamic accesses that occurred during the render.\n */\n readonly dynamicAccesses: Array\n\n syncDynamicErrorWithStack: null | Error\n}\n\n// Stores dynamic reasons used during an SSR render.\nexport type DynamicValidationState = {\n hasSuspenseAboveBody: boolean\n hasDynamicMetadata: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array\n}\n\nexport function createDynamicTrackingState(\n isDebugDynamicAccesses: boolean | undefined\n): DynamicTrackingState {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null,\n }\n}\n\nexport function createDynamicValidationState(): DynamicValidationState {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n }\n}\n\nexport function getFirstDynamicReason(\n trackingState: DynamicTrackingState\n): undefined | string {\n return trackingState.dynamicAccesses[0]?.expression\n}\n\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */\nexport function markCurrentScopeAsDynamic(\n store: WorkStore,\n workUnitStore: undefined | Exclude,\n expression: string\n): void {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return\n\n if (store.dynamicShouldError) {\n throw new StaticGenBailoutError(\n `Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n }\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-ppr':\n return postponeWithTracking(\n store.route,\n expression,\n workUnitStore.dynamicTracking\n )\n case 'prerender-legacy':\n workUnitStore.revalidate = 0\n\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */\nexport function throwToInterruptStaticGeneration(\n expression: string,\n store: WorkStore,\n prerenderStore: PrerenderStoreLegacy\n): never {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n\n prerenderStore.revalidate = 0\n\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n}\n\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */\nexport function trackDynamicDataInDynamicRender(workUnitStore: WorkUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n break\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n}\n\nfunction abortOnSynchronousDynamicDataAccess(\n route: string,\n expression: string,\n prerenderStore: PrerenderStoreModern\n): void {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n\n const error = createPrerenderInterruptedError(reason)\n\n prerenderStore.controller.abort(error)\n\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function abortOnSynchronousPlatformIOAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): void {\n const dynamicTracking = prerenderStore.dynamicTracking\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n}\n\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */\nexport function abortAndThrowOnSynchronousRequestDataAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): never {\n const prerenderSignal = prerenderStore.controller.signal\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n }\n throw createPrerenderInterruptedError(\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n )\n}\n\n/**\n * This component will call `React.postpone` that throws the postponed error.\n */\ntype PostponeProps = {\n reason: string\n route: string\n}\nexport function Postpone({ reason, route }: PostponeProps): never {\n const prerenderStore = workUnitAsyncStorage.getStore()\n const dynamicTracking =\n prerenderStore && prerenderStore.type === 'prerender-ppr'\n ? prerenderStore.dynamicTracking\n : null\n postponeWithTracking(route, reason, dynamicTracking)\n}\n\nexport function postponeWithTracking(\n route: string,\n expression: string,\n dynamicTracking: null | DynamicTrackingState\n): never {\n assertPostpone()\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n\n React.unstable_postpone(createPostponeReason(route, expression))\n}\n\nfunction createPostponeReason(route: string, expression: string) {\n return (\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` +\n `React throws this special object to indicate where. It should not be caught by ` +\n `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`\n )\n}\n\nexport function isDynamicPostpone(err: unknown) {\n if (\n typeof err === 'object' &&\n err !== null &&\n typeof (err as any).message === 'string'\n ) {\n return isDynamicPostponeReason((err as any).message)\n }\n return false\n}\n\nfunction isDynamicPostponeReason(reason: string) {\n return (\n reason.includes(\n 'needs to bail out of prerendering at this point because it used'\n ) &&\n reason.includes(\n 'Learn more: https://nextjs.org/docs/messages/ppr-caught-error'\n )\n )\n}\n\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw new Error(\n 'Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'\n )\n}\n\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'\n\nfunction createPrerenderInterruptedError(message: string): Error {\n const error = new Error(message)\n ;(error as any).digest = NEXT_PRERENDER_INTERRUPTED\n return error\n}\n\ntype DigestError = Error & {\n digest: string\n}\n\nexport function isPrerenderInterruptedError(\n error: unknown\n): error is DigestError {\n return (\n typeof error === 'object' &&\n error !== null &&\n (error as any).digest === NEXT_PRERENDER_INTERRUPTED &&\n 'name' in error &&\n 'message' in error &&\n error instanceof Error\n )\n}\n\nexport function accessedDynamicData(\n dynamicAccesses: Array\n): boolean {\n return dynamicAccesses.length > 0\n}\n\nexport function consumeDynamicAccess(\n serverDynamic: DynamicTrackingState,\n clientDynamic: DynamicTrackingState\n): DynamicTrackingState['dynamicAccesses'] {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses)\n return serverDynamic.dynamicAccesses\n}\n\nexport function formatDynamicAPIAccesses(\n dynamicAccesses: Array\n): string[] {\n return dynamicAccesses\n .filter(\n (access): access is Required =>\n typeof access.stack === 'string' && access.stack.length > 0\n )\n .map(({ expression, stack }) => {\n stack = stack\n .split('\\n')\n // Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4)\n .filter((line) => {\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false\n }\n\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' ()')) {\n return false\n }\n\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false\n }\n\n return true\n })\n .join('\\n')\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`\n })\n}\n\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw new Error(\n `Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`\n )\n }\n}\n\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */\nexport function createRenderInBrowserAbortSignal(): AbortSignal {\n const controller = new AbortController()\n controller.abort(new BailoutToCSRError('Render in Browser'))\n return controller.signal\n}\n\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */\nexport function createHangingInputAbortSignal(\n workUnitStore: WorkUnitStore\n): AbortSignal | undefined {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController()\n\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(() => {\n controller.abort()\n })\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n const runtimeStagePromise = getRuntimeStagePromise(workUnitStore)\n if (runtimeStagePromise) {\n runtimeStagePromise.then(() =>\n scheduleOnNextTick(() => controller.abort())\n )\n } else {\n scheduleOnNextTick(() => controller.abort())\n }\n }\n\n return controller.signal\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n return undefined\n default:\n workUnitStore satisfies never\n }\n}\n\nexport function annotateDynamicAccess(\n expression: string,\n prerenderStore: PrerenderStoreModern\n) {\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function useDynamicRouteParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workStore && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-client':\n case 'prerender': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(\n workStore.route,\n expression,\n workUnitStore.dynamicTracking\n )\n }\n break\n }\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\nexport function useDynamicSearchParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n if (!workStore) {\n // We assume pages router context and just return\n return\n }\n\n if (!workUnitStore) {\n throwForMissingRequestStore(expression)\n }\n\n switch (workUnitStore.type) {\n case 'prerender-client': {\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n break\n }\n case 'prerender-legacy':\n case 'prerender-ppr': {\n if (workStore.forceStatic) {\n return\n }\n throw new BailoutToCSRError(expression)\n }\n case 'prerender':\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'request':\n return\n default:\n workUnitStore satisfies never\n }\n}\n\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(\\)/\n\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags =\n 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'\n\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense ()\n// at __next_root_layout_boundary__ ()\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense ()\n// at SomeComponent ()\n// at __next_root_layout_boundary__ ()\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(\n `\\\\n\\\\s+at Suspense \\\\(\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`\n)\n\nconst hasMetadataRegex = new RegExp(\n `\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasViewportRegex = new RegExp(\n `\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`)\n\nexport function trackAllowedDynamicAccess(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true\n return\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message =\n `Route \"${workStore.route}\": Uncached data was accessed outside of ` +\n '. This delays the entire page from rendering, resulting in a ' +\n 'slow user experience. Learn more: ' +\n 'https://nextjs.org/docs/messages/blocking-route'\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInRuntimeShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInStaticShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n */\nfunction createErrorWithComponentOrOwnerStack(\n message: string,\n componentStack: string\n) {\n const ownerStack =\n process.env.NODE_ENV !== 'production' && React.captureOwnerStack\n ? React.captureOwnerStack()\n : null\n\n const error = new Error(message)\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack = error.name + ': ' + message + (ownerStack || componentStack)\n return error\n}\n\nexport enum PreludeState {\n Full = 0,\n Empty = 1,\n Errored = 2,\n}\n\nexport function logDisallowedDynamicError(\n workStore: WorkStore,\n error: Error\n): void {\n console.error(error)\n\n if (!workStore.dev) {\n if (workStore.hasReadableErrorStacks) {\n console.error(\n `To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`\n )\n } else {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`)\n }\n }\n}\n\nexport function throwIfDisallowedDynamic(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n serverDynamic: DynamicTrackingState\n): void {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(\n workStore,\n serverDynamic.syncDynamicErrorWithStack\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude !== PreludeState.Full) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return\n }\n\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n for (let i = 0; i < dynamicErrors.length; i++) {\n logDisallowedDynamicError(workStore, dynamicErrors[i])\n }\n\n throw new StaticGenBailoutError()\n }\n\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`\n )\n throw new StaticGenBailoutError()\n }\n } else {\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.hasDynamicMetadata\n ) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n )\n throw new StaticGenBailoutError()\n }\n }\n}\n\nexport function getStaticShellDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState\n): Array {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return []\n }\n\n if (prelude !== PreludeState.Full) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicErrors.length === 0 &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n\nexport function delayUntilRuntimeStage(\n prerenderStore: PrerenderStoreModernRuntime,\n result: Promise\n): Promise {\n if (prerenderStore.runtimeStagePromise) {\n return prerenderStore.runtimeStagePromise.then(() => result)\n }\n return result\n}\n"],"names":["React","DynamicServerError","StaticGenBailoutError","getRuntimeStagePromise","throwForMissingRequestStore","workUnitAsyncStorage","workAsyncStorage","makeHangingPromise","METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","scheduleOnNextTick","BailoutToCSRError","InvariantError","hasPostpone","unstable_postpone","createDynamicTrackingState","isDebugDynamicAccesses","dynamicAccesses","syncDynamicErrorWithStack","createDynamicValidationState","hasSuspenseAboveBody","hasDynamicMetadata","dynamicMetadata","hasDynamicViewport","hasAllowedDynamic","dynamicErrors","getFirstDynamicReason","trackingState","expression","markCurrentScopeAsDynamic","store","workUnitStore","type","forceDynamic","forceStatic","dynamicShouldError","route","postponeWithTracking","dynamicTracking","revalidate","err","dynamicUsageDescription","dynamicUsageStack","stack","process","env","NODE_ENV","usedDynamic","throwToInterruptStaticGeneration","prerenderStore","trackDynamicDataInDynamicRender","abortOnSynchronousDynamicDataAccess","reason","error","createPrerenderInterruptedError","controller","abort","push","Error","undefined","abortOnSynchronousPlatformIOAccess","errorWithStack","abortAndThrowOnSynchronousRequestDataAccess","prerenderSignal","signal","aborted","Postpone","getStore","assertPostpone","createPostponeReason","isDynamicPostpone","message","isDynamicPostponeReason","includes","NEXT_PRERENDER_INTERRUPTED","digest","isPrerenderInterruptedError","accessedDynamicData","length","consumeDynamicAccess","serverDynamic","clientDynamic","formatDynamicAPIAccesses","filter","access","map","split","slice","line","join","createRenderInBrowserAbortSignal","AbortController","createHangingInputAbortSignal","cacheSignal","inputReady","then","runtimeStagePromise","annotateDynamicAccess","useDynamicRouteParams","workStore","fallbackParams","fallbackRouteParams","size","use","renderSignal","useDynamicSearchParams","hasSuspenseRegex","bodyAndImplicitTags","hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex","RegExp","hasMetadataRegex","hasViewportRegex","hasOutletRegex","trackAllowedDynamicAccess","componentStack","dynamicValidation","test","createErrorWithComponentOrOwnerStack","trackDynamicHoleInRuntimeShell","trackDynamicHoleInStaticShell","ownerStack","captureOwnerStack","name","PreludeState","logDisallowedDynamicError","console","dev","hasReadableErrorStacks","throwIfDisallowedDynamic","prelude","i","getStaticShellDisallowedDynamicReasons","delayUntilRuntimeStage","result"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1833, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unstable-rethrow.server.ts"],"sourcesContent":["import { isHangingPromiseRejectionError } from '../../server/dynamic-rendering-utils'\nimport { isPostpone } from '../../server/lib/router-utils/is-postpone'\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { isNextRouterError } from './is-next-router-error'\nimport {\n isDynamicPostpone,\n isPrerenderInterruptedError,\n} from '../../server/app-render/dynamic-rendering'\nimport { isDynamicServerError } from './hooks-server-context'\n\nexport function unstable_rethrow(error: unknown): void {\n if (\n isNextRouterError(error) ||\n isBailoutToCSRError(error) ||\n isDynamicServerError(error) ||\n isDynamicPostpone(error) ||\n isPostpone(error) ||\n isHangingPromiseRejectionError(error) ||\n isPrerenderInterruptedError(error)\n ) {\n throw error\n }\n\n if (error instanceof Error && 'cause' in error) {\n unstable_rethrow(error.cause)\n }\n}\n"],"names":["isHangingPromiseRejectionError","isPostpone","isBailoutToCSRError","isNextRouterError","isDynamicPostpone","isPrerenderInterruptedError","isDynamicServerError","unstable_rethrow","error","Error","cause"],"mappings":";;;;AAAA,SAASA,8BAA8B,QAAQ,uCAAsC;AACrF,SAASC,UAAU,QAAQ,4CAA2C;AACtE,SAASC,mBAAmB,QAAQ,+CAA8C;AAClF,SAASC,iBAAiB,QAAQ,yBAAwB;AAC1D,SACEC,iBAAiB,EACjBC,2BAA2B,QACtB,4CAA2C;AAClD,SAASC,oBAAoB,QAAQ,yBAAwB;;;;;;;AAEtD,SAASC,iBAAiBC,KAAc;IAC7C,QACEL,iNAAAA,EAAkBK,cAClBN,sNAAAA,EAAoBM,cACpBF,iNAAAA,EAAqBE,cACrBJ,2MAAAA,EAAkBI,cAClBP,uMAAAA,EAAWO,cACXR,gNAAAA,EAA+BQ,cAC/BH,qNAAAA,EAA4BG,QAC5B;QACA,MAAMA;IACR;IAEA,IAAIA,iBAAiBC,SAAS,WAAWD,OAAO;QAC9CD,iBAAiBC,MAAME,KAAK;IAC9B;AACF","ignoreList":[0]}}, - {"offset": {"line": 1861, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unstable-rethrow.ts"],"sourcesContent":["/**\n * This function should be used to rethrow internal Next.js errors so that they can be handled by the framework.\n * When wrapping an API that uses errors to interrupt control flow, you should use this function before you do any error handling.\n * This function will rethrow the error if it is a Next.js error so it can be handled, otherwise it will do nothing.\n *\n * Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow)\n */\nexport const unstable_rethrow =\n typeof window === 'undefined'\n ? (\n require('./unstable-rethrow.server') as typeof import('./unstable-rethrow.server')\n ).unstable_rethrow\n : (\n require('./unstable-rethrow.browser') as typeof import('./unstable-rethrow.browser')\n ).unstable_rethrow\n"],"names":["unstable_rethrow","window","require"],"mappings":"AAAA;;;;;;CAMC,GACD;;;;AAAO,MAAMA,mBACX,OAAOC,WAAW,qBAEZC,QAAQ,4HACRF,gBAAgB,GAEhBE,QAAQ,8BACRF,gBAAgB,CAAA","ignoreList":[0]}}, - {"offset": {"line": 1876, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation.react-server.ts"],"sourcesContent":["import { ReadonlyURLSearchParams } from './readonly-url-search-params'\n\nexport function unstable_isUnrecognizedActionError(): boolean {\n throw new Error(\n '`unstable_isUnrecognizedActionError` can only be used on the client.'\n )\n}\n\nexport { redirect, permanentRedirect } from './redirect'\nexport { RedirectType } from './redirect-error'\nexport { notFound } from './not-found'\nexport { forbidden } from './forbidden'\nexport { unauthorized } from './unauthorized'\nexport { unstable_rethrow } from './unstable-rethrow'\nexport { ReadonlyURLSearchParams }\n"],"names":["ReadonlyURLSearchParams","unstable_isUnrecognizedActionError","Error","redirect","permanentRedirect","RedirectType","notFound","forbidden","unauthorized","unstable_rethrow"],"mappings":";;;;AAAA,SAASA,uBAAuB,QAAQ,+BAA8B;AAQtE,SAASG,QAAQ,EAAEC,iBAAiB,QAAQ,aAAY;AACxD,SAASC,YAAY,QAAQ,mBAAkB;AAC/C,SAASC,QAAQ,QAAQ,cAAa;AACtC,SAASC,SAAS,QAAQ,cAAa;AACvC,SAASC,YAAY,QAAQ,iBAAgB;AAC7C,SAASC,gBAAgB,QAAQ,qBAAoB;;AAX9C,SAASR;IACd,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,yEADI,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF","ignoreList":[0]}}, - {"offset": {"line": 1907, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation.ts"],"sourcesContent":["import type { Params } from '../../server/request/params'\n\nimport React, { useContext, useMemo, use } from 'react'\nimport {\n AppRouterContext,\n LayoutRouterContext,\n type AppRouterInstance,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport {\n SearchParamsContext,\n PathnameContext,\n PathParamsContext,\n NavigationPromisesContext,\n ReadonlyURLSearchParams,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport {\n computeSelectedLayoutSegment,\n getSelectedLayoutSegmentPath,\n} from '../../shared/lib/segment'\n\nconst useDynamicRouteParams =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/dynamic-rendering') as typeof import('../../server/app-render/dynamic-rendering')\n ).useDynamicRouteParams\n : undefined\n\nconst useDynamicSearchParams =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/dynamic-rendering') as typeof import('../../server/app-render/dynamic-rendering')\n ).useDynamicSearchParams\n : undefined\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you *read* the current URL's search parameters.\n *\n * Learn more about [`URLSearchParams` on MDN](https://developer.mozilla.org/docs/Web/API/URLSearchParams)\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useSearchParams } from 'next/navigation'\n *\n * export default function Page() {\n * const searchParams = useSearchParams()\n * searchParams.get('foo') // returns 'bar' when ?foo=bar\n * // ...\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSearchParams`](https://nextjs.org/docs/app/api-reference/functions/use-search-params)\n */\n// Client components API\nexport function useSearchParams(): ReadonlyURLSearchParams {\n useDynamicSearchParams?.('useSearchParams()')\n\n const searchParams = useContext(SearchParamsContext)\n\n // In the case where this is `null`, the compat types added in\n // `next-env.d.ts` will add a new overload that changes the return type to\n // include `null`.\n const readonlySearchParams = useMemo((): ReadonlyURLSearchParams => {\n if (!searchParams) {\n // When the router is not ready in pages, we won't have the search params\n // available.\n return null!\n }\n\n return new ReadonlyURLSearchParams(searchParams)\n }, [searchParams])\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.searchParams)\n }\n }\n\n return readonlySearchParams\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the current URL's pathname.\n *\n * @example\n * ```ts\n * \"use client\"\n * import { usePathname } from 'next/navigation'\n *\n * export default function Page() {\n * const pathname = usePathname() // returns \"/dashboard\" on /dashboard?foo=bar\n * // ...\n * }\n * ```\n *\n * Read more: [Next.js Docs: `usePathname`](https://nextjs.org/docs/app/api-reference/functions/use-pathname)\n */\n// Client components API\nexport function usePathname(): string {\n useDynamicRouteParams?.('usePathname()')\n\n // In the case where this is `null`, the compat types added in `next-env.d.ts`\n // will add a new overload that changes the return type to include `null`.\n const pathname = useContext(PathnameContext) as string\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.pathname)\n }\n }\n\n return pathname\n}\n\n// Client components API\nexport {\n ServerInsertedHTMLContext,\n useServerInsertedHTML,\n} from '../../shared/lib/server-inserted-html.shared-runtime'\n\n/**\n *\n * This hook allows you to programmatically change routes inside [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components).\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useRouter } from 'next/navigation'\n *\n * export default function Page() {\n * const router = useRouter()\n * // ...\n * router.push('/dashboard') // Navigate to /dashboard\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useRouter`](https://nextjs.org/docs/app/api-reference/functions/use-router)\n */\n// Client components API\nexport function useRouter(): AppRouterInstance {\n const router = useContext(AppRouterContext)\n if (router === null) {\n throw new Error('invariant expected app router to be mounted')\n }\n\n return router\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read a route's dynamic params filled in by the current URL.\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useParams } from 'next/navigation'\n *\n * export default function Page() {\n * // on /dashboard/[team] where pathname is /dashboard/nextjs\n * const { team } = useParams() // team === \"nextjs\"\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useParams`](https://nextjs.org/docs/app/api-reference/functions/use-params)\n */\n// Client components API\nexport function useParams(): T {\n useDynamicRouteParams?.('useParams()')\n\n const params = useContext(PathParamsContext) as T\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.params) as T\n }\n }\n\n return params\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the active route segments **below** the Layout it is called from.\n *\n * @example\n * ```ts\n * 'use client'\n *\n * import { useSelectedLayoutSegments } from 'next/navigation'\n *\n * export default function ExampleClientComponent() {\n * const segments = useSelectedLayoutSegments()\n *\n * return (\n *

    \n * {segments.map((segment, index) => (\n *
  • {segment}
  • \n * ))}\n *
\n * )\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSelectedLayoutSegments`](https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segments)\n */\n// Client components API\nexport function useSelectedLayoutSegments(\n parallelRouteKey: string = 'children'\n): string[] {\n useDynamicRouteParams?.('useSelectedLayoutSegments()')\n\n const context = useContext(LayoutRouterContext)\n // @ts-expect-error This only happens in `pages`. Type is overwritten in navigation.d.ts\n if (!context) return null\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n const promise =\n navigationPromises.selectedLayoutSegmentsPromises?.get(parallelRouteKey)\n if (promise) {\n // We should always have a promise here, but if we don't, it's not worth erroring over.\n // We just won't be able to instrument it, but can still provide the value.\n return use(promise)\n }\n }\n }\n\n return getSelectedLayoutSegmentPath(context.parentTree, parallelRouteKey)\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the active route segment **one level below** the Layout it is called from.\n *\n * @example\n * ```ts\n * 'use client'\n * import { useSelectedLayoutSegment } from 'next/navigation'\n *\n * export default function ExampleClientComponent() {\n * const segment = useSelectedLayoutSegment()\n *\n * return

Active segment: {segment}

\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSelectedLayoutSegment`](https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segment)\n */\n// Client components API\nexport function useSelectedLayoutSegment(\n parallelRouteKey: string = 'children'\n): string | null {\n useDynamicRouteParams?.('useSelectedLayoutSegment()')\n const navigationPromises = useContext(NavigationPromisesContext)\n const selectedLayoutSegments = useSelectedLayoutSegments(parallelRouteKey)\n\n // Instrument with Suspense DevTools (dev-only)\n if (\n process.env.NODE_ENV !== 'production' &&\n navigationPromises &&\n 'use' in React\n ) {\n const promise =\n navigationPromises.selectedLayoutSegmentPromises?.get(parallelRouteKey)\n if (promise) {\n // We should always have a promise here, but if we don't, it's not worth erroring over.\n // We just won't be able to instrument it, but can still provide the value.\n return use(promise)\n }\n }\n\n return computeSelectedLayoutSegment(selectedLayoutSegments, parallelRouteKey)\n}\n\nexport { unstable_isUnrecognizedActionError } from './unrecognized-action-error'\n\n// Shared components APIs\nexport {\n // We need the same class that was used to instantiate the context value\n // Otherwise instanceof checks will fail in usercode\n ReadonlyURLSearchParams,\n}\nexport {\n notFound,\n forbidden,\n unauthorized,\n redirect,\n permanentRedirect,\n RedirectType,\n unstable_rethrow,\n} from './navigation.react-server'\n"],"names":["React","useContext","useMemo","use","AppRouterContext","LayoutRouterContext","SearchParamsContext","PathnameContext","PathParamsContext","NavigationPromisesContext","ReadonlyURLSearchParams","computeSelectedLayoutSegment","getSelectedLayoutSegmentPath","useDynamicRouteParams","window","require","undefined","useDynamicSearchParams","useSearchParams","searchParams","readonlySearchParams","process","env","NODE_ENV","navigationPromises","usePathname","pathname","ServerInsertedHTMLContext","useServerInsertedHTML","useRouter","router","Error","useParams","params","useSelectedLayoutSegments","parallelRouteKey","context","promise","selectedLayoutSegmentsPromises","get","parentTree","useSelectedLayoutSegment","selectedLayoutSegments","selectedLayoutSegmentPromises","unstable_isUnrecognizedActionError","notFound","forbidden","unauthorized","redirect","permanentRedirect","RedirectType","unstable_rethrow"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2039, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-boundary.tsx"],"sourcesContent":["'use client'\nimport React, { useEffect } from 'react'\nimport type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'\nimport { useRouter } from './navigation'\nimport { getRedirectTypeFromError, getURLFromRedirectError } from './redirect'\nimport { RedirectType, isRedirectError } from './redirect-error'\n\ninterface RedirectBoundaryProps {\n router: AppRouterInstance\n children: React.ReactNode\n}\n\nfunction HandleRedirect({\n redirect,\n reset,\n redirectType,\n}: {\n redirect: string\n redirectType: RedirectType\n reset: () => void\n}) {\n const router = useRouter()\n\n useEffect(() => {\n React.startTransition(() => {\n if (redirectType === RedirectType.push) {\n router.push(redirect, {})\n } else {\n router.replace(redirect, {})\n }\n reset()\n })\n }, [redirect, redirectType, reset, router])\n\n return null\n}\n\nexport class RedirectErrorBoundary extends React.Component<\n RedirectBoundaryProps,\n { redirect: string | null; redirectType: RedirectType | null }\n> {\n constructor(props: RedirectBoundaryProps) {\n super(props)\n this.state = { redirect: null, redirectType: null }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isRedirectError(error)) {\n const url = getURLFromRedirectError(error)\n const redirectType = getRedirectTypeFromError(error)\n if ('handled' in error) {\n // The redirect was already handled. We'll still catch the redirect error\n // so that we can remount the subtree, but we don't actually need to trigger the\n // router.push.\n return { redirect: null, redirectType: null }\n }\n\n return { redirect: url, redirectType }\n }\n // Re-throw if error is not for redirect\n throw error\n }\n\n // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version.\n render(): React.ReactNode {\n const { redirect, redirectType } = this.state\n if (redirect !== null && redirectType !== null) {\n return (\n this.setState({ redirect: null })}\n />\n )\n }\n\n return this.props.children\n }\n}\n\nexport function RedirectBoundary({ children }: { children: React.ReactNode }) {\n const router = useRouter()\n return (\n {children}\n )\n}\n"],"names":["React","useEffect","useRouter","getRedirectTypeFromError","getURLFromRedirectError","RedirectType","isRedirectError","HandleRedirect","redirect","reset","redirectType","router","startTransition","push","replace","RedirectErrorBoundary","Component","constructor","props","state","getDerivedStateFromError","error","url","render","setState","children","RedirectBoundary"],"mappings":";;;;;;;AACA,OAAOA,SAASC,SAAS,QAAQ,QAAO;AAExC,SAASC,SAAS,QAAQ,eAAc;AACxC,SAASC,wBAAwB,EAAEC,uBAAuB,QAAQ,aAAY;AAC9E,SAASC,YAAY,EAAEC,eAAe,QAAQ,mBAAkB;AALhE;;;;;;AAYA,SAASC,eAAe,EACtBC,QAAQ,EACRC,KAAK,EACLC,YAAY,EAKb;IACC,MAAMC,SAAST,0MAAAA;IAEfD,sNAAAA,EAAU;QACRD,gNAAAA,CAAMY,eAAe,CAAC;YACpB,IAAIF,iBAAiBL,gMAAAA,CAAaQ,IAAI,EAAE;gBACtCF,OAAOE,IAAI,CAACL,UAAU,CAAC;YACzB,OAAO;gBACLG,OAAOG,OAAO,CAACN,UAAU,CAAC;YAC5B;YACAC;QACF;IACF,GAAG;QAACD;QAAUE;QAAcD;QAAOE;KAAO;IAE1C,OAAO;AACT;AAEO,MAAMI,8BAA8Bf,gNAAAA,CAAMgB,SAAS;IAIxDC,YAAYC,KAA4B,CAAE;QACxC,KAAK,CAACA;QACN,IAAI,CAACC,KAAK,GAAG;YAAEX,UAAU;YAAME,cAAc;QAAK;IACpD;IAEA,OAAOU,yBAAyBC,KAAU,EAAE;QAC1C,QAAIf,mMAAAA,EAAgBe,QAAQ;YAC1B,MAAMC,UAAMlB,kMAAAA,EAAwBiB;YACpC,MAAMX,mBAAeP,mMAAAA,EAAyBkB;YAC9C,IAAI,aAAaA,OAAO;gBACtB,yEAAyE;gBACzE,gFAAgF;gBAChF,eAAe;gBACf,OAAO;oBAAEb,UAAU;oBAAME,cAAc;gBAAK;YAC9C;YAEA,OAAO;gBAAEF,UAAUc;gBAAKZ;YAAa;QACvC;QACA,wCAAwC;QACxC,MAAMW;IACR;IAEA,yIAAyI;IACzIE,SAA0B;QACxB,MAAM,EAAEf,QAAQ,EAAEE,YAAY,EAAE,GAAG,IAAI,CAACS,KAAK;QAC7C,IAAIX,aAAa,QAAQE,iBAAiB,MAAM;YAC9C,OAAA,WAAA,OACE,8NAAA,EAACH,gBAAAA;gBACCC,UAAUA;gBACVE,cAAcA;gBACdD,OAAO,IAAM,IAAI,CAACe,QAAQ,CAAC;wBAAEhB,UAAU;oBAAK;;QAGlD;QAEA,OAAO,IAAI,CAACU,KAAK,CAACO,QAAQ;IAC5B;AACF;AAEO,SAASC,iBAAiB,EAAED,QAAQ,EAAiC;IAC1E,MAAMd,aAAST,sMAAAA;IACf,OAAA,WAAA,OACE,8NAAA,EAACa,uBAAAA;QAAsBJ,QAAQA;kBAASc;;AAE5C","ignoreList":[0]}}, - {"offset": {"line": 2130, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/error-boundary.tsx"],"sourcesContent":["'use client'\n\n/**\n * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a\n * fallback component for HTTP errors.\n *\n * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors.\n *\n * e.g. 404\n * 404 represents not found, and the fallback component pair contains the component and its styles.\n *\n */\n\nimport React, { useContext } from 'react'\nimport { useUntrackedPathname } from '../navigation-untracked'\nimport {\n HTTPAccessErrorStatus,\n getAccessFallbackHTTPStatus,\n getAccessFallbackErrorTypeByStatus,\n isHTTPAccessFallbackError,\n} from './http-access-fallback'\nimport { warnOnce } from '../../../shared/lib/utils/warn-once'\nimport { MissingSlotContext } from '../../../shared/lib/app-router-context.shared-runtime'\n\ninterface HTTPAccessFallbackBoundaryProps {\n notFound?: React.ReactNode\n forbidden?: React.ReactNode\n unauthorized?: React.ReactNode\n // TODO: Make this required once `React.createElement` understands that positional args go into children\n children?: React.ReactNode\n missingSlots?: Set\n}\n\ninterface HTTPAccessFallbackErrorBoundaryProps\n extends HTTPAccessFallbackBoundaryProps {\n pathname: string | null\n missingSlots?: Set\n}\n\ninterface HTTPAccessBoundaryState {\n triggeredStatus: number | undefined\n previousPathname: string | null\n}\n\nclass HTTPAccessFallbackErrorBoundary extends React.Component<\n HTTPAccessFallbackErrorBoundaryProps,\n HTTPAccessBoundaryState\n> {\n constructor(props: HTTPAccessFallbackErrorBoundaryProps) {\n super(props)\n this.state = {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n\n componentDidCatch(): void {\n if (\n process.env.NODE_ENV === 'development' &&\n this.props.missingSlots &&\n this.props.missingSlots.size > 0 &&\n // A missing children slot is the typical not-found case, so no need to warn\n !this.props.missingSlots.has('children')\n ) {\n let warningMessage =\n 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\\n' +\n 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\\n\\n'\n\n const formattedSlots = Array.from(this.props.missingSlots)\n .sort((a, b) => a.localeCompare(b))\n .map((slot) => `@${slot}`)\n .join(', ')\n\n warningMessage += 'Missing slots: ' + formattedSlots\n\n warnOnce(warningMessage)\n }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isHTTPAccessFallbackError(error)) {\n const httpStatus = getAccessFallbackHTTPStatus(error)\n return {\n triggeredStatus: httpStatus,\n }\n }\n // Re-throw if error is not for 404\n throw error\n }\n\n static getDerivedStateFromProps(\n props: HTTPAccessFallbackErrorBoundaryProps,\n state: HTTPAccessBoundaryState\n ): HTTPAccessBoundaryState | null {\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.triggeredStatus) {\n return {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n return {\n triggeredStatus: state.triggeredStatus,\n previousPathname: props.pathname,\n }\n }\n\n render() {\n const { notFound, forbidden, unauthorized, children } = this.props\n const { triggeredStatus } = this.state\n const errorComponents = {\n [HTTPAccessErrorStatus.NOT_FOUND]: notFound,\n [HTTPAccessErrorStatus.FORBIDDEN]: forbidden,\n [HTTPAccessErrorStatus.UNAUTHORIZED]: unauthorized,\n }\n\n if (triggeredStatus) {\n const isNotFound =\n triggeredStatus === HTTPAccessErrorStatus.NOT_FOUND && notFound\n const isForbidden =\n triggeredStatus === HTTPAccessErrorStatus.FORBIDDEN && forbidden\n const isUnauthorized =\n triggeredStatus === HTTPAccessErrorStatus.UNAUTHORIZED && unauthorized\n\n // If there's no matched boundary in this layer, keep throwing the error by rendering the children\n if (!(isNotFound || isForbidden || isUnauthorized)) {\n return children\n }\n\n return (\n <>\n \n {process.env.NODE_ENV === 'development' && (\n \n )}\n {errorComponents[triggeredStatus]}\n \n )\n }\n\n return children\n }\n}\n\nexport function HTTPAccessFallbackBoundary({\n notFound,\n forbidden,\n unauthorized,\n children,\n}: HTTPAccessFallbackBoundaryProps) {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these error can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n const missingSlots = useContext(MissingSlotContext)\n const hasErrorFallback = !!(notFound || forbidden || unauthorized)\n\n if (hasErrorFallback) {\n return (\n \n {children}\n \n )\n }\n\n return <>{children}\n}\n"],"names":["React","useContext","useUntrackedPathname","HTTPAccessErrorStatus","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","isHTTPAccessFallbackError","warnOnce","MissingSlotContext","HTTPAccessFallbackErrorBoundary","Component","constructor","props","state","triggeredStatus","undefined","previousPathname","pathname","componentDidCatch","process","env","NODE_ENV","missingSlots","size","has","warningMessage","formattedSlots","Array","from","sort","a","b","localeCompare","map","slot","join","getDerivedStateFromError","error","httpStatus","getDerivedStateFromProps","render","notFound","forbidden","unauthorized","children","errorComponents","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","isNotFound","isForbidden","isUnauthorized","meta","name","content","HTTPAccessFallbackBoundary","hasErrorFallback"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2259, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/create-router-cache-key.ts"],"sourcesContent":["import type { Segment } from '../../../shared/lib/app-router-types'\nimport { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment'\n\nexport function createRouterCacheKey(\n segment: Segment,\n withoutSearchParameters: boolean = false\n) {\n // if the segment is an array, it means it's a dynamic segment\n // for example, ['lang', 'en', 'd']. We need to convert it to a string to store it as a cache node key.\n if (Array.isArray(segment)) {\n return `${segment[0]}|${segment[1]}|${segment[2]}`\n }\n\n // Page segments might have search parameters, ie __PAGE__?foo=bar\n // When `withoutSearchParameters` is true, we only want to return the page segment\n if (withoutSearchParameters && segment.startsWith(PAGE_SEGMENT_KEY)) {\n return PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n"],"names":["PAGE_SEGMENT_KEY","createRouterCacheKey","segment","withoutSearchParameters","Array","isArray","startsWith"],"mappings":";;;;AACA,SAASA,gBAAgB,QAAQ,8BAA6B;;AAEvD,SAASC,qBACdC,OAAgB,EAChBC,0BAAmC,KAAK;IAExC,8DAA8D;IAC9D,uGAAuG;IACvG,IAAIC,MAAMC,OAAO,CAACH,UAAU;QAC1B,OAAO,GAAGA,OAAO,CAAC,EAAE,CAAC,CAAC,EAAEA,OAAO,CAAC,EAAE,CAAC,CAAC,EAAEA,OAAO,CAAC,EAAE,EAAE;IACpD;IAEA,kEAAkE;IAClE,kFAAkF;IAClF,IAAIC,2BAA2BD,QAAQI,UAAU,CAACN,mLAAAA,GAAmB;QACnE,OAAOA,mLAAAA;IACT;IAEA,OAAOE;AACT","ignoreList":[0]}}, - {"offset": {"line": 2282, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/bfcache.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport { useState } from 'react'\n\n// When the flag is disabled, only track the currently active tree\nconst MAX_BF_CACHE_ENTRIES = process.env.__NEXT_CACHE_COMPONENTS ? 3 : 1\n\nexport type RouterBFCacheEntry = {\n tree: FlightRouterState\n stateKey: string\n // The entries form a linked list, sorted in order of most recently active.\n next: RouterBFCacheEntry | null\n}\n\n/**\n * Keeps track of the most recent N trees (FlightRouterStates) that were active\n * at a certain segment level. E.g. for a segment \"/a/b/[param]\", this hook\n * tracks the last N param values that the router rendered for N.\n *\n * The result of this hook precisely determines the number and order of\n * trees that are rendered in parallel at their segment level.\n *\n * The purpose of this cache is to we can preserve the React and DOM state of\n * some number of inactive trees, by rendering them in an boundary.\n * That means it would not make sense for the the lifetime of the cache to be\n * any longer than the lifetime of the React tree; e.g. if the hook were\n * unmounted, then the React tree would be, too. So, we use React state to\n * manage it.\n *\n * Note that we don't store the RSC data for the cache entries in this hook —\n * the data for inactive segments is stored in the parent CacheNode, which\n * *does* have a longer lifetime than the React tree. This hook only determines\n * which of those trees should have their *state* preserved, by .\n */\nexport function useRouterBFCache(\n activeTree: FlightRouterState,\n activeStateKey: string\n): RouterBFCacheEntry {\n // The currently active entry. The entries form a linked list, sorted in\n // order of most recently active. This allows us to reuse parts of the list\n // without cloning, unless there's a reordering or removal.\n // TODO: Once we start tracking back/forward history at each route level,\n // we should use the history order instead. In other words, when traversing\n // to an existing entry as a result of a popstate event, we should maintain\n // the existing order instead of moving it to the front of the list. I think\n // an initial implementation of this could be to pass an incrementing id\n // to history.pushState/replaceState, then use that here for ordering.\n const [prevActiveEntry, setPrevActiveEntry] = useState(\n () => {\n const initialEntry: RouterBFCacheEntry = {\n tree: activeTree,\n stateKey: activeStateKey,\n next: null,\n }\n return initialEntry\n }\n )\n\n if (prevActiveEntry.tree === activeTree) {\n // Fast path. The active tree hasn't changed, so we can reuse the\n // existing state.\n return prevActiveEntry\n }\n\n // The route tree changed. Note that this doesn't mean that the tree changed\n // *at this level* — the change may be due to a child route. Either way, we\n // need to either add or update the router tree in the bfcache.\n //\n // The rest of the code looks more complicated than it actually is because we\n // can't mutate the state in place; we have to copy-on-write.\n\n // Create a new entry for the active cache key. This is the head of the new\n // linked list.\n const newActiveEntry: RouterBFCacheEntry = {\n tree: activeTree,\n stateKey: activeStateKey,\n next: null,\n }\n\n // We need to append the old list onto the new list. If the head of the new\n // list was already present in the cache, then we'll need to clone everything\n // that came before it. Then we can reuse the rest.\n let n = 1\n let oldEntry: RouterBFCacheEntry | null = prevActiveEntry\n let clonedEntry: RouterBFCacheEntry = newActiveEntry\n while (oldEntry !== null && n < MAX_BF_CACHE_ENTRIES) {\n if (oldEntry.stateKey === activeStateKey) {\n // Fast path. This entry in the old list that corresponds to the key that\n // is now active. We've already placed a clone of this entry at the front\n // of the new list. We can reuse the rest of the old list without cloning.\n // NOTE: We don't need to worry about eviction in this case because we\n // haven't increased the size of the cache, and we assume the max size\n // is constant across renders. If we were to change it to a dynamic limit,\n // then the implementation would need to account for that.\n clonedEntry.next = oldEntry.next\n break\n } else {\n // Clone the entry and append it to the list.\n n++\n const entry: RouterBFCacheEntry = {\n tree: oldEntry.tree,\n stateKey: oldEntry.stateKey,\n next: null,\n }\n clonedEntry.next = entry\n clonedEntry = entry\n }\n oldEntry = oldEntry.next\n }\n\n setPrevActiveEntry(newActiveEntry)\n return newActiveEntry\n}\n"],"names":["useState","MAX_BF_CACHE_ENTRIES","process","env","__NEXT_CACHE_COMPONENTS","useRouterBFCache","activeTree","activeStateKey","prevActiveEntry","setPrevActiveEntry","initialEntry","tree","stateKey","next","newActiveEntry","n","oldEntry","clonedEntry","entry"],"mappings":";;;;AACA,SAASA,QAAQ,QAAQ,QAAO;;AAEhC,kEAAkE;AAClE,MAAMC,uBAAuBC,QAAQC,GAAG,CAACC,uBAAuB,GAAG,0BAAI;AA6BhE,SAASC,iBACdC,UAA6B,EAC7BC,cAAsB;IAEtB,wEAAwE;IACxE,2EAA2E;IAC3E,2DAA2D;IAC3D,yEAAyE;IACzE,2EAA2E;IAC3E,2EAA2E;IAC3E,4EAA4E;IAC5E,wEAAwE;IACxE,sEAAsE;IACtE,MAAM,CAACC,iBAAiBC,mBAAmB,OAAGT,iNAAAA,EAC5C;QACE,MAAMU,eAAmC;YACvCC,MAAML;YACNM,UAAUL;YACVM,MAAM;QACR;QACA,OAAOH;IACT;IAGF,IAAIF,gBAAgBG,IAAI,KAAKL,YAAY;QACvC,iEAAiE;QACjE,kBAAkB;QAClB,OAAOE;IACT;IAEA,4EAA4E;IAC5E,2EAA2E;IAC3E,+DAA+D;IAC/D,EAAE;IACF,6EAA6E;IAC7E,6DAA6D;IAE7D,2EAA2E;IAC3E,eAAe;IACf,MAAMM,iBAAqC;QACzCH,MAAML;QACNM,UAAUL;QACVM,MAAM;IACR;IAEA,2EAA2E;IAC3E,6EAA6E;IAC7E,mDAAmD;IACnD,IAAIE,IAAI;IACR,IAAIC,WAAsCR;IAC1C,IAAIS,cAAkCH;IACtC,MAAOE,aAAa,QAAQD,IAAId,qBAAsB;QACpD,IAAIe,SAASJ,QAAQ,KAAKL,gBAAgB;YACxC,yEAAyE;YACzE,yEAAyE;YACzE,0EAA0E;YAC1E,sEAAsE;YACtE,sEAAsE;YACtE,0EAA0E;YAC1E,0DAA0D;YAC1DU,YAAYJ,IAAI,GAAGG,SAASH,IAAI;YAChC;QACF,OAAO;YACL,6CAA6C;YAC7CE;YACA,MAAMG,QAA4B;gBAChCP,MAAMK,SAASL,IAAI;gBACnBC,UAAUI,SAASJ,QAAQ;gBAC3BC,MAAM;YACR;YACAI,YAAYJ,IAAI,GAAGK;YACnBD,cAAcC;QAChB;QACAF,WAAWA,SAASH,IAAI;IAC1B;IAEAJ,mBAAmBK;IACnB,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 2363, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n"],"names":["ensureLeadingSlash","path","startsWith"],"mappings":"AAAA;;;CAGC,GACD;;;;AAAO,SAASA,mBAAmBC,IAAY;IAC7C,OAAOA,KAAKC,UAAU,CAAC,OAAOD,OAAO,CAAC,CAAC,EAAEA,MAAM;AACjD","ignoreList":[0]}}, - {"offset": {"line": 2377, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/app-paths.ts"],"sourcesContent":["import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n"],"names":["ensureLeadingSlash","isGroupSegment","normalizeAppPath","route","split","reduce","pathname","segment","index","segments","length","normalizeRscURL","url","replace"],"mappings":";;;;;;AAAA,SAASA,kBAAkB,QAAQ,uCAAsC;AACzE,SAASC,cAAc,QAAQ,gBAAe;;;AAqBvC,SAASC,iBAAiBC,KAAa;IAC5C,WAAOH,wNAAAA,EACLG,MAAMC,KAAK,CAAC,KAAKC,MAAM,CAAC,CAACC,UAAUC,SAASC,OAAOC;QACjD,8BAA8B;QAC9B,IAAI,CAACF,SAAS;YACZ,OAAOD;QACT;QAEA,sBAAsB;QACtB,QAAIL,iLAAAA,EAAeM,UAAU;YAC3B,OAAOD;QACT;QAEA,iCAAiC;QACjC,IAAIC,OAAO,CAAC,EAAE,KAAK,KAAK;YACtB,OAAOD;QACT;QAEA,uDAAuD;QACvD,IACGC,CAAAA,YAAY,UAAUA,YAAY,OAAM,KACzCC,UAAUC,SAASC,MAAM,GAAG,GAC5B;YACA,OAAOJ;QACT;QAEA,OAAO,GAAGA,SAAS,CAAC,EAAEC,SAAS;IACjC,GAAG;AAEP;AAMO,SAASI,gBAAgBC,GAAW;IACzC,OAAOA,IAAIC,OAAO,CAChB,eACA,AACA,8BAD8B;AAGlC","ignoreList":[0]}}, - {"offset": {"line": 2415, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment-cache/segment-value-encoding.ts"],"sourcesContent":["import { PAGE_SEGMENT_KEY } from '../segment'\nimport type { Segment as FlightRouterStateSegment } from '../app-router-types'\n\n// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque = T & { __brand: K }\n\nexport type SegmentRequestKeyPart = Opaque<'SegmentRequestKeyPart', string>\nexport type SegmentRequestKey = Opaque<'SegmentRequestKey', string>\n\nexport const ROOT_SEGMENT_REQUEST_KEY = '' as SegmentRequestKey\n\nexport const HEAD_REQUEST_KEY = '/_head' as SegmentRequestKey\n\nexport function createSegmentRequestKeyPart(\n segment: FlightRouterStateSegment\n): SegmentRequestKeyPart {\n if (typeof segment === 'string') {\n if (segment.startsWith(PAGE_SEGMENT_KEY)) {\n // The Flight Router State type sometimes includes the search params in\n // the page segment. However, the Segment Cache tracks this as a separate\n // key. So, we strip the search params here, and then add them back when\n // the cache entry is turned back into a FlightRouterState. This is an\n // unfortunate consequence of the FlightRouteState being used both as a\n // transport type and as a cache key; we'll address this once more of the\n // Segment Cache implementation has settled.\n // TODO: We should hoist the search params out of the FlightRouterState\n // type entirely, This is our plan for dynamic route params, too.\n return PAGE_SEGMENT_KEY as SegmentRequestKeyPart\n }\n const safeName =\n // TODO: FlightRouterState encodes Not Found routes as \"/_not-found\".\n // But params typically don't include the leading slash. We should use\n // a different encoding to avoid this special case.\n segment === '/_not-found'\n ? '_not-found'\n : encodeToFilesystemAndURLSafeString(segment)\n // Since this is not a dynamic segment, it's fully encoded. It does not\n // need to be \"hydrated\" with a param value.\n return safeName as SegmentRequestKeyPart\n }\n\n const name = segment[0]\n const paramType = segment[2]\n const safeName = encodeToFilesystemAndURLSafeString(name)\n\n const encodedName = '$' + paramType + '$' + safeName\n return encodedName as SegmentRequestKeyPart\n}\n\nexport function appendSegmentRequestKeyPart(\n parentRequestKey: SegmentRequestKey,\n parallelRouteKey: string,\n childRequestKeyPart: SegmentRequestKeyPart\n): SegmentRequestKey {\n // Aside from being filesystem safe, segment keys are also designed so that\n // each segment and parallel route creates its own subdirectory. Roughly in\n // the same shape as the source app directory. This is mostly just for easier\n // debugging (you can open up the build folder and navigate the output); if\n // we wanted to do we could just use a flat structure.\n\n // Omit the parallel route key for children, since this is the most\n // common case. Saves some bytes (and it's what the app directory does).\n const slotKey =\n parallelRouteKey === 'children'\n ? childRequestKeyPart\n : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`\n return (parentRequestKey + '/' + slotKey) as SegmentRequestKey\n}\n\n// Define a regex pattern to match the most common characters found in a route\n// param. It excludes anything that might not be cross-platform filesystem\n// compatible, like |. It does not need to be precise because the fallback is to\n// just base64url-encode the whole parameter, which is fine; we just don't do it\n// by default for compactness, and for easier debugging.\nconst simpleParamValueRegex = /^[a-zA-Z0-9\\-_@]+$/\n\nfunction encodeToFilesystemAndURLSafeString(value: string) {\n if (simpleParamValueRegex.test(value)) {\n return value\n }\n // If there are any unsafe characters, base64url-encode the entire value.\n // We also add a ! prefix so it doesn't collide with the simple case.\n const base64url = btoa(value)\n .replace(/\\+/g, '-') // Replace '+' with '-'\n .replace(/\\//g, '_') // Replace '/' with '_'\n .replace(/=+$/, '') // Remove trailing '='\n return '!' + base64url\n}\n\nexport function convertSegmentPathToStaticExportFilename(\n segmentPath: string\n): string {\n return `__next${segmentPath.replace(/\\//g, '.')}.txt`\n}\n"],"names":["PAGE_SEGMENT_KEY","ROOT_SEGMENT_REQUEST_KEY","HEAD_REQUEST_KEY","createSegmentRequestKeyPart","segment","startsWith","safeName","encodeToFilesystemAndURLSafeString","name","paramType","encodedName","appendSegmentRequestKeyPart","parentRequestKey","parallelRouteKey","childRequestKeyPart","slotKey","simpleParamValueRegex","value","test","base64url","btoa","replace","convertSegmentPathToStaticExportFilename","segmentPath"],"mappings":";;;;;;;;;;;;AAAA,SAASA,gBAAgB,QAAQ,aAAY;;AAStC,MAAMC,2BAA2B,GAAuB;AAExD,MAAMC,mBAAmB,SAA6B;AAEtD,SAASC,4BACdC,OAAiC;IAEjC,IAAI,OAAOA,YAAY,UAAU;QAC/B,IAAIA,QAAQC,UAAU,CAACL,mLAAAA,GAAmB;YACxC,uEAAuE;YACvE,yEAAyE;YACzE,wEAAwE;YACxE,sEAAsE;YACtE,uEAAuE;YACvE,yEAAyE;YACzE,4CAA4C;YAC5C,uEAAuE;YACvE,iEAAiE;YACjE,OAAOA,mLAAAA;QACT;QACA,MAAMM,WACJ,AACA,qEADqE,CACC;QACtE,mDAAmD;QACnDF,YAAY,gBACR,eACAG,mCAAmCH;QACzC,uEAAuE;QACvE,4CAA4C;QAC5C,OAAOE;IACT;IAEA,MAAME,OAAOJ,OAAO,CAAC,EAAE;IACvB,MAAMK,YAAYL,OAAO,CAAC,EAAE;IAC5B,MAAME,WAAWC,mCAAmCC;IAEpD,MAAME,cAAc,MAAMD,YAAY,MAAMH;IAC5C,OAAOI;AACT;AAEO,SAASC,4BACdC,gBAAmC,EACnCC,gBAAwB,EACxBC,mBAA0C;IAE1C,2EAA2E;IAC3E,2EAA2E;IAC3E,6EAA6E;IAC7E,2EAA2E;IAC3E,sDAAsD;IAEtD,mEAAmE;IACnE,wEAAwE;IACxE,MAAMC,UACJF,qBAAqB,aACjBC,sBACA,CAAC,CAAC,EAAEP,mCAAmCM,kBAAkB,CAAC,EAAEC,qBAAqB;IACvF,OAAQF,mBAAmB,MAAMG;AACnC;AAEA,8EAA8E;AAC9E,0EAA0E;AAC1E,gFAAgF;AAChF,gFAAgF;AAChF,wDAAwD;AACxD,MAAMC,wBAAwB;AAE9B,SAAST,mCAAmCU,KAAa;IACvD,IAAID,sBAAsBE,IAAI,CAACD,QAAQ;QACrC,OAAOA;IACT;IACA,yEAAyE;IACzE,qEAAqE;IACrE,MAAME,YAAYC,KAAKH,OACpBI,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,IAAI,sBAAsB;;IAC5C,OAAO,MAAMF;AACf;AAEO,SAASG,yCACdC,WAAmB;IAEnB,OAAO,CAAC,MAAM,EAAEA,YAAYF,OAAO,CAAC,OAAO,KAAK,IAAI,CAAC;AACvD","ignoreList":[0]}}, - {"offset": {"line": 2494, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-headers.ts"],"sourcesContent":["export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n"],"names":["RSC_HEADER","ACTION_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_HMR_REFRESH_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_URL","RSC_CONTENT_TYPE_HEADER","FLIGHT_HEADERS","NEXT_RSC_UNION_QUERY","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_ACTION_REVALIDATED_HEADER"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAO,MAAMA,aAAa,MAAc;AACjC,MAAMC,gBAAgB,cAAsB;AAI5C,MAAMC,gCAAgC,yBAAiC;AACvE,MAAMC,8BAA8B,uBAA+B;AAKnE,MAAMC,sCACX,+BAAuC;AAClC,MAAMC,0BAA0B,mBAA2B;AAC3D,MAAMC,+BAA+B,4BAAoC;AACzE,MAAMC,WAAW,WAAmB;AACpC,MAAMC,0BAA0B,mBAA2B;AAE3D,MAAMC,iBAAiB;IAC5BT;IACAE;IACAC;IACAE;IACAD;CACD,CAAS;AAEH,MAAMM,uBAAuB,OAAe;AAE5C,MAAMC,gCAAgC,sBAA8B;AACpE,MAAMC,2BAA2B,qBAA6B;AAC9D,MAAMC,6BAA6B,0BAAkC;AACrE,MAAMC,8BAA8B,2BAAmC;AACvE,MAAMC,2BAA2B,qBAA6B;AAC9D,MAAMC,+BAA+B,4BAAoC;AACzE,MAAMC,yBAAyB,sBAA8B;AAC7D,MAAMC,8BAA8B,2BAAmC;AAGvE,MAAMC,iCAAiC,uBAA+B","ignoreList":[0]}}, - {"offset": {"line": 2566, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/route-params.ts"],"sourcesContent":["import type { DynamicParamTypesShort } from '../shared/lib/app-router-types'\nimport {\n addSearchParamsIfPageSegment,\n DEFAULT_SEGMENT_KEY,\n PAGE_SEGMENT_KEY,\n} from '../shared/lib/segment'\nimport { ROOT_SEGMENT_REQUEST_KEY } from '../shared/lib/segment-cache/segment-value-encoding'\nimport {\n NEXT_REWRITTEN_PATH_HEADER,\n NEXT_REWRITTEN_QUERY_HEADER,\n NEXT_RSC_UNION_QUERY,\n} from './components/app-router-headers'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n} from './components/segment-cache/cache-key'\nimport type { RSCResponse } from './components/router-reducer/fetch-server-response'\nimport type { ParsedUrlQuery } from 'querystring'\n\nexport type RouteParamValue = string | Array | null\n\nexport function getRenderedSearch(\n response: RSCResponse | Response\n): NormalizedSearch {\n // If the server performed a rewrite, the search params used to render the\n // page will be different from the params in the request URL. In this case,\n // the response will include a header that gives the rewritten search query.\n const rewrittenQuery = response.headers.get(NEXT_REWRITTEN_QUERY_HEADER)\n if (rewrittenQuery !== null) {\n return (\n rewrittenQuery === '' ? '' : '?' + rewrittenQuery\n ) as NormalizedSearch\n }\n // If the header is not present, there was no rewrite, so we use the search\n // query of the response URL.\n return urlToUrlWithoutFlightMarker(new URL(response.url))\n .search as NormalizedSearch\n}\n\nexport function getRenderedPathname(\n response: RSCResponse | Response\n): NormalizedPathname {\n // If the server performed a rewrite, the pathname used to render the\n // page will be different from the pathname in the request URL. In this case,\n // the response will include a header that gives the rewritten pathname.\n const rewrittenPath = response.headers.get(NEXT_REWRITTEN_PATH_HEADER)\n return (rewrittenPath ??\n urlToUrlWithoutFlightMarker(new URL(response.url))\n .pathname) as NormalizedPathname\n}\n\nexport function parseDynamicParamFromURLPart(\n paramType: DynamicParamTypesShort,\n pathnameParts: Array,\n partIndex: number\n): RouteParamValue {\n // This needs to match the behavior in get-dynamic-param.ts.\n switch (paramType) {\n // Catchalls\n case 'c': {\n // Catchalls receive all the remaining URL parts. If there are no\n // remaining pathname parts, return an empty array.\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s) => encodeURIComponent(s))\n : []\n }\n // Catchall intercepted\n case 'ci(..)(..)':\n case 'ci(.)':\n case 'ci(..)':\n case 'ci(...)': {\n const prefix = paramType.length - 2\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s, i) => {\n if (i === 0) {\n return encodeURIComponent(s.slice(prefix))\n }\n\n return encodeURIComponent(s)\n })\n : []\n }\n // Optional catchalls\n case 'oc': {\n // Optional catchalls receive all the remaining URL parts, unless this is\n // the end of the pathname, in which case they return null.\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s) => encodeURIComponent(s))\n : null\n }\n // Dynamic\n case 'd': {\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return ''\n }\n return encodeURIComponent(pathnameParts[partIndex])\n }\n // Dynamic intercepted\n case 'di(..)(..)':\n case 'di(.)':\n case 'di(..)':\n case 'di(...)': {\n const prefix = paramType.length - 2\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return ''\n }\n\n return encodeURIComponent(pathnameParts[partIndex].slice(prefix))\n }\n default:\n paramType satisfies never\n return ''\n }\n}\n\nexport function doesStaticSegmentAppearInURL(segment: string): boolean {\n // This is not a parameterized segment; however, we need to determine\n // whether or not this segment appears in the URL. For example, this route\n // groups do not appear in the URL, so they should be skipped. Any other\n // special cases must be handled here.\n // TODO: Consider encoding this directly into the router tree instead of\n // inferring it on the client based on the segment type. Something like\n // a `doesAppearInURL` flag in FlightRouterState.\n if (\n segment === ROOT_SEGMENT_REQUEST_KEY ||\n // For some reason, the loader tree sometimes includes extra __PAGE__\n // \"layouts\" when part of a parallel route. But it's not a leaf node.\n // Otherwise, we wouldn't need this special case because pages are\n // always leaf nodes.\n // TODO: Investigate why the loader produces these fake page segments.\n segment.startsWith(PAGE_SEGMENT_KEY) ||\n // Route groups.\n (segment[0] === '(' && segment.endsWith(')')) ||\n segment === DEFAULT_SEGMENT_KEY ||\n segment === '/_not-found'\n ) {\n return false\n } else {\n // All other segment types appear in the URL\n return true\n }\n}\n\nexport function getCacheKeyForDynamicParam(\n paramValue: RouteParamValue,\n renderedSearch: NormalizedSearch\n): string {\n // This needs to match the logic in get-dynamic-param.ts, until we're able to\n // unify the various implementations so that these are always computed on\n // the client.\n if (typeof paramValue === 'string') {\n // TODO: Refactor or remove this helper function to accept a string rather\n // than the whole segment type. Also we can probably just append the\n // search string instead of turning it into JSON.\n const pageSegmentWithSearchParams = addSearchParamsIfPageSegment(\n paramValue,\n Object.fromEntries(new URLSearchParams(renderedSearch))\n ) as string\n return pageSegmentWithSearchParams\n } else if (paramValue === null) {\n return ''\n } else {\n return paramValue.join('/')\n }\n}\n\nexport function urlToUrlWithoutFlightMarker(url: URL): URL {\n const urlWithoutFlightParameters = new URL(url)\n urlWithoutFlightParameters.searchParams.delete(NEXT_RSC_UNION_QUERY)\n if (process.env.NODE_ENV === 'production') {\n if (\n process.env.__NEXT_CONFIG_OUTPUT === 'export' &&\n urlWithoutFlightParameters.pathname.endsWith('.txt')\n ) {\n const { pathname } = urlWithoutFlightParameters\n const length = pathname.endsWith('/index.txt') ? 10 : 4\n // Slice off `/index.txt` or `.txt` from the end of the pathname\n urlWithoutFlightParameters.pathname = pathname.slice(0, -length)\n }\n }\n return urlWithoutFlightParameters\n}\n\nexport function getParamValueFromCacheKey(\n paramCacheKey: string,\n paramType: DynamicParamTypesShort\n) {\n // Turn the cache key string sent by the server (as part of FlightRouterState)\n // into a value that can be passed to `useParams` and client components.\n const isCatchAll = paramType === 'c' || paramType === 'oc'\n if (isCatchAll) {\n // Catch-all param keys are a concatenation of the path segments.\n // See equivalent logic in `getSelectedParams`.\n // TODO: We should just pass the array directly, rather than concatenate\n // it to a string and then split it back to an array. It needs to be an\n // array in some places, like when passing a key React, but we can convert\n // it at runtime in those places.\n return paramCacheKey.split('/')\n }\n return paramCacheKey\n}\n\nexport function urlSearchParamsToParsedUrlQuery(\n searchParams: URLSearchParams\n): ParsedUrlQuery {\n // Converts a URLSearchParams object to the same type used by the server when\n // creating search params props, i.e. the type returned by Node's\n // \"querystring\" module.\n const result: ParsedUrlQuery = {}\n for (const [key, value] of searchParams.entries()) {\n if (result[key] === undefined) {\n result[key] = value\n } else if (Array.isArray(result[key])) {\n result[key].push(value)\n } else {\n result[key] = [result[key], value]\n }\n }\n return result\n}\n"],"names":["addSearchParamsIfPageSegment","DEFAULT_SEGMENT_KEY","PAGE_SEGMENT_KEY","ROOT_SEGMENT_REQUEST_KEY","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_RSC_UNION_QUERY","getRenderedSearch","response","rewrittenQuery","headers","get","urlToUrlWithoutFlightMarker","URL","url","search","getRenderedPathname","rewrittenPath","pathname","parseDynamicParamFromURLPart","paramType","pathnameParts","partIndex","length","slice","map","s","encodeURIComponent","prefix","i","doesStaticSegmentAppearInURL","segment","startsWith","endsWith","getCacheKeyForDynamicParam","paramValue","renderedSearch","pageSegmentWithSearchParams","Object","fromEntries","URLSearchParams","join","urlWithoutFlightParameters","searchParams","delete","process","env","NODE_ENV","__NEXT_CONFIG_OUTPUT","getParamValueFromCacheKey","paramCacheKey","isCatchAll","split","urlSearchParamsToParsedUrlQuery","result","key","value","entries","undefined","Array","isArray","push"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2761, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-server-dom-turbopack-client.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactServerDOMTurbopackClient\n"],"names":["module","exports","require","vendored","ReactServerDOMTurbopackClient"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,6BAA6B","ignoreList":[0]}}, - {"offset": {"line": 2766, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/router-reducer-types.ts"],"sourcesContent":["import type { CacheNode } from '../../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type { NavigationSeed } from '../segment-cache/navigation'\nimport type { FetchServerResponseResult } from './fetch-server-response'\n\nexport const ACTION_REFRESH = 'refresh'\nexport const ACTION_NAVIGATE = 'navigate'\nexport const ACTION_RESTORE = 'restore'\nexport const ACTION_SERVER_PATCH = 'server-patch'\nexport const ACTION_HMR_REFRESH = 'hmr-refresh'\nexport const ACTION_SERVER_ACTION = 'server-action'\n\nexport type RouterChangeByServerResponse = ({\n navigatedAt,\n previousTree,\n serverResponse,\n}: {\n navigatedAt: number\n previousTree: FlightRouterState\n serverResponse: FetchServerResponseResult\n}) => void\n\nexport interface Mutable {\n mpaNavigation?: boolean\n patchedTree?: FlightRouterState\n renderedSearch?: string\n canonicalUrl?: string\n scrollableSegments?: FlightSegmentPath[]\n pendingPush?: boolean\n cache?: CacheNode\n hashFragment?: string\n shouldScroll?: boolean\n preserveCustomHistoryState?: boolean\n onlyHashChange?: boolean\n collectedDebugInfo?: Array\n}\n\nexport interface ServerActionMutable extends Mutable {\n inFlightServerAction?: Promise | null\n}\n\n/**\n * Refresh triggers a refresh of the full page data.\n * - fetches the Flight data and fills rsc at the root of the cache.\n * - The router state is updated at the root.\n */\nexport interface RefreshAction {\n type: typeof ACTION_REFRESH\n}\n\nexport interface HmrRefreshAction {\n type: typeof ACTION_HMR_REFRESH\n}\n\nexport type ServerActionDispatcher = (\n args: Omit<\n ServerActionAction,\n 'type' | 'mutable' | 'navigate' | 'changeByServerResponse' | 'cache'\n >\n) => void\n\nexport interface ServerActionAction {\n type: typeof ACTION_SERVER_ACTION\n actionId: string\n actionArgs: any[]\n resolve: (value: any) => void\n reject: (reason?: any) => void\n didRevalidate?: boolean\n}\n\n/**\n * Navigate triggers a navigation to the provided url. It supports two types: `push` and `replace`.\n *\n * `navigateType`:\n * - `push` - pushes a new history entry in the browser history\n * - `replace` - replaces the current history entry in the browser history\n *\n * Navigate has multiple cache heuristics:\n * - page was prefetched\n * - Apply router state tree from prefetch\n * - Apply Flight data from prefetch to the cache\n * - If Flight data is a string, it's a redirect and the state is updated to trigger a redirect\n * - Check if hard navigation is needed\n * - Hard navigation happens when a dynamic parameter below the common layout changed\n * - When hard navigation is needed the cache is invalidated below the flightSegmentPath\n * - The missing cache nodes of the page will be fetched in layout-router and trigger the SERVER_PATCH action\n * - If hard navigation is not needed\n * - The cache is reused\n * - If any cache nodes are missing they'll be fetched in layout-router and trigger the SERVER_PATCH action\n * - page was not prefetched\n * - The navigate was called from `next/router` (`router.push()` / `router.replace()`) / `next/link` without prefetched data available (e.g. the prefetch didn't come back from the server before clicking the link)\n * - Flight data is fetched in the reducer (suspends the reducer)\n * - Router state tree is created based on Flight data\n * - Cache is filled based on the Flight data\n *\n * Above steps explain 3 cases:\n * - `soft` - Reuses the existing cache and fetches missing nodes in layout-router.\n * - `hard` - Creates a new cache where cache nodes are removed below the common layout and fetches missing nodes in layout-router.\n * - `optimistic` (explicit no prefetch) - Creates a new cache and kicks off the data fetch in the reducer. The data fetch is awaited in the layout-router.\n */\nexport interface NavigateAction {\n type: typeof ACTION_NAVIGATE\n url: URL\n isExternalUrl: boolean\n locationSearch: Location['search']\n navigateType: 'push' | 'replace'\n shouldScroll: boolean\n}\n\n/**\n * Restore applies the provided router state.\n * - Used for `popstate` (back/forward navigation) where a known router state has to be applied.\n * - Also used when syncing the router state with `pushState`/`replaceState` calls.\n * - Router state is applied as-is from the history state, if available.\n * - If the history state does not contain the router state, the existing router state is used.\n * - If any cache node is missing it will be fetched in layout-router during rendering and the server-patch case.\n * - If existing cache nodes match these are used.\n */\nexport interface RestoreAction {\n type: typeof ACTION_RESTORE\n url: URL\n historyState: AppHistoryState | undefined\n}\n\nexport type AppHistoryState = {\n tree: FlightRouterState\n renderedSearch: string\n}\n\n/**\n * Server-patch applies the provided Flight data to the cache and router tree.\n */\nexport interface ServerPatchAction {\n type: typeof ACTION_SERVER_PATCH\n previousTree: FlightRouterState\n url: URL\n nextUrl: string | null\n seed: NavigationSeed | null\n mpa: boolean\n}\n\n/**\n * PrefetchKind defines the type of prefetching that should be done.\n * - `auto` - if the page is dynamic, prefetch the page data partially, if static prefetch the page data fully.\n * - `full` - prefetch the page data fully.\n */\n\nexport enum PrefetchKind {\n AUTO = 'auto',\n FULL = 'full',\n}\n\n/**\n * Prefetch adds the provided FlightData to the prefetch cache\n * - Creates the router state tree based on the patch in FlightData\n * - Adds the FlightData to the prefetch cache\n * - In ACTION_NAVIGATE the prefetch cache is checked and the router state tree and FlightData are applied.\n */\n\nexport interface PushRef {\n /**\n * If the app-router should push a new history entry in app-router's useEffect()\n */\n pendingPush: boolean\n /**\n * Multi-page navigation through location.href.\n */\n mpaNavigation: boolean\n /**\n * Skip applying the router state to the browser history state.\n */\n preserveCustomHistoryState: boolean\n}\n\nexport type FocusAndScrollRef = {\n /**\n * If focus and scroll should be set in the layout-router's useEffect()\n */\n apply: boolean\n /**\n * The hash fragment that should be scrolled to.\n */\n hashFragment: string | null\n /**\n * The paths of the segments that should be focused.\n */\n segmentPaths: FlightSegmentPath[]\n /**\n * If only the URLs hash fragment changed\n */\n onlyHashChange: boolean\n}\n\n/**\n * Handles keeping the state of app-router.\n */\nexport type AppRouterState = {\n /**\n * The router state, this is written into the history state in app-router using replaceState/pushState.\n * - Has to be serializable as it is written into the history state.\n * - Holds which segments and parallel routes are shown on the screen.\n */\n tree: FlightRouterState\n /**\n * The cache holds React nodes for every segment that is shown on screen as well as previously shown segments.\n * It also holds in-progress data requests.\n */\n cache: CacheNode\n /**\n * Decides if the update should create a new history entry and if the navigation has to trigger a browser navigation.\n */\n pushRef: PushRef\n /**\n * Decides if the update should apply scroll and focus management.\n */\n focusAndScrollRef: FocusAndScrollRef\n /**\n * The canonical url that is pushed/replaced.\n * - This is the url you see in the browser.\n */\n canonicalUrl: string\n renderedSearch: string\n /**\n * The underlying \"url\" representing the UI state, which is used for intercepting routes.\n */\n nextUrl: string | null\n\n /**\n * The previous next-url that was used previous to a dynamic navigation.\n */\n previousNextUrl: string | null\n\n debugInfo: Array | null\n}\n\nexport type ReadonlyReducerState = Readonly\nexport type ReducerState =\n | (Promise & { _debugInfo?: Array })\n | AppRouterState\nexport type ReducerActions = Readonly<\n | RefreshAction\n | NavigateAction\n | RestoreAction\n | ServerPatchAction\n | HmrRefreshAction\n | ServerActionAction\n>\n"],"names":["ACTION_REFRESH","ACTION_NAVIGATE","ACTION_RESTORE","ACTION_SERVER_PATCH","ACTION_HMR_REFRESH","ACTION_SERVER_ACTION","PrefetchKind"],"mappings":";;;;;;;;;;;;;;;;AAQO,MAAMA,iBAAiB,UAAS;AAChC,MAAMC,kBAAkB,WAAU;AAClC,MAAMC,iBAAiB,UAAS;AAChC,MAAMC,sBAAsB,eAAc;AAC1C,MAAMC,qBAAqB,cAAa;AACxC,MAAMC,uBAAuB,gBAAe;AAyI5C,IAAKC,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;WAAAA;MAGX","ignoreList":[0]}}, - {"offset": {"line": 2797, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/is-thenable.ts"],"sourcesContent":["/**\n * Check to see if a value is Thenable.\n *\n * @param promise the maybe-thenable value\n * @returns true if the value is thenable\n */\nexport function isThenable(\n promise: Promise | T\n): promise is Promise {\n return (\n promise !== null &&\n typeof promise === 'object' &&\n 'then' in promise &&\n typeof promise.then === 'function'\n )\n}\n"],"names":["isThenable","promise","then"],"mappings":"AAAA;;;;;CAKC,GACD;;;;AAAO,SAASA,WACdC,OAAuB;IAEvB,OACEA,YAAY,QACZ,OAAOA,YAAY,YACnB,UAAUA,WACV,OAAOA,QAAQC,IAAI,KAAK;AAE5B","ignoreList":[0]}}, - {"offset": {"line": 2813, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/dev-overlay.shim.ts"],"sourcesContent":["export function renderAppDevOverlay() {\n throw new Error(\n \"Next DevTools: Can't render in this environment. This is a bug in Next.js\"\n )\n}\n\nexport function renderPagesDevOverlay() {\n throw new Error(\n \"Next DevTools: Can't render in this environment. This is a bug in Next.js\"\n )\n}\n\n// TODO: Extract into separate functions that are imported\nexport const dispatcher = new Proxy(\n {},\n {\n get: (_, prop) => {\n return () => {\n throw new Error(\n `Next DevTools: Can't dispatch ${String(prop)} in this environment. This is a bug in Next.js`\n )\n }\n },\n }\n)\n"],"names":["dispatcher","renderAppDevOverlay","renderPagesDevOverlay","Error","Proxy","get","_","prop","String"],"mappings":";;;;;;;;;;;;;;;IAaaA,UAAU,EAAA;eAAVA;;IAbGC,mBAAmB,EAAA;eAAnBA;;IAMAC,qBAAqB,EAAA;eAArBA;;;AANT,SAASD;IACd,MAAM,OAAA,cAEL,CAFK,IAAIE,MACR,8EADI,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAEO,SAASD;IACd,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,8EADI,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAGO,MAAMH,aAAa,IAAII,MAC5B,CAAC,GACD;IACEC,KAAK,CAACC,GAAGC;QACP,OAAO;YACL,MAAM,OAAA,cAEL,CAFK,IAAIJ,MACR,CAAC,8BAA8B,EAAEK,OAAOD,MAAM,8CAA8C,CAAC,GADzF,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 2874, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/use-app-dev-rendering-indicator.tsx"],"sourcesContent":["'use client'\n\nimport { useEffect, useTransition } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\n\nexport const useAppDevRenderingIndicator = () => {\n const [isPending, startTransition] = useTransition()\n\n useEffect(() => {\n if (isPending) {\n dispatcher.renderingIndicatorShow()\n } else {\n dispatcher.renderingIndicatorHide()\n }\n }, [isPending])\n\n return startTransition\n}\n"],"names":["useEffect","useTransition","dispatcher","useAppDevRenderingIndicator","isPending","startTransition","renderingIndicatorShow","renderingIndicatorHide"],"mappings":";;;;AAEA,SAASA,SAAS,EAAEC,aAAa,QAAQ,QAAO;AAChD,SAASC,UAAU,QAAQ,mCAAkC;AAH7D;;;AAKO,MAAMC,8BAA8B;IACzC,MAAM,CAACC,WAAWC,gBAAgB,OAAGJ,sNAAAA;QAErCD,kNAAAA,EAAU;QACR,IAAII,WAAW;YACbF,wLAAAA,CAAWI,sBAAsB;QACnC,OAAO;YACLJ,wLAAAA,CAAWK,sBAAsB;QACnC;IACF,GAAG;QAACH;KAAU;IAEd,OAAOC;AACT,EAAC","ignoreList":[0]}}, - {"offset": {"line": 2900, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/use-action-queue.ts"],"sourcesContent":["import type { Dispatch } from 'react'\nimport React, { use, useMemo } from 'react'\nimport { isThenable } from '../../shared/lib/is-thenable'\nimport type { AppRouterActionQueue } from './app-router-instance'\nimport type {\n AppRouterState,\n ReducerActions,\n ReducerState,\n} from './router-reducer/router-reducer-types'\n\n// The app router state lives outside of React, so we can import the dispatch\n// method directly wherever we need it, rather than passing it around via props\n// or context.\nlet dispatch: Dispatch | null = null\n\nexport function dispatchAppRouterAction(action: ReducerActions) {\n if (dispatch === null) {\n throw new Error(\n 'Internal Next.js error: Router action dispatched before initialization.'\n )\n }\n dispatch(action)\n}\n\nconst __DEV__ = process.env.NODE_ENV !== 'production'\nconst promisesWithDebugInfo: WeakMap<\n Promise,\n Promise & { _debugInfo?: Array }\n> = __DEV__ ? new WeakMap() : (null as any)\n\nexport function useActionQueue(\n actionQueue: AppRouterActionQueue\n): AppRouterState {\n const [state, setState] = React.useState(actionQueue.state)\n\n // Because of a known issue that requires to decode Flight streams inside the\n // render phase, we have to be a bit clever and assign the dispatch method to\n // a module-level variable upon initialization. The useState hook in this\n // module only exists to synchronize state that lives outside of React.\n // Ideally, what we'd do instead is pass the state as a prop to root.render;\n // this is conceptually how we're modeling the app router state, despite the\n // weird implementation details.\n if (process.env.NODE_ENV !== 'production') {\n const { useAppDevRenderingIndicator } =\n require('../../next-devtools/userspace/use-app-dev-rendering-indicator') as typeof import('../../next-devtools/userspace/use-app-dev-rendering-indicator')\n // eslint-disable-next-line react-hooks/rules-of-hooks\n const appDevRenderingIndicator = useAppDevRenderingIndicator()\n\n dispatch = (action: ReducerActions) => {\n appDevRenderingIndicator(() => {\n actionQueue.dispatch(action, setState)\n })\n }\n } else {\n dispatch = (action: ReducerActions) =>\n actionQueue.dispatch(action, setState)\n }\n\n // When navigating to a non-prefetched route, then App Router state will be\n // blocked until the server responds. We need to transfer the `_debugInfo`\n // from the underlying Flight response onto the top-level promise that is\n // passed to React (via `use`) so that the latency is accurately represented\n // in the React DevTools.\n const stateWithDebugInfo = useMemo(() => {\n if (!__DEV__) {\n return state\n }\n\n if (isThenable(state)) {\n // useMemo can't be used to cache a Promise since the memoized value is thrown\n // away when we suspend. So we use a WeakMap to cache the Promise with debug info.\n let promiseWithDebugInfo = promisesWithDebugInfo.get(state)\n if (promiseWithDebugInfo === undefined) {\n const debugInfo: Array = []\n promiseWithDebugInfo = Promise.resolve(state).then((asyncState) => {\n if (asyncState.debugInfo !== null) {\n debugInfo.push(...asyncState.debugInfo)\n }\n return asyncState\n }) as Promise & { _debugInfo?: Array }\n promiseWithDebugInfo._debugInfo = debugInfo\n\n promisesWithDebugInfo.set(state, promiseWithDebugInfo)\n }\n\n return promiseWithDebugInfo\n }\n return state\n }, [state])\n\n return isThenable(stateWithDebugInfo)\n ? use(stateWithDebugInfo)\n : stateWithDebugInfo\n}\n"],"names":["React","use","useMemo","isThenable","dispatch","dispatchAppRouterAction","action","Error","__DEV__","process","env","NODE_ENV","promisesWithDebugInfo","WeakMap","useActionQueue","actionQueue","state","setState","useState","useAppDevRenderingIndicator","require","appDevRenderingIndicator","stateWithDebugInfo","promiseWithDebugInfo","get","undefined","debugInfo","Promise","resolve","then","asyncState","push","_debugInfo","set"],"mappings":";;;;;;AACA,OAAOA,SAASC,GAAG,EAAEC,OAAO,QAAQ,QAAO;AAC3C,SAASC,UAAU,QAAQ,+BAA8B;;;AAQzD,6EAA6E;AAC7E,+EAA+E;AAC/E,cAAc;AACd,IAAIC,WAA4C;AAEzC,SAASC,wBAAwBC,MAAsB;IAC5D,IAAIF,aAAa,MAAM;QACrB,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,4EADI,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IACAH,SAASE;AACX;AAEA,MAAME,UAAUC,QAAQC,GAAG,CAACC,QAAQ,gCAAK;AACzC,MAAMC,wBAGFJ,uCAAU,IAAIK,YAAa;AAExB,SAASC,eACdC,WAAiC;IAEjC,MAAM,CAACC,OAAOC,SAAS,GAAGjB,gNAAAA,CAAMkB,QAAQ,CAAeH,YAAYC,KAAK;IAExE,6EAA6E;IAC7E,6EAA6E;IAC7E,yEAAyE;IACzE,uEAAuE;IACvE,4EAA4E;IAC5E,4EAA4E;IAC5E,gCAAgC;IAChC,IAAIP,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,MAAM,EAAEQ,2BAA2B,EAAE,GACnCC,QAAQ;QACV,sDAAsD;QACtD,MAAMC,2BAA2BF;QAEjCf,WAAW,CAACE;YACVe,yBAAyB;gBACvBN,YAAYX,QAAQ,CAACE,QAAQW;YAC/B;QACF;IACF,OAAO;;IAKP,2EAA2E;IAC3E,0EAA0E;IAC1E,yEAAyE;IACzE,4EAA4E;IAC5E,yBAAyB;IACzB,MAAMK,yBAAqBpB,gNAAAA,EAAQ;QACjC,IAAI,CAACM,SAAS;;QAId,QAAIL,oLAAAA,EAAWa,QAAQ;YACrB,8EAA8E;YAC9E,kFAAkF;YAClF,IAAIO,uBAAuBX,sBAAsBY,GAAG,CAACR;YACrD,IAAIO,yBAAyBE,WAAW;gBACtC,MAAMC,YAA4B,EAAE;gBACpCH,uBAAuBI,QAAQC,OAAO,CAACZ,OAAOa,IAAI,CAAC,CAACC;oBAClD,IAAIA,WAAWJ,SAAS,KAAK,MAAM;wBACjCA,UAAUK,IAAI,IAAID,WAAWJ,SAAS;oBACxC;oBACA,OAAOI;gBACT;gBACAP,qBAAqBS,UAAU,GAAGN;gBAElCd,sBAAsBqB,GAAG,CAACjB,OAAOO;YACnC;YAEA,OAAOA;QACT;QACA,OAAOP;IACT,GAAG;QAACA;KAAM;IAEV,WAAOb,oLAAAA,EAAWmB,0BACdrB,4MAAAA,EAAIqB,sBACJA;AACN","ignoreList":[0]}}, - {"offset": {"line": 2981, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-call-server.ts"],"sourcesContent":["import { startTransition } from 'react'\nimport { ACTION_SERVER_ACTION } from './components/router-reducer/router-reducer-types'\nimport { dispatchAppRouterAction } from './components/use-action-queue'\n\nexport async function callServer(actionId: string, actionArgs: any[]) {\n return new Promise((resolve, reject) => {\n startTransition(() => {\n dispatchAppRouterAction({\n type: ACTION_SERVER_ACTION,\n actionId,\n actionArgs,\n resolve,\n reject,\n })\n })\n })\n}\n"],"names":["startTransition","ACTION_SERVER_ACTION","dispatchAppRouterAction","callServer","actionId","actionArgs","Promise","resolve","reject","type"],"mappings":";;;;AAAA,SAASA,eAAe,QAAQ,QAAO;AACvC,SAASC,oBAAoB,QAAQ,mDAAkD;AACvF,SAASC,uBAAuB,QAAQ,gCAA+B;;;;AAEhE,eAAeC,WAAWC,QAAgB,EAAEC,UAAiB;IAClE,OAAO,IAAIC,QAAQ,CAACC,SAASC;YAC3BR,wNAAAA,EAAgB;gBACdE,gNAAAA,EAAwB;gBACtBO,MAAMR,sOAAAA;gBACNG;gBACAC;gBACAE;gBACAC;YACF;QACF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 3008, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-find-source-map-url.ts"],"sourcesContent":["const basePath = process.env.__NEXT_ROUTER_BASEPATH || ''\nconst pathname = `${basePath}/__nextjs_source-map`\n\nexport const findSourceMapURL =\n process.env.NODE_ENV === 'development'\n ? function findSourceMapURL(filename: string): string | null {\n if (filename === '') {\n return null\n }\n\n if (\n filename.startsWith(document.location.origin) &&\n filename.includes('/_next/static')\n ) {\n // This is a request for a client chunk. This can only happen when\n // using Turbopack. In this case, since we control how those source\n // maps are generated, we can safely assume that the sourceMappingURL\n // is relative to the filename, with an added `.map` extension. The\n // browser can just request this file, and it gets served through the\n // normal dev server, without the need to route this through\n // the `/__nextjs_source-map` dev middleware.\n return `${filename}.map`\n }\n\n const url = new URL(pathname, document.location.origin)\n url.searchParams.set('filename', filename)\n\n return url.href\n }\n : undefined\n"],"names":["basePath","process","env","__NEXT_ROUTER_BASEPATH","pathname","findSourceMapURL","NODE_ENV","filename","startsWith","document","location","origin","includes","url","URL","searchParams","set","href","undefined"],"mappings":";;;;AAAA,MAAMA,WAAWC,QAAQC,GAAG,CAACC,sBAAsB,MAAI;AACvD,MAAMC,WAAW,GAAGJ,SAAS,oBAAoB,CAAC;AAE3C,MAAMK,mBACXJ,QAAQC,GAAG,CAACI,QAAQ,KAAK,cACrB,SAASD,iBAAiBE,QAAgB;IACxC,IAAIA,aAAa,IAAI;QACnB,OAAO;IACT;IAEA,IACEA,SAASC,UAAU,CAACC,SAASC,QAAQ,CAACC,MAAM,KAC5CJ,SAASK,QAAQ,CAAC,kBAClB;QACA,kEAAkE;QAClE,mEAAmE;QACnE,qEAAqE;QACrE,mEAAmE;QACnE,qEAAqE;QACrE,4DAA4D;QAC5D,6CAA6C;QAC7C,OAAO,GAAGL,SAAS,IAAI,CAAC;IAC1B;IAEA,MAAMM,MAAM,IAAIC,IAAIV,UAAUK,SAASC,QAAQ,CAACC,MAAM;IACtDE,IAAIE,YAAY,CAACC,GAAG,CAAC,YAAYT;IAEjC,OAAOM,IAAII,IAAI;AACjB,IACAC,UAAS","ignoreList":[0]}}, - {"offset": {"line": 3036, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/flight-data-helpers.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightData,\n FlightDataPath,\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n HeadData,\n InitialRSCPayload,\n} from '../shared/lib/app-router-types'\nimport { PAGE_SEGMENT_KEY } from '../shared/lib/segment'\nimport type { NormalizedSearch } from './components/segment-cache/cache-key'\nimport {\n getCacheKeyForDynamicParam,\n parseDynamicParamFromURLPart,\n doesStaticSegmentAppearInURL,\n getRenderedPathname,\n getRenderedSearch,\n} from './route-params'\nimport { createHrefFromUrl } from './components/router-reducer/create-href-from-url'\n\nexport type NormalizedFlightData = {\n /**\n * The full `FlightSegmentPath` inclusive of the final `Segment`\n */\n segmentPath: FlightSegmentPath\n /**\n * The `FlightSegmentPath` exclusive of the final `Segment`\n */\n pathToSegment: FlightSegmentPath\n segment: Segment\n tree: FlightRouterState\n seedData: CacheNodeSeedData | null\n head: HeadData\n isHeadPartial: boolean\n isRootRender: boolean\n}\n\n// TODO: We should only have to export `normalizeFlightData`, however because the initial flight data\n// that gets passed to `createInitialRouterState` doesn't conform to the `FlightDataPath` type (it's missing the root segment)\n// we're currently exporting it so we can use it directly. This should be fixed as part of the unification of\n// the different ways we express `FlightSegmentPath`.\nexport function getFlightDataPartsFromPath(\n flightDataPath: FlightDataPath\n): NormalizedFlightData {\n // Pick the last 4 items from the `FlightDataPath` to get the [tree, seedData, viewport, isHeadPartial].\n const flightDataPathLength = 4\n // tree, seedData, and head are *always* the last three items in the `FlightDataPath`.\n const [tree, seedData, head, isHeadPartial] =\n flightDataPath.slice(-flightDataPathLength)\n // The `FlightSegmentPath` is everything except the last three items. For a root render, it won't be present.\n const segmentPath = flightDataPath.slice(0, -flightDataPathLength)\n\n return {\n // TODO: Unify these two segment path helpers. We are inconsistently pushing an empty segment (\"\")\n // to the start of the segment path in some places which makes it hard to use solely the segment path.\n // Look for \"// TODO-APP: remove ''\" in the codebase.\n pathToSegment: segmentPath.slice(0, -1),\n segmentPath,\n // if the `FlightDataPath` corresponds with the root, there'll be no segment path,\n // in which case we default to ''.\n segment: segmentPath[segmentPath.length - 1] ?? '',\n tree,\n seedData,\n head,\n isHeadPartial,\n isRootRender: flightDataPath.length === flightDataPathLength,\n }\n}\n\nexport function createInitialRSCPayloadFromFallbackPrerender(\n response: Response,\n fallbackInitialRSCPayload: InitialRSCPayload\n): InitialRSCPayload {\n // This is a static fallback page. In order to hydrate the page, we need to\n // parse the client params from the URL, but to account for the possibility\n // that the page was rewritten, we need to check the response headers\n // for x-nextjs-rewritten-path or x-nextjs-rewritten-query headers. Since\n // we can't access the headers of the initial document response, the client\n // performs a fetch request to the current location. Since it's possible that\n // the fetch request will be dynamically rewritten to a different path than\n // the initial document, this fetch request delivers _all_ the hydration data\n // for the page; it was not inlined into the document, like it normally\n // would be.\n //\n // TODO: Consider treating the case where fetch is rewritten to a different\n // path from the document as a special deopt case. We should optimistically\n // assume this won't happen, inline the data into the document, and perform\n // a minimal request (like a HEAD or range request) to verify that the\n // response matches. Tricky to get right because we need to account for\n // all the different deployment environments we support, like output:\n // \"export\" mode, where we currently don't assume that custom response\n // headers are present.\n\n // Patch the Flight data sent by the server with the correct params parsed\n // from the URL + response object.\n const renderedPathname = getRenderedPathname(response)\n const renderedSearch = getRenderedSearch(response)\n const canonicalUrl = createHrefFromUrl(new URL(location.href))\n const originalFlightDataPath = fallbackInitialRSCPayload.f[0]\n const originalFlightRouterState = originalFlightDataPath[0]\n return {\n b: fallbackInitialRSCPayload.b,\n c: canonicalUrl.split('/'),\n q: renderedSearch,\n i: fallbackInitialRSCPayload.i,\n f: [\n [\n fillInFallbackFlightRouterState(\n originalFlightRouterState,\n renderedPathname,\n renderedSearch as NormalizedSearch\n ),\n originalFlightDataPath[1],\n originalFlightDataPath[2],\n originalFlightDataPath[2],\n ],\n ],\n m: fallbackInitialRSCPayload.m,\n G: fallbackInitialRSCPayload.G,\n S: fallbackInitialRSCPayload.S,\n }\n}\n\nfunction fillInFallbackFlightRouterState(\n flightRouterState: FlightRouterState,\n renderedPathname: string,\n renderedSearch: NormalizedSearch\n): FlightRouterState {\n const pathnameParts = renderedPathname.split('/').filter((p) => p !== '')\n const index = 0\n return fillInFallbackFlightRouterStateImpl(\n flightRouterState,\n renderedSearch,\n pathnameParts,\n index\n )\n}\n\nfunction fillInFallbackFlightRouterStateImpl(\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n pathnameParts: Array,\n pathnamePartsIndex: number\n): FlightRouterState {\n const originalSegment = flightRouterState[0]\n let newSegment: Segment\n let doesAppearInURL: boolean\n if (typeof originalSegment === 'string') {\n newSegment = originalSegment\n doesAppearInURL = doesStaticSegmentAppearInURL(originalSegment)\n } else {\n const paramName = originalSegment[0]\n const paramType = originalSegment[2]\n const paramValue = parseDynamicParamFromURLPart(\n paramType,\n pathnameParts,\n pathnamePartsIndex\n )\n const cacheKey = getCacheKeyForDynamicParam(paramValue, renderedSearch)\n newSegment = [paramName, cacheKey, paramType]\n doesAppearInURL = true\n }\n\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = doesAppearInURL\n ? pathnamePartsIndex + 1\n : pathnamePartsIndex\n\n const children = flightRouterState[1]\n const newChildren: { [key: string]: FlightRouterState } = {}\n for (let key in children) {\n const childFlightRouterState = children[key]\n newChildren[key] = fillInFallbackFlightRouterStateImpl(\n childFlightRouterState,\n renderedSearch,\n pathnameParts,\n childPathnamePartsIndex\n )\n }\n\n const newState: FlightRouterState = [\n newSegment,\n newChildren,\n null,\n flightRouterState[3],\n flightRouterState[4],\n ]\n return newState\n}\n\nexport function getNextFlightSegmentPath(\n flightSegmentPath: FlightSegmentPath\n): FlightSegmentPath {\n // Since `FlightSegmentPath` is a repeated tuple of `Segment` and `ParallelRouteKey`, we slice off two items\n // to get the next segment path.\n return flightSegmentPath.slice(2)\n}\n\nexport function normalizeFlightData(\n flightData: FlightData\n): NormalizedFlightData[] | string {\n // FlightData can be a string when the server didn't respond with a proper flight response,\n // or when a redirect happens, to signal to the client that it needs to perform an MPA navigation.\n if (typeof flightData === 'string') {\n return flightData\n }\n\n return flightData.map((flightDataPath) =>\n getFlightDataPartsFromPath(flightDataPath)\n )\n}\n\n/**\n * This function is used to prepare the flight router state for the request.\n * It removes markers that are not needed by the server, and are purely used\n * for stashing state on the client.\n * @param flightRouterState - The flight router state to prepare.\n * @param isHmrRefresh - Whether this is an HMR refresh request.\n * @returns The prepared flight router state.\n */\nexport function prepareFlightRouterStateForRequest(\n flightRouterState: FlightRouterState,\n isHmrRefresh?: boolean\n): string {\n // HMR requests need the complete, unmodified state for proper functionality\n if (isHmrRefresh) {\n return encodeURIComponent(JSON.stringify(flightRouterState))\n }\n\n return encodeURIComponent(\n JSON.stringify(stripClientOnlyDataFromFlightRouterState(flightRouterState))\n )\n}\n\n/**\n * Recursively strips client-only data from FlightRouterState while preserving\n * server-needed information for proper rendering decisions.\n */\nfunction stripClientOnlyDataFromFlightRouterState(\n flightRouterState: FlightRouterState\n): FlightRouterState {\n const [\n segment,\n parallelRoutes,\n _url, // Intentionally unused - URLs are client-only\n refreshMarker,\n isRootLayout,\n hasLoadingBoundary,\n ] = flightRouterState\n\n // __PAGE__ segments are always fetched from the server, so there's\n // no need to send them up\n const cleanedSegment = stripSearchParamsFromPageSegment(segment)\n\n // Recursively process parallel routes\n const cleanedParallelRoutes: { [key: string]: FlightRouterState } = {}\n for (const [key, childState] of Object.entries(parallelRoutes)) {\n cleanedParallelRoutes[key] =\n stripClientOnlyDataFromFlightRouterState(childState)\n }\n\n const result: FlightRouterState = [\n cleanedSegment,\n cleanedParallelRoutes,\n null, // URLs omitted - server reconstructs paths from segments\n shouldPreserveRefreshMarker(refreshMarker) ? refreshMarker : null,\n ]\n\n // Append optional fields if present\n if (isRootLayout !== undefined) {\n result[4] = isRootLayout\n }\n if (hasLoadingBoundary !== undefined) {\n result[5] = hasLoadingBoundary\n }\n\n return result\n}\n\n/**\n * Strips search parameters from __PAGE__ segments to prevent sensitive\n * client-side data from being sent to the server.\n */\nfunction stripSearchParamsFromPageSegment(segment: Segment): Segment {\n if (\n typeof segment === 'string' &&\n segment.startsWith(PAGE_SEGMENT_KEY + '?')\n ) {\n return PAGE_SEGMENT_KEY\n }\n return segment\n}\n\n/**\n * Determines whether the refresh marker should be sent to the server\n * Client-only markers like 'refresh' are stripped, while server-needed markers\n * like 'refetch' and 'inside-shared-layout' are preserved.\n */\nfunction shouldPreserveRefreshMarker(\n refreshMarker: FlightRouterState[3]\n): boolean {\n return Boolean(refreshMarker && refreshMarker !== 'refresh')\n}\n"],"names":["PAGE_SEGMENT_KEY","getCacheKeyForDynamicParam","parseDynamicParamFromURLPart","doesStaticSegmentAppearInURL","getRenderedPathname","getRenderedSearch","createHrefFromUrl","getFlightDataPartsFromPath","flightDataPath","flightDataPathLength","tree","seedData","head","isHeadPartial","slice","segmentPath","pathToSegment","segment","length","isRootRender","createInitialRSCPayloadFromFallbackPrerender","response","fallbackInitialRSCPayload","renderedPathname","renderedSearch","canonicalUrl","URL","location","href","originalFlightDataPath","f","originalFlightRouterState","b","c","split","q","i","fillInFallbackFlightRouterState","m","G","S","flightRouterState","pathnameParts","filter","p","index","fillInFallbackFlightRouterStateImpl","pathnamePartsIndex","originalSegment","newSegment","doesAppearInURL","paramName","paramType","paramValue","cacheKey","childPathnamePartsIndex","children","newChildren","key","childFlightRouterState","newState","getNextFlightSegmentPath","flightSegmentPath","normalizeFlightData","flightData","map","prepareFlightRouterStateForRequest","isHmrRefresh","encodeURIComponent","JSON","stringify","stripClientOnlyDataFromFlightRouterState","parallelRoutes","_url","refreshMarker","isRootLayout","hasLoadingBoundary","cleanedSegment","stripSearchParamsFromPageSegment","cleanedParallelRoutes","childState","Object","entries","result","shouldPreserveRefreshMarker","undefined","startsWith","Boolean"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3232, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-build-id.ts"],"sourcesContent":["// This gets assigned as a side-effect during app initialization. Because it\n// represents the build used to create the JS bundle, it should never change\n// after being set, so we store it in a global variable.\n//\n// When performing RSC requests, if the incoming data has a different build ID,\n// we perform an MPA navigation/refresh to load the updated build and ensure\n// that the client and server in sync.\n\n// Starts as an empty string. In practice, because setAppBuildId is called\n// during initialization before hydration starts, this will always get\n// reassigned to the actual build ID before it's ever needed by a navigation.\n// If for some reasons it didn't, due to a bug or race condition, then on\n// navigation the build comparision would fail and trigger an MPA navigation.\nlet globalBuildId: string = ''\n\nexport function setAppBuildId(buildId: string) {\n globalBuildId = buildId\n}\n\nexport function getAppBuildId(): string {\n return globalBuildId\n}\n"],"names":["globalBuildId","setAppBuildId","buildId","getAppBuildId"],"mappings":";;;;;;AAAA,4EAA4E;AAC5E,4EAA4E;AAC5E,wDAAwD;AACxD,EAAE;AACF,+EAA+E;AAC/E,4EAA4E;AAC5E,sCAAsC;AAEtC,0EAA0E;AAC1E,sEAAsE;AACtE,6EAA6E;AAC7E,yEAAyE;AACzE,6EAA6E;AAC7E,IAAIA,gBAAwB;AAErB,SAASC,cAAcC,OAAe;IAC3CF,gBAAgBE;AAClB;AAEO,SAASC;IACd,OAAOH;AACT","ignoreList":[0]}}, - {"offset": {"line": 3261, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/hash.ts"],"sourcesContent":["// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n"],"names":["djb2Hash","str","hash","i","length","char","charCodeAt","hexHash","toString","slice"],"mappings":"AAAA,wCAAwC;AACxC,4CAA4C;AAC5C,iHAAiH;AACjH,wFAAwF;AACxF,gGAAgG;AAChG,wHAAwH;AACxH,wDAAwD;;;;;;;AACjD,SAASA,SAASC,GAAW;IAClC,IAAIC,OAAO;IACX,IAAK,IAAIC,IAAI,GAAGA,IAAIF,IAAIG,MAAM,EAAED,IAAK;QACnC,MAAME,OAAOJ,IAAIK,UAAU,CAACH;QAC5BD,OAASA,CAAAA,QAAQ,CAAA,IAAKA,OAAOG,OAAQ;IACvC;IACA,OAAOH,SAAS;AAClB;AAEO,SAASK,QAAQN,GAAW;IACjC,OAAOD,SAASC,KAAKO,QAAQ,CAAC,IAAIC,KAAK,CAAC,GAAG;AAC7C","ignoreList":[0]}}, - {"offset": {"line": 3289, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/cache-busting-search-param.ts"],"sourcesContent":["import { hexHash } from '../../hash'\n\nexport function computeCacheBustingSearchParam(\n prefetchHeader: '1' | '2' | '0' | undefined,\n segmentPrefetchHeader: string | string[] | undefined,\n stateTreeHeader: string | string[] | undefined,\n nextUrlHeader: string | string[] | undefined\n): string {\n if (\n (prefetchHeader === undefined || prefetchHeader === '0') &&\n segmentPrefetchHeader === undefined &&\n stateTreeHeader === undefined &&\n nextUrlHeader === undefined\n ) {\n return ''\n }\n return hexHash(\n [\n prefetchHeader || '0',\n segmentPrefetchHeader || '0',\n stateTreeHeader || '0',\n nextUrlHeader || '0',\n ].join(',')\n )\n}\n"],"names":["hexHash","computeCacheBustingSearchParam","prefetchHeader","segmentPrefetchHeader","stateTreeHeader","nextUrlHeader","undefined","join"],"mappings":";;;;AAAA,SAASA,OAAO,QAAQ,aAAY;;AAE7B,SAASC,+BACdC,cAA2C,EAC3CC,qBAAoD,EACpDC,eAA8C,EAC9CC,aAA4C;IAE5C,IACGH,CAAAA,mBAAmBI,aAAaJ,mBAAmB,GAAE,KACtDC,0BAA0BG,aAC1BF,oBAAoBE,aACpBD,kBAAkBC,WAClB;QACA,OAAO;IACT;IACA,WAAON,uKAAAA,EACL;QACEE,kBAAkB;QAClBC,yBAAyB;QACzBC,mBAAmB;QACnBC,iBAAiB;KAClB,CAACE,IAAI,CAAC;AAEX","ignoreList":[0]}}, - {"offset": {"line": 3310, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/set-cache-busting-search-param.ts"],"sourcesContent":["'use client'\n\nimport { computeCacheBustingSearchParam } from '../../../shared/lib/router/utils/cache-busting-search-param'\nimport {\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n NEXT_RSC_UNION_QUERY,\n} from '../app-router-headers'\nimport type { RequestHeaders } from './fetch-server-response'\n\n/**\n * Mutates the provided URL by adding a cache-busting search parameter for CDNs that don't\n * support custom headers. This helps avoid caching conflicts by making each request unique.\n *\n * Rather than relying on the Vary header which some CDNs ignore, we append a search param\n * to create a unique URL that forces a fresh request.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * Note: This function mutates the input URL directly and does not return anything.\n *\n * TODO: Since we need to use a search param anyway, we could simplify by removing the custom\n * headers approach entirely and just use search params.\n */\nexport const setCacheBustingSearchParam = (\n url: URL,\n headers: RequestHeaders\n): void => {\n const uniqueCacheKey = computeCacheBustingSearchParam(\n headers[NEXT_ROUTER_PREFETCH_HEADER],\n headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],\n headers[NEXT_ROUTER_STATE_TREE_HEADER],\n headers[NEXT_URL]\n )\n setCacheBustingSearchParamWithHash(url, uniqueCacheKey)\n}\n\n/**\n * Sets a cache-busting search parameter on a URL using a provided hash value.\n *\n * This function performs the same logic as `setCacheBustingSearchParam` but accepts\n * a pre-computed hash instead of computing it from headers.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * hash: \"abc123\"\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * If the hash is null, we will set `_rsc` search param without a value.\n * Like this: https://example.com/path?query=1&_rsc\n *\n * Note: This function mutates the input URL directly and does not return anything.\n */\nexport const setCacheBustingSearchParamWithHash = (\n url: URL,\n hash: string\n): void => {\n /**\n * Note that we intentionally do not use `url.searchParams.set` here:\n *\n * const url = new URL('https://example.com/search?q=custom%20spacing');\n * url.searchParams.set('_rsc', 'abc123');\n * console.log(url.toString()); // Outputs: https://example.com/search?q=custom+spacing&_rsc=abc123\n * ^ <--- this is causing confusion\n * This is in fact intended based on https://url.spec.whatwg.org/#interface-urlsearchparams, but\n * we want to preserve the %20 as %20 if that's what the user passed in, hence the custom\n * logic below.\n */\n const existingSearch = url.search\n const rawQuery = existingSearch.startsWith('?')\n ? existingSearch.slice(1)\n : existingSearch\n\n // Always remove any existing cache busting param and add a fresh one to ensure\n // we have the correct value based on current request headers\n const pairs = rawQuery\n .split('&')\n .filter((pair) => pair && !pair.startsWith(`${NEXT_RSC_UNION_QUERY}=`))\n\n if (hash.length > 0) {\n pairs.push(`${NEXT_RSC_UNION_QUERY}=${hash}`)\n } else {\n pairs.push(`${NEXT_RSC_UNION_QUERY}`)\n }\n url.search = pairs.length ? `?${pairs.join('&')}` : ''\n}\n"],"names":["computeCacheBustingSearchParam","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_URL","NEXT_RSC_UNION_QUERY","setCacheBustingSearchParam","url","headers","uniqueCacheKey","setCacheBustingSearchParamWithHash","hash","existingSearch","search","rawQuery","startsWith","slice","pairs","split","filter","pair","length","push","join"],"mappings":";;;;;;AAEA,SAASA,8BAA8B,QAAQ,8DAA6D;AAC5G,SACEC,2BAA2B,EAC3BC,mCAAmC,EACnCC,6BAA6B,EAC7BC,QAAQ,EACRC,oBAAoB,QACf,wBAAuB;AAT9B;;;AA4BO,MAAMC,6BAA6B,CACxCC,KACAC;IAEA,MAAMC,qBAAiBT,gPAAAA,EACrBQ,OAAO,CAACP,sNAAAA,CAA4B,EACpCO,OAAO,CAACN,8NAAAA,CAAoC,EAC5CM,OAAO,CAACL,wNAAAA,CAA8B,EACtCK,OAAO,CAACJ,mMAAAA,CAAS;IAEnBM,mCAAmCH,KAAKE;AAC1C,EAAC;AAkBM,MAAMC,qCAAqC,CAChDH,KACAI;IAEA;;;;;;;;;;GAUC,GACD,MAAMC,iBAAiBL,IAAIM,MAAM;IACjC,MAAMC,WAAWF,eAAeG,UAAU,CAAC,OACvCH,eAAeI,KAAK,CAAC,KACrBJ;IAEJ,+EAA+E;IAC/E,6DAA6D;IAC7D,MAAMK,QAAQH,SACXI,KAAK,CAAC,KACNC,MAAM,CAAC,CAACC,OAASA,QAAQ,CAACA,KAAKL,UAAU,CAAC,GAAGV,+MAAAA,CAAqB,CAAC,CAAC;IAEvE,IAAIM,KAAKU,MAAM,GAAG,GAAG;QACnBJ,MAAMK,IAAI,CAAC,GAAGjB,+MAAAA,CAAqB,CAAC,EAAEM,MAAM;IAC9C,OAAO;QACLM,MAAMK,IAAI,CAAC,GAAGjB,+MAAAA,EAAsB;IACtC;IACAE,IAAIM,MAAM,GAAGI,MAAMI,MAAM,GAAG,CAAC,CAAC,EAAEJ,MAAMM,IAAI,CAAC,MAAM,GAAG;AACtD,EAAC","ignoreList":[0]}}, - {"offset": {"line": 3352, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/deployment-id.ts"],"sourcesContent":["// This could also be a variable instead of a function, but some unit tests want to change the ID at\n// runtime. Even though that would never happen in a real deployment.\nexport function getDeploymentId(): string | undefined {\n return process.env.NEXT_DEPLOYMENT_ID\n}\n\nexport function getDeploymentIdQueryOrEmptyString(): string {\n let deploymentId = getDeploymentId()\n if (deploymentId) {\n return `?dpl=${deploymentId}`\n }\n return ''\n}\n"],"names":["getDeploymentId","process","env","NEXT_DEPLOYMENT_ID","getDeploymentIdQueryOrEmptyString","deploymentId"],"mappings":"AAAA,oGAAoG;AACpG,qEAAqE;;;;;;;AAC9D,SAASA;IACd,OAAOC,QAAQC,GAAG,CAACC,kBAAkB;AACvC;AAEO,SAASC;IACd,IAAIC,eAAeL;IACnB,IAAIK,cAAc;;IAGlB,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 3373, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/fetch-server-response.ts"],"sourcesContent":["'use client'\n\n// TODO: Explicitly import from client.browser\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport {\n createFromReadableStream as createFromReadableStreamBrowser,\n createFromFetch as createFromFetchBrowser,\n} from 'react-server-dom-webpack/client'\n\nimport type {\n FlightRouterState,\n NavigationFlightResponse,\n} from '../../../shared/lib/app-router-types'\n\nimport {\n type NEXT_ROUTER_PREFETCH_HEADER,\n type NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_RSC_UNION_QUERY,\n NEXT_URL,\n RSC_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n NEXT_ROUTER_STALE_TIME_HEADER,\n NEXT_HTML_REQUEST_ID_HEADER,\n NEXT_REQUEST_ID_HEADER,\n} from '../app-router-headers'\nimport { callServer } from '../../app-call-server'\nimport { findSourceMapURL } from '../../app-find-source-map-url'\nimport {\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n type NormalizedFlightData,\n} from '../../flight-data-helpers'\nimport { getAppBuildId } from '../../app-build-id'\nimport { setCacheBustingSearchParam } from './set-cache-busting-search-param'\nimport {\n getRenderedSearch,\n urlToUrlWithoutFlightMarker,\n} from '../../route-params'\nimport type { NormalizedSearch } from '../segment-cache/cache-key'\nimport { getDeploymentId } from '../../../shared/lib/deployment-id'\n\nconst createFromReadableStream =\n createFromReadableStreamBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromReadableStream']\nconst createFromFetch =\n createFromFetchBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromFetch']\n\nlet createDebugChannel:\n | typeof import('../../dev/debug-channel').createDebugChannel\n | undefined\n\nif (\n process.env.NODE_ENV !== 'production' &&\n process.env.__NEXT_REACT_DEBUG_CHANNEL\n) {\n createDebugChannel = (\n require('../../dev/debug-channel') as typeof import('../../dev/debug-channel')\n ).createDebugChannel\n}\n\nexport interface FetchServerResponseOptions {\n readonly flightRouterState: FlightRouterState\n readonly nextUrl: string | null\n readonly isHmrRefresh?: boolean\n}\n\ntype SpaFetchServerResponseResult = {\n flightData: NormalizedFlightData[]\n canonicalUrl: URL\n renderedSearch: NormalizedSearch\n couldBeIntercepted: boolean\n prerendered: boolean\n postponed: boolean\n staleTime: number\n debugInfo: Array | null\n}\n\ntype MpaFetchServerResponseResult = string\n\nexport type FetchServerResponseResult =\n | MpaFetchServerResponseResult\n | SpaFetchServerResponseResult\n\nexport type RequestHeaders = {\n [RSC_HEADER]?: '1'\n [NEXT_ROUTER_STATE_TREE_HEADER]?: string\n [NEXT_URL]?: string\n [NEXT_ROUTER_PREFETCH_HEADER]?: '1' | '2'\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]?: string\n 'x-deployment-id'?: string\n [NEXT_HMR_REFRESH_HEADER]?: '1'\n // A header that is only added in test mode to assert on fetch priority\n 'Next-Test-Fetch-Priority'?: RequestInit['priority']\n [NEXT_HTML_REQUEST_ID_HEADER]?: string // dev-only\n [NEXT_REQUEST_ID_HEADER]?: string // dev-only\n}\n\nfunction doMpaNavigation(url: string): FetchServerResponseResult {\n return urlToUrlWithoutFlightMarker(new URL(url, location.origin)).toString()\n}\n\nlet isPageUnloading = false\n\nif (typeof window !== 'undefined') {\n // Track when the page is unloading, e.g. due to reloading the page or\n // performing hard navigations. This allows us to suppress error logging when\n // the browser cancels in-flight requests during page unload.\n window.addEventListener('pagehide', () => {\n isPageUnloading = true\n })\n\n // Reset the flag on pageshow, e.g. when navigating back and the JavaScript\n // execution context is restored by the browser.\n window.addEventListener('pageshow', () => {\n isPageUnloading = false\n })\n}\n\n/**\n * Fetch the flight data for the provided url. Takes in the current router state\n * to decide what to render server-side.\n */\nexport async function fetchServerResponse(\n url: URL,\n options: FetchServerResponseOptions\n): Promise {\n const { flightRouterState, nextUrl } = options\n\n const headers: RequestHeaders = {\n // Enable flight response\n [RSC_HEADER]: '1',\n // Provide the current router state\n [NEXT_ROUTER_STATE_TREE_HEADER]: prepareFlightRouterStateForRequest(\n flightRouterState,\n options.isHmrRefresh\n ),\n }\n\n if (process.env.NODE_ENV === 'development' && options.isHmrRefresh) {\n headers[NEXT_HMR_REFRESH_HEADER] = '1'\n }\n\n if (nextUrl) {\n headers[NEXT_URL] = nextUrl\n }\n\n // In static export mode, we need to modify the URL to request the .txt file,\n // but we should preserve the original URL for the canonical URL and error handling.\n const originalUrl = url\n\n try {\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n // In \"output: export\" mode, we can't rely on headers to distinguish\n // between HTML and RSC requests. Instead, we append an extra prefix\n // to the request.\n url = new URL(url)\n if (url.pathname.endsWith('/')) {\n url.pathname += 'index.txt'\n } else {\n url.pathname += '.txt'\n }\n }\n }\n\n // Typically, during a navigation, we decode the response using Flight's\n // `createFromFetch` API, which accepts a `fetch` promise.\n // TODO: Remove this check once the old PPR flag is removed\n const isLegacyPPR =\n process.env.__NEXT_PPR && !process.env.__NEXT_CACHE_COMPONENTS\n const shouldImmediatelyDecode = !isLegacyPPR\n const res = await createFetch(\n url,\n headers,\n 'auto',\n shouldImmediatelyDecode\n )\n\n const responseUrl = urlToUrlWithoutFlightMarker(new URL(res.url))\n const canonicalUrl = res.redirected ? responseUrl : originalUrl\n\n const contentType = res.headers.get('content-type') || ''\n const interception = !!res.headers.get('vary')?.includes(NEXT_URL)\n const postponed = !!res.headers.get(NEXT_DID_POSTPONE_HEADER)\n const staleTimeHeaderSeconds = res.headers.get(\n NEXT_ROUTER_STALE_TIME_HEADER\n )\n const staleTime =\n staleTimeHeaderSeconds !== null\n ? parseInt(staleTimeHeaderSeconds, 10) * 1000\n : -1\n let isFlightResponse = contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n if (!isFlightResponse) {\n isFlightResponse = contentType.startsWith('text/plain')\n }\n }\n }\n\n // If fetch returns something different than flight response handle it like a mpa navigation\n // If the fetch was not 200, we also handle it like a mpa navigation\n if (!isFlightResponse || !res.ok || !res.body) {\n // in case the original URL came with a hash, preserve it before redirecting to the new URL\n if (url.hash) {\n responseUrl.hash = url.hash\n }\n\n return doMpaNavigation(responseUrl.toString())\n }\n\n // We may navigate to a page that requires a different Webpack runtime.\n // In prod, every page will have the same Webpack runtime.\n // In dev, the Webpack runtime is minimal for each page.\n // We need to ensure the Webpack runtime is updated before executing client-side JS of the new page.\n // TODO: This needs to happen in the Flight Client.\n // Or Webpack needs to include the runtime update in the Flight response as\n // a blocking script.\n if (process.env.NODE_ENV !== 'production' && !process.env.TURBOPACK) {\n await (\n require('../../dev/hot-reloader/app/hot-reloader-app') as typeof import('../../dev/hot-reloader/app/hot-reloader-app')\n ).waitForWebpackRuntimeHotUpdate()\n }\n\n let flightResponsePromise = res.flightResponse\n if (flightResponsePromise === null) {\n // Typically, `createFetch` would have already started decoding the\n // Flight response. If it hasn't, though, we need to decode it now.\n // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR\n // without Cache Components). Remove this branch once legacy PPR\n // is deleted.\n const flightStream = postponed\n ? createUnclosingPrefetchStream(res.body)\n : res.body\n flightResponsePromise =\n createFromNextReadableStream(\n flightStream,\n headers\n )\n }\n\n const flightResponse = await flightResponsePromise\n\n if (getAppBuildId() !== flightResponse.b) {\n return doMpaNavigation(res.url)\n }\n\n const normalizedFlightData = normalizeFlightData(flightResponse.f)\n if (typeof normalizedFlightData === 'string') {\n return doMpaNavigation(normalizedFlightData)\n }\n\n return {\n flightData: normalizedFlightData,\n canonicalUrl: canonicalUrl,\n renderedSearch: getRenderedSearch(res),\n couldBeIntercepted: interception,\n prerendered: flightResponse.S,\n postponed,\n staleTime,\n debugInfo: flightResponsePromise._debugInfo ?? null,\n }\n } catch (err) {\n if (!isPageUnloading) {\n console.error(\n `Failed to fetch RSC payload for ${originalUrl}. Falling back to browser navigation.`,\n err\n )\n }\n\n // If fetch fails handle it like a mpa navigation\n // TODO-APP: Add a test for the case where a CORS request fails, e.g. external url redirect coming from the response.\n // See https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521 for a reproduction.\n return originalUrl.toString()\n }\n}\n\n// This is a subset of the standard Response type. We use a custom type for\n// this so we can limit which details about the response leak into the rest of\n// the codebase. For example, there's some custom logic for manually following\n// redirects, so \"redirected\" in this type could be a composite of multiple\n// browser fetch calls; however, this fact should not leak to the caller.\nexport type RSCResponse = {\n ok: boolean\n redirected: boolean\n headers: Headers\n body: ReadableStream | null\n status: number\n url: string\n flightResponse: (Promise & { _debugInfo?: Array }) | null\n}\n\nexport async function createFetch(\n url: URL,\n headers: RequestHeaders,\n fetchPriority: 'auto' | 'high' | 'low' | null,\n shouldImmediatelyDecode: boolean,\n signal?: AbortSignal\n): Promise> {\n // TODO: In output: \"export\" mode, the headers do nothing. Omit them (and the\n // cache busting search param) from the request so they're\n // maximally cacheable.\n\n if (process.env.__NEXT_TEST_MODE && fetchPriority !== null) {\n headers['Next-Test-Fetch-Priority'] = fetchPriority\n }\n\n const deploymentId = getDeploymentId()\n if (deploymentId) {\n headers['x-deployment-id'] = deploymentId\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (self.__next_r) {\n headers[NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r\n }\n\n // Create a new request ID for the server action request. The server uses\n // this to tag debug information sent via WebSocket to the client, which\n // then routes those chunks to the debug channel associated with this ID.\n headers[NEXT_REQUEST_ID_HEADER] = crypto\n .getRandomValues(new Uint32Array(1))[0]\n .toString(16)\n }\n\n const fetchOptions: RequestInit = {\n // Backwards compat for older browsers. `same-origin` is the default in modern browsers.\n credentials: 'same-origin',\n headers,\n priority: fetchPriority || undefined,\n signal,\n }\n // `fetchUrl` is slightly different from `url` because we add a cache-busting\n // search param to it. This should not leak outside of this function, so we\n // track them separately.\n let fetchUrl = new URL(url)\n setCacheBustingSearchParam(fetchUrl, headers)\n let fetchPromise = fetch(fetchUrl, fetchOptions)\n // Immediately pass the fetch promise to the Flight client so that the debug\n // info includes the latency from the client to the server. The internal timer\n // in React starts as soon as `createFromFetch` is called.\n //\n // The only case where we don't do this is during a prefetch, because we have\n // to do some extra processing of the response stream (see\n // `createUnclosingPrefetchStream`). But this is fine, because a top-level\n // prefetch response never blocks a navigation; if it hasn't already been\n // written into the cache by the time the navigation happens, the router will\n // go straight to a dynamic request.\n let flightResponsePromise = shouldImmediatelyDecode\n ? createFromNextFetch(fetchPromise, headers)\n : null\n let browserResponse = await fetchPromise\n\n // If the server responds with a redirect (e.g. 307), and the redirected\n // location does not contain the cache busting search param set in the\n // original request, the response is likely invalid — when following the\n // redirect, the browser forwards the request headers, but since the cache\n // busting search param is missing, the server will reject the request due to\n // a mismatch.\n //\n // Ideally, we would be able to intercept the redirect response and perform it\n // manually, instead of letting the browser automatically follow it, but this\n // is not allowed by the fetch API.\n //\n // So instead, we must \"replay\" the redirect by fetching the new location\n // again, but this time we'll append the cache busting search param to prevent\n // a mismatch.\n //\n // TODO: We can optimize Next.js's built-in middleware APIs by returning a\n // custom status code, to prevent the browser from automatically following it.\n //\n // This does not affect Server Action-based redirects; those are encoded\n // differently, as part of the Flight body. It only affects redirects that\n // occur in a middleware or a third-party proxy.\n\n let redirected = browserResponse.redirected\n if (process.env.__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS) {\n // This is to prevent a redirect loop. Same limit used by Chrome.\n const MAX_REDIRECTS = 20\n for (let n = 0; n < MAX_REDIRECTS; n++) {\n if (!browserResponse.redirected) {\n // The server did not perform a redirect.\n break\n }\n const responseUrl = new URL(browserResponse.url, fetchUrl)\n if (responseUrl.origin !== fetchUrl.origin) {\n // The server redirected to an external URL. The rest of the logic below\n // is not relevant, because it only applies to internal redirects.\n break\n }\n if (\n responseUrl.searchParams.get(NEXT_RSC_UNION_QUERY) ===\n fetchUrl.searchParams.get(NEXT_RSC_UNION_QUERY)\n ) {\n // The redirected URL already includes the cache busting search param.\n // This was probably intentional. Regardless, there's no reason to\n // issue another request to this URL because it already has the param\n // value that we would have added below.\n break\n }\n // The RSC request was redirected. Assume the response is invalid.\n //\n // Append the cache busting search param to the redirected URL and\n // fetch again.\n // TODO: We should abort the previous request.\n fetchUrl = new URL(responseUrl)\n setCacheBustingSearchParam(fetchUrl, headers)\n fetchPromise = fetch(fetchUrl, fetchOptions)\n flightResponsePromise = shouldImmediatelyDecode\n ? createFromNextFetch(fetchPromise, headers)\n : null\n browserResponse = await fetchPromise\n // We just performed a manual redirect, so this is now true.\n redirected = true\n }\n }\n\n // Remove the cache busting search param from the response URL, to prevent it\n // from leaking outside of this function.\n const responseUrl = new URL(browserResponse.url, fetchUrl)\n responseUrl.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n const rscResponse: RSCResponse = {\n url: responseUrl.href,\n\n // This is true if any redirects occurred, either automatically by the\n // browser, or manually by us. So it's different from\n // `browserResponse.redirected`, which only tells us whether the browser\n // followed a redirect, and only for the last response in the chain.\n redirected,\n\n // These can be copied from the last browser response we received. We\n // intentionally only expose the subset of fields that are actually used\n // elsewhere in the codebase.\n ok: browserResponse.ok,\n headers: browserResponse.headers,\n body: browserResponse.body,\n status: browserResponse.status,\n\n // This is the exact promise returned by `createFromFetch`. It contains\n // debug information that we need to transfer to any derived promises that\n // are later rendered by React.\n flightResponse: flightResponsePromise,\n }\n\n return rscResponse\n}\n\nexport function createFromNextReadableStream(\n flightStream: ReadableStream,\n requestHeaders: RequestHeaders\n): Promise {\n return createFromReadableStream(flightStream, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n })\n}\n\nfunction createFromNextFetch(\n promiseForResponse: Promise,\n requestHeaders: RequestHeaders\n): Promise & { _debugInfo?: Array } {\n return createFromFetch(promiseForResponse, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n })\n}\n\nfunction createUnclosingPrefetchStream(\n originalFlightStream: ReadableStream\n): ReadableStream {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n continue\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream.\n return\n }\n },\n })\n}\n"],"names":["createFromReadableStream","createFromReadableStreamBrowser","createFromFetch","createFromFetchBrowser","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_RSC_UNION_QUERY","NEXT_URL","RSC_HEADER","RSC_CONTENT_TYPE_HEADER","NEXT_HMR_REFRESH_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_REQUEST_ID_HEADER","callServer","findSourceMapURL","normalizeFlightData","prepareFlightRouterStateForRequest","getAppBuildId","setCacheBustingSearchParam","getRenderedSearch","urlToUrlWithoutFlightMarker","getDeploymentId","createDebugChannel","process","env","NODE_ENV","__NEXT_REACT_DEBUG_CHANNEL","require","doMpaNavigation","url","URL","location","origin","toString","isPageUnloading","window","addEventListener","fetchServerResponse","options","flightRouterState","nextUrl","headers","isHmrRefresh","originalUrl","__NEXT_CONFIG_OUTPUT","pathname","endsWith","isLegacyPPR","__NEXT_PPR","__NEXT_CACHE_COMPONENTS","shouldImmediatelyDecode","res","createFetch","responseUrl","canonicalUrl","redirected","contentType","get","interception","includes","postponed","staleTimeHeaderSeconds","staleTime","parseInt","isFlightResponse","startsWith","ok","body","hash","TURBOPACK","waitForWebpackRuntimeHotUpdate","flightResponsePromise","flightResponse","flightStream","createUnclosingPrefetchStream","createFromNextReadableStream","b","normalizedFlightData","f","flightData","renderedSearch","couldBeIntercepted","prerendered","S","debugInfo","_debugInfo","err","console","error","fetchPriority","signal","__NEXT_TEST_MODE","deploymentId","self","__next_r","crypto","getRandomValues","Uint32Array","fetchOptions","credentials","priority","undefined","fetchUrl","fetchPromise","fetch","createFromNextFetch","browserResponse","__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS","MAX_REDIRECTS","n","searchParams","delete","rscResponse","href","status","requestHeaders","debugChannel","promiseForResponse","originalFlightStream","reader","getReader","ReadableStream","pull","controller","done","value","read","enqueue"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3646, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/is-navigating-to-new-root-layout.ts"],"sourcesContent":["import type { FlightRouterState } from '../../../shared/lib/app-router-types'\n\nexport function isNavigatingToNewRootLayout(\n currentTree: FlightRouterState,\n nextTree: FlightRouterState\n): boolean {\n // Compare segments\n const currentTreeSegment = currentTree[0]\n const nextTreeSegment = nextTree[0]\n\n // If any segment is different before we find the root layout, the root layout has changed.\n // E.g. /same/(group1)/layout.js -> /same/(group2)/layout.js\n // First segment is 'same' for both, keep looking. (group1) changed to (group2) before the root layout was found, it must have changed.\n if (Array.isArray(currentTreeSegment) && Array.isArray(nextTreeSegment)) {\n // Compare dynamic param name and type but ignore the value, different values would not affect the current root layout\n // /[name] - /slug1 and /slug2, both values (slug1 & slug2) still has the same layout /[name]/layout.js\n if (\n currentTreeSegment[0] !== nextTreeSegment[0] ||\n currentTreeSegment[2] !== nextTreeSegment[2]\n ) {\n return true\n }\n } else if (currentTreeSegment !== nextTreeSegment) {\n return true\n }\n\n // Current tree root layout found\n if (currentTree[4]) {\n // If the next tree doesn't have the root layout flag, it must have changed.\n return !nextTree[4]\n }\n // Current tree didn't have its root layout here, must have changed.\n if (nextTree[4]) {\n return true\n }\n // We can't assume it's `parallelRoutes.children` here in case the root layout is `app/@something/layout.js`\n // But it's not possible to be more than one parallelRoutes before the root layout is found\n // TODO-APP: change to traverse all parallel routes\n const currentTreeChild = Object.values(currentTree[1])[0]\n const nextTreeChild = Object.values(nextTree[1])[0]\n if (!currentTreeChild || !nextTreeChild) return true\n return isNavigatingToNewRootLayout(currentTreeChild, nextTreeChild)\n}\n"],"names":["isNavigatingToNewRootLayout","currentTree","nextTree","currentTreeSegment","nextTreeSegment","Array","isArray","currentTreeChild","Object","values","nextTreeChild"],"mappings":";;;;AAEO,SAASA,4BACdC,WAA8B,EAC9BC,QAA2B;IAE3B,mBAAmB;IACnB,MAAMC,qBAAqBF,WAAW,CAAC,EAAE;IACzC,MAAMG,kBAAkBF,QAAQ,CAAC,EAAE;IAEnC,2FAA2F;IAC3F,4DAA4D;IAC5D,uIAAuI;IACvI,IAAIG,MAAMC,OAAO,CAACH,uBAAuBE,MAAMC,OAAO,CAACF,kBAAkB;QACvE,sHAAsH;QACtH,uGAAuG;QACvG,IACED,kBAAkB,CAAC,EAAE,KAAKC,eAAe,CAAC,EAAE,IAC5CD,kBAAkB,CAAC,EAAE,KAAKC,eAAe,CAAC,EAAE,EAC5C;YACA,OAAO;QACT;IACF,OAAO,IAAID,uBAAuBC,iBAAiB;QACjD,OAAO;IACT;IAEA,iCAAiC;IACjC,IAAIH,WAAW,CAAC,EAAE,EAAE;QAClB,4EAA4E;QAC5E,OAAO,CAACC,QAAQ,CAAC,EAAE;IACrB;IACA,oEAAoE;IACpE,IAAIA,QAAQ,CAAC,EAAE,EAAE;QACf,OAAO;IACT;IACA,4GAA4G;IAC5G,2FAA2F;IAC3F,mDAAmD;IACnD,MAAMK,mBAAmBC,OAAOC,MAAM,CAACR,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE;IACzD,MAAMS,gBAAgBF,OAAOC,MAAM,CAACP,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE;IACnD,IAAI,CAACK,oBAAoB,CAACG,eAAe,OAAO;IAChD,OAAOV,4BAA4BO,kBAAkBG;AACvD","ignoreList":[0]}}, - {"offset": {"line": 3687, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-routes.ts"],"sourcesContent":["import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n"],"names":["normalizeAppPath","INTERCEPTION_ROUTE_MARKERS","isInterceptionRouteAppPath","path","split","find","segment","m","startsWith","undefined","extractInterceptionRouteInformation","interceptingRoute","marker","interceptedRoute","Error","slice","concat","join","splitInterceptingRoute","length"],"mappings":";;;;;;;;AAAA,SAASA,gBAAgB,QAAQ,cAAa;;AAGvC,MAAMC,6BAA6B;IACxC;IACA;IACA;IACA;CACD,CAAS;AAIH,SAASC,2BAA2BC,IAAY;IACrD,wCAAwC;IACxC,OACEA,KACGC,KAAK,CAAC,KACNC,IAAI,CAAC,CAACC,UACLL,2BAA2BI,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD,SACtDE;AAEZ;AAiBO,SAASC,oCACdP,IAAY;IAEZ,IAAIQ;IACJ,IAAIC;IACJ,IAAIC;IAEJ,KAAK,MAAMP,WAAWH,KAAKC,KAAK,CAAC,KAAM;QACrCQ,SAASX,2BAA2BI,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD;QACnE,IAAIK,QAAQ;;YACT,CAACD,mBAAmBE,iBAAiB,GAAGV,KAAKC,KAAK,CAACQ,QAAQ;YAC5D;QACF;IACF;IAEA,IAAI,CAACD,qBAAqB,CAACC,UAAU,CAACC,kBAAkB;QACtD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,4BAA4B,EAAEX,KAAK,iFAAiF,CAAC,GADlH,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEAQ,wBAAoBX,2MAAAA,EAAiBW,mBAAmB,iDAAiD;;IAEzG,OAAQC;QACN,KAAK;YACH,oIAAoI;YACpI,IAAID,sBAAsB,KAAK;gBAC7BE,mBAAmB,CAAC,CAAC,EAAEA,kBAAkB;YAC3C,OAAO;gBACLA,mBAAmBF,oBAAoB,MAAME;YAC/C;YACA;QACF,KAAK;YACH,uHAAuH;YACvH,IAAIF,sBAAsB,KAAK;gBAC7B,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,CAAC,4BAA4B,EAAEX,KAAK,4DAA4D,CAAC,GAD7F,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YACAU,mBAAmBF,kBAChBP,KAAK,CAAC,KACNW,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACH,kBACPI,IAAI,CAAC;YACR;QACF,KAAK;YACH,kIAAkI;YAClIJ,mBAAmB,MAAMA;YACzB;QACF,KAAK;YACH,iIAAiI;YAEjI,MAAMK,yBAAyBP,kBAAkBP,KAAK,CAAC;YACvD,IAAIc,uBAAuBC,MAAM,IAAI,GAAG;gBACtC,MAAM,OAAA,cAEL,CAFK,IAAIL,MACR,CAAC,4BAA4B,EAAEX,KAAK,+DAA+D,CAAC,GADhG,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEAU,mBAAmBK,uBAChBH,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACH,kBACPI,IAAI,CAAC;YACR;QACF;YACE,MAAM,OAAA,cAAyC,CAAzC,IAAIH,MAAM,iCAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAAwC;IAClD;IAEA,OAAO;QAAEH;QAAmBE;IAAiB;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 3780, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/compute-changed-path.ts"],"sourcesContent":["import type {\n FlightRouterState,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport { INTERCEPTION_ROUTE_MARKERS } from '../../../shared/lib/router/utils/interception-routes'\nimport type { Params } from '../../../server/request/params'\nimport {\n isGroupSegment,\n DEFAULT_SEGMENT_KEY,\n PAGE_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport { matchSegment } from '../match-segments'\n\nconst removeLeadingSlash = (segment: string): string => {\n return segment[0] === '/' ? segment.slice(1) : segment\n}\n\nconst segmentToPathname = (segment: Segment): string => {\n if (typeof segment === 'string') {\n // 'children' is not a valid path -- it's technically a parallel route that corresponds with the current segment's page\n // if we don't skip it, then the computed pathname might be something like `/children` which doesn't make sense.\n if (segment === 'children') return ''\n\n return segment\n }\n\n return segment[1]\n}\n\nfunction normalizeSegments(segments: string[]): string {\n return (\n segments.reduce((acc, segment) => {\n segment = removeLeadingSlash(segment)\n if (segment === '' || isGroupSegment(segment)) {\n return acc\n }\n\n return `${acc}/${segment}`\n }, '') || '/'\n )\n}\n\nexport function extractPathFromFlightRouterState(\n flightRouterState: FlightRouterState\n): string | undefined {\n const segment = Array.isArray(flightRouterState[0])\n ? flightRouterState[0][1]\n : flightRouterState[0]\n\n if (\n segment === DEFAULT_SEGMENT_KEY ||\n INTERCEPTION_ROUTE_MARKERS.some((m) => segment.startsWith(m))\n )\n return undefined\n\n if (segment.startsWith(PAGE_SEGMENT_KEY)) return ''\n\n const segments = [segmentToPathname(segment)]\n const parallelRoutes = flightRouterState[1] ?? {}\n\n const childrenPath = parallelRoutes.children\n ? extractPathFromFlightRouterState(parallelRoutes.children)\n : undefined\n\n if (childrenPath !== undefined) {\n segments.push(childrenPath)\n } else {\n for (const [key, value] of Object.entries(parallelRoutes)) {\n if (key === 'children') continue\n\n const childPath = extractPathFromFlightRouterState(value)\n\n if (childPath !== undefined) {\n segments.push(childPath)\n }\n }\n }\n\n return normalizeSegments(segments)\n}\n\nfunction computeChangedPathImpl(\n treeA: FlightRouterState,\n treeB: FlightRouterState\n): string | null {\n const [segmentA, parallelRoutesA] = treeA\n const [segmentB, parallelRoutesB] = treeB\n\n const normalizedSegmentA = segmentToPathname(segmentA)\n const normalizedSegmentB = segmentToPathname(segmentB)\n\n if (\n INTERCEPTION_ROUTE_MARKERS.some(\n (m) =>\n normalizedSegmentA.startsWith(m) || normalizedSegmentB.startsWith(m)\n )\n ) {\n return ''\n }\n\n if (!matchSegment(segmentA, segmentB)) {\n // once we find where the tree changed, we compute the rest of the path by traversing the tree\n return extractPathFromFlightRouterState(treeB) ?? ''\n }\n\n for (const parallelRouterKey in parallelRoutesA) {\n if (parallelRoutesB[parallelRouterKey]) {\n const changedPath = computeChangedPathImpl(\n parallelRoutesA[parallelRouterKey],\n parallelRoutesB[parallelRouterKey]\n )\n if (changedPath !== null) {\n return `${segmentToPathname(segmentB)}/${changedPath}`\n }\n }\n }\n\n return null\n}\n\nexport function computeChangedPath(\n treeA: FlightRouterState,\n treeB: FlightRouterState\n): string | null {\n const changedPath = computeChangedPathImpl(treeA, treeB)\n\n if (changedPath == null || changedPath === '/') {\n return changedPath\n }\n\n // lightweight normalization to remove route groups\n return normalizeSegments(changedPath.split('/'))\n}\n\n/**\n * Recursively extracts dynamic parameters from FlightRouterState.\n */\nexport function getSelectedParams(\n currentTree: FlightRouterState,\n params: Params = {}\n): Params {\n const parallelRoutes = currentTree[1]\n\n for (const parallelRoute of Object.values(parallelRoutes)) {\n const segment = parallelRoute[0]\n const isDynamicParameter = Array.isArray(segment)\n const segmentValue = isDynamicParameter ? segment[1] : segment\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) continue\n\n // Ensure catchAll and optional catchall are turned into an array\n const isCatchAll =\n isDynamicParameter && (segment[2] === 'c' || segment[2] === 'oc')\n\n if (isCatchAll) {\n params[segment[0]] = segment[1].split('/')\n } else if (isDynamicParameter) {\n params[segment[0]] = segment[1]\n }\n\n params = getSelectedParams(parallelRoute, params)\n }\n\n return params\n}\n"],"names":["INTERCEPTION_ROUTE_MARKERS","isGroupSegment","DEFAULT_SEGMENT_KEY","PAGE_SEGMENT_KEY","matchSegment","removeLeadingSlash","segment","slice","segmentToPathname","normalizeSegments","segments","reduce","acc","extractPathFromFlightRouterState","flightRouterState","Array","isArray","some","m","startsWith","undefined","parallelRoutes","childrenPath","children","push","key","value","Object","entries","childPath","computeChangedPathImpl","treeA","treeB","segmentA","parallelRoutesA","segmentB","parallelRoutesB","normalizedSegmentA","normalizedSegmentB","parallelRouterKey","changedPath","computeChangedPath","split","getSelectedParams","currentTree","params","parallelRoute","values","isDynamicParameter","segmentValue","isCatchAll"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3889, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/handle-mutable.ts"],"sourcesContent":["import { computeChangedPath } from './compute-changed-path'\nimport type {\n Mutable,\n ReadonlyReducerState,\n ReducerState,\n} from './router-reducer-types'\n\nfunction isNotUndefined(value: T): value is Exclude {\n return typeof value !== 'undefined'\n}\n\nexport function handleMutable(\n state: ReadonlyReducerState,\n mutable: Mutable\n): ReducerState {\n // shouldScroll is true by default, can override to false.\n const shouldScroll = mutable.shouldScroll ?? true\n\n let previousNextUrl = state.previousNextUrl\n let nextUrl = state.nextUrl\n\n if (isNotUndefined(mutable.patchedTree)) {\n // If we received a patched tree, we need to compute the changed path.\n const changedPath = computeChangedPath(state.tree, mutable.patchedTree)\n if (changedPath) {\n // If the tree changed, we need to update the nextUrl\n previousNextUrl = nextUrl\n nextUrl = changedPath\n } else if (!nextUrl) {\n // if the tree ends up being the same (ie, no changed path), and we don't have a nextUrl, then we should use the canonicalUrl\n nextUrl = state.canonicalUrl\n }\n // otherwise this will be a no-op and continue to use the existing nextUrl\n }\n\n return {\n // Set href.\n canonicalUrl: mutable.canonicalUrl ?? state.canonicalUrl,\n renderedSearch: mutable.renderedSearch ?? state.renderedSearch,\n pushRef: {\n pendingPush: isNotUndefined(mutable.pendingPush)\n ? mutable.pendingPush\n : state.pushRef.pendingPush,\n mpaNavigation: isNotUndefined(mutable.mpaNavigation)\n ? mutable.mpaNavigation\n : state.pushRef.mpaNavigation,\n preserveCustomHistoryState: isNotUndefined(\n mutable.preserveCustomHistoryState\n )\n ? mutable.preserveCustomHistoryState\n : state.pushRef.preserveCustomHistoryState,\n },\n // All navigation requires scroll and focus management to trigger.\n focusAndScrollRef: {\n apply: shouldScroll\n ? isNotUndefined(mutable?.scrollableSegments)\n ? true\n : state.focusAndScrollRef.apply\n : // If shouldScroll is false then we should not apply scroll and focus management.\n false,\n onlyHashChange: mutable.onlyHashChange || false,\n hashFragment: shouldScroll\n ? // Empty hash should trigger default behavior of scrolling layout into view.\n // #top is handled in layout-router.\n mutable.hashFragment && mutable.hashFragment !== ''\n ? // Remove leading # and decode hash to make non-latin hashes work.\n decodeURIComponent(mutable.hashFragment.slice(1))\n : state.focusAndScrollRef.hashFragment\n : // If shouldScroll is false then we should not apply scroll and focus management.\n null,\n segmentPaths: shouldScroll\n ? (mutable?.scrollableSegments ?? state.focusAndScrollRef.segmentPaths)\n : // If shouldScroll is false then we should not apply scroll and focus management.\n [],\n },\n // Apply cache.\n cache: mutable.cache ? mutable.cache : state.cache,\n // Apply patched router state.\n tree: isNotUndefined(mutable.patchedTree)\n ? mutable.patchedTree\n : state.tree,\n nextUrl,\n previousNextUrl: previousNextUrl,\n debugInfo: mutable.collectedDebugInfo ?? null,\n }\n}\n"],"names":["computeChangedPath","isNotUndefined","value","handleMutable","state","mutable","shouldScroll","previousNextUrl","nextUrl","patchedTree","changedPath","tree","canonicalUrl","renderedSearch","pushRef","pendingPush","mpaNavigation","preserveCustomHistoryState","focusAndScrollRef","apply","scrollableSegments","onlyHashChange","hashFragment","decodeURIComponent","slice","segmentPaths","cache","debugInfo","collectedDebugInfo"],"mappings":";;;;AAAA,SAASA,kBAAkB,QAAQ,yBAAwB;;AAO3D,SAASC,eAAkBC,KAAQ;IACjC,OAAO,OAAOA,UAAU;AAC1B;AAEO,SAASC,cACdC,KAA2B,EAC3BC,OAAgB;IAEhB,0DAA0D;IAC1D,MAAMC,eAAeD,QAAQC,YAAY,IAAI;IAE7C,IAAIC,kBAAkBH,MAAMG,eAAe;IAC3C,IAAIC,UAAUJ,MAAMI,OAAO;IAE3B,IAAIP,eAAeI,QAAQI,WAAW,GAAG;QACvC,sEAAsE;QACtE,MAAMC,kBAAcV,oOAAAA,EAAmBI,MAAMO,IAAI,EAAEN,QAAQI,WAAW;QACtE,IAAIC,aAAa;YACf,qDAAqD;YACrDH,kBAAkBC;YAClBA,UAAUE;QACZ,OAAO,IAAI,CAACF,SAAS;YACnB,6HAA6H;YAC7HA,UAAUJ,MAAMQ,YAAY;QAC9B;IACA,0EAA0E;IAC5E;IAEA,OAAO;QACL,YAAY;QACZA,cAAcP,QAAQO,YAAY,IAAIR,MAAMQ,YAAY;QACxDC,gBAAgBR,QAAQQ,cAAc,IAAIT,MAAMS,cAAc;QAC9DC,SAAS;YACPC,aAAad,eAAeI,QAAQU,WAAW,IAC3CV,QAAQU,WAAW,GACnBX,MAAMU,OAAO,CAACC,WAAW;YAC7BC,eAAef,eAAeI,QAAQW,aAAa,IAC/CX,QAAQW,aAAa,GACrBZ,MAAMU,OAAO,CAACE,aAAa;YAC/BC,4BAA4BhB,eAC1BI,QAAQY,0BAA0B,IAEhCZ,QAAQY,0BAA0B,GAClCb,MAAMU,OAAO,CAACG,0BAA0B;QAC9C;QACA,kEAAkE;QAClEC,mBAAmB;YACjBC,OAAOb,eACHL,eAAeI,SAASe,sBACtB,OACAhB,MAAMc,iBAAiB,CAACC,KAAK,GAE/B;YACJE,gBAAgBhB,QAAQgB,cAAc,IAAI;YAC1CC,cAAchB,eAEV,AACAD,QAAQiB,YAAY,IAAIjB,QAAQiB,IADI,QACQ,KAAK,KAE/CC,mBAAmBlB,QAAQiB,YAAY,CAACE,KAAK,CAAC,MAC9CpB,MAAMc,iBAAiB,CAACI,YAAY,GAEtC;YACJG,cAAcnB,eACTD,SAASe,sBAAsBhB,MAAMc,iBAAiB,CAACO,YAAY,GAEpE,EAAE;QACR;QACA,eAAe;QACfC,OAAOrB,QAAQqB,KAAK,GAAGrB,QAAQqB,KAAK,GAAGtB,MAAMsB,KAAK;QAClD,8BAA8B;QAC9Bf,MAAMV,eAAeI,QAAQI,WAAW,IACpCJ,QAAQI,WAAW,GACnBL,MAAMO,IAAI;QACdH;QACAD,iBAAiBA;QACjBoB,WAAWtB,QAAQuB,kBAAkB,IAAI;IAC3C;AACF","ignoreList":[0]}}, - {"offset": {"line": 3945, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/app-router-types.ts"],"sourcesContent":["/**\n * App Router types - Client-safe types for the Next.js App Router\n *\n * This file contains type definitions that can be safely imported\n * by both client-side and server-side code without circular dependencies.\n */\n\nimport type React from 'react'\n\nexport type LoadingModuleData =\n | [React.JSX.Element, React.ReactNode, React.ReactNode]\n | null\n\n/** viewport metadata node */\nexport type HeadData = React.ReactNode\n\nexport type ChildSegmentMap = Map\n\n/**\n * Cache node used in app-router / layout-router.\n */\n\nexport type CacheNode = {\n /**\n * When rsc is not null, it represents the RSC data for the\n * corresponding segment.\n *\n * `null` is a valid React Node but because segment data is always a\n * component, we can use `null` to represent empty. When it is\n * null, it represents missing data, and rendering should suspend.\n */\n rsc: React.ReactNode\n\n /**\n * Represents a static version of the segment that can be shown immediately,\n * and may or may not contain dynamic holes. It's prefetched before a\n * navigation occurs.\n *\n * During rendering, we will choose whether to render `rsc` or `prefetchRsc`\n * with `useDeferredValue`. As with the `rsc` field, a value of `null` means\n * no value was provided. In this case, the LayoutRouter will go straight to\n * rendering the `rsc` value; if that one is also missing, it will suspend and\n * trigger a lazy fetch.\n */\n prefetchRsc: React.ReactNode\n\n prefetchHead: HeadData | null\n\n head: HeadData\n\n loading: LoadingModuleData | Promise\n\n parallelRoutes: Map\n\n /**\n * The timestamp of the navigation that last updated the CacheNode's data. If\n * a CacheNode is reused from a previous navigation, this value is not\n * updated. Used to track the staleness of the data.\n */\n navigatedAt: number\n}\n\nexport type DynamicParamTypes =\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall'\n | 'dynamic'\n | 'dynamic-intercepted-(..)(..)'\n | 'dynamic-intercepted-(.)'\n | 'dynamic-intercepted-(..)'\n | 'dynamic-intercepted-(...)'\n\nexport type DynamicParamTypesShort =\n | 'c'\n | 'ci(..)(..)'\n | 'ci(.)'\n | 'ci(..)'\n | 'ci(...)'\n | 'oc'\n | 'd'\n | 'di(..)(..)'\n | 'di(.)'\n | 'di(..)'\n | 'di(...)'\n\nexport type Segment =\n | string\n | [\n // Param name\n paramName: string,\n // Param cache key (almost the same as the value, but arrays are\n // concatenated into strings)\n // TODO: We should change this to just be the value. Currently we convert\n // it back to a value when passing to useParams. It only needs to be\n // a string when converted to a a cache key, but that doesn't mean we\n // need to store it as that representation.\n paramCacheKey: string,\n // Dynamic param type\n dynamicParamType: DynamicParamTypesShort,\n ]\n\n/**\n * Router state\n */\nexport type FlightRouterState = [\n segment: Segment,\n parallelRoutes: { [parallelRouterKey: string]: FlightRouterState },\n url?: string | null,\n /**\n * \"refresh\" and \"refetch\", despite being similarly named, have different\n * semantics:\n * - \"refetch\" is used during a request to inform the server where rendering\n * should start from.\n *\n * - \"refresh\" is used by the client to mark that a segment should re-fetch the\n * data from the server for the current segment. It uses the \"url\" property\n * above to determine where to fetch from.\n *\n * - \"inside-shared-layout\" is used during a prefetch request to inform the\n * server that even if the segment matches, it should be treated as if it's\n * within the \"new\" part of a navigation — inside the shared layout. If\n * the segment doesn't match, then it has no effect, since it would be\n * treated as new regardless. If it does match, though, the server does not\n * need to render it, because the client already has it.\n *\n * - \"metadata-only\" instructs the server to skip rendering the segments and\n * only send the head data.\n *\n * A bit confusing, but that's because it has only one extremely narrow use\n * case — during a non-PPR prefetch, the server uses it to find the first\n * loading boundary beneath a shared layout.\n *\n * TODO: We should rethink the protocol for dynamic requests. It might not\n * make sense for the client to send a FlightRouterState, since this type is\n * overloaded with concerns.\n */\n refresh?:\n | 'refetch'\n | 'refresh'\n | 'inside-shared-layout'\n | 'metadata-only'\n | null,\n isRootLayout?: boolean,\n /**\n * Only present when responding to a tree prefetch request. Indicates whether\n * there is a loading boundary somewhere in the tree. The client cache uses\n * this to determine if it can skip the data prefetch request.\n */\n hasLoadingBoundary?: HasLoadingBoundary,\n]\n\nexport const enum HasLoadingBoundary {\n // There is a loading boundary in this particular segment\n SegmentHasLoadingBoundary = 1,\n // There is a loading boundary somewhere in the subtree (but not in\n // this segment)\n SubtreeHasLoadingBoundary = 2,\n // There is no loading boundary in this segment or any of its descendants\n SubtreeHasNoLoadingBoundary = 3,\n}\n\n/**\n * Individual Flight response path\n */\nexport type FlightSegmentPath =\n // Uses `any` as repeating pattern can't be typed.\n | any[]\n // Looks somewhat like this\n | [\n segment: Segment,\n parallelRouterKey: string,\n segment: Segment,\n parallelRouterKey: string,\n segment: Segment,\n parallelRouterKey: string,\n ]\n\n/**\n * Represents a tree of segments and the Flight data (i.e. React nodes) that\n * correspond to each one. The tree is isomorphic to the FlightRouterState;\n * however in the future we want to be able to fetch arbitrary partial segments\n * without having to fetch all its children. So this response format will\n * likely change.\n */\nexport type CacheNodeSeedData = [\n node: React.ReactNode | null,\n parallelRoutes: {\n [parallelRouterKey: string]: CacheNodeSeedData | null\n },\n loading: LoadingModuleData | Promise,\n isPartial: boolean,\n /** TODO: this doesn't feel like it belongs here, because it's only used during build, in `collectSegmentData` */\n hasRuntimePrefetch: boolean,\n]\n\nexport type FlightDataSegment = [\n /* segment of the rendered slice: */ Segment,\n /* treePatch */ FlightRouterState,\n /* cacheNodeSeedData */ CacheNodeSeedData | null, // Can be null during prefetch if there's no loading component\n /* head: viewport */ HeadData,\n /* isHeadPartial */ boolean,\n]\n\nexport type FlightDataPath =\n // Uses `any` as repeating pattern can't be typed.\n | any[]\n // Looks somewhat like this\n | [\n // Holds full path to the segment.\n ...FlightSegmentPath[],\n ...FlightDataSegment,\n ]\n\n/**\n * The Flight response data\n */\nexport type FlightData = Array | string\n\nexport type ActionResult = Promise\n\nexport type InitialRSCPayload = {\n /** buildId */\n b: string\n /** initialCanonicalUrlParts */\n c: string[]\n /** initialRenderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n /** initialFlightData */\n f: FlightDataPath[]\n /** missingSlots */\n m: Set | undefined\n /** GlobalError */\n G: [React.ComponentType, React.ReactNode | undefined]\n /** prerendered */\n S: boolean\n}\n\n// Response from `createFromFetch` for normal rendering\nexport type NavigationFlightResponse = {\n /** buildId */\n b: string\n /** flightData */\n f: FlightData\n /** prerendered */\n S: boolean\n /** renderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n /** runtimePrefetch - [isPartial, staleTime]. Only present in runtime prefetch responses. */\n rp?: [boolean, number]\n}\n\n// Response from `createFromFetch` for server actions. Action's flight data can be null\nexport type ActionFlightResponse = {\n /** actionResult */\n a: ActionResult\n /** buildId */\n b: string\n /** flightData */\n f: FlightData\n /** renderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n}\n\nexport type RSCPayload =\n | InitialRSCPayload\n | NavigationFlightResponse\n | ActionFlightResponse\n"],"names":["HasLoadingBoundary"],"mappings":"AAAA;;;;;CAKC,GAqJD;;;;AAAO,IAAWA,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;IAChB,yDAAyD;;IAEzD,mEAAmE;IACnE,gBAAgB;;IAEhB,yEAAyE;;WANzDA;MAQjB","ignoreList":[0]}}, - {"offset": {"line": 3968, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/types.ts"],"sourcesContent":["/**\n * Shared types and constants for the Segment Cache.\n */\n\nexport const enum NavigationResultTag {\n MPA,\n Success,\n NoOp,\n Async,\n}\n\n/**\n * The priority of the prefetch task. Higher numbers are higher priority.\n */\nexport const enum PrefetchPriority {\n /**\n * Assigned to the most recently hovered/touched link. Special network\n * bandwidth is reserved for this task only. There's only ever one Intent-\n * priority task at a time; when a new Intent task is scheduled, the previous\n * one is bumped down to Default.\n */\n Intent = 2,\n /**\n * The default priority for prefetch tasks.\n */\n Default = 1,\n /**\n * Assigned to tasks when they spawn non-blocking background work, like\n * revalidating a partially cached entry to see if more data is available.\n */\n Background = 0,\n}\n\nexport const enum FetchStrategy {\n // Deliberately ordered so we can easily compare two segments\n // and determine if one segment is \"more specific\" than another\n // (i.e. if it's likely that it contains more data)\n LoadingBoundary = 0,\n PPR = 1,\n PPRRuntime = 2,\n Full = 3,\n}\n\n/**\n * A subset of fetch strategies used for prefetch tasks.\n * A prefetch task can't know if it should use `PPR` or `LoadingBoundary`\n * until we complete the initial tree prefetch request, so we use `PPR` to signal both cases\n * and adjust it based on the route when actually fetching.\n * */\nexport type PrefetchTaskFetchStrategy =\n | FetchStrategy.PPR\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full\n"],"names":["NavigationResultTag","PrefetchPriority","FetchStrategy"],"mappings":"AAAA;;CAEC,GAED;;;;;;;;AAAO,IAAWA,sBAAAA,WAAAA,GAAAA,SAAAA,mBAAAA;;;;;WAAAA;MAKjB;AAKM,IAAWC,mBAAAA,WAAAA,GAAAA,SAAAA,gBAAAA;IAChB;;;;;GAKC,GAAA,gBAAA,CAAA,gBAAA,CAAA,SAAA,GAAA,EAAA,GAAA;IAED;;GAEC,GAAA,gBAAA,CAAA,gBAAA,CAAA,UAAA,GAAA,EAAA,GAAA;IAED;;;GAGC,GAAA,gBAAA,CAAA,gBAAA,CAAA,aAAA,GAAA,EAAA,GAAA;WAfeA;MAiBjB;AAEM,IAAWC,gBAAAA,WAAAA,GAAAA,SAAAA,aAAAA;IAChB,6DAA6D;IAC7D,+DAA+D;IAC/D,mDAAmD;;;;;WAHnCA;MAQjB","ignoreList":[0]}}, - {"offset": {"line": 4015, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/lru.ts"],"sourcesContent":["import { deleteMapEntry } from './cache-map'\nimport type { UnknownMapEntry } from './cache-map'\n\n// We use an LRU for memory management. We must update this whenever we add or\n// remove a new cache entry, or when an entry changes size.\n\nlet head: UnknownMapEntry | null = null\nlet didScheduleCleanup: boolean = false\nlet lruSize: number = 0\n\n// TODO: I chose the max size somewhat arbitrarily. Consider setting this based\n// on navigator.deviceMemory, or some other heuristic. We should make this\n// customizable via the Next.js config, too.\nconst maxLruSize = 50 * 1024 * 1024 // 50 MB\n\nexport function lruPut(node: UnknownMapEntry) {\n if (head === node) {\n // Already at the head\n return\n }\n const prev = node.prev\n const next = node.next\n if (next === null || prev === null) {\n // This is an insertion\n lruSize += node.size\n // Whenever we add an entry, we need to check if we've exceeded the\n // max size. We don't evict entries immediately; they're evicted later in\n // an asynchronous task.\n ensureCleanupIsScheduled()\n } else {\n // This is a move. Remove from its current position.\n prev.next = next\n next.prev = prev\n }\n\n // Move to the front of the list\n if (head === null) {\n // This is the first entry\n node.prev = node\n node.next = node\n } else {\n // Add to the front of the list\n const tail = head.prev\n node.prev = tail\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n tail.next = node\n }\n node.next = head\n head.prev = node\n }\n head = node\n}\n\nexport function updateLruSize(node: UnknownMapEntry, newNodeSize: number) {\n // This is a separate function from `put` so that we can resize the entry\n // regardless of whether it's currently being tracked by the LRU.\n const prevNodeSize = node.size\n node.size = newNodeSize\n if (node.next === null) {\n // This entry is not currently being tracked by the LRU.\n return\n }\n // Update the total LRU size\n lruSize = lruSize - prevNodeSize + newNodeSize\n ensureCleanupIsScheduled()\n}\n\nexport function deleteFromLru(deleted: UnknownMapEntry) {\n const next = deleted.next\n const prev = deleted.prev\n if (next !== null && prev !== null) {\n lruSize -= deleted.size\n\n deleted.next = null\n deleted.prev = null\n\n // Remove from the list\n if (head === deleted) {\n // Update the head\n if (next === head) {\n // This was the last entry\n head = null\n } else {\n head = next\n prev.next = next\n next.prev = prev\n }\n } else {\n prev.next = next\n next.prev = prev\n }\n } else {\n // Already deleted\n }\n}\n\nfunction ensureCleanupIsScheduled() {\n if (didScheduleCleanup || lruSize <= maxLruSize) {\n return\n }\n didScheduleCleanup = true\n requestCleanupCallback(cleanup)\n}\n\nfunction cleanup() {\n didScheduleCleanup = false\n\n // Evict entries until we're at 90% capacity. We can assume this won't\n // infinite loop because even if `maxLruSize` were 0, eventually\n // `deleteFromLru` sets `head` to `null` when we run out entries.\n const ninetyPercentMax = maxLruSize * 0.9\n while (lruSize > ninetyPercentMax && head !== null) {\n const tail = head.prev\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n // Delete the entry from the map. In turn, this will remove it from\n // the LRU.\n deleteMapEntry(tail)\n }\n }\n}\n\nconst requestCleanupCallback =\n typeof requestIdleCallback === 'function'\n ? requestIdleCallback\n : (cb: () => void) => setTimeout(cb, 0)\n"],"names":["deleteMapEntry","head","didScheduleCleanup","lruSize","maxLruSize","lruPut","node","prev","next","size","ensureCleanupIsScheduled","tail","updateLruSize","newNodeSize","prevNodeSize","deleteFromLru","deleted","requestCleanupCallback","cleanup","ninetyPercentMax","requestIdleCallback","cb","setTimeout"],"mappings":";;;;;;;;AAAA,SAASA,cAAc,QAAQ,cAAa;;AAG5C,8EAA8E;AAC9E,2DAA2D;AAE3D,IAAIC,OAA+B;AACnC,IAAIC,qBAA8B;AAClC,IAAIC,UAAkB;AAEtB,+EAA+E;AAC/E,0EAA0E;AAC1E,4CAA4C;AAC5C,MAAMC,aAAa,KAAK,OAAO,KAAK,QAAQ;;AAErC,SAASC,OAAOC,IAAqB;IAC1C,IAAIL,SAASK,MAAM;QACjB,sBAAsB;QACtB;IACF;IACA,MAAMC,OAAOD,KAAKC,IAAI;IACtB,MAAMC,OAAOF,KAAKE,IAAI;IACtB,IAAIA,SAAS,QAAQD,SAAS,MAAM;QAClC,uBAAuB;QACvBJ,WAAWG,KAAKG,IAAI;QACpB,mEAAmE;QACnE,yEAAyE;QACzE,wBAAwB;QACxBC;IACF,OAAO;QACL,oDAAoD;QACpDH,KAAKC,IAAI,GAAGA;QACZA,KAAKD,IAAI,GAAGA;IACd;IAEA,gCAAgC;IAChC,IAAIN,SAAS,MAAM;QACjB,0BAA0B;QAC1BK,KAAKC,IAAI,GAAGD;QACZA,KAAKE,IAAI,GAAGF;IACd,OAAO;QACL,+BAA+B;QAC/B,MAAMK,OAAOV,KAAKM,IAAI;QACtBD,KAAKC,IAAI,GAAGI;QACZ,sEAAsE;QACtE,IAAIA,SAAS,MAAM;YACjBA,KAAKH,IAAI,GAAGF;QACd;QACAA,KAAKE,IAAI,GAAGP;QACZA,KAAKM,IAAI,GAAGD;IACd;IACAL,OAAOK;AACT;AAEO,SAASM,cAAcN,IAAqB,EAAEO,WAAmB;IACtE,yEAAyE;IACzE,iEAAiE;IACjE,MAAMC,eAAeR,KAAKG,IAAI;IAC9BH,KAAKG,IAAI,GAAGI;IACZ,IAAIP,KAAKE,IAAI,KAAK,MAAM;QACtB,wDAAwD;QACxD;IACF;IACA,4BAA4B;IAC5BL,UAAUA,UAAUW,eAAeD;IACnCH;AACF;AAEO,SAASK,cAAcC,OAAwB;IACpD,MAAMR,OAAOQ,QAAQR,IAAI;IACzB,MAAMD,OAAOS,QAAQT,IAAI;IACzB,IAAIC,SAAS,QAAQD,SAAS,MAAM;QAClCJ,WAAWa,QAAQP,IAAI;QAEvBO,QAAQR,IAAI,GAAG;QACfQ,QAAQT,IAAI,GAAG;QAEf,uBAAuB;QACvB,IAAIN,SAASe,SAAS;YACpB,kBAAkB;YAClB,IAAIR,SAASP,MAAM;gBACjB,0BAA0B;gBAC1BA,OAAO;YACT,OAAO;gBACLA,OAAOO;gBACPD,KAAKC,IAAI,GAAGA;gBACZA,KAAKD,IAAI,GAAGA;YACd;QACF,OAAO;YACLA,KAAKC,IAAI,GAAGA;YACZA,KAAKD,IAAI,GAAGA;QACd;IACF,OAAO;IACL,kBAAkB;IACpB;AACF;AAEA,SAASG;IACP,IAAIR,sBAAsBC,WAAWC,YAAY;QAC/C;IACF;IACAF,qBAAqB;IACrBe,uBAAuBC;AACzB;AAEA,SAASA;IACPhB,qBAAqB;IAErB,sEAAsE;IACtE,gEAAgE;IAChE,iEAAiE;IACjE,MAAMiB,mBAAmBf,aAAa;IACtC,MAAOD,UAAUgB,oBAAoBlB,SAAS,KAAM;QAClD,MAAMU,OAAOV,KAAKM,IAAI;QACtB,sEAAsE;QACtE,IAAII,SAAS,MAAM;YACjB,mEAAmE;YACnE,WAAW;gBACXX,iNAAAA,EAAeW;QACjB;IACF;AACF;AAEA,MAAMM,yBACJ,OAAOG,wBAAwB,aAC3BA,sBACA,CAACC,KAAmBC,WAAWD,IAAI","ignoreList":[0]}}, - {"offset": {"line": 4139, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache-map.ts"],"sourcesContent":["import type { VaryPath } from './vary-path'\nimport { lruPut, updateLruSize, deleteFromLru } from './lru'\n\n/**\n * A specialized data type for storing multi-key cache entries.\n *\n * The basic structure is a map whose keys are tuples, called the keypath.\n * When querying the cache, keypaths are compared per-element.\n *\n * Example:\n * set(map, ['https://localhost', 'foo/bar/baz'], 'yay');\n * get(map, ['https://localhost', 'foo/bar/baz']) -> 'yay'\n *\n * NOTE: Array syntax is used in these examples for illustration purposes, but\n * in reality the paths are lists.\n * \n * The parts of the keypath represent the different inputs that contribute\n * to the entry value. To illustrate, if you were to use this data type to store\n * HTTP responses, the keypath would include the URL and everything listed by\n * the Vary header.\n * \n * See vary-path.ts for more details.\n *\n * The order of elements in a keypath must be consistent between lookups to\n * be considered the same, but besides that, the order of the keys is not\n * semantically meaningful.\n *\n * Keypaths may include a special kind of key called Fallback. When an entry is\n * stored with Fallback as part of its keypath, it means that the entry does not\n * vary by that key. When querying the cache, if an exact match is not found for\n * a keypath, the cache will check for a Fallback match instead. Each element of\n * the keypath may have a Fallback, so retrieval is an O(n ^ 2) operation, but\n * it's expected that keypaths are relatively short.\n *\n * Example:\n * set(cacheMap, ['store', 'product', 1], PRODUCT_PAGE_1);\n * set(cacheMap, ['store', 'product', Fallback], GENERIC_PRODUCT_PAGE);\n *\n * // Exact match\n * get(cacheMap, ['store', 'product', 1]) -> PRODUCT_PAGE_1\n *\n * // Fallback match\n * get(cacheMap, ['store', 'product', 2]) -> GENERIC_PRODUCT_PAGE\n *\n * Because we have the Fallback mechanism, we can impose a constraint that\n * regular JS maps do not have: a value cannot be stored at multiple keypaths\n * simultaneously. These cases should be expressed with Fallback keys instead.\n *\n * Additionally, because values only exist at a single keypath at a time, we\n * can optimize successive lookups by caching the internal map entry on the\n * value itself, using the `ref` field. This is especially useful because it\n * lets us skip the O(n ^ 2) lookup that occurs when Fallback entries\n * are present.\n *\n\n * How to decide if stuff belongs in here, or in cache.ts?\n * -------------------------------------------------------\n * \n * Anything to do with retrival, lifetimes, or eviction needs to go in this\n * module because it affects the fallback algorithm. For example, when\n * performing a lookup, if an entry is stale, it needs to be treated as\n * semantically equivalent to if the entry was not present at all.\n * \n * If there's logic that's not related to the fallback algorithm, though, we\n * should prefer to put it in cache.ts.\n */\n\n// The protocol that values must implement. In practice, the only two types that\n// we ever actually deal with in this module are RouteCacheEntry and\n// SegmentCacheEntry; this is just to keep track of the coupling so we don't\n// leak concerns between the modules unnecessarily.\nexport interface MapValue {\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\n/**\n * Represents a node in the cache map and LRU.\n * MapEntry structurally satisfies this interface for any V extends MapValue.\n *\n * The LRU can contain entries of different value types\n * (e.g., both RouteCacheEntry and SegmentCacheEntry). This interface captures\n * the common structure needed for cache map and LRU operations without\n * requiring knowledge of the specific value type.\n */\nexport interface MapEntry {\n // Cache map structure fields\n parent: MapEntry | null\n key: unknown\n map: Map> | null\n value: V | null\n\n // LRU linked list fields\n prev: MapEntry | null\n next: MapEntry | null\n size: number\n}\n\n/**\n * A looser type for MapEntry\n * This allows the LRU to work with entries of different\n * value types while still providing type safety.\n *\n * The `map` field lets Map> be assignable to this\n * type since we're only reading from the map, not inserting into it.\n */\nexport type UnknownMapEntry = {\n parent: UnknownMapEntry | null\n key: unknown\n map: Pick, 'get' | 'delete' | 'size'> | null\n value: MapValue | null\n\n prev: UnknownMapEntry | null\n next: UnknownMapEntry | null\n size: number\n}\n\n// The CacheMap type is just the root entry of the map.\nexport type CacheMap = MapEntry\n\nexport type FallbackType = { __brand: 'Fallback' }\nexport const Fallback = {} as FallbackType\n\n// This is a special internal key that is used for \"revalidation\" entries. It's\n// an implementation detail that shouldn't leak outside of this module.\nconst Revalidation = {}\n\nexport function createCacheMap(): CacheMap {\n const cacheMap: MapEntry = {\n parent: null,\n key: null,\n value: null,\n map: null,\n\n // LRU-related fields\n prev: null,\n next: null,\n size: 0,\n }\n return cacheMap\n}\n\nfunction getOrInitialize(\n cacheMap: CacheMap,\n keys: VaryPath,\n isRevalidation: boolean\n): MapEntry {\n // Go through each level of keys until we find the entry that matches, or\n // create a new entry if one doesn't exist.\n //\n // This function will only return entries that match the keypath _exactly_.\n // Unlike getWithFallback, it will not access fallback entries unless it's\n // explicitly part of the keypath.\n let entry = cacheMap\n let remainingKeys: VaryPath | null = keys\n let key: unknown | null = null\n while (true) {\n const previousKey = key\n if (remainingKeys !== null) {\n key = remainingKeys.value\n remainingKeys = remainingKeys.parent\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath. The \"normal\" entry is its parent.\n\n // However, if the parent entry is currently empty, we don't need to store\n // this as a revalidation entry. Just insert the revalidation into the\n // normal slot.\n if (entry.value === null) {\n return entry\n }\n\n // Otheriwse, create a child entry.\n key = Revalidation\n } else {\n // There are no more keys. This is the terminal entry.\n break\n }\n\n let map = entry.map\n if (map !== null) {\n const existingEntry = map.get(key)\n if (existingEntry !== undefined) {\n // Found a match. Keep going.\n entry = existingEntry\n continue\n }\n } else {\n map = new Map()\n entry.map = map\n }\n // No entry exists yet at this level. Create a new one.\n const newEntry: MapEntry = {\n parent: entry,\n key,\n value: null,\n map: null,\n\n // LRU-related fields\n prev: null,\n next: null,\n size: 0,\n }\n map.set(key, newEntry)\n entry = newEntry\n }\n\n return entry\n}\n\nexport function getFromCacheMap(\n now: number,\n currentCacheVersion: number,\n rootEntry: CacheMap,\n keys: VaryPath,\n isRevalidation: boolean\n): V | null {\n const entry = getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n rootEntry,\n keys,\n isRevalidation,\n 0\n )\n if (entry === null || entry.value === null) {\n return null\n }\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry)\n return entry.value\n}\n\nexport function isValueExpired(\n now: number,\n currentCacheVersion: number,\n value: MapValue\n): boolean {\n return value.staleAt <= now || value.version < currentCacheVersion\n}\n\nfunction lazilyEvictIfNeeded(\n now: number,\n currentCacheVersion: number,\n entry: MapEntry\n) {\n // We have a matching entry, but before we can return it, we need to check if\n // it's still fresh. Otherwise it should be treated the same as a cache miss.\n\n if (entry.value === null) {\n // This entry has no value, so there's nothing to evict.\n return entry\n }\n\n const value = entry.value\n if (isValueExpired(now, currentCacheVersion, value)) {\n // The value expired. Lazily evict it from the cache, and return null. This\n // is conceptually the same as a cache miss.\n deleteMapEntry(entry)\n return null\n }\n\n // The matched entry has not expired. Return it.\n return entry\n}\n\nfunction getEntryWithFallbackImpl(\n now: number,\n currentCacheVersion: number,\n entry: MapEntry,\n keys: VaryPath | null,\n isRevalidation: boolean,\n previousKey: unknown | null\n): MapEntry | null {\n // This is similar to getExactEntry, but if an exact match is not found for\n // a key, it will return the fallback entry instead. This is recursive at\n // every level, e.g. an entry with keypath [a, Fallback, c, Fallback] is\n // valid match for [a, b, c, d].\n //\n // It will return the most specific match available.\n let key\n let remainingKeys: VaryPath | null\n if (keys !== null) {\n key = keys.value\n remainingKeys = keys.parent\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath.\n key = Revalidation\n remainingKeys = null\n } else {\n // There are no more keys. This is the terminal entry.\n\n // TODO: When performing a lookup during a navigation, as opposed to a\n // prefetch, we may want to skip entries that are Pending if there's also\n // a Fulfilled fallback entry. Tricky to say, though, since if it's\n // already pending, it's likely to stream in soon. Maybe we could do this\n // just on slow connections and offline mode.\n\n return lazilyEvictIfNeeded(now, currentCacheVersion, entry)\n }\n const map = entry.map\n if (map !== null) {\n const existingEntry = map.get(key)\n if (existingEntry !== undefined) {\n // Found an exact match for this key. Keep searching.\n const result = getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n existingEntry,\n remainingKeys,\n isRevalidation,\n key\n )\n if (result !== null) {\n return result\n }\n }\n // No match found for this key. Check if there's a fallback.\n const fallbackEntry = map.get(Fallback)\n if (fallbackEntry !== undefined) {\n // Found a fallback for this key. Keep searching.\n return getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n fallbackEntry,\n remainingKeys,\n isRevalidation,\n key\n )\n }\n }\n return null\n}\n\nexport function setInCacheMap(\n cacheMap: CacheMap,\n keys: VaryPath,\n value: V,\n isRevalidation: boolean\n): void {\n // Add a value to the map at the given keypath. If the value is already\n // part of the map, it's removed from its previous keypath. (NOTE: This is\n // unlike a regular JS map, but the behavior is intentional.)\n const entry = getOrInitialize(cacheMap, keys, isRevalidation)\n setMapEntryValue(entry, value)\n\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry)\n updateLruSize(entry, value.size)\n}\n\nfunction setMapEntryValue(entry: UnknownMapEntry, value: MapValue): void {\n if (entry.value !== null) {\n // There's already a value at the given keypath. Disconnect the old value\n // from the map. We're not calling `deleteMapEntry` here because the\n // entry itself is still in the map. We just want to overwrite its value.\n dropRef(entry.value)\n entry.value = null\n }\n\n // This value may already be in the map at a different keypath.\n // Grab a reference before we overwrite it.\n const oldEntry = value.ref\n\n entry.value = value\n value.ref = entry\n\n updateLruSize(entry, value.size)\n\n if (oldEntry !== null && oldEntry !== entry && oldEntry.value === value) {\n // This value is already in the map at a different keypath in the map.\n // Values only exist at a single keypath at a time. Remove it from the\n // previous keypath.\n //\n // Note that only the internal map entry is garbage collected; we don't\n // call `dropRef` here because it's still in the map, just\n // at a new keypath (the one we just set, above).\n deleteMapEntry(oldEntry)\n }\n}\n\nexport function deleteFromCacheMap(value: MapValue): void {\n const entry = value.ref\n if (entry === null) {\n // This value is not a member of any map.\n return\n }\n\n dropRef(value)\n deleteMapEntry(entry)\n}\n\nfunction dropRef(value: MapValue): void {\n // Drop the value from the map by setting its `ref` backpointer to\n // null. This is a separate operation from `deleteMapEntry` because when\n // re-keying a value we need to be able to delete the old, internal map\n // entry without garbage collecting the value itself.\n value.ref = null\n}\n\nexport function deleteMapEntry(entry: UnknownMapEntry): void {\n // Delete the entry from the cache.\n entry.value = null\n\n deleteFromLru(entry)\n\n // Check if we can garbage collect the entry.\n const map = entry.map\n if (map === null) {\n // Since this entry has no value, and also no child entries, we can\n // garbage collect it. Remove it from its parent, and keep garbage\n // collecting the parents until we reach a non-empty entry.\n let parent = entry.parent\n let key = entry.key\n while (parent !== null) {\n const parentMap = parent.map\n if (parentMap !== null) {\n parentMap.delete(key)\n if (parentMap.size === 0) {\n // We just removed the last entry in the parent map.\n parent.map = null\n if (parent.value === null) {\n // The parent node has no child entries, nor does it have a value\n // on itself. It can be garbage collected. Keep going.\n key = parent.key\n parent = parent.parent\n continue\n }\n }\n }\n // The parent is not empty. Stop garbage collecting.\n break\n }\n } else {\n // Check if there's a revalidating entry. If so, promote it to a\n // \"normal\" entry, since the normal one was just deleted.\n const revalidatingEntry = map.get(Revalidation)\n if (revalidatingEntry !== undefined && revalidatingEntry.value !== null) {\n setMapEntryValue(entry, revalidatingEntry.value)\n }\n }\n}\n\nexport function setSizeInCacheMap(\n value: V,\n size: number\n): void {\n const entry = value.ref\n if (entry === null) {\n // This value is not a member of any map.\n return\n }\n // Except during initialization (when the size is set to 0), this is the only\n // place the `size` field should be updated, to ensure it's in sync with the\n // the LRU.\n value.size = size\n updateLruSize(entry, size)\n}\n"],"names":["lruPut","updateLruSize","deleteFromLru","Fallback","Revalidation","createCacheMap","cacheMap","parent","key","value","map","prev","next","size","getOrInitialize","keys","isRevalidation","entry","remainingKeys","previousKey","existingEntry","get","undefined","Map","newEntry","set","getFromCacheMap","now","currentCacheVersion","rootEntry","getEntryWithFallbackImpl","isValueExpired","staleAt","version","lazilyEvictIfNeeded","deleteMapEntry","result","fallbackEntry","setInCacheMap","setMapEntryValue","dropRef","oldEntry","ref","deleteFromCacheMap","parentMap","delete","revalidatingEntry","setSizeInCacheMap"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4413, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/vary-path.ts"],"sourcesContent":["import { FetchStrategy } from './types'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n NormalizedNextUrl,\n} from './cache-key'\nimport type { RouteTree } from './cache'\nimport { Fallback, type FallbackType } from './cache-map'\nimport { HEAD_REQUEST_KEY } from '../../../shared/lib/segment-cache/segment-value-encoding'\n\ntype Opaque = T & { __brand: K }\n\n/**\n * A linked-list of all the params (or other param-like) inputs that a cache\n * entry may vary by. This is used by the CacheMap module to reuse cache entries\n * across different param values. If a param has a value of Fallback, it means\n * the cache entry is reusable for all possible values of that param. See\n * cache-map.ts for details.\n *\n * A segment's vary path is a pure function of a segment's position in a\n * particular route tree and the (post-rewrite) URL that is being queried. More\n * concretely, successive queries of the cache for the same segment always use\n * the same vary path.\n *\n * A route's vary path is simpler: it's comprised of the pathname, search\n * string, and Next-URL header.\n */\nexport type VaryPath = {\n value: string | null | FallbackType\n parent: VaryPath | null\n}\n\n// Because it's so important for vary paths to line up across cache accesses,\n// we use opaque type aliases to ensure these are only created within\n// this module.\n\n// requestKey -> searchParams -> nextUrl\nexport type RouteVaryPath = Opaque<\n {\n value: NormalizedPathname\n parent: {\n value: NormalizedSearch\n parent: {\n value: NormalizedNextUrl | null | FallbackType\n parent: null\n }\n }\n },\n 'RouteVaryPath'\n>\n\n// requestKey -> pathParams\nexport type LayoutVaryPath = Opaque<\n {\n value: string\n parent: PartialSegmentVaryPath | null\n },\n 'LayoutVaryPath'\n>\n\n// requestKey -> searchParams -> pathParams\nexport type PageVaryPath = Opaque<\n {\n value: string\n parent: {\n value: NormalizedSearch | FallbackType\n parent: PartialSegmentVaryPath | null\n }\n },\n 'PageVaryPath'\n>\n\nexport type SegmentVaryPath = LayoutVaryPath | PageVaryPath\n\n// Intermediate type used when building a vary path during a recursive traversal\n// of the route tree.\nexport type PartialSegmentVaryPath = Opaque\n\nexport function getRouteVaryPath(\n pathname: NormalizedPathname,\n search: NormalizedSearch,\n nextUrl: NormalizedNextUrl | null\n): RouteVaryPath {\n // requestKey -> searchParams -> nextUrl\n const varyPath: VaryPath = {\n value: pathname,\n parent: {\n value: search,\n parent: {\n value: nextUrl,\n parent: null,\n },\n },\n }\n return varyPath as RouteVaryPath\n}\n\nexport function getFulfilledRouteVaryPath(\n pathname: NormalizedPathname,\n search: NormalizedSearch,\n nextUrl: NormalizedNextUrl | null,\n couldBeIntercepted: boolean\n): RouteVaryPath {\n // This is called when a route's data is fulfilled. The cache entry will be\n // re-keyed based on which inputs the response varies by.\n // requestKey -> searchParams -> nextUrl\n const varyPath: VaryPath = {\n value: pathname,\n parent: {\n value: search,\n parent: {\n value: couldBeIntercepted ? nextUrl : Fallback,\n parent: null,\n },\n },\n }\n return varyPath as RouteVaryPath\n}\n\nexport function appendLayoutVaryPath(\n parentPath: PartialSegmentVaryPath | null,\n cacheKey: string\n): PartialSegmentVaryPath {\n const varyPathPart: VaryPath = {\n value: cacheKey,\n parent: parentPath,\n }\n return varyPathPart as PartialSegmentVaryPath\n}\n\nexport function finalizeLayoutVaryPath(\n requestKey: string,\n varyPath: PartialSegmentVaryPath | null\n): LayoutVaryPath {\n const layoutVaryPath: VaryPath = {\n value: requestKey,\n parent: varyPath,\n }\n return layoutVaryPath as LayoutVaryPath\n}\n\nexport function finalizePageVaryPath(\n requestKey: string,\n renderedSearch: NormalizedSearch,\n varyPath: PartialSegmentVaryPath | null\n): PageVaryPath {\n // Unlike layouts, a page segment's vary path also includes the search string.\n // requestKey -> searchParams -> pathParams\n const pageVaryPath: VaryPath = {\n value: requestKey,\n parent: {\n value: renderedSearch,\n parent: varyPath,\n },\n }\n return pageVaryPath as PageVaryPath\n}\n\nexport function finalizeMetadataVaryPath(\n pageRequestKey: string,\n renderedSearch: NormalizedSearch,\n varyPath: PartialSegmentVaryPath | null\n): PageVaryPath {\n // The metadata \"segment\" is not a real segment because it doesn't exist in\n // the normal structure of the route tree, but in terms of caching, it\n // behaves like a page segment because it varies by all the same params as\n // a page.\n //\n // To keep the protocol for querying the server simple, the request key for\n // the metadata does not include any path information. It's unnecessary from\n // the server's perspective, because unlike page segments, there's only one\n // metadata response per URL, i.e. there's no need to distinguish multiple\n // parallel pages.\n //\n // However, this means the metadata request key is insufficient for\n // caching the the metadata in the client cache, because on the client we\n // use the request key to distinguish the metadata entry from all other\n // page's metadata entries.\n //\n // So instead we create a simulated request key based on the page segment.\n // Conceptually this is equivalent to the request key the server would have\n // assigned the metadata segment if it treated it as part of the actual\n // route structure.\n\n // If there are multiple parallel pages, we use whichever is the first one.\n // This is fine because the only difference between request keys for\n // different parallel pages are things like route groups and parallel\n // route slots. As long as it's always the same one, it doesn't matter.\n const pageVaryPath: VaryPath = {\n // Append the actual metadata request key to the page request key. Note\n // that we're not using a separate vary path part; it's unnecessary because\n // these are not conceptually separate inputs.\n value: pageRequestKey + HEAD_REQUEST_KEY,\n parent: {\n value: renderedSearch,\n parent: varyPath,\n },\n }\n return pageVaryPath as PageVaryPath\n}\n\nexport function getSegmentVaryPathForRequest(\n fetchStrategy: FetchStrategy,\n tree: RouteTree\n): SegmentVaryPath {\n // This is used for storing pending requests in the cache. We want to choose\n // the most generic vary path based on the strategy used to fetch it, i.e.\n // static/PPR versus runtime prefetching, so that it can be reused as much\n // as possible.\n //\n // We may be able to re-key the response to something even more generic once\n // we receive it — for example, if the server tells us that the response\n // doesn't vary on a particular param — but even before we send the request,\n // we know some params are reusable based on the fetch strategy alone. For\n // example, a static prefetch will never vary on search params.\n //\n // The original vary path with all the params filled in is stored on the\n // route tree object. We will clone this one to create a new vary path\n // where certain params are replaced with Fallback.\n //\n // This result of this function is not stored anywhere. It's only used to\n // access the cache a single time.\n //\n // TODO: Rather than create a new list object just to access the cache, the\n // plan is to add the concept of a \"vary mask\". This will represent all the\n // params that can be treated as Fallback. (Or perhaps the inverse.)\n const originalVaryPath = tree.varyPath\n\n // Only page segments (and the special \"metadata\" segment, which is treated\n // like a page segment for the purposes of caching) may contain search\n // params. There's no reason to include them in the vary path otherwise.\n if (tree.isPage) {\n // Only a runtime prefetch will include search params in the vary path.\n // Static prefetches never include search params, so they can be reused\n // across all possible search param values.\n const doesVaryOnSearchParams =\n fetchStrategy === FetchStrategy.Full ||\n fetchStrategy === FetchStrategy.PPRRuntime\n\n if (!doesVaryOnSearchParams) {\n // The response from the the server will not vary on search params. Clone\n // the end of the original vary path to replace the search params\n // with Fallback.\n //\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with Fallback\n const searchParamsVaryPath = (originalVaryPath as PageVaryPath).parent\n const pathParamsVaryPath = searchParamsVaryPath.parent\n const patchedVaryPath: VaryPath = {\n value: originalVaryPath.value,\n parent: {\n value: Fallback,\n parent: pathParamsVaryPath,\n },\n }\n return patchedVaryPath as SegmentVaryPath\n }\n }\n\n // The request does vary on search params. We don't need to modify anything.\n return originalVaryPath as SegmentVaryPath\n}\n\nexport function clonePageVaryPathWithNewSearchParams(\n originalVaryPath: PageVaryPath,\n newSearch: NormalizedSearch\n): PageVaryPath {\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with newSearch\n const searchParamsVaryPath = originalVaryPath.parent\n const clonedVaryPath: VaryPath = {\n value: originalVaryPath.value,\n parent: {\n value: newSearch,\n parent: searchParamsVaryPath.parent,\n },\n }\n return clonedVaryPath as PageVaryPath\n}\n"],"names":["FetchStrategy","Fallback","HEAD_REQUEST_KEY","getRouteVaryPath","pathname","search","nextUrl","varyPath","value","parent","getFulfilledRouteVaryPath","couldBeIntercepted","appendLayoutVaryPath","parentPath","cacheKey","varyPathPart","finalizeLayoutVaryPath","requestKey","layoutVaryPath","finalizePageVaryPath","renderedSearch","pageVaryPath","finalizeMetadataVaryPath","pageRequestKey","getSegmentVaryPathForRequest","fetchStrategy","tree","originalVaryPath","isPage","doesVaryOnSearchParams","Full","PPRRuntime","searchParamsVaryPath","pathParamsVaryPath","patchedVaryPath","clonePageVaryPathWithNewSearchParams","newSearch","clonedVaryPath"],"mappings":";;;;;;;;;;;;;;;;;;AAAA,SAASA,aAAa,QAAQ,UAAS;AAOvC,SAASC,QAAQ,QAA2B,cAAa;AACzD,SAASC,gBAAgB,QAAQ,2DAA0D;;;;AAsEpF,SAASC,iBACdC,QAA4B,EAC5BC,MAAwB,EACxBC,OAAiC;IAEjC,wCAAwC;IACxC,MAAMC,WAAqB;QACzBC,OAAOJ;QACPK,QAAQ;YACND,OAAOH;YACPI,QAAQ;gBACND,OAAOF;gBACPG,QAAQ;YACV;QACF;IACF;IACA,OAAOF;AACT;AAEO,SAASG,0BACdN,QAA4B,EAC5BC,MAAwB,EACxBC,OAAiC,EACjCK,kBAA2B;IAE3B,2EAA2E;IAC3E,yDAAyD;IACzD,wCAAwC;IACxC,MAAMJ,WAAqB;QACzBC,OAAOJ;QACPK,QAAQ;YACND,OAAOH;YACPI,QAAQ;gBACND,OAAOG,qBAAqBL,UAAUL,2MAAAA;gBACtCQ,QAAQ;YACV;QACF;IACF;IACA,OAAOF;AACT;AAEO,SAASK,qBACdC,UAAyC,EACzCC,QAAgB;IAEhB,MAAMC,eAAyB;QAC7BP,OAAOM;QACPL,QAAQI;IACV;IACA,OAAOE;AACT;AAEO,SAASC,uBACdC,UAAkB,EAClBV,QAAuC;IAEvC,MAAMW,iBAA2B;QAC/BV,OAAOS;QACPR,QAAQF;IACV;IACA,OAAOW;AACT;AAEO,SAASC,qBACdF,UAAkB,EAClBG,cAAgC,EAChCb,QAAuC;IAEvC,8EAA8E;IAC9E,2CAA2C;IAC3C,MAAMc,eAAyB;QAC7Bb,OAAOS;QACPR,QAAQ;YACND,OAAOY;YACPX,QAAQF;QACV;IACF;IACA,OAAOc;AACT;AAEO,SAASC,yBACdC,cAAsB,EACtBH,cAAgC,EAChCb,QAAuC;IAEvC,2EAA2E;IAC3E,sEAAsE;IACtE,0EAA0E;IAC1E,UAAU;IACV,EAAE;IACF,2EAA2E;IAC3E,4EAA4E;IAC5E,2EAA2E;IAC3E,0EAA0E;IAC1E,kBAAkB;IAClB,EAAE;IACF,mEAAmE;IACnE,yEAAyE;IACzE,uEAAuE;IACvE,2BAA2B;IAC3B,EAAE;IACF,0EAA0E;IAC1E,2EAA2E;IAC3E,uEAAuE;IACvE,mBAAmB;IAEnB,2EAA2E;IAC3E,oEAAoE;IACpE,qEAAqE;IACrE,uEAAuE;IACvE,MAAMc,eAAyB;QAC7B,uEAAuE;QACvE,2EAA2E;QAC3E,8CAA8C;QAC9Cb,OAAOe,iBAAiBrB,4NAAAA;QACxBO,QAAQ;YACND,OAAOY;YACPX,QAAQF;QACV;IACF;IACA,OAAOc;AACT;AAEO,SAASG,6BACdC,aAA4B,EAC5BC,IAAe;IAEf,4EAA4E;IAC5E,0EAA0E;IAC1E,0EAA0E;IAC1E,eAAe;IACf,EAAE;IACF,4EAA4E;IAC5E,wEAAwE;IACxE,4EAA4E;IAC5E,0EAA0E;IAC1E,+DAA+D;IAC/D,EAAE;IACF,wEAAwE;IACxE,sEAAsE;IACtE,mDAAmD;IACnD,EAAE;IACF,yEAAyE;IACzE,kCAAkC;IAClC,EAAE;IACF,2EAA2E;IAC3E,2EAA2E;IAC3E,oEAAoE;IACpE,MAAMC,mBAAmBD,KAAKnB,QAAQ;IAEtC,2EAA2E;IAC3E,sEAAsE;IACtE,wEAAwE;IACxE,IAAImB,KAAKE,MAAM,EAAE;QACf,uEAAuE;QACvE,uEAAuE;QACvE,2CAA2C;QAC3C,MAAMC,yBACJJ,kBAAkBzB,yMAAAA,CAAc8B,IAAI,IACpCL,kBAAkBzB,yMAAAA,CAAc+B,UAAU;QAE5C,IAAI,CAACF,wBAAwB;YAC3B,yEAAyE;YACzE,iEAAiE;YACjE,iBAAiB;YACjB,EAAE;YACF,2CAA2C;YAC3C,wDAAwD;YACxD,MAAMG,uBAAwBL,iBAAkClB,MAAM;YACtE,MAAMwB,qBAAqBD,qBAAqBvB,MAAM;YACtD,MAAMyB,kBAA4B;gBAChC1B,OAAOmB,iBAAiBnB,KAAK;gBAC7BC,QAAQ;oBACND,OAAOP,2MAAAA;oBACPQ,QAAQwB;gBACV;YACF;YACA,OAAOC;QACT;IACF;IAEA,4EAA4E;IAC5E,OAAOP;AACT;AAEO,SAASQ,qCACdR,gBAA8B,EAC9BS,SAA2B;IAE3B,2CAA2C;IAC3C,yDAAyD;IACzD,MAAMJ,uBAAuBL,iBAAiBlB,MAAM;IACpD,MAAM4B,iBAA2B;QAC/B7B,OAAOmB,iBAAiBnB,KAAK;QAC7BC,QAAQ;YACND,OAAO4B;YACP3B,QAAQuB,qBAAqBvB,MAAM;QACrC;IACF;IACA,OAAO4B;AACT","ignoreList":[0]}}, - {"offset": {"line": 4600, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache-key.ts"],"sourcesContent":["// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque = T & { __brand: K }\n\n// Only functions in this module should be allowed to create CacheKeys.\nexport type NormalizedPathname = Opaque<'NormalizedPathname', string>\nexport type NormalizedSearch = Opaque<'NormalizedSearch', string>\nexport type NormalizedNextUrl = Opaque<'NormalizedNextUrl', string>\n\nexport type RouteCacheKey = Opaque<\n 'RouteCacheKey',\n {\n pathname: NormalizedPathname\n search: NormalizedSearch\n nextUrl: NormalizedNextUrl | null\n\n // TODO: Eventually the dynamic params will be added here, too.\n }\n>\n\nexport function createCacheKey(\n originalHref: string,\n nextUrl: string | null\n): RouteCacheKey {\n const originalUrl = new URL(originalHref)\n const cacheKey = {\n pathname: originalUrl.pathname as NormalizedPathname,\n search: originalUrl.search as NormalizedSearch,\n nextUrl: nextUrl as NormalizedNextUrl | null,\n } as RouteCacheKey\n return cacheKey\n}\n"],"names":["createCacheKey","originalHref","nextUrl","originalUrl","URL","cacheKey","pathname","search"],"mappings":"AAAA,2DAA2D;;;;;AAmBpD,SAASA,eACdC,YAAoB,EACpBC,OAAsB;IAEtB,MAAMC,cAAc,IAAIC,IAAIH;IAC5B,MAAMI,WAAW;QACfC,UAAUH,YAAYG,QAAQ;QAC9BC,QAAQJ,YAAYI,MAAM;QAC1BL,SAASA;IACX;IACA,OAAOG;AACT","ignoreList":[0]}}, - {"offset": {"line": 4618, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/scheduler.ts"],"sourcesContent":["import type {\n FlightRouterState,\n Segment as FlightRouterStateSegment,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport { HasLoadingBoundary } from '../../../shared/lib/app-router-types'\nimport { matchSegment } from '../match-segments'\nimport {\n readOrCreateRouteCacheEntry,\n readOrCreateSegmentCacheEntry,\n fetchRouteOnCacheMiss,\n fetchSegmentOnCacheMiss,\n EntryStatus,\n type FulfilledRouteCacheEntry,\n type RouteCacheEntry,\n type SegmentCacheEntry,\n type RouteTree,\n fetchSegmentPrefetchesUsingDynamicRequest,\n type PendingSegmentCacheEntry,\n convertRouteTreeToFlightRouterState,\n readOrCreateRevalidatingSegmentEntry,\n upsertSegmentEntry,\n type FulfilledSegmentCacheEntry,\n upgradeToPendingSegment,\n waitForSegmentCacheEntry,\n overwriteRevalidatingSegmentCacheEntry,\n canNewFetchStrategyProvideMoreContent,\n} from './cache'\nimport { getSegmentVaryPathForRequest, type SegmentVaryPath } from './vary-path'\nimport type { RouteCacheKey } from './cache-key'\nimport { createCacheKey } from './cache-key'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n PrefetchPriority,\n} from './types'\nimport { getCurrentCacheVersion } from './cache'\nimport {\n addSearchParamsIfPageSegment,\n PAGE_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport type { SegmentRequestKey } from '../../../shared/lib/segment-cache/segment-value-encoding'\n\nconst scheduleMicrotask =\n typeof queueMicrotask === 'function'\n ? queueMicrotask\n : (fn: () => unknown) =>\n Promise.resolve()\n .then(fn)\n .catch((error) =>\n setTimeout(() => {\n throw error\n })\n )\n\nexport type PrefetchTask = {\n key: RouteCacheKey\n\n /**\n * The FlightRouterState at the time the task was initiated. This is needed\n * when falling back to the non-PPR behavior, which only prefetches up to\n * the first loading boundary.\n */\n treeAtTimeOfPrefetch: FlightRouterState\n\n /**\n * The cache version at the time the task was initiated. This is used to\n * determine if the cache was invalidated since the task was initiated.\n */\n cacheVersion: number\n\n /**\n * Whether to prefetch dynamic data, in addition to static data. This is\n * used by ``.\n *\n * Note that a task with `FetchStrategy.PPR` might need to use\n * `FetchStrategy.LoadingBoundary` instead if we find out that a route\n * does not support PPR after doing the initial route prefetch.\n */\n fetchStrategy: PrefetchTaskFetchStrategy\n\n /**\n * sortId is an incrementing counter\n *\n * Newer prefetches are prioritized over older ones, so that as new links\n * enter the viewport, they are not starved by older links that are no\n * longer relevant. In the future, we can add additional prioritization\n * heuristics, like removing prefetches once a link leaves the viewport.\n *\n * The sortId is assigned when the prefetch is initiated, and reassigned if\n * the same task is prefetched again (effectively bumping it to the top of\n * the queue).\n *\n * TODO: We can add additional fields here to indicate what kind of prefetch\n * it is. For example, was it initiated by a link? Or was it an imperative\n * call? If it was initiated by a link, we can remove it from the queue when\n * the link leaves the viewport, but if it was an imperative call, then we\n * should keep it in the queue until it's fulfilled.\n *\n * We can also add priority levels. For example, hovering over a link could\n * increase the priority of its prefetch.\n */\n sortId: number\n\n /**\n * The priority of the task. Like sortId, this affects the task's position in\n * the queue, so it must never be updated without resifting the heap.\n */\n priority: PrefetchPriority\n\n /**\n * The phase of the task. Tasks are split into multiple phases so that their\n * priority can be adjusted based on what kind of work they're doing.\n * Concretely, prefetching the route tree is higher priority than prefetching\n * segment data.\n */\n phase: PrefetchPhase\n\n /**\n * These fields are temporary state for tracking the currently running task.\n * They are reset after each iteration of the task queue.\n */\n hasBackgroundWork: boolean\n spawnedRuntimePrefetches: Set | null\n\n /**\n * True if the prefetch was cancelled.\n */\n isCanceled: boolean\n\n /**\n * The callback passed to `router.prefetch`, if given.\n */\n onInvalidate: null | (() => void)\n\n /**\n * The index of the task in the heap's backing array. Used to efficiently\n * change the priority of a task by re-sifting it, which requires knowing\n * where it is in the array. This is only used internally by the heap\n * algorithm. The naive alternative is indexOf every time a task is queued,\n * which has O(n) complexity.\n *\n * We also use this field to check whether a task is currently in the queue.\n */\n _heapIndex: number\n}\n\nconst enum PrefetchTaskExitStatus {\n /**\n * The task yielded because there are too many requests in progress.\n */\n InProgress,\n\n /**\n * The task is blocked. It needs more data before it can proceed.\n *\n * Currently the only reason this happens is we're still waiting to receive a\n * route tree from the server, because we can't start prefetching the segments\n * until we know what to prefetch.\n */\n Blocked,\n\n /**\n * There's nothing left to prefetch.\n */\n Done,\n}\n\n/**\n * Prefetch tasks are processed in two phases: first the route tree is fetched,\n * then the segments. We use this to priortize tasks that have not yet fetched\n * the route tree.\n */\nconst enum PrefetchPhase {\n RouteTree = 1,\n Segments = 0,\n}\n\nexport type PrefetchSubtaskResult = {\n /**\n * A promise that resolves when the network connection is closed.\n */\n closed: Promise\n value: T\n}\n\nconst taskHeap: Array = []\n\nlet inProgressRequests = 0\n\nlet sortIdCounter = 0\nlet didScheduleMicrotask = false\n\n// The most recently hovered (or touched, etc) link, i.e. the most recent task\n// scheduled at Intent priority. There's only ever a single task at Intent\n// priority at a time. We reserve special network bandwidth for this task only.\nlet mostRecentlyHoveredLink: PrefetchTask | null = null\n\n// CDN cache propagation delay after revalidation (in milliseconds)\nconst REVALIDATION_COOLDOWN_MS = 300\n\n// Timeout handle for the revalidation cooldown. When non-null, prefetch\n// requests are blocked to allow CDN cache propagation.\nlet revalidationCooldownTimeoutHandle: ReturnType | null =\n null\n\n/**\n * Called by the cache when revalidation occurs. Starts a cooldown period\n * during which prefetch requests are blocked to allow CDN cache propagation.\n */\nexport function startRevalidationCooldown(): void {\n // Clear any existing timeout in case multiple revalidations happen\n // in quick succession.\n if (revalidationCooldownTimeoutHandle !== null) {\n clearTimeout(revalidationCooldownTimeoutHandle)\n }\n\n // Schedule the cooldown to expire after the delay.\n revalidationCooldownTimeoutHandle = setTimeout(() => {\n revalidationCooldownTimeoutHandle = null\n // Retry the prefetch queue now that the cooldown has expired.\n ensureWorkIsScheduled()\n }, REVALIDATION_COOLDOWN_MS)\n}\n\nexport type IncludeDynamicData = null | 'full' | 'dynamic'\n\n/**\n * Initiates a prefetch task for the given URL. If a prefetch for the same URL\n * is already in progress, this will bump it to the top of the queue.\n *\n * This is not a user-facing function. By the time this is called, the href is\n * expected to be validated and normalized.\n *\n * @param key The RouteCacheKey to prefetch.\n * @param treeAtTimeOfPrefetch The app's current FlightRouterState\n * @param fetchStrategy Whether to prefetch dynamic data, in addition to\n * static data. This is used by ``.\n */\nexport function schedulePrefetchTask(\n key: RouteCacheKey,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n priority: PrefetchPriority,\n onInvalidate: null | (() => void)\n): PrefetchTask {\n // Spawn a new prefetch task\n const task: PrefetchTask = {\n key,\n treeAtTimeOfPrefetch,\n cacheVersion: getCurrentCacheVersion(),\n priority,\n phase: PrefetchPhase.RouteTree,\n hasBackgroundWork: false,\n spawnedRuntimePrefetches: null,\n fetchStrategy,\n sortId: sortIdCounter++,\n isCanceled: false,\n onInvalidate,\n _heapIndex: -1,\n }\n\n trackMostRecentlyHoveredLink(task)\n\n heapPush(taskHeap, task)\n\n // Schedule an async task to process the queue.\n //\n // The main reason we process the queue in an async task is for batching.\n // It's common for a single JS task/event to trigger multiple prefetches.\n // By deferring to a microtask, we only process the queue once per JS task.\n // If they have different priorities, it also ensures they are processed in\n // the optimal order.\n ensureWorkIsScheduled()\n\n return task\n}\n\nexport function cancelPrefetchTask(task: PrefetchTask): void {\n // Remove the prefetch task from the queue. If the task already completed,\n // then this is a no-op.\n //\n // We must also explicitly mark the task as canceled so that a blocked task\n // does not get added back to the queue when it's pinged by the network.\n task.isCanceled = true\n heapDelete(taskHeap, task)\n}\n\nexport function reschedulePrefetchTask(\n task: PrefetchTask,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n priority: PrefetchPriority\n): void {\n // Bump the prefetch task to the top of the queue, as if it were a fresh\n // task. This is essentially the same as canceling the task and scheduling\n // a new one, except it reuses the original object.\n //\n // The primary use case is to increase the priority of a Link-initated\n // prefetch on hover.\n\n // Un-cancel the task, in case it was previously canceled.\n task.isCanceled = false\n task.phase = PrefetchPhase.RouteTree\n\n // Assign a new sort ID to move it ahead of all other tasks at the same\n // priority level. (Higher sort IDs are processed first.)\n task.sortId = sortIdCounter++\n task.priority =\n // If this task is the most recently hovered link, maintain its\n // Intent priority, even if the rescheduled priority is lower.\n task === mostRecentlyHoveredLink ? PrefetchPriority.Intent : priority\n\n task.treeAtTimeOfPrefetch = treeAtTimeOfPrefetch\n task.fetchStrategy = fetchStrategy\n\n trackMostRecentlyHoveredLink(task)\n\n if (task._heapIndex !== -1) {\n // The task is already in the queue.\n heapResift(taskHeap, task)\n } else {\n heapPush(taskHeap, task)\n }\n ensureWorkIsScheduled()\n}\n\nexport function isPrefetchTaskDirty(\n task: PrefetchTask,\n nextUrl: string | null,\n tree: FlightRouterState\n): boolean {\n // This is used to quickly bail out of a prefetch task if the result is\n // guaranteed to not have changed since the task was initiated. This is\n // strictly an optimization — theoretically, if it always returned true, no\n // behavior should change because a full prefetch task will effectively\n // perform the same checks.\n const currentCacheVersion = getCurrentCacheVersion()\n return (\n task.cacheVersion !== currentCacheVersion ||\n task.treeAtTimeOfPrefetch !== tree ||\n task.key.nextUrl !== nextUrl\n )\n}\n\nfunction trackMostRecentlyHoveredLink(task: PrefetchTask) {\n // Track the mostly recently hovered link, i.e. the most recently scheduled\n // task at Intent priority. There must only be one such task at a time.\n if (\n task.priority === PrefetchPriority.Intent &&\n task !== mostRecentlyHoveredLink\n ) {\n if (mostRecentlyHoveredLink !== null) {\n // Bump the previously hovered link's priority down to Default.\n if (mostRecentlyHoveredLink.priority !== PrefetchPriority.Background) {\n mostRecentlyHoveredLink.priority = PrefetchPriority.Default\n heapResift(taskHeap, mostRecentlyHoveredLink)\n }\n }\n mostRecentlyHoveredLink = task\n }\n}\n\nfunction ensureWorkIsScheduled() {\n if (didScheduleMicrotask) {\n // Already scheduled a task to process the queue\n return\n }\n didScheduleMicrotask = true\n scheduleMicrotask(processQueueInMicrotask)\n}\n\n/**\n * Checks if we've exceeded the maximum number of concurrent prefetch requests,\n * to avoid saturating the browser's internal network queue. This is a\n * cooperative limit — prefetch tasks should check this before issuing\n * new requests.\n *\n * Also checks if we're within the revalidation cooldown window, during which\n * prefetch requests are delayed to allow CDN cache propagation.\n */\nfunction hasNetworkBandwidth(task: PrefetchTask): boolean {\n // Check if we're within the revalidation cooldown window\n if (revalidationCooldownTimeoutHandle !== null) {\n // We're within the cooldown window. Return false to prevent prefetching.\n // When the cooldown expires, the timeout will call ensureWorkIsScheduled()\n // to retry the queue.\n return false\n }\n\n // TODO: Also check if there's an in-progress navigation. We should never\n // add prefetch requests to the network queue if an actual navigation is\n // taking place, to ensure there's sufficient bandwidth for render-blocking\n // data and resources.\n\n // TODO: Consider reserving some amount of bandwidth for static prefetches.\n\n if (task.priority === PrefetchPriority.Intent) {\n // The most recently hovered link is allowed to exceed the default limit.\n //\n // The goal is to always have enough bandwidth to start a new prefetch\n // request when hovering over a link.\n //\n // However, because we don't abort in-progress requests, it's still possible\n // we'll run out of bandwidth. When links are hovered in quick succession,\n // there could be multiple hover requests running simultaneously.\n return inProgressRequests < 12\n }\n\n // The default limit is lower than the limit for a hovered link.\n return inProgressRequests < 4\n}\n\nfunction spawnPrefetchSubtask(\n prefetchSubtask: Promise | null>\n): Promise {\n // When the scheduler spawns an async task, we don't await its result.\n // Instead, the async task writes its result directly into the cache, then\n // pings the scheduler to continue.\n //\n // We process server responses streamingly, so the prefetch subtask will\n // likely resolve before we're finished receiving all the data. The subtask\n // result includes a promise that resolves once the network connection is\n // closed. The scheduler uses this to control network bandwidth by tracking\n // and limiting the number of concurrent requests.\n inProgressRequests++\n return prefetchSubtask.then((result) => {\n if (result === null) {\n // The prefetch task errored before it could start processing the\n // network stream. Assume the connection is closed.\n onPrefetchConnectionClosed()\n return null\n }\n // Wait for the connection to close before freeing up more bandwidth.\n result.closed.then(onPrefetchConnectionClosed)\n return result.value\n })\n}\n\nfunction onPrefetchConnectionClosed(): void {\n inProgressRequests--\n\n // Notify the scheduler that we have more bandwidth, and can continue\n // processing tasks.\n ensureWorkIsScheduled()\n}\n\n/**\n * Notify the scheduler that we've received new data for an in-progress\n * prefetch. The corresponding task will be added back to the queue (unless the\n * task has been canceled in the meantime).\n */\nexport function pingPrefetchTask(task: PrefetchTask) {\n // \"Ping\" a prefetch that's already in progress to notify it of new data.\n if (\n // Check if prefetch was canceled.\n task.isCanceled ||\n // Check if prefetch is already queued.\n task._heapIndex !== -1\n ) {\n return\n }\n // Add the task back to the queue.\n heapPush(taskHeap, task)\n ensureWorkIsScheduled()\n}\n\nfunction processQueueInMicrotask() {\n didScheduleMicrotask = false\n\n // We aim to minimize how often we read the current time. Since nearly all\n // functions in the prefetch scheduler are synchronous, we can read the time\n // once and pass it as an argument wherever it's needed.\n const now = Date.now()\n\n // Process the task queue until we run out of network bandwidth.\n let task = heapPeek(taskHeap)\n while (task !== null && hasNetworkBandwidth(task)) {\n task.cacheVersion = getCurrentCacheVersion()\n\n const exitStatus = pingRoute(now, task)\n\n // These fields are only valid for a single attempt. Reset them after each\n // iteration of the task queue.\n const hasBackgroundWork = task.hasBackgroundWork\n task.hasBackgroundWork = false\n task.spawnedRuntimePrefetches = null\n\n switch (exitStatus) {\n case PrefetchTaskExitStatus.InProgress:\n // The task yielded because there are too many requests in progress.\n // Stop processing tasks until we have more bandwidth.\n return\n case PrefetchTaskExitStatus.Blocked:\n // The task is blocked. It needs more data before it can proceed.\n // Keep the task out of the queue until the server responds.\n heapPop(taskHeap)\n // Continue to the next task\n task = heapPeek(taskHeap)\n continue\n case PrefetchTaskExitStatus.Done:\n if (task.phase === PrefetchPhase.RouteTree) {\n // Finished prefetching the route tree. Proceed to prefetching\n // the segments.\n task.phase = PrefetchPhase.Segments\n heapResift(taskHeap, task)\n } else if (hasBackgroundWork) {\n // The task spawned additional background work. Reschedule the task\n // at background priority.\n task.priority = PrefetchPriority.Background\n heapResift(taskHeap, task)\n } else {\n // The prefetch is complete. Continue to the next task.\n heapPop(taskHeap)\n }\n task = heapPeek(taskHeap)\n continue\n default:\n exitStatus satisfies never\n }\n }\n}\n\n/**\n * Check this during a prefetch task to determine if background work can be\n * performed. If so, it evaluates to `true`. Otherwise, it returns `false`,\n * while also scheduling a background task to run later. Usage:\n *\n * @example\n * if (background(task)) {\n * // Perform background-pri work\n * }\n */\nfunction background(task: PrefetchTask): boolean {\n if (task.priority === PrefetchPriority.Background) {\n return true\n }\n task.hasBackgroundWork = true\n return false\n}\n\nfunction pingRoute(now: number, task: PrefetchTask): PrefetchTaskExitStatus {\n const key = task.key\n const route = readOrCreateRouteCacheEntry(now, task, key)\n const exitStatus = pingRootRouteTree(now, task, route)\n\n if (exitStatus !== PrefetchTaskExitStatus.InProgress && key.search !== '') {\n // If the URL has a non-empty search string, also prefetch the pathname\n // without the search string. We use the searchless route tree as a base for\n // optimistic routing; see requestOptimisticRouteCacheEntry for details.\n //\n // Note that we don't need to prefetch any of the segment data. Just the\n // route tree.\n //\n // TODO: This is a temporary solution; the plan is to replace this by adding\n // a wildcard lookup method to the TupleMap implementation. This is\n // non-trivial to implement because it needs to account for things like\n // fallback route entries, hence this temporary workaround.\n const url = new URL(key.pathname, location.origin)\n const keyWithoutSearch = createCacheKey(url.href, key.nextUrl)\n const routeWithoutSearch = readOrCreateRouteCacheEntry(\n now,\n task,\n keyWithoutSearch\n )\n switch (routeWithoutSearch.status) {\n case EntryStatus.Empty: {\n if (background(task)) {\n routeWithoutSearch.status = EntryStatus.Pending\n spawnPrefetchSubtask(\n fetchRouteOnCacheMiss(routeWithoutSearch, task, keyWithoutSearch)\n )\n }\n break\n }\n case EntryStatus.Pending:\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected: {\n // Either the route tree is already cached, or there's already a\n // request in progress. Since we don't need to fetch any segment data\n // for this route, there's nothing left to do.\n break\n }\n default:\n routeWithoutSearch satisfies never\n }\n }\n\n return exitStatus\n}\n\nfunction pingRootRouteTree(\n now: number,\n task: PrefetchTask,\n route: RouteCacheEntry\n): PrefetchTaskExitStatus {\n switch (route.status) {\n case EntryStatus.Empty: {\n // Route is not yet cached, and there's no request already in progress.\n // Spawn a task to request the route, load it into the cache, and ping\n // the task to continue.\n\n // TODO: There are multiple strategies in the API for prefetching\n // a route. Currently we've only implemented the main one: per-segment,\n // static-data only.\n //\n // There's also ``\n // which prefetch both static *and* dynamic data.\n // Similarly, we need to fallback to the old, per-page\n // behavior if PPR is disabled for a route (via the incremental opt-in).\n //\n // Those cases will be handled here.\n spawnPrefetchSubtask(fetchRouteOnCacheMiss(route, task, task.key))\n\n // If the request takes longer than a minute, a subsequent request should\n // retry instead of waiting for this one. When the response is received,\n // this value will be replaced by a new value based on the stale time sent\n // from the server.\n // TODO: We should probably also manually abort the fetch task, to reclaim\n // server bandwidth.\n route.staleAt = now + 60 * 1000\n\n // Upgrade to Pending so we know there's already a request in progress\n route.status = EntryStatus.Pending\n\n // Intentional fallthrough to the Pending branch\n }\n case EntryStatus.Pending: {\n // Still pending. We can't start prefetching the segments until the route\n // tree has loaded. Add the task to the set of blocked tasks so that it\n // is notified when the route tree is ready.\n const blockedTasks = route.blockedTasks\n if (blockedTasks === null) {\n route.blockedTasks = new Set([task])\n } else {\n blockedTasks.add(task)\n }\n return PrefetchTaskExitStatus.Blocked\n }\n case EntryStatus.Rejected: {\n // Route tree failed to load. Treat as a 404.\n return PrefetchTaskExitStatus.Done\n }\n case EntryStatus.Fulfilled: {\n if (task.phase !== PrefetchPhase.Segments) {\n // Do not prefetch segment data until we've entered the segment phase.\n return PrefetchTaskExitStatus.Done\n }\n // Recursively fill in the segment tree.\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n const tree = route.tree\n\n // A task's fetch strategy gets set to `PPR` for any \"auto\" prefetch.\n // If it turned out that the route isn't PPR-enabled, we need to use `LoadingBoundary` instead.\n // We don't need to do this for runtime prefetches, because those are only available in\n // `cacheComponents`, where every route is PPR.\n const fetchStrategy =\n task.fetchStrategy === FetchStrategy.PPR\n ? route.isPPREnabled\n ? FetchStrategy.PPR\n : FetchStrategy.LoadingBoundary\n : task.fetchStrategy\n\n switch (fetchStrategy) {\n case FetchStrategy.PPR: {\n // For Cache Components pages, each segment may be prefetched\n // statically or using a runtime request, based on various\n // configurations and heuristics. We'll do this in two passes: first\n // traverse the tree and perform all the static prefetches.\n //\n // Then, if there are any segments that need a runtime request,\n // do another pass to perform a runtime prefetch.\n pingStaticHead(now, task, route)\n const exitStatus = pingSharedPartOfCacheComponentsTree(\n now,\n task,\n route,\n task.treeAtTimeOfPrefetch,\n tree\n )\n if (exitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n const spawnedRuntimePrefetches = task.spawnedRuntimePrefetches\n if (spawnedRuntimePrefetches !== null) {\n // During the first pass, we discovered segments that require a\n // runtime prefetch. Do a second pass to construct a request tree.\n const spawnedEntries = new Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n >()\n pingRuntimeHead(\n now,\n task,\n route,\n spawnedEntries,\n FetchStrategy.PPRRuntime\n )\n const requestTree = pingRuntimePrefetches(\n now,\n task,\n route,\n tree,\n spawnedRuntimePrefetches,\n spawnedEntries\n )\n let needsDynamicRequest = spawnedEntries.size > 0\n if (needsDynamicRequest) {\n // Perform a dynamic prefetch request and populate the cache with\n // the result.\n spawnPrefetchSubtask(\n fetchSegmentPrefetchesUsingDynamicRequest(\n task,\n route,\n FetchStrategy.PPRRuntime,\n requestTree,\n spawnedEntries\n )\n )\n }\n }\n return PrefetchTaskExitStatus.Done\n }\n case FetchStrategy.Full:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.LoadingBoundary: {\n // Prefetch multiple segments using a single dynamic request.\n // TODO: We can consolidate this branch with previous one by modeling\n // it as if the first segment in the new tree has runtime prefetching\n // enabled. Will do this as a follow-up refactor. Might want to remove\n // the special metatdata case below first. In the meantime, it's not\n // really that much duplication, just would be nice to remove one of\n // these codepaths.\n const spawnedEntries = new Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n >()\n pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy)\n const dynamicRequestTree = diffRouteTreeAgainstCurrent(\n now,\n task,\n route,\n task.treeAtTimeOfPrefetch,\n tree,\n spawnedEntries,\n fetchStrategy\n )\n let needsDynamicRequest = spawnedEntries.size > 0\n if (needsDynamicRequest) {\n spawnPrefetchSubtask(\n fetchSegmentPrefetchesUsingDynamicRequest(\n task,\n route,\n fetchStrategy,\n dynamicRequestTree,\n spawnedEntries\n )\n )\n }\n return PrefetchTaskExitStatus.Done\n }\n default:\n fetchStrategy satisfies never\n }\n break\n }\n default: {\n route satisfies never\n }\n }\n return PrefetchTaskExitStatus.Done\n}\n\nfunction pingStaticHead(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry\n): void {\n // The Head data for a page (metadata, viewport) is not really a route\n // segment, in the sense that it doesn't appear in the route tree. But we\n // store it in the cache as if it were, using a special key.\n pingStaticSegmentData(\n now,\n task,\n route,\n readOrCreateSegmentCacheEntry(\n now,\n FetchStrategy.PPR,\n route,\n route.metadata\n ),\n task.key,\n route.metadata\n )\n}\n\nfunction pingRuntimeHead(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n spawnedEntries: Map,\n fetchStrategy:\n | FetchStrategy.Full\n | FetchStrategy.PPRRuntime\n | FetchStrategy.LoadingBoundary\n): void {\n pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n route.metadata,\n false,\n spawnedEntries,\n // When prefetching the head, there's no difference between Full\n // and LoadingBoundary\n fetchStrategy === FetchStrategy.LoadingBoundary\n ? FetchStrategy.Full\n : fetchStrategy\n )\n}\n\n// TODO: Rename dynamic -> runtime throughout this module\n\nfunction pingSharedPartOfCacheComponentsTree(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n oldTree: FlightRouterState,\n newTree: RouteTree\n): PrefetchTaskExitStatus {\n // When Cache Components is enabled (or PPR, or a fully static route when PPR\n // is disabled; those cases are treated equivalently to Cache Components), we\n // start by prefetching each segment individually. Once we reach the \"new\"\n // part of the tree — the part that doesn't exist on the current page — we\n // may choose to switch to a runtime prefetch instead, based on the\n // information sent by the server in the route tree.\n //\n // The traversal starts in the \"shared\" part of the tree. Once we reach the\n // \"new\" part of the tree, we switch to a different traversal,\n // pingNewPartOfCacheComponentsTree.\n\n // Prefetch this segment's static data.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n newTree\n )\n pingStaticSegmentData(now, task, route, segment, task.key, newTree)\n\n // Recursively ping the children.\n const oldTreeChildren = oldTree[1]\n const newTreeChildren = newTree.slots\n if (newTreeChildren !== null) {\n for (const parallelRouteKey in newTreeChildren) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n const newTreeChild = newTreeChildren[parallelRouteKey]\n const newTreeChildSegment = newTreeChild.segment\n const oldTreeChild: FlightRouterState | void =\n oldTreeChildren[parallelRouteKey]\n const oldTreeChildSegment: FlightRouterStateSegment | void =\n oldTreeChild?.[0]\n let childExitStatus\n if (\n oldTreeChildSegment !== undefined &&\n doesCurrentSegmentMatchCachedSegment(\n route,\n newTreeChildSegment,\n oldTreeChildSegment\n )\n ) {\n // We're still in the \"shared\" part of the tree.\n childExitStatus = pingSharedPartOfCacheComponentsTree(\n now,\n task,\n route,\n oldTreeChild,\n newTreeChild\n )\n } else {\n // We've entered the \"new\" part of the tree. Switch\n // traversal functions.\n childExitStatus = pingNewPartOfCacheComponentsTree(\n now,\n task,\n route,\n newTreeChild\n )\n }\n if (childExitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n }\n }\n\n return PrefetchTaskExitStatus.Done\n}\n\nfunction pingNewPartOfCacheComponentsTree(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): PrefetchTaskExitStatus.InProgress | PrefetchTaskExitStatus.Done {\n // We're now prefetching in the \"new\" part of the tree, the part that doesn't\n // exist on the current page. (In other words, we're deeper than the\n // shared layouts.) Segments in here default to being prefetched statically.\n // However, if the server instructs us to, we may switch to a runtime\n // prefetch instead. Traverse the tree and check at each segment.\n if (tree.hasRuntimePrefetch) {\n // This route has a runtime prefetch response. Since we're below the shared\n // layout, everything from this point should be prefetched using a single,\n // combined runtime request, rather than using per-segment static requests.\n // This is true even if some of the child segments are known to be fully\n // static — once we've decided to perform a runtime prefetch, we might as\n // well respond with the static segments in the same roundtrip. (That's how\n // regular navigations work, too.) We'll still skip over segments that are\n // already cached, though.\n //\n // It's the server's responsibility to set a reasonable value of\n // `hasRuntimePrefetch`. Currently it's user-defined, but eventually, the\n // server may send a value of `false` even if the user opts in, if it\n // determines during build that the route is always fully static. There are\n // more optimizations we can do once we implement fallback param\n // tracking, too.\n //\n // Use the task object to collect the segments that need a runtime prefetch.\n // This will signal to the outer task queue that a second traversal is\n // required to construct a request tree.\n if (task.spawnedRuntimePrefetches === null) {\n task.spawnedRuntimePrefetches = new Set([tree.requestKey])\n } else {\n task.spawnedRuntimePrefetches.add(tree.requestKey)\n }\n // Then exit the traversal without prefetching anything further.\n return PrefetchTaskExitStatus.Done\n }\n\n // This segment should not be runtime prefetched. Prefetch its static data.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n tree\n )\n pingStaticSegmentData(now, task, route, segment, task.key, tree)\n if (tree.slots !== null) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n // Recursively ping the children.\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n const childExitStatus = pingNewPartOfCacheComponentsTree(\n now,\n task,\n route,\n childTree\n )\n if (childExitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n }\n }\n // This segment and all its children have finished prefetching.\n return PrefetchTaskExitStatus.Done\n}\n\nfunction diffRouteTreeAgainstCurrent(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n oldTree: FlightRouterState,\n newTree: RouteTree,\n spawnedEntries: Map,\n fetchStrategy:\n | FetchStrategy.Full\n | FetchStrategy.PPRRuntime\n | FetchStrategy.LoadingBoundary\n): FlightRouterState {\n // This is a single recursive traversal that does multiple things:\n // - Finds the parts of the target route (newTree) that are not part of\n // of the current page (oldTree) by diffing them, using the same algorithm\n // as a real navigation.\n // - Constructs a request tree (FlightRouterState) that describes which\n // segments need to be prefetched and which ones are already cached.\n // - Creates a set of pending cache entries for the segments that need to\n // be prefetched, so that a subsequent prefetch task does not request the\n // same segments again.\n const oldTreeChildren = oldTree[1]\n const newTreeChildren = newTree.slots\n let requestTreeChildren: Record = {}\n if (newTreeChildren !== null) {\n for (const parallelRouteKey in newTreeChildren) {\n const newTreeChild = newTreeChildren[parallelRouteKey]\n const newTreeChildSegment = newTreeChild.segment\n const oldTreeChild: FlightRouterState | void =\n oldTreeChildren[parallelRouteKey]\n const oldTreeChildSegment: FlightRouterStateSegment | void =\n oldTreeChild?.[0]\n if (\n oldTreeChildSegment !== undefined &&\n doesCurrentSegmentMatchCachedSegment(\n route,\n newTreeChildSegment,\n oldTreeChildSegment\n )\n ) {\n // This segment is already part of the current route. Keep traversing.\n const requestTreeChild = diffRouteTreeAgainstCurrent(\n now,\n task,\n route,\n oldTreeChild,\n newTreeChild,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n } else {\n // This segment is not part of the current route. We're entering a\n // part of the tree that we need to prefetch (unless everything is\n // already cached).\n switch (fetchStrategy) {\n case FetchStrategy.LoadingBoundary: {\n // When PPR is disabled, we can't prefetch per segment. We must\n // fallback to the old prefetch behavior and send a dynamic request.\n // Only routes that include a loading boundary can be prefetched in\n // this way.\n //\n // This is simlar to a \"full\" prefetch, but we're much more\n // conservative about which segments to include in the request.\n //\n // The server will only render up to the first loading boundary\n // inside new part of the tree. If there's no loading boundary\n // anywhere in the tree, the server will never return any data, so\n // we can skip the request.\n const subtreeHasLoadingBoundary =\n newTreeChild.hasLoadingBoundary !==\n HasLoadingBoundary.SubtreeHasNoLoadingBoundary\n const requestTreeChild = subtreeHasLoadingBoundary\n ? pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now,\n task,\n route,\n newTreeChild,\n null,\n spawnedEntries\n )\n : // There's no loading boundary within this tree. Bail out.\n convertRouteTreeToFlightRouterState(newTreeChild)\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n case FetchStrategy.PPRRuntime: {\n // This is a runtime prefetch. Fetch all cacheable data in the tree,\n // not just the static PPR shell.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n newTreeChild,\n false,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n case FetchStrategy.Full: {\n // This is a \"full\" prefetch. Fetch all the data in the tree, both\n // static and dynamic. We issue roughly the same request that we\n // would during a real navigation. The goal is that once the\n // navigation occurs, the router should not have to fetch any\n // additional data.\n //\n // Although the response will include dynamic data, opting into a\n // Full prefetch — via — implicitly\n // instructs the cache to treat the response as \"static\", or non-\n // dynamic, since the whole point is to cache it for\n // future navigations.\n //\n // Construct a tree (currently a FlightRouterState) that represents\n // which segments need to be prefetched and which ones are already\n // cached. If the tree is empty, then we can exit. Otherwise, we'll\n // send the request tree to the server and use the response to\n // populate the segment cache.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n newTreeChild,\n false,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n default:\n fetchStrategy satisfies never\n }\n }\n }\n }\n const requestTree: FlightRouterState = [\n newTree.segment,\n requestTreeChildren,\n null,\n null,\n newTree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n refetchMarkerContext: 'refetch' | 'inside-shared-layout' | null,\n spawnedEntries: Map\n): FlightRouterState {\n // This function is similar to pingRouteTreeAndIncludeDynamicData, except the\n // server is only going to return a minimal loading state — it will stop\n // rendering at the first loading boundary. Whereas a Full prefetch is\n // intentionally aggressive and tries to pretfetch all the data that will be\n // needed for a navigation, a LoadingBoundary prefetch is much more\n // conservative. For example, it will omit from the request tree any segment\n // that is already cached, regardles of whether it's partial or full. By\n // contrast, a Full prefetch will refetch partial segments.\n\n // \"inside-shared-layout\" tells the server where to start looking for a\n // loading boundary.\n let refetchMarker: 'refetch' | 'inside-shared-layout' | null =\n refetchMarkerContext === null ? 'inside-shared-layout' : null\n\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n tree\n )\n switch (segment.status) {\n case EntryStatus.Empty: {\n // This segment is not cached. Add a refetch marker so the server knows\n // to start rendering here.\n // TODO: Instead of a \"refetch\" marker, we could just omit this subtree's\n // FlightRouterState from the request tree. I think this would probably\n // already work even without any updates to the server. For consistency,\n // though, I'll send the full tree and we'll look into this later as part\n // of a larger redesign of the request protocol.\n\n // Add the pending cache entry to the result map.\n spawnedEntries.set(\n tree.requestKey,\n upgradeToPendingSegment(\n segment,\n // Set the fetch strategy to LoadingBoundary to indicate that the server\n // might not include it in the pending response. If another route is able\n // to issue a per-segment request, we'll do that in the background.\n FetchStrategy.LoadingBoundary\n )\n )\n if (refetchMarkerContext !== 'refetch') {\n refetchMarker = refetchMarkerContext = 'refetch'\n } else {\n // There's already a parent with a refetch marker, so we don't need\n // to add another one.\n }\n break\n }\n case EntryStatus.Fulfilled: {\n // The segment is already cached.\n const segmentHasLoadingBoundary =\n tree.hasLoadingBoundary === HasLoadingBoundary.SegmentHasLoadingBoundary\n if (segmentHasLoadingBoundary) {\n // This segment has a loading boundary, which means the server won't\n // render its children. So there's nothing left to prefetch along this\n // path. We can bail out.\n return convertRouteTreeToFlightRouterState(tree)\n }\n // NOTE: If the cached segment were fetched using PPR, then it might be\n // partial. We could get a more complete version of the segment by\n // including it in this non-PPR request.\n //\n // We're intentionally choosing not to, though, because it's generally\n // better to avoid doing a full prefetch whenever possible.\n break\n }\n case EntryStatus.Pending: {\n // There's another prefetch currently in progress. Don't add the refetch\n // marker yet, so the server knows it can skip rendering this segment.\n break\n }\n case EntryStatus.Rejected: {\n // The segment failed to load. We shouldn't issue another request until\n // the stale time has elapsed.\n break\n }\n default:\n segment satisfies never\n }\n const requestTreeChildren: Record = {}\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] =\n pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now,\n task,\n route,\n childTree,\n refetchMarkerContext,\n spawnedEntries\n )\n }\n }\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker,\n tree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingRouteTreeAndIncludeDynamicData(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n isInsideRefetchingParent: boolean,\n spawnedEntries: Map,\n fetchStrategy: FetchStrategy.Full | FetchStrategy.PPRRuntime\n): FlightRouterState {\n // The tree we're constructing is the same shape as the tree we're navigating\n // to. But even though this is a \"new\" tree, some of the individual segments\n // may be cached as a result of other route prefetches.\n //\n // So we need to find the first uncached segment along each path add an\n // explicit \"refetch\" marker so the server knows where to start rendering.\n // Once the server starts rendering along a path, it keeps rendering the\n // entire subtree.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n // Note that `fetchStrategy` might be different from `task.fetchStrategy`,\n // and we have to use the former here.\n // We can have a task with `FetchStrategy.PPR` where some of its segments are configured to\n // always use runtime prefetching (via `export const prefetch`), and those should check for\n // entries that include search params.\n fetchStrategy,\n route,\n tree\n )\n\n let spawnedSegment: PendingSegmentCacheEntry | null = null\n\n switch (segment.status) {\n case EntryStatus.Empty: {\n // This segment is not cached. Include it in the request.\n spawnedSegment = upgradeToPendingSegment(segment, fetchStrategy)\n break\n }\n case EntryStatus.Fulfilled: {\n // The segment is already cached.\n if (\n segment.isPartial &&\n canNewFetchStrategyProvideMoreContent(\n segment.fetchStrategy,\n fetchStrategy\n )\n ) {\n // The cached segment contains dynamic holes, and was prefetched using a less specific strategy than the current one.\n // This means we're in one of these cases:\n // - we have a static prefetch, and we're doing a runtime prefetch\n // - we have a static or runtime prefetch, and we're doing a Full prefetch (or a navigation).\n // In either case, we need to include it in the request to get a more specific (or full) version.\n spawnedSegment = pingFullSegmentRevalidation(\n now,\n route,\n tree,\n fetchStrategy\n )\n }\n break\n }\n case EntryStatus.Pending:\n case EntryStatus.Rejected: {\n // There's either another prefetch currently in progress, or the previous\n // attempt failed. If the new strategy can provide more content, fetch it again.\n if (\n canNewFetchStrategyProvideMoreContent(\n segment.fetchStrategy,\n fetchStrategy\n )\n ) {\n spawnedSegment = pingFullSegmentRevalidation(\n now,\n route,\n tree,\n fetchStrategy\n )\n }\n break\n }\n default:\n segment satisfies never\n }\n const requestTreeChildren: Record = {}\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] =\n pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n childTree,\n isInsideRefetchingParent || spawnedSegment !== null,\n spawnedEntries,\n fetchStrategy\n )\n }\n }\n\n if (spawnedSegment !== null) {\n // Add the pending entry to the result map.\n spawnedEntries.set(tree.requestKey, spawnedSegment)\n }\n\n // Don't bother to add a refetch marker if one is already present in a parent.\n const refetchMarker =\n !isInsideRefetchingParent && spawnedSegment !== null ? 'refetch' : null\n\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker,\n tree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingRuntimePrefetches(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n spawnedRuntimePrefetches: Set,\n spawnedEntries: Map\n): FlightRouterState {\n // Construct a request tree (FlightRouterState) for a runtime prefetch. If\n // a segment is part of the runtime prefetch, the tree is constructed by\n // diffing against what's already in the prefetch cache. Otherwise, we send\n // a regular FlightRouterState with no special markers.\n //\n // See pingRouteTreeAndIncludeDynamicData for details.\n if (spawnedRuntimePrefetches.has(tree.requestKey)) {\n // This segment needs a runtime prefetch.\n return pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n tree,\n false,\n spawnedEntries,\n FetchStrategy.PPRRuntime\n )\n }\n let requestTreeChildren: Record = {}\n const slots = tree.slots\n if (slots !== null) {\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] = pingRuntimePrefetches(\n now,\n task,\n route,\n childTree,\n spawnedRuntimePrefetches,\n spawnedEntries\n )\n }\n }\n\n // This segment is not part of the runtime prefetch. Clone the base tree.\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n null,\n ]\n return requestTree\n}\n\nfunction pingStaticSegmentData(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n segment: SegmentCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): void {\n switch (segment.status) {\n case EntryStatus.Empty:\n // Upgrade to Pending so we know there's already a request in progress\n spawnPrefetchSubtask(\n fetchSegmentOnCacheMiss(\n route,\n upgradeToPendingSegment(segment, FetchStrategy.PPR),\n routeKey,\n tree\n )\n )\n break\n case EntryStatus.Pending: {\n // There's already a request in progress. Depending on what kind of\n // request it is, we may want to revalidate it.\n switch (segment.fetchStrategy) {\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n // There's already a request in progress. Don't do anything.\n break\n case FetchStrategy.LoadingBoundary:\n // There's a pending request, but because it's using the old\n // prefetching strategy, we can't be sure if it will be fulfilled by\n // the response — it might be inside the loading boundary. Perform\n // a revalidation, but because it's speculative, wait to do it at\n // background priority.\n if (background(task)) {\n // TODO: Instead of speculatively revalidating, consider including\n // `hasLoading` in the route tree prefetch response.\n pingPPRSegmentRevalidation(now, route, routeKey, tree)\n }\n break\n default:\n segment.fetchStrategy satisfies never\n }\n break\n }\n case EntryStatus.Rejected: {\n // The existing entry in the cache was rejected. Depending on how it\n // was originally fetched, we may or may not want to revalidate it.\n switch (segment.fetchStrategy) {\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n // The previous attempt to fetch this entry failed. Don't attempt to\n // fetch it again until the entry expires.\n break\n case FetchStrategy.LoadingBoundary:\n // There's a rejected entry, but it was fetched using the loading\n // boundary strategy. So the reason it wasn't returned by the server\n // might just be because it was inside a loading boundary. Or because\n // there was a dynamic rewrite. Revalidate it using the per-\n // segment strategy.\n //\n // Because a rejected segment will definitely prevent the segment (and\n // all of its children) from rendering, we perform this revalidation\n // immediately instead of deferring it to a background task.\n pingPPRSegmentRevalidation(now, route, routeKey, tree)\n break\n default:\n segment.fetchStrategy satisfies never\n }\n break\n }\n case EntryStatus.Fulfilled:\n // Segment is already cached. There's nothing left to prefetch.\n break\n default:\n segment satisfies never\n }\n\n // Segments do not have dependent tasks, so once the prefetch is initiated,\n // there's nothing else for us to do (except write the server data into the\n // entry, which is handled by `fetchSegmentOnCacheMiss`).\n}\n\nfunction pingPPRSegmentRevalidation(\n now: number,\n route: FulfilledRouteCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): void {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(\n now,\n FetchStrategy.PPR,\n route,\n tree\n )\n switch (revalidatingSegment.status) {\n case EntryStatus.Empty:\n // Spawn a prefetch request and upsert the segment into the cache\n // upon completion.\n upsertSegmentOnCompletion(\n spawnPrefetchSubtask(\n fetchSegmentOnCacheMiss(\n route,\n upgradeToPendingSegment(revalidatingSegment, FetchStrategy.PPR),\n routeKey,\n tree\n )\n ),\n getSegmentVaryPathForRequest(FetchStrategy.PPR, tree)\n )\n break\n case EntryStatus.Pending:\n // There's already a revalidation in progress.\n break\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n break\n default:\n revalidatingSegment satisfies never\n }\n}\n\nfunction pingFullSegmentRevalidation(\n now: number,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n fetchStrategy: FetchStrategy.Full | FetchStrategy.PPRRuntime\n): PendingSegmentCacheEntry | null {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(\n now,\n fetchStrategy,\n route,\n tree\n )\n if (revalidatingSegment.status === EntryStatus.Empty) {\n // During a Full/PPRRuntime prefetch, a single dynamic request is made for all the\n // segments that we need. So we don't initiate a request here directly. By\n // returning a pending entry from this function, it signals to the caller\n // that this segment should be included in the request that's sent to\n // the server.\n const pendingSegment = upgradeToPendingSegment(\n revalidatingSegment,\n fetchStrategy\n )\n upsertSegmentOnCompletion(\n waitForSegmentCacheEntry(pendingSegment),\n getSegmentVaryPathForRequest(fetchStrategy, tree)\n )\n return pendingSegment\n } else {\n // There's already a revalidation in progress.\n const nonEmptyRevalidatingSegment = revalidatingSegment\n if (\n canNewFetchStrategyProvideMoreContent(\n nonEmptyRevalidatingSegment.fetchStrategy,\n fetchStrategy\n )\n ) {\n // The existing revalidation was fetched using a less specific strategy.\n // Reset it and start a new revalidation.\n const emptySegment = overwriteRevalidatingSegmentCacheEntry(\n fetchStrategy,\n route,\n tree\n )\n const pendingSegment = upgradeToPendingSegment(\n emptySegment,\n fetchStrategy\n )\n upsertSegmentOnCompletion(\n waitForSegmentCacheEntry(pendingSegment),\n getSegmentVaryPathForRequest(fetchStrategy, tree)\n )\n return pendingSegment\n }\n switch (nonEmptyRevalidatingSegment.status) {\n case EntryStatus.Pending:\n // There's already an in-progress prefetch that includes this segment.\n return null\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n return null\n default:\n nonEmptyRevalidatingSegment satisfies never\n return null\n }\n }\n}\n\nconst noop = () => {}\n\nfunction upsertSegmentOnCompletion(\n promise: Promise,\n varyPath: SegmentVaryPath\n) {\n // Wait for a segment to finish loading, then upsert it into the cache\n promise.then((fulfilled) => {\n if (fulfilled !== null) {\n // Received new data. Attempt to replace the existing entry in the cache.\n upsertSegmentEntry(Date.now(), varyPath, fulfilled)\n }\n }, noop)\n}\n\nfunction doesCurrentSegmentMatchCachedSegment(\n route: FulfilledRouteCacheEntry,\n currentSegment: Segment,\n cachedSegment: Segment\n): boolean {\n if (cachedSegment === PAGE_SEGMENT_KEY) {\n // In the FlightRouterState stored by the router, the page segment has the\n // rendered search params appended to the name of the segment. In the\n // prefetch cache, however, this is stored separately. So, when comparing\n // the router's current FlightRouterState to the cached FlightRouterState,\n // we need to make sure we compare both parts of the segment.\n // TODO: This is not modeled clearly. We use the same type,\n // FlightRouterState, for both the CacheNode tree _and_ the prefetch cache\n // _and_ the server response format, when conceptually those are three\n // different things and treated in different ways. We should encode more of\n // this information into the type design so mistakes are less likely.\n return (\n currentSegment ===\n addSearchParamsIfPageSegment(\n PAGE_SEGMENT_KEY,\n Object.fromEntries(new URLSearchParams(route.renderedSearch))\n )\n )\n }\n // Non-page segments are compared using the same function as the server\n return matchSegment(cachedSegment, currentSegment)\n}\n\n// -----------------------------------------------------------------------------\n// The remainder of the module is a MinHeap implementation. Try not to put any\n// logic below here unless it's related to the heap algorithm. We can extract\n// this to a separate module if/when we need multiple kinds of heaps.\n// -----------------------------------------------------------------------------\n\nfunction compareQueuePriority(a: PrefetchTask, b: PrefetchTask) {\n // Since the queue is a MinHeap, this should return a positive number if b is\n // higher priority than a, and a negative number if a is higher priority\n // than b.\n\n // `priority` is an integer, where higher numbers are higher priority.\n const priorityDiff = b.priority - a.priority\n if (priorityDiff !== 0) {\n return priorityDiff\n }\n\n // If the priority is the same, check which phase the prefetch is in — is it\n // prefetching the route tree, or the segments? Route trees are prioritized.\n const phaseDiff = b.phase - a.phase\n if (phaseDiff !== 0) {\n return phaseDiff\n }\n\n // Finally, check the insertion order. `sortId` is an incrementing counter\n // assigned to prefetches. We want to process the newest prefetches first.\n return b.sortId - a.sortId\n}\n\nfunction heapPush(heap: Array, node: PrefetchTask): void {\n const index = heap.length\n heap.push(node)\n node._heapIndex = index\n heapSiftUp(heap, node, index)\n}\n\nfunction heapPeek(heap: Array): PrefetchTask | null {\n return heap.length === 0 ? null : heap[0]\n}\n\nfunction heapPop(heap: Array): PrefetchTask | null {\n if (heap.length === 0) {\n return null\n }\n const first = heap[0]\n first._heapIndex = -1\n const last = heap.pop() as PrefetchTask\n if (last !== first) {\n heap[0] = last\n last._heapIndex = 0\n heapSiftDown(heap, last, 0)\n }\n return first\n}\n\nfunction heapDelete(heap: Array, node: PrefetchTask): void {\n const index = node._heapIndex\n if (index !== -1) {\n node._heapIndex = -1\n if (heap.length !== 0) {\n const last = heap.pop() as PrefetchTask\n if (last !== node) {\n heap[index] = last\n last._heapIndex = index\n heapSiftDown(heap, last, index)\n }\n }\n }\n}\n\nfunction heapResift(heap: Array, node: PrefetchTask): void {\n const index = node._heapIndex\n if (index !== -1) {\n if (index === 0) {\n heapSiftDown(heap, node, 0)\n } else {\n const parentIndex = (index - 1) >>> 1\n const parent = heap[parentIndex]\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Sift up.\n heapSiftUp(heap, node, index)\n } else {\n // The parent is smaller (or equal). Sift down.\n heapSiftDown(heap, node, index)\n }\n }\n }\n}\n\nfunction heapSiftUp(\n heap: Array,\n node: PrefetchTask,\n i: number\n): void {\n let index = i\n while (index > 0) {\n const parentIndex = (index - 1) >>> 1\n const parent = heap[parentIndex]\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Swap positions.\n heap[parentIndex] = node\n node._heapIndex = parentIndex\n heap[index] = parent\n parent._heapIndex = index\n\n index = parentIndex\n } else {\n // The parent is smaller. Exit.\n return\n }\n }\n}\n\nfunction heapSiftDown(\n heap: Array,\n node: PrefetchTask,\n i: number\n): void {\n let index = i\n const length = heap.length\n const halfLength = length >>> 1\n while (index < halfLength) {\n const leftIndex = (index + 1) * 2 - 1\n const left = heap[leftIndex]\n const rightIndex = leftIndex + 1\n const right = heap[rightIndex]\n\n // If the left or right node is smaller, swap with the smaller of those.\n if (compareQueuePriority(left, node) < 0) {\n if (rightIndex < length && compareQueuePriority(right, left) < 0) {\n heap[index] = right\n right._heapIndex = index\n heap[rightIndex] = node\n node._heapIndex = rightIndex\n\n index = rightIndex\n } else {\n heap[index] = left\n left._heapIndex = index\n heap[leftIndex] = node\n node._heapIndex = leftIndex\n\n index = leftIndex\n }\n } else if (rightIndex < length && compareQueuePriority(right, node) < 0) {\n heap[index] = right\n right._heapIndex = index\n heap[rightIndex] = node\n node._heapIndex = rightIndex\n\n index = rightIndex\n } else {\n // Neither child is smaller. Exit.\n return\n }\n }\n}\n"],"names":["HasLoadingBoundary","matchSegment","readOrCreateRouteCacheEntry","readOrCreateSegmentCacheEntry","fetchRouteOnCacheMiss","fetchSegmentOnCacheMiss","EntryStatus","fetchSegmentPrefetchesUsingDynamicRequest","convertRouteTreeToFlightRouterState","readOrCreateRevalidatingSegmentEntry","upsertSegmentEntry","upgradeToPendingSegment","waitForSegmentCacheEntry","overwriteRevalidatingSegmentCacheEntry","canNewFetchStrategyProvideMoreContent","getSegmentVaryPathForRequest","createCacheKey","FetchStrategy","PrefetchPriority","getCurrentCacheVersion","addSearchParamsIfPageSegment","PAGE_SEGMENT_KEY","scheduleMicrotask","queueMicrotask","fn","Promise","resolve","then","catch","error","setTimeout","taskHeap","inProgressRequests","sortIdCounter","didScheduleMicrotask","mostRecentlyHoveredLink","REVALIDATION_COOLDOWN_MS","revalidationCooldownTimeoutHandle","startRevalidationCooldown","clearTimeout","ensureWorkIsScheduled","schedulePrefetchTask","key","treeAtTimeOfPrefetch","fetchStrategy","priority","onInvalidate","task","cacheVersion","phase","hasBackgroundWork","spawnedRuntimePrefetches","sortId","isCanceled","_heapIndex","trackMostRecentlyHoveredLink","heapPush","cancelPrefetchTask","heapDelete","reschedulePrefetchTask","Intent","heapResift","isPrefetchTaskDirty","nextUrl","tree","currentCacheVersion","Background","Default","processQueueInMicrotask","hasNetworkBandwidth","spawnPrefetchSubtask","prefetchSubtask","result","onPrefetchConnectionClosed","closed","value","pingPrefetchTask","now","Date","heapPeek","exitStatus","pingRoute","heapPop","background","route","pingRootRouteTree","search","url","URL","pathname","location","origin","keyWithoutSearch","href","routeWithoutSearch","status","Empty","Pending","Fulfilled","Rejected","staleAt","blockedTasks","Set","add","PPR","isPPREnabled","LoadingBoundary","pingStaticHead","pingSharedPartOfCacheComponentsTree","spawnedEntries","Map","pingRuntimeHead","PPRRuntime","requestTree","pingRuntimePrefetches","needsDynamicRequest","size","Full","dynamicRequestTree","diffRouteTreeAgainstCurrent","pingStaticSegmentData","metadata","pingRouteTreeAndIncludeDynamicData","oldTree","newTree","segment","oldTreeChildren","newTreeChildren","slots","parallelRouteKey","newTreeChild","newTreeChildSegment","oldTreeChild","oldTreeChildSegment","childExitStatus","undefined","doesCurrentSegmentMatchCachedSegment","pingNewPartOfCacheComponentsTree","hasRuntimePrefetch","requestKey","childTree","requestTreeChildren","requestTreeChild","subtreeHasLoadingBoundary","hasLoadingBoundary","SubtreeHasNoLoadingBoundary","pingPPRDisabledRouteTreeUpToLoadingBoundary","isRootLayout","refetchMarkerContext","refetchMarker","set","segmentHasLoadingBoundary","SegmentHasLoadingBoundary","isInsideRefetchingParent","spawnedSegment","isPartial","pingFullSegmentRevalidation","has","routeKey","pingPPRSegmentRevalidation","revalidatingSegment","upsertSegmentOnCompletion","pendingSegment","nonEmptyRevalidatingSegment","emptySegment","noop","promise","varyPath","fulfilled","currentSegment","cachedSegment","Object","fromEntries","URLSearchParams","renderedSearch","compareQueuePriority","a","b","priorityDiff","phaseDiff","heap","node","index","length","push","heapSiftUp","first","last","pop","heapSiftDown","parentIndex","parent","i","halfLength","leftIndex","left","rightIndex","right"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 5743, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/links.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n PrefetchPriority,\n} from './segment-cache/types'\nimport { createCacheKey } from './segment-cache/cache-key'\nimport {\n type PrefetchTask,\n schedulePrefetchTask as scheduleSegmentPrefetchTask,\n cancelPrefetchTask,\n reschedulePrefetchTask,\n isPrefetchTaskDirty,\n} from './segment-cache/scheduler'\nimport { startTransition } from 'react'\n\ntype LinkElement = HTMLAnchorElement | SVGAElement\n\ntype Element = LinkElement | HTMLFormElement\n\n// Properties that are shared between Link and Form instances. We use the same\n// shape for both to prevent a polymorphic de-opt in the VM.\ntype LinkOrFormInstanceShared = {\n router: AppRouterInstance\n fetchStrategy: PrefetchTaskFetchStrategy\n\n isVisible: boolean\n\n // The most recently initiated prefetch task. It may or may not have\n // already completed. The same prefetch task object can be reused across\n // multiple prefetches of the same link.\n prefetchTask: PrefetchTask | null\n}\n\nexport type FormInstance = LinkOrFormInstanceShared & {\n prefetchHref: string\n setOptimisticLinkStatus: null\n}\n\ntype PrefetchableLinkInstance = LinkOrFormInstanceShared & {\n prefetchHref: string\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n}\n\ntype NonPrefetchableLinkInstance = LinkOrFormInstanceShared & {\n prefetchHref: null\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n}\n\ntype PrefetchableInstance = PrefetchableLinkInstance | FormInstance\n\nexport type LinkInstance =\n | PrefetchableLinkInstance\n | NonPrefetchableLinkInstance\n\n// Tracks the most recently navigated link instance. When null, indicates\n// the current navigation was not initiated by a link click.\nlet linkForMostRecentNavigation: LinkInstance | null = null\n\n// Status object indicating link is pending\nexport const PENDING_LINK_STATUS = { pending: true }\n\n// Status object indicating link is idle\nexport const IDLE_LINK_STATUS = { pending: false }\n\n// Updates the loading state when navigating between links\n// - Resets the previous link's loading state\n// - Sets the new link's loading state\n// - Updates tracking of current navigation\nexport function setLinkForCurrentNavigation(link: LinkInstance | null) {\n startTransition(() => {\n linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS)\n link?.setOptimisticLinkStatus(PENDING_LINK_STATUS)\n linkForMostRecentNavigation = link\n })\n}\n\n// Unmounts the current link instance from navigation tracking\nexport function unmountLinkForCurrentNavigation(link: LinkInstance) {\n if (linkForMostRecentNavigation === link) {\n linkForMostRecentNavigation = null\n }\n}\n\n// Use a WeakMap to associate a Link instance with its DOM element. This is\n// used by the IntersectionObserver to track the link's visibility.\nconst prefetchable:\n | WeakMap\n | Map =\n typeof WeakMap === 'function' ? new WeakMap() : new Map()\n\n// A Set of the currently visible links. We re-prefetch visible links after a\n// cache invalidation, or when the current URL changes. It's a separate data\n// structure from the WeakMap above because only the visible links need to\n// be enumerated.\nconst prefetchableAndVisible: Set = new Set()\n\n// A single IntersectionObserver instance shared by all components.\nconst observer: IntersectionObserver | null =\n typeof IntersectionObserver === 'function'\n ? new IntersectionObserver(handleIntersect, {\n rootMargin: '200px',\n })\n : null\n\nfunction observeVisibility(element: Element, instance: PrefetchableInstance) {\n const existingInstance = prefetchable.get(element)\n if (existingInstance !== undefined) {\n // This shouldn't happen because each component should have its own\n // anchor tag instance, but it's defensive coding to avoid a memory leak in\n // case there's a logical error somewhere else.\n unmountPrefetchableInstance(element)\n }\n // Only track prefetchable links that have a valid prefetch URL\n prefetchable.set(element, instance)\n if (observer !== null) {\n observer.observe(element)\n }\n}\n\nfunction coercePrefetchableUrl(href: string): URL | null {\n if (typeof window !== 'undefined') {\n const { createPrefetchURL } =\n require('./app-router-utils') as typeof import('./app-router-utils')\n\n try {\n return createPrefetchURL(href)\n } catch {\n // createPrefetchURL sometimes throws an error if an invalid URL is\n // provided, though I'm not sure if it's actually necessary.\n // TODO: Consider removing the throw from the inner function, or change it\n // to reportError. Or maybe the error isn't even necessary for automatic\n // prefetches, just navigations.\n const reportErrorFn =\n typeof reportError === 'function' ? reportError : console.error\n reportErrorFn(\n `Cannot prefetch '${href}' because it cannot be converted to a URL.`\n )\n return null\n }\n } else {\n return null\n }\n}\n\nexport function mountLinkInstance(\n element: LinkElement,\n href: string,\n router: AppRouterInstance,\n fetchStrategy: PrefetchTaskFetchStrategy,\n prefetchEnabled: boolean,\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n): LinkInstance {\n if (prefetchEnabled) {\n const prefetchURL = coercePrefetchableUrl(href)\n if (prefetchURL !== null) {\n const instance: PrefetchableLinkInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus,\n }\n // We only observe the link's visibility if it's prefetchable. For\n // example, this excludes links to external URLs.\n observeVisibility(element, instance)\n return instance\n }\n }\n // If the link is not prefetchable, we still create an instance so we can\n // track its optimistic state (i.e. useLinkStatus).\n const instance: NonPrefetchableLinkInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: null,\n setOptimisticLinkStatus,\n }\n return instance\n}\n\nexport function mountFormInstance(\n element: HTMLFormElement,\n href: string,\n router: AppRouterInstance,\n fetchStrategy: PrefetchTaskFetchStrategy\n): void {\n const prefetchURL = coercePrefetchableUrl(href)\n if (prefetchURL === null) {\n // This href is not prefetchable, so we don't track it.\n // TODO: We currently observe/unobserve a form every time its href changes.\n // For Links, this isn't a big deal because the href doesn't usually change,\n // but for forms it's extremely common. We should optimize this.\n return\n }\n const instance: FormInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus: null,\n }\n observeVisibility(element, instance)\n}\n\nexport function unmountPrefetchableInstance(element: Element) {\n const instance = prefetchable.get(element)\n if (instance !== undefined) {\n prefetchable.delete(element)\n prefetchableAndVisible.delete(instance)\n const prefetchTask = instance.prefetchTask\n if (prefetchTask !== null) {\n cancelPrefetchTask(prefetchTask)\n }\n }\n if (observer !== null) {\n observer.unobserve(element)\n }\n}\n\nfunction handleIntersect(entries: Array) {\n for (const entry of entries) {\n // Some extremely old browsers or polyfills don't reliably support\n // isIntersecting so we check intersectionRatio instead. (Do we care? Not\n // really. But whatever this is fine.)\n const isVisible = entry.intersectionRatio > 0\n onLinkVisibilityChanged(entry.target as HTMLAnchorElement, isVisible)\n }\n}\n\nexport function onLinkVisibilityChanged(element: Element, isVisible: boolean) {\n if (process.env.NODE_ENV !== 'production') {\n // Prefetching on viewport is disabled in development for performance\n // reasons, because it requires compiling the target page.\n // TODO: Investigate re-enabling this.\n return\n }\n\n const instance = prefetchable.get(element)\n if (instance === undefined) {\n return\n }\n\n instance.isVisible = isVisible\n if (isVisible) {\n prefetchableAndVisible.add(instance)\n } else {\n prefetchableAndVisible.delete(instance)\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Default)\n}\n\nexport function onNavigationIntent(\n element: HTMLAnchorElement | SVGAElement,\n unstable_upgradeToDynamicPrefetch: boolean\n) {\n const instance = prefetchable.get(element)\n if (instance === undefined) {\n return\n }\n // Prefetch the link on hover/touchstart.\n if (instance !== undefined) {\n if (\n process.env.__NEXT_DYNAMIC_ON_HOVER &&\n unstable_upgradeToDynamicPrefetch\n ) {\n // Switch to a full prefetch\n instance.fetchStrategy = FetchStrategy.Full\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Intent)\n }\n}\n\nfunction rescheduleLinkPrefetch(\n instance: PrefetchableInstance,\n priority: PrefetchPriority.Default | PrefetchPriority.Intent\n) {\n // Ensures that app-router-instance is not compiled in the server bundle\n if (typeof window !== 'undefined') {\n const existingPrefetchTask = instance.prefetchTask\n\n if (!instance.isVisible) {\n // Cancel any in-progress prefetch task. (If it already finished then this\n // is a no-op.)\n if (existingPrefetchTask !== null) {\n cancelPrefetchTask(existingPrefetchTask)\n }\n // We don't need to reset the prefetchTask to null upon cancellation; an\n // old task object can be rescheduled with reschedulePrefetchTask. This is a\n // micro-optimization but also makes the code simpler (don't need to\n // worry about whether an old task object is stale).\n return\n }\n\n const { getCurrentAppRouterState } =\n require('./app-router-instance') as typeof import('./app-router-instance')\n\n const appRouterState = getCurrentAppRouterState()\n if (appRouterState !== null) {\n const treeAtTimeOfPrefetch = appRouterState.tree\n if (existingPrefetchTask === null) {\n // Initiate a prefetch task.\n const nextUrl = appRouterState.nextUrl\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n instance.prefetchTask = scheduleSegmentPrefetchTask(\n cacheKey,\n treeAtTimeOfPrefetch,\n instance.fetchStrategy,\n priority,\n null\n )\n } else {\n // We already have an old task object that we can reschedule. This is\n // effectively the same as canceling the old task and creating a new one.\n reschedulePrefetchTask(\n existingPrefetchTask,\n treeAtTimeOfPrefetch,\n instance.fetchStrategy,\n priority\n )\n }\n }\n }\n}\n\nexport function pingVisibleLinks(\n nextUrl: string | null,\n tree: FlightRouterState\n) {\n // For each currently visible link, cancel the existing prefetch task (if it\n // exists) and schedule a new one. This is effectively the same as if all the\n // visible links left and then re-entered the viewport.\n //\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n for (const instance of prefetchableAndVisible) {\n const task = instance.prefetchTask\n if (task !== null && !isPrefetchTaskDirty(task, nextUrl, tree)) {\n // The cache has not been invalidated, and none of the inputs have\n // changed. Bail out.\n continue\n }\n // Something changed. Cancel the existing prefetch task and schedule a\n // new one.\n if (task !== null) {\n cancelPrefetchTask(task)\n }\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n instance.prefetchTask = scheduleSegmentPrefetchTask(\n cacheKey,\n tree,\n instance.fetchStrategy,\n PrefetchPriority.Default,\n null\n )\n }\n}\n"],"names":["FetchStrategy","PrefetchPriority","createCacheKey","schedulePrefetchTask","scheduleSegmentPrefetchTask","cancelPrefetchTask","reschedulePrefetchTask","isPrefetchTaskDirty","startTransition","linkForMostRecentNavigation","PENDING_LINK_STATUS","pending","IDLE_LINK_STATUS","setLinkForCurrentNavigation","link","setOptimisticLinkStatus","unmountLinkForCurrentNavigation","prefetchable","WeakMap","Map","prefetchableAndVisible","Set","observer","IntersectionObserver","handleIntersect","rootMargin","observeVisibility","element","instance","existingInstance","get","undefined","unmountPrefetchableInstance","set","observe","coercePrefetchableUrl","href","window","createPrefetchURL","require","reportErrorFn","reportError","console","error","mountLinkInstance","router","fetchStrategy","prefetchEnabled","prefetchURL","isVisible","prefetchTask","prefetchHref","mountFormInstance","delete","unobserve","entries","entry","intersectionRatio","onLinkVisibilityChanged","target","process","env","NODE_ENV","add","rescheduleLinkPrefetch","Default","onNavigationIntent","unstable_upgradeToDynamicPrefetch","__NEXT_DYNAMIC_ON_HOVER","Full","Intent","priority","existingPrefetchTask","getCurrentAppRouterState","appRouterState","treeAtTimeOfPrefetch","tree","nextUrl","cacheKey","pingVisibleLinks","task"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 5953, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/promise-with-resolvers.ts"],"sourcesContent":["export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n"],"names":["createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej"],"mappings":";;;;AAAO,SAASA;IACd,iDAAiD;IACjD,IAAIC;IACJ,IAAIC;IACJ,MAAMC,UAAU,IAAIC,QAAW,CAACC,KAAKC;QACnCL,UAAUI;QACVH,SAASI;IACX;IACA,OAAO;QAAEL,SAASA;QAAUC,QAAQA;QAASC;IAAQ;AACvD","ignoreList":[0]}}, - {"offset": {"line": 5975, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache.ts"],"sourcesContent":["import type {\n TreePrefetch,\n RootTreePrefetch,\n SegmentPrefetch,\n} from '../../../server/app-render/collect-segment-data'\nimport type { LoadingModuleData } from '../../../shared/lib/app-router-types'\nimport type {\n CacheNodeSeedData,\n Segment as FlightRouterStateSegment,\n} from '../../../shared/lib/app-router-types'\nimport { HasLoadingBoundary } from '../../../shared/lib/app-router-types'\nimport {\n NEXT_DID_POSTPONE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STALE_TIME_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n RSC_CONTENT_TYPE_HEADER,\n RSC_HEADER,\n} from '../app-router-headers'\nimport {\n createFetch,\n createFromNextReadableStream,\n type RSCResponse,\n type RequestHeaders,\n} from '../router-reducer/fetch-server-response'\nimport {\n pingPrefetchTask,\n isPrefetchTaskDirty,\n type PrefetchTask,\n type PrefetchSubtaskResult,\n startRevalidationCooldown,\n} from './scheduler'\nimport {\n type RouteVaryPath,\n type SegmentVaryPath,\n type PartialSegmentVaryPath,\n getRouteVaryPath,\n getFulfilledRouteVaryPath,\n getSegmentVaryPathForRequest,\n appendLayoutVaryPath,\n finalizeLayoutVaryPath,\n finalizePageVaryPath,\n clonePageVaryPathWithNewSearchParams,\n type PageVaryPath,\n finalizeMetadataVaryPath,\n} from './vary-path'\nimport { getAppBuildId } from '../../app-build-id'\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url'\nimport type { NormalizedSearch, RouteCacheKey } from './cache-key'\n// TODO: Rename this module to avoid confusion with other types of cache keys\nimport { createCacheKey as createPrefetchRequestKey } from './cache-key'\nimport {\n doesStaticSegmentAppearInURL,\n getCacheKeyForDynamicParam,\n getRenderedPathname,\n getRenderedSearch,\n parseDynamicParamFromURLPart,\n} from '../../route-params'\nimport {\n createCacheMap,\n getFromCacheMap,\n setInCacheMap,\n setSizeInCacheMap,\n deleteFromCacheMap,\n isValueExpired,\n type CacheMap,\n type UnknownMapEntry,\n} from './cache-map'\nimport {\n appendSegmentRequestKeyPart,\n convertSegmentPathToStaticExportFilename,\n createSegmentRequestKeyPart,\n HEAD_REQUEST_KEY,\n ROOT_SEGMENT_REQUEST_KEY,\n type SegmentRequestKey,\n} from '../../../shared/lib/segment-cache/segment-value-encoding'\nimport type {\n FlightRouterState,\n NavigationFlightResponse,\n} from '../../../shared/lib/app-router-types'\nimport {\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n} from '../../flight-data-helpers'\nimport { STATIC_STALETIME_MS } from '../router-reducer/reducers/navigate-reducer'\nimport { pingVisibleLinks } from '../links'\nimport { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment'\nimport { FetchStrategy } from './types'\nimport { createPromiseWithResolvers } from '../../../shared/lib/promise-with-resolvers'\n\n/**\n * Ensures a minimum stale time of 30s to avoid issues where the server sends a too\n * short-lived stale time, which would prevent anything from being prefetched.\n */\nexport function getStaleTimeMs(staleTimeSeconds: number): number {\n return Math.max(staleTimeSeconds, 30) * 1000\n}\n\n// A note on async/await when working in the prefetch cache:\n//\n// Most async operations in the prefetch cache should *not* use async/await,\n// Instead, spawn a subtask that writes the results to a cache entry, and attach\n// a \"ping\" listener to notify the prefetch queue to try again.\n//\n// The reason is we need to be able to access the segment cache and traverse its\n// data structures synchronously. For example, if there's a synchronous update\n// we can take an immediate snapshot of the cache to produce something we can\n// render. Limiting the use of async/await also makes it easier to avoid race\n// conditions, which is especially important because is cache is mutable.\n//\n// Another reason is that while we're performing async work, it's possible for\n// existing entries to become stale, or for Link prefetches to be removed from\n// the queue. For optimal scheduling, we need to be able to \"cancel\" subtasks\n// that are no longer needed. So, when a segment is received from the server, we\n// restart from the root of the tree that's being prefetched, to confirm all the\n// parent segments are still cached. If the segment is no longer reachable from\n// the root, then it's effectively canceled. This is similar to the design of\n// Rust Futures, or React Suspense.\n\ntype RouteTreeShared = {\n requestKey: SegmentRequestKey\n // TODO: Remove the `segment` field, now that it can be reconstructed\n // from `param`.\n segment: FlightRouterStateSegment\n slots: null | {\n [parallelRouteKey: string]: RouteTree\n }\n isRootLayout: boolean\n\n // If this is a dynamic route, indicates whether there is a loading boundary\n // somewhere in the tree. If not, we can skip the prefetch for the data,\n // because we know it would be an empty response. (For a static/PPR route,\n // this value is disregarded, because in that model `loading.tsx` is treated\n // like any other Suspense boundary.)\n hasLoadingBoundary: HasLoadingBoundary\n\n // Indicates whether this route has a runtime prefetch that we can request.\n // This is determined by the server; it's not purely a user configuration\n // because the server may determine that a route is fully static and doesn't\n // need runtime prefetching regardless of the configuration.\n hasRuntimePrefetch: boolean\n}\n\ntype LayoutRouteTree = RouteTreeShared & {\n isPage: false\n varyPath: SegmentVaryPath\n}\n\ntype PageRouteTree = RouteTreeShared & {\n isPage: true\n varyPath: PageVaryPath\n}\n\nexport type RouteTree = LayoutRouteTree | PageRouteTree\n\ntype RouteCacheEntryShared = {\n // This is false only if we're certain the route cannot be intercepted. It's\n // true in all other cases, including on initialization when we haven't yet\n // received a response from the server.\n couldBeIntercepted: boolean\n\n // Map-related fields.\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\n/**\n * Tracks the status of a cache entry as it progresses from no data (Empty),\n * waiting for server data (Pending), and finished (either Fulfilled or\n * Rejected depending on the response from the server.\n */\nexport const enum EntryStatus {\n Empty = 0,\n Pending = 1,\n Fulfilled = 2,\n Rejected = 3,\n}\n\ntype PendingRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Empty | EntryStatus.Pending\n blockedTasks: Set | null\n canonicalUrl: null\n renderedSearch: null\n tree: null\n metadata: null\n isPPREnabled: false\n}\n\ntype RejectedRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Rejected\n blockedTasks: Set | null\n canonicalUrl: null\n renderedSearch: null\n tree: null\n metadata: null\n isPPREnabled: boolean\n}\n\nexport type FulfilledRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Fulfilled\n blockedTasks: null\n canonicalUrl: string\n renderedSearch: NormalizedSearch\n tree: RouteTree\n metadata: RouteTree\n isPPREnabled: boolean\n}\n\nexport type RouteCacheEntry =\n | PendingRouteCacheEntry\n | FulfilledRouteCacheEntry\n | RejectedRouteCacheEntry\n\ntype SegmentCacheEntryShared = {\n fetchStrategy: FetchStrategy\n\n // Map-related fields.\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\nexport type EmptySegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Empty\n rsc: null\n loading: null\n isPartial: true\n promise: null\n}\n\nexport type PendingSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Pending\n rsc: null\n loading: null\n isPartial: boolean\n promise: null | PromiseWithResolvers\n}\n\ntype RejectedSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Rejected\n rsc: null\n loading: null\n isPartial: true\n promise: null\n}\n\nexport type FulfilledSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Fulfilled\n rsc: React.ReactNode | null\n loading: LoadingModuleData | Promise\n isPartial: boolean\n promise: null\n}\n\nexport type SegmentCacheEntry =\n | EmptySegmentCacheEntry\n | PendingSegmentCacheEntry\n | RejectedSegmentCacheEntry\n | FulfilledSegmentCacheEntry\n\nexport type NonEmptySegmentCacheEntry = Exclude<\n SegmentCacheEntry,\n EmptySegmentCacheEntry\n>\n\nconst isOutputExportMode =\n process.env.NODE_ENV === 'production' &&\n process.env.__NEXT_CONFIG_OUTPUT === 'export'\n\nconst MetadataOnlyRequestTree: FlightRouterState = [\n '',\n {},\n null,\n 'metadata-only',\n]\n\nlet routeCacheMap: CacheMap = createCacheMap()\nlet segmentCacheMap: CacheMap = createCacheMap()\n\n// All invalidation listeners for the whole cache are tracked in single set.\n// Since we don't yet support tag or path-based invalidation, there's no point\n// tracking them any more granularly than this. Once we add granular\n// invalidation, that may change, though generally the model is to just notify\n// the listeners and allow the caller to poll the prefetch cache with a new\n// prefetch task if desired.\nlet invalidationListeners: Set | null = null\n\n// Incrementing counter used to track cache invalidations.\nlet currentCacheVersion = 0\n\nexport function getCurrentCacheVersion(): number {\n return currentCacheVersion\n}\n\n/**\n * Used to clear the client prefetch cache when a server action calls\n * revalidatePath or revalidateTag. Eventually we will support only clearing the\n * segments that were actually affected, but there's more work to be done on the\n * server before the client is able to do this correctly.\n */\nexport function revalidateEntireCache(\n nextUrl: string | null,\n tree: FlightRouterState\n) {\n // Increment the current cache version. This does not eagerly evict anything\n // from the cache, but because all the entries are versioned, and we check\n // the version when reading from the cache, this effectively causes all\n // entries to be evicted lazily. We do it lazily because in the future,\n // actions like revalidateTag or refresh will not evict the entire cache,\n // but rather some subset of the entries.\n currentCacheVersion++\n\n // Start a cooldown before re-prefetching to allow CDN cache propagation.\n startRevalidationCooldown()\n\n // Prefetch all the currently visible links again, to re-fill the cache.\n pingVisibleLinks(nextUrl, tree)\n\n // Similarly, notify all invalidation listeners (i.e. those passed to\n // `router.prefetch(onInvalidate)`), so they can trigger a new prefetch\n // if needed.\n pingInvalidationListeners(nextUrl, tree)\n}\n\nfunction attachInvalidationListener(task: PrefetchTask): void {\n // This function is called whenever a prefetch task reads a cache entry. If\n // the task has an onInvalidate function associated with it — i.e. the one\n // optionally passed to router.prefetch(onInvalidate) — then we attach that\n // listener to the every cache entry that the task reads. Then, if an entry\n // is invalidated, we call the function.\n if (task.onInvalidate !== null) {\n if (invalidationListeners === null) {\n invalidationListeners = new Set([task])\n } else {\n invalidationListeners.add(task)\n }\n }\n}\n\nfunction notifyInvalidationListener(task: PrefetchTask): void {\n const onInvalidate = task.onInvalidate\n if (onInvalidate !== null) {\n // Clear the callback from the task object to guarantee it's not called more\n // than once.\n task.onInvalidate = null\n\n // This is a user-space function, so we must wrap in try/catch.\n try {\n onInvalidate()\n } catch (error) {\n if (typeof reportError === 'function') {\n reportError(error)\n } else {\n console.error(error)\n }\n }\n }\n}\n\nexport function pingInvalidationListeners(\n nextUrl: string | null,\n tree: FlightRouterState\n): void {\n // The rough equivalent of pingVisibleLinks, but for onInvalidate callbacks.\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n if (invalidationListeners !== null) {\n const tasks = invalidationListeners\n invalidationListeners = null\n for (const task of tasks) {\n if (isPrefetchTaskDirty(task, nextUrl, tree)) {\n notifyInvalidationListener(task)\n }\n }\n }\n}\n\nexport function readRouteCacheEntry(\n now: number,\n key: RouteCacheKey\n): RouteCacheEntry | null {\n const varyPath: RouteVaryPath = getRouteVaryPath(\n key.pathname,\n key.search,\n key.nextUrl\n )\n const isRevalidation = false\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n routeCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nexport function readSegmentCacheEntry(\n now: number,\n varyPath: SegmentVaryPath\n): SegmentCacheEntry | null {\n const isRevalidation = false\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n segmentCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nfunction readRevalidatingSegmentCacheEntry(\n now: number,\n varyPath: SegmentVaryPath\n): SegmentCacheEntry | null {\n const isRevalidation = true\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n segmentCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nexport function waitForSegmentCacheEntry(\n pendingEntry: PendingSegmentCacheEntry\n): Promise {\n // Because the entry is pending, there's already a in-progress request.\n // Attach a promise to the entry that will resolve when the server responds.\n let promiseWithResolvers = pendingEntry.promise\n if (promiseWithResolvers === null) {\n promiseWithResolvers = pendingEntry.promise =\n createPromiseWithResolvers()\n } else {\n // There's already a promise we can use\n }\n return promiseWithResolvers.promise\n}\n\n/**\n * Checks if an entry for a route exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */\nexport function readOrCreateRouteCacheEntry(\n now: number,\n task: PrefetchTask,\n key: RouteCacheKey\n): RouteCacheEntry {\n attachInvalidationListener(task)\n\n const existingEntry = readRouteCacheEntry(now, key)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const pendingEntry: PendingRouteCacheEntry = {\n canonicalUrl: null,\n status: EntryStatus.Empty,\n blockedTasks: null,\n tree: null,\n metadata: null,\n // This is initialized to true because we don't know yet whether the route\n // could be intercepted. It's only set to false once we receive a response\n // from the server.\n couldBeIntercepted: true,\n // Similarly, we don't yet know if the route supports PPR.\n isPPREnabled: false,\n renderedSearch: null,\n\n // Map-related fields\n ref: null,\n size: 0,\n // Since this is an empty entry, there's no reason to ever evict it. It will\n // be updated when the data is populated.\n staleAt: Infinity,\n version: getCurrentCacheVersion(),\n }\n const varyPath: RouteVaryPath = getRouteVaryPath(\n key.pathname,\n key.search,\n key.nextUrl\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, varyPath, pendingEntry, isRevalidation)\n return pendingEntry\n}\n\nexport function requestOptimisticRouteCacheEntry(\n now: number,\n requestedUrl: URL,\n nextUrl: string | null\n): FulfilledRouteCacheEntry | null {\n // This function is called during a navigation when there was no matching\n // route tree in the prefetch cache. Before de-opting to a blocking,\n // unprefetched navigation, we will first attempt to construct an \"optimistic\"\n // route tree by checking the cache for similar routes.\n //\n // Check if there's a route with the same pathname, but with different\n // search params. We can then base our optimistic route tree on this entry.\n //\n // Conceptually, we are simulating what would happen if we did perform a\n // prefetch the requested URL, under the assumption that the server will\n // not redirect or rewrite the request in a different manner than the\n // base route tree. This assumption might not hold, in which case we'll have\n // to recover when we perform the dynamic navigation request. However, this\n // is what would happen if a route were dynamically rewritten/redirected\n // in between the prefetch and the navigation. So the logic needs to exist\n // to handle this case regardless.\n\n // Look for a route with the same pathname, but with an empty search string.\n // TODO: There's nothing inherently special about the empty search string;\n // it's chosen somewhat arbitrarily, with the rationale that it's the most\n // likely one to exist. But we should update this to match _any_ search\n // string. The plan is to generalize this logic alongside other improvements\n // related to \"fallback\" cache entries.\n const requestedSearch = requestedUrl.search as NormalizedSearch\n if (requestedSearch === '') {\n // The caller would have already checked if a route with an empty search\n // string is in the cache. So we can bail out here.\n return null\n }\n const urlWithoutSearchParams = new URL(requestedUrl)\n urlWithoutSearchParams.search = ''\n const routeWithNoSearchParams = readRouteCacheEntry(\n now,\n createPrefetchRequestKey(urlWithoutSearchParams.href, nextUrl)\n )\n\n if (\n routeWithNoSearchParams === null ||\n routeWithNoSearchParams.status !== EntryStatus.Fulfilled\n ) {\n // Bail out of constructing an optimistic route tree. This will result in\n // a blocking, unprefetched navigation.\n return null\n }\n\n // Now we have a base route tree we can \"patch\" with our optimistic values.\n\n // Optimistically assume that redirects for the requested pathname do\n // not vary on the search string. Therefore, if the base route was\n // redirected to a different search string, then the optimistic route\n // should be redirected to the same search string. Otherwise, we use\n // the requested search string.\n const canonicalUrlForRouteWithNoSearchParams = new URL(\n routeWithNoSearchParams.canonicalUrl,\n requestedUrl.origin\n )\n const optimisticCanonicalSearch =\n canonicalUrlForRouteWithNoSearchParams.search !== ''\n ? // Base route was redirected. Reuse the same redirected search string.\n canonicalUrlForRouteWithNoSearchParams.search\n : requestedSearch\n\n // Similarly, optimistically assume that rewrites for the requested\n // pathname do not vary on the search string. Therefore, if the base\n // route was rewritten to a different search string, then the optimistic\n // route should be rewritten to the same search string. Otherwise, we use\n // the requested search string.\n const optimisticRenderedSearch =\n routeWithNoSearchParams.renderedSearch !== ''\n ? // Base route was rewritten. Reuse the same rewritten search string.\n routeWithNoSearchParams.renderedSearch\n : requestedSearch\n\n const optimisticUrl = new URL(\n routeWithNoSearchParams.canonicalUrl,\n location.origin\n )\n optimisticUrl.search = optimisticCanonicalSearch\n const optimisticCanonicalUrl = createHrefFromUrl(optimisticUrl)\n\n const optimisticRouteTree = createOptimisticRouteTree(\n routeWithNoSearchParams.tree,\n optimisticRenderedSearch\n )\n const optimisticMetadataTree = createOptimisticRouteTree(\n routeWithNoSearchParams.metadata,\n optimisticRenderedSearch\n )\n\n // Clone the base route tree, and override the relevant fields with our\n // optimistic values.\n const optimisticEntry: FulfilledRouteCacheEntry = {\n canonicalUrl: optimisticCanonicalUrl,\n\n status: EntryStatus.Fulfilled,\n // This isn't cloned because it's instance-specific\n blockedTasks: null,\n tree: optimisticRouteTree,\n metadata: optimisticMetadataTree,\n couldBeIntercepted: routeWithNoSearchParams.couldBeIntercepted,\n isPPREnabled: routeWithNoSearchParams.isPPREnabled,\n\n // Override the rendered search with the optimistic value.\n renderedSearch: optimisticRenderedSearch,\n\n // Map-related fields\n ref: null,\n size: 0,\n staleAt: routeWithNoSearchParams.staleAt,\n version: routeWithNoSearchParams.version,\n }\n\n // Do not insert this entry into the cache. It only exists so we can\n // perform the current navigation. Just return it to the caller.\n return optimisticEntry\n}\n\nfunction createOptimisticRouteTree(\n tree: RouteTree,\n newRenderedSearch: NormalizedSearch\n): RouteTree {\n // Create a new route tree that identical to the original one except for\n // the rendered search string, which is contained in the vary path.\n\n let clonedSlots: Record | null = null\n const originalSlots = tree.slots\n if (originalSlots !== null) {\n clonedSlots = {}\n for (const parallelRouteKey in originalSlots) {\n const childTree = originalSlots[parallelRouteKey]\n clonedSlots[parallelRouteKey] = createOptimisticRouteTree(\n childTree,\n newRenderedSearch\n )\n }\n }\n\n // We only need to clone the vary path if the route is a page.\n if (tree.isPage) {\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n varyPath: clonePageVaryPathWithNewSearchParams(\n tree.varyPath,\n newRenderedSearch\n ),\n isPage: true,\n slots: clonedSlots,\n isRootLayout: tree.isRootLayout,\n hasLoadingBoundary: tree.hasLoadingBoundary,\n hasRuntimePrefetch: tree.hasRuntimePrefetch,\n }\n }\n\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n varyPath: tree.varyPath,\n isPage: false,\n slots: clonedSlots,\n isRootLayout: tree.isRootLayout,\n hasLoadingBoundary: tree.hasLoadingBoundary,\n hasRuntimePrefetch: tree.hasRuntimePrefetch,\n }\n}\n\n/**\n * Checks if an entry for a segment exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */\nexport function readOrCreateSegmentCacheEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): SegmentCacheEntry {\n const existingEntry = readSegmentCacheEntry(now, tree.varyPath)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = false\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function readOrCreateRevalidatingSegmentEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): SegmentCacheEntry {\n // This function is called when we've already confirmed that a particular\n // segment is cached, but we want to perform another request anyway in case it\n // returns more complete and/or fresher data than we already have. The logic\n // for deciding whether to replace the existing entry is handled elsewhere;\n // this function just handles retrieving a cache entry that we can use to\n // track the revalidation.\n //\n // The reason revalidations are stored in the cache is because we need to be\n // able to dedupe multiple revalidation requests. The reason they have to be\n // handled specially is because we shouldn't overwrite a \"normal\" entry if\n // one exists at the same keypath. So, for each internal cache location, there\n // is a special \"revalidation\" slot that is used solely for this purpose.\n //\n // You can think of it as if all the revalidation entries were stored in a\n // separate cache map from the canonical entries, and then transfered to the\n // canonical cache map once the request is complete — this isn't how it's\n // actually implemented, since it's more efficient to store them in the same\n // data structure as the normal entries, but that's how it's modeled\n // conceptually.\n\n // TODO: Once we implement Fallback behavior for params, where an entry is\n // re-keyed based on response information, we'll need to account for the\n // possibility that the keypath of the previous entry is more generic than\n // the keypath of the revalidating entry. In other words, the server could\n // return a less generic entry upon revalidation. For now, though, this isn't\n // a concern because the keypath is based solely on the prefetch strategy,\n // not on data contained in the response.\n const existingEntry = readRevalidatingSegmentCacheEntry(now, tree.varyPath)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = true\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function overwriteRevalidatingSegmentCacheEntry(\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n) {\n // This function is called when we've already decided to replace an existing\n // revalidation entry. Create a new entry and write it into the cache,\n // overwriting the previous value.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = true\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function upsertSegmentEntry(\n now: number,\n varyPath: SegmentVaryPath,\n candidateEntry: SegmentCacheEntry\n): SegmentCacheEntry | null {\n // We have a new entry that has not yet been inserted into the cache. Before\n // we do so, we need to confirm whether it takes precedence over the existing\n // entry (if one exists).\n // TODO: We should not upsert an entry if its key was invalidated in the time\n // since the request was made. We can do that by passing the \"owner\" entry to\n // this function and confirming it's the same as `existingEntry`.\n\n if (isValueExpired(now, getCurrentCacheVersion(), candidateEntry)) {\n // The entry is expired. We cannot upsert it.\n return null\n }\n\n const existingEntry = readSegmentCacheEntry(now, varyPath)\n if (existingEntry !== null) {\n // Don't replace a more specific segment with a less-specific one. A case where this\n // might happen is if the existing segment was fetched via\n // ``.\n if (\n // We fetched the new segment using a different, less specific fetch strategy\n // than the segment we already have in the cache, so it can't have more content.\n (candidateEntry.fetchStrategy !== existingEntry.fetchStrategy &&\n !canNewFetchStrategyProvideMoreContent(\n existingEntry.fetchStrategy,\n candidateEntry.fetchStrategy\n )) ||\n // The existing entry isn't partial, but the new one is.\n // (TODO: can this be true if `candidateEntry.fetchStrategy >= existingEntry.fetchStrategy`?)\n (!existingEntry.isPartial && candidateEntry.isPartial)\n ) {\n // We're going to leave revalidating entry in the cache so that it doesn't\n // get revalidated again unnecessarily. Downgrade the Fulfilled entry to\n // Rejected and null out the data so it can be garbage collected. We leave\n // `staleAt` intact to prevent subsequent revalidation attempts only until\n // the entry expires.\n const rejectedEntry: RejectedSegmentCacheEntry = candidateEntry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.loading = null\n rejectedEntry.rsc = null\n return null\n }\n\n // Evict the existing entry from the cache.\n deleteFromCacheMap(existingEntry)\n }\n\n const isRevalidation = false\n setInCacheMap(segmentCacheMap, varyPath, candidateEntry, isRevalidation)\n return candidateEntry\n}\n\nexport function createDetachedSegmentCacheEntry(\n staleAt: number\n): EmptySegmentCacheEntry {\n const emptyEntry: EmptySegmentCacheEntry = {\n status: EntryStatus.Empty,\n // Default to assuming the fetch strategy will be PPR. This will be updated\n // when a fetch is actually initiated.\n fetchStrategy: FetchStrategy.PPR,\n rsc: null,\n loading: null,\n isPartial: true,\n promise: null,\n\n // Map-related fields\n ref: null,\n size: 0,\n staleAt,\n version: 0,\n }\n return emptyEntry\n}\n\nexport function upgradeToPendingSegment(\n emptyEntry: EmptySegmentCacheEntry,\n fetchStrategy: FetchStrategy\n): PendingSegmentCacheEntry {\n const pendingEntry: PendingSegmentCacheEntry = emptyEntry as any\n pendingEntry.status = EntryStatus.Pending\n pendingEntry.fetchStrategy = fetchStrategy\n\n if (fetchStrategy === FetchStrategy.Full) {\n // We can assume the response will contain the full segment data. Set this\n // to false so we know it's OK to omit this segment from any navigation\n // requests that may happen while the data is still pending.\n pendingEntry.isPartial = false\n }\n\n // Set the version here, since this is right before the request is initiated.\n // The next time the global cache version is incremented, the entry will\n // effectively be evicted. This happens before initiating the request, rather\n // than when receiving the response, because it's guaranteed to happen\n // before the data is read on the server.\n pendingEntry.version = getCurrentCacheVersion()\n return pendingEntry\n}\n\nfunction pingBlockedTasks(entry: {\n blockedTasks: Set | null\n}): void {\n const blockedTasks = entry.blockedTasks\n if (blockedTasks !== null) {\n for (const task of blockedTasks) {\n pingPrefetchTask(task)\n }\n entry.blockedTasks = null\n }\n}\n\nfunction fulfillRouteCacheEntry(\n entry: RouteCacheEntry,\n tree: RouteTree,\n metadataVaryPath: PageVaryPath,\n staleAt: number,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n renderedSearch: NormalizedSearch,\n isPPREnabled: boolean\n): FulfilledRouteCacheEntry {\n // The Head is not actually part of the route tree, but other than that, it's\n // fetched and cached like a segment. Some functions expect a RouteTree\n // object, so rather than fork the logic in all those places, we use this\n // \"fake\" one.\n const metadata: RouteTree = {\n requestKey: HEAD_REQUEST_KEY,\n segment: HEAD_REQUEST_KEY,\n varyPath: metadataVaryPath,\n // The metadata isn't really a \"page\" (though it isn't really a \"segment\"\n // either) but for the purposes of how this field is used, it behaves like\n // one. If this logic ever gets more complex we can change this to an enum.\n isPage: true,\n slots: null,\n isRootLayout: false,\n hasLoadingBoundary: HasLoadingBoundary.SubtreeHasNoLoadingBoundary,\n hasRuntimePrefetch: false,\n }\n const fulfilledEntry: FulfilledRouteCacheEntry = entry as any\n fulfilledEntry.status = EntryStatus.Fulfilled\n fulfilledEntry.tree = tree\n fulfilledEntry.metadata = metadata\n fulfilledEntry.staleAt = staleAt\n fulfilledEntry.couldBeIntercepted = couldBeIntercepted\n fulfilledEntry.canonicalUrl = canonicalUrl\n fulfilledEntry.renderedSearch = renderedSearch\n fulfilledEntry.isPPREnabled = isPPREnabled\n pingBlockedTasks(entry)\n return fulfilledEntry\n}\n\nfunction fulfillSegmentCacheEntry(\n segmentCacheEntry: PendingSegmentCacheEntry,\n rsc: React.ReactNode,\n loading: LoadingModuleData | Promise,\n staleAt: number,\n isPartial: boolean\n): FulfilledSegmentCacheEntry {\n const fulfilledEntry: FulfilledSegmentCacheEntry = segmentCacheEntry as any\n fulfilledEntry.status = EntryStatus.Fulfilled\n fulfilledEntry.rsc = rsc\n fulfilledEntry.loading = loading\n fulfilledEntry.staleAt = staleAt\n fulfilledEntry.isPartial = isPartial\n // Resolve any listeners that were waiting for this data.\n if (segmentCacheEntry.promise !== null) {\n segmentCacheEntry.promise.resolve(fulfilledEntry)\n // Free the promise for garbage collection.\n fulfilledEntry.promise = null\n }\n return fulfilledEntry\n}\n\nfunction rejectRouteCacheEntry(\n entry: PendingRouteCacheEntry,\n staleAt: number\n): void {\n const rejectedEntry: RejectedRouteCacheEntry = entry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.staleAt = staleAt\n pingBlockedTasks(entry)\n}\n\nfunction rejectSegmentCacheEntry(\n entry: PendingSegmentCacheEntry,\n staleAt: number\n): void {\n const rejectedEntry: RejectedSegmentCacheEntry = entry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.staleAt = staleAt\n if (entry.promise !== null) {\n // NOTE: We don't currently propagate the reason the prefetch was canceled\n // but we could by accepting a `reason` argument.\n entry.promise.resolve(null)\n entry.promise = null\n }\n}\n\ntype RouteTreeAccumulator = {\n metadataVaryPath: PageVaryPath | null\n}\n\nfunction convertRootTreePrefetchToRouteTree(\n rootTree: RootTreePrefetch,\n renderedPathname: string,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n) {\n // Remove trailing and leading slashes\n const pathnameParts = renderedPathname.split('/').filter((p) => p !== '')\n const index = 0\n const rootSegment = ROOT_SEGMENT_REQUEST_KEY\n return convertTreePrefetchToRouteTree(\n rootTree.tree,\n rootSegment,\n null,\n ROOT_SEGMENT_REQUEST_KEY,\n pathnameParts,\n index,\n renderedSearch,\n acc\n )\n}\n\nfunction convertTreePrefetchToRouteTree(\n prefetch: TreePrefetch,\n segment: FlightRouterStateSegment,\n partialVaryPath: PartialSegmentVaryPath | null,\n requestKey: SegmentRequestKey,\n pathnameParts: Array,\n pathnamePartsIndex: number,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n // Converts the route tree sent by the server into the format used by the\n // cache. The cached version of the tree includes additional fields, such as a\n // cache key for each segment. Since this is frequently accessed, we compute\n // it once instead of on every access. This same cache key is also used to\n // request the segment from the server.\n\n let slots: { [parallelRouteKey: string]: RouteTree } | null = null\n let isPage: boolean\n let varyPath: SegmentVaryPath\n const prefetchSlots = prefetch.slots\n if (prefetchSlots !== null) {\n isPage = false\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n\n slots = {}\n for (let parallelRouteKey in prefetchSlots) {\n const childPrefetch = prefetchSlots[parallelRouteKey]\n const childParamName = childPrefetch.name\n const childParamType = childPrefetch.paramType\n const childServerSentParamKey = childPrefetch.paramKey\n\n let childDoesAppearInURL: boolean\n let childSegment: FlightRouterStateSegment\n let childPartialVaryPath: PartialSegmentVaryPath | null\n if (childParamType !== null) {\n // This segment is parameterized. Get the param from the pathname.\n const childParamValue = parseDynamicParamFromURLPart(\n childParamType,\n pathnameParts,\n pathnamePartsIndex\n )\n\n // Assign a cache key to the segment, based on the param value. In the\n // pre-Segment Cache implementation, the server computes this and sends\n // it in the body of the response. In the Segment Cache implementation,\n // the server sends an empty string and we fill it in here.\n\n // TODO: We're intentionally not adding the search param to page\n // segments here; it's tracked separately and added back during a read.\n // This would clearer if we waited to construct the segment until it's\n // read from the cache, since that's effectively what we're\n // doing anyway.\n const childParamKey =\n // The server omits this field from the prefetch response when\n // cacheComponents is enabled.\n childServerSentParamKey !== null\n ? childServerSentParamKey\n : // If no param key was sent, use the value parsed on the client.\n getCacheKeyForDynamicParam(\n childParamValue,\n '' as NormalizedSearch\n )\n\n childPartialVaryPath = appendLayoutVaryPath(\n partialVaryPath,\n childParamKey\n )\n childSegment = [childParamName, childParamKey, childParamType]\n childDoesAppearInURL = true\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n childPartialVaryPath = partialVaryPath\n childSegment = childParamName\n childDoesAppearInURL = doesStaticSegmentAppearInURL(childParamName)\n }\n\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = childDoesAppearInURL\n ? pathnamePartsIndex + 1\n : pathnamePartsIndex\n\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment)\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n childRequestKeyPart\n )\n slots[parallelRouteKey] = convertTreePrefetchToRouteTree(\n childPrefetch,\n childSegment,\n childPartialVaryPath,\n childRequestKey,\n pathnameParts,\n childPathnamePartsIndex,\n renderedSearch,\n acc\n )\n }\n } else {\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true\n varyPath = finalizePageVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n }\n } else {\n // This is a layout segment.\n isPage = false\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n }\n }\n\n return {\n requestKey,\n segment,\n varyPath,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n isPage: isPage as boolean as any,\n slots,\n isRootLayout: prefetch.isRootLayout,\n // This field is only relevant to dynamic routes. For a PPR/static route,\n // there's always some partial loading state we can fetch.\n hasLoadingBoundary: HasLoadingBoundary.SegmentHasLoadingBoundary,\n hasRuntimePrefetch: prefetch.hasRuntimePrefetch,\n }\n}\n\nfunction convertRootFlightRouterStateToRouteTree(\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n return convertFlightRouterStateToRouteTree(\n flightRouterState,\n ROOT_SEGMENT_REQUEST_KEY,\n null,\n renderedSearch,\n acc\n )\n}\n\nfunction convertFlightRouterStateToRouteTree(\n flightRouterState: FlightRouterState,\n requestKey: SegmentRequestKey,\n parentPartialVaryPath: PartialSegmentVaryPath | null,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n const originalSegment = flightRouterState[0]\n\n let segment: FlightRouterStateSegment\n let partialVaryPath: PartialSegmentVaryPath | null\n let isPage: boolean\n let varyPath: SegmentVaryPath\n if (Array.isArray(originalSegment)) {\n isPage = false\n const paramCacheKey = originalSegment[1]\n partialVaryPath = appendLayoutVaryPath(parentPartialVaryPath, paramCacheKey)\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n segment = originalSegment\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n partialVaryPath = parentPartialVaryPath\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true\n\n // The navigation implementation expects the search params to be included\n // in the segment. However, in the case of a static response, the search\n // params are omitted. So the client needs to add them back in when reading\n // from the Segment Cache.\n //\n // For consistency, we'll do this for dynamic responses, too.\n //\n // TODO: We should move search params out of FlightRouterState and handle\n // them entirely on the client, similar to our plan for dynamic params.\n segment = PAGE_SEGMENT_KEY\n varyPath = finalizePageVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n }\n } else {\n // This is a layout segment.\n isPage = false\n segment = originalSegment\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n }\n }\n\n let slots: { [parallelRouteKey: string]: RouteTree } | null = null\n\n const parallelRoutes = flightRouterState[1]\n for (let parallelRouteKey in parallelRoutes) {\n const childRouterState = parallelRoutes[parallelRouteKey]\n const childSegment = childRouterState[0]\n // TODO: Eventually, the param values will not be included in the response\n // from the server. We'll instead fill them in on the client by parsing\n // the URL. This is where we'll do that.\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment)\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n childRequestKeyPart\n )\n const childTree = convertFlightRouterStateToRouteTree(\n childRouterState,\n childRequestKey,\n partialVaryPath,\n renderedSearch,\n acc\n )\n if (slots === null) {\n slots = {\n [parallelRouteKey]: childTree,\n }\n } else {\n slots[parallelRouteKey] = childTree\n }\n }\n\n return {\n requestKey,\n segment,\n varyPath,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n isPage: isPage as boolean as any,\n slots,\n isRootLayout: flightRouterState[4] === true,\n hasLoadingBoundary:\n flightRouterState[5] !== undefined\n ? flightRouterState[5]\n : HasLoadingBoundary.SubtreeHasNoLoadingBoundary,\n\n // Non-static tree responses are only used by apps that haven't adopted\n // Cache Components. So this is always false.\n hasRuntimePrefetch: false,\n }\n}\n\nexport function convertRouteTreeToFlightRouterState(\n routeTree: RouteTree\n): FlightRouterState {\n const parallelRoutes: Record = {}\n if (routeTree.slots !== null) {\n for (const parallelRouteKey in routeTree.slots) {\n parallelRoutes[parallelRouteKey] = convertRouteTreeToFlightRouterState(\n routeTree.slots[parallelRouteKey]\n )\n }\n }\n const flightRouterState: FlightRouterState = [\n routeTree.segment,\n parallelRoutes,\n null,\n null,\n routeTree.isRootLayout,\n ]\n return flightRouterState\n}\n\nexport async function fetchRouteOnCacheMiss(\n entry: PendingRouteCacheEntry,\n task: PrefetchTask,\n key: RouteCacheKey\n): Promise | null> {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n const pathname = key.pathname\n const search = key.search\n const nextUrl = key.nextUrl\n const segmentPath = '/_tree' as SegmentRequestKey\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: segmentPath,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n\n try {\n const url = new URL(pathname + search, location.origin)\n let response\n let urlAfterRedirects\n if (isOutputExportMode) {\n // In output: \"export\" mode, we can't use headers to request a particular\n // segment. Instead, we encode the extra request information into the URL.\n // This is not part of the \"public\" interface of the app; it's an internal\n // Next.js implementation detail that the app developer should not need to\n // concern themselves with.\n //\n // For example, to request a segment:\n //\n // Path passed to : /path/to/page\n // Path passed to fetch: /path/to/page/__next-segments/_tree\n //\n // (This is not the exact protocol, just an illustration.)\n //\n // Before we do that, though, we need to account for redirects. Even in\n // output: \"export\" mode, a proxy might redirect the page to a different\n // location, but we shouldn't assume or expect that they also redirect all\n // the segment files, too.\n //\n // To check whether the page is redirected, previously we perform a range\n // request of 64 bytes of the HTML document to check if the target page\n // is part of this app (by checking if build id matches). Only if the target\n // page is part of this app do we determine the final canonical URL.\n //\n // However, as mentioned in https://github.com/vercel/next.js/pull/85903,\n // some popular static hosting providers (like Cloudflare Pages or Render.com)\n // do not support range requests, in the worst case, the entire HTML instead\n // of 64 bytes could be returned, which is wasteful.\n //\n // So instead, we drops the check for build id here, and simply perform\n // a HEAD request to rejects 1xx/4xx/5xx responses, and then determine the\n // final URL after redirects.\n //\n // NOTE: We could embed the route tree into the HTML document, to avoid\n // a second request. We're not doing that currently because it would make\n // the HTML document larger and affect normal page loads.\n const headResponse = await fetch(url, {\n method: 'HEAD',\n })\n if (headResponse.status < 200 || headResponse.status >= 400) {\n // The target page responded w/o a successful status code\n // Could be a WAF serving a 403, or a 5xx from a backend\n //\n // Note that we can't use headResponse.ok here, because\n // Response#ok returns `false` with 3xx responses.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n urlAfterRedirects = headResponse.redirected\n ? new URL(headResponse.url)\n : url\n\n response = await fetchPrefetchResponse(\n addSegmentPathToUrlInOutputExportMode(urlAfterRedirects, segmentPath),\n headers\n )\n } else {\n // \"Server\" mode. We can use request headers instead of the pathname.\n // TODO: The eventual plan is to get rid of our custom request headers and\n // encode everything into the URL, using a similar strategy to the\n // \"output: export\" block above.\n response = await fetchPrefetchResponse(url, headers)\n urlAfterRedirects =\n response !== null && response.redirected ? new URL(response.url) : url\n }\n\n if (\n !response ||\n !response.ok ||\n // 204 is a Cache miss. Though theoretically this shouldn't happen when\n // PPR is enabled, because we always respond to route tree requests, even\n // if it needs to be blockingly generated on demand.\n response.status === 204 ||\n !response.body\n ) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // TODO: The canonical URL is the href without the origin. I think\n // historically the reason for this is because the initial canonical URL\n // gets passed as a prop to the top-level React component, which means it\n // needs to be computed during SSR. If it were to include the origin, it\n // would need to always be same as location.origin on the client, to prevent\n // a hydration mismatch. To sidestep this complexity, we omit the origin.\n //\n // However, since this is neither a native URL object nor a fully qualified\n // URL string, we need to be careful about how we use it. To prevent subtle\n // mistakes, we should create a special type for it, instead of just string.\n // Or, we should just use a (readonly) URL object instead. The type of the\n // prop that we pass to seed the initial state does not need to be the same\n // type as the state itself.\n const canonicalUrl = createHrefFromUrl(urlAfterRedirects)\n\n // Check whether the response varies based on the Next-Url header.\n const varyHeader = response.headers.get('vary')\n const couldBeIntercepted =\n varyHeader !== null && varyHeader.includes(NEXT_URL)\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers()\n\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route.\n const routeIsPPREnabled =\n response.headers.get(NEXT_DID_POSTPONE_HEADER) === '2' ||\n // In output: \"export\" mode, we can't rely on response headers. But if we\n // receive a well-formed response, we can assume it's a static response,\n // because all data is static in this mode.\n isOutputExportMode\n\n if (routeIsPPREnabled) {\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(entry, size)\n }\n )\n const serverData = await createFromNextReadableStream(\n prefetchStream,\n headers\n )\n if (serverData.buildId !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // Get the params that were used to render the target page. These may\n // be different from the params in the request URL, if the page\n // was rewritten.\n const renderedPathname = getRenderedPathname(response)\n const renderedSearch = getRenderedSearch(response)\n\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc: RouteTreeAccumulator = { metadataVaryPath: null }\n const routeTree = convertRootTreePrefetchToRouteTree(\n serverData,\n renderedPathname,\n renderedSearch,\n acc\n )\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n const staleTimeMs = getStaleTimeMs(serverData.staleTime)\n fulfillRouteCacheEntry(\n entry,\n routeTree,\n metadataVaryPath,\n Date.now() + staleTimeMs,\n couldBeIntercepted,\n canonicalUrl,\n renderedSearch,\n routeIsPPREnabled\n )\n } else {\n // PPR is not enabled for this route. The server responds with a\n // different format (FlightRouterState) that we need to convert.\n // TODO: We will unify the responses eventually. I'm keeping the types\n // separate for now because FlightRouterState has so many\n // overloaded concerns.\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(entry, size)\n }\n )\n const serverData =\n await createFromNextReadableStream(\n prefetchStream,\n headers\n )\n if (serverData.b !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n writeDynamicTreeResponseIntoCache(\n Date.now(),\n task,\n // The non-PPR response format is what we'd get if we prefetched these segments\n // using the LoadingBoundary fetch strategy, so mark their cache entries accordingly.\n FetchStrategy.LoadingBoundary,\n response as RSCResponse,\n serverData,\n entry,\n couldBeIntercepted,\n canonicalUrl,\n routeIsPPREnabled\n )\n }\n\n if (!couldBeIntercepted) {\n // This route will never be intercepted. So we can use this entry for all\n // requests to this route, regardless of the Next-Url header. This works\n // because when reading the cache we always check for a valid\n // non-intercepted entry first.\n\n // Re-key the entry. The `set` implementation handles removing it from\n // its previous position in the cache. We don't need to do anything to\n // update the LRU, because the entry is already in it.\n // TODO: Treat this as an upsert — should check if an entry already\n // exists at the new keypath, and if so, whether we should keep that\n // one instead.\n const fulfilledVaryPath: RouteVaryPath = getFulfilledRouteVaryPath(\n pathname,\n search,\n nextUrl,\n couldBeIntercepted\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, fulfilledVaryPath, entry, isRevalidation)\n }\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return { value: null, closed: closed.promise }\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n}\n\nexport async function fetchSegmentOnCacheMiss(\n route: FulfilledRouteCacheEntry,\n segmentCacheEntry: PendingSegmentCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): Promise | null> {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n //\n // Segment fetches are non-blocking so we don't need to ping the scheduler\n // on completion.\n\n // Use the canonical URL to request the segment, not the original URL. These\n // are usually the same, but the canonical URL will be different if the route\n // tree response was redirected. To avoid an extra waterfall on every segment\n // request, we pass the redirected URL instead of the original one.\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = routeKey.nextUrl\n\n const requestKey = tree.requestKey\n const normalizedRequestKey =\n requestKey === ROOT_SEGMENT_REQUEST_KEY\n ? // The root segment is a special case. To simplify the server-side\n // handling of these requests, we encode the root segment path as\n // `_index` instead of as an empty string. This should be treated as\n // an implementation detail and not as a stable part of the protocol.\n // It just needs to match the equivalent logic that happens when\n // prerendering the responses. It should not leak outside of Next.js.\n ('/_index' as SegmentRequestKey)\n : requestKey\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: normalizedRequestKey,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n\n const requestUrl = isOutputExportMode\n ? // In output: \"export\" mode, we need to add the segment path to the URL.\n addSegmentPathToUrlInOutputExportMode(url, normalizedRequestKey)\n : url\n try {\n const response = await fetchPrefetchResponse(requestUrl, headers)\n if (\n !response ||\n !response.ok ||\n response.status === 204 || // Cache miss\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route. Theoretically this should never happen\n // because we only issue requests for segments once we've verified that\n // the route supports PPR.\n (response.headers.get(NEXT_DID_POSTPONE_HEADER) !== '2' &&\n // In output: \"export\" mode, we can't rely on response headers. But if\n // we receive a well-formed response, we can assume it's a static\n // response, because all data is static in this mode.\n !isOutputExportMode) ||\n !response.body\n ) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers()\n\n // Wrap the original stream in a new stream that never closes. That way the\n // Flight client doesn't error if there's a hanging promise.\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(segmentCacheEntry, size)\n }\n )\n const serverData = await (createFromNextReadableStream(\n prefetchStream,\n headers\n ) as Promise)\n if (serverData.buildId !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n return {\n value: fulfillSegmentCacheEntry(\n segmentCacheEntry,\n serverData.rsc,\n serverData.loading,\n // TODO: The server does not currently provide per-segment stale time.\n // So we use the stale time of the route.\n route.staleAt,\n serverData.isPartial\n ),\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n closed: closed.promise,\n }\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n}\n\nexport async function fetchSegmentPrefetchesUsingDynamicRequest(\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n dynamicRequestTree: FlightRouterState,\n spawnedEntries: Map\n): Promise | null> {\n const key = task.key\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = key.nextUrl\n\n if (\n spawnedEntries.size === 1 &&\n spawnedEntries.has(route.metadata.requestKey)\n ) {\n // The only thing pending is the head. Instruct the server to\n // skip over everything else.\n dynamicRequestTree = MetadataOnlyRequestTree\n }\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_STATE_TREE_HEADER]:\n prepareFlightRouterStateForRequest(dynamicRequestTree),\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n switch (fetchStrategy) {\n case FetchStrategy.Full: {\n // We omit the prefetch header from a full prefetch because it's essentially\n // just a navigation request that happens ahead of time — it should include\n // all the same data in the response.\n break\n }\n case FetchStrategy.PPRRuntime: {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '2'\n break\n }\n case FetchStrategy.LoadingBoundary: {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '1'\n break\n }\n default: {\n fetchStrategy satisfies never\n }\n }\n\n try {\n const response = await fetchPrefetchResponse(url, headers)\n if (!response || !response.ok || !response.body) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n const renderedSearch = getRenderedSearch(response)\n if (renderedSearch !== route.renderedSearch) {\n // The search params that were used to render the target page are\n // different from the search params in the request URL. This only happens\n // when there's a dynamic rewrite in between the tree prefetch and the\n // data prefetch.\n // TODO: For now, since this is an edge case, we reject the prefetch, but\n // the proper way to handle this is to evict the stale route tree entry\n // then fill the cache with the new response.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers()\n\n let fulfilledEntries: Array | null = null\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(totalBytesReceivedSoFar) {\n // When processing a dynamic response, we don't know how large each\n // individual segment is, so approximate by assiging each segment\n // the average of the total response size.\n if (fulfilledEntries === null) {\n // Haven't received enough data yet to know which segments\n // were included.\n return\n }\n const averageSize = totalBytesReceivedSoFar / fulfilledEntries.length\n for (const entry of fulfilledEntries) {\n setSizeInCacheMap(entry, averageSize)\n }\n }\n )\n const serverData = await (createFromNextReadableStream(\n prefetchStream,\n headers\n ) as Promise)\n\n const isResponsePartial =\n fetchStrategy === FetchStrategy.PPRRuntime\n ? // A runtime prefetch may have holes.\n serverData.rp?.[0] === true\n : // Full and LoadingBoundary prefetches cannot have holes.\n // (even if we did set the prefetch header, we only use this codepath for non-PPR-enabled routes)\n false\n\n // Aside from writing the data into the cache, this function also returns\n // the entries that were fulfilled, so we can streamingly update their sizes\n // in the LRU as more data comes in.\n fulfilledEntries = writeDynamicRenderResponseIntoCache(\n Date.now(),\n task,\n fetchStrategy,\n response as RSCResponse,\n serverData,\n isResponsePartial,\n route,\n spawnedEntries\n )\n\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return { value: null, closed: closed.promise }\n } catch (error) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n}\n\nfunction writeDynamicTreeResponseIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n response: RSCResponse,\n serverData: NavigationFlightResponse,\n entry: PendingRouteCacheEntry,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n routeIsPPREnabled: boolean\n) {\n // Get the URL that was used to render the target page. This may be different\n // from the URL in the request URL, if the page was rewritten.\n const renderedSearch = getRenderedSearch(response)\n\n const normalizedFlightDataResult = normalizeFlightData(serverData.f)\n if (\n // A string result means navigating to this route will result in an\n // MPA navigation.\n typeof normalizedFlightDataResult === 'string' ||\n normalizedFlightDataResult.length !== 1\n ) {\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n const flightData = normalizedFlightDataResult[0]\n if (!flightData.isRootRender) {\n // Unexpected response format.\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n\n const flightRouterState = flightData.tree\n // For runtime prefetches, stale time is in the payload at rp[1].\n // For other responses, fall back to the header.\n const staleTimeSeconds =\n typeof serverData.rp?.[1] === 'number'\n ? serverData.rp[1]\n : parseInt(response.headers.get(NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10)\n const staleTimeMs = !isNaN(staleTimeSeconds)\n ? getStaleTimeMs(staleTimeSeconds)\n : STATIC_STALETIME_MS\n\n // If the response contains dynamic holes, then we must conservatively assume\n // that any individual segment might contain dynamic holes, and also the\n // head. If it did not contain dynamic holes, then we can assume every segment\n // and the head is completely static.\n const isResponsePartial =\n response.headers.get(NEXT_DID_POSTPONE_HEADER) === '1'\n\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc: RouteTreeAccumulator = { metadataVaryPath: null }\n const routeTree = convertRootFlightRouterStateToRouteTree(\n flightRouterState,\n renderedSearch,\n acc\n )\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n\n const fulfilledEntry = fulfillRouteCacheEntry(\n entry,\n routeTree,\n metadataVaryPath,\n now + staleTimeMs,\n couldBeIntercepted,\n canonicalUrl,\n renderedSearch,\n routeIsPPREnabled\n )\n\n // If the server sent segment data as part of the response, we should write\n // it into the cache to prevent a second, redundant prefetch request.\n //\n // TODO: When `clientSegmentCache` is enabled, the server does not include\n // segment data when responding to a route tree prefetch request. However,\n // when `clientSegmentCache` is set to \"client-only\", and PPR is enabled (or\n // the page is fully static), the normal check is bypassed and the server\n // responds with the full page. This is a temporary situation until we can\n // remove the \"client-only\" option. Then, we can delete this function call.\n writeDynamicRenderResponseIntoCache(\n now,\n task,\n fetchStrategy,\n response,\n serverData,\n isResponsePartial,\n fulfilledEntry,\n null\n )\n}\n\nfunction rejectSegmentEntriesIfStillPending(\n entries: Map,\n staleAt: number\n): Array {\n const fulfilledEntries = []\n for (const entry of entries.values()) {\n if (entry.status === EntryStatus.Pending) {\n rejectSegmentCacheEntry(entry, staleAt)\n } else if (entry.status === EntryStatus.Fulfilled) {\n fulfilledEntries.push(entry)\n }\n }\n return fulfilledEntries\n}\n\nfunction writeDynamicRenderResponseIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n response: RSCResponse,\n serverData: NavigationFlightResponse,\n isResponsePartial: boolean,\n route: FulfilledRouteCacheEntry,\n spawnedEntries: Map | null\n): Array | null {\n if (serverData.b !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000)\n }\n return null\n }\n\n const flightDatas = normalizeFlightData(serverData.f)\n if (typeof flightDatas === 'string') {\n // This means navigating to this route will result in an MPA navigation.\n // TODO: We should cache this, too, so that the MPA navigation is immediate.\n return null\n }\n\n // For runtime prefetches, stale time is in the payload at rp[1].\n // For other responses, fall back to the header.\n const staleTimeSeconds =\n typeof serverData.rp?.[1] === 'number'\n ? serverData.rp[1]\n : parseInt(response.headers.get(NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10)\n const staleTimeMs = !isNaN(staleTimeSeconds)\n ? getStaleTimeMs(staleTimeSeconds)\n : STATIC_STALETIME_MS\n const staleAt = now + staleTimeMs\n\n for (const flightData of flightDatas) {\n const seedData = flightData.seedData\n if (seedData !== null) {\n // The data sent by the server represents only a subtree of the app. We\n // need to find the part of the task tree that matches the response.\n //\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n const segmentPath = flightData.segmentPath\n let tree = route.tree\n for (let i = 0; i < segmentPath.length; i += 2) {\n const parallelRouteKey: string = segmentPath[i]\n if (tree?.slots?.[parallelRouteKey] !== undefined) {\n tree = tree.slots[parallelRouteKey]\n } else {\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000)\n }\n return null\n }\n }\n\n writeSeedDataIntoCache(\n now,\n task,\n fetchStrategy,\n route,\n tree,\n staleAt,\n seedData,\n isResponsePartial,\n spawnedEntries\n )\n }\n\n const head = flightData.head\n if (head !== null) {\n fulfillEntrySpawnedByRuntimePrefetch(\n now,\n fetchStrategy,\n route,\n head,\n null,\n flightData.isHeadPartial,\n staleAt,\n route.metadata,\n spawnedEntries\n )\n }\n }\n // Any entry that's still pending was intentionally not rendered by the\n // server, because it was inside the loading boundary. Mark them as rejected\n // so we know not to fetch them again.\n // TODO: If PPR is enabled on some routes but not others, then it's possible\n // that a different page is able to do a per-segment prefetch of one of the\n // segments we're marking as rejected here. We should mark on the segment\n // somehow that the reason for the rejection is because of a non-PPR prefetch.\n // That way a per-segment prefetch knows to disregard the rejection.\n if (spawnedEntries !== null) {\n const fulfilledEntries = rejectSegmentEntriesIfStillPending(\n spawnedEntries,\n now + 10 * 1000\n )\n return fulfilledEntries\n }\n return null\n}\n\nfunction writeSeedDataIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n staleAt: number,\n seedData: CacheNodeSeedData,\n isResponsePartial: boolean,\n entriesOwnedByCurrentTask: Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n > | null\n) {\n // This function is used to write the result of a runtime server request\n // (CacheNodeSeedData) into the prefetch cache.\n const rsc = seedData[0]\n const loading = seedData[2]\n const isPartial = rsc === null || isResponsePartial\n fulfillEntrySpawnedByRuntimePrefetch(\n now,\n fetchStrategy,\n route,\n rsc,\n loading,\n isPartial,\n staleAt,\n tree,\n entriesOwnedByCurrentTask\n )\n\n // Recursively write the child data into the cache.\n const slots = tree.slots\n if (slots !== null) {\n const seedDataChildren = seedData[1]\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n const childSeedData: CacheNodeSeedData | null | void =\n seedDataChildren[parallelRouteKey]\n if (childSeedData !== null && childSeedData !== undefined) {\n writeSeedDataIntoCache(\n now,\n task,\n fetchStrategy,\n route,\n childTree,\n staleAt,\n childSeedData,\n isResponsePartial,\n entriesOwnedByCurrentTask\n )\n }\n }\n }\n}\n\nfunction fulfillEntrySpawnedByRuntimePrefetch(\n now: number,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n route: FulfilledRouteCacheEntry,\n rsc: React.ReactNode,\n loading: LoadingModuleData | Promise,\n isPartial: boolean,\n staleAt: number,\n tree: RouteTree,\n entriesOwnedByCurrentTask: Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n > | null\n) {\n // We should only write into cache entries that are owned by us. Or create\n // a new one and write into that. We must never write over an entry that was\n // created by a different task, because that causes data races.\n const ownedEntry =\n entriesOwnedByCurrentTask !== null\n ? entriesOwnedByCurrentTask.get(tree.requestKey)\n : undefined\n if (ownedEntry !== undefined) {\n fulfillSegmentCacheEntry(ownedEntry, rsc, loading, staleAt, isPartial)\n } else {\n // There's no matching entry. Attempt to create a new one.\n const possiblyNewEntry = readOrCreateSegmentCacheEntry(\n now,\n fetchStrategy,\n route,\n tree\n )\n if (possiblyNewEntry.status === EntryStatus.Empty) {\n // Confirmed this is a new entry. We can fulfill it.\n const newEntry = possiblyNewEntry\n fulfillSegmentCacheEntry(\n upgradeToPendingSegment(newEntry, fetchStrategy),\n rsc,\n loading,\n staleAt,\n isPartial\n )\n } else {\n // There was already an entry in the cache. But we may be able to\n // replace it with the new one from the server.\n const newEntry = fulfillSegmentCacheEntry(\n upgradeToPendingSegment(\n createDetachedSegmentCacheEntry(staleAt),\n fetchStrategy\n ),\n rsc,\n loading,\n staleAt,\n isPartial\n )\n upsertSegmentEntry(\n now,\n getSegmentVaryPathForRequest(fetchStrategy, tree),\n newEntry\n )\n }\n }\n}\n\nasync function fetchPrefetchResponse(\n url: URL,\n headers: RequestHeaders\n): Promise | null> {\n const fetchPriority = 'low'\n // When issuing a prefetch request, don't immediately decode the response; we\n // use the lower level `createFromResponse` API instead because we need to do\n // some extra processing of the response stream. See\n // `createPrefetchResponseStream` for more details.\n const shouldImmediatelyDecode = false\n const response = await createFetch(\n url,\n headers,\n fetchPriority,\n shouldImmediatelyDecode\n )\n if (!response.ok) {\n return null\n }\n\n // Check the content type\n if (isOutputExportMode) {\n // In output: \"export\" mode, we relaxed about the content type, since it's\n // not Next.js that's serving the response. If the status is OK, assume the\n // response is valid. If it's not a valid response, the Flight client won't\n // be able to decode it, and we'll treat it as a miss.\n } else {\n const contentType = response.headers.get('content-type')\n const isFlightResponse =\n contentType && contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n if (!isFlightResponse) {\n return null\n }\n }\n return response\n}\n\nfunction createPrefetchResponseStream(\n originalFlightStream: ReadableStream,\n onStreamClose: () => void,\n onResponseSizeUpdate: (size: number) => void\n): ReadableStream {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n //\n // While processing the original stream, we also incrementally update the size\n // of the cache entry in the LRU.\n let totalByteLength = 0\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n\n // Incrementally update the size of the cache entry in the LRU.\n // NOTE: Since prefetch responses are delivered in a single chunk,\n // it's not really necessary to do this streamingly, but I'm doing it\n // anyway in case this changes in the future.\n totalByteLength += value.byteLength\n onResponseSizeUpdate(totalByteLength)\n continue\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream. We do notify the caller, though.\n onStreamClose()\n return\n }\n },\n })\n}\n\nfunction addSegmentPathToUrlInOutputExportMode(\n url: URL,\n segmentPath: SegmentRequestKey\n): URL {\n if (isOutputExportMode) {\n // In output: \"export\" mode, we cannot use a header to encode the segment\n // path. Instead, we append it to the end of the pathname.\n const staticUrl = new URL(url)\n const routeDir = staticUrl.pathname.endsWith('/')\n ? staticUrl.pathname.slice(0, -1)\n : staticUrl.pathname\n const staticExportFilename =\n convertSegmentPathToStaticExportFilename(segmentPath)\n staticUrl.pathname = `${routeDir}/${staticExportFilename}`\n return staticUrl\n }\n return url\n}\n\n/**\n * Checks whether the new fetch strategy is likely to provide more content than the old one.\n *\n * Generally, when an app uses dynamic data, a \"more specific\" fetch strategy is expected to provide more content:\n * - `LoadingBoundary` only provides static layouts\n * - `PPR` can provide shells for each segment (even for segments that use dynamic data)\n * - `PPRRuntime` can additionally include content that uses searchParams, params, or cookies\n * - `Full` includes all the content, even if it uses dynamic data\n *\n * However, it's possible that a more specific fetch strategy *won't* give us more content if:\n * - a segment is fully static\n * (then, `PPR`/`PPRRuntime`/`Full` will all yield equivalent results)\n * - providing searchParams/params/cookies doesn't reveal any more content, e.g. because of an `await connection()`\n * (then, `PPR` and `PPRRuntime` will yield equivalent results, only `Full` will give us more)\n * Because of this, when comparing two segments, we should also check if the existing segment is partial.\n * If it's not partial, then there's no need to prefetch it again, even using a \"more specific\" strategy.\n * There's currently no way to know if `PPRRuntime` will yield more data that `PPR`, so we have to assume it will.\n *\n * Also note that, in practice, we don't expect to be comparing `LoadingBoundary` to `PPR`/`PPRRuntime`,\n * because a non-PPR-enabled route wouldn't ever use the latter strategies. It might however use `Full`.\n */\nexport function canNewFetchStrategyProvideMoreContent(\n currentStrategy: FetchStrategy,\n newStrategy: FetchStrategy\n): boolean {\n return currentStrategy < newStrategy\n}\n"],"names":["HasLoadingBoundary","NEXT_DID_POSTPONE_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_URL","RSC_CONTENT_TYPE_HEADER","RSC_HEADER","createFetch","createFromNextReadableStream","pingPrefetchTask","isPrefetchTaskDirty","startRevalidationCooldown","getRouteVaryPath","getFulfilledRouteVaryPath","getSegmentVaryPathForRequest","appendLayoutVaryPath","finalizeLayoutVaryPath","finalizePageVaryPath","clonePageVaryPathWithNewSearchParams","finalizeMetadataVaryPath","getAppBuildId","createHrefFromUrl","createCacheKey","createPrefetchRequestKey","doesStaticSegmentAppearInURL","getCacheKeyForDynamicParam","getRenderedPathname","getRenderedSearch","parseDynamicParamFromURLPart","createCacheMap","getFromCacheMap","setInCacheMap","setSizeInCacheMap","deleteFromCacheMap","isValueExpired","appendSegmentRequestKeyPart","convertSegmentPathToStaticExportFilename","createSegmentRequestKeyPart","HEAD_REQUEST_KEY","ROOT_SEGMENT_REQUEST_KEY","normalizeFlightData","prepareFlightRouterStateForRequest","STATIC_STALETIME_MS","pingVisibleLinks","PAGE_SEGMENT_KEY","FetchStrategy","createPromiseWithResolvers","getStaleTimeMs","staleTimeSeconds","Math","max","EntryStatus","isOutputExportMode","process","env","NODE_ENV","__NEXT_CONFIG_OUTPUT","MetadataOnlyRequestTree","routeCacheMap","segmentCacheMap","invalidationListeners","currentCacheVersion","getCurrentCacheVersion","revalidateEntireCache","nextUrl","tree","pingInvalidationListeners","attachInvalidationListener","task","onInvalidate","Set","add","notifyInvalidationListener","error","reportError","console","tasks","readRouteCacheEntry","now","key","varyPath","pathname","search","isRevalidation","readSegmentCacheEntry","readRevalidatingSegmentCacheEntry","waitForSegmentCacheEntry","pendingEntry","promiseWithResolvers","promise","readOrCreateRouteCacheEntry","existingEntry","canonicalUrl","status","blockedTasks","metadata","couldBeIntercepted","isPPREnabled","renderedSearch","ref","size","staleAt","Infinity","version","requestOptimisticRouteCacheEntry","requestedUrl","requestedSearch","urlWithoutSearchParams","URL","routeWithNoSearchParams","href","canonicalUrlForRouteWithNoSearchParams","origin","optimisticCanonicalSearch","optimisticRenderedSearch","optimisticUrl","location","optimisticCanonicalUrl","optimisticRouteTree","createOptimisticRouteTree","optimisticMetadataTree","optimisticEntry","newRenderedSearch","clonedSlots","originalSlots","slots","parallelRouteKey","childTree","isPage","requestKey","segment","isRootLayout","hasLoadingBoundary","hasRuntimePrefetch","readOrCreateSegmentCacheEntry","fetchStrategy","route","varyPathForRequest","createDetachedSegmentCacheEntry","readOrCreateRevalidatingSegmentEntry","overwriteRevalidatingSegmentCacheEntry","upsertSegmentEntry","candidateEntry","canNewFetchStrategyProvideMoreContent","isPartial","rejectedEntry","loading","rsc","emptyEntry","PPR","upgradeToPendingSegment","Full","pingBlockedTasks","entry","fulfillRouteCacheEntry","metadataVaryPath","SubtreeHasNoLoadingBoundary","fulfilledEntry","fulfillSegmentCacheEntry","segmentCacheEntry","resolve","rejectRouteCacheEntry","rejectSegmentCacheEntry","convertRootTreePrefetchToRouteTree","rootTree","renderedPathname","acc","pathnameParts","split","filter","p","index","rootSegment","convertTreePrefetchToRouteTree","prefetch","partialVaryPath","pathnamePartsIndex","prefetchSlots","childPrefetch","childParamName","name","childParamType","paramType","childServerSentParamKey","paramKey","childDoesAppearInURL","childSegment","childPartialVaryPath","childParamValue","childParamKey","childPathnamePartsIndex","childRequestKeyPart","childRequestKey","endsWith","SegmentHasLoadingBoundary","convertRootFlightRouterStateToRouteTree","flightRouterState","convertFlightRouterStateToRouteTree","parentPartialVaryPath","originalSegment","Array","isArray","paramCacheKey","parallelRoutes","childRouterState","undefined","convertRouteTreeToFlightRouterState","routeTree","fetchRouteOnCacheMiss","segmentPath","headers","url","response","urlAfterRedirects","headResponse","fetch","method","Date","redirected","fetchPrefetchResponse","addSegmentPathToUrlInOutputExportMode","ok","body","varyHeader","get","includes","closed","routeIsPPREnabled","prefetchStream","createPrefetchResponseStream","onResponseSizeUpdate","serverData","buildId","staleTimeMs","staleTime","b","writeDynamicTreeResponseIntoCache","LoadingBoundary","fulfilledVaryPath","value","fetchSegmentOnCacheMiss","routeKey","normalizedRequestKey","requestUrl","fetchSegmentPrefetchesUsingDynamicRequest","dynamicRequestTree","spawnedEntries","has","PPRRuntime","rejectSegmentEntriesIfStillPending","fulfilledEntries","totalBytesReceivedSoFar","averageSize","length","isResponsePartial","rp","writeDynamicRenderResponseIntoCache","normalizedFlightDataResult","f","flightData","isRootRender","parseInt","isNaN","entries","values","push","flightDatas","seedData","i","writeSeedDataIntoCache","head","fulfillEntrySpawnedByRuntimePrefetch","isHeadPartial","entriesOwnedByCurrentTask","seedDataChildren","childSeedData","ownedEntry","possiblyNewEntry","newEntry","fetchPriority","shouldImmediatelyDecode","contentType","isFlightResponse","startsWith","originalFlightStream","onStreamClose","totalByteLength","reader","getReader","ReadableStream","pull","controller","done","read","enqueue","byteLength","staticUrl","routeDir","slice","staticExportFilename","currentStrategy","newStrategy"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7305, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/navigation.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type { CacheNode } from '../../../shared/lib/app-router-types'\nimport type {\n HeadData,\n LoadingModuleData,\n} from '../../../shared/lib/app-router-types'\nimport type { NormalizedFlightData } from '../../flight-data-helpers'\nimport { fetchServerResponse } from '../router-reducer/fetch-server-response'\nimport {\n startPPRNavigation,\n spawnDynamicRequests,\n FreshnessPolicy,\n type NavigationTask,\n type NavigationRequestAccumulation,\n} from '../router-reducer/ppr-navigations'\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url'\nimport {\n EntryStatus,\n readRouteCacheEntry,\n readSegmentCacheEntry,\n waitForSegmentCacheEntry,\n requestOptimisticRouteCacheEntry,\n type RouteTree,\n type FulfilledRouteCacheEntry,\n} from './cache'\nimport { createCacheKey } from './cache-key'\nimport { addSearchParamsIfPageSegment } from '../../../shared/lib/segment'\nimport { NavigationResultTag } from './types'\n\ntype MPANavigationResult = {\n tag: NavigationResultTag.MPA\n data: string\n}\n\ntype SuccessfulNavigationResult = {\n tag: NavigationResultTag.Success\n data: {\n flightRouterState: FlightRouterState\n cacheNode: CacheNode\n canonicalUrl: string\n renderedSearch: string\n scrollableSegments: Array | null\n shouldScroll: boolean\n hash: string\n }\n}\n\ntype AsyncNavigationResult = {\n tag: NavigationResultTag.Async\n data: Promise\n}\n\nexport type NavigationResult =\n | MPANavigationResult\n | SuccessfulNavigationResult\n | AsyncNavigationResult\n\n/**\n * Navigate to a new URL, using the Segment Cache to construct a response.\n *\n * To allow for synchronous navigations whenever possible, this is not an async\n * function. It returns a promise only if there's no matching prefetch in\n * the cache. Otherwise it returns an immediate result and uses Suspense/RSC to\n * stream in any missing data.\n */\nexport function navigate(\n url: URL,\n currentUrl: URL,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean,\n accumulation: { collectedDebugInfo?: Array }\n): NavigationResult {\n const now = Date.now()\n const href = url.href\n\n // We special case navigations to the exact same URL as the current location.\n // It's a common UI pattern for apps to refresh when you click a link to the\n // current page. So when this happens, we refresh the dynamic data in the page\n // segments.\n //\n // Note that this does not apply if the any part of the hash or search query\n // has changed. This might feel a bit weird but it makes more sense when you\n // consider that the way to trigger this behavior is to click the same link\n // multiple times.\n //\n // TODO: We should probably refresh the *entire* route when this case occurs,\n // not just the page segments. Essentially treating it the same as a refresh()\n // triggered by an action, which is the more explicit way of modeling the UI\n // pattern described above.\n //\n // Also note that this only refreshes the dynamic data, not static/ cached\n // data. If the page segment is fully static and prefetched, the request is\n // skipped. (This is also how refresh() works.)\n const isSamePageNavigation = href === currentUrl.href\n\n const cacheKey = createCacheKey(href, nextUrl)\n const route = readRouteCacheEntry(now, cacheKey)\n if (route !== null && route.status === EntryStatus.Fulfilled) {\n // We have a matching prefetch.\n const snapshot = readRenderSnapshotFromCache(now, route, route.tree)\n const prefetchFlightRouterState = snapshot.flightRouterState\n const prefetchSeedData = snapshot.seedData\n const headSnapshot = readHeadSnapshotFromCache(now, route)\n const prefetchHead = headSnapshot.rsc\n const isPrefetchHeadPartial = headSnapshot.isPartial\n // TODO: The \"canonicalUrl\" stored in the cache doesn't include the hash,\n // because hash entries do not vary by hash fragment. However, the one\n // we set in the router state *does* include the hash, and it's used to\n // sync with the actual browser location. To make this less of a refactor\n // hazard, we should always track the hash separately from the rest of\n // the URL.\n const newCanonicalUrl = route.canonicalUrl + url.hash\n const renderedSearch = route.renderedSearch\n return navigateUsingPrefetchedRouteTree(\n now,\n url,\n currentUrl,\n nextUrl,\n isSamePageNavigation,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n newCanonicalUrl,\n renderedSearch,\n freshnessPolicy,\n shouldScroll\n )\n }\n\n // There was no matching route tree in the cache. Let's see if we can\n // construct an \"optimistic\" route tree.\n //\n // Do not construct an optimistic route tree if there was a cache hit, but\n // the entry has a rejected status, since it may have been rejected due to a\n // rewrite or redirect based on the search params.\n //\n // TODO: There are multiple reasons a prefetch might be rejected; we should\n // track them explicitly and choose what to do here based on that.\n if (route === null || route.status !== EntryStatus.Rejected) {\n const optimisticRoute = requestOptimisticRouteCacheEntry(now, url, nextUrl)\n if (optimisticRoute !== null) {\n // We have an optimistic route tree. Proceed with the normal flow.\n const snapshot = readRenderSnapshotFromCache(\n now,\n optimisticRoute,\n optimisticRoute.tree\n )\n const prefetchFlightRouterState = snapshot.flightRouterState\n const prefetchSeedData = snapshot.seedData\n const headSnapshot = readHeadSnapshotFromCache(now, optimisticRoute)\n const prefetchHead = headSnapshot.rsc\n const isPrefetchHeadPartial = headSnapshot.isPartial\n const newCanonicalUrl = optimisticRoute.canonicalUrl + url.hash\n const newRenderedSearch = optimisticRoute.renderedSearch\n return navigateUsingPrefetchedRouteTree(\n now,\n url,\n currentUrl,\n nextUrl,\n isSamePageNavigation,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n newCanonicalUrl,\n newRenderedSearch,\n freshnessPolicy,\n shouldScroll\n )\n }\n }\n\n // There's no matching prefetch for this route in the cache.\n let collectedDebugInfo = accumulation.collectedDebugInfo ?? []\n if (accumulation.collectedDebugInfo === undefined) {\n collectedDebugInfo = accumulation.collectedDebugInfo = []\n }\n return {\n tag: NavigationResultTag.Async,\n data: navigateDynamicallyWithNoPrefetch(\n now,\n url,\n currentUrl,\n nextUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n shouldScroll,\n collectedDebugInfo\n ),\n }\n}\n\nexport function navigateToSeededRoute(\n now: number,\n url: URL,\n canonicalUrl: string,\n navigationSeed: NavigationSeed,\n currentUrl: URL,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n nextUrl: string | null,\n shouldScroll: boolean\n): SuccessfulNavigationResult | MPANavigationResult {\n // A version of navigate() that accepts the target route tree as an argument\n // rather than reading it from the prefetch cache.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const isSamePageNavigation = url.href === currentUrl.href\n const task = startPPRNavigation(\n now,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n navigationSeed.tree,\n freshnessPolicy,\n navigationSeed.data,\n navigationSeed.head,\n null,\n null,\n false,\n isSamePageNavigation,\n accumulation\n )\n if (task !== null) {\n spawnDynamicRequests(task, url, nextUrl, freshnessPolicy, accumulation)\n return navigationTaskToResult(\n task,\n canonicalUrl,\n navigationSeed.renderedSearch,\n accumulation.scrollableSegments,\n shouldScroll,\n url.hash\n )\n }\n // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation.\n return {\n tag: NavigationResultTag.MPA,\n data: canonicalUrl,\n }\n}\n\nfunction navigateUsingPrefetchedRouteTree(\n now: number,\n url: URL,\n currentUrl: URL,\n nextUrl: string | null,\n isSamePageNavigation: boolean,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n prefetchFlightRouterState: FlightRouterState,\n prefetchSeedData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n canonicalUrl: string,\n renderedSearch: string,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean\n): SuccessfulNavigationResult | MPANavigationResult {\n // Recursively construct a prefetch tree by reading from the Segment Cache. To\n // maintain compatibility, we output the same data structures as the old\n // prefetching implementation: FlightRouterState and CacheNodeSeedData.\n // TODO: Eventually updateCacheNodeOnNavigation (or the equivalent) should\n // read from the Segment Cache directly. It's only structured this way for now\n // so we can share code with the old prefetching implementation.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const seedData = null\n const seedHead = null\n const task = startPPRNavigation(\n now,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n freshnessPolicy,\n seedData,\n seedHead,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n isSamePageNavigation,\n accumulation\n )\n if (task !== null) {\n spawnDynamicRequests(task, url, nextUrl, freshnessPolicy, accumulation)\n return navigationTaskToResult(\n task,\n canonicalUrl,\n renderedSearch,\n accumulation.scrollableSegments,\n shouldScroll,\n url.hash\n )\n }\n // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation.\n return {\n tag: NavigationResultTag.MPA,\n data: canonicalUrl,\n }\n}\n\nfunction navigationTaskToResult(\n task: NavigationTask,\n canonicalUrl: string,\n renderedSearch: string,\n scrollableSegments: Array | null,\n shouldScroll: boolean,\n hash: string\n): SuccessfulNavigationResult | MPANavigationResult {\n return {\n tag: NavigationResultTag.Success,\n data: {\n flightRouterState: task.route,\n cacheNode: task.node,\n canonicalUrl,\n renderedSearch,\n scrollableSegments,\n shouldScroll,\n hash,\n },\n }\n}\n\nfunction readRenderSnapshotFromCache(\n now: number,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): { flightRouterState: FlightRouterState; seedData: CacheNodeSeedData } {\n let childRouterStates: { [parallelRouteKey: string]: FlightRouterState } = {}\n let childSeedDatas: {\n [parallelRouteKey: string]: CacheNodeSeedData | null\n } = {}\n const slots = tree.slots\n if (slots !== null) {\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n const childResult = readRenderSnapshotFromCache(now, route, childTree)\n childRouterStates[parallelRouteKey] = childResult.flightRouterState\n childSeedDatas[parallelRouteKey] = childResult.seedData\n }\n }\n\n let rsc: React.ReactNode | null = null\n let loading: LoadingModuleData | Promise = null\n let isPartial: boolean = true\n\n const segmentEntry = readSegmentCacheEntry(now, tree.varyPath)\n if (segmentEntry !== null) {\n switch (segmentEntry.status) {\n case EntryStatus.Fulfilled: {\n // Happy path: a cache hit\n rsc = segmentEntry.rsc\n loading = segmentEntry.loading\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Pending: {\n // We haven't received data for this segment yet, but there's already\n // an in-progress request. Since it's extremely likely to arrive\n // before the dynamic data response, we might as well use it.\n const promiseForFulfilledEntry = waitForSegmentCacheEntry(segmentEntry)\n rsc = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.rsc : null\n )\n loading = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.loading : null\n )\n // Because the request is still pending, we typically don't know yet\n // whether the response will be partial. We shouldn't skip this segment\n // during the dynamic navigation request. Otherwise, we might need to\n // do yet another request to fill in the remaining data, creating\n // a waterfall.\n //\n // The one exception is if this segment is being fetched with via\n // prefetch={true} (i.e. the \"force stale\" or \"full\" strategy). If so,\n // we can assume the response will be full. This field is set to `false`\n // for such segments.\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected:\n break\n default:\n segmentEntry satisfies never\n }\n }\n\n // The navigation implementation expects the search params to be\n // included in the segment. However, the Segment Cache tracks search\n // params separately from the rest of the segment key. So we need to\n // add them back here.\n //\n // See corresponding comment in convertFlightRouterStateToTree.\n //\n // TODO: What we should do instead is update the navigation diffing\n // logic to compare search params explicitly. This is a temporary\n // solution until more of the Segment Cache implementation has settled.\n const segment = addSearchParamsIfPageSegment(\n tree.segment,\n Object.fromEntries(new URLSearchParams(route.renderedSearch))\n )\n\n // We don't need this information in a render snapshot, so this can just be a placeholder.\n const hasRuntimePrefetch = false\n\n return {\n flightRouterState: [\n segment,\n childRouterStates,\n null,\n null,\n tree.isRootLayout,\n ],\n seedData: [rsc, childSeedDatas, loading, isPartial, hasRuntimePrefetch],\n }\n}\n\nfunction readHeadSnapshotFromCache(\n now: number,\n route: FulfilledRouteCacheEntry\n): { rsc: HeadData; isPartial: boolean } {\n // Same as readRenderSnapshotFromCache, but for the head\n let rsc: React.ReactNode | null = null\n let isPartial: boolean = true\n const segmentEntry = readSegmentCacheEntry(now, route.metadata.varyPath)\n if (segmentEntry !== null) {\n switch (segmentEntry.status) {\n case EntryStatus.Fulfilled: {\n rsc = segmentEntry.rsc\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Pending: {\n const promiseForFulfilledEntry = waitForSegmentCacheEntry(segmentEntry)\n rsc = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.rsc : null\n )\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected:\n break\n default:\n segmentEntry satisfies never\n }\n }\n return { rsc, isPartial }\n}\n\n// Used to request all the dynamic data for a route, rather than just a subset,\n// e.g. during a refresh or a revalidation. Typically this gets constructed\n// during the normal flow when diffing the route tree, but for an unprefetched\n// navigation, where we don't know the structure of the target route, we use\n// this instead.\nconst DynamicRequestTreeForEntireRoute: FlightRouterState = [\n '',\n {},\n null,\n 'refetch',\n]\n\nasync function navigateDynamicallyWithNoPrefetch(\n now: number,\n url: URL,\n currentUrl: URL,\n nextUrl: string | null,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean,\n collectedDebugInfo: Array\n): Promise {\n // Runs when a navigation happens but there's no cached prefetch we can use.\n // Don't bother to wait for a prefetch response; go straight to a full\n // navigation that contains both static and dynamic data in a single stream.\n // (This is unlike the old navigation implementation, which instead blocks\n // the dynamic request until a prefetch request is received.)\n //\n // To avoid duplication of logic, we're going to pretend that the tree\n // returned by the dynamic request is, in fact, a prefetch tree. Then we can\n // use the same server response to write the actual data into the CacheNode\n // tree. So it's the same flow as the \"happy path\" (prefetch, then\n // navigation), except we use a single server response for both stages.\n\n let dynamicRequestTree: FlightRouterState\n switch (freshnessPolicy) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n dynamicRequestTree = currentFlightRouterState\n break\n case FreshnessPolicy.Hydration: // <- shouldn't happen during client nav\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n dynamicRequestTree = DynamicRequestTreeForEntireRoute\n break\n default:\n freshnessPolicy satisfies never\n dynamicRequestTree = currentFlightRouterState\n break\n }\n\n const promiseForDynamicServerResponse = fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n })\n const result = await promiseForDynamicServerResponse\n if (typeof result === 'string') {\n // This is an MPA navigation.\n const newUrl = result\n return {\n tag: NavigationResultTag.MPA,\n data: newUrl,\n }\n }\n\n const {\n flightData,\n canonicalUrl,\n renderedSearch,\n debugInfo: debugInfoFromResponse,\n } = result\n if (debugInfoFromResponse !== null) {\n collectedDebugInfo.push(...debugInfoFromResponse)\n }\n\n // Since the response format of dynamic requests and prefetches is slightly\n // different, we'll need to massage the data a bit. Create FlightRouterState\n // tree that simulates what we'd receive as the result of a prefetch.\n const navigationSeed = convertServerPatchToFullTree(\n currentFlightRouterState,\n flightData,\n renderedSearch\n )\n\n return navigateToSeededRoute(\n now,\n url,\n createHrefFromUrl(canonicalUrl),\n navigationSeed,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n nextUrl,\n shouldScroll\n )\n}\n\nexport type NavigationSeed = {\n tree: FlightRouterState\n renderedSearch: string\n data: CacheNodeSeedData | null\n head: HeadData | null\n}\n\nexport function convertServerPatchToFullTree(\n currentTree: FlightRouterState,\n flightData: Array,\n renderedSearch: string\n): NavigationSeed {\n // During a client navigation or prefetch, the server sends back only a patch\n // for the parts of the tree that have changed.\n //\n // This applies the patch to the base tree to create a full representation of\n // the resulting tree.\n //\n // The return type includes a full FlightRouterState tree and a full\n // CacheNodeSeedData tree. (Conceptually these are the same tree, and should\n // eventually be unified, but there's still lots of existing code that\n // operates on FlightRouterState trees alone without the CacheNodeSeedData.)\n //\n // TODO: This similar to what apply-router-state-patch-to-tree does. It\n // will eventually fully replace it. We should get rid of all the remaining\n // places where we iterate over the server patch format. This should also\n // eventually replace normalizeFlightData.\n\n let baseTree: FlightRouterState = currentTree\n let baseData: CacheNodeSeedData | null = null\n let head: HeadData | null = null\n for (const {\n segmentPath,\n tree: treePatch,\n seedData: dataPatch,\n head: headPatch,\n } of flightData) {\n const result = convertServerPatchToFullTreeImpl(\n baseTree,\n baseData,\n treePatch,\n dataPatch,\n segmentPath,\n 0\n )\n baseTree = result.tree\n baseData = result.data\n // This is the same for all patches per response, so just pick an\n // arbitrary one\n head = headPatch\n }\n\n return {\n tree: baseTree,\n data: baseData,\n renderedSearch,\n head,\n }\n}\n\nfunction convertServerPatchToFullTreeImpl(\n baseRouterState: FlightRouterState,\n baseData: CacheNodeSeedData | null,\n treePatch: FlightRouterState,\n dataPatch: CacheNodeSeedData | null,\n segmentPath: FlightSegmentPath,\n index: number\n): { tree: FlightRouterState; data: CacheNodeSeedData | null } {\n if (index === segmentPath.length) {\n // We reached the part of the tree that we need to patch.\n return {\n tree: treePatch,\n data: dataPatch,\n }\n }\n\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n //\n // This path tells us which part of the base tree to apply the tree patch.\n //\n // NOTE: We receive the FlightRouterState patch in the same request as the\n // seed data patch. Therefore we don't need to worry about diffing the segment\n // values; we can assume the server sent us a correct result.\n const updatedParallelRouteKey: string = segmentPath[index]\n // const segment: Segment = segmentPath[index + 1] <-- Not used, see note above\n\n const baseTreeChildren = baseRouterState[1]\n const baseSeedDataChildren = baseData !== null ? baseData[1] : null\n const newTreeChildren: Record = {}\n const newSeedDataChildren: Record = {}\n for (const parallelRouteKey in baseTreeChildren) {\n const childBaseRouterState = baseTreeChildren[parallelRouteKey]\n const childBaseSeedData =\n baseSeedDataChildren !== null\n ? (baseSeedDataChildren[parallelRouteKey] ?? null)\n : null\n if (parallelRouteKey === updatedParallelRouteKey) {\n const result = convertServerPatchToFullTreeImpl(\n childBaseRouterState,\n childBaseSeedData,\n treePatch,\n dataPatch,\n segmentPath,\n // Advance the index by two and keep cloning until we reach\n // the end of the segment path.\n index + 2\n )\n\n newTreeChildren[parallelRouteKey] = result.tree\n newSeedDataChildren[parallelRouteKey] = result.data\n } else {\n // This child is not being patched. Copy it over as-is.\n newTreeChildren[parallelRouteKey] = childBaseRouterState\n newSeedDataChildren[parallelRouteKey] = childBaseSeedData\n }\n }\n\n let clonedTree: FlightRouterState\n let clonedSeedData: CacheNodeSeedData\n // Clone all the fields except the children.\n\n // Clone the FlightRouterState tree. Based on equivalent logic in\n // apply-router-state-patch-to-tree, but should confirm whether we need to\n // copy all of these fields. Not sure the server ever sends, e.g. the\n // refetch marker.\n clonedTree = [baseRouterState[0], newTreeChildren]\n if (2 in baseRouterState) {\n clonedTree[2] = baseRouterState[2]\n }\n if (3 in baseRouterState) {\n clonedTree[3] = baseRouterState[3]\n }\n if (4 in baseRouterState) {\n clonedTree[4] = baseRouterState[4]\n }\n\n // Clone the CacheNodeSeedData tree.\n const isEmptySeedDataPartial = true\n clonedSeedData = [\n null,\n newSeedDataChildren,\n null,\n isEmptySeedDataPartial,\n false,\n ]\n\n return {\n tree: clonedTree,\n data: clonedSeedData,\n }\n}\n"],"names":["fetchServerResponse","startPPRNavigation","spawnDynamicRequests","FreshnessPolicy","createHrefFromUrl","EntryStatus","readRouteCacheEntry","readSegmentCacheEntry","waitForSegmentCacheEntry","requestOptimisticRouteCacheEntry","createCacheKey","addSearchParamsIfPageSegment","NavigationResultTag","navigate","url","currentUrl","currentCacheNode","currentFlightRouterState","nextUrl","freshnessPolicy","shouldScroll","accumulation","now","Date","href","isSamePageNavigation","cacheKey","route","status","Fulfilled","snapshot","readRenderSnapshotFromCache","tree","prefetchFlightRouterState","flightRouterState","prefetchSeedData","seedData","headSnapshot","readHeadSnapshotFromCache","prefetchHead","rsc","isPrefetchHeadPartial","isPartial","newCanonicalUrl","canonicalUrl","hash","renderedSearch","navigateUsingPrefetchedRouteTree","Rejected","optimisticRoute","newRenderedSearch","collectedDebugInfo","undefined","tag","Async","data","navigateDynamicallyWithNoPrefetch","navigateToSeededRoute","navigationSeed","scrollableSegments","separateRefreshUrls","task","head","navigationTaskToResult","MPA","seedHead","Success","cacheNode","node","childRouterStates","childSeedDatas","slots","parallelRouteKey","childTree","childResult","loading","segmentEntry","varyPath","Pending","promiseForFulfilledEntry","then","entry","Empty","segment","Object","fromEntries","URLSearchParams","hasRuntimePrefetch","isRootLayout","metadata","DynamicRequestTreeForEntireRoute","dynamicRequestTree","Default","HistoryTraversal","Hydration","RefreshAll","HMRRefresh","promiseForDynamicServerResponse","result","newUrl","flightData","debugInfo","debugInfoFromResponse","push","convertServerPatchToFullTree","currentTree","baseTree","baseData","segmentPath","treePatch","dataPatch","headPatch","convertServerPatchToFullTreeImpl","baseRouterState","index","length","updatedParallelRouteKey","baseTreeChildren","baseSeedDataChildren","newTreeChildren","newSeedDataChildren","childBaseRouterState","childBaseSeedData","clonedTree","clonedSeedData","isEmptySeedDataPartial"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7748, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/navigate-reducer.ts"],"sourcesContent":["import type {\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../../shared/lib/app-router-types'\nimport { createHrefFromUrl } from '../create-href-from-url'\nimport type {\n Mutable,\n NavigateAction,\n ReadonlyReducerState,\n ReducerState,\n} from '../router-reducer-types'\nimport { handleMutable } from '../handle-mutable'\n\nimport {\n navigate as navigateUsingSegmentCache,\n type NavigationResult,\n} from '../../segment-cache/navigation'\nimport { NavigationResultTag } from '../../segment-cache/types'\nimport { getStaleTimeMs } from '../../segment-cache/cache'\nimport { FreshnessPolicy } from '../ppr-navigations'\n\n// These values are set by `define-env-plugin` (based on `nextConfig.experimental.staleTimes`)\n// and default to 5 minutes (static) / 0 seconds (dynamic)\nexport const DYNAMIC_STALETIME_MS =\n Number(process.env.__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME) * 1000\n\nexport const STATIC_STALETIME_MS = getStaleTimeMs(\n Number(process.env.__NEXT_CLIENT_ROUTER_STATIC_STALETIME)\n)\n\nexport function handleExternalUrl(\n state: ReadonlyReducerState,\n mutable: Mutable,\n url: string,\n pendingPush: boolean\n) {\n mutable.mpaNavigation = true\n mutable.canonicalUrl = url\n mutable.pendingPush = pendingPush\n mutable.scrollableSegments = undefined\n\n return handleMutable(state, mutable)\n}\n\nexport function generateSegmentsFromPatch(\n flightRouterPatch: FlightRouterState\n): FlightSegmentPath[] {\n const segments: FlightSegmentPath[] = []\n const [segment, parallelRoutes] = flightRouterPatch\n\n if (Object.keys(parallelRoutes).length === 0) {\n return [[segment]]\n }\n\n for (const [parallelRouteKey, parallelRoute] of Object.entries(\n parallelRoutes\n )) {\n for (const childSegment of generateSegmentsFromPatch(parallelRoute)) {\n // If the segment is empty, it means we are at the root of the tree\n if (segment === '') {\n segments.push([parallelRouteKey, ...childSegment])\n } else {\n segments.push([segment, parallelRouteKey, ...childSegment])\n }\n }\n }\n\n return segments\n}\n\nexport function handleNavigationResult(\n url: URL,\n state: ReadonlyReducerState,\n mutable: Mutable,\n pendingPush: boolean,\n result: NavigationResult\n): ReducerState {\n switch (result.tag) {\n case NavigationResultTag.MPA: {\n // Perform an MPA navigation.\n const newUrl = result.data\n return handleExternalUrl(state, mutable, newUrl, pendingPush)\n }\n case NavigationResultTag.Success: {\n // Received a new result.\n mutable.cache = result.data.cacheNode\n mutable.patchedTree = result.data.flightRouterState\n mutable.renderedSearch = result.data.renderedSearch\n mutable.canonicalUrl = result.data.canonicalUrl\n // TODO: During a refresh, we don't set the `scrollableSegments`. There's\n // some confusing and subtle logic in `handleMutable` that decides what\n // to do when `shouldScroll` is set but `scrollableSegments` is not. I'm\n // not convinced it's totally coherent but the tests assert on this\n // particular behavior so I've ported the logic as-is from the previous\n // router implementation, for now.\n mutable.scrollableSegments = result.data.scrollableSegments ?? undefined\n mutable.shouldScroll = result.data.shouldScroll\n mutable.hashFragment = result.data.hash\n\n // Check if the only thing that changed was the hash fragment.\n const oldUrl = new URL(state.canonicalUrl, url)\n const onlyHashChange =\n // We don't need to compare the origins, because client-driven\n // navigations are always same-origin.\n url.pathname === oldUrl.pathname &&\n url.search === oldUrl.search &&\n url.hash !== oldUrl.hash\n if (onlyHashChange) {\n // The only updated part of the URL is the hash.\n mutable.onlyHashChange = true\n mutable.shouldScroll = result.data.shouldScroll\n mutable.hashFragment = url.hash\n // Setting this to an empty array triggers a scroll for all new and\n // updated segments. See `ScrollAndFocusHandler` for more details.\n mutable.scrollableSegments = []\n }\n\n return handleMutable(state, mutable)\n }\n case NavigationResultTag.Async: {\n return result.data.then(\n (asyncResult) =>\n handleNavigationResult(url, state, mutable, pendingPush, asyncResult),\n // If the navigation failed, return the current state.\n // TODO: This matches the current behavior but we need to do something\n // better here if the network fails.\n () => {\n return state\n }\n )\n }\n default: {\n result satisfies never\n return state\n }\n }\n}\n\nexport function navigateReducer(\n state: ReadonlyReducerState,\n action: NavigateAction\n): ReducerState {\n const { url, isExternalUrl, navigateType, shouldScroll } = action\n const mutable: Mutable = {}\n const href = createHrefFromUrl(url)\n const pendingPush = navigateType === 'push'\n\n mutable.preserveCustomHistoryState = false\n mutable.pendingPush = pendingPush\n\n if (isExternalUrl) {\n return handleExternalUrl(state, mutable, url.toString(), pendingPush)\n }\n\n // Handles case where `` tag is present,\n // which will trigger an MPA navigation.\n if (document.getElementById('__next-page-redirect')) {\n return handleExternalUrl(state, mutable, href, pendingPush)\n }\n\n // Temporary glue code between the router reducer and the new navigation\n // implementation. Eventually we'll rewrite the router reducer to a\n // state machine.\n const currentUrl = new URL(state.canonicalUrl, location.origin)\n const result = navigateUsingSegmentCache(\n url,\n currentUrl,\n state.cache,\n state.tree,\n state.nextUrl,\n FreshnessPolicy.Default,\n shouldScroll,\n mutable\n )\n return handleNavigationResult(url, state, mutable, pendingPush, result)\n}\n"],"names":["createHrefFromUrl","handleMutable","navigate","navigateUsingSegmentCache","NavigationResultTag","getStaleTimeMs","FreshnessPolicy","DYNAMIC_STALETIME_MS","Number","process","env","__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME","STATIC_STALETIME_MS","__NEXT_CLIENT_ROUTER_STATIC_STALETIME","handleExternalUrl","state","mutable","url","pendingPush","mpaNavigation","canonicalUrl","scrollableSegments","undefined","generateSegmentsFromPatch","flightRouterPatch","segments","segment","parallelRoutes","Object","keys","length","parallelRouteKey","parallelRoute","entries","childSegment","push","handleNavigationResult","result","tag","MPA","newUrl","data","Success","cache","cacheNode","patchedTree","flightRouterState","renderedSearch","shouldScroll","hashFragment","hash","oldUrl","URL","onlyHashChange","pathname","search","Async","then","asyncResult","navigateReducer","action","isExternalUrl","navigateType","href","preserveCustomHistoryState","toString","document","getElementById","currentUrl","location","origin","tree","nextUrl","Default"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7892, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/ppr-navigations.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type {\n ChildSegmentMap,\n CacheNode,\n} from '../../../shared/lib/app-router-types'\nimport type {\n HeadData,\n LoadingModuleData,\n} from '../../../shared/lib/app-router-types'\nimport {\n DEFAULT_SEGMENT_KEY,\n NOT_FOUND_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport { matchSegment } from '../match-segments'\nimport { createHrefFromUrl } from './create-href-from-url'\nimport { createRouterCacheKey } from './create-router-cache-key'\nimport { fetchServerResponse } from './fetch-server-response'\nimport { dispatchAppRouterAction } from '../use-action-queue'\nimport {\n ACTION_SERVER_PATCH,\n type ServerPatchAction,\n} from './router-reducer-types'\nimport { isNavigatingToNewRootLayout } from './is-navigating-to-new-root-layout'\nimport { DYNAMIC_STALETIME_MS } from './reducers/navigate-reducer'\nimport {\n convertServerPatchToFullTree,\n type NavigationSeed,\n} from '../segment-cache/navigation'\n\n// This is yet another tree type that is used to track pending promises that\n// need to be fulfilled once the dynamic data is received. The terminal nodes of\n// this tree represent the new Cache Node trees that were created during this\n// request. We can't use the Cache Node tree or Route State tree directly\n// because those include reused nodes, too. This tree is discarded as soon as\n// the navigation response is received.\nexport type NavigationTask = {\n status: NavigationTaskStatus\n // The router state that corresponds to the tree that this Task represents.\n route: FlightRouterState\n // The CacheNode that corresponds to the tree that this Task represents.\n node: CacheNode\n // The tree sent to the server during the dynamic request. If all the segments\n // are static, then this will be null, and no server request is required.\n // Otherwise, this is the same as `route`, except with the `refetch` marker\n // set on the top-most segment that needs to be fetched.\n dynamicRequestTree: FlightRouterState | null\n // The URL that should be used to fetch the dynamic data. This is only set\n // when the segment cannot be refetched from the current route, because it's\n // part of a \"default\" parallel slot that was reused during a navigation.\n refreshUrl: string | null\n children: Map | null\n}\n\nexport const enum FreshnessPolicy {\n Default,\n Hydration,\n HistoryTraversal,\n RefreshAll,\n HMRRefresh,\n}\n\nconst enum NavigationTaskStatus {\n Pending,\n Fulfilled,\n Rejected,\n}\n\n/**\n * When a NavigationTask finishes, there may or may not be data still missing,\n * necessitating a retry.\n */\nconst enum NavigationTaskExitStatus {\n /**\n * No additional navigation is required.\n */\n Done = 0,\n /**\n * Some data failed to load, presumably due to a route tree mismatch. Perform\n * a soft retry to reload the entire tree.\n */\n SoftRetry = 1,\n /**\n * Some data failed to load in an unrecoverable way, e.g. in an inactive\n * parallel route. Fall back to a hard (MPA-style) retry.\n */\n HardRetry = 2,\n}\n\nexport type NavigationRequestAccumulation = {\n scrollableSegments: Array | null\n separateRefreshUrls: Set | null\n}\n\nconst noop = () => {}\n\nexport function createInitialCacheNodeForHydration(\n navigatedAt: number,\n initialTree: FlightRouterState,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData\n): CacheNode {\n // Create the initial cache node tree, using the data embedded into the\n // HTML document.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const task = createCacheNodeOnNavigation(\n navigatedAt,\n initialTree,\n undefined,\n FreshnessPolicy.Hydration,\n seedData,\n seedHead,\n null,\n null,\n false,\n null,\n null,\n false,\n accumulation\n )\n\n // NOTE: We intentionally don't check if any data needs to be fetched from the\n // server. We assume the initial hydration payload is sufficient to render\n // the page.\n //\n // The completeness of the initial data is an important property that we rely\n // on as a last-ditch mechanism for recovering the app; we must always be able\n // to reload a fresh HTML document to get to a consistent state.\n //\n // In the future, there may be cases where the server intentionally sends\n // partial data and expects the client to fill in the rest, in which case this\n // logic may change. (There already is a similar case where the server sends\n // _no_ hydration data in the HTML document at all, and the client fetches it\n // separately, but that's different because we still end up hydrating with a\n // complete tree.)\n\n return task.node\n}\n\n// Creates a new Cache Node tree (i.e. copy-on-write) that represents the\n// optimistic result of a navigation, using both the current Cache Node tree and\n// data that was prefetched prior to navigation.\n//\n// At the moment we call this function, we haven't yet received the navigation\n// response from the server. It could send back something completely different\n// from the tree that was prefetched — due to rewrites, default routes, parallel\n// routes, etc.\n//\n// But in most cases, it will return the same tree that we prefetched, just with\n// the dynamic holes filled in. So we optimistically assume this will happen,\n// and accept that the real result could be arbitrarily different.\n//\n// We'll reuse anything that was already in the previous tree, since that's what\n// the server does.\n//\n// New segments (ones that don't appear in the old tree) are assigned an\n// unresolved promise. The data for these promises will be fulfilled later, when\n// the navigation response is received.\n//\n// The tree can be rendered immediately after it is created (that's why this is\n// a synchronous function). Any new trees that do not have prefetch data will\n// suspend during rendering, until the dynamic data streams in.\n//\n// Returns a Task object, which contains both the updated Cache Node and a path\n// to the pending subtrees that need to be resolved by the navigation response.\n//\n// A return value of `null` means there were no changes, and the previous tree\n// can be reused without initiating a server request.\nexport function startPPRNavigation(\n navigatedAt: number,\n oldUrl: URL,\n oldCacheNode: CacheNode | null,\n oldRouterState: FlightRouterState,\n newRouterState: FlightRouterState,\n freshness: FreshnessPolicy,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n isSamePageNavigation: boolean,\n accumulation: NavigationRequestAccumulation\n): NavigationTask | null {\n const didFindRootLayout = false\n const parentNeedsDynamicRequest = false\n const parentRefreshUrl = null\n return updateCacheNodeOnNavigation(\n navigatedAt,\n oldUrl,\n oldCacheNode !== null ? oldCacheNode : undefined,\n oldRouterState,\n newRouterState,\n freshness,\n didFindRootLayout,\n seedData,\n seedHead,\n prefetchData,\n prefetchHead,\n isPrefetchHeadPartial,\n isSamePageNavigation,\n null,\n null,\n parentNeedsDynamicRequest,\n parentRefreshUrl,\n accumulation\n )\n}\n\nfunction updateCacheNodeOnNavigation(\n navigatedAt: number,\n oldUrl: URL,\n oldCacheNode: CacheNode | void,\n oldRouterState: FlightRouterState,\n newRouterState: FlightRouterState,\n freshness: FreshnessPolicy,\n didFindRootLayout: boolean,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n isSamePageNavigation: boolean,\n parentSegmentPath: FlightSegmentPath | null,\n parentParallelRouteKey: string | null,\n parentNeedsDynamicRequest: boolean,\n parentRefreshUrl: string | null,\n accumulation: NavigationRequestAccumulation\n): NavigationTask | null {\n // Check if this segment matches the one in the previous route.\n const oldSegment = oldRouterState[0]\n const newSegment = newRouterState[0]\n if (!matchSegment(newSegment, oldSegment)) {\n // This segment does not match the previous route. We're now entering the\n // new part of the target route. Switch to the \"create\" path.\n if (\n // Check if the route tree changed before we reached a layout. (The\n // highest-level layout in a route tree is referred to as the \"root\"\n // layout.) This could mean that we're navigating between two different\n // root layouts. When this happens, we perform a full-page (MPA-style)\n // navigation.\n //\n // However, the algorithm for deciding where to start rendering a route\n // (i.e. the one performed in order to reach this function) is stricter\n // than the one used to detect a change in the root layout. So just\n // because we're re-rendering a segment outside of the root layout does\n // not mean we should trigger a full-page navigation.\n //\n // Specifically, we handle dynamic parameters differently: two segments\n // are considered the same even if their parameter values are different.\n //\n // Refer to isNavigatingToNewRootLayout for details.\n //\n // Note that we only have to perform this extra traversal if we didn't\n // already discover a root layout in the part of the tree that is\n // unchanged. We also only need to compare the subtree that is not\n // shared. In the common case, this branch is skipped completely.\n (!didFindRootLayout &&\n isNavigatingToNewRootLayout(oldRouterState, newRouterState)) ||\n // The global Not Found route (app/global-not-found.tsx) is a special\n // case, because it acts like a root layout, but in the router tree, it\n // is rendered in the same position as app/layout.tsx.\n //\n // Any navigation to the global Not Found route should trigger a\n // full-page navigation.\n //\n // TODO: We should probably model this by changing the key of the root\n // segment when this happens. Then the root layout check would work\n // as expected, without a special case.\n newSegment === NOT_FOUND_SEGMENT_KEY\n ) {\n return null\n }\n if (parentSegmentPath === null || parentParallelRouteKey === null) {\n // The root should never mismatch. If it does, it suggests an internal\n // Next.js error, or a malformed server response. Trigger a full-\n // page navigation.\n return null\n }\n return createCacheNodeOnNavigation(\n navigatedAt,\n newRouterState,\n oldCacheNode,\n freshness,\n seedData,\n seedHead,\n prefetchData,\n prefetchHead,\n isPrefetchHeadPartial,\n parentSegmentPath,\n parentParallelRouteKey,\n parentNeedsDynamicRequest,\n accumulation\n )\n }\n\n // TODO: The segment paths are tracked so that LayoutRouter knows which\n // segments to scroll to after a navigation. But we should just mark this\n // information on the CacheNode directly. It used to be necessary to do this\n // separately because CacheNodes were created lazily during render, not when\n // rather than when creating the route tree.\n const segmentPath =\n parentParallelRouteKey !== null && parentSegmentPath !== null\n ? parentSegmentPath.concat([parentParallelRouteKey, newSegment])\n : // NOTE: The root segment is intentionally omitted from the segment path\n []\n\n const newRouterStateChildren = newRouterState[1]\n const oldRouterStateChildren = oldRouterState[1]\n const seedDataChildren = seedData !== null ? seedData[1] : null\n const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null\n\n // We're currently traversing the part of the tree that was also part of\n // the previous route. If we discover a root layout, then we don't need to\n // trigger an MPA navigation.\n const isRootLayout = newRouterState[4] === true\n const childDidFindRootLayout = didFindRootLayout || isRootLayout\n\n const oldParallelRoutes =\n oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined\n\n // Clone the current set of segment children, even if they aren't active in\n // the new tree.\n // TODO: We currently retain all the inactive segments indefinitely, until\n // there's an explicit refresh, or a parent layout is lazily refreshed. We\n // rely on this for popstate navigations, which update the Router State Tree\n // but do not eagerly perform a data fetch, because they expect the segment\n // data to already be in the Cache Node tree. For highly static sites that\n // are mostly read-only, this may happen only rarely, causing memory to\n // leak. We should figure out a better model for the lifetime of inactive\n // segments, so we can maintain instant back/forward navigations without\n // leaking memory indefinitely.\n let shouldDropSiblingCaches: boolean = false\n let shouldRefreshDynamicData: boolean = false\n switch (freshness) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n case FreshnessPolicy.Hydration: // <- shouldn't happen during client nav\n // We should never drop dynamic data in shared layouts, except during\n // a refresh.\n shouldDropSiblingCaches = false\n shouldRefreshDynamicData = false\n break\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n shouldDropSiblingCaches = true\n shouldRefreshDynamicData = true\n break\n default:\n freshness satisfies never\n break\n }\n const newParallelRoutes = new Map(\n shouldDropSiblingCaches ? undefined : oldParallelRoutes\n )\n\n // TODO: We're not consistent about how we do this check. Some places\n // check if the segment starts with PAGE_SEGMENT_KEY, but most seem to\n // check if there any any children, which is why I'm doing it here. We\n // should probably encode an empty children set as `null` though. Either\n // way, we should update all the checks to be consistent.\n const isLeafSegment = Object.keys(newRouterStateChildren).length === 0\n\n // Get the data for this segment. Since it was part of the previous route,\n // usually we just clone the data from the old CacheNode. However, during a\n // refresh or a revalidation, there won't be any existing CacheNode. So we\n // may need to consult the prefetch cache, like we would for a new segment.\n let newCacheNode: CacheNode\n let needsDynamicRequest: boolean\n if (\n oldCacheNode !== undefined &&\n !shouldRefreshDynamicData &&\n // During a same-page navigation, we always refetch the page segments\n !(isLeafSegment && isSamePageNavigation)\n ) {\n // Reuse the existing CacheNode\n const dropPrefetchRsc = false\n newCacheNode = reuseDynamicCacheNode(\n dropPrefetchRsc,\n oldCacheNode,\n newParallelRoutes\n )\n needsDynamicRequest = false\n } else if (seedData !== null && seedData[0] !== null) {\n // If this navigation was the result of an action, then check if the\n // server sent back data in the action response. We should favor using\n // that, rather than performing a separate request. This is both better\n // for performance and it's more likely to be consistent with any\n // writes that were just performed by the action, compared to a\n // separate request.\n const seedRsc = seedData[0]\n const seedLoading = seedData[2]\n const isSeedRscPartial = false\n const isSeedHeadPartial = seedHead === null\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = isLeafSegment && isSeedHeadPartial\n } else if (prefetchData !== null) {\n // Consult the prefetch cache.\n const prefetchRsc = prefetchData[0]\n const prefetchLoading = prefetchData[2]\n const isPrefetchRSCPartial = prefetchData[3]\n newCacheNode = readCacheNodeFromSeedData(\n prefetchRsc,\n prefetchLoading,\n isPrefetchRSCPartial,\n prefetchHead,\n isPrefetchHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest =\n isPrefetchRSCPartial || (isLeafSegment && isPrefetchHeadPartial)\n } else {\n // Spawn a request to fetch new data from the server.\n newCacheNode = spawnNewCacheNode(\n newParallelRoutes,\n isLeafSegment,\n navigatedAt,\n freshness\n )\n needsDynamicRequest = true\n }\n\n // During a refresh navigation, there's a special case that happens when\n // entering a \"default\" slot. The default slot may not be part of the\n // current route; it may have been reused from an older route. If so,\n // we need to fetch its data from the old route's URL rather than current\n // route's URL. Keep track of this as we traverse the tree.\n const href = newRouterState[2]\n const refreshUrl =\n typeof href === 'string' && newRouterState[3] === 'refresh'\n ? // This segment is not present in the current route. Track its\n // refresh URL as we continue traversing the tree.\n href\n : // Inherit the refresh URL from the parent.\n parentRefreshUrl\n\n // If this segment itself needs to fetch new data from the server, then by\n // definition it is being refreshed. Track its refresh URL so we know which\n // URL to request the data from.\n if (needsDynamicRequest && refreshUrl !== null) {\n accumulateRefreshUrl(accumulation, refreshUrl)\n }\n\n // As we diff the trees, we may sometimes modify (copy-on-write, not mutate)\n // the Route Tree that was returned by the server — for example, in the case\n // of default parallel routes, we preserve the currently active segment. To\n // avoid mutating the original tree, we clone the router state children along\n // the return path.\n let patchedRouterStateChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n let taskChildren = null\n\n // Most navigations require a request to fetch additional data from the\n // server, either because the data was not already prefetched, or because the\n // target route contains dynamic data that cannot be prefetched.\n //\n // However, if the target route is fully static, and it's already completely\n // loaded into the segment cache, then we can skip the server request.\n //\n // This starts off as `false`, and is set to `true` if any of the child\n // routes requires a dynamic request.\n let childNeedsDynamicRequest = false\n // As we traverse the children, we'll construct a FlightRouterState that can\n // be sent to the server to request the dynamic data. If it turns out that\n // nothing in the subtree is dynamic (i.e. childNeedsDynamicRequest is false\n // at the end), then this will be discarded.\n // TODO: We can probably optimize the format of this data structure to only\n // include paths that are dynamic. Instead of reusing the\n // FlightRouterState type.\n let dynamicRequestTreeChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n\n for (let parallelRouteKey in newRouterStateChildren) {\n let newRouterStateChild: FlightRouterState =\n newRouterStateChildren[parallelRouteKey]\n const oldRouterStateChild: FlightRouterState | void =\n oldRouterStateChildren[parallelRouteKey]\n if (oldRouterStateChild === undefined) {\n // This should never happen, but if it does, it suggests a malformed\n // server response. Trigger a full-page navigation.\n return null\n }\n const oldSegmentMapChild =\n oldParallelRoutes !== undefined\n ? oldParallelRoutes.get(parallelRouteKey)\n : undefined\n\n let seedDataChild: CacheNodeSeedData | void | null =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n let prefetchDataChild: CacheNodeSeedData | void | null =\n prefetchDataChildren !== null\n ? prefetchDataChildren[parallelRouteKey]\n : null\n\n let newSegmentChild = newRouterStateChild[0]\n let seedHeadChild = seedHead\n let prefetchHeadChild = prefetchHead\n let isPrefetchHeadPartialChild = isPrefetchHeadPartial\n if (\n // Skip this branch during a history traversal. We restore the tree that\n // was stashed in the history entry as-is.\n freshness !== FreshnessPolicy.HistoryTraversal &&\n newSegmentChild === DEFAULT_SEGMENT_KEY\n ) {\n // This is a \"default\" segment. These are never sent by the server during\n // a soft navigation; instead, the client reuses whatever segment was\n // already active in that slot on the previous route.\n newRouterStateChild = reuseActiveSegmentInDefaultSlot(\n oldUrl,\n oldRouterStateChild\n )\n newSegmentChild = newRouterStateChild[0]\n\n // Since we're switching to a different route tree, these are no\n // longer valid, because they correspond to the outer tree.\n seedDataChild = null\n seedHeadChild = null\n prefetchDataChild = null\n prefetchHeadChild = null\n isPrefetchHeadPartialChild = false\n }\n\n const newSegmentKeyChild = createRouterCacheKey(newSegmentChild)\n const oldCacheNodeChild =\n oldSegmentMapChild !== undefined\n ? oldSegmentMapChild.get(newSegmentKeyChild)\n : undefined\n\n const taskChild = updateCacheNodeOnNavigation(\n navigatedAt,\n oldUrl,\n oldCacheNodeChild,\n oldRouterStateChild,\n newRouterStateChild,\n freshness,\n childDidFindRootLayout,\n seedDataChild ?? null,\n seedHeadChild,\n prefetchDataChild ?? null,\n prefetchHeadChild,\n isPrefetchHeadPartialChild,\n isSamePageNavigation,\n segmentPath,\n parallelRouteKey,\n parentNeedsDynamicRequest || needsDynamicRequest,\n refreshUrl,\n accumulation\n )\n\n if (taskChild === null) {\n // One of the child tasks discovered a change to the root layout.\n // Immediately unwind from this recursive traversal. This will trigger a\n // full-page navigation.\n return null\n }\n\n // Recursively propagate up the child tasks.\n if (taskChildren === null) {\n taskChildren = new Map()\n }\n taskChildren.set(parallelRouteKey, taskChild)\n const newCacheNodeChild = taskChild.node\n if (newCacheNodeChild !== null) {\n const newSegmentMapChild: ChildSegmentMap = new Map(\n shouldDropSiblingCaches ? undefined : oldSegmentMapChild\n )\n newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild)\n newParallelRoutes.set(parallelRouteKey, newSegmentMapChild)\n }\n\n // The child tree's route state may be different from the prefetched\n // route sent by the server. We need to clone it as we traverse back up\n // the tree.\n const taskChildRoute = taskChild.route\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute\n\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree\n if (dynamicRequestTreeChild !== null) {\n // Something in the child tree is dynamic.\n childNeedsDynamicRequest = true\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute\n }\n }\n\n return {\n status: needsDynamicRequest\n ? NavigationTaskStatus.Pending\n : NavigationTaskStatus.Fulfilled,\n route: patchRouterStateWithNewChildren(\n newRouterState,\n patchedRouterStateChildren\n ),\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(\n newRouterState,\n dynamicRequestTreeChildren,\n needsDynamicRequest,\n childNeedsDynamicRequest,\n parentNeedsDynamicRequest\n ),\n refreshUrl,\n children: taskChildren,\n }\n}\n\nfunction createCacheNodeOnNavigation(\n navigatedAt: number,\n newRouterState: FlightRouterState,\n oldCacheNode: CacheNode | void,\n freshness: FreshnessPolicy,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n parentSegmentPath: FlightSegmentPath | null,\n parentParallelRouteKey: string | null,\n parentNeedsDynamicRequest: boolean,\n accumulation: NavigationRequestAccumulation\n): NavigationTask {\n // Same traversal as updateCacheNodeNavigation, but simpler. We switch to this\n // path once we reach the part of the tree that was not in the previous route.\n // We don't need to diff against the old tree, we just need to create a new\n // one. We also don't need to worry about any refresh-related logic.\n //\n // For the most part, this is a subset of updateCacheNodeOnNavigation, so any\n // change that happens in this function likely needs to be applied to that\n // one, too. However there are some places where the behavior intentionally\n // diverges, which is why we keep them separate.\n\n const newSegment = newRouterState[0]\n const segmentPath =\n parentParallelRouteKey !== null && parentSegmentPath !== null\n ? parentSegmentPath.concat([parentParallelRouteKey, newSegment])\n : // NOTE: The root segment is intentionally omitted from the segment path\n []\n\n const newRouterStateChildren = newRouterState[1]\n const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null\n const seedDataChildren = seedData !== null ? seedData[1] : null\n const oldParallelRoutes =\n oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined\n\n let shouldDropSiblingCaches: boolean = false\n let shouldRefreshDynamicData: boolean = false\n let dropPrefetchRsc: boolean = false\n switch (freshness) {\n case FreshnessPolicy.Default:\n // We should never drop dynamic data in sibling caches except during\n // a refresh.\n shouldDropSiblingCaches = false\n\n // Only reuse the dynamic data if experimental.staleTimes.dynamic config\n // is set, and the data is not stale. (This is not a recommended API with\n // Cache Components, but it's supported for backwards compatibility. Use\n // cacheLife instead.)\n //\n // DYNAMIC_STALETIME_MS defaults to 0, but it can be increased.\n shouldRefreshDynamicData =\n oldCacheNode === undefined ||\n navigatedAt - oldCacheNode.navigatedAt >= DYNAMIC_STALETIME_MS\n\n dropPrefetchRsc = false\n break\n case FreshnessPolicy.Hydration:\n // During hydration, we assume the data sent by the server is both\n // consistent and complete.\n shouldRefreshDynamicData = false\n shouldDropSiblingCaches = false\n dropPrefetchRsc = false\n break\n case FreshnessPolicy.HistoryTraversal:\n // During back/forward navigations, we reuse the dynamic data regardless\n // of how stale it may be.\n shouldRefreshDynamicData = false\n shouldRefreshDynamicData = false\n\n // Only show prefetched data if the dynamic data is still pending. This\n // avoids a flash back to the prefetch state in a case where it's highly\n // likely to have already streamed in.\n //\n // Tehnically, what we're actually checking is whether the dynamic network\n // response was received. But since it's a streaming response, this does\n // not mean that all the dynamic data has fully streamed in. It just means\n // that _some_ of the dynamic data was received. But as a heuristic, we\n // assume that the rest dynamic data will stream in quickly, so it's still\n // better to skip the prefetch state.\n if (oldCacheNode !== undefined) {\n const oldRsc = oldCacheNode.rsc\n const oldRscDidResolve =\n !isDeferredRsc(oldRsc) || oldRsc.status !== 'pending'\n dropPrefetchRsc = oldRscDidResolve\n } else {\n dropPrefetchRsc = false\n }\n break\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n // Drop all dynamic data.\n shouldRefreshDynamicData = true\n shouldDropSiblingCaches = true\n dropPrefetchRsc = false\n break\n default:\n freshness satisfies never\n break\n }\n\n const newParallelRoutes = new Map(\n shouldDropSiblingCaches ? undefined : oldParallelRoutes\n )\n const isLeafSegment = Object.keys(newRouterStateChildren).length === 0\n\n if (isLeafSegment) {\n // The segment path of every leaf segment (i.e. page) is collected into\n // a result array. This is used by the LayoutRouter to scroll to ensure that\n // new pages are visible after a navigation.\n //\n // This only happens for new pages, not for refreshed pages.\n //\n // TODO: We should use a string to represent the segment path instead of\n // an array. We already use a string representation for the path when\n // accessing the Segment Cache, so we can use the same one.\n if (accumulation.scrollableSegments === null) {\n accumulation.scrollableSegments = []\n }\n accumulation.scrollableSegments.push(segmentPath)\n }\n\n let newCacheNode: CacheNode\n let needsDynamicRequest: boolean\n if (!shouldRefreshDynamicData && oldCacheNode !== undefined) {\n // Reuse the existing CacheNode\n newCacheNode = reuseDynamicCacheNode(\n dropPrefetchRsc,\n oldCacheNode,\n newParallelRoutes\n )\n needsDynamicRequest = false\n } else if (seedData !== null && seedData[0] !== null) {\n // If this navigation was the result of an action, then check if the\n // server sent back data in the action response. We should favor using\n // that, rather than performing a separate request. This is both better\n // for performance and it's more likely to be consistent with any\n // writes that were just performed by the action, compared to a\n // separate request.\n const seedRsc = seedData[0]\n const seedLoading = seedData[2]\n const isSeedRscPartial = false\n const isSeedHeadPartial =\n seedHead === null && freshness !== FreshnessPolicy.Hydration\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = isLeafSegment && isSeedHeadPartial\n } else if (\n freshness === FreshnessPolicy.Hydration &&\n isLeafSegment &&\n seedHead !== null\n ) {\n // This is another weird case related to \"not found\" pages and hydration.\n // There will be a head sent by the server, but no page seed data.\n // TODO: We really should get rid of all these \"not found\" specific quirks\n // and make sure the tree is always consistent.\n const seedRsc = null\n const seedLoading = null\n const isSeedRscPartial = false\n const isSeedHeadPartial = false\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = false\n } else if (freshness !== FreshnessPolicy.Hydration && prefetchData !== null) {\n // Consult the prefetch cache.\n const prefetchRsc = prefetchData[0]\n const prefetchLoading = prefetchData[2]\n const isPrefetchRSCPartial = prefetchData[3]\n newCacheNode = readCacheNodeFromSeedData(\n prefetchRsc,\n prefetchLoading,\n isPrefetchRSCPartial,\n prefetchHead,\n isPrefetchHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest =\n isPrefetchRSCPartial || (isLeafSegment && isPrefetchHeadPartial)\n } else {\n // Spawn a request to fetch new data from the server.\n newCacheNode = spawnNewCacheNode(\n newParallelRoutes,\n isLeafSegment,\n navigatedAt,\n freshness\n )\n needsDynamicRequest = true\n }\n\n let patchedRouterStateChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n let taskChildren = null\n\n let childNeedsDynamicRequest = false\n let dynamicRequestTreeChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n\n for (let parallelRouteKey in newRouterStateChildren) {\n const newRouterStateChild: FlightRouterState =\n newRouterStateChildren[parallelRouteKey]\n const oldSegmentMapChild =\n oldParallelRoutes !== undefined\n ? oldParallelRoutes.get(parallelRouteKey)\n : undefined\n const seedDataChild: CacheNodeSeedData | void | null =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n const prefetchDataChild: CacheNodeSeedData | void | null =\n prefetchDataChildren !== null\n ? prefetchDataChildren[parallelRouteKey]\n : null\n\n const newSegmentChild = newRouterStateChild[0]\n const newSegmentKeyChild = createRouterCacheKey(newSegmentChild)\n\n const oldCacheNodeChild =\n oldSegmentMapChild !== undefined\n ? oldSegmentMapChild.get(newSegmentKeyChild)\n : undefined\n\n const taskChild = createCacheNodeOnNavigation(\n navigatedAt,\n newRouterStateChild,\n oldCacheNodeChild,\n freshness,\n seedDataChild ?? null,\n seedHead,\n prefetchDataChild ?? null,\n prefetchHead,\n isPrefetchHeadPartial,\n segmentPath,\n parallelRouteKey,\n parentNeedsDynamicRequest || needsDynamicRequest,\n accumulation\n )\n\n if (taskChildren === null) {\n taskChildren = new Map()\n }\n taskChildren.set(parallelRouteKey, taskChild)\n const newCacheNodeChild = taskChild.node\n if (newCacheNodeChild !== null) {\n const newSegmentMapChild: ChildSegmentMap = new Map(\n shouldDropSiblingCaches ? undefined : oldSegmentMapChild\n )\n newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild)\n newParallelRoutes.set(parallelRouteKey, newSegmentMapChild)\n }\n\n const taskChildRoute = taskChild.route\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute\n\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree\n if (dynamicRequestTreeChild !== null) {\n childNeedsDynamicRequest = true\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute\n }\n }\n\n return {\n status: needsDynamicRequest\n ? NavigationTaskStatus.Pending\n : NavigationTaskStatus.Fulfilled,\n route: patchRouterStateWithNewChildren(\n newRouterState,\n patchedRouterStateChildren\n ),\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(\n newRouterState,\n dynamicRequestTreeChildren,\n needsDynamicRequest,\n childNeedsDynamicRequest,\n parentNeedsDynamicRequest\n ),\n // This route is not part of the current tree, so there's no reason to\n // track the refresh URL.\n refreshUrl: null,\n children: taskChildren,\n }\n}\n\nfunction patchRouterStateWithNewChildren(\n baseRouterState: FlightRouterState,\n newChildren: { [parallelRouteKey: string]: FlightRouterState }\n): FlightRouterState {\n const clone: FlightRouterState = [baseRouterState[0], newChildren]\n // Based on equivalent logic in apply-router-state-patch-to-tree, but should\n // confirm whether we need to copy all of these fields. Not sure the server\n // ever sends, e.g. the refetch marker.\n if (2 in baseRouterState) {\n clone[2] = baseRouterState[2]\n }\n if (3 in baseRouterState) {\n clone[3] = baseRouterState[3]\n }\n if (4 in baseRouterState) {\n clone[4] = baseRouterState[4]\n }\n return clone\n}\n\nfunction createDynamicRequestTree(\n newRouterState: FlightRouterState,\n dynamicRequestTreeChildren: Record,\n needsDynamicRequest: boolean,\n childNeedsDynamicRequest: boolean,\n parentNeedsDynamicRequest: boolean\n): FlightRouterState | null {\n // Create a FlightRouterState that instructs the server how to render the\n // requested segment.\n //\n // Or, if neither this segment nor any of the children require a new data,\n // then we return `null` to skip the request.\n let dynamicRequestTree: FlightRouterState | null = null\n if (needsDynamicRequest) {\n dynamicRequestTree = patchRouterStateWithNewChildren(\n newRouterState,\n dynamicRequestTreeChildren\n )\n // The \"refetch\" marker is set on the top-most segment that requires new\n // data. We can omit it if a parent was already marked.\n if (!parentNeedsDynamicRequest) {\n dynamicRequestTree[3] = 'refetch'\n }\n } else if (childNeedsDynamicRequest) {\n // This segment does not request new data, but at least one of its\n // children does.\n dynamicRequestTree = patchRouterStateWithNewChildren(\n newRouterState,\n dynamicRequestTreeChildren\n )\n } else {\n dynamicRequestTree = null\n }\n return dynamicRequestTree\n}\n\nfunction accumulateRefreshUrl(\n accumulation: NavigationRequestAccumulation,\n refreshUrl: string\n) {\n // This is a refresh navigation, and we're inside a \"default\" slot that's\n // not part of the current route; it was reused from an older route. In\n // order to get fresh data for this reused route, we need to issue a\n // separate request using the old route's URL.\n //\n // Track these extra URLs in the accumulated result. Later, we'll construct\n // an appropriate request for each unique URL in the final set. The reason\n // we don't do it immediately here is so we can deduplicate multiple\n // instances of the same URL into a single request. See\n // listenForDynamicRequest for more details.\n const separateRefreshUrls = accumulation.separateRefreshUrls\n if (separateRefreshUrls === null) {\n accumulation.separateRefreshUrls = new Set([refreshUrl])\n } else {\n separateRefreshUrls.add(refreshUrl)\n }\n}\n\nfunction reuseActiveSegmentInDefaultSlot(\n oldUrl: URL,\n oldRouterState: FlightRouterState\n): FlightRouterState {\n // This is a \"default\" segment. These are never sent by the server during a\n // soft navigation; instead, the client reuses whatever segment was already\n // active in that slot on the previous route. This means if we later need to\n // refresh the segment, it will have to be refetched from the previous route's\n // URL. We store it in the Flight Router State.\n //\n // TODO: We also mark the segment with a \"refresh\" marker but I think we can\n // get rid of that eventually by making sure we only add URLs to page segments\n // that are reused. Then the presence of the URL alone is enough.\n let reusedRouterState\n\n const oldRefreshMarker = oldRouterState[3]\n if (oldRefreshMarker === 'refresh') {\n // This segment was already reused from an even older route. Keep its\n // existing URL and refresh marker.\n reusedRouterState = oldRouterState\n } else {\n // This segment was not previously reused, and it's not on the new route.\n // So it must have been delivered in the old route.\n reusedRouterState = patchRouterStateWithNewChildren(\n oldRouterState,\n oldRouterState[1]\n )\n reusedRouterState[2] = createHrefFromUrl(oldUrl)\n reusedRouterState[3] = 'refresh'\n }\n\n return reusedRouterState\n}\n\nfunction reuseDynamicCacheNode(\n dropPrefetchRsc: boolean,\n existingCacheNode: CacheNode,\n parallelRoutes: Map\n): CacheNode {\n // Clone an existing CacheNode's data, with (possibly) new children.\n const cacheNode: CacheNode = {\n rsc: existingCacheNode.rsc,\n prefetchRsc: dropPrefetchRsc ? null : existingCacheNode.prefetchRsc,\n head: existingCacheNode.head,\n prefetchHead: dropPrefetchRsc ? null : existingCacheNode.prefetchHead,\n loading: existingCacheNode.loading,\n\n parallelRoutes,\n\n // Don't update the navigatedAt timestamp, since we're reusing\n // existing data.\n navigatedAt: existingCacheNode.navigatedAt,\n }\n return cacheNode\n}\n\nfunction readCacheNodeFromSeedData(\n seedRsc: React.ReactNode,\n seedLoading: LoadingModuleData | Promise,\n isSeedRscPartial: boolean,\n seedHead: HeadData | null,\n isSeedHeadPartial: boolean,\n isPageSegment: boolean,\n parallelRoutes: Map,\n navigatedAt: number\n): CacheNode {\n // TODO: Currently this is threaded through the navigation logic using the\n // CacheNodeSeedData type, but in the future this will read directly from\n // the Segment Cache. See readRenderSnapshotFromCache.\n\n let rsc: React.ReactNode\n let prefetchRsc: React.ReactNode\n if (isSeedRscPartial) {\n // The prefetched data contains dynamic holes. Create a pending promise that\n // will be fulfilled when the dynamic data is received from the server.\n prefetchRsc = seedRsc\n rsc = createDeferredRsc()\n } else {\n // The prefetched data is complete. Use it directly.\n prefetchRsc = null\n rsc = seedRsc\n }\n\n // If this is a page segment, also read the head.\n let prefetchHead: HeadData | null\n let head: HeadData | null\n if (isPageSegment) {\n if (isSeedHeadPartial) {\n prefetchHead = seedHead\n head = createDeferredRsc()\n } else {\n prefetchHead = null\n head = seedHead\n }\n } else {\n prefetchHead = null\n head = null\n }\n\n const cacheNode: CacheNode = {\n rsc,\n prefetchRsc,\n head,\n prefetchHead,\n // TODO: Technically, a loading boundary could contain dynamic data. We\n // should have separate `loading` and `prefetchLoading` fields to handle\n // this, like we do for the segment data and head.\n loading: seedLoading,\n parallelRoutes,\n navigatedAt,\n }\n\n return cacheNode\n}\n\nfunction spawnNewCacheNode(\n parallelRoutes: Map,\n isLeafSegment: boolean,\n navigatedAt: number,\n freshness: FreshnessPolicy\n): CacheNode {\n // We should never spawn network requests during hydration. We must treat the\n // initial payload as authoritative, because the initial page load is used\n // as a last-ditch mechanism for recovering the app.\n //\n // This is also an important safety check because if this leaks into the\n // server rendering path (which theoretically it never should because\n // the server payload should be consistent), the server would hang because\n // these promises would never resolve.\n //\n // TODO: There is an existing case where the global \"not found\" boundary\n // triggers this path. But it does render correctly despite that. That's an\n // unusual render path so it's not surprising, but we should look into\n // modeling it in a more consistent way. See also the /_notFound special\n // case in updateCacheNodeOnNavigation.\n const isHydration = freshness === FreshnessPolicy.Hydration\n\n const cacheNode: CacheNode = {\n rsc: !isHydration ? createDeferredRsc() : null,\n prefetchRsc: null,\n head: !isHydration && isLeafSegment ? createDeferredRsc() : null,\n prefetchHead: null,\n loading: !isHydration ? createDeferredRsc() : null,\n parallelRoutes,\n navigatedAt,\n }\n return cacheNode\n}\n\n// Represents whether the previuos navigation resulted in a route tree mismatch.\n// A mismatch results in a refresh of the page. If there are two successive\n// mismatches, we will fall back to an MPA navigation, to prevent a retry loop.\nlet previousNavigationDidMismatch = false\n\n// Writes a dynamic server response into the tree created by\n// updateCacheNodeOnNavigation. All pending promises that were spawned by the\n// navigation will be resolved, either with dynamic data from the server, or\n// `null` to indicate that the data is missing.\n//\n// A `null` value will trigger a lazy fetch during render, which will then patch\n// up the tree using the same mechanism as the non-PPR implementation\n// (serverPatchReducer).\n//\n// Usually, the server will respond with exactly the subset of data that we're\n// waiting for — everything below the nearest shared layout. But technically,\n// the server can return anything it wants.\n//\n// This does _not_ create a new tree; it modifies the existing one in place.\n// Which means it must follow the Suspense rules of cache safety.\nexport function spawnDynamicRequests(\n task: NavigationTask,\n primaryUrl: URL,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n accumulation: NavigationRequestAccumulation\n): void {\n const dynamicRequestTree = task.dynamicRequestTree\n if (dynamicRequestTree === null) {\n // This navigation was fully cached. There are no dynamic requests to spawn.\n previousNavigationDidMismatch = false\n return\n }\n\n // This is intentionally not an async function to discourage the caller from\n // awaiting the result. Any subsequent async operations spawned by this\n // function should result in a separate navigation task, rather than\n // block the original one.\n //\n // In this function we spawn (but do not await) all the network requests that\n // block the navigation, and collect the promises. The next function,\n // `finishNavigationTask`, can await the promises in any order without\n // accidentally introducing a network waterfall.\n const primaryRequestPromise = fetchMissingDynamicData(\n task,\n dynamicRequestTree,\n primaryUrl,\n nextUrl,\n freshnessPolicy\n )\n\n const separateRefreshUrls = accumulation.separateRefreshUrls\n let refreshRequestPromises: Array<\n ReturnType\n > | null = null\n if (separateRefreshUrls !== null) {\n // There are multiple URLs that we need to request the data from. This\n // happens when a \"default\" parallel route slot is present in the tree, and\n // its data cannot be fetched from the current route. We need to split the\n // combined dynamic request tree into separate requests per URL.\n\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n\n // Construct a request tree for each additional refresh URL. This will\n // prune away everything except the parts of the tree that match the\n // given refresh URL.\n refreshRequestPromises = []\n const canonicalUrl = createHrefFromUrl(primaryUrl)\n for (const refreshUrl of separateRefreshUrls) {\n if (refreshUrl === canonicalUrl) {\n // We already initiated a request for the this URL, above. Skip it.\n // TODO: This only happens because the main URL is not tracked as\n // part of the separateRefreshURLs set. There's probably a better way\n // to structure this so this case doesn't happen.\n continue\n }\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n // const scopedDynamicRequestTree = splitTaskByURL(task, refreshUrl)\n const scopedDynamicRequestTree = dynamicRequestTree\n if (scopedDynamicRequestTree !== null) {\n refreshRequestPromises.push(\n fetchMissingDynamicData(\n task,\n scopedDynamicRequestTree,\n new URL(refreshUrl, location.origin),\n // TODO: Just noticed that this should actually the Next-Url at the\n // time the refresh URL was set, not the current Next-Url. Need to\n // start tracking this alongside the refresh URL. In the meantime,\n // if a refresh fails due to a mismatch, it will trigger a\n // hard refresh.\n nextUrl,\n freshnessPolicy\n )\n )\n }\n }\n }\n\n // Further async operations are moved into this separate function to\n // discourage sequential network requests.\n const voidPromise = finishNavigationTask(\n task,\n nextUrl,\n primaryRequestPromise,\n refreshRequestPromises\n )\n // `finishNavigationTask` is responsible for error handling, so we can attach\n // noop callbacks to this promise.\n voidPromise.then(noop, noop)\n}\n\nasync function finishNavigationTask(\n task: NavigationTask,\n nextUrl: string | null,\n primaryRequestPromise: ReturnType,\n refreshRequestPromises: Array<\n ReturnType\n > | null\n): Promise {\n // Wait for all the requests to finish, or for the first one to fail.\n let exitStatus = await waitForRequestsToFinish(\n primaryRequestPromise,\n refreshRequestPromises\n )\n\n // Once the all the requests have finished, check the tree for any remaining\n // pending tasks. If anything is still pending, it means the server response\n // does not match the client, and we must refresh to get back to a consistent\n // state. We can skip this step if we already detected a mismatch during the\n // first phase; it doesn't matter in that case because we're going to refresh\n // the whole tree regardless.\n if (exitStatus === NavigationTaskExitStatus.Done) {\n exitStatus = abortRemainingPendingTasks(task, null, null)\n }\n\n switch (exitStatus) {\n case NavigationTaskExitStatus.Done: {\n // The task has completely finished. There's no missing data. Exit.\n previousNavigationDidMismatch = false\n return\n }\n case NavigationTaskExitStatus.SoftRetry: {\n // Some data failed to finish loading. Trigger a soft retry.\n // TODO: As an extra precaution against soft retry loops, consider\n // tracking whether a navigation was itself triggered by a retry. If two\n // happen in a row, fall back to a hard retry.\n const isHardRetry = false\n const primaryRequestResult = await primaryRequestPromise\n dispatchRetryDueToTreeMismatch(\n isHardRetry,\n primaryRequestResult.url,\n nextUrl,\n primaryRequestResult.seed,\n task.route\n )\n return\n }\n case NavigationTaskExitStatus.HardRetry: {\n // Some data failed to finish loading in a non-recoverable way, such as a\n // network error. Trigger an MPA navigation.\n //\n // Hard navigating/refreshing is how we prevent an infinite retry loop\n // caused by a network error — when the network fails, we fall back to the\n // browser behavior for offline navigations. In the future, Next.js may\n // introduce its own custom handling of offline navigations, but that\n // doesn't exist yet.\n const isHardRetry = true\n const primaryRequestResult = await primaryRequestPromise\n dispatchRetryDueToTreeMismatch(\n isHardRetry,\n primaryRequestResult.url,\n nextUrl,\n primaryRequestResult.seed,\n task.route\n )\n return\n }\n default: {\n return exitStatus satisfies never\n }\n }\n}\n\nfunction waitForRequestsToFinish(\n primaryRequestPromise: ReturnType,\n refreshRequestPromises: Array<\n ReturnType\n > | null\n) {\n // Custom async combinator logic. This could be replaced by Promise.any but\n // we don't assume that's available.\n //\n // Each promise resolves once the server responsds and the data is written\n // into the CacheNode tree. Resolve the combined promise once all the\n // requests finish.\n //\n // Or, resolve as soon as one of the requests fails, without waiting for the\n // others to finish.\n return new Promise((resolve) => {\n const onFulfill = (result: { exitStatus: NavigationTaskExitStatus }) => {\n if (result.exitStatus === NavigationTaskExitStatus.Done) {\n remainingCount--\n if (remainingCount === 0) {\n // All the requests finished successfully.\n resolve(NavigationTaskExitStatus.Done)\n }\n } else {\n // One of the requests failed. Exit with a failing status.\n // NOTE: It's possible for one of the requests to fail with SoftRetry\n // and a later one to fail with HardRetry. In this case, we choose to\n // retry immediately, rather than delay the retry until all the requests\n // finish. If it fails again, we will hard retry on the next\n // attempt, anyway.\n resolve(result.exitStatus)\n }\n }\n // onReject shouldn't ever be called because fetchMissingDynamicData's\n // entire body is wrapped in a try/catch. This is just defensive.\n const onReject = () => resolve(NavigationTaskExitStatus.HardRetry)\n\n // Attach the listeners to the promises.\n let remainingCount = 1\n primaryRequestPromise.then(onFulfill, onReject)\n if (refreshRequestPromises !== null) {\n remainingCount += refreshRequestPromises.length\n refreshRequestPromises.forEach((refreshRequestPromise) =>\n refreshRequestPromise.then(onFulfill, onReject)\n )\n }\n })\n}\n\nfunction dispatchRetryDueToTreeMismatch(\n isHardRetry: boolean,\n retryUrl: URL,\n retryNextUrl: string | null,\n seed: NavigationSeed | null,\n baseTree: FlightRouterState\n) {\n // If this is the second time in a row that a navigation resulted in a\n // mismatch, fall back to a hard (MPA) refresh.\n isHardRetry = isHardRetry || previousNavigationDidMismatch\n previousNavigationDidMismatch = true\n const retryAction: ServerPatchAction = {\n type: ACTION_SERVER_PATCH,\n previousTree: baseTree,\n url: retryUrl,\n nextUrl: retryNextUrl,\n seed,\n mpa: isHardRetry,\n }\n dispatchAppRouterAction(retryAction)\n}\n\nasync function fetchMissingDynamicData(\n task: NavigationTask,\n dynamicRequestTree: FlightRouterState,\n url: URL,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy\n): Promise<{\n exitStatus: NavigationTaskExitStatus\n url: URL\n seed: NavigationSeed | null\n}> {\n try {\n const result = await fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n isHmrRefresh: freshnessPolicy === FreshnessPolicy.HMRRefresh,\n })\n if (typeof result === 'string') {\n // fetchServerResponse will return an href to indicate that the SPA\n // navigation failed. For example, if the server triggered a hard\n // redirect, or the fetch request errored. Initiate an MPA navigation\n // to the given href.\n return {\n exitStatus: NavigationTaskExitStatus.HardRetry,\n url: new URL(result, location.origin),\n seed: null,\n }\n }\n const seed = convertServerPatchToFullTree(\n task.route,\n result.flightData,\n result.renderedSearch\n )\n const didReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(\n task,\n seed.tree,\n seed.data,\n seed.head,\n result.debugInfo\n )\n return {\n exitStatus: didReceiveUnknownParallelRoute\n ? NavigationTaskExitStatus.SoftRetry\n : NavigationTaskExitStatus.Done,\n url: new URL(result.canonicalUrl, location.origin),\n seed,\n }\n } catch {\n // This shouldn't happen because fetchServerResponse's entire body is\n // wrapped in a try/catch. If it does, though, it implies the server failed\n // to respond with any tree at all. So we must fall back to a hard retry.\n return {\n exitStatus: NavigationTaskExitStatus.HardRetry,\n url: url,\n seed: null,\n }\n }\n}\n\nfunction writeDynamicDataIntoNavigationTask(\n task: NavigationTask,\n serverRouterState: FlightRouterState,\n dynamicData: CacheNodeSeedData | null,\n dynamicHead: HeadData,\n debugInfo: Array | null\n): boolean {\n if (task.status === NavigationTaskStatus.Pending && dynamicData !== null) {\n task.status = NavigationTaskStatus.Fulfilled\n finishPendingCacheNode(task.node, dynamicData, dynamicHead, debugInfo)\n }\n\n const taskChildren = task.children\n const serverChildren = serverRouterState[1]\n const dynamicDataChildren = dynamicData !== null ? dynamicData[1] : null\n\n // Detect whether the server sends a parallel route slot that the client\n // doesn't know about.\n let didReceiveUnknownParallelRoute = false\n\n if (taskChildren !== null) {\n for (const parallelRouteKey in serverChildren) {\n const serverRouterStateChild: FlightRouterState =\n serverChildren[parallelRouteKey]\n const dynamicDataChild: CacheNodeSeedData | null | void =\n dynamicDataChildren !== null\n ? dynamicDataChildren[parallelRouteKey]\n : null\n\n const taskChild = taskChildren.get(parallelRouteKey)\n if (taskChild === undefined) {\n // The server sent a child segment that the client doesn't know about.\n //\n // When we receive an unknown parallel route, we must consider it a\n // mismatch. This is unlike the case where the segment itself\n // mismatches, because multiple routes can be active simultaneously.\n // But a given layout should never have a mismatching set of\n // child slots.\n //\n // Theoretically, this should only happen in development during an HMR\n // refresh, because the set of parallel routes for a layout does not\n // change over the lifetime of a build/deployment. In production, we\n // should have already mismatched on either the build id or the segment\n // path. But as an extra precaution, we validate in prod, too.\n didReceiveUnknownParallelRoute = true\n } else {\n const taskSegment = taskChild.route[0]\n if (\n matchSegment(serverRouterStateChild[0], taskSegment) &&\n dynamicDataChild !== null &&\n dynamicDataChild !== undefined\n ) {\n // Found a match for this task. Keep traversing down the task tree.\n const childDidReceiveUnknownParallelRoute =\n writeDynamicDataIntoNavigationTask(\n taskChild,\n serverRouterStateChild,\n dynamicDataChild,\n dynamicHead,\n debugInfo\n )\n if (childDidReceiveUnknownParallelRoute) {\n didReceiveUnknownParallelRoute = true\n }\n }\n }\n }\n }\n\n return didReceiveUnknownParallelRoute\n}\n\nfunction finishPendingCacheNode(\n cacheNode: CacheNode,\n dynamicData: CacheNodeSeedData,\n dynamicHead: HeadData,\n debugInfo: Array | null\n): void {\n // Writes a dynamic response into an existing Cache Node tree. This does _not_\n // create a new tree, it updates the existing tree in-place. So it must follow\n // the Suspense rules of cache safety — it can resolve pending promises, but\n // it cannot overwrite existing data. It can add segments to the tree (because\n // a missing segment will cause the layout router to suspend).\n // but it cannot delete them.\n //\n // We must resolve every promise in the tree, or else it will suspend\n // indefinitely. If we did not receive data for a segment, we will resolve its\n // data promise to `null` to trigger a lazy fetch during render.\n\n // Use the dynamic data from the server to fulfill the deferred RSC promise\n // on the Cache Node.\n const rsc = cacheNode.rsc\n const dynamicSegmentData = dynamicData[0]\n\n if (dynamicSegmentData === null) {\n // This is an empty CacheNode; this particular server request did not\n // render this segment. There may be a separate pending request that will,\n // though, so we won't abort the task until all pending requests finish.\n return\n }\n\n if (rsc === null) {\n // This is a lazy cache node. We can overwrite it. This is only safe\n // because we know that the LayoutRouter suspends if `rsc` is `null`.\n cacheNode.rsc = dynamicSegmentData\n } else if (isDeferredRsc(rsc)) {\n // This is a deferred RSC promise. We can fulfill it with the data we just\n // received from the server. If it was already resolved by a different\n // navigation, then this does nothing because we can't overwrite data.\n rsc.resolve(dynamicSegmentData, debugInfo)\n } else {\n // This is not a deferred RSC promise, nor is it empty, so it must have\n // been populated by a different navigation. We must not overwrite it.\n }\n\n // If we navigated without a prefetch, then `loading` will be a deferred promise too.\n // Fulfill it using the dynamic response so that we can display the loading boundary.\n const loading = cacheNode.loading\n if (isDeferredRsc(loading)) {\n const dynamicLoading = dynamicData[2]\n loading.resolve(dynamicLoading, debugInfo)\n }\n\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved with the dynamic head from\n // the server.\n const head = cacheNode.head\n if (isDeferredRsc(head)) {\n head.resolve(dynamicHead, debugInfo)\n }\n}\n\nfunction abortRemainingPendingTasks(\n task: NavigationTask,\n error: any,\n debugInfo: Array | null\n): NavigationTaskExitStatus {\n let exitStatus\n if (task.status === NavigationTaskStatus.Pending) {\n // The data for this segment is still missing.\n task.status = NavigationTaskStatus.Rejected\n abortPendingCacheNode(task.node, error, debugInfo)\n\n // If the server failed to fulfill the data for this segment, it implies\n // that the route tree received from the server mismatched the tree that\n // was previously prefetched.\n //\n // In an app with fully static routes and no proxy-driven redirects or\n // rewrites, this should never happen, because the route for a URL would\n // always be the same across multiple requests. So, this implies that some\n // runtime routing condition changed, likely in a proxy, without being\n // pushed to the client.\n //\n // When this happens, we treat this the same as a refresh(). The entire\n // tree will be re-rendered from the root.\n if (task.refreshUrl === null) {\n // Trigger a \"soft\" refresh. Essentially the same as calling `refresh()`\n // in a Server Action.\n exitStatus = NavigationTaskExitStatus.SoftRetry\n } else {\n // The mismatch was discovered inside an inactive parallel route. This\n // implies the inactive parallel route is no longer reachable at the URL\n // that originally rendered it. Fall back to an MPA refresh.\n // TODO: An alternative could be to trigger a soft refresh but to _not_\n // re-use the inactive parallel routes this time. Similar to what would\n // happen if were to do a hard refrehs, but without the HTML page.\n exitStatus = NavigationTaskExitStatus.HardRetry\n }\n } else {\n // This segment finished. (An error here is treated as Done because they are\n // surfaced to the application during render.)\n exitStatus = NavigationTaskExitStatus.Done\n }\n\n const taskChildren = task.children\n if (taskChildren !== null) {\n for (const [, taskChild] of taskChildren) {\n const childExitStatus = abortRemainingPendingTasks(\n taskChild,\n error,\n debugInfo\n )\n // Propagate the exit status up the tree. The statuses are ordered by\n // their precedence.\n if (childExitStatus > exitStatus) {\n exitStatus = childExitStatus\n }\n }\n }\n\n return exitStatus\n}\n\nfunction abortPendingCacheNode(\n cacheNode: CacheNode,\n error: any,\n debugInfo: Array | null\n): void {\n const rsc = cacheNode.rsc\n if (isDeferredRsc(rsc)) {\n if (error === null) {\n // This will trigger a lazy fetch during render.\n rsc.resolve(null, debugInfo)\n } else {\n // This will trigger an error during rendering.\n rsc.reject(error, debugInfo)\n }\n }\n\n const loading = cacheNode.loading\n if (isDeferredRsc(loading)) {\n loading.resolve(null, debugInfo)\n }\n\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved. If an error was provided, we\n // will not resolve it with an error, since this is rendered at the root of\n // the app. We want the segment to error, not the entire app.\n const head = cacheNode.head\n if (isDeferredRsc(head)) {\n head.resolve(null, debugInfo)\n }\n}\n\nconst DEFERRED = Symbol()\n\ntype PendingDeferredRsc = Promise & {\n status: 'pending'\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype FulfilledDeferredRsc = Promise & {\n status: 'fulfilled'\n value: T\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype RejectedDeferredRsc = Promise & {\n status: 'rejected'\n reason: any\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype DeferredRsc =\n | PendingDeferredRsc\n | FulfilledDeferredRsc\n | RejectedDeferredRsc\n\n// This type exists to distinguish a DeferredRsc from a Flight promise. It's a\n// compromise to avoid adding an extra field on every Cache Node, which would be\n// awkward because the pre-PPR parts of codebase would need to account for it,\n// too. We can remove it once type Cache Node type is more settled.\nexport function isDeferredRsc(value: any): value is DeferredRsc {\n return value && typeof value === 'object' && value.tag === DEFERRED\n}\n\nfunction createDeferredRsc<\n T extends React.ReactNode = React.ReactNode,\n>(): PendingDeferredRsc {\n // Create an unresolved promise that represents data derived from a Flight\n // response. The promise will be resolved later as soon as we start receiving\n // data from the server, i.e. as soon as the Flight client decodes and returns\n // the top-level response object.\n\n // The `_debugInfo` field contains profiling information. Promises that are\n // created by Flight already have this info added by React; for any derived\n // promise created by the router, we need to transfer the Flight debug info\n // onto the derived promise.\n //\n // The debug info represents the latency between the start of the navigation\n // and the start of rendering. (It does not represent the time it takes for\n // whole stream to finish.)\n const debugInfo: Array = []\n\n let resolve: any\n let reject: any\n const pendingRsc = new Promise((res, rej) => {\n resolve = res\n reject = rej\n }) as PendingDeferredRsc\n pendingRsc.status = 'pending'\n pendingRsc.resolve = (value: T, responseDebugInfo: Array | null) => {\n if (pendingRsc.status === 'pending') {\n const fulfilledRsc: FulfilledDeferredRsc = pendingRsc as any\n fulfilledRsc.status = 'fulfilled'\n fulfilledRsc.value = value\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo)\n }\n resolve(value)\n }\n }\n pendingRsc.reject = (error: any, responseDebugInfo: Array | null) => {\n if (pendingRsc.status === 'pending') {\n const rejectedRsc: RejectedDeferredRsc = pendingRsc as any\n rejectedRsc.status = 'rejected'\n rejectedRsc.reason = error\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo)\n }\n reject(error)\n }\n }\n pendingRsc.tag = DEFERRED\n pendingRsc._debugInfo = debugInfo\n\n return pendingRsc\n}\n"],"names":["DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","matchSegment","createHrefFromUrl","createRouterCacheKey","fetchServerResponse","dispatchAppRouterAction","ACTION_SERVER_PATCH","isNavigatingToNewRootLayout","DYNAMIC_STALETIME_MS","convertServerPatchToFullTree","FreshnessPolicy","noop","createInitialCacheNodeForHydration","navigatedAt","initialTree","seedData","seedHead","accumulation","scrollableSegments","separateRefreshUrls","task","createCacheNodeOnNavigation","undefined","node","startPPRNavigation","oldUrl","oldCacheNode","oldRouterState","newRouterState","freshness","prefetchData","prefetchHead","isPrefetchHeadPartial","isSamePageNavigation","didFindRootLayout","parentNeedsDynamicRequest","parentRefreshUrl","updateCacheNodeOnNavigation","parentSegmentPath","parentParallelRouteKey","oldSegment","newSegment","segmentPath","concat","newRouterStateChildren","oldRouterStateChildren","seedDataChildren","prefetchDataChildren","isRootLayout","childDidFindRootLayout","oldParallelRoutes","parallelRoutes","shouldDropSiblingCaches","shouldRefreshDynamicData","newParallelRoutes","Map","isLeafSegment","Object","keys","length","newCacheNode","needsDynamicRequest","dropPrefetchRsc","reuseDynamicCacheNode","seedRsc","seedLoading","isSeedRscPartial","isSeedHeadPartial","readCacheNodeFromSeedData","prefetchRsc","prefetchLoading","isPrefetchRSCPartial","spawnNewCacheNode","href","refreshUrl","accumulateRefreshUrl","patchedRouterStateChildren","taskChildren","childNeedsDynamicRequest","dynamicRequestTreeChildren","parallelRouteKey","newRouterStateChild","oldRouterStateChild","oldSegmentMapChild","get","seedDataChild","prefetchDataChild","newSegmentChild","seedHeadChild","prefetchHeadChild","isPrefetchHeadPartialChild","reuseActiveSegmentInDefaultSlot","newSegmentKeyChild","oldCacheNodeChild","taskChild","set","newCacheNodeChild","newSegmentMapChild","taskChildRoute","route","dynamicRequestTreeChild","dynamicRequestTree","status","patchRouterStateWithNewChildren","createDynamicRequestTree","children","oldRsc","rsc","oldRscDidResolve","isDeferredRsc","push","baseRouterState","newChildren","clone","Set","add","reusedRouterState","oldRefreshMarker","existingCacheNode","cacheNode","head","loading","isPageSegment","createDeferredRsc","isHydration","previousNavigationDidMismatch","spawnDynamicRequests","primaryUrl","nextUrl","freshnessPolicy","primaryRequestPromise","fetchMissingDynamicData","refreshRequestPromises","canonicalUrl","scopedDynamicRequestTree","URL","location","origin","voidPromise","finishNavigationTask","then","exitStatus","waitForRequestsToFinish","abortRemainingPendingTasks","isHardRetry","primaryRequestResult","dispatchRetryDueToTreeMismatch","url","seed","Promise","resolve","onFulfill","result","remainingCount","onReject","forEach","refreshRequestPromise","retryUrl","retryNextUrl","baseTree","retryAction","type","previousTree","mpa","flightRouterState","isHmrRefresh","flightData","renderedSearch","didReceiveUnknownParallelRoute","writeDynamicDataIntoNavigationTask","tree","data","debugInfo","serverRouterState","dynamicData","dynamicHead","finishPendingCacheNode","serverChildren","dynamicDataChildren","serverRouterStateChild","dynamicDataChild","taskSegment","childDidReceiveUnknownParallelRoute","dynamicSegmentData","dynamicLoading","error","abortPendingCacheNode","childExitStatus","reject","DEFERRED","Symbol","value","tag","pendingRsc","res","rej","responseDebugInfo","fulfilledRsc","apply","rejectedRsc","reason","_debugInfo"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9001, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation-devtools.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport type { Params } from '../../server/request/params'\nimport {\n createDevToolsInstrumentedPromise,\n ReadonlyURLSearchParams,\n type InstrumentedPromise,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport {\n computeSelectedLayoutSegment,\n getSelectedLayoutSegmentPath,\n} from '../../shared/lib/segment'\n\n/**\n * Promises are cached by tree to ensure stability across suspense retries.\n */\ntype LayoutSegmentPromisesCache = {\n selectedLayoutSegmentPromises: Map>\n selectedLayoutSegmentsPromises: Map>\n}\n\nconst layoutSegmentPromisesCache = new WeakMap<\n FlightRouterState,\n LayoutSegmentPromisesCache\n>()\n\n/**\n * Creates instrumented promises for layout segment hooks at a given tree level.\n * This is dev-only code for React Suspense DevTools instrumentation.\n */\nfunction createLayoutSegmentPromises(\n tree: FlightRouterState\n): LayoutSegmentPromisesCache | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n // Check if we already have cached promises for this tree\n const cached = layoutSegmentPromisesCache.get(tree)\n if (cached) {\n return cached\n }\n\n // Create new promises and cache them\n const segmentPromises = new Map>()\n const segmentsPromises = new Map>()\n\n const parallelRoutes = tree[1]\n for (const parallelRouteKey of Object.keys(parallelRoutes)) {\n const segments = getSelectedLayoutSegmentPath(tree, parallelRouteKey)\n\n // Use the shared logic to compute the segment value\n const segment = computeSelectedLayoutSegment(segments, parallelRouteKey)\n\n segmentPromises.set(\n parallelRouteKey,\n createDevToolsInstrumentedPromise('useSelectedLayoutSegment', segment)\n )\n segmentsPromises.set(\n parallelRouteKey,\n createDevToolsInstrumentedPromise('useSelectedLayoutSegments', segments)\n )\n }\n\n const result: LayoutSegmentPromisesCache = {\n selectedLayoutSegmentPromises: segmentPromises,\n selectedLayoutSegmentsPromises: segmentsPromises,\n }\n\n // Cache the result for future renders\n layoutSegmentPromisesCache.set(tree, result)\n\n return result\n}\n\nconst rootNavigationPromisesCache = new WeakMap<\n FlightRouterState,\n Map\n>()\n\n/**\n * Creates instrumented navigation promises for the root app-router.\n */\nexport function createRootNavigationPromises(\n tree: FlightRouterState,\n pathname: string,\n searchParams: URLSearchParams,\n pathParams: Params\n): NavigationPromises | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n // Create stable cache keys from the values\n const searchParamsString = searchParams.toString()\n const pathParamsString = JSON.stringify(pathParams)\n const cacheKey = `${pathname}:${searchParamsString}:${pathParamsString}`\n\n // Get or create the cache for this tree\n let treeCache = rootNavigationPromisesCache.get(tree)\n if (!treeCache) {\n treeCache = new Map()\n rootNavigationPromisesCache.set(tree, treeCache)\n }\n\n // Check if we have cached promises for this combination\n const cached = treeCache.get(cacheKey)\n if (cached) {\n return cached\n }\n\n const readonlySearchParams = new ReadonlyURLSearchParams(searchParams)\n\n const layoutSegmentPromises = createLayoutSegmentPromises(tree)\n\n const promises: NavigationPromises = {\n pathname: createDevToolsInstrumentedPromise('usePathname', pathname),\n searchParams: createDevToolsInstrumentedPromise(\n 'useSearchParams',\n readonlySearchParams\n ),\n params: createDevToolsInstrumentedPromise('useParams', pathParams),\n ...layoutSegmentPromises,\n }\n\n treeCache.set(cacheKey, promises)\n\n return promises\n}\n\nconst nestedLayoutPromisesCache = new WeakMap<\n FlightRouterState,\n Map\n>()\n\n/**\n * Creates merged navigation promises for nested layouts.\n * Merges parent promises with layout-specific segment promises.\n */\nexport function createNestedLayoutNavigationPromises(\n tree: FlightRouterState,\n parentNavPromises: NavigationPromises | null\n): NavigationPromises | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n const parallelRoutes = tree[1]\n const parallelRouteKeys = Object.keys(parallelRoutes)\n\n // Only create promises if there are parallel routes at this level\n if (parallelRouteKeys.length === 0) {\n return null\n }\n\n // Get or create the cache for this tree\n let treeCache = nestedLayoutPromisesCache.get(tree)\n if (!treeCache) {\n treeCache = new Map()\n nestedLayoutPromisesCache.set(tree, treeCache)\n }\n\n // Check if we have cached promises for this parent combination\n const cached = treeCache.get(parentNavPromises)\n if (cached) {\n return cached\n }\n\n // Create merged promises\n const layoutSegmentPromises = createLayoutSegmentPromises(tree)\n const promises: NavigationPromises = {\n ...parentNavPromises!,\n ...layoutSegmentPromises,\n }\n\n treeCache.set(parentNavPromises, promises)\n\n return promises\n}\n"],"names":["createDevToolsInstrumentedPromise","ReadonlyURLSearchParams","computeSelectedLayoutSegment","getSelectedLayoutSegmentPath","layoutSegmentPromisesCache","WeakMap","createLayoutSegmentPromises","tree","process","env","NODE_ENV","cached","get","segmentPromises","Map","segmentsPromises","parallelRoutes","parallelRouteKey","Object","keys","segments","segment","set","result","selectedLayoutSegmentPromises","selectedLayoutSegmentsPromises","rootNavigationPromisesCache","createRootNavigationPromises","pathname","searchParams","pathParams","searchParamsString","toString","pathParamsString","JSON","stringify","cacheKey","treeCache","readonlySearchParams","layoutSegmentPromises","promises","params","nestedLayoutPromisesCache","createNestedLayoutNavigationPromises","parentNavPromises","parallelRouteKeys","length"],"mappings":";;;;;;AAEA,SACEA,iCAAiC,EACjCC,uBAAuB,QAGlB,uDAAsD;AAC7D,SACEC,4BAA4B,EAC5BC,4BAA4B,QACvB,2BAA0B;;;AAUjC,MAAMC,6BAA6B,IAAIC;AAKvC;;;CAGC,GACD,SAASC,4BACPC,IAAuB;IAEvB,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,cAAc;;IAI3C,yDAAyD;IACzD,MAAMC,SAASP,2BAA2BQ,GAAG,CAACL;IAC9C,IAAII,QAAQ;QACV,OAAOA;IACT;IAEA,qCAAqC;IACrC,MAAME,kBAAkB,IAAIC;IAC5B,MAAMC,mBAAmB,IAAID;IAE7B,MAAME,iBAAiBT,IAAI,CAAC,EAAE;IAC9B,KAAK,MAAMU,oBAAoBC,OAAOC,IAAI,CAACH,gBAAiB;QAC1D,MAAMI,eAAWjB,+LAAAA,EAA6BI,MAAMU;QAEpD,oDAAoD;QACpD,MAAMI,cAAUnB,+LAAAA,EAA6BkB,UAAUH;QAEvDJ,gBAAgBS,GAAG,CACjBL,sBACAjB,oQAAAA,EAAkC,4BAA4BqB;QAEhEN,iBAAiBO,GAAG,CAClBL,sBACAjB,oQAAAA,EAAkC,6BAA6BoB;IAEnE;IAEA,MAAMG,SAAqC;QACzCC,+BAA+BX;QAC/BY,gCAAgCV;IAClC;IAEA,sCAAsC;IACtCX,2BAA2BkB,GAAG,CAACf,MAAMgB;IAErC,OAAOA;AACT;AAEA,MAAMG,8BAA8B,IAAIrB;AAQjC,SAASsB,6BACdpB,IAAuB,EACvBqB,QAAgB,EAChBC,YAA6B,EAC7BC,UAAkB;IAElB,IAAItB,QAAQC,GAAG,CAACC,QAAQ,KAAK,cAAc;;IAI3C,2CAA2C;IAC3C,MAAMqB,qBAAqBF,aAAaG,QAAQ;IAChD,MAAMC,mBAAmBC,KAAKC,SAAS,CAACL;IACxC,MAAMM,WAAW,GAAGR,SAAS,CAAC,EAAEG,mBAAmB,CAAC,EAAEE,kBAAkB;IAExE,wCAAwC;IACxC,IAAII,YAAYX,4BAA4Bd,GAAG,CAACL;IAChD,IAAI,CAAC8B,WAAW;QACdA,YAAY,IAAIvB;QAChBY,4BAA4BJ,GAAG,CAACf,MAAM8B;IACxC;IAEA,wDAAwD;IACxD,MAAM1B,SAAS0B,UAAUzB,GAAG,CAACwB;IAC7B,IAAIzB,QAAQ;QACV,OAAOA;IACT;IAEA,MAAM2B,uBAAuB,IAAIrC,0PAAAA,CAAwB4B;IAEzD,MAAMU,wBAAwBjC,4BAA4BC;IAE1D,MAAMiC,WAA+B;QACnCZ,cAAU5B,oQAAAA,EAAkC,eAAe4B;QAC3DC,kBAAc7B,oQAAAA,EACZ,mBACAsC;QAEFG,YAAQzC,oQAAAA,EAAkC,aAAa8B;QACvD,GAAGS,qBAAqB;IAC1B;IAEAF,UAAUf,GAAG,CAACc,UAAUI;IAExB,OAAOA;AACT;AAEA,MAAME,4BAA4B,IAAIrC;AAS/B,SAASsC,qCACdpC,IAAuB,EACvBqC,iBAA4C;IAE5C,IAAIpC,QAAQC,GAAG,CAACC,QAAQ,KAAK,cAAc;;IAI3C,MAAMM,iBAAiBT,IAAI,CAAC,EAAE;IAC9B,MAAMsC,oBAAoB3B,OAAOC,IAAI,CAACH;IAEtC,kEAAkE;IAClE,IAAI6B,kBAAkBC,MAAM,KAAK,GAAG;QAClC,OAAO;IACT;IAEA,wCAAwC;IACxC,IAAIT,YAAYK,0BAA0B9B,GAAG,CAACL;IAC9C,IAAI,CAAC8B,WAAW;QACdA,YAAY,IAAIvB;QAChB4B,0BAA0BpB,GAAG,CAACf,MAAM8B;IACtC;IAEA,+DAA+D;IAC/D,MAAM1B,SAAS0B,UAAUzB,GAAG,CAACgC;IAC7B,IAAIjC,QAAQ;QACV,OAAOA;IACT;IAEA,yBAAyB;IACzB,MAAM4B,wBAAwBjC,4BAA4BC;IAC1D,MAAMiC,WAA+B;QACnC,GAAGI,iBAAiB;QACpB,GAAGL,qBAAqB;IAC1B;IAEAF,UAAUf,GAAG,CAACsB,mBAAmBJ;IAEjC,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 9106, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/segment-explorer-node.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n useState,\n createContext,\n useContext,\n use,\n useMemo,\n useCallback,\n} from 'react'\nimport { useLayoutEffect } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\nimport { notFound } from '../../../client/components/not-found'\n\nexport type SegmentBoundaryType =\n | 'not-found'\n | 'error'\n | 'loading'\n | 'global-error'\n\nexport const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE =\n 'NEXT_DEVTOOLS_SIMULATED_ERROR'\n\nexport type SegmentNodeState = {\n type: string\n pagePath: string\n boundaryType: string | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}\n\nfunction SegmentTrieNode({\n type,\n pagePath,\n}: {\n type: string\n pagePath: string\n}): React.ReactNode {\n const { boundaryType, setBoundaryType } = useSegmentState()\n const nodeState: SegmentNodeState = useMemo(() => {\n return {\n type,\n pagePath,\n boundaryType,\n setBoundaryType,\n }\n }, [type, pagePath, boundaryType, setBoundaryType])\n\n // Use `useLayoutEffect` to ensure the state is updated during suspense.\n // `useEffect` won't work as the state is preserved during suspense.\n useLayoutEffect(() => {\n dispatcher.segmentExplorerNodeAdd(nodeState)\n return () => {\n dispatcher.segmentExplorerNodeRemove(nodeState)\n }\n }, [nodeState])\n\n return null\n}\n\nfunction NotFoundSegmentNode(): React.ReactNode {\n notFound()\n}\n\nfunction ErrorSegmentNode(): React.ReactNode {\n throw new Error(SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE)\n}\n\nconst forever = new Promise(() => {})\nfunction LoadingSegmentNode(): React.ReactNode {\n use(forever)\n return null\n}\n\nexport function SegmentViewStateNode({ page }: { page: string }) {\n useLayoutEffect(() => {\n dispatcher.segmentExplorerUpdateRouteState(page)\n return () => {\n dispatcher.segmentExplorerUpdateRouteState('')\n }\n }, [page])\n return null\n}\n\nexport function SegmentBoundaryTriggerNode() {\n const { boundaryType } = useSegmentState()\n let segmentNode: React.ReactNode = null\n if (boundaryType === 'loading') {\n segmentNode = \n } else if (boundaryType === 'not-found') {\n segmentNode = \n } else if (boundaryType === 'error') {\n segmentNode = \n }\n return segmentNode\n}\n\nexport function SegmentViewNode({\n type,\n pagePath,\n children,\n}: {\n type: string\n pagePath: string\n children?: ReactNode\n}): React.ReactNode {\n const segmentNode = (\n \n )\n\n return (\n <>\n {segmentNode}\n {children}\n \n )\n}\n\nconst SegmentStateContext = createContext<{\n boundaryType: SegmentBoundaryType | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}>({\n boundaryType: null,\n setBoundaryType: () => {},\n})\n\nexport function SegmentStateProvider({ children }: { children: ReactNode }) {\n const [boundaryType, setBoundaryType] = useState(\n null\n )\n\n const [errorBoundaryKey, setErrorBoundaryKey] = useState(0)\n const reloadBoundary = useCallback(\n () => setErrorBoundaryKey((prev) => prev + 1),\n []\n )\n\n const setBoundaryTypeAndReload = useCallback(\n (type: SegmentBoundaryType | null) => {\n if (type === null) {\n reloadBoundary()\n }\n setBoundaryType(type)\n },\n [reloadBoundary]\n )\n\n return (\n \n {children}\n \n )\n}\n\nexport function useSegmentState() {\n return useContext(SegmentStateContext)\n}\n"],"names":["useState","createContext","useContext","use","useMemo","useCallback","useLayoutEffect","dispatcher","notFound","SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE","SegmentTrieNode","type","pagePath","boundaryType","setBoundaryType","useSegmentState","nodeState","segmentExplorerNodeAdd","segmentExplorerNodeRemove","NotFoundSegmentNode","ErrorSegmentNode","Error","forever","Promise","LoadingSegmentNode","SegmentViewStateNode","page","segmentExplorerUpdateRouteState","SegmentBoundaryTriggerNode","segmentNode","SegmentViewNode","children","SegmentStateContext","SegmentStateProvider","errorBoundaryKey","setErrorBoundaryKey","reloadBoundary","prev","setBoundaryTypeAndReload","Provider","value"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9239, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/layout-router.tsx"],"sourcesContent":["'use client'\n\nimport type { CacheNode } from '../../shared/lib/app-router-types'\nimport type { LoadingModuleData } from '../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n} from '../../shared/lib/app-router-types'\nimport type { ErrorComponent } from './error-boundary'\nimport type { FocusAndScrollRef } from './router-reducer/router-reducer-types'\n\nimport React, {\n Activity,\n useContext,\n use,\n Suspense,\n useDeferredValue,\n type JSX,\n type ActivityProps,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport {\n LayoutRouterContext,\n GlobalLayoutRouterContext,\n TemplateContext,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport { unresolvedThenable } from './unresolved-thenable'\nimport { ErrorBoundary } from './error-boundary'\nimport { matchSegment } from './match-segments'\nimport { disableSmoothScrollDuringRouteTransition } from '../../shared/lib/router/utils/disable-smooth-scroll'\nimport { RedirectBoundary } from './redirect-boundary'\nimport { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary'\nimport { createRouterCacheKey } from './router-reducer/create-router-cache-key'\nimport { useRouterBFCache, type RouterBFCacheEntry } from './bfcache'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport {\n NavigationPromisesContext,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport { getParamValueFromCacheKey } from '../route-params'\nimport type { Params } from '../../server/request/params'\nimport { isDeferredRsc } from './router-reducer/ppr-navigations'\n\nconst __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = (\n ReactDOM as any\n).__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE\n\n// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available\n/**\n * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning\n */\nfunction findDOMNode(\n instance: React.ReactInstance | null | undefined\n): Element | Text | null {\n // Tree-shake for server bundle\n if (typeof window === 'undefined') return null\n\n // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init.\n // We need to lazily reference it.\n const internal_reactDOMfindDOMNode =\n __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode\n return internal_reactDOMfindDOMNode(instance)\n}\n\nconst rectProperties = [\n 'bottom',\n 'height',\n 'left',\n 'right',\n 'top',\n 'width',\n 'x',\n 'y',\n] as const\n/**\n * Check if a HTMLElement is hidden or fixed/sticky position\n */\nfunction shouldSkipElement(element: HTMLElement) {\n // we ignore fixed or sticky positioned elements since they'll likely pass the \"in-viewport\" check\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if (['sticky', 'fixed'].includes(getComputedStyle(element).position)) {\n return true\n }\n\n // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent`\n // because `offsetParent` doesn't consider document/body\n const rect = element.getBoundingClientRect()\n return rectProperties.every((item) => rect[item] === 0)\n}\n\n/**\n * Check if the top corner of the HTMLElement is in the viewport.\n */\nfunction topOfElementInViewport(element: HTMLElement, viewportHeight: number) {\n const rect = element.getBoundingClientRect()\n return rect.top >= 0 && rect.top <= viewportHeight\n}\n\n/**\n * Find the DOM node for a hash fragment.\n * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior.\n * If the hash fragment is an id, the page has to scroll to the element with that id.\n * If the hash fragment is a name, the page has to scroll to the first element with that name.\n */\nfunction getHashFragmentDomNode(hashFragment: string) {\n // If the hash fragment is `top` the page has to scroll to the top of the page.\n if (hashFragment === 'top') {\n return document.body\n }\n\n // If the hash fragment is an id, the page has to scroll to the element with that id.\n return (\n document.getElementById(hashFragment) ??\n // If the hash fragment is a name, the page has to scroll to the first element with that name.\n document.getElementsByName(hashFragment)[0]\n )\n}\ninterface ScrollAndFocusHandlerProps {\n focusAndScrollRef: FocusAndScrollRef\n children: React.ReactNode\n segmentPath: FlightSegmentPath\n}\nclass InnerScrollAndFocusHandler extends React.Component {\n handlePotentialScroll = () => {\n // Handle scroll and focus, it's only applied once in the first useEffect that triggers that changed.\n const { focusAndScrollRef, segmentPath } = this.props\n\n if (focusAndScrollRef.apply) {\n // segmentPaths is an array of segment paths that should be scrolled to\n // if the current segment path is not in the array, the scroll is not applied\n // unless the array is empty, in which case the scroll is always applied\n if (\n focusAndScrollRef.segmentPaths.length !== 0 &&\n !focusAndScrollRef.segmentPaths.some((scrollRefSegmentPath) =>\n segmentPath.every((segment, index) =>\n matchSegment(segment, scrollRefSegmentPath[index])\n )\n )\n ) {\n return\n }\n\n let domNode:\n | ReturnType\n | ReturnType = null\n const hashFragment = focusAndScrollRef.hashFragment\n\n if (hashFragment) {\n domNode = getHashFragmentDomNode(hashFragment)\n }\n\n // `findDOMNode` is tricky because it returns just the first child if the component is a fragment.\n // This already caused a bug where the first child was a in head.\n if (!domNode) {\n domNode = findDOMNode(this)\n }\n\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (!(domNode instanceof Element)) {\n return\n }\n\n // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior.\n // If the element is skipped, try to select the next sibling and try again.\n while (!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)) {\n if (process.env.NODE_ENV !== 'production') {\n if (domNode.parentElement?.localName === 'head') {\n // TODO: We enter this state when metadata was rendered as part of the page or via Next.js.\n // This is always a bug in Next.js and caused by React hoisting metadata.\n // We need to replace `findDOMNode` in favor of Fragment Refs (when available) so that we can skip over metadata.\n }\n }\n\n // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead.\n if (domNode.nextElementSibling === null) {\n return\n }\n domNode = domNode.nextElementSibling\n }\n\n // State is mutated to ensure that the focus and scroll is applied only once.\n focusAndScrollRef.apply = false\n focusAndScrollRef.hashFragment = null\n focusAndScrollRef.segmentPaths = []\n\n disableSmoothScrollDuringRouteTransition(\n () => {\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n ;(domNode as HTMLElement).scrollIntoView()\n\n return\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement\n const viewportHeight = htmlElement.clientHeight\n\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n return\n }\n\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0\n\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n ;(domNode as HTMLElement).scrollIntoView()\n }\n },\n {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange,\n }\n )\n\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false\n\n // Set focus on the element\n domNode.focus()\n }\n }\n\n componentDidMount() {\n this.handlePotentialScroll()\n }\n\n componentDidUpdate() {\n // Because this property is overwritten in handlePotentialScroll it's fine to always run it when true as it'll be set to false for subsequent renders.\n if (this.props.focusAndScrollRef.apply) {\n this.handlePotentialScroll()\n }\n }\n\n render() {\n return this.props.children\n }\n}\n\nfunction ScrollAndFocusHandler({\n segmentPath,\n children,\n}: {\n segmentPath: FlightSegmentPath\n children: React.ReactNode\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n return (\n \n {children}\n \n )\n}\n\n/**\n * InnerLayoutRouter handles rendering the provided segment based on the cache.\n */\nfunction InnerLayoutRouter({\n tree,\n segmentPath,\n debugNameContext,\n cacheNode: maybeCacheNode,\n params,\n url,\n isActive,\n}: {\n tree: FlightRouterState\n segmentPath: FlightSegmentPath\n debugNameContext: string\n cacheNode: CacheNode | null\n params: Params\n url: string\n isActive: boolean\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n const parentNavPromises = useContext(NavigationPromisesContext)\n\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n const cacheNode =\n maybeCacheNode !== null\n ? maybeCacheNode\n : // This segment is not in the cache. Suspend indefinitely.\n //\n // This should only be reachable for inactive/hidden segments, during\n // prerendering The active segment should always be consistent with the\n // CacheNode tree. Regardless, if we don't have a matching CacheNode, we\n // must suspend rather than render nothing, to prevent showing an\n // inconsistent route.\n\n (use(unresolvedThenable) as never)\n\n // `rsc` represents the renderable node for this segment.\n\n // If this segment has a `prefetchRsc`, it's the statically prefetched data.\n // We should use that on initial render instead of `rsc`. Then we'll switch\n // to `rsc` when the dynamic response streams in.\n //\n // If no prefetch data is available, then we go straight to rendering `rsc`.\n const resolvedPrefetchRsc =\n cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc\n\n // We use `useDeferredValue` to handle switching between the prefetched and\n // final values. The second argument is returned on initial render, then it\n // re-renders with the first argument.\n const rsc: any = useDeferredValue(cacheNode.rsc, resolvedPrefetchRsc)\n\n // `rsc` is either a React node or a promise for a React node, except we\n // special case `null` to represent that this segment's data is missing. If\n // it's a promise, we need to unwrap it so we can determine whether or not the\n // data is missing.\n let resolvedRsc: React.ReactNode\n if (isDeferredRsc(rsc)) {\n const unwrappedRsc = use(rsc)\n if (unwrappedRsc === null) {\n // If the promise was resolved to `null`, it means the data for this\n // segment was not returned by the server. Suspend indefinitely. When this\n // happens, the router is responsible for triggering a new state update to\n // un-suspend this segment.\n use(unresolvedThenable) as never\n }\n resolvedRsc = unwrappedRsc\n } else {\n // This is not a deferred RSC promise. Don't need to unwrap it.\n if (rsc === null) {\n use(unresolvedThenable) as never\n }\n resolvedRsc = rsc\n }\n\n // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide\n // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`.\n // Promises are cached outside of render to survive suspense retries.\n let navigationPromises: NavigationPromises | null = null\n if (process.env.NODE_ENV !== 'production') {\n const { createNestedLayoutNavigationPromises } =\n require('./navigation-devtools') as typeof import('./navigation-devtools')\n\n navigationPromises = createNestedLayoutNavigationPromises(\n tree,\n parentNavPromises\n )\n }\n\n let children = resolvedRsc\n\n if (navigationPromises) {\n children = (\n \n {resolvedRsc}\n \n )\n }\n\n children = (\n // The layout router context narrows down tree and childNodes at each level.\n \n {children}\n \n )\n\n return children\n}\n\n/**\n * Renders suspense boundary with the provided \"loading\" property as the fallback.\n * If no loading property is provided it renders the children without a suspense boundary.\n */\nfunction LoadingBoundary({\n name,\n loading,\n children,\n}: {\n name: ActivityProps['name']\n loading: LoadingModuleData | Promise\n children: React.ReactNode\n}): JSX.Element {\n // If loading is a promise, unwrap it. This happens in cases where we haven't\n // yet received the loading data from the server — which includes whether or\n // not this layout has a loading component at all.\n //\n // It's OK to suspend here instead of inside the fallback because this\n // promise will resolve simultaneously with the data for the segment itself.\n // So it will never suspend for longer than it would have if we didn't use\n // a Suspense fallback at all.\n let loadingModuleData\n if (\n typeof loading === 'object' &&\n loading !== null &&\n typeof (loading as any).then === 'function'\n ) {\n const promiseForLoading = loading as Promise\n loadingModuleData = use(promiseForLoading)\n } else {\n loadingModuleData = loading as LoadingModuleData\n }\n\n if (loadingModuleData) {\n const loadingRsc = loadingModuleData[0]\n const loadingStyles = loadingModuleData[1]\n const loadingScripts = loadingModuleData[2]\n return (\n \n {loadingStyles}\n {loadingScripts}\n {loadingRsc}\n \n }\n >\n {children}\n
\n )\n }\n\n return <>{children}\n}\n\n/**\n * OuterLayoutRouter handles the current segment as well as rendering of other segments.\n * It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes.\n */\nexport default function OuterLayoutRouter({\n parallelRouterKey,\n error,\n errorStyles,\n errorScripts,\n templateStyles,\n templateScripts,\n template,\n notFound,\n forbidden,\n unauthorized,\n segmentViewBoundaries,\n}: {\n parallelRouterKey: string\n error: ErrorComponent | undefined\n errorStyles: React.ReactNode | undefined\n errorScripts: React.ReactNode | undefined\n templateStyles: React.ReactNode | undefined\n templateScripts: React.ReactNode | undefined\n template: React.ReactNode\n notFound: React.ReactNode | undefined\n forbidden: React.ReactNode | undefined\n unauthorized: React.ReactNode | undefined\n segmentViewBoundaries?: React.ReactNode\n}) {\n const context = useContext(LayoutRouterContext)\n if (!context) {\n throw new Error('invariant expected layout router to be mounted')\n }\n\n const {\n parentTree,\n parentCacheNode,\n parentSegmentPath,\n parentParams,\n url,\n isActive,\n debugNameContext,\n } = context\n\n // Get the CacheNode for this segment by reading it from the parent segment's\n // child map.\n const parentParallelRoutes = parentCacheNode.parallelRoutes\n let segmentMap = parentParallelRoutes.get(parallelRouterKey)\n // If the parallel router cache node does not exist yet, create it.\n // This writes to the cache when there is no item in the cache yet. It never *overwrites* existing cache items which is why it's safe in concurrent mode.\n if (!segmentMap) {\n segmentMap = new Map()\n parentParallelRoutes.set(parallelRouterKey, segmentMap)\n }\n const parentTreeSegment = parentTree[0]\n const segmentPath =\n parentSegmentPath === null\n ? // TODO: The root segment value is currently omitted from the segment\n // path. This has led to a bunch of special cases scattered throughout\n // the code. We should clean this up.\n [parallelRouterKey]\n : parentSegmentPath.concat([parentTreeSegment, parallelRouterKey])\n\n // The \"state\" key of a segment is the one passed to React — it represents the\n // identity of the UI tree. Whenever the state key changes, the tree is\n // recreated and the state is reset. In the App Router model, search params do\n // not cause state to be lost, so two segments with the same segment path but\n // different search params should have the same state key.\n //\n // The \"cache\" key of a segment, however, *does* include the search params, if\n // it's possible that the segment accessed the search params on the server.\n // (This only applies to page segments; layout segments cannot access search\n // params on the server.)\n const activeTree = parentTree[1][parallelRouterKey]\n if (activeTree === undefined) {\n // Could not find a matching segment. The client tree is inconsistent with\n // the server tree. Suspend indefinitely; the router will have already\n // detected the inconsistency when handling the server response, and\n // triggered a refresh of the page to recover.\n use(unresolvedThenable) as never\n }\n\n const activeSegment = activeTree[0]\n const activeStateKey = createRouterCacheKey(activeSegment, true) // no search params\n\n // At each level of the route tree, not only do we render the currently\n // active segment — we also render the last N segments that were active at\n // this level inside a hidden boundary, to preserve their state\n // if or when the user navigates to them again.\n //\n // bfcacheEntry is a linked list of FlightRouterStates.\n let bfcacheEntry: RouterBFCacheEntry | null = useRouterBFCache(\n activeTree,\n activeStateKey\n )\n let children: Array = []\n do {\n const tree = bfcacheEntry.tree\n const stateKey = bfcacheEntry.stateKey\n const segment = tree[0]\n const cacheKey = createRouterCacheKey(segment)\n\n // Read segment path from the parallel router cache node.\n const cacheNode = segmentMap.get(cacheKey) ?? null\n\n /*\n - Error boundary\n - Only renders error boundary if error component is provided.\n - Rendered for each segment to ensure they have their own error state.\n - When gracefully degrade for bots, skip rendering error boundary.\n - Loading boundary\n - Only renders suspense boundary if loading components is provided.\n - Rendered for each segment to ensure they have their own loading state.\n - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch.\n */\n\n let segmentBoundaryTriggerNode: React.ReactNode = null\n let segmentViewStateNode: React.ReactNode = null\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentBoundaryTriggerNode, SegmentViewStateNode } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n const pagePrefix = normalizeAppPath(url)\n segmentViewStateNode = (\n \n )\n\n segmentBoundaryTriggerNode = (\n <>\n \n \n )\n }\n\n let params = parentParams\n if (Array.isArray(segment)) {\n // This segment contains a route param. Accumulate these as we traverse\n // down the router tree. The result represents the set of params that\n // the layout/page components are permitted to access below this point.\n const paramName = segment[0]\n const paramCacheKey = segment[1]\n const paramType = segment[2]\n const paramValue = getParamValueFromCacheKey(paramCacheKey, paramType)\n if (paramValue !== null) {\n params = {\n ...parentParams,\n [paramName]: paramValue,\n }\n }\n }\n\n const debugName = getBoundaryDebugNameFromSegment(segment)\n // `debugNameContext` represents the nearest non-\"virtual\" parent segment.\n // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments.\n // So if `debugName` is undefined, the context is passed through unchanged.\n const childDebugNameContext = debugName ?? debugNameContext\n\n // In practical terms, clicking this name in the Suspense DevTools\n // should select the child slots of that layout.\n //\n // So the name we apply to the Activity boundary is actually based on\n // the nearest parent segments.\n //\n // We skip over \"virtual\" parents, i.e. ones inserted by Next.js that\n // don't correspond to application-defined code.\n const isVirtual = debugName === undefined\n const debugNameToDisplay = isVirtual ? undefined : debugNameContext\n\n // TODO: The loading module data for a segment is stored on the parent, then\n // applied to each of that parent segment's parallel route slots. In the\n // simple case where there's only one parallel route (the `children` slot),\n // this is no different from if the loading module data where stored on the\n // child directly. But I'm not sure this actually makes sense when there are\n // multiple parallel routes. It's not a huge issue because you always have\n // the option to define a narrower loading boundary for a particular slot. But\n // this sort of smells like an implementation accident to me.\n const loadingModuleData = parentCacheNode.loading\n let child = (\n \n \n \n \n \n \n {segmentBoundaryTriggerNode}\n \n \n \n \n {segmentViewStateNode}\n \n }\n >\n {templateStyles}\n {templateScripts}\n {template}\n \n )\n\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentStateProvider } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n child = (\n \n {child}\n {segmentViewBoundaries}\n \n )\n }\n\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n child = (\n \n {child}\n \n )\n }\n\n children.push(child)\n\n bfcacheEntry = bfcacheEntry.next\n } while (bfcacheEntry !== null)\n\n return children\n}\n\nfunction getBoundaryDebugNameFromSegment(segment: Segment): string | undefined {\n if (segment === '/') {\n // Reached the root\n return '/'\n }\n if (typeof segment === 'string') {\n if (isVirtualLayout(segment)) {\n return undefined\n } else {\n return segment + '/'\n }\n }\n const paramCacheKey = segment[1]\n return paramCacheKey + '/'\n}\n\nfunction isVirtualLayout(segment: string): boolean {\n return (\n // This is inserted by the loader. We should consider encoding these\n // in a more special way instead of checking the name, to distinguish them\n // from app-defined groups.\n segment === '(slot)'\n )\n}\n"],"names":["React","Activity","useContext","use","Suspense","useDeferredValue","ReactDOM","LayoutRouterContext","GlobalLayoutRouterContext","TemplateContext","unresolvedThenable","ErrorBoundary","matchSegment","disableSmoothScrollDuringRouteTransition","RedirectBoundary","HTTPAccessFallbackBoundary","createRouterCacheKey","useRouterBFCache","normalizeAppPath","NavigationPromisesContext","getParamValueFromCacheKey","isDeferredRsc","__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","findDOMNode","instance","window","internal_reactDOMfindDOMNode","rectProperties","shouldSkipElement","element","includes","getComputedStyle","position","rect","getBoundingClientRect","every","item","topOfElementInViewport","viewportHeight","top","getHashFragmentDomNode","hashFragment","document","body","getElementById","getElementsByName","InnerScrollAndFocusHandler","Component","componentDidMount","handlePotentialScroll","componentDidUpdate","props","focusAndScrollRef","apply","render","children","segmentPath","segmentPaths","length","some","scrollRefSegmentPath","segment","index","domNode","Element","HTMLElement","process","env","NODE_ENV","parentElement","localName","nextElementSibling","scrollIntoView","htmlElement","documentElement","clientHeight","scrollTop","dontForceLayout","onlyHashChange","focus","ScrollAndFocusHandler","context","Error","InnerLayoutRouter","tree","debugNameContext","cacheNode","maybeCacheNode","params","url","isActive","parentNavPromises","resolvedPrefetchRsc","prefetchRsc","rsc","resolvedRsc","unwrappedRsc","navigationPromises","createNestedLayoutNavigationPromises","require","Provider","value","parentTree","parentCacheNode","parentSegmentPath","parentParams","LoadingBoundary","name","loading","loadingModuleData","then","promiseForLoading","loadingRsc","loadingStyles","loadingScripts","fallback","OuterLayoutRouter","parallelRouterKey","error","errorStyles","errorScripts","templateStyles","templateScripts","template","notFound","forbidden","unauthorized","segmentViewBoundaries","parentParallelRoutes","parallelRoutes","segmentMap","get","Map","set","parentTreeSegment","concat","activeTree","undefined","activeSegment","activeStateKey","bfcacheEntry","stateKey","cacheKey","segmentBoundaryTriggerNode","segmentViewStateNode","SegmentBoundaryTriggerNode","SegmentViewStateNode","pagePrefix","page","Array","isArray","paramName","paramCacheKey","paramType","paramValue","debugName","getBoundaryDebugNameFromSegment","childDebugNameContext","isVirtual","debugNameToDisplay","child","errorComponent","SegmentStateProvider","__NEXT_CACHE_COMPONENTS","mode","push","next","isVirtualLayout"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9774, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/render-from-template-context.tsx"],"sourcesContent":["'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport { TemplateContext } from '../../shared/lib/app-router-context.shared-runtime'\n\nexport default function RenderFromTemplateContext(): JSX.Element {\n const children = useContext(TemplateContext)\n return <>{children}\n}\n"],"names":["React","useContext","TemplateContext","RenderFromTemplateContext","children"],"mappings":";;;;;AAEA,OAAOA,SAASC,UAAU,QAAkB,QAAO;AACnD,SAASC,eAAe,QAAQ,qDAAoD;AAHpF;;;;AAKe,SAASC;IACtB,MAAMC,eAAWH,mNAAAA,EAAWC,gPAAAA;IAC5B,OAAA,WAAA,OAAO,8NAAA,EAAA,mOAAA,EAAA;kBAAGE;;AACZ","ignoreList":[0]}}, - {"offset": {"line": 9795, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/reflect.ts"],"sourcesContent":["export class ReflectAdapter {\n static get(\n target: T,\n prop: string | symbol,\n receiver: unknown\n ): any {\n const value = Reflect.get(target, prop, receiver)\n if (typeof value === 'function') {\n return value.bind(target)\n }\n\n return value\n }\n\n static set(\n target: T,\n prop: string | symbol,\n value: any,\n receiver: any\n ): boolean {\n return Reflect.set(target, prop, value, receiver)\n }\n\n static has(target: T, prop: string | symbol): boolean {\n return Reflect.has(target, prop)\n }\n\n static deleteProperty(\n target: T,\n prop: string | symbol\n ): boolean {\n return Reflect.deleteProperty(target, prop)\n }\n}\n"],"names":["ReflectAdapter","get","target","prop","receiver","value","Reflect","bind","set","has","deleteProperty"],"mappings":";;;;AAAO,MAAMA;IACX,OAAOC,IACLC,MAAS,EACTC,IAAqB,EACrBC,QAAiB,EACZ;QACL,MAAMC,QAAQC,QAAQL,GAAG,CAACC,QAAQC,MAAMC;QACxC,IAAI,OAAOC,UAAU,YAAY;YAC/B,OAAOA,MAAME,IAAI,CAACL;QACpB;QAEA,OAAOG;IACT;IAEA,OAAOG,IACLN,MAAS,EACTC,IAAqB,EACrBE,KAAU,EACVD,QAAa,EACJ;QACT,OAAOE,QAAQE,GAAG,CAACN,QAAQC,MAAME,OAAOD;IAC1C;IAEA,OAAOK,IAAsBP,MAAS,EAAEC,IAAqB,EAAW;QACtE,OAAOG,QAAQG,GAAG,CAACP,QAAQC;IAC7B;IAEA,OAAOO,eACLR,MAAS,EACTC,IAAqB,EACZ;QACT,OAAOG,QAAQI,cAAc,CAACR,QAAQC;IACxC;AACF","ignoreList":[0]}}, - {"offset": {"line": 9821, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/create-deduped-by-callsite-server-error-logger.ts"],"sourcesContent":["import * as React from 'react'\n\nconst errorRef: { current: null | Error } = { current: null }\n\n// React.cache is currently only available in canary/experimental React channels.\nconst cache =\n typeof React.cache === 'function'\n ? React.cache\n : (fn: (key: unknown) => void) => fn\n\n// When Cache Components is enabled, we record these as errors so that they\n// are captured by the dev overlay as it's more critical to fix these\n// when enabled.\nconst logErrorOrWarn = process.env.__NEXT_CACHE_COMPONENTS\n ? console.error\n : console.warn\n\n// We don't want to dedupe across requests.\n// The developer might've just attempted to fix the warning so we should warn again if it still happens.\nconst flushCurrentErrorIfNew = cache(\n // eslint-disable-next-line @typescript-eslint/no-unused-vars -- cache key\n (key: unknown) => {\n try {\n logErrorOrWarn(errorRef.current)\n } finally {\n errorRef.current = null\n }\n }\n)\n\n/**\n * Creates a function that logs an error message that is deduped by the userland\n * callsite.\n * This requires no indirection between the call of this function and the userland\n * callsite i.e. there's only a single library frame above this.\n * Do not use on the Client where sourcemaps and ignore listing might be enabled.\n * Only use that for warnings need a fix independent of the callstack.\n *\n * @param getMessage\n * @returns\n */\nexport function createDedupedByCallsiteServerErrorLoggerDev(\n getMessage: (...args: Args) => Error\n) {\n return function logDedupedError(...args: Args) {\n const message = getMessage(...args)\n\n if (process.env.NODE_ENV !== 'production') {\n const callStackFrames = new Error().stack?.split('\\n')\n if (callStackFrames === undefined || callStackFrames.length < 4) {\n logErrorOrWarn(message)\n } else {\n // Error:\n // logDedupedError\n // asyncApiBeingAccessedSynchronously\n // \n // TODO: This breaks if sourcemaps with ignore lists are enabled.\n const key = callStackFrames[4]\n errorRef.current = message\n flushCurrentErrorIfNew(key)\n }\n } else {\n logErrorOrWarn(message)\n }\n }\n}\n"],"names":["React","errorRef","current","cache","fn","logErrorOrWarn","process","env","__NEXT_CACHE_COMPONENTS","console","error","warn","flushCurrentErrorIfNew","key","createDedupedByCallsiteServerErrorLoggerDev","getMessage","logDedupedError","args","message","NODE_ENV","callStackFrames","Error","stack","split","undefined","length"],"mappings":";;;;AAAA,YAAYA,WAAW,QAAO;;AAE9B,MAAMC,WAAsC;IAAEC,SAAS;AAAK;AAE5D,iFAAiF;AACjF,MAAMC,QACJ,OAAOH,MAAMG,wMAAK,KAAK,aACnBH,MAAMG,wMAAK,GACX,CAACC,KAA+BA;AAEtC,2EAA2E;AAC3E,qEAAqE;AACrE,gBAAgB;AAChB,MAAMC,iBAAiBC,QAAQC,GAAG,CAACC,uBAAuB,GACtDC,QAAQC,KAAK,aACbD,QAAQE,IAAI;AAEhB,2CAA2C;AAC3C,wGAAwG;AACxG,MAAMC,yBAAyBT,MAC7B,AACA,CAACU,yEADyE;IAExE,IAAI;QACFR,eAAeJ,SAASC,OAAO;IACjC,SAAU;QACRD,SAASC,OAAO,GAAG;IACrB;AACF;AAcK,SAASY,4CACdC,UAAoC;IAEpC,OAAO,SAASC,gBAAgB,GAAGC,IAAU;QAC3C,MAAMC,UAAUH,cAAcE;QAE9B,IAAIX,QAAQC,GAAG,CAACY,QAAQ,KAAK,WAAc;gBACjB;YAAxB,MAAMC,kBAAAA,CAAkB,SAAA,IAAIC,QAAQC,KAAK,KAAA,OAAA,KAAA,IAAjB,OAAmBC,KAAK,CAAC;YACjD,IAAIH,oBAAoBI,aAAaJ,gBAAgBK,MAAM,GAAG,GAAG;gBAC/DpB,eAAea;YACjB,OAAO;gBACL,SAAS;gBACT,oBAAoB;gBACpB,uCAAuC;gBACvC,wBAAwB;gBACxB,iEAAiE;gBACjE,MAAML,MAAMO,eAAe,CAAC,EAAE;gBAC9BnB,SAASC,OAAO,GAAGgB;gBACnBN,uBAAuBC;YACzB;QACF,OAAO;;IAGT;AACF","ignoreList":[0]}}, - {"offset": {"line": 9871, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/reflect-utils.ts"],"sourcesContent":["// This regex will have fast negatives meaning valid identifiers may not pass\n// this test. However this is only used during static generation to provide hints\n// about why a page bailed out of some or all prerendering and we can use bracket notation\n// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']`\n// even if this would have been fine too `searchParams.ಠ_ಠ`\nconst isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/\n\nexport function describeStringPropertyAccess(target: string, prop: string) {\n if (isDefinitelyAValidIdentifier.test(prop)) {\n return `\\`${target}.${prop}\\``\n }\n return `\\`${target}[${JSON.stringify(prop)}]\\``\n}\n\nexport function describeHasCheckingStringProperty(\n target: string,\n prop: string\n) {\n const stringifiedProp = JSON.stringify(prop)\n return `\\`Reflect.has(${target}, ${stringifiedProp})\\`, \\`${stringifiedProp} in ${target}\\`, or similar`\n}\n\nexport const wellKnownProperties = new Set([\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toString',\n 'valueOf',\n 'toLocaleString',\n\n // Promise prototype\n 'then',\n 'catch',\n 'finally',\n\n // React Promise extension\n 'status',\n // 'value',\n // 'error',\n\n // React introspection\n 'displayName',\n '_debugInfo',\n\n // Common tested properties\n 'toJSON',\n '$$typeof',\n '__esModule',\n])\n"],"names":["isDefinitelyAValidIdentifier","describeStringPropertyAccess","target","prop","test","JSON","stringify","describeHasCheckingStringProperty","stringifiedProp","wellKnownProperties","Set"],"mappings":";;;;;;;;AAAA,6EAA6E;AAC7E,iFAAiF;AACjF,0FAA0F;AAC1F,uFAAuF;AACvF,2DAA2D;AAC3D,MAAMA,+BAA+B;AAE9B,SAASC,6BAA6BC,MAAc,EAAEC,IAAY;IACvE,IAAIH,6BAA6BI,IAAI,CAACD,OAAO;QAC3C,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEC,KAAK,EAAE,CAAC;IAChC;IACA,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEG,KAAKC,SAAS,CAACH,MAAM,GAAG,CAAC;AACjD;AAEO,SAASI,kCACdL,MAAc,EACdC,IAAY;IAEZ,MAAMK,kBAAkBH,KAAKC,SAAS,CAACH;IACvC,OAAO,CAAC,cAAc,EAAED,OAAO,EAAE,EAAEM,gBAAgB,OAAO,EAAEA,gBAAgB,IAAI,EAAEN,OAAO,cAAc,CAAC;AAC1G;AAEO,MAAMO,sBAAsB,IAAIC,IAAI;IACzC;IACA;IACA;IACA;IACA;IACA;IAEA,oBAAoB;IACpB;IACA;IACA;IAEA,0BAA0B;IAC1B;IACA,WAAW;IACX,WAAW;IAEX,sBAAsB;IACtB;IACA;IAEA,2BAA2B;IAC3B;IACA;IACA;CACD,EAAC","ignoreList":[0]}}, - {"offset": {"line": 9922, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/utils.ts"],"sourcesContent":["import { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport { afterTaskAsyncStorage } from '../app-render/after-task-async-storage.external'\nimport type { WorkStore } from '../app-render/work-async-storage.external'\n\nexport function throwWithStaticGenerationBailoutErrorWithDynamicError(\n route: string,\n expression: string\n): never {\n throw new StaticGenBailoutError(\n `Route ${route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n}\n\nexport function throwForSearchParamsAccessInUseCache(\n workStore: WorkStore,\n constructorOpt: Function\n): never {\n const error = new Error(\n `Route ${workStore.route} used \\`searchParams\\` inside \"use cache\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\`searchParams\\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`\n )\n\n Error.captureStackTrace(error, constructorOpt)\n workStore.invalidDynamicUsageError ??= error\n\n throw error\n}\n\nexport function isRequestAPICallableInsideAfter() {\n const afterTaskStore = afterTaskAsyncStorage.getStore()\n return afterTaskStore?.rootTaskSpawnPhase === 'action'\n}\n"],"names":["StaticGenBailoutError","afterTaskAsyncStorage","throwWithStaticGenerationBailoutErrorWithDynamicError","route","expression","throwForSearchParamsAccessInUseCache","workStore","constructorOpt","error","Error","captureStackTrace","invalidDynamicUsageError","isRequestAPICallableInsideAfter","afterTaskStore","getStore","rootTaskSpawnPhase"],"mappings":";;;;;;;;AAAA,SAASA,qBAAqB,QAAQ,oDAAmD;AACzF,SAASC,qBAAqB,QAAQ,kDAAiD;;;AAGhF,SAASC,sDACdC,KAAa,EACbC,UAAkB;IAElB,MAAM,OAAA,cAEL,CAFK,IAAIJ,uNAAAA,CACR,CAAC,MAAM,EAAEG,MAAM,4EAA4E,EAAEC,WAAW,0HAA0H,CAAC,GAD/N,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAEO,SAASC,qCACdC,SAAoB,EACpBC,cAAwB;IAExB,MAAMC,QAAQ,OAAA,cAEb,CAFa,IAAIC,MAChB,CAAC,MAAM,EAAEH,UAAUH,KAAK,CAAC,2XAA2X,CAAC,GADzY,qBAAA;eAAA;oBAAA;sBAAA;IAEd;IAEAM,MAAMC,iBAAiB,CAACF,OAAOD;IAC/BD,UAAUK,wBAAwB,KAAKH;IAEvC,MAAMA;AACR;AAEO,SAASI;IACd,MAAMC,iBAAiBZ,8SAAAA,CAAsBa,QAAQ;IACrD,OAAOD,CAAAA,kBAAAA,OAAAA,KAAAA,IAAAA,eAAgBE,kBAAkB,MAAK;AAChD","ignoreList":[0]}}, - {"offset": {"line": 9959, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/staged-rendering.ts"],"sourcesContent":["import { InvariantError } from '../../shared/lib/invariant-error'\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers'\n\nexport enum RenderStage {\n Before = 1,\n Static = 2,\n Runtime = 3,\n Dynamic = 4,\n Abandoned = 5,\n}\n\nexport type NonStaticRenderStage = RenderStage.Runtime | RenderStage.Dynamic\n\nexport class StagedRenderingController {\n currentStage: RenderStage = RenderStage.Before\n\n staticInterruptReason: Error | null = null\n runtimeInterruptReason: Error | null = null\n staticStageEndTime: number = Infinity\n runtimeStageEndTime: number = Infinity\n\n private runtimeStageListeners: Array<() => void> = []\n private dynamicStageListeners: Array<() => void> = []\n\n private runtimeStagePromise = createPromiseWithResolvers()\n private dynamicStagePromise = createPromiseWithResolvers()\n\n private mayAbandon: boolean = false\n\n constructor(\n private abortSignal: AbortSignal | null = null,\n private hasRuntimePrefetch: boolean\n ) {\n if (abortSignal) {\n abortSignal.addEventListener(\n 'abort',\n () => {\n const { reason } = abortSignal\n if (this.currentStage < RenderStage.Runtime) {\n this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.runtimeStagePromise.reject(reason)\n }\n if (\n this.currentStage < RenderStage.Dynamic ||\n this.currentStage === RenderStage.Abandoned\n ) {\n this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.dynamicStagePromise.reject(reason)\n }\n },\n { once: true }\n )\n\n this.mayAbandon = true\n }\n }\n\n onStage(stage: NonStaticRenderStage, callback: () => void) {\n if (this.currentStage >= stage) {\n callback()\n } else if (stage === RenderStage.Runtime) {\n this.runtimeStageListeners.push(callback)\n } else if (stage === RenderStage.Dynamic) {\n this.dynamicStageListeners.push(callback)\n } else {\n // This should never happen\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n\n canSyncInterrupt() {\n // If we haven't started the render yet, it can't be interrupted.\n if (this.currentStage === RenderStage.Before) {\n return false\n }\n\n const boundaryStage = this.hasRuntimePrefetch\n ? RenderStage.Dynamic\n : RenderStage.Runtime\n return this.currentStage < boundaryStage\n }\n\n syncInterruptCurrentStageWithReason(reason: Error) {\n if (this.currentStage === RenderStage.Before) {\n return\n }\n\n // If Sync IO occurs during the initial (abandonable) render, we'll retry it,\n // so we want a slightly different flow.\n // See the implementation of `abandonRenderImpl` for more explanation.\n if (this.mayAbandon) {\n return this.abandonRenderImpl()\n }\n\n // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage\n // and capture the interruption reason.\n switch (this.currentStage) {\n case RenderStage.Static: {\n this.staticInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n return\n }\n case RenderStage.Runtime: {\n // We only error for Sync IO in the runtime stage if the route\n // is configured to use runtime prefetching.\n // We do this to reflect the fact that during a runtime prefetch,\n // Sync IO aborts aborts the render.\n // Note that `canSyncInterrupt` should prevent us from getting here at all\n // if runtime prefetching isn't enabled.\n if (this.hasRuntimePrefetch) {\n this.runtimeInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n }\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Abandoned:\n default:\n }\n }\n\n getStaticInterruptReason() {\n return this.staticInterruptReason\n }\n\n getRuntimeInterruptReason() {\n return this.runtimeInterruptReason\n }\n\n getStaticStageEndTime() {\n return this.staticStageEndTime\n }\n\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime\n }\n\n abandonRender() {\n if (!this.mayAbandon) {\n throw new InvariantError(\n '`abandonRender` called on a stage controller that cannot be abandoned.'\n )\n }\n\n this.abandonRenderImpl()\n }\n\n private abandonRenderImpl() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the Runtime stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this\n switch (currentStage) {\n case RenderStage.Static: {\n this.currentStage = RenderStage.Abandoned\n this.resolveRuntimeStage()\n return\n }\n case RenderStage.Runtime: {\n this.currentStage = RenderStage.Abandoned\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Before:\n case RenderStage.Abandoned:\n break\n default: {\n currentStage satisfies never\n }\n }\n }\n\n advanceStage(\n stage: RenderStage.Static | RenderStage.Runtime | RenderStage.Dynamic\n ) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return\n }\n\n let currentStage = this.currentStage\n this.currentStage = stage\n\n if (currentStage < RenderStage.Runtime && stage >= RenderStage.Runtime) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin\n this.resolveRuntimeStage()\n }\n if (currentStage < RenderStage.Dynamic && stage >= RenderStage.Dynamic) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin\n this.resolveDynamicStage()\n return\n }\n }\n\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */\n private resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners\n for (let i = 0; i < runtimeListeners.length; i++) {\n runtimeListeners[i]()\n }\n runtimeListeners.length = 0\n this.runtimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */\n private resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners\n for (let i = 0; i < dynamicListeners.length; i++) {\n dynamicListeners[i]()\n }\n dynamicListeners.length = 0\n this.dynamicStagePromise.resolve()\n }\n\n private getStagePromise(stage: NonStaticRenderStage): Promise {\n switch (stage) {\n case RenderStage.Runtime: {\n return this.runtimeStagePromise.promise\n }\n case RenderStage.Dynamic: {\n return this.dynamicStagePromise.promise\n }\n default: {\n stage satisfies never\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n }\n\n waitForStage(stage: NonStaticRenderStage) {\n return this.getStagePromise(stage)\n }\n\n delayUntilStage(\n stage: NonStaticRenderStage,\n displayName: string | undefined,\n resolvedValue: T\n ) {\n const ioTriggerPromise = this.getStagePromise(stage)\n\n const promise = makeDevtoolsIOPromiseFromIOTrigger(\n ioTriggerPromise,\n displayName,\n resolvedValue\n )\n\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject)\n }\n return promise\n }\n}\n\nfunction ignoreReject() {}\n\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger(\n ioTrigger: Promise,\n displayName: string | undefined,\n resolvedValue: T\n): Promise {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise((resolve, reject) => {\n ioTrigger.then(resolve.bind(null, resolvedValue), reject)\n })\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName\n }\n return promise\n}\n"],"names":["InvariantError","createPromiseWithResolvers","RenderStage","StagedRenderingController","constructor","abortSignal","hasRuntimePrefetch","currentStage","staticInterruptReason","runtimeInterruptReason","staticStageEndTime","Infinity","runtimeStageEndTime","runtimeStageListeners","dynamicStageListeners","runtimeStagePromise","dynamicStagePromise","mayAbandon","addEventListener","reason","promise","catch","ignoreReject","reject","once","onStage","stage","callback","push","canSyncInterrupt","boundaryStage","syncInterruptCurrentStageWithReason","abandonRenderImpl","advanceStage","getStaticInterruptReason","getRuntimeInterruptReason","getStaticStageEndTime","getRuntimeStageEndTime","abandonRender","resolveRuntimeStage","performance","now","timeOrigin","resolveDynamicStage","runtimeListeners","i","length","resolve","dynamicListeners","getStagePromise","waitForStage","delayUntilStage","displayName","resolvedValue","ioTriggerPromise","makeDevtoolsIOPromiseFromIOTrigger","ioTrigger","Promise","then","bind","undefined"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 10220, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/search-params.ts"],"sourcesContent":["import type { WorkStore } from '../app-render/work-async-storage.external'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n annotateDynamicAccess,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStoreLegacy,\n type PrerenderStorePPR,\n type PrerenderStoreModern,\n type PrerenderStoreModernRuntime,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport {\n describeStringPropertyAccess,\n describeHasCheckingStringProperty,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n throwWithStaticGenerationBailoutErrorWithDynamicError,\n throwForSearchParamsAccessInUseCache,\n} from './utils'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type SearchParams = { [key: string]: string | string[] | undefined }\n\nexport function createSearchParamsFromClient(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'prerender-runtime':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in cache contexts.'\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport const createServerSearchParamsForMetadata =\n createServerSearchParamsForServerPage\n\nexport function createServerSearchParamsForServerPage(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerSearchParamsForServerPage should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderSearchParams(\n underlyingSearchParams,\n workUnitStore\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderSearchParamsForClientPage(\n workStore: WorkStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We're prerendering in a mode that aborts (cacheComponents) and should stall\n // the promise to ensure the RSC side is considered dynamic\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n return Promise.resolve({})\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nfunction createStaticPrerenderSearchParams(\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We are in a cacheComponents (PPR or otherwise) prerender\n return makeHangingSearchParams(workStore, prerenderStore)\n case 'prerender-ppr':\n case 'prerender-legacy':\n // We are in a legacy static generation and need to interrupt the\n // prerender when search params are accessed.\n return makeErroringSearchParams(workStore, prerenderStore)\n default:\n return prerenderStore satisfies never\n }\n}\n\nfunction createRuntimePrerenderSearchParams(\n underlyingSearchParams: SearchParams,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedSearchParams(underlyingSearchParams)\n )\n}\n\nfunction createRenderSearchParams(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n } else {\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n return makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n return makeUntrackedSearchParams(underlyingSearchParams)\n }\n }\n}\n\ninterface CacheLifetime {}\nconst CachedSearchParams = new WeakMap>()\n\nconst CachedSearchParamsForUseCache = new WeakMap<\n CacheLifetime,\n Promise\n>()\n\nfunction makeHangingSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreModern\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(prerenderStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n switch (prop) {\n case 'then': {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n case 'status': {\n const expression =\n '`use(searchParams)`, `searchParams.status`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n default: {\n return ReflectAdapter.get(target, prop, receiver)\n }\n }\n },\n })\n\n CachedSearchParams.set(prerenderStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeErroringSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreLegacy | PrerenderStorePPR\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const underlyingSearchParams = {}\n // For search params we don't construct a ReactPromise because we want to interrupt\n // rendering on any property access that was not set from outside and so we only want\n // to have properties like value and status if React sets them.\n const promise = Promise.resolve(underlyingSearchParams)\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (typeof prop === 'string' && prop === 'then') {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n if (workStore.dynamicShouldError) {\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n } else if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParams.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\n/**\n * This is a variation of `makeErroringSearchParams` that always throws an\n * error on access, because accessing searchParams inside of `\"use cache\"` is\n * not allowed.\n */\nexport function makeErroringSearchParamsForUseCache(\n workStore: WorkStore\n): Promise {\n const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve({})\n\n const proxiedPromise = new Proxy(promise, {\n get: function get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it. We know it\n // isn't a dynamic access because it can only be something that was\n // previously written to the promise and thus not an underlying\n // searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (\n typeof prop === 'string' &&\n (prop === 'then' || !wellKnownProperties.has(prop))\n ) {\n throwForSearchParamsAccessInUseCache(workStore, get)\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParamsForUseCache.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeUntrackedSearchParams(\n underlyingSearchParams: SearchParams\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve(underlyingSearchParams)\n CachedSearchParams.set(underlyingSearchParams, promise)\n\n return promise\n}\n\nfunction makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (requestStore.asyncApiPromises) {\n // Do not cache the resulting promise. If we do, we'll only show the first \"awaited at\"\n // across all segments that receive searchParams.\n return makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n const promise = makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n CachedSearchParams.set(requestStore, promise)\n return promise\n }\n}\n\nfunction makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n const promiseInitialized = { current: false }\n const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams,\n workStore,\n promiseInitialized\n )\n\n let promise: Promise\n if (requestStore.asyncApiPromises) {\n // We wrap each instance of searchParams in a `new Promise()`.\n // This is important when all awaits are in third party which would otherwise\n // track all the way to the internal params.\n const sharedSearchParamsParent =\n requestStore.asyncApiPromises.sharedSearchParamsParent\n promise = new Promise((resolve, reject) => {\n sharedSearchParamsParent.then(() => resolve(proxiedUnderlying), reject)\n })\n // @ts-expect-error\n promise.displayName = 'searchParams'\n } else {\n promise = makeDevtoolsIOAwarePromise(\n proxiedUnderlying,\n requestStore,\n RenderStage.Runtime\n )\n }\n promise.then(\n () => {\n promiseInitialized.current = true\n },\n // If we're in staged rendering, this promise will reject if the render\n // is aborted before it can reach the runtime stage.\n // In that case, we have to prevent an unhandled rejection from the promise\n // created by this `.then()` call.\n // This does not affect the `promiseInitialized` logic above,\n // because `proxiedUnderlying` will not be used to resolve the promise,\n // so there's no risk of any of its properties being accessed and triggering\n // an undesireable warning.\n ignoreReject\n )\n\n return instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams,\n promise,\n workStore\n )\n}\n\nfunction ignoreReject() {}\n\nfunction instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n promiseInitialized: { current: boolean }\n) {\n // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying\n // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender\n // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking\n // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger\n // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce\n // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise.\n return new Proxy(underlyingSearchParams, {\n get(target, prop, receiver) {\n if (typeof prop === 'string' && promiseInitialized.current) {\n if (workStore.dynamicShouldError) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (workStore.dynamicShouldError) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n if (workStore.dynamicShouldError) {\n const expression =\n '`{...searchParams}`, `Object.keys(searchParams)`, or similar'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n return Reflect.ownKeys(target)\n },\n })\n}\n\nfunction instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams: SearchParams,\n promise: Promise,\n workStore: WorkStore\n) {\n // Track which properties we should warn for.\n const proxiedProperties = new Set()\n\n Object.keys(underlyingSearchParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (prop === 'then' && workStore.dynamicShouldError) {\n const expression = '`searchParams.then`'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return Reflect.set(target, prop, value, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n const expression = '`Object.keys(searchParams)` or similar'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createSearchAccessError\n)\n\nfunction createSearchAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`searchParams\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["ReflectAdapter","throwToInterruptStaticGeneration","postponeWithTracking","annotateDynamicAccess","delayUntilRuntimeStage","workUnitAsyncStorage","throwInvariantForMissingStore","InvariantError","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","describeStringPropertyAccess","describeHasCheckingStringProperty","wellKnownProperties","throwWithStaticGenerationBailoutErrorWithDynamicError","throwForSearchParamsAccessInUseCache","RenderStage","createSearchParamsFromClient","underlyingSearchParams","workStore","workUnitStore","getStore","type","createStaticPrerenderSearchParams","createRenderSearchParams","createServerSearchParamsForMetadata","createServerSearchParamsForServerPage","createRuntimePrerenderSearchParams","createPrerenderSearchParamsForClientPage","forceStatic","Promise","resolve","renderSignal","route","prerenderStore","makeHangingSearchParams","makeErroringSearchParams","makeUntrackedSearchParams","requestStore","process","env","NODE_ENV","makeUntrackedSearchParamsWithDevWarnings","CachedSearchParams","WeakMap","CachedSearchParamsForUseCache","cachedSearchParams","get","promise","proxiedPromise","Proxy","target","prop","receiver","Object","hasOwn","expression","set","dynamicShouldError","dynamicTracking","makeErroringSearchParamsForUseCache","has","asyncApiPromises","makeUntrackedSearchParamsWithDevWarningsImpl","promiseInitialized","current","proxiedUnderlying","instrumentSearchParamsObjectWithDevWarnings","sharedSearchParamsParent","reject","then","displayName","Runtime","ignoreReject","instrumentSearchParamsPromiseWithDevWarnings","Reflect","ownKeys","proxiedProperties","Set","keys","forEach","add","warnForSyncAccess","value","delete","createSearchAccessError","prefix","Error"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 10639, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/params.ts"],"sourcesContent":["import {\n workAsyncStorage,\n type WorkStore,\n} from '../app-render/work-async-storage.external'\nimport type { OpaqueFallbackRouteParams } from './fallback-params'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStorePPR,\n type PrerenderStoreLegacy,\n type StaticPrerenderStoreModern,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type PrerenderStoreModernRuntime,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n describeStringPropertyAccess,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport { dynamicAccessAsyncStorage } from '../app-render/dynamic-access-async-storage.external'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type ParamValue = string | Array | undefined\nexport type Params = Record\n\nexport function createParamsFromClient(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createParamsFromClient should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createParamsFromClient should not be called in a runtime prerender.'\n )\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport type CreateServerParamsForMetadata = typeof createServerParamsForMetadata\nexport const createServerParamsForMetadata = createServerParamsForServerSegment\n\n// routes always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerParamsForRoute(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForRoute should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createServerParamsForServerSegment(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForServerSegment should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderParamsForClientSegment(\n underlyingParams: Params\n): Promise {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError(\n 'Missing workStore in createPrerenderParamsForClientSegment'\n )\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams) {\n for (let key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`params`'\n )\n }\n }\n }\n break\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderParamsForClientSegment should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'prerender-runtime':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n // We're prerendering in a mode that does not abort. We resolve the promise without\n // any tracking because we're just transporting a value from server to client where the tracking\n // will be applied.\n return Promise.resolve(underlyingParams)\n}\n\nfunction createStaticPrerenderParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise {\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingParams(\n underlyingParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n return makeErroringParams(\n underlyingParams,\n fallbackParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-legacy':\n break\n default:\n prerenderStore satisfies never\n }\n\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRuntimePrerenderParams(\n underlyingParams: Params,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedParams(underlyingParams)\n )\n}\n\nfunction createRenderParamsInProd(underlyingParams: Params): Promise {\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRenderParamsInDev(\n underlyingParams: Params,\n devFallbackParams: OpaqueFallbackRouteParams | null | undefined,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n let hasFallbackParams = false\n if (devFallbackParams) {\n for (let key in underlyingParams) {\n if (devFallbackParams.has(key)) {\n hasFallbackParams = true\n break\n }\n }\n }\n\n return makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams,\n hasFallbackParams,\n workStore,\n requestStore\n )\n}\n\ninterface CacheLifetime {}\nconst CachedParams = new WeakMap>()\n\nconst fallbackParamsProxyHandler: ProxyHandler> = {\n get: function get(target, prop, receiver) {\n if (prop === 'then' || prop === 'catch' || prop === 'finally') {\n const originalMethod = ReflectAdapter.get(target, prop, receiver)\n\n return {\n [prop]: (...args: unknown[]) => {\n const store = dynamicAccessAsyncStorage.getStore()\n\n if (store) {\n store.abortController.abort(\n new Error(`Accessed fallback \\`params\\` during prerendering.`)\n )\n }\n\n return new Proxy(\n originalMethod.apply(target, args),\n fallbackParamsProxyHandler\n )\n },\n }[prop]\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n}\n\nfunction makeHangingParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStoreModern\n): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = new Proxy(\n makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`params`'\n ),\n fallbackParamsProxyHandler\n )\n\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeErroringParams(\n underlyingParams: Params,\n fallbackParams: OpaqueFallbackRouteParams,\n workStore: WorkStore,\n prerenderStore: PrerenderStorePPR | PrerenderStoreLegacy\n): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const augmentedUnderlying = { ...underlyingParams }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = Promise.resolve(augmentedUnderlying)\n CachedParams.set(underlyingParams, promise)\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n if (fallbackParams.has(prop)) {\n Object.defineProperty(augmentedUnderlying, prop, {\n get() {\n const expression = describeStringPropertyAccess('params', prop)\n // In most dynamic APIs we also throw if `dynamic = \"error\"` however\n // for params is only dynamic when we're generating a fallback shell\n // and even when `dynamic = \"error\"` we still support generating dynamic\n // fallback shells\n // TODO remove this comment when cacheComponents is the default since there\n // will be no `dynamic = \"error\"`\n if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n },\n enumerable: true,\n })\n }\n }\n })\n\n return promise\n}\n\nfunction makeUntrackedParams(underlyingParams: Params): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = Promise.resolve(underlyingParams)\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams: Params,\n hasFallbackParams: boolean,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (requestStore.asyncApiPromises && hasFallbackParams) {\n // We wrap each instance of params in a `new Promise()`, because deduping\n // them across requests doesn't work anyway and this let us show each\n // await a different set of values. This is important when all awaits\n // are in third party which would otherwise track all the way to the\n // internal params.\n const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent\n const promise: Promise = new Promise((resolve, reject) => {\n sharedParamsParent.then(() => resolve(underlyingParams), reject)\n })\n // @ts-expect-error\n promise.displayName = 'params'\n return instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n }\n\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = hasFallbackParams\n ? makeDevtoolsIOAwarePromise(\n underlyingParams,\n requestStore,\n RenderStage.Runtime\n )\n : // We don't want to force an environment transition when this params is not part of the fallback params set\n Promise.resolve(underlyingParams)\n\n const proxiedPromise = instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n CachedParams.set(underlyingParams, proxiedPromise)\n return proxiedPromise\n}\n\nfunction instrumentParamsPromiseWithDevWarnings(\n underlyingParams: Params,\n promise: Promise,\n workStore: WorkStore\n): Promise {\n // Track which properties we should warn for.\n const proxiedProperties = new Set()\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (typeof prop === 'string') {\n if (\n // We are accessing a property that was proxied to the promise instance\n proxiedProperties.has(prop)\n ) {\n const expression = describeStringPropertyAccess('params', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return ReflectAdapter.set(target, prop, value, receiver)\n },\n ownKeys(target) {\n const expression = '`...params` or similar expression'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createParamsAccessError\n)\n\nfunction createParamsAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`params\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["workAsyncStorage","ReflectAdapter","throwToInterruptStaticGeneration","postponeWithTracking","delayUntilRuntimeStage","workUnitAsyncStorage","throwInvariantForMissingStore","InvariantError","describeStringPropertyAccess","wellKnownProperties","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","dynamicAccessAsyncStorage","RenderStage","createParamsFromClient","underlyingParams","workStore","workUnitStore","getStore","type","createStaticPrerenderParams","process","env","NODE_ENV","devFallbackParams","createRenderParamsInDev","createRenderParamsInProd","createServerParamsForMetadata","createServerParamsForServerSegment","createServerParamsForRoute","createRuntimePrerenderParams","createPrerenderParamsForClientSegment","fallbackParams","fallbackRouteParams","key","has","renderSignal","route","Promise","resolve","prerenderStore","makeHangingParams","makeErroringParams","makeUntrackedParams","requestStore","hasFallbackParams","makeDynamicallyTrackedParamsWithDevWarnings","CachedParams","WeakMap","fallbackParamsProxyHandler","get","target","prop","receiver","originalMethod","args","store","abortController","abort","Error","Proxy","apply","cachedParams","promise","set","augmentedUnderlying","Object","keys","forEach","defineProperty","expression","dynamicTracking","enumerable","asyncApiPromises","sharedParamsParent","reject","then","displayName","instrumentParamsPromiseWithDevWarnings","Runtime","proxiedPromise","proxiedProperties","Set","add","warnForSyncAccess","value","delete","ownKeys","Reflect","createParamsAccessError","prefix"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 11040, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-page.tsx"],"sourcesContent":["'use client'\n\nimport type { ParsedUrlQuery } from 'querystring'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\nimport { urlSearchParamsToParsedUrlQuery } from '../route-params'\nimport { SearchParamsContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * When the Page is a client component we send the params and searchParams to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Page component.\n *\n * additionally we may send promises representing the params and searchParams. We don't ever use these passed\n * values but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations.\n * It is up to the caller to decide if the promises are needed.\n */\nexport function ClientPageRoot({\n Component,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n serverProvidedParams: null | {\n searchParams: ParsedUrlQuery\n params: Params\n promises: Array> | null\n }\n}) {\n let searchParams: ParsedUrlQuery\n let params: Params\n if (serverProvidedParams !== null) {\n searchParams = serverProvidedParams.searchParams\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params as\n // props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n\n // This is an intentional behavior change: when Cache Components is enabled,\n // client segments receive the \"canonical\" search params, not the\n // rewritten ones. Users should either call useSearchParams directly or pass\n // the rewritten ones in from a Server Component.\n // TODO: Log a deprecation error when this object is accessed\n searchParams = urlSearchParamsToParsedUrlQuery(use(SearchParamsContext)!)\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientSearchParams: Promise\n let clientParams: Promise\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling searchParams in a client Page.'\n )\n }\n\n const { createSearchParamsFromClient } =\n require('../../server/request/search-params') as typeof import('../../server/request/search-params')\n clientSearchParams = createSearchParamsFromClient(searchParams, store)\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return \n } else {\n const { createRenderSearchParamsFromClient } =\n require('../request/search-params.browser') as typeof import('../request/search-params.browser')\n const clientSearchParams = createRenderSearchParamsFromClient(searchParams)\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n\n return \n }\n}\n"],"names":["InvariantError","LayoutRouterContext","use","urlSearchParamsToParsedUrlQuery","SearchParamsContext","ClientPageRoot","Component","serverProvidedParams","searchParams","params","layoutRouterContext","parentParams","window","workAsyncStorage","require","clientSearchParams","clientParams","store","getStore","createSearchParamsFromClient","createParamsFromClient","createRenderSearchParamsFromClient","createRenderParamsFromClient"],"mappings":";;;;;AAGA,SAASA,cAAc,QAAQ,mCAAkC;AAGjE,SAASC,mBAAmB,QAAQ,qDAAoD;AACxF,SAASC,GAAG,QAAQ,QAAO;AAC3B,SAASC,+BAA+B,QAAQ,kBAAiB;AACjE,SAASC,mBAAmB,QAAQ,uDAAsD;AAT1F;;;;;;;AAmBO,SAASC,eAAe,EAC7BC,SAAS,EACTC,oBAAoB,EAQrB;IACC,IAAIC;IACJ,IAAIC;IACJ,IAAIF,yBAAyB,MAAM;QACjCC,eAAeD,qBAAqBC,YAAY;QAChDC,SAASF,qBAAqBE,MAAM;IACtC,OAAO;QACL,2EAA2E;QAC3E,+DAA+D;QAC/D,MAAMC,0BAAsBR,4MAAAA,EAAID,oPAAAA;QAChCQ,SACEC,wBAAwB,OAAOA,oBAAoBC,YAAY,GAAG,CAAC;QAErE,4EAA4E;QAC5E,iEAAiE;QACjE,4EAA4E;QAC5E,iDAAiD;QACjD,6DAA6D;QAC7DH,mBAAeL,mMAAAA,MAAgCD,4MAAAA,EAAIE,sPAAAA;IACrD;IAEA,IAAI,OAAOQ,WAAW,kBAAa;QACjC,MAAM,EAAEC,gBAAgB,EAAE,GACxBC,QAAQ;QAEV,IAAIC;QACJ,IAAIC;QACJ,yEAAyE;QACzE,wEAAwE;QACxE,MAAMC,QAAQJ,iBAAiBK,QAAQ;QACvC,IAAI,CAACD,OAAO;YACV,MAAM,OAAA,cAEL,CAFK,IAAIjB,4LAAAA,CACR,6EADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEA,MAAM,EAAEmB,4BAA4B,EAAE,GACpCL,QAAQ;QACVC,qBAAqBI,6BAA6BX,cAAcS;QAEhE,MAAM,EAAEG,sBAAsB,EAAE,GAC9BN,QAAQ;QACVE,eAAeI,uBAAuBX,QAAQQ;QAE9C,OAAA,WAAA,OAAO,8NAAA,EAACX,WAAAA;YAAUG,QAAQO;YAAcR,cAAcO;;IACxD,OAAO;;AAUT","ignoreList":[0]}}, - {"offset": {"line": 11104, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-segment.tsx"],"sourcesContent":["'use client'\n\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\n\n/**\n * When the Page is a client component we send the params to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Segment component.\n *\n * additionally we may send a promise representing params. We don't ever use this passed\n * value but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations\n * such as when cacheComponents is enabled. It is up to the caller to decide if the promises are needed.\n */\nexport function ClientSegmentRoot({\n Component,\n slots,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n slots: { [key: string]: React.ReactNode }\n serverProvidedParams: null | {\n params: Params\n promises: Array> | null\n }\n}) {\n let params: Params\n if (serverProvidedParams !== null) {\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params\n // as props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientParams: Promise\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling params in a client segment such as a Layout or Template.'\n )\n }\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return \n } else {\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n return \n }\n}\n"],"names":["InvariantError","LayoutRouterContext","use","ClientSegmentRoot","Component","slots","serverProvidedParams","params","layoutRouterContext","parentParams","window","workAsyncStorage","require","clientParams","store","getStore","createParamsFromClient","createRenderParamsFromClient"],"mappings":";;;;;AAEA,SAASA,cAAc,QAAQ,mCAAkC;AAGjE,SAASC,mBAAmB,QAAQ,qDAAoD;AACxF,SAASC,GAAG,QAAQ,QAAO;AAN3B;;;;;AAgBO,SAASC,kBAAkB,EAChCC,SAAS,EACTC,KAAK,EACLC,oBAAoB,EAQrB;IACC,IAAIC;IACJ,IAAID,yBAAyB,MAAM;QACjCC,SAASD,qBAAqBC,MAAM;IACtC,OAAO;QACL,wEAAwE;QACxE,kEAAkE;QAClE,MAAMC,0BAAsBN,4MAAAA,EAAID,oPAAAA;QAChCM,SACEC,wBAAwB,OAAOA,oBAAoBC,YAAY,GAAG,CAAC;IACvE;IAEA,IAAI,OAAOC,WAAW,kBAAa;QACjC,MAAM,EAAEC,gBAAgB,EAAE,GACxBC,QAAQ;QAEV,IAAIC;QACJ,yEAAyE;QACzE,wEAAwE;QACxE,MAAMC,QAAQH,iBAAiBI,QAAQ;QACvC,IAAI,CAACD,OAAO;YACV,MAAM,OAAA,cAEL,CAFK,IAAId,4LAAAA,CACR,uGADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEA,MAAM,EAAEgB,sBAAsB,EAAE,GAC9BJ,QAAQ;QACVC,eAAeG,uBAAuBT,QAAQO;QAE9C,OAAA,WAAA,OAAO,8NAAA,EAACV,WAAAA;YAAW,GAAGC,KAAK;YAAEE,QAAQM;;IACvC,OAAO;;AAMT","ignoreList":[0]}}, - {"offset": {"line": 11153, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/icon-mark.tsx"],"sourcesContent":["'use client'\n\n// This is a client component that only renders during SSR,\n// but will be replaced during streaming with an icon insertion script tag.\n// We don't want it to be presented anywhere so it's only visible during streaming,\n// right after the icon meta tags so that browser can pick it up as soon as it's rendered.\n// Note: we don't just emit the script here because we only need the script if it's not in the head,\n// and we need it to be hoistable alongside the other metadata but sync scripts are not hoistable.\nexport const IconMark = () => {\n if (typeof window !== 'undefined') {\n return null\n }\n return \n}\n"],"names":["IconMark","window","meta","name"],"mappings":";;;;;AAAA;;AAQO,MAAMA,WAAW;IACtB,IAAI,OAAOC,WAAW,aAAa;;IAGnC,OAAA,WAAA,OAAO,8NAAA,EAACC,QAAAA;QAAKC,MAAK;;AACpB,EAAC","ignoreList":[0]}}, - {"offset": {"line": 11171, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-components.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from './boundary-constants'\n\n// We use a namespace object to allow us to recover the name of the function\n// at runtime even when production bundling/minification is used.\nconst NameSpace = {\n [METADATA_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [VIEWPORT_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [OUTLET_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [ROOT_LAYOUT_BOUNDARY_NAME]: function ({\n children,\n }: {\n children: ReactNode\n }) {\n return children\n },\n}\n\nexport const MetadataBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[METADATA_BOUNDARY_NAME.slice(0) as typeof METADATA_BOUNDARY_NAME]\n\nexport const ViewportBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[VIEWPORT_BOUNDARY_NAME.slice(0) as typeof VIEWPORT_BOUNDARY_NAME]\n\nexport const OutletBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[OUTLET_BOUNDARY_NAME.slice(0) as typeof OUTLET_BOUNDARY_NAME]\n\nexport const RootLayoutBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[\n ROOT_LAYOUT_BOUNDARY_NAME.slice(0) as typeof ROOT_LAYOUT_BOUNDARY_NAME\n ]\n"],"names":["METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","NameSpace","children","MetadataBoundary","slice","ViewportBoundary","OutletBoundary","RootLayoutBoundary"],"mappings":";;;;;;;;;;AAGA,SACEA,sBAAsB,EACtBC,sBAAsB,EACtBC,oBAAoB,EACpBC,yBAAyB,QACpB,uBAAsB;AAR7B;;AAUA,4EAA4E;AAC5E,iEAAiE;AACjE,MAAMC,YAAY;IAChB,CAACJ,0MAAAA,CAAuB,EAAE,SAAU,EAAEK,QAAQ,EAA2B;QACvE,OAAOA;IACT;IACA,CAACJ,0MAAAA,CAAuB,EAAE,SAAU,EAAEI,QAAQ,EAA2B;QACvE,OAAOA;IACT;IACA,CAACH,wMAAAA,CAAqB,EAAE,SAAU,EAAEG,QAAQ,EAA2B;QACrE,OAAOA;IACT;IACA,CAACF,6MAAAA,CAA0B,EAAE,SAAU,EACrCE,QAAQ,EAGT;QACC,OAAOA;IACT;AACF;AAEO,MAAMC,mBAEX,AADA,4DAC4D,oBADoB;AAEhFF,SAAS,CAACJ,0MAAAA,CAAuBO,KAAK,CAAC,GAAoC,CAAA;AAEtE,MAAMC,mBACX,AACA,4DAA4D,oBADoB;AAEhFJ,SAAS,CAACH,0MAAAA,CAAuBM,KAAK,CAAC,GAAoC,CAAA;AAEtE,MAAME,iBACX,AACA,4DAA4D,oBADoB;AAEhFL,SAAS,CAACF,wMAAAA,CAAqBK,KAAK,CAAC,GAAkC,CAAA;AAElE,MAAMG,qBACX,AACA,4DAA4D,oBADoB;AAEhFN,SAAS,CACPD,6MAAAA,CAA0BI,KAAK,CAAC,GACjC,CAAA","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_9dfd6bbc._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_9dfd6bbc._.js deleted file mode 100644 index 78e5c1f..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_9dfd6bbc._.js +++ /dev/null @@ -1,3694 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/lib/metadata/get-metadata-route.js [app-rsc] (ecmascript, Next.js server utility)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/lib/metadata/get-metadata-route.js [app-rsc] (ecmascript)"));}), -"[project]/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time truthy", 1) { - module.exports = __turbopack_context__.r("[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)"); - } else //TURBOPACK unreachable - ; - } else //TURBOPACK unreachable - ; - } -} //# sourceMappingURL=module.compiled.js.map -}), -"[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript, Next.js server utility)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript)"));}), -"[project]/node_modules/next/dist/esm/server/instrumentation/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getRevalidateReason", - ()=>getRevalidateReason -]); -function getRevalidateReason(params) { - if (params.isOnDemandRevalidate) { - return 'on-demand'; - } - if (params.isStaticGeneration) { - return 'stale'; - } - return undefined; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/interop-default.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Interop between "export default" and "module.exports". - */ __turbopack_context__.s([ - "interopDefault", - ()=>interopDefault -]); -function interopDefault(mod) { - return mod.default || mod; -} //# sourceMappingURL=interop-default.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/strip-flight-headers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "stripFlightHeaders", - ()=>stripFlightHeaders -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -; -function stripFlightHeaders(headers) { - for (const header of __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FLIGHT_HEADERS"]){ - delete headers[header]; - } -} //# sourceMappingURL=strip-flight-headers.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/headers.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HeadersAdapter", - ()=>HeadersAdapter, - "ReadonlyHeadersError", - ()=>ReadonlyHeadersError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-rsc] (ecmascript)"); -; -class ReadonlyHeadersError extends Error { - constructor(){ - super('Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers'); - } - static callable() { - throw new ReadonlyHeadersError(); - } -} -class HeadersAdapter extends Headers { - constructor(headers){ - // We've already overridden the methods that would be called, so we're just - // calling the super constructor to ensure that the instanceof check works. - super(); - this.headers = new Proxy(headers, { - get (target, prop, receiver) { - // Because this is just an object, we expect that all "get" operations - // are for properties. If it's a "get" for a symbol, we'll just return - // the symbol. - if (typeof prop === 'symbol') { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - const lowercased = prop.toLowerCase(); - // Let's find the original casing of the key. This assumes that there is - // no mixed case keys (e.g. "Content-Type" and "content-type") in the - // headers object. - const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased); - // If the original casing doesn't exist, return undefined. - if (typeof original === 'undefined') return; - // If the original casing exists, return the value. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, original, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'symbol') { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].set(target, prop, value, receiver); - } - const lowercased = prop.toLowerCase(); - // Let's find the original casing of the key. This assumes that there is - // no mixed case keys (e.g. "Content-Type" and "content-type") in the - // headers object. - const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased); - // If the original casing doesn't exist, use the prop as the key. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].set(target, original ?? prop, value, receiver); - }, - has (target, prop) { - if (typeof prop === 'symbol') return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].has(target, prop); - const lowercased = prop.toLowerCase(); - // Let's find the original casing of the key. This assumes that there is - // no mixed case keys (e.g. "Content-Type" and "content-type") in the - // headers object. - const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased); - // If the original casing doesn't exist, return false. - if (typeof original === 'undefined') return false; - // If the original casing exists, return true. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].has(target, original); - }, - deleteProperty (target, prop) { - if (typeof prop === 'symbol') return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].deleteProperty(target, prop); - const lowercased = prop.toLowerCase(); - // Let's find the original casing of the key. This assumes that there is - // no mixed case keys (e.g. "Content-Type" and "content-type") in the - // headers object. - const original = Object.keys(headers).find((o)=>o.toLowerCase() === lowercased); - // If the original casing doesn't exist, return true. - if (typeof original === 'undefined') return true; - // If the original casing exists, delete the property. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].deleteProperty(target, original); - } - }); - } - /** - * Seals a Headers instance to prevent modification by throwing an error when - * any mutating method is called. - */ static seal(headers) { - return new Proxy(headers, { - get (target, prop, receiver) { - switch(prop){ - case 'append': - case 'delete': - case 'set': - return ReadonlyHeadersError.callable; - default: - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - } - }); - } - /** - * Merges a header value into a string. This stores multiple values as an - * array, so we need to merge them into a string. - * - * @param value a header value - * @returns a merged header value (a string) - */ merge(value) { - if (Array.isArray(value)) return value.join(', '); - return value; - } - /** - * Creates a Headers instance from a plain object or a Headers instance. - * - * @param headers a plain object or a Headers instance - * @returns a headers instance - */ static from(headers) { - if (headers instanceof Headers) return headers; - return new HeadersAdapter(headers); - } - append(name, value) { - const existing = this.headers[name]; - if (typeof existing === 'string') { - this.headers[name] = [ - existing, - value - ]; - } else if (Array.isArray(existing)) { - existing.push(value); - } else { - this.headers[name] = value; - } - } - delete(name) { - delete this.headers[name]; - } - get(name) { - const value = this.headers[name]; - if (typeof value !== 'undefined') return this.merge(value); - return null; - } - has(name) { - return typeof this.headers[name] !== 'undefined'; - } - set(name, value) { - this.headers[name] = value; - } - forEach(callbackfn, thisArg) { - for (const [name, value] of this.entries()){ - callbackfn.call(thisArg, value, name, this); - } - } - *entries() { - for (const key of Object.keys(this.headers)){ - const name = key.toLowerCase(); - // We assert here that this is a string because we got it from the - // Object.keys() call above. - const value = this.get(name); - yield [ - name, - value - ]; - } - } - *keys() { - for (const key of Object.keys(this.headers)){ - const name = key.toLowerCase(); - yield name; - } - } - *values() { - for (const key of Object.keys(this.headers)){ - // We assert here that this is a string because we got it from the - // Object.keys() call above. - const value = this.get(key); - yield value; - } - } - [Symbol.iterator]() { - return this.entries(); - } -} //# sourceMappingURL=headers.js.map -}), -"[project]/node_modules/next/dist/esm/server/api-utils/index.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ApiError", - ()=>ApiError, - "COOKIE_NAME_PRERENDER_BYPASS", - ()=>COOKIE_NAME_PRERENDER_BYPASS, - "COOKIE_NAME_PRERENDER_DATA", - ()=>COOKIE_NAME_PRERENDER_DATA, - "RESPONSE_LIMIT_DEFAULT", - ()=>RESPONSE_LIMIT_DEFAULT, - "SYMBOL_CLEARED_COOKIES", - ()=>SYMBOL_CLEARED_COOKIES, - "SYMBOL_PREVIEW_DATA", - ()=>SYMBOL_PREVIEW_DATA, - "checkIsOnDemandRevalidate", - ()=>checkIsOnDemandRevalidate, - "clearPreviewData", - ()=>clearPreviewData, - "redirect", - ()=>redirect, - "sendError", - ()=>sendError, - "sendStatusCode", - ()=>sendStatusCode, - "setLazyProp", - ()=>setLazyProp, - "wrapApiHandler", - ()=>wrapApiHandler -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/headers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -; -; -; -; -function wrapApiHandler(page, handler) { - return (...args)=>{ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().setRootSpanAttribute('next.route', page); - // Call API route method - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])().trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NodeSpan"].runHandler, { - spanName: `executing api route (pages) ${page}` - }, ()=>handler(...args)); - }; -} -function sendStatusCode(res, statusCode) { - res.statusCode = statusCode; - return res; -} -function redirect(res, statusOrUrl, url) { - if (typeof statusOrUrl === 'string') { - url = statusOrUrl; - statusOrUrl = 307; - } - if (typeof statusOrUrl !== 'number' || typeof url !== 'string') { - throw Object.defineProperty(new Error(`Invalid redirect arguments. Please use a single argument URL, e.g. res.redirect('/destination') or use a status code and URL, e.g. res.redirect(307, '/destination').`), "__NEXT_ERROR_CODE", { - value: "E389", - enumerable: false, - configurable: true - }); - } - res.writeHead(statusOrUrl, { - Location: url - }); - res.write(url); - res.end(); - return res; -} -function checkIsOnDemandRevalidate(req, previewProps) { - const headers = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HeadersAdapter"].from(req.headers); - const previewModeId = headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PRERENDER_REVALIDATE_HEADER"]); - const isOnDemandRevalidate = previewModeId === previewProps.previewModeId; - const revalidateOnlyGenerated = headers.has(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER"]); - return { - isOnDemandRevalidate, - revalidateOnlyGenerated - }; -} -const COOKIE_NAME_PRERENDER_BYPASS = `__prerender_bypass`; -const COOKIE_NAME_PRERENDER_DATA = `__next_preview_data`; -const RESPONSE_LIMIT_DEFAULT = 4 * 1024 * 1024; -const SYMBOL_PREVIEW_DATA = Symbol(COOKIE_NAME_PRERENDER_DATA); -const SYMBOL_CLEARED_COOKIES = Symbol(COOKIE_NAME_PRERENDER_BYPASS); -function clearPreviewData(res, options = {}) { - if (SYMBOL_CLEARED_COOKIES in res) { - return res; - } - const { serialize } = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/cookie/index.js [app-rsc] (ecmascript)"); - const previous = res.getHeader('Set-Cookie'); - res.setHeader(`Set-Cookie`, [ - ...typeof previous === 'string' ? [ - previous - ] : Array.isArray(previous) ? previous : [], - serialize(COOKIE_NAME_PRERENDER_BYPASS, '', { - // To delete a cookie, set `expires` to a date in the past: - // https://tools.ietf.org/html/rfc6265#section-4.1.1 - // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted. - expires: new Date(0), - httpOnly: true, - sameSite: ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 'lax', - secure: ("TURBOPACK compile-time value", "development") !== 'development', - path: '/', - ...options.path !== undefined ? { - path: options.path - } : undefined - }), - serialize(COOKIE_NAME_PRERENDER_DATA, '', { - // To delete a cookie, set `expires` to a date in the past: - // https://tools.ietf.org/html/rfc6265#section-4.1.1 - // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted. - expires: new Date(0), - httpOnly: true, - sameSite: ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 'lax', - secure: ("TURBOPACK compile-time value", "development") !== 'development', - path: '/', - ...options.path !== undefined ? { - path: options.path - } : undefined - }) - ]); - Object.defineProperty(res, SYMBOL_CLEARED_COOKIES, { - value: true, - enumerable: false - }); - return res; -} -class ApiError extends Error { - constructor(statusCode, message){ - super(message); - this.statusCode = statusCode; - } -} -function sendError(res, statusCode, message) { - res.statusCode = statusCode; - res.statusMessage = message; - res.end(message); -} -function setLazyProp({ req }, prop, getter) { - const opts = { - configurable: true, - enumerable: true - }; - const optsReset = { - ...opts, - writable: true - }; - Object.defineProperty(req, prop, { - ...opts, - get: ()=>{ - const value = getter(); - // we set the property on the object to avoid recalculating it - Object.defineProperty(req, prop, { - ...optsReset, - value - }); - return value; - }, - set: (value)=>{ - Object.defineProperty(req, prop, { - ...optsReset, - value - }); - } - }); -} //# sourceMappingURL=index.js.map -}), -"[project]/node_modules/next/dist/esm/server/api-utils/get-cookie-parser.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Parse cookies from the `headers` of request - * @param req request object - */ __turbopack_context__.s([ - "getCookieParser", - ()=>getCookieParser -]); -function getCookieParser(headers) { - return function parseCookie() { - const { cookie } = headers; - if (!cookie) { - return {}; - } - const { parse: parseCookieFn } = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/cookie/index.js [app-rsc] (ecmascript)"); - return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie); - }; -} //# sourceMappingURL=get-cookie-parser.js.map -}), -"[project]/node_modules/next/dist/esm/server/base-http/index.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "BaseNextRequest", - ()=>BaseNextRequest, - "BaseNextResponse", - ()=>BaseNextResponse -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$get$2d$cookie$2d$parser$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/api-utils/get-cookie-parser.js [app-rsc] (ecmascript)"); -; -; -class BaseNextRequest { - constructor(method, url, body){ - this.method = method; - this.url = url; - this.body = body; - } - // Utils implemented using the abstract methods above - get cookies() { - if (this._cookies) return this._cookies; - return this._cookies = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$get$2d$cookie$2d$parser$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getCookieParser"])(this.headers)(); - } -} -class BaseNextResponse { - constructor(destination){ - this.destination = destination; - } - // Utils implemented using the abstract methods above - redirect(destination, statusCode) { - this.setHeader('Location', destination); - this.statusCode = statusCode; - // Since IE11 doesn't support the 308 header add backwards - // compatibility using refresh header - if (statusCode === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RedirectStatusCode"].PermanentRedirect) { - this.setHeader('Refresh', `0;url=${destination}`); - } - return this; - } -} //# sourceMappingURL=index.js.map -}), -"[project]/node_modules/next/dist/esm/server/base-http/node.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "NodeNextRequest", - ()=>NodeNextRequest, - "NodeNextResponse", - ()=>NodeNextResponse -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/api-utils/index.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request-meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/base-http/index.js [app-rsc] (ecmascript)"); -; -; -; -let prop; -class NodeNextRequest extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BaseNextRequest"] { - static #_ = prop = _NEXT_REQUEST_META = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_REQUEST_META"]; - constructor(_req){ - var _this__req; - super(_req.method.toUpperCase(), _req.url, _req), this._req = _req, this.headers = this._req.headers, this.fetchMetrics = (_this__req = this._req) == null ? void 0 : _this__req.fetchMetrics, this[_NEXT_REQUEST_META] = this._req[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_REQUEST_META"]] || {}, this.streaming = false; - } - get originalRequest() { - // Need to mimic these changes to the original req object for places where we use it: - // render.tsx, api/ssg requests - this._req[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_REQUEST_META"]] = this[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_REQUEST_META"]]; - this._req.url = this.url; - this._req.cookies = this.cookies; - return this._req; - } - set originalRequest(value) { - this._req = value; - } - /** - * Returns the request body as a Web Readable Stream. The body here can only - * be read once as the body will start flowing as soon as the data handler - * is attached. - * - * @internal - */ stream() { - if (this.streaming) { - throw Object.defineProperty(new Error('Invariant: NodeNextRequest.stream() can only be called once'), "__NEXT_ERROR_CODE", { - value: "E467", - enumerable: false, - configurable: true - }); - } - this.streaming = true; - return new ReadableStream({ - start: (controller)=>{ - this._req.on('data', (chunk)=>{ - controller.enqueue(new Uint8Array(chunk)); - }); - this._req.on('end', ()=>{ - controller.close(); - }); - this._req.on('error', (err)=>{ - controller.error(err); - }); - } - }); - } -} -class NodeNextResponse extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BaseNextResponse"] { - get originalResponse() { - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SYMBOL_CLEARED_COOKIES"] in this) { - this._res[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SYMBOL_CLEARED_COOKIES"]] = this[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$api$2d$utils$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SYMBOL_CLEARED_COOKIES"]]; - } - return this._res; - } - constructor(_res){ - super(_res), this._res = _res, this.textBody = undefined; - } - get sent() { - return this._res.finished || this._res.headersSent; - } - get statusCode() { - return this._res.statusCode; - } - set statusCode(value) { - this._res.statusCode = value; - } - get statusMessage() { - return this._res.statusMessage; - } - set statusMessage(value) { - this._res.statusMessage = value; - } - setHeader(name, value) { - this._res.setHeader(name, value); - return this; - } - removeHeader(name) { - this._res.removeHeader(name); - return this; - } - getHeaderValues(name) { - const values = this._res.getHeader(name); - if (values === undefined) return undefined; - return (Array.isArray(values) ? values : [ - values - ]).map((value)=>value.toString()); - } - hasHeader(name) { - return this._res.hasHeader(name); - } - getHeader(name) { - const values = this.getHeaderValues(name); - return Array.isArray(values) ? values.join(',') : undefined; - } - getHeaders() { - return this._res.getHeaders(); - } - appendHeader(name, value) { - const currentValues = this.getHeaderValues(name) ?? []; - if (!currentValues.includes(value)) { - this._res.setHeader(name, [ - ...currentValues, - value - ]); - } - return this; - } - body(value) { - this.textBody = value; - return this; - } - send() { - this._res.end(this.textBody); - } - onClose(callback) { - this.originalResponse.on('close', callback); - } -} -var _NEXT_REQUEST_META; //# sourceMappingURL=node.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/experimental/ppr.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * If set to `incremental`, only those leaf pages that export - * `experimental_ppr = true` will have partial prerendering enabled. If any - * page exports this value as `false` or does not export it at all will not - * have partial prerendering enabled. If set to a boolean, the options for - * `experimental_ppr` will be ignored. - */ /** - * Returns true if partial prerendering is enabled for the application. It does - * not tell you if a given route has PPR enabled, as that requires analysis of - * the route's configuration. - * - * @see {@link checkIsRoutePPREnabled} - for checking if a specific route has PPR enabled. - */ __turbopack_context__.s([ - "checkIsAppPPREnabled", - ()=>checkIsAppPPREnabled, - "checkIsRoutePPREnabled", - ()=>checkIsRoutePPREnabled -]); -function checkIsAppPPREnabled(config) { - // If the config is undefined, partial prerendering is disabled. - if (typeof config === 'undefined') return false; - // If the config is a boolean, use it directly. - if (typeof config === 'boolean') return config; - // If the config is a string, it must be 'incremental' to enable partial - // prerendering. - if (config === 'incremental') return true; - return false; -} -function checkIsRoutePPREnabled(config) { - // If the config is undefined, partial prerendering is disabled. - if (typeof config === 'undefined') return false; - // If the config is a boolean, use it directly. - if (typeof config === 'boolean') return config; - return false; -} //# sourceMappingURL=ppr.js.map -}), -"[project]/node_modules/next/dist/esm/server/route-modules/checks.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isAppPageRouteModule", - ()=>isAppPageRouteModule, - "isAppRouteRouteModule", - ()=>isAppRouteRouteModule, - "isPagesAPIRouteModule", - ()=>isPagesAPIRouteModule, - "isPagesRouteModule", - ()=>isPagesRouteModule -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript)"); -; -function isAppRouteRouteModule(routeModule) { - return routeModule.definition.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].APP_ROUTE; -} -function isAppPageRouteModule(routeModule) { - return routeModule.definition.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].APP_PAGE; -} -function isPagesRouteModule(routeModule) { - return routeModule.definition.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].PAGES; -} -function isPagesAPIRouteModule(routeModule) { - return routeModule.definition.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RouteKind"].PAGES_API; -} //# sourceMappingURL=checks.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is a leading slash. - * If there is not a leading slash, one is added, otherwise it is noop. - */ __turbopack_context__.s([ - "ensureLeadingSlash", - ()=>ensureLeadingSlash -]); -function ensureLeadingSlash(path) { - return path.startsWith('/') ? path : `/${path}`; -} //# sourceMappingURL=ensure-leading-slash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "normalizeAppPath", - ()=>normalizeAppPath, - "normalizeRscURL", - ()=>normalizeRscURL -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$page$2d$path$2f$ensure$2d$leading$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -; -; -function normalizeAppPath(route) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$page$2d$path$2f$ensure$2d$leading$2d$slash$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ensureLeadingSlash"])(route.split('/').reduce((pathname, segment, index, segments)=>{ - // Empty segments are ignored. - if (!segment) { - return pathname; - } - // Groups are ignored. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isGroupSegment"])(segment)) { - return pathname; - } - // Parallel segments are ignored. - if (segment[0] === '@') { - return pathname; - } - // The last segment (if it's a leaf) should be ignored. - if ((segment === 'page' || segment === 'route') && index === segments.length - 1) { - return pathname; - } - return `${pathname}/${segment}`; - }, '')); -} -function normalizeRscURL(url) { - return url.replace(/\.rsc($|\?)/, '$1'); -} //# sourceMappingURL=app-paths.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "INTERCEPTION_ROUTE_MARKERS", - ()=>INTERCEPTION_ROUTE_MARKERS, - "extractInterceptionRouteInformation", - ()=>extractInterceptionRouteInformation, - "isInterceptionRouteAppPath", - ()=>isInterceptionRouteAppPath -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -; -const INTERCEPTION_ROUTE_MARKERS = [ - '(..)(..)', - '(.)', - '(..)', - '(...)' -]; -function isInterceptionRouteAppPath(path) { - // TODO-APP: add more serious validation - return path.split('/').find((segment)=>INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m))) !== undefined; -} -function extractInterceptionRouteInformation(path) { - let interceptingRoute; - let marker; - let interceptedRoute; - for (const segment of path.split('/')){ - marker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - ; - [interceptingRoute, interceptedRoute] = path.split(marker, 2); - break; - } - } - if (!interceptingRoute || !marker || !interceptedRoute) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`), "__NEXT_ERROR_CODE", { - value: "E269", - enumerable: false, - configurable: true - }); - } - interceptingRoute = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed - ; - switch(marker){ - case '(.)': - // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route - if (interceptingRoute === '/') { - interceptedRoute = `/${interceptedRoute}`; - } else { - interceptedRoute = interceptingRoute + '/' + interceptedRoute; - } - break; - case '(..)': - // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route - if (interceptingRoute === '/') { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`), "__NEXT_ERROR_CODE", { - value: "E207", - enumerable: false, - configurable: true - }); - } - interceptedRoute = interceptingRoute.split('/').slice(0, -1).concat(interceptedRoute).join('/'); - break; - case '(...)': - // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route - interceptedRoute = '/' + interceptedRoute; - break; - case '(..)(..)': - // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route - const splitInterceptingRoute = interceptingRoute.split('/'); - if (splitInterceptingRoute.length <= 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`), "__NEXT_ERROR_CODE", { - value: "E486", - enumerable: false, - configurable: true - }); - } - interceptedRoute = splitInterceptingRoute.slice(0, -2).concat(interceptedRoute).join('/'); - break; - default: - throw Object.defineProperty(new Error('Invariant: unexpected marker'), "__NEXT_ERROR_CODE", { - value: "E112", - enumerable: false, - configurable: true - }); - } - return { - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=interception-routes.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/get-segment-param.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getParamProperties", - ()=>getParamProperties, - "getSegmentParam", - ()=>getSegmentParam, - "isCatchAll", - ()=>isCatchAll -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -; -function getSegmentParam(segment) { - const interceptionMarker = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INTERCEPTION_ROUTE_MARKERS"].find((marker)=>segment.startsWith(marker)); - // if an interception marker is part of the path segment, we need to jump ahead - // to the relevant portion for param parsing - if (interceptionMarker) { - segment = segment.slice(interceptionMarker.length); - } - if (segment.startsWith('[[...') && segment.endsWith(']]')) { - return { - // TODO-APP: Optional catchall does not currently work with parallel routes, - // so for now aren't handling a potential interception marker. - paramType: 'optional-catchall', - paramName: segment.slice(5, -2) - }; - } - if (segment.startsWith('[...') && segment.endsWith(']')) { - return { - paramType: interceptionMarker ? `catchall-intercepted-${interceptionMarker}` : 'catchall', - paramName: segment.slice(4, -1) - }; - } - if (segment.startsWith('[') && segment.endsWith(']')) { - return { - paramType: interceptionMarker ? `dynamic-intercepted-${interceptionMarker}` : 'dynamic', - paramName: segment.slice(1, -1) - }; - } - return null; -} -function isCatchAll(type) { - return type === 'catchall' || type === 'catchall-intercepted-(..)(..)' || type === 'catchall-intercepted-(.)' || type === 'catchall-intercepted-(..)' || type === 'catchall-intercepted-(...)' || type === 'optional-catchall'; -} -function getParamProperties(paramType) { - let repeat = false; - let optional = false; - switch(paramType){ - case 'catchall': - case 'catchall-intercepted-(..)(..)': - case 'catchall-intercepted-(.)': - case 'catchall-intercepted-(..)': - case 'catchall-intercepted-(...)': - repeat = true; - break; - case 'optional-catchall': - repeat = true; - optional = true; - break; - case 'dynamic': - case 'dynamic-intercepted-(..)(..)': - case 'dynamic-intercepted-(.)': - case 'dynamic-intercepted-(..)': - case 'dynamic-intercepted-(...)': - break; - default: - paramType; - } - return { - repeat, - optional - }; -} //# sourceMappingURL=get-segment-param.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/routes/app.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isInterceptionAppRoute", - ()=>isInterceptionAppRoute, - "isNormalizedAppRoute", - ()=>isNormalizedAppRoute, - "parseAppRoute", - ()=>parseAppRoute, - "parseAppRouteSegment", - ()=>parseAppRouteSegment -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$get$2d$segment$2d$param$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/get-segment-param.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -; -; -; -function parseAppRouteSegment(segment) { - if (segment === '') { - return null; - } - // Check if the segment starts with an interception marker - const interceptionMarker = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["INTERCEPTION_ROUTE_MARKERS"].find((m)=>segment.startsWith(m)); - const param = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$get$2d$segment$2d$param$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getSegmentParam"])(segment); - if (param) { - return { - type: 'dynamic', - name: segment, - param, - interceptionMarker - }; - } else if (segment.startsWith('(') && segment.endsWith(')')) { - return { - type: 'route-group', - name: segment, - interceptionMarker - }; - } else if (segment.startsWith('@')) { - return { - type: 'parallel-route', - name: segment, - interceptionMarker - }; - } else { - return { - type: 'static', - name: segment, - interceptionMarker - }; - } -} -function isNormalizedAppRoute(route) { - return route.normalized; -} -function isInterceptionAppRoute(route) { - return route.interceptionMarker !== undefined && route.interceptingRoute !== undefined && route.interceptedRoute !== undefined; -} -function parseAppRoute(pathname, normalized) { - const pathnameSegments = pathname.split('/').filter(Boolean); - // Build segments array with static and dynamic segments - const segments = []; - // Parse if this is an interception route. - let interceptionMarker; - let interceptingRoute; - let interceptedRoute; - for (const segment of pathnameSegments){ - // Parse the segment into an AppSegment. - const appSegment = parseAppRouteSegment(segment); - if (!appSegment) { - continue; - } - if (normalized && (appSegment.type === 'route-group' || appSegment.type === 'parallel-route')) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`), "__NEXT_ERROR_CODE", { - value: "E923", - enumerable: false, - configurable: true - }); - } - segments.push(appSegment); - if (appSegment.interceptionMarker) { - const parts = pathname.split(appSegment.interceptionMarker); - if (parts.length !== 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${pathname}`), "__NEXT_ERROR_CODE", { - value: "E924", - enumerable: false, - configurable: true - }); - } - interceptingRoute = normalized ? parseAppRoute(parts[0], true) : parseAppRoute(parts[0], false); - interceptedRoute = normalized ? parseAppRoute(parts[1], true) : parseAppRoute(parts[1], false); - interceptionMarker = appSegment.interceptionMarker; - } - } - const dynamicSegments = segments.filter((segment)=>segment.type === 'dynamic'); - return { - normalized, - pathname, - segments, - dynamicSegments, - interceptionMarker, - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=app.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "parseLoaderTree", - ()=>parseLoaderTree -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-rsc] (ecmascript)"); -; -function parseLoaderTree(tree) { - const [segment, parallelRoutes, modules] = tree; - const { layout, template } = modules; - let { page } = modules; - // a __DEFAULT__ segment means that this route didn't match any of the - // segments in the route, so we should use the default page - page = segment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"] ? modules.defaultPage : page; - const conventionPath = layout?.[1] || template?.[1] || page?.[1]; - return { - page, - segment, - modules, - /* it can be either layout / template / page */ conventionPath, - parallelRoutes - }; -} //# sourceMappingURL=parse-loader-tree.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-prefix-from-param-type.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "interceptionPrefixFromParamType", - ()=>interceptionPrefixFromParamType -]); -function interceptionPrefixFromParamType(paramType) { - switch(paramType){ - case 'catchall-intercepted-(..)(..)': - case 'dynamic-intercepted-(..)(..)': - return '(..)(..)'; - case 'catchall-intercepted-(.)': - case 'dynamic-intercepted-(.)': - return '(.)'; - case 'catchall-intercepted-(..)': - case 'dynamic-intercepted-(..)': - return '(..)'; - case 'catchall-intercepted-(...)': - case 'dynamic-intercepted-(...)': - return '(...)'; - case 'catchall': - case 'dynamic': - case 'optional-catchall': - default: - return null; - } -} //# sourceMappingURL=interception-prefix-from-param-type.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "resolveParamValue", - ()=>resolveParamValue -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$prefix$2d$from$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-prefix-from-param-type.js [app-rsc] (ecmascript)"); -; -; -/** - * Extracts the param value from a path segment, handling interception markers - * based on the expected param type. - * - * @param pathSegment - The path segment to extract the value from - * @param params - The current params object for resolving dynamic param references - * @param paramType - The expected param type which may include interception marker info - * @returns The extracted param value - */ function getParamValueFromSegment(pathSegment, params, paramType) { - // If the segment is dynamic, resolve it from the params object - if (pathSegment.type === 'dynamic') { - return params[pathSegment.param.paramName]; - } - // If the paramType indicates this is an intercepted param, strip the marker - // that matches the interception marker in the param type - const interceptionPrefix = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$prefix$2d$from$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["interceptionPrefixFromParamType"])(paramType); - if (interceptionPrefix === pathSegment.interceptionMarker) { - return pathSegment.name.replace(pathSegment.interceptionMarker, ''); - } - // For static segments, use the name - return pathSegment.name; -} -function resolveParamValue(paramName, paramType, depth, route, params) { - switch(paramType){ - case 'catchall': - case 'optional-catchall': - case 'catchall-intercepted-(..)(..)': - case 'catchall-intercepted-(.)': - case 'catchall-intercepted-(..)': - case 'catchall-intercepted-(...)': - // For catchall routes, derive from pathname using depth to determine - // which segments to use - const processedSegments = []; - // Process segments to handle any embedded dynamic params - for(let index = depth; index < route.segments.length; index++){ - const pathSegment = route.segments[index]; - if (pathSegment.type === 'static') { - let value = pathSegment.name; - // For intercepted catch-all params, strip the marker from the first segment - const interceptionPrefix = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$prefix$2d$from$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["interceptionPrefixFromParamType"])(paramType); - if (interceptionPrefix && index === depth && interceptionPrefix === pathSegment.interceptionMarker) { - // Strip the interception marker from the value - value = value.replace(pathSegment.interceptionMarker, ''); - } - processedSegments.push(value); - } else { - // If the segment is a param placeholder, check if we have its value - if (!params.hasOwnProperty(pathSegment.param.paramName)) { - // If the segment is an optional catchall, we can break out of the - // loop because it's optional! - if (pathSegment.param.paramType === 'optional-catchall') { - break; - } - // Unknown param placeholder in pathname - can't derive full value - return undefined; - } - // If the segment matches a param, use the param value - // We don't encode values here as that's handled during retrieval. - const paramValue = params[pathSegment.param.paramName]; - if (Array.isArray(paramValue)) { - processedSegments.push(...paramValue); - } else { - processedSegments.push(paramValue); - } - } - } - if (processedSegments.length > 0) { - return processedSegments; - } else if (paramType === 'optional-catchall') { - return undefined; - } else { - // We shouldn't be able to match a catchall segment without any path - // segments if it's not an optional catchall - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Unexpected empty path segments match for a route "${route.pathname}" with param "${paramName}" of type "${paramType}"`), "__NEXT_ERROR_CODE", { - value: "E931", - enumerable: false, - configurable: true - }); - } - case 'dynamic': - case 'dynamic-intercepted-(..)(..)': - case 'dynamic-intercepted-(.)': - case 'dynamic-intercepted-(..)': - case 'dynamic-intercepted-(...)': - // For regular dynamic parameters, take the segment at this depth - if (depth < route.segments.length) { - const pathSegment = route.segments[depth]; - // Check if the segment at this depth is a placeholder for an unknown param - if (pathSegment.type === 'dynamic' && !params.hasOwnProperty(pathSegment.param.paramName)) { - // The segment is a placeholder like [category] and we don't have the value - return undefined; - } - // If the segment matches a param, use the param value from params object - // Otherwise it's a static segment, just use it directly - // We don't encode values here as that's handled during retrieval - return getParamValueFromSegment(pathSegment, params, paramType); - } - return undefined; - default: - paramType; - } -} //# sourceMappingURL=resolve-param-value.js.map -}), -"[project]/node_modules/next/dist/esm/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "extractPathnameRouteParamSegmentsFromLoaderTree", - ()=>extractPathnameRouteParamSegmentsFromLoaderTree -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/routes/app.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$resolve$2d$param$2d$value$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)"); -; -; -; -/** - * Validates that the static segments in currentPath match the corresponding - * segments in targetSegments. This ensures we only extract dynamic parameters - * that are part of the target pathname structure. - * - * Segments are compared literally - interception markers like "(.)photo" are - * part of the pathname and must match exactly. - * - * @example - * // Matching paths - * currentPath: ['blog', '(.)photo'] - * targetSegments: ['blog', '(.)photo', '[id]'] - * → Returns true (both static segments match exactly) - * - * @example - * // Non-matching paths - * currentPath: ['blog', '(.)photo'] - * targetSegments: ['blog', 'photo', '[id]'] - * → Returns false (segments don't match - marker is part of pathname) - * - * @param currentPath - The accumulated path segments from the loader tree - * @param targetSegments - The target pathname split into segments - * @returns true if all static segments match, false otherwise - */ function validatePrefixMatch(currentPath, route) { - for(let i = 0; i < currentPath.length; i++){ - const pathSegment = currentPath[i]; - const targetPathSegment = route.segments[i]; - // Type mismatch - one is static, one is dynamic - if (pathSegment.type !== targetPathSegment.type) { - return false; - } - // One has an interception marker, the other doesn't. - if (pathSegment.interceptionMarker !== targetPathSegment.interceptionMarker) { - return false; - } - // Both are static but names don't match - if (pathSegment.type === 'static' && targetPathSegment.type === 'static' && pathSegment.name !== targetPathSegment.name) { - return false; - } else if (pathSegment.type === 'dynamic' && targetPathSegment.type === 'dynamic' && pathSegment.param.paramType !== targetPathSegment.param.paramType && pathSegment.param.paramName !== targetPathSegment.param.paramName) { - return false; - } - } - return true; -} -function extractPathnameRouteParamSegmentsFromLoaderTree(loaderTree, route) { - const pathnameRouteParamSegments = []; - const params = {}; - // BFS traversal with depth and path tracking - const queue = [ - { - tree: loaderTree, - depth: 0, - currentPath: [] - } - ]; - while(queue.length > 0){ - const { tree, depth, currentPath } = queue.shift(); - const { segment, parallelRoutes } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseLoaderTree"])(tree); - // Build the path for the current node - let updatedPath = currentPath; - let nextDepth = depth; - const appSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseAppRouteSegment"])(segment); - // Only add to path if it's a real segment that appears in the URL - // Route groups and parallel markers don't contribute to URL pathname - if (appSegment && appSegment.type !== 'route-group' && appSegment.type !== 'parallel-route') { - updatedPath = [ - ...currentPath, - appSegment - ]; - nextDepth = depth + 1; - } - // Check if this segment has a param and matches the target pathname at this depth - if ((appSegment == null ? void 0 : appSegment.type) === 'dynamic') { - const { paramName, paramType } = appSegment.param; - // Check if this segment is at the correct depth in the target pathname - // A segment matches if: - // 1. There's a dynamic segment at this depth in the pathname - // 2. The parameter names match (e.g., [id] matches [id], not [category]) - // 3. The static segments leading up to this point match (prefix check) - if (depth < route.segments.length) { - const targetSegment = route.segments[depth]; - // Match if the target pathname has a dynamic segment at this depth - if (targetSegment.type === 'dynamic') { - // Check that parameter names match exactly - // This prevents [category] from matching against /[id] - if (paramName !== targetSegment.param.paramName) { - continue; // Different param names, skip this segment - } - // Validate that the path leading up to this dynamic segment matches - // the target pathname. This prevents false matches like extracting - // [slug] from "/news/[slug]" when the tree has "/blog/[slug]" - if (validatePrefixMatch(currentPath, route)) { - pathnameRouteParamSegments.push({ - name: segment, - paramName, - paramType - }); - } - } - } - // Resolve parameter value if it's not already known. - if (!params.hasOwnProperty(paramName)) { - const paramValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$resolve$2d$param$2d$value$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveParamValue"])(paramName, paramType, depth, route, params); - if (paramValue !== undefined) { - params[paramName] = paramValue; - } - } - } - // Continue traversing all parallel routes to find matching segments - for (const parallelRoute of Object.values(parallelRoutes)){ - queue.push({ - tree: parallelRoute, - depth: nextDepth, - currentPath: updatedPath - }); - } - } - return { - pathnameRouteParamSegments, - params - }; -} //# sourceMappingURL=extract-pathname-route-param-segments-from-loader-tree.js.map -}), -"[project]/node_modules/next/dist/esm/build/static-paths/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "encodeParam", - ()=>encodeParam, - "extractPathnameRouteParamSegments", - ()=>extractPathnameRouteParamSegments, - "extractPathnameRouteParamSegmentsFromSegments", - ()=>extractPathnameRouteParamSegmentsFromSegments, - "normalizePathname", - ()=>normalizePathname, - "resolveRouteParamsFromTree", - ()=>resolveRouteParamsFromTree -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$modules$2f$checks$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-modules/checks.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/routes/app.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/parse-loader-tree.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$app$2f$extract$2d$pathname$2d$route$2d$param$2d$segments$2d$from$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$resolve$2d$param$2d$value$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/resolve-param-value.js [app-rsc] (ecmascript)"); -; -; -; -; -; -function encodeParam(value, encoder) { - let replaceValue; - if (Array.isArray(value)) { - replaceValue = value.map(encoder).join('/'); - } else { - replaceValue = encoder(value); - } - return replaceValue; -} -function normalizePathname(pathname) { - return pathname.replace(/\\/g, '/').replace(/(?!^)\/$/, ''); -} -function extractPathnameRouteParamSegments(routeModule, segments, route) { - // For AppPageRouteModule, use the loaderTree traversal approach - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$modules$2f$checks$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isAppPageRouteModule"])(routeModule)) { - const { pathnameRouteParamSegments } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$app$2f$extract$2d$pathname$2d$route$2d$param$2d$segments$2d$from$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["extractPathnameRouteParamSegmentsFromLoaderTree"])(routeModule.userland.loaderTree, route); - return pathnameRouteParamSegments; - } - return extractPathnameRouteParamSegmentsFromSegments(segments); -} -function extractPathnameRouteParamSegmentsFromSegments(segments) { - // TODO: should we consider what values are already present in the page? - // For AppRouteRouteModule, filter the segments array to get the route params - // that contribute to the pathname. - const result = []; - for (const segment of segments){ - // Skip segments without param info. - if (!segment.paramName || !segment.paramType) continue; - // Collect all the route param keys that contribute to the pathname. - result.push({ - name: segment.name, - paramName: segment.paramName, - paramType: segment.paramType - }); - } - return result; -} -function resolveRouteParamsFromTree(loaderTree, params, route, fallbackRouteParams) { - // Stack-based traversal with depth tracking - const stack = [ - { - tree: loaderTree, - depth: 0 - } - ]; - while(stack.length > 0){ - const { tree, depth } = stack.pop(); - const { segment, parallelRoutes } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$parse$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseLoaderTree"])(tree); - const appSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseAppRouteSegment"])(segment); - // If this segment is a route parameter, then we should process it if it's - // not already known and is not already marked as a fallback route param. - if ((appSegment == null ? void 0 : appSegment.type) === 'dynamic' && !params.hasOwnProperty(appSegment.param.paramName) && !fallbackRouteParams.some((param)=>param.paramName === appSegment.param.paramName)) { - const { paramName, paramType } = appSegment.param; - const paramValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$resolve$2d$param$2d$value$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveParamValue"])(paramName, paramType, depth, route, params); - if (paramValue !== undefined) { - params[paramName] = paramValue; - } else if (paramType !== 'optional-catchall') { - // If we couldn't resolve the param, mark it as a fallback - fallbackRouteParams.push({ - paramName, - paramType - }); - } - } - // Calculate next depth - increment if this is not a route group and not empty - let nextDepth = depth; - if (appSegment && appSegment.type !== 'route-group' && appSegment.type !== 'parallel-route') { - nextDepth++; - } - // Add all parallel routes to the stack for processing. - for (const parallelRoute of Object.values(parallelRoutes)){ - stack.push({ - tree: parallelRoute, - depth: nextDepth - }); - } - } -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/get-short-dynamic-param-type.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "dynamicParamTypes", - ()=>dynamicParamTypes -]); -const dynamicParamTypes = { - catchall: 'c', - 'catchall-intercepted-(..)(..)': 'ci(..)(..)', - 'catchall-intercepted-(.)': 'ci(.)', - 'catchall-intercepted-(..)': 'ci(..)', - 'catchall-intercepted-(...)': 'ci(...)', - 'optional-catchall': 'oc', - dynamic: 'd', - 'dynamic-intercepted-(..)(..)': 'di(..)(..)', - 'dynamic-intercepted-(.)': 'di(.)', - 'dynamic-intercepted-(..)': 'di(..)', - 'dynamic-intercepted-(...)': 'di(...)' -}; //# sourceMappingURL=get-short-dynamic-param-type.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/fallback-params.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createOpaqueFallbackRouteParams", - ()=>createOpaqueFallbackRouteParams, - "getFallbackRouteParams", - ()=>getFallbackRouteParams -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/static-paths/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$get$2d$short$2d$dynamic$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/get-short-dynamic-param-type.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/routes/app.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$app$2f$extract$2d$pathname$2d$route$2d$param$2d$segments$2d$from$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js [app-rsc] (ecmascript)"); -; -; -; -; -function createOpaqueFallbackRouteParams(fallbackRouteParams) { - // If there are no fallback route params, we can return early. - if (fallbackRouteParams.length === 0) return null; - // As we're creating unique keys for each of the dynamic route params, we only - // need to generate a unique ID once per request because each of the keys will - // be also be unique. - const uniqueID = Math.random().toString(16).slice(2); - const keys = new Map(); - // Generate a unique key for the fallback route param, if this key is found - // in the static output, it represents a bug in cache components. - for (const { paramName, paramType } of fallbackRouteParams){ - keys.set(paramName, [ - `%%drp:${paramName}:${uniqueID}%%`, - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$get$2d$short$2d$dynamic$2d$param$2d$type$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["dynamicParamTypes"][paramType] - ]); - } - return keys; -} -function getFallbackRouteParams(page, routeModule) { - const route = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$routes$2f$app$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseAppRoute"])(page, true); - // Extract the pathname-contributing segments from the loader tree. This - // mirrors the logic in buildAppStaticPaths where we determine which segments - // actually contribute to the pathname. - const { pathnameRouteParamSegments, params } = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$app$2f$extract$2d$pathname$2d$route$2d$param$2d$segments$2d$from$2d$loader$2d$tree$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["extractPathnameRouteParamSegmentsFromLoaderTree"])(routeModule.userland.loaderTree, route); - // Create fallback route params for the pathname segments. - const fallbackRouteParams = pathnameRouteParamSegments.map(({ paramName, paramType })=>({ - paramName, - paramType - })); - // Resolve route params from the loader tree. This mutates the - // fallbackRouteParams array to add any route params that are - // unknown at request time. - // - // The page parameter contains placeholders like [slug], which helps - // resolveRouteParamsFromTree determine which params are unknown. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$static$2d$paths$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["resolveRouteParamsFromTree"])(routeModule.userland.loaderTree, params, route, fallbackRouteParams // Will be mutated to add route params - ); - // Convert the fallback route params to an opaque format that can be safely - // used in the postponed state without exposing implementation details. - return createOpaqueFallbackRouteParams(fallbackRouteParams); -} //# sourceMappingURL=fallback-params.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/manifests-singleton.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getClientReferenceManifest", - ()=>getClientReferenceManifest, - "getServerActionsManifest", - ()=>getServerActionsManifest, - "getServerModuleMap", - ()=>getServerModuleMap, - "selectWorkerForForwarding", - ()=>selectWorkerForForwarding, - "setManifestsSingleton", - ()=>setManifestsSingleton -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/path-has-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/remove-path-prefix.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -; -; -; -; -; -// This is a global singleton that is, among other things, also used to -// encode/decode bound args of server function closures. This can't be using a -// AsyncLocalStorage as it might happen at the module level. -const MANIFESTS_SINGLETON = Symbol.for('next.server.manifests'); -const globalThisWithManifests = globalThis; -function createProxiedClientReferenceManifest(clientReferenceManifestsPerRoute) { - const createMappingProxy = (prop)=>{ - return new Proxy({}, { - get (_, id) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - if (workStore) { - const currentManifest = clientReferenceManifestsPerRoute.get(workStore.route); - if (currentManifest == null ? void 0 : currentManifest[prop][id]) { - return currentManifest[prop][id]; - } - // In development, we also check all other manifests to see if the - // module exists there. This is to support a scenario where React's - // I/O tracking (dev-only) creates a connection from one page to - // another through an emitted async I/O node that references client - // components from the other page, e.g. in owner props. - // TODO: Maybe we need to add a `debugBundlerConfig` option to React - // to avoid this workaround. The current workaround has the - // disadvantage that one might accidentally or intentionally share - // client references across pages (e.g. by storing them in a global - // variable), which would then only be caught in production. - if ("TURBOPACK compile-time truthy", 1) { - for (const [route, manifest] of clientReferenceManifestsPerRoute){ - if (route === workStore.route) { - continue; - } - const entry = manifest[prop][id]; - if (entry !== undefined) { - return entry; - } - } - } - } else { - // If there's no work store defined, we can assume that a client - // reference manifest is needed during module evaluation, e.g. to - // create a server function using a higher-order function. This - // might also use client components which need to be serialized by - // Flight, and therefore client references need to be resolvable. In - // that case we search all page manifests to find the module. - for (const manifest of clientReferenceManifestsPerRoute.values()){ - const entry = manifest[prop][id]; - if (entry !== undefined) { - return entry; - } - } - } - return undefined; - } - }); - }; - const mappingProxies = new Map(); - return new Proxy({}, { - get (_, prop) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - switch(prop){ - case 'moduleLoading': - case 'entryCSSFiles': - case 'entryJSFiles': - { - if (!workStore) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Cannot access "${prop}" without a work store.`), "__NEXT_ERROR_CODE", { - value: "E952", - enumerable: false, - configurable: true - }); - } - const currentManifest = clientReferenceManifestsPerRoute.get(workStore.route); - if (!currentManifest) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`The client reference manifest for route "${workStore.route}" does not exist.`), "__NEXT_ERROR_CODE", { - value: "E951", - enumerable: false, - configurable: true - }); - } - return currentManifest[prop]; - } - case 'clientModules': - case 'rscModuleMapping': - case 'edgeRscModuleMapping': - case 'ssrModuleMapping': - case 'edgeSSRModuleMapping': - { - let proxy = mappingProxies.get(prop); - if (!proxy) { - proxy = createMappingProxy(prop); - mappingProxies.set(prop, proxy); - } - return proxy; - } - default: - { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`This is a proxied client reference manifest. The property "${String(prop)}" is not handled.`), "__NEXT_ERROR_CODE", { - value: "E953", - enumerable: false, - configurable: true - }); - } - } - } - }); -} -/** - * This function creates a Flight-acceptable server module map proxy from our - * Server Reference Manifest similar to our client module map. This is because - * our manifest contains a lot of internal Next.js data that are relevant to the - * runtime, workers, etc. that React doesn't need to know. - */ function createServerModuleMap() { - return new Proxy({}, { - get: (_, id)=>{ - var _getServerActionsManifest__id, _getServerActionsManifest_; - const workers = (_getServerActionsManifest_ = getServerActionsManifest()[("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 'node']) == null ? void 0 : (_getServerActionsManifest__id = _getServerActionsManifest_[id]) == null ? void 0 : _getServerActionsManifest__id.workers; - if (!workers) { - return undefined; - } - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - let workerEntry; - if (workStore) { - workerEntry = workers[normalizeWorkerPageName(workStore.page)]; - } else { - // If there's no work store defined, we can assume that a server - // module map is needed during module evaluation, e.g. to create a - // server action using a higher-order function. Therefore it should be - // safe to return any entry from the manifest that matches the action - // ID. They all refer to the same module ID, which must also exist in - // the current page bundle. TODO: This is currently not guaranteed in - // Turbopack, and needs to be fixed. - workerEntry = Object.values(workers).at(0); - } - if (!workerEntry) { - return undefined; - } - const { moduleId, async } = workerEntry; - return { - id: moduleId, - name: id, - chunks: [], - async - }; - } - }); -} -/** - * The flight entry loader keys actions by bundlePath. bundlePath corresponds - * with the relative path (including 'app') to the page entrypoint. - */ function normalizeWorkerPageName(pageName) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$path$2d$has$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["pathHasPrefix"])(pageName, 'app')) { - return pageName; - } - return 'app' + pageName; -} -/** - * Converts a bundlePath (relative path to the entrypoint) to a routable page - * name. - */ function denormalizeWorkerPageName(bundlePath) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$remove$2d$path$2d$prefix$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["removePathPrefix"])(bundlePath, 'app')); -} -function selectWorkerForForwarding(actionId, pageName) { - var _serverActionsManifest__actionId; - const serverActionsManifest = getServerActionsManifest(); - const workers = (_serverActionsManifest__actionId = serverActionsManifest[("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 'node'][actionId]) == null ? void 0 : _serverActionsManifest__actionId.workers; - // There are no workers to handle this action, nothing to forward to. - if (!workers) { - return; - } - // If there is an entry for the current page, we don't need to forward. - if (workers[normalizeWorkerPageName(pageName)]) { - return; - } - // Otherwise, grab the first worker that has a handler for this action id. - return denormalizeWorkerPageName(Object.keys(workers)[0]); -} -function setManifestsSingleton({ page, clientReferenceManifest, serverActionsManifest }) { - const existingSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]; - if (existingSingleton) { - existingSingleton.clientReferenceManifestsPerRoute.set((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])(page), clientReferenceManifest); - existingSingleton.serverActionsManifest = serverActionsManifest; - } else { - const clientReferenceManifestsPerRoute = new Map([ - [ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])(page), - clientReferenceManifest - ] - ]); - const proxiedClientReferenceManifest = createProxiedClientReferenceManifest(clientReferenceManifestsPerRoute); - globalThisWithManifests[MANIFESTS_SINGLETON] = { - clientReferenceManifestsPerRoute, - proxiedClientReferenceManifest, - serverActionsManifest, - serverModuleMap: createServerModuleMap() - }; - } -} -function getManifestsSingleton() { - const manifestSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]; - if (!manifestSingleton) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"]('The manifests singleton was not initialized.'), "__NEXT_ERROR_CODE", { - value: "E950", - enumerable: false, - configurable: true - }); - } - return manifestSingleton; -} -function getClientReferenceManifest() { - return getManifestsSingleton().proxiedClientReferenceManifest; -} -function getServerActionsManifest() { - return getManifestsSingleton().serverActionsManifest; -} -function getServerModuleMap() { - return getManifestsSingleton().serverModuleMap; -} //# sourceMappingURL=manifests-singleton.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// This regex contains the bots that we need to do a blocking render for and can't safely stream the response -// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent. -// Note: The pattern [\w-]+-Google captures all Google crawlers with "-Google" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google) -// as well as crawlers starting with "Google-" (e.g., Google-PageRenderer, Google-InspectionTool) -__turbopack_context__.s([ - "HTML_LIMITED_BOT_UA_RE", - ()=>HTML_LIMITED_BOT_UA_RE -]); -const HTML_LIMITED_BOT_UA_RE = /[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i; //# sourceMappingURL=html-bots.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-rsc] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTML_LIMITED_BOT_UA_RE_STRING", - ()=>HTML_LIMITED_BOT_UA_RE_STRING, - "getBotType", - ()=>getBotType, - "isBot", - ()=>isBot -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js [app-rsc] (ecmascript)"); -; -// Bot crawler that will spin up a headless browser and execute JS. -// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers. -// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers -// This regex specifically matches "Googlebot" but NOT "Mediapartners-Google", "AdsBot-Google", etc. -const HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i; -const HTML_LIMITED_BOT_UA_RE_STRING = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_LIMITED_BOT_UA_RE"].source; -; -function isDomBotUA(userAgent) { - return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent); -} -function isHtmlLimitedBotUA(userAgent) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_LIMITED_BOT_UA_RE"].test(userAgent); -} -function isBot(userAgent) { - return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent); -} -function getBotType(userAgent) { - if (isDomBotUA(userAgent)) { - return 'dom'; - } - if (isHtmlLimitedBotUA(userAgent)) { - return 'html'; - } - return undefined; -} //# sourceMappingURL=is-bot.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/streaming-metadata.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isHtmlBotRequest", - ()=>isHtmlBotRequest, - "shouldServeStreamingMetadata", - ()=>shouldServeStreamingMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-rsc] (ecmascript) "); -; -function shouldServeStreamingMetadata(userAgent, htmlLimitedBots) { - const blockingMetadataUARegex = new RegExp(htmlLimitedBots || __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["HTML_LIMITED_BOT_UA_RE_STRING"], 'i'); - // Only block metadata for HTML-limited bots - if (userAgent && blockingMetadataUARegex.test(userAgent)) { - return false; - } - return true; -} -function isHtmlBotRequest(req) { - const ua = req.headers['user-agent'] || ''; - const botType = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["getBotType"])(ua); - return botType === 'html'; -} //# sourceMappingURL=streaming-metadata.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/server-action-request-meta.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getIsPossibleServerAction", - ()=>getIsPossibleServerAction, - "getServerActionRequestMetadata", - ()=>getServerActionRequestMetadata -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -; -function getServerActionRequestMetadata(req) { - let actionId; - let contentType; - if (req.headers instanceof Headers) { - actionId = req.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ACTION_HEADER"]) ?? null; - contentType = req.headers.get('content-type'); - } else { - actionId = req.headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ACTION_HEADER"]] ?? null; - contentType = req.headers['content-type'] ?? null; - } - // We don't actually support URL encoded actions, and the action handler will bail out if it sees one. - // But we still want it to flow through to the action handler, to prevent changes in behavior when a regular - // page component tries to handle a POST. - const isURLEncodedAction = Boolean(req.method === 'POST' && contentType === 'application/x-www-form-urlencoded'); - const isMultipartAction = Boolean(req.method === 'POST' && (contentType == null ? void 0 : contentType.startsWith('multipart/form-data'))); - const isFetchAction = Boolean(actionId !== undefined && typeof actionId === 'string' && req.method === 'POST'); - const isPossibleServerAction = Boolean(isFetchAction || isURLEncodedAction || isMultipartAction); - return { - actionId, - isURLEncodedAction, - isMultipartAction, - isFetchAction, - isPossibleServerAction - }; -} -function getIsPossibleServerAction(req) { - return getServerActionRequestMetadata(req).isPossibleServerAction; -} //# sourceMappingURL=server-action-request-meta.js.map -}), -"[project]/node_modules/next/dist/esm/lib/fallback.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Describes the different fallback modes that a given page can have. - */ __turbopack_context__.s([ - "FallbackMode", - ()=>FallbackMode, - "fallbackModeToFallbackField", - ()=>fallbackModeToFallbackField, - "parseFallbackField", - ()=>parseFallbackField, - "parseStaticPathsResult", - ()=>parseStaticPathsResult -]); -var FallbackMode = /*#__PURE__*/ function(FallbackMode) { - /** - * A BLOCKING_STATIC_RENDER fallback will block the request until the page is - * generated. No fallback page will be rendered, and users will have to wait - * to render the page. - */ FallbackMode["BLOCKING_STATIC_RENDER"] = "BLOCKING_STATIC_RENDER"; - /** - * When set to PRERENDER, a fallback page will be sent to users in place of - * forcing them to wait for the page to be generated. This allows the user to - * see a rendered page earlier. - */ FallbackMode["PRERENDER"] = "PRERENDER"; - /** - * When set to NOT_FOUND, pages that are not already prerendered will result - * in a not found response. - */ FallbackMode["NOT_FOUND"] = "NOT_FOUND"; - return FallbackMode; -}({}); -function parseFallbackField(fallbackField) { - if (typeof fallbackField === 'string') { - return "PRERENDER"; - } else if (fallbackField === null) { - return "BLOCKING_STATIC_RENDER"; - } else if (fallbackField === false) { - return "NOT_FOUND"; - } else if (fallbackField === undefined) { - return undefined; - } else { - throw Object.defineProperty(new Error(`Invalid fallback option: ${fallbackField}. Fallback option must be a string, null, undefined, or false.`), "__NEXT_ERROR_CODE", { - value: "E285", - enumerable: false, - configurable: true - }); - } -} -function fallbackModeToFallbackField(fallback, page) { - switch(fallback){ - case "BLOCKING_STATIC_RENDER": - return null; - case "NOT_FOUND": - return false; - case "PRERENDER": - if (!page) { - throw Object.defineProperty(new Error(`Invariant: expected a page to be provided when fallback mode is "${fallback}"`), "__NEXT_ERROR_CODE", { - value: "E422", - enumerable: false, - configurable: true - }); - } - return page; - default: - throw Object.defineProperty(new Error(`Invalid fallback mode: ${fallback}`), "__NEXT_ERROR_CODE", { - value: "E254", - enumerable: false, - configurable: true - }); - } -} -function parseStaticPathsResult(result) { - if (result === true) { - return "PRERENDER"; - } else if (result === 'blocking') { - return "BLOCKING_STATIC_RENDER"; - } else { - return "NOT_FOUND"; - } -} //# sourceMappingURL=fallback.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/utils.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Web vitals provided to _app.reportWebVitals by Core Web Vitals plugin developed by Google Chrome team. - * https://nextjs.org/blog/next-9-4#integrated-web-vitals-reporting - */ __turbopack_context__.s([ - "DecodeError", - ()=>DecodeError, - "MiddlewareNotFoundError", - ()=>MiddlewareNotFoundError, - "MissingStaticPage", - ()=>MissingStaticPage, - "NormalizeError", - ()=>NormalizeError, - "PageNotFoundError", - ()=>PageNotFoundError, - "SP", - ()=>SP, - "ST", - ()=>ST, - "WEB_VITALS", - ()=>WEB_VITALS, - "execOnce", - ()=>execOnce, - "getDisplayName", - ()=>getDisplayName, - "getLocationOrigin", - ()=>getLocationOrigin, - "getURL", - ()=>getURL, - "isAbsoluteUrl", - ()=>isAbsoluteUrl, - "isResSent", - ()=>isResSent, - "loadGetInitialProps", - ()=>loadGetInitialProps, - "normalizeRepeatedSlashes", - ()=>normalizeRepeatedSlashes, - "stringifyError", - ()=>stringifyError -]); -const WEB_VITALS = [ - 'CLS', - 'FCP', - 'FID', - 'INP', - 'LCP', - 'TTFB' -]; -function execOnce(fn) { - let used = false; - let result; - return (...args)=>{ - if (!used) { - used = true; - result = fn(...args); - } - return result; - }; -} -// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1 -// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3 -const ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\d+\-.]*?:/; -const isAbsoluteUrl = (url)=>ABSOLUTE_URL_REGEX.test(url); -function getLocationOrigin() { - const { protocol, hostname, port } = window.location; - return `${protocol}//${hostname}${port ? ':' + port : ''}`; -} -function getURL() { - const { href } = window.location; - const origin = getLocationOrigin(); - return href.substring(origin.length); -} -function getDisplayName(Component) { - return typeof Component === 'string' ? Component : Component.displayName || Component.name || 'Unknown'; -} -function isResSent(res) { - return res.finished || res.headersSent; -} -function normalizeRepeatedSlashes(url) { - const urlParts = url.split('?'); - const urlNoQuery = urlParts[0]; - return urlNoQuery // first we replace any non-encoded backslashes with forward - // then normalize repeated forward slashes - .replace(/\\/g, '/').replace(/\/\/+/g, '/') + (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : ''); -} -async function loadGetInitialProps(App, ctx) { - if ("TURBOPACK compile-time truthy", 1) { - if (App.prototype?.getInitialProps) { - const message = `"${getDisplayName(App)}.getInitialProps()" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - } - // when called from _app `ctx` is nested in `ctx` - const res = ctx.res || ctx.ctx && ctx.ctx.res; - if (!App.getInitialProps) { - if (ctx.ctx && ctx.Component) { - // @ts-ignore pageProps default - return { - pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx) - }; - } - return {}; - } - const props = await App.getInitialProps(ctx); - if (res && isResSent(res)) { - return props; - } - if (!props) { - const message = `"${getDisplayName(App)}.getInitialProps()" should resolve to an object. But found "${props}" instead.`; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - if (Object.keys(props).length === 0 && !ctx.ctx) { - console.warn(`${getDisplayName(App)} returned an empty object from \`getInitialProps\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`); - } - } - return props; -} -const SP = typeof performance !== 'undefined'; -const ST = SP && [ - 'mark', - 'measure', - 'getEntriesByName' -].every((method)=>typeof performance[method] === 'function'); -class DecodeError extends Error { -} -class NormalizeError extends Error { -} -class PageNotFoundError extends Error { - constructor(page){ - super(); - this.code = 'ENOENT'; - this.name = 'PageNotFoundError'; - this.message = `Cannot find module for page: ${page}`; - } -} -class MissingStaticPage extends Error { - constructor(page, message){ - super(); - this.message = `Failed to load static file for page: ${page} ${message}`; - } -} -class MiddlewareNotFoundError extends Error { - constructor(){ - super(); - this.code = 'ENOENT'; - this.message = `Cannot find the middleware module`; - } -} -function stringifyError(error) { - return JSON.stringify({ - message: error.message, - stack: error.stack - }); -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/etag.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * FNV-1a Hash implementation - * @author Travis Webb (tjwebb) - * - * Ported from https://github.com/tjwebb/fnv-plus/blob/master/index.js - * - * Simplified, optimized and add modified for 52 bit, which provides a larger hash space - * and still making use of Javascript's 53-bit integer space. - */ __turbopack_context__.s([ - "fnv1a52", - ()=>fnv1a52, - "generateETag", - ()=>generateETag -]); -const fnv1a52 = (str)=>{ - const len = str.length; - let i = 0, t0 = 0, v0 = 0x2325, t1 = 0, v1 = 0x8422, t2 = 0, v2 = 0x9ce4, t3 = 0, v3 = 0xcbf2; - while(i < len){ - v0 ^= str.charCodeAt(i++); - t0 = v0 * 435; - t1 = v1 * 435; - t2 = v2 * 435; - t3 = v3 * 435; - t2 += v0 << 8; - t3 += v1 << 8; - t1 += t0 >>> 16; - v0 = t0 & 65535; - t2 += t1 >>> 16; - v1 = t1 & 65535; - v3 = t3 + (t2 >>> 16) & 65535; - v2 = t2 & 65535; - } - return (v3 & 15) * 281474976710656 + v2 * 4294967296 + v1 * 65536 + (v0 ^ v3 >> 4); -}; -const generateETag = (payload, weak = false)=>{ - const prefix = weak ? 'W/"' : '"'; - return prefix + fnv1a52(payload).toString(36) + payload.length.toString(36) + '"'; -}; //# sourceMappingURL=etag.js.map -}), -"[project]/node_modules/next/dist/compiled/fresh/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 695: (e)=>{ - /*! - * fresh - * Copyright(c) 2012 TJ Holowaychuk - * Copyright(c) 2016-2017 Douglas Christopher Wilson - * MIT Licensed - */ var r = /(?:^|,)\s*?no-cache\s*?(?:,|$)/; - e.exports = fresh; - function fresh(e, a) { - var t = e["if-modified-since"]; - var s = e["if-none-match"]; - if (!t && !s) { - return false; - } - var i = e["cache-control"]; - if (i && r.test(i)) { - return false; - } - if (s && s !== "*") { - var f = a["etag"]; - if (!f) { - return false; - } - var n = true; - var u = parseTokenList(s); - for(var _ = 0; _ < u.length; _++){ - var o = u[_]; - if (o === f || o === "W/" + f || "W/" + o === f) { - n = false; - break; - } - } - if (n) { - return false; - } - } - if (t) { - var p = a["last-modified"]; - var v = !p || !(parseHttpDate(p) <= parseHttpDate(t)); - if (v) { - return false; - } - } - return true; - } - function parseHttpDate(e) { - var r = e && Date.parse(e); - return typeof r === "number" ? r : NaN; - } - function parseTokenList(e) { - var r = 0; - var a = []; - var t = 0; - for(var s = 0, i = e.length; s < i; s++){ - switch(e.charCodeAt(s)){ - case 32: - if (t === r) { - t = r = s + 1; - } - break; - case 44: - a.push(e.substring(t, r)); - t = r = s + 1; - break; - default: - r = s + 1; - break; - } - } - a.push(e.substring(t, r)); - return a; - } - } - }; - var r = {}; - function __nccwpck_require__(a) { - var t = r[a]; - if (t !== undefined) { - return t.exports; - } - var s = r[a] = { - exports: {} - }; - var i = true; - try { - e[a](s, s.exports, __nccwpck_require__); - i = false; - } finally{ - if (i) delete r[a]; - } - return s.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/fresh") + "/"; - var a = __nccwpck_require__(695); - module.exports = a; -})(); -}), -"[project]/node_modules/next/dist/esm/server/lib/cache-control.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getCacheControlHeader", - ()=>getCacheControlHeader -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -; -function getCacheControlHeader({ revalidate, expire }) { - const swrHeader = typeof revalidate === 'number' && expire !== undefined && revalidate < expire ? `, stale-while-revalidate=${expire - revalidate}` : ''; - if (revalidate === 0) { - return 'private, no-cache, no-store, max-age=0, must-revalidate'; - } else if (typeof revalidate === 'number') { - return `s-maxage=${revalidate}${swrHeader}`; - } - return `s-maxage=${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CACHE_ONE_YEAR"]}${swrHeader}`; -} //# sourceMappingURL=cache-control.js.map -}), -"[project]/node_modules/next/dist/esm/server/send-payload.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "sendEtagResponse", - ()=>sendEtagResponse, - "sendRenderResult", - ()=>sendRenderResult -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$etag$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/etag.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$fresh$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/compiled/fresh/index.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$cache$2d$control$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/cache-control.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -; -; -; -; -; -function sendEtagResponse(req, res, etag) { - if (etag) { - /** - * The server generating a 304 response MUST generate any of the - * following header fields that would have been sent in a 200 (OK) - * response to the same request: Cache-Control, Content-Location, Date, - * ETag, Expires, and Vary. https://tools.ietf.org/html/rfc7232#section-4.1 - */ res.setHeader('ETag', etag); - } - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$compiled$2f$fresh$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"])(req.headers, { - etag - })) { - res.statusCode = 304; - res.end(); - return true; - } - return false; -} -async function sendRenderResult({ req, res, result, generateEtags, poweredByHeader, cacheControl }) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isResSent"])(res)) { - return; - } - if (poweredByHeader && result.contentType === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["HTML_CONTENT_TYPE_HEADER"]) { - res.setHeader('X-Powered-By', 'Next.js'); - } - // If cache control is already set on the response we don't - // override it to allow users to customize it via next.config - if (cacheControl && !res.getHeader('Cache-Control')) { - res.setHeader('Cache-Control', (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$cache$2d$control$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getCacheControlHeader"])(cacheControl)); - } - const payload = result.isDynamic ? null : result.toUnchunkedString(); - if (generateEtags && payload !== null) { - const etag = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$etag$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["generateETag"])(payload); - if (sendEtagResponse(req, res, etag)) { - return; - } - } - if (!res.getHeader('Content-Type') && result.contentType) { - res.setHeader('Content-Type', result.contentType); - } - if (payload) { - res.setHeader('Content-Length', Buffer.byteLength(payload)); - } - if (req.method === 'HEAD') { - res.end(null); - return; - } - if (payload !== null) { - res.end(payload); - return; - } - // Pipe the render result to the response after we get a writer for it. - await result.pipeToNodeResponse(res); -} //# sourceMappingURL=send-payload.js.map -}), -"[project]/node_modules/next/dist/compiled/bytes/index.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 56: (e)=>{ - /*! - * bytes - * Copyright(c) 2012-2014 TJ Holowaychuk - * Copyright(c) 2015 Jed Watson - * MIT Licensed - */ e.exports = bytes; - e.exports.format = format; - e.exports.parse = parse; - var r = /\B(?=(\d{3})+(?!\d))/g; - var a = /(?:\.0*|(\.[^0]+)0+)$/; - var t = { - b: 1, - kb: 1 << 10, - mb: 1 << 20, - gb: 1 << 30, - tb: Math.pow(1024, 4), - pb: Math.pow(1024, 5) - }; - var i = /^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb|pb)$/i; - function bytes(e, r) { - if (typeof e === "string") { - return parse(e); - } - if (typeof e === "number") { - return format(e, r); - } - return null; - } - function format(e, i) { - if (!Number.isFinite(e)) { - return null; - } - var n = Math.abs(e); - var o = i && i.thousandsSeparator || ""; - var s = i && i.unitSeparator || ""; - var f = i && i.decimalPlaces !== undefined ? i.decimalPlaces : 2; - var u = Boolean(i && i.fixedDecimals); - var p = i && i.unit || ""; - if (!p || !t[p.toLowerCase()]) { - if (n >= t.pb) { - p = "PB"; - } else if (n >= t.tb) { - p = "TB"; - } else if (n >= t.gb) { - p = "GB"; - } else if (n >= t.mb) { - p = "MB"; - } else if (n >= t.kb) { - p = "KB"; - } else { - p = "B"; - } - } - var b = e / t[p.toLowerCase()]; - var l = b.toFixed(f); - if (!u) { - l = l.replace(a, "$1"); - } - if (o) { - l = l.split(".").map(function(e, a) { - return a === 0 ? e.replace(r, o) : e; - }).join("."); - } - return l + s + p; - } - function parse(e) { - if (typeof e === "number" && !isNaN(e)) { - return e; - } - if (typeof e !== "string") { - return null; - } - var r = i.exec(e); - var a; - var n = "b"; - if (!r) { - a = parseInt(e, 10); - n = "b"; - } else { - a = parseFloat(r[1]); - n = r[4].toLowerCase(); - } - return Math.floor(t[n] * a); - } - } - }; - var r = {}; - function __nccwpck_require__(a) { - var t = r[a]; - if (t !== undefined) { - return t.exports; - } - var i = r[a] = { - exports: {} - }; - var n = true; - try { - e[a](i, i.exports, __nccwpck_require__); - n = false; - } finally{ - if (n) delete r[a]; - } - return i.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/bytes") + "/"; - var a = __nccwpck_require__(56); - module.exports = a; -})(); -}), -"[project]/node_modules/next/dist/esm/shared/lib/size-limit.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DEFAULT_MAX_POSTPONED_STATE_SIZE", - ()=>DEFAULT_MAX_POSTPONED_STATE_SIZE, - "parseMaxPostponedStateSize", - ()=>parseMaxPostponedStateSize -]); -const DEFAULT_MAX_POSTPONED_STATE_SIZE = '100 MB'; -function parseSizeLimit(size) { - const bytes = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/bytes/index.js [app-rsc] (ecmascript)").parse(size); - if (bytes === null || isNaN(bytes) || bytes < 1) { - return undefined; - } - return bytes; -} -function parseMaxPostponedStateSize(size) { - return parseSizeLimit(size ?? DEFAULT_MAX_POSTPONED_STATE_SIZE); -} //# sourceMappingURL=size-limit.js.map -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js server utility)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript)"));}), -"[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility) ", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript) "));}), -"[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript)"));}), -"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript)")); -}), -"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript)")); -}), -"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return Unauthorized; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -const _errorfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js [app-rsc] (ecmascript)"); -function Unauthorized() { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_errorfallback.HTTPAccessErrorFallback, { - status: 401, - message: "You're not authorized to access this page." - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=unauthorized.js.map -}), -"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)", ((__turbopack_context__) => { - -__turbopack_context__.n(__turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript)")); -}), -"[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/_not-found/page { METADATA_0 => \"[project]/src/app/favicon.ico.mjs { IMAGE => \\\"[project]/src/app/favicon.ico (static in ecmascript, tag client)\\\" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)\", MODULE_1 => \"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_2 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_3 => \"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_4 => \"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_5 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\" } [app-rsc] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "__next_app__", - ()=>__next_app__, - "handler", - ()=>handler, - "routeModule", - ()=>routeModule -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$lib$2f$metadata$2f$get$2d$metadata$2d$route$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/lib/metadata/get-metadata-route.js [app-rsc] (ecmascript, Next.js server utility)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29$__ = __turbopack_context__.i('[project]/src/app/favicon.ico.mjs { IMAGE => "[project]/src/app/favicon.ico (static in ecmascript, tag client)" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)'); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$module$2e$compiled$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/route-kind.js [app-rsc] (ecmascript, Next.js server utility)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$instrumentation$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/instrumentation/utils.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/tracer.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request-meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/trace/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$interop$2d$default$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/interop-default.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$strip$2d$flight$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/strip-flight-headers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/base-http/node.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$experimental$2f$ppr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/experimental/ppr.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/fallback-params.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$manifests$2d$singleton$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/manifests-singleton.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$streaming$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/streaming-metadata.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$server$2d$action$2d$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/server-action-request-meta.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-rsc] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$index$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/index.js [app-rsc] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/response-cache/types.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/fallback.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/render-result.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/constants.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/stream-utils/encoded-tags.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/send-payload.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/shared/lib/no-fallback-error.external.js [external] (next/dist/shared/lib/no-fallback-error.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$size$2d$limit$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/size-limit.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js server utility)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-rsc] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-rsc] (ecmascript)"); -; -; -const __TURBOPACK__layout__$23$1__ = ()=>__turbopack_context__.r("[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__not$2d$found__$23$2__ = ()=>__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__forbidden__$23$3__ = ()=>__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__unauthorized__$23$4__ = ()=>__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)"); -const __TURBOPACK__page__$23$5__ = ()=>__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -// We inject the tree and pages here so that we can use them in the route -// module. -const tree = [ - "", - { - "children": [ - "/_not-found", - { - "children": [ - "__PAGE__", - {}, - { - metadata: {}, - "page": [ - __TURBOPACK__page__$23$5__, - "[project]/node_modules/next/dist/client/components/builtin/not-found.js" - ] - } - ] - }, - { - metadata: {} - } - ] - }, - { - metadata: { - icon: [ - async (props)=>[ - { - url: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$lib$2f$metadata$2f$get$2d$metadata$2d$route$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["fillMetadataSegment"])("//", await props.params, "favicon.ico") + `?${__TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29$__["default"].src.split("/").splice(-1)[0]}`, - sizes: `${__TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29$__["default"].width}x${__TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29$__["default"].height}`, - type: `image/x-icon` - } - ] - ] - }, - "layout": [ - __TURBOPACK__layout__$23$1__, - "[project]/src/app/layout.tsx" - ], - "not-found": [ - __TURBOPACK__not$2d$found__$23$2__, - "[project]/node_modules/next/dist/client/components/builtin/not-found.js" - ], - "forbidden": [ - __TURBOPACK__forbidden__$23$3__, - "[project]/node_modules/next/dist/client/components/builtin/forbidden.js" - ], - "unauthorized": [ - __TURBOPACK__unauthorized__$23$4__, - "[project]/node_modules/next/dist/client/components/builtin/unauthorized.js" - ] - } -]; -; -; -const __next_app_require__ = __turbopack_context__.r.bind(__turbopack_context__); -const __next_app_load_chunk__ = __turbopack_context__.l.bind(__turbopack_context__); -const __next_app__ = { - require: __next_app_require__, - loadChunk: __next_app_load_chunk__ -}; -; -; -; -; -; -; -const routeModule = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$module$2e$compiled$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["AppPageRouteModule"]({ - definition: { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RouteKind"].APP_PAGE, - page: "/_not-found/page", - pathname: "/_not-found", - // The following aren't used in production. - bundlePath: '', - filename: '', - appPaths: [] - }, - userland: { - loaderTree: tree - }, - distDir: ("TURBOPACK compile-time value", ".next/dev") || '', - relativeProjectDir: ("TURBOPACK compile-time value", "") || '' -}); -async function handler(req, res, ctx) { - var _this; - if (routeModule.isDev) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addRequestMeta"])(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint()); - } - const isMinimalMode = Boolean(("TURBOPACK compile-time value", false) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'minimalMode')); - let srcPage = "/_not-found/page"; - // turbopack doesn't normalize `/index` in the page name - // so we need to to process dynamic routes properly - // TODO: fix turbopack providing differing value from webpack - if ("TURBOPACK compile-time truthy", 1) { - srcPage = srcPage.replace(/\/index$/, '') || '/'; - } else if (srcPage === '/index') { - // we always normalize /index specifically - srcPage = '/'; - } - const multiZoneDraftMode = ("TURBOPACK compile-time value", false); - const prepareResult = await routeModule.prepare(req, res, { - srcPage, - multiZoneDraftMode - }); - if (!prepareResult) { - res.statusCode = 400; - res.end('Bad Request'); - ctx.waitUntil == null ? void 0 : ctx.waitUntil.call(ctx, Promise.resolve()); - return null; - } - const { buildId, query, params, pageIsDynamic, buildManifest, nextFontManifest, reactLoadableManifest, serverActionsManifest, clientReferenceManifest, subresourceIntegrityManifest, prerenderManifest, isDraftMode, resolvedPathname, revalidateOnlyGenerated, routerServerContext, nextConfig, parsedUrl, interceptionRoutePatterns, deploymentId } = prepareResult; - const normalizedSrcPage = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["normalizeAppPath"])(srcPage); - let { isOnDemandRevalidate } = prepareResult; - // We use the resolvedPathname instead of the parsedUrl.pathname because it - // is not rewritten as resolvedPathname is. This will ensure that the correct - // prerender info is used instead of using the original pathname as the - // source. If however PPR is enabled and cacheComponents is disabled, we - // treat the pathname as dynamic. Currently, there's a bug in the PPR - // implementation that incorrectly leaves %%drp placeholders in the output of - // parallel routes. This is addressed with cacheComponents. - const prerenderInfo = nextConfig.experimental.ppr && !nextConfig.cacheComponents && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isInterceptionRouteAppPath"])(resolvedPathname) ? null : routeModule.match(resolvedPathname, prerenderManifest); - const isPrerendered = !!prerenderManifest.routes[resolvedPathname]; - const userAgent = req.headers['user-agent'] || ''; - const botType = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["getBotType"])(userAgent); - const isHtmlBot = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$streaming$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["isHtmlBotRequest"])(req); - /** - * If true, this indicates that the request being made is for an app - * prefetch request. - */ const isPrefetchRSCRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'isPrefetchRSCRequest') ?? req.headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]] === '1' // exclude runtime prefetches, which use '2' - ; - // NOTE: Don't delete headers[RSC] yet, it still needs to be used in renderToHTML later - const isRSCRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'isRSCRequest') ?? Boolean(req.headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_HEADER"]]); - const isPossibleServerAction = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$server$2d$action$2d$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getIsPossibleServerAction"])(req); - /** - * If the route being rendered is an app page, and the ppr feature has been - * enabled, then the given route _could_ support PPR. - */ const couldSupportPPR = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$experimental$2f$ppr$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["checkIsAppPPREnabled"])(nextConfig.experimental.ppr); - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'postponed') && couldSupportPPR && req.headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_RESUME_HEADER"]] === '1' && req.method === 'POST') { - // Decode the postponed state from the request body, it will come as - // an array of buffers, so collect them and then concat them to form - // the string. - const body = []; - for await (const chunk of req){ - body.push(chunk); - } - const postponed = Buffer.concat(body).toString('utf8'); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["addRequestMeta"])(req, 'postponed', postponed); - } - // When enabled, this will allow the use of the `?__nextppronly` query to - // enable debugging of the static shell. - const hasDebugStaticShellQuery = ("TURBOPACK compile-time value", false) === '1' && typeof query.__nextppronly !== 'undefined' && couldSupportPPR; - // When enabled, this will allow the use of the `?__nextppronly` query - // to enable debugging of the fallback shell. - const hasDebugFallbackShellQuery = hasDebugStaticShellQuery && query.__nextppronly === 'fallback'; - // This page supports PPR if it is marked as being `PARTIALLY_STATIC` in the - // prerender manifest and this is an app page. - const isRoutePPREnabled = couldSupportPPR && (((_this = prerenderManifest.routes[normalizedSrcPage] ?? prerenderManifest.dynamicRoutes[normalizedSrcPage]) == null ? void 0 : _this.renderingMode) === 'PARTIALLY_STATIC' || // Ideally we'd want to check the appConfig to see if this page has PPR - // enabled or not, but that would require plumbing the appConfig through - // to the server during development. We assume that the page supports it - // but only during development. - hasDebugStaticShellQuery && (routeModule.isDev === true || (routerServerContext == null ? void 0 : routerServerContext.experimentalTestProxy) === true)); - const isDebugStaticShell = hasDebugStaticShellQuery && isRoutePPREnabled; - // We should enable debugging dynamic accesses when the static shell - // debugging has been enabled and we're also in development mode. - const isDebugDynamicAccesses = isDebugStaticShell && routeModule.isDev === true; - const isDebugFallbackShell = hasDebugFallbackShellQuery && isRoutePPREnabled; - // If we're in minimal mode, then try to get the postponed information from - // the request metadata. If available, use it for resuming the postponed - // render. - const minimalPostponed = isRoutePPREnabled ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'postponed') : undefined; - // If PPR is enabled, and this is a RSC request (but not a prefetch), then - // we can use this fact to only generate the flight data for the request - // because we can't cache the HTML (as it's also dynamic). - let isDynamicRSCRequest = isRoutePPREnabled && isRSCRequest && !isPrefetchRSCRequest; - // During a PPR revalidation, the RSC request is not dynamic if we do not have the postponed data. - // We only attach the postponed data during a resume. If there's no postponed data, then it must be a revalidation. - // This is to ensure that we don't bypass the cache during a revalidation. - if (isMinimalMode) { - isDynamicRSCRequest = isDynamicRSCRequest && !!minimalPostponed; - } - // Need to read this before it's stripped by stripFlightHeaders. We don't - // need to transfer it to the request meta because it's only read - // within this function; the static segment data should have already been - // generated, so we will always either return a static response or a 404. - const segmentPrefetchHeader = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'segmentPrefetchRSCRequest'); - // TODO: investigate existing bug with shouldServeStreamingMetadata always - // being true for a revalidate due to modifying the base-server this.renderOpts - // when fixing this to correct logic it causes hydration issue since we set - // serveStreamingMetadata to true during export - const serveStreamingMetadata = isHtmlBot && isRoutePPREnabled ? false : !userAgent ? true : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$streaming$2d$metadata$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["shouldServeStreamingMetadata"])(userAgent, nextConfig.htmlLimitedBots); - const isSSG = Boolean((prerenderInfo || isPrerendered || prerenderManifest.routes[normalizedSrcPage]) && // If this is a html bot request and PPR is enabled, then we don't want - // to serve a static response. - !(isHtmlBot && isRoutePPREnabled)); - // When a page supports cacheComponents, we can support RDC for Navigations - const supportsRDCForNavigations = isRoutePPREnabled && nextConfig.cacheComponents === true; - // In development, we always want to generate dynamic HTML. - const supportsDynamicResponse = // a data request, in which case we only produce static HTML. - routeModule.isDev === true || // If this is not SSG or does not have static paths, then it supports - // dynamic HTML. - !isSSG || // If this request has provided postponed data, it supports dynamic - // HTML. - typeof minimalPostponed === 'string' || // If this handler supports onCacheEntryV2, then we can only support - // dynamic responses if it's a dynamic RSC request and not in minimal mode. If it - // doesn't support it we must fallback to the default behavior. - (supportsRDCForNavigations && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'onCacheEntryV2') ? // RSC request, we'll pass the minimal postponed data to the render - // which will trigger the `supportsDynamicResponse` to be true. - isDynamicRSCRequest && !isMinimalMode : isDynamicRSCRequest); - // When html bots request PPR page, perform the full dynamic rendering. - const shouldWaitOnAllReady = isHtmlBot && isRoutePPREnabled; - let ssgCacheKey = null; - if (!isDraftMode && isSSG && !supportsDynamicResponse && !isPossibleServerAction && !minimalPostponed && !isDynamicRSCRequest) { - ssgCacheKey = resolvedPathname; - } - // the staticPathKey differs from ssgCacheKey since - // ssgCacheKey is null in dev since we're always in "dynamic" - // mode in dev to bypass the cache, but we still need to honor - // dynamicParams = false in dev mode - let staticPathKey = ssgCacheKey; - if (!staticPathKey && routeModule.isDev) { - staticPathKey = resolvedPathname; - } - // If this is a request for an app path that should be statically generated - // and we aren't in the edge runtime, strip the flight headers so it will - // generate the static response. - if (!routeModule.isDev && !isDraftMode && isSSG && isRSCRequest && !isDynamicRSCRequest) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$strip$2d$flight$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["stripFlightHeaders"])(req.headers); - } - const ComponentMod = { - ...__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__, - tree, - GlobalError: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["default"], - handler, - routeModule, - __next_app__ - }; - // Before rendering (which initializes component tree modules), we have to - // set the reference manifests to our global store so Server Action's - // encryption util can access to them at the top level of the page module. - if (serverActionsManifest && clientReferenceManifest) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$manifests$2d$singleton$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["setManifestsSingleton"])({ - page: srcPage, - clientReferenceManifest, - serverActionsManifest - }); - } - const method = req.method || 'GET'; - const tracer = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getTracer"])(); - const activeSpan = tracer.getActiveScopeSpan(); - const render404 = async ()=>{ - // TODO: should route-module itself handle rendering the 404 - if (routerServerContext == null ? void 0 : routerServerContext.render404) { - await routerServerContext.render404(req, res, parsedUrl, false); - } else { - res.end('This page could not be found'); - } - return null; - }; - try { - const varyHeader = routeModule.getVaryHeader(resolvedPathname, interceptionRoutePatterns); - res.setHeader('Vary', varyHeader); - const invokeRouteModule = async (span, context)=>{ - const nextReq = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NodeNextRequest"](req); - const nextRes = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$base$2d$http$2f$node$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NodeNextResponse"](res); - return routeModule.render(nextReq, nextRes, context).finally(()=>{ - if (!span) return; - span.setAttributes({ - 'http.status_code': res.statusCode, - 'next.rsc': false - }); - const rootSpanAttributes = tracer.getRootSpanAttributes(); - // We were unable to get attributes, probably OTEL is not enabled - if (!rootSpanAttributes) { - return; - } - if (rootSpanAttributes.get('next.span_type') !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BaseServerSpan"].handleRequest) { - console.warn(`Unexpected root span type '${rootSpanAttributes.get('next.span_type')}'. Please report this Next.js issue https://github.com/vercel/next.js`); - return; - } - const route = rootSpanAttributes.get('next.route'); - if (route) { - const name = `${method} ${route}`; - span.setAttributes({ - 'next.route': route, - 'http.route': route, - 'next.span_name': name - }); - span.updateName(name); - } else { - span.updateName(`${method} ${srcPage}`); - } - }); - }; - const incrementalCache = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'incrementalCache'); - const doRender = async ({ span, postponed, fallbackRouteParams, forceStaticRender })=>{ - const context = { - query, - params, - page: normalizedSrcPage, - sharedContext: { - buildId - }, - serverComponentsHmrCache: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'serverComponentsHmrCache'), - fallbackRouteParams, - renderOpts: { - App: ()=>null, - Document: ()=>null, - pageConfig: {}, - ComponentMod, - Component: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$interop$2d$default$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["interopDefault"])(ComponentMod), - params, - routeModule, - page: srcPage, - postponed, - shouldWaitOnAllReady, - serveStreamingMetadata, - supportsDynamicResponse: typeof postponed === 'string' || supportsDynamicResponse, - buildManifest, - nextFontManifest, - reactLoadableManifest, - subresourceIntegrityManifest, - setCacheStatus: routerServerContext == null ? void 0 : routerServerContext.setCacheStatus, - setIsrStatus: routerServerContext == null ? void 0 : routerServerContext.setIsrStatus, - setReactDebugChannel: routerServerContext == null ? void 0 : routerServerContext.setReactDebugChannel, - sendErrorsToBrowser: routerServerContext == null ? void 0 : routerServerContext.sendErrorsToBrowser, - dir: ("TURBOPACK compile-time truthy", 1) ? require('path').join(/* turbopackIgnore: true */ process.cwd(), routeModule.relativeProjectDir) : "TURBOPACK unreachable", - isDraftMode, - botType, - isOnDemandRevalidate, - isPossibleServerAction, - assetPrefix: nextConfig.assetPrefix, - nextConfigOutput: nextConfig.output, - crossOrigin: nextConfig.crossOrigin, - trailingSlash: nextConfig.trailingSlash, - images: nextConfig.images, - previewProps: prerenderManifest.preview, - deploymentId: deploymentId, - enableTainting: nextConfig.experimental.taint, - htmlLimitedBots: nextConfig.htmlLimitedBots, - reactMaxHeadersLength: nextConfig.reactMaxHeadersLength, - multiZoneDraftMode, - incrementalCache, - cacheLifeProfiles: nextConfig.cacheLife, - basePath: nextConfig.basePath, - serverActions: nextConfig.experimental.serverActions, - ...isDebugStaticShell || isDebugDynamicAccesses || isDebugFallbackShell ? { - nextExport: true, - supportsDynamicResponse: false, - isStaticGeneration: true, - isDebugDynamicAccesses: isDebugDynamicAccesses - } : {}, - cacheComponents: Boolean(nextConfig.cacheComponents), - experimental: { - isRoutePPREnabled, - expireTime: nextConfig.expireTime, - staleTimes: nextConfig.experimental.staleTimes, - dynamicOnHover: Boolean(nextConfig.experimental.dynamicOnHover), - inlineCss: Boolean(nextConfig.experimental.inlineCss), - authInterrupts: Boolean(nextConfig.experimental.authInterrupts), - clientTraceMetadata: nextConfig.experimental.clientTraceMetadata || [], - clientParamParsingOrigins: nextConfig.experimental.clientParamParsingOrigins, - maxPostponedStateSizeBytes: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$size$2d$limit$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseMaxPostponedStateSize"])(nextConfig.experimental.maxPostponedStateSize) - }, - waitUntil: ctx.waitUntil, - onClose: (cb)=>{ - res.on('close', cb); - }, - onAfterTaskError: ()=>{}, - onInstrumentationRequestError: (error, _request, errorContext, silenceLog)=>routeModule.onRequestError(req, error, errorContext, silenceLog, routerServerContext), - err: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'invokeError'), - dev: routeModule.isDev - } - }; - if (isDebugStaticShell || isDebugDynamicAccesses) { - context.renderOpts.nextExport = true; - context.renderOpts.supportsDynamicResponse = false; - context.renderOpts.isDebugDynamicAccesses = isDebugDynamicAccesses; - } - // When we're revalidating in the background, we should not allow dynamic - // responses. - if (forceStaticRender) { - context.renderOpts.supportsDynamicResponse = false; - } - const result = await invokeRouteModule(span, context); - const { metadata } = result; - const { cacheControl, headers = {}, fetchTags: cacheTags, fetchMetrics } = metadata; - if (cacheTags) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"]] = cacheTags; - } - // Pull any fetch metrics from the render onto the request. - ; - req.fetchMetrics = fetchMetrics; - // we don't throw static to dynamic errors in dev as isSSG - // is a best guess in dev since we don't have the prerender pass - // to know whether the path is actually static or not - if (isSSG && (cacheControl == null ? void 0 : cacheControl.revalidate) === 0 && !routeModule.isDev && !isRoutePPREnabled) { - const staticBailoutInfo = metadata.staticBailoutInfo; - const err = Object.defineProperty(new Error(`Page changed from static to dynamic at runtime ${resolvedPathname}${(staticBailoutInfo == null ? void 0 : staticBailoutInfo.description) ? `, reason: ${staticBailoutInfo.description}` : ``}` + `\nsee more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`), "__NEXT_ERROR_CODE", { - value: "E132", - enumerable: false, - configurable: true - }); - if (staticBailoutInfo == null ? void 0 : staticBailoutInfo.stack) { - const stack = staticBailoutInfo.stack; - err.stack = err.message + stack.substring(stack.indexOf('\n')); - } - throw err; - } - return { - value: { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE, - html: result, - headers, - rscData: metadata.flightData, - postponed: metadata.postponed, - status: metadata.statusCode, - segmentData: metadata.segmentData - }, - cacheControl - }; - }; - const responseGenerator = async ({ hasResolved, previousCacheEntry: previousIncrementalCacheEntry, isRevalidating, span, forceStaticRender = false })=>{ - const isProduction = routeModule.isDev === false; - const didRespond = hasResolved || res.writableEnded; - // skip on-demand revalidate if cache is not present and - // revalidate-if-generated is set - if (isOnDemandRevalidate && revalidateOnlyGenerated && !previousIncrementalCacheEntry && !isMinimalMode) { - if (routerServerContext == null ? void 0 : routerServerContext.render404) { - await routerServerContext.render404(req, res); - } else { - res.statusCode = 404; - res.end('This page could not be found'); - } - return null; - } - let fallbackMode; - if (prerenderInfo) { - fallbackMode = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["parseFallbackField"])(prerenderInfo.fallback); - } - // When serving a HTML bot request, we want to serve a blocking render and - // not the prerendered page. This ensures that the correct content is served - // to the bot in the head. - if (fallbackMode === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].PRERENDER && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["isBot"])(userAgent)) { - if (!isRoutePPREnabled || isHtmlBot) { - fallbackMode = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].BLOCKING_STATIC_RENDER; - } - } - if ((previousIncrementalCacheEntry == null ? void 0 : previousIncrementalCacheEntry.isStale) === -1) { - isOnDemandRevalidate = true; - } - // TODO: adapt for PPR - // only allow on-demand revalidate for fallback: true/blocking - // or for prerendered fallback: false paths - if (isOnDemandRevalidate && (fallbackMode !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].NOT_FOUND || previousIncrementalCacheEntry)) { - fallbackMode = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].BLOCKING_STATIC_RENDER; - } - if (!isMinimalMode && fallbackMode !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].BLOCKING_STATIC_RENDER && staticPathKey && !didRespond && !isDraftMode && pageIsDynamic && (isProduction || !isPrerendered)) { - // if the page has dynamicParams: false and this pathname wasn't - // prerendered trigger the no fallback handling - if (// getStaticPaths. - (isProduction || prerenderInfo) && // When fallback isn't present, abort this render so we 404 - fallbackMode === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$fallback$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["FallbackMode"].NOT_FOUND) { - if (nextConfig.experimental.adapterPath) { - return await render404(); - } - throw new __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js$2c$__cjs$29$__["NoFallbackError"](); - } - // When cacheComponents is enabled, we can use the fallback - // response if the request is not a dynamic RSC request because the - // RSC data when this feature flag is enabled does not contain any - // param references. Without this feature flag enabled, the RSC data - // contains param references, and therefore we can't use the fallback. - if (isRoutePPREnabled && (nextConfig.cacheComponents ? !isDynamicRSCRequest : !isRSCRequest)) { - const cacheKey = isProduction && typeof (prerenderInfo == null ? void 0 : prerenderInfo.fallback) === 'string' ? prerenderInfo.fallback : normalizedSrcPage; - const fallbackRouteParams = // can use the manifest fallback route params. - isProduction && (prerenderInfo == null ? void 0 : prerenderInfo.fallbackRouteParams) ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createOpaqueFallbackRouteParams"])(prerenderInfo.fallbackRouteParams) : isDebugFallbackShell ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getFallbackRouteParams"])(normalizedSrcPage, routeModule) : null; - // We use the response cache here to handle the revalidation and - // management of the fallback shell. - const fallbackResponse = await routeModule.handleResponse({ - cacheKey, - req, - nextConfig, - routeKind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RouteKind"].APP_PAGE, - isFallback: true, - prerenderManifest, - isRoutePPREnabled, - responseGenerator: async ()=>doRender({ - span, - // We pass `undefined` as rendering a fallback isn't resumed - // here. - postponed: undefined, - fallbackRouteParams, - forceStaticRender: false - }), - waitUntil: ctx.waitUntil, - isMinimalMode - }); - // If the fallback response was set to null, then we should return null. - if (fallbackResponse === null) return null; - // Otherwise, if we did get a fallback response, we should return it. - if (fallbackResponse) { - // Remove the cache control from the response to prevent it from being - // used in the surrounding cache. - delete fallbackResponse.cacheControl; - return fallbackResponse; - } - } - } - // Only requests that aren't revalidating can be resumed. If we have the - // minimal postponed data, then we should resume the render with it. - let postponed = !isOnDemandRevalidate && !isRevalidating && minimalPostponed ? minimalPostponed : undefined; - // If this is a dynamic RSC request, we should use the postponed data from - // the static render (if available). This ensures that we can utilize the - // resume data cache (RDC) from the static render to ensure that the data - // is consistent between the static and dynamic renders. - if (supportsRDCForNavigations && ("TURBOPACK compile-time value", "nodejs") !== 'edge' && !isMinimalMode && incrementalCache && isDynamicRSCRequest && // We don't typically trigger an on-demand revalidation for dynamic RSC - // requests, as we're typically revalidating the page in the background - // instead. However, if the cache entry is stale, we should trigger a - // background revalidation on dynamic RSC requests. This prevents us - // from entering an infinite loop of revalidations. - !forceStaticRender) { - const incrementalCacheEntry = await incrementalCache.get(resolvedPathname, { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["IncrementalCacheKind"].APP_PAGE, - isRoutePPREnabled: true, - isFallback: false - }); - // If the cache entry is found, we should use the postponed data from - // the cache. - if (incrementalCacheEntry && incrementalCacheEntry.value && incrementalCacheEntry.value.kind === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE) { - // CRITICAL: we're assigning the postponed data from the cache entry - // here as we're using the RDC to resume the render. - postponed = incrementalCacheEntry.value.postponed; - // If the cache entry is stale, we should trigger a background - // revalidation so that subsequent requests will get a fresh response. - if (incrementalCacheEntry && // We want to trigger this flow if the cache entry is stale and if - // the requested revalidation flow is either foreground or - // background. - (incrementalCacheEntry.isStale === -1 || incrementalCacheEntry.isStale === true)) { - // We want to schedule this on the next tick to ensure that the - // render is not blocked on it. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(async ()=>{ - const responseCache = routeModule.getResponseCache(req); - try { - await responseCache.revalidate(resolvedPathname, incrementalCache, isRoutePPREnabled, false, (c)=>responseGenerator({ - ...c, - // CRITICAL: we need to set this to true as we're - // revalidating in the background and typically this dynamic - // RSC request is not treated as static. - forceStaticRender: true - }), // previous cache entry here (which is stale) will switch on - // isOnDemandRevalidate and break the prerendering. - null, hasResolved, ctx.waitUntil); - } catch (err) { - console.error('Error revalidating the page in the background', err); - } - }); - } - } - } - // When we're in minimal mode, if we're trying to debug the static shell, - // we should just return nothing instead of resuming the dynamic render. - if ((isDebugStaticShell || isDebugDynamicAccesses) && typeof postponed !== 'undefined') { - return { - cacheControl: { - revalidate: 1, - expire: undefined - }, - value: { - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].PAGES, - html: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].EMPTY, - pageData: {}, - headers: undefined, - status: undefined - } - }; - } - const fallbackRouteParams = // can use the manifest fallback route params if we need to render the - // fallback shell. - isProduction && (prerenderInfo == null ? void 0 : prerenderInfo.fallbackRouteParams) && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'renderFallbackShell') ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["createOpaqueFallbackRouteParams"])(prerenderInfo.fallbackRouteParams) : isDebugFallbackShell ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$fallback$2d$params$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getFallbackRouteParams"])(normalizedSrcPage, routeModule) : null; - // Perform the render. - return doRender({ - span, - postponed, - fallbackRouteParams, - forceStaticRender - }); - }; - const handleResponse = async (span)=>{ - var _cacheEntry_value, _cachedData_headers; - const cacheEntry = await routeModule.handleResponse({ - cacheKey: ssgCacheKey, - responseGenerator: (c)=>responseGenerator({ - span, - ...c - }), - routeKind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$route$2d$kind$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RouteKind"].APP_PAGE, - isOnDemandRevalidate, - isRoutePPREnabled, - req, - nextConfig, - prerenderManifest, - waitUntil: ctx.waitUntil, - isMinimalMode - }); - if (isDraftMode) { - res.setHeader('Cache-Control', 'private, no-cache, no-store, max-age=0, must-revalidate'); - } - // In dev, we should not cache pages for any reason. - if (routeModule.isDev) { - res.setHeader('Cache-Control', 'no-store, must-revalidate'); - } - if (!cacheEntry) { - if (ssgCacheKey) { - // A cache entry might not be generated if a response is written - // in `getInitialProps` or `getServerSideProps`, but those shouldn't - // have a cache key. If we do have a cache key but we don't end up - // with a cache entry, then either Next.js or the application has a - // bug that needs fixing. - throw Object.defineProperty(new Error('invariant: cache entry required but not generated'), "__NEXT_ERROR_CODE", { - value: "E62", - enumerable: false, - configurable: true - }); - } - return null; - } - if (((_cacheEntry_value = cacheEntry.value) == null ? void 0 : _cacheEntry_value.kind) !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE) { - var _cacheEntry_value1; - throw Object.defineProperty(new Error(`Invariant app-page handler received invalid cache entry ${(_cacheEntry_value1 = cacheEntry.value) == null ? void 0 : _cacheEntry_value1.kind}`), "__NEXT_ERROR_CODE", { - value: "E707", - enumerable: false, - configurable: true - }); - } - const didPostpone = typeof cacheEntry.value.postponed === 'string'; - if (isSSG && // We don't want to send a cache header for requests that contain dynamic - // data. If this is a Dynamic RSC request or wasn't a Prefetch RSC - // request, then we should set the cache header. - !isDynamicRSCRequest && (!didPostpone || isPrefetchRSCRequest)) { - if (!isMinimalMode) { - // set x-nextjs-cache header to match the header - // we set for the image-optimizer - res.setHeader('x-nextjs-cache', isOnDemandRevalidate ? 'REVALIDATED' : cacheEntry.isMiss ? 'MISS' : cacheEntry.isStale ? 'STALE' : 'HIT'); - } - // Set a header used by the client router to signal the response is static - // and should respect the `static` cache staleTime value. - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_IS_PRERENDER_HEADER"], '1'); - } - const { value: cachedData } = cacheEntry; - // Coerce the cache control parameter from the render. - let cacheControl; - // If this is a resume request in minimal mode it is streamed with dynamic - // content and should not be cached. - if (minimalPostponed) { - cacheControl = { - revalidate: 0, - expire: undefined - }; - } else if (isDynamicRSCRequest) { - cacheControl = { - revalidate: 0, - expire: undefined - }; - } else if (!routeModule.isDev) { - // If this is a preview mode request, we shouldn't cache it - if (isDraftMode) { - cacheControl = { - revalidate: 0, - expire: undefined - }; - } else if (!isSSG) { - if (!res.getHeader('Cache-Control')) { - cacheControl = { - revalidate: 0, - expire: undefined - }; - } - } else if (cacheEntry.cacheControl) { - // If the cache entry has a cache control with a revalidate value that's - // a number, use it. - if (typeof cacheEntry.cacheControl.revalidate === 'number') { - var _cacheEntry_cacheControl; - if (cacheEntry.cacheControl.revalidate < 1) { - throw Object.defineProperty(new Error(`Invalid revalidate configuration provided: ${cacheEntry.cacheControl.revalidate} < 1`), "__NEXT_ERROR_CODE", { - value: "E22", - enumerable: false, - configurable: true - }); - } - cacheControl = { - revalidate: cacheEntry.cacheControl.revalidate, - expire: ((_cacheEntry_cacheControl = cacheEntry.cacheControl) == null ? void 0 : _cacheEntry_cacheControl.expire) ?? nextConfig.expireTime - }; - } else { - cacheControl = { - revalidate: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CACHE_ONE_YEAR"], - expire: undefined - }; - } - } - } - cacheEntry.cacheControl = cacheControl; - if (typeof segmentPrefetchHeader === 'string' && (cachedData == null ? void 0 : cachedData.kind) === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE && cachedData.segmentData) { - var _cachedData_headers1; - // This is a prefetch request issued by the client Segment Cache. These - // should never reach the application layer (lambda). We should either - // respond from the cache (HIT) or respond with 204 No Content (MISS). - // Set a header to indicate that PPR is enabled for this route. This - // lets the client distinguish between a regular cache miss and a cache - // miss due to PPR being disabled. In other contexts this header is used - // to indicate that the response contains dynamic data, but here we're - // only using it to indicate that the feature is enabled — the segment - // response itself contains whether the data is dynamic. - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"], '2'); - // Add the cache tags header to the response if it exists and we're in - // minimal mode while rendering a static page. - const tags = (_cachedData_headers1 = cachedData.headers) == null ? void 0 : _cachedData_headers1[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"]]; - if (isMinimalMode && isSSG && tags && typeof tags === 'string') { - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"], tags); - } - const matchedSegment = cachedData.segmentData.get(segmentPrefetchHeader); - if (matchedSegment !== undefined) { - // Cache hit - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].fromStatic(matchedSegment, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]), - cacheControl: cacheEntry.cacheControl - }); - } - // Cache miss. Either a cache entry for this route has not been generated - // (which technically should not be possible when PPR is enabled, because - // at a minimum there should always be a fallback entry) or there's no - // match for the requested segment. Respond with a 204 No Content. We - // don't bother to respond with 404, because these requests are only - // issued as part of a prefetch. - res.statusCode = 204; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].EMPTY, - cacheControl: cacheEntry.cacheControl - }); - } - // If there's a callback for `onCacheEntry`, call it with the cache entry - // and the revalidate options. If we support RDC for Navigations, we - // prefer the `onCacheEntryV2` callback. Once RDC for Navigations is the - // default, we can remove the fallback to `onCacheEntry` as - // `onCacheEntryV2` is now fully supported. - const onCacheEntry = supportsRDCForNavigations ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'onCacheEntryV2') ?? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'onCacheEntry') : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'onCacheEntry'); - if (onCacheEntry) { - const finished = await onCacheEntry(cacheEntry, { - url: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2d$meta$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRequestMeta"])(req, 'initURL') ?? req.url - }); - if (finished) return null; - } - if (cachedData.headers) { - const headers = { - ...cachedData.headers - }; - if (!isMinimalMode || !isSSG) { - delete headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"]]; - } - for (let [key, value] of Object.entries(headers)){ - if (typeof value === 'undefined') continue; - if (Array.isArray(value)) { - for (const v of value){ - res.appendHeader(key, v); - } - } else if (typeof value === 'number') { - value = value.toString(); - res.appendHeader(key, value); - } else { - res.appendHeader(key, value); - } - } - } - // Add the cache tags header to the response if it exists and we're in - // minimal mode while rendering a static page. - const tags = (_cachedData_headers = cachedData.headers) == null ? void 0 : _cachedData_headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"]]; - if (isMinimalMode && isSSG && tags && typeof tags === 'string') { - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_CACHE_TAGS_HEADER"], tags); - } - // If the request is a data request, then we shouldn't set the status code - // from the response because it should always be 200. This should be gated - // behind the experimental PPR flag. - if (cachedData.status && (!isRSCRequest || !isRoutePPREnabled)) { - res.statusCode = cachedData.status; - } - // Redirect information is encoded in RSC payload, so we don't need to use redirect status codes - if (!isMinimalMode && cachedData.status && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RedirectStatusCode"][cachedData.status] && isRSCRequest) { - res.statusCode = 200; - } - // Mark that the request did postpone. - if (didPostpone && !isDynamicRSCRequest) { - res.setHeader(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"], '1'); - } - // we don't go through this block when preview mode is true - // as preview mode is a dynamic request (bypasses cache) and doesn't - // generate both HTML and payloads in the same request so continue to just - // return the generated payload - if (isRSCRequest && !isDraftMode) { - // If this is a dynamic RSC request, then stream the response. - if (typeof cachedData.rscData === 'undefined') { - // If the response is not an RSC response, then we can't serve it. - if (cachedData.html.contentType !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]) { - if (nextConfig.cacheComponents) { - res.statusCode = 404; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].EMPTY, - cacheControl: cacheEntry.cacheControl - }); - } else { - // Otherwise this case is not expected. - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["InvariantError"](`Expected RSC response, got ${cachedData.html.contentType}`), "__NEXT_ERROR_CODE", { - value: "E789", - enumerable: false, - configurable: true - }); - } - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: cachedData.html, - cacheControl: cacheEntry.cacheControl - }); - } - // As this isn't a prefetch request, we should serve the static flight - // data. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$render$2d$result$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["default"].fromStatic(cachedData.rscData, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]), - cacheControl: cacheEntry.cacheControl - }); - } - // This is a request for HTML data. - const body = cachedData.html; - // If there's no postponed state, we should just serve the HTML. This - // should also be the case for a resume request because it's completed - // as a server render (rather than a static render). - if (!didPostpone || isMinimalMode || isRSCRequest) { - // If we're in test mode, we should add a sentinel chunk to the response - // that's between the static and dynamic parts so we can compare the - // chunks and add assertions. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: body, - cacheControl: cacheEntry.cacheControl - }); - } - // If we're debugging the static shell or the dynamic API accesses, we - // should just serve the HTML without resuming the render. The returned - // HTML will be the static shell so all the Dynamic API's will be used - // during static generation. - if (isDebugStaticShell || isDebugDynamicAccesses) { - // Since we're not resuming the render, we need to at least add the - // closing body and html tags to create valid HTML. - body.push(new ReadableStream({ - start (controller) { - controller.enqueue(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$stream$2d$utils$2f$encoded$2d$tags$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["ENCODED_TAGS"].CLOSED.BODY_AND_HTML); - controller.close(); - } - })); - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: body, - cacheControl: { - revalidate: 0, - expire: undefined - } - }); - } - // If we're in test mode, we should add a sentinel chunk to the response - // that's between the static and dynamic parts so we can compare the - // chunks and add assertions. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // This request has postponed, so let's create a new transformer that the - // dynamic data can pipe to that will attach the dynamic data to the end - // of the response. - const transformer = new TransformStream(); - body.push(transformer.readable); - // Perform the render again, but this time, provide the postponed state. - // We don't await because we want the result to start streaming now, and - // we've already chained the transformer's readable to the render result. - doRender({ - span, - postponed: cachedData.postponed, - // This is a resume render, not a fallback render, so we don't need to - // set this. - fallbackRouteParams: null, - forceStaticRender: false - }).then(async (result)=>{ - var _result_value; - if (!result) { - throw Object.defineProperty(new Error('Invariant: expected a result to be returned'), "__NEXT_ERROR_CODE", { - value: "E463", - enumerable: false, - configurable: true - }); - } - if (((_result_value = result.value) == null ? void 0 : _result_value.kind) !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$response$2d$cache$2f$types$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["CachedRouteKind"].APP_PAGE) { - var _result_value1; - throw Object.defineProperty(new Error(`Invariant: expected a page response, got ${(_result_value1 = result.value) == null ? void 0 : _result_value1.kind}`), "__NEXT_ERROR_CODE", { - value: "E305", - enumerable: false, - configurable: true - }); - } - // Pipe the resume result to the transformer. - await result.value.html.pipeTo(transformer.writable); - }).catch((err)=>{ - // An error occurred during piping or preparing the render, abort - // the transformers writer so we can terminate the stream. - transformer.writable.abort(err).catch((e)=>{ - console.error("couldn't abort transformer", e); - }); - }); - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$send$2d$payload$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["sendRenderResult"])({ - req, - res, - generateEtags: nextConfig.generateEtags, - poweredByHeader: nextConfig.poweredByHeader, - result: body, - // We don't want to cache the response if it has postponed data because - // the response being sent to the client it's dynamic parts are streamed - // to the client on the same request. - cacheControl: { - revalidate: 0, - expire: undefined - } - }); - }; - // TODO: activeSpan code path is for when wrapped by - // next-server can be removed when this is no longer used - if (activeSpan) { - await handleResponse(activeSpan); - } else { - return await tracer.withPropagatedContext(req.headers, ()=>tracer.trace(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$constants$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["BaseServerSpan"].handleRequest, { - spanName: `${method} ${srcPage}`, - kind: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$trace$2f$tracer$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["SpanKind"].SERVER, - attributes: { - 'http.method': method, - 'http.target': req.url - } - }, handleResponse)); - } - } catch (err) { - if (!(err instanceof __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$shared$2f$lib$2f$no$2d$fallback$2d$error$2e$external$2e$js$2c$__cjs$29$__["NoFallbackError"])) { - const silenceLog = false; - await routeModule.onRequestError(req, err, { - routerKind: 'App Router', - routePath: srcPage, - routeType: 'render', - revalidateReason: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$instrumentation$2f$utils$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__["getRevalidateReason"])({ - isStaticGeneration: isSSG, - isOnDemandRevalidate - }) - }, silenceLog, routerServerContext); - } - // rethrow so that we can handle serving error page - throw err; - } -} -// TODO: omit this from production builds, only test builds should include it -/** - * Creates a readable stream that emits a PPR boundary sentinel. - * - * @returns A readable stream that emits a PPR boundary sentinel. - */ function createPPRBoundarySentinel() { - return new ReadableStream({ - start (controller) { - controller.enqueue(new TextEncoder().encode('')); - controller.close(); - } - }); -} //# sourceMappingURL=app-page.js.map -}), -"[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/_not-found/page { METADATA_0 => \"[project]/src/app/favicon.ico.mjs { IMAGE => \\\"[project]/src/app/favicon.ico (static in ecmascript, tag client)\\\" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)\", MODULE_1 => \"[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_2 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_3 => \"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_4 => \"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)\", MODULE_5 => \"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)\" } [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ClientPageRoot", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["ClientPageRoot"], - "ClientSegmentRoot", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["ClientSegmentRoot"], - "Fragment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["Fragment"], - "GlobalError", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["default"], - "HTTPAccessFallbackBoundary", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["HTTPAccessFallbackBoundary"], - "LayoutRouter", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["LayoutRouter"], - "Postpone", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["Postpone"], - "RenderFromTemplateContext", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RenderFromTemplateContext"], - "RootLayoutBoundary", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["RootLayoutBoundary"], - "SegmentViewNode", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["SegmentViewNode"], - "SegmentViewStateNode", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["SegmentViewStateNode"], - "__next_app__", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$templates$2f$app$2d$page$2e$js$3f$page$3d2f$_not$2d$found$2f$page__$7b$__METADATA_0__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$5c225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$295c22$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_1__$3d3e$__$225b$project$5d2f$src$2f$app$2f$layout$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_2__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_3__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$forbidden$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_4__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$unauthorized$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_5__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["__next_app__"], - "actionAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["actionAsyncStorage"], - "captureOwnerStack", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["captureOwnerStack"], - "collectSegmentData", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["collectSegmentData"], - "createElement", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createElement"], - "createMetadataComponents", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createMetadataComponents"], - "createPrerenderParamsForClientSegment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createPrerenderParamsForClientSegment"], - "createPrerenderSearchParamsForClientPage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createPrerenderSearchParamsForClientPage"], - "createServerParamsForServerSegment", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createServerParamsForServerSegment"], - "createServerSearchParamsForServerPage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createServerSearchParamsForServerPage"], - "createTemporaryReferenceSet", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["createTemporaryReferenceSet"], - "decodeAction", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["decodeAction"], - "decodeFormState", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["decodeFormState"], - "decodeReply", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["decodeReply"], - "handler", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$templates$2f$app$2d$page$2e$js$3f$page$3d2f$_not$2d$found$2f$page__$7b$__METADATA_0__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$5c225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$295c22$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_1__$3d3e$__$225b$project$5d2f$src$2f$app$2f$layout$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_2__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_3__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$forbidden$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_4__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$unauthorized$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_5__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["handler"], - "patchFetch", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["patchFetch"], - "preconnect", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["preconnect"], - "preloadFont", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["preloadFont"], - "preloadStyle", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["preloadStyle"], - "prerender", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["prerender"], - "renderToReadableStream", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["renderToReadableStream"], - "routeModule", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$templates$2f$app$2d$page$2e$js$3f$page$3d2f$_not$2d$found$2f$page__$7b$__METADATA_0__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$5c225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$295c22$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_1__$3d3e$__$225b$project$5d2f$src$2f$app$2f$layout$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_2__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_3__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$forbidden$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_4__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$unauthorized$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_5__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__["routeModule"], - "serverHooks", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["serverHooks"], - "taintObjectReference", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["taintObjectReference"], - "workAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["workAsyncStorage"], - "workUnitAsyncStorage", - ()=>__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__["workUnitAsyncStorage"] -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$build$2f$templates$2f$app$2d$page$2e$js$3f$page$3d2f$_not$2d$found$2f$page__$7b$__METADATA_0__$3d3e$__$225b$project$5d2f$src$2f$app$2f$favicon$2e$ico$2e$mjs__$7b$__IMAGE__$3d3e$__$5c225b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$295c22$__$7d$__$5b$app$2d$rsc$5d$__$28$structured__image__object$2c$__ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_1__$3d3e$__$225b$project$5d2f$src$2f$app$2f$layout$2e$tsx__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_2__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_3__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$forbidden$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_4__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$unauthorized$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$29222c$__MODULE_5__$3d3e$__$225b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$not$2d$found$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__Server__Component$2922$__$7d$__$5b$app$2d$rsc$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i('[project]/node_modules/next/dist/esm/build/templates/app-page.js?page=/_not-found/page { METADATA_0 => "[project]/src/app/favicon.ico.mjs { IMAGE => \\"[project]/src/app/favicon.ico (static in ecmascript, tag client)\\" } [app-rsc] (structured image object, ecmascript, Next.js Server Component)", MODULE_1 => "[project]/src/app/layout.tsx [app-rsc] (ecmascript, Next.js Server Component)", MODULE_2 => "[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)", MODULE_3 => "[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript, Next.js Server Component)", MODULE_4 => "[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript, Next.js Server Component)", MODULE_5 => "[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript, Next.js Server Component)" } [app-rsc] (ecmascript) '); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript, Next.js server utility)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$entry$2d$base$2e$js__$5b$app$2d$rsc$5d$__$28$ecmascript$2c$__Next$2e$js__server__utility$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/entry-base.js [app-rsc] (ecmascript, Next.js server utility)"); -}), -]; - -//# sourceMappingURL=node_modules_next_dist_9dfd6bbc._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_9dfd6bbc._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_9dfd6bbc._.js.map deleted file mode 100644 index 670ddfb..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_9dfd6bbc._.js.map +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 6, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK"],"mappings":"AAAA,IAAIA,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACL,IAAIF,QAAQC,GAAG,CAACK,yBAAyB,EAAE;;SAcpC;QACL,IAAIN,QAAQC,GAAG,CAACM,QAAQ,KAAK,WAAe;YAC1C,IAAIP,QAAQC,GAAG,CAACO,SAAS,eAAE;gBACzBL,OAAOC,OAAO,GAAGC,QAAQ;YAC3B,OAAO;;QAGT,OAAO;;IAOT;AACF","ignoreList":[0]}}, - {"offset": {"line": 28, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/instrumentation/utils.ts"],"sourcesContent":["export function getRevalidateReason(params: {\n isOnDemandRevalidate?: boolean\n isStaticGeneration?: boolean\n}): 'on-demand' | 'stale' | undefined {\n if (params.isOnDemandRevalidate) {\n return 'on-demand'\n }\n if (params.isStaticGeneration) {\n return 'stale'\n }\n return undefined\n}\n"],"names":["getRevalidateReason","params","isOnDemandRevalidate","isStaticGeneration","undefined"],"mappings":";;;;AAAO,SAASA,oBAAoBC,MAGnC;IACC,IAAIA,OAAOC,oBAAoB,EAAE;QAC/B,OAAO;IACT;IACA,IAAID,OAAOE,kBAAkB,EAAE;QAC7B,OAAO;IACT;IACA,OAAOC;AACT","ignoreList":[0]}}, - {"offset": {"line": 45, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/interop-default.ts"],"sourcesContent":["/**\n * Interop between \"export default\" and \"module.exports\".\n */\nexport function interopDefault(mod: any) {\n return mod.default || mod\n}\n"],"names":["interopDefault","mod","default"],"mappings":"AAAA;;CAEC,GACD;;;;AAAO,SAASA,eAAeC,GAAQ;IACrC,OAAOA,IAAIC,OAAO,IAAID;AACxB","ignoreList":[0]}}, - {"offset": {"line": 58, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/strip-flight-headers.ts"],"sourcesContent":["import type { IncomingHttpHeaders } from 'node:http'\n\nimport { FLIGHT_HEADERS } from '../../client/components/app-router-headers'\n\n/**\n * Removes the flight headers from the request.\n *\n * @param req the request to strip the headers from\n */\nexport function stripFlightHeaders(headers: IncomingHttpHeaders) {\n for (const header of FLIGHT_HEADERS) {\n delete headers[header]\n }\n}\n"],"names":["FLIGHT_HEADERS","stripFlightHeaders","headers","header"],"mappings":";;;;AAEA,SAASA,cAAc,QAAQ,6CAA4C;;AAOpE,SAASC,mBAAmBC,OAA4B;IAC7D,KAAK,MAAMC,UAAUH,yMAAAA,CAAgB;QACnC,OAAOE,OAAO,CAACC,OAAO;IACxB;AACF","ignoreList":[0]}}, - {"offset": {"line": 73, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/headers.ts"],"sourcesContent":["import type { IncomingHttpHeaders } from 'http'\n\nimport { ReflectAdapter } from './reflect'\n\n/**\n * @internal\n */\nexport class ReadonlyHeadersError extends Error {\n constructor() {\n super(\n 'Headers cannot be modified. Read more: https://nextjs.org/docs/app/api-reference/functions/headers'\n )\n }\n\n public static callable() {\n throw new ReadonlyHeadersError()\n }\n}\n\nexport type ReadonlyHeaders = Headers & {\n /** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */\n append(...args: any[]): void\n /** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */\n set(...args: any[]): void\n /** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */\n delete(...args: any[]): void\n}\nexport class HeadersAdapter extends Headers {\n private readonly headers: IncomingHttpHeaders\n\n constructor(headers: IncomingHttpHeaders) {\n // We've already overridden the methods that would be called, so we're just\n // calling the super constructor to ensure that the instanceof check works.\n super()\n\n this.headers = new Proxy(headers, {\n get(target, prop, receiver) {\n // Because this is just an object, we expect that all \"get\" operations\n // are for properties. If it's a \"get\" for a symbol, we'll just return\n // the symbol.\n if (typeof prop === 'symbol') {\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n const lowercased = prop.toLowerCase()\n\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find(\n (o) => o.toLowerCase() === lowercased\n )\n\n // If the original casing doesn't exist, return undefined.\n if (typeof original === 'undefined') return\n\n // If the original casing exists, return the value.\n return ReflectAdapter.get(target, original, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'symbol') {\n return ReflectAdapter.set(target, prop, value, receiver)\n }\n\n const lowercased = prop.toLowerCase()\n\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find(\n (o) => o.toLowerCase() === lowercased\n )\n\n // If the original casing doesn't exist, use the prop as the key.\n return ReflectAdapter.set(target, original ?? prop, value, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'symbol') return ReflectAdapter.has(target, prop)\n\n const lowercased = prop.toLowerCase()\n\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find(\n (o) => o.toLowerCase() === lowercased\n )\n\n // If the original casing doesn't exist, return false.\n if (typeof original === 'undefined') return false\n\n // If the original casing exists, return true.\n return ReflectAdapter.has(target, original)\n },\n deleteProperty(target, prop) {\n if (typeof prop === 'symbol')\n return ReflectAdapter.deleteProperty(target, prop)\n\n const lowercased = prop.toLowerCase()\n\n // Let's find the original casing of the key. This assumes that there is\n // no mixed case keys (e.g. \"Content-Type\" and \"content-type\") in the\n // headers object.\n const original = Object.keys(headers).find(\n (o) => o.toLowerCase() === lowercased\n )\n\n // If the original casing doesn't exist, return true.\n if (typeof original === 'undefined') return true\n\n // If the original casing exists, delete the property.\n return ReflectAdapter.deleteProperty(target, original)\n },\n })\n }\n\n /**\n * Seals a Headers instance to prevent modification by throwing an error when\n * any mutating method is called.\n */\n public static seal(headers: Headers): ReadonlyHeaders {\n return new Proxy(headers, {\n get(target, prop, receiver) {\n switch (prop) {\n case 'append':\n case 'delete':\n case 'set':\n return ReadonlyHeadersError.callable\n default:\n return ReflectAdapter.get(target, prop, receiver)\n }\n },\n })\n }\n\n /**\n * Merges a header value into a string. This stores multiple values as an\n * array, so we need to merge them into a string.\n *\n * @param value a header value\n * @returns a merged header value (a string)\n */\n private merge(value: string | string[]): string {\n if (Array.isArray(value)) return value.join(', ')\n\n return value\n }\n\n /**\n * Creates a Headers instance from a plain object or a Headers instance.\n *\n * @param headers a plain object or a Headers instance\n * @returns a headers instance\n */\n public static from(headers: IncomingHttpHeaders | Headers): Headers {\n if (headers instanceof Headers) return headers\n\n return new HeadersAdapter(headers)\n }\n\n public append(name: string, value: string): void {\n const existing = this.headers[name]\n if (typeof existing === 'string') {\n this.headers[name] = [existing, value]\n } else if (Array.isArray(existing)) {\n existing.push(value)\n } else {\n this.headers[name] = value\n }\n }\n\n public delete(name: string): void {\n delete this.headers[name]\n }\n\n public get(name: string): string | null {\n const value = this.headers[name]\n if (typeof value !== 'undefined') return this.merge(value)\n\n return null\n }\n\n public has(name: string): boolean {\n return typeof this.headers[name] !== 'undefined'\n }\n\n public set(name: string, value: string): void {\n this.headers[name] = value\n }\n\n public forEach(\n callbackfn: (value: string, name: string, parent: Headers) => void,\n thisArg?: any\n ): void {\n for (const [name, value] of this.entries()) {\n callbackfn.call(thisArg, value, name, this)\n }\n }\n\n public *entries(): HeadersIterator<[string, string]> {\n for (const key of Object.keys(this.headers)) {\n const name = key.toLowerCase()\n // We assert here that this is a string because we got it from the\n // Object.keys() call above.\n const value = this.get(name) as string\n\n yield [name, value] as [string, string]\n }\n }\n\n public *keys(): HeadersIterator {\n for (const key of Object.keys(this.headers)) {\n const name = key.toLowerCase()\n yield name\n }\n }\n\n public *values(): HeadersIterator {\n for (const key of Object.keys(this.headers)) {\n // We assert here that this is a string because we got it from the\n // Object.keys() call above.\n const value = this.get(key) as string\n\n yield value\n }\n }\n\n public [Symbol.iterator](): HeadersIterator<[string, string]> {\n return this.entries()\n }\n}\n"],"names":["ReflectAdapter","ReadonlyHeadersError","Error","constructor","callable","HeadersAdapter","Headers","headers","Proxy","get","target","prop","receiver","lowercased","toLowerCase","original","Object","keys","find","o","set","value","has","deleteProperty","seal","merge","Array","isArray","join","from","append","name","existing","push","delete","forEach","callbackfn","thisArg","entries","call","key","values","Symbol","iterator"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 252, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/api-utils/index.ts"],"sourcesContent":["import type { IncomingMessage } from 'http'\nimport type { BaseNextRequest } from '../base-http'\nimport type { CookieSerializeOptions } from 'next/dist/compiled/cookie'\nimport type { NextApiResponse } from '../../shared/lib/utils'\n\nimport { HeadersAdapter } from '../web/spec-extension/adapters/headers'\nimport {\n PRERENDER_REVALIDATE_HEADER,\n PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER,\n} from '../../lib/constants'\nimport { getTracer } from '../lib/trace/tracer'\nimport { NodeSpan } from '../lib/trace/constants'\n\nexport type NextApiRequestCookies = Partial<{ [key: string]: string }>\nexport type NextApiRequestQuery = Partial<{ [key: string]: string | string[] }>\n\nexport type __ApiPreviewProps = {\n previewModeId: string\n previewModeEncryptionKey: string\n previewModeSigningKey: string\n}\n\nexport function wrapApiHandler any>(\n page: string,\n handler: T\n): T {\n return ((...args) => {\n getTracer().setRootSpanAttribute('next.route', page)\n // Call API route method\n return getTracer().trace(\n NodeSpan.runHandler,\n {\n spanName: `executing api route (pages) ${page}`,\n },\n () => handler(...args)\n )\n }) as T\n}\n\n/**\n *\n * @param res response object\n * @param statusCode `HTTP` status code of response\n */\nexport function sendStatusCode(\n res: NextApiResponse,\n statusCode: number\n): NextApiResponse {\n res.statusCode = statusCode\n return res\n}\n\n/**\n *\n * @param res response object\n * @param [statusOrUrl] `HTTP` status code of redirect\n * @param url URL of redirect\n */\nexport function redirect(\n res: NextApiResponse,\n statusOrUrl: string | number,\n url?: string\n): NextApiResponse {\n if (typeof statusOrUrl === 'string') {\n url = statusOrUrl\n statusOrUrl = 307\n }\n if (typeof statusOrUrl !== 'number' || typeof url !== 'string') {\n throw new Error(\n `Invalid redirect arguments. Please use a single argument URL, e.g. res.redirect('/destination') or use a status code and URL, e.g. res.redirect(307, '/destination').`\n )\n }\n res.writeHead(statusOrUrl, { Location: url })\n res.write(url)\n res.end()\n return res\n}\n\nexport function checkIsOnDemandRevalidate(\n req: Request | IncomingMessage | BaseNextRequest,\n previewProps: __ApiPreviewProps\n): {\n isOnDemandRevalidate: boolean\n revalidateOnlyGenerated: boolean\n} {\n const headers = HeadersAdapter.from(req.headers)\n\n const previewModeId = headers.get(PRERENDER_REVALIDATE_HEADER)\n const isOnDemandRevalidate = previewModeId === previewProps.previewModeId\n\n const revalidateOnlyGenerated = headers.has(\n PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER\n )\n\n return { isOnDemandRevalidate, revalidateOnlyGenerated }\n}\n\nexport const COOKIE_NAME_PRERENDER_BYPASS = `__prerender_bypass`\nexport const COOKIE_NAME_PRERENDER_DATA = `__next_preview_data`\n\nexport const RESPONSE_LIMIT_DEFAULT = 4 * 1024 * 1024\n\nexport const SYMBOL_PREVIEW_DATA = Symbol(COOKIE_NAME_PRERENDER_DATA)\nexport const SYMBOL_CLEARED_COOKIES = Symbol(COOKIE_NAME_PRERENDER_BYPASS)\n\nexport function clearPreviewData(\n res: NextApiResponse,\n options: {\n path?: string\n } = {}\n): NextApiResponse {\n if (SYMBOL_CLEARED_COOKIES in res) {\n return res\n }\n\n const { serialize } =\n require('next/dist/compiled/cookie') as typeof import('next/dist/compiled/cookie')\n const previous = res.getHeader('Set-Cookie')\n res.setHeader(`Set-Cookie`, [\n ...(typeof previous === 'string'\n ? [previous]\n : Array.isArray(previous)\n ? previous\n : []),\n serialize(COOKIE_NAME_PRERENDER_BYPASS, '', {\n // To delete a cookie, set `expires` to a date in the past:\n // https://tools.ietf.org/html/rfc6265#section-4.1.1\n // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted.\n expires: new Date(0),\n httpOnly: true,\n sameSite: process.env.NODE_ENV !== 'development' ? 'none' : 'lax',\n secure: process.env.NODE_ENV !== 'development',\n path: '/',\n ...(options.path !== undefined\n ? ({ path: options.path } as CookieSerializeOptions)\n : undefined),\n }),\n serialize(COOKIE_NAME_PRERENDER_DATA, '', {\n // To delete a cookie, set `expires` to a date in the past:\n // https://tools.ietf.org/html/rfc6265#section-4.1.1\n // `Max-Age: 0` is not valid, thus ignored, and the cookie is persisted.\n expires: new Date(0),\n httpOnly: true,\n sameSite: process.env.NODE_ENV !== 'development' ? 'none' : 'lax',\n secure: process.env.NODE_ENV !== 'development',\n path: '/',\n ...(options.path !== undefined\n ? ({ path: options.path } as CookieSerializeOptions)\n : undefined),\n }),\n ])\n\n Object.defineProperty(res, SYMBOL_CLEARED_COOKIES, {\n value: true,\n enumerable: false,\n })\n return res\n}\n\n/**\n * Custom error class\n */\nexport class ApiError extends Error {\n readonly statusCode: number\n\n constructor(statusCode: number, message: string) {\n super(message)\n this.statusCode = statusCode\n }\n}\n\n/**\n * Sends error in `response`\n * @param res response object\n * @param statusCode of response\n * @param message of response\n */\nexport function sendError(\n res: NextApiResponse,\n statusCode: number,\n message: string\n): void {\n res.statusCode = statusCode\n res.statusMessage = message\n res.end(message)\n}\n\ninterface LazyProps {\n req: IncomingMessage\n}\n\n/**\n * Execute getter function only if its needed\n * @param LazyProps `req` and `params` for lazyProp\n * @param prop name of property\n * @param getter function to get data\n */\nexport function setLazyProp(\n { req }: LazyProps,\n prop: string,\n getter: () => T\n): void {\n const opts = { configurable: true, enumerable: true }\n const optsReset = { ...opts, writable: true }\n\n Object.defineProperty(req, prop, {\n ...opts,\n get: () => {\n const value = getter()\n // we set the property on the object to avoid recalculating it\n Object.defineProperty(req, prop, { ...optsReset, value })\n return value\n },\n set: (value) => {\n Object.defineProperty(req, prop, { ...optsReset, value })\n },\n })\n}\n"],"names":["HeadersAdapter","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","getTracer","NodeSpan","wrapApiHandler","page","handler","args","setRootSpanAttribute","trace","runHandler","spanName","sendStatusCode","res","statusCode","redirect","statusOrUrl","url","Error","writeHead","Location","write","end","checkIsOnDemandRevalidate","req","previewProps","headers","from","previewModeId","get","isOnDemandRevalidate","revalidateOnlyGenerated","has","COOKIE_NAME_PRERENDER_BYPASS","COOKIE_NAME_PRERENDER_DATA","RESPONSE_LIMIT_DEFAULT","SYMBOL_PREVIEW_DATA","Symbol","SYMBOL_CLEARED_COOKIES","clearPreviewData","options","serialize","require","previous","getHeader","setHeader","Array","isArray","expires","Date","httpOnly","sameSite","process","env","NODE_ENV","secure","path","undefined","Object","defineProperty","value","enumerable","ApiError","constructor","message","sendError","statusMessage","setLazyProp","prop","getter","opts","configurable","optsReset","writable","set"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 421, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/api-utils/get-cookie-parser.ts"],"sourcesContent":["import type { NextApiRequestCookies } from '.'\n\n/**\n * Parse cookies from the `headers` of request\n * @param req request object\n */\n\nexport function getCookieParser(headers: {\n [key: string]: string | string[] | null | undefined\n}): () => NextApiRequestCookies {\n return function parseCookie(): NextApiRequestCookies {\n const { cookie } = headers\n\n if (!cookie) {\n return {}\n }\n\n const { parse: parseCookieFn } =\n require('next/dist/compiled/cookie') as typeof import('next/dist/compiled/cookie')\n return parseCookieFn(Array.isArray(cookie) ? cookie.join('; ') : cookie)\n }\n}\n"],"names":["getCookieParser","headers","parseCookie","cookie","parse","parseCookieFn","require","Array","isArray","join"],"mappings":"AAEA;;;CAGC,GAED;;;;AAAO,SAASA,gBAAgBC,OAE/B;IACC,OAAO,SAASC;QACd,MAAM,EAAEC,MAAM,EAAE,GAAGF;QAEnB,IAAI,CAACE,QAAQ;YACX,OAAO,CAAC;QACV;QAEA,MAAM,EAAEC,OAAOC,aAAa,EAAE,GAC5BC,QAAQ;QACV,OAAOD,cAAcE,MAAMC,OAAO,CAACL,UAAUA,OAAOM,IAAI,CAAC,QAAQN;IACnE;AACF","ignoreList":[0]}}, - {"offset": {"line": 442, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/base-http/index.ts"],"sourcesContent":["import type { IncomingHttpHeaders, OutgoingHttpHeaders } from 'http'\nimport type { I18NConfig } from '../config-shared'\n\nimport { RedirectStatusCode } from '../../client/components/redirect-status-code'\nimport type { NextApiRequestCookies } from '../api-utils'\nimport { getCookieParser } from '../api-utils/get-cookie-parser'\n\nexport interface BaseNextRequestConfig {\n basePath: string | undefined\n i18n?: I18NConfig\n trailingSlash?: boolean | undefined\n}\n\nexport type FetchMetric = {\n url: string\n idx: number\n end: number\n start: number\n method: string\n status: number\n cacheReason: string\n cacheStatus: 'hit' | 'miss' | 'skip' | 'hmr'\n cacheWarning?: string\n}\n\nexport type FetchMetrics = Array\n\nexport abstract class BaseNextRequest {\n protected _cookies: NextApiRequestCookies | undefined\n public abstract headers: IncomingHttpHeaders\n public abstract fetchMetrics: FetchMetric[] | undefined\n\n constructor(\n public method: string,\n public url: string,\n public body: Body\n ) {}\n\n // Utils implemented using the abstract methods above\n\n public get cookies() {\n if (this._cookies) return this._cookies\n return (this._cookies = getCookieParser(this.headers)())\n }\n}\n\nexport abstract class BaseNextResponse {\n abstract statusCode: number | undefined\n abstract statusMessage: string | undefined\n abstract get sent(): boolean\n\n constructor(public destination: Destination) {}\n\n /**\n * Sets a value for the header overwriting existing values\n */\n abstract setHeader(name: string, value: string | string[]): this\n\n /**\n * Removes a header\n */\n abstract removeHeader(name: string): this\n\n /**\n * Appends value for the given header name\n */\n abstract appendHeader(name: string, value: string): this\n\n /**\n * Get all values for a header as an array or undefined if no value is present\n */\n abstract getHeaderValues(name: string): string[] | undefined\n\n abstract hasHeader(name: string): boolean\n\n /**\n * Get values for a header concatenated using `,` or undefined if no value is present\n */\n abstract getHeader(name: string): string | undefined\n\n abstract getHeaders(): OutgoingHttpHeaders\n\n abstract body(value: string): this\n\n abstract send(): void\n\n abstract onClose(callback: () => void): void\n\n // Utils implemented using the abstract methods above\n\n public redirect(destination: string, statusCode: number) {\n this.setHeader('Location', destination)\n this.statusCode = statusCode\n\n // Since IE11 doesn't support the 308 header add backwards\n // compatibility using refresh header\n if (statusCode === RedirectStatusCode.PermanentRedirect) {\n this.setHeader('Refresh', `0;url=${destination}`)\n }\n\n return this\n }\n}\n"],"names":["RedirectStatusCode","getCookieParser","BaseNextRequest","constructor","method","url","body","cookies","_cookies","headers","BaseNextResponse","destination","redirect","statusCode","setHeader","PermanentRedirect"],"mappings":";;;;;;AAGA,SAASA,kBAAkB,QAAQ,+CAA8C;AAEjF,SAASC,eAAe,QAAQ,iCAAgC;;;AAsBzD,MAAeC;IAKpBC,YACSC,MAAc,EACdC,GAAW,EACXC,IAAU,CACjB;aAHOF,MAAAA,GAAAA;aACAC,GAAAA,GAAAA;aACAC,IAAAA,GAAAA;IACN;IAEH,qDAAqD;IAErD,IAAWC,UAAU;QACnB,IAAI,IAAI,CAACC,QAAQ,EAAE,OAAO,IAAI,CAACA,QAAQ;QACvC,OAAQ,IAAI,CAACA,QAAQ,OAAGP,2MAAAA,EAAgB,IAAI,CAACQ,OAAO;IACtD;AACF;AAEO,MAAeC;IAKpBP,YAAmBQ,WAAwB,CAAE;aAA1BA,WAAAA,GAAAA;IAA2B;IAqC9C,qDAAqD;IAE9CC,SAASD,WAAmB,EAAEE,UAAkB,EAAE;QACvD,IAAI,CAACC,SAAS,CAAC,YAAYH;QAC3B,IAAI,CAACE,UAAU,GAAGA;QAElB,0DAA0D;QAC1D,qCAAqC;QACrC,IAAIA,eAAeb,+MAAAA,CAAmBe,iBAAiB,EAAE;YACvD,IAAI,CAACD,SAAS,CAAC,WAAW,CAAC,MAAM,EAAEH,aAAa;QAClD;QAEA,OAAO,IAAI;IACb;AACF","ignoreList":[0]}}, - {"offset": {"line": 484, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/base-http/node.ts"],"sourcesContent":["import type { ServerResponse, IncomingMessage } from 'http'\nimport type { Writable, Readable } from 'stream'\n\nimport { SYMBOL_CLEARED_COOKIES } from '../api-utils'\nimport type { NextApiRequestCookies } from '../api-utils'\n\nimport { NEXT_REQUEST_META } from '../request-meta'\nimport type { RequestMeta } from '../request-meta'\n\nimport { BaseNextRequest, BaseNextResponse, type FetchMetric } from './index'\nimport type { OutgoingHttpHeaders } from 'node:http'\n\ntype Req = IncomingMessage & {\n [NEXT_REQUEST_META]?: RequestMeta\n cookies?: NextApiRequestCookies\n fetchMetrics?: FetchMetric[]\n}\n\nexport class NodeNextRequest extends BaseNextRequest {\n public headers = this._req.headers\n public fetchMetrics: FetchMetric[] | undefined = this._req?.fetchMetrics;\n\n [NEXT_REQUEST_META]: RequestMeta = this._req[NEXT_REQUEST_META] || {}\n\n constructor(private _req: Req) {\n super(_req.method!.toUpperCase(), _req.url!, _req)\n }\n\n get originalRequest() {\n // Need to mimic these changes to the original req object for places where we use it:\n // render.tsx, api/ssg requests\n this._req[NEXT_REQUEST_META] = this[NEXT_REQUEST_META]\n this._req.url = this.url\n this._req.cookies = this.cookies\n return this._req\n }\n\n set originalRequest(value: Req) {\n this._req = value\n }\n\n private streaming = false\n\n /**\n * Returns the request body as a Web Readable Stream. The body here can only\n * be read once as the body will start flowing as soon as the data handler\n * is attached.\n *\n * @internal\n */\n public stream() {\n if (this.streaming) {\n throw new Error(\n 'Invariant: NodeNextRequest.stream() can only be called once'\n )\n }\n this.streaming = true\n\n return new ReadableStream({\n start: (controller) => {\n this._req.on('data', (chunk) => {\n controller.enqueue(new Uint8Array(chunk))\n })\n this._req.on('end', () => {\n controller.close()\n })\n this._req.on('error', (err) => {\n controller.error(err)\n })\n },\n })\n }\n}\n\nexport class NodeNextResponse extends BaseNextResponse {\n private textBody: string | undefined = undefined\n\n public [SYMBOL_CLEARED_COOKIES]?: boolean\n\n get originalResponse() {\n if (SYMBOL_CLEARED_COOKIES in this) {\n this._res[SYMBOL_CLEARED_COOKIES] = this[SYMBOL_CLEARED_COOKIES]\n }\n\n return this._res\n }\n\n constructor(\n private _res: ServerResponse & { [SYMBOL_CLEARED_COOKIES]?: boolean }\n ) {\n super(_res)\n }\n\n get sent() {\n return this._res.finished || this._res.headersSent\n }\n\n get statusCode() {\n return this._res.statusCode\n }\n\n set statusCode(value: number) {\n this._res.statusCode = value\n }\n\n get statusMessage() {\n return this._res.statusMessage\n }\n\n set statusMessage(value: string) {\n this._res.statusMessage = value\n }\n\n setHeader(name: string, value: string | string[]): this {\n this._res.setHeader(name, value)\n return this\n }\n\n removeHeader(name: string): this {\n this._res.removeHeader(name)\n return this\n }\n\n getHeaderValues(name: string): string[] | undefined {\n const values = this._res.getHeader(name)\n\n if (values === undefined) return undefined\n\n return (Array.isArray(values) ? values : [values]).map((value) =>\n value.toString()\n )\n }\n\n hasHeader(name: string): boolean {\n return this._res.hasHeader(name)\n }\n\n getHeader(name: string): string | undefined {\n const values = this.getHeaderValues(name)\n return Array.isArray(values) ? values.join(',') : undefined\n }\n\n getHeaders(): OutgoingHttpHeaders {\n return this._res.getHeaders()\n }\n\n appendHeader(name: string, value: string): this {\n const currentValues = this.getHeaderValues(name) ?? []\n\n if (!currentValues.includes(value)) {\n this._res.setHeader(name, [...currentValues, value])\n }\n\n return this\n }\n\n body(value: string) {\n this.textBody = value\n return this\n }\n\n send() {\n this._res.end(this.textBody)\n }\n\n public onClose(callback: () => void) {\n this.originalResponse.on('close', callback)\n }\n}\n"],"names":["SYMBOL_CLEARED_COOKIES","NEXT_REQUEST_META","BaseNextRequest","BaseNextResponse","NodeNextRequest","constructor","_req","method","toUpperCase","url","headers","fetchMetrics","streaming","originalRequest","cookies","value","stream","Error","ReadableStream","start","controller","on","chunk","enqueue","Uint8Array","close","err","error","NodeNextResponse","originalResponse","_res","textBody","undefined","sent","finished","headersSent","statusCode","statusMessage","setHeader","name","removeHeader","getHeaderValues","values","getHeader","Array","isArray","map","toString","hasHeader","join","getHeaders","appendHeader","currentValues","includes","body","send","end","onClose","callback"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 620, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/experimental/ppr.ts"],"sourcesContent":["/**\n * If set to `incremental`, only those leaf pages that export\n * `experimental_ppr = true` will have partial prerendering enabled. If any\n * page exports this value as `false` or does not export it at all will not\n * have partial prerendering enabled. If set to a boolean, the options for\n * `experimental_ppr` will be ignored.\n */\n\nexport type ExperimentalPPRConfig = boolean | 'incremental'\n\n/**\n * Returns true if partial prerendering is enabled for the application. It does\n * not tell you if a given route has PPR enabled, as that requires analysis of\n * the route's configuration.\n *\n * @see {@link checkIsRoutePPREnabled} - for checking if a specific route has PPR enabled.\n */\nexport function checkIsAppPPREnabled(\n config: ExperimentalPPRConfig | undefined\n): boolean {\n // If the config is undefined, partial prerendering is disabled.\n if (typeof config === 'undefined') return false\n\n // If the config is a boolean, use it directly.\n if (typeof config === 'boolean') return config\n\n // If the config is a string, it must be 'incremental' to enable partial\n // prerendering.\n if (config === 'incremental') return true\n\n return false\n}\n\n/**\n * Returns true if partial prerendering is supported for the current page with\n * the provided app configuration. If the application doesn't have partial\n * prerendering enabled, this function will always return false. If you want to\n * check if the application has partial prerendering enabled\n *\n * @see {@link checkIsAppPPREnabled} for checking if the application has PPR enabled.\n */\nexport function checkIsRoutePPREnabled(\n config: ExperimentalPPRConfig | undefined\n): boolean {\n // If the config is undefined, partial prerendering is disabled.\n if (typeof config === 'undefined') return false\n\n // If the config is a boolean, use it directly.\n if (typeof config === 'boolean') return config\n\n return false\n}\n"],"names":["checkIsAppPPREnabled","config","checkIsRoutePPREnabled"],"mappings":"AAAA;;;;;;CAMC,GAID;;;;;;CAMC,GACD;;;;;;AAAO,SAASA,qBACdC,MAAyC;IAEzC,gEAAgE;IAChE,IAAI,OAAOA,WAAW,aAAa,OAAO;IAE1C,+CAA+C;IAC/C,IAAI,OAAOA,WAAW,WAAW,OAAOA;IAExC,wEAAwE;IACxE,gBAAgB;IAChB,IAAIA,WAAW,eAAe,OAAO;IAErC,OAAO;AACT;AAUO,SAASC,uBACdD,MAAyC;IAEzC,gEAAgE;IAChE,IAAI,OAAOA,WAAW,aAAa,OAAO;IAE1C,+CAA+C;IAC/C,IAAI,OAAOA,WAAW,WAAW,OAAOA;IAExC,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 659, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/checks.ts"],"sourcesContent":["import type { AppRouteRouteModule } from './app-route/module'\nimport type { AppPageRouteModule } from './app-page/module'\nimport type { PagesRouteModule } from './pages/module'\nimport type { PagesAPIRouteModule } from './pages-api/module'\n\nimport type { RouteModule } from './route-module'\n\nimport { RouteKind } from '../route-kind'\n\nexport function isAppRouteRouteModule(\n routeModule: RouteModule\n): routeModule is AppRouteRouteModule {\n return routeModule.definition.kind === RouteKind.APP_ROUTE\n}\n\nexport function isAppPageRouteModule(\n routeModule: RouteModule\n): routeModule is AppPageRouteModule {\n return routeModule.definition.kind === RouteKind.APP_PAGE\n}\n\nexport function isPagesRouteModule(\n routeModule: RouteModule\n): routeModule is PagesRouteModule {\n return routeModule.definition.kind === RouteKind.PAGES\n}\n\nexport function isPagesAPIRouteModule(\n routeModule: RouteModule\n): routeModule is PagesAPIRouteModule {\n return routeModule.definition.kind === RouteKind.PAGES_API\n}\n"],"names":["RouteKind","isAppRouteRouteModule","routeModule","definition","kind","APP_ROUTE","isAppPageRouteModule","APP_PAGE","isPagesRouteModule","PAGES","isPagesAPIRouteModule","PAGES_API"],"mappings":";;;;;;;;;;AAOA,SAASA,SAAS,QAAQ,gBAAe;;AAElC,SAASC,sBACdC,WAAwB;IAExB,OAAOA,YAAYC,UAAU,CAACC,IAAI,KAAKJ,2KAAAA,CAAUK,SAAS;AAC5D;AAEO,SAASC,qBACdJ,WAAwB;IAExB,OAAOA,YAAYC,UAAU,CAACC,IAAI,KAAKJ,2KAAAA,CAAUO,QAAQ;AAC3D;AAEO,SAASC,mBACdN,WAAwB;IAExB,OAAOA,YAAYC,UAAU,CAACC,IAAI,KAAKJ,2KAAAA,CAAUS,KAAK;AACxD;AAEO,SAASC,sBACdR,WAAwB;IAExB,OAAOA,YAAYC,UAAU,CAACC,IAAI,KAAKJ,2KAAAA,CAAUW,SAAS;AAC5D","ignoreList":[0]}}, - {"offset": {"line": 687, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n"],"names":["ensureLeadingSlash","path","startsWith"],"mappings":"AAAA;;;CAGC,GACD;;;;AAAO,SAASA,mBAAmBC,IAAY;IAC7C,OAAOA,KAAKC,UAAU,CAAC,OAAOD,OAAO,CAAC,CAAC,EAAEA,MAAM;AACjD","ignoreList":[0]}}, - {"offset": {"line": 701, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/app-paths.ts"],"sourcesContent":["import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n"],"names":["ensureLeadingSlash","isGroupSegment","normalizeAppPath","route","split","reduce","pathname","segment","index","segments","length","normalizeRscURL","url","replace"],"mappings":";;;;;;AAAA,SAASA,kBAAkB,QAAQ,uCAAsC;AACzE,SAASC,cAAc,QAAQ,gBAAe;;;AAqBvC,SAASC,iBAAiBC,KAAa;IAC5C,WAAOH,wNAAAA,EACLG,MAAMC,KAAK,CAAC,KAAKC,MAAM,CAAC,CAACC,UAAUC,SAASC,OAAOC;QACjD,8BAA8B;QAC9B,IAAI,CAACF,SAAS;YACZ,OAAOD;QACT;QAEA,sBAAsB;QACtB,QAAIL,iLAAAA,EAAeM,UAAU;YAC3B,OAAOD;QACT;QAEA,iCAAiC;QACjC,IAAIC,OAAO,CAAC,EAAE,KAAK,KAAK;YACtB,OAAOD;QACT;QAEA,uDAAuD;QACvD,IACGC,CAAAA,YAAY,UAAUA,YAAY,OAAM,KACzCC,UAAUC,SAASC,MAAM,GAAG,GAC5B;YACA,OAAOJ;QACT;QAEA,OAAO,GAAGA,SAAS,CAAC,EAAEC,SAAS;IACjC,GAAG;AAEP;AAMO,SAASI,gBAAgBC,GAAW;IACzC,OAAOA,IAAIC,OAAO,CAChB,eACA,AACA,8BAD8B;AAGlC","ignoreList":[0]}}, - {"offset": {"line": 739, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-routes.ts"],"sourcesContent":["import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n"],"names":["normalizeAppPath","INTERCEPTION_ROUTE_MARKERS","isInterceptionRouteAppPath","path","split","find","segment","m","startsWith","undefined","extractInterceptionRouteInformation","interceptingRoute","marker","interceptedRoute","Error","slice","concat","join","splitInterceptingRoute","length"],"mappings":";;;;;;;;AAAA,SAASA,gBAAgB,QAAQ,cAAa;;AAGvC,MAAMC,6BAA6B;IACxC;IACA;IACA;IACA;CACD,CAAS;AAIH,SAASC,2BAA2BC,IAAY;IACrD,wCAAwC;IACxC,OACEA,KACGC,KAAK,CAAC,KACNC,IAAI,CAAC,CAACC,UACLL,2BAA2BI,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD,SACtDE;AAEZ;AAiBO,SAASC,oCACdP,IAAY;IAEZ,IAAIQ;IACJ,IAAIC;IACJ,IAAIC;IAEJ,KAAK,MAAMP,WAAWH,KAAKC,KAAK,CAAC,KAAM;QACrCQ,SAASX,2BAA2BI,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD;QACnE,IAAIK,QAAQ;;YACT,CAACD,mBAAmBE,iBAAiB,GAAGV,KAAKC,KAAK,CAACQ,QAAQ;YAC5D;QACF;IACF;IAEA,IAAI,CAACD,qBAAqB,CAACC,UAAU,CAACC,kBAAkB;QACtD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,4BAA4B,EAAEX,KAAK,iFAAiF,CAAC,GADlH,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEAQ,wBAAoBX,2MAAAA,EAAiBW,mBAAmB,iDAAiD;;IAEzG,OAAQC;QACN,KAAK;YACH,oIAAoI;YACpI,IAAID,sBAAsB,KAAK;gBAC7BE,mBAAmB,CAAC,CAAC,EAAEA,kBAAkB;YAC3C,OAAO;gBACLA,mBAAmBF,oBAAoB,MAAME;YAC/C;YACA;QACF,KAAK;YACH,uHAAuH;YACvH,IAAIF,sBAAsB,KAAK;gBAC7B,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,CAAC,4BAA4B,EAAEX,KAAK,4DAA4D,CAAC,GAD7F,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YACAU,mBAAmBF,kBAChBP,KAAK,CAAC,KACNW,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACH,kBACPI,IAAI,CAAC;YACR;QACF,KAAK;YACH,kIAAkI;YAClIJ,mBAAmB,MAAMA;YACzB;QACF,KAAK;YACH,iIAAiI;YAEjI,MAAMK,yBAAyBP,kBAAkBP,KAAK,CAAC;YACvD,IAAIc,uBAAuBC,MAAM,IAAI,GAAG;gBACtC,MAAM,OAAA,cAEL,CAFK,IAAIL,MACR,CAAC,4BAA4B,EAAEX,KAAK,+DAA+D,CAAC,GADhG,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEAU,mBAAmBK,uBAChBH,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACH,kBACPI,IAAI,CAAC;YACR;QACF;YACE,MAAM,OAAA,cAAyC,CAAzC,IAAIH,MAAM,iCAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAAwC;IAClD;IAEA,OAAO;QAAEH;QAAmBE;IAAiB;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 832, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/get-segment-param.tsx"],"sourcesContent":["import { INTERCEPTION_ROUTE_MARKERS } from './interception-routes'\nimport type { DynamicParamTypes } from '../../app-router-types'\n\nexport type SegmentParam = {\n paramName: string\n paramType: DynamicParamTypes\n}\n\n/**\n * Parse dynamic route segment to type of parameter\n */\nexport function getSegmentParam(segment: string): SegmentParam | null {\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((marker) =>\n segment.startsWith(marker)\n )\n\n // if an interception marker is part of the path segment, we need to jump ahead\n // to the relevant portion for param parsing\n if (interceptionMarker) {\n segment = segment.slice(interceptionMarker.length)\n }\n\n if (segment.startsWith('[[...') && segment.endsWith(']]')) {\n return {\n // TODO-APP: Optional catchall does not currently work with parallel routes,\n // so for now aren't handling a potential interception marker.\n paramType: 'optional-catchall',\n paramName: segment.slice(5, -2),\n }\n }\n\n if (segment.startsWith('[...') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `catchall-intercepted-${interceptionMarker}`\n : 'catchall',\n paramName: segment.slice(4, -1),\n }\n }\n\n if (segment.startsWith('[') && segment.endsWith(']')) {\n return {\n paramType: interceptionMarker\n ? `dynamic-intercepted-${interceptionMarker}`\n : 'dynamic',\n paramName: segment.slice(1, -1),\n }\n }\n\n return null\n}\n\nexport function isCatchAll(\n type: DynamicParamTypes\n): type is\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall' {\n return (\n type === 'catchall' ||\n type === 'catchall-intercepted-(..)(..)' ||\n type === 'catchall-intercepted-(.)' ||\n type === 'catchall-intercepted-(..)' ||\n type === 'catchall-intercepted-(...)' ||\n type === 'optional-catchall'\n )\n}\n\nexport function getParamProperties(paramType: DynamicParamTypes): {\n repeat: boolean\n optional: boolean\n} {\n let repeat = false\n let optional = false\n\n switch (paramType) {\n case 'catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n repeat = true\n break\n case 'optional-catchall':\n repeat = true\n optional = true\n break\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n break\n default:\n paramType satisfies never\n }\n\n return { repeat, optional }\n}\n"],"names":["INTERCEPTION_ROUTE_MARKERS","getSegmentParam","segment","interceptionMarker","find","marker","startsWith","slice","length","endsWith","paramType","paramName","isCatchAll","type","getParamProperties","repeat","optional"],"mappings":";;;;;;;;AAAA,SAASA,0BAA0B,QAAQ,wBAAuB;;AAW3D,SAASC,gBAAgBC,OAAe;IAC7C,MAAMC,qBAAqBH,+NAAAA,CAA2BI,IAAI,CAAC,CAACC,SAC1DH,QAAQI,UAAU,CAACD;IAGrB,+EAA+E;IAC/E,4CAA4C;IAC5C,IAAIF,oBAAoB;QACtBD,UAAUA,QAAQK,KAAK,CAACJ,mBAAmBK,MAAM;IACnD;IAEA,IAAIN,QAAQI,UAAU,CAAC,YAAYJ,QAAQO,QAAQ,CAAC,OAAO;QACzD,OAAO;YACL,4EAA4E;YAC5E,8DAA8D;YAC9DC,WAAW;YACXC,WAAWT,QAAQK,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,IAAIL,QAAQI,UAAU,CAAC,WAAWJ,QAAQO,QAAQ,CAAC,MAAM;QACvD,OAAO;YACLC,WAAWP,qBACP,CAAC,qBAAqB,EAAEA,oBAAoB,GAC5C;YACJQ,WAAWT,QAAQK,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,IAAIL,QAAQI,UAAU,CAAC,QAAQJ,QAAQO,QAAQ,CAAC,MAAM;QACpD,OAAO;YACLC,WAAWP,qBACP,CAAC,oBAAoB,EAAEA,oBAAoB,GAC3C;YACJQ,WAAWT,QAAQK,KAAK,CAAC,GAAG,CAAC;QAC/B;IACF;IAEA,OAAO;AACT;AAEO,SAASK,WACdC,IAAuB;IAQvB,OACEA,SAAS,cACTA,SAAS,mCACTA,SAAS,8BACTA,SAAS,+BACTA,SAAS,gCACTA,SAAS;AAEb;AAEO,SAASC,mBAAmBJ,SAA4B;IAI7D,IAAIK,SAAS;IACb,IAAIC,WAAW;IAEf,OAAQN;QACN,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACHK,SAAS;YACT;QACF,KAAK;YACHA,SAAS;YACTC,WAAW;YACX;QACF,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACH;QACF;YACEN;IACJ;IAEA,OAAO;QAAEK;QAAQC;IAAS;AAC5B","ignoreList":[0]}}, - {"offset": {"line": 907, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/routes/app.ts"],"sourcesContent":["import { InvariantError } from '../../invariant-error'\nimport { getSegmentParam, type SegmentParam } from '../utils/get-segment-param'\nimport {\n INTERCEPTION_ROUTE_MARKERS,\n type InterceptionMarker,\n} from '../utils/interception-routes'\n\nexport type RouteGroupAppRouteSegment = {\n type: 'route-group'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type ParallelRouteAppRouteSegment = {\n type: 'parallel-route'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type StaticAppRouteSegment = {\n type: 'static'\n name: string\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\nexport type DynamicAppRouteSegment = {\n type: 'dynamic'\n name: string\n param: SegmentParam\n\n /**\n * If present, this segment has an interception marker prefixing it.\n */\n interceptionMarker?: InterceptionMarker\n}\n\n/**\n * Represents a single segment in a route path.\n * Can be either static (e.g., \"blog\") or dynamic (e.g., \"[slug]\").\n */\nexport type AppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n | RouteGroupAppRouteSegment\n | ParallelRouteAppRouteSegment\n\nexport type NormalizedAppRouteSegment =\n | StaticAppRouteSegment\n | DynamicAppRouteSegment\n\nexport function parseAppRouteSegment(segment: string): AppRouteSegment | null {\n if (segment === '') {\n return null\n }\n\n // Check if the segment starts with an interception marker\n const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((m) =>\n segment.startsWith(m)\n )\n\n const param = getSegmentParam(segment)\n if (param) {\n return {\n type: 'dynamic',\n name: segment,\n param,\n interceptionMarker,\n }\n } else if (segment.startsWith('(') && segment.endsWith(')')) {\n return {\n type: 'route-group',\n name: segment,\n interceptionMarker,\n }\n } else if (segment.startsWith('@')) {\n return {\n type: 'parallel-route',\n name: segment,\n interceptionMarker,\n }\n } else {\n return {\n type: 'static',\n name: segment,\n interceptionMarker,\n }\n }\n}\n\nexport type AppRoute = {\n normalized: boolean\n pathname: string\n segments: AppRouteSegment[]\n dynamicSegments: DynamicAppRouteSegment[]\n interceptionMarker: InterceptionMarker | undefined\n interceptingRoute: AppRoute | undefined\n interceptedRoute: AppRoute | undefined\n}\n\nexport type NormalizedAppRoute = Omit & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n}\n\nexport function isNormalizedAppRoute(\n route: InterceptionAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isNormalizedAppRoute(\n route: AppRoute | InterceptionAppRoute\n): route is NormalizedAppRoute {\n return route.normalized\n}\n\nexport type InterceptionAppRoute = Omit<\n AppRoute,\n 'interceptionMarker' | 'interceptingRoute' | 'interceptedRoute'\n> & {\n interceptionMarker: InterceptionMarker\n interceptingRoute: AppRoute\n interceptedRoute: AppRoute\n}\n\nexport type NormalizedInterceptionAppRoute = Omit<\n InterceptionAppRoute,\n | 'normalized'\n | 'segments'\n | 'interceptionMarker'\n | 'interceptingRoute'\n | 'interceptedRoute'\n> & {\n normalized: true\n segments: NormalizedAppRouteSegment[]\n interceptionMarker: InterceptionMarker\n interceptingRoute: NormalizedAppRoute\n interceptedRoute: NormalizedAppRoute\n}\n\nexport function isInterceptionAppRoute(\n route: NormalizedAppRoute\n): route is NormalizedInterceptionAppRoute\nexport function isInterceptionAppRoute(\n route: AppRoute\n): route is InterceptionAppRoute {\n return (\n route.interceptionMarker !== undefined &&\n route.interceptingRoute !== undefined &&\n route.interceptedRoute !== undefined\n )\n}\n\nexport function parseAppRoute(\n pathname: string,\n normalized: true\n): NormalizedAppRoute\nexport function parseAppRoute(pathname: string, normalized: false): AppRoute\nexport function parseAppRoute(\n pathname: string,\n normalized: boolean\n): AppRoute | NormalizedAppRoute {\n const pathnameSegments = pathname.split('/').filter(Boolean)\n\n // Build segments array with static and dynamic segments\n const segments: AppRouteSegment[] = []\n\n // Parse if this is an interception route.\n let interceptionMarker: InterceptionMarker | undefined\n let interceptingRoute: AppRoute | NormalizedAppRoute | undefined\n let interceptedRoute: AppRoute | NormalizedAppRoute | undefined\n\n for (const segment of pathnameSegments) {\n // Parse the segment into an AppSegment.\n const appSegment = parseAppRouteSegment(segment)\n if (!appSegment) {\n continue\n }\n\n if (\n normalized &&\n (appSegment.type === 'route-group' ||\n appSegment.type === 'parallel-route')\n ) {\n throw new InvariantError(\n `${pathname} is being parsed as a normalized route, but it has a route group or parallel route segment.`\n )\n }\n\n segments.push(appSegment)\n\n if (appSegment.interceptionMarker) {\n const parts = pathname.split(appSegment.interceptionMarker)\n if (parts.length !== 2) {\n throw new Error(`Invalid interception route: ${pathname}`)\n }\n\n interceptingRoute = normalized\n ? parseAppRoute(parts[0], true)\n : parseAppRoute(parts[0], false)\n interceptedRoute = normalized\n ? parseAppRoute(parts[1], true)\n : parseAppRoute(parts[1], false)\n interceptionMarker = appSegment.interceptionMarker\n }\n }\n\n const dynamicSegments = segments.filter(\n (segment) => segment.type === 'dynamic'\n )\n\n return {\n normalized,\n pathname,\n segments,\n dynamicSegments,\n interceptionMarker,\n interceptingRoute,\n interceptedRoute,\n }\n}\n"],"names":["InvariantError","getSegmentParam","INTERCEPTION_ROUTE_MARKERS","parseAppRouteSegment","segment","interceptionMarker","find","m","startsWith","param","type","name","endsWith","isNormalizedAppRoute","route","normalized","isInterceptionAppRoute","undefined","interceptingRoute","interceptedRoute","parseAppRoute","pathname","pathnameSegments","split","filter","Boolean","segments","appSegment","push","parts","length","Error","dynamicSegments"],"mappings":";;;;;;;;;;AAAA,SAASA,cAAc,QAAQ,wBAAuB;AACtD,SAASC,eAAe,QAA2B,6BAA4B;AAC/E,SACEC,0BAA0B,QAErB,+BAA8B;;;;AAyD9B,SAASC,qBAAqBC,OAAe;IAClD,IAAIA,YAAY,IAAI;QAClB,OAAO;IACT;IAEA,0DAA0D;IAC1D,MAAMC,qBAAqBH,+NAAAA,CAA2BI,IAAI,CAAC,CAACC,IAC1DH,QAAQI,UAAU,CAACD;IAGrB,MAAME,YAAQR,qNAAAA,EAAgBG;IAC9B,IAAIK,OAAO;QACT,OAAO;YACLC,MAAM;YACNC,MAAMP;YACNK;YACAJ;QACF;IACF,OAAO,IAAID,QAAQI,UAAU,CAAC,QAAQJ,QAAQQ,QAAQ,CAAC,MAAM;QAC3D,OAAO;YACLF,MAAM;YACNC,MAAMP;YACNC;QACF;IACF,OAAO,IAAID,QAAQI,UAAU,CAAC,MAAM;QAClC,OAAO;YACLE,MAAM;YACNC,MAAMP;YACNC;QACF;IACF,OAAO;QACL,OAAO;YACLK,MAAM;YACNC,MAAMP;YACNC;QACF;IACF;AACF;AAoBO,SAASQ,qBACdC,KAAsC;IAEtC,OAAOA,MAAMC,UAAU;AACzB;AA6BO,SAASC,uBACdF,KAAe;IAEf,OACEA,MAAMT,kBAAkB,KAAKY,aAC7BH,MAAMI,iBAAiB,KAAKD,aAC5BH,MAAMK,gBAAgB,KAAKF;AAE/B;AAOO,SAASG,cACdC,QAAgB,EAChBN,UAAmB;IAEnB,MAAMO,mBAAmBD,SAASE,KAAK,CAAC,KAAKC,MAAM,CAACC;IAEpD,wDAAwD;IACxD,MAAMC,WAA8B,EAAE;IAEtC,0CAA0C;IAC1C,IAAIrB;IACJ,IAAIa;IACJ,IAAIC;IAEJ,KAAK,MAAMf,WAAWkB,iBAAkB;QACtC,wCAAwC;QACxC,MAAMK,aAAaxB,qBAAqBC;QACxC,IAAI,CAACuB,YAAY;YACf;QACF;QAEA,IACEZ,cACCY,CAAAA,WAAWjB,IAAI,KAAK,iBACnBiB,WAAWjB,IAAI,KAAK,gBAAe,GACrC;YACA,MAAM,OAAA,cAEL,CAFK,IAAIV,4LAAAA,CACR,GAAGqB,SAAS,2FAA2F,CAAC,GADpG,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEAK,SAASE,IAAI,CAACD;QAEd,IAAIA,WAAWtB,kBAAkB,EAAE;YACjC,MAAMwB,QAAQR,SAASE,KAAK,CAACI,WAAWtB,kBAAkB;YAC1D,IAAIwB,MAAMC,MAAM,KAAK,GAAG;gBACtB,MAAM,OAAA,cAAoD,CAApD,IAAIC,MAAM,CAAC,4BAA4B,EAAEV,UAAU,GAAnD,qBAAA;2BAAA;gCAAA;kCAAA;gBAAmD;YAC3D;YAEAH,oBAAoBH,aAChBK,cAAcS,KAAK,CAAC,EAAE,EAAE,QACxBT,cAAcS,KAAK,CAAC,EAAE,EAAE;YAC5BV,mBAAmBJ,aACfK,cAAcS,KAAK,CAAC,EAAE,EAAE,QACxBT,cAAcS,KAAK,CAAC,EAAE,EAAE;YAC5BxB,qBAAqBsB,WAAWtB,kBAAkB;QACpD;IACF;IAEA,MAAM2B,kBAAkBN,SAASF,MAAM,CACrC,CAACpB,UAAYA,QAAQM,IAAI,KAAK;IAGhC,OAAO;QACLK;QACAM;QACAK;QACAM;QACA3B;QACAa;QACAC;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1014, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-loader-tree.ts"],"sourcesContent":["import { DEFAULT_SEGMENT_KEY } from '../../segment'\nimport type { LoaderTree } from '../../../../server/lib/app-dir-module'\n\nexport function parseLoaderTree(tree: LoaderTree) {\n const [segment, parallelRoutes, modules] = tree\n const { layout, template } = modules\n let { page } = modules\n // a __DEFAULT__ segment means that this route didn't match any of the\n // segments in the route, so we should use the default page\n page = segment === DEFAULT_SEGMENT_KEY ? modules.defaultPage : page\n\n const conventionPath = layout?.[1] || template?.[1] || page?.[1]\n\n return {\n page,\n segment,\n modules,\n /* it can be either layout / template / page */\n conventionPath,\n parallelRoutes,\n }\n}\n"],"names":["DEFAULT_SEGMENT_KEY","parseLoaderTree","tree","segment","parallelRoutes","modules","layout","template","page","defaultPage","conventionPath"],"mappings":";;;;AAAA,SAASA,mBAAmB,QAAQ,gBAAe;;AAG5C,SAASC,gBAAgBC,IAAgB;IAC9C,MAAM,CAACC,SAASC,gBAAgBC,QAAQ,GAAGH;IAC3C,MAAM,EAAEI,MAAM,EAAEC,QAAQ,EAAE,GAAGF;IAC7B,IAAI,EAAEG,IAAI,EAAE,GAAGH;IACf,sEAAsE;IACtE,2DAA2D;IAC3DG,OAAOL,YAAYH,sLAAAA,GAAsBK,QAAQI,WAAW,GAAGD;IAE/D,MAAME,iBAAiBJ,QAAQ,CAAC,EAAE,IAAIC,UAAU,CAAC,EAAE,IAAIC,MAAM,CAAC,EAAE;IAEhE,OAAO;QACLA;QACAL;QACAE;QACA,6CAA6C,GAC7CK;QACAN;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1040, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-prefix-from-param-type.ts"],"sourcesContent":["import type { DynamicParamTypes } from '../../app-router-types'\n\nexport function interceptionPrefixFromParamType(\n paramType: DynamicParamTypes\n): string | null {\n switch (paramType) {\n case 'catchall-intercepted-(..)(..)':\n case 'dynamic-intercepted-(..)(..)':\n return '(..)(..)'\n case 'catchall-intercepted-(.)':\n case 'dynamic-intercepted-(.)':\n return '(.)'\n case 'catchall-intercepted-(..)':\n case 'dynamic-intercepted-(..)':\n return '(..)'\n case 'catchall-intercepted-(...)':\n case 'dynamic-intercepted-(...)':\n return '(...)'\n case 'catchall':\n case 'dynamic':\n case 'optional-catchall':\n default:\n return null\n }\n}\n"],"names":["interceptionPrefixFromParamType","paramType"],"mappings":";;;;AAEO,SAASA,gCACdC,SAA4B;IAE5B,OAAQA;QACN,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;YACH,OAAO;QACT,KAAK;QACL,KAAK;QACL,KAAK;QACL;YACE,OAAO;IACX;AACF","ignoreList":[0]}}, - {"offset": {"line": 1069, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/resolve-param-value.ts"],"sourcesContent":["import type { Params } from '../../../../server/request/params'\nimport type { DynamicParamTypes } from '../../app-router-types'\nimport { InvariantError } from '../../invariant-error'\nimport type {\n NormalizedAppRoute,\n NormalizedAppRouteSegment,\n} from '../routes/app'\nimport { interceptionPrefixFromParamType } from './interception-prefix-from-param-type'\n\n/**\n * Extracts the param value from a path segment, handling interception markers\n * based on the expected param type.\n *\n * @param pathSegment - The path segment to extract the value from\n * @param params - The current params object for resolving dynamic param references\n * @param paramType - The expected param type which may include interception marker info\n * @returns The extracted param value\n */\nfunction getParamValueFromSegment(\n pathSegment: NormalizedAppRouteSegment,\n params: Params,\n paramType: DynamicParamTypes\n): string {\n // If the segment is dynamic, resolve it from the params object\n if (pathSegment.type === 'dynamic') {\n return params[pathSegment.param.paramName] as string\n }\n\n // If the paramType indicates this is an intercepted param, strip the marker\n // that matches the interception marker in the param type\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (interceptionPrefix === pathSegment.interceptionMarker) {\n return pathSegment.name.replace(pathSegment.interceptionMarker, '')\n }\n\n // For static segments, use the name\n return pathSegment.name\n}\n\n/**\n * Resolves a route parameter value from the route segments at the given depth.\n * This shared logic is used by both extractPathnameRouteParamSegmentsFromLoaderTree\n * and resolveRouteParamsFromTree.\n *\n * @param paramName - The parameter name to resolve\n * @param paramType - The parameter type (dynamic, catchall, etc.)\n * @param depth - The current depth in the route tree\n * @param route - The normalized route containing segments\n * @param params - The current params object (used to resolve embedded param references)\n * @param options - Configuration options\n * @returns The resolved parameter value, or undefined if it cannot be resolved\n */\nexport function resolveParamValue(\n paramName: string,\n paramType: DynamicParamTypes,\n depth: number,\n route: NormalizedAppRoute,\n params: Params\n): string | string[] | undefined {\n switch (paramType) {\n case 'catchall':\n case 'optional-catchall':\n case 'catchall-intercepted-(..)(..)':\n case 'catchall-intercepted-(.)':\n case 'catchall-intercepted-(..)':\n case 'catchall-intercepted-(...)':\n // For catchall routes, derive from pathname using depth to determine\n // which segments to use\n const processedSegments: string[] = []\n\n // Process segments to handle any embedded dynamic params\n for (let index = depth; index < route.segments.length; index++) {\n const pathSegment = route.segments[index]\n\n if (pathSegment.type === 'static') {\n let value = pathSegment.name\n\n // For intercepted catch-all params, strip the marker from the first segment\n const interceptionPrefix = interceptionPrefixFromParamType(paramType)\n if (\n interceptionPrefix &&\n index === depth &&\n interceptionPrefix === pathSegment.interceptionMarker\n ) {\n // Strip the interception marker from the value\n value = value.replace(pathSegment.interceptionMarker, '')\n }\n\n processedSegments.push(value)\n } else {\n // If the segment is a param placeholder, check if we have its value\n if (!params.hasOwnProperty(pathSegment.param.paramName)) {\n // If the segment is an optional catchall, we can break out of the\n // loop because it's optional!\n if (pathSegment.param.paramType === 'optional-catchall') {\n break\n }\n\n // Unknown param placeholder in pathname - can't derive full value\n return undefined\n }\n\n // If the segment matches a param, use the param value\n // We don't encode values here as that's handled during retrieval.\n const paramValue = params[pathSegment.param.paramName]\n if (Array.isArray(paramValue)) {\n processedSegments.push(...paramValue)\n } else {\n processedSegments.push(paramValue as string)\n }\n }\n }\n\n if (processedSegments.length > 0) {\n return processedSegments\n } else if (paramType === 'optional-catchall') {\n return undefined\n } else {\n // We shouldn't be able to match a catchall segment without any path\n // segments if it's not an optional catchall\n throw new InvariantError(\n `Unexpected empty path segments match for a route \"${route.pathname}\" with param \"${paramName}\" of type \"${paramType}\"`\n )\n }\n case 'dynamic':\n case 'dynamic-intercepted-(..)(..)':\n case 'dynamic-intercepted-(.)':\n case 'dynamic-intercepted-(..)':\n case 'dynamic-intercepted-(...)':\n // For regular dynamic parameters, take the segment at this depth\n if (depth < route.segments.length) {\n const pathSegment = route.segments[depth]\n\n // Check if the segment at this depth is a placeholder for an unknown param\n if (\n pathSegment.type === 'dynamic' &&\n !params.hasOwnProperty(pathSegment.param.paramName)\n ) {\n // The segment is a placeholder like [category] and we don't have the value\n return undefined\n }\n\n // If the segment matches a param, use the param value from params object\n // Otherwise it's a static segment, just use it directly\n // We don't encode values here as that's handled during retrieval\n return getParamValueFromSegment(pathSegment, params, paramType)\n }\n\n return undefined\n\n default:\n paramType satisfies never\n }\n}\n"],"names":["InvariantError","interceptionPrefixFromParamType","getParamValueFromSegment","pathSegment","params","paramType","type","param","paramName","interceptionPrefix","interceptionMarker","name","replace","resolveParamValue","depth","route","processedSegments","index","segments","length","value","push","hasOwnProperty","undefined","paramValue","Array","isArray","pathname"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1183, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.ts"],"sourcesContent":["import type { LoaderTree } from '../../../server/lib/app-dir-module'\nimport type { Params } from '../../../server/request/params'\nimport type { DynamicParamTypes } from '../../../shared/lib/app-router-types'\nimport {\n parseAppRouteSegment,\n type NormalizedAppRoute,\n type NormalizedAppRouteSegment,\n} from '../../../shared/lib/router/routes/app'\nimport { parseLoaderTree } from '../../../shared/lib/router/utils/parse-loader-tree'\nimport { resolveParamValue } from '../../../shared/lib/router/utils/resolve-param-value'\n\n/**\n * Validates that the static segments in currentPath match the corresponding\n * segments in targetSegments. This ensures we only extract dynamic parameters\n * that are part of the target pathname structure.\n *\n * Segments are compared literally - interception markers like \"(.)photo\" are\n * part of the pathname and must match exactly.\n *\n * @example\n * // Matching paths\n * currentPath: ['blog', '(.)photo']\n * targetSegments: ['blog', '(.)photo', '[id]']\n * → Returns true (both static segments match exactly)\n *\n * @example\n * // Non-matching paths\n * currentPath: ['blog', '(.)photo']\n * targetSegments: ['blog', 'photo', '[id]']\n * → Returns false (segments don't match - marker is part of pathname)\n *\n * @param currentPath - The accumulated path segments from the loader tree\n * @param targetSegments - The target pathname split into segments\n * @returns true if all static segments match, false otherwise\n */\nfunction validatePrefixMatch(\n currentPath: NormalizedAppRouteSegment[],\n route: NormalizedAppRoute\n): boolean {\n for (let i = 0; i < currentPath.length; i++) {\n const pathSegment = currentPath[i]\n const targetPathSegment = route.segments[i]\n\n // Type mismatch - one is static, one is dynamic\n if (pathSegment.type !== targetPathSegment.type) {\n return false\n }\n\n // One has an interception marker, the other doesn't.\n if (\n pathSegment.interceptionMarker !== targetPathSegment.interceptionMarker\n ) {\n return false\n }\n\n // Both are static but names don't match\n if (\n pathSegment.type === 'static' &&\n targetPathSegment.type === 'static' &&\n pathSegment.name !== targetPathSegment.name\n ) {\n return false\n }\n // Both are dynamic but param names don't match\n else if (\n pathSegment.type === 'dynamic' &&\n targetPathSegment.type === 'dynamic' &&\n pathSegment.param.paramType !== targetPathSegment.param.paramType &&\n pathSegment.param.paramName !== targetPathSegment.param.paramName\n ) {\n return false\n }\n }\n\n return true\n}\n\n/**\n * Extracts pathname route param segments from a loader tree and resolves\n * parameter values from static segments in the route.\n *\n * @param loaderTree - The loader tree structure containing route hierarchy\n * @param route - The target route to match against\n * @returns Object containing pathname route param segments and resolved params\n */\nexport function extractPathnameRouteParamSegmentsFromLoaderTree(\n loaderTree: LoaderTree,\n route: NormalizedAppRoute\n): {\n pathnameRouteParamSegments: Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n }>\n params: Params\n} {\n const pathnameRouteParamSegments: Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n }> = []\n const params: Params = {}\n\n // BFS traversal with depth and path tracking\n const queue: Array<{\n tree: LoaderTree\n depth: number\n currentPath: NormalizedAppRouteSegment[]\n }> = [{ tree: loaderTree, depth: 0, currentPath: [] }]\n\n while (queue.length > 0) {\n const { tree, depth, currentPath } = queue.shift()!\n const { segment, parallelRoutes } = parseLoaderTree(tree)\n\n // Build the path for the current node\n let updatedPath = currentPath\n let nextDepth = depth\n\n const appSegment = parseAppRouteSegment(segment)\n\n // Only add to path if it's a real segment that appears in the URL\n // Route groups and parallel markers don't contribute to URL pathname\n if (\n appSegment &&\n appSegment.type !== 'route-group' &&\n appSegment.type !== 'parallel-route'\n ) {\n updatedPath = [...currentPath, appSegment]\n nextDepth = depth + 1\n }\n\n // Check if this segment has a param and matches the target pathname at this depth\n if (appSegment?.type === 'dynamic') {\n const { paramName, paramType } = appSegment.param\n\n // Check if this segment is at the correct depth in the target pathname\n // A segment matches if:\n // 1. There's a dynamic segment at this depth in the pathname\n // 2. The parameter names match (e.g., [id] matches [id], not [category])\n // 3. The static segments leading up to this point match (prefix check)\n if (depth < route.segments.length) {\n const targetSegment = route.segments[depth]\n\n // Match if the target pathname has a dynamic segment at this depth\n if (targetSegment.type === 'dynamic') {\n // Check that parameter names match exactly\n // This prevents [category] from matching against /[id]\n if (paramName !== targetSegment.param.paramName) {\n continue // Different param names, skip this segment\n }\n\n // Validate that the path leading up to this dynamic segment matches\n // the target pathname. This prevents false matches like extracting\n // [slug] from \"/news/[slug]\" when the tree has \"/blog/[slug]\"\n if (validatePrefixMatch(currentPath, route)) {\n pathnameRouteParamSegments.push({\n name: segment,\n paramName,\n paramType,\n })\n }\n }\n }\n\n // Resolve parameter value if it's not already known.\n if (!params.hasOwnProperty(paramName)) {\n const paramValue = resolveParamValue(\n paramName,\n paramType,\n depth,\n route,\n params\n )\n\n if (paramValue !== undefined) {\n params[paramName] = paramValue\n }\n }\n }\n\n // Continue traversing all parallel routes to find matching segments\n for (const parallelRoute of Object.values(parallelRoutes)) {\n queue.push({\n tree: parallelRoute,\n depth: nextDepth,\n currentPath: updatedPath,\n })\n }\n }\n\n return { pathnameRouteParamSegments, params }\n}\n"],"names":["parseAppRouteSegment","parseLoaderTree","resolveParamValue","validatePrefixMatch","currentPath","route","i","length","pathSegment","targetPathSegment","segments","type","interceptionMarker","name","param","paramType","paramName","extractPathnameRouteParamSegmentsFromLoaderTree","loaderTree","pathnameRouteParamSegments","params","queue","tree","depth","shift","segment","parallelRoutes","updatedPath","nextDepth","appSegment","targetSegment","push","hasOwnProperty","paramValue","undefined","parallelRoute","Object","values"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1319, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/static-paths/utils.ts"],"sourcesContent":["import type { LoaderTree } from '../../server/lib/app-dir-module'\nimport type { Params } from '../../server/request/params'\nimport type { AppPageRouteModule } from '../../server/route-modules/app-page/module.compiled'\nimport type { AppRouteRouteModule } from '../../server/route-modules/app-route/module.compiled'\nimport { isAppPageRouteModule } from '../../server/route-modules/checks'\nimport type { DynamicParamTypes } from '../../shared/lib/app-router-types'\nimport {\n parseAppRouteSegment,\n type NormalizedAppRoute,\n} from '../../shared/lib/router/routes/app'\nimport { parseLoaderTree } from '../../shared/lib/router/utils/parse-loader-tree'\nimport type { AppSegment } from '../segment-config/app/app-segments'\nimport { extractPathnameRouteParamSegmentsFromLoaderTree } from './app/extract-pathname-route-param-segments-from-loader-tree'\nimport { resolveParamValue } from '../../shared/lib/router/utils/resolve-param-value'\nimport type { FallbackRouteParam } from './types'\n\n/**\n * Encodes a parameter value using the provided encoder.\n *\n * @param value - The value to encode.\n * @param encoder - The encoder to use.\n * @returns The encoded value.\n */\nexport function encodeParam(\n value: string | string[],\n encoder: (value: string) => string\n) {\n let replaceValue: string\n if (Array.isArray(value)) {\n replaceValue = value.map(encoder).join('/')\n } else {\n replaceValue = encoder(value)\n }\n\n return replaceValue\n}\n\n/**\n * Normalizes a pathname to a consistent format.\n *\n * @param pathname - The pathname to normalize.\n * @returns The normalized pathname.\n */\nexport function normalizePathname(pathname: string) {\n return pathname.replace(/\\\\/g, '/').replace(/(?!^)\\/$/, '')\n}\n\n/**\n * Extracts segments that contribute to the pathname by traversing the loader tree\n * based on the route module type.\n *\n * @param routeModule - The app route module (page or route handler)\n * @param segments - Array of AppSegment objects collected from the route\n * @param page - The target pathname to match against, INCLUDING interception\n * markers (e.g., \"/blog/[slug]\", \"/(.)photo/[id]\")\n * @returns Array of segments with param info that contribute to the pathname\n */\nexport function extractPathnameRouteParamSegments(\n routeModule: AppRouteRouteModule | AppPageRouteModule,\n segments: readonly Readonly[],\n route: NormalizedAppRoute\n): Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n}> {\n // For AppPageRouteModule, use the loaderTree traversal approach\n if (isAppPageRouteModule(routeModule)) {\n const { pathnameRouteParamSegments } =\n extractPathnameRouteParamSegmentsFromLoaderTree(\n routeModule.userland.loaderTree,\n route\n )\n return pathnameRouteParamSegments\n }\n\n return extractPathnameRouteParamSegmentsFromSegments(segments)\n}\n\nexport function extractPathnameRouteParamSegmentsFromSegments(\n segments: readonly Readonly[]\n): Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n}> {\n // TODO: should we consider what values are already present in the page?\n\n // For AppRouteRouteModule, filter the segments array to get the route params\n // that contribute to the pathname.\n const result: Array<{\n readonly name: string\n readonly paramName: string\n readonly paramType: DynamicParamTypes\n }> = []\n\n for (const segment of segments) {\n // Skip segments without param info.\n if (!segment.paramName || !segment.paramType) continue\n\n // Collect all the route param keys that contribute to the pathname.\n result.push({\n name: segment.name,\n paramName: segment.paramName,\n paramType: segment.paramType,\n })\n }\n\n return result\n}\n\n/**\n * Resolves all route parameters from the loader tree. This function uses\n * tree-based traversal to correctly handle the hierarchical structure of routes\n * and accurately determine parameter values based on their depth in the tree.\n *\n * This processes both regular route parameters (from the main children route) and\n * parallel route parameters (from slots like @modal, @sidebar).\n *\n * Unlike interpolateParallelRouteParams (which has a complete URL at runtime),\n * this build-time function determines which route params are unknown.\n * The pathname may contain placeholders like [slug], making it incomplete.\n *\n * @param loaderTree - The loader tree structure containing route hierarchy\n * @param params - The current route parameters object (will be mutated)\n * @param route - The current route being processed\n * @param fallbackRouteParams - Array of fallback route parameters (will be mutated)\n */\nexport function resolveRouteParamsFromTree(\n loaderTree: LoaderTree,\n params: Params,\n route: NormalizedAppRoute,\n fallbackRouteParams: FallbackRouteParam[]\n): void {\n // Stack-based traversal with depth tracking\n const stack: Array<{\n tree: LoaderTree\n depth: number\n }> = [{ tree: loaderTree, depth: 0 }]\n\n while (stack.length > 0) {\n const { tree, depth } = stack.pop()!\n const { segment, parallelRoutes } = parseLoaderTree(tree)\n\n const appSegment = parseAppRouteSegment(segment)\n\n // If this segment is a route parameter, then we should process it if it's\n // not already known and is not already marked as a fallback route param.\n if (\n appSegment?.type === 'dynamic' &&\n !params.hasOwnProperty(appSegment.param.paramName) &&\n !fallbackRouteParams.some(\n (param) => param.paramName === appSegment.param.paramName\n )\n ) {\n const { paramName, paramType } = appSegment.param\n\n const paramValue = resolveParamValue(\n paramName,\n paramType,\n depth,\n route,\n params\n )\n\n if (paramValue !== undefined) {\n params[paramName] = paramValue\n } else if (paramType !== 'optional-catchall') {\n // If we couldn't resolve the param, mark it as a fallback\n fallbackRouteParams.push({ paramName, paramType })\n }\n }\n\n // Calculate next depth - increment if this is not a route group and not empty\n let nextDepth = depth\n if (\n appSegment &&\n appSegment.type !== 'route-group' &&\n appSegment.type !== 'parallel-route'\n ) {\n nextDepth++\n }\n\n // Add all parallel routes to the stack for processing.\n for (const parallelRoute of Object.values(parallelRoutes)) {\n stack.push({ tree: parallelRoute, depth: nextDepth })\n }\n }\n}\n"],"names":["isAppPageRouteModule","parseAppRouteSegment","parseLoaderTree","extractPathnameRouteParamSegmentsFromLoaderTree","resolveParamValue","encodeParam","value","encoder","replaceValue","Array","isArray","map","join","normalizePathname","pathname","replace","extractPathnameRouteParamSegments","routeModule","segments","route","pathnameRouteParamSegments","userland","loaderTree","extractPathnameRouteParamSegmentsFromSegments","result","segment","paramName","paramType","push","name","resolveRouteParamsFromTree","params","fallbackRouteParams","stack","tree","depth","length","pop","parallelRoutes","appSegment","type","hasOwnProperty","param","some","paramValue","undefined","nextDepth","parallelRoute","Object","values"],"mappings":";;;;;;;;;;;;AAIA,SAASA,oBAAoB,QAAQ,oCAAmC;AAExE,SACEC,oBAAoB,QAEf,qCAAoC;AAC3C,SAASC,eAAe,QAAQ,kDAAiD;AAEjF,SAASC,+CAA+C,QAAQ,+DAA8D;AAC9H,SAASC,iBAAiB,QAAQ,oDAAmD;;;;;;AAU9E,SAASC,YACdC,KAAwB,EACxBC,OAAkC;IAElC,IAAIC;IACJ,IAAIC,MAAMC,OAAO,CAACJ,QAAQ;QACxBE,eAAeF,MAAMK,GAAG,CAACJ,SAASK,IAAI,CAAC;IACzC,OAAO;QACLJ,eAAeD,QAAQD;IACzB;IAEA,OAAOE;AACT;AAQO,SAASK,kBAAkBC,QAAgB;IAChD,OAAOA,SAASC,OAAO,CAAC,OAAO,KAAKA,OAAO,CAAC,YAAY;AAC1D;AAYO,SAASC,kCACdC,WAAqD,EACrDC,QAAyC,EACzCC,KAAyB;IAMzB,gEAAgE;IAChE,QAAInB,mMAAAA,EAAqBiB,cAAc;QACrC,MAAM,EAAEG,0BAA0B,EAAE,OAClCjB,wSAAAA,EACEc,YAAYI,QAAQ,CAACC,UAAU,EAC/BH;QAEJ,OAAOC;IACT;IAEA,OAAOG,8CAA8CL;AACvD;AAEO,SAASK,8CACdL,QAAyC;IAMzC,wEAAwE;IAExE,6EAA6E;IAC7E,mCAAmC;IACnC,MAAMM,SAID,EAAE;IAEP,KAAK,MAAMC,WAAWP,SAAU;QAC9B,oCAAoC;QACpC,IAAI,CAACO,QAAQC,SAAS,IAAI,CAACD,QAAQE,SAAS,EAAE;QAE9C,oEAAoE;QACpEH,OAAOI,IAAI,CAAC;YACVC,MAAMJ,QAAQI,IAAI;YAClBH,WAAWD,QAAQC,SAAS;YAC5BC,WAAWF,QAAQE,SAAS;QAC9B;IACF;IAEA,OAAOH;AACT;AAmBO,SAASM,2BACdR,UAAsB,EACtBS,MAAc,EACdZ,KAAyB,EACzBa,mBAAyC;IAEzC,4CAA4C;IAC5C,MAAMC,QAGD;QAAC;YAAEC,MAAMZ;YAAYa,OAAO;QAAE;KAAE;IAErC,MAAOF,MAAMG,MAAM,GAAG,EAAG;QACvB,MAAM,EAAEF,IAAI,EAAEC,KAAK,EAAE,GAAGF,MAAMI,GAAG;QACjC,MAAM,EAAEZ,OAAO,EAAEa,cAAc,EAAE,OAAGpC,qNAAAA,EAAgBgC;QAEpD,MAAMK,iBAAatC,uMAAAA,EAAqBwB;QAExC,0EAA0E;QAC1E,yEAAyE;QACzE,IACEc,CAAAA,cAAAA,OAAAA,KAAAA,IAAAA,WAAYC,IAAI,MAAK,aACrB,CAACT,OAAOU,cAAc,CAACF,WAAWG,KAAK,CAAChB,SAAS,KACjD,CAACM,oBAAoBW,IAAI,CACvB,CAACD,QAAUA,MAAMhB,SAAS,KAAKa,WAAWG,KAAK,CAAChB,SAAS,GAE3D;YACA,MAAM,EAAEA,SAAS,EAAEC,SAAS,EAAE,GAAGY,WAAWG,KAAK;YAEjD,MAAME,iBAAaxC,yNAAAA,EACjBsB,WACAC,WACAQ,OACAhB,OACAY;YAGF,IAAIa,eAAeC,WAAW;gBAC5Bd,MAAM,CAACL,UAAU,GAAGkB;YACtB,OAAO,IAAIjB,cAAc,qBAAqB;gBAC5C,0DAA0D;gBAC1DK,oBAAoBJ,IAAI,CAAC;oBAAEF;oBAAWC;gBAAU;YAClD;QACF;QAEA,8EAA8E;QAC9E,IAAImB,YAAYX;QAChB,IACEI,cACAA,WAAWC,IAAI,KAAK,iBACpBD,WAAWC,IAAI,KAAK,kBACpB;YACAM;QACF;QAEA,uDAAuD;QACvD,KAAK,MAAMC,iBAAiBC,OAAOC,MAAM,CAACX,gBAAiB;YACzDL,MAAML,IAAI,CAAC;gBAAEM,MAAMa;gBAAeZ,OAAOW;YAAU;QACrD;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1423, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/get-short-dynamic-param-type.tsx"],"sourcesContent":["import type {\n DynamicParamTypes,\n DynamicParamTypesShort,\n} from '../../shared/lib/app-router-types'\n\nexport const dynamicParamTypes: Record<\n DynamicParamTypes,\n DynamicParamTypesShort\n> = {\n catchall: 'c',\n 'catchall-intercepted-(..)(..)': 'ci(..)(..)',\n 'catchall-intercepted-(.)': 'ci(.)',\n 'catchall-intercepted-(..)': 'ci(..)',\n 'catchall-intercepted-(...)': 'ci(...)',\n 'optional-catchall': 'oc',\n dynamic: 'd',\n 'dynamic-intercepted-(..)(..)': 'di(..)(..)',\n 'dynamic-intercepted-(.)': 'di(.)',\n 'dynamic-intercepted-(..)': 'di(..)',\n 'dynamic-intercepted-(...)': 'di(...)',\n}\n"],"names":["dynamicParamTypes","catchall","dynamic"],"mappings":";;;;AAKO,MAAMA,oBAGT;IACFC,UAAU;IACV,iCAAiC;IACjC,4BAA4B;IAC5B,6BAA6B;IAC7B,8BAA8B;IAC9B,qBAAqB;IACrBC,SAAS;IACT,gCAAgC;IAChC,2BAA2B;IAC3B,4BAA4B;IAC5B,6BAA6B;AAC/B,EAAC","ignoreList":[0]}}, - {"offset": {"line": 1444, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/fallback-params.ts"],"sourcesContent":["import { resolveRouteParamsFromTree } from '../../build/static-paths/utils'\nimport type { FallbackRouteParam } from '../../build/static-paths/types'\nimport type { DynamicParamTypesShort } from '../../shared/lib/app-router-types'\nimport { dynamicParamTypes } from '../app-render/get-short-dynamic-param-type'\nimport type AppPageRouteModule from '../route-modules/app-page/module'\nimport { parseAppRoute } from '../../shared/lib/router/routes/app'\nimport { extractPathnameRouteParamSegmentsFromLoaderTree } from '../../build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree'\n\nexport type OpaqueFallbackRouteParamValue = [\n /**\n * The search value of the fallback route param. This is the opaque key\n * that will be used to replace the dynamic param in the postponed state.\n */\n searchValue: string,\n\n /**\n * The dynamic param type of the fallback route param. This is the type of\n * the dynamic param that will be used to replace the dynamic param in the\n * postponed state.\n */\n dynamicParamType: DynamicParamTypesShort,\n]\n\n/**\n * An opaque fallback route params object. This is used to store the fallback\n * route params in a way that is not easily accessible to the client.\n */\nexport type OpaqueFallbackRouteParams = ReadonlyMap<\n string,\n OpaqueFallbackRouteParamValue\n>\n\n/**\n * The entries of the opaque fallback route params object.\n *\n * @param key the key of the fallback route param\n * @param value the value of the fallback route param\n */\nexport type OpaqueFallbackRouteParamEntries =\n ReturnType extends MapIterator<\n [infer K, infer V]\n >\n ? ReadonlyArray<[K, V]>\n : never\n\n/**\n * Creates an opaque fallback route params object from the fallback route params.\n *\n * @param fallbackRouteParams the fallback route params\n * @returns the opaque fallback route params\n */\nexport function createOpaqueFallbackRouteParams(\n fallbackRouteParams: readonly FallbackRouteParam[]\n): OpaqueFallbackRouteParams | null {\n // If there are no fallback route params, we can return early.\n if (fallbackRouteParams.length === 0) return null\n\n // As we're creating unique keys for each of the dynamic route params, we only\n // need to generate a unique ID once per request because each of the keys will\n // be also be unique.\n const uniqueID = Math.random().toString(16).slice(2)\n\n const keys = new Map()\n\n // Generate a unique key for the fallback route param, if this key is found\n // in the static output, it represents a bug in cache components.\n for (const { paramName, paramType } of fallbackRouteParams) {\n keys.set(paramName, [\n `%%drp:${paramName}:${uniqueID}%%`,\n dynamicParamTypes[paramType],\n ])\n }\n\n return keys\n}\n\n/**\n * Gets the fallback route params for a given page. This is an expensive\n * operation because it requires parsing the loader tree to extract the fallback\n * route params.\n *\n * @param page the page\n * @param routeModule the route module\n * @returns the opaque fallback route params\n */\nexport function getFallbackRouteParams(\n page: string,\n routeModule: AppPageRouteModule\n) {\n const route = parseAppRoute(page, true)\n\n // Extract the pathname-contributing segments from the loader tree. This\n // mirrors the logic in buildAppStaticPaths where we determine which segments\n // actually contribute to the pathname.\n const { pathnameRouteParamSegments, params } =\n extractPathnameRouteParamSegmentsFromLoaderTree(\n routeModule.userland.loaderTree,\n route\n )\n\n // Create fallback route params for the pathname segments.\n const fallbackRouteParams: FallbackRouteParam[] =\n pathnameRouteParamSegments.map(({ paramName, paramType }) => ({\n paramName,\n paramType,\n }))\n\n // Resolve route params from the loader tree. This mutates the\n // fallbackRouteParams array to add any route params that are\n // unknown at request time.\n //\n // The page parameter contains placeholders like [slug], which helps\n // resolveRouteParamsFromTree determine which params are unknown.\n resolveRouteParamsFromTree(\n routeModule.userland.loaderTree,\n params, // Static params extracted from the page\n route, // The page pattern with placeholders\n fallbackRouteParams // Will be mutated to add route params\n )\n\n // Convert the fallback route params to an opaque format that can be safely\n // used in the postponed state without exposing implementation details.\n return createOpaqueFallbackRouteParams(fallbackRouteParams)\n}\n"],"names":["resolveRouteParamsFromTree","dynamicParamTypes","parseAppRoute","extractPathnameRouteParamSegmentsFromLoaderTree","createOpaqueFallbackRouteParams","fallbackRouteParams","length","uniqueID","Math","random","toString","slice","keys","Map","paramName","paramType","set","getFallbackRouteParams","page","routeModule","route","pathnameRouteParamSegments","params","userland","loaderTree","map"],"mappings":";;;;;;AAAA,SAASA,0BAA0B,QAAQ,iCAAgC;AAG3E,SAASC,iBAAiB,QAAQ,6CAA4C;AAE9E,SAASC,aAAa,QAAQ,qCAAoC;AAClE,SAASC,+CAA+C,QAAQ,sFAAqF;;;;;AA6C9I,SAASC,gCACdC,mBAAkD;IAElD,8DAA8D;IAC9D,IAAIA,oBAAoBC,MAAM,KAAK,GAAG,OAAO;IAE7C,8EAA8E;IAC9E,8EAA8E;IAC9E,qBAAqB;IACrB,MAAMC,WAAWC,KAAKC,MAAM,GAAGC,QAAQ,CAAC,IAAIC,KAAK,CAAC;IAElD,MAAMC,OAAO,IAAIC;IAEjB,2EAA2E;IAC3E,iEAAiE;IACjE,KAAK,MAAM,EAAEC,SAAS,EAAEC,SAAS,EAAE,IAAIV,oBAAqB;QAC1DO,KAAKI,GAAG,CAACF,WAAW;YAClB,CAAC,MAAM,EAAEA,UAAU,CAAC,EAAEP,SAAS,EAAE,CAAC;YAClCN,+NAAiB,CAACc,UAAU;SAC7B;IACH;IAEA,OAAOH;AACT;AAWO,SAASK,uBACdC,IAAY,EACZC,WAA+B;IAE/B,MAAMC,YAAQlB,gMAAAA,EAAcgB,MAAM;IAElC,wEAAwE;IACxE,6EAA6E;IAC7E,uCAAuC;IACvC,MAAM,EAAEG,0BAA0B,EAAEC,MAAM,EAAE,OAC1CnB,wSAAAA,EACEgB,YAAYI,QAAQ,CAACC,UAAU,EAC/BJ;IAGJ,0DAA0D;IAC1D,MAAMf,sBACJgB,2BAA2BI,GAAG,CAAC,CAAC,EAAEX,SAAS,EAAEC,SAAS,EAAE,GAAM,CAAA;YAC5DD;YACAC;QACF,CAAA;IAEF,8DAA8D;IAC9D,6DAA6D;IAC7D,2BAA2B;IAC3B,EAAE;IACF,oEAAoE;IACpE,iEAAiE;QACjEf,sMAAAA,EACEmB,YAAYI,QAAQ,CAACC,UAAU,EAC/BF,QACAF,OACAf,oBAAoB,sCAAsC;;IAG5D,2EAA2E;IAC3E,uEAAuE;IACvE,OAAOD,gCAAgCC;AACzC","ignoreList":[0]}}, - {"offset": {"line": 1503, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/manifests-singleton.ts"],"sourcesContent":["import type { ActionManifest } from '../../build/webpack/plugins/flight-client-entry-plugin'\nimport type { ClientReferenceManifest } from '../../build/webpack/plugins/flight-manifest-plugin'\nimport type { DeepReadonly } from '../../shared/lib/deep-readonly'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { pathHasPrefix } from '../../shared/lib/router/utils/path-has-prefix'\nimport { removePathPrefix } from '../../shared/lib/router/utils/remove-path-prefix'\nimport { workAsyncStorage } from './work-async-storage.external'\n\nexport interface ServerModuleMap {\n readonly [name: string]: {\n readonly id: string | number\n readonly name: string\n readonly chunks: Readonly> // currently not used\n readonly async?: boolean\n }\n}\n\n// This is a global singleton that is, among other things, also used to\n// encode/decode bound args of server function closures. This can't be using a\n// AsyncLocalStorage as it might happen at the module level.\nconst MANIFESTS_SINGLETON = Symbol.for('next.server.manifests')\n\ninterface ManifestsSingleton {\n readonly clientReferenceManifestsPerRoute: Map<\n string,\n DeepReadonly\n >\n readonly proxiedClientReferenceManifest: DeepReadonly\n serverActionsManifest: DeepReadonly\n serverModuleMap: ServerModuleMap\n}\n\ntype GlobalThisWithManifests = typeof globalThis & {\n [MANIFESTS_SINGLETON]?: ManifestsSingleton\n}\n\ntype ClientReferenceManifestMappingProp =\n | 'clientModules'\n | 'rscModuleMapping'\n | 'edgeRscModuleMapping'\n | 'ssrModuleMapping'\n | 'edgeSSRModuleMapping'\n\nconst globalThisWithManifests = globalThis as GlobalThisWithManifests\n\nfunction createProxiedClientReferenceManifest(\n clientReferenceManifestsPerRoute: Map<\n string,\n DeepReadonly\n >\n): DeepReadonly {\n const createMappingProxy = (prop: ClientReferenceManifestMappingProp) => {\n return new Proxy(\n {},\n {\n get(_, id: string) {\n const workStore = workAsyncStorage.getStore()\n\n if (workStore) {\n const currentManifest = clientReferenceManifestsPerRoute.get(\n workStore.route\n )\n\n if (currentManifest?.[prop][id]) {\n return currentManifest[prop][id]\n }\n\n // In development, we also check all other manifests to see if the\n // module exists there. This is to support a scenario where React's\n // I/O tracking (dev-only) creates a connection from one page to\n // another through an emitted async I/O node that references client\n // components from the other page, e.g. in owner props.\n // TODO: Maybe we need to add a `debugBundlerConfig` option to React\n // to avoid this workaround. The current workaround has the\n // disadvantage that one might accidentally or intentionally share\n // client references across pages (e.g. by storing them in a global\n // variable), which would then only be caught in production.\n if (process.env.NODE_ENV !== 'production') {\n for (const [\n route,\n manifest,\n ] of clientReferenceManifestsPerRoute) {\n if (route === workStore.route) {\n continue\n }\n\n const entry = manifest[prop][id]\n\n if (entry !== undefined) {\n return entry\n }\n }\n }\n } else {\n // If there's no work store defined, we can assume that a client\n // reference manifest is needed during module evaluation, e.g. to\n // create a server function using a higher-order function. This\n // might also use client components which need to be serialized by\n // Flight, and therefore client references need to be resolvable. In\n // that case we search all page manifests to find the module.\n for (const manifest of clientReferenceManifestsPerRoute.values()) {\n const entry = manifest[prop][id]\n\n if (entry !== undefined) {\n return entry\n }\n }\n }\n\n return undefined\n },\n }\n )\n }\n\n const mappingProxies = new Map<\n ClientReferenceManifestMappingProp,\n ReturnType\n >()\n\n return new Proxy(\n {},\n {\n get(_, prop) {\n const workStore = workAsyncStorage.getStore()\n\n switch (prop) {\n case 'moduleLoading':\n case 'entryCSSFiles':\n case 'entryJSFiles': {\n if (!workStore) {\n throw new InvariantError(\n `Cannot access \"${prop}\" without a work store.`\n )\n }\n\n const currentManifest = clientReferenceManifestsPerRoute.get(\n workStore.route\n )\n\n if (!currentManifest) {\n throw new InvariantError(\n `The client reference manifest for route \"${workStore.route}\" does not exist.`\n )\n }\n\n return currentManifest[prop]\n }\n case 'clientModules':\n case 'rscModuleMapping':\n case 'edgeRscModuleMapping':\n case 'ssrModuleMapping':\n case 'edgeSSRModuleMapping': {\n let proxy = mappingProxies.get(prop)\n\n if (!proxy) {\n proxy = createMappingProxy(prop)\n mappingProxies.set(prop, proxy)\n }\n\n return proxy\n }\n default: {\n throw new InvariantError(\n `This is a proxied client reference manifest. The property \"${String(prop)}\" is not handled.`\n )\n }\n }\n },\n }\n ) as DeepReadonly\n}\n\n/**\n * This function creates a Flight-acceptable server module map proxy from our\n * Server Reference Manifest similar to our client module map. This is because\n * our manifest contains a lot of internal Next.js data that are relevant to the\n * runtime, workers, etc. that React doesn't need to know.\n */\nfunction createServerModuleMap(): ServerModuleMap {\n return new Proxy(\n {},\n {\n get: (_, id: string) => {\n const workers =\n getServerActionsManifest()[\n process.env.NEXT_RUNTIME === 'edge' ? 'edge' : 'node'\n ]?.[id]?.workers\n\n if (!workers) {\n return undefined\n }\n\n const workStore = workAsyncStorage.getStore()\n\n let workerEntry:\n | { moduleId: string | number; async: boolean }\n | undefined\n\n if (workStore) {\n workerEntry = workers[normalizeWorkerPageName(workStore.page)]\n } else {\n // If there's no work store defined, we can assume that a server\n // module map is needed during module evaluation, e.g. to create a\n // server action using a higher-order function. Therefore it should be\n // safe to return any entry from the manifest that matches the action\n // ID. They all refer to the same module ID, which must also exist in\n // the current page bundle. TODO: This is currently not guaranteed in\n // Turbopack, and needs to be fixed.\n workerEntry = Object.values(workers).at(0)\n }\n\n if (!workerEntry) {\n return undefined\n }\n\n const { moduleId, async } = workerEntry\n\n return { id: moduleId, name: id, chunks: [], async }\n },\n }\n )\n}\n\n/**\n * The flight entry loader keys actions by bundlePath. bundlePath corresponds\n * with the relative path (including 'app') to the page entrypoint.\n */\nfunction normalizeWorkerPageName(pageName: string) {\n if (pathHasPrefix(pageName, 'app')) {\n return pageName\n }\n\n return 'app' + pageName\n}\n\n/**\n * Converts a bundlePath (relative path to the entrypoint) to a routable page\n * name.\n */\nfunction denormalizeWorkerPageName(bundlePath: string) {\n return normalizeAppPath(removePathPrefix(bundlePath, 'app'))\n}\n\n/**\n * Checks if the requested action has a worker for the current page.\n * If not, it returns the first worker that has a handler for the action.\n */\nexport function selectWorkerForForwarding(\n actionId: string,\n pageName: string\n): string | undefined {\n const serverActionsManifest = getServerActionsManifest()\n const workers =\n serverActionsManifest[\n process.env.NEXT_RUNTIME === 'edge' ? 'edge' : 'node'\n ][actionId]?.workers\n\n // There are no workers to handle this action, nothing to forward to.\n if (!workers) {\n return\n }\n\n // If there is an entry for the current page, we don't need to forward.\n if (workers[normalizeWorkerPageName(pageName)]) {\n return\n }\n\n // Otherwise, grab the first worker that has a handler for this action id.\n return denormalizeWorkerPageName(Object.keys(workers)[0])\n}\n\nexport function setManifestsSingleton({\n page,\n clientReferenceManifest,\n serverActionsManifest,\n}: {\n page: string\n clientReferenceManifest: DeepReadonly\n serverActionsManifest: DeepReadonly\n}) {\n const existingSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]\n\n if (existingSingleton) {\n existingSingleton.clientReferenceManifestsPerRoute.set(\n normalizeAppPath(page),\n clientReferenceManifest\n )\n\n existingSingleton.serverActionsManifest = serverActionsManifest\n } else {\n const clientReferenceManifestsPerRoute = new Map<\n string,\n DeepReadonly\n >([[normalizeAppPath(page), clientReferenceManifest]])\n\n const proxiedClientReferenceManifest = createProxiedClientReferenceManifest(\n clientReferenceManifestsPerRoute\n )\n\n globalThisWithManifests[MANIFESTS_SINGLETON] = {\n clientReferenceManifestsPerRoute,\n proxiedClientReferenceManifest,\n serverActionsManifest,\n serverModuleMap: createServerModuleMap(),\n }\n }\n}\n\nfunction getManifestsSingleton(): ManifestsSingleton {\n const manifestSingleton = globalThisWithManifests[MANIFESTS_SINGLETON]\n\n if (!manifestSingleton) {\n throw new InvariantError('The manifests singleton was not initialized.')\n }\n\n return manifestSingleton\n}\n\nexport function getClientReferenceManifest(): DeepReadonly {\n return getManifestsSingleton().proxiedClientReferenceManifest\n}\n\nexport function getServerActionsManifest(): DeepReadonly {\n return getManifestsSingleton().serverActionsManifest\n}\n\nexport function getServerModuleMap() {\n return getManifestsSingleton().serverModuleMap\n}\n"],"names":["InvariantError","normalizeAppPath","pathHasPrefix","removePathPrefix","workAsyncStorage","MANIFESTS_SINGLETON","Symbol","for","globalThisWithManifests","globalThis","createProxiedClientReferenceManifest","clientReferenceManifestsPerRoute","createMappingProxy","prop","Proxy","get","_","id","workStore","getStore","currentManifest","route","process","env","NODE_ENV","manifest","entry","undefined","values","mappingProxies","Map","proxy","set","String","createServerModuleMap","getServerActionsManifest","workers","NEXT_RUNTIME","workerEntry","normalizeWorkerPageName","page","Object","at","moduleId","async","name","chunks","pageName","denormalizeWorkerPageName","bundlePath","selectWorkerForForwarding","actionId","serverActionsManifest","keys","setManifestsSingleton","clientReferenceManifest","existingSingleton","proxiedClientReferenceManifest","serverModuleMap","getManifestsSingleton","manifestSingleton","getClientReferenceManifest","getServerModuleMap"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1745, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/html-bots.ts"],"sourcesContent":["// This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent.\n// Note: The pattern [\\w-]+-Google captures all Google crawlers with \"-Google\" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google)\n// as well as crawlers starting with \"Google-\" (e.g., Google-PageRenderer, Google-InspectionTool)\nexport const HTML_LIMITED_BOT_UA_RE =\n /[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i\n"],"names":["HTML_LIMITED_BOT_UA_RE"],"mappings":"AAAA,6GAA6G;AAC7G,sKAAsK;AACtK,kJAAkJ;AAClJ,iGAAiG;;;;;AAC1F,MAAMA,yBACX,sTAAqT","ignoreList":[0]}}, - {"offset": {"line": 1758, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/is-bot.ts"],"sourcesContent":["import { HTML_LIMITED_BOT_UA_RE } from './html-bots'\n\n// Bot crawler that will spin up a headless browser and execute JS.\n// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers.\n// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers\n// This regex specifically matches \"Googlebot\" but NOT \"Mediapartners-Google\", \"AdsBot-Google\", etc.\nconst HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i\n\nexport const HTML_LIMITED_BOT_UA_RE_STRING = HTML_LIMITED_BOT_UA_RE.source\n\nexport { HTML_LIMITED_BOT_UA_RE }\n\nfunction isDomBotUA(userAgent: string) {\n return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent)\n}\n\nfunction isHtmlLimitedBotUA(userAgent: string) {\n return HTML_LIMITED_BOT_UA_RE.test(userAgent)\n}\n\nexport function isBot(userAgent: string): boolean {\n return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent)\n}\n\nexport function getBotType(userAgent: string): 'dom' | 'html' | undefined {\n if (isDomBotUA(userAgent)) {\n return 'dom'\n }\n if (isHtmlLimitedBotUA(userAgent)) {\n return 'html'\n }\n return undefined\n}\n"],"names":["HTML_LIMITED_BOT_UA_RE","HEADLESS_BROWSER_BOT_UA_RE","HTML_LIMITED_BOT_UA_RE_STRING","source","isDomBotUA","userAgent","test","isHtmlLimitedBotUA","isBot","getBotType","undefined"],"mappings":";;;;;;;;AAAA,SAASA,sBAAsB,QAAQ,cAAa;;AAEpD,mEAAmE;AACnE,yFAAyF;AACzF,4FAA4F;AAC5F,oGAAoG;AACpG,MAAMC,6BAA6B;AAE5B,MAAMC,gCAAgCF,iNAAAA,CAAuBG,MAAM,CAAA;;AAI1E,SAASC,WAAWC,SAAiB;IACnC,OAAOJ,2BAA2BK,IAAI,CAACD;AACzC;AAEA,SAASE,mBAAmBF,SAAiB;IAC3C,OAAOL,iNAAAA,CAAuBM,IAAI,CAACD;AACrC;AAEO,SAASG,MAAMH,SAAiB;IACrC,OAAOD,WAAWC,cAAcE,mBAAmBF;AACrD;AAEO,SAASI,WAAWJ,SAAiB;IAC1C,IAAID,WAAWC,YAAY;QACzB,OAAO;IACT;IACA,IAAIE,mBAAmBF,YAAY;QACjC,OAAO;IACT;IACA,OAAOK;AACT","ignoreList":[0]}}, - {"offset": {"line": 1797, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/streaming-metadata.ts"],"sourcesContent":["import {\n getBotType,\n HTML_LIMITED_BOT_UA_RE_STRING,\n} from '../../shared/lib/router/utils/is-bot'\nimport type { BaseNextRequest } from '../base-http'\n\nexport function shouldServeStreamingMetadata(\n userAgent: string,\n htmlLimitedBots: string | undefined\n): boolean {\n const blockingMetadataUARegex = new RegExp(\n htmlLimitedBots || HTML_LIMITED_BOT_UA_RE_STRING,\n 'i'\n )\n // Only block metadata for HTML-limited bots\n if (userAgent && blockingMetadataUARegex.test(userAgent)) {\n return false\n }\n return true\n}\n\n// When the request UA is a html-limited bot, we should do a dynamic render.\n// In this case, postpone state is not sent.\nexport function isHtmlBotRequest(req: {\n headers: BaseNextRequest['headers']\n}): boolean {\n const ua = req.headers['user-agent'] || ''\n const botType = getBotType(ua)\n\n return botType === 'html'\n}\n"],"names":["getBotType","HTML_LIMITED_BOT_UA_RE_STRING","shouldServeStreamingMetadata","userAgent","htmlLimitedBots","blockingMetadataUARegex","RegExp","test","isHtmlBotRequest","req","ua","headers","botType"],"mappings":";;;;;;AAAA,SACEA,UAAU,EACVC,6BAA6B,QACxB,uCAAsC;;AAGtC,SAASC,6BACdC,SAAiB,EACjBC,eAAmC;IAEnC,MAAMC,0BAA0B,IAAIC,OAClCF,mBAAmBH,qOAAAA,EACnB;IAEF,4CAA4C;IAC5C,IAAIE,aAAaE,wBAAwBE,IAAI,CAACJ,YAAY;QACxD,OAAO;IACT;IACA,OAAO;AACT;AAIO,SAASK,iBAAiBC,GAEhC;IACC,MAAMC,KAAKD,IAAIE,OAAO,CAAC,aAAa,IAAI;IACxC,MAAMC,cAAUZ,kNAAAA,EAAWU;IAE3B,OAAOE,YAAY;AACrB","ignoreList":[0]}}, - {"offset": {"line": 1822, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/server-action-request-meta.ts"],"sourcesContent":["import type { IncomingMessage } from 'http'\nimport type { BaseNextRequest } from '../base-http'\nimport type { NextRequest } from '../web/exports'\nimport { ACTION_HEADER } from '../../client/components/app-router-headers'\n\nexport function getServerActionRequestMetadata(\n req: IncomingMessage | BaseNextRequest | NextRequest\n): {\n actionId: string | null\n isURLEncodedAction: boolean\n isMultipartAction: boolean\n isFetchAction: boolean\n isPossibleServerAction: boolean\n} {\n let actionId: string | null\n let contentType: string | null\n\n if (req.headers instanceof Headers) {\n actionId = req.headers.get(ACTION_HEADER) ?? null\n contentType = req.headers.get('content-type')\n } else {\n actionId = (req.headers[ACTION_HEADER] as string) ?? null\n contentType = req.headers['content-type'] ?? null\n }\n\n // We don't actually support URL encoded actions, and the action handler will bail out if it sees one.\n // But we still want it to flow through to the action handler, to prevent changes in behavior when a regular\n // page component tries to handle a POST.\n const isURLEncodedAction = Boolean(\n req.method === 'POST' && contentType === 'application/x-www-form-urlencoded'\n )\n const isMultipartAction = Boolean(\n req.method === 'POST' && contentType?.startsWith('multipart/form-data')\n )\n const isFetchAction = Boolean(\n actionId !== undefined &&\n typeof actionId === 'string' &&\n req.method === 'POST'\n )\n\n const isPossibleServerAction = Boolean(\n isFetchAction || isURLEncodedAction || isMultipartAction\n )\n\n return {\n actionId,\n isURLEncodedAction,\n isMultipartAction,\n isFetchAction,\n isPossibleServerAction,\n }\n}\n\nexport function getIsPossibleServerAction(\n req: IncomingMessage | BaseNextRequest | NextRequest\n): boolean {\n return getServerActionRequestMetadata(req).isPossibleServerAction\n}\n"],"names":["ACTION_HEADER","getServerActionRequestMetadata","req","actionId","contentType","headers","Headers","get","isURLEncodedAction","Boolean","method","isMultipartAction","startsWith","isFetchAction","undefined","isPossibleServerAction","getIsPossibleServerAction"],"mappings":";;;;;;AAGA,SAASA,aAAa,QAAQ,6CAA4C;;AAEnE,SAASC,+BACdC,GAAoD;IAQpD,IAAIC;IACJ,IAAIC;IAEJ,IAAIF,IAAIG,OAAO,YAAYC,SAAS;QAClCH,WAAWD,IAAIG,OAAO,CAACE,GAAG,CAACP,wMAAAA,KAAkB;QAC7CI,cAAcF,IAAIG,OAAO,CAACE,GAAG,CAAC;IAChC,OAAO;QACLJ,WAAYD,IAAIG,OAAO,CAACL,wMAAAA,CAAc,IAAe;QACrDI,cAAcF,IAAIG,OAAO,CAAC,eAAe,IAAI;IAC/C;IAEA,sGAAsG;IACtG,4GAA4G;IAC5G,yCAAyC;IACzC,MAAMG,qBAAqBC,QACzBP,IAAIQ,MAAM,KAAK,UAAUN,gBAAgB;IAE3C,MAAMO,oBAAoBF,QACxBP,IAAIQ,MAAM,KAAK,UAAA,CAAUN,eAAAA,OAAAA,KAAAA,IAAAA,YAAaQ,UAAU,CAAC,sBAAA;IAEnD,MAAMC,gBAAgBJ,QACpBN,aAAaW,aACX,OAAOX,aAAa,YACpBD,IAAIQ,MAAM,KAAK;IAGnB,MAAMK,yBAAyBN,QAC7BI,iBAAiBL,sBAAsBG;IAGzC,OAAO;QACLR;QACAK;QACAG;QACAE;QACAE;IACF;AACF;AAEO,SAASC,0BACdd,GAAoD;IAEpD,OAAOD,+BAA+BC,KAAKa,sBAAsB;AACnE","ignoreList":[0]}}, - {"offset": {"line": 1862, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/fallback.ts"],"sourcesContent":["/**\n * Describes the different fallback modes that a given page can have.\n */\nexport const enum FallbackMode {\n /**\n * A BLOCKING_STATIC_RENDER fallback will block the request until the page is\n * generated. No fallback page will be rendered, and users will have to wait\n * to render the page.\n */\n BLOCKING_STATIC_RENDER = 'BLOCKING_STATIC_RENDER',\n\n /**\n * When set to PRERENDER, a fallback page will be sent to users in place of\n * forcing them to wait for the page to be generated. This allows the user to\n * see a rendered page earlier.\n */\n PRERENDER = 'PRERENDER',\n\n /**\n * When set to NOT_FOUND, pages that are not already prerendered will result\n * in a not found response.\n */\n NOT_FOUND = 'NOT_FOUND',\n}\n\n/**\n * The fallback value returned from the `getStaticPaths` function.\n */\nexport type GetStaticPathsFallback = boolean | 'blocking'\n\n/**\n * Parses the fallback field from the prerender manifest.\n *\n * @param fallbackField The fallback field from the prerender manifest.\n * @returns The fallback mode.\n */\nexport function parseFallbackField(\n fallbackField: string | boolean | null | undefined\n): FallbackMode | undefined {\n if (typeof fallbackField === 'string') {\n return FallbackMode.PRERENDER\n } else if (fallbackField === null) {\n return FallbackMode.BLOCKING_STATIC_RENDER\n } else if (fallbackField === false) {\n return FallbackMode.NOT_FOUND\n } else if (fallbackField === undefined) {\n return undefined\n } else {\n throw new Error(\n `Invalid fallback option: ${fallbackField}. Fallback option must be a string, null, undefined, or false.`\n )\n }\n}\n\nexport function fallbackModeToFallbackField(\n fallback: FallbackMode,\n page: string | undefined\n): string | false | null {\n switch (fallback) {\n case FallbackMode.BLOCKING_STATIC_RENDER:\n return null\n case FallbackMode.NOT_FOUND:\n return false\n case FallbackMode.PRERENDER:\n if (!page) {\n throw new Error(\n `Invariant: expected a page to be provided when fallback mode is \"${fallback}\"`\n )\n }\n\n return page\n default:\n throw new Error(`Invalid fallback mode: ${fallback}`)\n }\n}\n\n/**\n * Parses the fallback from the static paths result.\n *\n * @param result The result from the static paths function.\n * @returns The fallback mode.\n */\nexport function parseStaticPathsResult(\n result: GetStaticPathsFallback\n): FallbackMode {\n if (result === true) {\n return FallbackMode.PRERENDER\n } else if (result === 'blocking') {\n return FallbackMode.BLOCKING_STATIC_RENDER\n } else {\n return FallbackMode.NOT_FOUND\n }\n}\n"],"names":["FallbackMode","parseFallbackField","fallbackField","undefined","Error","fallbackModeToFallbackField","fallback","page","parseStaticPathsResult","result"],"mappings":"AAAA;;CAEC,GACD;;;;;;;;;;AAAO,IAAWA,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;IAChB;;;;GAIC,GAAA,YAAA,CAAA,yBAAA,GAAA;IAGD;;;;GAIC,GAAA,YAAA,CAAA,YAAA,GAAA;IAGD;;;GAGC,GAAA,YAAA,CAAA,YAAA,GAAA;WAlBeA;MAoBjB;AAaM,SAASC,mBACdC,aAAkD;IAElD,IAAI,OAAOA,kBAAkB,UAAU;QACrC,OAAA;IACF,OAAO,IAAIA,kBAAkB,MAAM;QACjC,OAAA;IACF,OAAO,IAAIA,kBAAkB,OAAO;QAClC,OAAA;IACF,OAAO,IAAIA,kBAAkBC,WAAW;QACtC,OAAOA;IACT,OAAO;QACL,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,yBAAyB,EAAEF,cAAc,8DAA8D,CAAC,GADrG,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;AACF;AAEO,SAASG,4BACdC,QAAsB,EACtBC,IAAwB;IAExB,OAAQD;QACN,KAAA;YACE,OAAO;QACT,KAAA;YACE,OAAO;QACT,KAAA;YACE,IAAI,CAACC,MAAM;gBACT,MAAM,OAAA,cAEL,CAFK,IAAIH,MACR,CAAC,iEAAiE,EAAEE,SAAS,CAAC,CAAC,GAD3E,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEA,OAAOC;QACT;YACE,MAAM,OAAA,cAA+C,CAA/C,IAAIH,MAAM,CAAC,uBAAuB,EAAEE,UAAU,GAA9C,qBAAA;uBAAA;4BAAA;8BAAA;YAA8C;IACxD;AACF;AAQO,SAASE,uBACdC,MAA8B;IAE9B,IAAIA,WAAW,MAAM;QACnB,OAAA;IACF,OAAO,IAAIA,WAAW,YAAY;QAChC,OAAA;IACF,OAAO;QACL,OAAA;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1944, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils.ts"],"sourcesContent":["import type { HtmlProps } from './html-context.shared-runtime'\nimport type { ComponentType, JSX } from 'react'\nimport type { DomainLocale } from '../../server/config'\nimport type { Env } from '@next/env'\nimport type { IncomingMessage, ServerResponse } from 'http'\nimport type { NextRouter } from './router/router'\nimport type { ParsedUrlQuery } from 'querystring'\nimport type { PreviewData } from '../../types'\nimport type { COMPILER_NAMES } from './constants'\nimport type fs from 'fs'\n\nexport type NextComponentType<\n Context extends BaseContext = NextPageContext,\n InitialProps = {},\n Props = {},\n> = ComponentType & {\n /**\n * Used for initial page load data population. Data returned from `getInitialProps` is serialized when server rendered.\n * Make sure to return plain `Object` without using `Date`, `Map`, `Set`.\n * @param context Context of `page`\n */\n getInitialProps?(context: Context): InitialProps | Promise\n}\n\nexport type DocumentType = NextComponentType<\n DocumentContext,\n DocumentInitialProps,\n DocumentProps\n>\n\nexport type AppType

= NextComponentType<\n AppContextType,\n P,\n AppPropsType\n>\n\nexport type AppTreeType = ComponentType<\n AppInitialProps & { [name: string]: any }\n>\n\n/**\n * Web vitals provided to _app.reportWebVitals by Core Web Vitals plugin developed by Google Chrome team.\n * https://nextjs.org/blog/next-9-4#integrated-web-vitals-reporting\n */\nexport const WEB_VITALS = ['CLS', 'FCP', 'FID', 'INP', 'LCP', 'TTFB'] as const\nexport type NextWebVitalsMetric = {\n id: string\n startTime: number\n value: number\n attribution?: { [key: string]: unknown }\n} & (\n | {\n label: 'web-vital'\n name: (typeof WEB_VITALS)[number]\n }\n | {\n label: 'custom'\n name:\n | 'Next.js-hydration'\n | 'Next.js-route-change-to-render'\n | 'Next.js-render'\n }\n)\n\nexport type Enhancer = (Component: C) => C\n\nexport type ComponentsEnhancer =\n | {\n enhanceApp?: Enhancer\n enhanceComponent?: Enhancer\n }\n | Enhancer\n\nexport type RenderPageResult = {\n html: string\n head?: Array\n}\n\nexport type RenderPage = (\n options?: ComponentsEnhancer\n) => DocumentInitialProps | Promise\n\nexport type BaseContext = {\n res?: ServerResponse\n [k: string]: any\n}\n\nexport type NEXT_DATA = {\n props: Record\n page: string\n query: ParsedUrlQuery\n buildId: string\n assetPrefix?: string\n nextExport?: boolean\n autoExport?: boolean\n isFallback?: boolean\n isExperimentalCompile?: boolean\n dynamicIds?: (string | number)[]\n err?: Error & {\n statusCode?: number\n source?: typeof COMPILER_NAMES.server | typeof COMPILER_NAMES.edgeServer\n }\n gsp?: boolean\n gssp?: boolean\n customServer?: boolean\n gip?: boolean\n appGip?: boolean\n locale?: string\n locales?: readonly string[]\n defaultLocale?: string\n domainLocales?: readonly DomainLocale[]\n scriptLoader?: any[]\n isPreview?: boolean\n notFoundSrcPage?: string\n}\n\n/**\n * `Next` context\n */\nexport interface NextPageContext {\n /**\n * Error object if encountered during rendering\n */\n err?: (Error & { statusCode?: number }) | null\n /**\n * `HTTP` request object.\n */\n req?: IncomingMessage\n /**\n * `HTTP` response object.\n */\n res?: ServerResponse\n /**\n * Path section of `URL`.\n */\n pathname: string\n /**\n * Query string section of `URL` parsed as an object.\n */\n query: ParsedUrlQuery\n /**\n * `String` of the actual path including query.\n */\n asPath?: string\n /**\n * The currently active locale\n */\n locale?: string\n /**\n * All configured locales\n */\n locales?: readonly string[]\n /**\n * The configured default locale\n */\n defaultLocale?: string\n /**\n * `Component` the tree of the App to use if needing to render separately\n */\n AppTree: AppTreeType\n}\n\nexport type AppContextType = {\n Component: NextComponentType\n AppTree: AppTreeType\n ctx: NextPageContext\n router: Router\n}\n\nexport type AppInitialProps = {\n pageProps: PageProps\n}\n\nexport type AppPropsType<\n Router extends NextRouter = NextRouter,\n PageProps = {},\n> = AppInitialProps & {\n Component: NextComponentType\n router: Router\n __N_SSG?: boolean\n __N_SSP?: boolean\n}\n\nexport type DocumentContext = NextPageContext & {\n renderPage: RenderPage\n defaultGetInitialProps(\n ctx: DocumentContext,\n options?: { nonce?: string }\n ): Promise\n}\n\nexport type DocumentInitialProps = RenderPageResult & {\n styles?: React.ReactElement[] | Iterable | JSX.Element\n}\n\nexport type DocumentProps = DocumentInitialProps & HtmlProps\n\n/**\n * Next `API` route request\n */\nexport interface NextApiRequest extends IncomingMessage {\n /**\n * Object of `query` values from url\n */\n query: Partial<{\n [key: string]: string | string[]\n }>\n /**\n * Object of `cookies` from header\n */\n cookies: Partial<{\n [key: string]: string\n }>\n\n body: any\n\n env: Env\n\n draftMode?: boolean\n\n preview?: boolean\n /**\n * Preview data set on the request, if any\n * */\n previewData?: PreviewData\n}\n\n/**\n * Send body of response\n */\ntype Send = (body: T) => void\n\n/**\n * Next `API` route response\n */\nexport type NextApiResponse = ServerResponse & {\n /**\n * Send data `any` data in response\n */\n send: Send\n /**\n * Send data `json` data in response\n */\n json: Send\n status: (statusCode: number) => NextApiResponse\n redirect(url: string): NextApiResponse\n redirect(status: number, url: string): NextApiResponse\n\n /**\n * Set draft mode\n */\n setDraftMode: (options: { enable: boolean }) => NextApiResponse\n\n /**\n * Set preview data for Next.js' prerender mode\n */\n setPreviewData: (\n data: object | string,\n options?: {\n /**\n * Specifies the number (in seconds) for the preview session to last for.\n * The given number will be converted to an integer by rounding down.\n * By default, no maximum age is set and the preview session finishes\n * when the client shuts down (browser is closed).\n */\n maxAge?: number\n /**\n * Specifies the path for the preview session to work under. By default,\n * the path is considered the \"default path\", i.e., any pages under \"/\".\n */\n path?: string\n }\n ) => NextApiResponse\n\n /**\n * Clear preview data for Next.js' prerender mode\n */\n clearPreviewData: (options?: { path?: string }) => NextApiResponse\n\n /**\n * Revalidate a specific page and regenerate it using On-Demand Incremental\n * Static Regeneration.\n * The path should be an actual path, not a rewritten path. E.g. for\n * \"/blog/[slug]\" this should be \"/blog/post-1\".\n * @link https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration#on-demand-revalidation-with-revalidatepath\n */\n revalidate: (\n urlPath: string,\n opts?: {\n unstable_onlyGenerated?: boolean\n }\n ) => Promise\n}\n\n/**\n * Next `API` route handler\n */\nexport type NextApiHandler = (\n req: NextApiRequest,\n res: NextApiResponse\n) => unknown | Promise\n\n/**\n * Utils\n */\nexport function execOnce ReturnType>(\n fn: T\n): T {\n let used = false\n let result: ReturnType\n\n return ((...args: any[]) => {\n if (!used) {\n used = true\n result = fn(...args)\n }\n return result\n }) as T\n}\n\n// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1\n// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3\nconst ABSOLUTE_URL_REGEX = /^[a-zA-Z][a-zA-Z\\d+\\-.]*?:/\nexport const isAbsoluteUrl = (url: string) => ABSOLUTE_URL_REGEX.test(url)\n\nexport function getLocationOrigin() {\n const { protocol, hostname, port } = window.location\n return `${protocol}//${hostname}${port ? ':' + port : ''}`\n}\n\nexport function getURL() {\n const { href } = window.location\n const origin = getLocationOrigin()\n return href.substring(origin.length)\n}\n\nexport function getDisplayName

(Component: ComponentType

) {\n return typeof Component === 'string'\n ? Component\n : Component.displayName || Component.name || 'Unknown'\n}\n\nexport function isResSent(res: ServerResponse) {\n return res.finished || res.headersSent\n}\n\nexport function normalizeRepeatedSlashes(url: string) {\n const urlParts = url.split('?')\n const urlNoQuery = urlParts[0]\n\n return (\n urlNoQuery\n // first we replace any non-encoded backslashes with forward\n // then normalize repeated forward slashes\n .replace(/\\\\/g, '/')\n .replace(/\\/\\/+/g, '/') +\n (urlParts[1] ? `?${urlParts.slice(1).join('?')}` : '')\n )\n}\n\nexport async function loadGetInitialProps<\n C extends BaseContext,\n IP = {},\n P = {},\n>(App: NextComponentType, ctx: C): Promise {\n if (process.env.NODE_ENV !== 'production') {\n if (App.prototype?.getInitialProps) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" is defined as an instance method - visit https://nextjs.org/docs/messages/get-initial-props-as-an-instance-method for more information.`\n throw new Error(message)\n }\n }\n // when called from _app `ctx` is nested in `ctx`\n const res = ctx.res || (ctx.ctx && ctx.ctx.res)\n\n if (!App.getInitialProps) {\n if (ctx.ctx && ctx.Component) {\n // @ts-ignore pageProps default\n return {\n pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx),\n }\n }\n return {} as IP\n }\n\n const props = await App.getInitialProps(ctx)\n\n if (res && isResSent(res)) {\n return props\n }\n\n if (!props) {\n const message = `\"${getDisplayName(\n App\n )}.getInitialProps()\" should resolve to an object. But found \"${props}\" instead.`\n throw new Error(message)\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (Object.keys(props).length === 0 && !ctx.ctx) {\n console.warn(\n `${getDisplayName(\n App\n )} returned an empty object from \\`getInitialProps\\`. This de-optimizes and prevents automatic static optimization. https://nextjs.org/docs/messages/empty-object-getInitialProps`\n )\n }\n }\n\n return props\n}\n\nexport const SP = typeof performance !== 'undefined'\nexport const ST =\n SP &&\n (['mark', 'measure', 'getEntriesByName'] as const).every(\n (method) => typeof performance[method] === 'function'\n )\n\nexport class DecodeError extends Error {}\nexport class NormalizeError extends Error {}\nexport class PageNotFoundError extends Error {\n code: string\n\n constructor(page: string) {\n super()\n this.code = 'ENOENT'\n this.name = 'PageNotFoundError'\n this.message = `Cannot find module for page: ${page}`\n }\n}\n\nexport class MissingStaticPage extends Error {\n constructor(page: string, message: string) {\n super()\n this.message = `Failed to load static file for page: ${page} ${message}`\n }\n}\n\nexport class MiddlewareNotFoundError extends Error {\n code: string\n constructor() {\n super()\n this.code = 'ENOENT'\n this.message = `Cannot find the middleware module`\n }\n}\n\nexport interface CacheFs {\n existsSync: typeof fs.existsSync\n readFile: typeof fs.promises.readFile\n readFileSync: typeof fs.readFileSync\n writeFile(f: string, d: any): Promise\n mkdir(dir: string): Promise\n stat(f: string): Promise<{ mtime: Date }>\n}\n\nexport function stringifyError(error: Error) {\n return JSON.stringify({ message: error.message, stack: error.stack })\n}\n"],"names":["WEB_VITALS","execOnce","fn","used","result","args","ABSOLUTE_URL_REGEX","isAbsoluteUrl","url","test","getLocationOrigin","protocol","hostname","port","window","location","getURL","href","origin","substring","length","getDisplayName","Component","displayName","name","isResSent","res","finished","headersSent","normalizeRepeatedSlashes","urlParts","split","urlNoQuery","replace","slice","join","loadGetInitialProps","App","ctx","process","env","NODE_ENV","prototype","getInitialProps","message","Error","pageProps","props","Object","keys","console","warn","SP","performance","ST","every","method","DecodeError","NormalizeError","PageNotFoundError","constructor","page","code","MissingStaticPage","MiddlewareNotFoundError","stringifyError","error","JSON","stringify","stack"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2110, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/etag.ts"],"sourcesContent":["/**\n * FNV-1a Hash implementation\n * @author Travis Webb (tjwebb) \n *\n * Ported from https://github.com/tjwebb/fnv-plus/blob/master/index.js\n *\n * Simplified, optimized and add modified for 52 bit, which provides a larger hash space\n * and still making use of Javascript's 53-bit integer space.\n */\nexport const fnv1a52 = (str: string) => {\n const len = str.length\n let i = 0,\n t0 = 0,\n v0 = 0x2325,\n t1 = 0,\n v1 = 0x8422,\n t2 = 0,\n v2 = 0x9ce4,\n t3 = 0,\n v3 = 0xcbf2\n\n while (i < len) {\n v0 ^= str.charCodeAt(i++)\n t0 = v0 * 435\n t1 = v1 * 435\n t2 = v2 * 435\n t3 = v3 * 435\n t2 += v0 << 8\n t3 += v1 << 8\n t1 += t0 >>> 16\n v0 = t0 & 65535\n t2 += t1 >>> 16\n v1 = t1 & 65535\n v3 = (t3 + (t2 >>> 16)) & 65535\n v2 = t2 & 65535\n }\n\n return (\n (v3 & 15) * 281474976710656 +\n v2 * 4294967296 +\n v1 * 65536 +\n (v0 ^ (v3 >> 4))\n )\n}\n\nexport const generateETag = (payload: string, weak = false) => {\n const prefix = weak ? 'W/\"' : '\"'\n return (\n prefix + fnv1a52(payload).toString(36) + payload.length.toString(36) + '\"'\n )\n}\n"],"names":["fnv1a52","str","len","length","i","t0","v0","t1","v1","t2","v2","t3","v3","charCodeAt","generateETag","payload","weak","prefix","toString"],"mappings":"AAAA;;;;;;;;CAQC,GACD;;;;;;AAAO,MAAMA,UAAU,CAACC;IACtB,MAAMC,MAAMD,IAAIE,MAAM;IACtB,IAAIC,IAAI,GACNC,KAAK,GACLC,KAAK,QACLC,KAAK,GACLC,KAAK,QACLC,KAAK,GACLC,KAAK,QACLC,KAAK,GACLC,KAAK;IAEP,MAAOR,IAAIF,IAAK;QACdI,MAAML,IAAIY,UAAU,CAACT;QACrBC,KAAKC,KAAK;QACVC,KAAKC,KAAK;QACVC,KAAKC,KAAK;QACVC,KAAKC,KAAK;QACVH,MAAMH,MAAM;QACZK,MAAMH,MAAM;QACZD,MAAMF,OAAO;QACbC,KAAKD,KAAK;QACVI,MAAMF,OAAO;QACbC,KAAKD,KAAK;QACVK,KAAMD,KAAMF,CAAAA,OAAO,EAAC,IAAM;QAC1BC,KAAKD,KAAK;IACZ;IAEA,OACGG,CAAAA,KAAK,EAAC,IAAK,kBACZF,KAAK,aACLF,KAAK,QACJF,CAAAA,KAAMM,MAAM,CAAC;AAElB,EAAC;AAEM,MAAME,eAAe,CAACC,SAAiBC,OAAO,KAAK;IACxD,MAAMC,SAASD,OAAO,QAAQ;IAC9B,OACEC,SAASjB,QAAQe,SAASG,QAAQ,CAAC,MAAMH,QAAQZ,MAAM,CAACe,QAAQ,CAAC,MAAM;AAE3E,EAAC","ignoreList":[0]}}, - {"offset": {"line": 2151, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/fresh/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={695:e=>{\n/*!\n * fresh\n * Copyright(c) 2012 TJ Holowaychuk\n * Copyright(c) 2016-2017 Douglas Christopher Wilson\n * MIT Licensed\n */\nvar r=/(?:^|,)\\s*?no-cache\\s*?(?:,|$)/;e.exports=fresh;function fresh(e,a){var t=e[\"if-modified-since\"];var s=e[\"if-none-match\"];if(!t&&!s){return false}var i=e[\"cache-control\"];if(i&&r.test(i)){return false}if(s&&s!==\"*\"){var f=a[\"etag\"];if(!f){return false}var n=true;var u=parseTokenList(s);for(var _=0;_ {\n if (isResSent(res)) {\n return\n }\n\n if (poweredByHeader && result.contentType === HTML_CONTENT_TYPE_HEADER) {\n res.setHeader('X-Powered-By', 'Next.js')\n }\n\n // If cache control is already set on the response we don't\n // override it to allow users to customize it via next.config\n if (cacheControl && !res.getHeader('Cache-Control')) {\n res.setHeader('Cache-Control', getCacheControlHeader(cacheControl))\n }\n\n const payload = result.isDynamic ? null : result.toUnchunkedString()\n\n if (generateEtags && payload !== null) {\n const etag = generateETag(payload)\n if (sendEtagResponse(req, res, etag)) {\n return\n }\n }\n\n if (!res.getHeader('Content-Type') && result.contentType) {\n res.setHeader('Content-Type', result.contentType)\n }\n\n if (payload) {\n res.setHeader('Content-Length', Buffer.byteLength(payload))\n }\n\n if (req.method === 'HEAD') {\n res.end(null)\n return\n }\n\n if (payload !== null) {\n res.end(payload)\n return\n }\n\n // Pipe the render result to the response after we get a writer for it.\n await result.pipeToNodeResponse(res)\n}\n"],"names":["isResSent","generateETag","fresh","getCacheControlHeader","HTML_CONTENT_TYPE_HEADER","sendEtagResponse","req","res","etag","setHeader","headers","statusCode","end","sendRenderResult","result","generateEtags","poweredByHeader","cacheControl","contentType","getHeader","payload","isDynamic","toUnchunkedString","Buffer","byteLength","method","pipeToNodeResponse"],"mappings":";;;;;;AAIA,SAASA,SAAS,QAAQ,sBAAqB;AAC/C,SAASC,YAAY,QAAQ,aAAY;AACzC,OAAOC,WAAW,2BAA0B;AAC5C,SAASC,qBAAqB,QAAQ,sBAAqB;AAC3D,SAASC,wBAAwB,QAAQ,mBAAkB;;;;;;AAEpD,SAASC,iBACdC,GAAoB,EACpBC,GAAmB,EACnBC,IAAwB;IAExB,IAAIA,MAAM;QACR;;;;;KAKC,GACDD,IAAIE,SAAS,CAAC,QAAQD;IACxB;IAEA,QAAIN,qKAAAA,EAAMI,IAAII,OAAO,EAAE;QAAEF;IAAK,IAAI;QAChCD,IAAII,UAAU,GAAG;QACjBJ,IAAIK,GAAG;QACP,OAAO;IACT;IAEA,OAAO;AACT;AAEO,eAAeC,iBAAiB,EACrCP,GAAG,EACHC,GAAG,EACHO,MAAM,EACNC,aAAa,EACbC,eAAe,EACfC,YAAY,EAQb;IACC,QAAIjB,0KAAAA,EAAUO,MAAM;QAClB;IACF;IAEA,IAAIS,mBAAmBF,OAAOI,WAAW,KAAKd,mLAAAA,EAA0B;QACtEG,IAAIE,SAAS,CAAC,gBAAgB;IAChC;IAEA,2DAA2D;IAC3D,6DAA6D;IAC7D,IAAIQ,gBAAgB,CAACV,IAAIY,SAAS,CAAC,kBAAkB;QACnDZ,IAAIE,SAAS,CAAC,qBAAiBN,iMAAAA,EAAsBc;IACvD;IAEA,MAAMG,UAAUN,OAAOO,SAAS,GAAG,OAAOP,OAAOQ,iBAAiB;IAElE,IAAIP,iBAAiBK,YAAY,MAAM;QACrC,MAAMZ,WAAOP,4KAAAA,EAAamB;QAC1B,IAAIf,iBAAiBC,KAAKC,KAAKC,OAAO;YACpC;QACF;IACF;IAEA,IAAI,CAACD,IAAIY,SAAS,CAAC,mBAAmBL,OAAOI,WAAW,EAAE;QACxDX,IAAIE,SAAS,CAAC,gBAAgBK,OAAOI,WAAW;IAClD;IAEA,IAAIE,SAAS;QACXb,IAAIE,SAAS,CAAC,kBAAkBc,OAAOC,UAAU,CAACJ;IACpD;IAEA,IAAId,IAAImB,MAAM,KAAK,QAAQ;QACzBlB,IAAIK,GAAG,CAAC;QACR;IACF;IAEA,IAAIQ,YAAY,MAAM;QACpBb,IAAIK,GAAG,CAACQ;QACR;IACF;IAEA,uEAAuE;IACvE,MAAMN,OAAOY,kBAAkB,CAACnB;AAClC","ignoreList":[0]}}, - {"offset": {"line": 2346, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/bytes/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={56:e=>{\n/*!\n * bytes\n * Copyright(c) 2012-2014 TJ Holowaychuk\n * Copyright(c) 2015 Jed Watson\n * MIT Licensed\n */\ne.exports=bytes;e.exports.format=format;e.exports.parse=parse;var r=/\\B(?=(\\d{3})+(?!\\d))/g;var a=/(?:\\.0*|(\\.[^0]+)0+)$/;var t={b:1,kb:1<<10,mb:1<<20,gb:1<<30,tb:Math.pow(1024,4),pb:Math.pow(1024,5)};var i=/^((-|\\+)?(\\d+(?:\\.\\d+)?)) *(kb|mb|gb|tb|pb)$/i;function bytes(e,r){if(typeof e===\"string\"){return parse(e)}if(typeof e===\"number\"){return format(e,r)}return null}function format(e,i){if(!Number.isFinite(e)){return null}var n=Math.abs(e);var o=i&&i.thousandsSeparator||\"\";var s=i&&i.unitSeparator||\"\";var f=i&&i.decimalPlaces!==undefined?i.decimalPlaces:2;var u=Boolean(i&&i.fixedDecimals);var p=i&&i.unit||\"\";if(!p||!t[p.toLowerCase()]){if(n>=t.pb){p=\"PB\"}else if(n>=t.tb){p=\"TB\"}else if(n>=t.gb){p=\"GB\"}else if(n>=t.mb){p=\"MB\"}else if(n>=t.kb){p=\"KB\"}else{p=\"B\"}}var b=e/t[p.toLowerCase()];var l=b.toFixed(f);if(!u){l=l.replace(a,\"$1\")}if(o){l=l.split(\".\").map((function(e,a){return a===0?e.replace(r,o):e})).join(\".\")}return l+s+p}function parse(e){if(typeof e===\"number\"&&!isNaN(e)){return e}if(typeof e!==\"string\"){return null}var r=i.exec(e);var a;var n=\"b\";if(!r){a=parseInt(e,10);n=\"b\"}else{a=parseFloat(r[1]);n=r[4].toLowerCase()}return Math.floor(t[n]*a)}}};var r={};function __nccwpck_require__(a){var t=r[a];if(t!==undefined){return t.exports}var i=r[a]={exports:{}};var n=true;try{e[a](i,i.exports,__nccwpck_require__);n=false}finally{if(n)delete r[a]}return i.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var a=__nccwpck_require__(56);module.exports=a})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2462, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/size-limit.ts"],"sourcesContent":["import type { SizeLimit } from '../../types'\n\nexport const DEFAULT_MAX_POSTPONED_STATE_SIZE: SizeLimit = '100 MB'\n\nfunction parseSizeLimit(size: SizeLimit): number | undefined {\n const bytes = (\n require('next/dist/compiled/bytes') as typeof import('next/dist/compiled/bytes')\n ).parse(size)\n if (bytes === null || isNaN(bytes) || bytes < 1) {\n return undefined\n }\n return bytes\n}\n\n/**\n * Parses the maxPostponedStateSize config value, using the default if not provided.\n */\nexport function parseMaxPostponedStateSize(\n size: SizeLimit | undefined\n): number | undefined {\n return parseSizeLimit(size ?? DEFAULT_MAX_POSTPONED_STATE_SIZE)\n}\n"],"names":["DEFAULT_MAX_POSTPONED_STATE_SIZE","parseSizeLimit","size","bytes","require","parse","isNaN","undefined","parseMaxPostponedStateSize"],"mappings":";;;;;;AAEO,MAAMA,mCAA8C,SAAQ;AAEnE,SAASC,eAAeC,IAAe;IACrC,MAAMC,QACJC,QAAQ,mGACRC,KAAK,CAACH;IACR,IAAIC,UAAU,QAAQG,MAAMH,UAAUA,QAAQ,GAAG;QAC/C,OAAOI;IACT;IACA,OAAOJ;AACT;AAKO,SAASK,2BACdN,IAA2B;IAE3B,OAAOD,eAAeC,QAAQF;AAChC","ignoreList":[0]}}, - {"offset": {"line": 2500, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/unauthorized.tsx"],"sourcesContent":["import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'\n\nexport default function Unauthorized() {\n return (\n \n )\n}\n"],"names":["Unauthorized","HTTPAccessErrorFallback","status","message"],"mappings":";;;+BAEA,WAAA;;;eAAwBA;;;;+BAFgB;AAEzB,SAASA;IACtB,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACC,eAAAA,uBAAuB,EAAA;QACtBC,QAAQ;QACRC,SAAQ;;AAGd","ignoreList":[0]}}, - {"offset": {"line": 2532, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/templates/app-page.ts"],"sourcesContent":["import type { LoaderTree } from '../../server/lib/app-dir-module'\nimport type { IncomingMessage, ServerResponse } from 'node:http'\n\nimport {\n AppPageRouteModule,\n type AppPageRouteHandlerContext,\n} from '../../server/route-modules/app-page/module.compiled' with { 'turbopack-transition': 'next-ssr' }\n\nimport { RouteKind } from '../../server/route-kind' with { 'turbopack-transition': 'next-server-utility' }\n\nimport { getRevalidateReason } from '../../server/instrumentation/utils'\nimport { getTracer, SpanKind, type Span } from '../../server/lib/trace/tracer'\nimport { addRequestMeta, getRequestMeta } from '../../server/request-meta'\nimport { BaseServerSpan } from '../../server/lib/trace/constants'\nimport { interopDefault } from '../../server/app-render/interop-default'\nimport { stripFlightHeaders } from '../../server/app-render/strip-flight-headers'\nimport { NodeNextRequest, NodeNextResponse } from '../../server/base-http/node'\nimport { checkIsAppPPREnabled } from '../../server/lib/experimental/ppr'\nimport {\n getFallbackRouteParams,\n createOpaqueFallbackRouteParams,\n type OpaqueFallbackRouteParams,\n} from '../../server/request/fallback-params'\nimport { setManifestsSingleton } from '../../server/app-render/manifests-singleton'\nimport {\n isHtmlBotRequest,\n shouldServeStreamingMetadata,\n} from '../../server/lib/streaming-metadata'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport { getIsPossibleServerAction } from '../../server/lib/server-action-request-meta'\nimport {\n RSC_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_IS_PRERENDER_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n} from '../../client/components/app-router-headers'\nimport { getBotType, isBot } from '../../shared/lib/router/utils/is-bot'\nimport {\n CachedRouteKind,\n IncrementalCacheKind,\n type CachedAppPageValue,\n type CachedPageValue,\n type ResponseCacheEntry,\n type ResponseGenerator,\n} from '../../server/response-cache'\nimport { FallbackMode, parseFallbackField } from '../../lib/fallback'\nimport RenderResult from '../../server/render-result'\nimport {\n CACHE_ONE_YEAR,\n HTML_CONTENT_TYPE_HEADER,\n NEXT_CACHE_TAGS_HEADER,\n NEXT_RESUME_HEADER,\n} from '../../lib/constants'\nimport type { CacheControl } from '../../server/lib/cache-control'\nimport { ENCODED_TAGS } from '../../server/stream-utils/encoded-tags'\nimport { sendRenderResult } from '../../server/send-payload'\nimport { NoFallbackError } from '../../shared/lib/no-fallback-error.external'\nimport { parseMaxPostponedStateSize } from '../../shared/lib/size-limit'\n\n// These are injected by the loader afterwards.\n\n/**\n * The tree created in next-app-loader that holds component segments and modules\n * and I've updated it.\n */\ndeclare const tree: LoaderTree\n\n// We inject the tree and pages here so that we can use them in the route\n// module.\n// INJECT:tree\n\nimport GlobalError from 'VAR_MODULE_GLOBAL_ERROR' with { 'turbopack-transition': 'next-server-utility' }\n\nexport { GlobalError }\n\n// These are injected by the loader afterwards.\ndeclare const __next_app_require__: (id: string | number) => unknown\ndeclare const __next_app_load_chunk__: (id: string | number) => Promise\n\n// INJECT:__next_app_require__\n// INJECT:__next_app_load_chunk__\n\nexport const __next_app__ = {\n require: __next_app_require__,\n loadChunk: __next_app_load_chunk__,\n}\n\nimport * as entryBase from '../../server/app-render/entry-base' with { 'turbopack-transition': 'next-server-utility' }\nimport { RedirectStatusCode } from '../../client/components/redirect-status-code'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { isInterceptionRouteAppPath } from '../../shared/lib/router/utils/interception-routes'\n\nexport * from '../../server/app-render/entry-base' with { 'turbopack-transition': 'next-server-utility' }\n\n// Create and export the route module that will be consumed.\nexport const routeModule = new AppPageRouteModule({\n definition: {\n kind: RouteKind.APP_PAGE,\n page: 'VAR_DEFINITION_PAGE',\n pathname: 'VAR_DEFINITION_PATHNAME',\n // The following aren't used in production.\n bundlePath: '',\n filename: '',\n appPaths: [],\n },\n userland: {\n loaderTree: tree,\n },\n distDir: process.env.__NEXT_RELATIVE_DIST_DIR || '',\n relativeProjectDir: process.env.__NEXT_RELATIVE_PROJECT_DIR || '',\n})\n\nexport async function handler(\n req: IncomingMessage,\n res: ServerResponse,\n ctx: {\n waitUntil: (prom: Promise) => void\n }\n) {\n if (routeModule.isDev) {\n addRequestMeta(req, 'devRequestTimingInternalsEnd', process.hrtime.bigint())\n }\n const isMinimalMode = Boolean(\n process.env.MINIMAL_MODE || getRequestMeta(req, 'minimalMode')\n )\n\n let srcPage = 'VAR_DEFINITION_PAGE'\n\n // turbopack doesn't normalize `/index` in the page name\n // so we need to to process dynamic routes properly\n // TODO: fix turbopack providing differing value from webpack\n if (process.env.TURBOPACK) {\n srcPage = srcPage.replace(/\\/index$/, '') || '/'\n } else if (srcPage === '/index') {\n // we always normalize /index specifically\n srcPage = '/'\n }\n const multiZoneDraftMode = process.env\n .__NEXT_MULTI_ZONE_DRAFT_MODE as any as boolean\n\n const prepareResult = await routeModule.prepare(req, res, {\n srcPage,\n multiZoneDraftMode,\n })\n\n if (!prepareResult) {\n res.statusCode = 400\n res.end('Bad Request')\n ctx.waitUntil?.(Promise.resolve())\n return null\n }\n\n const {\n buildId,\n query,\n params,\n pageIsDynamic,\n buildManifest,\n nextFontManifest,\n reactLoadableManifest,\n serverActionsManifest,\n clientReferenceManifest,\n subresourceIntegrityManifest,\n prerenderManifest,\n isDraftMode,\n resolvedPathname,\n revalidateOnlyGenerated,\n routerServerContext,\n nextConfig,\n parsedUrl,\n interceptionRoutePatterns,\n deploymentId,\n } = prepareResult\n\n const normalizedSrcPage = normalizeAppPath(srcPage)\n\n let { isOnDemandRevalidate } = prepareResult\n\n // We use the resolvedPathname instead of the parsedUrl.pathname because it\n // is not rewritten as resolvedPathname is. This will ensure that the correct\n // prerender info is used instead of using the original pathname as the\n // source. If however PPR is enabled and cacheComponents is disabled, we\n // treat the pathname as dynamic. Currently, there's a bug in the PPR\n // implementation that incorrectly leaves %%drp placeholders in the output of\n // parallel routes. This is addressed with cacheComponents.\n const prerenderInfo =\n nextConfig.experimental.ppr &&\n !nextConfig.cacheComponents &&\n isInterceptionRouteAppPath(resolvedPathname)\n ? null\n : routeModule.match(resolvedPathname, prerenderManifest)\n\n const isPrerendered = !!prerenderManifest.routes[resolvedPathname]\n\n const userAgent = req.headers['user-agent'] || ''\n const botType = getBotType(userAgent)\n const isHtmlBot = isHtmlBotRequest(req)\n\n /**\n * If true, this indicates that the request being made is for an app\n * prefetch request.\n */\n const isPrefetchRSCRequest =\n getRequestMeta(req, 'isPrefetchRSCRequest') ??\n req.headers[NEXT_ROUTER_PREFETCH_HEADER] === '1' // exclude runtime prefetches, which use '2'\n\n // NOTE: Don't delete headers[RSC] yet, it still needs to be used in renderToHTML later\n\n const isRSCRequest =\n getRequestMeta(req, 'isRSCRequest') ?? Boolean(req.headers[RSC_HEADER])\n\n const isPossibleServerAction = getIsPossibleServerAction(req)\n\n /**\n * If the route being rendered is an app page, and the ppr feature has been\n * enabled, then the given route _could_ support PPR.\n */\n const couldSupportPPR: boolean = checkIsAppPPREnabled(\n nextConfig.experimental.ppr\n )\n\n if (\n !getRequestMeta(req, 'postponed') &&\n couldSupportPPR &&\n req.headers[NEXT_RESUME_HEADER] === '1' &&\n req.method === 'POST'\n ) {\n // Decode the postponed state from the request body, it will come as\n // an array of buffers, so collect them and then concat them to form\n // the string.\n\n const body: Array = []\n for await (const chunk of req) {\n body.push(chunk)\n }\n const postponed = Buffer.concat(body).toString('utf8')\n\n addRequestMeta(req, 'postponed', postponed)\n }\n\n // When enabled, this will allow the use of the `?__nextppronly` query to\n // enable debugging of the static shell.\n const hasDebugStaticShellQuery =\n process.env.__NEXT_EXPERIMENTAL_STATIC_SHELL_DEBUGGING === '1' &&\n typeof query.__nextppronly !== 'undefined' &&\n couldSupportPPR\n\n // When enabled, this will allow the use of the `?__nextppronly` query\n // to enable debugging of the fallback shell.\n const hasDebugFallbackShellQuery =\n hasDebugStaticShellQuery && query.__nextppronly === 'fallback'\n\n // This page supports PPR if it is marked as being `PARTIALLY_STATIC` in the\n // prerender manifest and this is an app page.\n const isRoutePPREnabled: boolean =\n couldSupportPPR &&\n ((\n prerenderManifest.routes[normalizedSrcPage] ??\n prerenderManifest.dynamicRoutes[normalizedSrcPage]\n )?.renderingMode === 'PARTIALLY_STATIC' ||\n // Ideally we'd want to check the appConfig to see if this page has PPR\n // enabled or not, but that would require plumbing the appConfig through\n // to the server during development. We assume that the page supports it\n // but only during development.\n (hasDebugStaticShellQuery &&\n (routeModule.isDev === true ||\n routerServerContext?.experimentalTestProxy === true)))\n\n const isDebugStaticShell: boolean =\n hasDebugStaticShellQuery && isRoutePPREnabled\n\n // We should enable debugging dynamic accesses when the static shell\n // debugging has been enabled and we're also in development mode.\n const isDebugDynamicAccesses =\n isDebugStaticShell && routeModule.isDev === true\n\n const isDebugFallbackShell = hasDebugFallbackShellQuery && isRoutePPREnabled\n\n // If we're in minimal mode, then try to get the postponed information from\n // the request metadata. If available, use it for resuming the postponed\n // render.\n const minimalPostponed = isRoutePPREnabled\n ? getRequestMeta(req, 'postponed')\n : undefined\n\n // If PPR is enabled, and this is a RSC request (but not a prefetch), then\n // we can use this fact to only generate the flight data for the request\n // because we can't cache the HTML (as it's also dynamic).\n let isDynamicRSCRequest =\n isRoutePPREnabled && isRSCRequest && !isPrefetchRSCRequest\n\n // During a PPR revalidation, the RSC request is not dynamic if we do not have the postponed data.\n // We only attach the postponed data during a resume. If there's no postponed data, then it must be a revalidation.\n // This is to ensure that we don't bypass the cache during a revalidation.\n if (isMinimalMode) {\n isDynamicRSCRequest = isDynamicRSCRequest && !!minimalPostponed\n }\n\n // Need to read this before it's stripped by stripFlightHeaders. We don't\n // need to transfer it to the request meta because it's only read\n // within this function; the static segment data should have already been\n // generated, so we will always either return a static response or a 404.\n const segmentPrefetchHeader = getRequestMeta(req, 'segmentPrefetchRSCRequest')\n\n // TODO: investigate existing bug with shouldServeStreamingMetadata always\n // being true for a revalidate due to modifying the base-server this.renderOpts\n // when fixing this to correct logic it causes hydration issue since we set\n // serveStreamingMetadata to true during export\n const serveStreamingMetadata =\n isHtmlBot && isRoutePPREnabled\n ? false\n : !userAgent\n ? true\n : shouldServeStreamingMetadata(userAgent, nextConfig.htmlLimitedBots)\n\n const isSSG = Boolean(\n (prerenderInfo ||\n isPrerendered ||\n prerenderManifest.routes[normalizedSrcPage]) &&\n // If this is a html bot request and PPR is enabled, then we don't want\n // to serve a static response.\n !(isHtmlBot && isRoutePPREnabled)\n )\n\n // When a page supports cacheComponents, we can support RDC for Navigations\n const supportsRDCForNavigations =\n isRoutePPREnabled && nextConfig.cacheComponents === true\n\n // In development, we always want to generate dynamic HTML.\n const supportsDynamicResponse: boolean =\n // If we're in development, we always support dynamic HTML, unless it's\n // a data request, in which case we only produce static HTML.\n routeModule.isDev === true ||\n // If this is not SSG or does not have static paths, then it supports\n // dynamic HTML.\n !isSSG ||\n // If this request has provided postponed data, it supports dynamic\n // HTML.\n typeof minimalPostponed === 'string' ||\n // If this handler supports onCacheEntryV2, then we can only support\n // dynamic responses if it's a dynamic RSC request and not in minimal mode. If it\n // doesn't support it we must fallback to the default behavior.\n (supportsRDCForNavigations && getRequestMeta(req, 'onCacheEntryV2')\n ? // In minimal mode, we'll always want to generate a static response\n // which will generate the RDC for the route. When resuming a Dynamic\n // RSC request, we'll pass the minimal postponed data to the render\n // which will trigger the `supportsDynamicResponse` to be true.\n isDynamicRSCRequest && !isMinimalMode\n : // Otherwise, we can support dynamic responses if it's a dynamic RSC request.\n isDynamicRSCRequest)\n\n // When html bots request PPR page, perform the full dynamic rendering.\n const shouldWaitOnAllReady = isHtmlBot && isRoutePPREnabled\n\n let ssgCacheKey: string | null = null\n if (\n !isDraftMode &&\n isSSG &&\n !supportsDynamicResponse &&\n !isPossibleServerAction &&\n !minimalPostponed &&\n !isDynamicRSCRequest\n ) {\n ssgCacheKey = resolvedPathname\n }\n\n // the staticPathKey differs from ssgCacheKey since\n // ssgCacheKey is null in dev since we're always in \"dynamic\"\n // mode in dev to bypass the cache, but we still need to honor\n // dynamicParams = false in dev mode\n let staticPathKey = ssgCacheKey\n if (!staticPathKey && routeModule.isDev) {\n staticPathKey = resolvedPathname\n }\n\n // If this is a request for an app path that should be statically generated\n // and we aren't in the edge runtime, strip the flight headers so it will\n // generate the static response.\n if (\n !routeModule.isDev &&\n !isDraftMode &&\n isSSG &&\n isRSCRequest &&\n !isDynamicRSCRequest\n ) {\n stripFlightHeaders(req.headers)\n }\n\n const ComponentMod = {\n ...entryBase,\n tree,\n GlobalError,\n handler,\n routeModule,\n __next_app__,\n }\n\n // Before rendering (which initializes component tree modules), we have to\n // set the reference manifests to our global store so Server Action's\n // encryption util can access to them at the top level of the page module.\n if (serverActionsManifest && clientReferenceManifest) {\n setManifestsSingleton({\n page: srcPage,\n clientReferenceManifest,\n serverActionsManifest,\n })\n }\n\n const method = req.method || 'GET'\n const tracer = getTracer()\n const activeSpan = tracer.getActiveScopeSpan()\n\n const render404 = async () => {\n // TODO: should route-module itself handle rendering the 404\n if (routerServerContext?.render404) {\n await routerServerContext.render404(req, res, parsedUrl, false)\n } else {\n res.end('This page could not be found')\n }\n return null\n }\n\n try {\n const varyHeader = routeModule.getVaryHeader(\n resolvedPathname,\n interceptionRoutePatterns\n )\n res.setHeader('Vary', varyHeader)\n const invokeRouteModule = async (\n span: Span | undefined,\n context: AppPageRouteHandlerContext\n ) => {\n const nextReq = new NodeNextRequest(req)\n const nextRes = new NodeNextResponse(res)\n\n return routeModule.render(nextReq, nextRes, context).finally(() => {\n if (!span) return\n\n span.setAttributes({\n 'http.status_code': res.statusCode,\n 'next.rsc': false,\n })\n\n const rootSpanAttributes = tracer.getRootSpanAttributes()\n // We were unable to get attributes, probably OTEL is not enabled\n if (!rootSpanAttributes) {\n return\n }\n\n if (\n rootSpanAttributes.get('next.span_type') !==\n BaseServerSpan.handleRequest\n ) {\n console.warn(\n `Unexpected root span type '${rootSpanAttributes.get(\n 'next.span_type'\n )}'. Please report this Next.js issue https://github.com/vercel/next.js`\n )\n return\n }\n\n const route = rootSpanAttributes.get('next.route')\n if (route) {\n const name = `${method} ${route}`\n\n span.setAttributes({\n 'next.route': route,\n 'http.route': route,\n 'next.span_name': name,\n })\n span.updateName(name)\n } else {\n span.updateName(`${method} ${srcPage}`)\n }\n })\n }\n\n const incrementalCache = getRequestMeta(req, 'incrementalCache')\n\n const doRender = async ({\n span,\n postponed,\n fallbackRouteParams,\n forceStaticRender,\n }: {\n span?: Span\n\n /**\n * The postponed data for this render. This is only provided when resuming\n * a render that has been postponed.\n */\n postponed: string | undefined\n\n /**\n * The unknown route params for this render.\n */\n fallbackRouteParams: OpaqueFallbackRouteParams | null\n\n /**\n * When true, this indicates that the response generator is being called\n * in a context where the response must be generated statically.\n *\n * CRITICAL: This should only currently be used when revalidating due to a\n * dynamic RSC request.\n */\n forceStaticRender: boolean\n }): Promise => {\n const context: AppPageRouteHandlerContext = {\n query,\n params,\n page: normalizedSrcPage,\n sharedContext: {\n buildId,\n },\n serverComponentsHmrCache: getRequestMeta(\n req,\n 'serverComponentsHmrCache'\n ),\n fallbackRouteParams,\n renderOpts: {\n App: () => null,\n Document: () => null,\n pageConfig: {},\n ComponentMod,\n Component: interopDefault(ComponentMod),\n\n params,\n routeModule,\n page: srcPage,\n postponed,\n shouldWaitOnAllReady,\n serveStreamingMetadata,\n supportsDynamicResponse:\n typeof postponed === 'string' || supportsDynamicResponse,\n buildManifest,\n nextFontManifest,\n reactLoadableManifest,\n subresourceIntegrityManifest,\n setCacheStatus: routerServerContext?.setCacheStatus,\n setIsrStatus: routerServerContext?.setIsrStatus,\n setReactDebugChannel: routerServerContext?.setReactDebugChannel,\n sendErrorsToBrowser: routerServerContext?.sendErrorsToBrowser,\n\n dir:\n process.env.NEXT_RUNTIME === 'nodejs'\n ? (require('path') as typeof import('path')).join(\n /* turbopackIgnore: true */\n process.cwd(),\n routeModule.relativeProjectDir\n )\n : `${process.cwd()}/${routeModule.relativeProjectDir}`,\n isDraftMode,\n botType,\n isOnDemandRevalidate,\n isPossibleServerAction,\n assetPrefix: nextConfig.assetPrefix,\n nextConfigOutput: nextConfig.output,\n crossOrigin: nextConfig.crossOrigin,\n trailingSlash: nextConfig.trailingSlash,\n images: nextConfig.images,\n previewProps: prerenderManifest.preview,\n deploymentId: deploymentId,\n enableTainting: nextConfig.experimental.taint,\n htmlLimitedBots: nextConfig.htmlLimitedBots,\n reactMaxHeadersLength: nextConfig.reactMaxHeadersLength,\n\n multiZoneDraftMode,\n incrementalCache,\n cacheLifeProfiles: nextConfig.cacheLife,\n basePath: nextConfig.basePath,\n serverActions: nextConfig.experimental.serverActions,\n\n ...(isDebugStaticShell ||\n isDebugDynamicAccesses ||\n isDebugFallbackShell\n ? {\n nextExport: true,\n supportsDynamicResponse: false,\n isStaticGeneration: true,\n isDebugDynamicAccesses: isDebugDynamicAccesses,\n }\n : {}),\n cacheComponents: Boolean(nextConfig.cacheComponents),\n experimental: {\n isRoutePPREnabled,\n expireTime: nextConfig.expireTime,\n staleTimes: nextConfig.experimental.staleTimes,\n dynamicOnHover: Boolean(nextConfig.experimental.dynamicOnHover),\n inlineCss: Boolean(nextConfig.experimental.inlineCss),\n authInterrupts: Boolean(nextConfig.experimental.authInterrupts),\n clientTraceMetadata:\n nextConfig.experimental.clientTraceMetadata || ([] as any),\n clientParamParsingOrigins:\n nextConfig.experimental.clientParamParsingOrigins,\n maxPostponedStateSizeBytes: parseMaxPostponedStateSize(\n nextConfig.experimental.maxPostponedStateSize\n ),\n },\n\n waitUntil: ctx.waitUntil,\n onClose: (cb) => {\n res.on('close', cb)\n },\n onAfterTaskError: () => {},\n\n onInstrumentationRequestError: (\n error,\n _request,\n errorContext,\n silenceLog\n ) =>\n routeModule.onRequestError(\n req,\n error,\n errorContext,\n silenceLog,\n routerServerContext\n ),\n err: getRequestMeta(req, 'invokeError'),\n dev: routeModule.isDev,\n },\n }\n\n if (isDebugStaticShell || isDebugDynamicAccesses) {\n context.renderOpts.nextExport = true\n context.renderOpts.supportsDynamicResponse = false\n context.renderOpts.isDebugDynamicAccesses = isDebugDynamicAccesses\n }\n\n // When we're revalidating in the background, we should not allow dynamic\n // responses.\n if (forceStaticRender) {\n context.renderOpts.supportsDynamicResponse = false\n }\n\n const result = await invokeRouteModule(span, context)\n\n const { metadata } = result\n\n const {\n cacheControl,\n headers = {},\n // Add any fetch tags that were on the page to the response headers.\n fetchTags: cacheTags,\n fetchMetrics,\n } = metadata\n\n if (cacheTags) {\n headers[NEXT_CACHE_TAGS_HEADER] = cacheTags\n }\n\n // Pull any fetch metrics from the render onto the request.\n ;(req as any).fetchMetrics = fetchMetrics\n\n // we don't throw static to dynamic errors in dev as isSSG\n // is a best guess in dev since we don't have the prerender pass\n // to know whether the path is actually static or not\n if (\n isSSG &&\n cacheControl?.revalidate === 0 &&\n !routeModule.isDev &&\n !isRoutePPREnabled\n ) {\n const staticBailoutInfo = metadata.staticBailoutInfo\n\n const err = new Error(\n `Page changed from static to dynamic at runtime ${resolvedPathname}${\n staticBailoutInfo?.description\n ? `, reason: ${staticBailoutInfo.description}`\n : ``\n }` +\n `\\nsee more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`\n )\n\n if (staticBailoutInfo?.stack) {\n const stack = staticBailoutInfo.stack\n err.stack = err.message + stack.substring(stack.indexOf('\\n'))\n }\n\n throw err\n }\n\n return {\n value: {\n kind: CachedRouteKind.APP_PAGE,\n html: result,\n headers,\n rscData: metadata.flightData,\n postponed: metadata.postponed,\n status: metadata.statusCode,\n segmentData: metadata.segmentData,\n } satisfies CachedAppPageValue,\n cacheControl,\n } satisfies ResponseCacheEntry\n }\n\n const responseGenerator: ResponseGenerator = async ({\n hasResolved,\n previousCacheEntry: previousIncrementalCacheEntry,\n isRevalidating,\n span,\n forceStaticRender = false,\n }) => {\n const isProduction = routeModule.isDev === false\n const didRespond = hasResolved || res.writableEnded\n\n // skip on-demand revalidate if cache is not present and\n // revalidate-if-generated is set\n if (\n isOnDemandRevalidate &&\n revalidateOnlyGenerated &&\n !previousIncrementalCacheEntry &&\n !isMinimalMode\n ) {\n if (routerServerContext?.render404) {\n await routerServerContext.render404(req, res)\n } else {\n res.statusCode = 404\n res.end('This page could not be found')\n }\n return null\n }\n\n let fallbackMode: FallbackMode | undefined\n\n if (prerenderInfo) {\n fallbackMode = parseFallbackField(prerenderInfo.fallback)\n }\n\n // When serving a HTML bot request, we want to serve a blocking render and\n // not the prerendered page. This ensures that the correct content is served\n // to the bot in the head.\n if (fallbackMode === FallbackMode.PRERENDER && isBot(userAgent)) {\n if (!isRoutePPREnabled || isHtmlBot) {\n fallbackMode = FallbackMode.BLOCKING_STATIC_RENDER\n }\n }\n\n if (previousIncrementalCacheEntry?.isStale === -1) {\n isOnDemandRevalidate = true\n }\n\n // TODO: adapt for PPR\n // only allow on-demand revalidate for fallback: true/blocking\n // or for prerendered fallback: false paths\n if (\n isOnDemandRevalidate &&\n (fallbackMode !== FallbackMode.NOT_FOUND ||\n previousIncrementalCacheEntry)\n ) {\n fallbackMode = FallbackMode.BLOCKING_STATIC_RENDER\n }\n\n if (\n !isMinimalMode &&\n fallbackMode !== FallbackMode.BLOCKING_STATIC_RENDER &&\n staticPathKey &&\n !didRespond &&\n !isDraftMode &&\n pageIsDynamic &&\n (isProduction || !isPrerendered)\n ) {\n // if the page has dynamicParams: false and this pathname wasn't\n // prerendered trigger the no fallback handling\n if (\n // In development, fall through to render to handle missing\n // getStaticPaths.\n (isProduction || prerenderInfo) &&\n // When fallback isn't present, abort this render so we 404\n fallbackMode === FallbackMode.NOT_FOUND\n ) {\n if (nextConfig.experimental.adapterPath) {\n return await render404()\n }\n throw new NoFallbackError()\n }\n\n // When cacheComponents is enabled, we can use the fallback\n // response if the request is not a dynamic RSC request because the\n // RSC data when this feature flag is enabled does not contain any\n // param references. Without this feature flag enabled, the RSC data\n // contains param references, and therefore we can't use the fallback.\n if (\n isRoutePPREnabled &&\n (nextConfig.cacheComponents ? !isDynamicRSCRequest : !isRSCRequest)\n ) {\n const cacheKey =\n isProduction && typeof prerenderInfo?.fallback === 'string'\n ? prerenderInfo.fallback\n : normalizedSrcPage\n\n const fallbackRouteParams =\n // If we're in production and we have fallback route params, then we\n // can use the manifest fallback route params.\n isProduction && prerenderInfo?.fallbackRouteParams\n ? createOpaqueFallbackRouteParams(\n prerenderInfo.fallbackRouteParams\n )\n : // Otherwise, if we're debugging the fallback shell, then we\n // have to manually generate the fallback route params.\n isDebugFallbackShell\n ? getFallbackRouteParams(normalizedSrcPage, routeModule)\n : null\n\n // We use the response cache here to handle the revalidation and\n // management of the fallback shell.\n const fallbackResponse = await routeModule.handleResponse({\n cacheKey,\n req,\n nextConfig,\n routeKind: RouteKind.APP_PAGE,\n isFallback: true,\n prerenderManifest,\n isRoutePPREnabled,\n responseGenerator: async () =>\n doRender({\n span,\n // We pass `undefined` as rendering a fallback isn't resumed\n // here.\n postponed: undefined,\n fallbackRouteParams,\n forceStaticRender: false,\n }),\n waitUntil: ctx.waitUntil,\n isMinimalMode,\n })\n\n // If the fallback response was set to null, then we should return null.\n if (fallbackResponse === null) return null\n\n // Otherwise, if we did get a fallback response, we should return it.\n if (fallbackResponse) {\n // Remove the cache control from the response to prevent it from being\n // used in the surrounding cache.\n delete fallbackResponse.cacheControl\n\n return fallbackResponse\n }\n }\n }\n\n // Only requests that aren't revalidating can be resumed. If we have the\n // minimal postponed data, then we should resume the render with it.\n let postponed =\n !isOnDemandRevalidate && !isRevalidating && minimalPostponed\n ? minimalPostponed\n : undefined\n\n // If this is a dynamic RSC request, we should use the postponed data from\n // the static render (if available). This ensures that we can utilize the\n // resume data cache (RDC) from the static render to ensure that the data\n // is consistent between the static and dynamic renders.\n if (\n // Only enable RDC for Navigations if the feature is enabled.\n supportsRDCForNavigations &&\n process.env.NEXT_RUNTIME !== 'edge' &&\n !isMinimalMode &&\n incrementalCache &&\n isDynamicRSCRequest &&\n // We don't typically trigger an on-demand revalidation for dynamic RSC\n // requests, as we're typically revalidating the page in the background\n // instead. However, if the cache entry is stale, we should trigger a\n // background revalidation on dynamic RSC requests. This prevents us\n // from entering an infinite loop of revalidations.\n !forceStaticRender\n ) {\n const incrementalCacheEntry = await incrementalCache.get(\n resolvedPathname,\n {\n kind: IncrementalCacheKind.APP_PAGE,\n isRoutePPREnabled: true,\n isFallback: false,\n }\n )\n\n // If the cache entry is found, we should use the postponed data from\n // the cache.\n if (\n incrementalCacheEntry &&\n incrementalCacheEntry.value &&\n incrementalCacheEntry.value.kind === CachedRouteKind.APP_PAGE\n ) {\n // CRITICAL: we're assigning the postponed data from the cache entry\n // here as we're using the RDC to resume the render.\n postponed = incrementalCacheEntry.value.postponed\n\n // If the cache entry is stale, we should trigger a background\n // revalidation so that subsequent requests will get a fresh response.\n if (\n incrementalCacheEntry &&\n // We want to trigger this flow if the cache entry is stale and if\n // the requested revalidation flow is either foreground or\n // background.\n (incrementalCacheEntry.isStale === -1 ||\n incrementalCacheEntry.isStale === true)\n ) {\n // We want to schedule this on the next tick to ensure that the\n // render is not blocked on it.\n scheduleOnNextTick(async () => {\n const responseCache = routeModule.getResponseCache(req)\n\n try {\n await responseCache.revalidate(\n resolvedPathname,\n incrementalCache,\n isRoutePPREnabled,\n false,\n (c) =>\n responseGenerator({\n ...c,\n // CRITICAL: we need to set this to true as we're\n // revalidating in the background and typically this dynamic\n // RSC request is not treated as static.\n forceStaticRender: true,\n }),\n // CRITICAL: we need to pass null here because passing the\n // previous cache entry here (which is stale) will switch on\n // isOnDemandRevalidate and break the prerendering.\n null,\n hasResolved,\n ctx.waitUntil\n )\n } catch (err) {\n console.error(\n 'Error revalidating the page in the background',\n err\n )\n }\n })\n }\n }\n }\n\n // When we're in minimal mode, if we're trying to debug the static shell,\n // we should just return nothing instead of resuming the dynamic render.\n if (\n (isDebugStaticShell || isDebugDynamicAccesses) &&\n typeof postponed !== 'undefined'\n ) {\n return {\n cacheControl: { revalidate: 1, expire: undefined },\n value: {\n kind: CachedRouteKind.PAGES,\n html: RenderResult.EMPTY,\n pageData: {},\n headers: undefined,\n status: undefined,\n } satisfies CachedPageValue,\n }\n }\n\n const fallbackRouteParams =\n // If we're in production and we have fallback route params, then we\n // can use the manifest fallback route params if we need to render the\n // fallback shell.\n isProduction &&\n prerenderInfo?.fallbackRouteParams &&\n getRequestMeta(req, 'renderFallbackShell')\n ? createOpaqueFallbackRouteParams(prerenderInfo.fallbackRouteParams)\n : // Otherwise, if we're debugging the fallback shell, then we have to\n // manually generate the fallback route params.\n isDebugFallbackShell\n ? getFallbackRouteParams(normalizedSrcPage, routeModule)\n : null\n\n // Perform the render.\n return doRender({\n span,\n postponed,\n fallbackRouteParams,\n forceStaticRender,\n })\n }\n\n const handleResponse = async (span?: Span): Promise => {\n const cacheEntry = await routeModule.handleResponse({\n cacheKey: ssgCacheKey,\n responseGenerator: (c) =>\n responseGenerator({\n span,\n ...c,\n }),\n routeKind: RouteKind.APP_PAGE,\n isOnDemandRevalidate,\n isRoutePPREnabled,\n req,\n nextConfig,\n prerenderManifest,\n waitUntil: ctx.waitUntil,\n isMinimalMode,\n })\n\n if (isDraftMode) {\n res.setHeader(\n 'Cache-Control',\n 'private, no-cache, no-store, max-age=0, must-revalidate'\n )\n }\n\n // In dev, we should not cache pages for any reason.\n if (routeModule.isDev) {\n res.setHeader('Cache-Control', 'no-store, must-revalidate')\n }\n\n if (!cacheEntry) {\n if (ssgCacheKey) {\n // A cache entry might not be generated if a response is written\n // in `getInitialProps` or `getServerSideProps`, but those shouldn't\n // have a cache key. If we do have a cache key but we don't end up\n // with a cache entry, then either Next.js or the application has a\n // bug that needs fixing.\n throw new Error('invariant: cache entry required but not generated')\n }\n return null\n }\n\n if (cacheEntry.value?.kind !== CachedRouteKind.APP_PAGE) {\n throw new Error(\n `Invariant app-page handler received invalid cache entry ${cacheEntry.value?.kind}`\n )\n }\n\n const didPostpone = typeof cacheEntry.value.postponed === 'string'\n\n if (\n isSSG &&\n // We don't want to send a cache header for requests that contain dynamic\n // data. If this is a Dynamic RSC request or wasn't a Prefetch RSC\n // request, then we should set the cache header.\n !isDynamicRSCRequest &&\n (!didPostpone || isPrefetchRSCRequest)\n ) {\n if (!isMinimalMode) {\n // set x-nextjs-cache header to match the header\n // we set for the image-optimizer\n res.setHeader(\n 'x-nextjs-cache',\n isOnDemandRevalidate\n ? 'REVALIDATED'\n : cacheEntry.isMiss\n ? 'MISS'\n : cacheEntry.isStale\n ? 'STALE'\n : 'HIT'\n )\n }\n // Set a header used by the client router to signal the response is static\n // and should respect the `static` cache staleTime value.\n res.setHeader(NEXT_IS_PRERENDER_HEADER, '1')\n }\n const { value: cachedData } = cacheEntry\n\n // Coerce the cache control parameter from the render.\n let cacheControl: CacheControl | undefined\n\n // If this is a resume request in minimal mode it is streamed with dynamic\n // content and should not be cached.\n if (minimalPostponed) {\n cacheControl = { revalidate: 0, expire: undefined }\n }\n\n // If this is in minimal mode and this is a flight request that isn't a\n // prefetch request while PPR is enabled, it cannot be cached as it contains\n // dynamic content.\n else if (isDynamicRSCRequest) {\n cacheControl = { revalidate: 0, expire: undefined }\n } else if (!routeModule.isDev) {\n // If this is a preview mode request, we shouldn't cache it\n if (isDraftMode) {\n cacheControl = { revalidate: 0, expire: undefined }\n }\n\n // If this isn't SSG, then we should set change the header only if it is\n // not set already.\n else if (!isSSG) {\n if (!res.getHeader('Cache-Control')) {\n cacheControl = { revalidate: 0, expire: undefined }\n }\n } else if (cacheEntry.cacheControl) {\n // If the cache entry has a cache control with a revalidate value that's\n // a number, use it.\n if (typeof cacheEntry.cacheControl.revalidate === 'number') {\n if (cacheEntry.cacheControl.revalidate < 1) {\n throw new Error(\n `Invalid revalidate configuration provided: ${cacheEntry.cacheControl.revalidate} < 1`\n )\n }\n\n cacheControl = {\n revalidate: cacheEntry.cacheControl.revalidate,\n expire: cacheEntry.cacheControl?.expire ?? nextConfig.expireTime,\n }\n }\n // Otherwise if the revalidate value is false, then we should use the\n // cache time of one year.\n else {\n cacheControl = { revalidate: CACHE_ONE_YEAR, expire: undefined }\n }\n }\n }\n\n cacheEntry.cacheControl = cacheControl\n\n if (\n typeof segmentPrefetchHeader === 'string' &&\n cachedData?.kind === CachedRouteKind.APP_PAGE &&\n cachedData.segmentData\n ) {\n // This is a prefetch request issued by the client Segment Cache. These\n // should never reach the application layer (lambda). We should either\n // respond from the cache (HIT) or respond with 204 No Content (MISS).\n\n // Set a header to indicate that PPR is enabled for this route. This\n // lets the client distinguish between a regular cache miss and a cache\n // miss due to PPR being disabled. In other contexts this header is used\n // to indicate that the response contains dynamic data, but here we're\n // only using it to indicate that the feature is enabled — the segment\n // response itself contains whether the data is dynamic.\n res.setHeader(NEXT_DID_POSTPONE_HEADER, '2')\n\n // Add the cache tags header to the response if it exists and we're in\n // minimal mode while rendering a static page.\n const tags = cachedData.headers?.[NEXT_CACHE_TAGS_HEADER]\n if (isMinimalMode && isSSG && tags && typeof tags === 'string') {\n res.setHeader(NEXT_CACHE_TAGS_HEADER, tags)\n }\n\n const matchedSegment = cachedData.segmentData.get(segmentPrefetchHeader)\n if (matchedSegment !== undefined) {\n // Cache hit\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: RenderResult.fromStatic(\n matchedSegment,\n RSC_CONTENT_TYPE_HEADER\n ),\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // Cache miss. Either a cache entry for this route has not been generated\n // (which technically should not be possible when PPR is enabled, because\n // at a minimum there should always be a fallback entry) or there's no\n // match for the requested segment. Respond with a 204 No Content. We\n // don't bother to respond with 404, because these requests are only\n // issued as part of a prefetch.\n res.statusCode = 204\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: RenderResult.EMPTY,\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // If there's a callback for `onCacheEntry`, call it with the cache entry\n // and the revalidate options. If we support RDC for Navigations, we\n // prefer the `onCacheEntryV2` callback. Once RDC for Navigations is the\n // default, we can remove the fallback to `onCacheEntry` as\n // `onCacheEntryV2` is now fully supported.\n const onCacheEntry = supportsRDCForNavigations\n ? (getRequestMeta(req, 'onCacheEntryV2') ??\n getRequestMeta(req, 'onCacheEntry'))\n : getRequestMeta(req, 'onCacheEntry')\n if (onCacheEntry) {\n const finished = await onCacheEntry(cacheEntry, {\n url: getRequestMeta(req, 'initURL') ?? req.url,\n })\n if (finished) return null\n }\n\n if (cachedData.headers) {\n const headers = { ...cachedData.headers }\n\n if (!isMinimalMode || !isSSG) {\n delete headers[NEXT_CACHE_TAGS_HEADER]\n }\n\n for (let [key, value] of Object.entries(headers)) {\n if (typeof value === 'undefined') continue\n\n if (Array.isArray(value)) {\n for (const v of value) {\n res.appendHeader(key, v)\n }\n } else if (typeof value === 'number') {\n value = value.toString()\n res.appendHeader(key, value)\n } else {\n res.appendHeader(key, value)\n }\n }\n }\n\n // Add the cache tags header to the response if it exists and we're in\n // minimal mode while rendering a static page.\n const tags = cachedData.headers?.[NEXT_CACHE_TAGS_HEADER]\n if (isMinimalMode && isSSG && tags && typeof tags === 'string') {\n res.setHeader(NEXT_CACHE_TAGS_HEADER, tags)\n }\n\n // If the request is a data request, then we shouldn't set the status code\n // from the response because it should always be 200. This should be gated\n // behind the experimental PPR flag.\n if (cachedData.status && (!isRSCRequest || !isRoutePPREnabled)) {\n res.statusCode = cachedData.status\n }\n\n // Redirect information is encoded in RSC payload, so we don't need to use redirect status codes\n if (\n !isMinimalMode &&\n cachedData.status &&\n RedirectStatusCode[cachedData.status] &&\n isRSCRequest\n ) {\n res.statusCode = 200\n }\n\n // Mark that the request did postpone.\n if (didPostpone && !isDynamicRSCRequest) {\n res.setHeader(NEXT_DID_POSTPONE_HEADER, '1')\n }\n\n // we don't go through this block when preview mode is true\n // as preview mode is a dynamic request (bypasses cache) and doesn't\n // generate both HTML and payloads in the same request so continue to just\n // return the generated payload\n if (isRSCRequest && !isDraftMode) {\n // If this is a dynamic RSC request, then stream the response.\n if (typeof cachedData.rscData === 'undefined') {\n // If the response is not an RSC response, then we can't serve it.\n if (cachedData.html.contentType !== RSC_CONTENT_TYPE_HEADER) {\n if (nextConfig.cacheComponents) {\n res.statusCode = 404\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: RenderResult.EMPTY,\n cacheControl: cacheEntry.cacheControl,\n })\n } else {\n // Otherwise this case is not expected.\n throw new InvariantError(\n `Expected RSC response, got ${cachedData.html.contentType}`\n )\n }\n }\n\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: cachedData.html,\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // As this isn't a prefetch request, we should serve the static flight\n // data.\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: RenderResult.fromStatic(\n cachedData.rscData,\n RSC_CONTENT_TYPE_HEADER\n ),\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // This is a request for HTML data.\n const body = cachedData.html\n\n // If there's no postponed state, we should just serve the HTML. This\n // should also be the case for a resume request because it's completed\n // as a server render (rather than a static render).\n if (!didPostpone || isMinimalMode || isRSCRequest) {\n // If we're in test mode, we should add a sentinel chunk to the response\n // that's between the static and dynamic parts so we can compare the\n // chunks and add assertions.\n if (\n process.env.__NEXT_TEST_MODE &&\n isMinimalMode &&\n isRoutePPREnabled &&\n body.contentType === HTML_CONTENT_TYPE_HEADER\n ) {\n // As we're in minimal mode, the static part would have already been\n // streamed first. The only part that this streams is the dynamic part\n // so we should FIRST stream the sentinel and THEN the dynamic part.\n body.unshift(createPPRBoundarySentinel())\n }\n\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: body,\n cacheControl: cacheEntry.cacheControl,\n })\n }\n\n // If we're debugging the static shell or the dynamic API accesses, we\n // should just serve the HTML without resuming the render. The returned\n // HTML will be the static shell so all the Dynamic API's will be used\n // during static generation.\n if (isDebugStaticShell || isDebugDynamicAccesses) {\n // Since we're not resuming the render, we need to at least add the\n // closing body and html tags to create valid HTML.\n body.push(\n new ReadableStream({\n start(controller) {\n controller.enqueue(ENCODED_TAGS.CLOSED.BODY_AND_HTML)\n controller.close()\n },\n })\n )\n\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: body,\n cacheControl: { revalidate: 0, expire: undefined },\n })\n }\n\n // If we're in test mode, we should add a sentinel chunk to the response\n // that's between the static and dynamic parts so we can compare the\n // chunks and add assertions.\n if (process.env.__NEXT_TEST_MODE) {\n body.push(createPPRBoundarySentinel())\n }\n\n // This request has postponed, so let's create a new transformer that the\n // dynamic data can pipe to that will attach the dynamic data to the end\n // of the response.\n const transformer = new TransformStream()\n body.push(transformer.readable)\n\n // Perform the render again, but this time, provide the postponed state.\n // We don't await because we want the result to start streaming now, and\n // we've already chained the transformer's readable to the render result.\n doRender({\n span,\n postponed: cachedData.postponed,\n // This is a resume render, not a fallback render, so we don't need to\n // set this.\n fallbackRouteParams: null,\n forceStaticRender: false,\n })\n .then(async (result) => {\n if (!result) {\n throw new Error('Invariant: expected a result to be returned')\n }\n\n if (result.value?.kind !== CachedRouteKind.APP_PAGE) {\n throw new Error(\n `Invariant: expected a page response, got ${result.value?.kind}`\n )\n }\n\n // Pipe the resume result to the transformer.\n await result.value.html.pipeTo(transformer.writable)\n })\n .catch((err) => {\n // An error occurred during piping or preparing the render, abort\n // the transformers writer so we can terminate the stream.\n transformer.writable.abort(err).catch((e) => {\n console.error(\"couldn't abort transformer\", e)\n })\n })\n\n return sendRenderResult({\n req,\n res,\n generateEtags: nextConfig.generateEtags,\n poweredByHeader: nextConfig.poweredByHeader,\n result: body,\n // We don't want to cache the response if it has postponed data because\n // the response being sent to the client it's dynamic parts are streamed\n // to the client on the same request.\n cacheControl: { revalidate: 0, expire: undefined },\n })\n }\n\n // TODO: activeSpan code path is for when wrapped by\n // next-server can be removed when this is no longer used\n if (activeSpan) {\n await handleResponse(activeSpan)\n } else {\n return await tracer.withPropagatedContext(req.headers, () =>\n tracer.trace(\n BaseServerSpan.handleRequest,\n {\n spanName: `${method} ${srcPage}`,\n kind: SpanKind.SERVER,\n attributes: {\n 'http.method': method,\n 'http.target': req.url,\n },\n },\n handleResponse\n )\n )\n }\n } catch (err) {\n if (!(err instanceof NoFallbackError)) {\n const silenceLog = false\n await routeModule.onRequestError(\n req,\n err,\n {\n routerKind: 'App Router',\n routePath: srcPage,\n routeType: 'render',\n revalidateReason: getRevalidateReason({\n isStaticGeneration: isSSG,\n isOnDemandRevalidate,\n }),\n },\n silenceLog,\n routerServerContext\n )\n }\n\n // rethrow so that we can handle serving error page\n throw err\n }\n}\n\n// TODO: omit this from production builds, only test builds should include it\n/**\n * Creates a readable stream that emits a PPR boundary sentinel.\n *\n * @returns A readable stream that emits a PPR boundary sentinel.\n */\nfunction createPPRBoundarySentinel() {\n return new ReadableStream({\n start(controller) {\n controller.enqueue(\n new TextEncoder().encode('')\n )\n controller.close()\n },\n })\n}\n"],"names":["AppPageRouteModule","RouteKind","getRevalidateReason","getTracer","SpanKind","addRequestMeta","getRequestMeta","BaseServerSpan","interopDefault","stripFlightHeaders","NodeNextRequest","NodeNextResponse","checkIsAppPPREnabled","getFallbackRouteParams","createOpaqueFallbackRouteParams","setManifestsSingleton","isHtmlBotRequest","shouldServeStreamingMetadata","normalizeAppPath","getIsPossibleServerAction","RSC_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_DID_POSTPONE_HEADER","RSC_CONTENT_TYPE_HEADER","getBotType","isBot","CachedRouteKind","IncrementalCacheKind","FallbackMode","parseFallbackField","RenderResult","CACHE_ONE_YEAR","HTML_CONTENT_TYPE_HEADER","NEXT_CACHE_TAGS_HEADER","NEXT_RESUME_HEADER","ENCODED_TAGS","sendRenderResult","NoFallbackError","parseMaxPostponedStateSize","GlobalError","__next_app__","require","__next_app_require__","loadChunk","__next_app_load_chunk__","entryBase","RedirectStatusCode","InvariantError","scheduleOnNextTick","isInterceptionRouteAppPath","routeModule","definition","kind","APP_PAGE","page","pathname","bundlePath","filename","appPaths","userland","loaderTree","tree","distDir","process","env","__NEXT_RELATIVE_DIST_DIR","relativeProjectDir","__NEXT_RELATIVE_PROJECT_DIR","handler","req","res","ctx","prerenderManifest","isDev","hrtime","bigint","isMinimalMode","Boolean","MINIMAL_MODE","srcPage","TURBOPACK","replace","multiZoneDraftMode","__NEXT_MULTI_ZONE_DRAFT_MODE","prepareResult","prepare","statusCode","end","waitUntil","Promise","resolve","buildId","query","params","pageIsDynamic","buildManifest","nextFontManifest","reactLoadableManifest","serverActionsManifest","clientReferenceManifest","subresourceIntegrityManifest","isDraftMode","resolvedPathname","revalidateOnlyGenerated","routerServerContext","nextConfig","parsedUrl","interceptionRoutePatterns","deploymentId","normalizedSrcPage","isOnDemandRevalidate","prerenderInfo","experimental","ppr","cacheComponents","match","isPrerendered","routes","userAgent","headers","botType","isHtmlBot","isPrefetchRSCRequest","isRSCRequest","isPossibleServerAction","couldSupportPPR","method","body","chunk","push","postponed","Buffer","concat","toString","hasDebugStaticShellQuery","__NEXT_EXPERIMENTAL_STATIC_SHELL_DEBUGGING","__nextppronly","hasDebugFallbackShellQuery","isRoutePPREnabled","dynamicRoutes","renderingMode","experimentalTestProxy","isDebugStaticShell","isDebugDynamicAccesses","isDebugFallbackShell","minimalPostponed","undefined","isDynamicRSCRequest","segmentPrefetchHeader","serveStreamingMetadata","htmlLimitedBots","isSSG","supportsRDCForNavigations","supportsDynamicResponse","shouldWaitOnAllReady","ssgCacheKey","staticPathKey","ComponentMod","tracer","activeSpan","getActiveScopeSpan","render404","varyHeader","getVaryHeader","setHeader","invokeRouteModule","span","context","nextReq","nextRes","render","finally","setAttributes","rootSpanAttributes","getRootSpanAttributes","get","handleRequest","console","warn","route","name","updateName","incrementalCache","doRender","fallbackRouteParams","forceStaticRender","sharedContext","serverComponentsHmrCache","renderOpts","App","Document","pageConfig","Component","setCacheStatus","setIsrStatus","setReactDebugChannel","sendErrorsToBrowser","dir","NEXT_RUNTIME","join","cwd","assetPrefix","nextConfigOutput","output","crossOrigin","trailingSlash","images","previewProps","preview","enableTainting","taint","reactMaxHeadersLength","cacheLifeProfiles","cacheLife","basePath","serverActions","nextExport","isStaticGeneration","expireTime","staleTimes","dynamicOnHover","inlineCss","authInterrupts","clientTraceMetadata","clientParamParsingOrigins","maxPostponedStateSizeBytes","maxPostponedStateSize","onClose","cb","on","onAfterTaskError","onInstrumentationRequestError","error","_request","errorContext","silenceLog","onRequestError","err","dev","result","metadata","cacheControl","fetchTags","cacheTags","fetchMetrics","revalidate","staticBailoutInfo","Error","description","stack","message","substring","indexOf","value","html","rscData","flightData","status","segmentData","responseGenerator","hasResolved","previousCacheEntry","previousIncrementalCacheEntry","isRevalidating","isProduction","didRespond","writableEnded","fallbackMode","fallback","PRERENDER","BLOCKING_STATIC_RENDER","isStale","NOT_FOUND","adapterPath","cacheKey","fallbackResponse","handleResponse","routeKind","isFallback","incrementalCacheEntry","responseCache","getResponseCache","c","expire","PAGES","EMPTY","pageData","cacheEntry","cachedData","didPostpone","isMiss","getHeader","tags","matchedSegment","generateEtags","poweredByHeader","fromStatic","onCacheEntry","finished","url","key","Object","entries","Array","isArray","v","appendHeader","contentType","__NEXT_TEST_MODE","unshift","createPPRBoundarySentinel","ReadableStream","start","controller","enqueue","CLOSED","BODY_AND_HTML","close","transformer","TransformStream","readable","then","pipeTo","writable","catch","abort","e","withPropagatedContext","trace","spanName","SERVER","attributes","routerKind","routePath","routeType","revalidateReason","TextEncoder","encode"],"mappings":"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","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_afb60855._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_afb60855._.js deleted file mode 100644 index 017cdda..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_afb60855._.js +++ /dev/null @@ -1,11327 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - if ("TURBOPACK compile-time truthy", 1) { - if ("TURBOPACK compile-time truthy", 1) { - module.exports = __turbopack_context__.r("[externals]/next/dist/compiled/next-server/app-page-turbo.runtime.dev.js [external] (next/dist/compiled/next-server/app-page-turbo.runtime.dev.js, cjs)"); - } else //TURBOPACK unreachable - ; - } else //TURBOPACK unreachable - ; - } -} //# sourceMappingURL=module.compiled.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactJsxRuntime; //# sourceMappingURL=react-jsx-runtime.js.map -}), -"[project]/node_modules/next/dist/client/components/handle-isr-error.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HandleISRError", { - enumerable: true, - get: function() { - return HandleISRError; - } -}); -const workAsyncStorage = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)").workAsyncStorage : "TURBOPACK unreachable"; -function HandleISRError({ error }) { - if (workAsyncStorage) { - const store = workAsyncStorage.getStore(); - if (store?.isStaticGeneration) { - if (error) { - console.error(error); - } - throw error; - } - } - return null; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=handle-isr-error.js.map -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, // supplied custom global error signatures. -"default", { - enumerable: true, - get: function() { - return _default; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -const _handleisrerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/handle-isr-error.js [app-ssr] (ecmascript)"); -const styles = { - error: { - // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52 - fontFamily: 'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"', - height: '100vh', - textAlign: 'center', - display: 'flex', - flexDirection: 'column', - alignItems: 'center', - justifyContent: 'center' - }, - text: { - fontSize: '14px', - fontWeight: 400, - lineHeight: '28px', - margin: '0 8px' - } -}; -function DefaultGlobalError({ error }) { - const digest = error?.digest; - return /*#__PURE__*/ (0, _jsxruntime.jsxs)("html", { - id: "__next_error__", - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("head", {}), - /*#__PURE__*/ (0, _jsxruntime.jsxs)("body", { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(_handleisrerror.HandleISRError, { - error: error - }), - /*#__PURE__*/ (0, _jsxruntime.jsx)("div", { - style: styles.error, - children: /*#__PURE__*/ (0, _jsxruntime.jsxs)("div", { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsxs)("h2", { - style: styles.text, - children: [ - "Application error: a ", - digest ? 'server' : 'client', - "-side exception has occurred while loading ", - window.location.hostname, - " (see the", - ' ', - digest ? 'server logs' : 'browser console', - " for more information)." - ] - }), - digest ? /*#__PURE__*/ (0, _jsxruntime.jsx)("p", { - style: styles.text, - children: `Digest: ${digest}` - }) : null - ] - }) - }) - ] - }) - ] - }); -} -const _default = DefaultGlobalError; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=global-error.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].React; //# sourceMappingURL=react.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactDOM; //# sourceMappingURL=react-dom.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].AppRouterContext; //# sourceMappingURL=app-router-context.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unresolved-thenable.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Create a "Thenable" that does not resolve. This is used to suspend indefinitely when data is not available yet. - */ __turbopack_context__.s([ - "unresolvedThenable", - ()=>unresolvedThenable -]); -const unresolvedThenable = { - then: ()=>{} -}; //# sourceMappingURL=unresolved-thenable.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].HooksClientContext; //# sourceMappingURL=hooks-client-context.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/navigation-untracked.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "useUntrackedPathname", - ()=>useUntrackedPathname -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -; -; -/** - * This checks to see if the current render has any unknown route parameters that - * would cause the pathname to be dynamic. It's used to trigger a different - * render path in the error boundary. - * - * @returns true if there are any unknown route parameters, false otherwise - */ function hasFallbackRouteParams() { - if ("TURBOPACK compile-time truthy", 1) { - // AsyncLocalStorage should not be included in the client bundle. - const { workUnitAsyncStorage } = __turbopack_context__.r("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); - const workUnitStore = workUnitAsyncStorage.getStore(); - if (!workUnitStore) return false; - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - const fallbackParams = workUnitStore.fallbackRouteParams; - return fallbackParams ? fallbackParams.size > 0 : false; - case 'prerender-legacy': - case 'request': - case 'prerender-runtime': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - return false; - } - //TURBOPACK unreachable - ; -} -function useUntrackedPathname() { - // If there are any unknown route parameters we would typically throw - // an error, but this internal method allows us to return a null value instead - // for components that do not propagate the pathname to the static shell (like - // the error boundary). - if (hasFallbackRouteParams()) { - return null; - } - // This shouldn't cause any issues related to conditional rendering because - // the environment will be consistent for the render. - // eslint-disable-next-line react-hooks/rules-of-hooks - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PathnameContext"]); -} //# sourceMappingURL=navigation-untracked.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTTPAccessErrorStatus", - ()=>HTTPAccessErrorStatus, - "HTTP_ERROR_FALLBACK_ERROR_CODE", - ()=>HTTP_ERROR_FALLBACK_ERROR_CODE, - "getAccessFallbackErrorTypeByStatus", - ()=>getAccessFallbackErrorTypeByStatus, - "getAccessFallbackHTTPStatus", - ()=>getAccessFallbackHTTPStatus, - "isHTTPAccessFallbackError", - ()=>isHTTPAccessFallbackError -]); -const HTTPAccessErrorStatus = { - NOT_FOUND: 404, - FORBIDDEN: 403, - UNAUTHORIZED: 401 -}; -const ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus)); -const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'; -function isHTTPAccessFallbackError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const [prefix, httpStatus] = error.digest.split(';'); - return prefix === HTTP_ERROR_FALLBACK_ERROR_CODE && ALLOWED_CODES.has(Number(httpStatus)); -} -function getAccessFallbackHTTPStatus(error) { - const httpStatus = error.digest.split(';')[1]; - return Number(httpStatus); -} -function getAccessFallbackErrorTypeByStatus(status) { - switch(status){ - case 401: - return 'unauthorized'; - case 403: - return 'forbidden'; - case 404: - return 'not-found'; - default: - return; - } -} //# sourceMappingURL=http-access-fallback.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RedirectStatusCode", - ()=>RedirectStatusCode -]); -var RedirectStatusCode = /*#__PURE__*/ function(RedirectStatusCode) { - RedirectStatusCode[RedirectStatusCode["SeeOther"] = 303] = "SeeOther"; - RedirectStatusCode[RedirectStatusCode["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - RedirectStatusCode[RedirectStatusCode["PermanentRedirect"] = 308] = "PermanentRedirect"; - return RedirectStatusCode; -}({}); //# sourceMappingURL=redirect-status-code.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "REDIRECT_ERROR_CODE", - ()=>REDIRECT_ERROR_CODE, - "RedirectType", - ()=>RedirectType, - "isRedirectError", - ()=>isRedirectError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-ssr] (ecmascript)"); -; -const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'; -var RedirectType = /*#__PURE__*/ function(RedirectType) { - RedirectType["push"] = "push"; - RedirectType["replace"] = "replace"; - return RedirectType; -}({}); -function isRedirectError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const digest = error.digest.split(';'); - const [errorCode, type] = digest; - const destination = digest.slice(2, -2).join(';'); - const status = digest.at(-2); - const statusCode = Number(status); - return errorCode === REDIRECT_ERROR_CODE && (type === 'replace' || type === 'push') && typeof destination === 'string' && !isNaN(statusCode) && statusCode in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectStatusCode"]; -} //# sourceMappingURL=redirect-error.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isNextRouterError", - ()=>isNextRouterError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)"); -; -; -function isNextRouterError(error) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(error); -} //# sourceMappingURL=is-next-router-error.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createHrefFromUrl", - ()=>createHrefFromUrl -]); -function createHrefFromUrl(url, includeHash = true) { - return url.pathname + url.search + (includeHash ? url.hash : ''); -} //# sourceMappingURL=create-href-from-url.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/nav-failure-handler.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "handleHardNavError", - ()=>handleHardNavError, - "useNavFailureHandler", - ()=>useNavFailureHandler -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -; -; -function handleHardNavError(error) { - if (error && ("TURBOPACK compile-time value", "undefined") !== 'undefined' && window.next.__pendingUrl && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(new URL(window.location.href)) !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(window.next.__pendingUrl)) //TURBOPACK unreachable - ; - return false; -} -function useNavFailureHandler() { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; -} //# sourceMappingURL=nav-failure-handler.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/handle-isr-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HandleISRError", - ()=>HandleISRError -]); -const workAsyncStorage = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)").workAsyncStorage : "TURBOPACK unreachable"; -function HandleISRError({ error }) { - if (workAsyncStorage) { - const store = workAsyncStorage.getStore(); - if (store?.isStaticGeneration) { - if (error) { - console.error(error); - } - throw error; - } - } - return null; -} //# sourceMappingURL=handle-isr-error.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// This regex contains the bots that we need to do a blocking render for and can't safely stream the response -// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent. -// Note: The pattern [\w-]+-Google captures all Google crawlers with "-Google" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google) -// as well as crawlers starting with "Google-" (e.g., Google-PageRenderer, Google-InspectionTool) -__turbopack_context__.s([ - "HTML_LIMITED_BOT_UA_RE", - ()=>HTML_LIMITED_BOT_UA_RE -]); -const HTML_LIMITED_BOT_UA_RE = /[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i; //# sourceMappingURL=html-bots.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-ssr] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTML_LIMITED_BOT_UA_RE_STRING", - ()=>HTML_LIMITED_BOT_UA_RE_STRING, - "getBotType", - ()=>getBotType, - "isBot", - ()=>isBot -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/html-bots.js [app-ssr] (ecmascript)"); -; -// Bot crawler that will spin up a headless browser and execute JS. -// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers. -// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers -// This regex specifically matches "Googlebot" but NOT "Mediapartners-Google", "AdsBot-Google", etc. -const HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i; -const HTML_LIMITED_BOT_UA_RE_STRING = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTML_LIMITED_BOT_UA_RE"].source; -; -function isDomBotUA(userAgent) { - return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent); -} -function isHtmlLimitedBotUA(userAgent) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$html$2d$bots$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTML_LIMITED_BOT_UA_RE"].test(userAgent); -} -function isBot(userAgent) { - return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent); -} -function getBotType(userAgent) { - if (isDomBotUA(userAgent)) { - return 'dom'; - } - if (isHtmlLimitedBotUA(userAgent)) { - return 'html'; - } - return undefined; -} //# sourceMappingURL=is-bot.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/error-boundary.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ErrorBoundary", - ()=>ErrorBoundary, - "ErrorBoundaryHandler", - ()=>ErrorBoundaryHandler -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2d$untracked$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/navigation-untracked.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$nav$2d$failure$2d$handler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/nav-failure-handler.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$handle$2d$isr$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/handle-isr-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/is-bot.js [app-ssr] (ecmascript) "); -'use client'; -; -; -; -; -; -; -; -const isBotUserAgent = ("TURBOPACK compile-time value", "undefined") !== 'undefined' && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$is$2d$bot$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__["isBot"])(window.navigator.userAgent); -class ErrorBoundaryHandler extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].Component { - constructor(props){ - super(props), this.reset = ()=>{ - this.setState({ - error: null - }); - }; - this.state = { - error: null, - previousPathname: this.props.pathname - }; - } - static getDerivedStateFromError(error) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isNextRouterError"])(error)) { - // Re-throw if an expected internal Next.js router error occurs - // this means it should be handled by a different boundary (such as a NotFound boundary in a parent segment) - throw error; - } - return { - error - }; - } - static getDerivedStateFromProps(props, state) { - const { error } = state; - // if we encounter an error while - // a navigation is pending we shouldn't render - // the error boundary and instead should fallback - // to a hard navigation to attempt recovering - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - /** - * Handles reset of the error boundary when a navigation happens. - * Ensures the error boundary does not stay enabled when navigating to a new page. - * Approach of setState in render is safe as it checks the previous pathname and then overrides - * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders - */ if (props.pathname !== state.previousPathname && state.error) { - return { - error: null, - previousPathname: props.pathname - }; - } - return { - error: state.error, - previousPathname: props.pathname - }; - } - // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version. - render() { - //When it's bot request, segment level error boundary will keep rendering the children, - // the final error will be caught by the root error boundary and determine wether need to apply graceful degrade. - if (this.state.error && !isBotUserAgent) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$handle$2d$isr$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HandleISRError"], { - error: this.state.error - }), - this.props.errorStyles, - this.props.errorScripts, - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(this.props.errorComponent, { - error: this.state.error, - reset: this.reset - }) - ] - }); - } - return this.props.children; - } -} -function ErrorBoundary({ errorComponent, errorStyles, errorScripts, children }) { - // When we're rendering the missing params shell, this will return null. This - // is because we won't be rendering any not found boundaries or error - // boundaries for the missing params shell. When this runs on the client - // (where these errors can occur), we will get the correct pathname. - const pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2d$untracked$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useUntrackedPathname"])(); - if (errorComponent) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(ErrorBoundaryHandler, { - pathname: pathname, - errorComponent: errorComponent, - errorStyles: errorStyles, - errorScripts: errorScripts, - children: children - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: children - }); -} //# sourceMappingURL=error-boundary.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "matchSegment", - ()=>matchSegment -]); -const matchSegment = (existingSegment, segment)=>{ - // segment is either Array or string - if (typeof existingSegment === 'string') { - if (typeof segment === 'string') { - // Common case: segment is just a string - return existingSegment === segment; - } - return false; - } - if (typeof segment === 'string') { - return false; - } - return existingSegment[0] === segment[0] && existingSegment[1] === segment[1]; -}; //# sourceMappingURL=match-segments.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "warnOnce", - ()=>warnOnce -]); -let warnOnce = (_)=>{}; -if ("TURBOPACK compile-time truthy", 1) { - const warnings = new Set(); - warnOnce = (msg)=>{ - if (!warnings.has(msg)) { - console.warn(msg); - } - warnings.add(msg); - }; -} -; - //# sourceMappingURL=warn-once.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/disable-smooth-scroll.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "disableSmoothScrollDuringRouteTransition", - ()=>disableSmoothScrollDuringRouteTransition -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$warn$2d$once$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)"); -; -function disableSmoothScrollDuringRouteTransition(fn, options = {}) { - // if only the hash is changed, we don't need to disable smooth scrolling - // we only care to prevent smooth scrolling when navigating to a new page to avoid jarring UX - if (options.onlyHashChange) { - fn(); - return; - } - const htmlElement = document.documentElement; - const hasDataAttribute = htmlElement.dataset.scrollBehavior === 'smooth'; - if (!hasDataAttribute) { - // Warn if smooth scrolling is detected but no data attribute is present - if (("TURBOPACK compile-time value", "development") === 'development' && getComputedStyle(htmlElement).scrollBehavior === 'smooth') { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$warn$2d$once$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["warnOnce"])('Detected `scroll-behavior: smooth` on the `` element. To disable smooth scrolling during route transitions, ' + 'add `data-scroll-behavior="smooth"` to your element. ' + 'Learn more: https://nextjs.org/docs/messages/missing-data-scroll-behavior'); - } - // No smooth scrolling configured, run directly without style manipulation - fn(); - return; - } - // Proceed with temporarily disabling smooth scrolling - const existing = htmlElement.style.scrollBehavior; - htmlElement.style.scrollBehavior = 'auto'; - if (!options.dontForceLayout) { - // In Chrome-based browsers we need to force reflow before calling `scrollTo`. - // Otherwise it will not pickup the change in scrollBehavior - // More info here: https://github.com/vercel/next.js/issues/40719#issuecomment-1336248042 - htmlElement.getClientRects(); - } - fn(); - htmlElement.style.scrollBehavior = existing; -} //# sourceMappingURL=disable-smooth-scroll.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DEFAULT_SEGMENT_KEY", - ()=>DEFAULT_SEGMENT_KEY, - "NOT_FOUND_SEGMENT_KEY", - ()=>NOT_FOUND_SEGMENT_KEY, - "PAGE_SEGMENT_KEY", - ()=>PAGE_SEGMENT_KEY, - "addSearchParamsIfPageSegment", - ()=>addSearchParamsIfPageSegment, - "computeSelectedLayoutSegment", - ()=>computeSelectedLayoutSegment, - "getSegmentValue", - ()=>getSegmentValue, - "getSelectedLayoutSegmentPath", - ()=>getSelectedLayoutSegmentPath, - "isGroupSegment", - ()=>isGroupSegment, - "isParallelRouteSegment", - ()=>isParallelRouteSegment -]); -function getSegmentValue(segment) { - return Array.isArray(segment) ? segment[1] : segment; -} -function isGroupSegment(segment) { - // Use array[0] for performant purpose - return segment[0] === '(' && segment.endsWith(')'); -} -function isParallelRouteSegment(segment) { - return segment.startsWith('@') && segment !== '@children'; -} -function addSearchParamsIfPageSegment(segment, searchParams) { - const isPageSegment = segment.includes(PAGE_SEGMENT_KEY); - if (isPageSegment) { - const stringifiedQuery = JSON.stringify(searchParams); - return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY; - } - return segment; -} -function computeSelectedLayoutSegment(segments, parallelRouteKey) { - if (!segments || segments.length === 0) { - return null; - } - // For 'children', use first segment; for other parallel routes, use last segment - const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1]; - // If the default slot is showing, return null since it's not technically "selected" (it's a fallback) - // Returning an internal value like `__DEFAULT__` would be confusing - return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment; -} -function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) { - let node; - if (first) { - // Use the provided parallel route key on the first parallel route - node = tree[1][parallelRouteKey]; - } else { - // After first parallel route prefer children, if there's no children pick the first parallel route. - const parallelRoutes = tree[1]; - node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]; - } - if (!node) return segmentPath; - const segment = node[0]; - let segmentValue = getSegmentValue(segment); - if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) { - return segmentPath; - } - segmentPath.push(segmentValue); - return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath); -} -const PAGE_SEGMENT_KEY = '__PAGE__'; -const DEFAULT_SEGMENT_KEY = '__DEFAULT__'; -const NOT_FOUND_SEGMENT_KEY = '/_not-found'; //# sourceMappingURL=segment.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['contexts'].ServerInsertedHtml; //# sourceMappingURL=server-inserted-html.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unrecognized-action-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "UnrecognizedActionError", - ()=>UnrecognizedActionError, - "unstable_isUnrecognizedActionError", - ()=>unstable_isUnrecognizedActionError -]); -class UnrecognizedActionError extends Error { - constructor(...args){ - super(...args); - this.name = 'UnrecognizedActionError'; - } -} -function unstable_isUnrecognizedActionError(error) { - return !!(error && typeof error === 'object' && error instanceof UnrecognizedActionError); -} //# sourceMappingURL=unrecognized-action-error.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/readonly-url-search-params.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ReadonlyURLSearchParams", - ()=>ReadonlyURLSearchParams -]); -/** - * ReadonlyURLSearchParams implementation shared between client and server. - * This file is intentionally not marked as 'use client' or 'use server' - * so it can be imported by both environments. - */ /** @internal */ class ReadonlyURLSearchParamsError extends Error { - constructor(){ - super('Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams'); - } -} -class ReadonlyURLSearchParams extends URLSearchParams { - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ append() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ delete() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ set() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ sort() { - throw new ReadonlyURLSearchParamsError(); - } -} //# sourceMappingURL=readonly-url-search-params.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/redirect.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getRedirectError", - ()=>getRedirectError, - "getRedirectStatusCodeFromError", - ()=>getRedirectStatusCodeFromError, - "getRedirectTypeFromError", - ()=>getRedirectTypeFromError, - "getURLFromRedirectError", - ()=>getURLFromRedirectError, - "permanentRedirect", - ()=>permanentRedirect, - "redirect", - ()=>redirect -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-status-code.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)"); -; -; -const actionAsyncStorage = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[externals]/next/dist/server/app-render/action-async-storage.external.js [external] (next/dist/server/app-render/action-async-storage.external.js, cjs)").actionAsyncStorage : "TURBOPACK unreachable"; -function getRedirectError(url, type, statusCode = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectStatusCode"].TemporaryRedirect) { - const error = Object.defineProperty(new Error(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["REDIRECT_ERROR_CODE"]), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["REDIRECT_ERROR_CODE"]};${type};${url};${statusCode};`; - return error; -} -function redirect(/** The URL to redirect to */ url, type) { - type ??= actionAsyncStorage?.getStore()?.isAction ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectType"].push : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectType"].replace; - throw getRedirectError(url, type, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectStatusCode"].TemporaryRedirect); -} -function permanentRedirect(/** The URL to redirect to */ url, type = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectType"].replace) { - throw getRedirectError(url, type, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$status$2d$code$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectStatusCode"].PermanentRedirect); -} -function getURLFromRedirectError(error) { - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error)) return null; - // Slices off the beginning of the digest that contains the code and the - // separating ';'. - return error.digest.split(';').slice(2, -2).join(';'); -} -function getRedirectTypeFromError(error) { - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error)) { - throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", { - value: "E260", - enumerable: false, - configurable: true - }); - } - return error.digest.split(';', 2)[1]; -} -function getRedirectStatusCodeFromError(error) { - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error)) { - throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", { - value: "E260", - enumerable: false, - configurable: true - }); - } - return Number(error.digest.split(';').at(-2)); -} //# sourceMappingURL=redirect.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/not-found.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "notFound", - ()=>notFound -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -; -/** - * This function allows you to render the [not-found.js file](https://nextjs.org/docs/app/api-reference/file-conventions/not-found) - * within a route segment as well as inject a tag. - * - * `notFound()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * - In a Server Component, this will insert a `` meta tag and set the status code to 404. - * - In a Route Handler or Server Action, it will serve a 404 to the caller. - * - * Read more: [Next.js Docs: `notFound`](https://nextjs.org/docs/app/api-reference/functions/not-found) - */ const DIGEST = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTP_ERROR_FALLBACK_ERROR_CODE"]};404`; -function notFound() { - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} //# sourceMappingURL=not-found.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/forbidden.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "forbidden", - ()=>forbidden -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -; -// TODO: Add `forbidden` docs -/** - * @experimental - * This function allows you to render the [forbidden.js file](https://nextjs.org/docs/app/api-reference/file-conventions/forbidden) - * within a route segment as well as inject a tag. - * - * `forbidden()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * Read more: [Next.js Docs: `forbidden`](https://nextjs.org/docs/app/api-reference/functions/forbidden) - */ const DIGEST = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTP_ERROR_FALLBACK_ERROR_CODE"]};403`; -function forbidden() { - if ("TURBOPACK compile-time truthy", 1) { - throw Object.defineProperty(new Error(`\`forbidden()\` is experimental and only allowed to be enabled when \`experimental.authInterrupts\` is enabled.`), "__NEXT_ERROR_CODE", { - value: "E488", - enumerable: false, - configurable: true - }); - } - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} //# sourceMappingURL=forbidden.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unauthorized.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "unauthorized", - ()=>unauthorized -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -; -// TODO: Add `unauthorized` docs -/** - * @experimental - * This function allows you to render the [unauthorized.js file](https://nextjs.org/docs/app/api-reference/file-conventions/unauthorized) - * within a route segment as well as inject a tag. - * - * `unauthorized()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * - * Read more: [Next.js Docs: `unauthorized`](https://nextjs.org/docs/app/api-reference/functions/unauthorized) - */ const DIGEST = `${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTP_ERROR_FALLBACK_ERROR_CODE"]};401`; -function unauthorized() { - if ("TURBOPACK compile-time truthy", 1) { - throw Object.defineProperty(new Error(`\`unauthorized()\` is experimental and only allowed to be used when \`experimental.authInterrupts\` is enabled.`), "__NEXT_ERROR_CODE", { - value: "E411", - enumerable: false, - configurable: true - }); - } - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} //# sourceMappingURL=unauthorized.js.map -}), -"[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isHangingPromiseRejectionError", - ()=>isHangingPromiseRejectionError, - "makeDevtoolsIOAwarePromise", - ()=>makeDevtoolsIOAwarePromise, - "makeHangingPromise", - ()=>makeHangingPromise -]); -function isHangingPromiseRejectionError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === HANGING_PROMISE_REJECTION; -} -const HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'; -class HangingPromiseRejectionError extends Error { - constructor(route, expression){ - super(`During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${route}".`), this.route = route, this.expression = expression, this.digest = HANGING_PROMISE_REJECTION; - } -} -const abortListenersBySignal = new WeakMap(); -function makeHangingPromise(signal, route, expression) { - if (signal.aborted) { - return Promise.reject(new HangingPromiseRejectionError(route, expression)); - } else { - const hangingPromise = new Promise((_, reject)=>{ - const boundRejection = reject.bind(null, new HangingPromiseRejectionError(route, expression)); - let currentListeners = abortListenersBySignal.get(signal); - if (currentListeners) { - currentListeners.push(boundRejection); - } else { - const listeners = [ - boundRejection - ]; - abortListenersBySignal.set(signal, listeners); - signal.addEventListener('abort', ()=>{ - for(let i = 0; i < listeners.length; i++){ - listeners[i](); - } - }, { - once: true - }); - } - }); - // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so - // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct - // your own promise out of it you'll need to ensure you handle the error when it rejects. - hangingPromise.catch(ignoreReject); - return hangingPromise; - } -} -function ignoreReject() {} -function makeDevtoolsIOAwarePromise(underlying, requestStore, stage) { - if (requestStore.stagedRendering) { - // We resolve each stage in a timeout, so React DevTools will pick this up as IO. - return requestStore.stagedRendering.delayUntilStage(stage, undefined, underlying); - } - // in React DevTools if we resolve in a setTimeout we will observe - // the promise resolution as something that can suspend a boundary or root. - return new Promise((resolve)=>{ - // Must use setTimeout to be considered IO React DevTools. setImmediate will not work. - setTimeout(()=>{ - resolve(underlying); - }, 0); - }); -} //# sourceMappingURL=dynamic-rendering-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isPostpone", - ()=>isPostpone -]); -const REACT_POSTPONE_TYPE = Symbol.for('react.postpone'); -function isPostpone(error) { - return typeof error === 'object' && error !== null && error.$$typeof === REACT_POSTPONE_TYPE; -} //# sourceMappingURL=is-postpone.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "BailoutToCSRError", - ()=>BailoutToCSRError, - "isBailoutToCSRError", - ()=>isBailoutToCSRError -]); -// This has to be a shared module which is shared between client component error boundary and dynamic component -const BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'; -class BailoutToCSRError extends Error { - constructor(reason){ - super(`Bail out to client-side rendering: ${reason}`), this.reason = reason, this.digest = BAILOUT_TO_CSR; - } -} -function isBailoutToCSRError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === BAILOUT_TO_CSR; -} //# sourceMappingURL=bailout-to-csr.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DynamicServerError", - ()=>DynamicServerError, - "isDynamicServerError", - ()=>isDynamicServerError -]); -const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'; -class DynamicServerError extends Error { - constructor(description){ - super(`Dynamic server usage: ${description}`), this.description = description, this.digest = DYNAMIC_ERROR_CODE; - } -} -function isDynamicServerError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') { - return false; - } - return err.digest === DYNAMIC_ERROR_CODE; -} //# sourceMappingURL=hooks-server-context.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "StaticGenBailoutError", - ()=>StaticGenBailoutError, - "isStaticGenBailoutError", - ()=>isStaticGenBailoutError -]); -const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'; -class StaticGenBailoutError extends Error { - constructor(...args){ - super(...args), this.code = NEXT_STATIC_GEN_BAILOUT; - } -} -function isStaticGenBailoutError(error) { - if (typeof error !== 'object' || error === null || !('code' in error)) { - return false; - } - return error.code === NEXT_STATIC_GEN_BAILOUT; -} //# sourceMappingURL=static-generation-bailout.js.map -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "METADATA_BOUNDARY_NAME", - ()=>METADATA_BOUNDARY_NAME, - "OUTLET_BOUNDARY_NAME", - ()=>OUTLET_BOUNDARY_NAME, - "ROOT_LAYOUT_BOUNDARY_NAME", - ()=>ROOT_LAYOUT_BOUNDARY_NAME, - "VIEWPORT_BOUNDARY_NAME", - ()=>VIEWPORT_BOUNDARY_NAME -]); -const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'; -const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'; -const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'; -const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'; //# sourceMappingURL=boundary-constants.js.map -}), -"[project]/node_modules/next/dist/esm/lib/scheduler.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Schedules a function to be called on the next tick after the other promises - * have been resolved. - * - * @param cb the function to schedule - */ __turbopack_context__.s([ - "atLeastOneTask", - ()=>atLeastOneTask, - "scheduleImmediate", - ()=>scheduleImmediate, - "scheduleOnNextTick", - ()=>scheduleOnNextTick, - "waitAtLeastOneReactRenderTask", - ()=>waitAtLeastOneReactRenderTask -]); -const scheduleOnNextTick = (cb)=>{ - // We use Promise.resolve().then() here so that the operation is scheduled at - // the end of the promise job queue, we then add it to the next process tick - // to ensure it's evaluated afterwards. - // - // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255 - // - Promise.resolve().then(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - process.nextTick(cb); - } - }); -}; -const scheduleImmediate = (cb)=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - setImmediate(cb); - } -}; -function atLeastOneTask() { - return new Promise((resolve)=>scheduleImmediate(resolve)); -} -function waitAtLeastOneReactRenderTask() { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - return new Promise((r)=>setImmediate(r)); - } -} //# sourceMappingURL=scheduler.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "InvariantError", - ()=>InvariantError -]); -class InvariantError extends Error { - constructor(message, options){ - super(`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`, options); - this.name = 'InvariantError'; - } -} //# sourceMappingURL=invariant-error.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Postpone", - ()=>Postpone, - "PreludeState", - ()=>PreludeState, - "abortAndThrowOnSynchronousRequestDataAccess", - ()=>abortAndThrowOnSynchronousRequestDataAccess, - "abortOnSynchronousPlatformIOAccess", - ()=>abortOnSynchronousPlatformIOAccess, - "accessedDynamicData", - ()=>accessedDynamicData, - "annotateDynamicAccess", - ()=>annotateDynamicAccess, - "consumeDynamicAccess", - ()=>consumeDynamicAccess, - "createDynamicTrackingState", - ()=>createDynamicTrackingState, - "createDynamicValidationState", - ()=>createDynamicValidationState, - "createHangingInputAbortSignal", - ()=>createHangingInputAbortSignal, - "createRenderInBrowserAbortSignal", - ()=>createRenderInBrowserAbortSignal, - "delayUntilRuntimeStage", - ()=>delayUntilRuntimeStage, - "formatDynamicAPIAccesses", - ()=>formatDynamicAPIAccesses, - "getFirstDynamicReason", - ()=>getFirstDynamicReason, - "getStaticShellDisallowedDynamicReasons", - ()=>getStaticShellDisallowedDynamicReasons, - "isDynamicPostpone", - ()=>isDynamicPostpone, - "isPrerenderInterruptedError", - ()=>isPrerenderInterruptedError, - "logDisallowedDynamicError", - ()=>logDisallowedDynamicError, - "markCurrentScopeAsDynamic", - ()=>markCurrentScopeAsDynamic, - "postponeWithTracking", - ()=>postponeWithTracking, - "throwIfDisallowedDynamic", - ()=>throwIfDisallowedDynamic, - "throwToInterruptStaticGeneration", - ()=>throwToInterruptStaticGeneration, - "trackAllowedDynamicAccess", - ()=>trackAllowedDynamicAccess, - "trackDynamicDataInDynamicRender", - ()=>trackDynamicDataInDynamicRender, - "trackDynamicHoleInRuntimeShell", - ()=>trackDynamicHoleInRuntimeShell, - "trackDynamicHoleInStaticShell", - ()=>trackDynamicHoleInStaticShell, - "useDynamicRouteParams", - ()=>useDynamicRouteParams, - "useDynamicSearchParams", - ()=>useDynamicSearchParams -]); -/** - * The functions provided by this module are used to communicate certain properties - * about the currently running code so that Next.js can make decisions on how to handle - * the current execution in different rendering modes such as pre-rendering, resuming, and SSR. - * - * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering. - * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts - * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of - * Dynamic indications. - * - * The first is simply an intention to be dynamic. unstable_noStore is an example of this where - * the currently executing code simply declares that the current scope is dynamic but if you use it - * inside unstable_cache it can still be cached. This type of indication can be removed if we ever - * make the default dynamic to begin with because the only way you would ever be static is inside - * a cache scope which this indication does not affect. - * - * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic - * because it means that it is inappropriate to cache this at all. using a dynamic data source inside - * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should - * read that data outside the cache and pass it in as an argument to the cached function. - */ // Once postpone is in stable we should switch to importing the postpone export directly -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/scheduler.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -const hasPostpone = typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].unstable_postpone === 'function'; -function createDynamicTrackingState(isDebugDynamicAccesses) { - return { - isDebugDynamicAccesses, - dynamicAccesses: [], - syncDynamicErrorWithStack: null - }; -} -function createDynamicValidationState() { - return { - hasSuspenseAboveBody: false, - hasDynamicMetadata: false, - dynamicMetadata: null, - hasDynamicViewport: false, - hasAllowedDynamic: false, - dynamicErrors: [] - }; -} -function getFirstDynamicReason(trackingState) { - var _trackingState_dynamicAccesses_; - return (_trackingState_dynamicAccesses_ = trackingState.dynamicAccesses[0]) == null ? void 0 : _trackingState_dynamicAccesses_.expression; -} -function markCurrentScopeAsDynamic(store, workUnitStore, expression) { - if (workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender-legacy': - case 'prerender-ppr': - case 'request': - break; - default: - workUnitStore; - } - } - // If we're forcing dynamic rendering or we're forcing static rendering, we - // don't need to do anything here because the entire page is already dynamic - // or it's static and it should not throw or postpone here. - if (store.forceDynamic || store.forceStatic) return; - if (store.dynamicShouldError) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](`Route ${store.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E553", - enumerable: false, - configurable: true - }); - } - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-ppr': - return postponeWithTracking(store.route, expression, workUnitStore.dynamicTracking); - case 'prerender-legacy': - workUnitStore.revalidate = 0; - // We aren't prerendering, but we are generating a static page. We need - // to bail out of static generation. - const err = Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DynamicServerError"](`Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E550", - enumerable: false, - configurable: true - }); - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } - } -} -function throwToInterruptStaticGeneration(expression, store, prerenderStore) { - // We aren't prerendering but we are generating a static page. We need to bail out of static generation - const err = Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DynamicServerError"](`Route ${store.route} couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E558", - enumerable: false, - configurable: true - }); - prerenderStore.revalidate = 0; - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; -} -function trackDynamicDataInDynamicRender(workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender': - case 'prerender-runtime': - case 'prerender-legacy': - case 'prerender-ppr': - case 'prerender-client': - break; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } -} -function abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore) { - const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`; - const error = createPrerenderInterruptedError(reason); - prerenderStore.controller.abort(error); - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function abortOnSynchronousPlatformIOAccess(route, expression, errorWithStack, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } -} -function abortAndThrowOnSynchronousRequestDataAccess(route, expression, errorWithStack, prerenderStore) { - const prerenderSignal = prerenderStore.controller.signal; - if (prerenderSignal.aborted === false) { - // TODO it would be better to move this aborted check into the callsite so we can avoid making - // the error object when it isn't relevant to the aborting of the prerender however - // since we need the throw semantics regardless of whether we abort it is easier to land - // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer - // to ideal implementation - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } - } - throw createPrerenderInterruptedError(`Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`); -} -function Postpone({ reason, route }) { - const prerenderStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - const dynamicTracking = prerenderStore && prerenderStore.type === 'prerender-ppr' ? prerenderStore.dynamicTracking : null; - postponeWithTracking(route, reason, dynamicTracking); -} -function postponeWithTracking(route, expression, dynamicTracking) { - assertPostpone(); - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].unstable_postpone(createPostponeReason(route, expression)); -} -function createPostponeReason(route, expression) { - return `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` + `React throws this special object to indicate where. It should not be caught by ` + `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`; -} -function isDynamicPostpone(err) { - if (typeof err === 'object' && err !== null && typeof err.message === 'string') { - return isDynamicPostponeReason(err.message); - } - return false; -} -function isDynamicPostponeReason(reason) { - return reason.includes('needs to bail out of prerendering at this point because it used') && reason.includes('Learn more: https://nextjs.org/docs/messages/ppr-caught-error'); -} -if (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) { - throw Object.defineProperty(new Error('Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'), "__NEXT_ERROR_CODE", { - value: "E296", - enumerable: false, - configurable: true - }); -} -const NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'; -function createPrerenderInterruptedError(message) { - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = NEXT_PRERENDER_INTERRUPTED; - return error; -} -function isPrerenderInterruptedError(error) { - return typeof error === 'object' && error !== null && error.digest === NEXT_PRERENDER_INTERRUPTED && 'name' in error && 'message' in error && error instanceof Error; -} -function accessedDynamicData(dynamicAccesses) { - return dynamicAccesses.length > 0; -} -function consumeDynamicAccess(serverDynamic, clientDynamic) { - // We mutate because we only call this once we are no longer writing - // to the dynamicTrackingState and it's more efficient than creating a new - // array. - serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses); - return serverDynamic.dynamicAccesses; -} -function formatDynamicAPIAccesses(dynamicAccesses) { - return dynamicAccesses.filter((access)=>typeof access.stack === 'string' && access.stack.length > 0).map(({ expression, stack })=>{ - stack = stack.split('\n') // Remove the "Error: " prefix from the first line of the stack trace as - // well as the first 4 lines of the stack trace which is the distance - // from the user code and the `new Error().stack` call. - .slice(4).filter((line)=>{ - // Exclude Next.js internals from the stack trace. - if (line.includes('node_modules/next/')) { - return false; - } - // Exclude anonymous functions from the stack trace. - if (line.includes(' ()')) { - return false; - } - // Exclude Node.js internals from the stack trace. - if (line.includes(' (node:')) { - return false; - } - return true; - }).join('\n'); - return `Dynamic API Usage Debug - ${expression}:\n${stack}`; - }); -} -function assertPostpone() { - if (!hasPostpone) { - throw Object.defineProperty(new Error(`Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`), "__NEXT_ERROR_CODE", { - value: "E224", - enumerable: false, - configurable: true - }); - } -} -function createRenderInBrowserAbortSignal() { - const controller = new AbortController(); - controller.abort(Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["BailoutToCSRError"]('Render in Browser'), "__NEXT_ERROR_CODE", { - value: "E721", - enumerable: false, - configurable: true - })); - return controller.signal; -} -function createHangingInputAbortSignal(workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - const controller = new AbortController(); - if (workUnitStore.cacheSignal) { - // If we have a cacheSignal it means we're in a prospective render. If - // the input we're waiting on is coming from another cache, we do want - // to wait for it so that we can resolve this cache entry too. - workUnitStore.cacheSignal.inputReady().then(()=>{ - controller.abort(); - }); - } else { - // Otherwise we're in the final render and we should already have all - // our caches filled. - // If the prerender uses stages, we have wait until the runtime stage, - // at which point all runtime inputs will be resolved. - // (otherwise, a runtime prerender might consider `cookies()` hanging - // even though they'd resolve in the next task.) - // - // We might still be waiting on some microtasks so we - // wait one tick before giving up. When we give up, we still want to - // render the content of this cache as deeply as we can so that we can - // suspend as deeply as possible in the tree or not at all if we don't - // end up waiting for the input. - const runtimeStagePromise = (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["getRuntimeStagePromise"])(workUnitStore); - if (runtimeStagePromise) { - runtimeStagePromise.then(()=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(()=>controller.abort())); - } else { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["scheduleOnNextTick"])(()=>controller.abort()); - } - } - return controller.signal; - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - case 'cache': - case 'private-cache': - case 'unstable-cache': - return undefined; - default: - workUnitStore; - } -} -function annotateDynamicAccess(expression, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function useDynamicRouteParams(expression) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workStore && workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-client': - case 'prerender': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - // We are in a prerender with cacheComponents semantics. We are going to - // hang here and never resolve. This will cause the currently - // rendering component to effectively be a dynamic hole. - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].use((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, expression)); - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return postponeWithTracking(workStore.route, expression, workUnitStore.dynamicTracking); - } - break; - } - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E771", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'prerender-legacy': - case 'request': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } -} -function useDynamicSearchParams(expression) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (!workStore) { - // We assume pages router context and just return - return; - } - if (!workUnitStore) { - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwForMissingRequestStore"])(expression); - } - switch(workUnitStore.type){ - case 'prerender-client': - { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].use((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, expression)); - break; - } - case 'prerender-legacy': - case 'prerender-ppr': - { - if (workStore.forceStatic) { - return; - } - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["BailoutToCSRError"](expression), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - case 'prerender': - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E795", - enumerable: false, - configurable: true - }); - case 'cache': - case 'unstable-cache': - case 'private-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'request': - return; - default: - workUnitStore; - } -} -const hasSuspenseRegex = /\n\s+at Suspense \(\)/; -// Common implicit body tags that React will treat as body when placed directly in html -const bodyAndImplicitTags = 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'; -// Detects when RootLayoutBoundary (our framework marker component) appears -// after Suspense in the component stack, indicating the root layout is wrapped -// within a Suspense boundary. Ensures no body/html/implicit-body components are in between. -// -// Example matches: -// at Suspense () -// at __next_root_layout_boundary__ () -// -// Or with other components in between (but not body/html/implicit-body): -// at Suspense () -// at SomeComponent () -// at __next_root_layout_boundary__ () -const hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(`\\n\\s+at Suspense \\(\\)(?:(?!\\n\\s+at (?:${bodyAndImplicitTags}) \\(\\))[\\s\\S])*?\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_LAYOUT_BOUNDARY_NAME"]} \\([^\\n]*\\)`); -const hasMetadataRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["METADATA_BOUNDARY_NAME"]}[\\n\\s]`); -const hasViewportRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["VIEWPORT_BOUNDARY_NAME"]}[\\n\\s]`); -const hasOutletRegex = new RegExp(`\\n\\s+at ${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["OUTLET_BOUNDARY_NAME"]}[\\n\\s]`); -function trackAllowedDynamicAccess(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - dynamicValidation.hasDynamicMetadata = true; - return; - } else if (hasViewportRegex.test(componentStack)) { - dynamicValidation.hasDynamicViewport = true; - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data was accessed outside of ` + '. This delays the entire page from rendering, resulting in a ' + 'slow user experience. Learn more: ' + 'https://nextjs.org/docs/messages/blocking-route'; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInRuntimeShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateMetadata\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInStaticShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateMetadata\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed outside of \`\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -/** - * In dev mode, we prefer using the owner stack, otherwise the provided - * component stack is used. - */ function createErrorWithComponentOrOwnerStack(message, componentStack) { - const ownerStack = ("TURBOPACK compile-time value", "development") !== 'production' && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].captureOwnerStack ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].captureOwnerStack() : null; - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right - // - error.stack = error.name + ': ' + message + (ownerStack || componentStack); - return error; -} -var PreludeState = /*#__PURE__*/ function(PreludeState) { - PreludeState[PreludeState["Full"] = 0] = "Full"; - PreludeState[PreludeState["Empty"] = 1] = "Empty"; - PreludeState[PreludeState["Errored"] = 2] = "Errored"; - return PreludeState; -}({}); -function logDisallowedDynamicError(workStore, error) { - console.error(error); - if (!workStore.dev) { - if (workStore.hasReadableErrorStacks) { - console.error(`To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error.`); - } else { - console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following: - - Start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error. - - Rerun the production build with \`next build --debug-prerender\` to generate better stack traces.`); - } - } -} -function throwIfDisallowedDynamic(workStore, prelude, dynamicValidation, serverDynamic) { - if (serverDynamic.syncDynamicErrorWithStack) { - logDisallowedDynamicError(workStore, serverDynamic.syncDynamicErrorWithStack); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - if (prelude !== 0) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return; - } - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - for(let i = 0; i < dynamicErrors.length; i++){ - logDisallowedDynamicError(workStore, dynamicErrors[i]); - } - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - // If we got this far then the only other thing that could be blocking - // the root is dynamic Viewport. If this is dynamic then - // you need to opt into that by adding a Suspense boundary above the body - // to indicate your are ok with fully dynamic rendering. - if (dynamicValidation.hasDynamicViewport) { - console.error(`Route "${workStore.route}" has a \`generateViewport\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - console.error(`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - } else { - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.hasDynamicMetadata) { - console.error(`Route "${workStore.route}" has a \`generateMetadata\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`); - throw new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](); - } - } -} -function getStaticShellDisallowedDynamicReasons(workStore, prelude, dynamicValidation) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return []; - } - if (prelude !== 0) { - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - return dynamicErrors; - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - return [ - Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason.`), "__NEXT_ERROR_CODE", { - value: "E936", - enumerable: false, - configurable: true - }) - ]; - } - } else { - // We have a prelude but we might still have dynamic metadata without any other dynamic access - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicErrors.length === 0 && dynamicValidation.dynamicMetadata) { - return [ - dynamicValidation.dynamicMetadata - ]; - } - } - // We had a non-empty prelude and there are no dynamic holes - return []; -} -function delayUntilRuntimeStage(prerenderStore, result) { - if (prerenderStore.runtimeStagePromise) { - return prerenderStore.runtimeStagePromise.then(()=>result); - } - return result; -} //# sourceMappingURL=dynamic-rendering.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unstable-rethrow.server.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "unstable_rethrow", - ()=>unstable_rethrow -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/lib/router-utils/is-postpone.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/lazy-dynamic/bailout-to-csr.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/is-next-router-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/hooks-server-context.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -function unstable_rethrow(error) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$is$2d$next$2d$router$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isNextRouterError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$lazy$2d$dynamic$2f$bailout$2d$to$2d$csr$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isBailoutToCSRError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$hooks$2d$server$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isDynamicServerError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isDynamicPostpone"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$lib$2f$router$2d$utils$2f$is$2d$postpone$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isPostpone"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isHangingPromiseRejectionError"])(error) || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isPrerenderInterruptedError"])(error)) { - throw error; - } - if (error instanceof Error && 'cause' in error) { - unstable_rethrow(error.cause); - } -} //# sourceMappingURL=unstable-rethrow.server.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/unstable-rethrow.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * This function should be used to rethrow internal Next.js errors so that they can be handled by the framework. - * When wrapping an API that uses errors to interrupt control flow, you should use this function before you do any error handling. - * This function will rethrow the error if it is a Next.js error so it can be handled, otherwise it will do nothing. - * - * Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow) - */ __turbopack_context__.s([ - "unstable_rethrow", - ()=>unstable_rethrow -]); -const unstable_rethrow = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/client/components/unstable-rethrow.server.js [app-ssr] (ecmascript)").unstable_rethrow : "TURBOPACK unreachable"; //# sourceMappingURL=unstable-rethrow.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/navigation.react-server.js [app-ssr] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "unstable_isUnrecognizedActionError", - ()=>unstable_isUnrecognizedActionError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$readonly$2d$url$2d$search$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/readonly-url-search-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$not$2d$found$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/not-found.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$forbidden$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/forbidden.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unauthorized$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/unauthorized.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unstable$2d$rethrow$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/unstable-rethrow.js [app-ssr] (ecmascript)"); -; -function unstable_isUnrecognizedActionError() { - throw Object.defineProperty(new Error('`unstable_isUnrecognizedActionError` can only be used on the client.'), "__NEXT_ERROR_CODE", { - value: "E776", - enumerable: false, - configurable: true - }); -} -; -; -; -; -; -; -; - //# sourceMappingURL=navigation.react-server.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/navigation.js [app-ssr] (ecmascript) ", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "useParams", - ()=>useParams, - "usePathname", - ()=>usePathname, - "useRouter", - ()=>useRouter, - "useSearchParams", - ()=>useSearchParams, - "useSelectedLayoutSegment", - ()=>useSelectedLayoutSegment, - "useSelectedLayoutSegments", - ()=>useSelectedLayoutSegments -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -// Client components API -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$server$2d$inserted$2d$html$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unrecognized$2d$action$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/unrecognized-action-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2e$react$2d$server$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/navigation.react-server.js [app-ssr] (ecmascript) "); //# sourceMappingURL=navigation.js.map -; -; -; -; -const useDynamicRouteParams = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)").useDynamicRouteParams : "TURBOPACK unreachable"; -const useDynamicSearchParams = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)").useDynamicSearchParams : "TURBOPACK unreachable"; -function useSearchParams() { - useDynamicSearchParams?.('useSearchParams()'); - const searchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["SearchParamsContext"]); - // In the case where this is `null`, the compat types added in - // `next-env.d.ts` will add a new overload that changes the return type to - // include `null`. - const readonlySearchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useMemo"])(()=>{ - if (!searchParams) { - // When the router is not ready in pages, we won't have the search params - // available. - return null; - } - return new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReadonlyURLSearchParams"](searchParams); - }, [ - searchParams - ]); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (navigationPromises) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(navigationPromises.searchParams); - } - } - return readonlySearchParams; -} -function usePathname() { - useDynamicRouteParams?.('usePathname()'); - // In the case where this is `null`, the compat types added in `next-env.d.ts` - // will add a new overload that changes the return type to include `null`. - const pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PathnameContext"]); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (navigationPromises) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(navigationPromises.pathname); - } - } - return pathname; -} -; -function useRouter() { - const router = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["AppRouterContext"]); - if (router === null) { - throw Object.defineProperty(new Error('invariant expected app router to be mounted'), "__NEXT_ERROR_CODE", { - value: "E238", - enumerable: false, - configurable: true - }); - } - return router; -} -function useParams() { - useDynamicRouteParams?.('useParams()'); - const params = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PathParamsContext"]); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (navigationPromises) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(navigationPromises.params); - } - } - return params; -} -function useSelectedLayoutSegments(parallelRouteKey = 'children') { - useDynamicRouteParams?.('useSelectedLayoutSegments()'); - const context = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"]); - // @ts-expect-error This only happens in `pages`. Type is overwritten in navigation.d.ts - if (!context) return null; - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (navigationPromises) { - const promise = navigationPromises.selectedLayoutSegmentsPromises?.get(parallelRouteKey); - if (promise) { - // We should always have a promise here, but if we don't, it's not worth erroring over. - // We just won't be able to instrument it, but can still provide the value. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(promise); - } - } - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSelectedLayoutSegmentPath"])(context.parentTree, parallelRouteKey); -} -function useSelectedLayoutSegment(parallelRouteKey = 'children') { - useDynamicRouteParams?.('useSelectedLayoutSegment()'); - const navigationPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - const selectedLayoutSegments = useSelectedLayoutSegments(parallelRouteKey); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && navigationPromises && 'use' in __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"]) { - const promise = navigationPromises.selectedLayoutSegmentPromises?.get(parallelRouteKey); - if (promise) { - // We should always have a promise here, but if we don't, it's not worth erroring over. - // We just won't be able to instrument it, but can still provide the value. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(promise); - } - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["computeSelectedLayoutSegment"])(selectedLayoutSegments, parallelRouteKey); -} -; -; -; -}), -"[project]/node_modules/next/dist/esm/client/components/redirect-boundary.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RedirectBoundary", - ()=>RedirectBoundary, - "RedirectErrorBoundary", - ()=>RedirectErrorBoundary -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/navigation.js [app-ssr] (ecmascript) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-error.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -function HandleRedirect({ redirect, reset, redirectType }) { - const router = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__["useRouter"])(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useEffect"])(()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].startTransition(()=>{ - if (redirectType === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectType"].push) { - router.push(redirect, {}); - } else { - router.replace(redirect, {}); - } - reset(); - }); - }, [ - redirect, - redirectType, - reset, - router - ]); - return null; -} -class RedirectErrorBoundary extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].Component { - constructor(props){ - super(props); - this.state = { - redirect: null, - redirectType: null - }; - } - static getDerivedStateFromError(error) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isRedirectError"])(error)) { - const url = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getURLFromRedirectError"])(error); - const redirectType = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRedirectTypeFromError"])(error); - if ('handled' in error) { - // The redirect was already handled. We'll still catch the redirect error - // so that we can remount the subtree, but we don't actually need to trigger the - // router.push. - return { - redirect: null, - redirectType: null - }; - } - return { - redirect: url, - redirectType - }; - } - // Re-throw if error is not for redirect - throw error; - } - // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version. - render() { - const { redirect, redirectType } = this.state; - if (redirect !== null && redirectType !== null) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(HandleRedirect, { - redirect: redirect, - redirectType: redirectType, - reset: ()=>this.setState({ - redirect: null - }) - }); - } - return this.props.children; - } -} -function RedirectBoundary({ children }) { - const router = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__$3c$locals$3e$__["useRouter"])(); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(RedirectErrorBoundary, { - router: router, - children: children - }); -} //# sourceMappingURL=redirect-boundary.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HTTPAccessFallbackBoundary", - ()=>HTTPAccessFallbackBoundary -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -/** - * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a - * fallback component for HTTP errors. - * - * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors. - * - * e.g. 404 - * 404 represents not found, and the fallback component pair contains the component and its styles. - * - */ var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2d$untracked$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/navigation-untracked.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/http-access-fallback.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$warn$2d$once$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/warn-once.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -; -class HTTPAccessFallbackErrorBoundary extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].Component { - constructor(props){ - super(props); - this.state = { - triggeredStatus: undefined, - previousPathname: props.pathname - }; - } - componentDidCatch() { - if (("TURBOPACK compile-time value", "development") === 'development' && this.props.missingSlots && this.props.missingSlots.size > 0 && // A missing children slot is the typical not-found case, so no need to warn - !this.props.missingSlots.has('children')) { - let warningMessage = 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\n' + 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\n\n'; - const formattedSlots = Array.from(this.props.missingSlots).sort((a, b)=>a.localeCompare(b)).map((slot)=>`@${slot}`).join(', '); - warningMessage += 'Missing slots: ' + formattedSlots; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$warn$2d$once$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["warnOnce"])(warningMessage); - } - } - static getDerivedStateFromError(error) { - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isHTTPAccessFallbackError"])(error)) { - const httpStatus = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAccessFallbackHTTPStatus"])(error); - return { - triggeredStatus: httpStatus - }; - } - // Re-throw if error is not for 404 - throw error; - } - static getDerivedStateFromProps(props, state) { - /** - * Handles reset of the error boundary when a navigation happens. - * Ensures the error boundary does not stay enabled when navigating to a new page. - * Approach of setState in render is safe as it checks the previous pathname and then overrides - * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders - */ if (props.pathname !== state.previousPathname && state.triggeredStatus) { - return { - triggeredStatus: undefined, - previousPathname: props.pathname - }; - } - return { - triggeredStatus: state.triggeredStatus, - previousPathname: props.pathname - }; - } - render() { - const { notFound, forbidden, unauthorized, children } = this.props; - const { triggeredStatus } = this.state; - const errorComponents = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].NOT_FOUND]: notFound, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].FORBIDDEN]: forbidden, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].UNAUTHORIZED]: unauthorized - }; - if (triggeredStatus) { - const isNotFound = triggeredStatus === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].NOT_FOUND && notFound; - const isForbidden = triggeredStatus === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].FORBIDDEN && forbidden; - const isUnauthorized = triggeredStatus === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessErrorStatus"].UNAUTHORIZED && unauthorized; - // If there's no matched boundary in this layer, keep throwing the error by rendering the children - if (!(isNotFound || isForbidden || isUnauthorized)) { - return children; - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "robots", - content: "noindex" - }), - ("TURBOPACK compile-time value", "development") === 'development' && /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "boundary-next-error", - content: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$http$2d$access$2d$fallback$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAccessFallbackErrorTypeByStatus"])(triggeredStatus) - }), - errorComponents[triggeredStatus] - ] - }); - } - return children; - } -} -function HTTPAccessFallbackBoundary({ notFound, forbidden, unauthorized, children }) { - // When we're rendering the missing params shell, this will return null. This - // is because we won't be rendering any not found boundaries or error - // boundaries for the missing params shell. When this runs on the client - // (where these error can occur), we will get the correct pathname. - const pathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$navigation$2d$untracked$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useUntrackedPathname"])(); - const missingSlots = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["MissingSlotContext"]); - const hasErrorFallback = !!(notFound || forbidden || unauthorized); - if (hasErrorFallback) { - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(HTTPAccessFallbackErrorBoundary, { - pathname: pathname, - notFound: notFound, - forbidden: forbidden, - unauthorized: unauthorized, - missingSlots: missingSlots, - children: children - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: children - }); -} //# sourceMappingURL=error-boundary.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/create-router-cache-key.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createRouterCacheKey", - ()=>createRouterCacheKey -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -function createRouterCacheKey(segment, withoutSearchParameters = false) { - // if the segment is an array, it means it's a dynamic segment - // for example, ['lang', 'en', 'd']. We need to convert it to a string to store it as a cache node key. - if (Array.isArray(segment)) { - return `${segment[0]}|${segment[1]}|${segment[2]}`; - } - // Page segments might have search parameters, ie __PAGE__?foo=bar - // When `withoutSearchParameters` is true, we only want to return the page segment - if (withoutSearchParameters && segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - } - return segment; -} //# sourceMappingURL=create-router-cache-key.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/bfcache.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "useRouterBFCache", - ()=>useRouterBFCache -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -; -// When the flag is disabled, only track the currently active tree -const MAX_BF_CACHE_ENTRIES = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 1; -function useRouterBFCache(activeTree, activeStateKey) { - // The currently active entry. The entries form a linked list, sorted in - // order of most recently active. This allows us to reuse parts of the list - // without cloning, unless there's a reordering or removal. - // TODO: Once we start tracking back/forward history at each route level, - // we should use the history order instead. In other words, when traversing - // to an existing entry as a result of a popstate event, we should maintain - // the existing order instead of moving it to the front of the list. I think - // an initial implementation of this could be to pass an incrementing id - // to history.pushState/replaceState, then use that here for ordering. - const [prevActiveEntry, setPrevActiveEntry] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useState"])(()=>{ - const initialEntry = { - tree: activeTree, - stateKey: activeStateKey, - next: null - }; - return initialEntry; - }); - if (prevActiveEntry.tree === activeTree) { - // Fast path. The active tree hasn't changed, so we can reuse the - // existing state. - return prevActiveEntry; - } - // The route tree changed. Note that this doesn't mean that the tree changed - // *at this level* — the change may be due to a child route. Either way, we - // need to either add or update the router tree in the bfcache. - // - // The rest of the code looks more complicated than it actually is because we - // can't mutate the state in place; we have to copy-on-write. - // Create a new entry for the active cache key. This is the head of the new - // linked list. - const newActiveEntry = { - tree: activeTree, - stateKey: activeStateKey, - next: null - }; - // We need to append the old list onto the new list. If the head of the new - // list was already present in the cache, then we'll need to clone everything - // that came before it. Then we can reuse the rest. - let n = 1; - let oldEntry = prevActiveEntry; - let clonedEntry = newActiveEntry; - while(oldEntry !== null && n < MAX_BF_CACHE_ENTRIES){ - if (oldEntry.stateKey === activeStateKey) { - // Fast path. This entry in the old list that corresponds to the key that - // is now active. We've already placed a clone of this entry at the front - // of the new list. We can reuse the rest of the old list without cloning. - // NOTE: We don't need to worry about eviction in this case because we - // haven't increased the size of the cache, and we assume the max size - // is constant across renders. If we were to change it to a dynamic limit, - // then the implementation would need to account for that. - clonedEntry.next = oldEntry.next; - break; - } else { - // Clone the entry and append it to the list. - n++; - const entry = { - tree: oldEntry.tree, - stateKey: oldEntry.stateKey, - next: null - }; - clonedEntry.next = entry; - clonedEntry = entry; - } - oldEntry = oldEntry.next; - } - setPrevActiveEntry(newActiveEntry); - return newActiveEntry; -} //# sourceMappingURL=bfcache.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is a leading slash. - * If there is not a leading slash, one is added, otherwise it is noop. - */ __turbopack_context__.s([ - "ensureLeadingSlash", - ()=>ensureLeadingSlash -]); -function ensureLeadingSlash(path) { - return path.startsWith('/') ? path : `/${path}`; -} //# sourceMappingURL=ensure-leading-slash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "normalizeAppPath", - ()=>normalizeAppPath, - "normalizeRscURL", - ()=>normalizeRscURL -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$page$2d$path$2f$ensure$2d$leading$2d$slash$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/page-path/ensure-leading-slash.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -; -function normalizeAppPath(route) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$page$2d$path$2f$ensure$2d$leading$2d$slash$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ensureLeadingSlash"])(route.split('/').reduce((pathname, segment, index, segments)=>{ - // Empty segments are ignored. - if (!segment) { - return pathname; - } - // Groups are ignored. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isGroupSegment"])(segment)) { - return pathname; - } - // Parallel segments are ignored. - if (segment[0] === '@') { - return pathname; - } - // The last segment (if it's a leaf) should be ignored. - if ((segment === 'page' || segment === 'route') && index === segments.length - 1) { - return pathname; - } - return `${pathname}/${segment}`; - }, '')); -} -function normalizeRscURL(url) { - return url.replace(/\.rsc($|\?)/, '$1'); -} //# sourceMappingURL=app-paths.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "HEAD_REQUEST_KEY", - ()=>HEAD_REQUEST_KEY, - "ROOT_SEGMENT_REQUEST_KEY", - ()=>ROOT_SEGMENT_REQUEST_KEY, - "appendSegmentRequestKeyPart", - ()=>appendSegmentRequestKeyPart, - "convertSegmentPathToStaticExportFilename", - ()=>convertSegmentPathToStaticExportFilename, - "createSegmentRequestKeyPart", - ()=>createSegmentRequestKeyPart -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -const ROOT_SEGMENT_REQUEST_KEY = ''; -const HEAD_REQUEST_KEY = '/_head'; -function createSegmentRequestKeyPart(segment) { - if (typeof segment === 'string') { - if (segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - // The Flight Router State type sometimes includes the search params in - // the page segment. However, the Segment Cache tracks this as a separate - // key. So, we strip the search params here, and then add them back when - // the cache entry is turned back into a FlightRouterState. This is an - // unfortunate consequence of the FlightRouteState being used both as a - // transport type and as a cache key; we'll address this once more of the - // Segment Cache implementation has settled. - // TODO: We should hoist the search params out of the FlightRouterState - // type entirely, This is our plan for dynamic route params, too. - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - } - const safeName = // But params typically don't include the leading slash. We should use - // a different encoding to avoid this special case. - segment === '/_not-found' ? '_not-found' : encodeToFilesystemAndURLSafeString(segment); - // Since this is not a dynamic segment, it's fully encoded. It does not - // need to be "hydrated" with a param value. - return safeName; - } - const name = segment[0]; - const paramType = segment[2]; - const safeName = encodeToFilesystemAndURLSafeString(name); - const encodedName = '$' + paramType + '$' + safeName; - return encodedName; -} -function appendSegmentRequestKeyPart(parentRequestKey, parallelRouteKey, childRequestKeyPart) { - // Aside from being filesystem safe, segment keys are also designed so that - // each segment and parallel route creates its own subdirectory. Roughly in - // the same shape as the source app directory. This is mostly just for easier - // debugging (you can open up the build folder and navigate the output); if - // we wanted to do we could just use a flat structure. - // Omit the parallel route key for children, since this is the most - // common case. Saves some bytes (and it's what the app directory does). - const slotKey = parallelRouteKey === 'children' ? childRequestKeyPart : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`; - return parentRequestKey + '/' + slotKey; -} -// Define a regex pattern to match the most common characters found in a route -// param. It excludes anything that might not be cross-platform filesystem -// compatible, like |. It does not need to be precise because the fallback is to -// just base64url-encode the whole parameter, which is fine; we just don't do it -// by default for compactness, and for easier debugging. -const simpleParamValueRegex = /^[a-zA-Z0-9\-_@]+$/; -function encodeToFilesystemAndURLSafeString(value) { - if (simpleParamValueRegex.test(value)) { - return value; - } - // If there are any unsafe characters, base64url-encode the entire value. - // We also add a ! prefix so it doesn't collide with the simple case. - const base64url = btoa(value).replace(/\+/g, '-') // Replace '+' with '-' - .replace(/\//g, '_') // Replace '/' with '_' - .replace(/=+$/, '') // Remove trailing '=' - ; - return '!' + base64url; -} -function convertSegmentPathToStaticExportFilename(segmentPath) { - return `__next${segmentPath.replace(/\//g, '.')}.txt`; -} //# sourceMappingURL=segment-value-encoding.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ACTION_HEADER", - ()=>ACTION_HEADER, - "FLIGHT_HEADERS", - ()=>FLIGHT_HEADERS, - "NEXT_ACTION_NOT_FOUND_HEADER", - ()=>NEXT_ACTION_NOT_FOUND_HEADER, - "NEXT_ACTION_REVALIDATED_HEADER", - ()=>NEXT_ACTION_REVALIDATED_HEADER, - "NEXT_DID_POSTPONE_HEADER", - ()=>NEXT_DID_POSTPONE_HEADER, - "NEXT_HMR_REFRESH_HASH_COOKIE", - ()=>NEXT_HMR_REFRESH_HASH_COOKIE, - "NEXT_HMR_REFRESH_HEADER", - ()=>NEXT_HMR_REFRESH_HEADER, - "NEXT_HTML_REQUEST_ID_HEADER", - ()=>NEXT_HTML_REQUEST_ID_HEADER, - "NEXT_IS_PRERENDER_HEADER", - ()=>NEXT_IS_PRERENDER_HEADER, - "NEXT_REQUEST_ID_HEADER", - ()=>NEXT_REQUEST_ID_HEADER, - "NEXT_REWRITTEN_PATH_HEADER", - ()=>NEXT_REWRITTEN_PATH_HEADER, - "NEXT_REWRITTEN_QUERY_HEADER", - ()=>NEXT_REWRITTEN_QUERY_HEADER, - "NEXT_ROUTER_PREFETCH_HEADER", - ()=>NEXT_ROUTER_PREFETCH_HEADER, - "NEXT_ROUTER_SEGMENT_PREFETCH_HEADER", - ()=>NEXT_ROUTER_SEGMENT_PREFETCH_HEADER, - "NEXT_ROUTER_STALE_TIME_HEADER", - ()=>NEXT_ROUTER_STALE_TIME_HEADER, - "NEXT_ROUTER_STATE_TREE_HEADER", - ()=>NEXT_ROUTER_STATE_TREE_HEADER, - "NEXT_RSC_UNION_QUERY", - ()=>NEXT_RSC_UNION_QUERY, - "NEXT_URL", - ()=>NEXT_URL, - "RSC_CONTENT_TYPE_HEADER", - ()=>RSC_CONTENT_TYPE_HEADER, - "RSC_HEADER", - ()=>RSC_HEADER -]); -const RSC_HEADER = 'rsc'; -const ACTION_HEADER = 'next-action'; -const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree'; -const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch'; -const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER = 'next-router-segment-prefetch'; -const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh'; -const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__'; -const NEXT_URL = 'next-url'; -const RSC_CONTENT_TYPE_HEADER = 'text/x-component'; -const FLIGHT_HEADERS = [ - RSC_HEADER, - NEXT_ROUTER_STATE_TREE_HEADER, - NEXT_ROUTER_PREFETCH_HEADER, - NEXT_HMR_REFRESH_HEADER, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER -]; -const NEXT_RSC_UNION_QUERY = '_rsc'; -const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time'; -const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed'; -const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path'; -const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query'; -const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender'; -const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found'; -const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id'; -const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id'; -const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated'; //# sourceMappingURL=app-router-headers.js.map -}), -"[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "doesStaticSegmentAppearInURL", - ()=>doesStaticSegmentAppearInURL, - "getCacheKeyForDynamicParam", - ()=>getCacheKeyForDynamicParam, - "getParamValueFromCacheKey", - ()=>getParamValueFromCacheKey, - "getRenderedPathname", - ()=>getRenderedPathname, - "getRenderedSearch", - ()=>getRenderedSearch, - "parseDynamicParamFromURLPart", - ()=>parseDynamicParamFromURLPart, - "urlSearchParamsToParsedUrlQuery", - ()=>urlSearchParamsToParsedUrlQuery, - "urlToUrlWithoutFlightMarker", - ()=>urlToUrlWithoutFlightMarker -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)"); -; -; -; -function getRenderedSearch(response) { - // If the server performed a rewrite, the search params used to render the - // page will be different from the params in the request URL. In this case, - // the response will include a header that gives the rewritten search query. - const rewrittenQuery = response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_REWRITTEN_QUERY_HEADER"]); - if (rewrittenQuery !== null) { - return rewrittenQuery === '' ? '' : '?' + rewrittenQuery; - } - // If the header is not present, there was no rewrite, so we use the search - // query of the response URL. - return urlToUrlWithoutFlightMarker(new URL(response.url)).search; -} -function getRenderedPathname(response) { - // If the server performed a rewrite, the pathname used to render the - // page will be different from the pathname in the request URL. In this case, - // the response will include a header that gives the rewritten pathname. - const rewrittenPath = response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_REWRITTEN_PATH_HEADER"]); - return rewrittenPath ?? urlToUrlWithoutFlightMarker(new URL(response.url)).pathname; -} -function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) { - // This needs to match the behavior in get-dynamic-param.ts. - switch(paramType){ - // Catchalls - case 'c': - { - // Catchalls receive all the remaining URL parts. If there are no - // remaining pathname parts, return an empty array. - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>encodeURIComponent(s)) : []; - } - // Catchall intercepted - case 'ci(..)(..)': - case 'ci(.)': - case 'ci(..)': - case 'ci(...)': - { - const prefix = paramType.length - 2; - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s, i)=>{ - if (i === 0) { - return encodeURIComponent(s.slice(prefix)); - } - return encodeURIComponent(s); - }) : []; - } - // Optional catchalls - case 'oc': - { - // Optional catchalls receive all the remaining URL parts, unless this is - // the end of the pathname, in which case they return null. - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>encodeURIComponent(s)) : null; - } - // Dynamic - case 'd': - { - if (partIndex >= pathnameParts.length) { - // The route tree expected there to be more parts in the URL than there - // actually are. This could happen if the x-nextjs-rewritten-path header - // is incorrectly set, or potentially due to bug in Next.js. TODO: - // Should this be a hard error? During a prefetch, we can just abort. - // During a client navigation, we could trigger a hard refresh. But if - // it happens during initial render, we don't really have any - // recovery options. - return ''; - } - return encodeURIComponent(pathnameParts[partIndex]); - } - // Dynamic intercepted - case 'di(..)(..)': - case 'di(.)': - case 'di(..)': - case 'di(...)': - { - const prefix = paramType.length - 2; - if (partIndex >= pathnameParts.length) { - // The route tree expected there to be more parts in the URL than there - // actually are. This could happen if the x-nextjs-rewritten-path header - // is incorrectly set, or potentially due to bug in Next.js. TODO: - // Should this be a hard error? During a prefetch, we can just abort. - // During a client navigation, we could trigger a hard refresh. But if - // it happens during initial render, we don't really have any - // recovery options. - return ''; - } - return encodeURIComponent(pathnameParts[partIndex].slice(prefix)); - } - default: - paramType; - return ''; - } -} -function doesStaticSegmentAppearInURL(segment) { - // This is not a parameterized segment; however, we need to determine - // whether or not this segment appears in the URL. For example, this route - // groups do not appear in the URL, so they should be skipped. Any other - // special cases must be handled here. - // TODO: Consider encoding this directly into the router tree instead of - // inferring it on the client based on the segment type. Something like - // a `doesAppearInURL` flag in FlightRouterState. - if (segment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"] || // For some reason, the loader tree sometimes includes extra __PAGE__ - // "layouts" when part of a parallel route. But it's not a leaf node. - // Otherwise, we wouldn't need this special case because pages are - // always leaf nodes. - // TODO: Investigate why the loader produces these fake page segments. - segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]) || // Route groups. - segment[0] === '(' && segment.endsWith(')') || segment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"] || segment === '/_not-found') { - return false; - } else { - // All other segment types appear in the URL - return true; - } -} -function getCacheKeyForDynamicParam(paramValue, renderedSearch) { - // This needs to match the logic in get-dynamic-param.ts, until we're able to - // unify the various implementations so that these are always computed on - // the client. - if (typeof paramValue === 'string') { - // TODO: Refactor or remove this helper function to accept a string rather - // than the whole segment type. Also we can probably just append the - // search string instead of turning it into JSON. - const pageSegmentWithSearchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["addSearchParamsIfPageSegment"])(paramValue, Object.fromEntries(new URLSearchParams(renderedSearch))); - return pageSegmentWithSearchParams; - } else if (paramValue === null) { - return ''; - } else { - return paramValue.join('/'); - } -} -function urlToUrlWithoutFlightMarker(url) { - const urlWithoutFlightParameters = new URL(url); - urlWithoutFlightParameters.searchParams.delete(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return urlWithoutFlightParameters; -} -function getParamValueFromCacheKey(paramCacheKey, paramType) { - // Turn the cache key string sent by the server (as part of FlightRouterState) - // into a value that can be passed to `useParams` and client components. - const isCatchAll = paramType === 'c' || paramType === 'oc'; - if (isCatchAll) { - // Catch-all param keys are a concatenation of the path segments. - // See equivalent logic in `getSelectedParams`. - // TODO: We should just pass the array directly, rather than concatenate - // it to a string and then split it back to an array. It needs to be an - // array in some places, like when passing a key React, but we can convert - // it at runtime in those places. - return paramCacheKey.split('/'); - } - return paramCacheKey; -} -function urlSearchParamsToParsedUrlQuery(searchParams) { - // Converts a URLSearchParams object to the same type used by the server when - // creating search params props, i.e. the type returned by Node's - // "querystring" module. - const result = {}; - for (const [key, value] of searchParams.entries()){ - if (result[key] === undefined) { - result[key] = value; - } else if (Array.isArray(result[key])) { - result[key].push(value); - } else { - result[key] = [ - result[key], - value - ]; - } - } - return result; -} //# sourceMappingURL=route-params.js.map -}), -"[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-turbopack-client.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/module.compiled.js [app-ssr] (ecmascript)").vendored['react-ssr'].ReactServerDOMTurbopackClient; //# sourceMappingURL=react-server-dom-turbopack-client.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/router-reducer-types.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ACTION_HMR_REFRESH", - ()=>ACTION_HMR_REFRESH, - "ACTION_NAVIGATE", - ()=>ACTION_NAVIGATE, - "ACTION_REFRESH", - ()=>ACTION_REFRESH, - "ACTION_RESTORE", - ()=>ACTION_RESTORE, - "ACTION_SERVER_ACTION", - ()=>ACTION_SERVER_ACTION, - "ACTION_SERVER_PATCH", - ()=>ACTION_SERVER_PATCH, - "PrefetchKind", - ()=>PrefetchKind -]); -const ACTION_REFRESH = 'refresh'; -const ACTION_NAVIGATE = 'navigate'; -const ACTION_RESTORE = 'restore'; -const ACTION_SERVER_PATCH = 'server-patch'; -const ACTION_HMR_REFRESH = 'hmr-refresh'; -const ACTION_SERVER_ACTION = 'server-action'; -var PrefetchKind = /*#__PURE__*/ function(PrefetchKind) { - PrefetchKind["AUTO"] = "auto"; - PrefetchKind["FULL"] = "full"; - return PrefetchKind; -}({}); //# sourceMappingURL=router-reducer-types.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/is-thenable.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Check to see if a value is Thenable. - * - * @param promise the maybe-thenable value - * @returns true if the value is thenable - */ __turbopack_context__.s([ - "isThenable", - ()=>isThenable -]); -function isThenable(promise) { - return promise !== null && typeof promise === 'object' && 'then' in promise && typeof promise.then === 'function'; -} //# sourceMappingURL=is-thenable.js.map -}), -"[project]/node_modules/next/dist/next-devtools/dev-overlay.shim.js [app-ssr] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - dispatcher: null, - renderAppDevOverlay: null, - renderPagesDevOverlay: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - dispatcher: function() { - return dispatcher; - }, - renderAppDevOverlay: function() { - return renderAppDevOverlay; - }, - renderPagesDevOverlay: function() { - return renderPagesDevOverlay; - } -}); -function renderAppDevOverlay() { - throw Object.defineProperty(new Error("Next DevTools: Can't render in this environment. This is a bug in Next.js"), "__NEXT_ERROR_CODE", { - value: "E697", - enumerable: false, - configurable: true - }); -} -function renderPagesDevOverlay() { - throw Object.defineProperty(new Error("Next DevTools: Can't render in this environment. This is a bug in Next.js"), "__NEXT_ERROR_CODE", { - value: "E697", - enumerable: false, - configurable: true - }); -} -const dispatcher = new Proxy({}, { - get: (_, prop)=>{ - return ()=>{ - throw Object.defineProperty(new Error(`Next DevTools: Can't dispatch ${String(prop)} in this environment. This is a bug in Next.js`), "__NEXT_ERROR_CODE", { - value: "E698", - enumerable: false, - configurable: true - }); - }; - } -}); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=dev-overlay.shim.js.map -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/use-app-dev-rendering-indicator.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "useAppDevRenderingIndicator", - ()=>useAppDevRenderingIndicator -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/next-devtools/dev-overlay.shim.js [app-ssr] (ecmascript)"); -'use client'; -; -; -const useAppDevRenderingIndicator = ()=>{ - const [isPending, startTransition] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useTransition"])(); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useEffect"])(()=>{ - if (isPending) { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].renderingIndicatorShow(); - } else { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].renderingIndicatorHide(); - } - }, [ - isPending - ]); - return startTransition; -}; //# sourceMappingURL=use-app-dev-rendering-indicator.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/use-action-queue.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "dispatchAppRouterAction", - ()=>dispatchAppRouterAction, - "useActionQueue", - ()=>useActionQueue -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/is-thenable.js [app-ssr] (ecmascript)"); -; -; -// The app router state lives outside of React, so we can import the dispatch -// method directly wherever we need it, rather than passing it around via props -// or context. -let dispatch = null; -function dispatchAppRouterAction(action) { - if (dispatch === null) { - throw Object.defineProperty(new Error('Internal Next.js error: Router action dispatched before initialization.'), "__NEXT_ERROR_CODE", { - value: "E668", - enumerable: false, - configurable: true - }); - } - dispatch(action); -} -const __DEV__ = ("TURBOPACK compile-time value", "development") !== 'production'; -const promisesWithDebugInfo = ("TURBOPACK compile-time truthy", 1) ? new WeakMap() : "TURBOPACK unreachable"; -function useActionQueue(actionQueue) { - const [state, setState] = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].useState(actionQueue.state); - // Because of a known issue that requires to decode Flight streams inside the - // render phase, we have to be a bit clever and assign the dispatch method to - // a module-level variable upon initialization. The useState hook in this - // module only exists to synchronize state that lives outside of React. - // Ideally, what we'd do instead is pass the state as a prop to root.render; - // this is conceptually how we're modeling the app router state, despite the - // weird implementation details. - if ("TURBOPACK compile-time truthy", 1) { - const { useAppDevRenderingIndicator } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/next-devtools/userspace/use-app-dev-rendering-indicator.js [app-ssr] (ecmascript)"); - // eslint-disable-next-line react-hooks/rules-of-hooks - const appDevRenderingIndicator = useAppDevRenderingIndicator(); - dispatch = (action)=>{ - appDevRenderingIndicator(()=>{ - actionQueue.dispatch(action, setState); - }); - }; - } else //TURBOPACK unreachable - ; - // When navigating to a non-prefetched route, then App Router state will be - // blocked until the server responds. We need to transfer the `_debugInfo` - // from the underlying Flight response onto the top-level promise that is - // passed to React (via `use`) so that the latency is accurately represented - // in the React DevTools. - const stateWithDebugInfo = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useMemo"])(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isThenable"])(state)) { - // useMemo can't be used to cache a Promise since the memoized value is thrown - // away when we suspend. So we use a WeakMap to cache the Promise with debug info. - let promiseWithDebugInfo = promisesWithDebugInfo.get(state); - if (promiseWithDebugInfo === undefined) { - const debugInfo = []; - promiseWithDebugInfo = Promise.resolve(state).then((asyncState)=>{ - if (asyncState.debugInfo !== null) { - debugInfo.push(...asyncState.debugInfo); - } - return asyncState; - }); - promiseWithDebugInfo._debugInfo = debugInfo; - promisesWithDebugInfo.set(state, promiseWithDebugInfo); - } - return promiseWithDebugInfo; - } - return state; - }, [ - state - ]); - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$is$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isThenable"])(stateWithDebugInfo) ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(stateWithDebugInfo) : stateWithDebugInfo; -} //# sourceMappingURL=use-action-queue.js.map -}), -"[project]/node_modules/next/dist/esm/client/app-call-server.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "callServer", - ()=>callServer -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$router$2d$reducer$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/router-reducer-types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$use$2d$action$2d$queue$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/use-action-queue.js [app-ssr] (ecmascript)"); -; -; -; -async function callServer(actionId, actionArgs) { - return new Promise((resolve, reject)=>{ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startTransition"])(()=>{ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$use$2d$action$2d$queue$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatchAppRouterAction"])({ - type: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$router$2d$reducer$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ACTION_SERVER_ACTION"], - actionId, - actionArgs, - resolve, - reject - }); - }); - }); -} //# sourceMappingURL=app-call-server.js.map -}), -"[project]/node_modules/next/dist/esm/client/app-find-source-map-url.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "findSourceMapURL", - ()=>findSourceMapURL -]); -const basePath = ("TURBOPACK compile-time value", "") || ''; -const pathname = `${basePath}/__nextjs_source-map`; -const findSourceMapURL = ("TURBOPACK compile-time truthy", 1) ? function findSourceMapURL(filename) { - if (filename === '') { - return null; - } - if (filename.startsWith(document.location.origin) && filename.includes('/_next/static')) { - // This is a request for a client chunk. This can only happen when - // using Turbopack. In this case, since we control how those source - // maps are generated, we can safely assume that the sourceMappingURL - // is relative to the filename, with an added `.map` extension. The - // browser can just request this file, and it gets served through the - // normal dev server, without the need to route this through - // the `/__nextjs_source-map` dev middleware. - return `${filename}.map`; - } - const url = new URL(pathname, document.location.origin); - url.searchParams.set('filename', filename); - return url.href; -} : "TURBOPACK unreachable"; //# sourceMappingURL=app-find-source-map-url.js.map -}), -"[project]/node_modules/next/dist/esm/client/flight-data-helpers.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createInitialRSCPayloadFromFallbackPrerender", - ()=>createInitialRSCPayloadFromFallbackPrerender, - "getFlightDataPartsFromPath", - ()=>getFlightDataPartsFromPath, - "getNextFlightSegmentPath", - ()=>getNextFlightSegmentPath, - "normalizeFlightData", - ()=>normalizeFlightData, - "prepareFlightRouterStateForRequest", - ()=>prepareFlightRouterStateForRequest -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -; -; -; -function getFlightDataPartsFromPath(flightDataPath) { - // Pick the last 4 items from the `FlightDataPath` to get the [tree, seedData, viewport, isHeadPartial]. - const flightDataPathLength = 4; - // tree, seedData, and head are *always* the last three items in the `FlightDataPath`. - const [tree, seedData, head, isHeadPartial] = flightDataPath.slice(-flightDataPathLength); - // The `FlightSegmentPath` is everything except the last three items. For a root render, it won't be present. - const segmentPath = flightDataPath.slice(0, -flightDataPathLength); - return { - // TODO: Unify these two segment path helpers. We are inconsistently pushing an empty segment ("") - // to the start of the segment path in some places which makes it hard to use solely the segment path. - // Look for "// TODO-APP: remove ''" in the codebase. - pathToSegment: segmentPath.slice(0, -1), - segmentPath, - // if the `FlightDataPath` corresponds with the root, there'll be no segment path, - // in which case we default to ''. - segment: segmentPath[segmentPath.length - 1] ?? '', - tree, - seedData, - head, - isHeadPartial, - isRootRender: flightDataPath.length === flightDataPathLength - }; -} -function createInitialRSCPayloadFromFallbackPrerender(response, fallbackInitialRSCPayload) { - // This is a static fallback page. In order to hydrate the page, we need to - // parse the client params from the URL, but to account for the possibility - // that the page was rewritten, we need to check the response headers - // for x-nextjs-rewritten-path or x-nextjs-rewritten-query headers. Since - // we can't access the headers of the initial document response, the client - // performs a fetch request to the current location. Since it's possible that - // the fetch request will be dynamically rewritten to a different path than - // the initial document, this fetch request delivers _all_ the hydration data - // for the page; it was not inlined into the document, like it normally - // would be. - // - // TODO: Consider treating the case where fetch is rewritten to a different - // path from the document as a special deopt case. We should optimistically - // assume this won't happen, inline the data into the document, and perform - // a minimal request (like a HEAD or range request) to verify that the - // response matches. Tricky to get right because we need to account for - // all the different deployment environments we support, like output: - // "export" mode, where we currently don't assume that custom response - // headers are present. - // Patch the Flight data sent by the server with the correct params parsed - // from the URL + response object. - const renderedPathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedPathname"])(response); - const renderedSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(response); - const canonicalUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(new URL(location.href)); - const originalFlightDataPath = fallbackInitialRSCPayload.f[0]; - const originalFlightRouterState = originalFlightDataPath[0]; - return { - b: fallbackInitialRSCPayload.b, - c: canonicalUrl.split('/'), - q: renderedSearch, - i: fallbackInitialRSCPayload.i, - f: [ - [ - fillInFallbackFlightRouterState(originalFlightRouterState, renderedPathname, renderedSearch), - originalFlightDataPath[1], - originalFlightDataPath[2], - originalFlightDataPath[2] - ] - ], - m: fallbackInitialRSCPayload.m, - G: fallbackInitialRSCPayload.G, - S: fallbackInitialRSCPayload.S - }; -} -function fillInFallbackFlightRouterState(flightRouterState, renderedPathname, renderedSearch) { - const pathnameParts = renderedPathname.split('/').filter((p)=>p !== ''); - const index = 0; - return fillInFallbackFlightRouterStateImpl(flightRouterState, renderedSearch, pathnameParts, index); -} -function fillInFallbackFlightRouterStateImpl(flightRouterState, renderedSearch, pathnameParts, pathnamePartsIndex) { - const originalSegment = flightRouterState[0]; - let newSegment; - let doesAppearInURL; - if (typeof originalSegment === 'string') { - newSegment = originalSegment; - doesAppearInURL = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["doesStaticSegmentAppearInURL"])(originalSegment); - } else { - const paramName = originalSegment[0]; - const paramType = originalSegment[2]; - const paramValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["parseDynamicParamFromURLPart"])(paramType, pathnameParts, pathnamePartsIndex); - const cacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCacheKeyForDynamicParam"])(paramValue, renderedSearch); - newSegment = [ - paramName, - cacheKey, - paramType - ]; - doesAppearInURL = true; - } - // Only increment the index if the segment appears in the URL. If it's a - // "virtual" segment, like a route group, it remains the same. - const childPathnamePartsIndex = doesAppearInURL ? pathnamePartsIndex + 1 : pathnamePartsIndex; - const children = flightRouterState[1]; - const newChildren = {}; - for(let key in children){ - const childFlightRouterState = children[key]; - newChildren[key] = fillInFallbackFlightRouterStateImpl(childFlightRouterState, renderedSearch, pathnameParts, childPathnamePartsIndex); - } - const newState = [ - newSegment, - newChildren, - null, - flightRouterState[3], - flightRouterState[4] - ]; - return newState; -} -function getNextFlightSegmentPath(flightSegmentPath) { - // Since `FlightSegmentPath` is a repeated tuple of `Segment` and `ParallelRouteKey`, we slice off two items - // to get the next segment path. - return flightSegmentPath.slice(2); -} -function normalizeFlightData(flightData) { - // FlightData can be a string when the server didn't respond with a proper flight response, - // or when a redirect happens, to signal to the client that it needs to perform an MPA navigation. - if (typeof flightData === 'string') { - return flightData; - } - return flightData.map((flightDataPath)=>getFlightDataPartsFromPath(flightDataPath)); -} -function prepareFlightRouterStateForRequest(flightRouterState, isHmrRefresh) { - // HMR requests need the complete, unmodified state for proper functionality - if (isHmrRefresh) { - return encodeURIComponent(JSON.stringify(flightRouterState)); - } - return encodeURIComponent(JSON.stringify(stripClientOnlyDataFromFlightRouterState(flightRouterState))); -} -/** - * Recursively strips client-only data from FlightRouterState while preserving - * server-needed information for proper rendering decisions. - */ function stripClientOnlyDataFromFlightRouterState(flightRouterState) { - const [segment, parallelRoutes, _url, refreshMarker, isRootLayout, hasLoadingBoundary] = flightRouterState; - // __PAGE__ segments are always fetched from the server, so there's - // no need to send them up - const cleanedSegment = stripSearchParamsFromPageSegment(segment); - // Recursively process parallel routes - const cleanedParallelRoutes = {}; - for (const [key, childState] of Object.entries(parallelRoutes)){ - cleanedParallelRoutes[key] = stripClientOnlyDataFromFlightRouterState(childState); - } - const result = [ - cleanedSegment, - cleanedParallelRoutes, - null, - shouldPreserveRefreshMarker(refreshMarker) ? refreshMarker : null - ]; - // Append optional fields if present - if (isRootLayout !== undefined) { - result[4] = isRootLayout; - } - if (hasLoadingBoundary !== undefined) { - result[5] = hasLoadingBoundary; - } - return result; -} -/** - * Strips search parameters from __PAGE__ segments to prevent sensitive - * client-side data from being sent to the server. - */ function stripSearchParamsFromPageSegment(segment) { - if (typeof segment === 'string' && segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"] + '?')) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - } - return segment; -} -/** - * Determines whether the refresh marker should be sent to the server - * Client-only markers like 'refresh' are stripped, while server-needed markers - * like 'refetch' and 'inside-shared-layout' are preserved. - */ function shouldPreserveRefreshMarker(refreshMarker) { - return Boolean(refreshMarker && refreshMarker !== 'refresh'); -} //# sourceMappingURL=flight-data-helpers.js.map -}), -"[project]/node_modules/next/dist/esm/client/app-build-id.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "getAppBuildId", - ()=>getAppBuildId, - "setAppBuildId", - ()=>setAppBuildId -]); -// This gets assigned as a side-effect during app initialization. Because it -// represents the build used to create the JS bundle, it should never change -// after being set, so we store it in a global variable. -// -// When performing RSC requests, if the incoming data has a different build ID, -// we perform an MPA navigation/refresh to load the updated build and ensure -// that the client and server in sync. -// Starts as an empty string. In practice, because setAppBuildId is called -// during initialization before hydration starts, this will always get -// reassigned to the actual build ID before it's ever needed by a navigation. -// If for some reasons it didn't, due to a bug or race condition, then on -// navigation the build comparision would fail and trigger an MPA navigation. -let globalBuildId = ''; -function setAppBuildId(buildId) { - globalBuildId = buildId; -} -function getAppBuildId() { - return globalBuildId; -} //# sourceMappingURL=app-build-id.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/hash.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// http://www.cse.yorku.ca/~oz/hash.html -// More specifically, 32-bit hash via djbxor -// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765) -// This is due to number type differences between rust for turbopack to js number types, -// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching -// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation -// as can gaurantee determinstic output from 32bit hash. -__turbopack_context__.s([ - "djb2Hash", - ()=>djb2Hash, - "hexHash", - ()=>hexHash -]); -function djb2Hash(str) { - let hash = 5381; - for(let i = 0; i < str.length; i++){ - const char = str.charCodeAt(i); - hash = (hash << 5) + hash + char & 0xffffffff; - } - return hash >>> 0; -} -function hexHash(str) { - return djb2Hash(str).toString(36).slice(0, 5); -} //# sourceMappingURL=hash.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "computeCacheBustingSearchParam", - ()=>computeCacheBustingSearchParam -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$hash$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/hash.js [app-ssr] (ecmascript)"); -; -function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) { - if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) { - return ''; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$hash$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["hexHash"])([ - prefetchHeader || '0', - segmentPrefetchHeader || '0', - stateTreeHeader || '0', - nextUrlHeader || '0' - ].join(',')); -} //# sourceMappingURL=cache-busting-search-param.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/set-cache-busting-search-param.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "setCacheBustingSearchParam", - ()=>setCacheBustingSearchParam, - "setCacheBustingSearchParamWithHash", - ()=>setCacheBustingSearchParamWithHash -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/cache-busting-search-param.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)"); -'use client'; -; -; -const setCacheBustingSearchParam = (url, headers)=>{ - const uniqueCacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["computeCacheBustingSearchParam"])(headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]], headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_SEGMENT_PREFETCH_HEADER"]], headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STATE_TREE_HEADER"]], headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]]); - setCacheBustingSearchParamWithHash(url, uniqueCacheKey); -}; -const setCacheBustingSearchParamWithHash = (url, hash)=>{ - /** - * Note that we intentionally do not use `url.searchParams.set` here: - * - * const url = new URL('https://example.com/search?q=custom%20spacing'); - * url.searchParams.set('_rsc', 'abc123'); - * console.log(url.toString()); // Outputs: https://example.com/search?q=custom+spacing&_rsc=abc123 - * ^ <--- this is causing confusion - * This is in fact intended based on https://url.spec.whatwg.org/#interface-urlsearchparams, but - * we want to preserve the %20 as %20 if that's what the user passed in, hence the custom - * logic below. - */ const existingSearch = url.search; - const rawQuery = existingSearch.startsWith('?') ? existingSearch.slice(1) : existingSearch; - // Always remove any existing cache busting param and add a fresh one to ensure - // we have the correct value based on current request headers - const pairs = rawQuery.split('&').filter((pair)=>pair && !pair.startsWith(`${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]}=`)); - if (hash.length > 0) { - pairs.push(`${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]}=${hash}`); - } else { - pairs.push(`${__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]}`); - } - url.search = pairs.length ? `?${pairs.join('&')}` : ''; -}; //# sourceMappingURL=set-cache-busting-search-param.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/deployment-id.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// This could also be a variable instead of a function, but some unit tests want to change the ID at -// runtime. Even though that would never happen in a real deployment. -__turbopack_context__.s([ - "getDeploymentId", - ()=>getDeploymentId, - "getDeploymentIdQueryOrEmptyString", - ()=>getDeploymentIdQueryOrEmptyString -]); -function getDeploymentId() { - return "TURBOPACK compile-time value", false; -} -function getDeploymentIdQueryOrEmptyString() { - let deploymentId = getDeploymentId(); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return ''; -} //# sourceMappingURL=deployment-id.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createFetch", - ()=>createFetch, - "createFromNextReadableStream", - ()=>createFromNextReadableStream, - "fetchServerResponse", - ()=>fetchServerResponse -]); -// TODO: Explicitly import from client.browser -// eslint-disable-next-line import/no-extraneous-dependencies -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$server$2d$dom$2d$turbopack$2d$client$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-turbopack-client.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$call$2d$server$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/app-call-server.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$find$2d$source$2d$map$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/app-find-source-map-url.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/flight-data-helpers.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/app-build-id.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$set$2d$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/set-cache-busting-search-param.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$deployment$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/deployment-id.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -; -; -; -; -const createFromReadableStream = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$server$2d$dom$2d$turbopack$2d$client$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromReadableStream"]; -const createFromFetch = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$server$2d$dom$2d$turbopack$2d$client$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromFetch"]; -let createDebugChannel; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -function doMpaNavigation(url) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["urlToUrlWithoutFlightMarker"])(new URL(url, location.origin)).toString(); -} -let isPageUnloading = false; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -async function fetchServerResponse(url, options) { - const { flightRouterState, nextUrl } = options; - const headers = { - // Enable flight response - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_HEADER"]]: '1', - // Provide the current router state - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STATE_TREE_HEADER"]]: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["prepareFlightRouterStateForRequest"])(flightRouterState, options.isHmrRefresh) - }; - if (("TURBOPACK compile-time value", "development") === 'development' && options.isHmrRefresh) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_HMR_REFRESH_HEADER"]] = '1'; - } - if (nextUrl) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]] = nextUrl; - } - // In static export mode, we need to modify the URL to request the .txt file, - // but we should preserve the original URL for the canonical URL and error handling. - const originalUrl = url; - try { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Typically, during a navigation, we decode the response using Flight's - // `createFromFetch` API, which accepts a `fetch` promise. - // TODO: Remove this check once the old PPR flag is removed - const isLegacyPPR = ("TURBOPACK compile-time value", false) && !("TURBOPACK compile-time value", false); - const shouldImmediatelyDecode = !isLegacyPPR; - const res = await createFetch(url, headers, 'auto', shouldImmediatelyDecode); - const responseUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["urlToUrlWithoutFlightMarker"])(new URL(res.url)); - const canonicalUrl = res.redirected ? responseUrl : originalUrl; - const contentType = res.headers.get('content-type') || ''; - const interception = !!res.headers.get('vary')?.includes(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]); - const postponed = !!res.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"]); - const staleTimeHeaderSeconds = res.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STALE_TIME_HEADER"]); - const staleTime = staleTimeHeaderSeconds !== null ? parseInt(staleTimeHeaderSeconds, 10) * 1000 : -1; - let isFlightResponse = contentType.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // If fetch returns something different than flight response handle it like a mpa navigation - // If the fetch was not 200, we also handle it like a mpa navigation - if (!isFlightResponse || !res.ok || !res.body) { - // in case the original URL came with a hash, preserve it before redirecting to the new URL - if (url.hash) { - responseUrl.hash = url.hash; - } - return doMpaNavigation(responseUrl.toString()); - } - // We may navigate to a page that requires a different Webpack runtime. - // In prod, every page will have the same Webpack runtime. - // In dev, the Webpack runtime is minimal for each page. - // We need to ensure the Webpack runtime is updated before executing client-side JS of the new page. - // TODO: This needs to happen in the Flight Client. - // Or Webpack needs to include the runtime update in the Flight response as - // a blocking script. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - let flightResponsePromise = res.flightResponse; - if (flightResponsePromise === null) { - // Typically, `createFetch` would have already started decoding the - // Flight response. If it hasn't, though, we need to decode it now. - // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR - // without Cache Components). Remove this branch once legacy PPR - // is deleted. - const flightStream = postponed ? createUnclosingPrefetchStream(res.body) : res.body; - flightResponsePromise = createFromNextReadableStream(flightStream, headers); - } - const flightResponse = await flightResponsePromise; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])() !== flightResponse.b) { - return doMpaNavigation(res.url); - } - const normalizedFlightData = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeFlightData"])(flightResponse.f); - if (typeof normalizedFlightData === 'string') { - return doMpaNavigation(normalizedFlightData); - } - return { - flightData: normalizedFlightData, - canonicalUrl: canonicalUrl, - renderedSearch: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(res), - couldBeIntercepted: interception, - prerendered: flightResponse.S, - postponed, - staleTime, - debugInfo: flightResponsePromise._debugInfo ?? null - }; - } catch (err) { - if (!isPageUnloading) { - console.error(`Failed to fetch RSC payload for ${originalUrl}. Falling back to browser navigation.`, err); - } - // If fetch fails handle it like a mpa navigation - // TODO-APP: Add a test for the case where a CORS request fails, e.g. external url redirect coming from the response. - // See https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521 for a reproduction. - return originalUrl.toString(); - } -} -async function createFetch(url, headers, fetchPriority, shouldImmediatelyDecode, signal) { - // TODO: In output: "export" mode, the headers do nothing. Omit them (and the - // cache busting search param) from the request so they're - // maximally cacheable. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - const deploymentId = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$deployment$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getDeploymentId"])(); - if (deploymentId) { - headers['x-deployment-id'] = deploymentId; - } - if ("TURBOPACK compile-time truthy", 1) { - if (self.__next_r) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_HTML_REQUEST_ID_HEADER"]] = self.__next_r; - } - // Create a new request ID for the server action request. The server uses - // this to tag debug information sent via WebSocket to the client, which - // then routes those chunks to the debug channel associated with this ID. - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_REQUEST_ID_HEADER"]] = crypto.getRandomValues(new Uint32Array(1))[0].toString(16); - } - const fetchOptions = { - // Backwards compat for older browsers. `same-origin` is the default in modern browsers. - credentials: 'same-origin', - headers, - priority: fetchPriority || undefined, - signal - }; - // `fetchUrl` is slightly different from `url` because we add a cache-busting - // search param to it. This should not leak outside of this function, so we - // track them separately. - let fetchUrl = new URL(url); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$set$2d$cache$2d$busting$2d$search$2d$param$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setCacheBustingSearchParam"])(fetchUrl, headers); - let fetchPromise = fetch(fetchUrl, fetchOptions); - // Immediately pass the fetch promise to the Flight client so that the debug - // info includes the latency from the client to the server. The internal timer - // in React starts as soon as `createFromFetch` is called. - // - // The only case where we don't do this is during a prefetch, because we have - // to do some extra processing of the response stream (see - // `createUnclosingPrefetchStream`). But this is fine, because a top-level - // prefetch response never blocks a navigation; if it hasn't already been - // written into the cache by the time the navigation happens, the router will - // go straight to a dynamic request. - let flightResponsePromise = shouldImmediatelyDecode ? createFromNextFetch(fetchPromise, headers) : null; - let browserResponse = await fetchPromise; - // If the server responds with a redirect (e.g. 307), and the redirected - // location does not contain the cache busting search param set in the - // original request, the response is likely invalid — when following the - // redirect, the browser forwards the request headers, but since the cache - // busting search param is missing, the server will reject the request due to - // a mismatch. - // - // Ideally, we would be able to intercept the redirect response and perform it - // manually, instead of letting the browser automatically follow it, but this - // is not allowed by the fetch API. - // - // So instead, we must "replay" the redirect by fetching the new location - // again, but this time we'll append the cache busting search param to prevent - // a mismatch. - // - // TODO: We can optimize Next.js's built-in middleware APIs by returning a - // custom status code, to prevent the browser from automatically following it. - // - // This does not affect Server Action-based redirects; those are encoded - // differently, as part of the Flight body. It only affects redirects that - // occur in a middleware or a third-party proxy. - let redirected = browserResponse.redirected; - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Remove the cache busting search param from the response URL, to prevent it - // from leaking outside of this function. - const responseUrl = new URL(browserResponse.url, fetchUrl); - responseUrl.searchParams.delete(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_RSC_UNION_QUERY"]); - const rscResponse = { - url: responseUrl.href, - // This is true if any redirects occurred, either automatically by the - // browser, or manually by us. So it's different from - // `browserResponse.redirected`, which only tells us whether the browser - // followed a redirect, and only for the last response in the chain. - redirected, - // These can be copied from the last browser response we received. We - // intentionally only expose the subset of fields that are actually used - // elsewhere in the codebase. - ok: browserResponse.ok, - headers: browserResponse.headers, - body: browserResponse.body, - status: browserResponse.status, - // This is the exact promise returned by `createFromFetch`. It contains - // debug information that we need to transfer to any derived promises that - // are later rendered by React. - flightResponse: flightResponsePromise - }; - return rscResponse; -} -function createFromNextReadableStream(flightStream, requestHeaders) { - return createFromReadableStream(flightStream, { - callServer: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$call$2d$server$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["callServer"], - findSourceMapURL: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$find$2d$source$2d$map$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["findSourceMapURL"], - debugChannel: createDebugChannel && createDebugChannel(requestHeaders) - }); -} -function createFromNextFetch(promiseForResponse, requestHeaders) { - return createFromFetch(promiseForResponse, { - callServer: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$call$2d$server$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["callServer"], - findSourceMapURL: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$find$2d$source$2d$map$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["findSourceMapURL"], - debugChannel: createDebugChannel && createDebugChannel(requestHeaders) - }); -} -function createUnclosingPrefetchStream(originalFlightStream) { - // When PPR is enabled, prefetch streams may contain references that never - // resolve, because that's how we encode dynamic data access. In the decoded - // object returned by the Flight client, these are reified into hanging - // promises that suspend during render, which is effectively what we want. - // The UI resolves when it switches to the dynamic data stream - // (via useDeferredValue(dynamic, static)). - // - // However, the Flight implementation currently errors if the server closes - // the response before all the references are resolved. As a cheat to work - // around this, we wrap the original stream in a new stream that never closes, - // and therefore doesn't error. - const reader = originalFlightStream.getReader(); - return new ReadableStream({ - async pull (controller) { - while(true){ - const { done, value } = await reader.read(); - if (!done) { - // Pass to the target stream and keep consuming the Flight response - // from the server. - controller.enqueue(value); - continue; - } - // The server stream has closed. Exit, but intentionally do not close - // the target stream. - return; - } - } - }); -} //# sourceMappingURL=fetch-server-response.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/is-navigating-to-new-root-layout.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isNavigatingToNewRootLayout", - ()=>isNavigatingToNewRootLayout -]); -function isNavigatingToNewRootLayout(currentTree, nextTree) { - // Compare segments - const currentTreeSegment = currentTree[0]; - const nextTreeSegment = nextTree[0]; - // If any segment is different before we find the root layout, the root layout has changed. - // E.g. /same/(group1)/layout.js -> /same/(group2)/layout.js - // First segment is 'same' for both, keep looking. (group1) changed to (group2) before the root layout was found, it must have changed. - if (Array.isArray(currentTreeSegment) && Array.isArray(nextTreeSegment)) { - // Compare dynamic param name and type but ignore the value, different values would not affect the current root layout - // /[name] - /slug1 and /slug2, both values (slug1 & slug2) still has the same layout /[name]/layout.js - if (currentTreeSegment[0] !== nextTreeSegment[0] || currentTreeSegment[2] !== nextTreeSegment[2]) { - return true; - } - } else if (currentTreeSegment !== nextTreeSegment) { - return true; - } - // Current tree root layout found - if (currentTree[4]) { - // If the next tree doesn't have the root layout flag, it must have changed. - return !nextTree[4]; - } - // Current tree didn't have its root layout here, must have changed. - if (nextTree[4]) { - return true; - } - // We can't assume it's `parallelRoutes.children` here in case the root layout is `app/@something/layout.js` - // But it's not possible to be more than one parallelRoutes before the root layout is found - // TODO-APP: change to traverse all parallel routes - const currentTreeChild = Object.values(currentTree[1])[0]; - const nextTreeChild = Object.values(nextTree[1])[0]; - if (!currentTreeChild || !nextTreeChild) return true; - return isNavigatingToNewRootLayout(currentTreeChild, nextTreeChild); -} //# sourceMappingURL=is-navigating-to-new-root-layout.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "INTERCEPTION_ROUTE_MARKERS", - ()=>INTERCEPTION_ROUTE_MARKERS, - "extractInterceptionRouteInformation", - ()=>extractInterceptionRouteInformation, - "isInterceptionRouteAppPath", - ()=>isInterceptionRouteAppPath -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-ssr] (ecmascript)"); -; -const INTERCEPTION_ROUTE_MARKERS = [ - '(..)(..)', - '(.)', - '(..)', - '(...)' -]; -function isInterceptionRouteAppPath(path) { - // TODO-APP: add more serious validation - return path.split('/').find((segment)=>INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m))) !== undefined; -} -function extractInterceptionRouteInformation(path) { - let interceptingRoute; - let marker; - let interceptedRoute; - for (const segment of path.split('/')){ - marker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - ; - [interceptingRoute, interceptedRoute] = path.split(marker, 2); - break; - } - } - if (!interceptingRoute || !marker || !interceptedRoute) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`), "__NEXT_ERROR_CODE", { - value: "E269", - enumerable: false, - configurable: true - }); - } - interceptingRoute = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeAppPath"])(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed - ; - switch(marker){ - case '(.)': - // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route - if (interceptingRoute === '/') { - interceptedRoute = `/${interceptedRoute}`; - } else { - interceptedRoute = interceptingRoute + '/' + interceptedRoute; - } - break; - case '(..)': - // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route - if (interceptingRoute === '/') { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`), "__NEXT_ERROR_CODE", { - value: "E207", - enumerable: false, - configurable: true - }); - } - interceptedRoute = interceptingRoute.split('/').slice(0, -1).concat(interceptedRoute).join('/'); - break; - case '(...)': - // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route - interceptedRoute = '/' + interceptedRoute; - break; - case '(..)(..)': - // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route - const splitInterceptingRoute = interceptingRoute.split('/'); - if (splitInterceptingRoute.length <= 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`), "__NEXT_ERROR_CODE", { - value: "E486", - enumerable: false, - configurable: true - }); - } - interceptedRoute = splitInterceptingRoute.slice(0, -2).concat(interceptedRoute).join('/'); - break; - default: - throw Object.defineProperty(new Error('Invariant: unexpected marker'), "__NEXT_ERROR_CODE", { - value: "E112", - enumerable: false, - configurable: true - }); - } - return { - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=interception-routes.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/compute-changed-path.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "computeChangedPath", - ()=>computeChangedPath, - "extractPathFromFlightRouterState", - ()=>extractPathFromFlightRouterState, - "getSelectedParams", - ()=>getSelectedParams -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/interception-routes.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)"); -; -; -; -const removeLeadingSlash = (segment)=>{ - return segment[0] === '/' ? segment.slice(1) : segment; -}; -const segmentToPathname = (segment)=>{ - if (typeof segment === 'string') { - // 'children' is not a valid path -- it's technically a parallel route that corresponds with the current segment's page - // if we don't skip it, then the computed pathname might be something like `/children` which doesn't make sense. - if (segment === 'children') return ''; - return segment; - } - return segment[1]; -}; -function normalizeSegments(segments) { - return segments.reduce((acc, segment)=>{ - segment = removeLeadingSlash(segment); - if (segment === '' || (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isGroupSegment"])(segment)) { - return acc; - } - return `${acc}/${segment}`; - }, '') || '/'; -} -function extractPathFromFlightRouterState(flightRouterState) { - const segment = Array.isArray(flightRouterState[0]) ? flightRouterState[0][1] : flightRouterState[0]; - if (segment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"] || __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["INTERCEPTION_ROUTE_MARKERS"].some((m)=>segment.startsWith(m))) return undefined; - if (segment.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) return ''; - const segments = [ - segmentToPathname(segment) - ]; - const parallelRoutes = flightRouterState[1] ?? {}; - const childrenPath = parallelRoutes.children ? extractPathFromFlightRouterState(parallelRoutes.children) : undefined; - if (childrenPath !== undefined) { - segments.push(childrenPath); - } else { - for (const [key, value] of Object.entries(parallelRoutes)){ - if (key === 'children') continue; - const childPath = extractPathFromFlightRouterState(value); - if (childPath !== undefined) { - segments.push(childPath); - } - } - } - return normalizeSegments(segments); -} -function computeChangedPathImpl(treeA, treeB) { - const [segmentA, parallelRoutesA] = treeA; - const [segmentB, parallelRoutesB] = treeB; - const normalizedSegmentA = segmentToPathname(segmentA); - const normalizedSegmentB = segmentToPathname(segmentB); - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$interception$2d$routes$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["INTERCEPTION_ROUTE_MARKERS"].some((m)=>normalizedSegmentA.startsWith(m) || normalizedSegmentB.startsWith(m))) { - return ''; - } - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(segmentA, segmentB)) { - // once we find where the tree changed, we compute the rest of the path by traversing the tree - return extractPathFromFlightRouterState(treeB) ?? ''; - } - for(const parallelRouterKey in parallelRoutesA){ - if (parallelRoutesB[parallelRouterKey]) { - const changedPath = computeChangedPathImpl(parallelRoutesA[parallelRouterKey], parallelRoutesB[parallelRouterKey]); - if (changedPath !== null) { - return `${segmentToPathname(segmentB)}/${changedPath}`; - } - } - } - return null; -} -function computeChangedPath(treeA, treeB) { - const changedPath = computeChangedPathImpl(treeA, treeB); - if (changedPath == null || changedPath === '/') { - return changedPath; - } - // lightweight normalization to remove route groups - return normalizeSegments(changedPath.split('/')); -} -function getSelectedParams(currentTree, params = {}) { - const parallelRoutes = currentTree[1]; - for (const parallelRoute of Object.values(parallelRoutes)){ - const segment = parallelRoute[0]; - const isDynamicParameter = Array.isArray(segment); - const segmentValue = isDynamicParameter ? segment[1] : segment; - if (!segmentValue || segmentValue.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) continue; - // Ensure catchAll and optional catchall are turned into an array - const isCatchAll = isDynamicParameter && (segment[2] === 'c' || segment[2] === 'oc'); - if (isCatchAll) { - params[segment[0]] = segment[1].split('/'); - } else if (isDynamicParameter) { - params[segment[0]] = segment[1]; - } - params = getSelectedParams(parallelRoute, params); - } - return params; -} //# sourceMappingURL=compute-changed-path.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/handle-mutable.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "handleMutable", - ()=>handleMutable -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$compute$2d$changed$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/compute-changed-path.js [app-ssr] (ecmascript)"); -; -function isNotUndefined(value) { - return typeof value !== 'undefined'; -} -function handleMutable(state, mutable) { - // shouldScroll is true by default, can override to false. - const shouldScroll = mutable.shouldScroll ?? true; - let previousNextUrl = state.previousNextUrl; - let nextUrl = state.nextUrl; - if (isNotUndefined(mutable.patchedTree)) { - // If we received a patched tree, we need to compute the changed path. - const changedPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$compute$2d$changed$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["computeChangedPath"])(state.tree, mutable.patchedTree); - if (changedPath) { - // If the tree changed, we need to update the nextUrl - previousNextUrl = nextUrl; - nextUrl = changedPath; - } else if (!nextUrl) { - // if the tree ends up being the same (ie, no changed path), and we don't have a nextUrl, then we should use the canonicalUrl - nextUrl = state.canonicalUrl; - } - // otherwise this will be a no-op and continue to use the existing nextUrl - } - return { - // Set href. - canonicalUrl: mutable.canonicalUrl ?? state.canonicalUrl, - renderedSearch: mutable.renderedSearch ?? state.renderedSearch, - pushRef: { - pendingPush: isNotUndefined(mutable.pendingPush) ? mutable.pendingPush : state.pushRef.pendingPush, - mpaNavigation: isNotUndefined(mutable.mpaNavigation) ? mutable.mpaNavigation : state.pushRef.mpaNavigation, - preserveCustomHistoryState: isNotUndefined(mutable.preserveCustomHistoryState) ? mutable.preserveCustomHistoryState : state.pushRef.preserveCustomHistoryState - }, - // All navigation requires scroll and focus management to trigger. - focusAndScrollRef: { - apply: shouldScroll ? isNotUndefined(mutable?.scrollableSegments) ? true : state.focusAndScrollRef.apply : false, - onlyHashChange: mutable.onlyHashChange || false, - hashFragment: shouldScroll ? mutable.hashFragment && mutable.hashFragment !== '' ? decodeURIComponent(mutable.hashFragment.slice(1)) : state.focusAndScrollRef.hashFragment : null, - segmentPaths: shouldScroll ? mutable?.scrollableSegments ?? state.focusAndScrollRef.segmentPaths : [] - }, - // Apply cache. - cache: mutable.cache ? mutable.cache : state.cache, - // Apply patched router state. - tree: isNotUndefined(mutable.patchedTree) ? mutable.patchedTree : state.tree, - nextUrl, - previousNextUrl: previousNextUrl, - debugInfo: mutable.collectedDebugInfo ?? null - }; -} //# sourceMappingURL=handle-mutable.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/app-router-types.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * App Router types - Client-safe types for the Next.js App Router - * - * This file contains type definitions that can be safely imported - * by both client-side and server-side code without circular dependencies. - */ __turbopack_context__.s([ - "HasLoadingBoundary", - ()=>HasLoadingBoundary -]); -var HasLoadingBoundary = /*#__PURE__*/ function(HasLoadingBoundary) { - // There is a loading boundary in this particular segment - HasLoadingBoundary[HasLoadingBoundary["SegmentHasLoadingBoundary"] = 1] = "SegmentHasLoadingBoundary"; - // There is a loading boundary somewhere in the subtree (but not in - // this segment) - HasLoadingBoundary[HasLoadingBoundary["SubtreeHasLoadingBoundary"] = 2] = "SubtreeHasLoadingBoundary"; - // There is no loading boundary in this segment or any of its descendants - HasLoadingBoundary[HasLoadingBoundary["SubtreeHasNoLoadingBoundary"] = 3] = "SubtreeHasNoLoadingBoundary"; - return HasLoadingBoundary; -}({}); //# sourceMappingURL=app-router-types.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/** - * Shared types and constants for the Segment Cache. - */ __turbopack_context__.s([ - "FetchStrategy", - ()=>FetchStrategy, - "NavigationResultTag", - ()=>NavigationResultTag, - "PrefetchPriority", - ()=>PrefetchPriority -]); -var NavigationResultTag = /*#__PURE__*/ function(NavigationResultTag) { - NavigationResultTag[NavigationResultTag["MPA"] = 0] = "MPA"; - NavigationResultTag[NavigationResultTag["Success"] = 1] = "Success"; - NavigationResultTag[NavigationResultTag["NoOp"] = 2] = "NoOp"; - NavigationResultTag[NavigationResultTag["Async"] = 3] = "Async"; - return NavigationResultTag; -}({}); -var PrefetchPriority = /*#__PURE__*/ function(PrefetchPriority) { - /** - * Assigned to the most recently hovered/touched link. Special network - * bandwidth is reserved for this task only. There's only ever one Intent- - * priority task at a time; when a new Intent task is scheduled, the previous - * one is bumped down to Default. - */ PrefetchPriority[PrefetchPriority["Intent"] = 2] = "Intent"; - /** - * The default priority for prefetch tasks. - */ PrefetchPriority[PrefetchPriority["Default"] = 1] = "Default"; - /** - * Assigned to tasks when they spawn non-blocking background work, like - * revalidating a partially cached entry to see if more data is available. - */ PrefetchPriority[PrefetchPriority["Background"] = 0] = "Background"; - return PrefetchPriority; -}({}); -var FetchStrategy = /*#__PURE__*/ function(FetchStrategy) { - // Deliberately ordered so we can easily compare two segments - // and determine if one segment is "more specific" than another - // (i.e. if it's likely that it contains more data) - FetchStrategy[FetchStrategy["LoadingBoundary"] = 0] = "LoadingBoundary"; - FetchStrategy[FetchStrategy["PPR"] = 1] = "PPR"; - FetchStrategy[FetchStrategy["PPRRuntime"] = 2] = "PPRRuntime"; - FetchStrategy[FetchStrategy["Full"] = 3] = "Full"; - return FetchStrategy; -}({}); //# sourceMappingURL=types.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/lru.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "deleteFromLru", - ()=>deleteFromLru, - "lruPut", - ()=>lruPut, - "updateLruSize", - ()=>updateLruSize -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-map.js [app-ssr] (ecmascript)"); -; -// We use an LRU for memory management. We must update this whenever we add or -// remove a new cache entry, or when an entry changes size. -let head = null; -let didScheduleCleanup = false; -let lruSize = 0; -// TODO: I chose the max size somewhat arbitrarily. Consider setting this based -// on navigator.deviceMemory, or some other heuristic. We should make this -// customizable via the Next.js config, too. -const maxLruSize = 50 * 1024 * 1024 // 50 MB -; -function lruPut(node) { - if (head === node) { - // Already at the head - return; - } - const prev = node.prev; - const next = node.next; - if (next === null || prev === null) { - // This is an insertion - lruSize += node.size; - // Whenever we add an entry, we need to check if we've exceeded the - // max size. We don't evict entries immediately; they're evicted later in - // an asynchronous task. - ensureCleanupIsScheduled(); - } else { - // This is a move. Remove from its current position. - prev.next = next; - next.prev = prev; - } - // Move to the front of the list - if (head === null) { - // This is the first entry - node.prev = node; - node.next = node; - } else { - // Add to the front of the list - const tail = head.prev; - node.prev = tail; - // In practice, this is never null, but that isn't encoded in the type - if (tail !== null) { - tail.next = node; - } - node.next = head; - head.prev = node; - } - head = node; -} -function updateLruSize(node, newNodeSize) { - // This is a separate function from `put` so that we can resize the entry - // regardless of whether it's currently being tracked by the LRU. - const prevNodeSize = node.size; - node.size = newNodeSize; - if (node.next === null) { - // This entry is not currently being tracked by the LRU. - return; - } - // Update the total LRU size - lruSize = lruSize - prevNodeSize + newNodeSize; - ensureCleanupIsScheduled(); -} -function deleteFromLru(deleted) { - const next = deleted.next; - const prev = deleted.prev; - if (next !== null && prev !== null) { - lruSize -= deleted.size; - deleted.next = null; - deleted.prev = null; - // Remove from the list - if (head === deleted) { - // Update the head - if (next === head) { - // This was the last entry - head = null; - } else { - head = next; - prev.next = next; - next.prev = prev; - } - } else { - prev.next = next; - next.prev = prev; - } - } else { - // Already deleted - } -} -function ensureCleanupIsScheduled() { - if (didScheduleCleanup || lruSize <= maxLruSize) { - return; - } - didScheduleCleanup = true; - requestCleanupCallback(cleanup); -} -function cleanup() { - didScheduleCleanup = false; - // Evict entries until we're at 90% capacity. We can assume this won't - // infinite loop because even if `maxLruSize` were 0, eventually - // `deleteFromLru` sets `head` to `null` when we run out entries. - const ninetyPercentMax = maxLruSize * 0.9; - while(lruSize > ninetyPercentMax && head !== null){ - const tail = head.prev; - // In practice, this is never null, but that isn't encoded in the type - if (tail !== null) { - // Delete the entry from the map. In turn, this will remove it from - // the LRU. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["deleteMapEntry"])(tail); - } - } -} -const requestCleanupCallback = typeof requestIdleCallback === 'function' ? requestIdleCallback : (cb)=>setTimeout(cb, 0); //# sourceMappingURL=lru.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-map.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "Fallback", - ()=>Fallback, - "createCacheMap", - ()=>createCacheMap, - "deleteFromCacheMap", - ()=>deleteFromCacheMap, - "deleteMapEntry", - ()=>deleteMapEntry, - "getFromCacheMap", - ()=>getFromCacheMap, - "isValueExpired", - ()=>isValueExpired, - "setInCacheMap", - ()=>setInCacheMap, - "setSizeInCacheMap", - ()=>setSizeInCacheMap -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/lru.js [app-ssr] (ecmascript)"); -; -const Fallback = {}; -// This is a special internal key that is used for "revalidation" entries. It's -// an implementation detail that shouldn't leak outside of this module. -const Revalidation = {}; -function createCacheMap() { - const cacheMap = { - parent: null, - key: null, - value: null, - map: null, - // LRU-related fields - prev: null, - next: null, - size: 0 - }; - return cacheMap; -} -function getOrInitialize(cacheMap, keys, isRevalidation) { - // Go through each level of keys until we find the entry that matches, or - // create a new entry if one doesn't exist. - // - // This function will only return entries that match the keypath _exactly_. - // Unlike getWithFallback, it will not access fallback entries unless it's - // explicitly part of the keypath. - let entry = cacheMap; - let remainingKeys = keys; - let key = null; - while(true){ - const previousKey = key; - if (remainingKeys !== null) { - key = remainingKeys.value; - remainingKeys = remainingKeys.parent; - } else if (isRevalidation && previousKey !== Revalidation) { - // During a revalidation, we append an internal "Revalidation" key to - // the end of the keypath. The "normal" entry is its parent. - // However, if the parent entry is currently empty, we don't need to store - // this as a revalidation entry. Just insert the revalidation into the - // normal slot. - if (entry.value === null) { - return entry; - } - // Otheriwse, create a child entry. - key = Revalidation; - } else { - break; - } - let map = entry.map; - if (map !== null) { - const existingEntry = map.get(key); - if (existingEntry !== undefined) { - // Found a match. Keep going. - entry = existingEntry; - continue; - } - } else { - map = new Map(); - entry.map = map; - } - // No entry exists yet at this level. Create a new one. - const newEntry = { - parent: entry, - key, - value: null, - map: null, - // LRU-related fields - prev: null, - next: null, - size: 0 - }; - map.set(key, newEntry); - entry = newEntry; - } - return entry; -} -function getFromCacheMap(now, currentCacheVersion, rootEntry, keys, isRevalidation) { - const entry = getEntryWithFallbackImpl(now, currentCacheVersion, rootEntry, keys, isRevalidation, 0); - if (entry === null || entry.value === null) { - return null; - } - // This is an LRU access. Move the entry to the front of the list. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["lruPut"])(entry); - return entry.value; -} -function isValueExpired(now, currentCacheVersion, value) { - return value.staleAt <= now || value.version < currentCacheVersion; -} -function lazilyEvictIfNeeded(now, currentCacheVersion, entry) { - // We have a matching entry, but before we can return it, we need to check if - // it's still fresh. Otherwise it should be treated the same as a cache miss. - if (entry.value === null) { - // This entry has no value, so there's nothing to evict. - return entry; - } - const value = entry.value; - if (isValueExpired(now, currentCacheVersion, value)) { - // The value expired. Lazily evict it from the cache, and return null. This - // is conceptually the same as a cache miss. - deleteMapEntry(entry); - return null; - } - // The matched entry has not expired. Return it. - return entry; -} -function getEntryWithFallbackImpl(now, currentCacheVersion, entry, keys, isRevalidation, previousKey) { - // This is similar to getExactEntry, but if an exact match is not found for - // a key, it will return the fallback entry instead. This is recursive at - // every level, e.g. an entry with keypath [a, Fallback, c, Fallback] is - // valid match for [a, b, c, d]. - // - // It will return the most specific match available. - let key; - let remainingKeys; - if (keys !== null) { - key = keys.value; - remainingKeys = keys.parent; - } else if (isRevalidation && previousKey !== Revalidation) { - // During a revalidation, we append an internal "Revalidation" key to - // the end of the keypath. - key = Revalidation; - remainingKeys = null; - } else { - // There are no more keys. This is the terminal entry. - // TODO: When performing a lookup during a navigation, as opposed to a - // prefetch, we may want to skip entries that are Pending if there's also - // a Fulfilled fallback entry. Tricky to say, though, since if it's - // already pending, it's likely to stream in soon. Maybe we could do this - // just on slow connections and offline mode. - return lazilyEvictIfNeeded(now, currentCacheVersion, entry); - } - const map = entry.map; - if (map !== null) { - const existingEntry = map.get(key); - if (existingEntry !== undefined) { - // Found an exact match for this key. Keep searching. - const result = getEntryWithFallbackImpl(now, currentCacheVersion, existingEntry, remainingKeys, isRevalidation, key); - if (result !== null) { - return result; - } - } - // No match found for this key. Check if there's a fallback. - const fallbackEntry = map.get(Fallback); - if (fallbackEntry !== undefined) { - // Found a fallback for this key. Keep searching. - return getEntryWithFallbackImpl(now, currentCacheVersion, fallbackEntry, remainingKeys, isRevalidation, key); - } - } - return null; -} -function setInCacheMap(cacheMap, keys, value, isRevalidation) { - // Add a value to the map at the given keypath. If the value is already - // part of the map, it's removed from its previous keypath. (NOTE: This is - // unlike a regular JS map, but the behavior is intentional.) - const entry = getOrInitialize(cacheMap, keys, isRevalidation); - setMapEntryValue(entry, value); - // This is an LRU access. Move the entry to the front of the list. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["lruPut"])(entry); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["updateLruSize"])(entry, value.size); -} -function setMapEntryValue(entry, value) { - if (entry.value !== null) { - // There's already a value at the given keypath. Disconnect the old value - // from the map. We're not calling `deleteMapEntry` here because the - // entry itself is still in the map. We just want to overwrite its value. - dropRef(entry.value); - entry.value = null; - } - // This value may already be in the map at a different keypath. - // Grab a reference before we overwrite it. - const oldEntry = value.ref; - entry.value = value; - value.ref = entry; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["updateLruSize"])(entry, value.size); - if (oldEntry !== null && oldEntry !== entry && oldEntry.value === value) { - // This value is already in the map at a different keypath in the map. - // Values only exist at a single keypath at a time. Remove it from the - // previous keypath. - // - // Note that only the internal map entry is garbage collected; we don't - // call `dropRef` here because it's still in the map, just - // at a new keypath (the one we just set, above). - deleteMapEntry(oldEntry); - } -} -function deleteFromCacheMap(value) { - const entry = value.ref; - if (entry === null) { - // This value is not a member of any map. - return; - } - dropRef(value); - deleteMapEntry(entry); -} -function dropRef(value) { - // Drop the value from the map by setting its `ref` backpointer to - // null. This is a separate operation from `deleteMapEntry` because when - // re-keying a value we need to be able to delete the old, internal map - // entry without garbage collecting the value itself. - value.ref = null; -} -function deleteMapEntry(entry) { - // Delete the entry from the cache. - entry.value = null; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["deleteFromLru"])(entry); - // Check if we can garbage collect the entry. - const map = entry.map; - if (map === null) { - // Since this entry has no value, and also no child entries, we can - // garbage collect it. Remove it from its parent, and keep garbage - // collecting the parents until we reach a non-empty entry. - let parent = entry.parent; - let key = entry.key; - while(parent !== null){ - const parentMap = parent.map; - if (parentMap !== null) { - parentMap.delete(key); - if (parentMap.size === 0) { - // We just removed the last entry in the parent map. - parent.map = null; - if (parent.value === null) { - // The parent node has no child entries, nor does it have a value - // on itself. It can be garbage collected. Keep going. - key = parent.key; - parent = parent.parent; - continue; - } - } - } - break; - } - } else { - // Check if there's a revalidating entry. If so, promote it to a - // "normal" entry, since the normal one was just deleted. - const revalidatingEntry = map.get(Revalidation); - if (revalidatingEntry !== undefined && revalidatingEntry.value !== null) { - setMapEntryValue(entry, revalidatingEntry.value); - } - } -} -function setSizeInCacheMap(value, size) { - const entry = value.ref; - if (entry === null) { - // This value is not a member of any map. - return; - } - // Except during initialization (when the size is set to 0), this is the only - // place the `size` field should be updated, to ensure it's in sync with the - // the LRU. - value.size = size; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$lru$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["updateLruSize"])(entry, size); -} //# sourceMappingURL=cache-map.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/vary-path.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "appendLayoutVaryPath", - ()=>appendLayoutVaryPath, - "clonePageVaryPathWithNewSearchParams", - ()=>clonePageVaryPathWithNewSearchParams, - "finalizeLayoutVaryPath", - ()=>finalizeLayoutVaryPath, - "finalizeMetadataVaryPath", - ()=>finalizeMetadataVaryPath, - "finalizePageVaryPath", - ()=>finalizePageVaryPath, - "getFulfilledRouteVaryPath", - ()=>getFulfilledRouteVaryPath, - "getRouteVaryPath", - ()=>getRouteVaryPath, - "getSegmentVaryPathForRequest", - ()=>getSegmentVaryPathForRequest -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-map.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-ssr] (ecmascript)"); -; -; -; -function getRouteVaryPath(pathname, search, nextUrl) { - // requestKey -> searchParams -> nextUrl - const varyPath = { - value: pathname, - parent: { - value: search, - parent: { - value: nextUrl, - parent: null - } - } - }; - return varyPath; -} -function getFulfilledRouteVaryPath(pathname, search, nextUrl, couldBeIntercepted) { - // This is called when a route's data is fulfilled. The cache entry will be - // re-keyed based on which inputs the response varies by. - // requestKey -> searchParams -> nextUrl - const varyPath = { - value: pathname, - parent: { - value: search, - parent: { - value: couldBeIntercepted ? nextUrl : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fallback"], - parent: null - } - } - }; - return varyPath; -} -function appendLayoutVaryPath(parentPath, cacheKey) { - const varyPathPart = { - value: cacheKey, - parent: parentPath - }; - return varyPathPart; -} -function finalizeLayoutVaryPath(requestKey, varyPath) { - const layoutVaryPath = { - value: requestKey, - parent: varyPath - }; - return layoutVaryPath; -} -function finalizePageVaryPath(requestKey, renderedSearch, varyPath) { - // Unlike layouts, a page segment's vary path also includes the search string. - // requestKey -> searchParams -> pathParams - const pageVaryPath = { - value: requestKey, - parent: { - value: renderedSearch, - parent: varyPath - } - }; - return pageVaryPath; -} -function finalizeMetadataVaryPath(pageRequestKey, renderedSearch, varyPath) { - // The metadata "segment" is not a real segment because it doesn't exist in - // the normal structure of the route tree, but in terms of caching, it - // behaves like a page segment because it varies by all the same params as - // a page. - // - // To keep the protocol for querying the server simple, the request key for - // the metadata does not include any path information. It's unnecessary from - // the server's perspective, because unlike page segments, there's only one - // metadata response per URL, i.e. there's no need to distinguish multiple - // parallel pages. - // - // However, this means the metadata request key is insufficient for - // caching the the metadata in the client cache, because on the client we - // use the request key to distinguish the metadata entry from all other - // page's metadata entries. - // - // So instead we create a simulated request key based on the page segment. - // Conceptually this is equivalent to the request key the server would have - // assigned the metadata segment if it treated it as part of the actual - // route structure. - // If there are multiple parallel pages, we use whichever is the first one. - // This is fine because the only difference between request keys for - // different parallel pages are things like route groups and parallel - // route slots. As long as it's always the same one, it doesn't matter. - const pageVaryPath = { - // Append the actual metadata request key to the page request key. Note - // that we're not using a separate vary path part; it's unnecessary because - // these are not conceptually separate inputs. - value: pageRequestKey + __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HEAD_REQUEST_KEY"], - parent: { - value: renderedSearch, - parent: varyPath - } - }; - return pageVaryPath; -} -function getSegmentVaryPathForRequest(fetchStrategy, tree) { - // This is used for storing pending requests in the cache. We want to choose - // the most generic vary path based on the strategy used to fetch it, i.e. - // static/PPR versus runtime prefetching, so that it can be reused as much - // as possible. - // - // We may be able to re-key the response to something even more generic once - // we receive it — for example, if the server tells us that the response - // doesn't vary on a particular param — but even before we send the request, - // we know some params are reusable based on the fetch strategy alone. For - // example, a static prefetch will never vary on search params. - // - // The original vary path with all the params filled in is stored on the - // route tree object. We will clone this one to create a new vary path - // where certain params are replaced with Fallback. - // - // This result of this function is not stored anywhere. It's only used to - // access the cache a single time. - // - // TODO: Rather than create a new list object just to access the cache, the - // plan is to add the concept of a "vary mask". This will represent all the - // params that can be treated as Fallback. (Or perhaps the inverse.) - const originalVaryPath = tree.varyPath; - // Only page segments (and the special "metadata" segment, which is treated - // like a page segment for the purposes of caching) may contain search - // params. There's no reason to include them in the vary path otherwise. - if (tree.isPage) { - // Only a runtime prefetch will include search params in the vary path. - // Static prefetches never include search params, so they can be reused - // across all possible search param values. - const doesVaryOnSearchParams = fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full || fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime; - if (!doesVaryOnSearchParams) { - // The response from the the server will not vary on search params. Clone - // the end of the original vary path to replace the search params - // with Fallback. - // - // requestKey -> searchParams -> pathParams - // ^ This part gets replaced with Fallback - const searchParamsVaryPath = originalVaryPath.parent; - const pathParamsVaryPath = searchParamsVaryPath.parent; - const patchedVaryPath = { - value: originalVaryPath.value, - parent: { - value: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fallback"], - parent: pathParamsVaryPath - } - }; - return patchedVaryPath; - } - } - // The request does vary on search params. We don't need to modify anything. - return originalVaryPath; -} -function clonePageVaryPathWithNewSearchParams(originalVaryPath, newSearch) { - // requestKey -> searchParams -> pathParams - // ^ This part gets replaced with newSearch - const searchParamsVaryPath = originalVaryPath.parent; - const clonedVaryPath = { - value: originalVaryPath.value, - parent: { - value: newSearch, - parent: searchParamsVaryPath.parent - } - }; - return clonedVaryPath; -} //# sourceMappingURL=vary-path.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -// TypeScript trick to simulate opaque types, like in Flow. -__turbopack_context__.s([ - "createCacheKey", - ()=>createCacheKey -]); -function createCacheKey(originalHref, nextUrl) { - const originalUrl = new URL(originalHref); - const cacheKey = { - pathname: originalUrl.pathname, - search: originalUrl.search, - nextUrl: nextUrl - }; - return cacheKey; -} //# sourceMappingURL=cache-key.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/scheduler.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "cancelPrefetchTask", - ()=>cancelPrefetchTask, - "isPrefetchTaskDirty", - ()=>isPrefetchTaskDirty, - "pingPrefetchTask", - ()=>pingPrefetchTask, - "reschedulePrefetchTask", - ()=>reschedulePrefetchTask, - "schedulePrefetchTask", - ()=>schedulePrefetchTask, - "startRevalidationCooldown", - ()=>startRevalidationCooldown -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/app-router-types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/vary-path.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -const scheduleMicrotask = typeof queueMicrotask === 'function' ? queueMicrotask : (fn)=>Promise.resolve().then(fn).catch((error)=>setTimeout(()=>{ - throw error; - })); -const taskHeap = []; -let inProgressRequests = 0; -let sortIdCounter = 0; -let didScheduleMicrotask = false; -// The most recently hovered (or touched, etc) link, i.e. the most recent task -// scheduled at Intent priority. There's only ever a single task at Intent -// priority at a time. We reserve special network bandwidth for this task only. -let mostRecentlyHoveredLink = null; -// CDN cache propagation delay after revalidation (in milliseconds) -const REVALIDATION_COOLDOWN_MS = 300; -// Timeout handle for the revalidation cooldown. When non-null, prefetch -// requests are blocked to allow CDN cache propagation. -let revalidationCooldownTimeoutHandle = null; -function startRevalidationCooldown() { - // Clear any existing timeout in case multiple revalidations happen - // in quick succession. - if (revalidationCooldownTimeoutHandle !== null) { - clearTimeout(revalidationCooldownTimeoutHandle); - } - // Schedule the cooldown to expire after the delay. - revalidationCooldownTimeoutHandle = setTimeout(()=>{ - revalidationCooldownTimeoutHandle = null; - // Retry the prefetch queue now that the cooldown has expired. - ensureWorkIsScheduled(); - }, REVALIDATION_COOLDOWN_MS); -} -function schedulePrefetchTask(key, treeAtTimeOfPrefetch, fetchStrategy, priority, onInvalidate) { - // Spawn a new prefetch task - const task = { - key, - treeAtTimeOfPrefetch, - cacheVersion: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCurrentCacheVersion"])(), - priority, - phase: 1, - hasBackgroundWork: false, - spawnedRuntimePrefetches: null, - fetchStrategy, - sortId: sortIdCounter++, - isCanceled: false, - onInvalidate, - _heapIndex: -1 - }; - trackMostRecentlyHoveredLink(task); - heapPush(taskHeap, task); - // Schedule an async task to process the queue. - // - // The main reason we process the queue in an async task is for batching. - // It's common for a single JS task/event to trigger multiple prefetches. - // By deferring to a microtask, we only process the queue once per JS task. - // If they have different priorities, it also ensures they are processed in - // the optimal order. - ensureWorkIsScheduled(); - return task; -} -function cancelPrefetchTask(task) { - // Remove the prefetch task from the queue. If the task already completed, - // then this is a no-op. - // - // We must also explicitly mark the task as canceled so that a blocked task - // does not get added back to the queue when it's pinged by the network. - task.isCanceled = true; - heapDelete(taskHeap, task); -} -function reschedulePrefetchTask(task, treeAtTimeOfPrefetch, fetchStrategy, priority) { - // Bump the prefetch task to the top of the queue, as if it were a fresh - // task. This is essentially the same as canceling the task and scheduling - // a new one, except it reuses the original object. - // - // The primary use case is to increase the priority of a Link-initated - // prefetch on hover. - // Un-cancel the task, in case it was previously canceled. - task.isCanceled = false; - task.phase = 1; - // Assign a new sort ID to move it ahead of all other tasks at the same - // priority level. (Higher sort IDs are processed first.) - task.sortId = sortIdCounter++; - task.priority = // Intent priority, even if the rescheduled priority is lower. - task === mostRecentlyHoveredLink ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Intent : priority; - task.treeAtTimeOfPrefetch = treeAtTimeOfPrefetch; - task.fetchStrategy = fetchStrategy; - trackMostRecentlyHoveredLink(task); - if (task._heapIndex !== -1) { - // The task is already in the queue. - heapResift(taskHeap, task); - } else { - heapPush(taskHeap, task); - } - ensureWorkIsScheduled(); -} -function isPrefetchTaskDirty(task, nextUrl, tree) { - // This is used to quickly bail out of a prefetch task if the result is - // guaranteed to not have changed since the task was initiated. This is - // strictly an optimization — theoretically, if it always returned true, no - // behavior should change because a full prefetch task will effectively - // perform the same checks. - const currentCacheVersion = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCurrentCacheVersion"])(); - return task.cacheVersion !== currentCacheVersion || task.treeAtTimeOfPrefetch !== tree || task.key.nextUrl !== nextUrl; -} -function trackMostRecentlyHoveredLink(task) { - // Track the mostly recently hovered link, i.e. the most recently scheduled - // task at Intent priority. There must only be one such task at a time. - if (task.priority === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Intent && task !== mostRecentlyHoveredLink) { - if (mostRecentlyHoveredLink !== null) { - // Bump the previously hovered link's priority down to Default. - if (mostRecentlyHoveredLink.priority !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Background) { - mostRecentlyHoveredLink.priority = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Default; - heapResift(taskHeap, mostRecentlyHoveredLink); - } - } - mostRecentlyHoveredLink = task; - } -} -function ensureWorkIsScheduled() { - if (didScheduleMicrotask) { - // Already scheduled a task to process the queue - return; - } - didScheduleMicrotask = true; - scheduleMicrotask(processQueueInMicrotask); -} -/** - * Checks if we've exceeded the maximum number of concurrent prefetch requests, - * to avoid saturating the browser's internal network queue. This is a - * cooperative limit — prefetch tasks should check this before issuing - * new requests. - * - * Also checks if we're within the revalidation cooldown window, during which - * prefetch requests are delayed to allow CDN cache propagation. - */ function hasNetworkBandwidth(task) { - // Check if we're within the revalidation cooldown window - if (revalidationCooldownTimeoutHandle !== null) { - // We're within the cooldown window. Return false to prevent prefetching. - // When the cooldown expires, the timeout will call ensureWorkIsScheduled() - // to retry the queue. - return false; - } - // TODO: Also check if there's an in-progress navigation. We should never - // add prefetch requests to the network queue if an actual navigation is - // taking place, to ensure there's sufficient bandwidth for render-blocking - // data and resources. - // TODO: Consider reserving some amount of bandwidth for static prefetches. - if (task.priority === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Intent) { - // The most recently hovered link is allowed to exceed the default limit. - // - // The goal is to always have enough bandwidth to start a new prefetch - // request when hovering over a link. - // - // However, because we don't abort in-progress requests, it's still possible - // we'll run out of bandwidth. When links are hovered in quick succession, - // there could be multiple hover requests running simultaneously. - return inProgressRequests < 12; - } - // The default limit is lower than the limit for a hovered link. - return inProgressRequests < 4; -} -function spawnPrefetchSubtask(prefetchSubtask) { - // When the scheduler spawns an async task, we don't await its result. - // Instead, the async task writes its result directly into the cache, then - // pings the scheduler to continue. - // - // We process server responses streamingly, so the prefetch subtask will - // likely resolve before we're finished receiving all the data. The subtask - // result includes a promise that resolves once the network connection is - // closed. The scheduler uses this to control network bandwidth by tracking - // and limiting the number of concurrent requests. - inProgressRequests++; - return prefetchSubtask.then((result)=>{ - if (result === null) { - // The prefetch task errored before it could start processing the - // network stream. Assume the connection is closed. - onPrefetchConnectionClosed(); - return null; - } - // Wait for the connection to close before freeing up more bandwidth. - result.closed.then(onPrefetchConnectionClosed); - return result.value; - }); -} -function onPrefetchConnectionClosed() { - inProgressRequests--; - // Notify the scheduler that we have more bandwidth, and can continue - // processing tasks. - ensureWorkIsScheduled(); -} -function pingPrefetchTask(task) { - // "Ping" a prefetch that's already in progress to notify it of new data. - if (task.isCanceled || // Check if prefetch is already queued. - task._heapIndex !== -1) { - return; - } - // Add the task back to the queue. - heapPush(taskHeap, task); - ensureWorkIsScheduled(); -} -function processQueueInMicrotask() { - didScheduleMicrotask = false; - // We aim to minimize how often we read the current time. Since nearly all - // functions in the prefetch scheduler are synchronous, we can read the time - // once and pass it as an argument wherever it's needed. - const now = Date.now(); - // Process the task queue until we run out of network bandwidth. - let task = heapPeek(taskHeap); - while(task !== null && hasNetworkBandwidth(task)){ - task.cacheVersion = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCurrentCacheVersion"])(); - const exitStatus = pingRoute(now, task); - // These fields are only valid for a single attempt. Reset them after each - // iteration of the task queue. - const hasBackgroundWork = task.hasBackgroundWork; - task.hasBackgroundWork = false; - task.spawnedRuntimePrefetches = null; - switch(exitStatus){ - case 0: - // The task yielded because there are too many requests in progress. - // Stop processing tasks until we have more bandwidth. - return; - case 1: - // The task is blocked. It needs more data before it can proceed. - // Keep the task out of the queue until the server responds. - heapPop(taskHeap); - // Continue to the next task - task = heapPeek(taskHeap); - continue; - case 2: - if (task.phase === 1) { - // Finished prefetching the route tree. Proceed to prefetching - // the segments. - task.phase = 0; - heapResift(taskHeap, task); - } else if (hasBackgroundWork) { - // The task spawned additional background work. Reschedule the task - // at background priority. - task.priority = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Background; - heapResift(taskHeap, task); - } else { - // The prefetch is complete. Continue to the next task. - heapPop(taskHeap); - } - task = heapPeek(taskHeap); - continue; - default: - exitStatus; - } - } -} -/** - * Check this during a prefetch task to determine if background work can be - * performed. If so, it evaluates to `true`. Otherwise, it returns `false`, - * while also scheduling a background task to run later. Usage: - * - * @example - * if (background(task)) { - * // Perform background-pri work - * } - */ function background(task) { - if (task.priority === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Background) { - return true; - } - task.hasBackgroundWork = true; - return false; -} -function pingRoute(now, task) { - const key = task.key; - const route = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateRouteCacheEntry"])(now, task, key); - const exitStatus = pingRootRouteTree(now, task, route); - if (exitStatus !== 0 && key.search !== '') { - // If the URL has a non-empty search string, also prefetch the pathname - // without the search string. We use the searchless route tree as a base for - // optimistic routing; see requestOptimisticRouteCacheEntry for details. - // - // Note that we don't need to prefetch any of the segment data. Just the - // route tree. - // - // TODO: This is a temporary solution; the plan is to replace this by adding - // a wildcard lookup method to the TupleMap implementation. This is - // non-trivial to implement because it needs to account for things like - // fallback route entries, hence this temporary workaround. - const url = new URL(key.pathname, location.origin); - const keyWithoutSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheKey"])(url.href, key.nextUrl); - const routeWithoutSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateRouteCacheEntry"])(now, task, keyWithoutSearch); - switch(routeWithoutSearch.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - { - if (background(task)) { - routeWithoutSearch.status = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending; - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchRouteOnCacheMiss"])(routeWithoutSearch, task, keyWithoutSearch)); - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - break; - } - default: - routeWithoutSearch; - } - } - return exitStatus; -} -function pingRootRouteTree(now, task, route) { - switch(route.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - { - // Route is not yet cached, and there's no request already in progress. - // Spawn a task to request the route, load it into the cache, and ping - // the task to continue. - // TODO: There are multiple strategies in the API for prefetching - // a route. Currently we've only implemented the main one: per-segment, - // static-data only. - // - // There's also `` - // which prefetch both static *and* dynamic data. - // Similarly, we need to fallback to the old, per-page - // behavior if PPR is disabled for a route (via the incremental opt-in). - // - // Those cases will be handled here. - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchRouteOnCacheMiss"])(route, task, task.key)); - // If the request takes longer than a minute, a subsequent request should - // retry instead of waiting for this one. When the response is received, - // this value will be replaced by a new value based on the stale time sent - // from the server. - // TODO: We should probably also manually abort the fetch task, to reclaim - // server bandwidth. - route.staleAt = now + 60 * 1000; - // Upgrade to Pending so we know there's already a request in progress - route.status = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending; - // Intentional fallthrough to the Pending branch - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - // Still pending. We can't start prefetching the segments until the route - // tree has loaded. Add the task to the set of blocked tasks so that it - // is notified when the route tree is ready. - const blockedTasks = route.blockedTasks; - if (blockedTasks === null) { - route.blockedTasks = new Set([ - task - ]); - } else { - blockedTasks.add(task); - } - return 1; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - // Route tree failed to load. Treat as a 404. - return 2; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - if (task.phase !== 0) { - // Do not prefetch segment data until we've entered the segment phase. - return 2; - } - // Recursively fill in the segment tree. - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - const tree = route.tree; - // A task's fetch strategy gets set to `PPR` for any "auto" prefetch. - // If it turned out that the route isn't PPR-enabled, we need to use `LoadingBoundary` instead. - // We don't need to do this for runtime prefetches, because those are only available in - // `cacheComponents`, where every route is PPR. - const fetchStrategy = task.fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR ? route.isPPREnabled ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary : task.fetchStrategy; - switch(fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR: - { - // For Cache Components pages, each segment may be prefetched - // statically or using a runtime request, based on various - // configurations and heuristics. We'll do this in two passes: first - // traverse the tree and perform all the static prefetches. - // - // Then, if there are any segments that need a runtime request, - // do another pass to perform a runtime prefetch. - pingStaticHead(now, task, route); - const exitStatus = pingSharedPartOfCacheComponentsTree(now, task, route, task.treeAtTimeOfPrefetch, tree); - if (exitStatus === 0) { - // Child yielded without finishing. - return 0; - } - const spawnedRuntimePrefetches = task.spawnedRuntimePrefetches; - if (spawnedRuntimePrefetches !== null) { - // During the first pass, we discovered segments that require a - // runtime prefetch. Do a second pass to construct a request tree. - const spawnedEntries = new Map(); - pingRuntimeHead(now, task, route, spawnedEntries, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime); - const requestTree = pingRuntimePrefetches(now, task, route, tree, spawnedRuntimePrefetches, spawnedEntries); - let needsDynamicRequest = spawnedEntries.size > 0; - if (needsDynamicRequest) { - // Perform a dynamic prefetch request and populate the cache with - // the result. - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchSegmentPrefetchesUsingDynamicRequest"])(task, route, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime, requestTree, spawnedEntries)); - } - } - return 2; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - { - // Prefetch multiple segments using a single dynamic request. - // TODO: We can consolidate this branch with previous one by modeling - // it as if the first segment in the new tree has runtime prefetching - // enabled. Will do this as a follow-up refactor. Might want to remove - // the special metatdata case below first. In the meantime, it's not - // really that much duplication, just would be nice to remove one of - // these codepaths. - const spawnedEntries = new Map(); - pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy); - const dynamicRequestTree = diffRouteTreeAgainstCurrent(now, task, route, task.treeAtTimeOfPrefetch, tree, spawnedEntries, fetchStrategy); - let needsDynamicRequest = spawnedEntries.size > 0; - if (needsDynamicRequest) { - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchSegmentPrefetchesUsingDynamicRequest"])(task, route, fetchStrategy, dynamicRequestTree, spawnedEntries)); - } - return 2; - } - default: - fetchStrategy; - } - break; - } - default: - { - route; - } - } - return 2; -} -function pingStaticHead(now, task, route) { - // The Head data for a page (metadata, viewport) is not really a route - // segment, in the sense that it doesn't appear in the route tree. But we - // store it in the cache as if it were, using a special key. - pingStaticSegmentData(now, task, route, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR, route, route.metadata), task.key, route.metadata); -} -function pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy) { - pingRouteTreeAndIncludeDynamicData(now, task, route, route.metadata, false, spawnedEntries, // and LoadingBoundary - fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full : fetchStrategy); -} -// TODO: Rename dynamic -> runtime throughout this module -function pingSharedPartOfCacheComponentsTree(now, task, route, oldTree, newTree) { - // When Cache Components is enabled (or PPR, or a fully static route when PPR - // is disabled; those cases are treated equivalently to Cache Components), we - // start by prefetching each segment individually. Once we reach the "new" - // part of the tree — the part that doesn't exist on the current page — we - // may choose to switch to a runtime prefetch instead, based on the - // information sent by the server in the route tree. - // - // The traversal starts in the "shared" part of the tree. Once we reach the - // "new" part of the tree, we switch to a different traversal, - // pingNewPartOfCacheComponentsTree. - // Prefetch this segment's static data. - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, task.fetchStrategy, route, newTree); - pingStaticSegmentData(now, task, route, segment, task.key, newTree); - // Recursively ping the children. - const oldTreeChildren = oldTree[1]; - const newTreeChildren = newTree.slots; - if (newTreeChildren !== null) { - for(const parallelRouteKey in newTreeChildren){ - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - const newTreeChild = newTreeChildren[parallelRouteKey]; - const newTreeChildSegment = newTreeChild.segment; - const oldTreeChild = oldTreeChildren[parallelRouteKey]; - const oldTreeChildSegment = oldTreeChild?.[0]; - let childExitStatus; - if (oldTreeChildSegment !== undefined && doesCurrentSegmentMatchCachedSegment(route, newTreeChildSegment, oldTreeChildSegment)) { - // We're still in the "shared" part of the tree. - childExitStatus = pingSharedPartOfCacheComponentsTree(now, task, route, oldTreeChild, newTreeChild); - } else { - // We've entered the "new" part of the tree. Switch - // traversal functions. - childExitStatus = pingNewPartOfCacheComponentsTree(now, task, route, newTreeChild); - } - if (childExitStatus === 0) { - // Child yielded without finishing. - return 0; - } - } - } - return 2; -} -function pingNewPartOfCacheComponentsTree(now, task, route, tree) { - // We're now prefetching in the "new" part of the tree, the part that doesn't - // exist on the current page. (In other words, we're deeper than the - // shared layouts.) Segments in here default to being prefetched statically. - // However, if the server instructs us to, we may switch to a runtime - // prefetch instead. Traverse the tree and check at each segment. - if (tree.hasRuntimePrefetch) { - // This route has a runtime prefetch response. Since we're below the shared - // layout, everything from this point should be prefetched using a single, - // combined runtime request, rather than using per-segment static requests. - // This is true even if some of the child segments are known to be fully - // static — once we've decided to perform a runtime prefetch, we might as - // well respond with the static segments in the same roundtrip. (That's how - // regular navigations work, too.) We'll still skip over segments that are - // already cached, though. - // - // It's the server's responsibility to set a reasonable value of - // `hasRuntimePrefetch`. Currently it's user-defined, but eventually, the - // server may send a value of `false` even if the user opts in, if it - // determines during build that the route is always fully static. There are - // more optimizations we can do once we implement fallback param - // tracking, too. - // - // Use the task object to collect the segments that need a runtime prefetch. - // This will signal to the outer task queue that a second traversal is - // required to construct a request tree. - if (task.spawnedRuntimePrefetches === null) { - task.spawnedRuntimePrefetches = new Set([ - tree.requestKey - ]); - } else { - task.spawnedRuntimePrefetches.add(tree.requestKey); - } - // Then exit the traversal without prefetching anything further. - return 2; - } - // This segment should not be runtime prefetched. Prefetch its static data. - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, task.fetchStrategy, route, tree); - pingStaticSegmentData(now, task, route, segment, task.key, tree); - if (tree.slots !== null) { - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - // Recursively ping the children. - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - const childExitStatus = pingNewPartOfCacheComponentsTree(now, task, route, childTree); - if (childExitStatus === 0) { - // Child yielded without finishing. - return 0; - } - } - } - // This segment and all its children have finished prefetching. - return 2; -} -function diffRouteTreeAgainstCurrent(now, task, route, oldTree, newTree, spawnedEntries, fetchStrategy) { - // This is a single recursive traversal that does multiple things: - // - Finds the parts of the target route (newTree) that are not part of - // of the current page (oldTree) by diffing them, using the same algorithm - // as a real navigation. - // - Constructs a request tree (FlightRouterState) that describes which - // segments need to be prefetched and which ones are already cached. - // - Creates a set of pending cache entries for the segments that need to - // be prefetched, so that a subsequent prefetch task does not request the - // same segments again. - const oldTreeChildren = oldTree[1]; - const newTreeChildren = newTree.slots; - let requestTreeChildren = {}; - if (newTreeChildren !== null) { - for(const parallelRouteKey in newTreeChildren){ - const newTreeChild = newTreeChildren[parallelRouteKey]; - const newTreeChildSegment = newTreeChild.segment; - const oldTreeChild = oldTreeChildren[parallelRouteKey]; - const oldTreeChildSegment = oldTreeChild?.[0]; - if (oldTreeChildSegment !== undefined && doesCurrentSegmentMatchCachedSegment(route, newTreeChildSegment, oldTreeChildSegment)) { - // This segment is already part of the current route. Keep traversing. - const requestTreeChild = diffRouteTreeAgainstCurrent(now, task, route, oldTreeChild, newTreeChild, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - } else { - // This segment is not part of the current route. We're entering a - // part of the tree that we need to prefetch (unless everything is - // already cached). - switch(fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - { - // When PPR is disabled, we can't prefetch per segment. We must - // fallback to the old prefetch behavior and send a dynamic request. - // Only routes that include a loading boundary can be prefetched in - // this way. - // - // This is simlar to a "full" prefetch, but we're much more - // conservative about which segments to include in the request. - // - // The server will only render up to the first loading boundary - // inside new part of the tree. If there's no loading boundary - // anywhere in the tree, the server will never return any data, so - // we can skip the request. - const subtreeHasLoadingBoundary = newTreeChild.hasLoadingBoundary !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SubtreeHasNoLoadingBoundary; - const requestTreeChild = subtreeHasLoadingBoundary ? pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, newTreeChild, null, spawnedEntries) : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["convertRouteTreeToFlightRouterState"])(newTreeChild); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - { - // This is a runtime prefetch. Fetch all cacheable data in the tree, - // not just the static PPR shell. - const requestTreeChild = pingRouteTreeAndIncludeDynamicData(now, task, route, newTreeChild, false, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - { - // This is a "full" prefetch. Fetch all the data in the tree, both - // static and dynamic. We issue roughly the same request that we - // would during a real navigation. The goal is that once the - // navigation occurs, the router should not have to fetch any - // additional data. - // - // Although the response will include dynamic data, opting into a - // Full prefetch — via — implicitly - // instructs the cache to treat the response as "static", or non- - // dynamic, since the whole point is to cache it for - // future navigations. - // - // Construct a tree (currently a FlightRouterState) that represents - // which segments need to be prefetched and which ones are already - // cached. If the tree is empty, then we can exit. Otherwise, we'll - // send the request tree to the server and use the response to - // populate the segment cache. - const requestTreeChild = pingRouteTreeAndIncludeDynamicData(now, task, route, newTreeChild, false, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - default: - fetchStrategy; - } - } - } - } - const requestTree = [ - newTree.segment, - requestTreeChildren, - null, - null, - newTree.isRootLayout - ]; - return requestTree; -} -function pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, tree, refetchMarkerContext, spawnedEntries) { - // This function is similar to pingRouteTreeAndIncludeDynamicData, except the - // server is only going to return a minimal loading state — it will stop - // rendering at the first loading boundary. Whereas a Full prefetch is - // intentionally aggressive and tries to pretfetch all the data that will be - // needed for a navigation, a LoadingBoundary prefetch is much more - // conservative. For example, it will omit from the request tree any segment - // that is already cached, regardles of whether it's partial or full. By - // contrast, a Full prefetch will refetch partial segments. - // "inside-shared-layout" tells the server where to start looking for a - // loading boundary. - let refetchMarker = refetchMarkerContext === null ? 'inside-shared-layout' : null; - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, task.fetchStrategy, route, tree); - switch(segment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - { - // This segment is not cached. Add a refetch marker so the server knows - // to start rendering here. - // TODO: Instead of a "refetch" marker, we could just omit this subtree's - // FlightRouterState from the request tree. I think this would probably - // already work even without any updates to the server. For consistency, - // though, I'll send the full tree and we'll look into this later as part - // of a larger redesign of the request protocol. - // Add the pending cache entry to the result map. - spawnedEntries.set(tree.requestKey, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(segment, // might not include it in the pending response. If another route is able - // to issue a per-segment request, we'll do that in the background. - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary)); - if (refetchMarkerContext !== 'refetch') { - refetchMarker = refetchMarkerContext = 'refetch'; - } else { - // There's already a parent with a refetch marker, so we don't need - // to add another one. - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - // The segment is already cached. - const segmentHasLoadingBoundary = tree.hasLoadingBoundary === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SegmentHasLoadingBoundary; - if (segmentHasLoadingBoundary) { - // This segment has a loading boundary, which means the server won't - // render its children. So there's nothing left to prefetch along this - // path. We can bail out. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["convertRouteTreeToFlightRouterState"])(tree); - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - break; - } - default: - segment; - } - const requestTreeChildren = {}; - if (tree.slots !== null) { - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, childTree, refetchMarkerContext, spawnedEntries); - } - } - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - refetchMarker, - tree.isRootLayout - ]; - return requestTree; -} -function pingRouteTreeAndIncludeDynamicData(now, task, route, tree, isInsideRefetchingParent, spawnedEntries, fetchStrategy) { - // The tree we're constructing is the same shape as the tree we're navigating - // to. But even though this is a "new" tree, some of the individual segments - // may be cached as a result of other route prefetches. - // - // So we need to find the first uncached segment along each path add an - // explicit "refetch" marker so the server knows where to start rendering. - // Once the server starts rendering along a path, it keeps rendering the - // entire subtree. - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateSegmentCacheEntry"])(now, // and we have to use the former here. - // We can have a task with `FetchStrategy.PPR` where some of its segments are configured to - // always use runtime prefetching (via `export const prefetch`), and those should check for - // entries that include search params. - fetchStrategy, route, tree); - let spawnedSegment = null; - switch(segment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - { - // This segment is not cached. Include it in the request. - spawnedSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(segment, fetchStrategy); - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - // The segment is already cached. - if (segment.isPartial && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["canNewFetchStrategyProvideMoreContent"])(segment.fetchStrategy, fetchStrategy)) { - // The cached segment contains dynamic holes, and was prefetched using a less specific strategy than the current one. - // This means we're in one of these cases: - // - we have a static prefetch, and we're doing a runtime prefetch - // - we have a static or runtime prefetch, and we're doing a Full prefetch (or a navigation). - // In either case, we need to include it in the request to get a more specific (or full) version. - spawnedSegment = pingFullSegmentRevalidation(now, route, tree, fetchStrategy); - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - // There's either another prefetch currently in progress, or the previous - // attempt failed. If the new strategy can provide more content, fetch it again. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["canNewFetchStrategyProvideMoreContent"])(segment.fetchStrategy, fetchStrategy)) { - spawnedSegment = pingFullSegmentRevalidation(now, route, tree, fetchStrategy); - } - break; - } - default: - segment; - } - const requestTreeChildren = {}; - if (tree.slots !== null) { - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingRouteTreeAndIncludeDynamicData(now, task, route, childTree, isInsideRefetchingParent || spawnedSegment !== null, spawnedEntries, fetchStrategy); - } - } - if (spawnedSegment !== null) { - // Add the pending entry to the result map. - spawnedEntries.set(tree.requestKey, spawnedSegment); - } - // Don't bother to add a refetch marker if one is already present in a parent. - const refetchMarker = !isInsideRefetchingParent && spawnedSegment !== null ? 'refetch' : null; - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - refetchMarker, - tree.isRootLayout - ]; - return requestTree; -} -function pingRuntimePrefetches(now, task, route, tree, spawnedRuntimePrefetches, spawnedEntries) { - // Construct a request tree (FlightRouterState) for a runtime prefetch. If - // a segment is part of the runtime prefetch, the tree is constructed by - // diffing against what's already in the prefetch cache. Otherwise, we send - // a regular FlightRouterState with no special markers. - // - // See pingRouteTreeAndIncludeDynamicData for details. - if (spawnedRuntimePrefetches.has(tree.requestKey)) { - // This segment needs a runtime prefetch. - return pingRouteTreeAndIncludeDynamicData(now, task, route, tree, false, spawnedEntries, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime); - } - let requestTreeChildren = {}; - const slots = tree.slots; - if (slots !== null) { - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingRuntimePrefetches(now, task, route, childTree, spawnedRuntimePrefetches, spawnedEntries); - } - } - // This segment is not part of the runtime prefetch. Clone the base tree. - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - null - ]; - return requestTree; -} -function pingStaticSegmentData(now, task, route, segment, routeKey, tree) { - switch(segment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - // Upgrade to Pending so we know there's already a request in progress - spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchSegmentOnCacheMiss"])(route, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(segment, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR), routeKey, tree)); - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - // There's already a request in progress. Depending on what kind of - // request it is, we may want to revalidate it. - switch(segment.fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - // There's a pending request, but because it's using the old - // prefetching strategy, we can't be sure if it will be fulfilled by - // the response — it might be inside the loading boundary. Perform - // a revalidation, but because it's speculative, wait to do it at - // background priority. - if (background(task)) { - // TODO: Instead of speculatively revalidating, consider including - // `hasLoading` in the route tree prefetch response. - pingPPRSegmentRevalidation(now, route, routeKey, tree); - } - break; - default: - segment.fetchStrategy; - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - { - // The existing entry in the cache was rejected. Depending on how it - // was originally fetched, we may or may not want to revalidate it. - switch(segment.fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - // There's a rejected entry, but it was fetched using the loading - // boundary strategy. So the reason it wasn't returned by the server - // might just be because it was inside a loading boundary. Or because - // there was a dynamic rewrite. Revalidate it using the per- - // segment strategy. - // - // Because a rejected segment will definitely prevent the segment (and - // all of its children) from rendering, we perform this revalidation - // immediately instead of deferring it to a background task. - pingPPRSegmentRevalidation(now, route, routeKey, tree); - break; - default: - segment.fetchStrategy; - } - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - break; - default: - segment; - } -// Segments do not have dependent tasks, so once the prefetch is initiated, -// there's nothing else for us to do (except write the server data into the -// entry, which is handled by `fetchSegmentOnCacheMiss`). -} -function pingPPRSegmentRevalidation(now, route, routeKey, tree) { - const revalidatingSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateRevalidatingSegmentEntry"])(now, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR, route, tree); - switch(revalidatingSegment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - // Spawn a prefetch request and upsert the segment into the cache - // upon completion. - upsertSegmentOnCompletion(spawnPrefetchSubtask((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchSegmentOnCacheMiss"])(route, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(revalidatingSegment, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR), routeKey, tree)), (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR, tree)); - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - break; - default: - revalidatingSegment; - } -} -function pingFullSegmentRevalidation(now, route, tree, fetchStrategy) { - const revalidatingSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readOrCreateRevalidatingSegmentEntry"])(now, fetchStrategy, route, tree); - if (revalidatingSegment.status === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty) { - // During a Full/PPRRuntime prefetch, a single dynamic request is made for all the - // segments that we need. So we don't initiate a request here directly. By - // returning a pending entry from this function, it signals to the caller - // that this segment should be included in the request that's sent to - // the server. - const pendingSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(revalidatingSegment, fetchStrategy); - upsertSegmentOnCompletion((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["waitForSegmentCacheEntry"])(pendingSegment), (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree)); - return pendingSegment; - } else { - // There's already a revalidation in progress. - const nonEmptyRevalidatingSegment = revalidatingSegment; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["canNewFetchStrategyProvideMoreContent"])(nonEmptyRevalidatingSegment.fetchStrategy, fetchStrategy)) { - // The existing revalidation was fetched using a less specific strategy. - // Reset it and start a new revalidation. - const emptySegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["overwriteRevalidatingSegmentCacheEntry"])(fetchStrategy, route, tree); - const pendingSegment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upgradeToPendingSegment"])(emptySegment, fetchStrategy); - upsertSegmentOnCompletion((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["waitForSegmentCacheEntry"])(pendingSegment), (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree)); - return pendingSegment; - } - switch(nonEmptyRevalidatingSegment.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - // There's already an in-progress prefetch that includes this segment. - return null; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - // A previous revalidation attempt finished, but we chose not to replace - // the existing entry in the cache. Don't try again until or unless the - // revalidation entry expires. - return null; - default: - nonEmptyRevalidatingSegment; - return null; - } - } -} -const noop = ()=>{}; -function upsertSegmentOnCompletion(promise, varyPath) { - // Wait for a segment to finish loading, then upsert it into the cache - promise.then((fulfilled)=>{ - if (fulfilled !== null) { - // Received new data. Attempt to replace the existing entry in the cache. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["upsertSegmentEntry"])(Date.now(), varyPath, fulfilled); - } - }, noop); -} -function doesCurrentSegmentMatchCachedSegment(route, currentSegment, cachedSegment) { - if (cachedSegment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]) { - // In the FlightRouterState stored by the router, the page segment has the - // rendered search params appended to the name of the segment. In the - // prefetch cache, however, this is stored separately. So, when comparing - // the router's current FlightRouterState to the cached FlightRouterState, - // we need to make sure we compare both parts of the segment. - // TODO: This is not modeled clearly. We use the same type, - // FlightRouterState, for both the CacheNode tree _and_ the prefetch cache - // _and_ the server response format, when conceptually those are three - // different things and treated in different ways. We should encode more of - // this information into the type design so mistakes are less likely. - return currentSegment === (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["addSearchParamsIfPageSegment"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"], Object.fromEntries(new URLSearchParams(route.renderedSearch))); - } - // Non-page segments are compared using the same function as the server - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(cachedSegment, currentSegment); -} -// ----------------------------------------------------------------------------- -// The remainder of the module is a MinHeap implementation. Try not to put any -// logic below here unless it's related to the heap algorithm. We can extract -// this to a separate module if/when we need multiple kinds of heaps. -// ----------------------------------------------------------------------------- -function compareQueuePriority(a, b) { - // Since the queue is a MinHeap, this should return a positive number if b is - // higher priority than a, and a negative number if a is higher priority - // than b. - // `priority` is an integer, where higher numbers are higher priority. - const priorityDiff = b.priority - a.priority; - if (priorityDiff !== 0) { - return priorityDiff; - } - // If the priority is the same, check which phase the prefetch is in — is it - // prefetching the route tree, or the segments? Route trees are prioritized. - const phaseDiff = b.phase - a.phase; - if (phaseDiff !== 0) { - return phaseDiff; - } - // Finally, check the insertion order. `sortId` is an incrementing counter - // assigned to prefetches. We want to process the newest prefetches first. - return b.sortId - a.sortId; -} -function heapPush(heap, node) { - const index = heap.length; - heap.push(node); - node._heapIndex = index; - heapSiftUp(heap, node, index); -} -function heapPeek(heap) { - return heap.length === 0 ? null : heap[0]; -} -function heapPop(heap) { - if (heap.length === 0) { - return null; - } - const first = heap[0]; - first._heapIndex = -1; - const last = heap.pop(); - if (last !== first) { - heap[0] = last; - last._heapIndex = 0; - heapSiftDown(heap, last, 0); - } - return first; -} -function heapDelete(heap, node) { - const index = node._heapIndex; - if (index !== -1) { - node._heapIndex = -1; - if (heap.length !== 0) { - const last = heap.pop(); - if (last !== node) { - heap[index] = last; - last._heapIndex = index; - heapSiftDown(heap, last, index); - } - } - } -} -function heapResift(heap, node) { - const index = node._heapIndex; - if (index !== -1) { - if (index === 0) { - heapSiftDown(heap, node, 0); - } else { - const parentIndex = index - 1 >>> 1; - const parent = heap[parentIndex]; - if (compareQueuePriority(parent, node) > 0) { - // The parent is larger. Sift up. - heapSiftUp(heap, node, index); - } else { - // The parent is smaller (or equal). Sift down. - heapSiftDown(heap, node, index); - } - } - } -} -function heapSiftUp(heap, node, i) { - let index = i; - while(index > 0){ - const parentIndex = index - 1 >>> 1; - const parent = heap[parentIndex]; - if (compareQueuePriority(parent, node) > 0) { - // The parent is larger. Swap positions. - heap[parentIndex] = node; - node._heapIndex = parentIndex; - heap[index] = parent; - parent._heapIndex = index; - index = parentIndex; - } else { - // The parent is smaller. Exit. - return; - } - } -} -function heapSiftDown(heap, node, i) { - let index = i; - const length = heap.length; - const halfLength = length >>> 1; - while(index < halfLength){ - const leftIndex = (index + 1) * 2 - 1; - const left = heap[leftIndex]; - const rightIndex = leftIndex + 1; - const right = heap[rightIndex]; - // If the left or right node is smaller, swap with the smaller of those. - if (compareQueuePriority(left, node) < 0) { - if (rightIndex < length && compareQueuePriority(right, left) < 0) { - heap[index] = right; - right._heapIndex = index; - heap[rightIndex] = node; - node._heapIndex = rightIndex; - index = rightIndex; - } else { - heap[index] = left; - left._heapIndex = index; - heap[leftIndex] = node; - node._heapIndex = leftIndex; - index = leftIndex; - } - } else if (rightIndex < length && compareQueuePriority(right, node) < 0) { - heap[index] = right; - right._heapIndex = index; - heap[rightIndex] = node; - node._heapIndex = rightIndex; - index = rightIndex; - } else { - // Neither child is smaller. Exit. - return; - } - } -} //# sourceMappingURL=scheduler.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/links.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "IDLE_LINK_STATUS", - ()=>IDLE_LINK_STATUS, - "PENDING_LINK_STATUS", - ()=>PENDING_LINK_STATUS, - "mountFormInstance", - ()=>mountFormInstance, - "mountLinkInstance", - ()=>mountLinkInstance, - "onLinkVisibilityChanged", - ()=>onLinkVisibilityChanged, - "onNavigationIntent", - ()=>onNavigationIntent, - "pingVisibleLinks", - ()=>pingVisibleLinks, - "setLinkForCurrentNavigation", - ()=>setLinkForCurrentNavigation, - "unmountLinkForCurrentNavigation", - ()=>unmountLinkForCurrentNavigation, - "unmountPrefetchableInstance", - ()=>unmountPrefetchableInstance -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/scheduler.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -; -; -; -; -// Tracks the most recently navigated link instance. When null, indicates -// the current navigation was not initiated by a link click. -let linkForMostRecentNavigation = null; -const PENDING_LINK_STATUS = { - pending: true -}; -const IDLE_LINK_STATUS = { - pending: false -}; -function setLinkForCurrentNavigation(link) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startTransition"])(()=>{ - linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS); - link?.setOptimisticLinkStatus(PENDING_LINK_STATUS); - linkForMostRecentNavigation = link; - }); -} -function unmountLinkForCurrentNavigation(link) { - if (linkForMostRecentNavigation === link) { - linkForMostRecentNavigation = null; - } -} -// Use a WeakMap to associate a Link instance with its DOM element. This is -// used by the IntersectionObserver to track the link's visibility. -const prefetchable = typeof WeakMap === 'function' ? new WeakMap() : new Map(); -// A Set of the currently visible links. We re-prefetch visible links after a -// cache invalidation, or when the current URL changes. It's a separate data -// structure from the WeakMap above because only the visible links need to -// be enumerated. -const prefetchableAndVisible = new Set(); -// A single IntersectionObserver instance shared by all components. -const observer = typeof IntersectionObserver === 'function' ? new IntersectionObserver(handleIntersect, { - rootMargin: '200px' -}) : null; -function observeVisibility(element, instance) { - const existingInstance = prefetchable.get(element); - if (existingInstance !== undefined) { - // This shouldn't happen because each component should have its own - // anchor tag instance, but it's defensive coding to avoid a memory leak in - // case there's a logical error somewhere else. - unmountPrefetchableInstance(element); - } - // Only track prefetchable links that have a valid prefetch URL - prefetchable.set(element, instance); - if (observer !== null) { - observer.observe(element); - } -} -function coercePrefetchableUrl(href) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - return null; - } -} -function mountLinkInstance(element, href, router, fetchStrategy, prefetchEnabled, setOptimisticLinkStatus) { - if (prefetchEnabled) { - const prefetchURL = coercePrefetchableUrl(href); - if (prefetchURL !== null) { - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: prefetchURL.href, - setOptimisticLinkStatus - }; - // We only observe the link's visibility if it's prefetchable. For - // example, this excludes links to external URLs. - observeVisibility(element, instance); - return instance; - } - } - // If the link is not prefetchable, we still create an instance so we can - // track its optimistic state (i.e. useLinkStatus). - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: null, - setOptimisticLinkStatus - }; - return instance; -} -function mountFormInstance(element, href, router, fetchStrategy) { - const prefetchURL = coercePrefetchableUrl(href); - if (prefetchURL === null) { - // This href is not prefetchable, so we don't track it. - // TODO: We currently observe/unobserve a form every time its href changes. - // For Links, this isn't a big deal because the href doesn't usually change, - // but for forms it's extremely common. We should optimize this. - return; - } - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: prefetchURL.href, - setOptimisticLinkStatus: null - }; - observeVisibility(element, instance); -} -function unmountPrefetchableInstance(element) { - const instance = prefetchable.get(element); - if (instance !== undefined) { - prefetchable.delete(element); - prefetchableAndVisible.delete(instance); - const prefetchTask = instance.prefetchTask; - if (prefetchTask !== null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["cancelPrefetchTask"])(prefetchTask); - } - } - if (observer !== null) { - observer.unobserve(element); - } -} -function handleIntersect(entries) { - for (const entry of entries){ - // Some extremely old browsers or polyfills don't reliably support - // isIntersecting so we check intersectionRatio instead. (Do we care? Not - // really. But whatever this is fine.) - const isVisible = entry.intersectionRatio > 0; - onLinkVisibilityChanged(entry.target, isVisible); - } -} -function onLinkVisibilityChanged(element, isVisible) { - if ("TURBOPACK compile-time truthy", 1) { - // Prefetching on viewport is disabled in development for performance - // reasons, because it requires compiling the target page. - // TODO: Investigate re-enabling this. - return; - } - //TURBOPACK unreachable - ; - const instance = undefined; -} -function onNavigationIntent(element, unstable_upgradeToDynamicPrefetch) { - const instance = prefetchable.get(element); - if (instance === undefined) { - return; - } - // Prefetch the link on hover/touchstart. - if (instance !== undefined) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - rescheduleLinkPrefetch(instance, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Intent); - } -} -function rescheduleLinkPrefetch(instance, priority) { - // Ensures that app-router-instance is not compiled in the server bundle - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; -} -function pingVisibleLinks(nextUrl, tree) { - // For each currently visible link, cancel the existing prefetch task (if it - // exists) and schedule a new one. This is effectively the same as if all the - // visible links left and then re-entered the viewport. - // - // This is called when the Next-Url or the base tree changes, since those - // may affect the result of a prefetch task. It's also called after a - // cache invalidation. - for (const instance of prefetchableAndVisible){ - const task = instance.prefetchTask; - if (task !== null && !(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isPrefetchTaskDirty"])(task, nextUrl, tree)) { - continue; - } - // Something changed. Cancel the existing prefetch task and schedule a - // new one. - if (task !== null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["cancelPrefetchTask"])(task); - } - const cacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheKey"])(instance.prefetchHref, nextUrl); - instance.prefetchTask = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["schedulePrefetchTask"])(cacheKey, tree, instance.fetchStrategy, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PrefetchPriority"].Default, null); - } -} //# sourceMappingURL=links.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createPromiseWithResolvers", - ()=>createPromiseWithResolvers -]); -function createPromiseWithResolvers() { - // Shim of Stage 4 Promise.withResolvers proposal - let resolve; - let reject; - const promise = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - return { - resolve: resolve, - reject: reject, - promise - }; -} //# sourceMappingURL=promise-with-resolvers.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/cache.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "EntryStatus", - ()=>EntryStatus, - "canNewFetchStrategyProvideMoreContent", - ()=>canNewFetchStrategyProvideMoreContent, - "convertRouteTreeToFlightRouterState", - ()=>convertRouteTreeToFlightRouterState, - "createDetachedSegmentCacheEntry", - ()=>createDetachedSegmentCacheEntry, - "fetchRouteOnCacheMiss", - ()=>fetchRouteOnCacheMiss, - "fetchSegmentOnCacheMiss", - ()=>fetchSegmentOnCacheMiss, - "fetchSegmentPrefetchesUsingDynamicRequest", - ()=>fetchSegmentPrefetchesUsingDynamicRequest, - "getCurrentCacheVersion", - ()=>getCurrentCacheVersion, - "getStaleTimeMs", - ()=>getStaleTimeMs, - "overwriteRevalidatingSegmentCacheEntry", - ()=>overwriteRevalidatingSegmentCacheEntry, - "pingInvalidationListeners", - ()=>pingInvalidationListeners, - "readOrCreateRevalidatingSegmentEntry", - ()=>readOrCreateRevalidatingSegmentEntry, - "readOrCreateRouteCacheEntry", - ()=>readOrCreateRouteCacheEntry, - "readOrCreateSegmentCacheEntry", - ()=>readOrCreateSegmentCacheEntry, - "readRouteCacheEntry", - ()=>readRouteCacheEntry, - "readSegmentCacheEntry", - ()=>readSegmentCacheEntry, - "requestOptimisticRouteCacheEntry", - ()=>requestOptimisticRouteCacheEntry, - "revalidateEntireCache", - ()=>revalidateEntireCache, - "upgradeToPendingSegment", - ()=>upgradeToPendingSegment, - "upsertSegmentEntry", - ()=>upsertSegmentEntry, - "waitForSegmentCacheEntry", - ()=>waitForSegmentCacheEntry -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/app-router-types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/app-router-headers.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/scheduler.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/vary-path.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/app-build-id.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -// TODO: Rename this module to avoid confusion with other types of cache keys -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-map.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment-cache/segment-value-encoding.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/flight-data-helpers.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/reducers/navigate-reducer.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$links$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/links.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -function getStaleTimeMs(staleTimeSeconds) { - return Math.max(staleTimeSeconds, 30) * 1000; -} -var EntryStatus = /*#__PURE__*/ function(EntryStatus) { - EntryStatus[EntryStatus["Empty"] = 0] = "Empty"; - EntryStatus[EntryStatus["Pending"] = 1] = "Pending"; - EntryStatus[EntryStatus["Fulfilled"] = 2] = "Fulfilled"; - EntryStatus[EntryStatus["Rejected"] = 3] = "Rejected"; - return EntryStatus; -}({}); -const isOutputExportMode = ("TURBOPACK compile-time value", "development") === 'production' && ("TURBOPACK compile-time value", void 0) === 'export'; -const MetadataOnlyRequestTree = [ - '', - {}, - null, - 'metadata-only' -]; -let routeCacheMap = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheMap"])(); -let segmentCacheMap = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheMap"])(); -// All invalidation listeners for the whole cache are tracked in single set. -// Since we don't yet support tag or path-based invalidation, there's no point -// tracking them any more granularly than this. Once we add granular -// invalidation, that may change, though generally the model is to just notify -// the listeners and allow the caller to poll the prefetch cache with a new -// prefetch task if desired. -let invalidationListeners = null; -// Incrementing counter used to track cache invalidations. -let currentCacheVersion = 0; -function getCurrentCacheVersion() { - return currentCacheVersion; -} -function revalidateEntireCache(nextUrl, tree) { - // Increment the current cache version. This does not eagerly evict anything - // from the cache, but because all the entries are versioned, and we check - // the version when reading from the cache, this effectively causes all - // entries to be evicted lazily. We do it lazily because in the future, - // actions like revalidateTag or refresh will not evict the entire cache, - // but rather some subset of the entries. - currentCacheVersion++; - // Start a cooldown before re-prefetching to allow CDN cache propagation. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startRevalidationCooldown"])(); - // Prefetch all the currently visible links again, to re-fill the cache. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$links$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["pingVisibleLinks"])(nextUrl, tree); - // Similarly, notify all invalidation listeners (i.e. those passed to - // `router.prefetch(onInvalidate)`), so they can trigger a new prefetch - // if needed. - pingInvalidationListeners(nextUrl, tree); -} -function attachInvalidationListener(task) { - // This function is called whenever a prefetch task reads a cache entry. If - // the task has an onInvalidate function associated with it — i.e. the one - // optionally passed to router.prefetch(onInvalidate) — then we attach that - // listener to the every cache entry that the task reads. Then, if an entry - // is invalidated, we call the function. - if (task.onInvalidate !== null) { - if (invalidationListeners === null) { - invalidationListeners = new Set([ - task - ]); - } else { - invalidationListeners.add(task); - } - } -} -function notifyInvalidationListener(task) { - const onInvalidate = task.onInvalidate; - if (onInvalidate !== null) { - // Clear the callback from the task object to guarantee it's not called more - // than once. - task.onInvalidate = null; - // This is a user-space function, so we must wrap in try/catch. - try { - onInvalidate(); - } catch (error) { - if (typeof reportError === 'function') { - reportError(error); - } else { - console.error(error); - } - } - } -} -function pingInvalidationListeners(nextUrl, tree) { - // The rough equivalent of pingVisibleLinks, but for onInvalidate callbacks. - // This is called when the Next-Url or the base tree changes, since those - // may affect the result of a prefetch task. It's also called after a - // cache invalidation. - if (invalidationListeners !== null) { - const tasks = invalidationListeners; - invalidationListeners = null; - for (const task of tasks){ - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isPrefetchTaskDirty"])(task, nextUrl, tree)) { - notifyInvalidationListener(task); - } - } - } -} -function readRouteCacheEntry(now, key) { - const varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRouteVaryPath"])(key.pathname, key.search, key.nextUrl); - const isRevalidation = false; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getFromCacheMap"])(now, getCurrentCacheVersion(), routeCacheMap, varyPath, isRevalidation); -} -function readSegmentCacheEntry(now, varyPath) { - const isRevalidation = false; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getFromCacheMap"])(now, getCurrentCacheVersion(), segmentCacheMap, varyPath, isRevalidation); -} -function readRevalidatingSegmentCacheEntry(now, varyPath) { - const isRevalidation = true; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getFromCacheMap"])(now, getCurrentCacheVersion(), segmentCacheMap, varyPath, isRevalidation); -} -function waitForSegmentCacheEntry(pendingEntry) { - // Because the entry is pending, there's already a in-progress request. - // Attach a promise to the entry that will resolve when the server responds. - let promiseWithResolvers = pendingEntry.promise; - if (promiseWithResolvers === null) { - promiseWithResolvers = pendingEntry.promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - } else { - // There's already a promise we can use - } - return promiseWithResolvers.promise; -} -function readOrCreateRouteCacheEntry(now, task, key) { - attachInvalidationListener(task); - const existingEntry = readRouteCacheEntry(now, key); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const pendingEntry = { - canonicalUrl: null, - status: 0, - blockedTasks: null, - tree: null, - metadata: null, - // This is initialized to true because we don't know yet whether the route - // could be intercepted. It's only set to false once we receive a response - // from the server. - couldBeIntercepted: true, - // Similarly, we don't yet know if the route supports PPR. - isPPREnabled: false, - renderedSearch: null, - // Map-related fields - ref: null, - size: 0, - // Since this is an empty entry, there's no reason to ever evict it. It will - // be updated when the data is populated. - staleAt: Infinity, - version: getCurrentCacheVersion() - }; - const varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRouteVaryPath"])(key.pathname, key.search, key.nextUrl); - const isRevalidation = false; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(routeCacheMap, varyPath, pendingEntry, isRevalidation); - return pendingEntry; -} -function requestOptimisticRouteCacheEntry(now, requestedUrl, nextUrl) { - // This function is called during a navigation when there was no matching - // route tree in the prefetch cache. Before de-opting to a blocking, - // unprefetched navigation, we will first attempt to construct an "optimistic" - // route tree by checking the cache for similar routes. - // - // Check if there's a route with the same pathname, but with different - // search params. We can then base our optimistic route tree on this entry. - // - // Conceptually, we are simulating what would happen if we did perform a - // prefetch the requested URL, under the assumption that the server will - // not redirect or rewrite the request in a different manner than the - // base route tree. This assumption might not hold, in which case we'll have - // to recover when we perform the dynamic navigation request. However, this - // is what would happen if a route were dynamically rewritten/redirected - // in between the prefetch and the navigation. So the logic needs to exist - // to handle this case regardless. - // Look for a route with the same pathname, but with an empty search string. - // TODO: There's nothing inherently special about the empty search string; - // it's chosen somewhat arbitrarily, with the rationale that it's the most - // likely one to exist. But we should update this to match _any_ search - // string. The plan is to generalize this logic alongside other improvements - // related to "fallback" cache entries. - const requestedSearch = requestedUrl.search; - if (requestedSearch === '') { - // The caller would have already checked if a route with an empty search - // string is in the cache. So we can bail out here. - return null; - } - const urlWithoutSearchParams = new URL(requestedUrl); - urlWithoutSearchParams.search = ''; - const routeWithNoSearchParams = readRouteCacheEntry(now, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheKey"])(urlWithoutSearchParams.href, nextUrl)); - if (routeWithNoSearchParams === null || routeWithNoSearchParams.status !== 2) { - // Bail out of constructing an optimistic route tree. This will result in - // a blocking, unprefetched navigation. - return null; - } - // Now we have a base route tree we can "patch" with our optimistic values. - // Optimistically assume that redirects for the requested pathname do - // not vary on the search string. Therefore, if the base route was - // redirected to a different search string, then the optimistic route - // should be redirected to the same search string. Otherwise, we use - // the requested search string. - const canonicalUrlForRouteWithNoSearchParams = new URL(routeWithNoSearchParams.canonicalUrl, requestedUrl.origin); - const optimisticCanonicalSearch = canonicalUrlForRouteWithNoSearchParams.search !== '' ? canonicalUrlForRouteWithNoSearchParams.search : requestedSearch; - // Similarly, optimistically assume that rewrites for the requested - // pathname do not vary on the search string. Therefore, if the base - // route was rewritten to a different search string, then the optimistic - // route should be rewritten to the same search string. Otherwise, we use - // the requested search string. - const optimisticRenderedSearch = routeWithNoSearchParams.renderedSearch !== '' ? routeWithNoSearchParams.renderedSearch : requestedSearch; - const optimisticUrl = new URL(routeWithNoSearchParams.canonicalUrl, location.origin); - optimisticUrl.search = optimisticCanonicalSearch; - const optimisticCanonicalUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(optimisticUrl); - const optimisticRouteTree = createOptimisticRouteTree(routeWithNoSearchParams.tree, optimisticRenderedSearch); - const optimisticMetadataTree = createOptimisticRouteTree(routeWithNoSearchParams.metadata, optimisticRenderedSearch); - // Clone the base route tree, and override the relevant fields with our - // optimistic values. - const optimisticEntry = { - canonicalUrl: optimisticCanonicalUrl, - status: 2, - // This isn't cloned because it's instance-specific - blockedTasks: null, - tree: optimisticRouteTree, - metadata: optimisticMetadataTree, - couldBeIntercepted: routeWithNoSearchParams.couldBeIntercepted, - isPPREnabled: routeWithNoSearchParams.isPPREnabled, - // Override the rendered search with the optimistic value. - renderedSearch: optimisticRenderedSearch, - // Map-related fields - ref: null, - size: 0, - staleAt: routeWithNoSearchParams.staleAt, - version: routeWithNoSearchParams.version - }; - // Do not insert this entry into the cache. It only exists so we can - // perform the current navigation. Just return it to the caller. - return optimisticEntry; -} -function createOptimisticRouteTree(tree, newRenderedSearch) { - // Create a new route tree that identical to the original one except for - // the rendered search string, which is contained in the vary path. - let clonedSlots = null; - const originalSlots = tree.slots; - if (originalSlots !== null) { - clonedSlots = {}; - for(const parallelRouteKey in originalSlots){ - const childTree = originalSlots[parallelRouteKey]; - clonedSlots[parallelRouteKey] = createOptimisticRouteTree(childTree, newRenderedSearch); - } - } - // We only need to clone the vary path if the route is a page. - if (tree.isPage) { - return { - requestKey: tree.requestKey, - segment: tree.segment, - varyPath: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["clonePageVaryPathWithNewSearchParams"])(tree.varyPath, newRenderedSearch), - isPage: true, - slots: clonedSlots, - isRootLayout: tree.isRootLayout, - hasLoadingBoundary: tree.hasLoadingBoundary, - hasRuntimePrefetch: tree.hasRuntimePrefetch - }; - } - return { - requestKey: tree.requestKey, - segment: tree.segment, - varyPath: tree.varyPath, - isPage: false, - slots: clonedSlots, - isRootLayout: tree.isRootLayout, - hasLoadingBoundary: tree.hasLoadingBoundary, - hasRuntimePrefetch: tree.hasRuntimePrefetch - }; -} -function readOrCreateSegmentCacheEntry(now, fetchStrategy, route, tree) { - const existingEntry = readSegmentCacheEntry(now, tree.varyPath); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const varyPathForRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = false; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function readOrCreateRevalidatingSegmentEntry(now, fetchStrategy, route, tree) { - // This function is called when we've already confirmed that a particular - // segment is cached, but we want to perform another request anyway in case it - // returns more complete and/or fresher data than we already have. The logic - // for deciding whether to replace the existing entry is handled elsewhere; - // this function just handles retrieving a cache entry that we can use to - // track the revalidation. - // - // The reason revalidations are stored in the cache is because we need to be - // able to dedupe multiple revalidation requests. The reason they have to be - // handled specially is because we shouldn't overwrite a "normal" entry if - // one exists at the same keypath. So, for each internal cache location, there - // is a special "revalidation" slot that is used solely for this purpose. - // - // You can think of it as if all the revalidation entries were stored in a - // separate cache map from the canonical entries, and then transfered to the - // canonical cache map once the request is complete — this isn't how it's - // actually implemented, since it's more efficient to store them in the same - // data structure as the normal entries, but that's how it's modeled - // conceptually. - // TODO: Once we implement Fallback behavior for params, where an entry is - // re-keyed based on response information, we'll need to account for the - // possibility that the keypath of the previous entry is more generic than - // the keypath of the revalidating entry. In other words, the server could - // return a less generic entry upon revalidation. For now, though, this isn't - // a concern because the keypath is based solely on the prefetch strategy, - // not on data contained in the response. - const existingEntry = readRevalidatingSegmentCacheEntry(now, tree.varyPath); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const varyPathForRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = true; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function overwriteRevalidatingSegmentCacheEntry(fetchStrategy, route, tree) { - // This function is called when we've already decided to replace an existing - // revalidation entry. Create a new entry and write it into the cache, - // overwriting the previous value. - const varyPathForRequest = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = true; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function upsertSegmentEntry(now, varyPath, candidateEntry) { - // We have a new entry that has not yet been inserted into the cache. Before - // we do so, we need to confirm whether it takes precedence over the existing - // entry (if one exists). - // TODO: We should not upsert an entry if its key was invalidated in the time - // since the request was made. We can do that by passing the "owner" entry to - // this function and confirming it's the same as `existingEntry`. - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isValueExpired"])(now, getCurrentCacheVersion(), candidateEntry)) { - // The entry is expired. We cannot upsert it. - return null; - } - const existingEntry = readSegmentCacheEntry(now, varyPath); - if (existingEntry !== null) { - // Don't replace a more specific segment with a less-specific one. A case where this - // might happen is if the existing segment was fetched via - // ``. - if (// than the segment we already have in the cache, so it can't have more content. - candidateEntry.fetchStrategy !== existingEntry.fetchStrategy && !canNewFetchStrategyProvideMoreContent(existingEntry.fetchStrategy, candidateEntry.fetchStrategy) || // The existing entry isn't partial, but the new one is. - // (TODO: can this be true if `candidateEntry.fetchStrategy >= existingEntry.fetchStrategy`?) - !existingEntry.isPartial && candidateEntry.isPartial) { - // We're going to leave revalidating entry in the cache so that it doesn't - // get revalidated again unnecessarily. Downgrade the Fulfilled entry to - // Rejected and null out the data so it can be garbage collected. We leave - // `staleAt` intact to prevent subsequent revalidation attempts only until - // the entry expires. - const rejectedEntry = candidateEntry; - rejectedEntry.status = 3; - rejectedEntry.loading = null; - rejectedEntry.rsc = null; - return null; - } - // Evict the existing entry from the cache. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["deleteFromCacheMap"])(existingEntry); - } - const isRevalidation = false; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(segmentCacheMap, varyPath, candidateEntry, isRevalidation); - return candidateEntry; -} -function createDetachedSegmentCacheEntry(staleAt) { - const emptyEntry = { - status: 0, - // Default to assuming the fetch strategy will be PPR. This will be updated - // when a fetch is actually initiated. - fetchStrategy: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPR, - rsc: null, - loading: null, - isPartial: true, - promise: null, - // Map-related fields - ref: null, - size: 0, - staleAt, - version: 0 - }; - return emptyEntry; -} -function upgradeToPendingSegment(emptyEntry, fetchStrategy) { - const pendingEntry = emptyEntry; - pendingEntry.status = 1; - pendingEntry.fetchStrategy = fetchStrategy; - if (fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full) { - // We can assume the response will contain the full segment data. Set this - // to false so we know it's OK to omit this segment from any navigation - // requests that may happen while the data is still pending. - pendingEntry.isPartial = false; - } - // Set the version here, since this is right before the request is initiated. - // The next time the global cache version is incremented, the entry will - // effectively be evicted. This happens before initiating the request, rather - // than when receiving the response, because it's guaranteed to happen - // before the data is read on the server. - pendingEntry.version = getCurrentCacheVersion(); - return pendingEntry; -} -function pingBlockedTasks(entry) { - const blockedTasks = entry.blockedTasks; - if (blockedTasks !== null) { - for (const task of blockedTasks){ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$scheduler$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["pingPrefetchTask"])(task); - } - entry.blockedTasks = null; - } -} -function fulfillRouteCacheEntry(entry, tree, metadataVaryPath, staleAt, couldBeIntercepted, canonicalUrl, renderedSearch, isPPREnabled) { - // The Head is not actually part of the route tree, but other than that, it's - // fetched and cached like a segment. Some functions expect a RouteTree - // object, so rather than fork the logic in all those places, we use this - // "fake" one. - const metadata = { - requestKey: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HEAD_REQUEST_KEY"], - segment: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HEAD_REQUEST_KEY"], - varyPath: metadataVaryPath, - // The metadata isn't really a "page" (though it isn't really a "segment" - // either) but for the purposes of how this field is used, it behaves like - // one. If this logic ever gets more complex we can change this to an enum. - isPage: true, - slots: null, - isRootLayout: false, - hasLoadingBoundary: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SubtreeHasNoLoadingBoundary, - hasRuntimePrefetch: false - }; - const fulfilledEntry = entry; - fulfilledEntry.status = 2; - fulfilledEntry.tree = tree; - fulfilledEntry.metadata = metadata; - fulfilledEntry.staleAt = staleAt; - fulfilledEntry.couldBeIntercepted = couldBeIntercepted; - fulfilledEntry.canonicalUrl = canonicalUrl; - fulfilledEntry.renderedSearch = renderedSearch; - fulfilledEntry.isPPREnabled = isPPREnabled; - pingBlockedTasks(entry); - return fulfilledEntry; -} -function fulfillSegmentCacheEntry(segmentCacheEntry, rsc, loading, staleAt, isPartial) { - const fulfilledEntry = segmentCacheEntry; - fulfilledEntry.status = 2; - fulfilledEntry.rsc = rsc; - fulfilledEntry.loading = loading; - fulfilledEntry.staleAt = staleAt; - fulfilledEntry.isPartial = isPartial; - // Resolve any listeners that were waiting for this data. - if (segmentCacheEntry.promise !== null) { - segmentCacheEntry.promise.resolve(fulfilledEntry); - // Free the promise for garbage collection. - fulfilledEntry.promise = null; - } - return fulfilledEntry; -} -function rejectRouteCacheEntry(entry, staleAt) { - const rejectedEntry = entry; - rejectedEntry.status = 3; - rejectedEntry.staleAt = staleAt; - pingBlockedTasks(entry); -} -function rejectSegmentCacheEntry(entry, staleAt) { - const rejectedEntry = entry; - rejectedEntry.status = 3; - rejectedEntry.staleAt = staleAt; - if (entry.promise !== null) { - // NOTE: We don't currently propagate the reason the prefetch was canceled - // but we could by accepting a `reason` argument. - entry.promise.resolve(null); - entry.promise = null; - } -} -function convertRootTreePrefetchToRouteTree(rootTree, renderedPathname, renderedSearch, acc) { - // Remove trailing and leading slashes - const pathnameParts = renderedPathname.split('/').filter((p)=>p !== ''); - const index = 0; - const rootSegment = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"]; - return convertTreePrefetchToRouteTree(rootTree.tree, rootSegment, null, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"], pathnameParts, index, renderedSearch, acc); -} -function convertTreePrefetchToRouteTree(prefetch, segment, partialVaryPath, requestKey, pathnameParts, pathnamePartsIndex, renderedSearch, acc) { - // Converts the route tree sent by the server into the format used by the - // cache. The cached version of the tree includes additional fields, such as a - // cache key for each segment. Since this is frequently accessed, we compute - // it once instead of on every access. This same cache key is also used to - // request the segment from the server. - let slots = null; - let isPage; - let varyPath; - const prefetchSlots = prefetch.slots; - if (prefetchSlots !== null) { - isPage = false; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeLayoutVaryPath"])(requestKey, partialVaryPath); - slots = {}; - for(let parallelRouteKey in prefetchSlots){ - const childPrefetch = prefetchSlots[parallelRouteKey]; - const childParamName = childPrefetch.name; - const childParamType = childPrefetch.paramType; - const childServerSentParamKey = childPrefetch.paramKey; - let childDoesAppearInURL; - let childSegment; - let childPartialVaryPath; - if (childParamType !== null) { - // This segment is parameterized. Get the param from the pathname. - const childParamValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["parseDynamicParamFromURLPart"])(childParamType, pathnameParts, pathnamePartsIndex); - // Assign a cache key to the segment, based on the param value. In the - // pre-Segment Cache implementation, the server computes this and sends - // it in the body of the response. In the Segment Cache implementation, - // the server sends an empty string and we fill it in here. - // TODO: We're intentionally not adding the search param to page - // segments here; it's tracked separately and added back during a read. - // This would clearer if we waited to construct the segment until it's - // read from the cache, since that's effectively what we're - // doing anyway. - const childParamKey = // cacheComponents is enabled. - childServerSentParamKey !== null ? childServerSentParamKey : (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getCacheKeyForDynamicParam"])(childParamValue, ''); - childPartialVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["appendLayoutVaryPath"])(partialVaryPath, childParamKey); - childSegment = [ - childParamName, - childParamKey, - childParamType - ]; - childDoesAppearInURL = true; - } else { - // This segment does not have a param. Inherit the partial vary path of - // the parent. - childPartialVaryPath = partialVaryPath; - childSegment = childParamName; - childDoesAppearInURL = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["doesStaticSegmentAppearInURL"])(childParamName); - } - // Only increment the index if the segment appears in the URL. If it's a - // "virtual" segment, like a route group, it remains the same. - const childPathnamePartsIndex = childDoesAppearInURL ? pathnamePartsIndex + 1 : pathnamePartsIndex; - const childRequestKeyPart = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createSegmentRequestKeyPart"])(childSegment); - const childRequestKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["appendSegmentRequestKeyPart"])(requestKey, parallelRouteKey, childRequestKeyPart); - slots[parallelRouteKey] = convertTreePrefetchToRouteTree(childPrefetch, childSegment, childPartialVaryPath, childRequestKey, pathnameParts, childPathnamePartsIndex, renderedSearch, acc); - } - } else { - if (requestKey.endsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - // This is a page segment. - isPage = true; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizePageVaryPath"])(requestKey, renderedSearch, partialVaryPath); - // The metadata "segment" is not part the route tree, but it has the same - // conceptual params as a page segment. Write the vary path into the - // accumulator object. If there are multiple parallel pages, we use the - // first one. Which page we choose is arbitrary as long as it's - // consistently the same one every time every time. See - // finalizeMetadataVaryPath for more details. - if (acc.metadataVaryPath === null) { - acc.metadataVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeMetadataVaryPath"])(requestKey, renderedSearch, partialVaryPath); - } - } else { - // This is a layout segment. - isPage = false; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeLayoutVaryPath"])(requestKey, partialVaryPath); - } - } - return { - requestKey, - segment, - varyPath, - // TODO: Cheating the type system here a bit because TypeScript can't tell - // that the type of isPage and varyPath are consistent. The fix would be to - // create separate constructors and call the appropriate one from each of - // the branches above. Just seems a bit overkill only for one field so I'll - // leave it as-is for now. If isPage were wrong it would break the behavior - // and we'd catch it quickly, anyway. - isPage: isPage, - slots, - isRootLayout: prefetch.isRootLayout, - // This field is only relevant to dynamic routes. For a PPR/static route, - // there's always some partial loading state we can fetch. - hasLoadingBoundary: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SegmentHasLoadingBoundary, - hasRuntimePrefetch: prefetch.hasRuntimePrefetch - }; -} -function convertRootFlightRouterStateToRouteTree(flightRouterState, renderedSearch, acc) { - return convertFlightRouterStateToRouteTree(flightRouterState, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"], null, renderedSearch, acc); -} -function convertFlightRouterStateToRouteTree(flightRouterState, requestKey, parentPartialVaryPath, renderedSearch, acc) { - const originalSegment = flightRouterState[0]; - let segment; - let partialVaryPath; - let isPage; - let varyPath; - if (Array.isArray(originalSegment)) { - isPage = false; - const paramCacheKey = originalSegment[1]; - partialVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["appendLayoutVaryPath"])(parentPartialVaryPath, paramCacheKey); - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeLayoutVaryPath"])(requestKey, partialVaryPath); - segment = originalSegment; - } else { - // This segment does not have a param. Inherit the partial vary path of - // the parent. - partialVaryPath = parentPartialVaryPath; - if (requestKey.endsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"])) { - // This is a page segment. - isPage = true; - // The navigation implementation expects the search params to be included - // in the segment. However, in the case of a static response, the search - // params are omitted. So the client needs to add them back in when reading - // from the Segment Cache. - // - // For consistency, we'll do this for dynamic responses, too. - // - // TODO: We should move search params out of FlightRouterState and handle - // them entirely on the client, similar to our plan for dynamic params. - segment = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["PAGE_SEGMENT_KEY"]; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizePageVaryPath"])(requestKey, renderedSearch, partialVaryPath); - // The metadata "segment" is not part the route tree, but it has the same - // conceptual params as a page segment. Write the vary path into the - // accumulator object. If there are multiple parallel pages, we use the - // first one. Which page we choose is arbitrary as long as it's - // consistently the same one every time every time. See - // finalizeMetadataVaryPath for more details. - if (acc.metadataVaryPath === null) { - acc.metadataVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeMetadataVaryPath"])(requestKey, renderedSearch, partialVaryPath); - } - } else { - // This is a layout segment. - isPage = false; - segment = originalSegment; - varyPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["finalizeLayoutVaryPath"])(requestKey, partialVaryPath); - } - } - let slots = null; - const parallelRoutes = flightRouterState[1]; - for(let parallelRouteKey in parallelRoutes){ - const childRouterState = parallelRoutes[parallelRouteKey]; - const childSegment = childRouterState[0]; - // TODO: Eventually, the param values will not be included in the response - // from the server. We'll instead fill them in on the client by parsing - // the URL. This is where we'll do that. - const childRequestKeyPart = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createSegmentRequestKeyPart"])(childSegment); - const childRequestKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["appendSegmentRequestKeyPart"])(requestKey, parallelRouteKey, childRequestKeyPart); - const childTree = convertFlightRouterStateToRouteTree(childRouterState, childRequestKey, partialVaryPath, renderedSearch, acc); - if (slots === null) { - slots = { - [parallelRouteKey]: childTree - }; - } else { - slots[parallelRouteKey] = childTree; - } - } - return { - requestKey, - segment, - varyPath, - // TODO: Cheating the type system here a bit because TypeScript can't tell - // that the type of isPage and varyPath are consistent. The fix would be to - // create separate constructors and call the appropriate one from each of - // the branches above. Just seems a bit overkill only for one field so I'll - // leave it as-is for now. If isPage were wrong it would break the behavior - // and we'd catch it quickly, anyway. - isPage: isPage, - slots, - isRootLayout: flightRouterState[4] === true, - hasLoadingBoundary: flightRouterState[5] !== undefined ? flightRouterState[5] : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$app$2d$router$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HasLoadingBoundary"].SubtreeHasNoLoadingBoundary, - // Non-static tree responses are only used by apps that haven't adopted - // Cache Components. So this is always false. - hasRuntimePrefetch: false - }; -} -function convertRouteTreeToFlightRouterState(routeTree) { - const parallelRoutes = {}; - if (routeTree.slots !== null) { - for(const parallelRouteKey in routeTree.slots){ - parallelRoutes[parallelRouteKey] = convertRouteTreeToFlightRouterState(routeTree.slots[parallelRouteKey]); - } - } - const flightRouterState = [ - routeTree.segment, - parallelRoutes, - null, - null, - routeTree.isRootLayout - ]; - return flightRouterState; -} -async function fetchRouteOnCacheMiss(entry, task, key) { - // This function is allowed to use async/await because it contains the actual - // fetch that gets issued on a cache miss. Notice it writes the result to the - // cache entry directly, rather than return data that is then written by - // the caller. - const pathname = key.pathname; - const search = key.search; - const nextUrl = key.nextUrl; - const segmentPath = '/_tree'; - const headers = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_SEGMENT_PREFETCH_HEADER"]]: segmentPath - }; - if (nextUrl !== null) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]] = nextUrl; - } - try { - const url = new URL(pathname + search, location.origin); - let response; - let urlAfterRedirects; - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - // "Server" mode. We can use request headers instead of the pathname. - // TODO: The eventual plan is to get rid of our custom request headers and - // encode everything into the URL, using a similar strategy to the - // "output: export" block above. - response = await fetchPrefetchResponse(url, headers); - urlAfterRedirects = response !== null && response.redirected ? new URL(response.url) : url; - } - if (!response || !response.ok || // 204 is a Cache miss. Though theoretically this shouldn't happen when - // PPR is enabled, because we always respond to route tree requests, even - // if it needs to be blockingly generated on demand. - response.status === 204 || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - // TODO: The canonical URL is the href without the origin. I think - // historically the reason for this is because the initial canonical URL - // gets passed as a prop to the top-level React component, which means it - // needs to be computed during SSR. If it were to include the origin, it - // would need to always be same as location.origin on the client, to prevent - // a hydration mismatch. To sidestep this complexity, we omit the origin. - // - // However, since this is neither a native URL object nor a fully qualified - // URL string, we need to be careful about how we use it. To prevent subtle - // mistakes, we should create a special type for it, instead of just string. - // Or, we should just use a (readonly) URL object instead. The type of the - // prop that we pass to seed the initial state does not need to be the same - // type as the state itself. - const canonicalUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(urlAfterRedirects); - // Check whether the response varies based on the Next-Url header. - const varyHeader = response.headers.get('vary'); - const couldBeIntercepted = varyHeader !== null && varyHeader.includes(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]); - // Track when the network connection closes. - const closed = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - // This checks whether the response was served from the per-segment cache, - // rather than the old prefetching flow. If it fails, it implies that PPR - // is disabled on this route. - const routeIsPPREnabled = response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"]) === '2' || // In output: "export" mode, we can't rely on response headers. But if we - // receive a well-formed response, we can assume it's a static response, - // because all data is static in this mode. - isOutputExportMode; - if (routeIsPPREnabled) { - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setSizeInCacheMap"])(entry, size); - }); - const serverData = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromNextReadableStream"])(prefetchStream, headers); - if (serverData.buildId !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - // TODO: We should cache the fact that this is an MPA navigation. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - // Get the params that were used to render the target page. These may - // be different from the params in the request URL, if the page - // was rewritten. - const renderedPathname = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedPathname"])(response); - const renderedSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(response); - // Convert the server-sent data into the RouteTree format used by the - // client cache. - // - // During this traversal, we accumulate additional data into this - // "accumulator" object. - const acc = { - metadataVaryPath: null - }; - const routeTree = convertRootTreePrefetchToRouteTree(serverData, renderedPathname, renderedSearch, acc); - const metadataVaryPath = acc.metadataVaryPath; - if (metadataVaryPath === null) { - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - const staleTimeMs = getStaleTimeMs(serverData.staleTime); - fulfillRouteCacheEntry(entry, routeTree, metadataVaryPath, Date.now() + staleTimeMs, couldBeIntercepted, canonicalUrl, renderedSearch, routeIsPPREnabled); - } else { - // PPR is not enabled for this route. The server responds with a - // different format (FlightRouterState) that we need to convert. - // TODO: We will unify the responses eventually. I'm keeping the types - // separate for now because FlightRouterState has so many - // overloaded concerns. - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setSizeInCacheMap"])(entry, size); - }); - const serverData = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromNextReadableStream"])(prefetchStream, headers); - if (serverData.b !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - // TODO: We should cache the fact that this is an MPA navigation. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - writeDynamicTreeResponseIntoCache(Date.now(), task, // using the LoadingBoundary fetch strategy, so mark their cache entries accordingly. - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary, response, serverData, entry, couldBeIntercepted, canonicalUrl, routeIsPPREnabled); - } - if (!couldBeIntercepted) { - // This route will never be intercepted. So we can use this entry for all - // requests to this route, regardless of the Next-Url header. This works - // because when reading the cache we always check for a valid - // non-intercepted entry first. - // Re-key the entry. The `set` implementation handles removing it from - // its previous position in the cache. We don't need to do anything to - // update the LRU, because the entry is already in it. - // TODO: Treat this as an upsert — should check if an entry already - // exists at the new keypath, and if so, whether we should keep that - // one instead. - const fulfilledVaryPath = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getFulfilledRouteVaryPath"])(pathname, search, nextUrl, couldBeIntercepted); - const isRevalidation = false; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setInCacheMap"])(routeCacheMap, fulfilledVaryPath, entry, isRevalidation); - } - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - return { - value: null, - closed: closed.promise - }; - } catch (error) { - // Either the connection itself failed, or something bad happened while - // decoding the response. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } -} -async function fetchSegmentOnCacheMiss(route, segmentCacheEntry, routeKey, tree) { - // This function is allowed to use async/await because it contains the actual - // fetch that gets issued on a cache miss. Notice it writes the result to the - // cache entry directly, rather than return data that is then written by - // the caller. - // - // Segment fetches are non-blocking so we don't need to ping the scheduler - // on completion. - // Use the canonical URL to request the segment, not the original URL. These - // are usually the same, but the canonical URL will be different if the route - // tree response was redirected. To avoid an extra waterfall on every segment - // request, we pass the redirected URL instead of the original one. - const url = new URL(route.canonicalUrl, location.origin); - const nextUrl = routeKey.nextUrl; - const requestKey = tree.requestKey; - const normalizedRequestKey = requestKey === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2d$cache$2f$segment$2d$value$2d$encoding$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_SEGMENT_REQUEST_KEY"] ? // `_index` instead of as an empty string. This should be treated as - // an implementation detail and not as a stable part of the protocol. - // It just needs to match the equivalent logic that happens when - // prerendering the responses. It should not leak outside of Next.js. - '/_index' : requestKey; - const headers = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_SEGMENT_PREFETCH_HEADER"]]: normalizedRequestKey - }; - if (nextUrl !== null) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]] = nextUrl; - } - const requestUrl = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : url; - try { - const response = await fetchPrefetchResponse(requestUrl, headers); - if (!response || !response.ok || response.status === 204 || // Cache miss - // This checks whether the response was served from the per-segment cache, - // rather than the old prefetching flow. If it fails, it implies that PPR - // is disabled on this route. Theoretically this should never happen - // because we only issue requests for segments once we've verified that - // the route supports PPR. - response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"]) !== '2' && // In output: "export" mode, we can't rely on response headers. But if - // we receive a well-formed response, we can assume it's a static - // response, because all data is static in this mode. - !isOutputExportMode || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } - // Track when the network connection closes. - const closed = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - // Wrap the original stream in a new stream that never closes. That way the - // Flight client doesn't error if there's a hanging promise. - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setSizeInCacheMap"])(segmentCacheEntry, size); - }); - const serverData = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromNextReadableStream"])(prefetchStream, headers); - if (serverData.buildId !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } - return { - value: fulfillSegmentCacheEntry(segmentCacheEntry, serverData.rsc, serverData.loading, // So we use the stale time of the route. - route.staleAt, serverData.isPartial), - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - closed: closed.promise - }; - } catch (error) { - // Either the connection itself failed, or something bad happened while - // decoding the response. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } -} -async function fetchSegmentPrefetchesUsingDynamicRequest(task, route, fetchStrategy, dynamicRequestTree, spawnedEntries) { - const key = task.key; - const url = new URL(route.canonicalUrl, location.origin); - const nextUrl = key.nextUrl; - if (spawnedEntries.size === 1 && spawnedEntries.has(route.metadata.requestKey)) { - // The only thing pending is the head. Instruct the server to - // skip over everything else. - dynamicRequestTree = MetadataOnlyRequestTree; - } - const headers = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_HEADER"]]: '1', - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STATE_TREE_HEADER"]]: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["prepareFlightRouterStateForRequest"])(dynamicRequestTree) - }; - if (nextUrl !== null) { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_URL"]] = nextUrl; - } - switch(fetchStrategy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].Full: - { - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime: - { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]] = '2'; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].LoadingBoundary: - { - headers[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_PREFETCH_HEADER"]] = '1'; - break; - } - default: - { - fetchStrategy; - } - } - try { - const response = await fetchPrefetchResponse(url, headers); - if (!response || !response.ok || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } - const renderedSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(response); - if (renderedSearch !== route.renderedSearch) { - // The search params that were used to render the target page are - // different from the search params in the request URL. This only happens - // when there's a dynamic rewrite in between the tree prefetch and the - // data prefetch. - // TODO: For now, since this is an edge case, we reject the prefetch, but - // the proper way to handle this is to evict the stale route tree entry - // then fill the cache with the new response. - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } - // Track when the network connection closes. - const closed = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - let fulfilledEntries = null; - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(totalBytesReceivedSoFar) { - // When processing a dynamic response, we don't know how large each - // individual segment is, so approximate by assiging each segment - // the average of the total response size. - if (fulfilledEntries === null) { - // Haven't received enough data yet to know which segments - // were included. - return; - } - const averageSize = totalBytesReceivedSoFar / fulfilledEntries.length; - for (const entry of fulfilledEntries){ - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$map$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["setSizeInCacheMap"])(entry, averageSize); - } - }); - const serverData = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFromNextReadableStream"])(prefetchStream, headers); - const isResponsePartial = fetchStrategy === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FetchStrategy"].PPRRuntime ? serverData.rp?.[0] === true : false; - // Aside from writing the data into the cache, this function also returns - // the entries that were fulfilled, so we can streamingly update their sizes - // in the LRU as more data comes in. - fulfilledEntries = writeDynamicRenderResponseIntoCache(Date.now(), task, fetchStrategy, response, serverData, isResponsePartial, route, spawnedEntries); - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - return { - value: null, - closed: closed.promise - }; - } catch (error) { - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } -} -function writeDynamicTreeResponseIntoCache(now, task, fetchStrategy, response, serverData, entry, couldBeIntercepted, canonicalUrl, routeIsPPREnabled) { - // Get the URL that was used to render the target page. This may be different - // from the URL in the request URL, if the page was rewritten. - const renderedSearch = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getRenderedSearch"])(response); - const normalizedFlightDataResult = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeFlightData"])(serverData.f); - if (// MPA navigation. - typeof normalizedFlightDataResult === 'string' || normalizedFlightDataResult.length !== 1) { - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const flightData = normalizedFlightDataResult[0]; - if (!flightData.isRootRender) { - // Unexpected response format. - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const flightRouterState = flightData.tree; - // For runtime prefetches, stale time is in the payload at rp[1]. - // For other responses, fall back to the header. - const staleTimeSeconds = typeof serverData.rp?.[1] === 'number' ? serverData.rp[1] : parseInt(response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STALE_TIME_HEADER"]) ?? '', 10); - const staleTimeMs = !isNaN(staleTimeSeconds) ? getStaleTimeMs(staleTimeSeconds) : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["STATIC_STALETIME_MS"]; - // If the response contains dynamic holes, then we must conservatively assume - // that any individual segment might contain dynamic holes, and also the - // head. If it did not contain dynamic holes, then we can assume every segment - // and the head is completely static. - const isResponsePartial = response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_DID_POSTPONE_HEADER"]) === '1'; - // Convert the server-sent data into the RouteTree format used by the - // client cache. - // - // During this traversal, we accumulate additional data into this - // "accumulator" object. - const acc = { - metadataVaryPath: null - }; - const routeTree = convertRootFlightRouterStateToRouteTree(flightRouterState, renderedSearch, acc); - const metadataVaryPath = acc.metadataVaryPath; - if (metadataVaryPath === null) { - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const fulfilledEntry = fulfillRouteCacheEntry(entry, routeTree, metadataVaryPath, now + staleTimeMs, couldBeIntercepted, canonicalUrl, renderedSearch, routeIsPPREnabled); - // If the server sent segment data as part of the response, we should write - // it into the cache to prevent a second, redundant prefetch request. - // - // TODO: When `clientSegmentCache` is enabled, the server does not include - // segment data when responding to a route tree prefetch request. However, - // when `clientSegmentCache` is set to "client-only", and PPR is enabled (or - // the page is fully static), the normal check is bypassed and the server - // responds with the full page. This is a temporary situation until we can - // remove the "client-only" option. Then, we can delete this function call. - writeDynamicRenderResponseIntoCache(now, task, fetchStrategy, response, serverData, isResponsePartial, fulfilledEntry, null); -} -function rejectSegmentEntriesIfStillPending(entries, staleAt) { - const fulfilledEntries = []; - for (const entry of entries.values()){ - if (entry.status === 1) { - rejectSegmentCacheEntry(entry, staleAt); - } else if (entry.status === 2) { - fulfilledEntries.push(entry); - } - } - return fulfilledEntries; -} -function writeDynamicRenderResponseIntoCache(now, task, fetchStrategy, response, serverData, isResponsePartial, route, spawnedEntries) { - if (serverData.b !== (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$app$2d$build$2d$id$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getAppBuildId"])()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - if (spawnedEntries !== null) { - rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - } - return null; - } - const flightDatas = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$flight$2d$data$2d$helpers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeFlightData"])(serverData.f); - if (typeof flightDatas === 'string') { - // This means navigating to this route will result in an MPA navigation. - // TODO: We should cache this, too, so that the MPA navigation is immediate. - return null; - } - // For runtime prefetches, stale time is in the payload at rp[1]. - // For other responses, fall back to the header. - const staleTimeSeconds = typeof serverData.rp?.[1] === 'number' ? serverData.rp[1] : parseInt(response.headers.get(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NEXT_ROUTER_STALE_TIME_HEADER"]) ?? '', 10); - const staleTimeMs = !isNaN(staleTimeSeconds) ? getStaleTimeMs(staleTimeSeconds) : __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["STATIC_STALETIME_MS"]; - const staleAt = now + staleTimeMs; - for (const flightData of flightDatas){ - const seedData = flightData.seedData; - if (seedData !== null) { - // The data sent by the server represents only a subtree of the app. We - // need to find the part of the task tree that matches the response. - // - // segmentPath represents the parent path of subtree. It's a repeating - // pattern of parallel route key and segment: - // - // [string, Segment, string, Segment, string, Segment, ...] - const segmentPath = flightData.segmentPath; - let tree = route.tree; - for(let i = 0; i < segmentPath.length; i += 2){ - const parallelRouteKey = segmentPath[i]; - if (tree?.slots?.[parallelRouteKey] !== undefined) { - tree = tree.slots[parallelRouteKey]; - } else { - if (spawnedEntries !== null) { - rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - } - return null; - } - } - writeSeedDataIntoCache(now, task, fetchStrategy, route, tree, staleAt, seedData, isResponsePartial, spawnedEntries); - } - const head = flightData.head; - if (head !== null) { - fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, head, null, flightData.isHeadPartial, staleAt, route.metadata, spawnedEntries); - } - } - // Any entry that's still pending was intentionally not rendered by the - // server, because it was inside the loading boundary. Mark them as rejected - // so we know not to fetch them again. - // TODO: If PPR is enabled on some routes but not others, then it's possible - // that a different page is able to do a per-segment prefetch of one of the - // segments we're marking as rejected here. We should mark on the segment - // somehow that the reason for the rejection is because of a non-PPR prefetch. - // That way a per-segment prefetch knows to disregard the rejection. - if (spawnedEntries !== null) { - const fulfilledEntries = rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - return fulfilledEntries; - } - return null; -} -function writeSeedDataIntoCache(now, task, fetchStrategy, route, tree, staleAt, seedData, isResponsePartial, entriesOwnedByCurrentTask) { - // This function is used to write the result of a runtime server request - // (CacheNodeSeedData) into the prefetch cache. - const rsc = seedData[0]; - const loading = seedData[2]; - const isPartial = rsc === null || isResponsePartial; - fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, rsc, loading, isPartial, staleAt, tree, entriesOwnedByCurrentTask); - // Recursively write the child data into the cache. - const slots = tree.slots; - if (slots !== null) { - const seedDataChildren = seedData[1]; - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - const childSeedData = seedDataChildren[parallelRouteKey]; - if (childSeedData !== null && childSeedData !== undefined) { - writeSeedDataIntoCache(now, task, fetchStrategy, route, childTree, staleAt, childSeedData, isResponsePartial, entriesOwnedByCurrentTask); - } - } - } -} -function fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, rsc, loading, isPartial, staleAt, tree, entriesOwnedByCurrentTask) { - // We should only write into cache entries that are owned by us. Or create - // a new one and write into that. We must never write over an entry that was - // created by a different task, because that causes data races. - const ownedEntry = entriesOwnedByCurrentTask !== null ? entriesOwnedByCurrentTask.get(tree.requestKey) : undefined; - if (ownedEntry !== undefined) { - fulfillSegmentCacheEntry(ownedEntry, rsc, loading, staleAt, isPartial); - } else { - // There's no matching entry. Attempt to create a new one. - const possiblyNewEntry = readOrCreateSegmentCacheEntry(now, fetchStrategy, route, tree); - if (possiblyNewEntry.status === 0) { - // Confirmed this is a new entry. We can fulfill it. - const newEntry = possiblyNewEntry; - fulfillSegmentCacheEntry(upgradeToPendingSegment(newEntry, fetchStrategy), rsc, loading, staleAt, isPartial); - } else { - // There was already an entry in the cache. But we may be able to - // replace it with the new one from the server. - const newEntry = fulfillSegmentCacheEntry(upgradeToPendingSegment(createDetachedSegmentCacheEntry(staleAt), fetchStrategy), rsc, loading, staleAt, isPartial); - upsertSegmentEntry(now, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$vary$2d$path$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSegmentVaryPathForRequest"])(fetchStrategy, tree), newEntry); - } - } -} -async function fetchPrefetchResponse(url, headers) { - const fetchPriority = 'low'; - // When issuing a prefetch request, don't immediately decode the response; we - // use the lower level `createFromResponse` API instead because we need to do - // some extra processing of the response stream. See - // `createPrefetchResponseStream` for more details. - const shouldImmediatelyDecode = false; - const response = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createFetch"])(url, headers, fetchPriority, shouldImmediatelyDecode); - if (!response.ok) { - return null; - } - // Check the content type - if ("TURBOPACK compile-time falsy", 0) { - // In output: "export" mode, we relaxed about the content type, since it's - // not Next.js that's serving the response. If the status is OK, assume the - // response is valid. If it's not a valid response, the Flight client won't - // be able to decode it, and we'll treat it as a miss. - } else { - const contentType = response.headers.get('content-type'); - const isFlightResponse = contentType && contentType.startsWith(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$app$2d$router$2d$headers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RSC_CONTENT_TYPE_HEADER"]); - if (!isFlightResponse) { - return null; - } - } - return response; -} -function createPrefetchResponseStream(originalFlightStream, onStreamClose, onResponseSizeUpdate) { - // When PPR is enabled, prefetch streams may contain references that never - // resolve, because that's how we encode dynamic data access. In the decoded - // object returned by the Flight client, these are reified into hanging - // promises that suspend during render, which is effectively what we want. - // The UI resolves when it switches to the dynamic data stream - // (via useDeferredValue(dynamic, static)). - // - // However, the Flight implementation currently errors if the server closes - // the response before all the references are resolved. As a cheat to work - // around this, we wrap the original stream in a new stream that never closes, - // and therefore doesn't error. - // - // While processing the original stream, we also incrementally update the size - // of the cache entry in the LRU. - let totalByteLength = 0; - const reader = originalFlightStream.getReader(); - return new ReadableStream({ - async pull (controller) { - while(true){ - const { done, value } = await reader.read(); - if (!done) { - // Pass to the target stream and keep consuming the Flight response - // from the server. - controller.enqueue(value); - // Incrementally update the size of the cache entry in the LRU. - // NOTE: Since prefetch responses are delivered in a single chunk, - // it's not really necessary to do this streamingly, but I'm doing it - // anyway in case this changes in the future. - totalByteLength += value.byteLength; - onResponseSizeUpdate(totalByteLength); - continue; - } - // The server stream has closed. Exit, but intentionally do not close - // the target stream. We do notify the caller, though. - onStreamClose(); - return; - } - } - }); -} -function addSegmentPathToUrlInOutputExportMode(url, segmentPath) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return url; -} -function canNewFetchStrategyProvideMoreContent(currentStrategy, newStrategy) { - return currentStrategy < newStrategy; -} //# sourceMappingURL=cache.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/segment-cache/navigation.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "convertServerPatchToFullTree", - ()=>convertServerPatchToFullTree, - "navigate", - ()=>navigate, - "navigateToSeededRoute", - ()=>navigateToSeededRoute -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -function navigate(url, currentUrl, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, shouldScroll, accumulation) { - const now = Date.now(); - const href = url.href; - // We special case navigations to the exact same URL as the current location. - // It's a common UI pattern for apps to refresh when you click a link to the - // current page. So when this happens, we refresh the dynamic data in the page - // segments. - // - // Note that this does not apply if the any part of the hash or search query - // has changed. This might feel a bit weird but it makes more sense when you - // consider that the way to trigger this behavior is to click the same link - // multiple times. - // - // TODO: We should probably refresh the *entire* route when this case occurs, - // not just the page segments. Essentially treating it the same as a refresh() - // triggered by an action, which is the more explicit way of modeling the UI - // pattern described above. - // - // Also note that this only refreshes the dynamic data, not static/ cached - // data. If the page segment is fully static and prefetched, the request is - // skipped. (This is also how refresh() works.) - const isSamePageNavigation = href === currentUrl.href; - const cacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createCacheKey"])(href, nextUrl); - const route = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readRouteCacheEntry"])(now, cacheKey); - if (route !== null && route.status === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled) { - // We have a matching prefetch. - const snapshot = readRenderSnapshotFromCache(now, route, route.tree); - const prefetchFlightRouterState = snapshot.flightRouterState; - const prefetchSeedData = snapshot.seedData; - const headSnapshot = readHeadSnapshotFromCache(now, route); - const prefetchHead = headSnapshot.rsc; - const isPrefetchHeadPartial = headSnapshot.isPartial; - // TODO: The "canonicalUrl" stored in the cache doesn't include the hash, - // because hash entries do not vary by hash fragment. However, the one - // we set in the router state *does* include the hash, and it's used to - // sync with the actual browser location. To make this less of a refactor - // hazard, we should always track the hash separately from the rest of - // the URL. - const newCanonicalUrl = route.canonicalUrl + url.hash; - const renderedSearch = route.renderedSearch; - return navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, newCanonicalUrl, renderedSearch, freshnessPolicy, shouldScroll); - } - // There was no matching route tree in the cache. Let's see if we can - // construct an "optimistic" route tree. - // - // Do not construct an optimistic route tree if there was a cache hit, but - // the entry has a rejected status, since it may have been rejected due to a - // rewrite or redirect based on the search params. - // - // TODO: There are multiple reasons a prefetch might be rejected; we should - // track them explicitly and choose what to do here based on that. - if (route === null || route.status !== __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected) { - const optimisticRoute = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["requestOptimisticRouteCacheEntry"])(now, url, nextUrl); - if (optimisticRoute !== null) { - // We have an optimistic route tree. Proceed with the normal flow. - const snapshot = readRenderSnapshotFromCache(now, optimisticRoute, optimisticRoute.tree); - const prefetchFlightRouterState = snapshot.flightRouterState; - const prefetchSeedData = snapshot.seedData; - const headSnapshot = readHeadSnapshotFromCache(now, optimisticRoute); - const prefetchHead = headSnapshot.rsc; - const isPrefetchHeadPartial = headSnapshot.isPartial; - const newCanonicalUrl = optimisticRoute.canonicalUrl + url.hash; - const newRenderedSearch = optimisticRoute.renderedSearch; - return navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, newCanonicalUrl, newRenderedSearch, freshnessPolicy, shouldScroll); - } - } - // There's no matching prefetch for this route in the cache. - let collectedDebugInfo = accumulation.collectedDebugInfo ?? []; - if (accumulation.collectedDebugInfo === undefined) { - collectedDebugInfo = accumulation.collectedDebugInfo = []; - } - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].Async, - data: navigateDynamicallyWithNoPrefetch(now, url, currentUrl, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, shouldScroll, collectedDebugInfo) - }; -} -function navigateToSeededRoute(now, url, canonicalUrl, navigationSeed, currentUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, shouldScroll) { - // A version of navigate() that accepts the target route tree as an argument - // rather than reading it from the prefetch cache. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const isSamePageNavigation = url.href === currentUrl.href; - const task = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startPPRNavigation"])(now, currentUrl, currentCacheNode, currentFlightRouterState, navigationSeed.tree, freshnessPolicy, navigationSeed.data, navigationSeed.head, null, null, false, isSamePageNavigation, accumulation); - if (task !== null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["spawnDynamicRequests"])(task, url, nextUrl, freshnessPolicy, accumulation); - return navigationTaskToResult(task, canonicalUrl, navigationSeed.renderedSearch, accumulation.scrollableSegments, shouldScroll, url.hash); - } - // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation. - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].MPA, - data: canonicalUrl - }; -} -function navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, canonicalUrl, renderedSearch, freshnessPolicy, shouldScroll) { - // Recursively construct a prefetch tree by reading from the Segment Cache. To - // maintain compatibility, we output the same data structures as the old - // prefetching implementation: FlightRouterState and CacheNodeSeedData. - // TODO: Eventually updateCacheNodeOnNavigation (or the equivalent) should - // read from the Segment Cache directly. It's only structured this way for now - // so we can share code with the old prefetching implementation. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const seedData = null; - const seedHead = null; - const task = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["startPPRNavigation"])(now, currentUrl, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, freshnessPolicy, seedData, seedHead, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, accumulation); - if (task !== null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["spawnDynamicRequests"])(task, url, nextUrl, freshnessPolicy, accumulation); - return navigationTaskToResult(task, canonicalUrl, renderedSearch, accumulation.scrollableSegments, shouldScroll, url.hash); - } - // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation. - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].MPA, - data: canonicalUrl - }; -} -function navigationTaskToResult(task, canonicalUrl, renderedSearch, scrollableSegments, shouldScroll, hash) { - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].Success, - data: { - flightRouterState: task.route, - cacheNode: task.node, - canonicalUrl, - renderedSearch, - scrollableSegments, - shouldScroll, - hash - } - }; -} -function readRenderSnapshotFromCache(now, route, tree) { - let childRouterStates = {}; - let childSeedDatas = {}; - const slots = tree.slots; - if (slots !== null) { - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - const childResult = readRenderSnapshotFromCache(now, route, childTree); - childRouterStates[parallelRouteKey] = childResult.flightRouterState; - childSeedDatas[parallelRouteKey] = childResult.seedData; - } - } - let rsc = null; - let loading = null; - let isPartial = true; - const segmentEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readSegmentCacheEntry"])(now, tree.varyPath); - if (segmentEntry !== null) { - switch(segmentEntry.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - // Happy path: a cache hit - rsc = segmentEntry.rsc; - loading = segmentEntry.loading; - isPartial = segmentEntry.isPartial; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - // We haven't received data for this segment yet, but there's already - // an in-progress request. Since it's extremely likely to arrive - // before the dynamic data response, we might as well use it. - const promiseForFulfilledEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["waitForSegmentCacheEntry"])(segmentEntry); - rsc = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.rsc : null); - loading = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.loading : null); - // Because the request is still pending, we typically don't know yet - // whether the response will be partial. We shouldn't skip this segment - // during the dynamic navigation request. Otherwise, we might need to - // do yet another request to fill in the remaining data, creating - // a waterfall. - // - // The one exception is if this segment is being fetched with via - // prefetch={true} (i.e. the "force stale" or "full" strategy). If so, - // we can assume the response will be full. This field is set to `false` - // for such segments. - isPartial = segmentEntry.isPartial; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - break; - default: - segmentEntry; - } - } - // The navigation implementation expects the search params to be - // included in the segment. However, the Segment Cache tracks search - // params separately from the rest of the segment key. So we need to - // add them back here. - // - // See corresponding comment in convertFlightRouterStateToTree. - // - // TODO: What we should do instead is update the navigation diffing - // logic to compare search params explicitly. This is a temporary - // solution until more of the Segment Cache implementation has settled. - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["addSearchParamsIfPageSegment"])(tree.segment, Object.fromEntries(new URLSearchParams(route.renderedSearch))); - // We don't need this information in a render snapshot, so this can just be a placeholder. - const hasRuntimePrefetch = false; - return { - flightRouterState: [ - segment, - childRouterStates, - null, - null, - tree.isRootLayout - ], - seedData: [ - rsc, - childSeedDatas, - loading, - isPartial, - hasRuntimePrefetch - ] - }; -} -function readHeadSnapshotFromCache(now, route) { - // Same as readRenderSnapshotFromCache, but for the head - let rsc = null; - let isPartial = true; - const segmentEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["readSegmentCacheEntry"])(now, route.metadata.varyPath); - if (segmentEntry !== null) { - switch(segmentEntry.status){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Fulfilled: - { - rsc = segmentEntry.rsc; - isPartial = segmentEntry.isPartial; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Pending: - { - const promiseForFulfilledEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["waitForSegmentCacheEntry"])(segmentEntry); - rsc = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.rsc : null); - isPartial = segmentEntry.isPartial; - break; - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Empty: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["EntryStatus"].Rejected: - break; - default: - segmentEntry; - } - } - return { - rsc, - isPartial - }; -} -// Used to request all the dynamic data for a route, rather than just a subset, -// e.g. during a refresh or a revalidation. Typically this gets constructed -// during the normal flow when diffing the route tree, but for an unprefetched -// navigation, where we don't know the structure of the target route, we use -// this instead. -const DynamicRequestTreeForEntireRoute = [ - '', - {}, - null, - 'refetch' -]; -async function navigateDynamicallyWithNoPrefetch(now, url, currentUrl, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, shouldScroll, collectedDebugInfo) { - // Runs when a navigation happens but there's no cached prefetch we can use. - // Don't bother to wait for a prefetch response; go straight to a full - // navigation that contains both static and dynamic data in a single stream. - // (This is unlike the old navigation implementation, which instead blocks - // the dynamic request until a prefetch request is received.) - // - // To avoid duplication of logic, we're going to pretend that the tree - // returned by the dynamic request is, in fact, a prefetch tree. Then we can - // use the same server response to write the actual data into the CacheNode - // tree. So it's the same flow as the "happy path" (prefetch, then - // navigation), except we use a single server response for both stages. - let dynamicRequestTree; - switch(freshnessPolicy){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].Default: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].HistoryTraversal: - dynamicRequestTree = currentFlightRouterState; - break; - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].Hydration: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].RefreshAll: - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].HMRRefresh: - dynamicRequestTree = DynamicRequestTreeForEntireRoute; - break; - default: - freshnessPolicy; - dynamicRequestTree = currentFlightRouterState; - break; - } - const promiseForDynamicServerResponse = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchServerResponse"])(url, { - flightRouterState: dynamicRequestTree, - nextUrl - }); - const result = await promiseForDynamicServerResponse; - if (typeof result === 'string') { - // This is an MPA navigation. - const newUrl = result; - return { - tag: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].MPA, - data: newUrl - }; - } - const { flightData, canonicalUrl, renderedSearch, debugInfo: debugInfoFromResponse } = result; - if (debugInfoFromResponse !== null) { - collectedDebugInfo.push(...debugInfoFromResponse); - } - // Since the response format of dynamic requests and prefetches is slightly - // different, we'll need to massage the data a bit. Create FlightRouterState - // tree that simulates what we'd receive as the result of a prefetch. - const navigationSeed = convertServerPatchToFullTree(currentFlightRouterState, flightData, renderedSearch); - return navigateToSeededRoute(now, url, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(canonicalUrl), navigationSeed, currentUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, shouldScroll); -} -function convertServerPatchToFullTree(currentTree, flightData, renderedSearch) { - // During a client navigation or prefetch, the server sends back only a patch - // for the parts of the tree that have changed. - // - // This applies the patch to the base tree to create a full representation of - // the resulting tree. - // - // The return type includes a full FlightRouterState tree and a full - // CacheNodeSeedData tree. (Conceptually these are the same tree, and should - // eventually be unified, but there's still lots of existing code that - // operates on FlightRouterState trees alone without the CacheNodeSeedData.) - // - // TODO: This similar to what apply-router-state-patch-to-tree does. It - // will eventually fully replace it. We should get rid of all the remaining - // places where we iterate over the server patch format. This should also - // eventually replace normalizeFlightData. - let baseTree = currentTree; - let baseData = null; - let head = null; - for (const { segmentPath, tree: treePatch, seedData: dataPatch, head: headPatch } of flightData){ - const result = convertServerPatchToFullTreeImpl(baseTree, baseData, treePatch, dataPatch, segmentPath, 0); - baseTree = result.tree; - baseData = result.data; - // This is the same for all patches per response, so just pick an - // arbitrary one - head = headPatch; - } - return { - tree: baseTree, - data: baseData, - renderedSearch, - head - }; -} -function convertServerPatchToFullTreeImpl(baseRouterState, baseData, treePatch, dataPatch, segmentPath, index) { - if (index === segmentPath.length) { - // We reached the part of the tree that we need to patch. - return { - tree: treePatch, - data: dataPatch - }; - } - // segmentPath represents the parent path of subtree. It's a repeating - // pattern of parallel route key and segment: - // - // [string, Segment, string, Segment, string, Segment, ...] - // - // This path tells us which part of the base tree to apply the tree patch. - // - // NOTE: We receive the FlightRouterState patch in the same request as the - // seed data patch. Therefore we don't need to worry about diffing the segment - // values; we can assume the server sent us a correct result. - const updatedParallelRouteKey = segmentPath[index]; - // const segment: Segment = segmentPath[index + 1] <-- Not used, see note above - const baseTreeChildren = baseRouterState[1]; - const baseSeedDataChildren = baseData !== null ? baseData[1] : null; - const newTreeChildren = {}; - const newSeedDataChildren = {}; - for(const parallelRouteKey in baseTreeChildren){ - const childBaseRouterState = baseTreeChildren[parallelRouteKey]; - const childBaseSeedData = baseSeedDataChildren !== null ? baseSeedDataChildren[parallelRouteKey] ?? null : null; - if (parallelRouteKey === updatedParallelRouteKey) { - const result = convertServerPatchToFullTreeImpl(childBaseRouterState, childBaseSeedData, treePatch, dataPatch, segmentPath, // the end of the segment path. - index + 2); - newTreeChildren[parallelRouteKey] = result.tree; - newSeedDataChildren[parallelRouteKey] = result.data; - } else { - // This child is not being patched. Copy it over as-is. - newTreeChildren[parallelRouteKey] = childBaseRouterState; - newSeedDataChildren[parallelRouteKey] = childBaseSeedData; - } - } - let clonedTree; - let clonedSeedData; - // Clone all the fields except the children. - // Clone the FlightRouterState tree. Based on equivalent logic in - // apply-router-state-patch-to-tree, but should confirm whether we need to - // copy all of these fields. Not sure the server ever sends, e.g. the - // refetch marker. - clonedTree = [ - baseRouterState[0], - newTreeChildren - ]; - if (2 in baseRouterState) { - clonedTree[2] = baseRouterState[2]; - } - if (3 in baseRouterState) { - clonedTree[3] = baseRouterState[3]; - } - if (4 in baseRouterState) { - clonedTree[4] = baseRouterState[4]; - } - // Clone the CacheNodeSeedData tree. - const isEmptySeedDataPartial = true; - clonedSeedData = [ - null, - newSeedDataChildren, - null, - isEmptySeedDataPartial, - false - ]; - return { - tree: clonedTree, - data: clonedSeedData - }; -} //# sourceMappingURL=navigation.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/reducers/navigate-reducer.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "DYNAMIC_STALETIME_MS", - ()=>DYNAMIC_STALETIME_MS, - "STATIC_STALETIME_MS", - ()=>STATIC_STALETIME_MS, - "generateSegmentsFromPatch", - ()=>generateSegmentsFromPatch, - "handleExternalUrl", - ()=>handleExternalUrl, - "handleNavigationResult", - ()=>handleNavigationResult, - "navigateReducer", - ()=>navigateReducer -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$handle$2d$mutable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/handle-mutable.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/navigation.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/cache.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -const DYNAMIC_STALETIME_MS = Number(("TURBOPACK compile-time value", "0")) * 1000; -const STATIC_STALETIME_MS = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$cache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getStaleTimeMs"])(Number(("TURBOPACK compile-time value", "300"))); -function handleExternalUrl(state, mutable, url, pendingPush) { - mutable.mpaNavigation = true; - mutable.canonicalUrl = url; - mutable.pendingPush = pendingPush; - mutable.scrollableSegments = undefined; - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$handle$2d$mutable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["handleMutable"])(state, mutable); -} -function generateSegmentsFromPatch(flightRouterPatch) { - const segments = []; - const [segment, parallelRoutes] = flightRouterPatch; - if (Object.keys(parallelRoutes).length === 0) { - return [ - [ - segment - ] - ]; - } - for (const [parallelRouteKey, parallelRoute] of Object.entries(parallelRoutes)){ - for (const childSegment of generateSegmentsFromPatch(parallelRoute)){ - // If the segment is empty, it means we are at the root of the tree - if (segment === '') { - segments.push([ - parallelRouteKey, - ...childSegment - ]); - } else { - segments.push([ - segment, - parallelRouteKey, - ...childSegment - ]); - } - } - } - return segments; -} -function handleNavigationResult(url, state, mutable, pendingPush, result) { - switch(result.tag){ - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].MPA: - { - // Perform an MPA navigation. - const newUrl = result.data; - return handleExternalUrl(state, mutable, newUrl, pendingPush); - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].Success: - { - // Received a new result. - mutable.cache = result.data.cacheNode; - mutable.patchedTree = result.data.flightRouterState; - mutable.renderedSearch = result.data.renderedSearch; - mutable.canonicalUrl = result.data.canonicalUrl; - // TODO: During a refresh, we don't set the `scrollableSegments`. There's - // some confusing and subtle logic in `handleMutable` that decides what - // to do when `shouldScroll` is set but `scrollableSegments` is not. I'm - // not convinced it's totally coherent but the tests assert on this - // particular behavior so I've ported the logic as-is from the previous - // router implementation, for now. - mutable.scrollableSegments = result.data.scrollableSegments ?? undefined; - mutable.shouldScroll = result.data.shouldScroll; - mutable.hashFragment = result.data.hash; - // Check if the only thing that changed was the hash fragment. - const oldUrl = new URL(state.canonicalUrl, url); - const onlyHashChange = // navigations are always same-origin. - url.pathname === oldUrl.pathname && url.search === oldUrl.search && url.hash !== oldUrl.hash; - if (onlyHashChange) { - // The only updated part of the URL is the hash. - mutable.onlyHashChange = true; - mutable.shouldScroll = result.data.shouldScroll; - mutable.hashFragment = url.hash; - // Setting this to an empty array triggers a scroll for all new and - // updated segments. See `ScrollAndFocusHandler` for more details. - mutable.scrollableSegments = []; - } - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$handle$2d$mutable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["handleMutable"])(state, mutable); - } - case __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationResultTag"].Async: - { - return result.data.then((asyncResult)=>handleNavigationResult(url, state, mutable, pendingPush, asyncResult), // TODO: This matches the current behavior but we need to do something - // better here if the network fails. - ()=>{ - return state; - }); - } - default: - { - result; - return state; - } - } -} -function navigateReducer(state, action) { - const { url, isExternalUrl, navigateType, shouldScroll } = action; - const mutable = {}; - const href = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(url); - const pendingPush = navigateType === 'push'; - mutable.preserveCustomHistoryState = false; - mutable.pendingPush = pendingPush; - if (isExternalUrl) { - return handleExternalUrl(state, mutable, url.toString(), pendingPush); - } - // Handles case where `` tag is present, - // which will trigger an MPA navigation. - if (document.getElementById('__next-page-redirect')) { - return handleExternalUrl(state, mutable, href, pendingPush); - } - // Temporary glue code between the router reducer and the new navigation - // implementation. Eventually we'll rewrite the router reducer to a - // state machine. - const currentUrl = new URL(state.canonicalUrl, location.origin); - const result = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["navigate"])(url, currentUrl, state.cache, state.tree, state.nextUrl, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["FreshnessPolicy"].Default, shouldScroll, mutable); - return handleNavigationResult(url, state, mutable, pendingPush, result); -} //# sourceMappingURL=navigate-reducer.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "FreshnessPolicy", - ()=>FreshnessPolicy, - "createInitialCacheNodeForHydration", - ()=>createInitialCacheNodeForHydration, - "isDeferredRsc", - ()=>isDeferredRsc, - "spawnDynamicRequests", - ()=>spawnDynamicRequests, - "startPPRNavigation", - ()=>startPPRNavigation -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-href-from-url.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-router-cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/fetch-server-response.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$use$2d$action$2d$queue$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/use-action-queue.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$router$2d$reducer$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/router-reducer-types.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$is$2d$navigating$2d$to$2d$new$2d$root$2d$layout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/is-navigating-to-new-root-layout.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/reducers/navigate-reducer.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/segment-cache/navigation.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -var FreshnessPolicy = /*#__PURE__*/ function(FreshnessPolicy) { - FreshnessPolicy[FreshnessPolicy["Default"] = 0] = "Default"; - FreshnessPolicy[FreshnessPolicy["Hydration"] = 1] = "Hydration"; - FreshnessPolicy[FreshnessPolicy["HistoryTraversal"] = 2] = "HistoryTraversal"; - FreshnessPolicy[FreshnessPolicy["RefreshAll"] = 3] = "RefreshAll"; - FreshnessPolicy[FreshnessPolicy["HMRRefresh"] = 4] = "HMRRefresh"; - return FreshnessPolicy; -}({}); -const noop = ()=>{}; -function createInitialCacheNodeForHydration(navigatedAt, initialTree, seedData, seedHead) { - // Create the initial cache node tree, using the data embedded into the - // HTML document. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const task = createCacheNodeOnNavigation(navigatedAt, initialTree, undefined, 1, seedData, seedHead, null, null, false, null, null, false, accumulation); - // NOTE: We intentionally don't check if any data needs to be fetched from the - // server. We assume the initial hydration payload is sufficient to render - // the page. - // - // The completeness of the initial data is an important property that we rely - // on as a last-ditch mechanism for recovering the app; we must always be able - // to reload a fresh HTML document to get to a consistent state. - // - // In the future, there may be cases where the server intentionally sends - // partial data and expects the client to fill in the rest, in which case this - // logic may change. (There already is a similar case where the server sends - // _no_ hydration data in the HTML document at all, and the client fetches it - // separately, but that's different because we still end up hydrating with a - // complete tree.) - return task.node; -} -function startPPRNavigation(navigatedAt, oldUrl, oldCacheNode, oldRouterState, newRouterState, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, accumulation) { - const didFindRootLayout = false; - const parentNeedsDynamicRequest = false; - const parentRefreshUrl = null; - return updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNode !== null ? oldCacheNode : undefined, oldRouterState, newRouterState, freshness, didFindRootLayout, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, null, null, parentNeedsDynamicRequest, parentRefreshUrl, accumulation); -} -function updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNode, oldRouterState, newRouterState, freshness, didFindRootLayout, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, parentRefreshUrl, accumulation) { - // Check if this segment matches the one in the previous route. - const oldSegment = oldRouterState[0]; - const newSegment = newRouterState[0]; - if (!(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(newSegment, oldSegment)) { - // This segment does not match the previous route. We're now entering the - // new part of the target route. Switch to the "create" path. - if (// highest-level layout in a route tree is referred to as the "root" - // layout.) This could mean that we're navigating between two different - // root layouts. When this happens, we perform a full-page (MPA-style) - // navigation. - // - // However, the algorithm for deciding where to start rendering a route - // (i.e. the one performed in order to reach this function) is stricter - // than the one used to detect a change in the root layout. So just - // because we're re-rendering a segment outside of the root layout does - // not mean we should trigger a full-page navigation. - // - // Specifically, we handle dynamic parameters differently: two segments - // are considered the same even if their parameter values are different. - // - // Refer to isNavigatingToNewRootLayout for details. - // - // Note that we only have to perform this extra traversal if we didn't - // already discover a root layout in the part of the tree that is - // unchanged. We also only need to compare the subtree that is not - // shared. In the common case, this branch is skipped completely. - !didFindRootLayout && (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$is$2d$navigating$2d$to$2d$new$2d$root$2d$layout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isNavigatingToNewRootLayout"])(oldRouterState, newRouterState) || // The global Not Found route (app/global-not-found.tsx) is a special - // case, because it acts like a root layout, but in the router tree, it - // is rendered in the same position as app/layout.tsx. - // - // Any navigation to the global Not Found route should trigger a - // full-page navigation. - // - // TODO: We should probably model this by changing the key of the root - // segment when this happens. Then the root layout check would work - // as expected, without a special case. - newSegment === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NOT_FOUND_SEGMENT_KEY"]) { - return null; - } - if (parentSegmentPath === null || parentParallelRouteKey === null) { - // The root should never mismatch. If it does, it suggests an internal - // Next.js error, or a malformed server response. Trigger a full- - // page navigation. - return null; - } - return createCacheNodeOnNavigation(navigatedAt, newRouterState, oldCacheNode, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, accumulation); - } - // TODO: The segment paths are tracked so that LayoutRouter knows which - // segments to scroll to after a navigation. But we should just mark this - // information on the CacheNode directly. It used to be necessary to do this - // separately because CacheNodes were created lazily during render, not when - // rather than when creating the route tree. - const segmentPath = parentParallelRouteKey !== null && parentSegmentPath !== null ? parentSegmentPath.concat([ - parentParallelRouteKey, - newSegment - ]) : []; - const newRouterStateChildren = newRouterState[1]; - const oldRouterStateChildren = oldRouterState[1]; - const seedDataChildren = seedData !== null ? seedData[1] : null; - const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null; - // We're currently traversing the part of the tree that was also part of - // the previous route. If we discover a root layout, then we don't need to - // trigger an MPA navigation. - const isRootLayout = newRouterState[4] === true; - const childDidFindRootLayout = didFindRootLayout || isRootLayout; - const oldParallelRoutes = oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined; - // Clone the current set of segment children, even if they aren't active in - // the new tree. - // TODO: We currently retain all the inactive segments indefinitely, until - // there's an explicit refresh, or a parent layout is lazily refreshed. We - // rely on this for popstate navigations, which update the Router State Tree - // but do not eagerly perform a data fetch, because they expect the segment - // data to already be in the Cache Node tree. For highly static sites that - // are mostly read-only, this may happen only rarely, causing memory to - // leak. We should figure out a better model for the lifetime of inactive - // segments, so we can maintain instant back/forward navigations without - // leaking memory indefinitely. - let shouldDropSiblingCaches = false; - let shouldRefreshDynamicData = false; - switch(freshness){ - case 0: - case 2: - case 1: - // We should never drop dynamic data in shared layouts, except during - // a refresh. - shouldDropSiblingCaches = false; - shouldRefreshDynamicData = false; - break; - case 3: - case 4: - shouldDropSiblingCaches = true; - shouldRefreshDynamicData = true; - break; - default: - freshness; - break; - } - const newParallelRoutes = new Map(shouldDropSiblingCaches ? undefined : oldParallelRoutes); - // TODO: We're not consistent about how we do this check. Some places - // check if the segment starts with PAGE_SEGMENT_KEY, but most seem to - // check if there any any children, which is why I'm doing it here. We - // should probably encode an empty children set as `null` though. Either - // way, we should update all the checks to be consistent. - const isLeafSegment = Object.keys(newRouterStateChildren).length === 0; - // Get the data for this segment. Since it was part of the previous route, - // usually we just clone the data from the old CacheNode. However, during a - // refresh or a revalidation, there won't be any existing CacheNode. So we - // may need to consult the prefetch cache, like we would for a new segment. - let newCacheNode; - let needsDynamicRequest; - if (oldCacheNode !== undefined && !shouldRefreshDynamicData && // During a same-page navigation, we always refetch the page segments - !(isLeafSegment && isSamePageNavigation)) { - // Reuse the existing CacheNode - const dropPrefetchRsc = false; - newCacheNode = reuseDynamicCacheNode(dropPrefetchRsc, oldCacheNode, newParallelRoutes); - needsDynamicRequest = false; - } else if (seedData !== null && seedData[0] !== null) { - // If this navigation was the result of an action, then check if the - // server sent back data in the action response. We should favor using - // that, rather than performing a separate request. This is both better - // for performance and it's more likely to be consistent with any - // writes that were just performed by the action, compared to a - // separate request. - const seedRsc = seedData[0]; - const seedLoading = seedData[2]; - const isSeedRscPartial = false; - const isSeedHeadPartial = seedHead === null; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isLeafSegment && isSeedHeadPartial; - } else if (prefetchData !== null) { - // Consult the prefetch cache. - const prefetchRsc = prefetchData[0]; - const prefetchLoading = prefetchData[2]; - const isPrefetchRSCPartial = prefetchData[3]; - newCacheNode = readCacheNodeFromSeedData(prefetchRsc, prefetchLoading, isPrefetchRSCPartial, prefetchHead, isPrefetchHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isPrefetchRSCPartial || isLeafSegment && isPrefetchHeadPartial; - } else { - // Spawn a request to fetch new data from the server. - newCacheNode = spawnNewCacheNode(newParallelRoutes, isLeafSegment, navigatedAt, freshness); - needsDynamicRequest = true; - } - // During a refresh navigation, there's a special case that happens when - // entering a "default" slot. The default slot may not be part of the - // current route; it may have been reused from an older route. If so, - // we need to fetch its data from the old route's URL rather than current - // route's URL. Keep track of this as we traverse the tree. - const href = newRouterState[2]; - const refreshUrl = typeof href === 'string' && newRouterState[3] === 'refresh' ? href : parentRefreshUrl; - // If this segment itself needs to fetch new data from the server, then by - // definition it is being refreshed. Track its refresh URL so we know which - // URL to request the data from. - if (needsDynamicRequest && refreshUrl !== null) { - accumulateRefreshUrl(accumulation, refreshUrl); - } - // As we diff the trees, we may sometimes modify (copy-on-write, not mutate) - // the Route Tree that was returned by the server — for example, in the case - // of default parallel routes, we preserve the currently active segment. To - // avoid mutating the original tree, we clone the router state children along - // the return path. - let patchedRouterStateChildren = {}; - let taskChildren = null; - // Most navigations require a request to fetch additional data from the - // server, either because the data was not already prefetched, or because the - // target route contains dynamic data that cannot be prefetched. - // - // However, if the target route is fully static, and it's already completely - // loaded into the segment cache, then we can skip the server request. - // - // This starts off as `false`, and is set to `true` if any of the child - // routes requires a dynamic request. - let childNeedsDynamicRequest = false; - // As we traverse the children, we'll construct a FlightRouterState that can - // be sent to the server to request the dynamic data. If it turns out that - // nothing in the subtree is dynamic (i.e. childNeedsDynamicRequest is false - // at the end), then this will be discarded. - // TODO: We can probably optimize the format of this data structure to only - // include paths that are dynamic. Instead of reusing the - // FlightRouterState type. - let dynamicRequestTreeChildren = {}; - for(let parallelRouteKey in newRouterStateChildren){ - let newRouterStateChild = newRouterStateChildren[parallelRouteKey]; - const oldRouterStateChild = oldRouterStateChildren[parallelRouteKey]; - if (oldRouterStateChild === undefined) { - // This should never happen, but if it does, it suggests a malformed - // server response. Trigger a full-page navigation. - return null; - } - const oldSegmentMapChild = oldParallelRoutes !== undefined ? oldParallelRoutes.get(parallelRouteKey) : undefined; - let seedDataChild = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null; - let prefetchDataChild = prefetchDataChildren !== null ? prefetchDataChildren[parallelRouteKey] : null; - let newSegmentChild = newRouterStateChild[0]; - let seedHeadChild = seedHead; - let prefetchHeadChild = prefetchHead; - let isPrefetchHeadPartialChild = isPrefetchHeadPartial; - if (// was stashed in the history entry as-is. - freshness !== 2 && newSegmentChild === __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DEFAULT_SEGMENT_KEY"]) { - // This is a "default" segment. These are never sent by the server during - // a soft navigation; instead, the client reuses whatever segment was - // already active in that slot on the previous route. - newRouterStateChild = reuseActiveSegmentInDefaultSlot(oldUrl, oldRouterStateChild); - newSegmentChild = newRouterStateChild[0]; - // Since we're switching to a different route tree, these are no - // longer valid, because they correspond to the outer tree. - seedDataChild = null; - seedHeadChild = null; - prefetchDataChild = null; - prefetchHeadChild = null; - isPrefetchHeadPartialChild = false; - } - const newSegmentKeyChild = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createRouterCacheKey"])(newSegmentChild); - const oldCacheNodeChild = oldSegmentMapChild !== undefined ? oldSegmentMapChild.get(newSegmentKeyChild) : undefined; - const taskChild = updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNodeChild, oldRouterStateChild, newRouterStateChild, freshness, childDidFindRootLayout, seedDataChild ?? null, seedHeadChild, prefetchDataChild ?? null, prefetchHeadChild, isPrefetchHeadPartialChild, isSamePageNavigation, segmentPath, parallelRouteKey, parentNeedsDynamicRequest || needsDynamicRequest, refreshUrl, accumulation); - if (taskChild === null) { - // One of the child tasks discovered a change to the root layout. - // Immediately unwind from this recursive traversal. This will trigger a - // full-page navigation. - return null; - } - // Recursively propagate up the child tasks. - if (taskChildren === null) { - taskChildren = new Map(); - } - taskChildren.set(parallelRouteKey, taskChild); - const newCacheNodeChild = taskChild.node; - if (newCacheNodeChild !== null) { - const newSegmentMapChild = new Map(shouldDropSiblingCaches ? undefined : oldSegmentMapChild); - newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild); - newParallelRoutes.set(parallelRouteKey, newSegmentMapChild); - } - // The child tree's route state may be different from the prefetched - // route sent by the server. We need to clone it as we traverse back up - // the tree. - const taskChildRoute = taskChild.route; - patchedRouterStateChildren[parallelRouteKey] = taskChildRoute; - const dynamicRequestTreeChild = taskChild.dynamicRequestTree; - if (dynamicRequestTreeChild !== null) { - // Something in the child tree is dynamic. - childNeedsDynamicRequest = true; - dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild; - } else { - dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute; - } - } - return { - status: needsDynamicRequest ? 0 : 1, - route: patchRouterStateWithNewChildren(newRouterState, patchedRouterStateChildren), - node: newCacheNode, - dynamicRequestTree: createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest), - refreshUrl, - children: taskChildren - }; -} -function createCacheNodeOnNavigation(navigatedAt, newRouterState, oldCacheNode, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, accumulation) { - // Same traversal as updateCacheNodeNavigation, but simpler. We switch to this - // path once we reach the part of the tree that was not in the previous route. - // We don't need to diff against the old tree, we just need to create a new - // one. We also don't need to worry about any refresh-related logic. - // - // For the most part, this is a subset of updateCacheNodeOnNavigation, so any - // change that happens in this function likely needs to be applied to that - // one, too. However there are some places where the behavior intentionally - // diverges, which is why we keep them separate. - const newSegment = newRouterState[0]; - const segmentPath = parentParallelRouteKey !== null && parentSegmentPath !== null ? parentSegmentPath.concat([ - parentParallelRouteKey, - newSegment - ]) : []; - const newRouterStateChildren = newRouterState[1]; - const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null; - const seedDataChildren = seedData !== null ? seedData[1] : null; - const oldParallelRoutes = oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined; - let shouldDropSiblingCaches = false; - let shouldRefreshDynamicData = false; - let dropPrefetchRsc = false; - switch(freshness){ - case 0: - // We should never drop dynamic data in sibling caches except during - // a refresh. - shouldDropSiblingCaches = false; - // Only reuse the dynamic data if experimental.staleTimes.dynamic config - // is set, and the data is not stale. (This is not a recommended API with - // Cache Components, but it's supported for backwards compatibility. Use - // cacheLife instead.) - // - // DYNAMIC_STALETIME_MS defaults to 0, but it can be increased. - shouldRefreshDynamicData = oldCacheNode === undefined || navigatedAt - oldCacheNode.navigatedAt >= __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$reducers$2f$navigate$2d$reducer$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["DYNAMIC_STALETIME_MS"]; - dropPrefetchRsc = false; - break; - case 1: - // During hydration, we assume the data sent by the server is both - // consistent and complete. - shouldRefreshDynamicData = false; - shouldDropSiblingCaches = false; - dropPrefetchRsc = false; - break; - case 2: - // During back/forward navigations, we reuse the dynamic data regardless - // of how stale it may be. - shouldRefreshDynamicData = false; - shouldRefreshDynamicData = false; - // Only show prefetched data if the dynamic data is still pending. This - // avoids a flash back to the prefetch state in a case where it's highly - // likely to have already streamed in. - // - // Tehnically, what we're actually checking is whether the dynamic network - // response was received. But since it's a streaming response, this does - // not mean that all the dynamic data has fully streamed in. It just means - // that _some_ of the dynamic data was received. But as a heuristic, we - // assume that the rest dynamic data will stream in quickly, so it's still - // better to skip the prefetch state. - if (oldCacheNode !== undefined) { - const oldRsc = oldCacheNode.rsc; - const oldRscDidResolve = !isDeferredRsc(oldRsc) || oldRsc.status !== 'pending'; - dropPrefetchRsc = oldRscDidResolve; - } else { - dropPrefetchRsc = false; - } - break; - case 3: - case 4: - // Drop all dynamic data. - shouldRefreshDynamicData = true; - shouldDropSiblingCaches = true; - dropPrefetchRsc = false; - break; - default: - freshness; - break; - } - const newParallelRoutes = new Map(shouldDropSiblingCaches ? undefined : oldParallelRoutes); - const isLeafSegment = Object.keys(newRouterStateChildren).length === 0; - if (isLeafSegment) { - // The segment path of every leaf segment (i.e. page) is collected into - // a result array. This is used by the LayoutRouter to scroll to ensure that - // new pages are visible after a navigation. - // - // This only happens for new pages, not for refreshed pages. - // - // TODO: We should use a string to represent the segment path instead of - // an array. We already use a string representation for the path when - // accessing the Segment Cache, so we can use the same one. - if (accumulation.scrollableSegments === null) { - accumulation.scrollableSegments = []; - } - accumulation.scrollableSegments.push(segmentPath); - } - let newCacheNode; - let needsDynamicRequest; - if (!shouldRefreshDynamicData && oldCacheNode !== undefined) { - // Reuse the existing CacheNode - newCacheNode = reuseDynamicCacheNode(dropPrefetchRsc, oldCacheNode, newParallelRoutes); - needsDynamicRequest = false; - } else if (seedData !== null && seedData[0] !== null) { - // If this navigation was the result of an action, then check if the - // server sent back data in the action response. We should favor using - // that, rather than performing a separate request. This is both better - // for performance and it's more likely to be consistent with any - // writes that were just performed by the action, compared to a - // separate request. - const seedRsc = seedData[0]; - const seedLoading = seedData[2]; - const isSeedRscPartial = false; - const isSeedHeadPartial = seedHead === null && freshness !== 1; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isLeafSegment && isSeedHeadPartial; - } else if (freshness === 1 && isLeafSegment && seedHead !== null) { - // This is another weird case related to "not found" pages and hydration. - // There will be a head sent by the server, but no page seed data. - // TODO: We really should get rid of all these "not found" specific quirks - // and make sure the tree is always consistent. - const seedRsc = null; - const seedLoading = null; - const isSeedRscPartial = false; - const isSeedHeadPartial = false; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = false; - } else if (freshness !== 1 && prefetchData !== null) { - // Consult the prefetch cache. - const prefetchRsc = prefetchData[0]; - const prefetchLoading = prefetchData[2]; - const isPrefetchRSCPartial = prefetchData[3]; - newCacheNode = readCacheNodeFromSeedData(prefetchRsc, prefetchLoading, isPrefetchRSCPartial, prefetchHead, isPrefetchHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isPrefetchRSCPartial || isLeafSegment && isPrefetchHeadPartial; - } else { - // Spawn a request to fetch new data from the server. - newCacheNode = spawnNewCacheNode(newParallelRoutes, isLeafSegment, navigatedAt, freshness); - needsDynamicRequest = true; - } - let patchedRouterStateChildren = {}; - let taskChildren = null; - let childNeedsDynamicRequest = false; - let dynamicRequestTreeChildren = {}; - for(let parallelRouteKey in newRouterStateChildren){ - const newRouterStateChild = newRouterStateChildren[parallelRouteKey]; - const oldSegmentMapChild = oldParallelRoutes !== undefined ? oldParallelRoutes.get(parallelRouteKey) : undefined; - const seedDataChild = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null; - const prefetchDataChild = prefetchDataChildren !== null ? prefetchDataChildren[parallelRouteKey] : null; - const newSegmentChild = newRouterStateChild[0]; - const newSegmentKeyChild = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createRouterCacheKey"])(newSegmentChild); - const oldCacheNodeChild = oldSegmentMapChild !== undefined ? oldSegmentMapChild.get(newSegmentKeyChild) : undefined; - const taskChild = createCacheNodeOnNavigation(navigatedAt, newRouterStateChild, oldCacheNodeChild, freshness, seedDataChild ?? null, seedHead, prefetchDataChild ?? null, prefetchHead, isPrefetchHeadPartial, segmentPath, parallelRouteKey, parentNeedsDynamicRequest || needsDynamicRequest, accumulation); - if (taskChildren === null) { - taskChildren = new Map(); - } - taskChildren.set(parallelRouteKey, taskChild); - const newCacheNodeChild = taskChild.node; - if (newCacheNodeChild !== null) { - const newSegmentMapChild = new Map(shouldDropSiblingCaches ? undefined : oldSegmentMapChild); - newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild); - newParallelRoutes.set(parallelRouteKey, newSegmentMapChild); - } - const taskChildRoute = taskChild.route; - patchedRouterStateChildren[parallelRouteKey] = taskChildRoute; - const dynamicRequestTreeChild = taskChild.dynamicRequestTree; - if (dynamicRequestTreeChild !== null) { - childNeedsDynamicRequest = true; - dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild; - } else { - dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute; - } - } - return { - status: needsDynamicRequest ? 0 : 1, - route: patchRouterStateWithNewChildren(newRouterState, patchedRouterStateChildren), - node: newCacheNode, - dynamicRequestTree: createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest), - // This route is not part of the current tree, so there's no reason to - // track the refresh URL. - refreshUrl: null, - children: taskChildren - }; -} -function patchRouterStateWithNewChildren(baseRouterState, newChildren) { - const clone = [ - baseRouterState[0], - newChildren - ]; - // Based on equivalent logic in apply-router-state-patch-to-tree, but should - // confirm whether we need to copy all of these fields. Not sure the server - // ever sends, e.g. the refetch marker. - if (2 in baseRouterState) { - clone[2] = baseRouterState[2]; - } - if (3 in baseRouterState) { - clone[3] = baseRouterState[3]; - } - if (4 in baseRouterState) { - clone[4] = baseRouterState[4]; - } - return clone; -} -function createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest) { - // Create a FlightRouterState that instructs the server how to render the - // requested segment. - // - // Or, if neither this segment nor any of the children require a new data, - // then we return `null` to skip the request. - let dynamicRequestTree = null; - if (needsDynamicRequest) { - dynamicRequestTree = patchRouterStateWithNewChildren(newRouterState, dynamicRequestTreeChildren); - // The "refetch" marker is set on the top-most segment that requires new - // data. We can omit it if a parent was already marked. - if (!parentNeedsDynamicRequest) { - dynamicRequestTree[3] = 'refetch'; - } - } else if (childNeedsDynamicRequest) { - // This segment does not request new data, but at least one of its - // children does. - dynamicRequestTree = patchRouterStateWithNewChildren(newRouterState, dynamicRequestTreeChildren); - } else { - dynamicRequestTree = null; - } - return dynamicRequestTree; -} -function accumulateRefreshUrl(accumulation, refreshUrl) { - // This is a refresh navigation, and we're inside a "default" slot that's - // not part of the current route; it was reused from an older route. In - // order to get fresh data for this reused route, we need to issue a - // separate request using the old route's URL. - // - // Track these extra URLs in the accumulated result. Later, we'll construct - // an appropriate request for each unique URL in the final set. The reason - // we don't do it immediately here is so we can deduplicate multiple - // instances of the same URL into a single request. See - // listenForDynamicRequest for more details. - const separateRefreshUrls = accumulation.separateRefreshUrls; - if (separateRefreshUrls === null) { - accumulation.separateRefreshUrls = new Set([ - refreshUrl - ]); - } else { - separateRefreshUrls.add(refreshUrl); - } -} -function reuseActiveSegmentInDefaultSlot(oldUrl, oldRouterState) { - // This is a "default" segment. These are never sent by the server during a - // soft navigation; instead, the client reuses whatever segment was already - // active in that slot on the previous route. This means if we later need to - // refresh the segment, it will have to be refetched from the previous route's - // URL. We store it in the Flight Router State. - // - // TODO: We also mark the segment with a "refresh" marker but I think we can - // get rid of that eventually by making sure we only add URLs to page segments - // that are reused. Then the presence of the URL alone is enough. - let reusedRouterState; - const oldRefreshMarker = oldRouterState[3]; - if (oldRefreshMarker === 'refresh') { - // This segment was already reused from an even older route. Keep its - // existing URL and refresh marker. - reusedRouterState = oldRouterState; - } else { - // This segment was not previously reused, and it's not on the new route. - // So it must have been delivered in the old route. - reusedRouterState = patchRouterStateWithNewChildren(oldRouterState, oldRouterState[1]); - reusedRouterState[2] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(oldUrl); - reusedRouterState[3] = 'refresh'; - } - return reusedRouterState; -} -function reuseDynamicCacheNode(dropPrefetchRsc, existingCacheNode, parallelRoutes) { - // Clone an existing CacheNode's data, with (possibly) new children. - const cacheNode = { - rsc: existingCacheNode.rsc, - prefetchRsc: dropPrefetchRsc ? null : existingCacheNode.prefetchRsc, - head: existingCacheNode.head, - prefetchHead: dropPrefetchRsc ? null : existingCacheNode.prefetchHead, - loading: existingCacheNode.loading, - parallelRoutes, - // Don't update the navigatedAt timestamp, since we're reusing - // existing data. - navigatedAt: existingCacheNode.navigatedAt - }; - return cacheNode; -} -function readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isPageSegment, parallelRoutes, navigatedAt) { - // TODO: Currently this is threaded through the navigation logic using the - // CacheNodeSeedData type, but in the future this will read directly from - // the Segment Cache. See readRenderSnapshotFromCache. - let rsc; - let prefetchRsc; - if (isSeedRscPartial) { - // The prefetched data contains dynamic holes. Create a pending promise that - // will be fulfilled when the dynamic data is received from the server. - prefetchRsc = seedRsc; - rsc = createDeferredRsc(); - } else { - // The prefetched data is complete. Use it directly. - prefetchRsc = null; - rsc = seedRsc; - } - // If this is a page segment, also read the head. - let prefetchHead; - let head; - if (isPageSegment) { - if (isSeedHeadPartial) { - prefetchHead = seedHead; - head = createDeferredRsc(); - } else { - prefetchHead = null; - head = seedHead; - } - } else { - prefetchHead = null; - head = null; - } - const cacheNode = { - rsc, - prefetchRsc, - head, - prefetchHead, - // TODO: Technically, a loading boundary could contain dynamic data. We - // should have separate `loading` and `prefetchLoading` fields to handle - // this, like we do for the segment data and head. - loading: seedLoading, - parallelRoutes, - navigatedAt - }; - return cacheNode; -} -function spawnNewCacheNode(parallelRoutes, isLeafSegment, navigatedAt, freshness) { - // We should never spawn network requests during hydration. We must treat the - // initial payload as authoritative, because the initial page load is used - // as a last-ditch mechanism for recovering the app. - // - // This is also an important safety check because if this leaks into the - // server rendering path (which theoretically it never should because - // the server payload should be consistent), the server would hang because - // these promises would never resolve. - // - // TODO: There is an existing case where the global "not found" boundary - // triggers this path. But it does render correctly despite that. That's an - // unusual render path so it's not surprising, but we should look into - // modeling it in a more consistent way. See also the /_notFound special - // case in updateCacheNodeOnNavigation. - const isHydration = freshness === 1; - const cacheNode = { - rsc: !isHydration ? createDeferredRsc() : null, - prefetchRsc: null, - head: !isHydration && isLeafSegment ? createDeferredRsc() : null, - prefetchHead: null, - loading: !isHydration ? createDeferredRsc() : null, - parallelRoutes, - navigatedAt - }; - return cacheNode; -} -// Represents whether the previuos navigation resulted in a route tree mismatch. -// A mismatch results in a refresh of the page. If there are two successive -// mismatches, we will fall back to an MPA navigation, to prevent a retry loop. -let previousNavigationDidMismatch = false; -function spawnDynamicRequests(task, primaryUrl, nextUrl, freshnessPolicy, accumulation) { - const dynamicRequestTree = task.dynamicRequestTree; - if (dynamicRequestTree === null) { - // This navigation was fully cached. There are no dynamic requests to spawn. - previousNavigationDidMismatch = false; - return; - } - // This is intentionally not an async function to discourage the caller from - // awaiting the result. Any subsequent async operations spawned by this - // function should result in a separate navigation task, rather than - // block the original one. - // - // In this function we spawn (but do not await) all the network requests that - // block the navigation, and collect the promises. The next function, - // `finishNavigationTask`, can await the promises in any order without - // accidentally introducing a network waterfall. - const primaryRequestPromise = fetchMissingDynamicData(task, dynamicRequestTree, primaryUrl, nextUrl, freshnessPolicy); - const separateRefreshUrls = accumulation.separateRefreshUrls; - let refreshRequestPromises = null; - if (separateRefreshUrls !== null) { - // There are multiple URLs that we need to request the data from. This - // happens when a "default" parallel route slot is present in the tree, and - // its data cannot be fetched from the current route. We need to split the - // combined dynamic request tree into separate requests per URL. - // TODO: Create a scoped dynamic request tree that omits anything that - // is not relevant to the given URL. Without doing this, the server may - // sometimes render more data than necessary; this is not a regression - // compared to the pre-Segment Cache implementation, though, just an - // optimization we can make in the future. - // Construct a request tree for each additional refresh URL. This will - // prune away everything except the parts of the tree that match the - // given refresh URL. - refreshRequestPromises = []; - const canonicalUrl = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$href$2d$from$2d$url$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createHrefFromUrl"])(primaryUrl); - for (const refreshUrl of separateRefreshUrls){ - if (refreshUrl === canonicalUrl) { - continue; - } - // TODO: Create a scoped dynamic request tree that omits anything that - // is not relevant to the given URL. Without doing this, the server may - // sometimes render more data than necessary; this is not a regression - // compared to the pre-Segment Cache implementation, though, just an - // optimization we can make in the future. - // const scopedDynamicRequestTree = splitTaskByURL(task, refreshUrl) - const scopedDynamicRequestTree = dynamicRequestTree; - if (scopedDynamicRequestTree !== null) { - refreshRequestPromises.push(fetchMissingDynamicData(task, scopedDynamicRequestTree, new URL(refreshUrl, location.origin), // time the refresh URL was set, not the current Next-Url. Need to - // start tracking this alongside the refresh URL. In the meantime, - // if a refresh fails due to a mismatch, it will trigger a - // hard refresh. - nextUrl, freshnessPolicy)); - } - } - } - // Further async operations are moved into this separate function to - // discourage sequential network requests. - const voidPromise = finishNavigationTask(task, nextUrl, primaryRequestPromise, refreshRequestPromises); - // `finishNavigationTask` is responsible for error handling, so we can attach - // noop callbacks to this promise. - voidPromise.then(noop, noop); -} -async function finishNavigationTask(task, nextUrl, primaryRequestPromise, refreshRequestPromises) { - // Wait for all the requests to finish, or for the first one to fail. - let exitStatus = await waitForRequestsToFinish(primaryRequestPromise, refreshRequestPromises); - // Once the all the requests have finished, check the tree for any remaining - // pending tasks. If anything is still pending, it means the server response - // does not match the client, and we must refresh to get back to a consistent - // state. We can skip this step if we already detected a mismatch during the - // first phase; it doesn't matter in that case because we're going to refresh - // the whole tree regardless. - if (exitStatus === 0) { - exitStatus = abortRemainingPendingTasks(task, null, null); - } - switch(exitStatus){ - case 0: - { - // The task has completely finished. There's no missing data. Exit. - previousNavigationDidMismatch = false; - return; - } - case 1: - { - // Some data failed to finish loading. Trigger a soft retry. - // TODO: As an extra precaution against soft retry loops, consider - // tracking whether a navigation was itself triggered by a retry. If two - // happen in a row, fall back to a hard retry. - const isHardRetry = false; - const primaryRequestResult = await primaryRequestPromise; - dispatchRetryDueToTreeMismatch(isHardRetry, primaryRequestResult.url, nextUrl, primaryRequestResult.seed, task.route); - return; - } - case 2: - { - // Some data failed to finish loading in a non-recoverable way, such as a - // network error. Trigger an MPA navigation. - // - // Hard navigating/refreshing is how we prevent an infinite retry loop - // caused by a network error — when the network fails, we fall back to the - // browser behavior for offline navigations. In the future, Next.js may - // introduce its own custom handling of offline navigations, but that - // doesn't exist yet. - const isHardRetry = true; - const primaryRequestResult = await primaryRequestPromise; - dispatchRetryDueToTreeMismatch(isHardRetry, primaryRequestResult.url, nextUrl, primaryRequestResult.seed, task.route); - return; - } - default: - { - return exitStatus; - } - } -} -function waitForRequestsToFinish(primaryRequestPromise, refreshRequestPromises) { - // Custom async combinator logic. This could be replaced by Promise.any but - // we don't assume that's available. - // - // Each promise resolves once the server responsds and the data is written - // into the CacheNode tree. Resolve the combined promise once all the - // requests finish. - // - // Or, resolve as soon as one of the requests fails, without waiting for the - // others to finish. - return new Promise((resolve)=>{ - const onFulfill = (result)=>{ - if (result.exitStatus === 0) { - remainingCount--; - if (remainingCount === 0) { - // All the requests finished successfully. - resolve(0); - } - } else { - // One of the requests failed. Exit with a failing status. - // NOTE: It's possible for one of the requests to fail with SoftRetry - // and a later one to fail with HardRetry. In this case, we choose to - // retry immediately, rather than delay the retry until all the requests - // finish. If it fails again, we will hard retry on the next - // attempt, anyway. - resolve(result.exitStatus); - } - }; - // onReject shouldn't ever be called because fetchMissingDynamicData's - // entire body is wrapped in a try/catch. This is just defensive. - const onReject = ()=>resolve(2); - // Attach the listeners to the promises. - let remainingCount = 1; - primaryRequestPromise.then(onFulfill, onReject); - if (refreshRequestPromises !== null) { - remainingCount += refreshRequestPromises.length; - refreshRequestPromises.forEach((refreshRequestPromise)=>refreshRequestPromise.then(onFulfill, onReject)); - } - }); -} -function dispatchRetryDueToTreeMismatch(isHardRetry, retryUrl, retryNextUrl, seed, baseTree) { - // If this is the second time in a row that a navigation resulted in a - // mismatch, fall back to a hard (MPA) refresh. - isHardRetry = isHardRetry || previousNavigationDidMismatch; - previousNavigationDidMismatch = true; - const retryAction = { - type: __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$router$2d$reducer$2d$types$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ACTION_SERVER_PATCH"], - previousTree: baseTree, - url: retryUrl, - nextUrl: retryNextUrl, - seed, - mpa: isHardRetry - }; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$use$2d$action$2d$queue$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatchAppRouterAction"])(retryAction); -} -async function fetchMissingDynamicData(task, dynamicRequestTree, url, nextUrl, freshnessPolicy) { - try { - const result = await (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$fetch$2d$server$2d$response$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["fetchServerResponse"])(url, { - flightRouterState: dynamicRequestTree, - nextUrl, - isHmrRefresh: freshnessPolicy === 4 - }); - if (typeof result === 'string') { - // fetchServerResponse will return an href to indicate that the SPA - // navigation failed. For example, if the server triggered a hard - // redirect, or the fetch request errored. Initiate an MPA navigation - // to the given href. - return { - exitStatus: 2, - url: new URL(result, location.origin), - seed: null - }; - } - const seed = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$segment$2d$cache$2f$navigation$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["convertServerPatchToFullTree"])(task.route, result.flightData, result.renderedSearch); - const didReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(task, seed.tree, seed.data, seed.head, result.debugInfo); - return { - exitStatus: didReceiveUnknownParallelRoute ? 1 : 0, - url: new URL(result.canonicalUrl, location.origin), - seed - }; - } catch { - // This shouldn't happen because fetchServerResponse's entire body is - // wrapped in a try/catch. If it does, though, it implies the server failed - // to respond with any tree at all. So we must fall back to a hard retry. - return { - exitStatus: 2, - url: url, - seed: null - }; - } -} -function writeDynamicDataIntoNavigationTask(task, serverRouterState, dynamicData, dynamicHead, debugInfo) { - if (task.status === 0 && dynamicData !== null) { - task.status = 1; - finishPendingCacheNode(task.node, dynamicData, dynamicHead, debugInfo); - } - const taskChildren = task.children; - const serverChildren = serverRouterState[1]; - const dynamicDataChildren = dynamicData !== null ? dynamicData[1] : null; - // Detect whether the server sends a parallel route slot that the client - // doesn't know about. - let didReceiveUnknownParallelRoute = false; - if (taskChildren !== null) { - for(const parallelRouteKey in serverChildren){ - const serverRouterStateChild = serverChildren[parallelRouteKey]; - const dynamicDataChild = dynamicDataChildren !== null ? dynamicDataChildren[parallelRouteKey] : null; - const taskChild = taskChildren.get(parallelRouteKey); - if (taskChild === undefined) { - // The server sent a child segment that the client doesn't know about. - // - // When we receive an unknown parallel route, we must consider it a - // mismatch. This is unlike the case where the segment itself - // mismatches, because multiple routes can be active simultaneously. - // But a given layout should never have a mismatching set of - // child slots. - // - // Theoretically, this should only happen in development during an HMR - // refresh, because the set of parallel routes for a layout does not - // change over the lifetime of a build/deployment. In production, we - // should have already mismatched on either the build id or the segment - // path. But as an extra precaution, we validate in prod, too. - didReceiveUnknownParallelRoute = true; - } else { - const taskSegment = taskChild.route[0]; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(serverRouterStateChild[0], taskSegment) && dynamicDataChild !== null && dynamicDataChild !== undefined) { - // Found a match for this task. Keep traversing down the task tree. - const childDidReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(taskChild, serverRouterStateChild, dynamicDataChild, dynamicHead, debugInfo); - if (childDidReceiveUnknownParallelRoute) { - didReceiveUnknownParallelRoute = true; - } - } - } - } - } - return didReceiveUnknownParallelRoute; -} -function finishPendingCacheNode(cacheNode, dynamicData, dynamicHead, debugInfo) { - // Writes a dynamic response into an existing Cache Node tree. This does _not_ - // create a new tree, it updates the existing tree in-place. So it must follow - // the Suspense rules of cache safety — it can resolve pending promises, but - // it cannot overwrite existing data. It can add segments to the tree (because - // a missing segment will cause the layout router to suspend). - // but it cannot delete them. - // - // We must resolve every promise in the tree, or else it will suspend - // indefinitely. If we did not receive data for a segment, we will resolve its - // data promise to `null` to trigger a lazy fetch during render. - // Use the dynamic data from the server to fulfill the deferred RSC promise - // on the Cache Node. - const rsc = cacheNode.rsc; - const dynamicSegmentData = dynamicData[0]; - if (dynamicSegmentData === null) { - // This is an empty CacheNode; this particular server request did not - // render this segment. There may be a separate pending request that will, - // though, so we won't abort the task until all pending requests finish. - return; - } - if (rsc === null) { - // This is a lazy cache node. We can overwrite it. This is only safe - // because we know that the LayoutRouter suspends if `rsc` is `null`. - cacheNode.rsc = dynamicSegmentData; - } else if (isDeferredRsc(rsc)) { - // This is a deferred RSC promise. We can fulfill it with the data we just - // received from the server. If it was already resolved by a different - // navigation, then this does nothing because we can't overwrite data. - rsc.resolve(dynamicSegmentData, debugInfo); - } else { - // This is not a deferred RSC promise, nor is it empty, so it must have - // been populated by a different navigation. We must not overwrite it. - } - // If we navigated without a prefetch, then `loading` will be a deferred promise too. - // Fulfill it using the dynamic response so that we can display the loading boundary. - const loading = cacheNode.loading; - if (isDeferredRsc(loading)) { - const dynamicLoading = dynamicData[2]; - loading.resolve(dynamicLoading, debugInfo); - } - // Check if this is a leaf segment. If so, it will have a `head` property with - // a pending promise that needs to be resolved with the dynamic head from - // the server. - const head = cacheNode.head; - if (isDeferredRsc(head)) { - head.resolve(dynamicHead, debugInfo); - } -} -function abortRemainingPendingTasks(task, error, debugInfo) { - let exitStatus; - if (task.status === 0) { - // The data for this segment is still missing. - task.status = 2; - abortPendingCacheNode(task.node, error, debugInfo); - // If the server failed to fulfill the data for this segment, it implies - // that the route tree received from the server mismatched the tree that - // was previously prefetched. - // - // In an app with fully static routes and no proxy-driven redirects or - // rewrites, this should never happen, because the route for a URL would - // always be the same across multiple requests. So, this implies that some - // runtime routing condition changed, likely in a proxy, without being - // pushed to the client. - // - // When this happens, we treat this the same as a refresh(). The entire - // tree will be re-rendered from the root. - if (task.refreshUrl === null) { - // Trigger a "soft" refresh. Essentially the same as calling `refresh()` - // in a Server Action. - exitStatus = 1; - } else { - // The mismatch was discovered inside an inactive parallel route. This - // implies the inactive parallel route is no longer reachable at the URL - // that originally rendered it. Fall back to an MPA refresh. - // TODO: An alternative could be to trigger a soft refresh but to _not_ - // re-use the inactive parallel routes this time. Similar to what would - // happen if were to do a hard refrehs, but without the HTML page. - exitStatus = 2; - } - } else { - // This segment finished. (An error here is treated as Done because they are - // surfaced to the application during render.) - exitStatus = 0; - } - const taskChildren = task.children; - if (taskChildren !== null) { - for (const [, taskChild] of taskChildren){ - const childExitStatus = abortRemainingPendingTasks(taskChild, error, debugInfo); - // Propagate the exit status up the tree. The statuses are ordered by - // their precedence. - if (childExitStatus > exitStatus) { - exitStatus = childExitStatus; - } - } - } - return exitStatus; -} -function abortPendingCacheNode(cacheNode, error, debugInfo) { - const rsc = cacheNode.rsc; - if (isDeferredRsc(rsc)) { - if (error === null) { - // This will trigger a lazy fetch during render. - rsc.resolve(null, debugInfo); - } else { - // This will trigger an error during rendering. - rsc.reject(error, debugInfo); - } - } - const loading = cacheNode.loading; - if (isDeferredRsc(loading)) { - loading.resolve(null, debugInfo); - } - // Check if this is a leaf segment. If so, it will have a `head` property with - // a pending promise that needs to be resolved. If an error was provided, we - // will not resolve it with an error, since this is rendered at the root of - // the app. We want the segment to error, not the entire app. - const head = cacheNode.head; - if (isDeferredRsc(head)) { - head.resolve(null, debugInfo); - } -} -const DEFERRED = Symbol(); -function isDeferredRsc(value) { - return value && typeof value === 'object' && value.tag === DEFERRED; -} -function createDeferredRsc() { - // Create an unresolved promise that represents data derived from a Flight - // response. The promise will be resolved later as soon as we start receiving - // data from the server, i.e. as soon as the Flight client decodes and returns - // the top-level response object. - // The `_debugInfo` field contains profiling information. Promises that are - // created by Flight already have this info added by React; for any derived - // promise created by the router, we need to transfer the Flight debug info - // onto the derived promise. - // - // The debug info represents the latency between the start of the navigation - // and the start of rendering. (It does not represent the time it takes for - // whole stream to finish.) - const debugInfo = []; - let resolve; - let reject; - const pendingRsc = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - pendingRsc.status = 'pending'; - pendingRsc.resolve = (value, responseDebugInfo)=>{ - if (pendingRsc.status === 'pending') { - const fulfilledRsc = pendingRsc; - fulfilledRsc.status = 'fulfilled'; - fulfilledRsc.value = value; - if (responseDebugInfo !== null) { - // Transfer the debug info to the derived promise. - debugInfo.push.apply(debugInfo, responseDebugInfo); - } - resolve(value); - } - }; - pendingRsc.reject = (error, responseDebugInfo)=>{ - if (pendingRsc.status === 'pending') { - const rejectedRsc = pendingRsc; - rejectedRsc.status = 'rejected'; - rejectedRsc.reason = error; - if (responseDebugInfo !== null) { - // Transfer the debug info to the derived promise. - debugInfo.push.apply(debugInfo, responseDebugInfo); - } - reject(error); - } - }; - pendingRsc.tag = DEFERRED; - pendingRsc._debugInfo = debugInfo; - return pendingRsc; -} //# sourceMappingURL=ppr-navigations.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/navigation-devtools.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createNestedLayoutNavigationPromises", - ()=>createNestedLayoutNavigationPromises, - "createRootNavigationPromises", - ()=>createRootNavigationPromises -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/segment.js [app-ssr] (ecmascript)"); -; -; -const layoutSegmentPromisesCache = new WeakMap(); -/** - * Creates instrumented promises for layout segment hooks at a given tree level. - * This is dev-only code for React Suspense DevTools instrumentation. - */ function createLayoutSegmentPromises(tree) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Check if we already have cached promises for this tree - const cached = layoutSegmentPromisesCache.get(tree); - if (cached) { - return cached; - } - // Create new promises and cache them - const segmentPromises = new Map(); - const segmentsPromises = new Map(); - const parallelRoutes = tree[1]; - for (const parallelRouteKey of Object.keys(parallelRoutes)){ - const segments = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getSelectedLayoutSegmentPath"])(tree, parallelRouteKey); - // Use the shared logic to compute the segment value - const segment = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$segment$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["computeSelectedLayoutSegment"])(segments, parallelRouteKey); - segmentPromises.set(parallelRouteKey, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('useSelectedLayoutSegment', segment)); - segmentsPromises.set(parallelRouteKey, (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('useSelectedLayoutSegments', segments)); - } - const result = { - selectedLayoutSegmentPromises: segmentPromises, - selectedLayoutSegmentsPromises: segmentsPromises - }; - // Cache the result for future renders - layoutSegmentPromisesCache.set(tree, result); - return result; -} -const rootNavigationPromisesCache = new WeakMap(); -function createRootNavigationPromises(tree, pathname, searchParams, pathParams) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Create stable cache keys from the values - const searchParamsString = searchParams.toString(); - const pathParamsString = JSON.stringify(pathParams); - const cacheKey = `${pathname}:${searchParamsString}:${pathParamsString}`; - // Get or create the cache for this tree - let treeCache = rootNavigationPromisesCache.get(tree); - if (!treeCache) { - treeCache = new Map(); - rootNavigationPromisesCache.set(tree, treeCache); - } - // Check if we have cached promises for this combination - const cached = treeCache.get(cacheKey); - if (cached) { - return cached; - } - const readonlySearchParams = new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReadonlyURLSearchParams"](searchParams); - const layoutSegmentPromises = createLayoutSegmentPromises(tree); - const promises = { - pathname: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('usePathname', pathname), - searchParams: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('useSearchParams', readonlySearchParams), - params: (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDevToolsInstrumentedPromise"])('useParams', pathParams), - ...layoutSegmentPromises - }; - treeCache.set(cacheKey, promises); - return promises; -} -const nestedLayoutPromisesCache = new WeakMap(); -function createNestedLayoutNavigationPromises(tree, parentNavPromises) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - const parallelRoutes = tree[1]; - const parallelRouteKeys = Object.keys(parallelRoutes); - // Only create promises if there are parallel routes at this level - if (parallelRouteKeys.length === 0) { - return null; - } - // Get or create the cache for this tree - let treeCache = nestedLayoutPromisesCache.get(tree); - if (!treeCache) { - treeCache = new Map(); - nestedLayoutPromisesCache.set(tree, treeCache); - } - // Check if we have cached promises for this parent combination - const cached = treeCache.get(parentNavPromises); - if (cached) { - return cached; - } - // Create merged promises - const layoutSegmentPromises = createLayoutSegmentPromises(tree); - const promises = { - ...parentNavPromises, - ...layoutSegmentPromises - }; - treeCache.set(parentNavPromises, promises); - return promises; -} //# sourceMappingURL=navigation-devtools.js.map -}), -"[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE", - ()=>SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE, - "SegmentBoundaryTriggerNode", - ()=>SegmentBoundaryTriggerNode, - "SegmentStateProvider", - ()=>SegmentStateProvider, - "SegmentViewNode", - ()=>SegmentViewNode, - "SegmentViewStateNode", - ()=>SegmentViewStateNode, - "useSegmentState", - ()=>useSegmentState -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/next-devtools/dev-overlay.shim.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$not$2d$found$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/not-found.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE = 'NEXT_DEVTOOLS_SIMULATED_ERROR'; -function SegmentTrieNode({ type, pagePath }) { - const { boundaryType, setBoundaryType } = useSegmentState(); - const nodeState = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useMemo"])(()=>{ - return { - type, - pagePath, - boundaryType, - setBoundaryType - }; - }, [ - type, - pagePath, - boundaryType, - setBoundaryType - ]); - // Use `useLayoutEffect` to ensure the state is updated during suspense. - // `useEffect` won't work as the state is preserved during suspense. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useLayoutEffect"])(()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].segmentExplorerNodeAdd(nodeState); - return ()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].segmentExplorerNodeRemove(nodeState); - }; - }, [ - nodeState - ]); - return null; -} -function NotFoundSegmentNode() { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$not$2d$found$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["notFound"])(); -} -function ErrorSegmentNode() { - throw Object.defineProperty(new Error(SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); -} -const forever = new Promise(()=>{}); -function LoadingSegmentNode() { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(forever); - return null; -} -function SegmentViewStateNode({ page }) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useLayoutEffect"])(()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].segmentExplorerUpdateRouteState(page); - return ()=>{ - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$next$2d$devtools$2f$dev$2d$overlay$2e$shim$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["dispatcher"].segmentExplorerUpdateRouteState(''); - }; - }, [ - page - ]); - return null; -} -function SegmentBoundaryTriggerNode() { - const { boundaryType } = useSegmentState(); - let segmentNode = null; - if (boundaryType === 'loading') { - segmentNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(LoadingSegmentNode, {}); - } else if (boundaryType === 'not-found') { - segmentNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(NotFoundSegmentNode, {}); - } else if (boundaryType === 'error') { - segmentNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(ErrorSegmentNode, {}); - } - return segmentNode; -} -function SegmentViewNode({ type, pagePath, children }) { - const segmentNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(SegmentTrieNode, { - type: type, - pagePath: pagePath - }, type); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: [ - segmentNode, - children - ] - }); -} -const SegmentStateContext = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createContext"])({ - boundaryType: null, - setBoundaryType: ()=>{} -}); -function SegmentStateProvider({ children }) { - const [boundaryType, setBoundaryType] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useState"])(null); - const [errorBoundaryKey, setErrorBoundaryKey] = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useState"])(0); - const reloadBoundary = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useCallback"])(()=>setErrorBoundaryKey((prev)=>prev + 1), []); - const setBoundaryTypeAndReload = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useCallback"])((type)=>{ - if (type === null) { - reloadBoundary(); - } - setBoundaryType(type); - }, [ - reloadBoundary - ]); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(SegmentStateContext.Provider, { - value: { - boundaryType, - setBoundaryType: setBoundaryTypeAndReload - }, - children: children - }, errorBoundaryKey); -} -function useSegmentState() { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(SegmentStateContext); -} //# sourceMappingURL=segment-explorer-node.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/layout-router.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>OuterLayoutRouter -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$dom$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/unresolved-thenable.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$error$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/error-boundary.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/match-segments.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$disable$2d$smooth$2d$scroll$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/disable-smooth-scroll.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/redirect-boundary.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/create-router-cache-key.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$bfcache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/bfcache.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/router/utils/app-paths.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/router-reducer/ppr-navigations.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -; -const __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$dom$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; -// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available -/** - * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning - */ function findDOMNode(instance) { - // Tree-shake for server bundle - if ("TURBOPACK compile-time truthy", 1) return null; - //TURBOPACK unreachable - ; - // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init. - // We need to lazily reference it. - const internal_reactDOMfindDOMNode = undefined; -} -const rectProperties = [ - 'bottom', - 'height', - 'left', - 'right', - 'top', - 'width', - 'x', - 'y' -]; -/** - * Check if a HTMLElement is hidden or fixed/sticky position - */ function shouldSkipElement(element) { - // we ignore fixed or sticky positioned elements since they'll likely pass the "in-viewport" check - // and will result in a situation we bail on scroll because of something like a fixed nav, - // even though the actual page content is offscreen - if ([ - 'sticky', - 'fixed' - ].includes(getComputedStyle(element).position)) { - return true; - } - // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent` - // because `offsetParent` doesn't consider document/body - const rect = element.getBoundingClientRect(); - return rectProperties.every((item)=>rect[item] === 0); -} -/** - * Check if the top corner of the HTMLElement is in the viewport. - */ function topOfElementInViewport(element, viewportHeight) { - const rect = element.getBoundingClientRect(); - return rect.top >= 0 && rect.top <= viewportHeight; -} -/** - * Find the DOM node for a hash fragment. - * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior. - * If the hash fragment is an id, the page has to scroll to the element with that id. - * If the hash fragment is a name, the page has to scroll to the first element with that name. - */ function getHashFragmentDomNode(hashFragment) { - // If the hash fragment is `top` the page has to scroll to the top of the page. - if (hashFragment === 'top') { - return document.body; - } - // If the hash fragment is an id, the page has to scroll to the element with that id. - return document.getElementById(hashFragment) ?? // If the hash fragment is a name, the page has to scroll to the first element with that name. - document.getElementsByName(hashFragment)[0]; -} -class InnerScrollAndFocusHandler extends __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["default"].Component { - componentDidMount() { - this.handlePotentialScroll(); - } - componentDidUpdate() { - // Because this property is overwritten in handlePotentialScroll it's fine to always run it when true as it'll be set to false for subsequent renders. - if (this.props.focusAndScrollRef.apply) { - this.handlePotentialScroll(); - } - } - render() { - return this.props.children; - } - constructor(...args){ - super(...args), this.handlePotentialScroll = ()=>{ - // Handle scroll and focus, it's only applied once in the first useEffect that triggers that changed. - const { focusAndScrollRef, segmentPath } = this.props; - if (focusAndScrollRef.apply) { - // segmentPaths is an array of segment paths that should be scrolled to - // if the current segment path is not in the array, the scroll is not applied - // unless the array is empty, in which case the scroll is always applied - if (focusAndScrollRef.segmentPaths.length !== 0 && !focusAndScrollRef.segmentPaths.some((scrollRefSegmentPath)=>segmentPath.every((segment, index)=>(0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$match$2d$segments$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["matchSegment"])(segment, scrollRefSegmentPath[index])))) { - return; - } - let domNode = null; - const hashFragment = focusAndScrollRef.hashFragment; - if (hashFragment) { - domNode = getHashFragmentDomNode(hashFragment); - } - // `findDOMNode` is tricky because it returns just the first child if the component is a fragment. - // This already caused a bug where the first child was a in head. - if (!domNode) { - domNode = findDOMNode(this); - } - // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree. - if (!(domNode instanceof Element)) { - return; - } - // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior. - // If the element is skipped, try to select the next sibling and try again. - while(!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)){ - if ("TURBOPACK compile-time truthy", 1) { - if (domNode.parentElement?.localName === 'head') { - // TODO: We enter this state when metadata was rendered as part of the page or via Next.js. - // This is always a bug in Next.js and caused by React hoisting metadata. - // We need to replace `findDOMNode` in favor of Fragment Refs (when available) so that we can skip over metadata. - } - } - // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead. - if (domNode.nextElementSibling === null) { - return; - } - domNode = domNode.nextElementSibling; - } - // State is mutated to ensure that the focus and scroll is applied only once. - focusAndScrollRef.apply = false; - focusAndScrollRef.hashFragment = null; - focusAndScrollRef.segmentPaths = []; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$disable$2d$smooth$2d$scroll$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["disableSmoothScrollDuringRouteTransition"])(()=>{ - // In case of hash scroll, we only need to scroll the element into view - if (hashFragment) { - ; - domNode.scrollIntoView(); - return; - } - // Store the current viewport height because reading `clientHeight` causes a reflow, - // and it won't change during this function. - const htmlElement = document.documentElement; - const viewportHeight = htmlElement.clientHeight; - // If the element's top edge is already in the viewport, exit early. - if (topOfElementInViewport(domNode, viewportHeight)) { - return; - } - // Otherwise, try scrolling go the top of the document to be backward compatible with pages - // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen) - // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left - // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically - htmlElement.scrollTop = 0; - // Scroll to domNode if domNode is not in viewport when scrolled to top of document - if (!topOfElementInViewport(domNode, viewportHeight)) { - // Scroll into view doesn't scroll horizontally by default when not needed - ; - domNode.scrollIntoView(); - } - }, { - // We will force layout by querying domNode position - dontForceLayout: true, - onlyHashChange: focusAndScrollRef.onlyHashChange - }); - // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition` - focusAndScrollRef.onlyHashChange = false; - // Set focus on the element - domNode.focus(); - } - }; - } -} -function ScrollAndFocusHandler({ segmentPath, children }) { - const context = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["GlobalLayoutRouterContext"]); - if (!context) { - throw Object.defineProperty(new Error('invariant global layout router not mounted'), "__NEXT_ERROR_CODE", { - value: "E473", - enumerable: false, - configurable: true - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(InnerScrollAndFocusHandler, { - segmentPath: segmentPath, - focusAndScrollRef: context.focusAndScrollRef, - children: children - }); -} -/** - * InnerLayoutRouter handles rendering the provided segment based on the cache. - */ function InnerLayoutRouter({ tree, segmentPath, debugNameContext, cacheNode: maybeCacheNode, params, url, isActive }) { - const context = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["GlobalLayoutRouterContext"]); - const parentNavPromises = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"]); - if (!context) { - throw Object.defineProperty(new Error('invariant global layout router not mounted'), "__NEXT_ERROR_CODE", { - value: "E473", - enumerable: false, - configurable: true - }); - } - const cacheNode = maybeCacheNode !== null ? maybeCacheNode : // This should only be reachable for inactive/hidden segments, during - // prerendering The active segment should always be consistent with the - // CacheNode tree. Regardless, if we don't have a matching CacheNode, we - // must suspend rather than render nothing, to prevent showing an - // inconsistent route. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["unresolvedThenable"]); - // `rsc` represents the renderable node for this segment. - // If this segment has a `prefetchRsc`, it's the statically prefetched data. - // We should use that on initial render instead of `rsc`. Then we'll switch - // to `rsc` when the dynamic response streams in. - // - // If no prefetch data is available, then we go straight to rendering `rsc`. - const resolvedPrefetchRsc = cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc; - // We use `useDeferredValue` to handle switching between the prefetched and - // final values. The second argument is returned on initial render, then it - // re-renders with the first argument. - const rsc = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useDeferredValue"])(cacheNode.rsc, resolvedPrefetchRsc); - // `rsc` is either a React node or a promise for a React node, except we - // special case `null` to represent that this segment's data is missing. If - // it's a promise, we need to unwrap it so we can determine whether or not the - // data is missing. - let resolvedRsc; - if ((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$ppr$2d$navigations$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["isDeferredRsc"])(rsc)) { - const unwrappedRsc = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(rsc); - if (unwrappedRsc === null) { - // If the promise was resolved to `null`, it means the data for this - // segment was not returned by the server. Suspend indefinitely. When this - // happens, the router is responsible for triggering a new state update to - // un-suspend this segment. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["unresolvedThenable"]); - } - resolvedRsc = unwrappedRsc; - } else { - // This is not a deferred RSC promise. Don't need to unwrap it. - if (rsc === null) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["unresolvedThenable"]); - } - resolvedRsc = rsc; - } - // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide - // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`. - // Promises are cached outside of render to survive suspense retries. - let navigationPromises = null; - if ("TURBOPACK compile-time truthy", 1) { - const { createNestedLayoutNavigationPromises } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/client/components/navigation-devtools.js [app-ssr] (ecmascript)"); - navigationPromises = createNestedLayoutNavigationPromises(tree, parentNavPromises); - } - let children = resolvedRsc; - if (navigationPromises) { - children = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["NavigationPromisesContext"].Provider, { - value: navigationPromises, - children: resolvedRsc - }); - } - children = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"].Provider, { - value: { - parentTree: tree, - parentCacheNode: cacheNode, - parentSegmentPath: segmentPath, - parentParams: params, - debugNameContext: debugNameContext, - // TODO-APP: overriding of url for parallel routes - url: url, - isActive: isActive - }, - children: children - }); - return children; -} -/** - * Renders suspense boundary with the provided "loading" property as the fallback. - * If no loading property is provided it renders the children without a suspense boundary. - */ function LoadingBoundary({ name, loading, children }) { - // If loading is a promise, unwrap it. This happens in cases where we haven't - // yet received the loading data from the server — which includes whether or - // not this layout has a loading component at all. - // - // It's OK to suspend here instead of inside the fallback because this - // promise will resolve simultaneously with the data for the segment itself. - // So it will never suspend for longer than it would have if we didn't use - // a Suspense fallback at all. - let loadingModuleData; - if (typeof loading === 'object' && loading !== null && typeof loading.then === 'function') { - const promiseForLoading = loading; - loadingModuleData = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(promiseForLoading); - } else { - loadingModuleData = loading; - } - if (loadingModuleData) { - const loadingRsc = loadingModuleData[0]; - const loadingStyles = loadingModuleData[1]; - const loadingScripts = loadingModuleData[2]; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Suspense"], { - name: name, - fallback: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: [ - loadingStyles, - loadingScripts, - loadingRsc - ] - }), - children: children - }); - } - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: children - }); -} -function OuterLayoutRouter({ parallelRouterKey, error, errorStyles, errorScripts, templateStyles, templateScripts, template, notFound, forbidden, unauthorized, segmentViewBoundaries }) { - const context = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"]); - if (!context) { - throw Object.defineProperty(new Error('invariant expected layout router to be mounted'), "__NEXT_ERROR_CODE", { - value: "E56", - enumerable: false, - configurable: true - }); - } - const { parentTree, parentCacheNode, parentSegmentPath, parentParams, url, isActive, debugNameContext } = context; - // Get the CacheNode for this segment by reading it from the parent segment's - // child map. - const parentParallelRoutes = parentCacheNode.parallelRoutes; - let segmentMap = parentParallelRoutes.get(parallelRouterKey); - // If the parallel router cache node does not exist yet, create it. - // This writes to the cache when there is no item in the cache yet. It never *overwrites* existing cache items which is why it's safe in concurrent mode. - if (!segmentMap) { - segmentMap = new Map(); - parentParallelRoutes.set(parallelRouterKey, segmentMap); - } - const parentTreeSegment = parentTree[0]; - const segmentPath = parentSegmentPath === null ? // the code. We should clean this up. - [ - parallelRouterKey - ] : parentSegmentPath.concat([ - parentTreeSegment, - parallelRouterKey - ]); - // The "state" key of a segment is the one passed to React — it represents the - // identity of the UI tree. Whenever the state key changes, the tree is - // recreated and the state is reset. In the App Router model, search params do - // not cause state to be lost, so two segments with the same segment path but - // different search params should have the same state key. - // - // The "cache" key of a segment, however, *does* include the search params, if - // it's possible that the segment accessed the search params on the server. - // (This only applies to page segments; layout segments cannot access search - // params on the server.) - const activeTree = parentTree[1][parallelRouterKey]; - if (activeTree === undefined) { - // Could not find a matching segment. The client tree is inconsistent with - // the server tree. Suspend indefinitely; the router will have already - // detected the inconsistency when handling the server response, and - // triggered a refresh of the page to recover. - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$unresolved$2d$thenable$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["unresolvedThenable"]); - } - const activeSegment = activeTree[0]; - const activeStateKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createRouterCacheKey"])(activeSegment, true) // no search params - ; - // At each level of the route tree, not only do we render the currently - // active segment — we also render the last N segments that were active at - // this level inside a hidden boundary, to preserve their state - // if or when the user navigates to them again. - // - // bfcacheEntry is a linked list of FlightRouterStates. - let bfcacheEntry = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$bfcache$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useRouterBFCache"])(activeTree, activeStateKey); - let children = []; - do { - const tree = bfcacheEntry.tree; - const stateKey = bfcacheEntry.stateKey; - const segment = tree[0]; - const cacheKey = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$router$2d$reducer$2f$create$2d$router$2d$cache$2d$key$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createRouterCacheKey"])(segment); - // Read segment path from the parallel router cache node. - const cacheNode = segmentMap.get(cacheKey) ?? null; - /* - - Error boundary - - Only renders error boundary if error component is provided. - - Rendered for each segment to ensure they have their own error state. - - When gracefully degrade for bots, skip rendering error boundary. - - Loading boundary - - Only renders suspense boundary if loading components is provided. - - Rendered for each segment to ensure they have their own loading state. - - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch. - */ let segmentBoundaryTriggerNode = null; - let segmentViewStateNode = null; - if ("TURBOPACK compile-time truthy", 1) { - const { SegmentBoundaryTriggerNode, SegmentViewStateNode } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-ssr] (ecmascript)"); - const pagePrefix = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$router$2f$utils$2f$app$2d$paths$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["normalizeAppPath"])(url); - segmentViewStateNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(SegmentViewStateNode, { - page: pagePrefix - }, pagePrefix); - segmentBoundaryTriggerNode = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(SegmentBoundaryTriggerNode, {}) - }); - } - let params = parentParams; - if (Array.isArray(segment)) { - // This segment contains a route param. Accumulate these as we traverse - // down the router tree. The result represents the set of params that - // the layout/page components are permitted to access below this point. - const paramName = segment[0]; - const paramCacheKey = segment[1]; - const paramType = segment[2]; - const paramValue = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["getParamValueFromCacheKey"])(paramCacheKey, paramType); - if (paramValue !== null) { - params = { - ...parentParams, - [paramName]: paramValue - }; - } - } - const debugName = getBoundaryDebugNameFromSegment(segment); - // `debugNameContext` represents the nearest non-"virtual" parent segment. - // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments. - // So if `debugName` is undefined, the context is passed through unchanged. - const childDebugNameContext = debugName ?? debugNameContext; - // In practical terms, clicking this name in the Suspense DevTools - // should select the child slots of that layout. - // - // So the name we apply to the Activity boundary is actually based on - // the nearest parent segments. - // - // We skip over "virtual" parents, i.e. ones inserted by Next.js that - // don't correspond to application-defined code. - const isVirtual = debugName === undefined; - const debugNameToDisplay = isVirtual ? undefined : debugNameContext; - // TODO: The loading module data for a segment is stored on the parent, then - // applied to each of that parent segment's parallel route slots. In the - // simple case where there's only one parallel route (the `children` slot), - // this is no different from if the loading module data where stored on the - // child directly. But I'm not sure this actually makes sense when there are - // multiple parallel routes. It's not a huge issue because you always have - // the option to define a narrower loading boundary for a particular slot. But - // this sort of smells like an implementation accident to me. - const loadingModuleData = parentCacheNode.loading; - let child = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["TemplateContext"].Provider, { - value: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(ScrollAndFocusHandler, { - segmentPath: segmentPath, - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$error$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ErrorBoundary"], { - errorComponent: error, - errorStyles: errorStyles, - errorScripts: errorScripts, - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(LoadingBoundary, { - name: debugNameToDisplay, - loading: loadingModuleData, - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$http$2d$access$2d$fallback$2f$error$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["HTTPAccessFallbackBoundary"], { - notFound: notFound, - forbidden: forbidden, - unauthorized: unauthorized, - children: /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$redirect$2d$boundary$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RedirectBoundary"], { - children: [ - /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(InnerLayoutRouter, { - url: url, - tree: tree, - params: params, - cacheNode: cacheNode, - segmentPath: segmentPath, - debugNameContext: childDebugNameContext, - isActive: isActive && stateKey === activeStateKey - }), - segmentBoundaryTriggerNode - ] - }) - }) - }) - }), - segmentViewStateNode - ] - }), - children: [ - templateStyles, - templateScripts, - template - ] - }, stateKey); - if ("TURBOPACK compile-time truthy", 1) { - const { SegmentStateProvider } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/next-devtools/userspace/app/segment-explorer-node.js [app-ssr] (ecmascript)"); - child = /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsxs"])(SegmentStateProvider, { - children: [ - child, - segmentViewBoundaries - ] - }, stateKey); - } - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - children.push(child); - bfcacheEntry = bfcacheEntry.next; - }while (bfcacheEntry !== null) - return children; -} -function getBoundaryDebugNameFromSegment(segment) { - if (segment === '/') { - // Reached the root - return '/'; - } - if (typeof segment === 'string') { - if (isVirtualLayout(segment)) { - return undefined; - } else { - return segment + '/'; - } - } - const paramCacheKey = segment[1]; - return paramCacheKey + '/'; -} -function isVirtualLayout(segment) { - return(// in a more special way instead of checking the name, to distinguish them - // from app-defined groups. - segment === '(slot)'); -} //# sourceMappingURL=layout-router.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>RenderFromTemplateContext -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -function RenderFromTemplateContext() { - const children = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["useContext"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["TemplateContext"]); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["Fragment"], { - children: children - }); -} //# sourceMappingURL=render-from-template-context.js.map -}), -"[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ReflectAdapter", - ()=>ReflectAdapter -]); -class ReflectAdapter { - static get(target, prop, receiver) { - const value = Reflect.get(target, prop, receiver); - if (typeof value === 'function') { - return value.bind(target); - } - return value; - } - static set(target, prop, value, receiver) { - return Reflect.set(target, prop, value, receiver); - } - static has(target, prop) { - return Reflect.has(target, prop); - } - static deleteProperty(target, prop) { - return Reflect.deleteProperty(target, prop); - } -} //# sourceMappingURL=reflect.js.map -}), -"[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createDedupedByCallsiteServerErrorLoggerDev", - ()=>createDedupedByCallsiteServerErrorLoggerDev -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -; -const errorRef = { - current: null -}; -// React.cache is currently only available in canary/experimental React channels. -const cache = typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["cache"] === 'function' ? __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["cache"] : (fn)=>fn; -// When Cache Components is enabled, we record these as errors so that they -// are captured by the dev overlay as it's more critical to fix these -// when enabled. -const logErrorOrWarn = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : console.warn; -// We don't want to dedupe across requests. -// The developer might've just attempted to fix the warning so we should warn again if it still happens. -const flushCurrentErrorIfNew = cache((key)=>{ - try { - logErrorOrWarn(errorRef.current); - } finally{ - errorRef.current = null; - } -}); -function createDedupedByCallsiteServerErrorLoggerDev(getMessage) { - return function logDedupedError(...args) { - const message = getMessage(...args); - if ("TURBOPACK compile-time truthy", 1) { - var _stack; - const callStackFrames = (_stack = new Error().stack) == null ? void 0 : _stack.split('\n'); - if (callStackFrames === undefined || callStackFrames.length < 4) { - logErrorOrWarn(message); - } else { - // Error: - // logDedupedError - // asyncApiBeingAccessedSynchronously - // - // TODO: This breaks if sourcemaps with ignore lists are enabled. - const key = callStackFrames[4]; - errorRef.current = message; - flushCurrentErrorIfNew(key); - } - } else //TURBOPACK unreachable - ; - }; -} //# sourceMappingURL=create-deduped-by-callsite-server-error-logger.js.map -}), -"[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "describeHasCheckingStringProperty", - ()=>describeHasCheckingStringProperty, - "describeStringPropertyAccess", - ()=>describeStringPropertyAccess, - "wellKnownProperties", - ()=>wellKnownProperties -]); -// This regex will have fast negatives meaning valid identifiers may not pass -// this test. However this is only used during static generation to provide hints -// about why a page bailed out of some or all prerendering and we can use bracket notation -// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']` -// even if this would have been fine too `searchParams.ಠ_ಠ` -const isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/; -function describeStringPropertyAccess(target, prop) { - if (isDefinitelyAValidIdentifier.test(prop)) { - return `\`${target}.${prop}\``; - } - return `\`${target}[${JSON.stringify(prop)}]\``; -} -function describeHasCheckingStringProperty(target, prop) { - const stringifiedProp = JSON.stringify(prop); - return `\`Reflect.has(${target}, ${stringifiedProp})\`, \`${stringifiedProp} in ${target}\`, or similar`; -} -const wellKnownProperties = new Set([ - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toString', - 'valueOf', - 'toLocaleString', - // Promise prototype - 'then', - 'catch', - 'finally', - // React Promise extension - 'status', - // 'value', - // 'error', - // React introspection - 'displayName', - '_debugInfo', - // Common tested properties - 'toJSON', - '$$typeof', - '__esModule' -]); //# sourceMappingURL=reflect-utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/utils.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "isRequestAPICallableInsideAfter", - ()=>isRequestAPICallableInsideAfter, - "throwForSearchParamsAccessInUseCache", - ()=>throwForSearchParamsAccessInUseCache, - "throwWithStaticGenerationBailoutErrorWithDynamicError", - ()=>throwWithStaticGenerationBailoutErrorWithDynamicError -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/components/static-generation-bailout.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/after-task-async-storage.external.js [external] (next/dist/server/app-render/after-task-async-storage.external.js, cjs)"); -; -; -function throwWithStaticGenerationBailoutErrorWithDynamicError(route, expression) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$components$2f$static$2d$generation$2d$bailout$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["StaticGenBailoutError"](`Route ${route} with \`dynamic = "error"\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E543", - enumerable: false, - configurable: true - }); -} -function throwForSearchParamsAccessInUseCache(workStore, constructorOpt) { - const error = Object.defineProperty(new Error(`Route ${workStore.route} used \`searchParams\` inside "use cache". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \`searchParams\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`), "__NEXT_ERROR_CODE", { - value: "E842", - enumerable: false, - configurable: true - }); - Error.captureStackTrace(error, constructorOpt); - workStore.invalidDynamicUsageError ??= error; - throw error; -} -function isRequestAPICallableInsideAfter() { - const afterTaskStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$after$2d$task$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["afterTaskAsyncStorage"].getStore(); - return (afterTaskStore == null ? void 0 : afterTaskStore.rootTaskSpawnPhase) === 'action'; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "RenderStage", - ()=>RenderStage, - "StagedRenderingController", - ()=>StagedRenderingController -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/promise-with-resolvers.js [app-ssr] (ecmascript)"); -; -; -var RenderStage = /*#__PURE__*/ function(RenderStage) { - RenderStage[RenderStage["Before"] = 1] = "Before"; - RenderStage[RenderStage["Static"] = 2] = "Static"; - RenderStage[RenderStage["Runtime"] = 3] = "Runtime"; - RenderStage[RenderStage["Dynamic"] = 4] = "Dynamic"; - RenderStage[RenderStage["Abandoned"] = 5] = "Abandoned"; - return RenderStage; -}({}); -class StagedRenderingController { - constructor(abortSignal = null, hasRuntimePrefetch){ - this.abortSignal = abortSignal; - this.hasRuntimePrefetch = hasRuntimePrefetch; - this.currentStage = 1; - this.staticInterruptReason = null; - this.runtimeInterruptReason = null; - this.staticStageEndTime = Infinity; - this.runtimeStageEndTime = Infinity; - this.runtimeStageListeners = []; - this.dynamicStageListeners = []; - this.runtimeStagePromise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - this.dynamicStagePromise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$promise$2d$with$2d$resolvers$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createPromiseWithResolvers"])(); - this.mayAbandon = false; - if (abortSignal) { - abortSignal.addEventListener('abort', ()=>{ - const { reason } = abortSignal; - if (this.currentStage < 3) { - this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.runtimeStagePromise.reject(reason); - } - if (this.currentStage < 4 || this.currentStage === 5) { - this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.dynamicStagePromise.reject(reason); - } - }, { - once: true - }); - this.mayAbandon = true; - } - } - onStage(stage, callback) { - if (this.currentStage >= stage) { - callback(); - } else if (stage === 3) { - this.runtimeStageListeners.push(callback); - } else if (stage === 4) { - this.dynamicStageListeners.push(callback); - } else { - // This should never happen - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - canSyncInterrupt() { - // If we haven't started the render yet, it can't be interrupted. - if (this.currentStage === 1) { - return false; - } - const boundaryStage = this.hasRuntimePrefetch ? 4 : 3; - return this.currentStage < boundaryStage; - } - syncInterruptCurrentStageWithReason(reason) { - if (this.currentStage === 1) { - return; - } - // If Sync IO occurs during the initial (abandonable) render, we'll retry it, - // so we want a slightly different flow. - // See the implementation of `abandonRenderImpl` for more explanation. - if (this.mayAbandon) { - return this.abandonRenderImpl(); - } - // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage - // and capture the interruption reason. - switch(this.currentStage){ - case 2: - { - this.staticInterruptReason = reason; - this.advanceStage(4); - return; - } - case 3: - { - // We only error for Sync IO in the runtime stage if the route - // is configured to use runtime prefetching. - // We do this to reflect the fact that during a runtime prefetch, - // Sync IO aborts aborts the render. - // Note that `canSyncInterrupt` should prevent us from getting here at all - // if runtime prefetching isn't enabled. - if (this.hasRuntimePrefetch) { - this.runtimeInterruptReason = reason; - this.advanceStage(4); - } - return; - } - case 4: - case 5: - default: - } - } - getStaticInterruptReason() { - return this.staticInterruptReason; - } - getRuntimeInterruptReason() { - return this.runtimeInterruptReason; - } - getStaticStageEndTime() { - return this.staticStageEndTime; - } - getRuntimeStageEndTime() { - return this.runtimeStageEndTime; - } - abandonRender() { - if (!this.mayAbandon) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('`abandonRender` called on a stage controller that cannot be abandoned.'), "__NEXT_ERROR_CODE", { - value: "E938", - enumerable: false, - configurable: true - }); - } - this.abandonRenderImpl(); - } - abandonRenderImpl() { - // In staged rendering, only the initial render is abandonable. - // We can abandon the initial render if - // 1. We notice a cache miss, and need to wait for caches to fill - // 2. A sync IO error occurs, and the render should be interrupted - // (this might be a lazy intitialization of a module, - // so we still want to restart in this case and see if it still occurs) - // In either case, we'll be doing another render after this one, - // so we only want to unblock the Runtime stage, not Dynamic, because - // unblocking the dynamic stage would likely lead to wasted (uncached) IO. - const { currentStage } = this; - switch(currentStage){ - case 2: - { - this.currentStage = 5; - this.resolveRuntimeStage(); - return; - } - case 3: - { - this.currentStage = 5; - return; - } - case 4: - case 1: - case 5: - break; - default: - { - currentStage; - } - } - } - advanceStage(stage) { - // If we're already at the target stage or beyond, do nothing. - // (this can happen e.g. if sync IO advanced us to the dynamic stage) - if (stage <= this.currentStage) { - return; - } - let currentStage = this.currentStage; - this.currentStage = stage; - if (currentStage < 3 && stage >= 3) { - this.staticStageEndTime = performance.now() + performance.timeOrigin; - this.resolveRuntimeStage(); - } - if (currentStage < 4 && stage >= 4) { - this.runtimeStageEndTime = performance.now() + performance.timeOrigin; - this.resolveDynamicStage(); - return; - } - } - /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */ resolveRuntimeStage() { - const runtimeListeners = this.runtimeStageListeners; - for(let i = 0; i < runtimeListeners.length; i++){ - runtimeListeners[i](); - } - runtimeListeners.length = 0; - this.runtimeStagePromise.resolve(); - } - /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */ resolveDynamicStage() { - const dynamicListeners = this.dynamicStageListeners; - for(let i = 0; i < dynamicListeners.length; i++){ - dynamicListeners[i](); - } - dynamicListeners.length = 0; - this.dynamicStagePromise.resolve(); - } - getStagePromise(stage) { - switch(stage){ - case 3: - { - return this.runtimeStagePromise.promise; - } - case 4: - { - return this.dynamicStagePromise.promise; - } - default: - { - stage; - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"](`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - } - waitForStage(stage) { - return this.getStagePromise(stage); - } - delayUntilStage(stage, displayName, resolvedValue) { - const ioTriggerPromise = this.getStagePromise(stage); - const promise = makeDevtoolsIOPromiseFromIOTrigger(ioTriggerPromise, displayName, resolvedValue); - // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked. - // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it). - // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning. - if (this.abortSignal) { - promise.catch(ignoreReject); - } - return promise; - } -} -function ignoreReject() {} -// TODO(restart-on-cache-miss): the layering of `delayUntilStage`, -// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise` -// is confusing, we should clean it up. -function makeDevtoolsIOPromiseFromIOTrigger(ioTrigger, displayName, resolvedValue) { - // If we create a `new Promise` and give it a displayName - // (with no userspace code above us in the stack) - // React Devtools will use it as the IO cause when determining "suspended by". - // In particular, it should shadow any inner IO that resolved/rejected the promise - // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage) - const promise = new Promise((resolve, reject)=>{ - ioTrigger.then(resolve.bind(null, resolvedValue), reject); - }); - if (displayName !== undefined) { - // @ts-expect-error - promise.displayName = displayName; - } - return promise; -} //# sourceMappingURL=staged-rendering.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/search-params.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createPrerenderSearchParamsForClientPage", - ()=>createPrerenderSearchParamsForClientPage, - "createSearchParamsFromClient", - ()=>createSearchParamsFromClient, - "createServerSearchParamsForMetadata", - ()=>createServerSearchParamsForMetadata, - "createServerSearchParamsForServerPage", - ()=>createServerSearchParamsForServerPage, - "makeErroringSearchParamsForUseCache", - ()=>makeErroringSearchParamsForUseCache -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/request/utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -function createSearchParamsFromClient(underlyingSearchParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createSearchParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E769", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createSearchParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E739", - enumerable: false, - configurable: true - }); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -const createServerSearchParamsForMetadata = createServerSearchParamsForServerPage; -function createServerSearchParamsForServerPage(underlyingSearchParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createServerSearchParamsForServerPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E747", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderSearchParamsForClientPage(workStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - // We're prerendering in a mode that aborts (cacheComponents) and should stall - // the promise to ensure the RSC side is considered dynamic - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, '`searchParams`'); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E768", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderSearchParamsForClientPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E746", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - return Promise.resolve({}); - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createStaticPrerenderSearchParams(workStore, prerenderStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - // We are in a cacheComponents (PPR or otherwise) prerender - return makeHangingSearchParams(workStore, prerenderStore); - case 'prerender-ppr': - case 'prerender-legacy': - // We are in a legacy static generation and need to interrupt the - // prerender when search params are accessed. - return makeErroringSearchParams(workStore, prerenderStore); - default: - return prerenderStore; - } -} -function createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, makeUntrackedSearchParams(underlyingSearchParams)); -} -function createRenderSearchParams(underlyingSearchParams, workStore, requestStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } else { - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore); - } else //TURBOPACK unreachable - ; - } -} -const CachedSearchParams = new WeakMap(); -const CachedSearchParamsForUseCache = new WeakMap(); -function makeHangingSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(prerenderStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`searchParams`'); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - switch(prop){ - case 'then': - { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["annotateDynamicAccess"])(expression, prerenderStore); - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - case 'status': - { - const expression = '`use(searchParams)`, `searchParams.status`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["annotateDynamicAccess"])(expression, prerenderStore); - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - default: - { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - } - } - }); - CachedSearchParams.set(prerenderStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const underlyingSearchParams = {}; - // For search params we don't construct a ReactPromise because we want to interrupt - // rendering on any property access that was not set from outside and so we only want - // to have properties like value and status if React sets them. - const promise = Promise.resolve(underlyingSearchParams); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - if (typeof prop === 'string' && prop === 'then') { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - if (workStore.dynamicShouldError) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } else if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwToInterruptStaticGeneration"])(expression, workStore, prerenderStore); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - }); - CachedSearchParams.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParamsForUseCache(workStore) { - const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve({}); - const proxiedPromise = new Proxy(promise, { - get: function get(target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. We know it - // isn't a dynamic access because it can only be something that was - // previously written to the promise and thus not an underlying - // searchParam value - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - if (typeof prop === 'string' && (prop === 'then' || !__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop))) { - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwForSearchParamsAccessInUseCache"])(workStore, get); - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } - }); - CachedSearchParamsForUseCache.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeUntrackedSearchParams(underlyingSearchParams) { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve(underlyingSearchParams); - CachedSearchParams.set(underlyingSearchParams, promise); - return promise; -} -function makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore) { - if (requestStore.asyncApiPromises) { - // Do not cache the resulting promise. If we do, we'll only show the first "awaited at" - // across all segments that receive searchParams. - return makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - } else { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - CachedSearchParams.set(requestStore, promise); - return promise; - } -} -function makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore) { - const promiseInitialized = { - current: false - }; - const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized); - let promise; - if (requestStore.asyncApiPromises) { - // We wrap each instance of searchParams in a `new Promise()`. - // This is important when all awaits are in third party which would otherwise - // track all the way to the internal params. - const sharedSearchParamsParent = requestStore.asyncApiPromises.sharedSearchParamsParent; - promise = new Promise((resolve, reject)=>{ - sharedSearchParamsParent.then(()=>resolve(proxiedUnderlying), reject); - }); - // @ts-expect-error - promise.displayName = 'searchParams'; - } else { - promise = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeDevtoolsIOAwarePromise"])(proxiedUnderlying, requestStore, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RenderStage"].Runtime); - } - promise.then(()=>{ - promiseInitialized.current = true; - }, // is aborted before it can reach the runtime stage. - // In that case, we have to prevent an unhandled rejection from the promise - // created by this `.then()` call. - // This does not affect the `promiseInitialized` logic above, - // because `proxiedUnderlying` will not be used to resolve the promise, - // so there's no risk of any of its properties being accessed and triggering - // an undesireable warning. - ignoreReject); - return instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore); -} -function ignoreReject() {} -function instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized) { - // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying - // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender - // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking - // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger - // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce - // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise. - return new Proxy(underlyingSearchParams, { - get (target, prop, receiver) { - if (typeof prop === 'string' && promiseInitialized.current) { - if (workStore.dynamicShouldError) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('searchParams', prop); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (workStore.dynamicShouldError) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeHasCheckingStringProperty"])('searchParams', prop); - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - if (workStore.dynamicShouldError) { - const expression = '`{...searchParams}`, `Object.keys(searchParams)`, or similar'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - return Reflect.ownKeys(target); - } - }); -} -function instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingSearchParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (prop === 'then' && workStore.dynamicShouldError) { - const expression = '`searchParams.then`'; - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$request$2f$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwWithStaticGenerationBailoutErrorWithDynamicError"])(workStore.route, expression); - } - if (typeof prop === 'string') { - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return Reflect.set(target, prop, value, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (!__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeHasCheckingStringProperty"])('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - const expression = '`Object.keys(searchParams)` or similar'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDedupedByCallsiteServerErrorLoggerDev"])(createSearchAccessError); -function createSearchAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`searchParams\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E848", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=search-params.js.map -}), -"[project]/node_modules/next/dist/esm/server/request/params.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "createParamsFromClient", - ()=>createParamsFromClient, - "createPrerenderParamsForClientSegment", - ()=>createPrerenderParamsForClientSegment, - "createServerParamsForMetadata", - ()=>createServerParamsForMetadata, - "createServerParamsForRoute", - ()=>createServerParamsForRoute, - "createServerParamsForServerSegment", - ()=>createServerParamsForServerSegment -]); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/web/spec-extension/adapters/reflect.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/dynamic-rendering.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/work-unit-async-storage.external.js [external] (next/dist/server/app-render/work-unit-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/utils/reflect-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/dynamic-rendering-utils.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/create-deduped-by-callsite-server-error-logger.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__ = __turbopack_context__.i("[externals]/next/dist/server/app-render/dynamic-access-async-storage.external.js [external] (next/dist/server/app-render/dynamic-access-async-storage.external.js, cjs)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/server/app-render/staged-rendering.js [app-ssr] (ecmascript)"); -; -; -; -; -; -; -; -; -; -; -function createParamsFromClient(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E736", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E770", - enumerable: false, - configurable: true - }); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -const createServerParamsForMetadata = createServerParamsForServerSegment; -function createServerParamsForRoute(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createServerParamsForRoute should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E738", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createServerParamsForServerSegment(underlyingParams, workStore) { - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createServerParamsForServerSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E743", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["throwInvariantForMissingStore"])(); -} -function createPrerenderParamsForClientSegment(underlyingParams) { - const workStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workAsyncStorage"].getStore(); - if (!workStore) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('Missing workStore in createPrerenderParamsForClientSegment'), "__NEXT_ERROR_CODE", { - value: "E773", - enumerable: false, - configurable: true - }); - } - const workUnitStore = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$work$2d$unit$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["workUnitAsyncStorage"].getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams) { - for(let key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(workUnitStore.renderSignal, workStore.route, '`params`'); - } - } - } - break; - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('createPrerenderParamsForClientSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E734", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'prerender-runtime': - case 'request': - break; - default: - workUnitStore; - } - } - // We're prerendering in a mode that does not abort. We resolve the promise without - // any tracking because we're just transporting a value from server to client where the tracking - // will be applied. - return Promise.resolve(underlyingParams); -} -function createStaticPrerenderParams(underlyingParams, workStore, prerenderStore) { - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return makeHangingParams(underlyingParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - return makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-legacy': - break; - default: - prerenderStore; - } - return makeUntrackedParams(underlyingParams); -} -function createRuntimePrerenderParams(underlyingParams, workUnitStore) { - return (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["delayUntilRuntimeStage"])(workUnitStore, makeUntrackedParams(underlyingParams)); -} -function createRenderParamsInProd(underlyingParams) { - return makeUntrackedParams(underlyingParams); -} -function createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, requestStore) { - let hasFallbackParams = false; - if (devFallbackParams) { - for(let key in underlyingParams){ - if (devFallbackParams.has(key)) { - hasFallbackParams = true; - break; - } - } - } - return makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore); -} -const CachedParams = new WeakMap(); -const fallbackParamsProxyHandler = { - get: function get(target, prop, receiver) { - if (prop === 'then' || prop === 'catch' || prop === 'finally') { - const originalMethod = __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - return ({ - [prop]: (...args)=>{ - const store = __TURBOPACK__imported__module__$5b$externals$5d2f$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js__$5b$external$5d$__$28$next$2f$dist$2f$server$2f$app$2d$render$2f$dynamic$2d$access$2d$async$2d$storage$2e$external$2e$js$2c$__cjs$29$__["dynamicAccessAsyncStorage"].getStore(); - if (store) { - store.abortController.abort(Object.defineProperty(new Error(`Accessed fallback \`params\` during prerendering.`), "__NEXT_ERROR_CODE", { - value: "E691", - enumerable: false, - configurable: true - })); - } - return new Proxy(originalMethod.apply(target, args), fallbackParamsProxyHandler); - } - })[prop]; - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - } -}; -function makeHangingParams(underlyingParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = new Proxy((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeHangingPromise"])(prerenderStore.renderSignal, workStore.route, '`params`'), fallbackParamsProxyHandler); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const augmentedUnderlying = { - ...underlyingParams - }; - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = Promise.resolve(augmentedUnderlying); - CachedParams.set(underlyingParams, promise); - Object.keys(underlyingParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - if (fallbackParams.has(prop)) { - Object.defineProperty(augmentedUnderlying, prop, { - get () { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('params', prop); - // In most dynamic APIs we also throw if `dynamic = "error"` however - // for params is only dynamic when we're generating a fallback shell - // and even when `dynamic = "error"` we still support generating dynamic - // fallback shells - // TODO remove this comment when cacheComponents is the default since there - // will be no `dynamic = "error"` - if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["postponeWithTracking"])(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$dynamic$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["throwToInterruptStaticGeneration"])(expression, workStore, prerenderStore); - } - }, - enumerable: true - }); - } - } - }); - return promise; -} -function makeUntrackedParams(underlyingParams) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = Promise.resolve(underlyingParams); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore) { - if (requestStore.asyncApiPromises && hasFallbackParams) { - // We wrap each instance of params in a `new Promise()`, because deduping - // them across requests doesn't work anyway and this let us show each - // await a different set of values. This is important when all awaits - // are in third party which would otherwise track all the way to the - // internal params. - const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent; - const promise = new Promise((resolve, reject)=>{ - sharedParamsParent.then(()=>resolve(underlyingParams), reject); - }); - // @ts-expect-error - promise.displayName = 'params'; - return instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - } - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = hasFallbackParams ? (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$dynamic$2d$rendering$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["makeDevtoolsIOAwarePromise"])(underlyingParams, requestStore, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$app$2d$render$2f$staged$2d$rendering$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["RenderStage"].Runtime) : Promise.resolve(underlyingParams); - const proxiedPromise = instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - CachedParams.set(underlyingParams, proxiedPromise); - return proxiedPromise; -} -function instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingParams).forEach((prop)=>{ - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["wellKnownProperties"].has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (typeof prop === 'string') { - if (proxiedProperties.has(prop)) { - const expression = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$utils$2f$reflect$2d$utils$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["describeStringPropertyAccess"])('params', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$web$2f$spec$2d$extension$2f$adapters$2f$reflect$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ReflectAdapter"].set(target, prop, value, receiver); - }, - ownKeys (target) { - const expression = '`...params` or similar expression'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$server$2f$create$2d$deduped$2d$by$2d$callsite$2d$server$2d$error$2d$logger$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["createDedupedByCallsiteServerErrorLoggerDev"])(createParamsAccessError); -function createParamsAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`params\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E834", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=params.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/client-page.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ClientPageRoot", - ()=>ClientPageRoot -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/client/route-params.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -; -; -function ClientPageRoot({ Component, serverProvidedParams }) { - let searchParams; - let params; - if (serverProvidedParams !== null) { - searchParams = serverProvidedParams.searchParams; - params = serverProvidedParams.params; - } else { - // When Cache Components is enabled, the server does not pass the params as - // props; they are parsed on the client and passed via context. - const layoutRouterContext = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"]); - params = layoutRouterContext !== null ? layoutRouterContext.parentParams : {}; - // This is an intentional behavior change: when Cache Components is enabled, - // client segments receive the "canonical" search params, not the - // rewritten ones. Users should either call useSearchParams directly or pass - // the rewritten ones in from a Server Component. - // TODO: Log a deprecation error when this object is accessed - searchParams = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$client$2f$route$2d$params$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["urlSearchParamsToParsedUrlQuery"])((0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$hooks$2d$client$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["SearchParamsContext"])); - } - if ("TURBOPACK compile-time truthy", 1) { - const { workAsyncStorage } = __turbopack_context__.r("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); - let clientSearchParams; - let clientParams; - // We are going to instrument the searchParams prop with tracking for the - // appropriate context. We wrap differently in prerendering vs rendering - const store = workAsyncStorage.getStore(); - if (!store) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('Expected workStore to exist when handling searchParams in a client Page.'), "__NEXT_ERROR_CODE", { - value: "E564", - enumerable: false, - configurable: true - }); - } - const { createSearchParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/request/search-params.js [app-ssr] (ecmascript)"); - clientSearchParams = createSearchParamsFromClient(searchParams, store); - const { createParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/request/params.js [app-ssr] (ecmascript)"); - clientParams = createParamsFromClient(params, store); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(Component, { - params: clientParams, - searchParams: clientSearchParams - }); - } else //TURBOPACK unreachable - ; -} //# sourceMappingURL=client-page.js.map -}), -"[project]/node_modules/next/dist/esm/client/components/client-segment.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "ClientSegmentRoot", - ()=>ClientSegmentRoot -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/shared/lib/invariant-error.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js [app-ssr] (ecmascript)"); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js [app-ssr] (ecmascript)"); -'use client'; -; -; -; -; -function ClientSegmentRoot({ Component, slots, serverProvidedParams }) { - let params; - if (serverProvidedParams !== null) { - params = serverProvidedParams.params; - } else { - // When Cache Components is enabled, the server does not pass the params - // as props; they are parsed on the client and passed via context. - const layoutRouterContext = (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["use"])(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$contexts$2f$app$2d$router$2d$context$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["LayoutRouterContext"]); - params = layoutRouterContext !== null ? layoutRouterContext.parentParams : {}; - } - if ("TURBOPACK compile-time truthy", 1) { - const { workAsyncStorage } = __turbopack_context__.r("[externals]/next/dist/server/app-render/work-async-storage.external.js [external] (next/dist/server/app-render/work-async-storage.external.js, cjs)"); - let clientParams; - // We are going to instrument the searchParams prop with tracking for the - // appropriate context. We wrap differently in prerendering vs rendering - const store = workAsyncStorage.getStore(); - if (!store) { - throw Object.defineProperty(new __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$shared$2f$lib$2f$invariant$2d$error$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["InvariantError"]('Expected workStore to exist when handling params in a client segment such as a Layout or Template.'), "__NEXT_ERROR_CODE", { - value: "E600", - enumerable: false, - configurable: true - }); - } - const { createParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/esm/server/request/params.js [app-ssr] (ecmascript)"); - clientParams = createParamsFromClient(params, store); - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])(Component, { - ...slots, - params: clientParams - }); - } else //TURBOPACK unreachable - ; -} //# sourceMappingURL=client-segment.js.map -}), -"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "IconMark", - ()=>IconMark -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js [app-ssr] (ecmascript)"); -'use client'; -; -const IconMark = ()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return /*#__PURE__*/ (0, __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$server$2f$route$2d$modules$2f$app$2d$page$2f$vendored$2f$ssr$2f$react$2d$jsx$2d$runtime$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["jsx"])("meta", { - name: "\xabnxt-icon\xbb" - }); -}; //# sourceMappingURL=icon-mark.js.map -}), -"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js [app-ssr] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "MetadataBoundary", - ()=>MetadataBoundary, - "OutletBoundary", - ()=>OutletBoundary, - "RootLayoutBoundary", - ()=>RootLayoutBoundary, - "ViewportBoundary", - ()=>ViewportBoundary -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/esm/lib/framework/boundary-constants.js [app-ssr] (ecmascript)"); -'use client'; -; -// We use a namespace object to allow us to recover the name of the function -// at runtime even when production bundling/minification is used. -const NameSpace = { - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["METADATA_BOUNDARY_NAME"]]: function({ children }) { - return children; - }, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["VIEWPORT_BOUNDARY_NAME"]]: function({ children }) { - return children; - }, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["OUTLET_BOUNDARY_NAME"]]: function({ children }) { - return children; - }, - [__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_LAYOUT_BOUNDARY_NAME"]]: function({ children }) { - return children; - } -}; -const MetadataBoundary = // so it retains the name inferred from the namespace object -NameSpace[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["METADATA_BOUNDARY_NAME"].slice(0)]; -const ViewportBoundary = // so it retains the name inferred from the namespace object -NameSpace[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["VIEWPORT_BOUNDARY_NAME"].slice(0)]; -const OutletBoundary = // so it retains the name inferred from the namespace object -NameSpace[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["OUTLET_BOUNDARY_NAME"].slice(0)]; -const RootLayoutBoundary = // so it retains the name inferred from the namespace object -NameSpace[__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$esm$2f$lib$2f$framework$2f$boundary$2d$constants$2e$js__$5b$app$2d$ssr$5d$__$28$ecmascript$29$__["ROOT_LAYOUT_BOUNDARY_NAME"].slice(0)]; //# sourceMappingURL=boundary-components.js.map -}), -]; - -//# sourceMappingURL=node_modules_next_dist_afb60855._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_afb60855._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_afb60855._.js.map deleted file mode 100644 index dc15deb..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_afb60855._.js.map +++ /dev/null @@ -1,105 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/module.compiled.js"],"sourcesContent":["if (process.env.NEXT_RUNTIME === 'edge') {\n module.exports = require('next/dist/server/route-modules/app-page/module.js')\n} else {\n if (process.env.__NEXT_EXPERIMENTAL_REACT) {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page-experimental.runtime.prod.js')\n }\n }\n } else {\n if (process.env.NODE_ENV === 'development') {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.dev.js')\n }\n } else {\n if (process.env.TURBOPACK) {\n module.exports = require('next/dist/compiled/next-server/app-page-turbo.runtime.prod.js')\n } else {\n module.exports = require('next/dist/compiled/next-server/app-page.runtime.prod.js')\n }\n }\n }\n}\n"],"names":["process","env","NEXT_RUNTIME","module","exports","require","__NEXT_EXPERIMENTAL_REACT","NODE_ENV","TURBOPACK"],"mappings":"AAAA,IAAIA,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;KAElC;IACL,IAAIF,QAAQC,GAAG,CAACK,yBAAyB,EAAE;;SAcpC;QACL,IAAIN,QAAQC,GAAG,CAACM,QAAQ,KAAK,WAAe;YAC1C,IAAIP,QAAQC,GAAG,CAACO,SAAS,eAAE;gBACzBL,OAAOC,OAAO,GAAGC,QAAQ;YAC3B,OAAO;;QAGT,OAAO;;IAOT;AACF","ignoreList":[0]}}, - {"offset": {"line": 23, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactJsxRuntime\n"],"names":["module","exports","require","vendored","ReactJsxRuntime"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,eAAe","ignoreList":[0]}}, - {"offset": {"line": 28, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/handle-isr-error.tsx"],"sourcesContent":["const workAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n ).workAsyncStorage\n : undefined\n\n// if we are revalidating we want to re-throw the error so the\n// function crashes so we can maintain our previous cache\n// instead of caching the error page\nexport function HandleISRError({ error }: { error: any }) {\n if (workAsyncStorage) {\n const store = workAsyncStorage.getStore()\n if (store?.isStaticGeneration) {\n if (error) {\n console.error(error)\n }\n throw error\n }\n }\n\n return null\n}\n"],"names":["HandleISRError","workAsyncStorage","window","require","undefined","error","store","getStore","isStaticGeneration","console"],"mappings":";;;+BAUgBA,kBAAAA;;;eAAAA;;;AAVhB,MAAMC,mBACJ,OAAOC,WAAW,qBAEZC,QAAQ,uKACRF,gBAAgB,GAClBG;AAKC,SAASJ,eAAe,EAAEK,KAAK,EAAkB;IACtD,IAAIJ,kBAAkB;QACpB,MAAMK,QAAQL,iBAAiBM,QAAQ;QACvC,IAAID,OAAOE,oBAAoB;YAC7B,IAAIH,OAAO;gBACTI,QAAQJ,KAAK,CAACA;YAChB;YACA,MAAMA;QACR;IACF;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 61, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/global-error.tsx"],"sourcesContent":["'use client'\n\nimport { HandleISRError } from '../handle-isr-error'\n\nconst styles = {\n error: {\n // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52\n fontFamily:\n 'system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"',\n height: '100vh',\n textAlign: 'center',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n text: {\n fontSize: '14px',\n fontWeight: 400,\n lineHeight: '28px',\n margin: '0 8px',\n },\n} as const\n\nexport type GlobalErrorComponent = React.ComponentType<{\n error: any\n}>\nfunction DefaultGlobalError({ error }: { error: any }) {\n const digest: string | undefined = error?.digest\n return (\n \n \n \n \n

\n
\n

\n Application error: a {digest ? 'server' : 'client'}-side exception\n has occurred while loading {window.location.hostname} (see the{' '}\n {digest ? 'server logs' : 'browser console'} for more\n information).\n

\n {digest ?

{`Digest: ${digest}`}

: null}\n
\n
\n \n \n )\n}\n\n// Exported so that the import signature in the loaders can be identical to user\n// supplied custom global error signatures.\nexport default DefaultGlobalError\n"],"names":["styles","error","fontFamily","height","textAlign","display","flexDirection","alignItems","justifyContent","text","fontSize","fontWeight","lineHeight","margin","DefaultGlobalError","digest","html","id","head","body","HandleISRError","div","style","h2","window","location","hostname","p"],"mappings":";;;+BAmDA,AADA,2CAC2C,qCADqC;AAEhF,WAAA;;;eAAA;;;;gCAlD+B;AAE/B,MAAMA,SAAS;IACbC,OAAO;QACL,0FAA0F;QAC1FC,YACE;QACFC,QAAQ;QACRC,WAAW;QACXC,SAAS;QACTC,eAAe;QACfC,YAAY;QACZC,gBAAgB;IAClB;IACAC,MAAM;QACJC,UAAU;QACVC,YAAY;QACZC,YAAY;QACZC,QAAQ;IACV;AACF;AAKA,SAASC,mBAAmB,EAAEb,KAAK,EAAkB;IACnD,MAAMc,SAA6Bd,OAAOc;IAC1C,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,IAAA,EAACC,QAAAA;QAAKC,IAAG;;0BACP,CAAA,GAAA,YAAA,GAAA,EAACC,QAAAA,CAAAA;0BACD,CAAA,GAAA,YAAA,IAAA,EAACC,QAAAA;;kCACC,CAAA,GAAA,YAAA,GAAA,EAACC,gBAAAA,cAAc,EAAA;wBAACnB,OAAOA;;kCACvB,CAAA,GAAA,YAAA,GAAA,EAACoB,OAAAA;wBAAIC,OAAOtB,OAAOC,KAAK;kCACtB,WAAA,GAAA,CAAA,GAAA,YAAA,IAAA,EAACoB,OAAAA;;8CACC,CAAA,GAAA,YAAA,IAAA,EAACE,MAAAA;oCAAGD,OAAOtB,OAAOS,IAAI;;wCAAE;wCACAM,SAAS,WAAW;wCAAS;wCACvBS,OAAOC,QAAQ,CAACC,QAAQ;wCAAC;wCAAU;wCAC9DX,SAAS,gBAAgB;wCAAkB;;;gCAG7CA,SAAAA,WAAAA,GAAS,CAAA,GAAA,YAAA,GAAA,EAACY,KAAAA;oCAAEL,OAAOtB,OAAOS,IAAI;8CAAG,CAAC,QAAQ,EAAEM,QAAQ;qCAAQ;;;;;;;;AAMzE;MAIA,WAAeD","ignoreList":[0]}}, - {"offset": {"line": 143, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.React\n"],"names":["module","exports","require","vendored","React"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,KAAK","ignoreList":[0]}}, - {"offset": {"line": 148, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-dom.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactDOM\n"],"names":["module","exports","require","vendored","ReactDOM"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,QAAQ","ignoreList":[0]}}, - {"offset": {"line": 153, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/app-router-context.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].AppRouterContext\n"],"names":["module","exports","require","vendored","AppRouterContext"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,gBAAgB","ignoreList":[0]}}, - {"offset": {"line": 158, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unresolved-thenable.ts"],"sourcesContent":["/**\n * Create a \"Thenable\" that does not resolve. This is used to suspend indefinitely when data is not available yet.\n */\nexport const unresolvedThenable = {\n then: () => {},\n} as PromiseLike\n"],"names":["unresolvedThenable","then"],"mappings":"AAAA;;CAEC,GACD;;;;AAAO,MAAMA,qBAAqB;IAChCC,MAAM,KAAO;AACf,EAAsB","ignoreList":[0]}}, - {"offset": {"line": 171, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/hooks-client-context.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].HooksClientContext\n"],"names":["module","exports","require","vendored","HooksClientContext"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,kBAAkB","ignoreList":[0]}}, - {"offset": {"line": 176, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation-untracked.ts"],"sourcesContent":["import { useContext } from 'react'\nimport { PathnameContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * This checks to see if the current render has any unknown route parameters that\n * would cause the pathname to be dynamic. It's used to trigger a different\n * render path in the error boundary.\n *\n * @returns true if there are any unknown route parameters, false otherwise\n */\nfunction hasFallbackRouteParams(): boolean {\n if (typeof window === 'undefined') {\n // AsyncLocalStorage should not be included in the client bundle.\n const { workUnitAsyncStorage } =\n require('../../server/app-render/work-unit-async-storage.external') as typeof import('../../server/app-render/work-unit-async-storage.external')\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (!workUnitStore) return false\n\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n const fallbackParams = workUnitStore.fallbackRouteParams\n return fallbackParams ? fallbackParams.size > 0 : false\n case 'prerender-legacy':\n case 'request':\n case 'prerender-runtime':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n\n return false\n }\n\n return false\n}\n\n/**\n * This returns a `null` value if there are any unknown route parameters, and\n * otherwise returns the pathname from the context. This is an alternative to\n * `usePathname` that is used in the error boundary to avoid rendering the\n * error boundary when there are unknown route parameters. This doesn't throw\n * when accessed with unknown route parameters.\n *\n * @returns\n *\n * @internal\n */\nexport function useUntrackedPathname(): string | null {\n // If there are any unknown route parameters we would typically throw\n // an error, but this internal method allows us to return a null value instead\n // for components that do not propagate the pathname to the static shell (like\n // the error boundary).\n if (hasFallbackRouteParams()) {\n return null\n }\n\n // This shouldn't cause any issues related to conditional rendering because\n // the environment will be consistent for the render.\n // eslint-disable-next-line react-hooks/rules-of-hooks\n return useContext(PathnameContext)\n}\n"],"names":["useContext","PathnameContext","hasFallbackRouteParams","window","workUnitAsyncStorage","require","workUnitStore","getStore","type","fallbackParams","fallbackRouteParams","size","useUntrackedPathname"],"mappings":";;;;AAAA,SAASA,UAAU,QAAQ,QAAO;AAClC,SAASC,eAAe,QAAQ,uDAAsD;;;AAEtF;;;;;;CAMC,GACD,SAASC;IACP,IAAI,OAAOC,WAAW,kBAAa;QACjC,iEAAiE;QACjE,MAAM,EAAEC,oBAAoB,EAAE,GAC5BC,QAAQ;QAEV,MAAMC,gBAAgBF,qBAAqBG,QAAQ;QACnD,IAAI,CAACD,eAAe,OAAO;QAE3B,OAAQA,cAAcE,IAAI;YACxB,KAAK;YACL,KAAK;YACL,KAAK;gBACH,MAAMC,iBAAiBH,cAAcI,mBAAmB;gBACxD,OAAOD,iBAAiBA,eAAeE,IAAI,GAAG,IAAI;YACpD,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;gBACH;YACF;gBACEL;QACJ;QAEA,OAAO;IACT;;;AAGF;AAaO,SAASM;IACd,qEAAqE;IACrE,8EAA8E;IAC9E,8EAA8E;IAC9E,uBAAuB;IACvB,IAAIV,0BAA0B;QAC5B,OAAO;IACT;IAEA,2EAA2E;IAC3E,qDAAqD;IACrD,sDAAsD;IACtD,WAAOF,mNAAAA,EAAWC,kPAAAA;AACpB","ignoreList":[0]}}, - {"offset": {"line": 234, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/http-access-fallback.ts"],"sourcesContent":["export const HTTPAccessErrorStatus = {\n NOT_FOUND: 404,\n FORBIDDEN: 403,\n UNAUTHORIZED: 401,\n}\n\nconst ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus))\n\nexport const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'\n\nexport type HTTPAccessFallbackError = Error & {\n digest: `${typeof HTTP_ERROR_FALLBACK_ERROR_CODE};${string}`\n}\n\n/**\n * Checks an error to determine if it's an error generated by\n * the HTTP navigation APIs `notFound()`, `forbidden()` or `unauthorized()`.\n *\n * @param error the error that may reference a HTTP access error\n * @returns true if the error is a HTTP access error\n */\nexport function isHTTPAccessFallbackError(\n error: unknown\n): error is HTTPAccessFallbackError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n const [prefix, httpStatus] = error.digest.split(';')\n\n return (\n prefix === HTTP_ERROR_FALLBACK_ERROR_CODE &&\n ALLOWED_CODES.has(Number(httpStatus))\n )\n}\n\nexport function getAccessFallbackHTTPStatus(\n error: HTTPAccessFallbackError\n): number {\n const httpStatus = error.digest.split(';')[1]\n return Number(httpStatus)\n}\n\nexport function getAccessFallbackErrorTypeByStatus(\n status: number\n): 'not-found' | 'forbidden' | 'unauthorized' | undefined {\n switch (status) {\n case 401:\n return 'unauthorized'\n case 403:\n return 'forbidden'\n case 404:\n return 'not-found'\n default:\n return\n }\n}\n"],"names":["HTTPAccessErrorStatus","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","ALLOWED_CODES","Set","Object","values","HTTP_ERROR_FALLBACK_ERROR_CODE","isHTTPAccessFallbackError","error","digest","prefix","httpStatus","split","has","Number","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","status"],"mappings":";;;;;;;;;;;;AAAO,MAAMA,wBAAwB;IACnCC,WAAW;IACXC,WAAW;IACXC,cAAc;AAChB,EAAC;AAED,MAAMC,gBAAgB,IAAIC,IAAIC,OAAOC,MAAM,CAACP;AAErC,MAAMQ,iCAAiC,2BAA0B;AAajE,SAASC,0BACdC,KAAc;IAEd,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IACA,MAAM,CAACC,QAAQC,WAAW,GAAGH,MAAMC,MAAM,CAACG,KAAK,CAAC;IAEhD,OACEF,WAAWJ,kCACXJ,cAAcW,GAAG,CAACC,OAAOH;AAE7B;AAEO,SAASI,4BACdP,KAA8B;IAE9B,MAAMG,aAAaH,MAAMC,MAAM,CAACG,KAAK,CAAC,IAAI,CAAC,EAAE;IAC7C,OAAOE,OAAOH;AAChB;AAEO,SAASK,mCACdC,MAAc;IAEd,OAAQA;QACN,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT;YACE;IACJ;AACF","ignoreList":[0]}}, - {"offset": {"line": 280, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-status-code.ts"],"sourcesContent":["export enum RedirectStatusCode {\n SeeOther = 303,\n TemporaryRedirect = 307,\n PermanentRedirect = 308,\n}\n"],"names":["RedirectStatusCode"],"mappings":";;;;AAAO,IAAKA,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;;WAAAA;MAIX","ignoreList":[0]}}, - {"offset": {"line": 294, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-error.ts"],"sourcesContent":["import { RedirectStatusCode } from './redirect-status-code'\n\nexport const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'\n\nexport enum RedirectType {\n push = 'push',\n replace = 'replace',\n}\n\nexport type RedirectError = Error & {\n digest: `${typeof REDIRECT_ERROR_CODE};${RedirectType};${string};${RedirectStatusCode};`\n}\n\n/**\n * Checks an error to determine if it's an error generated by the\n * `redirect(url)` helper.\n *\n * @param error the error that may reference a redirect error\n * @returns true if the error is a redirect error\n */\nexport function isRedirectError(error: unknown): error is RedirectError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n\n const digest = error.digest.split(';')\n const [errorCode, type] = digest\n const destination = digest.slice(2, -2).join(';')\n const status = digest.at(-2)\n\n const statusCode = Number(status)\n\n return (\n errorCode === REDIRECT_ERROR_CODE &&\n (type === 'replace' || type === 'push') &&\n typeof destination === 'string' &&\n !isNaN(statusCode) &&\n statusCode in RedirectStatusCode\n )\n}\n"],"names":["RedirectStatusCode","REDIRECT_ERROR_CODE","RedirectType","isRedirectError","error","digest","split","errorCode","type","destination","slice","join","status","at","statusCode","Number","isNaN"],"mappings":";;;;;;;;AAAA,SAASA,kBAAkB,QAAQ,yBAAwB;;AAEpD,MAAMC,sBAAsB,gBAAe;AAE3C,IAAKC,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;WAAAA;MAGX;AAaM,SAASC,gBAAgBC,KAAc;IAC5C,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IAEA,MAAMA,SAASD,MAAMC,MAAM,CAACC,KAAK,CAAC;IAClC,MAAM,CAACC,WAAWC,KAAK,GAAGH;IAC1B,MAAMI,cAAcJ,OAAOK,KAAK,CAAC,GAAG,CAAC,GAAGC,IAAI,CAAC;IAC7C,MAAMC,SAASP,OAAOQ,EAAE,CAAC,CAAC;IAE1B,MAAMC,aAAaC,OAAOH;IAE1B,OACEL,cAAcN,uBACbO,CAAAA,SAAS,aAAaA,SAAS,MAAK,KACrC,OAAOC,gBAAgB,YACvB,CAACO,MAAMF,eACPA,cAAcd,+MAAAA;AAElB","ignoreList":[0]}}, - {"offset": {"line": 325, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/is-next-router-error.ts"],"sourcesContent":["import {\n isHTTPAccessFallbackError,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\nimport { isRedirectError, type RedirectError } from './redirect-error'\n\n/**\n * Returns true if the error is a navigation signal error. These errors are\n * thrown by user code to perform navigation operations and interrupt the React\n * render.\n */\nexport function isNextRouterError(\n error: unknown\n): error is RedirectError | HTTPAccessFallbackError {\n return isRedirectError(error) || isHTTPAccessFallbackError(error)\n}\n"],"names":["isHTTPAccessFallbackError","isRedirectError","isNextRouterError","error"],"mappings":";;;;AAAA,SACEA,yBAAyB,QAEpB,8CAA6C;AACpD,SAASC,eAAe,QAA4B,mBAAkB;;;AAO/D,SAASC,kBACdC,KAAc;IAEd,WAAOF,mMAAAA,EAAgBE,cAAUH,oPAAAA,EAA0BG;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 340, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/create-href-from-url.ts"],"sourcesContent":["export function createHrefFromUrl(\n url: Pick,\n includeHash: boolean = true\n): string {\n return url.pathname + url.search + (includeHash ? url.hash : '')\n}\n"],"names":["createHrefFromUrl","url","includeHash","pathname","search","hash"],"mappings":";;;;AAAO,SAASA,kBACdC,GAA8C,EAC9CC,cAAuB,IAAI;IAE3B,OAAOD,IAAIE,QAAQ,GAAGF,IAAIG,MAAM,GAAIF,CAAAA,cAAcD,IAAII,IAAI,GAAG,EAAC;AAChE","ignoreList":[0]}}, - {"offset": {"line": 351, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/nav-failure-handler.ts"],"sourcesContent":["import { useEffect } from 'react'\nimport { createHrefFromUrl } from './router-reducer/create-href-from-url'\n\nexport function handleHardNavError(error: unknown): boolean {\n if (\n error &&\n typeof window !== 'undefined' &&\n window.next.__pendingUrl &&\n createHrefFromUrl(new URL(window.location.href)) !==\n createHrefFromUrl(window.next.__pendingUrl)\n ) {\n console.error(\n `Error occurred during navigation, falling back to hard navigation`,\n error\n )\n window.location.href = window.next.__pendingUrl.toString()\n return true\n }\n return false\n}\n\nexport function useNavFailureHandler() {\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n // this if is only for DCE of the feature flag not conditional\n // eslint-disable-next-line react-hooks/rules-of-hooks\n useEffect(() => {\n const uncaughtExceptionHandler = (\n evt: ErrorEvent | PromiseRejectionEvent\n ) => {\n const error = 'reason' in evt ? evt.reason : evt.error\n // if we have an unhandled exception/rejection during\n // a navigation we fall back to a hard navigation to\n // attempt recovering to a good state\n handleHardNavError(error)\n }\n window.addEventListener('unhandledrejection', uncaughtExceptionHandler)\n window.addEventListener('error', uncaughtExceptionHandler)\n return () => {\n window.removeEventListener('error', uncaughtExceptionHandler)\n window.removeEventListener(\n 'unhandledrejection',\n uncaughtExceptionHandler\n )\n }\n }, [])\n }\n}\n"],"names":["useEffect","createHrefFromUrl","handleHardNavError","error","window","next","__pendingUrl","URL","location","href","console","toString","useNavFailureHandler","process","env","__NEXT_APP_NAV_FAIL_HANDLING","uncaughtExceptionHandler","evt","reason","addEventListener","removeEventListener"],"mappings":";;;;;;AAAA,SAASA,SAAS,QAAQ,QAAO;AACjC,SAASC,iBAAiB,QAAQ,wCAAuC;;;AAElE,SAASC,mBAAmBC,KAAc;IAC/C,IACEA,SACA,OAAOC,2CAAW,eAClBA,OAAOC,IAAI,CAACC,YAAY,QACxBL,sOAAAA,EAAkB,IAAIM,IAAIH,OAAOI,QAAQ,CAACC,IAAI,WAC5CR,sOAAAA,EAAkBG,OAAOC,IAAI,CAACC,YAAY,GAC5C;;IAQF,OAAO;AACT;AAEO,SAASM;IACd,IAAIC,QAAQC,GAAG,CAACC,4BAA4B,EAAE;;AAwBhD","ignoreList":[0]}}, - {"offset": {"line": 374, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/handle-isr-error.tsx"],"sourcesContent":["const workAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n ).workAsyncStorage\n : undefined\n\n// if we are revalidating we want to re-throw the error so the\n// function crashes so we can maintain our previous cache\n// instead of caching the error page\nexport function HandleISRError({ error }: { error: any }) {\n if (workAsyncStorage) {\n const store = workAsyncStorage.getStore()\n if (store?.isStaticGeneration) {\n if (error) {\n console.error(error)\n }\n throw error\n }\n }\n\n return null\n}\n"],"names":["workAsyncStorage","window","require","undefined","HandleISRError","error","store","getStore","isStaticGeneration","console"],"mappings":";;;;AAAA,MAAMA,mBACJ,OAAOC,WAAW,qBAEZC,QAAQ,uKACRF,gBAAgB,GAClBG;AAKC,SAASC,eAAe,EAAEC,KAAK,EAAkB;IACtD,IAAIL,kBAAkB;QACpB,MAAMM,QAAQN,iBAAiBO,QAAQ;QACvC,IAAID,OAAOE,oBAAoB;YAC7B,IAAIH,OAAO;gBACTI,QAAQJ,KAAK,CAACA;YAChB;YACA,MAAMA;QACR;IACF;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 395, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/html-bots.ts"],"sourcesContent":["// This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent.\n// Note: The pattern [\\w-]+-Google captures all Google crawlers with \"-Google\" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google)\n// as well as crawlers starting with \"Google-\" (e.g., Google-PageRenderer, Google-InspectionTool)\nexport const HTML_LIMITED_BOT_UA_RE =\n /[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i\n"],"names":["HTML_LIMITED_BOT_UA_RE"],"mappings":"AAAA,6GAA6G;AAC7G,sKAAsK;AACtK,kJAAkJ;AAClJ,iGAAiG;;;;;AAC1F,MAAMA,yBACX,sTAAqT","ignoreList":[0]}}, - {"offset": {"line": 408, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/is-bot.ts"],"sourcesContent":["import { HTML_LIMITED_BOT_UA_RE } from './html-bots'\n\n// Bot crawler that will spin up a headless browser and execute JS.\n// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers.\n// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers\n// This regex specifically matches \"Googlebot\" but NOT \"Mediapartners-Google\", \"AdsBot-Google\", etc.\nconst HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i\n\nexport const HTML_LIMITED_BOT_UA_RE_STRING = HTML_LIMITED_BOT_UA_RE.source\n\nexport { HTML_LIMITED_BOT_UA_RE }\n\nfunction isDomBotUA(userAgent: string) {\n return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent)\n}\n\nfunction isHtmlLimitedBotUA(userAgent: string) {\n return HTML_LIMITED_BOT_UA_RE.test(userAgent)\n}\n\nexport function isBot(userAgent: string): boolean {\n return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent)\n}\n\nexport function getBotType(userAgent: string): 'dom' | 'html' | undefined {\n if (isDomBotUA(userAgent)) {\n return 'dom'\n }\n if (isHtmlLimitedBotUA(userAgent)) {\n return 'html'\n }\n return undefined\n}\n"],"names":["HTML_LIMITED_BOT_UA_RE","HEADLESS_BROWSER_BOT_UA_RE","HTML_LIMITED_BOT_UA_RE_STRING","source","isDomBotUA","userAgent","test","isHtmlLimitedBotUA","isBot","getBotType","undefined"],"mappings":";;;;;;;;AAAA,SAASA,sBAAsB,QAAQ,cAAa;;AAEpD,mEAAmE;AACnE,yFAAyF;AACzF,4FAA4F;AAC5F,oGAAoG;AACpG,MAAMC,6BAA6B;AAE5B,MAAMC,gCAAgCF,iNAAAA,CAAuBG,MAAM,CAAA;;AAI1E,SAASC,WAAWC,SAAiB;IACnC,OAAOJ,2BAA2BK,IAAI,CAACD;AACzC;AAEA,SAASE,mBAAmBF,SAAiB;IAC3C,OAAOL,iNAAAA,CAAuBM,IAAI,CAACD;AACrC;AAEO,SAASG,MAAMH,SAAiB;IACrC,OAAOD,WAAWC,cAAcE,mBAAmBF;AACrD;AAEO,SAASI,WAAWJ,SAAiB;IAC1C,IAAID,WAAWC,YAAY;QACzB,OAAO;IACT;IACA,IAAIE,mBAAmBF,YAAY;QACjC,OAAO;IACT;IACA,OAAOK;AACT","ignoreList":[0]}}, - {"offset": {"line": 447, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/error-boundary.tsx"],"sourcesContent":["'use client'\n\nimport React, { type JSX } from 'react'\nimport { useUntrackedPathname } from './navigation-untracked'\nimport { isNextRouterError } from './is-next-router-error'\nimport { handleHardNavError } from './nav-failure-handler'\nimport { HandleISRError } from './handle-isr-error'\nimport { isBot } from '../../shared/lib/router/utils/is-bot'\n\nconst isBotUserAgent =\n typeof window !== 'undefined' && isBot(window.navigator.userAgent)\n\nexport type ErrorComponent = React.ComponentType<{\n error: Error\n // global-error, there's no `reset` function;\n // regular error boundary, there's a `reset` function.\n reset?: () => void\n}>\n\nexport interface ErrorBoundaryProps {\n children?: React.ReactNode\n errorComponent: ErrorComponent | undefined\n errorStyles?: React.ReactNode | undefined\n errorScripts?: React.ReactNode | undefined\n}\n\ninterface ErrorBoundaryHandlerProps extends ErrorBoundaryProps {\n pathname: string | null\n errorComponent: ErrorComponent\n}\n\ninterface ErrorBoundaryHandlerState {\n error: Error | null\n previousPathname: string | null\n}\n\nexport class ErrorBoundaryHandler extends React.Component<\n ErrorBoundaryHandlerProps,\n ErrorBoundaryHandlerState\n> {\n constructor(props: ErrorBoundaryHandlerProps) {\n super(props)\n this.state = { error: null, previousPathname: this.props.pathname }\n }\n\n static getDerivedStateFromError(error: Error) {\n if (isNextRouterError(error)) {\n // Re-throw if an expected internal Next.js router error occurs\n // this means it should be handled by a different boundary (such as a NotFound boundary in a parent segment)\n throw error\n }\n\n return { error }\n }\n\n static getDerivedStateFromProps(\n props: ErrorBoundaryHandlerProps,\n state: ErrorBoundaryHandlerState\n ): ErrorBoundaryHandlerState | null {\n const { error } = state\n\n // if we encounter an error while\n // a navigation is pending we shouldn't render\n // the error boundary and instead should fallback\n // to a hard navigation to attempt recovering\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n if (error && handleHardNavError(error)) {\n // clear error so we don't render anything\n return {\n error: null,\n previousPathname: props.pathname,\n }\n }\n }\n\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.error) {\n return {\n error: null,\n previousPathname: props.pathname,\n }\n }\n return {\n error: state.error,\n previousPathname: props.pathname,\n }\n }\n\n reset = () => {\n this.setState({ error: null })\n }\n\n // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version.\n render(): React.ReactNode {\n //When it's bot request, segment level error boundary will keep rendering the children,\n // the final error will be caught by the root error boundary and determine wether need to apply graceful degrade.\n if (this.state.error && !isBotUserAgent) {\n return (\n <>\n \n {this.props.errorStyles}\n {this.props.errorScripts}\n \n \n )\n }\n\n return this.props.children\n }\n}\n\n/**\n * Handles errors through `getDerivedStateFromError`.\n * Renders the provided error component and provides a way to `reset` the error boundary state.\n */\n\n/**\n * Renders error boundary with the provided \"errorComponent\" property as the fallback.\n * If no \"errorComponent\" property is provided it renders the children without an error boundary.\n */\nexport function ErrorBoundary({\n errorComponent,\n errorStyles,\n errorScripts,\n children,\n}: ErrorBoundaryProps & {\n children: React.ReactNode\n}): JSX.Element {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these errors can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n if (errorComponent) {\n return (\n \n {children}\n \n )\n }\n\n return <>{children}\n}\n"],"names":["React","useUntrackedPathname","isNextRouterError","handleHardNavError","HandleISRError","isBot","isBotUserAgent","window","navigator","userAgent","ErrorBoundaryHandler","Component","constructor","props","reset","setState","error","state","previousPathname","pathname","getDerivedStateFromError","getDerivedStateFromProps","process","env","__NEXT_APP_NAV_FAIL_HANDLING","render","errorStyles","errorScripts","this","errorComponent","children","ErrorBoundary"],"mappings":";;;;;;;AAEA,OAAOA,WAAyB,QAAO;AACvC,SAASC,oBAAoB,QAAQ,yBAAwB;AAC7D,SAASC,iBAAiB,QAAQ,yBAAwB;AAC1D,SAASC,kBAAkB,QAAQ,wBAAuB;AAC1D,SAASC,cAAc,QAAQ,qBAAoB;AACnD,SAASC,KAAK,QAAQ,uCAAsC;AAP5D;;;;;;;;AASA,MAAMC,iBACJ,OAAOC,2CAAW,mBAAeF,6MAAAA,EAAME,OAAOC,SAAS,CAACC,SAAS;AA0B5D,MAAMC,6BAA6BV,gNAAAA,CAAMW,SAAS;IAIvDC,YAAYC,KAAgC,CAAE;QAC5C,KAAK,CAACA,QAAAA,IAAAA,CAoDRC,KAAAA,GAAQ;YACN,IAAI,CAACC,QAAQ,CAAC;gBAAEC,OAAO;YAAK;QAC9B;QArDE,IAAI,CAACC,KAAK,GAAG;YAAED,OAAO;YAAME,kBAAkB,IAAI,CAACL,KAAK,CAACM,QAAQ;QAAC;IACpE;IAEA,OAAOC,yBAAyBJ,KAAY,EAAE;QAC5C,QAAId,iNAAAA,EAAkBc,QAAQ;YAC5B,+DAA+D;YAC/D,4GAA4G;YAC5G,MAAMA;QACR;QAEA,OAAO;YAAEA;QAAM;IACjB;IAEA,OAAOK,yBACLR,KAAgC,EAChCI,KAAgC,EACE;QAClC,MAAM,EAAED,KAAK,EAAE,GAAGC;QAElB,iCAAiC;QACjC,8CAA8C;QAC9C,iDAAiD;QACjD,6CAA6C;QAC7C,IAAIK,QAAQC,GAAG,CAACC,4BAA4B,EAAE;;QAU9C;;;;;KAKC,GACD,IAAIX,MAAMM,QAAQ,KAAKF,MAAMC,gBAAgB,IAAID,MAAMD,KAAK,EAAE;YAC5D,OAAO;gBACLA,OAAO;gBACPE,kBAAkBL,MAAMM,QAAQ;YAClC;QACF;QACA,OAAO;YACLH,OAAOC,MAAMD,KAAK;YAClBE,kBAAkBL,MAAMM,QAAQ;QAClC;IACF;IAMA,yIAAyI;IACzIM,SAA0B;QACxB,uFAAuF;QACvF,iHAAiH;QACjH,IAAI,IAAI,CAACR,KAAK,CAACD,KAAK,IAAI,CAACV,gBAAgB;YACvC,OAAA,WAAA,OACE,+NAAA,EAAA,mOAAA,EAAA;;sCACE,8NAAA,EAACF,uMAAAA,EAAAA;wBAAeY,OAAO,IAAI,CAACC,KAAK,CAACD,KAAK;;oBACtC,IAAI,CAACH,KAAK,CAACa,WAAW;oBACtB,IAAI,CAACb,KAAK,CAACc,YAAY;sCACxB,8NAAA,EAACC,IAAI,CAACf,KAAK,CAACgB,cAAc,EAAA;wBACxBb,OAAO,IAAI,CAACC,KAAK,CAACD,KAAK;wBACvBF,OAAO,IAAI,CAACA,KAAK;;;;QAIzB;QAEA,OAAO,IAAI,CAACD,KAAK,CAACiB,QAAQ;IAC5B;AACF;AAWO,SAASC,cAAc,EAC5BF,cAAc,EACdH,WAAW,EACXC,YAAY,EACZG,QAAQ,EAGT;IACC,6EAA6E;IAC7E,qEAAqE;IACrE,wEAAwE;IACxE,oEAAoE;IACpE,MAAMX,eAAWlB,8MAAAA;IACjB,IAAI4B,gBAAgB;QAClB,OAAA,WAAA,OACE,8NAAA,EAACnB,sBAAAA;YACCS,UAAUA;YACVU,gBAAgBA;YAChBH,aAAaA;YACbC,cAAcA;sBAEbG;;IAGP;IAEA,OAAA,WAAA,OAAO,8NAAA,EAAA,mOAAA,EAAA;kBAAGA;;AACZ","ignoreList":[0]}}, - {"offset": {"line": 560, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/match-segments.ts"],"sourcesContent":["import type { Segment } from '../../shared/lib/app-router-types'\n\nexport const matchSegment = (\n existingSegment: Segment,\n segment: Segment\n): boolean => {\n // segment is either Array or string\n if (typeof existingSegment === 'string') {\n if (typeof segment === 'string') {\n // Common case: segment is just a string\n return existingSegment === segment\n }\n return false\n }\n\n if (typeof segment === 'string') {\n return false\n }\n return existingSegment[0] === segment[0] && existingSegment[1] === segment[1]\n}\n"],"names":["matchSegment","existingSegment","segment"],"mappings":";;;;AAEO,MAAMA,eAAe,CAC1BC,iBACAC;IAEA,oCAAoC;IACpC,IAAI,OAAOD,oBAAoB,UAAU;QACvC,IAAI,OAAOC,YAAY,UAAU;YAC/B,wCAAwC;YACxC,OAAOD,oBAAoBC;QAC7B;QACA,OAAO;IACT;IAEA,IAAI,OAAOA,YAAY,UAAU;QAC/B,OAAO;IACT;IACA,OAAOD,eAAe,CAAC,EAAE,KAAKC,OAAO,CAAC,EAAE,IAAID,eAAe,CAAC,EAAE,KAAKC,OAAO,CAAC,EAAE;AAC/E,EAAC","ignoreList":[0]}}, - {"offset": {"line": 582, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/warn-once.ts"],"sourcesContent":["let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n"],"names":["warnOnce","_","process","env","NODE_ENV","warnings","Set","msg","has","console","warn","add"],"mappings":";;;;AAAA,IAAIA,WAAW,CAACC,KAAe;AAC/B,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;IACzC,MAAMC,WAAW,IAAIC;IACrBN,WAAW,CAACO;QACV,IAAI,CAACF,SAASG,GAAG,CAACD,MAAM;YACtBE,QAAQC,IAAI,CAACH;QACf;QACAF,SAASM,GAAG,CAACJ;IACf;AACF","ignoreList":[0]}}, - {"offset": {"line": 602, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/disable-smooth-scroll.ts"],"sourcesContent":["import { warnOnce } from '../../utils/warn-once'\n\n/**\n * Run function with `scroll-behavior: auto` applied to ``.\n * This css change will be reverted after the function finishes.\n */\nexport function disableSmoothScrollDuringRouteTransition(\n fn: () => void,\n options: { dontForceLayout?: boolean; onlyHashChange?: boolean } = {}\n) {\n // if only the hash is changed, we don't need to disable smooth scrolling\n // we only care to prevent smooth scrolling when navigating to a new page to avoid jarring UX\n if (options.onlyHashChange) {\n fn()\n return\n }\n\n const htmlElement = document.documentElement\n const hasDataAttribute = htmlElement.dataset.scrollBehavior === 'smooth'\n\n if (!hasDataAttribute) {\n // Warn if smooth scrolling is detected but no data attribute is present\n if (\n process.env.NODE_ENV === 'development' &&\n getComputedStyle(htmlElement).scrollBehavior === 'smooth'\n ) {\n warnOnce(\n 'Detected `scroll-behavior: smooth` on the `` element. To disable smooth scrolling during route transitions, ' +\n 'add `data-scroll-behavior=\"smooth\"` to your element. ' +\n 'Learn more: https://nextjs.org/docs/messages/missing-data-scroll-behavior'\n )\n }\n // No smooth scrolling configured, run directly without style manipulation\n fn()\n return\n }\n\n // Proceed with temporarily disabling smooth scrolling\n const existing = htmlElement.style.scrollBehavior\n htmlElement.style.scrollBehavior = 'auto'\n if (!options.dontForceLayout) {\n // In Chrome-based browsers we need to force reflow before calling `scrollTo`.\n // Otherwise it will not pickup the change in scrollBehavior\n // More info here: https://github.com/vercel/next.js/issues/40719#issuecomment-1336248042\n htmlElement.getClientRects()\n }\n fn()\n htmlElement.style.scrollBehavior = existing\n}\n"],"names":["warnOnce","disableSmoothScrollDuringRouteTransition","fn","options","onlyHashChange","htmlElement","document","documentElement","hasDataAttribute","dataset","scrollBehavior","process","env","NODE_ENV","getComputedStyle","existing","style","dontForceLayout","getClientRects"],"mappings":";;;;AAAA,SAASA,QAAQ,QAAQ,wBAAuB;;AAMzC,SAASC,yCACdC,EAAc,EACdC,UAAmE,CAAC,CAAC;IAErE,yEAAyE;IACzE,6FAA6F;IAC7F,IAAIA,QAAQC,cAAc,EAAE;QAC1BF;QACA;IACF;IAEA,MAAMG,cAAcC,SAASC,eAAe;IAC5C,MAAMC,mBAAmBH,YAAYI,OAAO,CAACC,cAAc,KAAK;IAEhE,IAAI,CAACF,kBAAkB;QACrB,wEAAwE;QACxE,IACEG,QAAQC,GAAG,CAACC,QAAQ,gCAAK,iBACzBC,iBAAiBT,aAAaK,cAAc,KAAK,UACjD;gBACAV,yLAAAA,EACE,uHACE,iEACA;QAEN;QACA,0EAA0E;QAC1EE;QACA;IACF;IAEA,sDAAsD;IACtD,MAAMa,WAAWV,YAAYW,KAAK,CAACN,cAAc;IACjDL,YAAYW,KAAK,CAACN,cAAc,GAAG;IACnC,IAAI,CAACP,QAAQc,eAAe,EAAE;QAC5B,8EAA8E;QAC9E,4DAA4D;QAC5D,yFAAyF;QACzFZ,YAAYa,cAAc;IAC5B;IACAhB;IACAG,YAAYW,KAAK,CAACN,cAAc,GAAGK;AACrC","ignoreList":[0]}}, - {"offset": {"line": 642, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment.ts"],"sourcesContent":["import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n"],"names":["getSegmentValue","segment","Array","isArray","isGroupSegment","endsWith","isParallelRouteSegment","startsWith","addSearchParamsIfPageSegment","searchParams","isPageSegment","includes","PAGE_SEGMENT_KEY","stringifiedQuery","JSON","stringify","computeSelectedLayoutSegment","segments","parallelRouteKey","length","rawSegment","DEFAULT_SEGMENT_KEY","getSelectedLayoutSegmentPath","tree","first","segmentPath","node","parallelRoutes","children","Object","values","segmentValue","push","NOT_FOUND_SEGMENT_KEY"],"mappings":";;;;;;;;;;;;;;;;;;;;AAEO,SAASA,gBAAgBC,OAAgB;IAC9C,OAAOC,MAAMC,OAAO,CAACF,WAAWA,OAAO,CAAC,EAAE,GAAGA;AAC/C;AAEO,SAASG,eAAeH,OAAe;IAC5C,sCAAsC;IACtC,OAAOA,OAAO,CAAC,EAAE,KAAK,OAAOA,QAAQI,QAAQ,CAAC;AAChD;AAEO,SAASC,uBAAuBL,OAAe;IACpD,OAAOA,QAAQM,UAAU,CAAC,QAAQN,YAAY;AAChD;AAEO,SAASO,6BACdP,OAAgB,EAChBQ,YAA2D;IAE3D,MAAMC,gBAAgBT,QAAQU,QAAQ,CAACC;IAEvC,IAAIF,eAAe;QACjB,MAAMG,mBAAmBC,KAAKC,SAAS,CAACN;QACxC,OAAOI,qBAAqB,OACxBD,mBAAmB,MAAMC,mBACzBD;IACN;IAEA,OAAOX;AACT;AAEO,SAASe,6BACdC,QAAyB,EACzBC,gBAAwB;IAExB,IAAI,CAACD,YAAYA,SAASE,MAAM,KAAK,GAAG;QACtC,OAAO;IACT;IAEA,iFAAiF;IACjF,MAAMC,aACJF,qBAAqB,aACjBD,QAAQ,CAAC,EAAE,GACXA,QAAQ,CAACA,SAASE,MAAM,GAAG,EAAE;IAEnC,sGAAsG;IACtG,oEAAoE;IACpE,OAAOC,eAAeC,sBAAsB,OAAOD;AACrD;AAGO,SAASE,6BACdC,IAAuB,EACvBL,gBAAwB,EACxBM,QAAQ,IAAI,EACZC,cAAwB,EAAE;IAE1B,IAAIC;IACJ,IAAIF,OAAO;QACT,kEAAkE;QAClEE,OAAOH,IAAI,CAAC,EAAE,CAACL,iBAAiB;IAClC,OAAO;QACL,oGAAoG;QACpG,MAAMS,iBAAiBJ,IAAI,CAAC,EAAE;QAC9BG,OAAOC,eAAeC,QAAQ,IAAIC,OAAOC,MAAM,CAACH,eAAe,CAAC,EAAE;IACpE;IAEA,IAAI,CAACD,MAAM,OAAOD;IAClB,MAAMxB,UAAUyB,IAAI,CAAC,EAAE;IAEvB,IAAIK,eAAe/B,gBAAgBC;IAEnC,IAAI,CAAC8B,gBAAgBA,aAAaxB,UAAU,CAACK,mBAAmB;QAC9D,OAAOa;IACT;IAEAA,YAAYO,IAAI,CAACD;IAEjB,OAAOT,6BACLI,MACAR,kBACA,OACAO;AAEJ;AAEO,MAAMb,mBAAmB,WAAU;AACnC,MAAMS,sBAAsB,cAAa;AACzC,MAAMY,wBAAwB,cAAa","ignoreList":[0]}}, - {"offset": {"line": 716, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/contexts/server-inserted-html.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['contexts'].ServerInsertedHtml\n"],"names":["module","exports","require","vendored","ServerInsertedHtml"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,WAAW,CAACC,kBAAkB","ignoreList":[0]}}, - {"offset": {"line": 721, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unrecognized-action-error.ts"],"sourcesContent":["export class UnrecognizedActionError extends Error {\n constructor(...args: ConstructorParameters) {\n super(...args)\n this.name = 'UnrecognizedActionError'\n }\n}\n\n/**\n * Check whether a server action call failed because the server action was not recognized by the server.\n * This can happen if the client and the server are not from the same deployment.\n *\n * Example usage:\n * ```ts\n * try {\n * await myServerAction();\n * } catch (err) {\n * if (unstable_isUnrecognizedActionError(err)) {\n * // The client is from a different deployment than the server.\n * // Reloading the page will fix this mismatch.\n * window.alert(\"Please refresh the page and try again\");\n * return;\n * }\n * }\n * ```\n * */\nexport function unstable_isUnrecognizedActionError(\n error: unknown\n): error is UnrecognizedActionError {\n return !!(\n error &&\n typeof error === 'object' &&\n error instanceof UnrecognizedActionError\n )\n}\n"],"names":["UnrecognizedActionError","Error","constructor","args","name","unstable_isUnrecognizedActionError","error"],"mappings":";;;;;;AAAO,MAAMA,gCAAgCC;IAC3CC,YAAY,GAAGC,IAAyC,CAAE;QACxD,KAAK,IAAIA;QACT,IAAI,CAACC,IAAI,GAAG;IACd;AACF;AAoBO,SAASC,mCACdC,KAAc;IAEd,OAAO,CAAC,CACNA,CAAAA,SACA,OAAOA,UAAU,YACjBA,iBAAiBN,uBAAsB;AAE3C","ignoreList":[0]}}, - {"offset": {"line": 740, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/readonly-url-search-params.ts"],"sourcesContent":["/**\n * ReadonlyURLSearchParams implementation shared between client and server.\n * This file is intentionally not marked as 'use client' or 'use server'\n * so it can be imported by both environments.\n */\n\n/** @internal */\nclass ReadonlyURLSearchParamsError extends Error {\n constructor() {\n super(\n 'Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams'\n )\n }\n}\n\n/**\n * A read-only version of URLSearchParams that throws errors when mutation methods are called.\n * This ensures that the URLSearchParams returned by useSearchParams() cannot be mutated.\n */\nexport class ReadonlyURLSearchParams extends URLSearchParams {\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n append() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n delete() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n set() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n sort() {\n throw new ReadonlyURLSearchParamsError()\n }\n}\n"],"names":["ReadonlyURLSearchParamsError","Error","constructor","ReadonlyURLSearchParams","URLSearchParams","append","delete","set","sort"],"mappings":";;;;AAAA;;;;CAIC,GAED,cAAc,GACd,MAAMA,qCAAqCC;IACzCC,aAAc;QACZ,KAAK,CACH;IAEJ;AACF;AAMO,MAAMC,gCAAgCC;IAC3C,wKAAwK,GACxKC,SAAS;QACP,MAAM,IAAIL;IACZ;IACA,wKAAwK,GACxKM,SAAS;QACP,MAAM,IAAIN;IACZ;IACA,wKAAwK,GACxKO,MAAM;QACJ,MAAM,IAAIP;IACZ;IACA,wKAAwK,GACxKQ,OAAO;QACL,MAAM,IAAIR;IACZ;AACF","ignoreList":[0]}}, - {"offset": {"line": 771, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect.ts"],"sourcesContent":["import { RedirectStatusCode } from './redirect-status-code'\nimport {\n RedirectType,\n type RedirectError,\n isRedirectError,\n REDIRECT_ERROR_CODE,\n} from './redirect-error'\n\nconst actionAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/action-async-storage.external') as typeof import('../../server/app-render/action-async-storage.external')\n ).actionAsyncStorage\n : undefined\n\nexport function getRedirectError(\n url: string,\n type: RedirectType,\n statusCode: RedirectStatusCode = RedirectStatusCode.TemporaryRedirect\n): RedirectError {\n const error = new Error(REDIRECT_ERROR_CODE) as RedirectError\n error.digest = `${REDIRECT_ERROR_CODE};${type};${url};${statusCode};`\n return error\n}\n\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 307/303 to the caller.\n * - In a Server Action, type defaults to 'push' and 'replace' elsewhere.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */\nexport function redirect(\n /** The URL to redirect to */\n url: string,\n type?: RedirectType\n): never {\n type ??= actionAsyncStorage?.getStore()?.isAction\n ? RedirectType.push\n : RedirectType.replace\n\n throw getRedirectError(url, type, RedirectStatusCode.TemporaryRedirect)\n}\n\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 308/303 to the caller.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */\nexport function permanentRedirect(\n /** The URL to redirect to */\n url: string,\n type: RedirectType = RedirectType.replace\n): never {\n throw getRedirectError(url, type, RedirectStatusCode.PermanentRedirect)\n}\n\n/**\n * Returns the encoded URL from the error if it's a RedirectError, null\n * otherwise. Note that this does not validate the URL returned.\n *\n * @param error the error that may be a redirect error\n * @return the url if the error was a redirect error\n */\nexport function getURLFromRedirectError(error: RedirectError): string\nexport function getURLFromRedirectError(error: unknown): string | null {\n if (!isRedirectError(error)) return null\n\n // Slices off the beginning of the digest that contains the code and the\n // separating ';'.\n return error.digest.split(';').slice(2, -2).join(';')\n}\n\nexport function getRedirectTypeFromError(error: RedirectError): RedirectType {\n if (!isRedirectError(error)) {\n throw new Error('Not a redirect error')\n }\n\n return error.digest.split(';', 2)[1] as RedirectType\n}\n\nexport function getRedirectStatusCodeFromError(error: RedirectError): number {\n if (!isRedirectError(error)) {\n throw new Error('Not a redirect error')\n }\n\n return Number(error.digest.split(';').at(-2))\n}\n"],"names":["RedirectStatusCode","RedirectType","isRedirectError","REDIRECT_ERROR_CODE","actionAsyncStorage","window","require","undefined","getRedirectError","url","type","statusCode","TemporaryRedirect","error","Error","digest","redirect","getStore","isAction","push","replace","permanentRedirect","PermanentRedirect","getURLFromRedirectError","split","slice","join","getRedirectTypeFromError","getRedirectStatusCodeFromError","Number","at"],"mappings":";;;;;;;;;;;;;;AAAA,SAASA,kBAAkB,QAAQ,yBAAwB;AAC3D,SACEC,YAAY,EAEZC,eAAe,EACfC,mBAAmB,QACd,mBAAkB;;;AAEzB,MAAMC,qBACJ,OAAOC,WAAW,qBAEZC,QAAQ,2KACRF,kBAAkB,GACpBG;AAEC,SAASC,iBACdC,GAAW,EACXC,IAAkB,EAClBC,aAAiCX,+MAAAA,CAAmBY,iBAAiB;IAErE,MAAMC,QAAQ,OAAA,cAA8B,CAA9B,IAAIC,MAAMX,uMAAAA,GAAV,qBAAA;eAAA;oBAAA;sBAAA;IAA6B;IAC3CU,MAAME,MAAM,GAAG,GAAGZ,uMAAAA,CAAoB,CAAC,EAAEO,KAAK,CAAC,EAAED,IAAI,CAAC,EAAEE,WAAW,CAAC,CAAC;IACrE,OAAOE;AACT;AAcO,SAASG,SACd,2BAA2B,GAC3BP,GAAW,EACXC,IAAmB;IAEnBA,SAASN,oBAAoBa,YAAYC,WACrCjB,gMAAAA,CAAakB,IAAI,GACjBlB,gMAAAA,CAAamB,OAAO;IAExB,MAAMZ,iBAAiBC,KAAKC,MAAMV,+MAAAA,CAAmBY,iBAAiB;AACxE;AAaO,SAASS,kBACd,2BAA2B,GAC3BZ,GAAW,EACXC,OAAqBT,gMAAAA,CAAamB,OAAO;IAEzC,MAAMZ,iBAAiBC,KAAKC,MAAMV,+MAAAA,CAAmBsB,iBAAiB;AACxE;AAUO,SAASC,wBAAwBV,KAAc;IACpD,IAAI,KAACX,mMAAAA,EAAgBW,QAAQ,OAAO;IAEpC,wEAAwE;IACxE,kBAAkB;IAClB,OAAOA,MAAME,MAAM,CAACS,KAAK,CAAC,KAAKC,KAAK,CAAC,GAAG,CAAC,GAAGC,IAAI,CAAC;AACnD;AAEO,SAASC,yBAAyBd,KAAoB;IAC3D,IAAI,KAACX,mMAAAA,EAAgBW,QAAQ;QAC3B,MAAM,OAAA,cAAiC,CAAjC,IAAIC,MAAM,yBAAV,qBAAA;mBAAA;wBAAA;0BAAA;QAAgC;IACxC;IAEA,OAAOD,MAAME,MAAM,CAACS,KAAK,CAAC,KAAK,EAAE,CAAC,EAAE;AACtC;AAEO,SAASI,+BAA+Bf,KAAoB;IACjE,IAAI,KAACX,mMAAAA,EAAgBW,QAAQ;QAC3B,MAAM,OAAA,cAAiC,CAAjC,IAAIC,MAAM,yBAAV,qBAAA;mBAAA;wBAAA;0BAAA;QAAgC;IACxC;IAEA,OAAOe,OAAOhB,MAAME,MAAM,CAACS,KAAK,CAAC,KAAKM,EAAE,CAAC,CAAC;AAC5C","ignoreList":[0]}}, - {"offset": {"line": 836, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/not-found.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n/**\n * This function allows you to render the [not-found.js file](https://nextjs.org/docs/app/api-reference/file-conventions/not-found)\n * within a route segment as well as inject a tag.\n *\n * `notFound()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a `` meta tag and set the status code to 404.\n * - In a Route Handler or Server Action, it will serve a 404 to the caller.\n *\n * Read more: [Next.js Docs: `notFound`](https://nextjs.org/docs/app/api-reference/functions/not-found)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};404`\n\nexport function notFound(): never {\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n\n throw error\n}\n"],"names":["HTTP_ERROR_FALLBACK_ERROR_CODE","DIGEST","notFound","error","Error","digest"],"mappings":";;;;AAAA,SACEA,8BAA8B,QAEzB,8CAA6C;;AAEpD;;;;;;;;;;;;;CAaC,GAED,MAAMC,SAAS,GAAGD,yPAAAA,CAA+B,IAAI,CAAC;AAE/C,SAASE;IACd,MAAMC,QAAQ,OAAA,cAAiB,CAAjB,IAAIC,MAAMH,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BE,MAAkCE,MAAM,GAAGJ;IAE7C,MAAME;AACR","ignoreList":[0]}}, - {"offset": {"line": 869, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/forbidden.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n// TODO: Add `forbidden` docs\n/**\n * @experimental\n * This function allows you to render the [forbidden.js file](https://nextjs.org/docs/app/api-reference/file-conventions/forbidden)\n * within a route segment as well as inject a tag.\n *\n * `forbidden()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * Read more: [Next.js Docs: `forbidden`](https://nextjs.org/docs/app/api-reference/functions/forbidden)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};403`\n\nexport function forbidden(): never {\n if (!process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS) {\n throw new Error(\n `\\`forbidden()\\` is experimental and only allowed to be enabled when \\`experimental.authInterrupts\\` is enabled.`\n )\n }\n\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n throw error\n}\n"],"names":["HTTP_ERROR_FALLBACK_ERROR_CODE","DIGEST","forbidden","process","env","__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS","Error","error","digest"],"mappings":";;;;AAAA,SACEA,8BAA8B,QAEzB,8CAA6C;;AAEpD,6BAA6B;AAC7B;;;;;;;;;;;CAWC,GAED,MAAMC,SAAS,GAAGD,yPAAAA,CAA+B,IAAI,CAAC;AAE/C,SAASE;IACd,IAAI,CAACC,QAAQC,GAAG,CAACC,uBAAqC,YAAF;QAClD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,+GAA+G,CAAC,GAD7G,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,MAAMC,QAAQ,OAAA,cAAiB,CAAjB,IAAID,MAAML,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BM,MAAkCC,MAAM,GAAGP;IAC7C,MAAMM;AACR","ignoreList":[0]}}, - {"offset": {"line": 908, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unauthorized.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n// TODO: Add `unauthorized` docs\n/**\n * @experimental\n * This function allows you to render the [unauthorized.js file](https://nextjs.org/docs/app/api-reference/file-conventions/unauthorized)\n * within a route segment as well as inject a tag.\n *\n * `unauthorized()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n *\n * Read more: [Next.js Docs: `unauthorized`](https://nextjs.org/docs/app/api-reference/functions/unauthorized)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};401`\n\nexport function unauthorized(): never {\n if (!process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS) {\n throw new Error(\n `\\`unauthorized()\\` is experimental and only allowed to be used when \\`experimental.authInterrupts\\` is enabled.`\n )\n }\n\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n throw error\n}\n"],"names":["HTTP_ERROR_FALLBACK_ERROR_CODE","DIGEST","unauthorized","process","env","__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS","Error","error","digest"],"mappings":";;;;AAAA,SACEA,8BAA8B,QAEzB,8CAA6C;;AAEpD,gCAAgC;AAChC;;;;;;;;;;;;CAYC,GAED,MAAMC,SAAS,GAAGD,yPAAAA,CAA+B,IAAI,CAAC;AAE/C,SAASE;IACd,IAAI,CAACC,QAAQC,GAAG,CAACC,uBAAqC,YAAF;QAClD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,+GAA+G,CAAC,GAD7G,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,MAAMC,QAAQ,OAAA,cAAiB,CAAjB,IAAID,MAAML,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BM,MAAkCC,MAAM,GAAGP;IAC7C,MAAMM;AACR","ignoreList":[0]}}, - {"offset": {"line": 948, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/dynamic-rendering-utils.ts"],"sourcesContent":["import type { NonStaticRenderStage } from './app-render/staged-rendering'\nimport type { RequestStore } from './app-render/work-unit-async-storage.external'\n\nexport function isHangingPromiseRejectionError(\n err: unknown\n): err is HangingPromiseRejectionError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === HANGING_PROMISE_REJECTION\n}\n\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'\n\nclass HangingPromiseRejectionError extends Error {\n public readonly digest = HANGING_PROMISE_REJECTION\n\n constructor(\n public readonly route: string,\n public readonly expression: string\n ) {\n super(\n `During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`\n )\n }\n}\n\ntype AbortListeners = Array<(err: unknown) => void>\nconst abortListenersBySignal = new WeakMap()\n\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */\nexport function makeHangingPromise(\n signal: AbortSignal,\n route: string,\n expression: string\n): Promise {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression))\n } else {\n const hangingPromise = new Promise((_, reject) => {\n const boundRejection = reject.bind(\n null,\n new HangingPromiseRejectionError(route, expression)\n )\n let currentListeners = abortListenersBySignal.get(signal)\n if (currentListeners) {\n currentListeners.push(boundRejection)\n } else {\n const listeners = [boundRejection]\n abortListenersBySignal.set(signal, listeners)\n signal.addEventListener(\n 'abort',\n () => {\n for (let i = 0; i < listeners.length; i++) {\n listeners[i]()\n }\n },\n { once: true }\n )\n }\n })\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject)\n return hangingPromise\n }\n}\n\nfunction ignoreReject() {}\n\nexport function makeDevtoolsIOAwarePromise(\n underlying: T,\n requestStore: RequestStore,\n stage: NonStaticRenderStage\n): Promise {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(\n stage,\n undefined,\n underlying\n )\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise((resolve) => {\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(() => {\n resolve(underlying)\n }, 0)\n })\n}\n"],"names":["isHangingPromiseRejectionError","err","digest","HANGING_PROMISE_REJECTION","HangingPromiseRejectionError","Error","constructor","route","expression","abortListenersBySignal","WeakMap","makeHangingPromise","signal","aborted","Promise","reject","hangingPromise","_","boundRejection","bind","currentListeners","get","push","listeners","set","addEventListener","i","length","once","catch","ignoreReject","makeDevtoolsIOAwarePromise","underlying","requestStore","stage","stagedRendering","delayUntilStage","undefined","resolve","setTimeout"],"mappings":";;;;;;;;AAGO,SAASA,+BACdC,GAAY;IAEZ,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIC,MAAM,KAAKC;AACxB;AAEA,MAAMA,4BAA4B;AAElC,MAAMC,qCAAqCC;IAGzCC,YACkBC,KAAa,EACbC,UAAkB,CAClC;QACA,KAAK,CACH,CAAC,qBAAqB,EAAEA,WAAW,qGAAqG,EAAEA,WAAW,8KAA8K,EAAED,MAAM,EAAE,CAAC,GAAA,IAAA,CAJhUA,KAAAA,GAAAA,OAAAA,IAAAA,CACAC,UAAAA,GAAAA,YAAAA,IAAAA,CAJFN,MAAAA,GAASC;IASzB;AACF;AAGA,MAAMM,yBAAyB,IAAIC;AAS5B,SAASC,mBACdC,MAAmB,EACnBL,KAAa,EACbC,UAAkB;IAElB,IAAII,OAAOC,OAAO,EAAE;QAClB,OAAOC,QAAQC,MAAM,CAAC,IAAIX,6BAA6BG,OAAOC;IAChE,OAAO;QACL,MAAMQ,iBAAiB,IAAIF,QAAW,CAACG,GAAGF;YACxC,MAAMG,iBAAiBH,OAAOI,IAAI,CAChC,MACA,IAAIf,6BAA6BG,OAAOC;YAE1C,IAAIY,mBAAmBX,uBAAuBY,GAAG,CAACT;YAClD,IAAIQ,kBAAkB;gBACpBA,iBAAiBE,IAAI,CAACJ;YACxB,OAAO;gBACL,MAAMK,YAAY;oBAACL;iBAAe;gBAClCT,uBAAuBe,GAAG,CAACZ,QAAQW;gBACnCX,OAAOa,gBAAgB,CACrB,SACA;oBACE,IAAK,IAAIC,IAAI,GAAGA,IAAIH,UAAUI,MAAM,EAAED,IAAK;wBACzCH,SAAS,CAACG,EAAE;oBACd;gBACF,GACA;oBAAEE,MAAM;gBAAK;YAEjB;QACF;QACA,2GAA2G;QAC3G,6GAA6G;QAC7G,yFAAyF;QACzFZ,eAAea,KAAK,CAACC;QACrB,OAAOd;IACT;AACF;AAEA,SAASc,gBAAgB;AAElB,SAASC,2BACdC,UAAa,EACbC,YAA0B,EAC1BC,KAA2B;IAE3B,IAAID,aAAaE,eAAe,EAAE;QAChC,iFAAiF;QACjF,OAAOF,aAAaE,eAAe,CAACC,eAAe,CACjDF,OACAG,WACAL;IAEJ;IACA,kEAAkE;IAClE,2EAA2E;IAC3E,OAAO,IAAIlB,QAAW,CAACwB;QACrB,sFAAsF;QACtFC,WAAW;YACTD,QAAQN;QACV,GAAG;IACL;AACF","ignoreList":[0]}}, - {"offset": {"line": 1018, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/router-utils/is-postpone.ts"],"sourcesContent":["const REACT_POSTPONE_TYPE: symbol = Symbol.for('react.postpone')\n\nexport function isPostpone(error: any): boolean {\n return (\n typeof error === 'object' &&\n error !== null &&\n error.$$typeof === REACT_POSTPONE_TYPE\n )\n}\n"],"names":["REACT_POSTPONE_TYPE","Symbol","for","isPostpone","error","$$typeof"],"mappings":";;;;AAAA,MAAMA,sBAA8BC,OAAOC,GAAG,CAAC;AAExC,SAASC,WAAWC,KAAU;IACnC,OACE,OAAOA,UAAU,YACjBA,UAAU,QACVA,MAAMC,QAAQ,KAAKL;AAEvB","ignoreList":[0]}}, - {"offset": {"line": 1030, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/lazy-dynamic/bailout-to-csr.ts"],"sourcesContent":["// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'\n\n/** An error that should be thrown when we want to bail out to client-side rendering. */\nexport class BailoutToCSRError extends Error {\n public readonly digest = BAILOUT_TO_CSR\n\n constructor(public readonly reason: string) {\n super(`Bail out to client-side rendering: ${reason}`)\n }\n}\n\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */\nexport function isBailoutToCSRError(err: unknown): err is BailoutToCSRError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === BAILOUT_TO_CSR\n}\n"],"names":["BAILOUT_TO_CSR","BailoutToCSRError","Error","constructor","reason","digest","isBailoutToCSRError","err"],"mappings":";;;;;;AAAA,+GAA+G;AAC/G,MAAMA,iBAAiB;AAGhB,MAAMC,0BAA0BC;IAGrCC,YAA4BC,MAAc,CAAE;QAC1C,KAAK,CAAC,CAAC,mCAAmC,EAAEA,QAAQ,GAAA,IAAA,CAD1BA,MAAAA,GAAAA,QAAAA,IAAAA,CAFZC,MAAAA,GAASL;IAIzB;AACF;AAGO,SAASM,oBAAoBC,GAAY;IAC9C,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIF,MAAM,KAAKL;AACxB","ignoreList":[0]}}, - {"offset": {"line": 1053, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/hooks-server-context.ts"],"sourcesContent":["const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'\n\nexport class DynamicServerError extends Error {\n digest: typeof DYNAMIC_ERROR_CODE = DYNAMIC_ERROR_CODE\n\n constructor(public readonly description: string) {\n super(`Dynamic server usage: ${description}`)\n }\n}\n\nexport function isDynamicServerError(err: unknown): err is DynamicServerError {\n if (\n typeof err !== 'object' ||\n err === null ||\n !('digest' in err) ||\n typeof err.digest !== 'string'\n ) {\n return false\n }\n\n return err.digest === DYNAMIC_ERROR_CODE\n}\n"],"names":["DYNAMIC_ERROR_CODE","DynamicServerError","Error","constructor","description","digest","isDynamicServerError","err"],"mappings":";;;;;;AAAA,MAAMA,qBAAqB;AAEpB,MAAMC,2BAA2BC;IAGtCC,YAA4BC,WAAmB,CAAE;QAC/C,KAAK,CAAC,CAAC,sBAAsB,EAAEA,aAAa,GAAA,IAAA,CADlBA,WAAAA,GAAAA,aAAAA,IAAAA,CAF5BC,MAAAA,GAAoCL;IAIpC;AACF;AAEO,SAASM,qBAAqBC,GAAY;IAC/C,IACE,OAAOA,QAAQ,YACfA,QAAQ,QACR,CAAE,CAAA,YAAYA,GAAE,KAChB,OAAOA,IAAIF,MAAM,KAAK,UACtB;QACA,OAAO;IACT;IAEA,OAAOE,IAAIF,MAAM,KAAKL;AACxB","ignoreList":[0]}}, - {"offset": {"line": 1075, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/static-generation-bailout.ts"],"sourcesContent":["const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'\n\nexport class StaticGenBailoutError extends Error {\n public readonly code = NEXT_STATIC_GEN_BAILOUT\n}\n\nexport function isStaticGenBailoutError(\n error: unknown\n): error is StaticGenBailoutError {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false\n }\n\n return error.code === NEXT_STATIC_GEN_BAILOUT\n}\n"],"names":["NEXT_STATIC_GEN_BAILOUT","StaticGenBailoutError","Error","code","isStaticGenBailoutError","error"],"mappings":";;;;;;AAAA,MAAMA,0BAA0B;AAEzB,MAAMC,8BAA8BC;;QAApC,KAAA,IAAA,OAAA,IAAA,CACWC,IAAAA,GAAOH;;AACzB;AAEO,SAASI,wBACdC,KAAc;IAEd,IAAI,OAAOA,UAAU,YAAYA,UAAU,QAAQ,CAAE,CAAA,UAAUA,KAAI,GAAI;QACrE,OAAO;IACT;IAEA,OAAOA,MAAMF,IAAI,KAAKH;AACxB","ignoreList":[0]}}, - {"offset": {"line": 1097, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-constants.tsx"],"sourcesContent":["export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'\n"],"names":["METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME"],"mappings":";;;;;;;;;;AAAO,MAAMA,yBAAyB,6BAA4B;AAC3D,MAAMC,yBAAyB,6BAA4B;AAC3D,MAAMC,uBAAuB,2BAA0B;AACvD,MAAMC,4BAA4B,gCAA+B","ignoreList":[0]}}, - {"offset": {"line": 1115, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/scheduler.ts"],"sourcesContent":["export type ScheduledFn = () => T | PromiseLike\nexport type SchedulerFn = (cb: ScheduledFn) => void\n\n/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */\nexport const scheduleOnNextTick = (cb: ScheduledFn) => {\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(() => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n process.nextTick(cb)\n }\n })\n}\n\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */\nexport const scheduleImmediate = (cb: ScheduledFn): void => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n setImmediate(cb)\n }\n}\n\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */\nexport function atLeastOneTask() {\n return new Promise((resolve) => scheduleImmediate(resolve))\n}\n\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */\nexport function waitAtLeastOneReactRenderTask(): Promise {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r) => setTimeout(r, 0))\n } else {\n return new Promise((r) => setImmediate(r))\n }\n}\n"],"names":["scheduleOnNextTick","cb","Promise","resolve","then","process","env","NEXT_RUNTIME","setTimeout","nextTick","scheduleImmediate","setImmediate","atLeastOneTask","waitAtLeastOneReactRenderTask","r"],"mappings":"AAGA;;;;;CAKC,GACD;;;;;;;;;;AAAO,MAAMA,qBAAqB,CAACC;IACjC,6EAA6E;IAC7E,4EAA4E;IAC5E,uCAAuC;IACvC,EAAE;IACF,kLAAkL;IAClL,EAAE;IACFC,QAAQC,OAAO,GAAGC,IAAI,CAAC;QACrB,IAAIC,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;aAElC;YACLF,QAAQI,QAAQ,CAACR;QACnB;IACF;AACF,EAAC;AAQM,MAAMS,oBAAoB,CAACT;IAChC,IAAII,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACLI,aAAaV;IACf;AACF,EAAC;AAOM,SAASW;IACd,OAAO,IAAIV,QAAc,CAACC,UAAYO,kBAAkBP;AAC1D;AAWO,SAASU;IACd,IAAIR,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACL,OAAO,IAAIL,QAAQ,CAACY,IAAMH,aAAaG;IACzC;AACF","ignoreList":[0]}}, - {"offset": {"line": 1166, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/invariant-error.ts"],"sourcesContent":["export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n"],"names":["InvariantError","Error","constructor","message","options","endsWith","name"],"mappings":";;;;AAAO,MAAMA,uBAAuBC;IAClCC,YAAYC,OAAe,EAAEC,OAAsB,CAAE;QACnD,KAAK,CACH,CAAC,WAAW,EAAED,QAAQE,QAAQ,CAAC,OAAOF,UAAUA,UAAU,IAAI,0BAA0B,CAAC,EACzFC;QAEF,IAAI,CAACE,IAAI,GAAG;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 1180, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/dynamic-rendering.ts"],"sourcesContent":["/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */\n\nimport type { WorkStore } from '../app-render/work-async-storage.external'\nimport type {\n WorkUnitStore,\n PrerenderStoreLegacy,\n PrerenderStoreModern,\n PrerenderStoreModernRuntime,\n} from '../app-render/work-unit-async-storage.external'\n\n// Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react'\n\nimport { DynamicServerError } from '../../client/components/hooks-server-context'\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport {\n getRuntimeStagePromise,\n throwForMissingRequestStore,\n workUnitAsyncStorage,\n} from './work-unit-async-storage.external'\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from '../../lib/framework/boundary-constants'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nconst hasPostpone = typeof React.unstable_postpone === 'function'\n\nexport type DynamicAccess = {\n /**\n * If debugging, this will contain the stack trace of where the dynamic access\n * occurred. This is used to provide more information to the user about why\n * their page is being rendered dynamically.\n */\n stack?: string\n\n /**\n * The expression that was accessed dynamically.\n */\n expression: string\n}\n\n// Stores dynamic reasons used during an RSC render.\nexport type DynamicTrackingState = {\n /**\n * When true, stack information will also be tracked during dynamic access.\n */\n readonly isDebugDynamicAccesses: boolean | undefined\n\n /**\n * The dynamic accesses that occurred during the render.\n */\n readonly dynamicAccesses: Array\n\n syncDynamicErrorWithStack: null | Error\n}\n\n// Stores dynamic reasons used during an SSR render.\nexport type DynamicValidationState = {\n hasSuspenseAboveBody: boolean\n hasDynamicMetadata: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array\n}\n\nexport function createDynamicTrackingState(\n isDebugDynamicAccesses: boolean | undefined\n): DynamicTrackingState {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null,\n }\n}\n\nexport function createDynamicValidationState(): DynamicValidationState {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n }\n}\n\nexport function getFirstDynamicReason(\n trackingState: DynamicTrackingState\n): undefined | string {\n return trackingState.dynamicAccesses[0]?.expression\n}\n\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */\nexport function markCurrentScopeAsDynamic(\n store: WorkStore,\n workUnitStore: undefined | Exclude,\n expression: string\n): void {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return\n\n if (store.dynamicShouldError) {\n throw new StaticGenBailoutError(\n `Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n }\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-ppr':\n return postponeWithTracking(\n store.route,\n expression,\n workUnitStore.dynamicTracking\n )\n case 'prerender-legacy':\n workUnitStore.revalidate = 0\n\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */\nexport function throwToInterruptStaticGeneration(\n expression: string,\n store: WorkStore,\n prerenderStore: PrerenderStoreLegacy\n): never {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n\n prerenderStore.revalidate = 0\n\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n}\n\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */\nexport function trackDynamicDataInDynamicRender(workUnitStore: WorkUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n break\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n}\n\nfunction abortOnSynchronousDynamicDataAccess(\n route: string,\n expression: string,\n prerenderStore: PrerenderStoreModern\n): void {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n\n const error = createPrerenderInterruptedError(reason)\n\n prerenderStore.controller.abort(error)\n\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function abortOnSynchronousPlatformIOAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): void {\n const dynamicTracking = prerenderStore.dynamicTracking\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n}\n\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */\nexport function abortAndThrowOnSynchronousRequestDataAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): never {\n const prerenderSignal = prerenderStore.controller.signal\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n }\n throw createPrerenderInterruptedError(\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n )\n}\n\n/**\n * This component will call `React.postpone` that throws the postponed error.\n */\ntype PostponeProps = {\n reason: string\n route: string\n}\nexport function Postpone({ reason, route }: PostponeProps): never {\n const prerenderStore = workUnitAsyncStorage.getStore()\n const dynamicTracking =\n prerenderStore && prerenderStore.type === 'prerender-ppr'\n ? prerenderStore.dynamicTracking\n : null\n postponeWithTracking(route, reason, dynamicTracking)\n}\n\nexport function postponeWithTracking(\n route: string,\n expression: string,\n dynamicTracking: null | DynamicTrackingState\n): never {\n assertPostpone()\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n\n React.unstable_postpone(createPostponeReason(route, expression))\n}\n\nfunction createPostponeReason(route: string, expression: string) {\n return (\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` +\n `React throws this special object to indicate where. It should not be caught by ` +\n `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`\n )\n}\n\nexport function isDynamicPostpone(err: unknown) {\n if (\n typeof err === 'object' &&\n err !== null &&\n typeof (err as any).message === 'string'\n ) {\n return isDynamicPostponeReason((err as any).message)\n }\n return false\n}\n\nfunction isDynamicPostponeReason(reason: string) {\n return (\n reason.includes(\n 'needs to bail out of prerendering at this point because it used'\n ) &&\n reason.includes(\n 'Learn more: https://nextjs.org/docs/messages/ppr-caught-error'\n )\n )\n}\n\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw new Error(\n 'Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'\n )\n}\n\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'\n\nfunction createPrerenderInterruptedError(message: string): Error {\n const error = new Error(message)\n ;(error as any).digest = NEXT_PRERENDER_INTERRUPTED\n return error\n}\n\ntype DigestError = Error & {\n digest: string\n}\n\nexport function isPrerenderInterruptedError(\n error: unknown\n): error is DigestError {\n return (\n typeof error === 'object' &&\n error !== null &&\n (error as any).digest === NEXT_PRERENDER_INTERRUPTED &&\n 'name' in error &&\n 'message' in error &&\n error instanceof Error\n )\n}\n\nexport function accessedDynamicData(\n dynamicAccesses: Array\n): boolean {\n return dynamicAccesses.length > 0\n}\n\nexport function consumeDynamicAccess(\n serverDynamic: DynamicTrackingState,\n clientDynamic: DynamicTrackingState\n): DynamicTrackingState['dynamicAccesses'] {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses)\n return serverDynamic.dynamicAccesses\n}\n\nexport function formatDynamicAPIAccesses(\n dynamicAccesses: Array\n): string[] {\n return dynamicAccesses\n .filter(\n (access): access is Required =>\n typeof access.stack === 'string' && access.stack.length > 0\n )\n .map(({ expression, stack }) => {\n stack = stack\n .split('\\n')\n // Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4)\n .filter((line) => {\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false\n }\n\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' ()')) {\n return false\n }\n\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false\n }\n\n return true\n })\n .join('\\n')\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`\n })\n}\n\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw new Error(\n `Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`\n )\n }\n}\n\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */\nexport function createRenderInBrowserAbortSignal(): AbortSignal {\n const controller = new AbortController()\n controller.abort(new BailoutToCSRError('Render in Browser'))\n return controller.signal\n}\n\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */\nexport function createHangingInputAbortSignal(\n workUnitStore: WorkUnitStore\n): AbortSignal | undefined {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController()\n\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(() => {\n controller.abort()\n })\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n const runtimeStagePromise = getRuntimeStagePromise(workUnitStore)\n if (runtimeStagePromise) {\n runtimeStagePromise.then(() =>\n scheduleOnNextTick(() => controller.abort())\n )\n } else {\n scheduleOnNextTick(() => controller.abort())\n }\n }\n\n return controller.signal\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n return undefined\n default:\n workUnitStore satisfies never\n }\n}\n\nexport function annotateDynamicAccess(\n expression: string,\n prerenderStore: PrerenderStoreModern\n) {\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function useDynamicRouteParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workStore && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-client':\n case 'prerender': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(\n workStore.route,\n expression,\n workUnitStore.dynamicTracking\n )\n }\n break\n }\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\nexport function useDynamicSearchParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n if (!workStore) {\n // We assume pages router context and just return\n return\n }\n\n if (!workUnitStore) {\n throwForMissingRequestStore(expression)\n }\n\n switch (workUnitStore.type) {\n case 'prerender-client': {\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n break\n }\n case 'prerender-legacy':\n case 'prerender-ppr': {\n if (workStore.forceStatic) {\n return\n }\n throw new BailoutToCSRError(expression)\n }\n case 'prerender':\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'request':\n return\n default:\n workUnitStore satisfies never\n }\n}\n\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(\\)/\n\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags =\n 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'\n\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense ()\n// at __next_root_layout_boundary__ ()\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense ()\n// at SomeComponent ()\n// at __next_root_layout_boundary__ ()\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(\n `\\\\n\\\\s+at Suspense \\\\(\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`\n)\n\nconst hasMetadataRegex = new RegExp(\n `\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasViewportRegex = new RegExp(\n `\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`)\n\nexport function trackAllowedDynamicAccess(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true\n return\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message =\n `Route \"${workStore.route}\": Uncached data was accessed outside of ` +\n '. This delays the entire page from rendering, resulting in a ' +\n 'slow user experience. Learn more: ' +\n 'https://nextjs.org/docs/messages/blocking-route'\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInRuntimeShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInStaticShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n */\nfunction createErrorWithComponentOrOwnerStack(\n message: string,\n componentStack: string\n) {\n const ownerStack =\n process.env.NODE_ENV !== 'production' && React.captureOwnerStack\n ? React.captureOwnerStack()\n : null\n\n const error = new Error(message)\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack = error.name + ': ' + message + (ownerStack || componentStack)\n return error\n}\n\nexport enum PreludeState {\n Full = 0,\n Empty = 1,\n Errored = 2,\n}\n\nexport function logDisallowedDynamicError(\n workStore: WorkStore,\n error: Error\n): void {\n console.error(error)\n\n if (!workStore.dev) {\n if (workStore.hasReadableErrorStacks) {\n console.error(\n `To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`\n )\n } else {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`)\n }\n }\n}\n\nexport function throwIfDisallowedDynamic(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n serverDynamic: DynamicTrackingState\n): void {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(\n workStore,\n serverDynamic.syncDynamicErrorWithStack\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude !== PreludeState.Full) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return\n }\n\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n for (let i = 0; i < dynamicErrors.length; i++) {\n logDisallowedDynamicError(workStore, dynamicErrors[i])\n }\n\n throw new StaticGenBailoutError()\n }\n\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`\n )\n throw new StaticGenBailoutError()\n }\n } else {\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.hasDynamicMetadata\n ) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n )\n throw new StaticGenBailoutError()\n }\n }\n}\n\nexport function getStaticShellDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState\n): Array {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return []\n }\n\n if (prelude !== PreludeState.Full) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicErrors.length === 0 &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n\nexport function delayUntilRuntimeStage(\n prerenderStore: PrerenderStoreModernRuntime,\n result: Promise\n): Promise {\n if (prerenderStore.runtimeStagePromise) {\n return prerenderStore.runtimeStagePromise.then(() => result)\n }\n return result\n}\n"],"names":["React","DynamicServerError","StaticGenBailoutError","getRuntimeStagePromise","throwForMissingRequestStore","workUnitAsyncStorage","workAsyncStorage","makeHangingPromise","METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","scheduleOnNextTick","BailoutToCSRError","InvariantError","hasPostpone","unstable_postpone","createDynamicTrackingState","isDebugDynamicAccesses","dynamicAccesses","syncDynamicErrorWithStack","createDynamicValidationState","hasSuspenseAboveBody","hasDynamicMetadata","dynamicMetadata","hasDynamicViewport","hasAllowedDynamic","dynamicErrors","getFirstDynamicReason","trackingState","expression","markCurrentScopeAsDynamic","store","workUnitStore","type","forceDynamic","forceStatic","dynamicShouldError","route","postponeWithTracking","dynamicTracking","revalidate","err","dynamicUsageDescription","dynamicUsageStack","stack","process","env","NODE_ENV","usedDynamic","throwToInterruptStaticGeneration","prerenderStore","trackDynamicDataInDynamicRender","abortOnSynchronousDynamicDataAccess","reason","error","createPrerenderInterruptedError","controller","abort","push","Error","undefined","abortOnSynchronousPlatformIOAccess","errorWithStack","abortAndThrowOnSynchronousRequestDataAccess","prerenderSignal","signal","aborted","Postpone","getStore","assertPostpone","createPostponeReason","isDynamicPostpone","message","isDynamicPostponeReason","includes","NEXT_PRERENDER_INTERRUPTED","digest","isPrerenderInterruptedError","accessedDynamicData","length","consumeDynamicAccess","serverDynamic","clientDynamic","formatDynamicAPIAccesses","filter","access","map","split","slice","line","join","createRenderInBrowserAbortSignal","AbortController","createHangingInputAbortSignal","cacheSignal","inputReady","then","runtimeStagePromise","annotateDynamicAccess","useDynamicRouteParams","workStore","fallbackParams","fallbackRouteParams","size","use","renderSignal","useDynamicSearchParams","hasSuspenseRegex","bodyAndImplicitTags","hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex","RegExp","hasMetadataRegex","hasViewportRegex","hasOutletRegex","trackAllowedDynamicAccess","componentStack","dynamicValidation","test","createErrorWithComponentOrOwnerStack","trackDynamicHoleInRuntimeShell","trackDynamicHoleInStaticShell","ownerStack","captureOwnerStack","name","PreludeState","logDisallowedDynamicError","console","dev","hasReadableErrorStacks","throwIfDisallowedDynamic","prelude","i","getStaticShellDisallowedDynamicReasons","delayUntilRuntimeStage","result"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1948, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unstable-rethrow.server.ts"],"sourcesContent":["import { isHangingPromiseRejectionError } from '../../server/dynamic-rendering-utils'\nimport { isPostpone } from '../../server/lib/router-utils/is-postpone'\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { isNextRouterError } from './is-next-router-error'\nimport {\n isDynamicPostpone,\n isPrerenderInterruptedError,\n} from '../../server/app-render/dynamic-rendering'\nimport { isDynamicServerError } from './hooks-server-context'\n\nexport function unstable_rethrow(error: unknown): void {\n if (\n isNextRouterError(error) ||\n isBailoutToCSRError(error) ||\n isDynamicServerError(error) ||\n isDynamicPostpone(error) ||\n isPostpone(error) ||\n isHangingPromiseRejectionError(error) ||\n isPrerenderInterruptedError(error)\n ) {\n throw error\n }\n\n if (error instanceof Error && 'cause' in error) {\n unstable_rethrow(error.cause)\n }\n}\n"],"names":["isHangingPromiseRejectionError","isPostpone","isBailoutToCSRError","isNextRouterError","isDynamicPostpone","isPrerenderInterruptedError","isDynamicServerError","unstable_rethrow","error","Error","cause"],"mappings":";;;;AAAA,SAASA,8BAA8B,QAAQ,uCAAsC;AACrF,SAASC,UAAU,QAAQ,4CAA2C;AACtE,SAASC,mBAAmB,QAAQ,+CAA8C;AAClF,SAASC,iBAAiB,QAAQ,yBAAwB;AAC1D,SACEC,iBAAiB,EACjBC,2BAA2B,QACtB,4CAA2C;AAClD,SAASC,oBAAoB,QAAQ,yBAAwB;;;;;;;AAEtD,SAASC,iBAAiBC,KAAc;IAC7C,QACEL,iNAAAA,EAAkBK,cAClBN,sNAAAA,EAAoBM,cACpBF,iNAAAA,EAAqBE,cACrBJ,2MAAAA,EAAkBI,cAClBP,uMAAAA,EAAWO,cACXR,gNAAAA,EAA+BQ,cAC/BH,qNAAAA,EAA4BG,QAC5B;QACA,MAAMA;IACR;IAEA,IAAIA,iBAAiBC,SAAS,WAAWD,OAAO;QAC9CD,iBAAiBC,MAAME,KAAK;IAC9B;AACF","ignoreList":[0]}}, - {"offset": {"line": 1976, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unstable-rethrow.ts"],"sourcesContent":["/**\n * This function should be used to rethrow internal Next.js errors so that they can be handled by the framework.\n * When wrapping an API that uses errors to interrupt control flow, you should use this function before you do any error handling.\n * This function will rethrow the error if it is a Next.js error so it can be handled, otherwise it will do nothing.\n *\n * Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow)\n */\nexport const unstable_rethrow =\n typeof window === 'undefined'\n ? (\n require('./unstable-rethrow.server') as typeof import('./unstable-rethrow.server')\n ).unstable_rethrow\n : (\n require('./unstable-rethrow.browser') as typeof import('./unstable-rethrow.browser')\n ).unstable_rethrow\n"],"names":["unstable_rethrow","window","require"],"mappings":"AAAA;;;;;;CAMC,GACD;;;;AAAO,MAAMA,mBACX,OAAOC,WAAW,qBAEZC,QAAQ,4HACRF,gBAAgB,GAEhBE,QAAQ,8BACRF,gBAAgB,CAAA","ignoreList":[0]}}, - {"offset": {"line": 1991, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation.react-server.ts"],"sourcesContent":["import { ReadonlyURLSearchParams } from './readonly-url-search-params'\n\nexport function unstable_isUnrecognizedActionError(): boolean {\n throw new Error(\n '`unstable_isUnrecognizedActionError` can only be used on the client.'\n )\n}\n\nexport { redirect, permanentRedirect } from './redirect'\nexport { RedirectType } from './redirect-error'\nexport { notFound } from './not-found'\nexport { forbidden } from './forbidden'\nexport { unauthorized } from './unauthorized'\nexport { unstable_rethrow } from './unstable-rethrow'\nexport { ReadonlyURLSearchParams }\n"],"names":["ReadonlyURLSearchParams","unstable_isUnrecognizedActionError","Error","redirect","permanentRedirect","RedirectType","notFound","forbidden","unauthorized","unstable_rethrow"],"mappings":";;;;AAAA,SAASA,uBAAuB,QAAQ,+BAA8B;AAQtE,SAASG,QAAQ,EAAEC,iBAAiB,QAAQ,aAAY;AACxD,SAASC,YAAY,QAAQ,mBAAkB;AAC/C,SAASC,QAAQ,QAAQ,cAAa;AACtC,SAASC,SAAS,QAAQ,cAAa;AACvC,SAASC,YAAY,QAAQ,iBAAgB;AAC7C,SAASC,gBAAgB,QAAQ,qBAAoB;;AAX9C,SAASR;IACd,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,yEADI,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF","ignoreList":[0]}}, - {"offset": {"line": 2022, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation.ts"],"sourcesContent":["import type { Params } from '../../server/request/params'\n\nimport React, { useContext, useMemo, use } from 'react'\nimport {\n AppRouterContext,\n LayoutRouterContext,\n type AppRouterInstance,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport {\n SearchParamsContext,\n PathnameContext,\n PathParamsContext,\n NavigationPromisesContext,\n ReadonlyURLSearchParams,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport {\n computeSelectedLayoutSegment,\n getSelectedLayoutSegmentPath,\n} from '../../shared/lib/segment'\n\nconst useDynamicRouteParams =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/dynamic-rendering') as typeof import('../../server/app-render/dynamic-rendering')\n ).useDynamicRouteParams\n : undefined\n\nconst useDynamicSearchParams =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/dynamic-rendering') as typeof import('../../server/app-render/dynamic-rendering')\n ).useDynamicSearchParams\n : undefined\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you *read* the current URL's search parameters.\n *\n * Learn more about [`URLSearchParams` on MDN](https://developer.mozilla.org/docs/Web/API/URLSearchParams)\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useSearchParams } from 'next/navigation'\n *\n * export default function Page() {\n * const searchParams = useSearchParams()\n * searchParams.get('foo') // returns 'bar' when ?foo=bar\n * // ...\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSearchParams`](https://nextjs.org/docs/app/api-reference/functions/use-search-params)\n */\n// Client components API\nexport function useSearchParams(): ReadonlyURLSearchParams {\n useDynamicSearchParams?.('useSearchParams()')\n\n const searchParams = useContext(SearchParamsContext)\n\n // In the case where this is `null`, the compat types added in\n // `next-env.d.ts` will add a new overload that changes the return type to\n // include `null`.\n const readonlySearchParams = useMemo((): ReadonlyURLSearchParams => {\n if (!searchParams) {\n // When the router is not ready in pages, we won't have the search params\n // available.\n return null!\n }\n\n return new ReadonlyURLSearchParams(searchParams)\n }, [searchParams])\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.searchParams)\n }\n }\n\n return readonlySearchParams\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the current URL's pathname.\n *\n * @example\n * ```ts\n * \"use client\"\n * import { usePathname } from 'next/navigation'\n *\n * export default function Page() {\n * const pathname = usePathname() // returns \"/dashboard\" on /dashboard?foo=bar\n * // ...\n * }\n * ```\n *\n * Read more: [Next.js Docs: `usePathname`](https://nextjs.org/docs/app/api-reference/functions/use-pathname)\n */\n// Client components API\nexport function usePathname(): string {\n useDynamicRouteParams?.('usePathname()')\n\n // In the case where this is `null`, the compat types added in `next-env.d.ts`\n // will add a new overload that changes the return type to include `null`.\n const pathname = useContext(PathnameContext) as string\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.pathname)\n }\n }\n\n return pathname\n}\n\n// Client components API\nexport {\n ServerInsertedHTMLContext,\n useServerInsertedHTML,\n} from '../../shared/lib/server-inserted-html.shared-runtime'\n\n/**\n *\n * This hook allows you to programmatically change routes inside [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components).\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useRouter } from 'next/navigation'\n *\n * export default function Page() {\n * const router = useRouter()\n * // ...\n * router.push('/dashboard') // Navigate to /dashboard\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useRouter`](https://nextjs.org/docs/app/api-reference/functions/use-router)\n */\n// Client components API\nexport function useRouter(): AppRouterInstance {\n const router = useContext(AppRouterContext)\n if (router === null) {\n throw new Error('invariant expected app router to be mounted')\n }\n\n return router\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read a route's dynamic params filled in by the current URL.\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useParams } from 'next/navigation'\n *\n * export default function Page() {\n * // on /dashboard/[team] where pathname is /dashboard/nextjs\n * const { team } = useParams() // team === \"nextjs\"\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useParams`](https://nextjs.org/docs/app/api-reference/functions/use-params)\n */\n// Client components API\nexport function useParams(): T {\n useDynamicRouteParams?.('useParams()')\n\n const params = useContext(PathParamsContext) as T\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.params) as T\n }\n }\n\n return params\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the active route segments **below** the Layout it is called from.\n *\n * @example\n * ```ts\n * 'use client'\n *\n * import { useSelectedLayoutSegments } from 'next/navigation'\n *\n * export default function ExampleClientComponent() {\n * const segments = useSelectedLayoutSegments()\n *\n * return (\n *
    \n * {segments.map((segment, index) => (\n *
  • {segment}
  • \n * ))}\n *
\n * )\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSelectedLayoutSegments`](https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segments)\n */\n// Client components API\nexport function useSelectedLayoutSegments(\n parallelRouteKey: string = 'children'\n): string[] {\n useDynamicRouteParams?.('useSelectedLayoutSegments()')\n\n const context = useContext(LayoutRouterContext)\n // @ts-expect-error This only happens in `pages`. Type is overwritten in navigation.d.ts\n if (!context) return null\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n const promise =\n navigationPromises.selectedLayoutSegmentsPromises?.get(parallelRouteKey)\n if (promise) {\n // We should always have a promise here, but if we don't, it's not worth erroring over.\n // We just won't be able to instrument it, but can still provide the value.\n return use(promise)\n }\n }\n }\n\n return getSelectedLayoutSegmentPath(context.parentTree, parallelRouteKey)\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the active route segment **one level below** the Layout it is called from.\n *\n * @example\n * ```ts\n * 'use client'\n * import { useSelectedLayoutSegment } from 'next/navigation'\n *\n * export default function ExampleClientComponent() {\n * const segment = useSelectedLayoutSegment()\n *\n * return

Active segment: {segment}

\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSelectedLayoutSegment`](https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segment)\n */\n// Client components API\nexport function useSelectedLayoutSegment(\n parallelRouteKey: string = 'children'\n): string | null {\n useDynamicRouteParams?.('useSelectedLayoutSegment()')\n const navigationPromises = useContext(NavigationPromisesContext)\n const selectedLayoutSegments = useSelectedLayoutSegments(parallelRouteKey)\n\n // Instrument with Suspense DevTools (dev-only)\n if (\n process.env.NODE_ENV !== 'production' &&\n navigationPromises &&\n 'use' in React\n ) {\n const promise =\n navigationPromises.selectedLayoutSegmentPromises?.get(parallelRouteKey)\n if (promise) {\n // We should always have a promise here, but if we don't, it's not worth erroring over.\n // We just won't be able to instrument it, but can still provide the value.\n return use(promise)\n }\n }\n\n return computeSelectedLayoutSegment(selectedLayoutSegments, parallelRouteKey)\n}\n\nexport { unstable_isUnrecognizedActionError } from './unrecognized-action-error'\n\n// Shared components APIs\nexport {\n // We need the same class that was used to instantiate the context value\n // Otherwise instanceof checks will fail in usercode\n ReadonlyURLSearchParams,\n}\nexport {\n notFound,\n forbidden,\n unauthorized,\n redirect,\n permanentRedirect,\n RedirectType,\n unstable_rethrow,\n} from './navigation.react-server'\n"],"names":["React","useContext","useMemo","use","AppRouterContext","LayoutRouterContext","SearchParamsContext","PathnameContext","PathParamsContext","NavigationPromisesContext","ReadonlyURLSearchParams","computeSelectedLayoutSegment","getSelectedLayoutSegmentPath","useDynamicRouteParams","window","require","undefined","useDynamicSearchParams","useSearchParams","searchParams","readonlySearchParams","process","env","NODE_ENV","navigationPromises","usePathname","pathname","ServerInsertedHTMLContext","useServerInsertedHTML","useRouter","router","Error","useParams","params","useSelectedLayoutSegments","parallelRouteKey","context","promise","selectedLayoutSegmentsPromises","get","parentTree","useSelectedLayoutSegment","selectedLayoutSegments","selectedLayoutSegmentPromises","unstable_isUnrecognizedActionError","notFound","forbidden","unauthorized","redirect","permanentRedirect","RedirectType","unstable_rethrow"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2154, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-boundary.tsx"],"sourcesContent":["'use client'\nimport React, { useEffect } from 'react'\nimport type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'\nimport { useRouter } from './navigation'\nimport { getRedirectTypeFromError, getURLFromRedirectError } from './redirect'\nimport { RedirectType, isRedirectError } from './redirect-error'\n\ninterface RedirectBoundaryProps {\n router: AppRouterInstance\n children: React.ReactNode\n}\n\nfunction HandleRedirect({\n redirect,\n reset,\n redirectType,\n}: {\n redirect: string\n redirectType: RedirectType\n reset: () => void\n}) {\n const router = useRouter()\n\n useEffect(() => {\n React.startTransition(() => {\n if (redirectType === RedirectType.push) {\n router.push(redirect, {})\n } else {\n router.replace(redirect, {})\n }\n reset()\n })\n }, [redirect, redirectType, reset, router])\n\n return null\n}\n\nexport class RedirectErrorBoundary extends React.Component<\n RedirectBoundaryProps,\n { redirect: string | null; redirectType: RedirectType | null }\n> {\n constructor(props: RedirectBoundaryProps) {\n super(props)\n this.state = { redirect: null, redirectType: null }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isRedirectError(error)) {\n const url = getURLFromRedirectError(error)\n const redirectType = getRedirectTypeFromError(error)\n if ('handled' in error) {\n // The redirect was already handled. We'll still catch the redirect error\n // so that we can remount the subtree, but we don't actually need to trigger the\n // router.push.\n return { redirect: null, redirectType: null }\n }\n\n return { redirect: url, redirectType }\n }\n // Re-throw if error is not for redirect\n throw error\n }\n\n // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version.\n render(): React.ReactNode {\n const { redirect, redirectType } = this.state\n if (redirect !== null && redirectType !== null) {\n return (\n this.setState({ redirect: null })}\n />\n )\n }\n\n return this.props.children\n }\n}\n\nexport function RedirectBoundary({ children }: { children: React.ReactNode }) {\n const router = useRouter()\n return (\n {children}\n )\n}\n"],"names":["React","useEffect","useRouter","getRedirectTypeFromError","getURLFromRedirectError","RedirectType","isRedirectError","HandleRedirect","redirect","reset","redirectType","router","startTransition","push","replace","RedirectErrorBoundary","Component","constructor","props","state","getDerivedStateFromError","error","url","render","setState","children","RedirectBoundary"],"mappings":";;;;;;;AACA,OAAOA,SAASC,SAAS,QAAQ,QAAO;AAExC,SAASC,SAAS,QAAQ,eAAc;AACxC,SAASC,wBAAwB,EAAEC,uBAAuB,QAAQ,aAAY;AAC9E,SAASC,YAAY,EAAEC,eAAe,QAAQ,mBAAkB;AALhE;;;;;;AAYA,SAASC,eAAe,EACtBC,QAAQ,EACRC,KAAK,EACLC,YAAY,EAKb;IACC,MAAMC,SAAST,0MAAAA;IAEfD,sNAAAA,EAAU;QACRD,gNAAAA,CAAMY,eAAe,CAAC;YACpB,IAAIF,iBAAiBL,gMAAAA,CAAaQ,IAAI,EAAE;gBACtCF,OAAOE,IAAI,CAACL,UAAU,CAAC;YACzB,OAAO;gBACLG,OAAOG,OAAO,CAACN,UAAU,CAAC;YAC5B;YACAC;QACF;IACF,GAAG;QAACD;QAAUE;QAAcD;QAAOE;KAAO;IAE1C,OAAO;AACT;AAEO,MAAMI,8BAA8Bf,gNAAAA,CAAMgB,SAAS;IAIxDC,YAAYC,KAA4B,CAAE;QACxC,KAAK,CAACA;QACN,IAAI,CAACC,KAAK,GAAG;YAAEX,UAAU;YAAME,cAAc;QAAK;IACpD;IAEA,OAAOU,yBAAyBC,KAAU,EAAE;QAC1C,QAAIf,mMAAAA,EAAgBe,QAAQ;YAC1B,MAAMC,UAAMlB,kMAAAA,EAAwBiB;YACpC,MAAMX,mBAAeP,mMAAAA,EAAyBkB;YAC9C,IAAI,aAAaA,OAAO;gBACtB,yEAAyE;gBACzE,gFAAgF;gBAChF,eAAe;gBACf,OAAO;oBAAEb,UAAU;oBAAME,cAAc;gBAAK;YAC9C;YAEA,OAAO;gBAAEF,UAAUc;gBAAKZ;YAAa;QACvC;QACA,wCAAwC;QACxC,MAAMW;IACR;IAEA,yIAAyI;IACzIE,SAA0B;QACxB,MAAM,EAAEf,QAAQ,EAAEE,YAAY,EAAE,GAAG,IAAI,CAACS,KAAK;QAC7C,IAAIX,aAAa,QAAQE,iBAAiB,MAAM;YAC9C,OAAA,WAAA,OACE,8NAAA,EAACH,gBAAAA;gBACCC,UAAUA;gBACVE,cAAcA;gBACdD,OAAO,IAAM,IAAI,CAACe,QAAQ,CAAC;wBAAEhB,UAAU;oBAAK;;QAGlD;QAEA,OAAO,IAAI,CAACU,KAAK,CAACO,QAAQ;IAC5B;AACF;AAEO,SAASC,iBAAiB,EAAED,QAAQ,EAAiC;IAC1E,MAAMd,aAAST,sMAAAA;IACf,OAAA,WAAA,OACE,8NAAA,EAACa,uBAAAA;QAAsBJ,QAAQA;kBAASc;;AAE5C","ignoreList":[0]}}, - {"offset": {"line": 2245, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/error-boundary.tsx"],"sourcesContent":["'use client'\n\n/**\n * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a\n * fallback component for HTTP errors.\n *\n * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors.\n *\n * e.g. 404\n * 404 represents not found, and the fallback component pair contains the component and its styles.\n *\n */\n\nimport React, { useContext } from 'react'\nimport { useUntrackedPathname } from '../navigation-untracked'\nimport {\n HTTPAccessErrorStatus,\n getAccessFallbackHTTPStatus,\n getAccessFallbackErrorTypeByStatus,\n isHTTPAccessFallbackError,\n} from './http-access-fallback'\nimport { warnOnce } from '../../../shared/lib/utils/warn-once'\nimport { MissingSlotContext } from '../../../shared/lib/app-router-context.shared-runtime'\n\ninterface HTTPAccessFallbackBoundaryProps {\n notFound?: React.ReactNode\n forbidden?: React.ReactNode\n unauthorized?: React.ReactNode\n // TODO: Make this required once `React.createElement` understands that positional args go into children\n children?: React.ReactNode\n missingSlots?: Set\n}\n\ninterface HTTPAccessFallbackErrorBoundaryProps\n extends HTTPAccessFallbackBoundaryProps {\n pathname: string | null\n missingSlots?: Set\n}\n\ninterface HTTPAccessBoundaryState {\n triggeredStatus: number | undefined\n previousPathname: string | null\n}\n\nclass HTTPAccessFallbackErrorBoundary extends React.Component<\n HTTPAccessFallbackErrorBoundaryProps,\n HTTPAccessBoundaryState\n> {\n constructor(props: HTTPAccessFallbackErrorBoundaryProps) {\n super(props)\n this.state = {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n\n componentDidCatch(): void {\n if (\n process.env.NODE_ENV === 'development' &&\n this.props.missingSlots &&\n this.props.missingSlots.size > 0 &&\n // A missing children slot is the typical not-found case, so no need to warn\n !this.props.missingSlots.has('children')\n ) {\n let warningMessage =\n 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\\n' +\n 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\\n\\n'\n\n const formattedSlots = Array.from(this.props.missingSlots)\n .sort((a, b) => a.localeCompare(b))\n .map((slot) => `@${slot}`)\n .join(', ')\n\n warningMessage += 'Missing slots: ' + formattedSlots\n\n warnOnce(warningMessage)\n }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isHTTPAccessFallbackError(error)) {\n const httpStatus = getAccessFallbackHTTPStatus(error)\n return {\n triggeredStatus: httpStatus,\n }\n }\n // Re-throw if error is not for 404\n throw error\n }\n\n static getDerivedStateFromProps(\n props: HTTPAccessFallbackErrorBoundaryProps,\n state: HTTPAccessBoundaryState\n ): HTTPAccessBoundaryState | null {\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.triggeredStatus) {\n return {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n return {\n triggeredStatus: state.triggeredStatus,\n previousPathname: props.pathname,\n }\n }\n\n render() {\n const { notFound, forbidden, unauthorized, children } = this.props\n const { triggeredStatus } = this.state\n const errorComponents = {\n [HTTPAccessErrorStatus.NOT_FOUND]: notFound,\n [HTTPAccessErrorStatus.FORBIDDEN]: forbidden,\n [HTTPAccessErrorStatus.UNAUTHORIZED]: unauthorized,\n }\n\n if (triggeredStatus) {\n const isNotFound =\n triggeredStatus === HTTPAccessErrorStatus.NOT_FOUND && notFound\n const isForbidden =\n triggeredStatus === HTTPAccessErrorStatus.FORBIDDEN && forbidden\n const isUnauthorized =\n triggeredStatus === HTTPAccessErrorStatus.UNAUTHORIZED && unauthorized\n\n // If there's no matched boundary in this layer, keep throwing the error by rendering the children\n if (!(isNotFound || isForbidden || isUnauthorized)) {\n return children\n }\n\n return (\n <>\n \n {process.env.NODE_ENV === 'development' && (\n \n )}\n {errorComponents[triggeredStatus]}\n \n )\n }\n\n return children\n }\n}\n\nexport function HTTPAccessFallbackBoundary({\n notFound,\n forbidden,\n unauthorized,\n children,\n}: HTTPAccessFallbackBoundaryProps) {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these error can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n const missingSlots = useContext(MissingSlotContext)\n const hasErrorFallback = !!(notFound || forbidden || unauthorized)\n\n if (hasErrorFallback) {\n return (\n \n {children}\n \n )\n }\n\n return <>{children}\n}\n"],"names":["React","useContext","useUntrackedPathname","HTTPAccessErrorStatus","getAccessFallbackHTTPStatus","getAccessFallbackErrorTypeByStatus","isHTTPAccessFallbackError","warnOnce","MissingSlotContext","HTTPAccessFallbackErrorBoundary","Component","constructor","props","state","triggeredStatus","undefined","previousPathname","pathname","componentDidCatch","process","env","NODE_ENV","missingSlots","size","has","warningMessage","formattedSlots","Array","from","sort","a","b","localeCompare","map","slot","join","getDerivedStateFromError","error","httpStatus","getDerivedStateFromProps","render","notFound","forbidden","unauthorized","children","errorComponents","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","isNotFound","isForbidden","isUnauthorized","meta","name","content","HTTPAccessFallbackBoundary","hasErrorFallback"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2374, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/create-router-cache-key.ts"],"sourcesContent":["import type { Segment } from '../../../shared/lib/app-router-types'\nimport { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment'\n\nexport function createRouterCacheKey(\n segment: Segment,\n withoutSearchParameters: boolean = false\n) {\n // if the segment is an array, it means it's a dynamic segment\n // for example, ['lang', 'en', 'd']. We need to convert it to a string to store it as a cache node key.\n if (Array.isArray(segment)) {\n return `${segment[0]}|${segment[1]}|${segment[2]}`\n }\n\n // Page segments might have search parameters, ie __PAGE__?foo=bar\n // When `withoutSearchParameters` is true, we only want to return the page segment\n if (withoutSearchParameters && segment.startsWith(PAGE_SEGMENT_KEY)) {\n return PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n"],"names":["PAGE_SEGMENT_KEY","createRouterCacheKey","segment","withoutSearchParameters","Array","isArray","startsWith"],"mappings":";;;;AACA,SAASA,gBAAgB,QAAQ,8BAA6B;;AAEvD,SAASC,qBACdC,OAAgB,EAChBC,0BAAmC,KAAK;IAExC,8DAA8D;IAC9D,uGAAuG;IACvG,IAAIC,MAAMC,OAAO,CAACH,UAAU;QAC1B,OAAO,GAAGA,OAAO,CAAC,EAAE,CAAC,CAAC,EAAEA,OAAO,CAAC,EAAE,CAAC,CAAC,EAAEA,OAAO,CAAC,EAAE,EAAE;IACpD;IAEA,kEAAkE;IAClE,kFAAkF;IAClF,IAAIC,2BAA2BD,QAAQI,UAAU,CAACN,mLAAAA,GAAmB;QACnE,OAAOA,mLAAAA;IACT;IAEA,OAAOE;AACT","ignoreList":[0]}}, - {"offset": {"line": 2397, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/bfcache.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport { useState } from 'react'\n\n// When the flag is disabled, only track the currently active tree\nconst MAX_BF_CACHE_ENTRIES = process.env.__NEXT_CACHE_COMPONENTS ? 3 : 1\n\nexport type RouterBFCacheEntry = {\n tree: FlightRouterState\n stateKey: string\n // The entries form a linked list, sorted in order of most recently active.\n next: RouterBFCacheEntry | null\n}\n\n/**\n * Keeps track of the most recent N trees (FlightRouterStates) that were active\n * at a certain segment level. E.g. for a segment \"/a/b/[param]\", this hook\n * tracks the last N param values that the router rendered for N.\n *\n * The result of this hook precisely determines the number and order of\n * trees that are rendered in parallel at their segment level.\n *\n * The purpose of this cache is to we can preserve the React and DOM state of\n * some number of inactive trees, by rendering them in an boundary.\n * That means it would not make sense for the the lifetime of the cache to be\n * any longer than the lifetime of the React tree; e.g. if the hook were\n * unmounted, then the React tree would be, too. So, we use React state to\n * manage it.\n *\n * Note that we don't store the RSC data for the cache entries in this hook —\n * the data for inactive segments is stored in the parent CacheNode, which\n * *does* have a longer lifetime than the React tree. This hook only determines\n * which of those trees should have their *state* preserved, by .\n */\nexport function useRouterBFCache(\n activeTree: FlightRouterState,\n activeStateKey: string\n): RouterBFCacheEntry {\n // The currently active entry. The entries form a linked list, sorted in\n // order of most recently active. This allows us to reuse parts of the list\n // without cloning, unless there's a reordering or removal.\n // TODO: Once we start tracking back/forward history at each route level,\n // we should use the history order instead. In other words, when traversing\n // to an existing entry as a result of a popstate event, we should maintain\n // the existing order instead of moving it to the front of the list. I think\n // an initial implementation of this could be to pass an incrementing id\n // to history.pushState/replaceState, then use that here for ordering.\n const [prevActiveEntry, setPrevActiveEntry] = useState(\n () => {\n const initialEntry: RouterBFCacheEntry = {\n tree: activeTree,\n stateKey: activeStateKey,\n next: null,\n }\n return initialEntry\n }\n )\n\n if (prevActiveEntry.tree === activeTree) {\n // Fast path. The active tree hasn't changed, so we can reuse the\n // existing state.\n return prevActiveEntry\n }\n\n // The route tree changed. Note that this doesn't mean that the tree changed\n // *at this level* — the change may be due to a child route. Either way, we\n // need to either add or update the router tree in the bfcache.\n //\n // The rest of the code looks more complicated than it actually is because we\n // can't mutate the state in place; we have to copy-on-write.\n\n // Create a new entry for the active cache key. This is the head of the new\n // linked list.\n const newActiveEntry: RouterBFCacheEntry = {\n tree: activeTree,\n stateKey: activeStateKey,\n next: null,\n }\n\n // We need to append the old list onto the new list. If the head of the new\n // list was already present in the cache, then we'll need to clone everything\n // that came before it. Then we can reuse the rest.\n let n = 1\n let oldEntry: RouterBFCacheEntry | null = prevActiveEntry\n let clonedEntry: RouterBFCacheEntry = newActiveEntry\n while (oldEntry !== null && n < MAX_BF_CACHE_ENTRIES) {\n if (oldEntry.stateKey === activeStateKey) {\n // Fast path. This entry in the old list that corresponds to the key that\n // is now active. We've already placed a clone of this entry at the front\n // of the new list. We can reuse the rest of the old list without cloning.\n // NOTE: We don't need to worry about eviction in this case because we\n // haven't increased the size of the cache, and we assume the max size\n // is constant across renders. If we were to change it to a dynamic limit,\n // then the implementation would need to account for that.\n clonedEntry.next = oldEntry.next\n break\n } else {\n // Clone the entry and append it to the list.\n n++\n const entry: RouterBFCacheEntry = {\n tree: oldEntry.tree,\n stateKey: oldEntry.stateKey,\n next: null,\n }\n clonedEntry.next = entry\n clonedEntry = entry\n }\n oldEntry = oldEntry.next\n }\n\n setPrevActiveEntry(newActiveEntry)\n return newActiveEntry\n}\n"],"names":["useState","MAX_BF_CACHE_ENTRIES","process","env","__NEXT_CACHE_COMPONENTS","useRouterBFCache","activeTree","activeStateKey","prevActiveEntry","setPrevActiveEntry","initialEntry","tree","stateKey","next","newActiveEntry","n","oldEntry","clonedEntry","entry"],"mappings":";;;;AACA,SAASA,QAAQ,QAAQ,QAAO;;AAEhC,kEAAkE;AAClE,MAAMC,uBAAuBC,QAAQC,GAAG,CAACC,uBAAuB,GAAG,0BAAI;AA6BhE,SAASC,iBACdC,UAA6B,EAC7BC,cAAsB;IAEtB,wEAAwE;IACxE,2EAA2E;IAC3E,2DAA2D;IAC3D,yEAAyE;IACzE,2EAA2E;IAC3E,2EAA2E;IAC3E,4EAA4E;IAC5E,wEAAwE;IACxE,sEAAsE;IACtE,MAAM,CAACC,iBAAiBC,mBAAmB,OAAGT,iNAAAA,EAC5C;QACE,MAAMU,eAAmC;YACvCC,MAAML;YACNM,UAAUL;YACVM,MAAM;QACR;QACA,OAAOH;IACT;IAGF,IAAIF,gBAAgBG,IAAI,KAAKL,YAAY;QACvC,iEAAiE;QACjE,kBAAkB;QAClB,OAAOE;IACT;IAEA,4EAA4E;IAC5E,2EAA2E;IAC3E,+DAA+D;IAC/D,EAAE;IACF,6EAA6E;IAC7E,6DAA6D;IAE7D,2EAA2E;IAC3E,eAAe;IACf,MAAMM,iBAAqC;QACzCH,MAAML;QACNM,UAAUL;QACVM,MAAM;IACR;IAEA,2EAA2E;IAC3E,6EAA6E;IAC7E,mDAAmD;IACnD,IAAIE,IAAI;IACR,IAAIC,WAAsCR;IAC1C,IAAIS,cAAkCH;IACtC,MAAOE,aAAa,QAAQD,IAAId,qBAAsB;QACpD,IAAIe,SAASJ,QAAQ,KAAKL,gBAAgB;YACxC,yEAAyE;YACzE,yEAAyE;YACzE,0EAA0E;YAC1E,sEAAsE;YACtE,sEAAsE;YACtE,0EAA0E;YAC1E,0DAA0D;YAC1DU,YAAYJ,IAAI,GAAGG,SAASH,IAAI;YAChC;QACF,OAAO;YACL,6CAA6C;YAC7CE;YACA,MAAMG,QAA4B;gBAChCP,MAAMK,SAASL,IAAI;gBACnBC,UAAUI,SAASJ,QAAQ;gBAC3BC,MAAM;YACR;YACAI,YAAYJ,IAAI,GAAGK;YACnBD,cAAcC;QAChB;QACAF,WAAWA,SAASH,IAAI;IAC1B;IAEAJ,mBAAmBK;IACnB,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 2478, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n"],"names":["ensureLeadingSlash","path","startsWith"],"mappings":"AAAA;;;CAGC,GACD;;;;AAAO,SAASA,mBAAmBC,IAAY;IAC7C,OAAOA,KAAKC,UAAU,CAAC,OAAOD,OAAO,CAAC,CAAC,EAAEA,MAAM;AACjD","ignoreList":[0]}}, - {"offset": {"line": 2492, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/app-paths.ts"],"sourcesContent":["import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n"],"names":["ensureLeadingSlash","isGroupSegment","normalizeAppPath","route","split","reduce","pathname","segment","index","segments","length","normalizeRscURL","url","replace"],"mappings":";;;;;;AAAA,SAASA,kBAAkB,QAAQ,uCAAsC;AACzE,SAASC,cAAc,QAAQ,gBAAe;;;AAqBvC,SAASC,iBAAiBC,KAAa;IAC5C,WAAOH,wNAAAA,EACLG,MAAMC,KAAK,CAAC,KAAKC,MAAM,CAAC,CAACC,UAAUC,SAASC,OAAOC;QACjD,8BAA8B;QAC9B,IAAI,CAACF,SAAS;YACZ,OAAOD;QACT;QAEA,sBAAsB;QACtB,QAAIL,iLAAAA,EAAeM,UAAU;YAC3B,OAAOD;QACT;QAEA,iCAAiC;QACjC,IAAIC,OAAO,CAAC,EAAE,KAAK,KAAK;YACtB,OAAOD;QACT;QAEA,uDAAuD;QACvD,IACGC,CAAAA,YAAY,UAAUA,YAAY,OAAM,KACzCC,UAAUC,SAASC,MAAM,GAAG,GAC5B;YACA,OAAOJ;QACT;QAEA,OAAO,GAAGA,SAAS,CAAC,EAAEC,SAAS;IACjC,GAAG;AAEP;AAMO,SAASI,gBAAgBC,GAAW;IACzC,OAAOA,IAAIC,OAAO,CAChB,eACA,AACA,8BAD8B;AAGlC","ignoreList":[0]}}, - {"offset": {"line": 2530, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment-cache/segment-value-encoding.ts"],"sourcesContent":["import { PAGE_SEGMENT_KEY } from '../segment'\nimport type { Segment as FlightRouterStateSegment } from '../app-router-types'\n\n// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque = T & { __brand: K }\n\nexport type SegmentRequestKeyPart = Opaque<'SegmentRequestKeyPart', string>\nexport type SegmentRequestKey = Opaque<'SegmentRequestKey', string>\n\nexport const ROOT_SEGMENT_REQUEST_KEY = '' as SegmentRequestKey\n\nexport const HEAD_REQUEST_KEY = '/_head' as SegmentRequestKey\n\nexport function createSegmentRequestKeyPart(\n segment: FlightRouterStateSegment\n): SegmentRequestKeyPart {\n if (typeof segment === 'string') {\n if (segment.startsWith(PAGE_SEGMENT_KEY)) {\n // The Flight Router State type sometimes includes the search params in\n // the page segment. However, the Segment Cache tracks this as a separate\n // key. So, we strip the search params here, and then add them back when\n // the cache entry is turned back into a FlightRouterState. This is an\n // unfortunate consequence of the FlightRouteState being used both as a\n // transport type and as a cache key; we'll address this once more of the\n // Segment Cache implementation has settled.\n // TODO: We should hoist the search params out of the FlightRouterState\n // type entirely, This is our plan for dynamic route params, too.\n return PAGE_SEGMENT_KEY as SegmentRequestKeyPart\n }\n const safeName =\n // TODO: FlightRouterState encodes Not Found routes as \"/_not-found\".\n // But params typically don't include the leading slash. We should use\n // a different encoding to avoid this special case.\n segment === '/_not-found'\n ? '_not-found'\n : encodeToFilesystemAndURLSafeString(segment)\n // Since this is not a dynamic segment, it's fully encoded. It does not\n // need to be \"hydrated\" with a param value.\n return safeName as SegmentRequestKeyPart\n }\n\n const name = segment[0]\n const paramType = segment[2]\n const safeName = encodeToFilesystemAndURLSafeString(name)\n\n const encodedName = '$' + paramType + '$' + safeName\n return encodedName as SegmentRequestKeyPart\n}\n\nexport function appendSegmentRequestKeyPart(\n parentRequestKey: SegmentRequestKey,\n parallelRouteKey: string,\n childRequestKeyPart: SegmentRequestKeyPart\n): SegmentRequestKey {\n // Aside from being filesystem safe, segment keys are also designed so that\n // each segment and parallel route creates its own subdirectory. Roughly in\n // the same shape as the source app directory. This is mostly just for easier\n // debugging (you can open up the build folder and navigate the output); if\n // we wanted to do we could just use a flat structure.\n\n // Omit the parallel route key for children, since this is the most\n // common case. Saves some bytes (and it's what the app directory does).\n const slotKey =\n parallelRouteKey === 'children'\n ? childRequestKeyPart\n : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`\n return (parentRequestKey + '/' + slotKey) as SegmentRequestKey\n}\n\n// Define a regex pattern to match the most common characters found in a route\n// param. It excludes anything that might not be cross-platform filesystem\n// compatible, like |. It does not need to be precise because the fallback is to\n// just base64url-encode the whole parameter, which is fine; we just don't do it\n// by default for compactness, and for easier debugging.\nconst simpleParamValueRegex = /^[a-zA-Z0-9\\-_@]+$/\n\nfunction encodeToFilesystemAndURLSafeString(value: string) {\n if (simpleParamValueRegex.test(value)) {\n return value\n }\n // If there are any unsafe characters, base64url-encode the entire value.\n // We also add a ! prefix so it doesn't collide with the simple case.\n const base64url = btoa(value)\n .replace(/\\+/g, '-') // Replace '+' with '-'\n .replace(/\\//g, '_') // Replace '/' with '_'\n .replace(/=+$/, '') // Remove trailing '='\n return '!' + base64url\n}\n\nexport function convertSegmentPathToStaticExportFilename(\n segmentPath: string\n): string {\n return `__next${segmentPath.replace(/\\//g, '.')}.txt`\n}\n"],"names":["PAGE_SEGMENT_KEY","ROOT_SEGMENT_REQUEST_KEY","HEAD_REQUEST_KEY","createSegmentRequestKeyPart","segment","startsWith","safeName","encodeToFilesystemAndURLSafeString","name","paramType","encodedName","appendSegmentRequestKeyPart","parentRequestKey","parallelRouteKey","childRequestKeyPart","slotKey","simpleParamValueRegex","value","test","base64url","btoa","replace","convertSegmentPathToStaticExportFilename","segmentPath"],"mappings":";;;;;;;;;;;;AAAA,SAASA,gBAAgB,QAAQ,aAAY;;AAStC,MAAMC,2BAA2B,GAAuB;AAExD,MAAMC,mBAAmB,SAA6B;AAEtD,SAASC,4BACdC,OAAiC;IAEjC,IAAI,OAAOA,YAAY,UAAU;QAC/B,IAAIA,QAAQC,UAAU,CAACL,mLAAAA,GAAmB;YACxC,uEAAuE;YACvE,yEAAyE;YACzE,wEAAwE;YACxE,sEAAsE;YACtE,uEAAuE;YACvE,yEAAyE;YACzE,4CAA4C;YAC5C,uEAAuE;YACvE,iEAAiE;YACjE,OAAOA,mLAAAA;QACT;QACA,MAAMM,WACJ,AACA,qEADqE,CACC;QACtE,mDAAmD;QACnDF,YAAY,gBACR,eACAG,mCAAmCH;QACzC,uEAAuE;QACvE,4CAA4C;QAC5C,OAAOE;IACT;IAEA,MAAME,OAAOJ,OAAO,CAAC,EAAE;IACvB,MAAMK,YAAYL,OAAO,CAAC,EAAE;IAC5B,MAAME,WAAWC,mCAAmCC;IAEpD,MAAME,cAAc,MAAMD,YAAY,MAAMH;IAC5C,OAAOI;AACT;AAEO,SAASC,4BACdC,gBAAmC,EACnCC,gBAAwB,EACxBC,mBAA0C;IAE1C,2EAA2E;IAC3E,2EAA2E;IAC3E,6EAA6E;IAC7E,2EAA2E;IAC3E,sDAAsD;IAEtD,mEAAmE;IACnE,wEAAwE;IACxE,MAAMC,UACJF,qBAAqB,aACjBC,sBACA,CAAC,CAAC,EAAEP,mCAAmCM,kBAAkB,CAAC,EAAEC,qBAAqB;IACvF,OAAQF,mBAAmB,MAAMG;AACnC;AAEA,8EAA8E;AAC9E,0EAA0E;AAC1E,gFAAgF;AAChF,gFAAgF;AAChF,wDAAwD;AACxD,MAAMC,wBAAwB;AAE9B,SAAST,mCAAmCU,KAAa;IACvD,IAAID,sBAAsBE,IAAI,CAACD,QAAQ;QACrC,OAAOA;IACT;IACA,yEAAyE;IACzE,qEAAqE;IACrE,MAAME,YAAYC,KAAKH,OACpBI,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,IAAI,sBAAsB;;IAC5C,OAAO,MAAMF;AACf;AAEO,SAASG,yCACdC,WAAmB;IAEnB,OAAO,CAAC,MAAM,EAAEA,YAAYF,OAAO,CAAC,OAAO,KAAK,IAAI,CAAC;AACvD","ignoreList":[0]}}, - {"offset": {"line": 2609, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-headers.ts"],"sourcesContent":["export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n"],"names":["RSC_HEADER","ACTION_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_HMR_REFRESH_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_URL","RSC_CONTENT_TYPE_HEADER","FLIGHT_HEADERS","NEXT_RSC_UNION_QUERY","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_ACTION_REVALIDATED_HEADER"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAO,MAAMA,aAAa,MAAc;AACjC,MAAMC,gBAAgB,cAAsB;AAI5C,MAAMC,gCAAgC,yBAAiC;AACvE,MAAMC,8BAA8B,uBAA+B;AAKnE,MAAMC,sCACX,+BAAuC;AAClC,MAAMC,0BAA0B,mBAA2B;AAC3D,MAAMC,+BAA+B,4BAAoC;AACzE,MAAMC,WAAW,WAAmB;AACpC,MAAMC,0BAA0B,mBAA2B;AAE3D,MAAMC,iBAAiB;IAC5BT;IACAE;IACAC;IACAE;IACAD;CACD,CAAS;AAEH,MAAMM,uBAAuB,OAAe;AAE5C,MAAMC,gCAAgC,sBAA8B;AACpE,MAAMC,2BAA2B,qBAA6B;AAC9D,MAAMC,6BAA6B,0BAAkC;AACrE,MAAMC,8BAA8B,2BAAmC;AACvE,MAAMC,2BAA2B,qBAA6B;AAC9D,MAAMC,+BAA+B,4BAAoC;AACzE,MAAMC,yBAAyB,sBAA8B;AAC7D,MAAMC,8BAA8B,2BAAmC;AAGvE,MAAMC,iCAAiC,uBAA+B","ignoreList":[0]}}, - {"offset": {"line": 2681, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/route-params.ts"],"sourcesContent":["import type { DynamicParamTypesShort } from '../shared/lib/app-router-types'\nimport {\n addSearchParamsIfPageSegment,\n DEFAULT_SEGMENT_KEY,\n PAGE_SEGMENT_KEY,\n} from '../shared/lib/segment'\nimport { ROOT_SEGMENT_REQUEST_KEY } from '../shared/lib/segment-cache/segment-value-encoding'\nimport {\n NEXT_REWRITTEN_PATH_HEADER,\n NEXT_REWRITTEN_QUERY_HEADER,\n NEXT_RSC_UNION_QUERY,\n} from './components/app-router-headers'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n} from './components/segment-cache/cache-key'\nimport type { RSCResponse } from './components/router-reducer/fetch-server-response'\nimport type { ParsedUrlQuery } from 'querystring'\n\nexport type RouteParamValue = string | Array | null\n\nexport function getRenderedSearch(\n response: RSCResponse | Response\n): NormalizedSearch {\n // If the server performed a rewrite, the search params used to render the\n // page will be different from the params in the request URL. In this case,\n // the response will include a header that gives the rewritten search query.\n const rewrittenQuery = response.headers.get(NEXT_REWRITTEN_QUERY_HEADER)\n if (rewrittenQuery !== null) {\n return (\n rewrittenQuery === '' ? '' : '?' + rewrittenQuery\n ) as NormalizedSearch\n }\n // If the header is not present, there was no rewrite, so we use the search\n // query of the response URL.\n return urlToUrlWithoutFlightMarker(new URL(response.url))\n .search as NormalizedSearch\n}\n\nexport function getRenderedPathname(\n response: RSCResponse | Response\n): NormalizedPathname {\n // If the server performed a rewrite, the pathname used to render the\n // page will be different from the pathname in the request URL. In this case,\n // the response will include a header that gives the rewritten pathname.\n const rewrittenPath = response.headers.get(NEXT_REWRITTEN_PATH_HEADER)\n return (rewrittenPath ??\n urlToUrlWithoutFlightMarker(new URL(response.url))\n .pathname) as NormalizedPathname\n}\n\nexport function parseDynamicParamFromURLPart(\n paramType: DynamicParamTypesShort,\n pathnameParts: Array,\n partIndex: number\n): RouteParamValue {\n // This needs to match the behavior in get-dynamic-param.ts.\n switch (paramType) {\n // Catchalls\n case 'c': {\n // Catchalls receive all the remaining URL parts. If there are no\n // remaining pathname parts, return an empty array.\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s) => encodeURIComponent(s))\n : []\n }\n // Catchall intercepted\n case 'ci(..)(..)':\n case 'ci(.)':\n case 'ci(..)':\n case 'ci(...)': {\n const prefix = paramType.length - 2\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s, i) => {\n if (i === 0) {\n return encodeURIComponent(s.slice(prefix))\n }\n\n return encodeURIComponent(s)\n })\n : []\n }\n // Optional catchalls\n case 'oc': {\n // Optional catchalls receive all the remaining URL parts, unless this is\n // the end of the pathname, in which case they return null.\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s) => encodeURIComponent(s))\n : null\n }\n // Dynamic\n case 'd': {\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return ''\n }\n return encodeURIComponent(pathnameParts[partIndex])\n }\n // Dynamic intercepted\n case 'di(..)(..)':\n case 'di(.)':\n case 'di(..)':\n case 'di(...)': {\n const prefix = paramType.length - 2\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return ''\n }\n\n return encodeURIComponent(pathnameParts[partIndex].slice(prefix))\n }\n default:\n paramType satisfies never\n return ''\n }\n}\n\nexport function doesStaticSegmentAppearInURL(segment: string): boolean {\n // This is not a parameterized segment; however, we need to determine\n // whether or not this segment appears in the URL. For example, this route\n // groups do not appear in the URL, so they should be skipped. Any other\n // special cases must be handled here.\n // TODO: Consider encoding this directly into the router tree instead of\n // inferring it on the client based on the segment type. Something like\n // a `doesAppearInURL` flag in FlightRouterState.\n if (\n segment === ROOT_SEGMENT_REQUEST_KEY ||\n // For some reason, the loader tree sometimes includes extra __PAGE__\n // \"layouts\" when part of a parallel route. But it's not a leaf node.\n // Otherwise, we wouldn't need this special case because pages are\n // always leaf nodes.\n // TODO: Investigate why the loader produces these fake page segments.\n segment.startsWith(PAGE_SEGMENT_KEY) ||\n // Route groups.\n (segment[0] === '(' && segment.endsWith(')')) ||\n segment === DEFAULT_SEGMENT_KEY ||\n segment === '/_not-found'\n ) {\n return false\n } else {\n // All other segment types appear in the URL\n return true\n }\n}\n\nexport function getCacheKeyForDynamicParam(\n paramValue: RouteParamValue,\n renderedSearch: NormalizedSearch\n): string {\n // This needs to match the logic in get-dynamic-param.ts, until we're able to\n // unify the various implementations so that these are always computed on\n // the client.\n if (typeof paramValue === 'string') {\n // TODO: Refactor or remove this helper function to accept a string rather\n // than the whole segment type. Also we can probably just append the\n // search string instead of turning it into JSON.\n const pageSegmentWithSearchParams = addSearchParamsIfPageSegment(\n paramValue,\n Object.fromEntries(new URLSearchParams(renderedSearch))\n ) as string\n return pageSegmentWithSearchParams\n } else if (paramValue === null) {\n return ''\n } else {\n return paramValue.join('/')\n }\n}\n\nexport function urlToUrlWithoutFlightMarker(url: URL): URL {\n const urlWithoutFlightParameters = new URL(url)\n urlWithoutFlightParameters.searchParams.delete(NEXT_RSC_UNION_QUERY)\n if (process.env.NODE_ENV === 'production') {\n if (\n process.env.__NEXT_CONFIG_OUTPUT === 'export' &&\n urlWithoutFlightParameters.pathname.endsWith('.txt')\n ) {\n const { pathname } = urlWithoutFlightParameters\n const length = pathname.endsWith('/index.txt') ? 10 : 4\n // Slice off `/index.txt` or `.txt` from the end of the pathname\n urlWithoutFlightParameters.pathname = pathname.slice(0, -length)\n }\n }\n return urlWithoutFlightParameters\n}\n\nexport function getParamValueFromCacheKey(\n paramCacheKey: string,\n paramType: DynamicParamTypesShort\n) {\n // Turn the cache key string sent by the server (as part of FlightRouterState)\n // into a value that can be passed to `useParams` and client components.\n const isCatchAll = paramType === 'c' || paramType === 'oc'\n if (isCatchAll) {\n // Catch-all param keys are a concatenation of the path segments.\n // See equivalent logic in `getSelectedParams`.\n // TODO: We should just pass the array directly, rather than concatenate\n // it to a string and then split it back to an array. It needs to be an\n // array in some places, like when passing a key React, but we can convert\n // it at runtime in those places.\n return paramCacheKey.split('/')\n }\n return paramCacheKey\n}\n\nexport function urlSearchParamsToParsedUrlQuery(\n searchParams: URLSearchParams\n): ParsedUrlQuery {\n // Converts a URLSearchParams object to the same type used by the server when\n // creating search params props, i.e. the type returned by Node's\n // \"querystring\" module.\n const result: ParsedUrlQuery = {}\n for (const [key, value] of searchParams.entries()) {\n if (result[key] === undefined) {\n result[key] = value\n } else if (Array.isArray(result[key])) {\n result[key].push(value)\n } else {\n result[key] = [result[key], value]\n }\n }\n return result\n}\n"],"names":["addSearchParamsIfPageSegment","DEFAULT_SEGMENT_KEY","PAGE_SEGMENT_KEY","ROOT_SEGMENT_REQUEST_KEY","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_RSC_UNION_QUERY","getRenderedSearch","response","rewrittenQuery","headers","get","urlToUrlWithoutFlightMarker","URL","url","search","getRenderedPathname","rewrittenPath","pathname","parseDynamicParamFromURLPart","paramType","pathnameParts","partIndex","length","slice","map","s","encodeURIComponent","prefix","i","doesStaticSegmentAppearInURL","segment","startsWith","endsWith","getCacheKeyForDynamicParam","paramValue","renderedSearch","pageSegmentWithSearchParams","Object","fromEntries","URLSearchParams","join","urlWithoutFlightParameters","searchParams","delete","process","env","NODE_ENV","__NEXT_CONFIG_OUTPUT","getParamValueFromCacheKey","paramCacheKey","isCatchAll","split","urlSearchParamsToParsedUrlQuery","result","key","value","entries","undefined","Array","isArray","push"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2876, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/route-modules/app-page/vendored/ssr/react-server-dom-turbopack-client.ts"],"sourcesContent":["module.exports = (\n require('../../module.compiled') as typeof import('../../module.compiled')\n).vendored['react-ssr']!.ReactServerDOMTurbopackClient\n"],"names":["module","exports","require","vendored","ReactServerDOMTurbopackClient"],"mappings":"AAAAA,OAAOC,OAAO,GACZC,QAAQ,4HACRC,QAAQ,CAAC,YAAY,CAAEC,6BAA6B","ignoreList":[0]}}, - {"offset": {"line": 2881, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/router-reducer-types.ts"],"sourcesContent":["import type { CacheNode } from '../../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type { NavigationSeed } from '../segment-cache/navigation'\nimport type { FetchServerResponseResult } from './fetch-server-response'\n\nexport const ACTION_REFRESH = 'refresh'\nexport const ACTION_NAVIGATE = 'navigate'\nexport const ACTION_RESTORE = 'restore'\nexport const ACTION_SERVER_PATCH = 'server-patch'\nexport const ACTION_HMR_REFRESH = 'hmr-refresh'\nexport const ACTION_SERVER_ACTION = 'server-action'\n\nexport type RouterChangeByServerResponse = ({\n navigatedAt,\n previousTree,\n serverResponse,\n}: {\n navigatedAt: number\n previousTree: FlightRouterState\n serverResponse: FetchServerResponseResult\n}) => void\n\nexport interface Mutable {\n mpaNavigation?: boolean\n patchedTree?: FlightRouterState\n renderedSearch?: string\n canonicalUrl?: string\n scrollableSegments?: FlightSegmentPath[]\n pendingPush?: boolean\n cache?: CacheNode\n hashFragment?: string\n shouldScroll?: boolean\n preserveCustomHistoryState?: boolean\n onlyHashChange?: boolean\n collectedDebugInfo?: Array\n}\n\nexport interface ServerActionMutable extends Mutable {\n inFlightServerAction?: Promise | null\n}\n\n/**\n * Refresh triggers a refresh of the full page data.\n * - fetches the Flight data and fills rsc at the root of the cache.\n * - The router state is updated at the root.\n */\nexport interface RefreshAction {\n type: typeof ACTION_REFRESH\n}\n\nexport interface HmrRefreshAction {\n type: typeof ACTION_HMR_REFRESH\n}\n\nexport type ServerActionDispatcher = (\n args: Omit<\n ServerActionAction,\n 'type' | 'mutable' | 'navigate' | 'changeByServerResponse' | 'cache'\n >\n) => void\n\nexport interface ServerActionAction {\n type: typeof ACTION_SERVER_ACTION\n actionId: string\n actionArgs: any[]\n resolve: (value: any) => void\n reject: (reason?: any) => void\n didRevalidate?: boolean\n}\n\n/**\n * Navigate triggers a navigation to the provided url. It supports two types: `push` and `replace`.\n *\n * `navigateType`:\n * - `push` - pushes a new history entry in the browser history\n * - `replace` - replaces the current history entry in the browser history\n *\n * Navigate has multiple cache heuristics:\n * - page was prefetched\n * - Apply router state tree from prefetch\n * - Apply Flight data from prefetch to the cache\n * - If Flight data is a string, it's a redirect and the state is updated to trigger a redirect\n * - Check if hard navigation is needed\n * - Hard navigation happens when a dynamic parameter below the common layout changed\n * - When hard navigation is needed the cache is invalidated below the flightSegmentPath\n * - The missing cache nodes of the page will be fetched in layout-router and trigger the SERVER_PATCH action\n * - If hard navigation is not needed\n * - The cache is reused\n * - If any cache nodes are missing they'll be fetched in layout-router and trigger the SERVER_PATCH action\n * - page was not prefetched\n * - The navigate was called from `next/router` (`router.push()` / `router.replace()`) / `next/link` without prefetched data available (e.g. the prefetch didn't come back from the server before clicking the link)\n * - Flight data is fetched in the reducer (suspends the reducer)\n * - Router state tree is created based on Flight data\n * - Cache is filled based on the Flight data\n *\n * Above steps explain 3 cases:\n * - `soft` - Reuses the existing cache and fetches missing nodes in layout-router.\n * - `hard` - Creates a new cache where cache nodes are removed below the common layout and fetches missing nodes in layout-router.\n * - `optimistic` (explicit no prefetch) - Creates a new cache and kicks off the data fetch in the reducer. The data fetch is awaited in the layout-router.\n */\nexport interface NavigateAction {\n type: typeof ACTION_NAVIGATE\n url: URL\n isExternalUrl: boolean\n locationSearch: Location['search']\n navigateType: 'push' | 'replace'\n shouldScroll: boolean\n}\n\n/**\n * Restore applies the provided router state.\n * - Used for `popstate` (back/forward navigation) where a known router state has to be applied.\n * - Also used when syncing the router state with `pushState`/`replaceState` calls.\n * - Router state is applied as-is from the history state, if available.\n * - If the history state does not contain the router state, the existing router state is used.\n * - If any cache node is missing it will be fetched in layout-router during rendering and the server-patch case.\n * - If existing cache nodes match these are used.\n */\nexport interface RestoreAction {\n type: typeof ACTION_RESTORE\n url: URL\n historyState: AppHistoryState | undefined\n}\n\nexport type AppHistoryState = {\n tree: FlightRouterState\n renderedSearch: string\n}\n\n/**\n * Server-patch applies the provided Flight data to the cache and router tree.\n */\nexport interface ServerPatchAction {\n type: typeof ACTION_SERVER_PATCH\n previousTree: FlightRouterState\n url: URL\n nextUrl: string | null\n seed: NavigationSeed | null\n mpa: boolean\n}\n\n/**\n * PrefetchKind defines the type of prefetching that should be done.\n * - `auto` - if the page is dynamic, prefetch the page data partially, if static prefetch the page data fully.\n * - `full` - prefetch the page data fully.\n */\n\nexport enum PrefetchKind {\n AUTO = 'auto',\n FULL = 'full',\n}\n\n/**\n * Prefetch adds the provided FlightData to the prefetch cache\n * - Creates the router state tree based on the patch in FlightData\n * - Adds the FlightData to the prefetch cache\n * - In ACTION_NAVIGATE the prefetch cache is checked and the router state tree and FlightData are applied.\n */\n\nexport interface PushRef {\n /**\n * If the app-router should push a new history entry in app-router's useEffect()\n */\n pendingPush: boolean\n /**\n * Multi-page navigation through location.href.\n */\n mpaNavigation: boolean\n /**\n * Skip applying the router state to the browser history state.\n */\n preserveCustomHistoryState: boolean\n}\n\nexport type FocusAndScrollRef = {\n /**\n * If focus and scroll should be set in the layout-router's useEffect()\n */\n apply: boolean\n /**\n * The hash fragment that should be scrolled to.\n */\n hashFragment: string | null\n /**\n * The paths of the segments that should be focused.\n */\n segmentPaths: FlightSegmentPath[]\n /**\n * If only the URLs hash fragment changed\n */\n onlyHashChange: boolean\n}\n\n/**\n * Handles keeping the state of app-router.\n */\nexport type AppRouterState = {\n /**\n * The router state, this is written into the history state in app-router using replaceState/pushState.\n * - Has to be serializable as it is written into the history state.\n * - Holds which segments and parallel routes are shown on the screen.\n */\n tree: FlightRouterState\n /**\n * The cache holds React nodes for every segment that is shown on screen as well as previously shown segments.\n * It also holds in-progress data requests.\n */\n cache: CacheNode\n /**\n * Decides if the update should create a new history entry and if the navigation has to trigger a browser navigation.\n */\n pushRef: PushRef\n /**\n * Decides if the update should apply scroll and focus management.\n */\n focusAndScrollRef: FocusAndScrollRef\n /**\n * The canonical url that is pushed/replaced.\n * - This is the url you see in the browser.\n */\n canonicalUrl: string\n renderedSearch: string\n /**\n * The underlying \"url\" representing the UI state, which is used for intercepting routes.\n */\n nextUrl: string | null\n\n /**\n * The previous next-url that was used previous to a dynamic navigation.\n */\n previousNextUrl: string | null\n\n debugInfo: Array | null\n}\n\nexport type ReadonlyReducerState = Readonly\nexport type ReducerState =\n | (Promise & { _debugInfo?: Array })\n | AppRouterState\nexport type ReducerActions = Readonly<\n | RefreshAction\n | NavigateAction\n | RestoreAction\n | ServerPatchAction\n | HmrRefreshAction\n | ServerActionAction\n>\n"],"names":["ACTION_REFRESH","ACTION_NAVIGATE","ACTION_RESTORE","ACTION_SERVER_PATCH","ACTION_HMR_REFRESH","ACTION_SERVER_ACTION","PrefetchKind"],"mappings":";;;;;;;;;;;;;;;;AAQO,MAAMA,iBAAiB,UAAS;AAChC,MAAMC,kBAAkB,WAAU;AAClC,MAAMC,iBAAiB,UAAS;AAChC,MAAMC,sBAAsB,eAAc;AAC1C,MAAMC,qBAAqB,cAAa;AACxC,MAAMC,uBAAuB,gBAAe;AAyI5C,IAAKC,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;WAAAA;MAGX","ignoreList":[0]}}, - {"offset": {"line": 2912, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/is-thenable.ts"],"sourcesContent":["/**\n * Check to see if a value is Thenable.\n *\n * @param promise the maybe-thenable value\n * @returns true if the value is thenable\n */\nexport function isThenable(\n promise: Promise | T\n): promise is Promise {\n return (\n promise !== null &&\n typeof promise === 'object' &&\n 'then' in promise &&\n typeof promise.then === 'function'\n )\n}\n"],"names":["isThenable","promise","then"],"mappings":"AAAA;;;;;CAKC,GACD;;;;AAAO,SAASA,WACdC,OAAuB;IAEvB,OACEA,YAAY,QACZ,OAAOA,YAAY,YACnB,UAAUA,WACV,OAAOA,QAAQC,IAAI,KAAK;AAE5B","ignoreList":[0]}}, - {"offset": {"line": 2928, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/dev-overlay.shim.ts"],"sourcesContent":["export function renderAppDevOverlay() {\n throw new Error(\n \"Next DevTools: Can't render in this environment. This is a bug in Next.js\"\n )\n}\n\nexport function renderPagesDevOverlay() {\n throw new Error(\n \"Next DevTools: Can't render in this environment. This is a bug in Next.js\"\n )\n}\n\n// TODO: Extract into separate functions that are imported\nexport const dispatcher = new Proxy(\n {},\n {\n get: (_, prop) => {\n return () => {\n throw new Error(\n `Next DevTools: Can't dispatch ${String(prop)} in this environment. This is a bug in Next.js`\n )\n }\n },\n }\n)\n"],"names":["dispatcher","renderAppDevOverlay","renderPagesDevOverlay","Error","Proxy","get","_","prop","String"],"mappings":";;;;;;;;;;;;;;;IAaaA,UAAU,EAAA;eAAVA;;IAbGC,mBAAmB,EAAA;eAAnBA;;IAMAC,qBAAqB,EAAA;eAArBA;;;AANT,SAASD;IACd,MAAM,OAAA,cAEL,CAFK,IAAIE,MACR,8EADI,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAEO,SAASD;IACd,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,8EADI,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAGO,MAAMH,aAAa,IAAII,MAC5B,CAAC,GACD;IACEC,KAAK,CAACC,GAAGC;QACP,OAAO;YACL,MAAM,OAAA,cAEL,CAFK,IAAIJ,MACR,CAAC,8BAA8B,EAAEK,OAAOD,MAAM,8CAA8C,CAAC,GADzF,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 2989, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/use-app-dev-rendering-indicator.tsx"],"sourcesContent":["'use client'\n\nimport { useEffect, useTransition } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\n\nexport const useAppDevRenderingIndicator = () => {\n const [isPending, startTransition] = useTransition()\n\n useEffect(() => {\n if (isPending) {\n dispatcher.renderingIndicatorShow()\n } else {\n dispatcher.renderingIndicatorHide()\n }\n }, [isPending])\n\n return startTransition\n}\n"],"names":["useEffect","useTransition","dispatcher","useAppDevRenderingIndicator","isPending","startTransition","renderingIndicatorShow","renderingIndicatorHide"],"mappings":";;;;AAEA,SAASA,SAAS,EAAEC,aAAa,QAAQ,QAAO;AAChD,SAASC,UAAU,QAAQ,mCAAkC;AAH7D;;;AAKO,MAAMC,8BAA8B;IACzC,MAAM,CAACC,WAAWC,gBAAgB,OAAGJ,sNAAAA;QAErCD,kNAAAA,EAAU;QACR,IAAII,WAAW;YACbF,wLAAAA,CAAWI,sBAAsB;QACnC,OAAO;YACLJ,wLAAAA,CAAWK,sBAAsB;QACnC;IACF,GAAG;QAACH;KAAU;IAEd,OAAOC;AACT,EAAC","ignoreList":[0]}}, - {"offset": {"line": 3015, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/use-action-queue.ts"],"sourcesContent":["import type { Dispatch } from 'react'\nimport React, { use, useMemo } from 'react'\nimport { isThenable } from '../../shared/lib/is-thenable'\nimport type { AppRouterActionQueue } from './app-router-instance'\nimport type {\n AppRouterState,\n ReducerActions,\n ReducerState,\n} from './router-reducer/router-reducer-types'\n\n// The app router state lives outside of React, so we can import the dispatch\n// method directly wherever we need it, rather than passing it around via props\n// or context.\nlet dispatch: Dispatch | null = null\n\nexport function dispatchAppRouterAction(action: ReducerActions) {\n if (dispatch === null) {\n throw new Error(\n 'Internal Next.js error: Router action dispatched before initialization.'\n )\n }\n dispatch(action)\n}\n\nconst __DEV__ = process.env.NODE_ENV !== 'production'\nconst promisesWithDebugInfo: WeakMap<\n Promise,\n Promise & { _debugInfo?: Array }\n> = __DEV__ ? new WeakMap() : (null as any)\n\nexport function useActionQueue(\n actionQueue: AppRouterActionQueue\n): AppRouterState {\n const [state, setState] = React.useState(actionQueue.state)\n\n // Because of a known issue that requires to decode Flight streams inside the\n // render phase, we have to be a bit clever and assign the dispatch method to\n // a module-level variable upon initialization. The useState hook in this\n // module only exists to synchronize state that lives outside of React.\n // Ideally, what we'd do instead is pass the state as a prop to root.render;\n // this is conceptually how we're modeling the app router state, despite the\n // weird implementation details.\n if (process.env.NODE_ENV !== 'production') {\n const { useAppDevRenderingIndicator } =\n require('../../next-devtools/userspace/use-app-dev-rendering-indicator') as typeof import('../../next-devtools/userspace/use-app-dev-rendering-indicator')\n // eslint-disable-next-line react-hooks/rules-of-hooks\n const appDevRenderingIndicator = useAppDevRenderingIndicator()\n\n dispatch = (action: ReducerActions) => {\n appDevRenderingIndicator(() => {\n actionQueue.dispatch(action, setState)\n })\n }\n } else {\n dispatch = (action: ReducerActions) =>\n actionQueue.dispatch(action, setState)\n }\n\n // When navigating to a non-prefetched route, then App Router state will be\n // blocked until the server responds. We need to transfer the `_debugInfo`\n // from the underlying Flight response onto the top-level promise that is\n // passed to React (via `use`) so that the latency is accurately represented\n // in the React DevTools.\n const stateWithDebugInfo = useMemo(() => {\n if (!__DEV__) {\n return state\n }\n\n if (isThenable(state)) {\n // useMemo can't be used to cache a Promise since the memoized value is thrown\n // away when we suspend. So we use a WeakMap to cache the Promise with debug info.\n let promiseWithDebugInfo = promisesWithDebugInfo.get(state)\n if (promiseWithDebugInfo === undefined) {\n const debugInfo: Array = []\n promiseWithDebugInfo = Promise.resolve(state).then((asyncState) => {\n if (asyncState.debugInfo !== null) {\n debugInfo.push(...asyncState.debugInfo)\n }\n return asyncState\n }) as Promise & { _debugInfo?: Array }\n promiseWithDebugInfo._debugInfo = debugInfo\n\n promisesWithDebugInfo.set(state, promiseWithDebugInfo)\n }\n\n return promiseWithDebugInfo\n }\n return state\n }, [state])\n\n return isThenable(stateWithDebugInfo)\n ? use(stateWithDebugInfo)\n : stateWithDebugInfo\n}\n"],"names":["React","use","useMemo","isThenable","dispatch","dispatchAppRouterAction","action","Error","__DEV__","process","env","NODE_ENV","promisesWithDebugInfo","WeakMap","useActionQueue","actionQueue","state","setState","useState","useAppDevRenderingIndicator","require","appDevRenderingIndicator","stateWithDebugInfo","promiseWithDebugInfo","get","undefined","debugInfo","Promise","resolve","then","asyncState","push","_debugInfo","set"],"mappings":";;;;;;AACA,OAAOA,SAASC,GAAG,EAAEC,OAAO,QAAQ,QAAO;AAC3C,SAASC,UAAU,QAAQ,+BAA8B;;;AAQzD,6EAA6E;AAC7E,+EAA+E;AAC/E,cAAc;AACd,IAAIC,WAA4C;AAEzC,SAASC,wBAAwBC,MAAsB;IAC5D,IAAIF,aAAa,MAAM;QACrB,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,4EADI,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IACAH,SAASE;AACX;AAEA,MAAME,UAAUC,QAAQC,GAAG,CAACC,QAAQ,gCAAK;AACzC,MAAMC,wBAGFJ,uCAAU,IAAIK,YAAa;AAExB,SAASC,eACdC,WAAiC;IAEjC,MAAM,CAACC,OAAOC,SAAS,GAAGjB,gNAAAA,CAAMkB,QAAQ,CAAeH,YAAYC,KAAK;IAExE,6EAA6E;IAC7E,6EAA6E;IAC7E,yEAAyE;IACzE,uEAAuE;IACvE,4EAA4E;IAC5E,4EAA4E;IAC5E,gCAAgC;IAChC,IAAIP,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,MAAM,EAAEQ,2BAA2B,EAAE,GACnCC,QAAQ;QACV,sDAAsD;QACtD,MAAMC,2BAA2BF;QAEjCf,WAAW,CAACE;YACVe,yBAAyB;gBACvBN,YAAYX,QAAQ,CAACE,QAAQW;YAC/B;QACF;IACF,OAAO;;IAKP,2EAA2E;IAC3E,0EAA0E;IAC1E,yEAAyE;IACzE,4EAA4E;IAC5E,yBAAyB;IACzB,MAAMK,yBAAqBpB,gNAAAA,EAAQ;QACjC,IAAI,CAACM,SAAS;;QAId,QAAIL,oLAAAA,EAAWa,QAAQ;YACrB,8EAA8E;YAC9E,kFAAkF;YAClF,IAAIO,uBAAuBX,sBAAsBY,GAAG,CAACR;YACrD,IAAIO,yBAAyBE,WAAW;gBACtC,MAAMC,YAA4B,EAAE;gBACpCH,uBAAuBI,QAAQC,OAAO,CAACZ,OAAOa,IAAI,CAAC,CAACC;oBAClD,IAAIA,WAAWJ,SAAS,KAAK,MAAM;wBACjCA,UAAUK,IAAI,IAAID,WAAWJ,SAAS;oBACxC;oBACA,OAAOI;gBACT;gBACAP,qBAAqBS,UAAU,GAAGN;gBAElCd,sBAAsBqB,GAAG,CAACjB,OAAOO;YACnC;YAEA,OAAOA;QACT;QACA,OAAOP;IACT,GAAG;QAACA;KAAM;IAEV,WAAOb,oLAAAA,EAAWmB,0BACdrB,4MAAAA,EAAIqB,sBACJA;AACN","ignoreList":[0]}}, - {"offset": {"line": 3096, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-call-server.ts"],"sourcesContent":["import { startTransition } from 'react'\nimport { ACTION_SERVER_ACTION } from './components/router-reducer/router-reducer-types'\nimport { dispatchAppRouterAction } from './components/use-action-queue'\n\nexport async function callServer(actionId: string, actionArgs: any[]) {\n return new Promise((resolve, reject) => {\n startTransition(() => {\n dispatchAppRouterAction({\n type: ACTION_SERVER_ACTION,\n actionId,\n actionArgs,\n resolve,\n reject,\n })\n })\n })\n}\n"],"names":["startTransition","ACTION_SERVER_ACTION","dispatchAppRouterAction","callServer","actionId","actionArgs","Promise","resolve","reject","type"],"mappings":";;;;AAAA,SAASA,eAAe,QAAQ,QAAO;AACvC,SAASC,oBAAoB,QAAQ,mDAAkD;AACvF,SAASC,uBAAuB,QAAQ,gCAA+B;;;;AAEhE,eAAeC,WAAWC,QAAgB,EAAEC,UAAiB;IAClE,OAAO,IAAIC,QAAQ,CAACC,SAASC;YAC3BR,wNAAAA,EAAgB;gBACdE,gNAAAA,EAAwB;gBACtBO,MAAMR,sOAAAA;gBACNG;gBACAC;gBACAE;gBACAC;YACF;QACF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 3123, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-find-source-map-url.ts"],"sourcesContent":["const basePath = process.env.__NEXT_ROUTER_BASEPATH || ''\nconst pathname = `${basePath}/__nextjs_source-map`\n\nexport const findSourceMapURL =\n process.env.NODE_ENV === 'development'\n ? function findSourceMapURL(filename: string): string | null {\n if (filename === '') {\n return null\n }\n\n if (\n filename.startsWith(document.location.origin) &&\n filename.includes('/_next/static')\n ) {\n // This is a request for a client chunk. This can only happen when\n // using Turbopack. In this case, since we control how those source\n // maps are generated, we can safely assume that the sourceMappingURL\n // is relative to the filename, with an added `.map` extension. The\n // browser can just request this file, and it gets served through the\n // normal dev server, without the need to route this through\n // the `/__nextjs_source-map` dev middleware.\n return `${filename}.map`\n }\n\n const url = new URL(pathname, document.location.origin)\n url.searchParams.set('filename', filename)\n\n return url.href\n }\n : undefined\n"],"names":["basePath","process","env","__NEXT_ROUTER_BASEPATH","pathname","findSourceMapURL","NODE_ENV","filename","startsWith","document","location","origin","includes","url","URL","searchParams","set","href","undefined"],"mappings":";;;;AAAA,MAAMA,WAAWC,QAAQC,GAAG,CAACC,sBAAsB,MAAI;AACvD,MAAMC,WAAW,GAAGJ,SAAS,oBAAoB,CAAC;AAE3C,MAAMK,mBACXJ,QAAQC,GAAG,CAACI,QAAQ,KAAK,cACrB,SAASD,iBAAiBE,QAAgB;IACxC,IAAIA,aAAa,IAAI;QACnB,OAAO;IACT;IAEA,IACEA,SAASC,UAAU,CAACC,SAASC,QAAQ,CAACC,MAAM,KAC5CJ,SAASK,QAAQ,CAAC,kBAClB;QACA,kEAAkE;QAClE,mEAAmE;QACnE,qEAAqE;QACrE,mEAAmE;QACnE,qEAAqE;QACrE,4DAA4D;QAC5D,6CAA6C;QAC7C,OAAO,GAAGL,SAAS,IAAI,CAAC;IAC1B;IAEA,MAAMM,MAAM,IAAIC,IAAIV,UAAUK,SAASC,QAAQ,CAACC,MAAM;IACtDE,IAAIE,YAAY,CAACC,GAAG,CAAC,YAAYT;IAEjC,OAAOM,IAAII,IAAI;AACjB,IACAC,UAAS","ignoreList":[0]}}, - {"offset": {"line": 3151, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/flight-data-helpers.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightData,\n FlightDataPath,\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n HeadData,\n InitialRSCPayload,\n} from '../shared/lib/app-router-types'\nimport { PAGE_SEGMENT_KEY } from '../shared/lib/segment'\nimport type { NormalizedSearch } from './components/segment-cache/cache-key'\nimport {\n getCacheKeyForDynamicParam,\n parseDynamicParamFromURLPart,\n doesStaticSegmentAppearInURL,\n getRenderedPathname,\n getRenderedSearch,\n} from './route-params'\nimport { createHrefFromUrl } from './components/router-reducer/create-href-from-url'\n\nexport type NormalizedFlightData = {\n /**\n * The full `FlightSegmentPath` inclusive of the final `Segment`\n */\n segmentPath: FlightSegmentPath\n /**\n * The `FlightSegmentPath` exclusive of the final `Segment`\n */\n pathToSegment: FlightSegmentPath\n segment: Segment\n tree: FlightRouterState\n seedData: CacheNodeSeedData | null\n head: HeadData\n isHeadPartial: boolean\n isRootRender: boolean\n}\n\n// TODO: We should only have to export `normalizeFlightData`, however because the initial flight data\n// that gets passed to `createInitialRouterState` doesn't conform to the `FlightDataPath` type (it's missing the root segment)\n// we're currently exporting it so we can use it directly. This should be fixed as part of the unification of\n// the different ways we express `FlightSegmentPath`.\nexport function getFlightDataPartsFromPath(\n flightDataPath: FlightDataPath\n): NormalizedFlightData {\n // Pick the last 4 items from the `FlightDataPath` to get the [tree, seedData, viewport, isHeadPartial].\n const flightDataPathLength = 4\n // tree, seedData, and head are *always* the last three items in the `FlightDataPath`.\n const [tree, seedData, head, isHeadPartial] =\n flightDataPath.slice(-flightDataPathLength)\n // The `FlightSegmentPath` is everything except the last three items. For a root render, it won't be present.\n const segmentPath = flightDataPath.slice(0, -flightDataPathLength)\n\n return {\n // TODO: Unify these two segment path helpers. We are inconsistently pushing an empty segment (\"\")\n // to the start of the segment path in some places which makes it hard to use solely the segment path.\n // Look for \"// TODO-APP: remove ''\" in the codebase.\n pathToSegment: segmentPath.slice(0, -1),\n segmentPath,\n // if the `FlightDataPath` corresponds with the root, there'll be no segment path,\n // in which case we default to ''.\n segment: segmentPath[segmentPath.length - 1] ?? '',\n tree,\n seedData,\n head,\n isHeadPartial,\n isRootRender: flightDataPath.length === flightDataPathLength,\n }\n}\n\nexport function createInitialRSCPayloadFromFallbackPrerender(\n response: Response,\n fallbackInitialRSCPayload: InitialRSCPayload\n): InitialRSCPayload {\n // This is a static fallback page. In order to hydrate the page, we need to\n // parse the client params from the URL, but to account for the possibility\n // that the page was rewritten, we need to check the response headers\n // for x-nextjs-rewritten-path or x-nextjs-rewritten-query headers. Since\n // we can't access the headers of the initial document response, the client\n // performs a fetch request to the current location. Since it's possible that\n // the fetch request will be dynamically rewritten to a different path than\n // the initial document, this fetch request delivers _all_ the hydration data\n // for the page; it was not inlined into the document, like it normally\n // would be.\n //\n // TODO: Consider treating the case where fetch is rewritten to a different\n // path from the document as a special deopt case. We should optimistically\n // assume this won't happen, inline the data into the document, and perform\n // a minimal request (like a HEAD or range request) to verify that the\n // response matches. Tricky to get right because we need to account for\n // all the different deployment environments we support, like output:\n // \"export\" mode, where we currently don't assume that custom response\n // headers are present.\n\n // Patch the Flight data sent by the server with the correct params parsed\n // from the URL + response object.\n const renderedPathname = getRenderedPathname(response)\n const renderedSearch = getRenderedSearch(response)\n const canonicalUrl = createHrefFromUrl(new URL(location.href))\n const originalFlightDataPath = fallbackInitialRSCPayload.f[0]\n const originalFlightRouterState = originalFlightDataPath[0]\n return {\n b: fallbackInitialRSCPayload.b,\n c: canonicalUrl.split('/'),\n q: renderedSearch,\n i: fallbackInitialRSCPayload.i,\n f: [\n [\n fillInFallbackFlightRouterState(\n originalFlightRouterState,\n renderedPathname,\n renderedSearch as NormalizedSearch\n ),\n originalFlightDataPath[1],\n originalFlightDataPath[2],\n originalFlightDataPath[2],\n ],\n ],\n m: fallbackInitialRSCPayload.m,\n G: fallbackInitialRSCPayload.G,\n S: fallbackInitialRSCPayload.S,\n }\n}\n\nfunction fillInFallbackFlightRouterState(\n flightRouterState: FlightRouterState,\n renderedPathname: string,\n renderedSearch: NormalizedSearch\n): FlightRouterState {\n const pathnameParts = renderedPathname.split('/').filter((p) => p !== '')\n const index = 0\n return fillInFallbackFlightRouterStateImpl(\n flightRouterState,\n renderedSearch,\n pathnameParts,\n index\n )\n}\n\nfunction fillInFallbackFlightRouterStateImpl(\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n pathnameParts: Array,\n pathnamePartsIndex: number\n): FlightRouterState {\n const originalSegment = flightRouterState[0]\n let newSegment: Segment\n let doesAppearInURL: boolean\n if (typeof originalSegment === 'string') {\n newSegment = originalSegment\n doesAppearInURL = doesStaticSegmentAppearInURL(originalSegment)\n } else {\n const paramName = originalSegment[0]\n const paramType = originalSegment[2]\n const paramValue = parseDynamicParamFromURLPart(\n paramType,\n pathnameParts,\n pathnamePartsIndex\n )\n const cacheKey = getCacheKeyForDynamicParam(paramValue, renderedSearch)\n newSegment = [paramName, cacheKey, paramType]\n doesAppearInURL = true\n }\n\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = doesAppearInURL\n ? pathnamePartsIndex + 1\n : pathnamePartsIndex\n\n const children = flightRouterState[1]\n const newChildren: { [key: string]: FlightRouterState } = {}\n for (let key in children) {\n const childFlightRouterState = children[key]\n newChildren[key] = fillInFallbackFlightRouterStateImpl(\n childFlightRouterState,\n renderedSearch,\n pathnameParts,\n childPathnamePartsIndex\n )\n }\n\n const newState: FlightRouterState = [\n newSegment,\n newChildren,\n null,\n flightRouterState[3],\n flightRouterState[4],\n ]\n return newState\n}\n\nexport function getNextFlightSegmentPath(\n flightSegmentPath: FlightSegmentPath\n): FlightSegmentPath {\n // Since `FlightSegmentPath` is a repeated tuple of `Segment` and `ParallelRouteKey`, we slice off two items\n // to get the next segment path.\n return flightSegmentPath.slice(2)\n}\n\nexport function normalizeFlightData(\n flightData: FlightData\n): NormalizedFlightData[] | string {\n // FlightData can be a string when the server didn't respond with a proper flight response,\n // or when a redirect happens, to signal to the client that it needs to perform an MPA navigation.\n if (typeof flightData === 'string') {\n return flightData\n }\n\n return flightData.map((flightDataPath) =>\n getFlightDataPartsFromPath(flightDataPath)\n )\n}\n\n/**\n * This function is used to prepare the flight router state for the request.\n * It removes markers that are not needed by the server, and are purely used\n * for stashing state on the client.\n * @param flightRouterState - The flight router state to prepare.\n * @param isHmrRefresh - Whether this is an HMR refresh request.\n * @returns The prepared flight router state.\n */\nexport function prepareFlightRouterStateForRequest(\n flightRouterState: FlightRouterState,\n isHmrRefresh?: boolean\n): string {\n // HMR requests need the complete, unmodified state for proper functionality\n if (isHmrRefresh) {\n return encodeURIComponent(JSON.stringify(flightRouterState))\n }\n\n return encodeURIComponent(\n JSON.stringify(stripClientOnlyDataFromFlightRouterState(flightRouterState))\n )\n}\n\n/**\n * Recursively strips client-only data from FlightRouterState while preserving\n * server-needed information for proper rendering decisions.\n */\nfunction stripClientOnlyDataFromFlightRouterState(\n flightRouterState: FlightRouterState\n): FlightRouterState {\n const [\n segment,\n parallelRoutes,\n _url, // Intentionally unused - URLs are client-only\n refreshMarker,\n isRootLayout,\n hasLoadingBoundary,\n ] = flightRouterState\n\n // __PAGE__ segments are always fetched from the server, so there's\n // no need to send them up\n const cleanedSegment = stripSearchParamsFromPageSegment(segment)\n\n // Recursively process parallel routes\n const cleanedParallelRoutes: { [key: string]: FlightRouterState } = {}\n for (const [key, childState] of Object.entries(parallelRoutes)) {\n cleanedParallelRoutes[key] =\n stripClientOnlyDataFromFlightRouterState(childState)\n }\n\n const result: FlightRouterState = [\n cleanedSegment,\n cleanedParallelRoutes,\n null, // URLs omitted - server reconstructs paths from segments\n shouldPreserveRefreshMarker(refreshMarker) ? refreshMarker : null,\n ]\n\n // Append optional fields if present\n if (isRootLayout !== undefined) {\n result[4] = isRootLayout\n }\n if (hasLoadingBoundary !== undefined) {\n result[5] = hasLoadingBoundary\n }\n\n return result\n}\n\n/**\n * Strips search parameters from __PAGE__ segments to prevent sensitive\n * client-side data from being sent to the server.\n */\nfunction stripSearchParamsFromPageSegment(segment: Segment): Segment {\n if (\n typeof segment === 'string' &&\n segment.startsWith(PAGE_SEGMENT_KEY + '?')\n ) {\n return PAGE_SEGMENT_KEY\n }\n return segment\n}\n\n/**\n * Determines whether the refresh marker should be sent to the server\n * Client-only markers like 'refresh' are stripped, while server-needed markers\n * like 'refetch' and 'inside-shared-layout' are preserved.\n */\nfunction shouldPreserveRefreshMarker(\n refreshMarker: FlightRouterState[3]\n): boolean {\n return Boolean(refreshMarker && refreshMarker !== 'refresh')\n}\n"],"names":["PAGE_SEGMENT_KEY","getCacheKeyForDynamicParam","parseDynamicParamFromURLPart","doesStaticSegmentAppearInURL","getRenderedPathname","getRenderedSearch","createHrefFromUrl","getFlightDataPartsFromPath","flightDataPath","flightDataPathLength","tree","seedData","head","isHeadPartial","slice","segmentPath","pathToSegment","segment","length","isRootRender","createInitialRSCPayloadFromFallbackPrerender","response","fallbackInitialRSCPayload","renderedPathname","renderedSearch","canonicalUrl","URL","location","href","originalFlightDataPath","f","originalFlightRouterState","b","c","split","q","i","fillInFallbackFlightRouterState","m","G","S","flightRouterState","pathnameParts","filter","p","index","fillInFallbackFlightRouterStateImpl","pathnamePartsIndex","originalSegment","newSegment","doesAppearInURL","paramName","paramType","paramValue","cacheKey","childPathnamePartsIndex","children","newChildren","key","childFlightRouterState","newState","getNextFlightSegmentPath","flightSegmentPath","normalizeFlightData","flightData","map","prepareFlightRouterStateForRequest","isHmrRefresh","encodeURIComponent","JSON","stringify","stripClientOnlyDataFromFlightRouterState","parallelRoutes","_url","refreshMarker","isRootLayout","hasLoadingBoundary","cleanedSegment","stripSearchParamsFromPageSegment","cleanedParallelRoutes","childState","Object","entries","result","shouldPreserveRefreshMarker","undefined","startsWith","Boolean"],"mappings":";;;;;;;;;;;;AAUA,SAASA,gBAAgB,QAAQ,wBAAuB;AAExD,SACEC,0BAA0B,EAC1BC,4BAA4B,EAC5BC,4BAA4B,EAC5BC,mBAAmB,EACnBC,iBAAiB,QACZ,iBAAgB;AACvB,SAASC,iBAAiB,QAAQ,mDAAkD;;;;AAuB7E,SAASC,2BACdC,cAA8B;IAE9B,wGAAwG;IACxG,MAAMC,uBAAuB;IAC7B,sFAAsF;IACtF,MAAM,CAACC,MAAMC,UAAUC,MAAMC,cAAc,GACzCL,eAAeM,KAAK,CAAC,CAACL;IACxB,6GAA6G;IAC7G,MAAMM,cAAcP,eAAeM,KAAK,CAAC,GAAG,CAACL;IAE7C,OAAO;QACL,kGAAkG;QAClG,sGAAsG;QACtG,qDAAqD;QACrDO,eAAeD,YAAYD,KAAK,CAAC,GAAG,CAAC;QACrCC;QACA,kFAAkF;QAClF,kCAAkC;QAClCE,SAASF,WAAW,CAACA,YAAYG,MAAM,GAAG,EAAE,IAAI;QAChDR;QACAC;QACAC;QACAC;QACAM,cAAcX,eAAeU,MAAM,KAAKT;IAC1C;AACF;AAEO,SAASW,6CACdC,QAAkB,EAClBC,yBAA4C;IAE5C,2EAA2E;IAC3E,2EAA2E;IAC3E,qEAAqE;IACrE,yEAAyE;IACzE,2EAA2E;IAC3E,6EAA6E;IAC7E,2EAA2E;IAC3E,6EAA6E;IAC7E,uEAAuE;IACvE,YAAY;IACZ,EAAE;IACF,2EAA2E;IAC3E,2EAA2E;IAC3E,2EAA2E;IAC3E,sEAAsE;IACtE,uEAAuE;IACvE,qEAAqE;IACrE,sEAAsE;IACtE,uBAAuB;IAEvB,0EAA0E;IAC1E,kCAAkC;IAClC,MAAMC,uBAAmBnB,uLAAAA,EAAoBiB;IAC7C,MAAMG,qBAAiBnB,qLAAAA,EAAkBgB;IACzC,MAAMI,mBAAenB,sOAAAA,EAAkB,IAAIoB,IAAIC,SAASC,IAAI;IAC5D,MAAMC,yBAAyBP,0BAA0BQ,CAAC,CAAC,EAAE;IAC7D,MAAMC,4BAA4BF,sBAAsB,CAAC,EAAE;IAC3D,OAAO;QACLG,GAAGV,0BAA0BU,CAAC;QAC9BC,GAAGR,aAAaS,KAAK,CAAC;QACtBC,GAAGX;QACHY,GAAGd,0BAA0Bc,CAAC;QAC9BN,GAAG;YACD;gBACEO,gCACEN,2BACAR,kBACAC;gBAEFK,sBAAsB,CAAC,EAAE;gBACzBA,sBAAsB,CAAC,EAAE;gBACzBA,sBAAsB,CAAC,EAAE;aAC1B;SACF;QACDS,GAAGhB,0BAA0BgB,CAAC;QAC9BC,GAAGjB,0BAA0BiB,CAAC;QAC9BC,GAAGlB,0BAA0BkB,CAAC;IAChC;AACF;AAEA,SAASH,gCACPI,iBAAoC,EACpClB,gBAAwB,EACxBC,cAAgC;IAEhC,MAAMkB,gBAAgBnB,iBAAiBW,KAAK,CAAC,KAAKS,MAAM,CAAC,CAACC,IAAMA,MAAM;IACtE,MAAMC,QAAQ;IACd,OAAOC,oCACLL,mBACAjB,gBACAkB,eACAG;AAEJ;AAEA,SAASC,oCACPL,iBAAoC,EACpCjB,cAAgC,EAChCkB,aAA4B,EAC5BK,kBAA0B;IAE1B,MAAMC,kBAAkBP,iBAAiB,CAAC,EAAE;IAC5C,IAAIQ;IACJ,IAAIC;IACJ,IAAI,OAAOF,oBAAoB,UAAU;QACvCC,aAAaD;QACbE,sBAAkB/C,gMAAAA,EAA6B6C;IACjD,OAAO;QACL,MAAMG,YAAYH,eAAe,CAAC,EAAE;QACpC,MAAMI,YAAYJ,eAAe,CAAC,EAAE;QACpC,MAAMK,iBAAanD,gMAAAA,EACjBkD,WACAV,eACAK;QAEF,MAAMO,eAAWrD,8LAAAA,EAA2BoD,YAAY7B;QACxDyB,aAAa;YAACE;YAAWG;YAAUF;SAAU;QAC7CF,kBAAkB;IACpB;IAEA,wEAAwE;IACxE,8DAA8D;IAC9D,MAAMK,0BAA0BL,kBAC5BH,qBAAqB,IACrBA;IAEJ,MAAMS,WAAWf,iBAAiB,CAAC,EAAE;IACrC,MAAMgB,cAAoD,CAAC;IAC3D,IAAK,IAAIC,OAAOF,SAAU;QACxB,MAAMG,yBAAyBH,QAAQ,CAACE,IAAI;QAC5CD,WAAW,CAACC,IAAI,GAAGZ,oCACjBa,wBACAnC,gBACAkB,eACAa;IAEJ;IAEA,MAAMK,WAA8B;QAClCX;QACAQ;QACA;QACAhB,iBAAiB,CAAC,EAAE;QACpBA,iBAAiB,CAAC,EAAE;KACrB;IACD,OAAOmB;AACT;AAEO,SAASC,yBACdC,iBAAoC;IAEpC,4GAA4G;IAC5G,gCAAgC;IAChC,OAAOA,kBAAkBhD,KAAK,CAAC;AACjC;AAEO,SAASiD,oBACdC,UAAsB;IAEtB,2FAA2F;IAC3F,kGAAkG;IAClG,IAAI,OAAOA,eAAe,UAAU;QAClC,OAAOA;IACT;IAEA,OAAOA,WAAWC,GAAG,CAAC,CAACzD,iBACrBD,2BAA2BC;AAE/B;AAUO,SAAS0D,mCACdzB,iBAAoC,EACpC0B,YAAsB;IAEtB,4EAA4E;IAC5E,IAAIA,cAAc;QAChB,OAAOC,mBAAmBC,KAAKC,SAAS,CAAC7B;IAC3C;IAEA,OAAO2B,mBACLC,KAAKC,SAAS,CAACC,yCAAyC9B;AAE5D;AAEA;;;CAGC,GACD,SAAS8B,yCACP9B,iBAAoC;IAEpC,MAAM,CACJxB,SACAuD,gBACAC,MACAC,eACAC,cACAC,mBACD,GAAGnC;IAEJ,mEAAmE;IACnE,0BAA0B;IAC1B,MAAMoC,iBAAiBC,iCAAiC7D;IAExD,sCAAsC;IACtC,MAAM8D,wBAA8D,CAAC;IACrE,KAAK,MAAM,CAACrB,KAAKsB,WAAW,IAAIC,OAAOC,OAAO,CAACV,gBAAiB;QAC9DO,qBAAqB,CAACrB,IAAI,GACxBa,yCAAyCS;IAC7C;IAEA,MAAMG,SAA4B;QAChCN;QACAE;QACA;QACAK,4BAA4BV,iBAAiBA,gBAAgB;KAC9D;IAED,oCAAoC;IACpC,IAAIC,iBAAiBU,WAAW;QAC9BF,MAAM,CAAC,EAAE,GAAGR;IACd;IACA,IAAIC,uBAAuBS,WAAW;QACpCF,MAAM,CAAC,EAAE,GAAGP;IACd;IAEA,OAAOO;AACT;AAEA;;;CAGC,GACD,SAASL,iCAAiC7D,OAAgB;IACxD,IACE,OAAOA,YAAY,YACnBA,QAAQqE,UAAU,CAACtF,mLAAAA,GAAmB,MACtC;QACA,OAAOA,mLAAAA;IACT;IACA,OAAOiB;AACT;AAEA;;;;CAIC,GACD,SAASmE,4BACPV,aAAmC;IAEnC,OAAOa,QAAQb,iBAAiBA,kBAAkB;AACpD","ignoreList":[0]}}, - {"offset": {"line": 3347, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-build-id.ts"],"sourcesContent":["// This gets assigned as a side-effect during app initialization. Because it\n// represents the build used to create the JS bundle, it should never change\n// after being set, so we store it in a global variable.\n//\n// When performing RSC requests, if the incoming data has a different build ID,\n// we perform an MPA navigation/refresh to load the updated build and ensure\n// that the client and server in sync.\n\n// Starts as an empty string. In practice, because setAppBuildId is called\n// during initialization before hydration starts, this will always get\n// reassigned to the actual build ID before it's ever needed by a navigation.\n// If for some reasons it didn't, due to a bug or race condition, then on\n// navigation the build comparision would fail and trigger an MPA navigation.\nlet globalBuildId: string = ''\n\nexport function setAppBuildId(buildId: string) {\n globalBuildId = buildId\n}\n\nexport function getAppBuildId(): string {\n return globalBuildId\n}\n"],"names":["globalBuildId","setAppBuildId","buildId","getAppBuildId"],"mappings":";;;;;;AAAA,4EAA4E;AAC5E,4EAA4E;AAC5E,wDAAwD;AACxD,EAAE;AACF,+EAA+E;AAC/E,4EAA4E;AAC5E,sCAAsC;AAEtC,0EAA0E;AAC1E,sEAAsE;AACtE,6EAA6E;AAC7E,yEAAyE;AACzE,6EAA6E;AAC7E,IAAIA,gBAAwB;AAErB,SAASC,cAAcC,OAAe;IAC3CF,gBAAgBE;AAClB;AAEO,SAASC;IACd,OAAOH;AACT","ignoreList":[0]}}, - {"offset": {"line": 3376, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/hash.ts"],"sourcesContent":["// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n"],"names":["djb2Hash","str","hash","i","length","char","charCodeAt","hexHash","toString","slice"],"mappings":"AAAA,wCAAwC;AACxC,4CAA4C;AAC5C,iHAAiH;AACjH,wFAAwF;AACxF,gGAAgG;AAChG,wHAAwH;AACxH,wDAAwD;;;;;;;AACjD,SAASA,SAASC,GAAW;IAClC,IAAIC,OAAO;IACX,IAAK,IAAIC,IAAI,GAAGA,IAAIF,IAAIG,MAAM,EAAED,IAAK;QACnC,MAAME,OAAOJ,IAAIK,UAAU,CAACH;QAC5BD,OAASA,CAAAA,QAAQ,CAAA,IAAKA,OAAOG,OAAQ;IACvC;IACA,OAAOH,SAAS;AAClB;AAEO,SAASK,QAAQN,GAAW;IACjC,OAAOD,SAASC,KAAKO,QAAQ,CAAC,IAAIC,KAAK,CAAC,GAAG;AAC7C","ignoreList":[0]}}, - {"offset": {"line": 3404, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/cache-busting-search-param.ts"],"sourcesContent":["import { hexHash } from '../../hash'\n\nexport function computeCacheBustingSearchParam(\n prefetchHeader: '1' | '2' | '0' | undefined,\n segmentPrefetchHeader: string | string[] | undefined,\n stateTreeHeader: string | string[] | undefined,\n nextUrlHeader: string | string[] | undefined\n): string {\n if (\n (prefetchHeader === undefined || prefetchHeader === '0') &&\n segmentPrefetchHeader === undefined &&\n stateTreeHeader === undefined &&\n nextUrlHeader === undefined\n ) {\n return ''\n }\n return hexHash(\n [\n prefetchHeader || '0',\n segmentPrefetchHeader || '0',\n stateTreeHeader || '0',\n nextUrlHeader || '0',\n ].join(',')\n )\n}\n"],"names":["hexHash","computeCacheBustingSearchParam","prefetchHeader","segmentPrefetchHeader","stateTreeHeader","nextUrlHeader","undefined","join"],"mappings":";;;;AAAA,SAASA,OAAO,QAAQ,aAAY;;AAE7B,SAASC,+BACdC,cAA2C,EAC3CC,qBAAoD,EACpDC,eAA8C,EAC9CC,aAA4C;IAE5C,IACGH,CAAAA,mBAAmBI,aAAaJ,mBAAmB,GAAE,KACtDC,0BAA0BG,aAC1BF,oBAAoBE,aACpBD,kBAAkBC,WAClB;QACA,OAAO;IACT;IACA,WAAON,uKAAAA,EACL;QACEE,kBAAkB;QAClBC,yBAAyB;QACzBC,mBAAmB;QACnBC,iBAAiB;KAClB,CAACE,IAAI,CAAC;AAEX","ignoreList":[0]}}, - {"offset": {"line": 3425, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/set-cache-busting-search-param.ts"],"sourcesContent":["'use client'\n\nimport { computeCacheBustingSearchParam } from '../../../shared/lib/router/utils/cache-busting-search-param'\nimport {\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n NEXT_RSC_UNION_QUERY,\n} from '../app-router-headers'\nimport type { RequestHeaders } from './fetch-server-response'\n\n/**\n * Mutates the provided URL by adding a cache-busting search parameter for CDNs that don't\n * support custom headers. This helps avoid caching conflicts by making each request unique.\n *\n * Rather than relying on the Vary header which some CDNs ignore, we append a search param\n * to create a unique URL that forces a fresh request.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * Note: This function mutates the input URL directly and does not return anything.\n *\n * TODO: Since we need to use a search param anyway, we could simplify by removing the custom\n * headers approach entirely and just use search params.\n */\nexport const setCacheBustingSearchParam = (\n url: URL,\n headers: RequestHeaders\n): void => {\n const uniqueCacheKey = computeCacheBustingSearchParam(\n headers[NEXT_ROUTER_PREFETCH_HEADER],\n headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],\n headers[NEXT_ROUTER_STATE_TREE_HEADER],\n headers[NEXT_URL]\n )\n setCacheBustingSearchParamWithHash(url, uniqueCacheKey)\n}\n\n/**\n * Sets a cache-busting search parameter on a URL using a provided hash value.\n *\n * This function performs the same logic as `setCacheBustingSearchParam` but accepts\n * a pre-computed hash instead of computing it from headers.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * hash: \"abc123\"\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * If the hash is null, we will set `_rsc` search param without a value.\n * Like this: https://example.com/path?query=1&_rsc\n *\n * Note: This function mutates the input URL directly and does not return anything.\n */\nexport const setCacheBustingSearchParamWithHash = (\n url: URL,\n hash: string\n): void => {\n /**\n * Note that we intentionally do not use `url.searchParams.set` here:\n *\n * const url = new URL('https://example.com/search?q=custom%20spacing');\n * url.searchParams.set('_rsc', 'abc123');\n * console.log(url.toString()); // Outputs: https://example.com/search?q=custom+spacing&_rsc=abc123\n * ^ <--- this is causing confusion\n * This is in fact intended based on https://url.spec.whatwg.org/#interface-urlsearchparams, but\n * we want to preserve the %20 as %20 if that's what the user passed in, hence the custom\n * logic below.\n */\n const existingSearch = url.search\n const rawQuery = existingSearch.startsWith('?')\n ? existingSearch.slice(1)\n : existingSearch\n\n // Always remove any existing cache busting param and add a fresh one to ensure\n // we have the correct value based on current request headers\n const pairs = rawQuery\n .split('&')\n .filter((pair) => pair && !pair.startsWith(`${NEXT_RSC_UNION_QUERY}=`))\n\n if (hash.length > 0) {\n pairs.push(`${NEXT_RSC_UNION_QUERY}=${hash}`)\n } else {\n pairs.push(`${NEXT_RSC_UNION_QUERY}`)\n }\n url.search = pairs.length ? `?${pairs.join('&')}` : ''\n}\n"],"names":["computeCacheBustingSearchParam","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_URL","NEXT_RSC_UNION_QUERY","setCacheBustingSearchParam","url","headers","uniqueCacheKey","setCacheBustingSearchParamWithHash","hash","existingSearch","search","rawQuery","startsWith","slice","pairs","split","filter","pair","length","push","join"],"mappings":";;;;;;AAEA,SAASA,8BAA8B,QAAQ,8DAA6D;AAC5G,SACEC,2BAA2B,EAC3BC,mCAAmC,EACnCC,6BAA6B,EAC7BC,QAAQ,EACRC,oBAAoB,QACf,wBAAuB;AAT9B;;;AA4BO,MAAMC,6BAA6B,CACxCC,KACAC;IAEA,MAAMC,qBAAiBT,gPAAAA,EACrBQ,OAAO,CAACP,sNAAAA,CAA4B,EACpCO,OAAO,CAACN,8NAAAA,CAAoC,EAC5CM,OAAO,CAACL,wNAAAA,CAA8B,EACtCK,OAAO,CAACJ,mMAAAA,CAAS;IAEnBM,mCAAmCH,KAAKE;AAC1C,EAAC;AAkBM,MAAMC,qCAAqC,CAChDH,KACAI;IAEA;;;;;;;;;;GAUC,GACD,MAAMC,iBAAiBL,IAAIM,MAAM;IACjC,MAAMC,WAAWF,eAAeG,UAAU,CAAC,OACvCH,eAAeI,KAAK,CAAC,KACrBJ;IAEJ,+EAA+E;IAC/E,6DAA6D;IAC7D,MAAMK,QAAQH,SACXI,KAAK,CAAC,KACNC,MAAM,CAAC,CAACC,OAASA,QAAQ,CAACA,KAAKL,UAAU,CAAC,GAAGV,+MAAAA,CAAqB,CAAC,CAAC;IAEvE,IAAIM,KAAKU,MAAM,GAAG,GAAG;QACnBJ,MAAMK,IAAI,CAAC,GAAGjB,+MAAAA,CAAqB,CAAC,EAAEM,MAAM;IAC9C,OAAO;QACLM,MAAMK,IAAI,CAAC,GAAGjB,+MAAAA,EAAsB;IACtC;IACAE,IAAIM,MAAM,GAAGI,MAAMI,MAAM,GAAG,CAAC,CAAC,EAAEJ,MAAMM,IAAI,CAAC,MAAM,GAAG;AACtD,EAAC","ignoreList":[0]}}, - {"offset": {"line": 3467, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/deployment-id.ts"],"sourcesContent":["// This could also be a variable instead of a function, but some unit tests want to change the ID at\n// runtime. Even though that would never happen in a real deployment.\nexport function getDeploymentId(): string | undefined {\n return process.env.NEXT_DEPLOYMENT_ID\n}\n\nexport function getDeploymentIdQueryOrEmptyString(): string {\n let deploymentId = getDeploymentId()\n if (deploymentId) {\n return `?dpl=${deploymentId}`\n }\n return ''\n}\n"],"names":["getDeploymentId","process","env","NEXT_DEPLOYMENT_ID","getDeploymentIdQueryOrEmptyString","deploymentId"],"mappings":"AAAA,oGAAoG;AACpG,qEAAqE;;;;;;;AAC9D,SAASA;IACd,OAAOC,QAAQC,GAAG,CAACC,kBAAkB;AACvC;AAEO,SAASC;IACd,IAAIC,eAAeL;IACnB,IAAIK,cAAc;;IAGlB,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 3488, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/fetch-server-response.ts"],"sourcesContent":["'use client'\n\n// TODO: Explicitly import from client.browser\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport {\n createFromReadableStream as createFromReadableStreamBrowser,\n createFromFetch as createFromFetchBrowser,\n} from 'react-server-dom-webpack/client'\n\nimport type {\n FlightRouterState,\n NavigationFlightResponse,\n} from '../../../shared/lib/app-router-types'\n\nimport {\n type NEXT_ROUTER_PREFETCH_HEADER,\n type NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_RSC_UNION_QUERY,\n NEXT_URL,\n RSC_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n NEXT_ROUTER_STALE_TIME_HEADER,\n NEXT_HTML_REQUEST_ID_HEADER,\n NEXT_REQUEST_ID_HEADER,\n} from '../app-router-headers'\nimport { callServer } from '../../app-call-server'\nimport { findSourceMapURL } from '../../app-find-source-map-url'\nimport {\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n type NormalizedFlightData,\n} from '../../flight-data-helpers'\nimport { getAppBuildId } from '../../app-build-id'\nimport { setCacheBustingSearchParam } from './set-cache-busting-search-param'\nimport {\n getRenderedSearch,\n urlToUrlWithoutFlightMarker,\n} from '../../route-params'\nimport type { NormalizedSearch } from '../segment-cache/cache-key'\nimport { getDeploymentId } from '../../../shared/lib/deployment-id'\n\nconst createFromReadableStream =\n createFromReadableStreamBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromReadableStream']\nconst createFromFetch =\n createFromFetchBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromFetch']\n\nlet createDebugChannel:\n | typeof import('../../dev/debug-channel').createDebugChannel\n | undefined\n\nif (\n process.env.NODE_ENV !== 'production' &&\n process.env.__NEXT_REACT_DEBUG_CHANNEL\n) {\n createDebugChannel = (\n require('../../dev/debug-channel') as typeof import('../../dev/debug-channel')\n ).createDebugChannel\n}\n\nexport interface FetchServerResponseOptions {\n readonly flightRouterState: FlightRouterState\n readonly nextUrl: string | null\n readonly isHmrRefresh?: boolean\n}\n\ntype SpaFetchServerResponseResult = {\n flightData: NormalizedFlightData[]\n canonicalUrl: URL\n renderedSearch: NormalizedSearch\n couldBeIntercepted: boolean\n prerendered: boolean\n postponed: boolean\n staleTime: number\n debugInfo: Array | null\n}\n\ntype MpaFetchServerResponseResult = string\n\nexport type FetchServerResponseResult =\n | MpaFetchServerResponseResult\n | SpaFetchServerResponseResult\n\nexport type RequestHeaders = {\n [RSC_HEADER]?: '1'\n [NEXT_ROUTER_STATE_TREE_HEADER]?: string\n [NEXT_URL]?: string\n [NEXT_ROUTER_PREFETCH_HEADER]?: '1' | '2'\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]?: string\n 'x-deployment-id'?: string\n [NEXT_HMR_REFRESH_HEADER]?: '1'\n // A header that is only added in test mode to assert on fetch priority\n 'Next-Test-Fetch-Priority'?: RequestInit['priority']\n [NEXT_HTML_REQUEST_ID_HEADER]?: string // dev-only\n [NEXT_REQUEST_ID_HEADER]?: string // dev-only\n}\n\nfunction doMpaNavigation(url: string): FetchServerResponseResult {\n return urlToUrlWithoutFlightMarker(new URL(url, location.origin)).toString()\n}\n\nlet isPageUnloading = false\n\nif (typeof window !== 'undefined') {\n // Track when the page is unloading, e.g. due to reloading the page or\n // performing hard navigations. This allows us to suppress error logging when\n // the browser cancels in-flight requests during page unload.\n window.addEventListener('pagehide', () => {\n isPageUnloading = true\n })\n\n // Reset the flag on pageshow, e.g. when navigating back and the JavaScript\n // execution context is restored by the browser.\n window.addEventListener('pageshow', () => {\n isPageUnloading = false\n })\n}\n\n/**\n * Fetch the flight data for the provided url. Takes in the current router state\n * to decide what to render server-side.\n */\nexport async function fetchServerResponse(\n url: URL,\n options: FetchServerResponseOptions\n): Promise {\n const { flightRouterState, nextUrl } = options\n\n const headers: RequestHeaders = {\n // Enable flight response\n [RSC_HEADER]: '1',\n // Provide the current router state\n [NEXT_ROUTER_STATE_TREE_HEADER]: prepareFlightRouterStateForRequest(\n flightRouterState,\n options.isHmrRefresh\n ),\n }\n\n if (process.env.NODE_ENV === 'development' && options.isHmrRefresh) {\n headers[NEXT_HMR_REFRESH_HEADER] = '1'\n }\n\n if (nextUrl) {\n headers[NEXT_URL] = nextUrl\n }\n\n // In static export mode, we need to modify the URL to request the .txt file,\n // but we should preserve the original URL for the canonical URL and error handling.\n const originalUrl = url\n\n try {\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n // In \"output: export\" mode, we can't rely on headers to distinguish\n // between HTML and RSC requests. Instead, we append an extra prefix\n // to the request.\n url = new URL(url)\n if (url.pathname.endsWith('/')) {\n url.pathname += 'index.txt'\n } else {\n url.pathname += '.txt'\n }\n }\n }\n\n // Typically, during a navigation, we decode the response using Flight's\n // `createFromFetch` API, which accepts a `fetch` promise.\n // TODO: Remove this check once the old PPR flag is removed\n const isLegacyPPR =\n process.env.__NEXT_PPR && !process.env.__NEXT_CACHE_COMPONENTS\n const shouldImmediatelyDecode = !isLegacyPPR\n const res = await createFetch(\n url,\n headers,\n 'auto',\n shouldImmediatelyDecode\n )\n\n const responseUrl = urlToUrlWithoutFlightMarker(new URL(res.url))\n const canonicalUrl = res.redirected ? responseUrl : originalUrl\n\n const contentType = res.headers.get('content-type') || ''\n const interception = !!res.headers.get('vary')?.includes(NEXT_URL)\n const postponed = !!res.headers.get(NEXT_DID_POSTPONE_HEADER)\n const staleTimeHeaderSeconds = res.headers.get(\n NEXT_ROUTER_STALE_TIME_HEADER\n )\n const staleTime =\n staleTimeHeaderSeconds !== null\n ? parseInt(staleTimeHeaderSeconds, 10) * 1000\n : -1\n let isFlightResponse = contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n if (!isFlightResponse) {\n isFlightResponse = contentType.startsWith('text/plain')\n }\n }\n }\n\n // If fetch returns something different than flight response handle it like a mpa navigation\n // If the fetch was not 200, we also handle it like a mpa navigation\n if (!isFlightResponse || !res.ok || !res.body) {\n // in case the original URL came with a hash, preserve it before redirecting to the new URL\n if (url.hash) {\n responseUrl.hash = url.hash\n }\n\n return doMpaNavigation(responseUrl.toString())\n }\n\n // We may navigate to a page that requires a different Webpack runtime.\n // In prod, every page will have the same Webpack runtime.\n // In dev, the Webpack runtime is minimal for each page.\n // We need to ensure the Webpack runtime is updated before executing client-side JS of the new page.\n // TODO: This needs to happen in the Flight Client.\n // Or Webpack needs to include the runtime update in the Flight response as\n // a blocking script.\n if (process.env.NODE_ENV !== 'production' && !process.env.TURBOPACK) {\n await (\n require('../../dev/hot-reloader/app/hot-reloader-app') as typeof import('../../dev/hot-reloader/app/hot-reloader-app')\n ).waitForWebpackRuntimeHotUpdate()\n }\n\n let flightResponsePromise = res.flightResponse\n if (flightResponsePromise === null) {\n // Typically, `createFetch` would have already started decoding the\n // Flight response. If it hasn't, though, we need to decode it now.\n // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR\n // without Cache Components). Remove this branch once legacy PPR\n // is deleted.\n const flightStream = postponed\n ? createUnclosingPrefetchStream(res.body)\n : res.body\n flightResponsePromise =\n createFromNextReadableStream(\n flightStream,\n headers\n )\n }\n\n const flightResponse = await flightResponsePromise\n\n if (getAppBuildId() !== flightResponse.b) {\n return doMpaNavigation(res.url)\n }\n\n const normalizedFlightData = normalizeFlightData(flightResponse.f)\n if (typeof normalizedFlightData === 'string') {\n return doMpaNavigation(normalizedFlightData)\n }\n\n return {\n flightData: normalizedFlightData,\n canonicalUrl: canonicalUrl,\n renderedSearch: getRenderedSearch(res),\n couldBeIntercepted: interception,\n prerendered: flightResponse.S,\n postponed,\n staleTime,\n debugInfo: flightResponsePromise._debugInfo ?? null,\n }\n } catch (err) {\n if (!isPageUnloading) {\n console.error(\n `Failed to fetch RSC payload for ${originalUrl}. Falling back to browser navigation.`,\n err\n )\n }\n\n // If fetch fails handle it like a mpa navigation\n // TODO-APP: Add a test for the case where a CORS request fails, e.g. external url redirect coming from the response.\n // See https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521 for a reproduction.\n return originalUrl.toString()\n }\n}\n\n// This is a subset of the standard Response type. We use a custom type for\n// this so we can limit which details about the response leak into the rest of\n// the codebase. For example, there's some custom logic for manually following\n// redirects, so \"redirected\" in this type could be a composite of multiple\n// browser fetch calls; however, this fact should not leak to the caller.\nexport type RSCResponse = {\n ok: boolean\n redirected: boolean\n headers: Headers\n body: ReadableStream | null\n status: number\n url: string\n flightResponse: (Promise & { _debugInfo?: Array }) | null\n}\n\nexport async function createFetch(\n url: URL,\n headers: RequestHeaders,\n fetchPriority: 'auto' | 'high' | 'low' | null,\n shouldImmediatelyDecode: boolean,\n signal?: AbortSignal\n): Promise> {\n // TODO: In output: \"export\" mode, the headers do nothing. Omit them (and the\n // cache busting search param) from the request so they're\n // maximally cacheable.\n\n if (process.env.__NEXT_TEST_MODE && fetchPriority !== null) {\n headers['Next-Test-Fetch-Priority'] = fetchPriority\n }\n\n const deploymentId = getDeploymentId()\n if (deploymentId) {\n headers['x-deployment-id'] = deploymentId\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (self.__next_r) {\n headers[NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r\n }\n\n // Create a new request ID for the server action request. The server uses\n // this to tag debug information sent via WebSocket to the client, which\n // then routes those chunks to the debug channel associated with this ID.\n headers[NEXT_REQUEST_ID_HEADER] = crypto\n .getRandomValues(new Uint32Array(1))[0]\n .toString(16)\n }\n\n const fetchOptions: RequestInit = {\n // Backwards compat for older browsers. `same-origin` is the default in modern browsers.\n credentials: 'same-origin',\n headers,\n priority: fetchPriority || undefined,\n signal,\n }\n // `fetchUrl` is slightly different from `url` because we add a cache-busting\n // search param to it. This should not leak outside of this function, so we\n // track them separately.\n let fetchUrl = new URL(url)\n setCacheBustingSearchParam(fetchUrl, headers)\n let fetchPromise = fetch(fetchUrl, fetchOptions)\n // Immediately pass the fetch promise to the Flight client so that the debug\n // info includes the latency from the client to the server. The internal timer\n // in React starts as soon as `createFromFetch` is called.\n //\n // The only case where we don't do this is during a prefetch, because we have\n // to do some extra processing of the response stream (see\n // `createUnclosingPrefetchStream`). But this is fine, because a top-level\n // prefetch response never blocks a navigation; if it hasn't already been\n // written into the cache by the time the navigation happens, the router will\n // go straight to a dynamic request.\n let flightResponsePromise = shouldImmediatelyDecode\n ? createFromNextFetch(fetchPromise, headers)\n : null\n let browserResponse = await fetchPromise\n\n // If the server responds with a redirect (e.g. 307), and the redirected\n // location does not contain the cache busting search param set in the\n // original request, the response is likely invalid — when following the\n // redirect, the browser forwards the request headers, but since the cache\n // busting search param is missing, the server will reject the request due to\n // a mismatch.\n //\n // Ideally, we would be able to intercept the redirect response and perform it\n // manually, instead of letting the browser automatically follow it, but this\n // is not allowed by the fetch API.\n //\n // So instead, we must \"replay\" the redirect by fetching the new location\n // again, but this time we'll append the cache busting search param to prevent\n // a mismatch.\n //\n // TODO: We can optimize Next.js's built-in middleware APIs by returning a\n // custom status code, to prevent the browser from automatically following it.\n //\n // This does not affect Server Action-based redirects; those are encoded\n // differently, as part of the Flight body. It only affects redirects that\n // occur in a middleware or a third-party proxy.\n\n let redirected = browserResponse.redirected\n if (process.env.__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS) {\n // This is to prevent a redirect loop. Same limit used by Chrome.\n const MAX_REDIRECTS = 20\n for (let n = 0; n < MAX_REDIRECTS; n++) {\n if (!browserResponse.redirected) {\n // The server did not perform a redirect.\n break\n }\n const responseUrl = new URL(browserResponse.url, fetchUrl)\n if (responseUrl.origin !== fetchUrl.origin) {\n // The server redirected to an external URL. The rest of the logic below\n // is not relevant, because it only applies to internal redirects.\n break\n }\n if (\n responseUrl.searchParams.get(NEXT_RSC_UNION_QUERY) ===\n fetchUrl.searchParams.get(NEXT_RSC_UNION_QUERY)\n ) {\n // The redirected URL already includes the cache busting search param.\n // This was probably intentional. Regardless, there's no reason to\n // issue another request to this URL because it already has the param\n // value that we would have added below.\n break\n }\n // The RSC request was redirected. Assume the response is invalid.\n //\n // Append the cache busting search param to the redirected URL and\n // fetch again.\n // TODO: We should abort the previous request.\n fetchUrl = new URL(responseUrl)\n setCacheBustingSearchParam(fetchUrl, headers)\n fetchPromise = fetch(fetchUrl, fetchOptions)\n flightResponsePromise = shouldImmediatelyDecode\n ? createFromNextFetch(fetchPromise, headers)\n : null\n browserResponse = await fetchPromise\n // We just performed a manual redirect, so this is now true.\n redirected = true\n }\n }\n\n // Remove the cache busting search param from the response URL, to prevent it\n // from leaking outside of this function.\n const responseUrl = new URL(browserResponse.url, fetchUrl)\n responseUrl.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n const rscResponse: RSCResponse = {\n url: responseUrl.href,\n\n // This is true if any redirects occurred, either automatically by the\n // browser, or manually by us. So it's different from\n // `browserResponse.redirected`, which only tells us whether the browser\n // followed a redirect, and only for the last response in the chain.\n redirected,\n\n // These can be copied from the last browser response we received. We\n // intentionally only expose the subset of fields that are actually used\n // elsewhere in the codebase.\n ok: browserResponse.ok,\n headers: browserResponse.headers,\n body: browserResponse.body,\n status: browserResponse.status,\n\n // This is the exact promise returned by `createFromFetch`. It contains\n // debug information that we need to transfer to any derived promises that\n // are later rendered by React.\n flightResponse: flightResponsePromise,\n }\n\n return rscResponse\n}\n\nexport function createFromNextReadableStream(\n flightStream: ReadableStream,\n requestHeaders: RequestHeaders\n): Promise {\n return createFromReadableStream(flightStream, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n })\n}\n\nfunction createFromNextFetch(\n promiseForResponse: Promise,\n requestHeaders: RequestHeaders\n): Promise & { _debugInfo?: Array } {\n return createFromFetch(promiseForResponse, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n })\n}\n\nfunction createUnclosingPrefetchStream(\n originalFlightStream: ReadableStream\n): ReadableStream {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n continue\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream.\n return\n }\n },\n })\n}\n"],"names":["createFromReadableStream","createFromReadableStreamBrowser","createFromFetch","createFromFetchBrowser","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_RSC_UNION_QUERY","NEXT_URL","RSC_HEADER","RSC_CONTENT_TYPE_HEADER","NEXT_HMR_REFRESH_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_REQUEST_ID_HEADER","callServer","findSourceMapURL","normalizeFlightData","prepareFlightRouterStateForRequest","getAppBuildId","setCacheBustingSearchParam","getRenderedSearch","urlToUrlWithoutFlightMarker","getDeploymentId","createDebugChannel","process","env","NODE_ENV","__NEXT_REACT_DEBUG_CHANNEL","require","doMpaNavigation","url","URL","location","origin","toString","isPageUnloading","window","addEventListener","fetchServerResponse","options","flightRouterState","nextUrl","headers","isHmrRefresh","originalUrl","__NEXT_CONFIG_OUTPUT","pathname","endsWith","isLegacyPPR","__NEXT_PPR","__NEXT_CACHE_COMPONENTS","shouldImmediatelyDecode","res","createFetch","responseUrl","canonicalUrl","redirected","contentType","get","interception","includes","postponed","staleTimeHeaderSeconds","staleTime","parseInt","isFlightResponse","startsWith","ok","body","hash","TURBOPACK","waitForWebpackRuntimeHotUpdate","flightResponsePromise","flightResponse","flightStream","createUnclosingPrefetchStream","createFromNextReadableStream","b","normalizedFlightData","f","flightData","renderedSearch","couldBeIntercepted","prerendered","S","debugInfo","_debugInfo","err","console","error","fetchPriority","signal","__NEXT_TEST_MODE","deploymentId","self","__next_r","crypto","getRandomValues","Uint32Array","fetchOptions","credentials","priority","undefined","fetchUrl","fetchPromise","fetch","createFromNextFetch","browserResponse","__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS","MAX_REDIRECTS","n","searchParams","delete","rscResponse","href","status","requestHeaders","debugChannel","promiseForResponse","originalFlightStream","reader","getReader","ReadableStream","pull","controller","done","value","read","enqueue"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3761, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/is-navigating-to-new-root-layout.ts"],"sourcesContent":["import type { FlightRouterState } from '../../../shared/lib/app-router-types'\n\nexport function isNavigatingToNewRootLayout(\n currentTree: FlightRouterState,\n nextTree: FlightRouterState\n): boolean {\n // Compare segments\n const currentTreeSegment = currentTree[0]\n const nextTreeSegment = nextTree[0]\n\n // If any segment is different before we find the root layout, the root layout has changed.\n // E.g. /same/(group1)/layout.js -> /same/(group2)/layout.js\n // First segment is 'same' for both, keep looking. (group1) changed to (group2) before the root layout was found, it must have changed.\n if (Array.isArray(currentTreeSegment) && Array.isArray(nextTreeSegment)) {\n // Compare dynamic param name and type but ignore the value, different values would not affect the current root layout\n // /[name] - /slug1 and /slug2, both values (slug1 & slug2) still has the same layout /[name]/layout.js\n if (\n currentTreeSegment[0] !== nextTreeSegment[0] ||\n currentTreeSegment[2] !== nextTreeSegment[2]\n ) {\n return true\n }\n } else if (currentTreeSegment !== nextTreeSegment) {\n return true\n }\n\n // Current tree root layout found\n if (currentTree[4]) {\n // If the next tree doesn't have the root layout flag, it must have changed.\n return !nextTree[4]\n }\n // Current tree didn't have its root layout here, must have changed.\n if (nextTree[4]) {\n return true\n }\n // We can't assume it's `parallelRoutes.children` here in case the root layout is `app/@something/layout.js`\n // But it's not possible to be more than one parallelRoutes before the root layout is found\n // TODO-APP: change to traverse all parallel routes\n const currentTreeChild = Object.values(currentTree[1])[0]\n const nextTreeChild = Object.values(nextTree[1])[0]\n if (!currentTreeChild || !nextTreeChild) return true\n return isNavigatingToNewRootLayout(currentTreeChild, nextTreeChild)\n}\n"],"names":["isNavigatingToNewRootLayout","currentTree","nextTree","currentTreeSegment","nextTreeSegment","Array","isArray","currentTreeChild","Object","values","nextTreeChild"],"mappings":";;;;AAEO,SAASA,4BACdC,WAA8B,EAC9BC,QAA2B;IAE3B,mBAAmB;IACnB,MAAMC,qBAAqBF,WAAW,CAAC,EAAE;IACzC,MAAMG,kBAAkBF,QAAQ,CAAC,EAAE;IAEnC,2FAA2F;IAC3F,4DAA4D;IAC5D,uIAAuI;IACvI,IAAIG,MAAMC,OAAO,CAACH,uBAAuBE,MAAMC,OAAO,CAACF,kBAAkB;QACvE,sHAAsH;QACtH,uGAAuG;QACvG,IACED,kBAAkB,CAAC,EAAE,KAAKC,eAAe,CAAC,EAAE,IAC5CD,kBAAkB,CAAC,EAAE,KAAKC,eAAe,CAAC,EAAE,EAC5C;YACA,OAAO;QACT;IACF,OAAO,IAAID,uBAAuBC,iBAAiB;QACjD,OAAO;IACT;IAEA,iCAAiC;IACjC,IAAIH,WAAW,CAAC,EAAE,EAAE;QAClB,4EAA4E;QAC5E,OAAO,CAACC,QAAQ,CAAC,EAAE;IACrB;IACA,oEAAoE;IACpE,IAAIA,QAAQ,CAAC,EAAE,EAAE;QACf,OAAO;IACT;IACA,4GAA4G;IAC5G,2FAA2F;IAC3F,mDAAmD;IACnD,MAAMK,mBAAmBC,OAAOC,MAAM,CAACR,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE;IACzD,MAAMS,gBAAgBF,OAAOC,MAAM,CAACP,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE;IACnD,IAAI,CAACK,oBAAoB,CAACG,eAAe,OAAO;IAChD,OAAOV,4BAA4BO,kBAAkBG;AACvD","ignoreList":[0]}}, - {"offset": {"line": 3802, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-routes.ts"],"sourcesContent":["import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format //(..|...|..)(..)/`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n"],"names":["normalizeAppPath","INTERCEPTION_ROUTE_MARKERS","isInterceptionRouteAppPath","path","split","find","segment","m","startsWith","undefined","extractInterceptionRouteInformation","interceptingRoute","marker","interceptedRoute","Error","slice","concat","join","splitInterceptingRoute","length"],"mappings":";;;;;;;;AAAA,SAASA,gBAAgB,QAAQ,cAAa;;AAGvC,MAAMC,6BAA6B;IACxC;IACA;IACA;IACA;CACD,CAAS;AAIH,SAASC,2BAA2BC,IAAY;IACrD,wCAAwC;IACxC,OACEA,KACGC,KAAK,CAAC,KACNC,IAAI,CAAC,CAACC,UACLL,2BAA2BI,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD,SACtDE;AAEZ;AAiBO,SAASC,oCACdP,IAAY;IAEZ,IAAIQ;IACJ,IAAIC;IACJ,IAAIC;IAEJ,KAAK,MAAMP,WAAWH,KAAKC,KAAK,CAAC,KAAM;QACrCQ,SAASX,2BAA2BI,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD;QACnE,IAAIK,QAAQ;;YACT,CAACD,mBAAmBE,iBAAiB,GAAGV,KAAKC,KAAK,CAACQ,QAAQ;YAC5D;QACF;IACF;IAEA,IAAI,CAACD,qBAAqB,CAACC,UAAU,CAACC,kBAAkB;QACtD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,4BAA4B,EAAEX,KAAK,iFAAiF,CAAC,GADlH,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEAQ,wBAAoBX,2MAAAA,EAAiBW,mBAAmB,iDAAiD;;IAEzG,OAAQC;QACN,KAAK;YACH,oIAAoI;YACpI,IAAID,sBAAsB,KAAK;gBAC7BE,mBAAmB,CAAC,CAAC,EAAEA,kBAAkB;YAC3C,OAAO;gBACLA,mBAAmBF,oBAAoB,MAAME;YAC/C;YACA;QACF,KAAK;YACH,uHAAuH;YACvH,IAAIF,sBAAsB,KAAK;gBAC7B,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,CAAC,4BAA4B,EAAEX,KAAK,4DAA4D,CAAC,GAD7F,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YACAU,mBAAmBF,kBAChBP,KAAK,CAAC,KACNW,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACH,kBACPI,IAAI,CAAC;YACR;QACF,KAAK;YACH,kIAAkI;YAClIJ,mBAAmB,MAAMA;YACzB;QACF,KAAK;YACH,iIAAiI;YAEjI,MAAMK,yBAAyBP,kBAAkBP,KAAK,CAAC;YACvD,IAAIc,uBAAuBC,MAAM,IAAI,GAAG;gBACtC,MAAM,OAAA,cAEL,CAFK,IAAIL,MACR,CAAC,4BAA4B,EAAEX,KAAK,+DAA+D,CAAC,GADhG,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEAU,mBAAmBK,uBAChBH,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACH,kBACPI,IAAI,CAAC;YACR;QACF;YACE,MAAM,OAAA,cAAyC,CAAzC,IAAIH,MAAM,iCAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAAwC;IAClD;IAEA,OAAO;QAAEH;QAAmBE;IAAiB;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 3895, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/compute-changed-path.ts"],"sourcesContent":["import type {\n FlightRouterState,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport { INTERCEPTION_ROUTE_MARKERS } from '../../../shared/lib/router/utils/interception-routes'\nimport type { Params } from '../../../server/request/params'\nimport {\n isGroupSegment,\n DEFAULT_SEGMENT_KEY,\n PAGE_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport { matchSegment } from '../match-segments'\n\nconst removeLeadingSlash = (segment: string): string => {\n return segment[0] === '/' ? segment.slice(1) : segment\n}\n\nconst segmentToPathname = (segment: Segment): string => {\n if (typeof segment === 'string') {\n // 'children' is not a valid path -- it's technically a parallel route that corresponds with the current segment's page\n // if we don't skip it, then the computed pathname might be something like `/children` which doesn't make sense.\n if (segment === 'children') return ''\n\n return segment\n }\n\n return segment[1]\n}\n\nfunction normalizeSegments(segments: string[]): string {\n return (\n segments.reduce((acc, segment) => {\n segment = removeLeadingSlash(segment)\n if (segment === '' || isGroupSegment(segment)) {\n return acc\n }\n\n return `${acc}/${segment}`\n }, '') || '/'\n )\n}\n\nexport function extractPathFromFlightRouterState(\n flightRouterState: FlightRouterState\n): string | undefined {\n const segment = Array.isArray(flightRouterState[0])\n ? flightRouterState[0][1]\n : flightRouterState[0]\n\n if (\n segment === DEFAULT_SEGMENT_KEY ||\n INTERCEPTION_ROUTE_MARKERS.some((m) => segment.startsWith(m))\n )\n return undefined\n\n if (segment.startsWith(PAGE_SEGMENT_KEY)) return ''\n\n const segments = [segmentToPathname(segment)]\n const parallelRoutes = flightRouterState[1] ?? {}\n\n const childrenPath = parallelRoutes.children\n ? extractPathFromFlightRouterState(parallelRoutes.children)\n : undefined\n\n if (childrenPath !== undefined) {\n segments.push(childrenPath)\n } else {\n for (const [key, value] of Object.entries(parallelRoutes)) {\n if (key === 'children') continue\n\n const childPath = extractPathFromFlightRouterState(value)\n\n if (childPath !== undefined) {\n segments.push(childPath)\n }\n }\n }\n\n return normalizeSegments(segments)\n}\n\nfunction computeChangedPathImpl(\n treeA: FlightRouterState,\n treeB: FlightRouterState\n): string | null {\n const [segmentA, parallelRoutesA] = treeA\n const [segmentB, parallelRoutesB] = treeB\n\n const normalizedSegmentA = segmentToPathname(segmentA)\n const normalizedSegmentB = segmentToPathname(segmentB)\n\n if (\n INTERCEPTION_ROUTE_MARKERS.some(\n (m) =>\n normalizedSegmentA.startsWith(m) || normalizedSegmentB.startsWith(m)\n )\n ) {\n return ''\n }\n\n if (!matchSegment(segmentA, segmentB)) {\n // once we find where the tree changed, we compute the rest of the path by traversing the tree\n return extractPathFromFlightRouterState(treeB) ?? ''\n }\n\n for (const parallelRouterKey in parallelRoutesA) {\n if (parallelRoutesB[parallelRouterKey]) {\n const changedPath = computeChangedPathImpl(\n parallelRoutesA[parallelRouterKey],\n parallelRoutesB[parallelRouterKey]\n )\n if (changedPath !== null) {\n return `${segmentToPathname(segmentB)}/${changedPath}`\n }\n }\n }\n\n return null\n}\n\nexport function computeChangedPath(\n treeA: FlightRouterState,\n treeB: FlightRouterState\n): string | null {\n const changedPath = computeChangedPathImpl(treeA, treeB)\n\n if (changedPath == null || changedPath === '/') {\n return changedPath\n }\n\n // lightweight normalization to remove route groups\n return normalizeSegments(changedPath.split('/'))\n}\n\n/**\n * Recursively extracts dynamic parameters from FlightRouterState.\n */\nexport function getSelectedParams(\n currentTree: FlightRouterState,\n params: Params = {}\n): Params {\n const parallelRoutes = currentTree[1]\n\n for (const parallelRoute of Object.values(parallelRoutes)) {\n const segment = parallelRoute[0]\n const isDynamicParameter = Array.isArray(segment)\n const segmentValue = isDynamicParameter ? segment[1] : segment\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) continue\n\n // Ensure catchAll and optional catchall are turned into an array\n const isCatchAll =\n isDynamicParameter && (segment[2] === 'c' || segment[2] === 'oc')\n\n if (isCatchAll) {\n params[segment[0]] = segment[1].split('/')\n } else if (isDynamicParameter) {\n params[segment[0]] = segment[1]\n }\n\n params = getSelectedParams(parallelRoute, params)\n }\n\n return params\n}\n"],"names":["INTERCEPTION_ROUTE_MARKERS","isGroupSegment","DEFAULT_SEGMENT_KEY","PAGE_SEGMENT_KEY","matchSegment","removeLeadingSlash","segment","slice","segmentToPathname","normalizeSegments","segments","reduce","acc","extractPathFromFlightRouterState","flightRouterState","Array","isArray","some","m","startsWith","undefined","parallelRoutes","childrenPath","children","push","key","value","Object","entries","childPath","computeChangedPathImpl","treeA","treeB","segmentA","parallelRoutesA","segmentB","parallelRoutesB","normalizedSegmentA","normalizedSegmentB","parallelRouterKey","changedPath","computeChangedPath","split","getSelectedParams","currentTree","params","parallelRoute","values","isDynamicParameter","segmentValue","isCatchAll"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4004, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/handle-mutable.ts"],"sourcesContent":["import { computeChangedPath } from './compute-changed-path'\nimport type {\n Mutable,\n ReadonlyReducerState,\n ReducerState,\n} from './router-reducer-types'\n\nfunction isNotUndefined(value: T): value is Exclude {\n return typeof value !== 'undefined'\n}\n\nexport function handleMutable(\n state: ReadonlyReducerState,\n mutable: Mutable\n): ReducerState {\n // shouldScroll is true by default, can override to false.\n const shouldScroll = mutable.shouldScroll ?? true\n\n let previousNextUrl = state.previousNextUrl\n let nextUrl = state.nextUrl\n\n if (isNotUndefined(mutable.patchedTree)) {\n // If we received a patched tree, we need to compute the changed path.\n const changedPath = computeChangedPath(state.tree, mutable.patchedTree)\n if (changedPath) {\n // If the tree changed, we need to update the nextUrl\n previousNextUrl = nextUrl\n nextUrl = changedPath\n } else if (!nextUrl) {\n // if the tree ends up being the same (ie, no changed path), and we don't have a nextUrl, then we should use the canonicalUrl\n nextUrl = state.canonicalUrl\n }\n // otherwise this will be a no-op and continue to use the existing nextUrl\n }\n\n return {\n // Set href.\n canonicalUrl: mutable.canonicalUrl ?? state.canonicalUrl,\n renderedSearch: mutable.renderedSearch ?? state.renderedSearch,\n pushRef: {\n pendingPush: isNotUndefined(mutable.pendingPush)\n ? mutable.pendingPush\n : state.pushRef.pendingPush,\n mpaNavigation: isNotUndefined(mutable.mpaNavigation)\n ? mutable.mpaNavigation\n : state.pushRef.mpaNavigation,\n preserveCustomHistoryState: isNotUndefined(\n mutable.preserveCustomHistoryState\n )\n ? mutable.preserveCustomHistoryState\n : state.pushRef.preserveCustomHistoryState,\n },\n // All navigation requires scroll and focus management to trigger.\n focusAndScrollRef: {\n apply: shouldScroll\n ? isNotUndefined(mutable?.scrollableSegments)\n ? true\n : state.focusAndScrollRef.apply\n : // If shouldScroll is false then we should not apply scroll and focus management.\n false,\n onlyHashChange: mutable.onlyHashChange || false,\n hashFragment: shouldScroll\n ? // Empty hash should trigger default behavior of scrolling layout into view.\n // #top is handled in layout-router.\n mutable.hashFragment && mutable.hashFragment !== ''\n ? // Remove leading # and decode hash to make non-latin hashes work.\n decodeURIComponent(mutable.hashFragment.slice(1))\n : state.focusAndScrollRef.hashFragment\n : // If shouldScroll is false then we should not apply scroll and focus management.\n null,\n segmentPaths: shouldScroll\n ? (mutable?.scrollableSegments ?? state.focusAndScrollRef.segmentPaths)\n : // If shouldScroll is false then we should not apply scroll and focus management.\n [],\n },\n // Apply cache.\n cache: mutable.cache ? mutable.cache : state.cache,\n // Apply patched router state.\n tree: isNotUndefined(mutable.patchedTree)\n ? mutable.patchedTree\n : state.tree,\n nextUrl,\n previousNextUrl: previousNextUrl,\n debugInfo: mutable.collectedDebugInfo ?? null,\n }\n}\n"],"names":["computeChangedPath","isNotUndefined","value","handleMutable","state","mutable","shouldScroll","previousNextUrl","nextUrl","patchedTree","changedPath","tree","canonicalUrl","renderedSearch","pushRef","pendingPush","mpaNavigation","preserveCustomHistoryState","focusAndScrollRef","apply","scrollableSegments","onlyHashChange","hashFragment","decodeURIComponent","slice","segmentPaths","cache","debugInfo","collectedDebugInfo"],"mappings":";;;;AAAA,SAASA,kBAAkB,QAAQ,yBAAwB;;AAO3D,SAASC,eAAkBC,KAAQ;IACjC,OAAO,OAAOA,UAAU;AAC1B;AAEO,SAASC,cACdC,KAA2B,EAC3BC,OAAgB;IAEhB,0DAA0D;IAC1D,MAAMC,eAAeD,QAAQC,YAAY,IAAI;IAE7C,IAAIC,kBAAkBH,MAAMG,eAAe;IAC3C,IAAIC,UAAUJ,MAAMI,OAAO;IAE3B,IAAIP,eAAeI,QAAQI,WAAW,GAAG;QACvC,sEAAsE;QACtE,MAAMC,kBAAcV,oOAAAA,EAAmBI,MAAMO,IAAI,EAAEN,QAAQI,WAAW;QACtE,IAAIC,aAAa;YACf,qDAAqD;YACrDH,kBAAkBC;YAClBA,UAAUE;QACZ,OAAO,IAAI,CAACF,SAAS;YACnB,6HAA6H;YAC7HA,UAAUJ,MAAMQ,YAAY;QAC9B;IACA,0EAA0E;IAC5E;IAEA,OAAO;QACL,YAAY;QACZA,cAAcP,QAAQO,YAAY,IAAIR,MAAMQ,YAAY;QACxDC,gBAAgBR,QAAQQ,cAAc,IAAIT,MAAMS,cAAc;QAC9DC,SAAS;YACPC,aAAad,eAAeI,QAAQU,WAAW,IAC3CV,QAAQU,WAAW,GACnBX,MAAMU,OAAO,CAACC,WAAW;YAC7BC,eAAef,eAAeI,QAAQW,aAAa,IAC/CX,QAAQW,aAAa,GACrBZ,MAAMU,OAAO,CAACE,aAAa;YAC/BC,4BAA4BhB,eAC1BI,QAAQY,0BAA0B,IAEhCZ,QAAQY,0BAA0B,GAClCb,MAAMU,OAAO,CAACG,0BAA0B;QAC9C;QACA,kEAAkE;QAClEC,mBAAmB;YACjBC,OAAOb,eACHL,eAAeI,SAASe,sBACtB,OACAhB,MAAMc,iBAAiB,CAACC,KAAK,GAE/B;YACJE,gBAAgBhB,QAAQgB,cAAc,IAAI;YAC1CC,cAAchB,eAEV,AACAD,QAAQiB,YAAY,IAAIjB,QAAQiB,IADI,QACQ,KAAK,KAE/CC,mBAAmBlB,QAAQiB,YAAY,CAACE,KAAK,CAAC,MAC9CpB,MAAMc,iBAAiB,CAACI,YAAY,GAEtC;YACJG,cAAcnB,eACTD,SAASe,sBAAsBhB,MAAMc,iBAAiB,CAACO,YAAY,GAEpE,EAAE;QACR;QACA,eAAe;QACfC,OAAOrB,QAAQqB,KAAK,GAAGrB,QAAQqB,KAAK,GAAGtB,MAAMsB,KAAK;QAClD,8BAA8B;QAC9Bf,MAAMV,eAAeI,QAAQI,WAAW,IACpCJ,QAAQI,WAAW,GACnBL,MAAMO,IAAI;QACdH;QACAD,iBAAiBA;QACjBoB,WAAWtB,QAAQuB,kBAAkB,IAAI;IAC3C;AACF","ignoreList":[0]}}, - {"offset": {"line": 4060, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/app-router-types.ts"],"sourcesContent":["/**\n * App Router types - Client-safe types for the Next.js App Router\n *\n * This file contains type definitions that can be safely imported\n * by both client-side and server-side code without circular dependencies.\n */\n\nimport type React from 'react'\n\nexport type LoadingModuleData =\n | [React.JSX.Element, React.ReactNode, React.ReactNode]\n | null\n\n/** viewport metadata node */\nexport type HeadData = React.ReactNode\n\nexport type ChildSegmentMap = Map\n\n/**\n * Cache node used in app-router / layout-router.\n */\n\nexport type CacheNode = {\n /**\n * When rsc is not null, it represents the RSC data for the\n * corresponding segment.\n *\n * `null` is a valid React Node but because segment data is always a\n * component, we can use `null` to represent empty. When it is\n * null, it represents missing data, and rendering should suspend.\n */\n rsc: React.ReactNode\n\n /**\n * Represents a static version of the segment that can be shown immediately,\n * and may or may not contain dynamic holes. It's prefetched before a\n * navigation occurs.\n *\n * During rendering, we will choose whether to render `rsc` or `prefetchRsc`\n * with `useDeferredValue`. As with the `rsc` field, a value of `null` means\n * no value was provided. In this case, the LayoutRouter will go straight to\n * rendering the `rsc` value; if that one is also missing, it will suspend and\n * trigger a lazy fetch.\n */\n prefetchRsc: React.ReactNode\n\n prefetchHead: HeadData | null\n\n head: HeadData\n\n loading: LoadingModuleData | Promise\n\n parallelRoutes: Map\n\n /**\n * The timestamp of the navigation that last updated the CacheNode's data. If\n * a CacheNode is reused from a previous navigation, this value is not\n * updated. Used to track the staleness of the data.\n */\n navigatedAt: number\n}\n\nexport type DynamicParamTypes =\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall'\n | 'dynamic'\n | 'dynamic-intercepted-(..)(..)'\n | 'dynamic-intercepted-(.)'\n | 'dynamic-intercepted-(..)'\n | 'dynamic-intercepted-(...)'\n\nexport type DynamicParamTypesShort =\n | 'c'\n | 'ci(..)(..)'\n | 'ci(.)'\n | 'ci(..)'\n | 'ci(...)'\n | 'oc'\n | 'd'\n | 'di(..)(..)'\n | 'di(.)'\n | 'di(..)'\n | 'di(...)'\n\nexport type Segment =\n | string\n | [\n // Param name\n paramName: string,\n // Param cache key (almost the same as the value, but arrays are\n // concatenated into strings)\n // TODO: We should change this to just be the value. Currently we convert\n // it back to a value when passing to useParams. It only needs to be\n // a string when converted to a a cache key, but that doesn't mean we\n // need to store it as that representation.\n paramCacheKey: string,\n // Dynamic param type\n dynamicParamType: DynamicParamTypesShort,\n ]\n\n/**\n * Router state\n */\nexport type FlightRouterState = [\n segment: Segment,\n parallelRoutes: { [parallelRouterKey: string]: FlightRouterState },\n url?: string | null,\n /**\n * \"refresh\" and \"refetch\", despite being similarly named, have different\n * semantics:\n * - \"refetch\" is used during a request to inform the server where rendering\n * should start from.\n *\n * - \"refresh\" is used by the client to mark that a segment should re-fetch the\n * data from the server for the current segment. It uses the \"url\" property\n * above to determine where to fetch from.\n *\n * - \"inside-shared-layout\" is used during a prefetch request to inform the\n * server that even if the segment matches, it should be treated as if it's\n * within the \"new\" part of a navigation — inside the shared layout. If\n * the segment doesn't match, then it has no effect, since it would be\n * treated as new regardless. If it does match, though, the server does not\n * need to render it, because the client already has it.\n *\n * - \"metadata-only\" instructs the server to skip rendering the segments and\n * only send the head data.\n *\n * A bit confusing, but that's because it has only one extremely narrow use\n * case — during a non-PPR prefetch, the server uses it to find the first\n * loading boundary beneath a shared layout.\n *\n * TODO: We should rethink the protocol for dynamic requests. It might not\n * make sense for the client to send a FlightRouterState, since this type is\n * overloaded with concerns.\n */\n refresh?:\n | 'refetch'\n | 'refresh'\n | 'inside-shared-layout'\n | 'metadata-only'\n | null,\n isRootLayout?: boolean,\n /**\n * Only present when responding to a tree prefetch request. Indicates whether\n * there is a loading boundary somewhere in the tree. The client cache uses\n * this to determine if it can skip the data prefetch request.\n */\n hasLoadingBoundary?: HasLoadingBoundary,\n]\n\nexport const enum HasLoadingBoundary {\n // There is a loading boundary in this particular segment\n SegmentHasLoadingBoundary = 1,\n // There is a loading boundary somewhere in the subtree (but not in\n // this segment)\n SubtreeHasLoadingBoundary = 2,\n // There is no loading boundary in this segment or any of its descendants\n SubtreeHasNoLoadingBoundary = 3,\n}\n\n/**\n * Individual Flight response path\n */\nexport type FlightSegmentPath =\n // Uses `any` as repeating pattern can't be typed.\n | any[]\n // Looks somewhat like this\n | [\n segment: Segment,\n parallelRouterKey: string,\n segment: Segment,\n parallelRouterKey: string,\n segment: Segment,\n parallelRouterKey: string,\n ]\n\n/**\n * Represents a tree of segments and the Flight data (i.e. React nodes) that\n * correspond to each one. The tree is isomorphic to the FlightRouterState;\n * however in the future we want to be able to fetch arbitrary partial segments\n * without having to fetch all its children. So this response format will\n * likely change.\n */\nexport type CacheNodeSeedData = [\n node: React.ReactNode | null,\n parallelRoutes: {\n [parallelRouterKey: string]: CacheNodeSeedData | null\n },\n loading: LoadingModuleData | Promise,\n isPartial: boolean,\n /** TODO: this doesn't feel like it belongs here, because it's only used during build, in `collectSegmentData` */\n hasRuntimePrefetch: boolean,\n]\n\nexport type FlightDataSegment = [\n /* segment of the rendered slice: */ Segment,\n /* treePatch */ FlightRouterState,\n /* cacheNodeSeedData */ CacheNodeSeedData | null, // Can be null during prefetch if there's no loading component\n /* head: viewport */ HeadData,\n /* isHeadPartial */ boolean,\n]\n\nexport type FlightDataPath =\n // Uses `any` as repeating pattern can't be typed.\n | any[]\n // Looks somewhat like this\n | [\n // Holds full path to the segment.\n ...FlightSegmentPath[],\n ...FlightDataSegment,\n ]\n\n/**\n * The Flight response data\n */\nexport type FlightData = Array | string\n\nexport type ActionResult = Promise\n\nexport type InitialRSCPayload = {\n /** buildId */\n b: string\n /** initialCanonicalUrlParts */\n c: string[]\n /** initialRenderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n /** initialFlightData */\n f: FlightDataPath[]\n /** missingSlots */\n m: Set | undefined\n /** GlobalError */\n G: [React.ComponentType, React.ReactNode | undefined]\n /** prerendered */\n S: boolean\n}\n\n// Response from `createFromFetch` for normal rendering\nexport type NavigationFlightResponse = {\n /** buildId */\n b: string\n /** flightData */\n f: FlightData\n /** prerendered */\n S: boolean\n /** renderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n /** runtimePrefetch - [isPartial, staleTime]. Only present in runtime prefetch responses. */\n rp?: [boolean, number]\n}\n\n// Response from `createFromFetch` for server actions. Action's flight data can be null\nexport type ActionFlightResponse = {\n /** actionResult */\n a: ActionResult\n /** buildId */\n b: string\n /** flightData */\n f: FlightData\n /** renderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n}\n\nexport type RSCPayload =\n | InitialRSCPayload\n | NavigationFlightResponse\n | ActionFlightResponse\n"],"names":["HasLoadingBoundary"],"mappings":"AAAA;;;;;CAKC,GAqJD;;;;AAAO,IAAWA,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;IAChB,yDAAyD;;IAEzD,mEAAmE;IACnE,gBAAgB;;IAEhB,yEAAyE;;WANzDA;MAQjB","ignoreList":[0]}}, - {"offset": {"line": 4083, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/types.ts"],"sourcesContent":["/**\n * Shared types and constants for the Segment Cache.\n */\n\nexport const enum NavigationResultTag {\n MPA,\n Success,\n NoOp,\n Async,\n}\n\n/**\n * The priority of the prefetch task. Higher numbers are higher priority.\n */\nexport const enum PrefetchPriority {\n /**\n * Assigned to the most recently hovered/touched link. Special network\n * bandwidth is reserved for this task only. There's only ever one Intent-\n * priority task at a time; when a new Intent task is scheduled, the previous\n * one is bumped down to Default.\n */\n Intent = 2,\n /**\n * The default priority for prefetch tasks.\n */\n Default = 1,\n /**\n * Assigned to tasks when they spawn non-blocking background work, like\n * revalidating a partially cached entry to see if more data is available.\n */\n Background = 0,\n}\n\nexport const enum FetchStrategy {\n // Deliberately ordered so we can easily compare two segments\n // and determine if one segment is \"more specific\" than another\n // (i.e. if it's likely that it contains more data)\n LoadingBoundary = 0,\n PPR = 1,\n PPRRuntime = 2,\n Full = 3,\n}\n\n/**\n * A subset of fetch strategies used for prefetch tasks.\n * A prefetch task can't know if it should use `PPR` or `LoadingBoundary`\n * until we complete the initial tree prefetch request, so we use `PPR` to signal both cases\n * and adjust it based on the route when actually fetching.\n * */\nexport type PrefetchTaskFetchStrategy =\n | FetchStrategy.PPR\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full\n"],"names":["NavigationResultTag","PrefetchPriority","FetchStrategy"],"mappings":"AAAA;;CAEC,GAED;;;;;;;;AAAO,IAAWA,sBAAAA,WAAAA,GAAAA,SAAAA,mBAAAA;;;;;WAAAA;MAKjB;AAKM,IAAWC,mBAAAA,WAAAA,GAAAA,SAAAA,gBAAAA;IAChB;;;;;GAKC,GAAA,gBAAA,CAAA,gBAAA,CAAA,SAAA,GAAA,EAAA,GAAA;IAED;;GAEC,GAAA,gBAAA,CAAA,gBAAA,CAAA,UAAA,GAAA,EAAA,GAAA;IAED;;;GAGC,GAAA,gBAAA,CAAA,gBAAA,CAAA,aAAA,GAAA,EAAA,GAAA;WAfeA;MAiBjB;AAEM,IAAWC,gBAAAA,WAAAA,GAAAA,SAAAA,aAAAA;IAChB,6DAA6D;IAC7D,+DAA+D;IAC/D,mDAAmD;;;;;WAHnCA;MAQjB","ignoreList":[0]}}, - {"offset": {"line": 4130, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/lru.ts"],"sourcesContent":["import { deleteMapEntry } from './cache-map'\nimport type { UnknownMapEntry } from './cache-map'\n\n// We use an LRU for memory management. We must update this whenever we add or\n// remove a new cache entry, or when an entry changes size.\n\nlet head: UnknownMapEntry | null = null\nlet didScheduleCleanup: boolean = false\nlet lruSize: number = 0\n\n// TODO: I chose the max size somewhat arbitrarily. Consider setting this based\n// on navigator.deviceMemory, or some other heuristic. We should make this\n// customizable via the Next.js config, too.\nconst maxLruSize = 50 * 1024 * 1024 // 50 MB\n\nexport function lruPut(node: UnknownMapEntry) {\n if (head === node) {\n // Already at the head\n return\n }\n const prev = node.prev\n const next = node.next\n if (next === null || prev === null) {\n // This is an insertion\n lruSize += node.size\n // Whenever we add an entry, we need to check if we've exceeded the\n // max size. We don't evict entries immediately; they're evicted later in\n // an asynchronous task.\n ensureCleanupIsScheduled()\n } else {\n // This is a move. Remove from its current position.\n prev.next = next\n next.prev = prev\n }\n\n // Move to the front of the list\n if (head === null) {\n // This is the first entry\n node.prev = node\n node.next = node\n } else {\n // Add to the front of the list\n const tail = head.prev\n node.prev = tail\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n tail.next = node\n }\n node.next = head\n head.prev = node\n }\n head = node\n}\n\nexport function updateLruSize(node: UnknownMapEntry, newNodeSize: number) {\n // This is a separate function from `put` so that we can resize the entry\n // regardless of whether it's currently being tracked by the LRU.\n const prevNodeSize = node.size\n node.size = newNodeSize\n if (node.next === null) {\n // This entry is not currently being tracked by the LRU.\n return\n }\n // Update the total LRU size\n lruSize = lruSize - prevNodeSize + newNodeSize\n ensureCleanupIsScheduled()\n}\n\nexport function deleteFromLru(deleted: UnknownMapEntry) {\n const next = deleted.next\n const prev = deleted.prev\n if (next !== null && prev !== null) {\n lruSize -= deleted.size\n\n deleted.next = null\n deleted.prev = null\n\n // Remove from the list\n if (head === deleted) {\n // Update the head\n if (next === head) {\n // This was the last entry\n head = null\n } else {\n head = next\n prev.next = next\n next.prev = prev\n }\n } else {\n prev.next = next\n next.prev = prev\n }\n } else {\n // Already deleted\n }\n}\n\nfunction ensureCleanupIsScheduled() {\n if (didScheduleCleanup || lruSize <= maxLruSize) {\n return\n }\n didScheduleCleanup = true\n requestCleanupCallback(cleanup)\n}\n\nfunction cleanup() {\n didScheduleCleanup = false\n\n // Evict entries until we're at 90% capacity. We can assume this won't\n // infinite loop because even if `maxLruSize` were 0, eventually\n // `deleteFromLru` sets `head` to `null` when we run out entries.\n const ninetyPercentMax = maxLruSize * 0.9\n while (lruSize > ninetyPercentMax && head !== null) {\n const tail = head.prev\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n // Delete the entry from the map. In turn, this will remove it from\n // the LRU.\n deleteMapEntry(tail)\n }\n }\n}\n\nconst requestCleanupCallback =\n typeof requestIdleCallback === 'function'\n ? requestIdleCallback\n : (cb: () => void) => setTimeout(cb, 0)\n"],"names":["deleteMapEntry","head","didScheduleCleanup","lruSize","maxLruSize","lruPut","node","prev","next","size","ensureCleanupIsScheduled","tail","updateLruSize","newNodeSize","prevNodeSize","deleteFromLru","deleted","requestCleanupCallback","cleanup","ninetyPercentMax","requestIdleCallback","cb","setTimeout"],"mappings":";;;;;;;;AAAA,SAASA,cAAc,QAAQ,cAAa;;AAG5C,8EAA8E;AAC9E,2DAA2D;AAE3D,IAAIC,OAA+B;AACnC,IAAIC,qBAA8B;AAClC,IAAIC,UAAkB;AAEtB,+EAA+E;AAC/E,0EAA0E;AAC1E,4CAA4C;AAC5C,MAAMC,aAAa,KAAK,OAAO,KAAK,QAAQ;;AAErC,SAASC,OAAOC,IAAqB;IAC1C,IAAIL,SAASK,MAAM;QACjB,sBAAsB;QACtB;IACF;IACA,MAAMC,OAAOD,KAAKC,IAAI;IACtB,MAAMC,OAAOF,KAAKE,IAAI;IACtB,IAAIA,SAAS,QAAQD,SAAS,MAAM;QAClC,uBAAuB;QACvBJ,WAAWG,KAAKG,IAAI;QACpB,mEAAmE;QACnE,yEAAyE;QACzE,wBAAwB;QACxBC;IACF,OAAO;QACL,oDAAoD;QACpDH,KAAKC,IAAI,GAAGA;QACZA,KAAKD,IAAI,GAAGA;IACd;IAEA,gCAAgC;IAChC,IAAIN,SAAS,MAAM;QACjB,0BAA0B;QAC1BK,KAAKC,IAAI,GAAGD;QACZA,KAAKE,IAAI,GAAGF;IACd,OAAO;QACL,+BAA+B;QAC/B,MAAMK,OAAOV,KAAKM,IAAI;QACtBD,KAAKC,IAAI,GAAGI;QACZ,sEAAsE;QACtE,IAAIA,SAAS,MAAM;YACjBA,KAAKH,IAAI,GAAGF;QACd;QACAA,KAAKE,IAAI,GAAGP;QACZA,KAAKM,IAAI,GAAGD;IACd;IACAL,OAAOK;AACT;AAEO,SAASM,cAAcN,IAAqB,EAAEO,WAAmB;IACtE,yEAAyE;IACzE,iEAAiE;IACjE,MAAMC,eAAeR,KAAKG,IAAI;IAC9BH,KAAKG,IAAI,GAAGI;IACZ,IAAIP,KAAKE,IAAI,KAAK,MAAM;QACtB,wDAAwD;QACxD;IACF;IACA,4BAA4B;IAC5BL,UAAUA,UAAUW,eAAeD;IACnCH;AACF;AAEO,SAASK,cAAcC,OAAwB;IACpD,MAAMR,OAAOQ,QAAQR,IAAI;IACzB,MAAMD,OAAOS,QAAQT,IAAI;IACzB,IAAIC,SAAS,QAAQD,SAAS,MAAM;QAClCJ,WAAWa,QAAQP,IAAI;QAEvBO,QAAQR,IAAI,GAAG;QACfQ,QAAQT,IAAI,GAAG;QAEf,uBAAuB;QACvB,IAAIN,SAASe,SAAS;YACpB,kBAAkB;YAClB,IAAIR,SAASP,MAAM;gBACjB,0BAA0B;gBAC1BA,OAAO;YACT,OAAO;gBACLA,OAAOO;gBACPD,KAAKC,IAAI,GAAGA;gBACZA,KAAKD,IAAI,GAAGA;YACd;QACF,OAAO;YACLA,KAAKC,IAAI,GAAGA;YACZA,KAAKD,IAAI,GAAGA;QACd;IACF,OAAO;IACL,kBAAkB;IACpB;AACF;AAEA,SAASG;IACP,IAAIR,sBAAsBC,WAAWC,YAAY;QAC/C;IACF;IACAF,qBAAqB;IACrBe,uBAAuBC;AACzB;AAEA,SAASA;IACPhB,qBAAqB;IAErB,sEAAsE;IACtE,gEAAgE;IAChE,iEAAiE;IACjE,MAAMiB,mBAAmBf,aAAa;IACtC,MAAOD,UAAUgB,oBAAoBlB,SAAS,KAAM;QAClD,MAAMU,OAAOV,KAAKM,IAAI;QACtB,sEAAsE;QACtE,IAAII,SAAS,MAAM;YACjB,mEAAmE;YACnE,WAAW;gBACXX,iNAAAA,EAAeW;QACjB;IACF;AACF;AAEA,MAAMM,yBACJ,OAAOG,wBAAwB,aAC3BA,sBACA,CAACC,KAAmBC,WAAWD,IAAI","ignoreList":[0]}}, - {"offset": {"line": 4254, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache-map.ts"],"sourcesContent":["import type { VaryPath } from './vary-path'\nimport { lruPut, updateLruSize, deleteFromLru } from './lru'\n\n/**\n * A specialized data type for storing multi-key cache entries.\n *\n * The basic structure is a map whose keys are tuples, called the keypath.\n * When querying the cache, keypaths are compared per-element.\n *\n * Example:\n * set(map, ['https://localhost', 'foo/bar/baz'], 'yay');\n * get(map, ['https://localhost', 'foo/bar/baz']) -> 'yay'\n *\n * NOTE: Array syntax is used in these examples for illustration purposes, but\n * in reality the paths are lists.\n * \n * The parts of the keypath represent the different inputs that contribute\n * to the entry value. To illustrate, if you were to use this data type to store\n * HTTP responses, the keypath would include the URL and everything listed by\n * the Vary header.\n * \n * See vary-path.ts for more details.\n *\n * The order of elements in a keypath must be consistent between lookups to\n * be considered the same, but besides that, the order of the keys is not\n * semantically meaningful.\n *\n * Keypaths may include a special kind of key called Fallback. When an entry is\n * stored with Fallback as part of its keypath, it means that the entry does not\n * vary by that key. When querying the cache, if an exact match is not found for\n * a keypath, the cache will check for a Fallback match instead. Each element of\n * the keypath may have a Fallback, so retrieval is an O(n ^ 2) operation, but\n * it's expected that keypaths are relatively short.\n *\n * Example:\n * set(cacheMap, ['store', 'product', 1], PRODUCT_PAGE_1);\n * set(cacheMap, ['store', 'product', Fallback], GENERIC_PRODUCT_PAGE);\n *\n * // Exact match\n * get(cacheMap, ['store', 'product', 1]) -> PRODUCT_PAGE_1\n *\n * // Fallback match\n * get(cacheMap, ['store', 'product', 2]) -> GENERIC_PRODUCT_PAGE\n *\n * Because we have the Fallback mechanism, we can impose a constraint that\n * regular JS maps do not have: a value cannot be stored at multiple keypaths\n * simultaneously. These cases should be expressed with Fallback keys instead.\n *\n * Additionally, because values only exist at a single keypath at a time, we\n * can optimize successive lookups by caching the internal map entry on the\n * value itself, using the `ref` field. This is especially useful because it\n * lets us skip the O(n ^ 2) lookup that occurs when Fallback entries\n * are present.\n *\n\n * How to decide if stuff belongs in here, or in cache.ts?\n * -------------------------------------------------------\n * \n * Anything to do with retrival, lifetimes, or eviction needs to go in this\n * module because it affects the fallback algorithm. For example, when\n * performing a lookup, if an entry is stale, it needs to be treated as\n * semantically equivalent to if the entry was not present at all.\n * \n * If there's logic that's not related to the fallback algorithm, though, we\n * should prefer to put it in cache.ts.\n */\n\n// The protocol that values must implement. In practice, the only two types that\n// we ever actually deal with in this module are RouteCacheEntry and\n// SegmentCacheEntry; this is just to keep track of the coupling so we don't\n// leak concerns between the modules unnecessarily.\nexport interface MapValue {\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\n/**\n * Represents a node in the cache map and LRU.\n * MapEntry structurally satisfies this interface for any V extends MapValue.\n *\n * The LRU can contain entries of different value types\n * (e.g., both RouteCacheEntry and SegmentCacheEntry). This interface captures\n * the common structure needed for cache map and LRU operations without\n * requiring knowledge of the specific value type.\n */\nexport interface MapEntry {\n // Cache map structure fields\n parent: MapEntry | null\n key: unknown\n map: Map> | null\n value: V | null\n\n // LRU linked list fields\n prev: MapEntry | null\n next: MapEntry | null\n size: number\n}\n\n/**\n * A looser type for MapEntry\n * This allows the LRU to work with entries of different\n * value types while still providing type safety.\n *\n * The `map` field lets Map> be assignable to this\n * type since we're only reading from the map, not inserting into it.\n */\nexport type UnknownMapEntry = {\n parent: UnknownMapEntry | null\n key: unknown\n map: Pick, 'get' | 'delete' | 'size'> | null\n value: MapValue | null\n\n prev: UnknownMapEntry | null\n next: UnknownMapEntry | null\n size: number\n}\n\n// The CacheMap type is just the root entry of the map.\nexport type CacheMap = MapEntry\n\nexport type FallbackType = { __brand: 'Fallback' }\nexport const Fallback = {} as FallbackType\n\n// This is a special internal key that is used for \"revalidation\" entries. It's\n// an implementation detail that shouldn't leak outside of this module.\nconst Revalidation = {}\n\nexport function createCacheMap(): CacheMap {\n const cacheMap: MapEntry = {\n parent: null,\n key: null,\n value: null,\n map: null,\n\n // LRU-related fields\n prev: null,\n next: null,\n size: 0,\n }\n return cacheMap\n}\n\nfunction getOrInitialize(\n cacheMap: CacheMap,\n keys: VaryPath,\n isRevalidation: boolean\n): MapEntry {\n // Go through each level of keys until we find the entry that matches, or\n // create a new entry if one doesn't exist.\n //\n // This function will only return entries that match the keypath _exactly_.\n // Unlike getWithFallback, it will not access fallback entries unless it's\n // explicitly part of the keypath.\n let entry = cacheMap\n let remainingKeys: VaryPath | null = keys\n let key: unknown | null = null\n while (true) {\n const previousKey = key\n if (remainingKeys !== null) {\n key = remainingKeys.value\n remainingKeys = remainingKeys.parent\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath. The \"normal\" entry is its parent.\n\n // However, if the parent entry is currently empty, we don't need to store\n // this as a revalidation entry. Just insert the revalidation into the\n // normal slot.\n if (entry.value === null) {\n return entry\n }\n\n // Otheriwse, create a child entry.\n key = Revalidation\n } else {\n // There are no more keys. This is the terminal entry.\n break\n }\n\n let map = entry.map\n if (map !== null) {\n const existingEntry = map.get(key)\n if (existingEntry !== undefined) {\n // Found a match. Keep going.\n entry = existingEntry\n continue\n }\n } else {\n map = new Map()\n entry.map = map\n }\n // No entry exists yet at this level. Create a new one.\n const newEntry: MapEntry = {\n parent: entry,\n key,\n value: null,\n map: null,\n\n // LRU-related fields\n prev: null,\n next: null,\n size: 0,\n }\n map.set(key, newEntry)\n entry = newEntry\n }\n\n return entry\n}\n\nexport function getFromCacheMap(\n now: number,\n currentCacheVersion: number,\n rootEntry: CacheMap,\n keys: VaryPath,\n isRevalidation: boolean\n): V | null {\n const entry = getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n rootEntry,\n keys,\n isRevalidation,\n 0\n )\n if (entry === null || entry.value === null) {\n return null\n }\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry)\n return entry.value\n}\n\nexport function isValueExpired(\n now: number,\n currentCacheVersion: number,\n value: MapValue\n): boolean {\n return value.staleAt <= now || value.version < currentCacheVersion\n}\n\nfunction lazilyEvictIfNeeded(\n now: number,\n currentCacheVersion: number,\n entry: MapEntry\n) {\n // We have a matching entry, but before we can return it, we need to check if\n // it's still fresh. Otherwise it should be treated the same as a cache miss.\n\n if (entry.value === null) {\n // This entry has no value, so there's nothing to evict.\n return entry\n }\n\n const value = entry.value\n if (isValueExpired(now, currentCacheVersion, value)) {\n // The value expired. Lazily evict it from the cache, and return null. This\n // is conceptually the same as a cache miss.\n deleteMapEntry(entry)\n return null\n }\n\n // The matched entry has not expired. Return it.\n return entry\n}\n\nfunction getEntryWithFallbackImpl(\n now: number,\n currentCacheVersion: number,\n entry: MapEntry,\n keys: VaryPath | null,\n isRevalidation: boolean,\n previousKey: unknown | null\n): MapEntry | null {\n // This is similar to getExactEntry, but if an exact match is not found for\n // a key, it will return the fallback entry instead. This is recursive at\n // every level, e.g. an entry with keypath [a, Fallback, c, Fallback] is\n // valid match for [a, b, c, d].\n //\n // It will return the most specific match available.\n let key\n let remainingKeys: VaryPath | null\n if (keys !== null) {\n key = keys.value\n remainingKeys = keys.parent\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath.\n key = Revalidation\n remainingKeys = null\n } else {\n // There are no more keys. This is the terminal entry.\n\n // TODO: When performing a lookup during a navigation, as opposed to a\n // prefetch, we may want to skip entries that are Pending if there's also\n // a Fulfilled fallback entry. Tricky to say, though, since if it's\n // already pending, it's likely to stream in soon. Maybe we could do this\n // just on slow connections and offline mode.\n\n return lazilyEvictIfNeeded(now, currentCacheVersion, entry)\n }\n const map = entry.map\n if (map !== null) {\n const existingEntry = map.get(key)\n if (existingEntry !== undefined) {\n // Found an exact match for this key. Keep searching.\n const result = getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n existingEntry,\n remainingKeys,\n isRevalidation,\n key\n )\n if (result !== null) {\n return result\n }\n }\n // No match found for this key. Check if there's a fallback.\n const fallbackEntry = map.get(Fallback)\n if (fallbackEntry !== undefined) {\n // Found a fallback for this key. Keep searching.\n return getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n fallbackEntry,\n remainingKeys,\n isRevalidation,\n key\n )\n }\n }\n return null\n}\n\nexport function setInCacheMap(\n cacheMap: CacheMap,\n keys: VaryPath,\n value: V,\n isRevalidation: boolean\n): void {\n // Add a value to the map at the given keypath. If the value is already\n // part of the map, it's removed from its previous keypath. (NOTE: This is\n // unlike a regular JS map, but the behavior is intentional.)\n const entry = getOrInitialize(cacheMap, keys, isRevalidation)\n setMapEntryValue(entry, value)\n\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry)\n updateLruSize(entry, value.size)\n}\n\nfunction setMapEntryValue(entry: UnknownMapEntry, value: MapValue): void {\n if (entry.value !== null) {\n // There's already a value at the given keypath. Disconnect the old value\n // from the map. We're not calling `deleteMapEntry` here because the\n // entry itself is still in the map. We just want to overwrite its value.\n dropRef(entry.value)\n entry.value = null\n }\n\n // This value may already be in the map at a different keypath.\n // Grab a reference before we overwrite it.\n const oldEntry = value.ref\n\n entry.value = value\n value.ref = entry\n\n updateLruSize(entry, value.size)\n\n if (oldEntry !== null && oldEntry !== entry && oldEntry.value === value) {\n // This value is already in the map at a different keypath in the map.\n // Values only exist at a single keypath at a time. Remove it from the\n // previous keypath.\n //\n // Note that only the internal map entry is garbage collected; we don't\n // call `dropRef` here because it's still in the map, just\n // at a new keypath (the one we just set, above).\n deleteMapEntry(oldEntry)\n }\n}\n\nexport function deleteFromCacheMap(value: MapValue): void {\n const entry = value.ref\n if (entry === null) {\n // This value is not a member of any map.\n return\n }\n\n dropRef(value)\n deleteMapEntry(entry)\n}\n\nfunction dropRef(value: MapValue): void {\n // Drop the value from the map by setting its `ref` backpointer to\n // null. This is a separate operation from `deleteMapEntry` because when\n // re-keying a value we need to be able to delete the old, internal map\n // entry without garbage collecting the value itself.\n value.ref = null\n}\n\nexport function deleteMapEntry(entry: UnknownMapEntry): void {\n // Delete the entry from the cache.\n entry.value = null\n\n deleteFromLru(entry)\n\n // Check if we can garbage collect the entry.\n const map = entry.map\n if (map === null) {\n // Since this entry has no value, and also no child entries, we can\n // garbage collect it. Remove it from its parent, and keep garbage\n // collecting the parents until we reach a non-empty entry.\n let parent = entry.parent\n let key = entry.key\n while (parent !== null) {\n const parentMap = parent.map\n if (parentMap !== null) {\n parentMap.delete(key)\n if (parentMap.size === 0) {\n // We just removed the last entry in the parent map.\n parent.map = null\n if (parent.value === null) {\n // The parent node has no child entries, nor does it have a value\n // on itself. It can be garbage collected. Keep going.\n key = parent.key\n parent = parent.parent\n continue\n }\n }\n }\n // The parent is not empty. Stop garbage collecting.\n break\n }\n } else {\n // Check if there's a revalidating entry. If so, promote it to a\n // \"normal\" entry, since the normal one was just deleted.\n const revalidatingEntry = map.get(Revalidation)\n if (revalidatingEntry !== undefined && revalidatingEntry.value !== null) {\n setMapEntryValue(entry, revalidatingEntry.value)\n }\n }\n}\n\nexport function setSizeInCacheMap(\n value: V,\n size: number\n): void {\n const entry = value.ref\n if (entry === null) {\n // This value is not a member of any map.\n return\n }\n // Except during initialization (when the size is set to 0), this is the only\n // place the `size` field should be updated, to ensure it's in sync with the\n // the LRU.\n value.size = size\n updateLruSize(entry, size)\n}\n"],"names":["lruPut","updateLruSize","deleteFromLru","Fallback","Revalidation","createCacheMap","cacheMap","parent","key","value","map","prev","next","size","getOrInitialize","keys","isRevalidation","entry","remainingKeys","previousKey","existingEntry","get","undefined","Map","newEntry","set","getFromCacheMap","now","currentCacheVersion","rootEntry","getEntryWithFallbackImpl","isValueExpired","staleAt","version","lazilyEvictIfNeeded","deleteMapEntry","result","fallbackEntry","setInCacheMap","setMapEntryValue","dropRef","oldEntry","ref","deleteFromCacheMap","parentMap","delete","revalidatingEntry","setSizeInCacheMap"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4528, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/vary-path.ts"],"sourcesContent":["import { FetchStrategy } from './types'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n NormalizedNextUrl,\n} from './cache-key'\nimport type { RouteTree } from './cache'\nimport { Fallback, type FallbackType } from './cache-map'\nimport { HEAD_REQUEST_KEY } from '../../../shared/lib/segment-cache/segment-value-encoding'\n\ntype Opaque = T & { __brand: K }\n\n/**\n * A linked-list of all the params (or other param-like) inputs that a cache\n * entry may vary by. This is used by the CacheMap module to reuse cache entries\n * across different param values. If a param has a value of Fallback, it means\n * the cache entry is reusable for all possible values of that param. See\n * cache-map.ts for details.\n *\n * A segment's vary path is a pure function of a segment's position in a\n * particular route tree and the (post-rewrite) URL that is being queried. More\n * concretely, successive queries of the cache for the same segment always use\n * the same vary path.\n *\n * A route's vary path is simpler: it's comprised of the pathname, search\n * string, and Next-URL header.\n */\nexport type VaryPath = {\n value: string | null | FallbackType\n parent: VaryPath | null\n}\n\n// Because it's so important for vary paths to line up across cache accesses,\n// we use opaque type aliases to ensure these are only created within\n// this module.\n\n// requestKey -> searchParams -> nextUrl\nexport type RouteVaryPath = Opaque<\n {\n value: NormalizedPathname\n parent: {\n value: NormalizedSearch\n parent: {\n value: NormalizedNextUrl | null | FallbackType\n parent: null\n }\n }\n },\n 'RouteVaryPath'\n>\n\n// requestKey -> pathParams\nexport type LayoutVaryPath = Opaque<\n {\n value: string\n parent: PartialSegmentVaryPath | null\n },\n 'LayoutVaryPath'\n>\n\n// requestKey -> searchParams -> pathParams\nexport type PageVaryPath = Opaque<\n {\n value: string\n parent: {\n value: NormalizedSearch | FallbackType\n parent: PartialSegmentVaryPath | null\n }\n },\n 'PageVaryPath'\n>\n\nexport type SegmentVaryPath = LayoutVaryPath | PageVaryPath\n\n// Intermediate type used when building a vary path during a recursive traversal\n// of the route tree.\nexport type PartialSegmentVaryPath = Opaque\n\nexport function getRouteVaryPath(\n pathname: NormalizedPathname,\n search: NormalizedSearch,\n nextUrl: NormalizedNextUrl | null\n): RouteVaryPath {\n // requestKey -> searchParams -> nextUrl\n const varyPath: VaryPath = {\n value: pathname,\n parent: {\n value: search,\n parent: {\n value: nextUrl,\n parent: null,\n },\n },\n }\n return varyPath as RouteVaryPath\n}\n\nexport function getFulfilledRouteVaryPath(\n pathname: NormalizedPathname,\n search: NormalizedSearch,\n nextUrl: NormalizedNextUrl | null,\n couldBeIntercepted: boolean\n): RouteVaryPath {\n // This is called when a route's data is fulfilled. The cache entry will be\n // re-keyed based on which inputs the response varies by.\n // requestKey -> searchParams -> nextUrl\n const varyPath: VaryPath = {\n value: pathname,\n parent: {\n value: search,\n parent: {\n value: couldBeIntercepted ? nextUrl : Fallback,\n parent: null,\n },\n },\n }\n return varyPath as RouteVaryPath\n}\n\nexport function appendLayoutVaryPath(\n parentPath: PartialSegmentVaryPath | null,\n cacheKey: string\n): PartialSegmentVaryPath {\n const varyPathPart: VaryPath = {\n value: cacheKey,\n parent: parentPath,\n }\n return varyPathPart as PartialSegmentVaryPath\n}\n\nexport function finalizeLayoutVaryPath(\n requestKey: string,\n varyPath: PartialSegmentVaryPath | null\n): LayoutVaryPath {\n const layoutVaryPath: VaryPath = {\n value: requestKey,\n parent: varyPath,\n }\n return layoutVaryPath as LayoutVaryPath\n}\n\nexport function finalizePageVaryPath(\n requestKey: string,\n renderedSearch: NormalizedSearch,\n varyPath: PartialSegmentVaryPath | null\n): PageVaryPath {\n // Unlike layouts, a page segment's vary path also includes the search string.\n // requestKey -> searchParams -> pathParams\n const pageVaryPath: VaryPath = {\n value: requestKey,\n parent: {\n value: renderedSearch,\n parent: varyPath,\n },\n }\n return pageVaryPath as PageVaryPath\n}\n\nexport function finalizeMetadataVaryPath(\n pageRequestKey: string,\n renderedSearch: NormalizedSearch,\n varyPath: PartialSegmentVaryPath | null\n): PageVaryPath {\n // The metadata \"segment\" is not a real segment because it doesn't exist in\n // the normal structure of the route tree, but in terms of caching, it\n // behaves like a page segment because it varies by all the same params as\n // a page.\n //\n // To keep the protocol for querying the server simple, the request key for\n // the metadata does not include any path information. It's unnecessary from\n // the server's perspective, because unlike page segments, there's only one\n // metadata response per URL, i.e. there's no need to distinguish multiple\n // parallel pages.\n //\n // However, this means the metadata request key is insufficient for\n // caching the the metadata in the client cache, because on the client we\n // use the request key to distinguish the metadata entry from all other\n // page's metadata entries.\n //\n // So instead we create a simulated request key based on the page segment.\n // Conceptually this is equivalent to the request key the server would have\n // assigned the metadata segment if it treated it as part of the actual\n // route structure.\n\n // If there are multiple parallel pages, we use whichever is the first one.\n // This is fine because the only difference between request keys for\n // different parallel pages are things like route groups and parallel\n // route slots. As long as it's always the same one, it doesn't matter.\n const pageVaryPath: VaryPath = {\n // Append the actual metadata request key to the page request key. Note\n // that we're not using a separate vary path part; it's unnecessary because\n // these are not conceptually separate inputs.\n value: pageRequestKey + HEAD_REQUEST_KEY,\n parent: {\n value: renderedSearch,\n parent: varyPath,\n },\n }\n return pageVaryPath as PageVaryPath\n}\n\nexport function getSegmentVaryPathForRequest(\n fetchStrategy: FetchStrategy,\n tree: RouteTree\n): SegmentVaryPath {\n // This is used for storing pending requests in the cache. We want to choose\n // the most generic vary path based on the strategy used to fetch it, i.e.\n // static/PPR versus runtime prefetching, so that it can be reused as much\n // as possible.\n //\n // We may be able to re-key the response to something even more generic once\n // we receive it — for example, if the server tells us that the response\n // doesn't vary on a particular param — but even before we send the request,\n // we know some params are reusable based on the fetch strategy alone. For\n // example, a static prefetch will never vary on search params.\n //\n // The original vary path with all the params filled in is stored on the\n // route tree object. We will clone this one to create a new vary path\n // where certain params are replaced with Fallback.\n //\n // This result of this function is not stored anywhere. It's only used to\n // access the cache a single time.\n //\n // TODO: Rather than create a new list object just to access the cache, the\n // plan is to add the concept of a \"vary mask\". This will represent all the\n // params that can be treated as Fallback. (Or perhaps the inverse.)\n const originalVaryPath = tree.varyPath\n\n // Only page segments (and the special \"metadata\" segment, which is treated\n // like a page segment for the purposes of caching) may contain search\n // params. There's no reason to include them in the vary path otherwise.\n if (tree.isPage) {\n // Only a runtime prefetch will include search params in the vary path.\n // Static prefetches never include search params, so they can be reused\n // across all possible search param values.\n const doesVaryOnSearchParams =\n fetchStrategy === FetchStrategy.Full ||\n fetchStrategy === FetchStrategy.PPRRuntime\n\n if (!doesVaryOnSearchParams) {\n // The response from the the server will not vary on search params. Clone\n // the end of the original vary path to replace the search params\n // with Fallback.\n //\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with Fallback\n const searchParamsVaryPath = (originalVaryPath as PageVaryPath).parent\n const pathParamsVaryPath = searchParamsVaryPath.parent\n const patchedVaryPath: VaryPath = {\n value: originalVaryPath.value,\n parent: {\n value: Fallback,\n parent: pathParamsVaryPath,\n },\n }\n return patchedVaryPath as SegmentVaryPath\n }\n }\n\n // The request does vary on search params. We don't need to modify anything.\n return originalVaryPath as SegmentVaryPath\n}\n\nexport function clonePageVaryPathWithNewSearchParams(\n originalVaryPath: PageVaryPath,\n newSearch: NormalizedSearch\n): PageVaryPath {\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with newSearch\n const searchParamsVaryPath = originalVaryPath.parent\n const clonedVaryPath: VaryPath = {\n value: originalVaryPath.value,\n parent: {\n value: newSearch,\n parent: searchParamsVaryPath.parent,\n },\n }\n return clonedVaryPath as PageVaryPath\n}\n"],"names":["FetchStrategy","Fallback","HEAD_REQUEST_KEY","getRouteVaryPath","pathname","search","nextUrl","varyPath","value","parent","getFulfilledRouteVaryPath","couldBeIntercepted","appendLayoutVaryPath","parentPath","cacheKey","varyPathPart","finalizeLayoutVaryPath","requestKey","layoutVaryPath","finalizePageVaryPath","renderedSearch","pageVaryPath","finalizeMetadataVaryPath","pageRequestKey","getSegmentVaryPathForRequest","fetchStrategy","tree","originalVaryPath","isPage","doesVaryOnSearchParams","Full","PPRRuntime","searchParamsVaryPath","pathParamsVaryPath","patchedVaryPath","clonePageVaryPathWithNewSearchParams","newSearch","clonedVaryPath"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4715, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache-key.ts"],"sourcesContent":["// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque = T & { __brand: K }\n\n// Only functions in this module should be allowed to create CacheKeys.\nexport type NormalizedPathname = Opaque<'NormalizedPathname', string>\nexport type NormalizedSearch = Opaque<'NormalizedSearch', string>\nexport type NormalizedNextUrl = Opaque<'NormalizedNextUrl', string>\n\nexport type RouteCacheKey = Opaque<\n 'RouteCacheKey',\n {\n pathname: NormalizedPathname\n search: NormalizedSearch\n nextUrl: NormalizedNextUrl | null\n\n // TODO: Eventually the dynamic params will be added here, too.\n }\n>\n\nexport function createCacheKey(\n originalHref: string,\n nextUrl: string | null\n): RouteCacheKey {\n const originalUrl = new URL(originalHref)\n const cacheKey = {\n pathname: originalUrl.pathname as NormalizedPathname,\n search: originalUrl.search as NormalizedSearch,\n nextUrl: nextUrl as NormalizedNextUrl | null,\n } as RouteCacheKey\n return cacheKey\n}\n"],"names":["createCacheKey","originalHref","nextUrl","originalUrl","URL","cacheKey","pathname","search"],"mappings":"AAAA,2DAA2D;;;;;AAmBpD,SAASA,eACdC,YAAoB,EACpBC,OAAsB;IAEtB,MAAMC,cAAc,IAAIC,IAAIH;IAC5B,MAAMI,WAAW;QACfC,UAAUH,YAAYG,QAAQ;QAC9BC,QAAQJ,YAAYI,MAAM;QAC1BL,SAASA;IACX;IACA,OAAOG;AACT","ignoreList":[0]}}, - {"offset": {"line": 4733, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/scheduler.ts"],"sourcesContent":["import type {\n FlightRouterState,\n Segment as FlightRouterStateSegment,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport { HasLoadingBoundary } from '../../../shared/lib/app-router-types'\nimport { matchSegment } from '../match-segments'\nimport {\n readOrCreateRouteCacheEntry,\n readOrCreateSegmentCacheEntry,\n fetchRouteOnCacheMiss,\n fetchSegmentOnCacheMiss,\n EntryStatus,\n type FulfilledRouteCacheEntry,\n type RouteCacheEntry,\n type SegmentCacheEntry,\n type RouteTree,\n fetchSegmentPrefetchesUsingDynamicRequest,\n type PendingSegmentCacheEntry,\n convertRouteTreeToFlightRouterState,\n readOrCreateRevalidatingSegmentEntry,\n upsertSegmentEntry,\n type FulfilledSegmentCacheEntry,\n upgradeToPendingSegment,\n waitForSegmentCacheEntry,\n overwriteRevalidatingSegmentCacheEntry,\n canNewFetchStrategyProvideMoreContent,\n} from './cache'\nimport { getSegmentVaryPathForRequest, type SegmentVaryPath } from './vary-path'\nimport type { RouteCacheKey } from './cache-key'\nimport { createCacheKey } from './cache-key'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n PrefetchPriority,\n} from './types'\nimport { getCurrentCacheVersion } from './cache'\nimport {\n addSearchParamsIfPageSegment,\n PAGE_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport type { SegmentRequestKey } from '../../../shared/lib/segment-cache/segment-value-encoding'\n\nconst scheduleMicrotask =\n typeof queueMicrotask === 'function'\n ? queueMicrotask\n : (fn: () => unknown) =>\n Promise.resolve()\n .then(fn)\n .catch((error) =>\n setTimeout(() => {\n throw error\n })\n )\n\nexport type PrefetchTask = {\n key: RouteCacheKey\n\n /**\n * The FlightRouterState at the time the task was initiated. This is needed\n * when falling back to the non-PPR behavior, which only prefetches up to\n * the first loading boundary.\n */\n treeAtTimeOfPrefetch: FlightRouterState\n\n /**\n * The cache version at the time the task was initiated. This is used to\n * determine if the cache was invalidated since the task was initiated.\n */\n cacheVersion: number\n\n /**\n * Whether to prefetch dynamic data, in addition to static data. This is\n * used by ``.\n *\n * Note that a task with `FetchStrategy.PPR` might need to use\n * `FetchStrategy.LoadingBoundary` instead if we find out that a route\n * does not support PPR after doing the initial route prefetch.\n */\n fetchStrategy: PrefetchTaskFetchStrategy\n\n /**\n * sortId is an incrementing counter\n *\n * Newer prefetches are prioritized over older ones, so that as new links\n * enter the viewport, they are not starved by older links that are no\n * longer relevant. In the future, we can add additional prioritization\n * heuristics, like removing prefetches once a link leaves the viewport.\n *\n * The sortId is assigned when the prefetch is initiated, and reassigned if\n * the same task is prefetched again (effectively bumping it to the top of\n * the queue).\n *\n * TODO: We can add additional fields here to indicate what kind of prefetch\n * it is. For example, was it initiated by a link? Or was it an imperative\n * call? If it was initiated by a link, we can remove it from the queue when\n * the link leaves the viewport, but if it was an imperative call, then we\n * should keep it in the queue until it's fulfilled.\n *\n * We can also add priority levels. For example, hovering over a link could\n * increase the priority of its prefetch.\n */\n sortId: number\n\n /**\n * The priority of the task. Like sortId, this affects the task's position in\n * the queue, so it must never be updated without resifting the heap.\n */\n priority: PrefetchPriority\n\n /**\n * The phase of the task. Tasks are split into multiple phases so that their\n * priority can be adjusted based on what kind of work they're doing.\n * Concretely, prefetching the route tree is higher priority than prefetching\n * segment data.\n */\n phase: PrefetchPhase\n\n /**\n * These fields are temporary state for tracking the currently running task.\n * They are reset after each iteration of the task queue.\n */\n hasBackgroundWork: boolean\n spawnedRuntimePrefetches: Set | null\n\n /**\n * True if the prefetch was cancelled.\n */\n isCanceled: boolean\n\n /**\n * The callback passed to `router.prefetch`, if given.\n */\n onInvalidate: null | (() => void)\n\n /**\n * The index of the task in the heap's backing array. Used to efficiently\n * change the priority of a task by re-sifting it, which requires knowing\n * where it is in the array. This is only used internally by the heap\n * algorithm. The naive alternative is indexOf every time a task is queued,\n * which has O(n) complexity.\n *\n * We also use this field to check whether a task is currently in the queue.\n */\n _heapIndex: number\n}\n\nconst enum PrefetchTaskExitStatus {\n /**\n * The task yielded because there are too many requests in progress.\n */\n InProgress,\n\n /**\n * The task is blocked. It needs more data before it can proceed.\n *\n * Currently the only reason this happens is we're still waiting to receive a\n * route tree from the server, because we can't start prefetching the segments\n * until we know what to prefetch.\n */\n Blocked,\n\n /**\n * There's nothing left to prefetch.\n */\n Done,\n}\n\n/**\n * Prefetch tasks are processed in two phases: first the route tree is fetched,\n * then the segments. We use this to priortize tasks that have not yet fetched\n * the route tree.\n */\nconst enum PrefetchPhase {\n RouteTree = 1,\n Segments = 0,\n}\n\nexport type PrefetchSubtaskResult = {\n /**\n * A promise that resolves when the network connection is closed.\n */\n closed: Promise\n value: T\n}\n\nconst taskHeap: Array = []\n\nlet inProgressRequests = 0\n\nlet sortIdCounter = 0\nlet didScheduleMicrotask = false\n\n// The most recently hovered (or touched, etc) link, i.e. the most recent task\n// scheduled at Intent priority. There's only ever a single task at Intent\n// priority at a time. We reserve special network bandwidth for this task only.\nlet mostRecentlyHoveredLink: PrefetchTask | null = null\n\n// CDN cache propagation delay after revalidation (in milliseconds)\nconst REVALIDATION_COOLDOWN_MS = 300\n\n// Timeout handle for the revalidation cooldown. When non-null, prefetch\n// requests are blocked to allow CDN cache propagation.\nlet revalidationCooldownTimeoutHandle: ReturnType | null =\n null\n\n/**\n * Called by the cache when revalidation occurs. Starts a cooldown period\n * during which prefetch requests are blocked to allow CDN cache propagation.\n */\nexport function startRevalidationCooldown(): void {\n // Clear any existing timeout in case multiple revalidations happen\n // in quick succession.\n if (revalidationCooldownTimeoutHandle !== null) {\n clearTimeout(revalidationCooldownTimeoutHandle)\n }\n\n // Schedule the cooldown to expire after the delay.\n revalidationCooldownTimeoutHandle = setTimeout(() => {\n revalidationCooldownTimeoutHandle = null\n // Retry the prefetch queue now that the cooldown has expired.\n ensureWorkIsScheduled()\n }, REVALIDATION_COOLDOWN_MS)\n}\n\nexport type IncludeDynamicData = null | 'full' | 'dynamic'\n\n/**\n * Initiates a prefetch task for the given URL. If a prefetch for the same URL\n * is already in progress, this will bump it to the top of the queue.\n *\n * This is not a user-facing function. By the time this is called, the href is\n * expected to be validated and normalized.\n *\n * @param key The RouteCacheKey to prefetch.\n * @param treeAtTimeOfPrefetch The app's current FlightRouterState\n * @param fetchStrategy Whether to prefetch dynamic data, in addition to\n * static data. This is used by ``.\n */\nexport function schedulePrefetchTask(\n key: RouteCacheKey,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n priority: PrefetchPriority,\n onInvalidate: null | (() => void)\n): PrefetchTask {\n // Spawn a new prefetch task\n const task: PrefetchTask = {\n key,\n treeAtTimeOfPrefetch,\n cacheVersion: getCurrentCacheVersion(),\n priority,\n phase: PrefetchPhase.RouteTree,\n hasBackgroundWork: false,\n spawnedRuntimePrefetches: null,\n fetchStrategy,\n sortId: sortIdCounter++,\n isCanceled: false,\n onInvalidate,\n _heapIndex: -1,\n }\n\n trackMostRecentlyHoveredLink(task)\n\n heapPush(taskHeap, task)\n\n // Schedule an async task to process the queue.\n //\n // The main reason we process the queue in an async task is for batching.\n // It's common for a single JS task/event to trigger multiple prefetches.\n // By deferring to a microtask, we only process the queue once per JS task.\n // If they have different priorities, it also ensures they are processed in\n // the optimal order.\n ensureWorkIsScheduled()\n\n return task\n}\n\nexport function cancelPrefetchTask(task: PrefetchTask): void {\n // Remove the prefetch task from the queue. If the task already completed,\n // then this is a no-op.\n //\n // We must also explicitly mark the task as canceled so that a blocked task\n // does not get added back to the queue when it's pinged by the network.\n task.isCanceled = true\n heapDelete(taskHeap, task)\n}\n\nexport function reschedulePrefetchTask(\n task: PrefetchTask,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n priority: PrefetchPriority\n): void {\n // Bump the prefetch task to the top of the queue, as if it were a fresh\n // task. This is essentially the same as canceling the task and scheduling\n // a new one, except it reuses the original object.\n //\n // The primary use case is to increase the priority of a Link-initated\n // prefetch on hover.\n\n // Un-cancel the task, in case it was previously canceled.\n task.isCanceled = false\n task.phase = PrefetchPhase.RouteTree\n\n // Assign a new sort ID to move it ahead of all other tasks at the same\n // priority level. (Higher sort IDs are processed first.)\n task.sortId = sortIdCounter++\n task.priority =\n // If this task is the most recently hovered link, maintain its\n // Intent priority, even if the rescheduled priority is lower.\n task === mostRecentlyHoveredLink ? PrefetchPriority.Intent : priority\n\n task.treeAtTimeOfPrefetch = treeAtTimeOfPrefetch\n task.fetchStrategy = fetchStrategy\n\n trackMostRecentlyHoveredLink(task)\n\n if (task._heapIndex !== -1) {\n // The task is already in the queue.\n heapResift(taskHeap, task)\n } else {\n heapPush(taskHeap, task)\n }\n ensureWorkIsScheduled()\n}\n\nexport function isPrefetchTaskDirty(\n task: PrefetchTask,\n nextUrl: string | null,\n tree: FlightRouterState\n): boolean {\n // This is used to quickly bail out of a prefetch task if the result is\n // guaranteed to not have changed since the task was initiated. This is\n // strictly an optimization — theoretically, if it always returned true, no\n // behavior should change because a full prefetch task will effectively\n // perform the same checks.\n const currentCacheVersion = getCurrentCacheVersion()\n return (\n task.cacheVersion !== currentCacheVersion ||\n task.treeAtTimeOfPrefetch !== tree ||\n task.key.nextUrl !== nextUrl\n )\n}\n\nfunction trackMostRecentlyHoveredLink(task: PrefetchTask) {\n // Track the mostly recently hovered link, i.e. the most recently scheduled\n // task at Intent priority. There must only be one such task at a time.\n if (\n task.priority === PrefetchPriority.Intent &&\n task !== mostRecentlyHoveredLink\n ) {\n if (mostRecentlyHoveredLink !== null) {\n // Bump the previously hovered link's priority down to Default.\n if (mostRecentlyHoveredLink.priority !== PrefetchPriority.Background) {\n mostRecentlyHoveredLink.priority = PrefetchPriority.Default\n heapResift(taskHeap, mostRecentlyHoveredLink)\n }\n }\n mostRecentlyHoveredLink = task\n }\n}\n\nfunction ensureWorkIsScheduled() {\n if (didScheduleMicrotask) {\n // Already scheduled a task to process the queue\n return\n }\n didScheduleMicrotask = true\n scheduleMicrotask(processQueueInMicrotask)\n}\n\n/**\n * Checks if we've exceeded the maximum number of concurrent prefetch requests,\n * to avoid saturating the browser's internal network queue. This is a\n * cooperative limit — prefetch tasks should check this before issuing\n * new requests.\n *\n * Also checks if we're within the revalidation cooldown window, during which\n * prefetch requests are delayed to allow CDN cache propagation.\n */\nfunction hasNetworkBandwidth(task: PrefetchTask): boolean {\n // Check if we're within the revalidation cooldown window\n if (revalidationCooldownTimeoutHandle !== null) {\n // We're within the cooldown window. Return false to prevent prefetching.\n // When the cooldown expires, the timeout will call ensureWorkIsScheduled()\n // to retry the queue.\n return false\n }\n\n // TODO: Also check if there's an in-progress navigation. We should never\n // add prefetch requests to the network queue if an actual navigation is\n // taking place, to ensure there's sufficient bandwidth for render-blocking\n // data and resources.\n\n // TODO: Consider reserving some amount of bandwidth for static prefetches.\n\n if (task.priority === PrefetchPriority.Intent) {\n // The most recently hovered link is allowed to exceed the default limit.\n //\n // The goal is to always have enough bandwidth to start a new prefetch\n // request when hovering over a link.\n //\n // However, because we don't abort in-progress requests, it's still possible\n // we'll run out of bandwidth. When links are hovered in quick succession,\n // there could be multiple hover requests running simultaneously.\n return inProgressRequests < 12\n }\n\n // The default limit is lower than the limit for a hovered link.\n return inProgressRequests < 4\n}\n\nfunction spawnPrefetchSubtask(\n prefetchSubtask: Promise | null>\n): Promise {\n // When the scheduler spawns an async task, we don't await its result.\n // Instead, the async task writes its result directly into the cache, then\n // pings the scheduler to continue.\n //\n // We process server responses streamingly, so the prefetch subtask will\n // likely resolve before we're finished receiving all the data. The subtask\n // result includes a promise that resolves once the network connection is\n // closed. The scheduler uses this to control network bandwidth by tracking\n // and limiting the number of concurrent requests.\n inProgressRequests++\n return prefetchSubtask.then((result) => {\n if (result === null) {\n // The prefetch task errored before it could start processing the\n // network stream. Assume the connection is closed.\n onPrefetchConnectionClosed()\n return null\n }\n // Wait for the connection to close before freeing up more bandwidth.\n result.closed.then(onPrefetchConnectionClosed)\n return result.value\n })\n}\n\nfunction onPrefetchConnectionClosed(): void {\n inProgressRequests--\n\n // Notify the scheduler that we have more bandwidth, and can continue\n // processing tasks.\n ensureWorkIsScheduled()\n}\n\n/**\n * Notify the scheduler that we've received new data for an in-progress\n * prefetch. The corresponding task will be added back to the queue (unless the\n * task has been canceled in the meantime).\n */\nexport function pingPrefetchTask(task: PrefetchTask) {\n // \"Ping\" a prefetch that's already in progress to notify it of new data.\n if (\n // Check if prefetch was canceled.\n task.isCanceled ||\n // Check if prefetch is already queued.\n task._heapIndex !== -1\n ) {\n return\n }\n // Add the task back to the queue.\n heapPush(taskHeap, task)\n ensureWorkIsScheduled()\n}\n\nfunction processQueueInMicrotask() {\n didScheduleMicrotask = false\n\n // We aim to minimize how often we read the current time. Since nearly all\n // functions in the prefetch scheduler are synchronous, we can read the time\n // once and pass it as an argument wherever it's needed.\n const now = Date.now()\n\n // Process the task queue until we run out of network bandwidth.\n let task = heapPeek(taskHeap)\n while (task !== null && hasNetworkBandwidth(task)) {\n task.cacheVersion = getCurrentCacheVersion()\n\n const exitStatus = pingRoute(now, task)\n\n // These fields are only valid for a single attempt. Reset them after each\n // iteration of the task queue.\n const hasBackgroundWork = task.hasBackgroundWork\n task.hasBackgroundWork = false\n task.spawnedRuntimePrefetches = null\n\n switch (exitStatus) {\n case PrefetchTaskExitStatus.InProgress:\n // The task yielded because there are too many requests in progress.\n // Stop processing tasks until we have more bandwidth.\n return\n case PrefetchTaskExitStatus.Blocked:\n // The task is blocked. It needs more data before it can proceed.\n // Keep the task out of the queue until the server responds.\n heapPop(taskHeap)\n // Continue to the next task\n task = heapPeek(taskHeap)\n continue\n case PrefetchTaskExitStatus.Done:\n if (task.phase === PrefetchPhase.RouteTree) {\n // Finished prefetching the route tree. Proceed to prefetching\n // the segments.\n task.phase = PrefetchPhase.Segments\n heapResift(taskHeap, task)\n } else if (hasBackgroundWork) {\n // The task spawned additional background work. Reschedule the task\n // at background priority.\n task.priority = PrefetchPriority.Background\n heapResift(taskHeap, task)\n } else {\n // The prefetch is complete. Continue to the next task.\n heapPop(taskHeap)\n }\n task = heapPeek(taskHeap)\n continue\n default:\n exitStatus satisfies never\n }\n }\n}\n\n/**\n * Check this during a prefetch task to determine if background work can be\n * performed. If so, it evaluates to `true`. Otherwise, it returns `false`,\n * while also scheduling a background task to run later. Usage:\n *\n * @example\n * if (background(task)) {\n * // Perform background-pri work\n * }\n */\nfunction background(task: PrefetchTask): boolean {\n if (task.priority === PrefetchPriority.Background) {\n return true\n }\n task.hasBackgroundWork = true\n return false\n}\n\nfunction pingRoute(now: number, task: PrefetchTask): PrefetchTaskExitStatus {\n const key = task.key\n const route = readOrCreateRouteCacheEntry(now, task, key)\n const exitStatus = pingRootRouteTree(now, task, route)\n\n if (exitStatus !== PrefetchTaskExitStatus.InProgress && key.search !== '') {\n // If the URL has a non-empty search string, also prefetch the pathname\n // without the search string. We use the searchless route tree as a base for\n // optimistic routing; see requestOptimisticRouteCacheEntry for details.\n //\n // Note that we don't need to prefetch any of the segment data. Just the\n // route tree.\n //\n // TODO: This is a temporary solution; the plan is to replace this by adding\n // a wildcard lookup method to the TupleMap implementation. This is\n // non-trivial to implement because it needs to account for things like\n // fallback route entries, hence this temporary workaround.\n const url = new URL(key.pathname, location.origin)\n const keyWithoutSearch = createCacheKey(url.href, key.nextUrl)\n const routeWithoutSearch = readOrCreateRouteCacheEntry(\n now,\n task,\n keyWithoutSearch\n )\n switch (routeWithoutSearch.status) {\n case EntryStatus.Empty: {\n if (background(task)) {\n routeWithoutSearch.status = EntryStatus.Pending\n spawnPrefetchSubtask(\n fetchRouteOnCacheMiss(routeWithoutSearch, task, keyWithoutSearch)\n )\n }\n break\n }\n case EntryStatus.Pending:\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected: {\n // Either the route tree is already cached, or there's already a\n // request in progress. Since we don't need to fetch any segment data\n // for this route, there's nothing left to do.\n break\n }\n default:\n routeWithoutSearch satisfies never\n }\n }\n\n return exitStatus\n}\n\nfunction pingRootRouteTree(\n now: number,\n task: PrefetchTask,\n route: RouteCacheEntry\n): PrefetchTaskExitStatus {\n switch (route.status) {\n case EntryStatus.Empty: {\n // Route is not yet cached, and there's no request already in progress.\n // Spawn a task to request the route, load it into the cache, and ping\n // the task to continue.\n\n // TODO: There are multiple strategies in the API for prefetching\n // a route. Currently we've only implemented the main one: per-segment,\n // static-data only.\n //\n // There's also ``\n // which prefetch both static *and* dynamic data.\n // Similarly, we need to fallback to the old, per-page\n // behavior if PPR is disabled for a route (via the incremental opt-in).\n //\n // Those cases will be handled here.\n spawnPrefetchSubtask(fetchRouteOnCacheMiss(route, task, task.key))\n\n // If the request takes longer than a minute, a subsequent request should\n // retry instead of waiting for this one. When the response is received,\n // this value will be replaced by a new value based on the stale time sent\n // from the server.\n // TODO: We should probably also manually abort the fetch task, to reclaim\n // server bandwidth.\n route.staleAt = now + 60 * 1000\n\n // Upgrade to Pending so we know there's already a request in progress\n route.status = EntryStatus.Pending\n\n // Intentional fallthrough to the Pending branch\n }\n case EntryStatus.Pending: {\n // Still pending. We can't start prefetching the segments until the route\n // tree has loaded. Add the task to the set of blocked tasks so that it\n // is notified when the route tree is ready.\n const blockedTasks = route.blockedTasks\n if (blockedTasks === null) {\n route.blockedTasks = new Set([task])\n } else {\n blockedTasks.add(task)\n }\n return PrefetchTaskExitStatus.Blocked\n }\n case EntryStatus.Rejected: {\n // Route tree failed to load. Treat as a 404.\n return PrefetchTaskExitStatus.Done\n }\n case EntryStatus.Fulfilled: {\n if (task.phase !== PrefetchPhase.Segments) {\n // Do not prefetch segment data until we've entered the segment phase.\n return PrefetchTaskExitStatus.Done\n }\n // Recursively fill in the segment tree.\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n const tree = route.tree\n\n // A task's fetch strategy gets set to `PPR` for any \"auto\" prefetch.\n // If it turned out that the route isn't PPR-enabled, we need to use `LoadingBoundary` instead.\n // We don't need to do this for runtime prefetches, because those are only available in\n // `cacheComponents`, where every route is PPR.\n const fetchStrategy =\n task.fetchStrategy === FetchStrategy.PPR\n ? route.isPPREnabled\n ? FetchStrategy.PPR\n : FetchStrategy.LoadingBoundary\n : task.fetchStrategy\n\n switch (fetchStrategy) {\n case FetchStrategy.PPR: {\n // For Cache Components pages, each segment may be prefetched\n // statically or using a runtime request, based on various\n // configurations and heuristics. We'll do this in two passes: first\n // traverse the tree and perform all the static prefetches.\n //\n // Then, if there are any segments that need a runtime request,\n // do another pass to perform a runtime prefetch.\n pingStaticHead(now, task, route)\n const exitStatus = pingSharedPartOfCacheComponentsTree(\n now,\n task,\n route,\n task.treeAtTimeOfPrefetch,\n tree\n )\n if (exitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n const spawnedRuntimePrefetches = task.spawnedRuntimePrefetches\n if (spawnedRuntimePrefetches !== null) {\n // During the first pass, we discovered segments that require a\n // runtime prefetch. Do a second pass to construct a request tree.\n const spawnedEntries = new Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n >()\n pingRuntimeHead(\n now,\n task,\n route,\n spawnedEntries,\n FetchStrategy.PPRRuntime\n )\n const requestTree = pingRuntimePrefetches(\n now,\n task,\n route,\n tree,\n spawnedRuntimePrefetches,\n spawnedEntries\n )\n let needsDynamicRequest = spawnedEntries.size > 0\n if (needsDynamicRequest) {\n // Perform a dynamic prefetch request and populate the cache with\n // the result.\n spawnPrefetchSubtask(\n fetchSegmentPrefetchesUsingDynamicRequest(\n task,\n route,\n FetchStrategy.PPRRuntime,\n requestTree,\n spawnedEntries\n )\n )\n }\n }\n return PrefetchTaskExitStatus.Done\n }\n case FetchStrategy.Full:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.LoadingBoundary: {\n // Prefetch multiple segments using a single dynamic request.\n // TODO: We can consolidate this branch with previous one by modeling\n // it as if the first segment in the new tree has runtime prefetching\n // enabled. Will do this as a follow-up refactor. Might want to remove\n // the special metatdata case below first. In the meantime, it's not\n // really that much duplication, just would be nice to remove one of\n // these codepaths.\n const spawnedEntries = new Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n >()\n pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy)\n const dynamicRequestTree = diffRouteTreeAgainstCurrent(\n now,\n task,\n route,\n task.treeAtTimeOfPrefetch,\n tree,\n spawnedEntries,\n fetchStrategy\n )\n let needsDynamicRequest = spawnedEntries.size > 0\n if (needsDynamicRequest) {\n spawnPrefetchSubtask(\n fetchSegmentPrefetchesUsingDynamicRequest(\n task,\n route,\n fetchStrategy,\n dynamicRequestTree,\n spawnedEntries\n )\n )\n }\n return PrefetchTaskExitStatus.Done\n }\n default:\n fetchStrategy satisfies never\n }\n break\n }\n default: {\n route satisfies never\n }\n }\n return PrefetchTaskExitStatus.Done\n}\n\nfunction pingStaticHead(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry\n): void {\n // The Head data for a page (metadata, viewport) is not really a route\n // segment, in the sense that it doesn't appear in the route tree. But we\n // store it in the cache as if it were, using a special key.\n pingStaticSegmentData(\n now,\n task,\n route,\n readOrCreateSegmentCacheEntry(\n now,\n FetchStrategy.PPR,\n route,\n route.metadata\n ),\n task.key,\n route.metadata\n )\n}\n\nfunction pingRuntimeHead(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n spawnedEntries: Map,\n fetchStrategy:\n | FetchStrategy.Full\n | FetchStrategy.PPRRuntime\n | FetchStrategy.LoadingBoundary\n): void {\n pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n route.metadata,\n false,\n spawnedEntries,\n // When prefetching the head, there's no difference between Full\n // and LoadingBoundary\n fetchStrategy === FetchStrategy.LoadingBoundary\n ? FetchStrategy.Full\n : fetchStrategy\n )\n}\n\n// TODO: Rename dynamic -> runtime throughout this module\n\nfunction pingSharedPartOfCacheComponentsTree(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n oldTree: FlightRouterState,\n newTree: RouteTree\n): PrefetchTaskExitStatus {\n // When Cache Components is enabled (or PPR, or a fully static route when PPR\n // is disabled; those cases are treated equivalently to Cache Components), we\n // start by prefetching each segment individually. Once we reach the \"new\"\n // part of the tree — the part that doesn't exist on the current page — we\n // may choose to switch to a runtime prefetch instead, based on the\n // information sent by the server in the route tree.\n //\n // The traversal starts in the \"shared\" part of the tree. Once we reach the\n // \"new\" part of the tree, we switch to a different traversal,\n // pingNewPartOfCacheComponentsTree.\n\n // Prefetch this segment's static data.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n newTree\n )\n pingStaticSegmentData(now, task, route, segment, task.key, newTree)\n\n // Recursively ping the children.\n const oldTreeChildren = oldTree[1]\n const newTreeChildren = newTree.slots\n if (newTreeChildren !== null) {\n for (const parallelRouteKey in newTreeChildren) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n const newTreeChild = newTreeChildren[parallelRouteKey]\n const newTreeChildSegment = newTreeChild.segment\n const oldTreeChild: FlightRouterState | void =\n oldTreeChildren[parallelRouteKey]\n const oldTreeChildSegment: FlightRouterStateSegment | void =\n oldTreeChild?.[0]\n let childExitStatus\n if (\n oldTreeChildSegment !== undefined &&\n doesCurrentSegmentMatchCachedSegment(\n route,\n newTreeChildSegment,\n oldTreeChildSegment\n )\n ) {\n // We're still in the \"shared\" part of the tree.\n childExitStatus = pingSharedPartOfCacheComponentsTree(\n now,\n task,\n route,\n oldTreeChild,\n newTreeChild\n )\n } else {\n // We've entered the \"new\" part of the tree. Switch\n // traversal functions.\n childExitStatus = pingNewPartOfCacheComponentsTree(\n now,\n task,\n route,\n newTreeChild\n )\n }\n if (childExitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n }\n }\n\n return PrefetchTaskExitStatus.Done\n}\n\nfunction pingNewPartOfCacheComponentsTree(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): PrefetchTaskExitStatus.InProgress | PrefetchTaskExitStatus.Done {\n // We're now prefetching in the \"new\" part of the tree, the part that doesn't\n // exist on the current page. (In other words, we're deeper than the\n // shared layouts.) Segments in here default to being prefetched statically.\n // However, if the server instructs us to, we may switch to a runtime\n // prefetch instead. Traverse the tree and check at each segment.\n if (tree.hasRuntimePrefetch) {\n // This route has a runtime prefetch response. Since we're below the shared\n // layout, everything from this point should be prefetched using a single,\n // combined runtime request, rather than using per-segment static requests.\n // This is true even if some of the child segments are known to be fully\n // static — once we've decided to perform a runtime prefetch, we might as\n // well respond with the static segments in the same roundtrip. (That's how\n // regular navigations work, too.) We'll still skip over segments that are\n // already cached, though.\n //\n // It's the server's responsibility to set a reasonable value of\n // `hasRuntimePrefetch`. Currently it's user-defined, but eventually, the\n // server may send a value of `false` even if the user opts in, if it\n // determines during build that the route is always fully static. There are\n // more optimizations we can do once we implement fallback param\n // tracking, too.\n //\n // Use the task object to collect the segments that need a runtime prefetch.\n // This will signal to the outer task queue that a second traversal is\n // required to construct a request tree.\n if (task.spawnedRuntimePrefetches === null) {\n task.spawnedRuntimePrefetches = new Set([tree.requestKey])\n } else {\n task.spawnedRuntimePrefetches.add(tree.requestKey)\n }\n // Then exit the traversal without prefetching anything further.\n return PrefetchTaskExitStatus.Done\n }\n\n // This segment should not be runtime prefetched. Prefetch its static data.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n tree\n )\n pingStaticSegmentData(now, task, route, segment, task.key, tree)\n if (tree.slots !== null) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n // Recursively ping the children.\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n const childExitStatus = pingNewPartOfCacheComponentsTree(\n now,\n task,\n route,\n childTree\n )\n if (childExitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n }\n }\n // This segment and all its children have finished prefetching.\n return PrefetchTaskExitStatus.Done\n}\n\nfunction diffRouteTreeAgainstCurrent(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n oldTree: FlightRouterState,\n newTree: RouteTree,\n spawnedEntries: Map,\n fetchStrategy:\n | FetchStrategy.Full\n | FetchStrategy.PPRRuntime\n | FetchStrategy.LoadingBoundary\n): FlightRouterState {\n // This is a single recursive traversal that does multiple things:\n // - Finds the parts of the target route (newTree) that are not part of\n // of the current page (oldTree) by diffing them, using the same algorithm\n // as a real navigation.\n // - Constructs a request tree (FlightRouterState) that describes which\n // segments need to be prefetched and which ones are already cached.\n // - Creates a set of pending cache entries for the segments that need to\n // be prefetched, so that a subsequent prefetch task does not request the\n // same segments again.\n const oldTreeChildren = oldTree[1]\n const newTreeChildren = newTree.slots\n let requestTreeChildren: Record = {}\n if (newTreeChildren !== null) {\n for (const parallelRouteKey in newTreeChildren) {\n const newTreeChild = newTreeChildren[parallelRouteKey]\n const newTreeChildSegment = newTreeChild.segment\n const oldTreeChild: FlightRouterState | void =\n oldTreeChildren[parallelRouteKey]\n const oldTreeChildSegment: FlightRouterStateSegment | void =\n oldTreeChild?.[0]\n if (\n oldTreeChildSegment !== undefined &&\n doesCurrentSegmentMatchCachedSegment(\n route,\n newTreeChildSegment,\n oldTreeChildSegment\n )\n ) {\n // This segment is already part of the current route. Keep traversing.\n const requestTreeChild = diffRouteTreeAgainstCurrent(\n now,\n task,\n route,\n oldTreeChild,\n newTreeChild,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n } else {\n // This segment is not part of the current route. We're entering a\n // part of the tree that we need to prefetch (unless everything is\n // already cached).\n switch (fetchStrategy) {\n case FetchStrategy.LoadingBoundary: {\n // When PPR is disabled, we can't prefetch per segment. We must\n // fallback to the old prefetch behavior and send a dynamic request.\n // Only routes that include a loading boundary can be prefetched in\n // this way.\n //\n // This is simlar to a \"full\" prefetch, but we're much more\n // conservative about which segments to include in the request.\n //\n // The server will only render up to the first loading boundary\n // inside new part of the tree. If there's no loading boundary\n // anywhere in the tree, the server will never return any data, so\n // we can skip the request.\n const subtreeHasLoadingBoundary =\n newTreeChild.hasLoadingBoundary !==\n HasLoadingBoundary.SubtreeHasNoLoadingBoundary\n const requestTreeChild = subtreeHasLoadingBoundary\n ? pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now,\n task,\n route,\n newTreeChild,\n null,\n spawnedEntries\n )\n : // There's no loading boundary within this tree. Bail out.\n convertRouteTreeToFlightRouterState(newTreeChild)\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n case FetchStrategy.PPRRuntime: {\n // This is a runtime prefetch. Fetch all cacheable data in the tree,\n // not just the static PPR shell.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n newTreeChild,\n false,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n case FetchStrategy.Full: {\n // This is a \"full\" prefetch. Fetch all the data in the tree, both\n // static and dynamic. We issue roughly the same request that we\n // would during a real navigation. The goal is that once the\n // navigation occurs, the router should not have to fetch any\n // additional data.\n //\n // Although the response will include dynamic data, opting into a\n // Full prefetch — via — implicitly\n // instructs the cache to treat the response as \"static\", or non-\n // dynamic, since the whole point is to cache it for\n // future navigations.\n //\n // Construct a tree (currently a FlightRouterState) that represents\n // which segments need to be prefetched and which ones are already\n // cached. If the tree is empty, then we can exit. Otherwise, we'll\n // send the request tree to the server and use the response to\n // populate the segment cache.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n newTreeChild,\n false,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n default:\n fetchStrategy satisfies never\n }\n }\n }\n }\n const requestTree: FlightRouterState = [\n newTree.segment,\n requestTreeChildren,\n null,\n null,\n newTree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n refetchMarkerContext: 'refetch' | 'inside-shared-layout' | null,\n spawnedEntries: Map\n): FlightRouterState {\n // This function is similar to pingRouteTreeAndIncludeDynamicData, except the\n // server is only going to return a minimal loading state — it will stop\n // rendering at the first loading boundary. Whereas a Full prefetch is\n // intentionally aggressive and tries to pretfetch all the data that will be\n // needed for a navigation, a LoadingBoundary prefetch is much more\n // conservative. For example, it will omit from the request tree any segment\n // that is already cached, regardles of whether it's partial or full. By\n // contrast, a Full prefetch will refetch partial segments.\n\n // \"inside-shared-layout\" tells the server where to start looking for a\n // loading boundary.\n let refetchMarker: 'refetch' | 'inside-shared-layout' | null =\n refetchMarkerContext === null ? 'inside-shared-layout' : null\n\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n tree\n )\n switch (segment.status) {\n case EntryStatus.Empty: {\n // This segment is not cached. Add a refetch marker so the server knows\n // to start rendering here.\n // TODO: Instead of a \"refetch\" marker, we could just omit this subtree's\n // FlightRouterState from the request tree. I think this would probably\n // already work even without any updates to the server. For consistency,\n // though, I'll send the full tree and we'll look into this later as part\n // of a larger redesign of the request protocol.\n\n // Add the pending cache entry to the result map.\n spawnedEntries.set(\n tree.requestKey,\n upgradeToPendingSegment(\n segment,\n // Set the fetch strategy to LoadingBoundary to indicate that the server\n // might not include it in the pending response. If another route is able\n // to issue a per-segment request, we'll do that in the background.\n FetchStrategy.LoadingBoundary\n )\n )\n if (refetchMarkerContext !== 'refetch') {\n refetchMarker = refetchMarkerContext = 'refetch'\n } else {\n // There's already a parent with a refetch marker, so we don't need\n // to add another one.\n }\n break\n }\n case EntryStatus.Fulfilled: {\n // The segment is already cached.\n const segmentHasLoadingBoundary =\n tree.hasLoadingBoundary === HasLoadingBoundary.SegmentHasLoadingBoundary\n if (segmentHasLoadingBoundary) {\n // This segment has a loading boundary, which means the server won't\n // render its children. So there's nothing left to prefetch along this\n // path. We can bail out.\n return convertRouteTreeToFlightRouterState(tree)\n }\n // NOTE: If the cached segment were fetched using PPR, then it might be\n // partial. We could get a more complete version of the segment by\n // including it in this non-PPR request.\n //\n // We're intentionally choosing not to, though, because it's generally\n // better to avoid doing a full prefetch whenever possible.\n break\n }\n case EntryStatus.Pending: {\n // There's another prefetch currently in progress. Don't add the refetch\n // marker yet, so the server knows it can skip rendering this segment.\n break\n }\n case EntryStatus.Rejected: {\n // The segment failed to load. We shouldn't issue another request until\n // the stale time has elapsed.\n break\n }\n default:\n segment satisfies never\n }\n const requestTreeChildren: Record = {}\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] =\n pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now,\n task,\n route,\n childTree,\n refetchMarkerContext,\n spawnedEntries\n )\n }\n }\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker,\n tree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingRouteTreeAndIncludeDynamicData(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n isInsideRefetchingParent: boolean,\n spawnedEntries: Map,\n fetchStrategy: FetchStrategy.Full | FetchStrategy.PPRRuntime\n): FlightRouterState {\n // The tree we're constructing is the same shape as the tree we're navigating\n // to. But even though this is a \"new\" tree, some of the individual segments\n // may be cached as a result of other route prefetches.\n //\n // So we need to find the first uncached segment along each path add an\n // explicit \"refetch\" marker so the server knows where to start rendering.\n // Once the server starts rendering along a path, it keeps rendering the\n // entire subtree.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n // Note that `fetchStrategy` might be different from `task.fetchStrategy`,\n // and we have to use the former here.\n // We can have a task with `FetchStrategy.PPR` where some of its segments are configured to\n // always use runtime prefetching (via `export const prefetch`), and those should check for\n // entries that include search params.\n fetchStrategy,\n route,\n tree\n )\n\n let spawnedSegment: PendingSegmentCacheEntry | null = null\n\n switch (segment.status) {\n case EntryStatus.Empty: {\n // This segment is not cached. Include it in the request.\n spawnedSegment = upgradeToPendingSegment(segment, fetchStrategy)\n break\n }\n case EntryStatus.Fulfilled: {\n // The segment is already cached.\n if (\n segment.isPartial &&\n canNewFetchStrategyProvideMoreContent(\n segment.fetchStrategy,\n fetchStrategy\n )\n ) {\n // The cached segment contains dynamic holes, and was prefetched using a less specific strategy than the current one.\n // This means we're in one of these cases:\n // - we have a static prefetch, and we're doing a runtime prefetch\n // - we have a static or runtime prefetch, and we're doing a Full prefetch (or a navigation).\n // In either case, we need to include it in the request to get a more specific (or full) version.\n spawnedSegment = pingFullSegmentRevalidation(\n now,\n route,\n tree,\n fetchStrategy\n )\n }\n break\n }\n case EntryStatus.Pending:\n case EntryStatus.Rejected: {\n // There's either another prefetch currently in progress, or the previous\n // attempt failed. If the new strategy can provide more content, fetch it again.\n if (\n canNewFetchStrategyProvideMoreContent(\n segment.fetchStrategy,\n fetchStrategy\n )\n ) {\n spawnedSegment = pingFullSegmentRevalidation(\n now,\n route,\n tree,\n fetchStrategy\n )\n }\n break\n }\n default:\n segment satisfies never\n }\n const requestTreeChildren: Record = {}\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] =\n pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n childTree,\n isInsideRefetchingParent || spawnedSegment !== null,\n spawnedEntries,\n fetchStrategy\n )\n }\n }\n\n if (spawnedSegment !== null) {\n // Add the pending entry to the result map.\n spawnedEntries.set(tree.requestKey, spawnedSegment)\n }\n\n // Don't bother to add a refetch marker if one is already present in a parent.\n const refetchMarker =\n !isInsideRefetchingParent && spawnedSegment !== null ? 'refetch' : null\n\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker,\n tree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingRuntimePrefetches(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n spawnedRuntimePrefetches: Set,\n spawnedEntries: Map\n): FlightRouterState {\n // Construct a request tree (FlightRouterState) for a runtime prefetch. If\n // a segment is part of the runtime prefetch, the tree is constructed by\n // diffing against what's already in the prefetch cache. Otherwise, we send\n // a regular FlightRouterState with no special markers.\n //\n // See pingRouteTreeAndIncludeDynamicData for details.\n if (spawnedRuntimePrefetches.has(tree.requestKey)) {\n // This segment needs a runtime prefetch.\n return pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n tree,\n false,\n spawnedEntries,\n FetchStrategy.PPRRuntime\n )\n }\n let requestTreeChildren: Record = {}\n const slots = tree.slots\n if (slots !== null) {\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] = pingRuntimePrefetches(\n now,\n task,\n route,\n childTree,\n spawnedRuntimePrefetches,\n spawnedEntries\n )\n }\n }\n\n // This segment is not part of the runtime prefetch. Clone the base tree.\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n null,\n ]\n return requestTree\n}\n\nfunction pingStaticSegmentData(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n segment: SegmentCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): void {\n switch (segment.status) {\n case EntryStatus.Empty:\n // Upgrade to Pending so we know there's already a request in progress\n spawnPrefetchSubtask(\n fetchSegmentOnCacheMiss(\n route,\n upgradeToPendingSegment(segment, FetchStrategy.PPR),\n routeKey,\n tree\n )\n )\n break\n case EntryStatus.Pending: {\n // There's already a request in progress. Depending on what kind of\n // request it is, we may want to revalidate it.\n switch (segment.fetchStrategy) {\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n // There's already a request in progress. Don't do anything.\n break\n case FetchStrategy.LoadingBoundary:\n // There's a pending request, but because it's using the old\n // prefetching strategy, we can't be sure if it will be fulfilled by\n // the response — it might be inside the loading boundary. Perform\n // a revalidation, but because it's speculative, wait to do it at\n // background priority.\n if (background(task)) {\n // TODO: Instead of speculatively revalidating, consider including\n // `hasLoading` in the route tree prefetch response.\n pingPPRSegmentRevalidation(now, route, routeKey, tree)\n }\n break\n default:\n segment.fetchStrategy satisfies never\n }\n break\n }\n case EntryStatus.Rejected: {\n // The existing entry in the cache was rejected. Depending on how it\n // was originally fetched, we may or may not want to revalidate it.\n switch (segment.fetchStrategy) {\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n // The previous attempt to fetch this entry failed. Don't attempt to\n // fetch it again until the entry expires.\n break\n case FetchStrategy.LoadingBoundary:\n // There's a rejected entry, but it was fetched using the loading\n // boundary strategy. So the reason it wasn't returned by the server\n // might just be because it was inside a loading boundary. Or because\n // there was a dynamic rewrite. Revalidate it using the per-\n // segment strategy.\n //\n // Because a rejected segment will definitely prevent the segment (and\n // all of its children) from rendering, we perform this revalidation\n // immediately instead of deferring it to a background task.\n pingPPRSegmentRevalidation(now, route, routeKey, tree)\n break\n default:\n segment.fetchStrategy satisfies never\n }\n break\n }\n case EntryStatus.Fulfilled:\n // Segment is already cached. There's nothing left to prefetch.\n break\n default:\n segment satisfies never\n }\n\n // Segments do not have dependent tasks, so once the prefetch is initiated,\n // there's nothing else for us to do (except write the server data into the\n // entry, which is handled by `fetchSegmentOnCacheMiss`).\n}\n\nfunction pingPPRSegmentRevalidation(\n now: number,\n route: FulfilledRouteCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): void {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(\n now,\n FetchStrategy.PPR,\n route,\n tree\n )\n switch (revalidatingSegment.status) {\n case EntryStatus.Empty:\n // Spawn a prefetch request and upsert the segment into the cache\n // upon completion.\n upsertSegmentOnCompletion(\n spawnPrefetchSubtask(\n fetchSegmentOnCacheMiss(\n route,\n upgradeToPendingSegment(revalidatingSegment, FetchStrategy.PPR),\n routeKey,\n tree\n )\n ),\n getSegmentVaryPathForRequest(FetchStrategy.PPR, tree)\n )\n break\n case EntryStatus.Pending:\n // There's already a revalidation in progress.\n break\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n break\n default:\n revalidatingSegment satisfies never\n }\n}\n\nfunction pingFullSegmentRevalidation(\n now: number,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n fetchStrategy: FetchStrategy.Full | FetchStrategy.PPRRuntime\n): PendingSegmentCacheEntry | null {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(\n now,\n fetchStrategy,\n route,\n tree\n )\n if (revalidatingSegment.status === EntryStatus.Empty) {\n // During a Full/PPRRuntime prefetch, a single dynamic request is made for all the\n // segments that we need. So we don't initiate a request here directly. By\n // returning a pending entry from this function, it signals to the caller\n // that this segment should be included in the request that's sent to\n // the server.\n const pendingSegment = upgradeToPendingSegment(\n revalidatingSegment,\n fetchStrategy\n )\n upsertSegmentOnCompletion(\n waitForSegmentCacheEntry(pendingSegment),\n getSegmentVaryPathForRequest(fetchStrategy, tree)\n )\n return pendingSegment\n } else {\n // There's already a revalidation in progress.\n const nonEmptyRevalidatingSegment = revalidatingSegment\n if (\n canNewFetchStrategyProvideMoreContent(\n nonEmptyRevalidatingSegment.fetchStrategy,\n fetchStrategy\n )\n ) {\n // The existing revalidation was fetched using a less specific strategy.\n // Reset it and start a new revalidation.\n const emptySegment = overwriteRevalidatingSegmentCacheEntry(\n fetchStrategy,\n route,\n tree\n )\n const pendingSegment = upgradeToPendingSegment(\n emptySegment,\n fetchStrategy\n )\n upsertSegmentOnCompletion(\n waitForSegmentCacheEntry(pendingSegment),\n getSegmentVaryPathForRequest(fetchStrategy, tree)\n )\n return pendingSegment\n }\n switch (nonEmptyRevalidatingSegment.status) {\n case EntryStatus.Pending:\n // There's already an in-progress prefetch that includes this segment.\n return null\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n return null\n default:\n nonEmptyRevalidatingSegment satisfies never\n return null\n }\n }\n}\n\nconst noop = () => {}\n\nfunction upsertSegmentOnCompletion(\n promise: Promise,\n varyPath: SegmentVaryPath\n) {\n // Wait for a segment to finish loading, then upsert it into the cache\n promise.then((fulfilled) => {\n if (fulfilled !== null) {\n // Received new data. Attempt to replace the existing entry in the cache.\n upsertSegmentEntry(Date.now(), varyPath, fulfilled)\n }\n }, noop)\n}\n\nfunction doesCurrentSegmentMatchCachedSegment(\n route: FulfilledRouteCacheEntry,\n currentSegment: Segment,\n cachedSegment: Segment\n): boolean {\n if (cachedSegment === PAGE_SEGMENT_KEY) {\n // In the FlightRouterState stored by the router, the page segment has the\n // rendered search params appended to the name of the segment. In the\n // prefetch cache, however, this is stored separately. So, when comparing\n // the router's current FlightRouterState to the cached FlightRouterState,\n // we need to make sure we compare both parts of the segment.\n // TODO: This is not modeled clearly. We use the same type,\n // FlightRouterState, for both the CacheNode tree _and_ the prefetch cache\n // _and_ the server response format, when conceptually those are three\n // different things and treated in different ways. We should encode more of\n // this information into the type design so mistakes are less likely.\n return (\n currentSegment ===\n addSearchParamsIfPageSegment(\n PAGE_SEGMENT_KEY,\n Object.fromEntries(new URLSearchParams(route.renderedSearch))\n )\n )\n }\n // Non-page segments are compared using the same function as the server\n return matchSegment(cachedSegment, currentSegment)\n}\n\n// -----------------------------------------------------------------------------\n// The remainder of the module is a MinHeap implementation. Try not to put any\n// logic below here unless it's related to the heap algorithm. We can extract\n// this to a separate module if/when we need multiple kinds of heaps.\n// -----------------------------------------------------------------------------\n\nfunction compareQueuePriority(a: PrefetchTask, b: PrefetchTask) {\n // Since the queue is a MinHeap, this should return a positive number if b is\n // higher priority than a, and a negative number if a is higher priority\n // than b.\n\n // `priority` is an integer, where higher numbers are higher priority.\n const priorityDiff = b.priority - a.priority\n if (priorityDiff !== 0) {\n return priorityDiff\n }\n\n // If the priority is the same, check which phase the prefetch is in — is it\n // prefetching the route tree, or the segments? Route trees are prioritized.\n const phaseDiff = b.phase - a.phase\n if (phaseDiff !== 0) {\n return phaseDiff\n }\n\n // Finally, check the insertion order. `sortId` is an incrementing counter\n // assigned to prefetches. We want to process the newest prefetches first.\n return b.sortId - a.sortId\n}\n\nfunction heapPush(heap: Array, node: PrefetchTask): void {\n const index = heap.length\n heap.push(node)\n node._heapIndex = index\n heapSiftUp(heap, node, index)\n}\n\nfunction heapPeek(heap: Array): PrefetchTask | null {\n return heap.length === 0 ? null : heap[0]\n}\n\nfunction heapPop(heap: Array): PrefetchTask | null {\n if (heap.length === 0) {\n return null\n }\n const first = heap[0]\n first._heapIndex = -1\n const last = heap.pop() as PrefetchTask\n if (last !== first) {\n heap[0] = last\n last._heapIndex = 0\n heapSiftDown(heap, last, 0)\n }\n return first\n}\n\nfunction heapDelete(heap: Array, node: PrefetchTask): void {\n const index = node._heapIndex\n if (index !== -1) {\n node._heapIndex = -1\n if (heap.length !== 0) {\n const last = heap.pop() as PrefetchTask\n if (last !== node) {\n heap[index] = last\n last._heapIndex = index\n heapSiftDown(heap, last, index)\n }\n }\n }\n}\n\nfunction heapResift(heap: Array, node: PrefetchTask): void {\n const index = node._heapIndex\n if (index !== -1) {\n if (index === 0) {\n heapSiftDown(heap, node, 0)\n } else {\n const parentIndex = (index - 1) >>> 1\n const parent = heap[parentIndex]\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Sift up.\n heapSiftUp(heap, node, index)\n } else {\n // The parent is smaller (or equal). Sift down.\n heapSiftDown(heap, node, index)\n }\n }\n }\n}\n\nfunction heapSiftUp(\n heap: Array,\n node: PrefetchTask,\n i: number\n): void {\n let index = i\n while (index > 0) {\n const parentIndex = (index - 1) >>> 1\n const parent = heap[parentIndex]\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Swap positions.\n heap[parentIndex] = node\n node._heapIndex = parentIndex\n heap[index] = parent\n parent._heapIndex = index\n\n index = parentIndex\n } else {\n // The parent is smaller. Exit.\n return\n }\n }\n}\n\nfunction heapSiftDown(\n heap: Array,\n node: PrefetchTask,\n i: number\n): void {\n let index = i\n const length = heap.length\n const halfLength = length >>> 1\n while (index < halfLength) {\n const leftIndex = (index + 1) * 2 - 1\n const left = heap[leftIndex]\n const rightIndex = leftIndex + 1\n const right = heap[rightIndex]\n\n // If the left or right node is smaller, swap with the smaller of those.\n if (compareQueuePriority(left, node) < 0) {\n if (rightIndex < length && compareQueuePriority(right, left) < 0) {\n heap[index] = right\n right._heapIndex = index\n heap[rightIndex] = node\n node._heapIndex = rightIndex\n\n index = rightIndex\n } else {\n heap[index] = left\n left._heapIndex = index\n heap[leftIndex] = node\n node._heapIndex = leftIndex\n\n index = leftIndex\n }\n } else if (rightIndex < length && compareQueuePriority(right, node) < 0) {\n heap[index] = right\n right._heapIndex = index\n heap[rightIndex] = node\n node._heapIndex = rightIndex\n\n index = rightIndex\n } else {\n // Neither child is smaller. Exit.\n return\n }\n }\n}\n"],"names":["HasLoadingBoundary","matchSegment","readOrCreateRouteCacheEntry","readOrCreateSegmentCacheEntry","fetchRouteOnCacheMiss","fetchSegmentOnCacheMiss","EntryStatus","fetchSegmentPrefetchesUsingDynamicRequest","convertRouteTreeToFlightRouterState","readOrCreateRevalidatingSegmentEntry","upsertSegmentEntry","upgradeToPendingSegment","waitForSegmentCacheEntry","overwriteRevalidatingSegmentCacheEntry","canNewFetchStrategyProvideMoreContent","getSegmentVaryPathForRequest","createCacheKey","FetchStrategy","PrefetchPriority","getCurrentCacheVersion","addSearchParamsIfPageSegment","PAGE_SEGMENT_KEY","scheduleMicrotask","queueMicrotask","fn","Promise","resolve","then","catch","error","setTimeout","taskHeap","inProgressRequests","sortIdCounter","didScheduleMicrotask","mostRecentlyHoveredLink","REVALIDATION_COOLDOWN_MS","revalidationCooldownTimeoutHandle","startRevalidationCooldown","clearTimeout","ensureWorkIsScheduled","schedulePrefetchTask","key","treeAtTimeOfPrefetch","fetchStrategy","priority","onInvalidate","task","cacheVersion","phase","hasBackgroundWork","spawnedRuntimePrefetches","sortId","isCanceled","_heapIndex","trackMostRecentlyHoveredLink","heapPush","cancelPrefetchTask","heapDelete","reschedulePrefetchTask","Intent","heapResift","isPrefetchTaskDirty","nextUrl","tree","currentCacheVersion","Background","Default","processQueueInMicrotask","hasNetworkBandwidth","spawnPrefetchSubtask","prefetchSubtask","result","onPrefetchConnectionClosed","closed","value","pingPrefetchTask","now","Date","heapPeek","exitStatus","pingRoute","heapPop","background","route","pingRootRouteTree","search","url","URL","pathname","location","origin","keyWithoutSearch","href","routeWithoutSearch","status","Empty","Pending","Fulfilled","Rejected","staleAt","blockedTasks","Set","add","PPR","isPPREnabled","LoadingBoundary","pingStaticHead","pingSharedPartOfCacheComponentsTree","spawnedEntries","Map","pingRuntimeHead","PPRRuntime","requestTree","pingRuntimePrefetches","needsDynamicRequest","size","Full","dynamicRequestTree","diffRouteTreeAgainstCurrent","pingStaticSegmentData","metadata","pingRouteTreeAndIncludeDynamicData","oldTree","newTree","segment","oldTreeChildren","newTreeChildren","slots","parallelRouteKey","newTreeChild","newTreeChildSegment","oldTreeChild","oldTreeChildSegment","childExitStatus","undefined","doesCurrentSegmentMatchCachedSegment","pingNewPartOfCacheComponentsTree","hasRuntimePrefetch","requestKey","childTree","requestTreeChildren","requestTreeChild","subtreeHasLoadingBoundary","hasLoadingBoundary","SubtreeHasNoLoadingBoundary","pingPPRDisabledRouteTreeUpToLoadingBoundary","isRootLayout","refetchMarkerContext","refetchMarker","set","segmentHasLoadingBoundary","SegmentHasLoadingBoundary","isInsideRefetchingParent","spawnedSegment","isPartial","pingFullSegmentRevalidation","has","routeKey","pingPPRSegmentRevalidation","revalidatingSegment","upsertSegmentOnCompletion","pendingSegment","nonEmptyRevalidatingSegment","emptySegment","noop","promise","varyPath","fulfilled","currentSegment","cachedSegment","Object","fromEntries","URLSearchParams","renderedSearch","compareQueuePriority","a","b","priorityDiff","phaseDiff","heap","node","index","length","push","heapSiftUp","first","last","pop","heapSiftDown","parentIndex","parent","i","halfLength","leftIndex","left","rightIndex","right"],"mappings":";;;;;;;;;;;;;;AAKA,SAASA,kBAAkB,QAAQ,uCAAsC;AACzE,SAASC,YAAY,QAAQ,oBAAmB;AAChD,SACEC,2BAA2B,EAC3BC,6BAA6B,EAC7BC,qBAAqB,EACrBC,uBAAuB,EACvBC,WAAW,EAKXC,yCAAyC,EAEzCC,mCAAmC,EACnCC,oCAAoC,EACpCC,kBAAkB,EAElBC,uBAAuB,EACvBC,wBAAwB,EACxBC,sCAAsC,EACtCC,qCAAqC,QAChC,UAAS;AAChB,SAASC,4BAA4B,QAA8B,cAAa;AAEhF,SAASC,cAAc,QAAQ,cAAa;AAC5C,SACEC,aAAa,EAEbC,gBAAgB,QACX,UAAS;AAEhB,SACEE,4BAA4B,EAC5BC,gBAAgB,QACX,8BAA6B;;;;;;;;;AAGpC,MAAMC,oBACJ,OAAOC,mBAAmB,aACtBA,iBACA,CAACC,KACCC,QAAQC,OAAO,GACZC,IAAI,CAACH,IACLI,KAAK,CAAC,CAACC,QACNC,WAAW;YACT,MAAMD;QACR;AAsIZ,MAAME,WAAgC,EAAE;AAExC,IAAIC,qBAAqB;AAEzB,IAAIC,gBAAgB;AACpB,IAAIC,uBAAuB;AAE3B,8EAA8E;AAC9E,0EAA0E;AAC1E,+EAA+E;AAC/E,IAAIC,0BAA+C;AAEnD,mEAAmE;AACnE,MAAMC,2BAA2B;AAEjC,wEAAwE;AACxE,uDAAuD;AACvD,IAAIC,oCACF;AAMK,SAASC;IACd,mEAAmE;IACnE,uBAAuB;IACvB,IAAID,sCAAsC,MAAM;QAC9CE,aAAaF;IACf;IAEA,mDAAmD;IACnDA,oCAAoCP,WAAW;QAC7CO,oCAAoC;QACpC,8DAA8D;QAC9DG;IACF,GAAGJ;AACL;AAgBO,SAASK,qBACdC,GAAkB,EAClBC,oBAAuC,EACvCC,aAAwC,EACxCC,QAA0B,EAC1BC,YAAiC;IAEjC,4BAA4B;IAC5B,MAAMC,OAAqB;QACzBL;QACAC;QACAK,kBAAc7B,kNAAAA;QACd0B;QACAI,KAAK,EAAA;QACLC,mBAAmB;QACnBC,0BAA0B;QAC1BP;QACAQ,QAAQnB;QACRoB,YAAY;QACZP;QACAQ,YAAY,CAAC;IACf;IAEAC,6BAA6BR;IAE7BS,SAASzB,UAAUgB;IAEnB,+CAA+C;IAC/C,EAAE;IACF,yEAAyE;IACzE,yEAAyE;IACzE,2EAA2E;IAC3E,2EAA2E;IAC3E,qBAAqB;IACrBP;IAEA,OAAOO;AACT;AAEO,SAASU,mBAAmBV,IAAkB;IACnD,0EAA0E;IAC1E,wBAAwB;IACxB,EAAE;IACF,2EAA2E;IAC3E,wEAAwE;IACxEA,KAAKM,UAAU,GAAG;IAClBK,WAAW3B,UAAUgB;AACvB;AAEO,SAASY,uBACdZ,IAAkB,EAClBJ,oBAAuC,EACvCC,aAAwC,EACxCC,QAA0B;IAE1B,wEAAwE;IACxE,0EAA0E;IAC1E,mDAAmD;IACnD,EAAE;IACF,sEAAsE;IACtE,qBAAqB;IAErB,0DAA0D;IAC1DE,KAAKM,UAAU,GAAG;IAClBN,KAAKE,KAAK,GAAA;IAEV,uEAAuE;IACvE,yDAAyD;IACzDF,KAAKK,MAAM,GAAGnB;IACdc,KAAKF,QAAQ,GAEX,AADA,8DAC8D,CADC;IAE/DE,SAASZ,0BAA0BjB,4MAAAA,CAAiB0C,MAAM,GAAGf;IAE/DE,KAAKJ,oBAAoB,GAAGA;IAC5BI,KAAKH,aAAa,GAAGA;IAErBW,6BAA6BR;IAE7B,IAAIA,KAAKO,UAAU,KAAK,CAAC,GAAG;QAC1B,oCAAoC;QACpCO,WAAW9B,UAAUgB;IACvB,OAAO;QACLS,SAASzB,UAAUgB;IACrB;IACAP;AACF;AAEO,SAASsB,oBACdf,IAAkB,EAClBgB,OAAsB,EACtBC,IAAuB;IAEvB,uEAAuE;IACvE,uEAAuE;IACvE,2EAA2E;IAC3E,uEAAuE;IACvE,2BAA2B;IAC3B,MAAMC,0BAAsB9C,kNAAAA;IAC5B,OACE4B,KAAKC,YAAY,KAAKiB,uBACtBlB,KAAKJ,oBAAoB,KAAKqB,QAC9BjB,KAAKL,GAAG,CAACqB,OAAO,KAAKA;AAEzB;AAEA,SAASR,6BAA6BR,IAAkB;IACtD,2EAA2E;IAC3E,uEAAuE;IACvE,IACEA,KAAKF,QAAQ,KAAK3B,4MAAAA,CAAiB0C,MAAM,IACzCb,SAASZ,yBACT;QACA,IAAIA,4BAA4B,MAAM;YACpC,+DAA+D;YAC/D,IAAIA,wBAAwBU,QAAQ,KAAK3B,4MAAAA,CAAiBgD,UAAU,EAAE;gBACpE/B,wBAAwBU,QAAQ,GAAG3B,4MAAAA,CAAiBiD,OAAO;gBAC3DN,WAAW9B,UAAUI;YACvB;QACF;QACAA,0BAA0BY;IAC5B;AACF;AAEA,SAASP;IACP,IAAIN,sBAAsB;QACxB,gDAAgD;QAChD;IACF;IACAA,uBAAuB;IACvBZ,kBAAkB8C;AACpB;AAEA;;;;;;;;CAQC,GACD,SAASC,oBAAoBtB,IAAkB;IAC7C,yDAAyD;IACzD,IAAIV,sCAAsC,MAAM;QAC9C,yEAAyE;QACzE,2EAA2E;QAC3E,sBAAsB;QACtB,OAAO;IACT;IAEA,yEAAyE;IACzE,wEAAwE;IACxE,2EAA2E;IAC3E,sBAAsB;IAEtB,2EAA2E;IAE3E,IAAIU,KAAKF,QAAQ,KAAK3B,4MAAAA,CAAiB0C,MAAM,EAAE;QAC7C,yEAAyE;QACzE,EAAE;QACF,sEAAsE;QACtE,qCAAqC;QACrC,EAAE;QACF,4EAA4E;QAC5E,0EAA0E;QAC1E,iEAAiE;QACjE,OAAO5B,qBAAqB;IAC9B;IAEA,gEAAgE;IAChE,OAAOA,qBAAqB;AAC9B;AAEA,SAASsC,qBACPC,eAAyD;IAEzD,sEAAsE;IACtE,0EAA0E;IAC1E,mCAAmC;IACnC,EAAE;IACF,wEAAwE;IACxE,2EAA2E;IAC3E,yEAAyE;IACzE,2EAA2E;IAC3E,kDAAkD;IAClDvC;IACA,OAAOuC,gBAAgB5C,IAAI,CAAC,CAAC6C;QAC3B,IAAIA,WAAW,MAAM;YACnB,iEAAiE;YACjE,mDAAmD;YACnDC;YACA,OAAO;QACT;QACA,qEAAqE;QACrED,OAAOE,MAAM,CAAC/C,IAAI,CAAC8C;QACnB,OAAOD,OAAOG,KAAK;IACrB;AACF;AAEA,SAASF;IACPzC;IAEA,qEAAqE;IACrE,oBAAoB;IACpBQ;AACF;AAOO,SAASoC,iBAAiB7B,IAAkB;IACjD,yEAAyE;IACzE,IACE,AACAA,KAAKM,UAAU,IACf,eAFkC,wBAEK;IACvCN,KAAKO,UAAU,KAAK,CAAC,GACrB;QACA;IACF;IACA,kCAAkC;IAClCE,SAASzB,UAAUgB;IACnBP;AACF;AAEA,SAAS4B;IACPlC,uBAAuB;IAEvB,0EAA0E;IAC1E,4EAA4E;IAC5E,wDAAwD;IACxD,MAAM2C,MAAMC,KAAKD,GAAG;IAEpB,gEAAgE;IAChE,IAAI9B,OAAOgC,SAAShD;IACpB,MAAOgB,SAAS,QAAQsB,oBAAoBtB,MAAO;QACjDA,KAAKC,YAAY,OAAG7B,kNAAAA;QAEpB,MAAM6D,aAAaC,UAAUJ,KAAK9B;QAElC,0EAA0E;QAC1E,+BAA+B;QAC/B,MAAMG,oBAAoBH,KAAKG,iBAAiB;QAChDH,KAAKG,iBAAiB,GAAG;QACzBH,KAAKI,wBAAwB,GAAG;QAEhC,OAAQ6B;YACN,KAAA;gBACE,oEAAoE;gBACpE,sDAAsD;gBACtD;YACF,KAAA;gBACE,iEAAiE;gBACjE,4DAA4D;gBAC5DE,QAAQnD;gBACR,4BAA4B;gBAC5BgB,OAAOgC,SAAShD;gBAChB;YACF,KAAA;gBACE,IAAIgB,KAAKE,KAAK,KAAA,GAA8B;oBAC1C,8DAA8D;oBAC9D,gBAAgB;oBAChBF,KAAKE,KAAK,GAAA;oBACVY,WAAW9B,UAAUgB;gBACvB,OAAO,IAAIG,mBAAmB;oBAC5B,mEAAmE;oBACnE,0BAA0B;oBAC1BH,KAAKF,QAAQ,GAAG3B,4MAAAA,CAAiBgD,UAAU;oBAC3CL,WAAW9B,UAAUgB;gBACvB,OAAO;oBACL,uDAAuD;oBACvDmC,QAAQnD;gBACV;gBACAgB,OAAOgC,SAAShD;gBAChB;YACF;gBACEiD;QACJ;IACF;AACF;AAEA;;;;;;;;;CASC,GACD,SAASG,WAAWpC,IAAkB;IACpC,IAAIA,KAAKF,QAAQ,KAAK3B,4MAAAA,CAAiBgD,UAAU,EAAE;QACjD,OAAO;IACT;IACAnB,KAAKG,iBAAiB,GAAG;IACzB,OAAO;AACT;AAEA,SAAS+B,UAAUJ,GAAW,EAAE9B,IAAkB;IAChD,MAAML,MAAMK,KAAKL,GAAG;IACpB,MAAM0C,YAAQlF,uNAAAA,EAA4B2E,KAAK9B,MAAML;IACrD,MAAMsC,aAAaK,kBAAkBR,KAAK9B,MAAMqC;IAEhD,IAAIJ,eAAAA,KAAoDtC,IAAI4C,MAAM,KAAK,IAAI;QACzE,uEAAuE;QACvE,4EAA4E;QAC5E,wEAAwE;QACxE,EAAE;QACF,wEAAwE;QACxE,cAAc;QACd,EAAE;QACF,4EAA4E;QAC5E,mEAAmE;QACnE,uEAAuE;QACvE,2DAA2D;QAC3D,MAAMC,MAAM,IAAIC,IAAI9C,IAAI+C,QAAQ,EAAEC,SAASC,MAAM;QACjD,MAAMC,uBAAmB5E,iNAAAA,EAAeuE,IAAIM,IAAI,EAAEnD,IAAIqB,OAAO;QAC7D,MAAM+B,yBAAqB5F,uNAAAA,EACzB2E,KACA9B,MACA6C;QAEF,OAAQE,mBAAmBC,MAAM;YAC/B,KAAKzF,uMAAAA,CAAY0F,KAAK;gBAAE;oBACtB,IAAIb,WAAWpC,OAAO;wBACpB+C,mBAAmBC,MAAM,GAAGzF,uMAAAA,CAAY2F,OAAO;wBAC/C3B,yBACElE,iNAAAA,EAAsB0F,oBAAoB/C,MAAM6C;oBAEpD;oBACA;gBACF;YACA,KAAKtF,uMAAAA,CAAY2F,OAAO;YACxB,KAAK3F,uMAAAA,CAAY4F,SAAS;YAC1B,KAAK5F,uMAAAA,CAAY6F,QAAQ;gBAAE;oBAIzB;gBACF;YACA;gBACEL;QACJ;IACF;IAEA,OAAOd;AACT;AAEA,SAASK,kBACPR,GAAW,EACX9B,IAAkB,EAClBqC,KAAsB;IAEtB,OAAQA,MAAMW,MAAM;QAClB,KAAKzF,uMAAAA,CAAY0F,KAAK;YAAE;gBACtB,uEAAuE;gBACvE,sEAAsE;gBACtE,wBAAwB;gBAExB,wEAAwE;gBACxE,uEAAuE;gBACvE,oBAAoB;gBACpB,EAAE;gBACF,wCAAwC;gBACxC,iDAAiD;gBACjD,sDAAsD;gBACtD,wEAAwE;gBACxE,EAAE;gBACF,oCAAoC;gBACpC1B,yBAAqBlE,iNAAAA,EAAsBgF,OAAOrC,MAAMA,KAAKL,GAAG;gBAEhE,yEAAyE;gBACzE,wEAAwE;gBACxE,0EAA0E;gBAC1E,mBAAmB;gBACnB,0EAA0E;gBAC1E,oBAAoB;gBACpB0C,MAAMgB,OAAO,GAAGvB,MAAM,KAAK;gBAE3B,sEAAsE;gBACtEO,MAAMW,MAAM,GAAGzF,uMAAAA,CAAY2F,OAAO;YAElC,gDAAgD;YAClD;QACA,KAAK3F,uMAAAA,CAAY2F,OAAO;YAAE;gBACxB,yEAAyE;gBACzE,uEAAuE;gBACvE,4CAA4C;gBAC5C,MAAMI,eAAejB,MAAMiB,YAAY;gBACvC,IAAIA,iBAAiB,MAAM;oBACzBjB,MAAMiB,YAAY,GAAG,IAAIC,IAAI;wBAACvD;qBAAK;gBACrC,OAAO;oBACLsD,aAAaE,GAAG,CAACxD;gBACnB;gBACA,OAAA;YACF;QACA,KAAKzC,uMAAAA,CAAY6F,QAAQ;YAAE;gBACzB,6CAA6C;gBAC7C,OAAA;YACF;QACA,KAAK7F,uMAAAA,CAAY4F,SAAS;YAAE;gBAC1B,IAAInD,KAAKE,KAAK,KAAA,GAA6B;oBACzC,sEAAsE;oBACtE,OAAA;gBACF;gBACA,wCAAwC;gBACxC,IAAI,CAACoB,oBAAoBtB,OAAO;oBAC9B,0DAA0D;oBAC1D,OAAA;gBACF;gBACA,MAAMiB,OAAOoB,MAAMpB,IAAI;gBAEvB,qEAAqE;gBACrE,+FAA+F;gBAC/F,uFAAuF;gBACvF,+CAA+C;gBAC/C,MAAMpB,gBACJG,KAAKH,aAAa,KAAK3B,yMAAAA,CAAcuF,GAAG,GACpCpB,MAAMqB,YAAY,GAChBxF,yMAAAA,CAAcuF,GAAG,GACjBvF,yMAAAA,CAAcyF,eAAe,GAC/B3D,KAAKH,aAAa;gBAExB,OAAQA;oBACN,KAAK3B,yMAAAA,CAAcuF,GAAG;wBAAE;4BACtB,6DAA6D;4BAC7D,0DAA0D;4BAC1D,oEAAoE;4BACpE,2DAA2D;4BAC3D,EAAE;4BACF,+DAA+D;4BAC/D,iDAAiD;4BACjDG,eAAe9B,KAAK9B,MAAMqC;4BAC1B,MAAMJ,aAAa4B,oCACjB/B,KACA9B,MACAqC,OACArC,KAAKJ,oBAAoB,EACzBqB;4BAEF,IAAIgB,eAAAA,GAAkD;gCACpD,mCAAmC;gCACnC,OAAA;4BACF;4BACA,MAAM7B,2BAA2BJ,KAAKI,wBAAwB;4BAC9D,IAAIA,6BAA6B,MAAM;gCACrC,+DAA+D;gCAC/D,kEAAkE;gCAClE,MAAM0D,iBAAiB,IAAIC;gCAI3BC,gBACElC,KACA9B,MACAqC,OACAyB,gBACA5F,yMAAAA,CAAc+F,UAAU;gCAE1B,MAAMC,cAAcC,sBAClBrC,KACA9B,MACAqC,OACApB,MACAb,0BACA0D;gCAEF,IAAIM,sBAAsBN,eAAeO,IAAI,GAAG;gCAChD,IAAID,qBAAqB;oCACvB,iEAAiE;oCACjE,cAAc;oCACd7C,yBACE/D,qOAAAA,EACEwC,MACAqC,OACAnE,yMAAAA,CAAc+F,UAAU,EACxBC,aACAJ;gCAGN;4BACF;4BACA,OAAA;wBACF;oBACA,KAAK5F,yMAAAA,CAAcoG,IAAI;oBACvB,KAAKpG,yMAAAA,CAAc+F,UAAU;oBAC7B,KAAK/F,yMAAAA,CAAcyF,eAAe;wBAAE;4BAClC,6DAA6D;4BAC7D,qEAAqE;4BACrE,qEAAqE;4BACrE,sEAAsE;4BACtE,oEAAoE;4BACpE,oEAAoE;4BACpE,mBAAmB;4BACnB,MAAMG,iBAAiB,IAAIC;4BAI3BC,gBAAgBlC,KAAK9B,MAAMqC,OAAOyB,gBAAgBjE;4BAClD,MAAM0E,qBAAqBC,4BACzB1C,KACA9B,MACAqC,OACArC,KAAKJ,oBAAoB,EACzBqB,MACA6C,gBACAjE;4BAEF,IAAIuE,sBAAsBN,eAAeO,IAAI,GAAG;4BAChD,IAAID,qBAAqB;gCACvB7C,yBACE/D,qOAAAA,EACEwC,MACAqC,OACAxC,eACA0E,oBACAT;4BAGN;4BACA,OAAA;wBACF;oBACA;wBACEjE;gBACJ;gBACA;YACF;QACA;YAAS;gBACPwC;YACF;IACF;IACA,OAAA;AACF;AAEA,SAASuB,eACP9B,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B;IAE/B,sEAAsE;IACtE,yEAAyE;IACzE,4DAA4D;IAC5DoC,sBACE3C,KACA9B,MACAqC,WACAjF,yNAAAA,EACE0E,KACA5D,yMAAAA,CAAcuF,GAAG,EACjBpB,OACAA,MAAMqC,QAAQ,GAEhB1E,KAAKL,GAAG,EACR0C,MAAMqC,QAAQ;AAElB;AAEA,SAASV,gBACPlC,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B,EAC/ByB,cAAgE,EAChEjE,aAGiC;IAEjC8E,mCACE7C,KACA9B,MACAqC,OACAA,MAAMqC,QAAQ,EACd,OACAZ,gBACA,AACA,sBAAsB,0CAD0C;IAEhEjE,kBAAkB3B,yMAAAA,CAAcyF,eAAe,GAC3CzF,yMAAAA,CAAcoG,IAAI,GAClBzE;AAER;AAEA,yDAAyD;AAEzD,SAASgE,oCACP/B,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B,EAC/BuC,OAA0B,EAC1BC,OAAkB;IAElB,6EAA6E;IAC7E,6EAA6E;IAC7E,0EAA0E;IAC1E,0EAA0E;IAC1E,mEAAmE;IACnE,oDAAoD;IACpD,EAAE;IACF,2EAA2E;IAC3E,8DAA8D;IAC9D,oCAAoC;IAEpC,uCAAuC;IACvC,MAAMC,cAAU1H,yNAAAA,EACd0E,KACA9B,KAAKH,aAAa,EAClBwC,OACAwC;IAEFJ,sBAAsB3C,KAAK9B,MAAMqC,OAAOyC,SAAS9E,KAAKL,GAAG,EAAEkF;IAE3D,iCAAiC;IACjC,MAAME,kBAAkBH,OAAO,CAAC,EAAE;IAClC,MAAMI,kBAAkBH,QAAQI,KAAK;IACrC,IAAID,oBAAoB,MAAM;QAC5B,IAAK,MAAME,oBAAoBF,gBAAiB;YAC9C,IAAI,CAAC1D,oBAAoBtB,OAAO;gBAC9B,0DAA0D;gBAC1D,OAAA;YACF;YACA,MAAMmF,eAAeH,eAAe,CAACE,iBAAiB;YACtD,MAAME,sBAAsBD,aAAaL,OAAO;YAChD,MAAMO,eACJN,eAAe,CAACG,iBAAiB;YACnC,MAAMI,sBACJD,cAAc,CAAC,EAAE;YACnB,IAAIE;YACJ,IACED,wBAAwBE,aACxBC,qCACEpD,OACA+C,qBACAE,sBAEF;gBACA,gDAAgD;gBAChDC,kBAAkB1B,oCAChB/B,KACA9B,MACAqC,OACAgD,cACAF;YAEJ,OAAO;gBACL,mDAAmD;gBACnD,uBAAuB;gBACvBI,kBAAkBG,iCAChB5D,KACA9B,MACAqC,OACA8C;YAEJ;YACA,IAAII,oBAAAA,GAAuD;gBACzD,mCAAmC;gBACnC,OAAA;YACF;QACF;IACF;IAEA,OAAA;AACF;AAEA,SAASG,iCACP5D,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B,EAC/BpB,IAAe;IAEf,6EAA6E;IAC7E,oEAAoE;IACpE,4EAA4E;IAC5E,qEAAqE;IACrE,iEAAiE;IACjE,IAAIA,KAAK0E,kBAAkB,EAAE;QAC3B,2EAA2E;QAC3E,0EAA0E;QAC1E,2EAA2E;QAC3E,wEAAwE;QACxE,yEAAyE;QACzE,2EAA2E;QAC3E,0EAA0E;QAC1E,0BAA0B;QAC1B,EAAE;QACF,gEAAgE;QAChE,yEAAyE;QACzE,qEAAqE;QACrE,2EAA2E;QAC3E,gEAAgE;QAChE,iBAAiB;QACjB,EAAE;QACF,4EAA4E;QAC5E,sEAAsE;QACtE,wCAAwC;QACxC,IAAI3F,KAAKI,wBAAwB,KAAK,MAAM;YAC1CJ,KAAKI,wBAAwB,GAAG,IAAImD,IAAI;gBAACtC,KAAK2E,UAAU;aAAC;QAC3D,OAAO;YACL5F,KAAKI,wBAAwB,CAACoD,GAAG,CAACvC,KAAK2E,UAAU;QACnD;QACA,gEAAgE;QAChE,OAAA;IACF;IAEA,2EAA2E;IAC3E,MAAMd,cAAU1H,yNAAAA,EACd0E,KACA9B,KAAKH,aAAa,EAClBwC,OACApB;IAEFwD,sBAAsB3C,KAAK9B,MAAMqC,OAAOyC,SAAS9E,KAAKL,GAAG,EAAEsB;IAC3D,IAAIA,KAAKgE,KAAK,KAAK,MAAM;QACvB,IAAI,CAAC3D,oBAAoBtB,OAAO;YAC9B,0DAA0D;YAC1D,OAAA;QACF;QACA,iCAAiC;QACjC,IAAK,MAAMkF,oBAAoBjE,KAAKgE,KAAK,CAAE;YACzC,MAAMY,YAAY5E,KAAKgE,KAAK,CAACC,iBAAiB;YAC9C,MAAMK,kBAAkBG,iCACtB5D,KACA9B,MACAqC,OACAwD;YAEF,IAAIN,oBAAAA,GAAuD;gBACzD,mCAAmC;gBACnC,OAAA;YACF;QACF;IACF;IACA,+DAA+D;IAC/D,OAAA;AACF;AAEA,SAASf,4BACP1C,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B,EAC/BuC,OAA0B,EAC1BC,OAAkB,EAClBf,cAAgE,EAChEjE,aAGiC;IAEjC,kEAAkE;IAClE,uEAAuE;IACvE,4EAA4E;IAC5E,0BAA0B;IAC1B,uEAAuE;IACvE,sEAAsE;IACtE,yEAAyE;IACzE,2EAA2E;IAC3E,yBAAyB;IACzB,MAAMkF,kBAAkBH,OAAO,CAAC,EAAE;IAClC,MAAMI,kBAAkBH,QAAQI,KAAK;IACrC,IAAIa,sBAAyD,CAAC;IAC9D,IAAId,oBAAoB,MAAM;QAC5B,IAAK,MAAME,oBAAoBF,gBAAiB;YAC9C,MAAMG,eAAeH,eAAe,CAACE,iBAAiB;YACtD,MAAME,sBAAsBD,aAAaL,OAAO;YAChD,MAAMO,eACJN,eAAe,CAACG,iBAAiB;YACnC,MAAMI,sBACJD,cAAc,CAAC,EAAE;YACnB,IACEC,wBAAwBE,aACxBC,qCACEpD,OACA+C,qBACAE,sBAEF;gBACA,sEAAsE;gBACtE,MAAMS,mBAAmBvB,4BACvB1C,KACA9B,MACAqC,OACAgD,cACAF,cACArB,gBACAjE;gBAEFiG,mBAAmB,CAACZ,iBAAiB,GAAGa;YAC1C,OAAO;gBACL,kEAAkE;gBAClE,kEAAkE;gBAClE,mBAAmB;gBACnB,OAAQlG;oBACN,KAAK3B,yMAAAA,CAAcyF,eAAe;wBAAE;4BAClC,+DAA+D;4BAC/D,oEAAoE;4BACpE,mEAAmE;4BACnE,YAAY;4BACZ,EAAE;4BACF,2DAA2D;4BAC3D,+DAA+D;4BAC/D,EAAE;4BACF,+DAA+D;4BAC/D,8DAA8D;4BAC9D,kEAAkE;4BAClE,2BAA2B;4BAC3B,MAAMqC,4BACJb,aAAac,kBAAkB,KAC/BhJ,oMAAAA,CAAmBiJ,2BAA2B;4BAChD,MAAMH,mBAAmBC,4BACrBG,4CACErE,KACA9B,MACAqC,OACA8C,cACA,MACArB,sBAGFrG,+NAAAA,EAAoC0H;4BACxCW,mBAAmB,CAACZ,iBAAiB,GAAGa;4BACxC;wBACF;oBACA,KAAK7H,yMAAAA,CAAc+F,UAAU;wBAAE;4BAC7B,oEAAoE;4BACpE,iCAAiC;4BACjC,MAAM8B,mBAAmBpB,mCACvB7C,KACA9B,MACAqC,OACA8C,cACA,OACArB,gBACAjE;4BAEFiG,mBAAmB,CAACZ,iBAAiB,GAAGa;4BACxC;wBACF;oBACA,KAAK7H,yMAAAA,CAAcoG,IAAI;wBAAE;4BACvB,kEAAkE;4BAClE,gEAAgE;4BAChE,4DAA4D;4BAC5D,6DAA6D;4BAC7D,mBAAmB;4BACnB,EAAE;4BACF,iEAAiE;4BACjE,0DAA0D;4BAC1D,iEAAiE;4BACjE,oDAAoD;4BACpD,sBAAsB;4BACtB,EAAE;4BACF,mEAAmE;4BACnE,kEAAkE;4BAClE,mEAAmE;4BACnE,8DAA8D;4BAC9D,8BAA8B;4BAC9B,MAAMyB,mBAAmBpB,mCACvB7C,KACA9B,MACAqC,OACA8C,cACA,OACArB,gBACAjE;4BAEFiG,mBAAmB,CAACZ,iBAAiB,GAAGa;4BACxC;wBACF;oBACA;wBACElG;gBACJ;YACF;QACF;IACF;IACA,MAAMqE,cAAiC;QACrCW,QAAQC,OAAO;QACfgB;QACA;QACA;QACAjB,QAAQuB,YAAY;KACrB;IACD,OAAOlC;AACT;AAEA,SAASiC,4CACPrE,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B,EAC/BpB,IAAe,EACfoF,oBAA+D,EAC/DvC,cAAgE;IAEhE,6EAA6E;IAC7E,wEAAwE;IACxE,sEAAsE;IACtE,4EAA4E;IAC5E,mEAAmE;IACnE,4EAA4E;IAC5E,wEAAwE;IACxE,2DAA2D;IAE3D,uEAAuE;IACvE,oBAAoB;IACpB,IAAIwC,gBACFD,yBAAyB,OAAO,yBAAyB;IAE3D,MAAMvB,cAAU1H,yNAAAA,EACd0E,KACA9B,KAAKH,aAAa,EAClBwC,OACApB;IAEF,OAAQ6D,QAAQ9B,MAAM;QACpB,KAAKzF,uMAAAA,CAAY0F,KAAK;YAAE;gBACtB,uEAAuE;gBACvE,2BAA2B;gBAC3B,yEAAyE;gBACzE,uEAAuE;gBACvE,wEAAwE;gBACxE,yEAAyE;gBACzE,gDAAgD;gBAEhD,iDAAiD;gBACjDa,eAAeyC,GAAG,CAChBtF,KAAK2E,UAAU,MACfhI,mNAAAA,EACEkH,SACA,AACA,wEADwE,CACC;gBACzE,mEAAmE;gBACnE5G,yMAAAA,CAAcyF,eAAe;gBAGjC,IAAI0C,yBAAyB,WAAW;oBACtCC,gBAAgBD,uBAAuB;gBACzC,OAAO;gBACL,mEAAmE;gBACnE,sBAAsB;gBACxB;gBACA;YACF;QACA,KAAK9I,uMAAAA,CAAY4F,SAAS;YAAE;gBAC1B,iCAAiC;gBACjC,MAAMqD,4BACJvF,KAAKgF,kBAAkB,KAAKhJ,oMAAAA,CAAmBwJ,yBAAyB;gBAC1E,IAAID,2BAA2B;oBAC7B,oEAAoE;oBACpE,sEAAsE;oBACtE,yBAAyB;oBACzB,WAAO/I,+NAAAA,EAAoCwD;gBAC7C;gBAOA;YACF;QACA,KAAK1D,uMAAAA,CAAY2F,OAAO;YAAE;gBAGxB;YACF;QACA,KAAK3F,uMAAAA,CAAY6F,QAAQ;YAAE;gBAGzB;YACF;QACA;YACE0B;IACJ;IACA,MAAMgB,sBAAyD,CAAC;IAChE,IAAI7E,KAAKgE,KAAK,KAAK,MAAM;QACvB,IAAK,MAAMC,oBAAoBjE,KAAKgE,KAAK,CAAE;YACzC,MAAMY,YAAY5E,KAAKgE,KAAK,CAACC,iBAAiB;YAC9CY,mBAAmB,CAACZ,iBAAiB,GACnCiB,4CACErE,KACA9B,MACAqC,OACAwD,WACAQ,sBACAvC;QAEN;IACF;IACA,MAAMI,cAAiC;QACrCjD,KAAK6D,OAAO;QACZgB;QACA;QACAQ;QACArF,KAAKmF,YAAY;KAClB;IACD,OAAOlC;AACT;AAEA,SAASS,mCACP7C,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B,EAC/BpB,IAAe,EACfyF,wBAAiC,EACjC5C,cAAgE,EAChEjE,aAA4D;IAE5D,6EAA6E;IAC7E,4EAA4E;IAC5E,uDAAuD;IACvD,EAAE;IACF,uEAAuE;IACvE,0EAA0E;IAC1E,wEAAwE;IACxE,kBAAkB;IAClB,MAAMiF,cAAU1H,yNAAAA,EACd0E,KACA,AACA,sCAAsC,oCADoC;IAE1E,2FAA2F;IAC3F,2FAA2F;IAC3F,sCAAsC;IACtCjC,eACAwC,OACApB;IAGF,IAAI0F,iBAAkD;IAEtD,OAAQ7B,QAAQ9B,MAAM;QACpB,KAAKzF,uMAAAA,CAAY0F,KAAK;YAAE;gBACtB,yDAAyD;gBACzD0D,qBAAiB/I,mNAAAA,EAAwBkH,SAASjF;gBAClD;YACF;QACA,KAAKtC,uMAAAA,CAAY4F,SAAS;YAAE;gBAC1B,iCAAiC;gBACjC,IACE2B,QAAQ8B,SAAS,QACjB7I,iOAAAA,EACE+G,QAAQjF,aAAa,EACrBA,gBAEF;oBACA,qHAAqH;oBACrH,0CAA0C;oBAC1C,oEAAoE;oBACpE,+FAA+F;oBAC/F,iGAAiG;oBACjG8G,iBAAiBE,4BACf/E,KACAO,OACApB,MACApB;gBAEJ;gBACA;YACF;QACA,KAAKtC,uMAAAA,CAAY2F,OAAO;QACxB,KAAK3F,uMAAAA,CAAY6F,QAAQ;YAAE;gBACzB,yEAAyE;gBACzE,gFAAgF;gBAChF,QACErF,iOAAAA,EACE+G,QAAQjF,aAAa,EACrBA,gBAEF;oBACA8G,iBAAiBE,4BACf/E,KACAO,OACApB,MACApB;gBAEJ;gBACA;YACF;QACA;YACEiF;IACJ;IACA,MAAMgB,sBAAyD,CAAC;IAChE,IAAI7E,KAAKgE,KAAK,KAAK,MAAM;QACvB,IAAK,MAAMC,oBAAoBjE,KAAKgE,KAAK,CAAE;YACzC,MAAMY,YAAY5E,KAAKgE,KAAK,CAACC,iBAAiB;YAC9CY,mBAAmB,CAACZ,iBAAiB,GACnCP,mCACE7C,KACA9B,MACAqC,OACAwD,WACAa,4BAA4BC,mBAAmB,MAC/C7C,gBACAjE;QAEN;IACF;IAEA,IAAI8G,mBAAmB,MAAM;QAC3B,2CAA2C;QAC3C7C,eAAeyC,GAAG,CAACtF,KAAK2E,UAAU,EAAEe;IACtC;IAEA,8EAA8E;IAC9E,MAAML,gBACJ,CAACI,4BAA4BC,mBAAmB,OAAO,YAAY;IAErE,MAAMzC,cAAiC;QACrCjD,KAAK6D,OAAO;QACZgB;QACA;QACAQ;QACArF,KAAKmF,YAAY;KAClB;IACD,OAAOlC;AACT;AAEA,SAASC,sBACPrC,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B,EAC/BpB,IAAe,EACfb,wBAAgD,EAChD0D,cAAgE;IAEhE,0EAA0E;IAC1E,wEAAwE;IACxE,2EAA2E;IAC3E,uDAAuD;IACvD,EAAE;IACF,sDAAsD;IACtD,IAAI1D,yBAAyB0G,GAAG,CAAC7F,KAAK2E,UAAU,GAAG;QACjD,yCAAyC;QACzC,OAAOjB,mCACL7C,KACA9B,MACAqC,OACApB,MACA,OACA6C,gBACA5F,yMAAAA,CAAc+F,UAAU;IAE5B;IACA,IAAI6B,sBAAyD,CAAC;IAC9D,MAAMb,QAAQhE,KAAKgE,KAAK;IACxB,IAAIA,UAAU,MAAM;QAClB,IAAK,MAAMC,oBAAoBD,MAAO;YACpC,MAAMY,YAAYZ,KAAK,CAACC,iBAAiB;YACzCY,mBAAmB,CAACZ,iBAAiB,GAAGf,sBACtCrC,KACA9B,MACAqC,OACAwD,WACAzF,0BACA0D;QAEJ;IACF;IAEA,yEAAyE;IACzE,MAAMI,cAAiC;QACrCjD,KAAK6D,OAAO;QACZgB;QACA;QACA;KACD;IACD,OAAO5B;AACT;AAEA,SAASO,sBACP3C,GAAW,EACX9B,IAAkB,EAClBqC,KAA+B,EAC/ByC,OAA0B,EAC1BiC,QAAuB,EACvB9F,IAAe;IAEf,OAAQ6D,QAAQ9B,MAAM;QACpB,KAAKzF,uMAAAA,CAAY0F,KAAK;YACpB,sEAAsE;YACtE1B,yBACEjE,mNAAAA,EACE+E,WACAzE,mNAAAA,EAAwBkH,SAAS5G,yMAAAA,CAAcuF,GAAG,GAClDsD,UACA9F;YAGJ;QACF,KAAK1D,uMAAAA,CAAY2F,OAAO;YAAE;gBACxB,mEAAmE;gBACnE,+CAA+C;gBAC/C,OAAQ4B,QAAQjF,aAAa;oBAC3B,KAAK3B,yMAAAA,CAAcuF,GAAG;oBACtB,KAAKvF,yMAAAA,CAAc+F,UAAU;oBAC7B,KAAK/F,yMAAAA,CAAcoG,IAAI;wBAErB;oBACF,KAAKpG,yMAAAA,CAAcyF,eAAe;wBAChC,4DAA4D;wBAC5D,oEAAoE;wBACpE,kEAAkE;wBAClE,iEAAiE;wBACjE,uBAAuB;wBACvB,IAAIvB,WAAWpC,OAAO;4BACpB,kEAAkE;4BAClE,oDAAoD;4BACpDgH,2BAA2BlF,KAAKO,OAAO0E,UAAU9F;wBACnD;wBACA;oBACF;wBACE6D,QAAQjF,aAAa;gBACzB;gBACA;YACF;QACA,KAAKtC,uMAAAA,CAAY6F,QAAQ;YAAE;gBACzB,oEAAoE;gBACpE,mEAAmE;gBACnE,OAAQ0B,QAAQjF,aAAa;oBAC3B,KAAK3B,yMAAAA,CAAcuF,GAAG;oBACtB,KAAKvF,yMAAAA,CAAc+F,UAAU;oBAC7B,KAAK/F,yMAAAA,CAAcoG,IAAI;wBAGrB;oBACF,KAAKpG,yMAAAA,CAAcyF,eAAe;wBAChC,iEAAiE;wBACjE,oEAAoE;wBACpE,qEAAqE;wBACrE,4DAA4D;wBAC5D,oBAAoB;wBACpB,EAAE;wBACF,sEAAsE;wBACtE,oEAAoE;wBACpE,4DAA4D;wBAC5DqD,2BAA2BlF,KAAKO,OAAO0E,UAAU9F;wBACjD;oBACF;wBACE6D,QAAQjF,aAAa;gBACzB;gBACA;YACF;QACA,KAAKtC,uMAAAA,CAAY4F,SAAS;YAExB;QACF;YACE2B;IACJ;AAEA,2EAA2E;AAC3E,2EAA2E;AAC3E,yDAAyD;AAC3D;AAEA,SAASkC,2BACPlF,GAAW,EACXO,KAA+B,EAC/B0E,QAAuB,EACvB9F,IAAe;IAEf,MAAMgG,0BAAsBvJ,gOAAAA,EAC1BoE,KACA5D,yMAAAA,CAAcuF,GAAG,EACjBpB,OACApB;IAEF,OAAQgG,oBAAoBjE,MAAM;QAChC,KAAKzF,uMAAAA,CAAY0F,KAAK;YACpB,iEAAiE;YACjE,mBAAmB;YACnBiE,0BACE3F,yBACEjE,mNAAAA,EACE+E,WACAzE,mNAAAA,EAAwBqJ,qBAAqB/I,yMAAAA,CAAcuF,GAAG,GAC9DsD,UACA9F,YAGJjD,+NAAAA,EAA6BE,yMAAAA,CAAcuF,GAAG,EAAExC;YAElD;QACF,KAAK1D,uMAAAA,CAAY2F,OAAO;YAEtB;QACF,KAAK3F,uMAAAA,CAAY4F,SAAS;QAC1B,KAAK5F,uMAAAA,CAAY6F,QAAQ;YAIvB;QACF;YACE6D;IACJ;AACF;AAEA,SAASJ,4BACP/E,GAAW,EACXO,KAA+B,EAC/BpB,IAAe,EACfpB,aAA4D;IAE5D,MAAMoH,0BAAsBvJ,gOAAAA,EAC1BoE,KACAjC,eACAwC,OACApB;IAEF,IAAIgG,oBAAoBjE,MAAM,KAAKzF,uMAAAA,CAAY0F,KAAK,EAAE;QACpD,kFAAkF;QAClF,0EAA0E;QAC1E,yEAAyE;QACzE,qEAAqE;QACrE,cAAc;QACd,MAAMkE,qBAAiBvJ,mNAAAA,EACrBqJ,qBACApH;QAEFqH,8BACErJ,oNAAAA,EAAyBsJ,qBACzBnJ,+NAAAA,EAA6B6B,eAAeoB;QAE9C,OAAOkG;IACT,OAAO;QACL,8CAA8C;QAC9C,MAAMC,8BAA8BH;QACpC,QACElJ,iOAAAA,EACEqJ,4BAA4BvH,aAAa,EACzCA,gBAEF;YACA,wEAAwE;YACxE,yCAAyC;YACzC,MAAMwH,mBAAevJ,kOAAAA,EACnB+B,eACAwC,OACApB;YAEF,MAAMkG,qBAAiBvJ,mNAAAA,EACrByJ,cACAxH;YAEFqH,8BACErJ,oNAAAA,EAAyBsJ,qBACzBnJ,+NAAAA,EAA6B6B,eAAeoB;YAE9C,OAAOkG;QACT;QACA,OAAQC,4BAA4BpE,MAAM;YACxC,KAAKzF,uMAAAA,CAAY2F,OAAO;gBACtB,sEAAsE;gBACtE,OAAO;YACT,KAAK3F,uMAAAA,CAAY4F,SAAS;YAC1B,KAAK5F,uMAAAA,CAAY6F,QAAQ;gBACvB,wEAAwE;gBACxE,uEAAuE;gBACvE,8BAA8B;gBAC9B,OAAO;YACT;gBACEgE;gBACA,OAAO;QACX;IACF;AACF;AAEA,MAAME,OAAO,KAAO;AAEpB,SAASJ,0BACPK,OAAmD,EACnDC,QAAyB;IAEzB,sEAAsE;IACtED,QAAQ3I,IAAI,CAAC,CAAC6I;QACZ,IAAIA,cAAc,MAAM;YACtB,yEAAyE;gBACzE9J,8MAAAA,EAAmBoE,KAAKD,GAAG,IAAI0F,UAAUC;QAC3C;IACF,GAAGH;AACL;AAEA,SAAS7B,qCACPpD,KAA+B,EAC/BqF,cAAuB,EACvBC,aAAsB;IAEtB,IAAIA,kBAAkBrJ,mLAAAA,EAAkB;QACtC,0EAA0E;QAC1E,qEAAqE;QACrE,yEAAyE;QACzE,0EAA0E;QAC1E,6DAA6D;QAC7D,2DAA2D;QAC3D,0EAA0E;QAC1E,sEAAsE;QACtE,2EAA2E;QAC3E,qEAAqE;QACrE,OACEoJ,uBACArJ,+LAAAA,EACEC,mLAAAA,EACAsJ,OAAOC,WAAW,CAAC,IAAIC,gBAAgBzF,MAAM0F,cAAc;IAGjE;IACA,uEAAuE;IACvE,WAAO7K,gMAAAA,EAAayK,eAAeD;AACrC;AAEA,gFAAgF;AAChF,8EAA8E;AAC9E,6EAA6E;AAC7E,qEAAqE;AACrE,gFAAgF;AAEhF,SAASM,qBAAqBC,CAAe,EAAEC,CAAe;IAC5D,6EAA6E;IAC7E,wEAAwE;IACxE,UAAU;IAEV,sEAAsE;IACtE,MAAMC,eAAeD,EAAEpI,QAAQ,GAAGmI,EAAEnI,QAAQ;IAC5C,IAAIqI,iBAAiB,GAAG;QACtB,OAAOA;IACT;IAEA,4EAA4E;IAC5E,4EAA4E;IAC5E,MAAMC,YAAYF,EAAEhI,KAAK,GAAG+H,EAAE/H,KAAK;IACnC,IAAIkI,cAAc,GAAG;QACnB,OAAOA;IACT;IAEA,0EAA0E;IAC1E,0EAA0E;IAC1E,OAAOF,EAAE7H,MAAM,GAAG4H,EAAE5H,MAAM;AAC5B;AAEA,SAASI,SAAS4H,IAAyB,EAAEC,IAAkB;IAC7D,MAAMC,QAAQF,KAAKG,MAAM;IACzBH,KAAKI,IAAI,CAACH;IACVA,KAAK/H,UAAU,GAAGgI;IAClBG,WAAWL,MAAMC,MAAMC;AACzB;AAEA,SAASvG,SAASqG,IAAyB;IACzC,OAAOA,KAAKG,MAAM,KAAK,IAAI,OAAOH,IAAI,CAAC,EAAE;AAC3C;AAEA,SAASlG,QAAQkG,IAAyB;IACxC,IAAIA,KAAKG,MAAM,KAAK,GAAG;QACrB,OAAO;IACT;IACA,MAAMG,QAAQN,IAAI,CAAC,EAAE;IACrBM,MAAMpI,UAAU,GAAG,CAAC;IACpB,MAAMqI,OAAOP,KAAKQ,GAAG;IACrB,IAAID,SAASD,OAAO;QAClBN,IAAI,CAAC,EAAE,GAAGO;QACVA,KAAKrI,UAAU,GAAG;QAClBuI,aAAaT,MAAMO,MAAM;IAC3B;IACA,OAAOD;AACT;AAEA,SAAShI,WAAW0H,IAAyB,EAAEC,IAAkB;IAC/D,MAAMC,QAAQD,KAAK/H,UAAU;IAC7B,IAAIgI,UAAU,CAAC,GAAG;QAChBD,KAAK/H,UAAU,GAAG,CAAC;QACnB,IAAI8H,KAAKG,MAAM,KAAK,GAAG;YACrB,MAAMI,OAAOP,KAAKQ,GAAG;YACrB,IAAID,SAASN,MAAM;gBACjBD,IAAI,CAACE,MAAM,GAAGK;gBACdA,KAAKrI,UAAU,GAAGgI;gBAClBO,aAAaT,MAAMO,MAAML;YAC3B;QACF;IACF;AACF;AAEA,SAASzH,WAAWuH,IAAyB,EAAEC,IAAkB;IAC/D,MAAMC,QAAQD,KAAK/H,UAAU;IAC7B,IAAIgI,UAAU,CAAC,GAAG;QAChB,IAAIA,UAAU,GAAG;YACfO,aAAaT,MAAMC,MAAM;QAC3B,OAAO;YACL,MAAMS,cAAeR,QAAQ,MAAO;YACpC,MAAMS,SAASX,IAAI,CAACU,YAAY;YAChC,IAAIf,qBAAqBgB,QAAQV,QAAQ,GAAG;gBAC1C,iCAAiC;gBACjCI,WAAWL,MAAMC,MAAMC;YACzB,OAAO;gBACL,+CAA+C;gBAC/CO,aAAaT,MAAMC,MAAMC;YAC3B;QACF;IACF;AACF;AAEA,SAASG,WACPL,IAAyB,EACzBC,IAAkB,EAClBW,CAAS;IAET,IAAIV,QAAQU;IACZ,MAAOV,QAAQ,EAAG;QAChB,MAAMQ,cAAeR,QAAQ,MAAO;QACpC,MAAMS,SAASX,IAAI,CAACU,YAAY;QAChC,IAAIf,qBAAqBgB,QAAQV,QAAQ,GAAG;YAC1C,wCAAwC;YACxCD,IAAI,CAACU,YAAY,GAAGT;YACpBA,KAAK/H,UAAU,GAAGwI;YAClBV,IAAI,CAACE,MAAM,GAAGS;YACdA,OAAOzI,UAAU,GAAGgI;YAEpBA,QAAQQ;QACV,OAAO;YACL,+BAA+B;YAC/B;QACF;IACF;AACF;AAEA,SAASD,aACPT,IAAyB,EACzBC,IAAkB,EAClBW,CAAS;IAET,IAAIV,QAAQU;IACZ,MAAMT,SAASH,KAAKG,MAAM;IAC1B,MAAMU,aAAaV,WAAW;IAC9B,MAAOD,QAAQW,WAAY;QACzB,MAAMC,YAAaZ,CAAAA,QAAQ,CAAA,IAAK,IAAI;QACpC,MAAMa,OAAOf,IAAI,CAACc,UAAU;QAC5B,MAAME,aAAaF,YAAY;QAC/B,MAAMG,QAAQjB,IAAI,CAACgB,WAAW;QAE9B,wEAAwE;QACxE,IAAIrB,qBAAqBoB,MAAMd,QAAQ,GAAG;YACxC,IAAIe,aAAab,UAAUR,qBAAqBsB,OAAOF,QAAQ,GAAG;gBAChEf,IAAI,CAACE,MAAM,GAAGe;gBACdA,MAAM/I,UAAU,GAAGgI;gBACnBF,IAAI,CAACgB,WAAW,GAAGf;gBACnBA,KAAK/H,UAAU,GAAG8I;gBAElBd,QAAQc;YACV,OAAO;gBACLhB,IAAI,CAACE,MAAM,GAAGa;gBACdA,KAAK7I,UAAU,GAAGgI;gBAClBF,IAAI,CAACc,UAAU,GAAGb;gBAClBA,KAAK/H,UAAU,GAAG4I;gBAElBZ,QAAQY;YACV;QACF,OAAO,IAAIE,aAAab,UAAUR,qBAAqBsB,OAAOhB,QAAQ,GAAG;YACvED,IAAI,CAACE,MAAM,GAAGe;YACdA,MAAM/I,UAAU,GAAGgI;YACnBF,IAAI,CAACgB,WAAW,GAAGf;YACnBA,KAAK/H,UAAU,GAAG8I;YAElBd,QAAQc;QACV,OAAO;YACL,kCAAkC;YAClC;QACF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 5858, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/links.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n PrefetchPriority,\n} from './segment-cache/types'\nimport { createCacheKey } from './segment-cache/cache-key'\nimport {\n type PrefetchTask,\n schedulePrefetchTask as scheduleSegmentPrefetchTask,\n cancelPrefetchTask,\n reschedulePrefetchTask,\n isPrefetchTaskDirty,\n} from './segment-cache/scheduler'\nimport { startTransition } from 'react'\n\ntype LinkElement = HTMLAnchorElement | SVGAElement\n\ntype Element = LinkElement | HTMLFormElement\n\n// Properties that are shared between Link and Form instances. We use the same\n// shape for both to prevent a polymorphic de-opt in the VM.\ntype LinkOrFormInstanceShared = {\n router: AppRouterInstance\n fetchStrategy: PrefetchTaskFetchStrategy\n\n isVisible: boolean\n\n // The most recently initiated prefetch task. It may or may not have\n // already completed. The same prefetch task object can be reused across\n // multiple prefetches of the same link.\n prefetchTask: PrefetchTask | null\n}\n\nexport type FormInstance = LinkOrFormInstanceShared & {\n prefetchHref: string\n setOptimisticLinkStatus: null\n}\n\ntype PrefetchableLinkInstance = LinkOrFormInstanceShared & {\n prefetchHref: string\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n}\n\ntype NonPrefetchableLinkInstance = LinkOrFormInstanceShared & {\n prefetchHref: null\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n}\n\ntype PrefetchableInstance = PrefetchableLinkInstance | FormInstance\n\nexport type LinkInstance =\n | PrefetchableLinkInstance\n | NonPrefetchableLinkInstance\n\n// Tracks the most recently navigated link instance. When null, indicates\n// the current navigation was not initiated by a link click.\nlet linkForMostRecentNavigation: LinkInstance | null = null\n\n// Status object indicating link is pending\nexport const PENDING_LINK_STATUS = { pending: true }\n\n// Status object indicating link is idle\nexport const IDLE_LINK_STATUS = { pending: false }\n\n// Updates the loading state when navigating between links\n// - Resets the previous link's loading state\n// - Sets the new link's loading state\n// - Updates tracking of current navigation\nexport function setLinkForCurrentNavigation(link: LinkInstance | null) {\n startTransition(() => {\n linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS)\n link?.setOptimisticLinkStatus(PENDING_LINK_STATUS)\n linkForMostRecentNavigation = link\n })\n}\n\n// Unmounts the current link instance from navigation tracking\nexport function unmountLinkForCurrentNavigation(link: LinkInstance) {\n if (linkForMostRecentNavigation === link) {\n linkForMostRecentNavigation = null\n }\n}\n\n// Use a WeakMap to associate a Link instance with its DOM element. This is\n// used by the IntersectionObserver to track the link's visibility.\nconst prefetchable:\n | WeakMap\n | Map =\n typeof WeakMap === 'function' ? new WeakMap() : new Map()\n\n// A Set of the currently visible links. We re-prefetch visible links after a\n// cache invalidation, or when the current URL changes. It's a separate data\n// structure from the WeakMap above because only the visible links need to\n// be enumerated.\nconst prefetchableAndVisible: Set = new Set()\n\n// A single IntersectionObserver instance shared by all components.\nconst observer: IntersectionObserver | null =\n typeof IntersectionObserver === 'function'\n ? new IntersectionObserver(handleIntersect, {\n rootMargin: '200px',\n })\n : null\n\nfunction observeVisibility(element: Element, instance: PrefetchableInstance) {\n const existingInstance = prefetchable.get(element)\n if (existingInstance !== undefined) {\n // This shouldn't happen because each component should have its own\n // anchor tag instance, but it's defensive coding to avoid a memory leak in\n // case there's a logical error somewhere else.\n unmountPrefetchableInstance(element)\n }\n // Only track prefetchable links that have a valid prefetch URL\n prefetchable.set(element, instance)\n if (observer !== null) {\n observer.observe(element)\n }\n}\n\nfunction coercePrefetchableUrl(href: string): URL | null {\n if (typeof window !== 'undefined') {\n const { createPrefetchURL } =\n require('./app-router-utils') as typeof import('./app-router-utils')\n\n try {\n return createPrefetchURL(href)\n } catch {\n // createPrefetchURL sometimes throws an error if an invalid URL is\n // provided, though I'm not sure if it's actually necessary.\n // TODO: Consider removing the throw from the inner function, or change it\n // to reportError. Or maybe the error isn't even necessary for automatic\n // prefetches, just navigations.\n const reportErrorFn =\n typeof reportError === 'function' ? reportError : console.error\n reportErrorFn(\n `Cannot prefetch '${href}' because it cannot be converted to a URL.`\n )\n return null\n }\n } else {\n return null\n }\n}\n\nexport function mountLinkInstance(\n element: LinkElement,\n href: string,\n router: AppRouterInstance,\n fetchStrategy: PrefetchTaskFetchStrategy,\n prefetchEnabled: boolean,\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n): LinkInstance {\n if (prefetchEnabled) {\n const prefetchURL = coercePrefetchableUrl(href)\n if (prefetchURL !== null) {\n const instance: PrefetchableLinkInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus,\n }\n // We only observe the link's visibility if it's prefetchable. For\n // example, this excludes links to external URLs.\n observeVisibility(element, instance)\n return instance\n }\n }\n // If the link is not prefetchable, we still create an instance so we can\n // track its optimistic state (i.e. useLinkStatus).\n const instance: NonPrefetchableLinkInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: null,\n setOptimisticLinkStatus,\n }\n return instance\n}\n\nexport function mountFormInstance(\n element: HTMLFormElement,\n href: string,\n router: AppRouterInstance,\n fetchStrategy: PrefetchTaskFetchStrategy\n): void {\n const prefetchURL = coercePrefetchableUrl(href)\n if (prefetchURL === null) {\n // This href is not prefetchable, so we don't track it.\n // TODO: We currently observe/unobserve a form every time its href changes.\n // For Links, this isn't a big deal because the href doesn't usually change,\n // but for forms it's extremely common. We should optimize this.\n return\n }\n const instance: FormInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus: null,\n }\n observeVisibility(element, instance)\n}\n\nexport function unmountPrefetchableInstance(element: Element) {\n const instance = prefetchable.get(element)\n if (instance !== undefined) {\n prefetchable.delete(element)\n prefetchableAndVisible.delete(instance)\n const prefetchTask = instance.prefetchTask\n if (prefetchTask !== null) {\n cancelPrefetchTask(prefetchTask)\n }\n }\n if (observer !== null) {\n observer.unobserve(element)\n }\n}\n\nfunction handleIntersect(entries: Array) {\n for (const entry of entries) {\n // Some extremely old browsers or polyfills don't reliably support\n // isIntersecting so we check intersectionRatio instead. (Do we care? Not\n // really. But whatever this is fine.)\n const isVisible = entry.intersectionRatio > 0\n onLinkVisibilityChanged(entry.target as HTMLAnchorElement, isVisible)\n }\n}\n\nexport function onLinkVisibilityChanged(element: Element, isVisible: boolean) {\n if (process.env.NODE_ENV !== 'production') {\n // Prefetching on viewport is disabled in development for performance\n // reasons, because it requires compiling the target page.\n // TODO: Investigate re-enabling this.\n return\n }\n\n const instance = prefetchable.get(element)\n if (instance === undefined) {\n return\n }\n\n instance.isVisible = isVisible\n if (isVisible) {\n prefetchableAndVisible.add(instance)\n } else {\n prefetchableAndVisible.delete(instance)\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Default)\n}\n\nexport function onNavigationIntent(\n element: HTMLAnchorElement | SVGAElement,\n unstable_upgradeToDynamicPrefetch: boolean\n) {\n const instance = prefetchable.get(element)\n if (instance === undefined) {\n return\n }\n // Prefetch the link on hover/touchstart.\n if (instance !== undefined) {\n if (\n process.env.__NEXT_DYNAMIC_ON_HOVER &&\n unstable_upgradeToDynamicPrefetch\n ) {\n // Switch to a full prefetch\n instance.fetchStrategy = FetchStrategy.Full\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Intent)\n }\n}\n\nfunction rescheduleLinkPrefetch(\n instance: PrefetchableInstance,\n priority: PrefetchPriority.Default | PrefetchPriority.Intent\n) {\n // Ensures that app-router-instance is not compiled in the server bundle\n if (typeof window !== 'undefined') {\n const existingPrefetchTask = instance.prefetchTask\n\n if (!instance.isVisible) {\n // Cancel any in-progress prefetch task. (If it already finished then this\n // is a no-op.)\n if (existingPrefetchTask !== null) {\n cancelPrefetchTask(existingPrefetchTask)\n }\n // We don't need to reset the prefetchTask to null upon cancellation; an\n // old task object can be rescheduled with reschedulePrefetchTask. This is a\n // micro-optimization but also makes the code simpler (don't need to\n // worry about whether an old task object is stale).\n return\n }\n\n const { getCurrentAppRouterState } =\n require('./app-router-instance') as typeof import('./app-router-instance')\n\n const appRouterState = getCurrentAppRouterState()\n if (appRouterState !== null) {\n const treeAtTimeOfPrefetch = appRouterState.tree\n if (existingPrefetchTask === null) {\n // Initiate a prefetch task.\n const nextUrl = appRouterState.nextUrl\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n instance.prefetchTask = scheduleSegmentPrefetchTask(\n cacheKey,\n treeAtTimeOfPrefetch,\n instance.fetchStrategy,\n priority,\n null\n )\n } else {\n // We already have an old task object that we can reschedule. This is\n // effectively the same as canceling the old task and creating a new one.\n reschedulePrefetchTask(\n existingPrefetchTask,\n treeAtTimeOfPrefetch,\n instance.fetchStrategy,\n priority\n )\n }\n }\n }\n}\n\nexport function pingVisibleLinks(\n nextUrl: string | null,\n tree: FlightRouterState\n) {\n // For each currently visible link, cancel the existing prefetch task (if it\n // exists) and schedule a new one. This is effectively the same as if all the\n // visible links left and then re-entered the viewport.\n //\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n for (const instance of prefetchableAndVisible) {\n const task = instance.prefetchTask\n if (task !== null && !isPrefetchTaskDirty(task, nextUrl, tree)) {\n // The cache has not been invalidated, and none of the inputs have\n // changed. Bail out.\n continue\n }\n // Something changed. Cancel the existing prefetch task and schedule a\n // new one.\n if (task !== null) {\n cancelPrefetchTask(task)\n }\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n instance.prefetchTask = scheduleSegmentPrefetchTask(\n cacheKey,\n tree,\n instance.fetchStrategy,\n PrefetchPriority.Default,\n null\n )\n }\n}\n"],"names":["FetchStrategy","PrefetchPriority","createCacheKey","schedulePrefetchTask","scheduleSegmentPrefetchTask","cancelPrefetchTask","reschedulePrefetchTask","isPrefetchTaskDirty","startTransition","linkForMostRecentNavigation","PENDING_LINK_STATUS","pending","IDLE_LINK_STATUS","setLinkForCurrentNavigation","link","setOptimisticLinkStatus","unmountLinkForCurrentNavigation","prefetchable","WeakMap","Map","prefetchableAndVisible","Set","observer","IntersectionObserver","handleIntersect","rootMargin","observeVisibility","element","instance","existingInstance","get","undefined","unmountPrefetchableInstance","set","observe","coercePrefetchableUrl","href","window","createPrefetchURL","require","reportErrorFn","reportError","console","error","mountLinkInstance","router","fetchStrategy","prefetchEnabled","prefetchURL","isVisible","prefetchTask","prefetchHref","mountFormInstance","delete","unobserve","entries","entry","intersectionRatio","onLinkVisibilityChanged","target","process","env","NODE_ENV","add","rescheduleLinkPrefetch","Default","onNavigationIntent","unstable_upgradeToDynamicPrefetch","__NEXT_DYNAMIC_ON_HOVER","Full","Intent","priority","existingPrefetchTask","getCurrentAppRouterState","appRouterState","treeAtTimeOfPrefetch","tree","nextUrl","cacheKey","pingVisibleLinks","task"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 6068, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/promise-with-resolvers.ts"],"sourcesContent":["export function createPromiseWithResolvers(): PromiseWithResolvers {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason: any) => void\n const promise = new Promise((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n"],"names":["createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej"],"mappings":";;;;AAAO,SAASA;IACd,iDAAiD;IACjD,IAAIC;IACJ,IAAIC;IACJ,MAAMC,UAAU,IAAIC,QAAW,CAACC,KAAKC;QACnCL,UAAUI;QACVH,SAASI;IACX;IACA,OAAO;QAAEL,SAASA;QAAUC,QAAQA;QAASC;IAAQ;AACvD","ignoreList":[0]}}, - {"offset": {"line": 6090, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache.ts"],"sourcesContent":["import type {\n TreePrefetch,\n RootTreePrefetch,\n SegmentPrefetch,\n} from '../../../server/app-render/collect-segment-data'\nimport type { LoadingModuleData } from '../../../shared/lib/app-router-types'\nimport type {\n CacheNodeSeedData,\n Segment as FlightRouterStateSegment,\n} from '../../../shared/lib/app-router-types'\nimport { HasLoadingBoundary } from '../../../shared/lib/app-router-types'\nimport {\n NEXT_DID_POSTPONE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STALE_TIME_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n RSC_CONTENT_TYPE_HEADER,\n RSC_HEADER,\n} from '../app-router-headers'\nimport {\n createFetch,\n createFromNextReadableStream,\n type RSCResponse,\n type RequestHeaders,\n} from '../router-reducer/fetch-server-response'\nimport {\n pingPrefetchTask,\n isPrefetchTaskDirty,\n type PrefetchTask,\n type PrefetchSubtaskResult,\n startRevalidationCooldown,\n} from './scheduler'\nimport {\n type RouteVaryPath,\n type SegmentVaryPath,\n type PartialSegmentVaryPath,\n getRouteVaryPath,\n getFulfilledRouteVaryPath,\n getSegmentVaryPathForRequest,\n appendLayoutVaryPath,\n finalizeLayoutVaryPath,\n finalizePageVaryPath,\n clonePageVaryPathWithNewSearchParams,\n type PageVaryPath,\n finalizeMetadataVaryPath,\n} from './vary-path'\nimport { getAppBuildId } from '../../app-build-id'\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url'\nimport type { NormalizedSearch, RouteCacheKey } from './cache-key'\n// TODO: Rename this module to avoid confusion with other types of cache keys\nimport { createCacheKey as createPrefetchRequestKey } from './cache-key'\nimport {\n doesStaticSegmentAppearInURL,\n getCacheKeyForDynamicParam,\n getRenderedPathname,\n getRenderedSearch,\n parseDynamicParamFromURLPart,\n} from '../../route-params'\nimport {\n createCacheMap,\n getFromCacheMap,\n setInCacheMap,\n setSizeInCacheMap,\n deleteFromCacheMap,\n isValueExpired,\n type CacheMap,\n type UnknownMapEntry,\n} from './cache-map'\nimport {\n appendSegmentRequestKeyPart,\n convertSegmentPathToStaticExportFilename,\n createSegmentRequestKeyPart,\n HEAD_REQUEST_KEY,\n ROOT_SEGMENT_REQUEST_KEY,\n type SegmentRequestKey,\n} from '../../../shared/lib/segment-cache/segment-value-encoding'\nimport type {\n FlightRouterState,\n NavigationFlightResponse,\n} from '../../../shared/lib/app-router-types'\nimport {\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n} from '../../flight-data-helpers'\nimport { STATIC_STALETIME_MS } from '../router-reducer/reducers/navigate-reducer'\nimport { pingVisibleLinks } from '../links'\nimport { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment'\nimport { FetchStrategy } from './types'\nimport { createPromiseWithResolvers } from '../../../shared/lib/promise-with-resolvers'\n\n/**\n * Ensures a minimum stale time of 30s to avoid issues where the server sends a too\n * short-lived stale time, which would prevent anything from being prefetched.\n */\nexport function getStaleTimeMs(staleTimeSeconds: number): number {\n return Math.max(staleTimeSeconds, 30) * 1000\n}\n\n// A note on async/await when working in the prefetch cache:\n//\n// Most async operations in the prefetch cache should *not* use async/await,\n// Instead, spawn a subtask that writes the results to a cache entry, and attach\n// a \"ping\" listener to notify the prefetch queue to try again.\n//\n// The reason is we need to be able to access the segment cache and traverse its\n// data structures synchronously. For example, if there's a synchronous update\n// we can take an immediate snapshot of the cache to produce something we can\n// render. Limiting the use of async/await also makes it easier to avoid race\n// conditions, which is especially important because is cache is mutable.\n//\n// Another reason is that while we're performing async work, it's possible for\n// existing entries to become stale, or for Link prefetches to be removed from\n// the queue. For optimal scheduling, we need to be able to \"cancel\" subtasks\n// that are no longer needed. So, when a segment is received from the server, we\n// restart from the root of the tree that's being prefetched, to confirm all the\n// parent segments are still cached. If the segment is no longer reachable from\n// the root, then it's effectively canceled. This is similar to the design of\n// Rust Futures, or React Suspense.\n\ntype RouteTreeShared = {\n requestKey: SegmentRequestKey\n // TODO: Remove the `segment` field, now that it can be reconstructed\n // from `param`.\n segment: FlightRouterStateSegment\n slots: null | {\n [parallelRouteKey: string]: RouteTree\n }\n isRootLayout: boolean\n\n // If this is a dynamic route, indicates whether there is a loading boundary\n // somewhere in the tree. If not, we can skip the prefetch for the data,\n // because we know it would be an empty response. (For a static/PPR route,\n // this value is disregarded, because in that model `loading.tsx` is treated\n // like any other Suspense boundary.)\n hasLoadingBoundary: HasLoadingBoundary\n\n // Indicates whether this route has a runtime prefetch that we can request.\n // This is determined by the server; it's not purely a user configuration\n // because the server may determine that a route is fully static and doesn't\n // need runtime prefetching regardless of the configuration.\n hasRuntimePrefetch: boolean\n}\n\ntype LayoutRouteTree = RouteTreeShared & {\n isPage: false\n varyPath: SegmentVaryPath\n}\n\ntype PageRouteTree = RouteTreeShared & {\n isPage: true\n varyPath: PageVaryPath\n}\n\nexport type RouteTree = LayoutRouteTree | PageRouteTree\n\ntype RouteCacheEntryShared = {\n // This is false only if we're certain the route cannot be intercepted. It's\n // true in all other cases, including on initialization when we haven't yet\n // received a response from the server.\n couldBeIntercepted: boolean\n\n // Map-related fields.\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\n/**\n * Tracks the status of a cache entry as it progresses from no data (Empty),\n * waiting for server data (Pending), and finished (either Fulfilled or\n * Rejected depending on the response from the server.\n */\nexport const enum EntryStatus {\n Empty = 0,\n Pending = 1,\n Fulfilled = 2,\n Rejected = 3,\n}\n\ntype PendingRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Empty | EntryStatus.Pending\n blockedTasks: Set | null\n canonicalUrl: null\n renderedSearch: null\n tree: null\n metadata: null\n isPPREnabled: false\n}\n\ntype RejectedRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Rejected\n blockedTasks: Set | null\n canonicalUrl: null\n renderedSearch: null\n tree: null\n metadata: null\n isPPREnabled: boolean\n}\n\nexport type FulfilledRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Fulfilled\n blockedTasks: null\n canonicalUrl: string\n renderedSearch: NormalizedSearch\n tree: RouteTree\n metadata: RouteTree\n isPPREnabled: boolean\n}\n\nexport type RouteCacheEntry =\n | PendingRouteCacheEntry\n | FulfilledRouteCacheEntry\n | RejectedRouteCacheEntry\n\ntype SegmentCacheEntryShared = {\n fetchStrategy: FetchStrategy\n\n // Map-related fields.\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\nexport type EmptySegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Empty\n rsc: null\n loading: null\n isPartial: true\n promise: null\n}\n\nexport type PendingSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Pending\n rsc: null\n loading: null\n isPartial: boolean\n promise: null | PromiseWithResolvers\n}\n\ntype RejectedSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Rejected\n rsc: null\n loading: null\n isPartial: true\n promise: null\n}\n\nexport type FulfilledSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Fulfilled\n rsc: React.ReactNode | null\n loading: LoadingModuleData | Promise\n isPartial: boolean\n promise: null\n}\n\nexport type SegmentCacheEntry =\n | EmptySegmentCacheEntry\n | PendingSegmentCacheEntry\n | RejectedSegmentCacheEntry\n | FulfilledSegmentCacheEntry\n\nexport type NonEmptySegmentCacheEntry = Exclude<\n SegmentCacheEntry,\n EmptySegmentCacheEntry\n>\n\nconst isOutputExportMode =\n process.env.NODE_ENV === 'production' &&\n process.env.__NEXT_CONFIG_OUTPUT === 'export'\n\nconst MetadataOnlyRequestTree: FlightRouterState = [\n '',\n {},\n null,\n 'metadata-only',\n]\n\nlet routeCacheMap: CacheMap = createCacheMap()\nlet segmentCacheMap: CacheMap = createCacheMap()\n\n// All invalidation listeners for the whole cache are tracked in single set.\n// Since we don't yet support tag or path-based invalidation, there's no point\n// tracking them any more granularly than this. Once we add granular\n// invalidation, that may change, though generally the model is to just notify\n// the listeners and allow the caller to poll the prefetch cache with a new\n// prefetch task if desired.\nlet invalidationListeners: Set | null = null\n\n// Incrementing counter used to track cache invalidations.\nlet currentCacheVersion = 0\n\nexport function getCurrentCacheVersion(): number {\n return currentCacheVersion\n}\n\n/**\n * Used to clear the client prefetch cache when a server action calls\n * revalidatePath or revalidateTag. Eventually we will support only clearing the\n * segments that were actually affected, but there's more work to be done on the\n * server before the client is able to do this correctly.\n */\nexport function revalidateEntireCache(\n nextUrl: string | null,\n tree: FlightRouterState\n) {\n // Increment the current cache version. This does not eagerly evict anything\n // from the cache, but because all the entries are versioned, and we check\n // the version when reading from the cache, this effectively causes all\n // entries to be evicted lazily. We do it lazily because in the future,\n // actions like revalidateTag or refresh will not evict the entire cache,\n // but rather some subset of the entries.\n currentCacheVersion++\n\n // Start a cooldown before re-prefetching to allow CDN cache propagation.\n startRevalidationCooldown()\n\n // Prefetch all the currently visible links again, to re-fill the cache.\n pingVisibleLinks(nextUrl, tree)\n\n // Similarly, notify all invalidation listeners (i.e. those passed to\n // `router.prefetch(onInvalidate)`), so they can trigger a new prefetch\n // if needed.\n pingInvalidationListeners(nextUrl, tree)\n}\n\nfunction attachInvalidationListener(task: PrefetchTask): void {\n // This function is called whenever a prefetch task reads a cache entry. If\n // the task has an onInvalidate function associated with it — i.e. the one\n // optionally passed to router.prefetch(onInvalidate) — then we attach that\n // listener to the every cache entry that the task reads. Then, if an entry\n // is invalidated, we call the function.\n if (task.onInvalidate !== null) {\n if (invalidationListeners === null) {\n invalidationListeners = new Set([task])\n } else {\n invalidationListeners.add(task)\n }\n }\n}\n\nfunction notifyInvalidationListener(task: PrefetchTask): void {\n const onInvalidate = task.onInvalidate\n if (onInvalidate !== null) {\n // Clear the callback from the task object to guarantee it's not called more\n // than once.\n task.onInvalidate = null\n\n // This is a user-space function, so we must wrap in try/catch.\n try {\n onInvalidate()\n } catch (error) {\n if (typeof reportError === 'function') {\n reportError(error)\n } else {\n console.error(error)\n }\n }\n }\n}\n\nexport function pingInvalidationListeners(\n nextUrl: string | null,\n tree: FlightRouterState\n): void {\n // The rough equivalent of pingVisibleLinks, but for onInvalidate callbacks.\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n if (invalidationListeners !== null) {\n const tasks = invalidationListeners\n invalidationListeners = null\n for (const task of tasks) {\n if (isPrefetchTaskDirty(task, nextUrl, tree)) {\n notifyInvalidationListener(task)\n }\n }\n }\n}\n\nexport function readRouteCacheEntry(\n now: number,\n key: RouteCacheKey\n): RouteCacheEntry | null {\n const varyPath: RouteVaryPath = getRouteVaryPath(\n key.pathname,\n key.search,\n key.nextUrl\n )\n const isRevalidation = false\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n routeCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nexport function readSegmentCacheEntry(\n now: number,\n varyPath: SegmentVaryPath\n): SegmentCacheEntry | null {\n const isRevalidation = false\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n segmentCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nfunction readRevalidatingSegmentCacheEntry(\n now: number,\n varyPath: SegmentVaryPath\n): SegmentCacheEntry | null {\n const isRevalidation = true\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n segmentCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nexport function waitForSegmentCacheEntry(\n pendingEntry: PendingSegmentCacheEntry\n): Promise {\n // Because the entry is pending, there's already a in-progress request.\n // Attach a promise to the entry that will resolve when the server responds.\n let promiseWithResolvers = pendingEntry.promise\n if (promiseWithResolvers === null) {\n promiseWithResolvers = pendingEntry.promise =\n createPromiseWithResolvers()\n } else {\n // There's already a promise we can use\n }\n return promiseWithResolvers.promise\n}\n\n/**\n * Checks if an entry for a route exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */\nexport function readOrCreateRouteCacheEntry(\n now: number,\n task: PrefetchTask,\n key: RouteCacheKey\n): RouteCacheEntry {\n attachInvalidationListener(task)\n\n const existingEntry = readRouteCacheEntry(now, key)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const pendingEntry: PendingRouteCacheEntry = {\n canonicalUrl: null,\n status: EntryStatus.Empty,\n blockedTasks: null,\n tree: null,\n metadata: null,\n // This is initialized to true because we don't know yet whether the route\n // could be intercepted. It's only set to false once we receive a response\n // from the server.\n couldBeIntercepted: true,\n // Similarly, we don't yet know if the route supports PPR.\n isPPREnabled: false,\n renderedSearch: null,\n\n // Map-related fields\n ref: null,\n size: 0,\n // Since this is an empty entry, there's no reason to ever evict it. It will\n // be updated when the data is populated.\n staleAt: Infinity,\n version: getCurrentCacheVersion(),\n }\n const varyPath: RouteVaryPath = getRouteVaryPath(\n key.pathname,\n key.search,\n key.nextUrl\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, varyPath, pendingEntry, isRevalidation)\n return pendingEntry\n}\n\nexport function requestOptimisticRouteCacheEntry(\n now: number,\n requestedUrl: URL,\n nextUrl: string | null\n): FulfilledRouteCacheEntry | null {\n // This function is called during a navigation when there was no matching\n // route tree in the prefetch cache. Before de-opting to a blocking,\n // unprefetched navigation, we will first attempt to construct an \"optimistic\"\n // route tree by checking the cache for similar routes.\n //\n // Check if there's a route with the same pathname, but with different\n // search params. We can then base our optimistic route tree on this entry.\n //\n // Conceptually, we are simulating what would happen if we did perform a\n // prefetch the requested URL, under the assumption that the server will\n // not redirect or rewrite the request in a different manner than the\n // base route tree. This assumption might not hold, in which case we'll have\n // to recover when we perform the dynamic navigation request. However, this\n // is what would happen if a route were dynamically rewritten/redirected\n // in between the prefetch and the navigation. So the logic needs to exist\n // to handle this case regardless.\n\n // Look for a route with the same pathname, but with an empty search string.\n // TODO: There's nothing inherently special about the empty search string;\n // it's chosen somewhat arbitrarily, with the rationale that it's the most\n // likely one to exist. But we should update this to match _any_ search\n // string. The plan is to generalize this logic alongside other improvements\n // related to \"fallback\" cache entries.\n const requestedSearch = requestedUrl.search as NormalizedSearch\n if (requestedSearch === '') {\n // The caller would have already checked if a route with an empty search\n // string is in the cache. So we can bail out here.\n return null\n }\n const urlWithoutSearchParams = new URL(requestedUrl)\n urlWithoutSearchParams.search = ''\n const routeWithNoSearchParams = readRouteCacheEntry(\n now,\n createPrefetchRequestKey(urlWithoutSearchParams.href, nextUrl)\n )\n\n if (\n routeWithNoSearchParams === null ||\n routeWithNoSearchParams.status !== EntryStatus.Fulfilled\n ) {\n // Bail out of constructing an optimistic route tree. This will result in\n // a blocking, unprefetched navigation.\n return null\n }\n\n // Now we have a base route tree we can \"patch\" with our optimistic values.\n\n // Optimistically assume that redirects for the requested pathname do\n // not vary on the search string. Therefore, if the base route was\n // redirected to a different search string, then the optimistic route\n // should be redirected to the same search string. Otherwise, we use\n // the requested search string.\n const canonicalUrlForRouteWithNoSearchParams = new URL(\n routeWithNoSearchParams.canonicalUrl,\n requestedUrl.origin\n )\n const optimisticCanonicalSearch =\n canonicalUrlForRouteWithNoSearchParams.search !== ''\n ? // Base route was redirected. Reuse the same redirected search string.\n canonicalUrlForRouteWithNoSearchParams.search\n : requestedSearch\n\n // Similarly, optimistically assume that rewrites for the requested\n // pathname do not vary on the search string. Therefore, if the base\n // route was rewritten to a different search string, then the optimistic\n // route should be rewritten to the same search string. Otherwise, we use\n // the requested search string.\n const optimisticRenderedSearch =\n routeWithNoSearchParams.renderedSearch !== ''\n ? // Base route was rewritten. Reuse the same rewritten search string.\n routeWithNoSearchParams.renderedSearch\n : requestedSearch\n\n const optimisticUrl = new URL(\n routeWithNoSearchParams.canonicalUrl,\n location.origin\n )\n optimisticUrl.search = optimisticCanonicalSearch\n const optimisticCanonicalUrl = createHrefFromUrl(optimisticUrl)\n\n const optimisticRouteTree = createOptimisticRouteTree(\n routeWithNoSearchParams.tree,\n optimisticRenderedSearch\n )\n const optimisticMetadataTree = createOptimisticRouteTree(\n routeWithNoSearchParams.metadata,\n optimisticRenderedSearch\n )\n\n // Clone the base route tree, and override the relevant fields with our\n // optimistic values.\n const optimisticEntry: FulfilledRouteCacheEntry = {\n canonicalUrl: optimisticCanonicalUrl,\n\n status: EntryStatus.Fulfilled,\n // This isn't cloned because it's instance-specific\n blockedTasks: null,\n tree: optimisticRouteTree,\n metadata: optimisticMetadataTree,\n couldBeIntercepted: routeWithNoSearchParams.couldBeIntercepted,\n isPPREnabled: routeWithNoSearchParams.isPPREnabled,\n\n // Override the rendered search with the optimistic value.\n renderedSearch: optimisticRenderedSearch,\n\n // Map-related fields\n ref: null,\n size: 0,\n staleAt: routeWithNoSearchParams.staleAt,\n version: routeWithNoSearchParams.version,\n }\n\n // Do not insert this entry into the cache. It only exists so we can\n // perform the current navigation. Just return it to the caller.\n return optimisticEntry\n}\n\nfunction createOptimisticRouteTree(\n tree: RouteTree,\n newRenderedSearch: NormalizedSearch\n): RouteTree {\n // Create a new route tree that identical to the original one except for\n // the rendered search string, which is contained in the vary path.\n\n let clonedSlots: Record | null = null\n const originalSlots = tree.slots\n if (originalSlots !== null) {\n clonedSlots = {}\n for (const parallelRouteKey in originalSlots) {\n const childTree = originalSlots[parallelRouteKey]\n clonedSlots[parallelRouteKey] = createOptimisticRouteTree(\n childTree,\n newRenderedSearch\n )\n }\n }\n\n // We only need to clone the vary path if the route is a page.\n if (tree.isPage) {\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n varyPath: clonePageVaryPathWithNewSearchParams(\n tree.varyPath,\n newRenderedSearch\n ),\n isPage: true,\n slots: clonedSlots,\n isRootLayout: tree.isRootLayout,\n hasLoadingBoundary: tree.hasLoadingBoundary,\n hasRuntimePrefetch: tree.hasRuntimePrefetch,\n }\n }\n\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n varyPath: tree.varyPath,\n isPage: false,\n slots: clonedSlots,\n isRootLayout: tree.isRootLayout,\n hasLoadingBoundary: tree.hasLoadingBoundary,\n hasRuntimePrefetch: tree.hasRuntimePrefetch,\n }\n}\n\n/**\n * Checks if an entry for a segment exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */\nexport function readOrCreateSegmentCacheEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): SegmentCacheEntry {\n const existingEntry = readSegmentCacheEntry(now, tree.varyPath)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = false\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function readOrCreateRevalidatingSegmentEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): SegmentCacheEntry {\n // This function is called when we've already confirmed that a particular\n // segment is cached, but we want to perform another request anyway in case it\n // returns more complete and/or fresher data than we already have. The logic\n // for deciding whether to replace the existing entry is handled elsewhere;\n // this function just handles retrieving a cache entry that we can use to\n // track the revalidation.\n //\n // The reason revalidations are stored in the cache is because we need to be\n // able to dedupe multiple revalidation requests. The reason they have to be\n // handled specially is because we shouldn't overwrite a \"normal\" entry if\n // one exists at the same keypath. So, for each internal cache location, there\n // is a special \"revalidation\" slot that is used solely for this purpose.\n //\n // You can think of it as if all the revalidation entries were stored in a\n // separate cache map from the canonical entries, and then transfered to the\n // canonical cache map once the request is complete — this isn't how it's\n // actually implemented, since it's more efficient to store them in the same\n // data structure as the normal entries, but that's how it's modeled\n // conceptually.\n\n // TODO: Once we implement Fallback behavior for params, where an entry is\n // re-keyed based on response information, we'll need to account for the\n // possibility that the keypath of the previous entry is more generic than\n // the keypath of the revalidating entry. In other words, the server could\n // return a less generic entry upon revalidation. For now, though, this isn't\n // a concern because the keypath is based solely on the prefetch strategy,\n // not on data contained in the response.\n const existingEntry = readRevalidatingSegmentCacheEntry(now, tree.varyPath)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = true\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function overwriteRevalidatingSegmentCacheEntry(\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n) {\n // This function is called when we've already decided to replace an existing\n // revalidation entry. Create a new entry and write it into the cache,\n // overwriting the previous value.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = true\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function upsertSegmentEntry(\n now: number,\n varyPath: SegmentVaryPath,\n candidateEntry: SegmentCacheEntry\n): SegmentCacheEntry | null {\n // We have a new entry that has not yet been inserted into the cache. Before\n // we do so, we need to confirm whether it takes precedence over the existing\n // entry (if one exists).\n // TODO: We should not upsert an entry if its key was invalidated in the time\n // since the request was made. We can do that by passing the \"owner\" entry to\n // this function and confirming it's the same as `existingEntry`.\n\n if (isValueExpired(now, getCurrentCacheVersion(), candidateEntry)) {\n // The entry is expired. We cannot upsert it.\n return null\n }\n\n const existingEntry = readSegmentCacheEntry(now, varyPath)\n if (existingEntry !== null) {\n // Don't replace a more specific segment with a less-specific one. A case where this\n // might happen is if the existing segment was fetched via\n // ``.\n if (\n // We fetched the new segment using a different, less specific fetch strategy\n // than the segment we already have in the cache, so it can't have more content.\n (candidateEntry.fetchStrategy !== existingEntry.fetchStrategy &&\n !canNewFetchStrategyProvideMoreContent(\n existingEntry.fetchStrategy,\n candidateEntry.fetchStrategy\n )) ||\n // The existing entry isn't partial, but the new one is.\n // (TODO: can this be true if `candidateEntry.fetchStrategy >= existingEntry.fetchStrategy`?)\n (!existingEntry.isPartial && candidateEntry.isPartial)\n ) {\n // We're going to leave revalidating entry in the cache so that it doesn't\n // get revalidated again unnecessarily. Downgrade the Fulfilled entry to\n // Rejected and null out the data so it can be garbage collected. We leave\n // `staleAt` intact to prevent subsequent revalidation attempts only until\n // the entry expires.\n const rejectedEntry: RejectedSegmentCacheEntry = candidateEntry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.loading = null\n rejectedEntry.rsc = null\n return null\n }\n\n // Evict the existing entry from the cache.\n deleteFromCacheMap(existingEntry)\n }\n\n const isRevalidation = false\n setInCacheMap(segmentCacheMap, varyPath, candidateEntry, isRevalidation)\n return candidateEntry\n}\n\nexport function createDetachedSegmentCacheEntry(\n staleAt: number\n): EmptySegmentCacheEntry {\n const emptyEntry: EmptySegmentCacheEntry = {\n status: EntryStatus.Empty,\n // Default to assuming the fetch strategy will be PPR. This will be updated\n // when a fetch is actually initiated.\n fetchStrategy: FetchStrategy.PPR,\n rsc: null,\n loading: null,\n isPartial: true,\n promise: null,\n\n // Map-related fields\n ref: null,\n size: 0,\n staleAt,\n version: 0,\n }\n return emptyEntry\n}\n\nexport function upgradeToPendingSegment(\n emptyEntry: EmptySegmentCacheEntry,\n fetchStrategy: FetchStrategy\n): PendingSegmentCacheEntry {\n const pendingEntry: PendingSegmentCacheEntry = emptyEntry as any\n pendingEntry.status = EntryStatus.Pending\n pendingEntry.fetchStrategy = fetchStrategy\n\n if (fetchStrategy === FetchStrategy.Full) {\n // We can assume the response will contain the full segment data. Set this\n // to false so we know it's OK to omit this segment from any navigation\n // requests that may happen while the data is still pending.\n pendingEntry.isPartial = false\n }\n\n // Set the version here, since this is right before the request is initiated.\n // The next time the global cache version is incremented, the entry will\n // effectively be evicted. This happens before initiating the request, rather\n // than when receiving the response, because it's guaranteed to happen\n // before the data is read on the server.\n pendingEntry.version = getCurrentCacheVersion()\n return pendingEntry\n}\n\nfunction pingBlockedTasks(entry: {\n blockedTasks: Set | null\n}): void {\n const blockedTasks = entry.blockedTasks\n if (blockedTasks !== null) {\n for (const task of blockedTasks) {\n pingPrefetchTask(task)\n }\n entry.blockedTasks = null\n }\n}\n\nfunction fulfillRouteCacheEntry(\n entry: RouteCacheEntry,\n tree: RouteTree,\n metadataVaryPath: PageVaryPath,\n staleAt: number,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n renderedSearch: NormalizedSearch,\n isPPREnabled: boolean\n): FulfilledRouteCacheEntry {\n // The Head is not actually part of the route tree, but other than that, it's\n // fetched and cached like a segment. Some functions expect a RouteTree\n // object, so rather than fork the logic in all those places, we use this\n // \"fake\" one.\n const metadata: RouteTree = {\n requestKey: HEAD_REQUEST_KEY,\n segment: HEAD_REQUEST_KEY,\n varyPath: metadataVaryPath,\n // The metadata isn't really a \"page\" (though it isn't really a \"segment\"\n // either) but for the purposes of how this field is used, it behaves like\n // one. If this logic ever gets more complex we can change this to an enum.\n isPage: true,\n slots: null,\n isRootLayout: false,\n hasLoadingBoundary: HasLoadingBoundary.SubtreeHasNoLoadingBoundary,\n hasRuntimePrefetch: false,\n }\n const fulfilledEntry: FulfilledRouteCacheEntry = entry as any\n fulfilledEntry.status = EntryStatus.Fulfilled\n fulfilledEntry.tree = tree\n fulfilledEntry.metadata = metadata\n fulfilledEntry.staleAt = staleAt\n fulfilledEntry.couldBeIntercepted = couldBeIntercepted\n fulfilledEntry.canonicalUrl = canonicalUrl\n fulfilledEntry.renderedSearch = renderedSearch\n fulfilledEntry.isPPREnabled = isPPREnabled\n pingBlockedTasks(entry)\n return fulfilledEntry\n}\n\nfunction fulfillSegmentCacheEntry(\n segmentCacheEntry: PendingSegmentCacheEntry,\n rsc: React.ReactNode,\n loading: LoadingModuleData | Promise,\n staleAt: number,\n isPartial: boolean\n): FulfilledSegmentCacheEntry {\n const fulfilledEntry: FulfilledSegmentCacheEntry = segmentCacheEntry as any\n fulfilledEntry.status = EntryStatus.Fulfilled\n fulfilledEntry.rsc = rsc\n fulfilledEntry.loading = loading\n fulfilledEntry.staleAt = staleAt\n fulfilledEntry.isPartial = isPartial\n // Resolve any listeners that were waiting for this data.\n if (segmentCacheEntry.promise !== null) {\n segmentCacheEntry.promise.resolve(fulfilledEntry)\n // Free the promise for garbage collection.\n fulfilledEntry.promise = null\n }\n return fulfilledEntry\n}\n\nfunction rejectRouteCacheEntry(\n entry: PendingRouteCacheEntry,\n staleAt: number\n): void {\n const rejectedEntry: RejectedRouteCacheEntry = entry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.staleAt = staleAt\n pingBlockedTasks(entry)\n}\n\nfunction rejectSegmentCacheEntry(\n entry: PendingSegmentCacheEntry,\n staleAt: number\n): void {\n const rejectedEntry: RejectedSegmentCacheEntry = entry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.staleAt = staleAt\n if (entry.promise !== null) {\n // NOTE: We don't currently propagate the reason the prefetch was canceled\n // but we could by accepting a `reason` argument.\n entry.promise.resolve(null)\n entry.promise = null\n }\n}\n\ntype RouteTreeAccumulator = {\n metadataVaryPath: PageVaryPath | null\n}\n\nfunction convertRootTreePrefetchToRouteTree(\n rootTree: RootTreePrefetch,\n renderedPathname: string,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n) {\n // Remove trailing and leading slashes\n const pathnameParts = renderedPathname.split('/').filter((p) => p !== '')\n const index = 0\n const rootSegment = ROOT_SEGMENT_REQUEST_KEY\n return convertTreePrefetchToRouteTree(\n rootTree.tree,\n rootSegment,\n null,\n ROOT_SEGMENT_REQUEST_KEY,\n pathnameParts,\n index,\n renderedSearch,\n acc\n )\n}\n\nfunction convertTreePrefetchToRouteTree(\n prefetch: TreePrefetch,\n segment: FlightRouterStateSegment,\n partialVaryPath: PartialSegmentVaryPath | null,\n requestKey: SegmentRequestKey,\n pathnameParts: Array,\n pathnamePartsIndex: number,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n // Converts the route tree sent by the server into the format used by the\n // cache. The cached version of the tree includes additional fields, such as a\n // cache key for each segment. Since this is frequently accessed, we compute\n // it once instead of on every access. This same cache key is also used to\n // request the segment from the server.\n\n let slots: { [parallelRouteKey: string]: RouteTree } | null = null\n let isPage: boolean\n let varyPath: SegmentVaryPath\n const prefetchSlots = prefetch.slots\n if (prefetchSlots !== null) {\n isPage = false\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n\n slots = {}\n for (let parallelRouteKey in prefetchSlots) {\n const childPrefetch = prefetchSlots[parallelRouteKey]\n const childParamName = childPrefetch.name\n const childParamType = childPrefetch.paramType\n const childServerSentParamKey = childPrefetch.paramKey\n\n let childDoesAppearInURL: boolean\n let childSegment: FlightRouterStateSegment\n let childPartialVaryPath: PartialSegmentVaryPath | null\n if (childParamType !== null) {\n // This segment is parameterized. Get the param from the pathname.\n const childParamValue = parseDynamicParamFromURLPart(\n childParamType,\n pathnameParts,\n pathnamePartsIndex\n )\n\n // Assign a cache key to the segment, based on the param value. In the\n // pre-Segment Cache implementation, the server computes this and sends\n // it in the body of the response. In the Segment Cache implementation,\n // the server sends an empty string and we fill it in here.\n\n // TODO: We're intentionally not adding the search param to page\n // segments here; it's tracked separately and added back during a read.\n // This would clearer if we waited to construct the segment until it's\n // read from the cache, since that's effectively what we're\n // doing anyway.\n const childParamKey =\n // The server omits this field from the prefetch response when\n // cacheComponents is enabled.\n childServerSentParamKey !== null\n ? childServerSentParamKey\n : // If no param key was sent, use the value parsed on the client.\n getCacheKeyForDynamicParam(\n childParamValue,\n '' as NormalizedSearch\n )\n\n childPartialVaryPath = appendLayoutVaryPath(\n partialVaryPath,\n childParamKey\n )\n childSegment = [childParamName, childParamKey, childParamType]\n childDoesAppearInURL = true\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n childPartialVaryPath = partialVaryPath\n childSegment = childParamName\n childDoesAppearInURL = doesStaticSegmentAppearInURL(childParamName)\n }\n\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = childDoesAppearInURL\n ? pathnamePartsIndex + 1\n : pathnamePartsIndex\n\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment)\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n childRequestKeyPart\n )\n slots[parallelRouteKey] = convertTreePrefetchToRouteTree(\n childPrefetch,\n childSegment,\n childPartialVaryPath,\n childRequestKey,\n pathnameParts,\n childPathnamePartsIndex,\n renderedSearch,\n acc\n )\n }\n } else {\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true\n varyPath = finalizePageVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n }\n } else {\n // This is a layout segment.\n isPage = false\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n }\n }\n\n return {\n requestKey,\n segment,\n varyPath,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n isPage: isPage as boolean as any,\n slots,\n isRootLayout: prefetch.isRootLayout,\n // This field is only relevant to dynamic routes. For a PPR/static route,\n // there's always some partial loading state we can fetch.\n hasLoadingBoundary: HasLoadingBoundary.SegmentHasLoadingBoundary,\n hasRuntimePrefetch: prefetch.hasRuntimePrefetch,\n }\n}\n\nfunction convertRootFlightRouterStateToRouteTree(\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n return convertFlightRouterStateToRouteTree(\n flightRouterState,\n ROOT_SEGMENT_REQUEST_KEY,\n null,\n renderedSearch,\n acc\n )\n}\n\nfunction convertFlightRouterStateToRouteTree(\n flightRouterState: FlightRouterState,\n requestKey: SegmentRequestKey,\n parentPartialVaryPath: PartialSegmentVaryPath | null,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n const originalSegment = flightRouterState[0]\n\n let segment: FlightRouterStateSegment\n let partialVaryPath: PartialSegmentVaryPath | null\n let isPage: boolean\n let varyPath: SegmentVaryPath\n if (Array.isArray(originalSegment)) {\n isPage = false\n const paramCacheKey = originalSegment[1]\n partialVaryPath = appendLayoutVaryPath(parentPartialVaryPath, paramCacheKey)\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n segment = originalSegment\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n partialVaryPath = parentPartialVaryPath\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true\n\n // The navigation implementation expects the search params to be included\n // in the segment. However, in the case of a static response, the search\n // params are omitted. So the client needs to add them back in when reading\n // from the Segment Cache.\n //\n // For consistency, we'll do this for dynamic responses, too.\n //\n // TODO: We should move search params out of FlightRouterState and handle\n // them entirely on the client, similar to our plan for dynamic params.\n segment = PAGE_SEGMENT_KEY\n varyPath = finalizePageVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n }\n } else {\n // This is a layout segment.\n isPage = false\n segment = originalSegment\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n }\n }\n\n let slots: { [parallelRouteKey: string]: RouteTree } | null = null\n\n const parallelRoutes = flightRouterState[1]\n for (let parallelRouteKey in parallelRoutes) {\n const childRouterState = parallelRoutes[parallelRouteKey]\n const childSegment = childRouterState[0]\n // TODO: Eventually, the param values will not be included in the response\n // from the server. We'll instead fill them in on the client by parsing\n // the URL. This is where we'll do that.\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment)\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n childRequestKeyPart\n )\n const childTree = convertFlightRouterStateToRouteTree(\n childRouterState,\n childRequestKey,\n partialVaryPath,\n renderedSearch,\n acc\n )\n if (slots === null) {\n slots = {\n [parallelRouteKey]: childTree,\n }\n } else {\n slots[parallelRouteKey] = childTree\n }\n }\n\n return {\n requestKey,\n segment,\n varyPath,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n isPage: isPage as boolean as any,\n slots,\n isRootLayout: flightRouterState[4] === true,\n hasLoadingBoundary:\n flightRouterState[5] !== undefined\n ? flightRouterState[5]\n : HasLoadingBoundary.SubtreeHasNoLoadingBoundary,\n\n // Non-static tree responses are only used by apps that haven't adopted\n // Cache Components. So this is always false.\n hasRuntimePrefetch: false,\n }\n}\n\nexport function convertRouteTreeToFlightRouterState(\n routeTree: RouteTree\n): FlightRouterState {\n const parallelRoutes: Record = {}\n if (routeTree.slots !== null) {\n for (const parallelRouteKey in routeTree.slots) {\n parallelRoutes[parallelRouteKey] = convertRouteTreeToFlightRouterState(\n routeTree.slots[parallelRouteKey]\n )\n }\n }\n const flightRouterState: FlightRouterState = [\n routeTree.segment,\n parallelRoutes,\n null,\n null,\n routeTree.isRootLayout,\n ]\n return flightRouterState\n}\n\nexport async function fetchRouteOnCacheMiss(\n entry: PendingRouteCacheEntry,\n task: PrefetchTask,\n key: RouteCacheKey\n): Promise | null> {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n const pathname = key.pathname\n const search = key.search\n const nextUrl = key.nextUrl\n const segmentPath = '/_tree' as SegmentRequestKey\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: segmentPath,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n\n try {\n const url = new URL(pathname + search, location.origin)\n let response\n let urlAfterRedirects\n if (isOutputExportMode) {\n // In output: \"export\" mode, we can't use headers to request a particular\n // segment. Instead, we encode the extra request information into the URL.\n // This is not part of the \"public\" interface of the app; it's an internal\n // Next.js implementation detail that the app developer should not need to\n // concern themselves with.\n //\n // For example, to request a segment:\n //\n // Path passed to : /path/to/page\n // Path passed to fetch: /path/to/page/__next-segments/_tree\n //\n // (This is not the exact protocol, just an illustration.)\n //\n // Before we do that, though, we need to account for redirects. Even in\n // output: \"export\" mode, a proxy might redirect the page to a different\n // location, but we shouldn't assume or expect that they also redirect all\n // the segment files, too.\n //\n // To check whether the page is redirected, previously we perform a range\n // request of 64 bytes of the HTML document to check if the target page\n // is part of this app (by checking if build id matches). Only if the target\n // page is part of this app do we determine the final canonical URL.\n //\n // However, as mentioned in https://github.com/vercel/next.js/pull/85903,\n // some popular static hosting providers (like Cloudflare Pages or Render.com)\n // do not support range requests, in the worst case, the entire HTML instead\n // of 64 bytes could be returned, which is wasteful.\n //\n // So instead, we drops the check for build id here, and simply perform\n // a HEAD request to rejects 1xx/4xx/5xx responses, and then determine the\n // final URL after redirects.\n //\n // NOTE: We could embed the route tree into the HTML document, to avoid\n // a second request. We're not doing that currently because it would make\n // the HTML document larger and affect normal page loads.\n const headResponse = await fetch(url, {\n method: 'HEAD',\n })\n if (headResponse.status < 200 || headResponse.status >= 400) {\n // The target page responded w/o a successful status code\n // Could be a WAF serving a 403, or a 5xx from a backend\n //\n // Note that we can't use headResponse.ok here, because\n // Response#ok returns `false` with 3xx responses.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n urlAfterRedirects = headResponse.redirected\n ? new URL(headResponse.url)\n : url\n\n response = await fetchPrefetchResponse(\n addSegmentPathToUrlInOutputExportMode(urlAfterRedirects, segmentPath),\n headers\n )\n } else {\n // \"Server\" mode. We can use request headers instead of the pathname.\n // TODO: The eventual plan is to get rid of our custom request headers and\n // encode everything into the URL, using a similar strategy to the\n // \"output: export\" block above.\n response = await fetchPrefetchResponse(url, headers)\n urlAfterRedirects =\n response !== null && response.redirected ? new URL(response.url) : url\n }\n\n if (\n !response ||\n !response.ok ||\n // 204 is a Cache miss. Though theoretically this shouldn't happen when\n // PPR is enabled, because we always respond to route tree requests, even\n // if it needs to be blockingly generated on demand.\n response.status === 204 ||\n !response.body\n ) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // TODO: The canonical URL is the href without the origin. I think\n // historically the reason for this is because the initial canonical URL\n // gets passed as a prop to the top-level React component, which means it\n // needs to be computed during SSR. If it were to include the origin, it\n // would need to always be same as location.origin on the client, to prevent\n // a hydration mismatch. To sidestep this complexity, we omit the origin.\n //\n // However, since this is neither a native URL object nor a fully qualified\n // URL string, we need to be careful about how we use it. To prevent subtle\n // mistakes, we should create a special type for it, instead of just string.\n // Or, we should just use a (readonly) URL object instead. The type of the\n // prop that we pass to seed the initial state does not need to be the same\n // type as the state itself.\n const canonicalUrl = createHrefFromUrl(urlAfterRedirects)\n\n // Check whether the response varies based on the Next-Url header.\n const varyHeader = response.headers.get('vary')\n const couldBeIntercepted =\n varyHeader !== null && varyHeader.includes(NEXT_URL)\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers()\n\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route.\n const routeIsPPREnabled =\n response.headers.get(NEXT_DID_POSTPONE_HEADER) === '2' ||\n // In output: \"export\" mode, we can't rely on response headers. But if we\n // receive a well-formed response, we can assume it's a static response,\n // because all data is static in this mode.\n isOutputExportMode\n\n if (routeIsPPREnabled) {\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(entry, size)\n }\n )\n const serverData = await createFromNextReadableStream(\n prefetchStream,\n headers\n )\n if (serverData.buildId !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // Get the params that were used to render the target page. These may\n // be different from the params in the request URL, if the page\n // was rewritten.\n const renderedPathname = getRenderedPathname(response)\n const renderedSearch = getRenderedSearch(response)\n\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc: RouteTreeAccumulator = { metadataVaryPath: null }\n const routeTree = convertRootTreePrefetchToRouteTree(\n serverData,\n renderedPathname,\n renderedSearch,\n acc\n )\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n const staleTimeMs = getStaleTimeMs(serverData.staleTime)\n fulfillRouteCacheEntry(\n entry,\n routeTree,\n metadataVaryPath,\n Date.now() + staleTimeMs,\n couldBeIntercepted,\n canonicalUrl,\n renderedSearch,\n routeIsPPREnabled\n )\n } else {\n // PPR is not enabled for this route. The server responds with a\n // different format (FlightRouterState) that we need to convert.\n // TODO: We will unify the responses eventually. I'm keeping the types\n // separate for now because FlightRouterState has so many\n // overloaded concerns.\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(entry, size)\n }\n )\n const serverData =\n await createFromNextReadableStream(\n prefetchStream,\n headers\n )\n if (serverData.b !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n writeDynamicTreeResponseIntoCache(\n Date.now(),\n task,\n // The non-PPR response format is what we'd get if we prefetched these segments\n // using the LoadingBoundary fetch strategy, so mark their cache entries accordingly.\n FetchStrategy.LoadingBoundary,\n response as RSCResponse,\n serverData,\n entry,\n couldBeIntercepted,\n canonicalUrl,\n routeIsPPREnabled\n )\n }\n\n if (!couldBeIntercepted) {\n // This route will never be intercepted. So we can use this entry for all\n // requests to this route, regardless of the Next-Url header. This works\n // because when reading the cache we always check for a valid\n // non-intercepted entry first.\n\n // Re-key the entry. The `set` implementation handles removing it from\n // its previous position in the cache. We don't need to do anything to\n // update the LRU, because the entry is already in it.\n // TODO: Treat this as an upsert — should check if an entry already\n // exists at the new keypath, and if so, whether we should keep that\n // one instead.\n const fulfilledVaryPath: RouteVaryPath = getFulfilledRouteVaryPath(\n pathname,\n search,\n nextUrl,\n couldBeIntercepted\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, fulfilledVaryPath, entry, isRevalidation)\n }\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return { value: null, closed: closed.promise }\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n}\n\nexport async function fetchSegmentOnCacheMiss(\n route: FulfilledRouteCacheEntry,\n segmentCacheEntry: PendingSegmentCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): Promise | null> {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n //\n // Segment fetches are non-blocking so we don't need to ping the scheduler\n // on completion.\n\n // Use the canonical URL to request the segment, not the original URL. These\n // are usually the same, but the canonical URL will be different if the route\n // tree response was redirected. To avoid an extra waterfall on every segment\n // request, we pass the redirected URL instead of the original one.\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = routeKey.nextUrl\n\n const requestKey = tree.requestKey\n const normalizedRequestKey =\n requestKey === ROOT_SEGMENT_REQUEST_KEY\n ? // The root segment is a special case. To simplify the server-side\n // handling of these requests, we encode the root segment path as\n // `_index` instead of as an empty string. This should be treated as\n // an implementation detail and not as a stable part of the protocol.\n // It just needs to match the equivalent logic that happens when\n // prerendering the responses. It should not leak outside of Next.js.\n ('/_index' as SegmentRequestKey)\n : requestKey\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: normalizedRequestKey,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n\n const requestUrl = isOutputExportMode\n ? // In output: \"export\" mode, we need to add the segment path to the URL.\n addSegmentPathToUrlInOutputExportMode(url, normalizedRequestKey)\n : url\n try {\n const response = await fetchPrefetchResponse(requestUrl, headers)\n if (\n !response ||\n !response.ok ||\n response.status === 204 || // Cache miss\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route. Theoretically this should never happen\n // because we only issue requests for segments once we've verified that\n // the route supports PPR.\n (response.headers.get(NEXT_DID_POSTPONE_HEADER) !== '2' &&\n // In output: \"export\" mode, we can't rely on response headers. But if\n // we receive a well-formed response, we can assume it's a static\n // response, because all data is static in this mode.\n !isOutputExportMode) ||\n !response.body\n ) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers()\n\n // Wrap the original stream in a new stream that never closes. That way the\n // Flight client doesn't error if there's a hanging promise.\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(segmentCacheEntry, size)\n }\n )\n const serverData = await (createFromNextReadableStream(\n prefetchStream,\n headers\n ) as Promise)\n if (serverData.buildId !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n return {\n value: fulfillSegmentCacheEntry(\n segmentCacheEntry,\n serverData.rsc,\n serverData.loading,\n // TODO: The server does not currently provide per-segment stale time.\n // So we use the stale time of the route.\n route.staleAt,\n serverData.isPartial\n ),\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n closed: closed.promise,\n }\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n}\n\nexport async function fetchSegmentPrefetchesUsingDynamicRequest(\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n dynamicRequestTree: FlightRouterState,\n spawnedEntries: Map\n): Promise | null> {\n const key = task.key\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = key.nextUrl\n\n if (\n spawnedEntries.size === 1 &&\n spawnedEntries.has(route.metadata.requestKey)\n ) {\n // The only thing pending is the head. Instruct the server to\n // skip over everything else.\n dynamicRequestTree = MetadataOnlyRequestTree\n }\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_STATE_TREE_HEADER]:\n prepareFlightRouterStateForRequest(dynamicRequestTree),\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n switch (fetchStrategy) {\n case FetchStrategy.Full: {\n // We omit the prefetch header from a full prefetch because it's essentially\n // just a navigation request that happens ahead of time — it should include\n // all the same data in the response.\n break\n }\n case FetchStrategy.PPRRuntime: {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '2'\n break\n }\n case FetchStrategy.LoadingBoundary: {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '1'\n break\n }\n default: {\n fetchStrategy satisfies never\n }\n }\n\n try {\n const response = await fetchPrefetchResponse(url, headers)\n if (!response || !response.ok || !response.body) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n const renderedSearch = getRenderedSearch(response)\n if (renderedSearch !== route.renderedSearch) {\n // The search params that were used to render the target page are\n // different from the search params in the request URL. This only happens\n // when there's a dynamic rewrite in between the tree prefetch and the\n // data prefetch.\n // TODO: For now, since this is an edge case, we reject the prefetch, but\n // the proper way to handle this is to evict the stale route tree entry\n // then fill the cache with the new response.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers()\n\n let fulfilledEntries: Array | null = null\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(totalBytesReceivedSoFar) {\n // When processing a dynamic response, we don't know how large each\n // individual segment is, so approximate by assiging each segment\n // the average of the total response size.\n if (fulfilledEntries === null) {\n // Haven't received enough data yet to know which segments\n // were included.\n return\n }\n const averageSize = totalBytesReceivedSoFar / fulfilledEntries.length\n for (const entry of fulfilledEntries) {\n setSizeInCacheMap(entry, averageSize)\n }\n }\n )\n const serverData = await (createFromNextReadableStream(\n prefetchStream,\n headers\n ) as Promise)\n\n const isResponsePartial =\n fetchStrategy === FetchStrategy.PPRRuntime\n ? // A runtime prefetch may have holes.\n serverData.rp?.[0] === true\n : // Full and LoadingBoundary prefetches cannot have holes.\n // (even if we did set the prefetch header, we only use this codepath for non-PPR-enabled routes)\n false\n\n // Aside from writing the data into the cache, this function also returns\n // the entries that were fulfilled, so we can streamingly update their sizes\n // in the LRU as more data comes in.\n fulfilledEntries = writeDynamicRenderResponseIntoCache(\n Date.now(),\n task,\n fetchStrategy,\n response as RSCResponse,\n serverData,\n isResponsePartial,\n route,\n spawnedEntries\n )\n\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return { value: null, closed: closed.promise }\n } catch (error) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n}\n\nfunction writeDynamicTreeResponseIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n response: RSCResponse,\n serverData: NavigationFlightResponse,\n entry: PendingRouteCacheEntry,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n routeIsPPREnabled: boolean\n) {\n // Get the URL that was used to render the target page. This may be different\n // from the URL in the request URL, if the page was rewritten.\n const renderedSearch = getRenderedSearch(response)\n\n const normalizedFlightDataResult = normalizeFlightData(serverData.f)\n if (\n // A string result means navigating to this route will result in an\n // MPA navigation.\n typeof normalizedFlightDataResult === 'string' ||\n normalizedFlightDataResult.length !== 1\n ) {\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n const flightData = normalizedFlightDataResult[0]\n if (!flightData.isRootRender) {\n // Unexpected response format.\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n\n const flightRouterState = flightData.tree\n // For runtime prefetches, stale time is in the payload at rp[1].\n // For other responses, fall back to the header.\n const staleTimeSeconds =\n typeof serverData.rp?.[1] === 'number'\n ? serverData.rp[1]\n : parseInt(response.headers.get(NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10)\n const staleTimeMs = !isNaN(staleTimeSeconds)\n ? getStaleTimeMs(staleTimeSeconds)\n : STATIC_STALETIME_MS\n\n // If the response contains dynamic holes, then we must conservatively assume\n // that any individual segment might contain dynamic holes, and also the\n // head. If it did not contain dynamic holes, then we can assume every segment\n // and the head is completely static.\n const isResponsePartial =\n response.headers.get(NEXT_DID_POSTPONE_HEADER) === '1'\n\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc: RouteTreeAccumulator = { metadataVaryPath: null }\n const routeTree = convertRootFlightRouterStateToRouteTree(\n flightRouterState,\n renderedSearch,\n acc\n )\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n\n const fulfilledEntry = fulfillRouteCacheEntry(\n entry,\n routeTree,\n metadataVaryPath,\n now + staleTimeMs,\n couldBeIntercepted,\n canonicalUrl,\n renderedSearch,\n routeIsPPREnabled\n )\n\n // If the server sent segment data as part of the response, we should write\n // it into the cache to prevent a second, redundant prefetch request.\n //\n // TODO: When `clientSegmentCache` is enabled, the server does not include\n // segment data when responding to a route tree prefetch request. However,\n // when `clientSegmentCache` is set to \"client-only\", and PPR is enabled (or\n // the page is fully static), the normal check is bypassed and the server\n // responds with the full page. This is a temporary situation until we can\n // remove the \"client-only\" option. Then, we can delete this function call.\n writeDynamicRenderResponseIntoCache(\n now,\n task,\n fetchStrategy,\n response,\n serverData,\n isResponsePartial,\n fulfilledEntry,\n null\n )\n}\n\nfunction rejectSegmentEntriesIfStillPending(\n entries: Map,\n staleAt: number\n): Array {\n const fulfilledEntries = []\n for (const entry of entries.values()) {\n if (entry.status === EntryStatus.Pending) {\n rejectSegmentCacheEntry(entry, staleAt)\n } else if (entry.status === EntryStatus.Fulfilled) {\n fulfilledEntries.push(entry)\n }\n }\n return fulfilledEntries\n}\n\nfunction writeDynamicRenderResponseIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n response: RSCResponse,\n serverData: NavigationFlightResponse,\n isResponsePartial: boolean,\n route: FulfilledRouteCacheEntry,\n spawnedEntries: Map | null\n): Array | null {\n if (serverData.b !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000)\n }\n return null\n }\n\n const flightDatas = normalizeFlightData(serverData.f)\n if (typeof flightDatas === 'string') {\n // This means navigating to this route will result in an MPA navigation.\n // TODO: We should cache this, too, so that the MPA navigation is immediate.\n return null\n }\n\n // For runtime prefetches, stale time is in the payload at rp[1].\n // For other responses, fall back to the header.\n const staleTimeSeconds =\n typeof serverData.rp?.[1] === 'number'\n ? serverData.rp[1]\n : parseInt(response.headers.get(NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10)\n const staleTimeMs = !isNaN(staleTimeSeconds)\n ? getStaleTimeMs(staleTimeSeconds)\n : STATIC_STALETIME_MS\n const staleAt = now + staleTimeMs\n\n for (const flightData of flightDatas) {\n const seedData = flightData.seedData\n if (seedData !== null) {\n // The data sent by the server represents only a subtree of the app. We\n // need to find the part of the task tree that matches the response.\n //\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n const segmentPath = flightData.segmentPath\n let tree = route.tree\n for (let i = 0; i < segmentPath.length; i += 2) {\n const parallelRouteKey: string = segmentPath[i]\n if (tree?.slots?.[parallelRouteKey] !== undefined) {\n tree = tree.slots[parallelRouteKey]\n } else {\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000)\n }\n return null\n }\n }\n\n writeSeedDataIntoCache(\n now,\n task,\n fetchStrategy,\n route,\n tree,\n staleAt,\n seedData,\n isResponsePartial,\n spawnedEntries\n )\n }\n\n const head = flightData.head\n if (head !== null) {\n fulfillEntrySpawnedByRuntimePrefetch(\n now,\n fetchStrategy,\n route,\n head,\n null,\n flightData.isHeadPartial,\n staleAt,\n route.metadata,\n spawnedEntries\n )\n }\n }\n // Any entry that's still pending was intentionally not rendered by the\n // server, because it was inside the loading boundary. Mark them as rejected\n // so we know not to fetch them again.\n // TODO: If PPR is enabled on some routes but not others, then it's possible\n // that a different page is able to do a per-segment prefetch of one of the\n // segments we're marking as rejected here. We should mark on the segment\n // somehow that the reason for the rejection is because of a non-PPR prefetch.\n // That way a per-segment prefetch knows to disregard the rejection.\n if (spawnedEntries !== null) {\n const fulfilledEntries = rejectSegmentEntriesIfStillPending(\n spawnedEntries,\n now + 10 * 1000\n )\n return fulfilledEntries\n }\n return null\n}\n\nfunction writeSeedDataIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n staleAt: number,\n seedData: CacheNodeSeedData,\n isResponsePartial: boolean,\n entriesOwnedByCurrentTask: Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n > | null\n) {\n // This function is used to write the result of a runtime server request\n // (CacheNodeSeedData) into the prefetch cache.\n const rsc = seedData[0]\n const loading = seedData[2]\n const isPartial = rsc === null || isResponsePartial\n fulfillEntrySpawnedByRuntimePrefetch(\n now,\n fetchStrategy,\n route,\n rsc,\n loading,\n isPartial,\n staleAt,\n tree,\n entriesOwnedByCurrentTask\n )\n\n // Recursively write the child data into the cache.\n const slots = tree.slots\n if (slots !== null) {\n const seedDataChildren = seedData[1]\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n const childSeedData: CacheNodeSeedData | null | void =\n seedDataChildren[parallelRouteKey]\n if (childSeedData !== null && childSeedData !== undefined) {\n writeSeedDataIntoCache(\n now,\n task,\n fetchStrategy,\n route,\n childTree,\n staleAt,\n childSeedData,\n isResponsePartial,\n entriesOwnedByCurrentTask\n )\n }\n }\n }\n}\n\nfunction fulfillEntrySpawnedByRuntimePrefetch(\n now: number,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n route: FulfilledRouteCacheEntry,\n rsc: React.ReactNode,\n loading: LoadingModuleData | Promise,\n isPartial: boolean,\n staleAt: number,\n tree: RouteTree,\n entriesOwnedByCurrentTask: Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n > | null\n) {\n // We should only write into cache entries that are owned by us. Or create\n // a new one and write into that. We must never write over an entry that was\n // created by a different task, because that causes data races.\n const ownedEntry =\n entriesOwnedByCurrentTask !== null\n ? entriesOwnedByCurrentTask.get(tree.requestKey)\n : undefined\n if (ownedEntry !== undefined) {\n fulfillSegmentCacheEntry(ownedEntry, rsc, loading, staleAt, isPartial)\n } else {\n // There's no matching entry. Attempt to create a new one.\n const possiblyNewEntry = readOrCreateSegmentCacheEntry(\n now,\n fetchStrategy,\n route,\n tree\n )\n if (possiblyNewEntry.status === EntryStatus.Empty) {\n // Confirmed this is a new entry. We can fulfill it.\n const newEntry = possiblyNewEntry\n fulfillSegmentCacheEntry(\n upgradeToPendingSegment(newEntry, fetchStrategy),\n rsc,\n loading,\n staleAt,\n isPartial\n )\n } else {\n // There was already an entry in the cache. But we may be able to\n // replace it with the new one from the server.\n const newEntry = fulfillSegmentCacheEntry(\n upgradeToPendingSegment(\n createDetachedSegmentCacheEntry(staleAt),\n fetchStrategy\n ),\n rsc,\n loading,\n staleAt,\n isPartial\n )\n upsertSegmentEntry(\n now,\n getSegmentVaryPathForRequest(fetchStrategy, tree),\n newEntry\n )\n }\n }\n}\n\nasync function fetchPrefetchResponse(\n url: URL,\n headers: RequestHeaders\n): Promise | null> {\n const fetchPriority = 'low'\n // When issuing a prefetch request, don't immediately decode the response; we\n // use the lower level `createFromResponse` API instead because we need to do\n // some extra processing of the response stream. See\n // `createPrefetchResponseStream` for more details.\n const shouldImmediatelyDecode = false\n const response = await createFetch(\n url,\n headers,\n fetchPriority,\n shouldImmediatelyDecode\n )\n if (!response.ok) {\n return null\n }\n\n // Check the content type\n if (isOutputExportMode) {\n // In output: \"export\" mode, we relaxed about the content type, since it's\n // not Next.js that's serving the response. If the status is OK, assume the\n // response is valid. If it's not a valid response, the Flight client won't\n // be able to decode it, and we'll treat it as a miss.\n } else {\n const contentType = response.headers.get('content-type')\n const isFlightResponse =\n contentType && contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n if (!isFlightResponse) {\n return null\n }\n }\n return response\n}\n\nfunction createPrefetchResponseStream(\n originalFlightStream: ReadableStream,\n onStreamClose: () => void,\n onResponseSizeUpdate: (size: number) => void\n): ReadableStream {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n //\n // While processing the original stream, we also incrementally update the size\n // of the cache entry in the LRU.\n let totalByteLength = 0\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n\n // Incrementally update the size of the cache entry in the LRU.\n // NOTE: Since prefetch responses are delivered in a single chunk,\n // it's not really necessary to do this streamingly, but I'm doing it\n // anyway in case this changes in the future.\n totalByteLength += value.byteLength\n onResponseSizeUpdate(totalByteLength)\n continue\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream. We do notify the caller, though.\n onStreamClose()\n return\n }\n },\n })\n}\n\nfunction addSegmentPathToUrlInOutputExportMode(\n url: URL,\n segmentPath: SegmentRequestKey\n): URL {\n if (isOutputExportMode) {\n // In output: \"export\" mode, we cannot use a header to encode the segment\n // path. Instead, we append it to the end of the pathname.\n const staticUrl = new URL(url)\n const routeDir = staticUrl.pathname.endsWith('/')\n ? staticUrl.pathname.slice(0, -1)\n : staticUrl.pathname\n const staticExportFilename =\n convertSegmentPathToStaticExportFilename(segmentPath)\n staticUrl.pathname = `${routeDir}/${staticExportFilename}`\n return staticUrl\n }\n return url\n}\n\n/**\n * Checks whether the new fetch strategy is likely to provide more content than the old one.\n *\n * Generally, when an app uses dynamic data, a \"more specific\" fetch strategy is expected to provide more content:\n * - `LoadingBoundary` only provides static layouts\n * - `PPR` can provide shells for each segment (even for segments that use dynamic data)\n * - `PPRRuntime` can additionally include content that uses searchParams, params, or cookies\n * - `Full` includes all the content, even if it uses dynamic data\n *\n * However, it's possible that a more specific fetch strategy *won't* give us more content if:\n * - a segment is fully static\n * (then, `PPR`/`PPRRuntime`/`Full` will all yield equivalent results)\n * - providing searchParams/params/cookies doesn't reveal any more content, e.g. because of an `await connection()`\n * (then, `PPR` and `PPRRuntime` will yield equivalent results, only `Full` will give us more)\n * Because of this, when comparing two segments, we should also check if the existing segment is partial.\n * If it's not partial, then there's no need to prefetch it again, even using a \"more specific\" strategy.\n * There's currently no way to know if `PPRRuntime` will yield more data that `PPR`, so we have to assume it will.\n *\n * Also note that, in practice, we don't expect to be comparing `LoadingBoundary` to `PPR`/`PPRRuntime`,\n * because a non-PPR-enabled route wouldn't ever use the latter strategies. It might however use `Full`.\n */\nexport function canNewFetchStrategyProvideMoreContent(\n currentStrategy: FetchStrategy,\n newStrategy: FetchStrategy\n): boolean {\n return currentStrategy < newStrategy\n}\n"],"names":["HasLoadingBoundary","NEXT_DID_POSTPONE_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_URL","RSC_CONTENT_TYPE_HEADER","RSC_HEADER","createFetch","createFromNextReadableStream","pingPrefetchTask","isPrefetchTaskDirty","startRevalidationCooldown","getRouteVaryPath","getFulfilledRouteVaryPath","getSegmentVaryPathForRequest","appendLayoutVaryPath","finalizeLayoutVaryPath","finalizePageVaryPath","clonePageVaryPathWithNewSearchParams","finalizeMetadataVaryPath","getAppBuildId","createHrefFromUrl","createCacheKey","createPrefetchRequestKey","doesStaticSegmentAppearInURL","getCacheKeyForDynamicParam","getRenderedPathname","getRenderedSearch","parseDynamicParamFromURLPart","createCacheMap","getFromCacheMap","setInCacheMap","setSizeInCacheMap","deleteFromCacheMap","isValueExpired","appendSegmentRequestKeyPart","convertSegmentPathToStaticExportFilename","createSegmentRequestKeyPart","HEAD_REQUEST_KEY","ROOT_SEGMENT_REQUEST_KEY","normalizeFlightData","prepareFlightRouterStateForRequest","STATIC_STALETIME_MS","pingVisibleLinks","PAGE_SEGMENT_KEY","FetchStrategy","createPromiseWithResolvers","getStaleTimeMs","staleTimeSeconds","Math","max","EntryStatus","isOutputExportMode","process","env","NODE_ENV","__NEXT_CONFIG_OUTPUT","MetadataOnlyRequestTree","routeCacheMap","segmentCacheMap","invalidationListeners","currentCacheVersion","getCurrentCacheVersion","revalidateEntireCache","nextUrl","tree","pingInvalidationListeners","attachInvalidationListener","task","onInvalidate","Set","add","notifyInvalidationListener","error","reportError","console","tasks","readRouteCacheEntry","now","key","varyPath","pathname","search","isRevalidation","readSegmentCacheEntry","readRevalidatingSegmentCacheEntry","waitForSegmentCacheEntry","pendingEntry","promiseWithResolvers","promise","readOrCreateRouteCacheEntry","existingEntry","canonicalUrl","status","blockedTasks","metadata","couldBeIntercepted","isPPREnabled","renderedSearch","ref","size","staleAt","Infinity","version","requestOptimisticRouteCacheEntry","requestedUrl","requestedSearch","urlWithoutSearchParams","URL","routeWithNoSearchParams","href","canonicalUrlForRouteWithNoSearchParams","origin","optimisticCanonicalSearch","optimisticRenderedSearch","optimisticUrl","location","optimisticCanonicalUrl","optimisticRouteTree","createOptimisticRouteTree","optimisticMetadataTree","optimisticEntry","newRenderedSearch","clonedSlots","originalSlots","slots","parallelRouteKey","childTree","isPage","requestKey","segment","isRootLayout","hasLoadingBoundary","hasRuntimePrefetch","readOrCreateSegmentCacheEntry","fetchStrategy","route","varyPathForRequest","createDetachedSegmentCacheEntry","readOrCreateRevalidatingSegmentEntry","overwriteRevalidatingSegmentCacheEntry","upsertSegmentEntry","candidateEntry","canNewFetchStrategyProvideMoreContent","isPartial","rejectedEntry","loading","rsc","emptyEntry","PPR","upgradeToPendingSegment","Full","pingBlockedTasks","entry","fulfillRouteCacheEntry","metadataVaryPath","SubtreeHasNoLoadingBoundary","fulfilledEntry","fulfillSegmentCacheEntry","segmentCacheEntry","resolve","rejectRouteCacheEntry","rejectSegmentCacheEntry","convertRootTreePrefetchToRouteTree","rootTree","renderedPathname","acc","pathnameParts","split","filter","p","index","rootSegment","convertTreePrefetchToRouteTree","prefetch","partialVaryPath","pathnamePartsIndex","prefetchSlots","childPrefetch","childParamName","name","childParamType","paramType","childServerSentParamKey","paramKey","childDoesAppearInURL","childSegment","childPartialVaryPath","childParamValue","childParamKey","childPathnamePartsIndex","childRequestKeyPart","childRequestKey","endsWith","SegmentHasLoadingBoundary","convertRootFlightRouterStateToRouteTree","flightRouterState","convertFlightRouterStateToRouteTree","parentPartialVaryPath","originalSegment","Array","isArray","paramCacheKey","parallelRoutes","childRouterState","undefined","convertRouteTreeToFlightRouterState","routeTree","fetchRouteOnCacheMiss","segmentPath","headers","url","response","urlAfterRedirects","headResponse","fetch","method","Date","redirected","fetchPrefetchResponse","addSegmentPathToUrlInOutputExportMode","ok","body","varyHeader","get","includes","closed","routeIsPPREnabled","prefetchStream","createPrefetchResponseStream","onResponseSizeUpdate","serverData","buildId","staleTimeMs","staleTime","b","writeDynamicTreeResponseIntoCache","LoadingBoundary","fulfilledVaryPath","value","fetchSegmentOnCacheMiss","routeKey","normalizedRequestKey","requestUrl","fetchSegmentPrefetchesUsingDynamicRequest","dynamicRequestTree","spawnedEntries","has","PPRRuntime","rejectSegmentEntriesIfStillPending","fulfilledEntries","totalBytesReceivedSoFar","averageSize","length","isResponsePartial","rp","writeDynamicRenderResponseIntoCache","normalizedFlightDataResult","f","flightData","isRootRender","parseInt","isNaN","entries","values","push","flightDatas","seedData","i","writeSeedDataIntoCache","head","fulfillEntrySpawnedByRuntimePrefetch","isHeadPartial","entriesOwnedByCurrentTask","seedDataChildren","childSeedData","ownedEntry","possiblyNewEntry","newEntry","fetchPriority","shouldImmediatelyDecode","contentType","isFlightResponse","startsWith","originalFlightStream","onStreamClose","totalByteLength","reader","getReader","ReadableStream","pull","controller","done","read","enqueue","byteLength","staticUrl","routeDir","slice","staticExportFilename","currentStrategy","newStrategy"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7420, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/navigation.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type { CacheNode } from '../../../shared/lib/app-router-types'\nimport type {\n HeadData,\n LoadingModuleData,\n} from '../../../shared/lib/app-router-types'\nimport type { NormalizedFlightData } from '../../flight-data-helpers'\nimport { fetchServerResponse } from '../router-reducer/fetch-server-response'\nimport {\n startPPRNavigation,\n spawnDynamicRequests,\n FreshnessPolicy,\n type NavigationTask,\n type NavigationRequestAccumulation,\n} from '../router-reducer/ppr-navigations'\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url'\nimport {\n EntryStatus,\n readRouteCacheEntry,\n readSegmentCacheEntry,\n waitForSegmentCacheEntry,\n requestOptimisticRouteCacheEntry,\n type RouteTree,\n type FulfilledRouteCacheEntry,\n} from './cache'\nimport { createCacheKey } from './cache-key'\nimport { addSearchParamsIfPageSegment } from '../../../shared/lib/segment'\nimport { NavigationResultTag } from './types'\n\ntype MPANavigationResult = {\n tag: NavigationResultTag.MPA\n data: string\n}\n\ntype SuccessfulNavigationResult = {\n tag: NavigationResultTag.Success\n data: {\n flightRouterState: FlightRouterState\n cacheNode: CacheNode\n canonicalUrl: string\n renderedSearch: string\n scrollableSegments: Array | null\n shouldScroll: boolean\n hash: string\n }\n}\n\ntype AsyncNavigationResult = {\n tag: NavigationResultTag.Async\n data: Promise\n}\n\nexport type NavigationResult =\n | MPANavigationResult\n | SuccessfulNavigationResult\n | AsyncNavigationResult\n\n/**\n * Navigate to a new URL, using the Segment Cache to construct a response.\n *\n * To allow for synchronous navigations whenever possible, this is not an async\n * function. It returns a promise only if there's no matching prefetch in\n * the cache. Otherwise it returns an immediate result and uses Suspense/RSC to\n * stream in any missing data.\n */\nexport function navigate(\n url: URL,\n currentUrl: URL,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean,\n accumulation: { collectedDebugInfo?: Array }\n): NavigationResult {\n const now = Date.now()\n const href = url.href\n\n // We special case navigations to the exact same URL as the current location.\n // It's a common UI pattern for apps to refresh when you click a link to the\n // current page. So when this happens, we refresh the dynamic data in the page\n // segments.\n //\n // Note that this does not apply if the any part of the hash or search query\n // has changed. This might feel a bit weird but it makes more sense when you\n // consider that the way to trigger this behavior is to click the same link\n // multiple times.\n //\n // TODO: We should probably refresh the *entire* route when this case occurs,\n // not just the page segments. Essentially treating it the same as a refresh()\n // triggered by an action, which is the more explicit way of modeling the UI\n // pattern described above.\n //\n // Also note that this only refreshes the dynamic data, not static/ cached\n // data. If the page segment is fully static and prefetched, the request is\n // skipped. (This is also how refresh() works.)\n const isSamePageNavigation = href === currentUrl.href\n\n const cacheKey = createCacheKey(href, nextUrl)\n const route = readRouteCacheEntry(now, cacheKey)\n if (route !== null && route.status === EntryStatus.Fulfilled) {\n // We have a matching prefetch.\n const snapshot = readRenderSnapshotFromCache(now, route, route.tree)\n const prefetchFlightRouterState = snapshot.flightRouterState\n const prefetchSeedData = snapshot.seedData\n const headSnapshot = readHeadSnapshotFromCache(now, route)\n const prefetchHead = headSnapshot.rsc\n const isPrefetchHeadPartial = headSnapshot.isPartial\n // TODO: The \"canonicalUrl\" stored in the cache doesn't include the hash,\n // because hash entries do not vary by hash fragment. However, the one\n // we set in the router state *does* include the hash, and it's used to\n // sync with the actual browser location. To make this less of a refactor\n // hazard, we should always track the hash separately from the rest of\n // the URL.\n const newCanonicalUrl = route.canonicalUrl + url.hash\n const renderedSearch = route.renderedSearch\n return navigateUsingPrefetchedRouteTree(\n now,\n url,\n currentUrl,\n nextUrl,\n isSamePageNavigation,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n newCanonicalUrl,\n renderedSearch,\n freshnessPolicy,\n shouldScroll\n )\n }\n\n // There was no matching route tree in the cache. Let's see if we can\n // construct an \"optimistic\" route tree.\n //\n // Do not construct an optimistic route tree if there was a cache hit, but\n // the entry has a rejected status, since it may have been rejected due to a\n // rewrite or redirect based on the search params.\n //\n // TODO: There are multiple reasons a prefetch might be rejected; we should\n // track them explicitly and choose what to do here based on that.\n if (route === null || route.status !== EntryStatus.Rejected) {\n const optimisticRoute = requestOptimisticRouteCacheEntry(now, url, nextUrl)\n if (optimisticRoute !== null) {\n // We have an optimistic route tree. Proceed with the normal flow.\n const snapshot = readRenderSnapshotFromCache(\n now,\n optimisticRoute,\n optimisticRoute.tree\n )\n const prefetchFlightRouterState = snapshot.flightRouterState\n const prefetchSeedData = snapshot.seedData\n const headSnapshot = readHeadSnapshotFromCache(now, optimisticRoute)\n const prefetchHead = headSnapshot.rsc\n const isPrefetchHeadPartial = headSnapshot.isPartial\n const newCanonicalUrl = optimisticRoute.canonicalUrl + url.hash\n const newRenderedSearch = optimisticRoute.renderedSearch\n return navigateUsingPrefetchedRouteTree(\n now,\n url,\n currentUrl,\n nextUrl,\n isSamePageNavigation,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n newCanonicalUrl,\n newRenderedSearch,\n freshnessPolicy,\n shouldScroll\n )\n }\n }\n\n // There's no matching prefetch for this route in the cache.\n let collectedDebugInfo = accumulation.collectedDebugInfo ?? []\n if (accumulation.collectedDebugInfo === undefined) {\n collectedDebugInfo = accumulation.collectedDebugInfo = []\n }\n return {\n tag: NavigationResultTag.Async,\n data: navigateDynamicallyWithNoPrefetch(\n now,\n url,\n currentUrl,\n nextUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n shouldScroll,\n collectedDebugInfo\n ),\n }\n}\n\nexport function navigateToSeededRoute(\n now: number,\n url: URL,\n canonicalUrl: string,\n navigationSeed: NavigationSeed,\n currentUrl: URL,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n nextUrl: string | null,\n shouldScroll: boolean\n): SuccessfulNavigationResult | MPANavigationResult {\n // A version of navigate() that accepts the target route tree as an argument\n // rather than reading it from the prefetch cache.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const isSamePageNavigation = url.href === currentUrl.href\n const task = startPPRNavigation(\n now,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n navigationSeed.tree,\n freshnessPolicy,\n navigationSeed.data,\n navigationSeed.head,\n null,\n null,\n false,\n isSamePageNavigation,\n accumulation\n )\n if (task !== null) {\n spawnDynamicRequests(task, url, nextUrl, freshnessPolicy, accumulation)\n return navigationTaskToResult(\n task,\n canonicalUrl,\n navigationSeed.renderedSearch,\n accumulation.scrollableSegments,\n shouldScroll,\n url.hash\n )\n }\n // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation.\n return {\n tag: NavigationResultTag.MPA,\n data: canonicalUrl,\n }\n}\n\nfunction navigateUsingPrefetchedRouteTree(\n now: number,\n url: URL,\n currentUrl: URL,\n nextUrl: string | null,\n isSamePageNavigation: boolean,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n prefetchFlightRouterState: FlightRouterState,\n prefetchSeedData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n canonicalUrl: string,\n renderedSearch: string,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean\n): SuccessfulNavigationResult | MPANavigationResult {\n // Recursively construct a prefetch tree by reading from the Segment Cache. To\n // maintain compatibility, we output the same data structures as the old\n // prefetching implementation: FlightRouterState and CacheNodeSeedData.\n // TODO: Eventually updateCacheNodeOnNavigation (or the equivalent) should\n // read from the Segment Cache directly. It's only structured this way for now\n // so we can share code with the old prefetching implementation.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const seedData = null\n const seedHead = null\n const task = startPPRNavigation(\n now,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n freshnessPolicy,\n seedData,\n seedHead,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n isSamePageNavigation,\n accumulation\n )\n if (task !== null) {\n spawnDynamicRequests(task, url, nextUrl, freshnessPolicy, accumulation)\n return navigationTaskToResult(\n task,\n canonicalUrl,\n renderedSearch,\n accumulation.scrollableSegments,\n shouldScroll,\n url.hash\n )\n }\n // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation.\n return {\n tag: NavigationResultTag.MPA,\n data: canonicalUrl,\n }\n}\n\nfunction navigationTaskToResult(\n task: NavigationTask,\n canonicalUrl: string,\n renderedSearch: string,\n scrollableSegments: Array | null,\n shouldScroll: boolean,\n hash: string\n): SuccessfulNavigationResult | MPANavigationResult {\n return {\n tag: NavigationResultTag.Success,\n data: {\n flightRouterState: task.route,\n cacheNode: task.node,\n canonicalUrl,\n renderedSearch,\n scrollableSegments,\n shouldScroll,\n hash,\n },\n }\n}\n\nfunction readRenderSnapshotFromCache(\n now: number,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): { flightRouterState: FlightRouterState; seedData: CacheNodeSeedData } {\n let childRouterStates: { [parallelRouteKey: string]: FlightRouterState } = {}\n let childSeedDatas: {\n [parallelRouteKey: string]: CacheNodeSeedData | null\n } = {}\n const slots = tree.slots\n if (slots !== null) {\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n const childResult = readRenderSnapshotFromCache(now, route, childTree)\n childRouterStates[parallelRouteKey] = childResult.flightRouterState\n childSeedDatas[parallelRouteKey] = childResult.seedData\n }\n }\n\n let rsc: React.ReactNode | null = null\n let loading: LoadingModuleData | Promise = null\n let isPartial: boolean = true\n\n const segmentEntry = readSegmentCacheEntry(now, tree.varyPath)\n if (segmentEntry !== null) {\n switch (segmentEntry.status) {\n case EntryStatus.Fulfilled: {\n // Happy path: a cache hit\n rsc = segmentEntry.rsc\n loading = segmentEntry.loading\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Pending: {\n // We haven't received data for this segment yet, but there's already\n // an in-progress request. Since it's extremely likely to arrive\n // before the dynamic data response, we might as well use it.\n const promiseForFulfilledEntry = waitForSegmentCacheEntry(segmentEntry)\n rsc = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.rsc : null\n )\n loading = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.loading : null\n )\n // Because the request is still pending, we typically don't know yet\n // whether the response will be partial. We shouldn't skip this segment\n // during the dynamic navigation request. Otherwise, we might need to\n // do yet another request to fill in the remaining data, creating\n // a waterfall.\n //\n // The one exception is if this segment is being fetched with via\n // prefetch={true} (i.e. the \"force stale\" or \"full\" strategy). If so,\n // we can assume the response will be full. This field is set to `false`\n // for such segments.\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected:\n break\n default:\n segmentEntry satisfies never\n }\n }\n\n // The navigation implementation expects the search params to be\n // included in the segment. However, the Segment Cache tracks search\n // params separately from the rest of the segment key. So we need to\n // add them back here.\n //\n // See corresponding comment in convertFlightRouterStateToTree.\n //\n // TODO: What we should do instead is update the navigation diffing\n // logic to compare search params explicitly. This is a temporary\n // solution until more of the Segment Cache implementation has settled.\n const segment = addSearchParamsIfPageSegment(\n tree.segment,\n Object.fromEntries(new URLSearchParams(route.renderedSearch))\n )\n\n // We don't need this information in a render snapshot, so this can just be a placeholder.\n const hasRuntimePrefetch = false\n\n return {\n flightRouterState: [\n segment,\n childRouterStates,\n null,\n null,\n tree.isRootLayout,\n ],\n seedData: [rsc, childSeedDatas, loading, isPartial, hasRuntimePrefetch],\n }\n}\n\nfunction readHeadSnapshotFromCache(\n now: number,\n route: FulfilledRouteCacheEntry\n): { rsc: HeadData; isPartial: boolean } {\n // Same as readRenderSnapshotFromCache, but for the head\n let rsc: React.ReactNode | null = null\n let isPartial: boolean = true\n const segmentEntry = readSegmentCacheEntry(now, route.metadata.varyPath)\n if (segmentEntry !== null) {\n switch (segmentEntry.status) {\n case EntryStatus.Fulfilled: {\n rsc = segmentEntry.rsc\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Pending: {\n const promiseForFulfilledEntry = waitForSegmentCacheEntry(segmentEntry)\n rsc = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.rsc : null\n )\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected:\n break\n default:\n segmentEntry satisfies never\n }\n }\n return { rsc, isPartial }\n}\n\n// Used to request all the dynamic data for a route, rather than just a subset,\n// e.g. during a refresh or a revalidation. Typically this gets constructed\n// during the normal flow when diffing the route tree, but for an unprefetched\n// navigation, where we don't know the structure of the target route, we use\n// this instead.\nconst DynamicRequestTreeForEntireRoute: FlightRouterState = [\n '',\n {},\n null,\n 'refetch',\n]\n\nasync function navigateDynamicallyWithNoPrefetch(\n now: number,\n url: URL,\n currentUrl: URL,\n nextUrl: string | null,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean,\n collectedDebugInfo: Array\n): Promise {\n // Runs when a navigation happens but there's no cached prefetch we can use.\n // Don't bother to wait for a prefetch response; go straight to a full\n // navigation that contains both static and dynamic data in a single stream.\n // (This is unlike the old navigation implementation, which instead blocks\n // the dynamic request until a prefetch request is received.)\n //\n // To avoid duplication of logic, we're going to pretend that the tree\n // returned by the dynamic request is, in fact, a prefetch tree. Then we can\n // use the same server response to write the actual data into the CacheNode\n // tree. So it's the same flow as the \"happy path\" (prefetch, then\n // navigation), except we use a single server response for both stages.\n\n let dynamicRequestTree: FlightRouterState\n switch (freshnessPolicy) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n dynamicRequestTree = currentFlightRouterState\n break\n case FreshnessPolicy.Hydration: // <- shouldn't happen during client nav\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n dynamicRequestTree = DynamicRequestTreeForEntireRoute\n break\n default:\n freshnessPolicy satisfies never\n dynamicRequestTree = currentFlightRouterState\n break\n }\n\n const promiseForDynamicServerResponse = fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n })\n const result = await promiseForDynamicServerResponse\n if (typeof result === 'string') {\n // This is an MPA navigation.\n const newUrl = result\n return {\n tag: NavigationResultTag.MPA,\n data: newUrl,\n }\n }\n\n const {\n flightData,\n canonicalUrl,\n renderedSearch,\n debugInfo: debugInfoFromResponse,\n } = result\n if (debugInfoFromResponse !== null) {\n collectedDebugInfo.push(...debugInfoFromResponse)\n }\n\n // Since the response format of dynamic requests and prefetches is slightly\n // different, we'll need to massage the data a bit. Create FlightRouterState\n // tree that simulates what we'd receive as the result of a prefetch.\n const navigationSeed = convertServerPatchToFullTree(\n currentFlightRouterState,\n flightData,\n renderedSearch\n )\n\n return navigateToSeededRoute(\n now,\n url,\n createHrefFromUrl(canonicalUrl),\n navigationSeed,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n nextUrl,\n shouldScroll\n )\n}\n\nexport type NavigationSeed = {\n tree: FlightRouterState\n renderedSearch: string\n data: CacheNodeSeedData | null\n head: HeadData | null\n}\n\nexport function convertServerPatchToFullTree(\n currentTree: FlightRouterState,\n flightData: Array,\n renderedSearch: string\n): NavigationSeed {\n // During a client navigation or prefetch, the server sends back only a patch\n // for the parts of the tree that have changed.\n //\n // This applies the patch to the base tree to create a full representation of\n // the resulting tree.\n //\n // The return type includes a full FlightRouterState tree and a full\n // CacheNodeSeedData tree. (Conceptually these are the same tree, and should\n // eventually be unified, but there's still lots of existing code that\n // operates on FlightRouterState trees alone without the CacheNodeSeedData.)\n //\n // TODO: This similar to what apply-router-state-patch-to-tree does. It\n // will eventually fully replace it. We should get rid of all the remaining\n // places where we iterate over the server patch format. This should also\n // eventually replace normalizeFlightData.\n\n let baseTree: FlightRouterState = currentTree\n let baseData: CacheNodeSeedData | null = null\n let head: HeadData | null = null\n for (const {\n segmentPath,\n tree: treePatch,\n seedData: dataPatch,\n head: headPatch,\n } of flightData) {\n const result = convertServerPatchToFullTreeImpl(\n baseTree,\n baseData,\n treePatch,\n dataPatch,\n segmentPath,\n 0\n )\n baseTree = result.tree\n baseData = result.data\n // This is the same for all patches per response, so just pick an\n // arbitrary one\n head = headPatch\n }\n\n return {\n tree: baseTree,\n data: baseData,\n renderedSearch,\n head,\n }\n}\n\nfunction convertServerPatchToFullTreeImpl(\n baseRouterState: FlightRouterState,\n baseData: CacheNodeSeedData | null,\n treePatch: FlightRouterState,\n dataPatch: CacheNodeSeedData | null,\n segmentPath: FlightSegmentPath,\n index: number\n): { tree: FlightRouterState; data: CacheNodeSeedData | null } {\n if (index === segmentPath.length) {\n // We reached the part of the tree that we need to patch.\n return {\n tree: treePatch,\n data: dataPatch,\n }\n }\n\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n //\n // This path tells us which part of the base tree to apply the tree patch.\n //\n // NOTE: We receive the FlightRouterState patch in the same request as the\n // seed data patch. Therefore we don't need to worry about diffing the segment\n // values; we can assume the server sent us a correct result.\n const updatedParallelRouteKey: string = segmentPath[index]\n // const segment: Segment = segmentPath[index + 1] <-- Not used, see note above\n\n const baseTreeChildren = baseRouterState[1]\n const baseSeedDataChildren = baseData !== null ? baseData[1] : null\n const newTreeChildren: Record = {}\n const newSeedDataChildren: Record = {}\n for (const parallelRouteKey in baseTreeChildren) {\n const childBaseRouterState = baseTreeChildren[parallelRouteKey]\n const childBaseSeedData =\n baseSeedDataChildren !== null\n ? (baseSeedDataChildren[parallelRouteKey] ?? null)\n : null\n if (parallelRouteKey === updatedParallelRouteKey) {\n const result = convertServerPatchToFullTreeImpl(\n childBaseRouterState,\n childBaseSeedData,\n treePatch,\n dataPatch,\n segmentPath,\n // Advance the index by two and keep cloning until we reach\n // the end of the segment path.\n index + 2\n )\n\n newTreeChildren[parallelRouteKey] = result.tree\n newSeedDataChildren[parallelRouteKey] = result.data\n } else {\n // This child is not being patched. Copy it over as-is.\n newTreeChildren[parallelRouteKey] = childBaseRouterState\n newSeedDataChildren[parallelRouteKey] = childBaseSeedData\n }\n }\n\n let clonedTree: FlightRouterState\n let clonedSeedData: CacheNodeSeedData\n // Clone all the fields except the children.\n\n // Clone the FlightRouterState tree. Based on equivalent logic in\n // apply-router-state-patch-to-tree, but should confirm whether we need to\n // copy all of these fields. Not sure the server ever sends, e.g. the\n // refetch marker.\n clonedTree = [baseRouterState[0], newTreeChildren]\n if (2 in baseRouterState) {\n clonedTree[2] = baseRouterState[2]\n }\n if (3 in baseRouterState) {\n clonedTree[3] = baseRouterState[3]\n }\n if (4 in baseRouterState) {\n clonedTree[4] = baseRouterState[4]\n }\n\n // Clone the CacheNodeSeedData tree.\n const isEmptySeedDataPartial = true\n clonedSeedData = [\n null,\n newSeedDataChildren,\n null,\n isEmptySeedDataPartial,\n false,\n ]\n\n return {\n tree: clonedTree,\n data: clonedSeedData,\n }\n}\n"],"names":["fetchServerResponse","startPPRNavigation","spawnDynamicRequests","FreshnessPolicy","createHrefFromUrl","EntryStatus","readRouteCacheEntry","readSegmentCacheEntry","waitForSegmentCacheEntry","requestOptimisticRouteCacheEntry","createCacheKey","addSearchParamsIfPageSegment","NavigationResultTag","navigate","url","currentUrl","currentCacheNode","currentFlightRouterState","nextUrl","freshnessPolicy","shouldScroll","accumulation","now","Date","href","isSamePageNavigation","cacheKey","route","status","Fulfilled","snapshot","readRenderSnapshotFromCache","tree","prefetchFlightRouterState","flightRouterState","prefetchSeedData","seedData","headSnapshot","readHeadSnapshotFromCache","prefetchHead","rsc","isPrefetchHeadPartial","isPartial","newCanonicalUrl","canonicalUrl","hash","renderedSearch","navigateUsingPrefetchedRouteTree","Rejected","optimisticRoute","newRenderedSearch","collectedDebugInfo","undefined","tag","Async","data","navigateDynamicallyWithNoPrefetch","navigateToSeededRoute","navigationSeed","scrollableSegments","separateRefreshUrls","task","head","navigationTaskToResult","MPA","seedHead","Success","cacheNode","node","childRouterStates","childSeedDatas","slots","parallelRouteKey","childTree","childResult","loading","segmentEntry","varyPath","Pending","promiseForFulfilledEntry","then","entry","Empty","segment","Object","fromEntries","URLSearchParams","hasRuntimePrefetch","isRootLayout","metadata","DynamicRequestTreeForEntireRoute","dynamicRequestTree","Default","HistoryTraversal","Hydration","RefreshAll","HMRRefresh","promiseForDynamicServerResponse","result","newUrl","flightData","debugInfo","debugInfoFromResponse","push","convertServerPatchToFullTree","currentTree","baseTree","baseData","segmentPath","treePatch","dataPatch","headPatch","convertServerPatchToFullTreeImpl","baseRouterState","index","length","updatedParallelRouteKey","baseTreeChildren","baseSeedDataChildren","newTreeChildren","newSeedDataChildren","childBaseRouterState","childBaseSeedData","clonedTree","clonedSeedData","isEmptySeedDataPartial"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7863, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/navigate-reducer.ts"],"sourcesContent":["import type {\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../../shared/lib/app-router-types'\nimport { createHrefFromUrl } from '../create-href-from-url'\nimport type {\n Mutable,\n NavigateAction,\n ReadonlyReducerState,\n ReducerState,\n} from '../router-reducer-types'\nimport { handleMutable } from '../handle-mutable'\n\nimport {\n navigate as navigateUsingSegmentCache,\n type NavigationResult,\n} from '../../segment-cache/navigation'\nimport { NavigationResultTag } from '../../segment-cache/types'\nimport { getStaleTimeMs } from '../../segment-cache/cache'\nimport { FreshnessPolicy } from '../ppr-navigations'\n\n// These values are set by `define-env-plugin` (based on `nextConfig.experimental.staleTimes`)\n// and default to 5 minutes (static) / 0 seconds (dynamic)\nexport const DYNAMIC_STALETIME_MS =\n Number(process.env.__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME) * 1000\n\nexport const STATIC_STALETIME_MS = getStaleTimeMs(\n Number(process.env.__NEXT_CLIENT_ROUTER_STATIC_STALETIME)\n)\n\nexport function handleExternalUrl(\n state: ReadonlyReducerState,\n mutable: Mutable,\n url: string,\n pendingPush: boolean\n) {\n mutable.mpaNavigation = true\n mutable.canonicalUrl = url\n mutable.pendingPush = pendingPush\n mutable.scrollableSegments = undefined\n\n return handleMutable(state, mutable)\n}\n\nexport function generateSegmentsFromPatch(\n flightRouterPatch: FlightRouterState\n): FlightSegmentPath[] {\n const segments: FlightSegmentPath[] = []\n const [segment, parallelRoutes] = flightRouterPatch\n\n if (Object.keys(parallelRoutes).length === 0) {\n return [[segment]]\n }\n\n for (const [parallelRouteKey, parallelRoute] of Object.entries(\n parallelRoutes\n )) {\n for (const childSegment of generateSegmentsFromPatch(parallelRoute)) {\n // If the segment is empty, it means we are at the root of the tree\n if (segment === '') {\n segments.push([parallelRouteKey, ...childSegment])\n } else {\n segments.push([segment, parallelRouteKey, ...childSegment])\n }\n }\n }\n\n return segments\n}\n\nexport function handleNavigationResult(\n url: URL,\n state: ReadonlyReducerState,\n mutable: Mutable,\n pendingPush: boolean,\n result: NavigationResult\n): ReducerState {\n switch (result.tag) {\n case NavigationResultTag.MPA: {\n // Perform an MPA navigation.\n const newUrl = result.data\n return handleExternalUrl(state, mutable, newUrl, pendingPush)\n }\n case NavigationResultTag.Success: {\n // Received a new result.\n mutable.cache = result.data.cacheNode\n mutable.patchedTree = result.data.flightRouterState\n mutable.renderedSearch = result.data.renderedSearch\n mutable.canonicalUrl = result.data.canonicalUrl\n // TODO: During a refresh, we don't set the `scrollableSegments`. There's\n // some confusing and subtle logic in `handleMutable` that decides what\n // to do when `shouldScroll` is set but `scrollableSegments` is not. I'm\n // not convinced it's totally coherent but the tests assert on this\n // particular behavior so I've ported the logic as-is from the previous\n // router implementation, for now.\n mutable.scrollableSegments = result.data.scrollableSegments ?? undefined\n mutable.shouldScroll = result.data.shouldScroll\n mutable.hashFragment = result.data.hash\n\n // Check if the only thing that changed was the hash fragment.\n const oldUrl = new URL(state.canonicalUrl, url)\n const onlyHashChange =\n // We don't need to compare the origins, because client-driven\n // navigations are always same-origin.\n url.pathname === oldUrl.pathname &&\n url.search === oldUrl.search &&\n url.hash !== oldUrl.hash\n if (onlyHashChange) {\n // The only updated part of the URL is the hash.\n mutable.onlyHashChange = true\n mutable.shouldScroll = result.data.shouldScroll\n mutable.hashFragment = url.hash\n // Setting this to an empty array triggers a scroll for all new and\n // updated segments. See `ScrollAndFocusHandler` for more details.\n mutable.scrollableSegments = []\n }\n\n return handleMutable(state, mutable)\n }\n case NavigationResultTag.Async: {\n return result.data.then(\n (asyncResult) =>\n handleNavigationResult(url, state, mutable, pendingPush, asyncResult),\n // If the navigation failed, return the current state.\n // TODO: This matches the current behavior but we need to do something\n // better here if the network fails.\n () => {\n return state\n }\n )\n }\n default: {\n result satisfies never\n return state\n }\n }\n}\n\nexport function navigateReducer(\n state: ReadonlyReducerState,\n action: NavigateAction\n): ReducerState {\n const { url, isExternalUrl, navigateType, shouldScroll } = action\n const mutable: Mutable = {}\n const href = createHrefFromUrl(url)\n const pendingPush = navigateType === 'push'\n\n mutable.preserveCustomHistoryState = false\n mutable.pendingPush = pendingPush\n\n if (isExternalUrl) {\n return handleExternalUrl(state, mutable, url.toString(), pendingPush)\n }\n\n // Handles case where `` tag is present,\n // which will trigger an MPA navigation.\n if (document.getElementById('__next-page-redirect')) {\n return handleExternalUrl(state, mutable, href, pendingPush)\n }\n\n // Temporary glue code between the router reducer and the new navigation\n // implementation. Eventually we'll rewrite the router reducer to a\n // state machine.\n const currentUrl = new URL(state.canonicalUrl, location.origin)\n const result = navigateUsingSegmentCache(\n url,\n currentUrl,\n state.cache,\n state.tree,\n state.nextUrl,\n FreshnessPolicy.Default,\n shouldScroll,\n mutable\n )\n return handleNavigationResult(url, state, mutable, pendingPush, result)\n}\n"],"names":["createHrefFromUrl","handleMutable","navigate","navigateUsingSegmentCache","NavigationResultTag","getStaleTimeMs","FreshnessPolicy","DYNAMIC_STALETIME_MS","Number","process","env","__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME","STATIC_STALETIME_MS","__NEXT_CLIENT_ROUTER_STATIC_STALETIME","handleExternalUrl","state","mutable","url","pendingPush","mpaNavigation","canonicalUrl","scrollableSegments","undefined","generateSegmentsFromPatch","flightRouterPatch","segments","segment","parallelRoutes","Object","keys","length","parallelRouteKey","parallelRoute","entries","childSegment","push","handleNavigationResult","result","tag","MPA","newUrl","data","Success","cache","cacheNode","patchedTree","flightRouterState","renderedSearch","shouldScroll","hashFragment","hash","oldUrl","URL","onlyHashChange","pathname","search","Async","then","asyncResult","navigateReducer","action","isExternalUrl","navigateType","href","preserveCustomHistoryState","toString","document","getElementById","currentUrl","location","origin","tree","nextUrl","Default"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 8007, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/ppr-navigations.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type {\n ChildSegmentMap,\n CacheNode,\n} from '../../../shared/lib/app-router-types'\nimport type {\n HeadData,\n LoadingModuleData,\n} from '../../../shared/lib/app-router-types'\nimport {\n DEFAULT_SEGMENT_KEY,\n NOT_FOUND_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport { matchSegment } from '../match-segments'\nimport { createHrefFromUrl } from './create-href-from-url'\nimport { createRouterCacheKey } from './create-router-cache-key'\nimport { fetchServerResponse } from './fetch-server-response'\nimport { dispatchAppRouterAction } from '../use-action-queue'\nimport {\n ACTION_SERVER_PATCH,\n type ServerPatchAction,\n} from './router-reducer-types'\nimport { isNavigatingToNewRootLayout } from './is-navigating-to-new-root-layout'\nimport { DYNAMIC_STALETIME_MS } from './reducers/navigate-reducer'\nimport {\n convertServerPatchToFullTree,\n type NavigationSeed,\n} from '../segment-cache/navigation'\n\n// This is yet another tree type that is used to track pending promises that\n// need to be fulfilled once the dynamic data is received. The terminal nodes of\n// this tree represent the new Cache Node trees that were created during this\n// request. We can't use the Cache Node tree or Route State tree directly\n// because those include reused nodes, too. This tree is discarded as soon as\n// the navigation response is received.\nexport type NavigationTask = {\n status: NavigationTaskStatus\n // The router state that corresponds to the tree that this Task represents.\n route: FlightRouterState\n // The CacheNode that corresponds to the tree that this Task represents.\n node: CacheNode\n // The tree sent to the server during the dynamic request. If all the segments\n // are static, then this will be null, and no server request is required.\n // Otherwise, this is the same as `route`, except with the `refetch` marker\n // set on the top-most segment that needs to be fetched.\n dynamicRequestTree: FlightRouterState | null\n // The URL that should be used to fetch the dynamic data. This is only set\n // when the segment cannot be refetched from the current route, because it's\n // part of a \"default\" parallel slot that was reused during a navigation.\n refreshUrl: string | null\n children: Map | null\n}\n\nexport const enum FreshnessPolicy {\n Default,\n Hydration,\n HistoryTraversal,\n RefreshAll,\n HMRRefresh,\n}\n\nconst enum NavigationTaskStatus {\n Pending,\n Fulfilled,\n Rejected,\n}\n\n/**\n * When a NavigationTask finishes, there may or may not be data still missing,\n * necessitating a retry.\n */\nconst enum NavigationTaskExitStatus {\n /**\n * No additional navigation is required.\n */\n Done = 0,\n /**\n * Some data failed to load, presumably due to a route tree mismatch. Perform\n * a soft retry to reload the entire tree.\n */\n SoftRetry = 1,\n /**\n * Some data failed to load in an unrecoverable way, e.g. in an inactive\n * parallel route. Fall back to a hard (MPA-style) retry.\n */\n HardRetry = 2,\n}\n\nexport type NavigationRequestAccumulation = {\n scrollableSegments: Array | null\n separateRefreshUrls: Set | null\n}\n\nconst noop = () => {}\n\nexport function createInitialCacheNodeForHydration(\n navigatedAt: number,\n initialTree: FlightRouterState,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData\n): CacheNode {\n // Create the initial cache node tree, using the data embedded into the\n // HTML document.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const task = createCacheNodeOnNavigation(\n navigatedAt,\n initialTree,\n undefined,\n FreshnessPolicy.Hydration,\n seedData,\n seedHead,\n null,\n null,\n false,\n null,\n null,\n false,\n accumulation\n )\n\n // NOTE: We intentionally don't check if any data needs to be fetched from the\n // server. We assume the initial hydration payload is sufficient to render\n // the page.\n //\n // The completeness of the initial data is an important property that we rely\n // on as a last-ditch mechanism for recovering the app; we must always be able\n // to reload a fresh HTML document to get to a consistent state.\n //\n // In the future, there may be cases where the server intentionally sends\n // partial data and expects the client to fill in the rest, in which case this\n // logic may change. (There already is a similar case where the server sends\n // _no_ hydration data in the HTML document at all, and the client fetches it\n // separately, but that's different because we still end up hydrating with a\n // complete tree.)\n\n return task.node\n}\n\n// Creates a new Cache Node tree (i.e. copy-on-write) that represents the\n// optimistic result of a navigation, using both the current Cache Node tree and\n// data that was prefetched prior to navigation.\n//\n// At the moment we call this function, we haven't yet received the navigation\n// response from the server. It could send back something completely different\n// from the tree that was prefetched — due to rewrites, default routes, parallel\n// routes, etc.\n//\n// But in most cases, it will return the same tree that we prefetched, just with\n// the dynamic holes filled in. So we optimistically assume this will happen,\n// and accept that the real result could be arbitrarily different.\n//\n// We'll reuse anything that was already in the previous tree, since that's what\n// the server does.\n//\n// New segments (ones that don't appear in the old tree) are assigned an\n// unresolved promise. The data for these promises will be fulfilled later, when\n// the navigation response is received.\n//\n// The tree can be rendered immediately after it is created (that's why this is\n// a synchronous function). Any new trees that do not have prefetch data will\n// suspend during rendering, until the dynamic data streams in.\n//\n// Returns a Task object, which contains both the updated Cache Node and a path\n// to the pending subtrees that need to be resolved by the navigation response.\n//\n// A return value of `null` means there were no changes, and the previous tree\n// can be reused without initiating a server request.\nexport function startPPRNavigation(\n navigatedAt: number,\n oldUrl: URL,\n oldCacheNode: CacheNode | null,\n oldRouterState: FlightRouterState,\n newRouterState: FlightRouterState,\n freshness: FreshnessPolicy,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n isSamePageNavigation: boolean,\n accumulation: NavigationRequestAccumulation\n): NavigationTask | null {\n const didFindRootLayout = false\n const parentNeedsDynamicRequest = false\n const parentRefreshUrl = null\n return updateCacheNodeOnNavigation(\n navigatedAt,\n oldUrl,\n oldCacheNode !== null ? oldCacheNode : undefined,\n oldRouterState,\n newRouterState,\n freshness,\n didFindRootLayout,\n seedData,\n seedHead,\n prefetchData,\n prefetchHead,\n isPrefetchHeadPartial,\n isSamePageNavigation,\n null,\n null,\n parentNeedsDynamicRequest,\n parentRefreshUrl,\n accumulation\n )\n}\n\nfunction updateCacheNodeOnNavigation(\n navigatedAt: number,\n oldUrl: URL,\n oldCacheNode: CacheNode | void,\n oldRouterState: FlightRouterState,\n newRouterState: FlightRouterState,\n freshness: FreshnessPolicy,\n didFindRootLayout: boolean,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n isSamePageNavigation: boolean,\n parentSegmentPath: FlightSegmentPath | null,\n parentParallelRouteKey: string | null,\n parentNeedsDynamicRequest: boolean,\n parentRefreshUrl: string | null,\n accumulation: NavigationRequestAccumulation\n): NavigationTask | null {\n // Check if this segment matches the one in the previous route.\n const oldSegment = oldRouterState[0]\n const newSegment = newRouterState[0]\n if (!matchSegment(newSegment, oldSegment)) {\n // This segment does not match the previous route. We're now entering the\n // new part of the target route. Switch to the \"create\" path.\n if (\n // Check if the route tree changed before we reached a layout. (The\n // highest-level layout in a route tree is referred to as the \"root\"\n // layout.) This could mean that we're navigating between two different\n // root layouts. When this happens, we perform a full-page (MPA-style)\n // navigation.\n //\n // However, the algorithm for deciding where to start rendering a route\n // (i.e. the one performed in order to reach this function) is stricter\n // than the one used to detect a change in the root layout. So just\n // because we're re-rendering a segment outside of the root layout does\n // not mean we should trigger a full-page navigation.\n //\n // Specifically, we handle dynamic parameters differently: two segments\n // are considered the same even if their parameter values are different.\n //\n // Refer to isNavigatingToNewRootLayout for details.\n //\n // Note that we only have to perform this extra traversal if we didn't\n // already discover a root layout in the part of the tree that is\n // unchanged. We also only need to compare the subtree that is not\n // shared. In the common case, this branch is skipped completely.\n (!didFindRootLayout &&\n isNavigatingToNewRootLayout(oldRouterState, newRouterState)) ||\n // The global Not Found route (app/global-not-found.tsx) is a special\n // case, because it acts like a root layout, but in the router tree, it\n // is rendered in the same position as app/layout.tsx.\n //\n // Any navigation to the global Not Found route should trigger a\n // full-page navigation.\n //\n // TODO: We should probably model this by changing the key of the root\n // segment when this happens. Then the root layout check would work\n // as expected, without a special case.\n newSegment === NOT_FOUND_SEGMENT_KEY\n ) {\n return null\n }\n if (parentSegmentPath === null || parentParallelRouteKey === null) {\n // The root should never mismatch. If it does, it suggests an internal\n // Next.js error, or a malformed server response. Trigger a full-\n // page navigation.\n return null\n }\n return createCacheNodeOnNavigation(\n navigatedAt,\n newRouterState,\n oldCacheNode,\n freshness,\n seedData,\n seedHead,\n prefetchData,\n prefetchHead,\n isPrefetchHeadPartial,\n parentSegmentPath,\n parentParallelRouteKey,\n parentNeedsDynamicRequest,\n accumulation\n )\n }\n\n // TODO: The segment paths are tracked so that LayoutRouter knows which\n // segments to scroll to after a navigation. But we should just mark this\n // information on the CacheNode directly. It used to be necessary to do this\n // separately because CacheNodes were created lazily during render, not when\n // rather than when creating the route tree.\n const segmentPath =\n parentParallelRouteKey !== null && parentSegmentPath !== null\n ? parentSegmentPath.concat([parentParallelRouteKey, newSegment])\n : // NOTE: The root segment is intentionally omitted from the segment path\n []\n\n const newRouterStateChildren = newRouterState[1]\n const oldRouterStateChildren = oldRouterState[1]\n const seedDataChildren = seedData !== null ? seedData[1] : null\n const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null\n\n // We're currently traversing the part of the tree that was also part of\n // the previous route. If we discover a root layout, then we don't need to\n // trigger an MPA navigation.\n const isRootLayout = newRouterState[4] === true\n const childDidFindRootLayout = didFindRootLayout || isRootLayout\n\n const oldParallelRoutes =\n oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined\n\n // Clone the current set of segment children, even if they aren't active in\n // the new tree.\n // TODO: We currently retain all the inactive segments indefinitely, until\n // there's an explicit refresh, or a parent layout is lazily refreshed. We\n // rely on this for popstate navigations, which update the Router State Tree\n // but do not eagerly perform a data fetch, because they expect the segment\n // data to already be in the Cache Node tree. For highly static sites that\n // are mostly read-only, this may happen only rarely, causing memory to\n // leak. We should figure out a better model for the lifetime of inactive\n // segments, so we can maintain instant back/forward navigations without\n // leaking memory indefinitely.\n let shouldDropSiblingCaches: boolean = false\n let shouldRefreshDynamicData: boolean = false\n switch (freshness) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n case FreshnessPolicy.Hydration: // <- shouldn't happen during client nav\n // We should never drop dynamic data in shared layouts, except during\n // a refresh.\n shouldDropSiblingCaches = false\n shouldRefreshDynamicData = false\n break\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n shouldDropSiblingCaches = true\n shouldRefreshDynamicData = true\n break\n default:\n freshness satisfies never\n break\n }\n const newParallelRoutes = new Map(\n shouldDropSiblingCaches ? undefined : oldParallelRoutes\n )\n\n // TODO: We're not consistent about how we do this check. Some places\n // check if the segment starts with PAGE_SEGMENT_KEY, but most seem to\n // check if there any any children, which is why I'm doing it here. We\n // should probably encode an empty children set as `null` though. Either\n // way, we should update all the checks to be consistent.\n const isLeafSegment = Object.keys(newRouterStateChildren).length === 0\n\n // Get the data for this segment. Since it was part of the previous route,\n // usually we just clone the data from the old CacheNode. However, during a\n // refresh or a revalidation, there won't be any existing CacheNode. So we\n // may need to consult the prefetch cache, like we would for a new segment.\n let newCacheNode: CacheNode\n let needsDynamicRequest: boolean\n if (\n oldCacheNode !== undefined &&\n !shouldRefreshDynamicData &&\n // During a same-page navigation, we always refetch the page segments\n !(isLeafSegment && isSamePageNavigation)\n ) {\n // Reuse the existing CacheNode\n const dropPrefetchRsc = false\n newCacheNode = reuseDynamicCacheNode(\n dropPrefetchRsc,\n oldCacheNode,\n newParallelRoutes\n )\n needsDynamicRequest = false\n } else if (seedData !== null && seedData[0] !== null) {\n // If this navigation was the result of an action, then check if the\n // server sent back data in the action response. We should favor using\n // that, rather than performing a separate request. This is both better\n // for performance and it's more likely to be consistent with any\n // writes that were just performed by the action, compared to a\n // separate request.\n const seedRsc = seedData[0]\n const seedLoading = seedData[2]\n const isSeedRscPartial = false\n const isSeedHeadPartial = seedHead === null\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = isLeafSegment && isSeedHeadPartial\n } else if (prefetchData !== null) {\n // Consult the prefetch cache.\n const prefetchRsc = prefetchData[0]\n const prefetchLoading = prefetchData[2]\n const isPrefetchRSCPartial = prefetchData[3]\n newCacheNode = readCacheNodeFromSeedData(\n prefetchRsc,\n prefetchLoading,\n isPrefetchRSCPartial,\n prefetchHead,\n isPrefetchHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest =\n isPrefetchRSCPartial || (isLeafSegment && isPrefetchHeadPartial)\n } else {\n // Spawn a request to fetch new data from the server.\n newCacheNode = spawnNewCacheNode(\n newParallelRoutes,\n isLeafSegment,\n navigatedAt,\n freshness\n )\n needsDynamicRequest = true\n }\n\n // During a refresh navigation, there's a special case that happens when\n // entering a \"default\" slot. The default slot may not be part of the\n // current route; it may have been reused from an older route. If so,\n // we need to fetch its data from the old route's URL rather than current\n // route's URL. Keep track of this as we traverse the tree.\n const href = newRouterState[2]\n const refreshUrl =\n typeof href === 'string' && newRouterState[3] === 'refresh'\n ? // This segment is not present in the current route. Track its\n // refresh URL as we continue traversing the tree.\n href\n : // Inherit the refresh URL from the parent.\n parentRefreshUrl\n\n // If this segment itself needs to fetch new data from the server, then by\n // definition it is being refreshed. Track its refresh URL so we know which\n // URL to request the data from.\n if (needsDynamicRequest && refreshUrl !== null) {\n accumulateRefreshUrl(accumulation, refreshUrl)\n }\n\n // As we diff the trees, we may sometimes modify (copy-on-write, not mutate)\n // the Route Tree that was returned by the server — for example, in the case\n // of default parallel routes, we preserve the currently active segment. To\n // avoid mutating the original tree, we clone the router state children along\n // the return path.\n let patchedRouterStateChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n let taskChildren = null\n\n // Most navigations require a request to fetch additional data from the\n // server, either because the data was not already prefetched, or because the\n // target route contains dynamic data that cannot be prefetched.\n //\n // However, if the target route is fully static, and it's already completely\n // loaded into the segment cache, then we can skip the server request.\n //\n // This starts off as `false`, and is set to `true` if any of the child\n // routes requires a dynamic request.\n let childNeedsDynamicRequest = false\n // As we traverse the children, we'll construct a FlightRouterState that can\n // be sent to the server to request the dynamic data. If it turns out that\n // nothing in the subtree is dynamic (i.e. childNeedsDynamicRequest is false\n // at the end), then this will be discarded.\n // TODO: We can probably optimize the format of this data structure to only\n // include paths that are dynamic. Instead of reusing the\n // FlightRouterState type.\n let dynamicRequestTreeChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n\n for (let parallelRouteKey in newRouterStateChildren) {\n let newRouterStateChild: FlightRouterState =\n newRouterStateChildren[parallelRouteKey]\n const oldRouterStateChild: FlightRouterState | void =\n oldRouterStateChildren[parallelRouteKey]\n if (oldRouterStateChild === undefined) {\n // This should never happen, but if it does, it suggests a malformed\n // server response. Trigger a full-page navigation.\n return null\n }\n const oldSegmentMapChild =\n oldParallelRoutes !== undefined\n ? oldParallelRoutes.get(parallelRouteKey)\n : undefined\n\n let seedDataChild: CacheNodeSeedData | void | null =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n let prefetchDataChild: CacheNodeSeedData | void | null =\n prefetchDataChildren !== null\n ? prefetchDataChildren[parallelRouteKey]\n : null\n\n let newSegmentChild = newRouterStateChild[0]\n let seedHeadChild = seedHead\n let prefetchHeadChild = prefetchHead\n let isPrefetchHeadPartialChild = isPrefetchHeadPartial\n if (\n // Skip this branch during a history traversal. We restore the tree that\n // was stashed in the history entry as-is.\n freshness !== FreshnessPolicy.HistoryTraversal &&\n newSegmentChild === DEFAULT_SEGMENT_KEY\n ) {\n // This is a \"default\" segment. These are never sent by the server during\n // a soft navigation; instead, the client reuses whatever segment was\n // already active in that slot on the previous route.\n newRouterStateChild = reuseActiveSegmentInDefaultSlot(\n oldUrl,\n oldRouterStateChild\n )\n newSegmentChild = newRouterStateChild[0]\n\n // Since we're switching to a different route tree, these are no\n // longer valid, because they correspond to the outer tree.\n seedDataChild = null\n seedHeadChild = null\n prefetchDataChild = null\n prefetchHeadChild = null\n isPrefetchHeadPartialChild = false\n }\n\n const newSegmentKeyChild = createRouterCacheKey(newSegmentChild)\n const oldCacheNodeChild =\n oldSegmentMapChild !== undefined\n ? oldSegmentMapChild.get(newSegmentKeyChild)\n : undefined\n\n const taskChild = updateCacheNodeOnNavigation(\n navigatedAt,\n oldUrl,\n oldCacheNodeChild,\n oldRouterStateChild,\n newRouterStateChild,\n freshness,\n childDidFindRootLayout,\n seedDataChild ?? null,\n seedHeadChild,\n prefetchDataChild ?? null,\n prefetchHeadChild,\n isPrefetchHeadPartialChild,\n isSamePageNavigation,\n segmentPath,\n parallelRouteKey,\n parentNeedsDynamicRequest || needsDynamicRequest,\n refreshUrl,\n accumulation\n )\n\n if (taskChild === null) {\n // One of the child tasks discovered a change to the root layout.\n // Immediately unwind from this recursive traversal. This will trigger a\n // full-page navigation.\n return null\n }\n\n // Recursively propagate up the child tasks.\n if (taskChildren === null) {\n taskChildren = new Map()\n }\n taskChildren.set(parallelRouteKey, taskChild)\n const newCacheNodeChild = taskChild.node\n if (newCacheNodeChild !== null) {\n const newSegmentMapChild: ChildSegmentMap = new Map(\n shouldDropSiblingCaches ? undefined : oldSegmentMapChild\n )\n newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild)\n newParallelRoutes.set(parallelRouteKey, newSegmentMapChild)\n }\n\n // The child tree's route state may be different from the prefetched\n // route sent by the server. We need to clone it as we traverse back up\n // the tree.\n const taskChildRoute = taskChild.route\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute\n\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree\n if (dynamicRequestTreeChild !== null) {\n // Something in the child tree is dynamic.\n childNeedsDynamicRequest = true\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute\n }\n }\n\n return {\n status: needsDynamicRequest\n ? NavigationTaskStatus.Pending\n : NavigationTaskStatus.Fulfilled,\n route: patchRouterStateWithNewChildren(\n newRouterState,\n patchedRouterStateChildren\n ),\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(\n newRouterState,\n dynamicRequestTreeChildren,\n needsDynamicRequest,\n childNeedsDynamicRequest,\n parentNeedsDynamicRequest\n ),\n refreshUrl,\n children: taskChildren,\n }\n}\n\nfunction createCacheNodeOnNavigation(\n navigatedAt: number,\n newRouterState: FlightRouterState,\n oldCacheNode: CacheNode | void,\n freshness: FreshnessPolicy,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n parentSegmentPath: FlightSegmentPath | null,\n parentParallelRouteKey: string | null,\n parentNeedsDynamicRequest: boolean,\n accumulation: NavigationRequestAccumulation\n): NavigationTask {\n // Same traversal as updateCacheNodeNavigation, but simpler. We switch to this\n // path once we reach the part of the tree that was not in the previous route.\n // We don't need to diff against the old tree, we just need to create a new\n // one. We also don't need to worry about any refresh-related logic.\n //\n // For the most part, this is a subset of updateCacheNodeOnNavigation, so any\n // change that happens in this function likely needs to be applied to that\n // one, too. However there are some places where the behavior intentionally\n // diverges, which is why we keep them separate.\n\n const newSegment = newRouterState[0]\n const segmentPath =\n parentParallelRouteKey !== null && parentSegmentPath !== null\n ? parentSegmentPath.concat([parentParallelRouteKey, newSegment])\n : // NOTE: The root segment is intentionally omitted from the segment path\n []\n\n const newRouterStateChildren = newRouterState[1]\n const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null\n const seedDataChildren = seedData !== null ? seedData[1] : null\n const oldParallelRoutes =\n oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined\n\n let shouldDropSiblingCaches: boolean = false\n let shouldRefreshDynamicData: boolean = false\n let dropPrefetchRsc: boolean = false\n switch (freshness) {\n case FreshnessPolicy.Default:\n // We should never drop dynamic data in sibling caches except during\n // a refresh.\n shouldDropSiblingCaches = false\n\n // Only reuse the dynamic data if experimental.staleTimes.dynamic config\n // is set, and the data is not stale. (This is not a recommended API with\n // Cache Components, but it's supported for backwards compatibility. Use\n // cacheLife instead.)\n //\n // DYNAMIC_STALETIME_MS defaults to 0, but it can be increased.\n shouldRefreshDynamicData =\n oldCacheNode === undefined ||\n navigatedAt - oldCacheNode.navigatedAt >= DYNAMIC_STALETIME_MS\n\n dropPrefetchRsc = false\n break\n case FreshnessPolicy.Hydration:\n // During hydration, we assume the data sent by the server is both\n // consistent and complete.\n shouldRefreshDynamicData = false\n shouldDropSiblingCaches = false\n dropPrefetchRsc = false\n break\n case FreshnessPolicy.HistoryTraversal:\n // During back/forward navigations, we reuse the dynamic data regardless\n // of how stale it may be.\n shouldRefreshDynamicData = false\n shouldRefreshDynamicData = false\n\n // Only show prefetched data if the dynamic data is still pending. This\n // avoids a flash back to the prefetch state in a case where it's highly\n // likely to have already streamed in.\n //\n // Tehnically, what we're actually checking is whether the dynamic network\n // response was received. But since it's a streaming response, this does\n // not mean that all the dynamic data has fully streamed in. It just means\n // that _some_ of the dynamic data was received. But as a heuristic, we\n // assume that the rest dynamic data will stream in quickly, so it's still\n // better to skip the prefetch state.\n if (oldCacheNode !== undefined) {\n const oldRsc = oldCacheNode.rsc\n const oldRscDidResolve =\n !isDeferredRsc(oldRsc) || oldRsc.status !== 'pending'\n dropPrefetchRsc = oldRscDidResolve\n } else {\n dropPrefetchRsc = false\n }\n break\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n // Drop all dynamic data.\n shouldRefreshDynamicData = true\n shouldDropSiblingCaches = true\n dropPrefetchRsc = false\n break\n default:\n freshness satisfies never\n break\n }\n\n const newParallelRoutes = new Map(\n shouldDropSiblingCaches ? undefined : oldParallelRoutes\n )\n const isLeafSegment = Object.keys(newRouterStateChildren).length === 0\n\n if (isLeafSegment) {\n // The segment path of every leaf segment (i.e. page) is collected into\n // a result array. This is used by the LayoutRouter to scroll to ensure that\n // new pages are visible after a navigation.\n //\n // This only happens for new pages, not for refreshed pages.\n //\n // TODO: We should use a string to represent the segment path instead of\n // an array. We already use a string representation for the path when\n // accessing the Segment Cache, so we can use the same one.\n if (accumulation.scrollableSegments === null) {\n accumulation.scrollableSegments = []\n }\n accumulation.scrollableSegments.push(segmentPath)\n }\n\n let newCacheNode: CacheNode\n let needsDynamicRequest: boolean\n if (!shouldRefreshDynamicData && oldCacheNode !== undefined) {\n // Reuse the existing CacheNode\n newCacheNode = reuseDynamicCacheNode(\n dropPrefetchRsc,\n oldCacheNode,\n newParallelRoutes\n )\n needsDynamicRequest = false\n } else if (seedData !== null && seedData[0] !== null) {\n // If this navigation was the result of an action, then check if the\n // server sent back data in the action response. We should favor using\n // that, rather than performing a separate request. This is both better\n // for performance and it's more likely to be consistent with any\n // writes that were just performed by the action, compared to a\n // separate request.\n const seedRsc = seedData[0]\n const seedLoading = seedData[2]\n const isSeedRscPartial = false\n const isSeedHeadPartial =\n seedHead === null && freshness !== FreshnessPolicy.Hydration\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = isLeafSegment && isSeedHeadPartial\n } else if (\n freshness === FreshnessPolicy.Hydration &&\n isLeafSegment &&\n seedHead !== null\n ) {\n // This is another weird case related to \"not found\" pages and hydration.\n // There will be a head sent by the server, but no page seed data.\n // TODO: We really should get rid of all these \"not found\" specific quirks\n // and make sure the tree is always consistent.\n const seedRsc = null\n const seedLoading = null\n const isSeedRscPartial = false\n const isSeedHeadPartial = false\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = false\n } else if (freshness !== FreshnessPolicy.Hydration && prefetchData !== null) {\n // Consult the prefetch cache.\n const prefetchRsc = prefetchData[0]\n const prefetchLoading = prefetchData[2]\n const isPrefetchRSCPartial = prefetchData[3]\n newCacheNode = readCacheNodeFromSeedData(\n prefetchRsc,\n prefetchLoading,\n isPrefetchRSCPartial,\n prefetchHead,\n isPrefetchHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest =\n isPrefetchRSCPartial || (isLeafSegment && isPrefetchHeadPartial)\n } else {\n // Spawn a request to fetch new data from the server.\n newCacheNode = spawnNewCacheNode(\n newParallelRoutes,\n isLeafSegment,\n navigatedAt,\n freshness\n )\n needsDynamicRequest = true\n }\n\n let patchedRouterStateChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n let taskChildren = null\n\n let childNeedsDynamicRequest = false\n let dynamicRequestTreeChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n\n for (let parallelRouteKey in newRouterStateChildren) {\n const newRouterStateChild: FlightRouterState =\n newRouterStateChildren[parallelRouteKey]\n const oldSegmentMapChild =\n oldParallelRoutes !== undefined\n ? oldParallelRoutes.get(parallelRouteKey)\n : undefined\n const seedDataChild: CacheNodeSeedData | void | null =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n const prefetchDataChild: CacheNodeSeedData | void | null =\n prefetchDataChildren !== null\n ? prefetchDataChildren[parallelRouteKey]\n : null\n\n const newSegmentChild = newRouterStateChild[0]\n const newSegmentKeyChild = createRouterCacheKey(newSegmentChild)\n\n const oldCacheNodeChild =\n oldSegmentMapChild !== undefined\n ? oldSegmentMapChild.get(newSegmentKeyChild)\n : undefined\n\n const taskChild = createCacheNodeOnNavigation(\n navigatedAt,\n newRouterStateChild,\n oldCacheNodeChild,\n freshness,\n seedDataChild ?? null,\n seedHead,\n prefetchDataChild ?? null,\n prefetchHead,\n isPrefetchHeadPartial,\n segmentPath,\n parallelRouteKey,\n parentNeedsDynamicRequest || needsDynamicRequest,\n accumulation\n )\n\n if (taskChildren === null) {\n taskChildren = new Map()\n }\n taskChildren.set(parallelRouteKey, taskChild)\n const newCacheNodeChild = taskChild.node\n if (newCacheNodeChild !== null) {\n const newSegmentMapChild: ChildSegmentMap = new Map(\n shouldDropSiblingCaches ? undefined : oldSegmentMapChild\n )\n newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild)\n newParallelRoutes.set(parallelRouteKey, newSegmentMapChild)\n }\n\n const taskChildRoute = taskChild.route\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute\n\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree\n if (dynamicRequestTreeChild !== null) {\n childNeedsDynamicRequest = true\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute\n }\n }\n\n return {\n status: needsDynamicRequest\n ? NavigationTaskStatus.Pending\n : NavigationTaskStatus.Fulfilled,\n route: patchRouterStateWithNewChildren(\n newRouterState,\n patchedRouterStateChildren\n ),\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(\n newRouterState,\n dynamicRequestTreeChildren,\n needsDynamicRequest,\n childNeedsDynamicRequest,\n parentNeedsDynamicRequest\n ),\n // This route is not part of the current tree, so there's no reason to\n // track the refresh URL.\n refreshUrl: null,\n children: taskChildren,\n }\n}\n\nfunction patchRouterStateWithNewChildren(\n baseRouterState: FlightRouterState,\n newChildren: { [parallelRouteKey: string]: FlightRouterState }\n): FlightRouterState {\n const clone: FlightRouterState = [baseRouterState[0], newChildren]\n // Based on equivalent logic in apply-router-state-patch-to-tree, but should\n // confirm whether we need to copy all of these fields. Not sure the server\n // ever sends, e.g. the refetch marker.\n if (2 in baseRouterState) {\n clone[2] = baseRouterState[2]\n }\n if (3 in baseRouterState) {\n clone[3] = baseRouterState[3]\n }\n if (4 in baseRouterState) {\n clone[4] = baseRouterState[4]\n }\n return clone\n}\n\nfunction createDynamicRequestTree(\n newRouterState: FlightRouterState,\n dynamicRequestTreeChildren: Record,\n needsDynamicRequest: boolean,\n childNeedsDynamicRequest: boolean,\n parentNeedsDynamicRequest: boolean\n): FlightRouterState | null {\n // Create a FlightRouterState that instructs the server how to render the\n // requested segment.\n //\n // Or, if neither this segment nor any of the children require a new data,\n // then we return `null` to skip the request.\n let dynamicRequestTree: FlightRouterState | null = null\n if (needsDynamicRequest) {\n dynamicRequestTree = patchRouterStateWithNewChildren(\n newRouterState,\n dynamicRequestTreeChildren\n )\n // The \"refetch\" marker is set on the top-most segment that requires new\n // data. We can omit it if a parent was already marked.\n if (!parentNeedsDynamicRequest) {\n dynamicRequestTree[3] = 'refetch'\n }\n } else if (childNeedsDynamicRequest) {\n // This segment does not request new data, but at least one of its\n // children does.\n dynamicRequestTree = patchRouterStateWithNewChildren(\n newRouterState,\n dynamicRequestTreeChildren\n )\n } else {\n dynamicRequestTree = null\n }\n return dynamicRequestTree\n}\n\nfunction accumulateRefreshUrl(\n accumulation: NavigationRequestAccumulation,\n refreshUrl: string\n) {\n // This is a refresh navigation, and we're inside a \"default\" slot that's\n // not part of the current route; it was reused from an older route. In\n // order to get fresh data for this reused route, we need to issue a\n // separate request using the old route's URL.\n //\n // Track these extra URLs in the accumulated result. Later, we'll construct\n // an appropriate request for each unique URL in the final set. The reason\n // we don't do it immediately here is so we can deduplicate multiple\n // instances of the same URL into a single request. See\n // listenForDynamicRequest for more details.\n const separateRefreshUrls = accumulation.separateRefreshUrls\n if (separateRefreshUrls === null) {\n accumulation.separateRefreshUrls = new Set([refreshUrl])\n } else {\n separateRefreshUrls.add(refreshUrl)\n }\n}\n\nfunction reuseActiveSegmentInDefaultSlot(\n oldUrl: URL,\n oldRouterState: FlightRouterState\n): FlightRouterState {\n // This is a \"default\" segment. These are never sent by the server during a\n // soft navigation; instead, the client reuses whatever segment was already\n // active in that slot on the previous route. This means if we later need to\n // refresh the segment, it will have to be refetched from the previous route's\n // URL. We store it in the Flight Router State.\n //\n // TODO: We also mark the segment with a \"refresh\" marker but I think we can\n // get rid of that eventually by making sure we only add URLs to page segments\n // that are reused. Then the presence of the URL alone is enough.\n let reusedRouterState\n\n const oldRefreshMarker = oldRouterState[3]\n if (oldRefreshMarker === 'refresh') {\n // This segment was already reused from an even older route. Keep its\n // existing URL and refresh marker.\n reusedRouterState = oldRouterState\n } else {\n // This segment was not previously reused, and it's not on the new route.\n // So it must have been delivered in the old route.\n reusedRouterState = patchRouterStateWithNewChildren(\n oldRouterState,\n oldRouterState[1]\n )\n reusedRouterState[2] = createHrefFromUrl(oldUrl)\n reusedRouterState[3] = 'refresh'\n }\n\n return reusedRouterState\n}\n\nfunction reuseDynamicCacheNode(\n dropPrefetchRsc: boolean,\n existingCacheNode: CacheNode,\n parallelRoutes: Map\n): CacheNode {\n // Clone an existing CacheNode's data, with (possibly) new children.\n const cacheNode: CacheNode = {\n rsc: existingCacheNode.rsc,\n prefetchRsc: dropPrefetchRsc ? null : existingCacheNode.prefetchRsc,\n head: existingCacheNode.head,\n prefetchHead: dropPrefetchRsc ? null : existingCacheNode.prefetchHead,\n loading: existingCacheNode.loading,\n\n parallelRoutes,\n\n // Don't update the navigatedAt timestamp, since we're reusing\n // existing data.\n navigatedAt: existingCacheNode.navigatedAt,\n }\n return cacheNode\n}\n\nfunction readCacheNodeFromSeedData(\n seedRsc: React.ReactNode,\n seedLoading: LoadingModuleData | Promise,\n isSeedRscPartial: boolean,\n seedHead: HeadData | null,\n isSeedHeadPartial: boolean,\n isPageSegment: boolean,\n parallelRoutes: Map,\n navigatedAt: number\n): CacheNode {\n // TODO: Currently this is threaded through the navigation logic using the\n // CacheNodeSeedData type, but in the future this will read directly from\n // the Segment Cache. See readRenderSnapshotFromCache.\n\n let rsc: React.ReactNode\n let prefetchRsc: React.ReactNode\n if (isSeedRscPartial) {\n // The prefetched data contains dynamic holes. Create a pending promise that\n // will be fulfilled when the dynamic data is received from the server.\n prefetchRsc = seedRsc\n rsc = createDeferredRsc()\n } else {\n // The prefetched data is complete. Use it directly.\n prefetchRsc = null\n rsc = seedRsc\n }\n\n // If this is a page segment, also read the head.\n let prefetchHead: HeadData | null\n let head: HeadData | null\n if (isPageSegment) {\n if (isSeedHeadPartial) {\n prefetchHead = seedHead\n head = createDeferredRsc()\n } else {\n prefetchHead = null\n head = seedHead\n }\n } else {\n prefetchHead = null\n head = null\n }\n\n const cacheNode: CacheNode = {\n rsc,\n prefetchRsc,\n head,\n prefetchHead,\n // TODO: Technically, a loading boundary could contain dynamic data. We\n // should have separate `loading` and `prefetchLoading` fields to handle\n // this, like we do for the segment data and head.\n loading: seedLoading,\n parallelRoutes,\n navigatedAt,\n }\n\n return cacheNode\n}\n\nfunction spawnNewCacheNode(\n parallelRoutes: Map,\n isLeafSegment: boolean,\n navigatedAt: number,\n freshness: FreshnessPolicy\n): CacheNode {\n // We should never spawn network requests during hydration. We must treat the\n // initial payload as authoritative, because the initial page load is used\n // as a last-ditch mechanism for recovering the app.\n //\n // This is also an important safety check because if this leaks into the\n // server rendering path (which theoretically it never should because\n // the server payload should be consistent), the server would hang because\n // these promises would never resolve.\n //\n // TODO: There is an existing case where the global \"not found\" boundary\n // triggers this path. But it does render correctly despite that. That's an\n // unusual render path so it's not surprising, but we should look into\n // modeling it in a more consistent way. See also the /_notFound special\n // case in updateCacheNodeOnNavigation.\n const isHydration = freshness === FreshnessPolicy.Hydration\n\n const cacheNode: CacheNode = {\n rsc: !isHydration ? createDeferredRsc() : null,\n prefetchRsc: null,\n head: !isHydration && isLeafSegment ? createDeferredRsc() : null,\n prefetchHead: null,\n loading: !isHydration ? createDeferredRsc() : null,\n parallelRoutes,\n navigatedAt,\n }\n return cacheNode\n}\n\n// Represents whether the previuos navigation resulted in a route tree mismatch.\n// A mismatch results in a refresh of the page. If there are two successive\n// mismatches, we will fall back to an MPA navigation, to prevent a retry loop.\nlet previousNavigationDidMismatch = false\n\n// Writes a dynamic server response into the tree created by\n// updateCacheNodeOnNavigation. All pending promises that were spawned by the\n// navigation will be resolved, either with dynamic data from the server, or\n// `null` to indicate that the data is missing.\n//\n// A `null` value will trigger a lazy fetch during render, which will then patch\n// up the tree using the same mechanism as the non-PPR implementation\n// (serverPatchReducer).\n//\n// Usually, the server will respond with exactly the subset of data that we're\n// waiting for — everything below the nearest shared layout. But technically,\n// the server can return anything it wants.\n//\n// This does _not_ create a new tree; it modifies the existing one in place.\n// Which means it must follow the Suspense rules of cache safety.\nexport function spawnDynamicRequests(\n task: NavigationTask,\n primaryUrl: URL,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n accumulation: NavigationRequestAccumulation\n): void {\n const dynamicRequestTree = task.dynamicRequestTree\n if (dynamicRequestTree === null) {\n // This navigation was fully cached. There are no dynamic requests to spawn.\n previousNavigationDidMismatch = false\n return\n }\n\n // This is intentionally not an async function to discourage the caller from\n // awaiting the result. Any subsequent async operations spawned by this\n // function should result in a separate navigation task, rather than\n // block the original one.\n //\n // In this function we spawn (but do not await) all the network requests that\n // block the navigation, and collect the promises. The next function,\n // `finishNavigationTask`, can await the promises in any order without\n // accidentally introducing a network waterfall.\n const primaryRequestPromise = fetchMissingDynamicData(\n task,\n dynamicRequestTree,\n primaryUrl,\n nextUrl,\n freshnessPolicy\n )\n\n const separateRefreshUrls = accumulation.separateRefreshUrls\n let refreshRequestPromises: Array<\n ReturnType\n > | null = null\n if (separateRefreshUrls !== null) {\n // There are multiple URLs that we need to request the data from. This\n // happens when a \"default\" parallel route slot is present in the tree, and\n // its data cannot be fetched from the current route. We need to split the\n // combined dynamic request tree into separate requests per URL.\n\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n\n // Construct a request tree for each additional refresh URL. This will\n // prune away everything except the parts of the tree that match the\n // given refresh URL.\n refreshRequestPromises = []\n const canonicalUrl = createHrefFromUrl(primaryUrl)\n for (const refreshUrl of separateRefreshUrls) {\n if (refreshUrl === canonicalUrl) {\n // We already initiated a request for the this URL, above. Skip it.\n // TODO: This only happens because the main URL is not tracked as\n // part of the separateRefreshURLs set. There's probably a better way\n // to structure this so this case doesn't happen.\n continue\n }\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n // const scopedDynamicRequestTree = splitTaskByURL(task, refreshUrl)\n const scopedDynamicRequestTree = dynamicRequestTree\n if (scopedDynamicRequestTree !== null) {\n refreshRequestPromises.push(\n fetchMissingDynamicData(\n task,\n scopedDynamicRequestTree,\n new URL(refreshUrl, location.origin),\n // TODO: Just noticed that this should actually the Next-Url at the\n // time the refresh URL was set, not the current Next-Url. Need to\n // start tracking this alongside the refresh URL. In the meantime,\n // if a refresh fails due to a mismatch, it will trigger a\n // hard refresh.\n nextUrl,\n freshnessPolicy\n )\n )\n }\n }\n }\n\n // Further async operations are moved into this separate function to\n // discourage sequential network requests.\n const voidPromise = finishNavigationTask(\n task,\n nextUrl,\n primaryRequestPromise,\n refreshRequestPromises\n )\n // `finishNavigationTask` is responsible for error handling, so we can attach\n // noop callbacks to this promise.\n voidPromise.then(noop, noop)\n}\n\nasync function finishNavigationTask(\n task: NavigationTask,\n nextUrl: string | null,\n primaryRequestPromise: ReturnType,\n refreshRequestPromises: Array<\n ReturnType\n > | null\n): Promise {\n // Wait for all the requests to finish, or for the first one to fail.\n let exitStatus = await waitForRequestsToFinish(\n primaryRequestPromise,\n refreshRequestPromises\n )\n\n // Once the all the requests have finished, check the tree for any remaining\n // pending tasks. If anything is still pending, it means the server response\n // does not match the client, and we must refresh to get back to a consistent\n // state. We can skip this step if we already detected a mismatch during the\n // first phase; it doesn't matter in that case because we're going to refresh\n // the whole tree regardless.\n if (exitStatus === NavigationTaskExitStatus.Done) {\n exitStatus = abortRemainingPendingTasks(task, null, null)\n }\n\n switch (exitStatus) {\n case NavigationTaskExitStatus.Done: {\n // The task has completely finished. There's no missing data. Exit.\n previousNavigationDidMismatch = false\n return\n }\n case NavigationTaskExitStatus.SoftRetry: {\n // Some data failed to finish loading. Trigger a soft retry.\n // TODO: As an extra precaution against soft retry loops, consider\n // tracking whether a navigation was itself triggered by a retry. If two\n // happen in a row, fall back to a hard retry.\n const isHardRetry = false\n const primaryRequestResult = await primaryRequestPromise\n dispatchRetryDueToTreeMismatch(\n isHardRetry,\n primaryRequestResult.url,\n nextUrl,\n primaryRequestResult.seed,\n task.route\n )\n return\n }\n case NavigationTaskExitStatus.HardRetry: {\n // Some data failed to finish loading in a non-recoverable way, such as a\n // network error. Trigger an MPA navigation.\n //\n // Hard navigating/refreshing is how we prevent an infinite retry loop\n // caused by a network error — when the network fails, we fall back to the\n // browser behavior for offline navigations. In the future, Next.js may\n // introduce its own custom handling of offline navigations, but that\n // doesn't exist yet.\n const isHardRetry = true\n const primaryRequestResult = await primaryRequestPromise\n dispatchRetryDueToTreeMismatch(\n isHardRetry,\n primaryRequestResult.url,\n nextUrl,\n primaryRequestResult.seed,\n task.route\n )\n return\n }\n default: {\n return exitStatus satisfies never\n }\n }\n}\n\nfunction waitForRequestsToFinish(\n primaryRequestPromise: ReturnType,\n refreshRequestPromises: Array<\n ReturnType\n > | null\n) {\n // Custom async combinator logic. This could be replaced by Promise.any but\n // we don't assume that's available.\n //\n // Each promise resolves once the server responsds and the data is written\n // into the CacheNode tree. Resolve the combined promise once all the\n // requests finish.\n //\n // Or, resolve as soon as one of the requests fails, without waiting for the\n // others to finish.\n return new Promise((resolve) => {\n const onFulfill = (result: { exitStatus: NavigationTaskExitStatus }) => {\n if (result.exitStatus === NavigationTaskExitStatus.Done) {\n remainingCount--\n if (remainingCount === 0) {\n // All the requests finished successfully.\n resolve(NavigationTaskExitStatus.Done)\n }\n } else {\n // One of the requests failed. Exit with a failing status.\n // NOTE: It's possible for one of the requests to fail with SoftRetry\n // and a later one to fail with HardRetry. In this case, we choose to\n // retry immediately, rather than delay the retry until all the requests\n // finish. If it fails again, we will hard retry on the next\n // attempt, anyway.\n resolve(result.exitStatus)\n }\n }\n // onReject shouldn't ever be called because fetchMissingDynamicData's\n // entire body is wrapped in a try/catch. This is just defensive.\n const onReject = () => resolve(NavigationTaskExitStatus.HardRetry)\n\n // Attach the listeners to the promises.\n let remainingCount = 1\n primaryRequestPromise.then(onFulfill, onReject)\n if (refreshRequestPromises !== null) {\n remainingCount += refreshRequestPromises.length\n refreshRequestPromises.forEach((refreshRequestPromise) =>\n refreshRequestPromise.then(onFulfill, onReject)\n )\n }\n })\n}\n\nfunction dispatchRetryDueToTreeMismatch(\n isHardRetry: boolean,\n retryUrl: URL,\n retryNextUrl: string | null,\n seed: NavigationSeed | null,\n baseTree: FlightRouterState\n) {\n // If this is the second time in a row that a navigation resulted in a\n // mismatch, fall back to a hard (MPA) refresh.\n isHardRetry = isHardRetry || previousNavigationDidMismatch\n previousNavigationDidMismatch = true\n const retryAction: ServerPatchAction = {\n type: ACTION_SERVER_PATCH,\n previousTree: baseTree,\n url: retryUrl,\n nextUrl: retryNextUrl,\n seed,\n mpa: isHardRetry,\n }\n dispatchAppRouterAction(retryAction)\n}\n\nasync function fetchMissingDynamicData(\n task: NavigationTask,\n dynamicRequestTree: FlightRouterState,\n url: URL,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy\n): Promise<{\n exitStatus: NavigationTaskExitStatus\n url: URL\n seed: NavigationSeed | null\n}> {\n try {\n const result = await fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n isHmrRefresh: freshnessPolicy === FreshnessPolicy.HMRRefresh,\n })\n if (typeof result === 'string') {\n // fetchServerResponse will return an href to indicate that the SPA\n // navigation failed. For example, if the server triggered a hard\n // redirect, or the fetch request errored. Initiate an MPA navigation\n // to the given href.\n return {\n exitStatus: NavigationTaskExitStatus.HardRetry,\n url: new URL(result, location.origin),\n seed: null,\n }\n }\n const seed = convertServerPatchToFullTree(\n task.route,\n result.flightData,\n result.renderedSearch\n )\n const didReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(\n task,\n seed.tree,\n seed.data,\n seed.head,\n result.debugInfo\n )\n return {\n exitStatus: didReceiveUnknownParallelRoute\n ? NavigationTaskExitStatus.SoftRetry\n : NavigationTaskExitStatus.Done,\n url: new URL(result.canonicalUrl, location.origin),\n seed,\n }\n } catch {\n // This shouldn't happen because fetchServerResponse's entire body is\n // wrapped in a try/catch. If it does, though, it implies the server failed\n // to respond with any tree at all. So we must fall back to a hard retry.\n return {\n exitStatus: NavigationTaskExitStatus.HardRetry,\n url: url,\n seed: null,\n }\n }\n}\n\nfunction writeDynamicDataIntoNavigationTask(\n task: NavigationTask,\n serverRouterState: FlightRouterState,\n dynamicData: CacheNodeSeedData | null,\n dynamicHead: HeadData,\n debugInfo: Array | null\n): boolean {\n if (task.status === NavigationTaskStatus.Pending && dynamicData !== null) {\n task.status = NavigationTaskStatus.Fulfilled\n finishPendingCacheNode(task.node, dynamicData, dynamicHead, debugInfo)\n }\n\n const taskChildren = task.children\n const serverChildren = serverRouterState[1]\n const dynamicDataChildren = dynamicData !== null ? dynamicData[1] : null\n\n // Detect whether the server sends a parallel route slot that the client\n // doesn't know about.\n let didReceiveUnknownParallelRoute = false\n\n if (taskChildren !== null) {\n for (const parallelRouteKey in serverChildren) {\n const serverRouterStateChild: FlightRouterState =\n serverChildren[parallelRouteKey]\n const dynamicDataChild: CacheNodeSeedData | null | void =\n dynamicDataChildren !== null\n ? dynamicDataChildren[parallelRouteKey]\n : null\n\n const taskChild = taskChildren.get(parallelRouteKey)\n if (taskChild === undefined) {\n // The server sent a child segment that the client doesn't know about.\n //\n // When we receive an unknown parallel route, we must consider it a\n // mismatch. This is unlike the case where the segment itself\n // mismatches, because multiple routes can be active simultaneously.\n // But a given layout should never have a mismatching set of\n // child slots.\n //\n // Theoretically, this should only happen in development during an HMR\n // refresh, because the set of parallel routes for a layout does not\n // change over the lifetime of a build/deployment. In production, we\n // should have already mismatched on either the build id or the segment\n // path. But as an extra precaution, we validate in prod, too.\n didReceiveUnknownParallelRoute = true\n } else {\n const taskSegment = taskChild.route[0]\n if (\n matchSegment(serverRouterStateChild[0], taskSegment) &&\n dynamicDataChild !== null &&\n dynamicDataChild !== undefined\n ) {\n // Found a match for this task. Keep traversing down the task tree.\n const childDidReceiveUnknownParallelRoute =\n writeDynamicDataIntoNavigationTask(\n taskChild,\n serverRouterStateChild,\n dynamicDataChild,\n dynamicHead,\n debugInfo\n )\n if (childDidReceiveUnknownParallelRoute) {\n didReceiveUnknownParallelRoute = true\n }\n }\n }\n }\n }\n\n return didReceiveUnknownParallelRoute\n}\n\nfunction finishPendingCacheNode(\n cacheNode: CacheNode,\n dynamicData: CacheNodeSeedData,\n dynamicHead: HeadData,\n debugInfo: Array | null\n): void {\n // Writes a dynamic response into an existing Cache Node tree. This does _not_\n // create a new tree, it updates the existing tree in-place. So it must follow\n // the Suspense rules of cache safety — it can resolve pending promises, but\n // it cannot overwrite existing data. It can add segments to the tree (because\n // a missing segment will cause the layout router to suspend).\n // but it cannot delete them.\n //\n // We must resolve every promise in the tree, or else it will suspend\n // indefinitely. If we did not receive data for a segment, we will resolve its\n // data promise to `null` to trigger a lazy fetch during render.\n\n // Use the dynamic data from the server to fulfill the deferred RSC promise\n // on the Cache Node.\n const rsc = cacheNode.rsc\n const dynamicSegmentData = dynamicData[0]\n\n if (dynamicSegmentData === null) {\n // This is an empty CacheNode; this particular server request did not\n // render this segment. There may be a separate pending request that will,\n // though, so we won't abort the task until all pending requests finish.\n return\n }\n\n if (rsc === null) {\n // This is a lazy cache node. We can overwrite it. This is only safe\n // because we know that the LayoutRouter suspends if `rsc` is `null`.\n cacheNode.rsc = dynamicSegmentData\n } else if (isDeferredRsc(rsc)) {\n // This is a deferred RSC promise. We can fulfill it with the data we just\n // received from the server. If it was already resolved by a different\n // navigation, then this does nothing because we can't overwrite data.\n rsc.resolve(dynamicSegmentData, debugInfo)\n } else {\n // This is not a deferred RSC promise, nor is it empty, so it must have\n // been populated by a different navigation. We must not overwrite it.\n }\n\n // If we navigated without a prefetch, then `loading` will be a deferred promise too.\n // Fulfill it using the dynamic response so that we can display the loading boundary.\n const loading = cacheNode.loading\n if (isDeferredRsc(loading)) {\n const dynamicLoading = dynamicData[2]\n loading.resolve(dynamicLoading, debugInfo)\n }\n\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved with the dynamic head from\n // the server.\n const head = cacheNode.head\n if (isDeferredRsc(head)) {\n head.resolve(dynamicHead, debugInfo)\n }\n}\n\nfunction abortRemainingPendingTasks(\n task: NavigationTask,\n error: any,\n debugInfo: Array | null\n): NavigationTaskExitStatus {\n let exitStatus\n if (task.status === NavigationTaskStatus.Pending) {\n // The data for this segment is still missing.\n task.status = NavigationTaskStatus.Rejected\n abortPendingCacheNode(task.node, error, debugInfo)\n\n // If the server failed to fulfill the data for this segment, it implies\n // that the route tree received from the server mismatched the tree that\n // was previously prefetched.\n //\n // In an app with fully static routes and no proxy-driven redirects or\n // rewrites, this should never happen, because the route for a URL would\n // always be the same across multiple requests. So, this implies that some\n // runtime routing condition changed, likely in a proxy, without being\n // pushed to the client.\n //\n // When this happens, we treat this the same as a refresh(). The entire\n // tree will be re-rendered from the root.\n if (task.refreshUrl === null) {\n // Trigger a \"soft\" refresh. Essentially the same as calling `refresh()`\n // in a Server Action.\n exitStatus = NavigationTaskExitStatus.SoftRetry\n } else {\n // The mismatch was discovered inside an inactive parallel route. This\n // implies the inactive parallel route is no longer reachable at the URL\n // that originally rendered it. Fall back to an MPA refresh.\n // TODO: An alternative could be to trigger a soft refresh but to _not_\n // re-use the inactive parallel routes this time. Similar to what would\n // happen if were to do a hard refrehs, but without the HTML page.\n exitStatus = NavigationTaskExitStatus.HardRetry\n }\n } else {\n // This segment finished. (An error here is treated as Done because they are\n // surfaced to the application during render.)\n exitStatus = NavigationTaskExitStatus.Done\n }\n\n const taskChildren = task.children\n if (taskChildren !== null) {\n for (const [, taskChild] of taskChildren) {\n const childExitStatus = abortRemainingPendingTasks(\n taskChild,\n error,\n debugInfo\n )\n // Propagate the exit status up the tree. The statuses are ordered by\n // their precedence.\n if (childExitStatus > exitStatus) {\n exitStatus = childExitStatus\n }\n }\n }\n\n return exitStatus\n}\n\nfunction abortPendingCacheNode(\n cacheNode: CacheNode,\n error: any,\n debugInfo: Array | null\n): void {\n const rsc = cacheNode.rsc\n if (isDeferredRsc(rsc)) {\n if (error === null) {\n // This will trigger a lazy fetch during render.\n rsc.resolve(null, debugInfo)\n } else {\n // This will trigger an error during rendering.\n rsc.reject(error, debugInfo)\n }\n }\n\n const loading = cacheNode.loading\n if (isDeferredRsc(loading)) {\n loading.resolve(null, debugInfo)\n }\n\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved. If an error was provided, we\n // will not resolve it with an error, since this is rendered at the root of\n // the app. We want the segment to error, not the entire app.\n const head = cacheNode.head\n if (isDeferredRsc(head)) {\n head.resolve(null, debugInfo)\n }\n}\n\nconst DEFERRED = Symbol()\n\ntype PendingDeferredRsc = Promise & {\n status: 'pending'\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype FulfilledDeferredRsc = Promise & {\n status: 'fulfilled'\n value: T\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype RejectedDeferredRsc = Promise & {\n status: 'rejected'\n reason: any\n resolve: (value: T, debugInfo: Array | null) => void\n reject: (error: any, debugInfo: Array | null) => void\n tag: Symbol\n _debugInfo: Array\n}\n\ntype DeferredRsc =\n | PendingDeferredRsc\n | FulfilledDeferredRsc\n | RejectedDeferredRsc\n\n// This type exists to distinguish a DeferredRsc from a Flight promise. It's a\n// compromise to avoid adding an extra field on every Cache Node, which would be\n// awkward because the pre-PPR parts of codebase would need to account for it,\n// too. We can remove it once type Cache Node type is more settled.\nexport function isDeferredRsc(value: any): value is DeferredRsc {\n return value && typeof value === 'object' && value.tag === DEFERRED\n}\n\nfunction createDeferredRsc<\n T extends React.ReactNode = React.ReactNode,\n>(): PendingDeferredRsc {\n // Create an unresolved promise that represents data derived from a Flight\n // response. The promise will be resolved later as soon as we start receiving\n // data from the server, i.e. as soon as the Flight client decodes and returns\n // the top-level response object.\n\n // The `_debugInfo` field contains profiling information. Promises that are\n // created by Flight already have this info added by React; for any derived\n // promise created by the router, we need to transfer the Flight debug info\n // onto the derived promise.\n //\n // The debug info represents the latency between the start of the navigation\n // and the start of rendering. (It does not represent the time it takes for\n // whole stream to finish.)\n const debugInfo: Array = []\n\n let resolve: any\n let reject: any\n const pendingRsc = new Promise((res, rej) => {\n resolve = res\n reject = rej\n }) as PendingDeferredRsc\n pendingRsc.status = 'pending'\n pendingRsc.resolve = (value: T, responseDebugInfo: Array | null) => {\n if (pendingRsc.status === 'pending') {\n const fulfilledRsc: FulfilledDeferredRsc = pendingRsc as any\n fulfilledRsc.status = 'fulfilled'\n fulfilledRsc.value = value\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo)\n }\n resolve(value)\n }\n }\n pendingRsc.reject = (error: any, responseDebugInfo: Array | null) => {\n if (pendingRsc.status === 'pending') {\n const rejectedRsc: RejectedDeferredRsc = pendingRsc as any\n rejectedRsc.status = 'rejected'\n rejectedRsc.reason = error\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo)\n }\n reject(error)\n }\n }\n pendingRsc.tag = DEFERRED\n pendingRsc._debugInfo = debugInfo\n\n return pendingRsc\n}\n"],"names":["DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","matchSegment","createHrefFromUrl","createRouterCacheKey","fetchServerResponse","dispatchAppRouterAction","ACTION_SERVER_PATCH","isNavigatingToNewRootLayout","DYNAMIC_STALETIME_MS","convertServerPatchToFullTree","FreshnessPolicy","noop","createInitialCacheNodeForHydration","navigatedAt","initialTree","seedData","seedHead","accumulation","scrollableSegments","separateRefreshUrls","task","createCacheNodeOnNavigation","undefined","node","startPPRNavigation","oldUrl","oldCacheNode","oldRouterState","newRouterState","freshness","prefetchData","prefetchHead","isPrefetchHeadPartial","isSamePageNavigation","didFindRootLayout","parentNeedsDynamicRequest","parentRefreshUrl","updateCacheNodeOnNavigation","parentSegmentPath","parentParallelRouteKey","oldSegment","newSegment","segmentPath","concat","newRouterStateChildren","oldRouterStateChildren","seedDataChildren","prefetchDataChildren","isRootLayout","childDidFindRootLayout","oldParallelRoutes","parallelRoutes","shouldDropSiblingCaches","shouldRefreshDynamicData","newParallelRoutes","Map","isLeafSegment","Object","keys","length","newCacheNode","needsDynamicRequest","dropPrefetchRsc","reuseDynamicCacheNode","seedRsc","seedLoading","isSeedRscPartial","isSeedHeadPartial","readCacheNodeFromSeedData","prefetchRsc","prefetchLoading","isPrefetchRSCPartial","spawnNewCacheNode","href","refreshUrl","accumulateRefreshUrl","patchedRouterStateChildren","taskChildren","childNeedsDynamicRequest","dynamicRequestTreeChildren","parallelRouteKey","newRouterStateChild","oldRouterStateChild","oldSegmentMapChild","get","seedDataChild","prefetchDataChild","newSegmentChild","seedHeadChild","prefetchHeadChild","isPrefetchHeadPartialChild","reuseActiveSegmentInDefaultSlot","newSegmentKeyChild","oldCacheNodeChild","taskChild","set","newCacheNodeChild","newSegmentMapChild","taskChildRoute","route","dynamicRequestTreeChild","dynamicRequestTree","status","patchRouterStateWithNewChildren","createDynamicRequestTree","children","oldRsc","rsc","oldRscDidResolve","isDeferredRsc","push","baseRouterState","newChildren","clone","Set","add","reusedRouterState","oldRefreshMarker","existingCacheNode","cacheNode","head","loading","isPageSegment","createDeferredRsc","isHydration","previousNavigationDidMismatch","spawnDynamicRequests","primaryUrl","nextUrl","freshnessPolicy","primaryRequestPromise","fetchMissingDynamicData","refreshRequestPromises","canonicalUrl","scopedDynamicRequestTree","URL","location","origin","voidPromise","finishNavigationTask","then","exitStatus","waitForRequestsToFinish","abortRemainingPendingTasks","isHardRetry","primaryRequestResult","dispatchRetryDueToTreeMismatch","url","seed","Promise","resolve","onFulfill","result","remainingCount","onReject","forEach","refreshRequestPromise","retryUrl","retryNextUrl","baseTree","retryAction","type","previousTree","mpa","flightRouterState","isHmrRefresh","flightData","renderedSearch","didReceiveUnknownParallelRoute","writeDynamicDataIntoNavigationTask","tree","data","debugInfo","serverRouterState","dynamicData","dynamicHead","finishPendingCacheNode","serverChildren","dynamicDataChildren","serverRouterStateChild","dynamicDataChild","taskSegment","childDidReceiveUnknownParallelRoute","dynamicSegmentData","dynamicLoading","error","abortPendingCacheNode","childExitStatus","reject","DEFERRED","Symbol","value","tag","pendingRsc","res","rej","responseDebugInfo","fulfilledRsc","apply","rejectedRsc","reason","_debugInfo"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9116, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation-devtools.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport type { Params } from '../../server/request/params'\nimport {\n createDevToolsInstrumentedPromise,\n ReadonlyURLSearchParams,\n type InstrumentedPromise,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport {\n computeSelectedLayoutSegment,\n getSelectedLayoutSegmentPath,\n} from '../../shared/lib/segment'\n\n/**\n * Promises are cached by tree to ensure stability across suspense retries.\n */\ntype LayoutSegmentPromisesCache = {\n selectedLayoutSegmentPromises: Map>\n selectedLayoutSegmentsPromises: Map>\n}\n\nconst layoutSegmentPromisesCache = new WeakMap<\n FlightRouterState,\n LayoutSegmentPromisesCache\n>()\n\n/**\n * Creates instrumented promises for layout segment hooks at a given tree level.\n * This is dev-only code for React Suspense DevTools instrumentation.\n */\nfunction createLayoutSegmentPromises(\n tree: FlightRouterState\n): LayoutSegmentPromisesCache | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n // Check if we already have cached promises for this tree\n const cached = layoutSegmentPromisesCache.get(tree)\n if (cached) {\n return cached\n }\n\n // Create new promises and cache them\n const segmentPromises = new Map>()\n const segmentsPromises = new Map>()\n\n const parallelRoutes = tree[1]\n for (const parallelRouteKey of Object.keys(parallelRoutes)) {\n const segments = getSelectedLayoutSegmentPath(tree, parallelRouteKey)\n\n // Use the shared logic to compute the segment value\n const segment = computeSelectedLayoutSegment(segments, parallelRouteKey)\n\n segmentPromises.set(\n parallelRouteKey,\n createDevToolsInstrumentedPromise('useSelectedLayoutSegment', segment)\n )\n segmentsPromises.set(\n parallelRouteKey,\n createDevToolsInstrumentedPromise('useSelectedLayoutSegments', segments)\n )\n }\n\n const result: LayoutSegmentPromisesCache = {\n selectedLayoutSegmentPromises: segmentPromises,\n selectedLayoutSegmentsPromises: segmentsPromises,\n }\n\n // Cache the result for future renders\n layoutSegmentPromisesCache.set(tree, result)\n\n return result\n}\n\nconst rootNavigationPromisesCache = new WeakMap<\n FlightRouterState,\n Map\n>()\n\n/**\n * Creates instrumented navigation promises for the root app-router.\n */\nexport function createRootNavigationPromises(\n tree: FlightRouterState,\n pathname: string,\n searchParams: URLSearchParams,\n pathParams: Params\n): NavigationPromises | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n // Create stable cache keys from the values\n const searchParamsString = searchParams.toString()\n const pathParamsString = JSON.stringify(pathParams)\n const cacheKey = `${pathname}:${searchParamsString}:${pathParamsString}`\n\n // Get or create the cache for this tree\n let treeCache = rootNavigationPromisesCache.get(tree)\n if (!treeCache) {\n treeCache = new Map()\n rootNavigationPromisesCache.set(tree, treeCache)\n }\n\n // Check if we have cached promises for this combination\n const cached = treeCache.get(cacheKey)\n if (cached) {\n return cached\n }\n\n const readonlySearchParams = new ReadonlyURLSearchParams(searchParams)\n\n const layoutSegmentPromises = createLayoutSegmentPromises(tree)\n\n const promises: NavigationPromises = {\n pathname: createDevToolsInstrumentedPromise('usePathname', pathname),\n searchParams: createDevToolsInstrumentedPromise(\n 'useSearchParams',\n readonlySearchParams\n ),\n params: createDevToolsInstrumentedPromise('useParams', pathParams),\n ...layoutSegmentPromises,\n }\n\n treeCache.set(cacheKey, promises)\n\n return promises\n}\n\nconst nestedLayoutPromisesCache = new WeakMap<\n FlightRouterState,\n Map\n>()\n\n/**\n * Creates merged navigation promises for nested layouts.\n * Merges parent promises with layout-specific segment promises.\n */\nexport function createNestedLayoutNavigationPromises(\n tree: FlightRouterState,\n parentNavPromises: NavigationPromises | null\n): NavigationPromises | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n const parallelRoutes = tree[1]\n const parallelRouteKeys = Object.keys(parallelRoutes)\n\n // Only create promises if there are parallel routes at this level\n if (parallelRouteKeys.length === 0) {\n return null\n }\n\n // Get or create the cache for this tree\n let treeCache = nestedLayoutPromisesCache.get(tree)\n if (!treeCache) {\n treeCache = new Map()\n nestedLayoutPromisesCache.set(tree, treeCache)\n }\n\n // Check if we have cached promises for this parent combination\n const cached = treeCache.get(parentNavPromises)\n if (cached) {\n return cached\n }\n\n // Create merged promises\n const layoutSegmentPromises = createLayoutSegmentPromises(tree)\n const promises: NavigationPromises = {\n ...parentNavPromises!,\n ...layoutSegmentPromises,\n }\n\n treeCache.set(parentNavPromises, promises)\n\n return promises\n}\n"],"names":["createDevToolsInstrumentedPromise","ReadonlyURLSearchParams","computeSelectedLayoutSegment","getSelectedLayoutSegmentPath","layoutSegmentPromisesCache","WeakMap","createLayoutSegmentPromises","tree","process","env","NODE_ENV","cached","get","segmentPromises","Map","segmentsPromises","parallelRoutes","parallelRouteKey","Object","keys","segments","segment","set","result","selectedLayoutSegmentPromises","selectedLayoutSegmentsPromises","rootNavigationPromisesCache","createRootNavigationPromises","pathname","searchParams","pathParams","searchParamsString","toString","pathParamsString","JSON","stringify","cacheKey","treeCache","readonlySearchParams","layoutSegmentPromises","promises","params","nestedLayoutPromisesCache","createNestedLayoutNavigationPromises","parentNavPromises","parallelRouteKeys","length"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9221, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/segment-explorer-node.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n useState,\n createContext,\n useContext,\n use,\n useMemo,\n useCallback,\n} from 'react'\nimport { useLayoutEffect } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\nimport { notFound } from '../../../client/components/not-found'\n\nexport type SegmentBoundaryType =\n | 'not-found'\n | 'error'\n | 'loading'\n | 'global-error'\n\nexport const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE =\n 'NEXT_DEVTOOLS_SIMULATED_ERROR'\n\nexport type SegmentNodeState = {\n type: string\n pagePath: string\n boundaryType: string | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}\n\nfunction SegmentTrieNode({\n type,\n pagePath,\n}: {\n type: string\n pagePath: string\n}): React.ReactNode {\n const { boundaryType, setBoundaryType } = useSegmentState()\n const nodeState: SegmentNodeState = useMemo(() => {\n return {\n type,\n pagePath,\n boundaryType,\n setBoundaryType,\n }\n }, [type, pagePath, boundaryType, setBoundaryType])\n\n // Use `useLayoutEffect` to ensure the state is updated during suspense.\n // `useEffect` won't work as the state is preserved during suspense.\n useLayoutEffect(() => {\n dispatcher.segmentExplorerNodeAdd(nodeState)\n return () => {\n dispatcher.segmentExplorerNodeRemove(nodeState)\n }\n }, [nodeState])\n\n return null\n}\n\nfunction NotFoundSegmentNode(): React.ReactNode {\n notFound()\n}\n\nfunction ErrorSegmentNode(): React.ReactNode {\n throw new Error(SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE)\n}\n\nconst forever = new Promise(() => {})\nfunction LoadingSegmentNode(): React.ReactNode {\n use(forever)\n return null\n}\n\nexport function SegmentViewStateNode({ page }: { page: string }) {\n useLayoutEffect(() => {\n dispatcher.segmentExplorerUpdateRouteState(page)\n return () => {\n dispatcher.segmentExplorerUpdateRouteState('')\n }\n }, [page])\n return null\n}\n\nexport function SegmentBoundaryTriggerNode() {\n const { boundaryType } = useSegmentState()\n let segmentNode: React.ReactNode = null\n if (boundaryType === 'loading') {\n segmentNode = \n } else if (boundaryType === 'not-found') {\n segmentNode = \n } else if (boundaryType === 'error') {\n segmentNode = \n }\n return segmentNode\n}\n\nexport function SegmentViewNode({\n type,\n pagePath,\n children,\n}: {\n type: string\n pagePath: string\n children?: ReactNode\n}): React.ReactNode {\n const segmentNode = (\n \n )\n\n return (\n <>\n {segmentNode}\n {children}\n \n )\n}\n\nconst SegmentStateContext = createContext<{\n boundaryType: SegmentBoundaryType | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}>({\n boundaryType: null,\n setBoundaryType: () => {},\n})\n\nexport function SegmentStateProvider({ children }: { children: ReactNode }) {\n const [boundaryType, setBoundaryType] = useState(\n null\n )\n\n const [errorBoundaryKey, setErrorBoundaryKey] = useState(0)\n const reloadBoundary = useCallback(\n () => setErrorBoundaryKey((prev) => prev + 1),\n []\n )\n\n const setBoundaryTypeAndReload = useCallback(\n (type: SegmentBoundaryType | null) => {\n if (type === null) {\n reloadBoundary()\n }\n setBoundaryType(type)\n },\n [reloadBoundary]\n )\n\n return (\n \n {children}\n \n )\n}\n\nexport function useSegmentState() {\n return useContext(SegmentStateContext)\n}\n"],"names":["useState","createContext","useContext","use","useMemo","useCallback","useLayoutEffect","dispatcher","notFound","SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE","SegmentTrieNode","type","pagePath","boundaryType","setBoundaryType","useSegmentState","nodeState","segmentExplorerNodeAdd","segmentExplorerNodeRemove","NotFoundSegmentNode","ErrorSegmentNode","Error","forever","Promise","LoadingSegmentNode","SegmentViewStateNode","page","segmentExplorerUpdateRouteState","SegmentBoundaryTriggerNode","segmentNode","SegmentViewNode","children","SegmentStateContext","SegmentStateProvider","errorBoundaryKey","setErrorBoundaryKey","reloadBoundary","prev","setBoundaryTypeAndReload","Provider","value"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9354, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/layout-router.tsx"],"sourcesContent":["'use client'\n\nimport type { CacheNode } from '../../shared/lib/app-router-types'\nimport type { LoadingModuleData } from '../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n} from '../../shared/lib/app-router-types'\nimport type { ErrorComponent } from './error-boundary'\nimport type { FocusAndScrollRef } from './router-reducer/router-reducer-types'\n\nimport React, {\n Activity,\n useContext,\n use,\n Suspense,\n useDeferredValue,\n type JSX,\n type ActivityProps,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport {\n LayoutRouterContext,\n GlobalLayoutRouterContext,\n TemplateContext,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport { unresolvedThenable } from './unresolved-thenable'\nimport { ErrorBoundary } from './error-boundary'\nimport { matchSegment } from './match-segments'\nimport { disableSmoothScrollDuringRouteTransition } from '../../shared/lib/router/utils/disable-smooth-scroll'\nimport { RedirectBoundary } from './redirect-boundary'\nimport { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary'\nimport { createRouterCacheKey } from './router-reducer/create-router-cache-key'\nimport { useRouterBFCache, type RouterBFCacheEntry } from './bfcache'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport {\n NavigationPromisesContext,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport { getParamValueFromCacheKey } from '../route-params'\nimport type { Params } from '../../server/request/params'\nimport { isDeferredRsc } from './router-reducer/ppr-navigations'\n\nconst __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = (\n ReactDOM as any\n).__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE\n\n// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available\n/**\n * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning\n */\nfunction findDOMNode(\n instance: React.ReactInstance | null | undefined\n): Element | Text | null {\n // Tree-shake for server bundle\n if (typeof window === 'undefined') return null\n\n // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init.\n // We need to lazily reference it.\n const internal_reactDOMfindDOMNode =\n __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode\n return internal_reactDOMfindDOMNode(instance)\n}\n\nconst rectProperties = [\n 'bottom',\n 'height',\n 'left',\n 'right',\n 'top',\n 'width',\n 'x',\n 'y',\n] as const\n/**\n * Check if a HTMLElement is hidden or fixed/sticky position\n */\nfunction shouldSkipElement(element: HTMLElement) {\n // we ignore fixed or sticky positioned elements since they'll likely pass the \"in-viewport\" check\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if (['sticky', 'fixed'].includes(getComputedStyle(element).position)) {\n return true\n }\n\n // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent`\n // because `offsetParent` doesn't consider document/body\n const rect = element.getBoundingClientRect()\n return rectProperties.every((item) => rect[item] === 0)\n}\n\n/**\n * Check if the top corner of the HTMLElement is in the viewport.\n */\nfunction topOfElementInViewport(element: HTMLElement, viewportHeight: number) {\n const rect = element.getBoundingClientRect()\n return rect.top >= 0 && rect.top <= viewportHeight\n}\n\n/**\n * Find the DOM node for a hash fragment.\n * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior.\n * If the hash fragment is an id, the page has to scroll to the element with that id.\n * If the hash fragment is a name, the page has to scroll to the first element with that name.\n */\nfunction getHashFragmentDomNode(hashFragment: string) {\n // If the hash fragment is `top` the page has to scroll to the top of the page.\n if (hashFragment === 'top') {\n return document.body\n }\n\n // If the hash fragment is an id, the page has to scroll to the element with that id.\n return (\n document.getElementById(hashFragment) ??\n // If the hash fragment is a name, the page has to scroll to the first element with that name.\n document.getElementsByName(hashFragment)[0]\n )\n}\ninterface ScrollAndFocusHandlerProps {\n focusAndScrollRef: FocusAndScrollRef\n children: React.ReactNode\n segmentPath: FlightSegmentPath\n}\nclass InnerScrollAndFocusHandler extends React.Component {\n handlePotentialScroll = () => {\n // Handle scroll and focus, it's only applied once in the first useEffect that triggers that changed.\n const { focusAndScrollRef, segmentPath } = this.props\n\n if (focusAndScrollRef.apply) {\n // segmentPaths is an array of segment paths that should be scrolled to\n // if the current segment path is not in the array, the scroll is not applied\n // unless the array is empty, in which case the scroll is always applied\n if (\n focusAndScrollRef.segmentPaths.length !== 0 &&\n !focusAndScrollRef.segmentPaths.some((scrollRefSegmentPath) =>\n segmentPath.every((segment, index) =>\n matchSegment(segment, scrollRefSegmentPath[index])\n )\n )\n ) {\n return\n }\n\n let domNode:\n | ReturnType\n | ReturnType = null\n const hashFragment = focusAndScrollRef.hashFragment\n\n if (hashFragment) {\n domNode = getHashFragmentDomNode(hashFragment)\n }\n\n // `findDOMNode` is tricky because it returns just the first child if the component is a fragment.\n // This already caused a bug where the first child was a in head.\n if (!domNode) {\n domNode = findDOMNode(this)\n }\n\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (!(domNode instanceof Element)) {\n return\n }\n\n // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior.\n // If the element is skipped, try to select the next sibling and try again.\n while (!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)) {\n if (process.env.NODE_ENV !== 'production') {\n if (domNode.parentElement?.localName === 'head') {\n // TODO: We enter this state when metadata was rendered as part of the page or via Next.js.\n // This is always a bug in Next.js and caused by React hoisting metadata.\n // We need to replace `findDOMNode` in favor of Fragment Refs (when available) so that we can skip over metadata.\n }\n }\n\n // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead.\n if (domNode.nextElementSibling === null) {\n return\n }\n domNode = domNode.nextElementSibling\n }\n\n // State is mutated to ensure that the focus and scroll is applied only once.\n focusAndScrollRef.apply = false\n focusAndScrollRef.hashFragment = null\n focusAndScrollRef.segmentPaths = []\n\n disableSmoothScrollDuringRouteTransition(\n () => {\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n ;(domNode as HTMLElement).scrollIntoView()\n\n return\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement\n const viewportHeight = htmlElement.clientHeight\n\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n return\n }\n\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0\n\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n ;(domNode as HTMLElement).scrollIntoView()\n }\n },\n {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange,\n }\n )\n\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false\n\n // Set focus on the element\n domNode.focus()\n }\n }\n\n componentDidMount() {\n this.handlePotentialScroll()\n }\n\n componentDidUpdate() {\n // Because this property is overwritten in handlePotentialScroll it's fine to always run it when true as it'll be set to false for subsequent renders.\n if (this.props.focusAndScrollRef.apply) {\n this.handlePotentialScroll()\n }\n }\n\n render() {\n return this.props.children\n }\n}\n\nfunction ScrollAndFocusHandler({\n segmentPath,\n children,\n}: {\n segmentPath: FlightSegmentPath\n children: React.ReactNode\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n return (\n \n {children}\n \n )\n}\n\n/**\n * InnerLayoutRouter handles rendering the provided segment based on the cache.\n */\nfunction InnerLayoutRouter({\n tree,\n segmentPath,\n debugNameContext,\n cacheNode: maybeCacheNode,\n params,\n url,\n isActive,\n}: {\n tree: FlightRouterState\n segmentPath: FlightSegmentPath\n debugNameContext: string\n cacheNode: CacheNode | null\n params: Params\n url: string\n isActive: boolean\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n const parentNavPromises = useContext(NavigationPromisesContext)\n\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n const cacheNode =\n maybeCacheNode !== null\n ? maybeCacheNode\n : // This segment is not in the cache. Suspend indefinitely.\n //\n // This should only be reachable for inactive/hidden segments, during\n // prerendering The active segment should always be consistent with the\n // CacheNode tree. Regardless, if we don't have a matching CacheNode, we\n // must suspend rather than render nothing, to prevent showing an\n // inconsistent route.\n\n (use(unresolvedThenable) as never)\n\n // `rsc` represents the renderable node for this segment.\n\n // If this segment has a `prefetchRsc`, it's the statically prefetched data.\n // We should use that on initial render instead of `rsc`. Then we'll switch\n // to `rsc` when the dynamic response streams in.\n //\n // If no prefetch data is available, then we go straight to rendering `rsc`.\n const resolvedPrefetchRsc =\n cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc\n\n // We use `useDeferredValue` to handle switching between the prefetched and\n // final values. The second argument is returned on initial render, then it\n // re-renders with the first argument.\n const rsc: any = useDeferredValue(cacheNode.rsc, resolvedPrefetchRsc)\n\n // `rsc` is either a React node or a promise for a React node, except we\n // special case `null` to represent that this segment's data is missing. If\n // it's a promise, we need to unwrap it so we can determine whether or not the\n // data is missing.\n let resolvedRsc: React.ReactNode\n if (isDeferredRsc(rsc)) {\n const unwrappedRsc = use(rsc)\n if (unwrappedRsc === null) {\n // If the promise was resolved to `null`, it means the data for this\n // segment was not returned by the server. Suspend indefinitely. When this\n // happens, the router is responsible for triggering a new state update to\n // un-suspend this segment.\n use(unresolvedThenable) as never\n }\n resolvedRsc = unwrappedRsc\n } else {\n // This is not a deferred RSC promise. Don't need to unwrap it.\n if (rsc === null) {\n use(unresolvedThenable) as never\n }\n resolvedRsc = rsc\n }\n\n // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide\n // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`.\n // Promises are cached outside of render to survive suspense retries.\n let navigationPromises: NavigationPromises | null = null\n if (process.env.NODE_ENV !== 'production') {\n const { createNestedLayoutNavigationPromises } =\n require('./navigation-devtools') as typeof import('./navigation-devtools')\n\n navigationPromises = createNestedLayoutNavigationPromises(\n tree,\n parentNavPromises\n )\n }\n\n let children = resolvedRsc\n\n if (navigationPromises) {\n children = (\n \n {resolvedRsc}\n \n )\n }\n\n children = (\n // The layout router context narrows down tree and childNodes at each level.\n \n {children}\n \n )\n\n return children\n}\n\n/**\n * Renders suspense boundary with the provided \"loading\" property as the fallback.\n * If no loading property is provided it renders the children without a suspense boundary.\n */\nfunction LoadingBoundary({\n name,\n loading,\n children,\n}: {\n name: ActivityProps['name']\n loading: LoadingModuleData | Promise\n children: React.ReactNode\n}): JSX.Element {\n // If loading is a promise, unwrap it. This happens in cases where we haven't\n // yet received the loading data from the server — which includes whether or\n // not this layout has a loading component at all.\n //\n // It's OK to suspend here instead of inside the fallback because this\n // promise will resolve simultaneously with the data for the segment itself.\n // So it will never suspend for longer than it would have if we didn't use\n // a Suspense fallback at all.\n let loadingModuleData\n if (\n typeof loading === 'object' &&\n loading !== null &&\n typeof (loading as any).then === 'function'\n ) {\n const promiseForLoading = loading as Promise\n loadingModuleData = use(promiseForLoading)\n } else {\n loadingModuleData = loading as LoadingModuleData\n }\n\n if (loadingModuleData) {\n const loadingRsc = loadingModuleData[0]\n const loadingStyles = loadingModuleData[1]\n const loadingScripts = loadingModuleData[2]\n return (\n \n {loadingStyles}\n {loadingScripts}\n {loadingRsc}\n \n }\n >\n {children}\n
\n )\n }\n\n return <>{children}\n}\n\n/**\n * OuterLayoutRouter handles the current segment as well as rendering of other segments.\n * It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes.\n */\nexport default function OuterLayoutRouter({\n parallelRouterKey,\n error,\n errorStyles,\n errorScripts,\n templateStyles,\n templateScripts,\n template,\n notFound,\n forbidden,\n unauthorized,\n segmentViewBoundaries,\n}: {\n parallelRouterKey: string\n error: ErrorComponent | undefined\n errorStyles: React.ReactNode | undefined\n errorScripts: React.ReactNode | undefined\n templateStyles: React.ReactNode | undefined\n templateScripts: React.ReactNode | undefined\n template: React.ReactNode\n notFound: React.ReactNode | undefined\n forbidden: React.ReactNode | undefined\n unauthorized: React.ReactNode | undefined\n segmentViewBoundaries?: React.ReactNode\n}) {\n const context = useContext(LayoutRouterContext)\n if (!context) {\n throw new Error('invariant expected layout router to be mounted')\n }\n\n const {\n parentTree,\n parentCacheNode,\n parentSegmentPath,\n parentParams,\n url,\n isActive,\n debugNameContext,\n } = context\n\n // Get the CacheNode for this segment by reading it from the parent segment's\n // child map.\n const parentParallelRoutes = parentCacheNode.parallelRoutes\n let segmentMap = parentParallelRoutes.get(parallelRouterKey)\n // If the parallel router cache node does not exist yet, create it.\n // This writes to the cache when there is no item in the cache yet. It never *overwrites* existing cache items which is why it's safe in concurrent mode.\n if (!segmentMap) {\n segmentMap = new Map()\n parentParallelRoutes.set(parallelRouterKey, segmentMap)\n }\n const parentTreeSegment = parentTree[0]\n const segmentPath =\n parentSegmentPath === null\n ? // TODO: The root segment value is currently omitted from the segment\n // path. This has led to a bunch of special cases scattered throughout\n // the code. We should clean this up.\n [parallelRouterKey]\n : parentSegmentPath.concat([parentTreeSegment, parallelRouterKey])\n\n // The \"state\" key of a segment is the one passed to React — it represents the\n // identity of the UI tree. Whenever the state key changes, the tree is\n // recreated and the state is reset. In the App Router model, search params do\n // not cause state to be lost, so two segments with the same segment path but\n // different search params should have the same state key.\n //\n // The \"cache\" key of a segment, however, *does* include the search params, if\n // it's possible that the segment accessed the search params on the server.\n // (This only applies to page segments; layout segments cannot access search\n // params on the server.)\n const activeTree = parentTree[1][parallelRouterKey]\n if (activeTree === undefined) {\n // Could not find a matching segment. The client tree is inconsistent with\n // the server tree. Suspend indefinitely; the router will have already\n // detected the inconsistency when handling the server response, and\n // triggered a refresh of the page to recover.\n use(unresolvedThenable) as never\n }\n\n const activeSegment = activeTree[0]\n const activeStateKey = createRouterCacheKey(activeSegment, true) // no search params\n\n // At each level of the route tree, not only do we render the currently\n // active segment — we also render the last N segments that were active at\n // this level inside a hidden boundary, to preserve their state\n // if or when the user navigates to them again.\n //\n // bfcacheEntry is a linked list of FlightRouterStates.\n let bfcacheEntry: RouterBFCacheEntry | null = useRouterBFCache(\n activeTree,\n activeStateKey\n )\n let children: Array = []\n do {\n const tree = bfcacheEntry.tree\n const stateKey = bfcacheEntry.stateKey\n const segment = tree[0]\n const cacheKey = createRouterCacheKey(segment)\n\n // Read segment path from the parallel router cache node.\n const cacheNode = segmentMap.get(cacheKey) ?? null\n\n /*\n - Error boundary\n - Only renders error boundary if error component is provided.\n - Rendered for each segment to ensure they have their own error state.\n - When gracefully degrade for bots, skip rendering error boundary.\n - Loading boundary\n - Only renders suspense boundary if loading components is provided.\n - Rendered for each segment to ensure they have their own loading state.\n - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch.\n */\n\n let segmentBoundaryTriggerNode: React.ReactNode = null\n let segmentViewStateNode: React.ReactNode = null\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentBoundaryTriggerNode, SegmentViewStateNode } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n const pagePrefix = normalizeAppPath(url)\n segmentViewStateNode = (\n \n )\n\n segmentBoundaryTriggerNode = (\n <>\n \n \n )\n }\n\n let params = parentParams\n if (Array.isArray(segment)) {\n // This segment contains a route param. Accumulate these as we traverse\n // down the router tree. The result represents the set of params that\n // the layout/page components are permitted to access below this point.\n const paramName = segment[0]\n const paramCacheKey = segment[1]\n const paramType = segment[2]\n const paramValue = getParamValueFromCacheKey(paramCacheKey, paramType)\n if (paramValue !== null) {\n params = {\n ...parentParams,\n [paramName]: paramValue,\n }\n }\n }\n\n const debugName = getBoundaryDebugNameFromSegment(segment)\n // `debugNameContext` represents the nearest non-\"virtual\" parent segment.\n // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments.\n // So if `debugName` is undefined, the context is passed through unchanged.\n const childDebugNameContext = debugName ?? debugNameContext\n\n // In practical terms, clicking this name in the Suspense DevTools\n // should select the child slots of that layout.\n //\n // So the name we apply to the Activity boundary is actually based on\n // the nearest parent segments.\n //\n // We skip over \"virtual\" parents, i.e. ones inserted by Next.js that\n // don't correspond to application-defined code.\n const isVirtual = debugName === undefined\n const debugNameToDisplay = isVirtual ? undefined : debugNameContext\n\n // TODO: The loading module data for a segment is stored on the parent, then\n // applied to each of that parent segment's parallel route slots. In the\n // simple case where there's only one parallel route (the `children` slot),\n // this is no different from if the loading module data where stored on the\n // child directly. But I'm not sure this actually makes sense when there are\n // multiple parallel routes. It's not a huge issue because you always have\n // the option to define a narrower loading boundary for a particular slot. But\n // this sort of smells like an implementation accident to me.\n const loadingModuleData = parentCacheNode.loading\n let child = (\n \n \n \n \n \n \n {segmentBoundaryTriggerNode}\n \n \n \n \n {segmentViewStateNode}\n \n }\n >\n {templateStyles}\n {templateScripts}\n {template}\n \n )\n\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentStateProvider } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n child = (\n \n {child}\n {segmentViewBoundaries}\n \n )\n }\n\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n child = (\n \n {child}\n \n )\n }\n\n children.push(child)\n\n bfcacheEntry = bfcacheEntry.next\n } while (bfcacheEntry !== null)\n\n return children\n}\n\nfunction getBoundaryDebugNameFromSegment(segment: Segment): string | undefined {\n if (segment === '/') {\n // Reached the root\n return '/'\n }\n if (typeof segment === 'string') {\n if (isVirtualLayout(segment)) {\n return undefined\n } else {\n return segment + '/'\n }\n }\n const paramCacheKey = segment[1]\n return paramCacheKey + '/'\n}\n\nfunction isVirtualLayout(segment: string): boolean {\n return (\n // This is inserted by the loader. We should consider encoding these\n // in a more special way instead of checking the name, to distinguish them\n // from app-defined groups.\n segment === '(slot)'\n )\n}\n"],"names":["React","Activity","useContext","use","Suspense","useDeferredValue","ReactDOM","LayoutRouterContext","GlobalLayoutRouterContext","TemplateContext","unresolvedThenable","ErrorBoundary","matchSegment","disableSmoothScrollDuringRouteTransition","RedirectBoundary","HTTPAccessFallbackBoundary","createRouterCacheKey","useRouterBFCache","normalizeAppPath","NavigationPromisesContext","getParamValueFromCacheKey","isDeferredRsc","__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","findDOMNode","instance","window","internal_reactDOMfindDOMNode","rectProperties","shouldSkipElement","element","includes","getComputedStyle","position","rect","getBoundingClientRect","every","item","topOfElementInViewport","viewportHeight","top","getHashFragmentDomNode","hashFragment","document","body","getElementById","getElementsByName","InnerScrollAndFocusHandler","Component","componentDidMount","handlePotentialScroll","componentDidUpdate","props","focusAndScrollRef","apply","render","children","segmentPath","segmentPaths","length","some","scrollRefSegmentPath","segment","index","domNode","Element","HTMLElement","process","env","NODE_ENV","parentElement","localName","nextElementSibling","scrollIntoView","htmlElement","documentElement","clientHeight","scrollTop","dontForceLayout","onlyHashChange","focus","ScrollAndFocusHandler","context","Error","InnerLayoutRouter","tree","debugNameContext","cacheNode","maybeCacheNode","params","url","isActive","parentNavPromises","resolvedPrefetchRsc","prefetchRsc","rsc","resolvedRsc","unwrappedRsc","navigationPromises","createNestedLayoutNavigationPromises","require","Provider","value","parentTree","parentCacheNode","parentSegmentPath","parentParams","LoadingBoundary","name","loading","loadingModuleData","then","promiseForLoading","loadingRsc","loadingStyles","loadingScripts","fallback","OuterLayoutRouter","parallelRouterKey","error","errorStyles","errorScripts","templateStyles","templateScripts","template","notFound","forbidden","unauthorized","segmentViewBoundaries","parentParallelRoutes","parallelRoutes","segmentMap","get","Map","set","parentTreeSegment","concat","activeTree","undefined","activeSegment","activeStateKey","bfcacheEntry","stateKey","cacheKey","segmentBoundaryTriggerNode","segmentViewStateNode","SegmentBoundaryTriggerNode","SegmentViewStateNode","pagePrefix","page","Array","isArray","paramName","paramCacheKey","paramType","paramValue","debugName","getBoundaryDebugNameFromSegment","childDebugNameContext","isVirtual","debugNameToDisplay","child","errorComponent","SegmentStateProvider","__NEXT_CACHE_COMPONENTS","mode","push","next","isVirtualLayout"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9889, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/render-from-template-context.tsx"],"sourcesContent":["'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport { TemplateContext } from '../../shared/lib/app-router-context.shared-runtime'\n\nexport default function RenderFromTemplateContext(): JSX.Element {\n const children = useContext(TemplateContext)\n return <>{children}\n}\n"],"names":["React","useContext","TemplateContext","RenderFromTemplateContext","children"],"mappings":";;;;;AAEA,OAAOA,SAASC,UAAU,QAAkB,QAAO;AACnD,SAASC,eAAe,QAAQ,qDAAoD;AAHpF;;;;AAKe,SAASC;IACtB,MAAMC,eAAWH,mNAAAA,EAAWC,gPAAAA;IAC5B,OAAA,WAAA,OAAO,8NAAA,EAAA,mOAAA,EAAA;kBAAGE;;AACZ","ignoreList":[0]}}, - {"offset": {"line": 9910, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/reflect.ts"],"sourcesContent":["export class ReflectAdapter {\n static get(\n target: T,\n prop: string | symbol,\n receiver: unknown\n ): any {\n const value = Reflect.get(target, prop, receiver)\n if (typeof value === 'function') {\n return value.bind(target)\n }\n\n return value\n }\n\n static set(\n target: T,\n prop: string | symbol,\n value: any,\n receiver: any\n ): boolean {\n return Reflect.set(target, prop, value, receiver)\n }\n\n static has(target: T, prop: string | symbol): boolean {\n return Reflect.has(target, prop)\n }\n\n static deleteProperty(\n target: T,\n prop: string | symbol\n ): boolean {\n return Reflect.deleteProperty(target, prop)\n }\n}\n"],"names":["ReflectAdapter","get","target","prop","receiver","value","Reflect","bind","set","has","deleteProperty"],"mappings":";;;;AAAO,MAAMA;IACX,OAAOC,IACLC,MAAS,EACTC,IAAqB,EACrBC,QAAiB,EACZ;QACL,MAAMC,QAAQC,QAAQL,GAAG,CAACC,QAAQC,MAAMC;QACxC,IAAI,OAAOC,UAAU,YAAY;YAC/B,OAAOA,MAAME,IAAI,CAACL;QACpB;QAEA,OAAOG;IACT;IAEA,OAAOG,IACLN,MAAS,EACTC,IAAqB,EACrBE,KAAU,EACVD,QAAa,EACJ;QACT,OAAOE,QAAQE,GAAG,CAACN,QAAQC,MAAME,OAAOD;IAC1C;IAEA,OAAOK,IAAsBP,MAAS,EAAEC,IAAqB,EAAW;QACtE,OAAOG,QAAQG,GAAG,CAACP,QAAQC;IAC7B;IAEA,OAAOO,eACLR,MAAS,EACTC,IAAqB,EACZ;QACT,OAAOG,QAAQI,cAAc,CAACR,QAAQC;IACxC;AACF","ignoreList":[0]}}, - {"offset": {"line": 9936, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/create-deduped-by-callsite-server-error-logger.ts"],"sourcesContent":["import * as React from 'react'\n\nconst errorRef: { current: null | Error } = { current: null }\n\n// React.cache is currently only available in canary/experimental React channels.\nconst cache =\n typeof React.cache === 'function'\n ? React.cache\n : (fn: (key: unknown) => void) => fn\n\n// When Cache Components is enabled, we record these as errors so that they\n// are captured by the dev overlay as it's more critical to fix these\n// when enabled.\nconst logErrorOrWarn = process.env.__NEXT_CACHE_COMPONENTS\n ? console.error\n : console.warn\n\n// We don't want to dedupe across requests.\n// The developer might've just attempted to fix the warning so we should warn again if it still happens.\nconst flushCurrentErrorIfNew = cache(\n // eslint-disable-next-line @typescript-eslint/no-unused-vars -- cache key\n (key: unknown) => {\n try {\n logErrorOrWarn(errorRef.current)\n } finally {\n errorRef.current = null\n }\n }\n)\n\n/**\n * Creates a function that logs an error message that is deduped by the userland\n * callsite.\n * This requires no indirection between the call of this function and the userland\n * callsite i.e. there's only a single library frame above this.\n * Do not use on the Client where sourcemaps and ignore listing might be enabled.\n * Only use that for warnings need a fix independent of the callstack.\n *\n * @param getMessage\n * @returns\n */\nexport function createDedupedByCallsiteServerErrorLoggerDev(\n getMessage: (...args: Args) => Error\n) {\n return function logDedupedError(...args: Args) {\n const message = getMessage(...args)\n\n if (process.env.NODE_ENV !== 'production') {\n const callStackFrames = new Error().stack?.split('\\n')\n if (callStackFrames === undefined || callStackFrames.length < 4) {\n logErrorOrWarn(message)\n } else {\n // Error:\n // logDedupedError\n // asyncApiBeingAccessedSynchronously\n // \n // TODO: This breaks if sourcemaps with ignore lists are enabled.\n const key = callStackFrames[4]\n errorRef.current = message\n flushCurrentErrorIfNew(key)\n }\n } else {\n logErrorOrWarn(message)\n }\n }\n}\n"],"names":["React","errorRef","current","cache","fn","logErrorOrWarn","process","env","__NEXT_CACHE_COMPONENTS","console","error","warn","flushCurrentErrorIfNew","key","createDedupedByCallsiteServerErrorLoggerDev","getMessage","logDedupedError","args","message","NODE_ENV","callStackFrames","Error","stack","split","undefined","length"],"mappings":";;;;AAAA,YAAYA,WAAW,QAAO;;AAE9B,MAAMC,WAAsC;IAAEC,SAAS;AAAK;AAE5D,iFAAiF;AACjF,MAAMC,QACJ,OAAOH,MAAMG,wMAAK,KAAK,aACnBH,MAAMG,wMAAK,GACX,CAACC,KAA+BA;AAEtC,2EAA2E;AAC3E,qEAAqE;AACrE,gBAAgB;AAChB,MAAMC,iBAAiBC,QAAQC,GAAG,CAACC,uBAAuB,GACtDC,QAAQC,KAAK,aACbD,QAAQE,IAAI;AAEhB,2CAA2C;AAC3C,wGAAwG;AACxG,MAAMC,yBAAyBT,MAC7B,AACA,CAACU,yEADyE;IAExE,IAAI;QACFR,eAAeJ,SAASC,OAAO;IACjC,SAAU;QACRD,SAASC,OAAO,GAAG;IACrB;AACF;AAcK,SAASY,4CACdC,UAAoC;IAEpC,OAAO,SAASC,gBAAgB,GAAGC,IAAU;QAC3C,MAAMC,UAAUH,cAAcE;QAE9B,IAAIX,QAAQC,GAAG,CAACY,QAAQ,KAAK,WAAc;gBACjB;YAAxB,MAAMC,kBAAAA,CAAkB,SAAA,IAAIC,QAAQC,KAAK,KAAA,OAAA,KAAA,IAAjB,OAAmBC,KAAK,CAAC;YACjD,IAAIH,oBAAoBI,aAAaJ,gBAAgBK,MAAM,GAAG,GAAG;gBAC/DpB,eAAea;YACjB,OAAO;gBACL,SAAS;gBACT,oBAAoB;gBACpB,uCAAuC;gBACvC,wBAAwB;gBACxB,iEAAiE;gBACjE,MAAML,MAAMO,eAAe,CAAC,EAAE;gBAC9BnB,SAASC,OAAO,GAAGgB;gBACnBN,uBAAuBC;YACzB;QACF,OAAO;;IAGT;AACF","ignoreList":[0]}}, - {"offset": {"line": 9986, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/reflect-utils.ts"],"sourcesContent":["// This regex will have fast negatives meaning valid identifiers may not pass\n// this test. However this is only used during static generation to provide hints\n// about why a page bailed out of some or all prerendering and we can use bracket notation\n// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']`\n// even if this would have been fine too `searchParams.ಠ_ಠ`\nconst isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/\n\nexport function describeStringPropertyAccess(target: string, prop: string) {\n if (isDefinitelyAValidIdentifier.test(prop)) {\n return `\\`${target}.${prop}\\``\n }\n return `\\`${target}[${JSON.stringify(prop)}]\\``\n}\n\nexport function describeHasCheckingStringProperty(\n target: string,\n prop: string\n) {\n const stringifiedProp = JSON.stringify(prop)\n return `\\`Reflect.has(${target}, ${stringifiedProp})\\`, \\`${stringifiedProp} in ${target}\\`, or similar`\n}\n\nexport const wellKnownProperties = new Set([\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toString',\n 'valueOf',\n 'toLocaleString',\n\n // Promise prototype\n 'then',\n 'catch',\n 'finally',\n\n // React Promise extension\n 'status',\n // 'value',\n // 'error',\n\n // React introspection\n 'displayName',\n '_debugInfo',\n\n // Common tested properties\n 'toJSON',\n '$$typeof',\n '__esModule',\n])\n"],"names":["isDefinitelyAValidIdentifier","describeStringPropertyAccess","target","prop","test","JSON","stringify","describeHasCheckingStringProperty","stringifiedProp","wellKnownProperties","Set"],"mappings":";;;;;;;;AAAA,6EAA6E;AAC7E,iFAAiF;AACjF,0FAA0F;AAC1F,uFAAuF;AACvF,2DAA2D;AAC3D,MAAMA,+BAA+B;AAE9B,SAASC,6BAA6BC,MAAc,EAAEC,IAAY;IACvE,IAAIH,6BAA6BI,IAAI,CAACD,OAAO;QAC3C,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEC,KAAK,EAAE,CAAC;IAChC;IACA,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEG,KAAKC,SAAS,CAACH,MAAM,GAAG,CAAC;AACjD;AAEO,SAASI,kCACdL,MAAc,EACdC,IAAY;IAEZ,MAAMK,kBAAkBH,KAAKC,SAAS,CAACH;IACvC,OAAO,CAAC,cAAc,EAAED,OAAO,EAAE,EAAEM,gBAAgB,OAAO,EAAEA,gBAAgB,IAAI,EAAEN,OAAO,cAAc,CAAC;AAC1G;AAEO,MAAMO,sBAAsB,IAAIC,IAAI;IACzC;IACA;IACA;IACA;IACA;IACA;IAEA,oBAAoB;IACpB;IACA;IACA;IAEA,0BAA0B;IAC1B;IACA,WAAW;IACX,WAAW;IAEX,sBAAsB;IACtB;IACA;IAEA,2BAA2B;IAC3B;IACA;IACA;CACD,EAAC","ignoreList":[0]}}, - {"offset": {"line": 10037, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/utils.ts"],"sourcesContent":["import { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport { afterTaskAsyncStorage } from '../app-render/after-task-async-storage.external'\nimport type { WorkStore } from '../app-render/work-async-storage.external'\n\nexport function throwWithStaticGenerationBailoutErrorWithDynamicError(\n route: string,\n expression: string\n): never {\n throw new StaticGenBailoutError(\n `Route ${route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n}\n\nexport function throwForSearchParamsAccessInUseCache(\n workStore: WorkStore,\n constructorOpt: Function\n): never {\n const error = new Error(\n `Route ${workStore.route} used \\`searchParams\\` inside \"use cache\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\`searchParams\\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`\n )\n\n Error.captureStackTrace(error, constructorOpt)\n workStore.invalidDynamicUsageError ??= error\n\n throw error\n}\n\nexport function isRequestAPICallableInsideAfter() {\n const afterTaskStore = afterTaskAsyncStorage.getStore()\n return afterTaskStore?.rootTaskSpawnPhase === 'action'\n}\n"],"names":["StaticGenBailoutError","afterTaskAsyncStorage","throwWithStaticGenerationBailoutErrorWithDynamicError","route","expression","throwForSearchParamsAccessInUseCache","workStore","constructorOpt","error","Error","captureStackTrace","invalidDynamicUsageError","isRequestAPICallableInsideAfter","afterTaskStore","getStore","rootTaskSpawnPhase"],"mappings":";;;;;;;;AAAA,SAASA,qBAAqB,QAAQ,oDAAmD;AACzF,SAASC,qBAAqB,QAAQ,kDAAiD;;;AAGhF,SAASC,sDACdC,KAAa,EACbC,UAAkB;IAElB,MAAM,OAAA,cAEL,CAFK,IAAIJ,uNAAAA,CACR,CAAC,MAAM,EAAEG,MAAM,4EAA4E,EAAEC,WAAW,0HAA0H,CAAC,GAD/N,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAEO,SAASC,qCACdC,SAAoB,EACpBC,cAAwB;IAExB,MAAMC,QAAQ,OAAA,cAEb,CAFa,IAAIC,MAChB,CAAC,MAAM,EAAEH,UAAUH,KAAK,CAAC,2XAA2X,CAAC,GADzY,qBAAA;eAAA;oBAAA;sBAAA;IAEd;IAEAM,MAAMC,iBAAiB,CAACF,OAAOD;IAC/BD,UAAUK,wBAAwB,KAAKH;IAEvC,MAAMA;AACR;AAEO,SAASI;IACd,MAAMC,iBAAiBZ,8SAAAA,CAAsBa,QAAQ;IACrD,OAAOD,CAAAA,kBAAAA,OAAAA,KAAAA,IAAAA,eAAgBE,kBAAkB,MAAK;AAChD","ignoreList":[0]}}, - {"offset": {"line": 10074, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/staged-rendering.ts"],"sourcesContent":["import { InvariantError } from '../../shared/lib/invariant-error'\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers'\n\nexport enum RenderStage {\n Before = 1,\n Static = 2,\n Runtime = 3,\n Dynamic = 4,\n Abandoned = 5,\n}\n\nexport type NonStaticRenderStage = RenderStage.Runtime | RenderStage.Dynamic\n\nexport class StagedRenderingController {\n currentStage: RenderStage = RenderStage.Before\n\n staticInterruptReason: Error | null = null\n runtimeInterruptReason: Error | null = null\n staticStageEndTime: number = Infinity\n runtimeStageEndTime: number = Infinity\n\n private runtimeStageListeners: Array<() => void> = []\n private dynamicStageListeners: Array<() => void> = []\n\n private runtimeStagePromise = createPromiseWithResolvers()\n private dynamicStagePromise = createPromiseWithResolvers()\n\n private mayAbandon: boolean = false\n\n constructor(\n private abortSignal: AbortSignal | null = null,\n private hasRuntimePrefetch: boolean\n ) {\n if (abortSignal) {\n abortSignal.addEventListener(\n 'abort',\n () => {\n const { reason } = abortSignal\n if (this.currentStage < RenderStage.Runtime) {\n this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.runtimeStagePromise.reject(reason)\n }\n if (\n this.currentStage < RenderStage.Dynamic ||\n this.currentStage === RenderStage.Abandoned\n ) {\n this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.dynamicStagePromise.reject(reason)\n }\n },\n { once: true }\n )\n\n this.mayAbandon = true\n }\n }\n\n onStage(stage: NonStaticRenderStage, callback: () => void) {\n if (this.currentStage >= stage) {\n callback()\n } else if (stage === RenderStage.Runtime) {\n this.runtimeStageListeners.push(callback)\n } else if (stage === RenderStage.Dynamic) {\n this.dynamicStageListeners.push(callback)\n } else {\n // This should never happen\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n\n canSyncInterrupt() {\n // If we haven't started the render yet, it can't be interrupted.\n if (this.currentStage === RenderStage.Before) {\n return false\n }\n\n const boundaryStage = this.hasRuntimePrefetch\n ? RenderStage.Dynamic\n : RenderStage.Runtime\n return this.currentStage < boundaryStage\n }\n\n syncInterruptCurrentStageWithReason(reason: Error) {\n if (this.currentStage === RenderStage.Before) {\n return\n }\n\n // If Sync IO occurs during the initial (abandonable) render, we'll retry it,\n // so we want a slightly different flow.\n // See the implementation of `abandonRenderImpl` for more explanation.\n if (this.mayAbandon) {\n return this.abandonRenderImpl()\n }\n\n // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage\n // and capture the interruption reason.\n switch (this.currentStage) {\n case RenderStage.Static: {\n this.staticInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n return\n }\n case RenderStage.Runtime: {\n // We only error for Sync IO in the runtime stage if the route\n // is configured to use runtime prefetching.\n // We do this to reflect the fact that during a runtime prefetch,\n // Sync IO aborts aborts the render.\n // Note that `canSyncInterrupt` should prevent us from getting here at all\n // if runtime prefetching isn't enabled.\n if (this.hasRuntimePrefetch) {\n this.runtimeInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n }\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Abandoned:\n default:\n }\n }\n\n getStaticInterruptReason() {\n return this.staticInterruptReason\n }\n\n getRuntimeInterruptReason() {\n return this.runtimeInterruptReason\n }\n\n getStaticStageEndTime() {\n return this.staticStageEndTime\n }\n\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime\n }\n\n abandonRender() {\n if (!this.mayAbandon) {\n throw new InvariantError(\n '`abandonRender` called on a stage controller that cannot be abandoned.'\n )\n }\n\n this.abandonRenderImpl()\n }\n\n private abandonRenderImpl() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the Runtime stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this\n switch (currentStage) {\n case RenderStage.Static: {\n this.currentStage = RenderStage.Abandoned\n this.resolveRuntimeStage()\n return\n }\n case RenderStage.Runtime: {\n this.currentStage = RenderStage.Abandoned\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Before:\n case RenderStage.Abandoned:\n break\n default: {\n currentStage satisfies never\n }\n }\n }\n\n advanceStage(\n stage: RenderStage.Static | RenderStage.Runtime | RenderStage.Dynamic\n ) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return\n }\n\n let currentStage = this.currentStage\n this.currentStage = stage\n\n if (currentStage < RenderStage.Runtime && stage >= RenderStage.Runtime) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin\n this.resolveRuntimeStage()\n }\n if (currentStage < RenderStage.Dynamic && stage >= RenderStage.Dynamic) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin\n this.resolveDynamicStage()\n return\n }\n }\n\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */\n private resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners\n for (let i = 0; i < runtimeListeners.length; i++) {\n runtimeListeners[i]()\n }\n runtimeListeners.length = 0\n this.runtimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */\n private resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners\n for (let i = 0; i < dynamicListeners.length; i++) {\n dynamicListeners[i]()\n }\n dynamicListeners.length = 0\n this.dynamicStagePromise.resolve()\n }\n\n private getStagePromise(stage: NonStaticRenderStage): Promise {\n switch (stage) {\n case RenderStage.Runtime: {\n return this.runtimeStagePromise.promise\n }\n case RenderStage.Dynamic: {\n return this.dynamicStagePromise.promise\n }\n default: {\n stage satisfies never\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n }\n\n waitForStage(stage: NonStaticRenderStage) {\n return this.getStagePromise(stage)\n }\n\n delayUntilStage(\n stage: NonStaticRenderStage,\n displayName: string | undefined,\n resolvedValue: T\n ) {\n const ioTriggerPromise = this.getStagePromise(stage)\n\n const promise = makeDevtoolsIOPromiseFromIOTrigger(\n ioTriggerPromise,\n displayName,\n resolvedValue\n )\n\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject)\n }\n return promise\n }\n}\n\nfunction ignoreReject() {}\n\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger(\n ioTrigger: Promise,\n displayName: string | undefined,\n resolvedValue: T\n): Promise {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise((resolve, reject) => {\n ioTrigger.then(resolve.bind(null, resolvedValue), reject)\n })\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName\n }\n return promise\n}\n"],"names":["InvariantError","createPromiseWithResolvers","RenderStage","StagedRenderingController","constructor","abortSignal","hasRuntimePrefetch","currentStage","staticInterruptReason","runtimeInterruptReason","staticStageEndTime","Infinity","runtimeStageEndTime","runtimeStageListeners","dynamicStageListeners","runtimeStagePromise","dynamicStagePromise","mayAbandon","addEventListener","reason","promise","catch","ignoreReject","reject","once","onStage","stage","callback","push","canSyncInterrupt","boundaryStage","syncInterruptCurrentStageWithReason","abandonRenderImpl","advanceStage","getStaticInterruptReason","getRuntimeInterruptReason","getStaticStageEndTime","getRuntimeStageEndTime","abandonRender","resolveRuntimeStage","performance","now","timeOrigin","resolveDynamicStage","runtimeListeners","i","length","resolve","dynamicListeners","getStagePromise","waitForStage","delayUntilStage","displayName","resolvedValue","ioTriggerPromise","makeDevtoolsIOPromiseFromIOTrigger","ioTrigger","Promise","then","bind","undefined"],"mappings":";;;;;;AAAA,SAASA,cAAc,QAAQ,mCAAkC;AACjE,SAASC,0BAA0B,QAAQ,0CAAyC;;;AAE7E,IAAKC,cAAAA,WAAAA,GAAAA,SAAAA,WAAAA;;;;;;WAAAA;MAMX;AAIM,MAAMC;IAgBXC,YACUC,cAAkC,IAAI,EACtCC,kBAA2B,CACnC;aAFQD,WAAAA,GAAAA;aACAC,kBAAAA,GAAAA;aAjBVC,YAAAA,GAAAA;aAEAC,qBAAAA,GAAsC;aACtCC,sBAAAA,GAAuC;aACvCC,kBAAAA,GAA6BC;aAC7BC,mBAAAA,GAA8BD;aAEtBE,qBAAAA,GAA2C,EAAE;aAC7CC,qBAAAA,GAA2C,EAAE;aAE7CC,mBAAAA,OAAsBd,kNAAAA;aACtBe,mBAAAA,OAAsBf,kNAAAA;aAEtBgB,UAAAA,GAAsB;QAM5B,IAAIZ,aAAa;YACfA,YAAYa,gBAAgB,CAC1B,SACA;gBACE,MAAM,EAAEC,MAAM,EAAE,GAAGd;gBACnB,IAAI,IAAI,CAACE,YAAY,GAAA,GAAwB;oBAC3C,IAAI,CAACQ,mBAAmB,CAACK,OAAO,CAACC,KAAK,CAACC,cAAc,6BAA6B;;oBAClF,IAAI,CAACP,mBAAmB,CAACQ,MAAM,CAACJ;gBAClC;gBACA,IACE,IAAI,CAACZ,YAAY,GAAA,KACjB,IAAI,CAACA,YAAY,KAAA,GACjB;oBACA,IAAI,CAACS,mBAAmB,CAACI,OAAO,CAACC,KAAK,CAACC,cAAc,6BAA6B;;oBAClF,IAAI,CAACN,mBAAmB,CAACO,MAAM,CAACJ;gBAClC;YACF,GACA;gBAAEK,MAAM;YAAK;YAGf,IAAI,CAACP,UAAU,GAAG;QACpB;IACF;IAEAQ,QAAQC,KAA2B,EAAEC,QAAoB,EAAE;QACzD,IAAI,IAAI,CAACpB,YAAY,IAAImB,OAAO;YAC9BC;QACF,OAAO,IAAID,UAAAA,GAA+B;YACxC,IAAI,CAACb,qBAAqB,CAACe,IAAI,CAACD;QAClC,OAAO,IAAID,UAAAA,GAA+B;YACxC,IAAI,CAACZ,qBAAqB,CAACc,IAAI,CAACD;QAClC,OAAO;YACL,2BAA2B;YAC3B,MAAM,OAAA,cAAoD,CAApD,IAAI3B,4LAAAA,CAAe,CAAC,sBAAsB,EAAE0B,OAAO,GAAnD,qBAAA;uBAAA;4BAAA;8BAAA;YAAmD;QAC3D;IACF;IAEAG,mBAAmB;QACjB,iEAAiE;QACjE,IAAI,IAAI,CAACtB,YAAY,KAAA,GAAyB;YAC5C,OAAO;QACT;QAEA,MAAMuB,gBAAgB,IAAI,CAACxB,kBAAkB,GAAA,IAAA;QAG7C,OAAO,IAAI,CAACC,YAAY,GAAGuB;IAC7B;IAEAC,oCAAoCZ,MAAa,EAAE;QACjD,IAAI,IAAI,CAACZ,YAAY,KAAA,GAAyB;YAC5C;QACF;QAEA,6EAA6E;QAC7E,wCAAwC;QACxC,sEAAsE;QACtE,IAAI,IAAI,CAACU,UAAU,EAAE;YACnB,OAAO,IAAI,CAACe,iBAAiB;QAC/B;QAEA,8FAA8F;QAC9F,uCAAuC;QACvC,OAAQ,IAAI,CAACzB,YAAY;YACvB,KAAA;gBAAyB;oBACvB,IAAI,CAACC,qBAAqB,GAAGW;oBAC7B,IAAI,CAACc,YAAY,CAAA;oBACjB;gBACF;YACA,KAAA;gBAA0B;oBACxB,8DAA8D;oBAC9D,4CAA4C;oBAC5C,iEAAiE;oBACjE,oCAAoC;oBACpC,0EAA0E;oBAC1E,wCAAwC;oBACxC,IAAI,IAAI,CAAC3B,kBAAkB,EAAE;wBAC3B,IAAI,CAACG,sBAAsB,GAAGU;wBAC9B,IAAI,CAACc,YAAY,CAAA;oBACnB;oBACA;gBACF;YACA,KAAA;YACA,KAAA;YACA;QACF;IACF;IAEAC,2BAA2B;QACzB,OAAO,IAAI,CAAC1B,qBAAqB;IACnC;IAEA2B,4BAA4B;QAC1B,OAAO,IAAI,CAAC1B,sBAAsB;IACpC;IAEA2B,wBAAwB;QACtB,OAAO,IAAI,CAAC1B,kBAAkB;IAChC;IAEA2B,yBAAyB;QACvB,OAAO,IAAI,CAACzB,mBAAmB;IACjC;IAEA0B,gBAAgB;QACd,IAAI,CAAC,IAAI,CAACrB,UAAU,EAAE;YACpB,MAAM,OAAA,cAEL,CAFK,IAAIjB,4LAAAA,CACR,2EADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEA,IAAI,CAACgC,iBAAiB;IACxB;IAEQA,oBAAoB;QAC1B,+DAA+D;QAC/D,uCAAuC;QACvC,mEAAmE;QACnE,oEAAoE;QACpE,0DAA0D;QAC1D,6EAA6E;QAC7E,gEAAgE;QAChE,qEAAqE;QACrE,0EAA0E;QAC1E,MAAM,EAAEzB,YAAY,EAAE,GAAG,IAAI;QAC7B,OAAQA;YACN,KAAA;gBAAyB;oBACvB,IAAI,CAACA,YAAY,GAAA;oBACjB,IAAI,CAACgC,mBAAmB;oBACxB;gBACF;YACA,KAAA;gBAA0B;oBACxB,IAAI,CAAChC,YAAY,GAAA;oBACjB;gBACF;YACA,KAAA;YACA,KAAA;YACA,KAAA;gBACE;YACF;gBAAS;oBACPA;gBACF;QACF;IACF;IAEA0B,aACEP,KAAqE,EACrE;QACA,8DAA8D;QAC9D,qEAAqE;QACrE,IAAIA,SAAS,IAAI,CAACnB,YAAY,EAAE;YAC9B;QACF;QAEA,IAAIA,eAAe,IAAI,CAACA,YAAY;QACpC,IAAI,CAACA,YAAY,GAAGmB;QAEpB,IAAInB,eAAAA,KAAsCmB,SAAAA,GAA8B;YACtE,IAAI,CAAChB,kBAAkB,GAAG8B,YAAYC,GAAG,KAAKD,YAAYE,UAAU;YACpE,IAAI,CAACH,mBAAmB;QAC1B;QACA,IAAIhC,eAAAA,KAAsCmB,SAAAA,GAA8B;YACtE,IAAI,CAACd,mBAAmB,GAAG4B,YAAYC,GAAG,KAAKD,YAAYE,UAAU;YACrE,IAAI,CAACC,mBAAmB;YACxB;QACF;IACF;IAEA,gGAAgG,GACxFJ,sBAAsB;QAC5B,MAAMK,mBAAmB,IAAI,CAAC/B,qBAAqB;QACnD,IAAK,IAAIgC,IAAI,GAAGA,IAAID,iBAAiBE,MAAM,EAAED,IAAK;YAChDD,gBAAgB,CAACC,EAAE;QACrB;QACAD,iBAAiBE,MAAM,GAAG;QAC1B,IAAI,CAAC/B,mBAAmB,CAACgC,OAAO;IAClC;IAEA,gGAAgG,GACxFJ,sBAAsB;QAC5B,MAAMK,mBAAmB,IAAI,CAAClC,qBAAqB;QACnD,IAAK,IAAI+B,IAAI,GAAGA,IAAIG,iBAAiBF,MAAM,EAAED,IAAK;YAChDG,gBAAgB,CAACH,EAAE;QACrB;QACAG,iBAAiBF,MAAM,GAAG;QAC1B,IAAI,CAAC9B,mBAAmB,CAAC+B,OAAO;IAClC;IAEQE,gBAAgBvB,KAA2B,EAAiB;QAClE,OAAQA;YACN,KAAA;gBAA0B;oBACxB,OAAO,IAAI,CAACX,mBAAmB,CAACK,OAAO;gBACzC;YACA,KAAA;gBAA0B;oBACxB,OAAO,IAAI,CAACJ,mBAAmB,CAACI,OAAO;gBACzC;YACA;gBAAS;oBACPM;oBACA,MAAM,OAAA,cAAoD,CAApD,IAAI1B,4LAAAA,CAAe,CAAC,sBAAsB,EAAE0B,OAAO,GAAnD,qBAAA;+BAAA;oCAAA;sCAAA;oBAAmD;gBAC3D;QACF;IACF;IAEAwB,aAAaxB,KAA2B,EAAE;QACxC,OAAO,IAAI,CAACuB,eAAe,CAACvB;IAC9B;IAEAyB,gBACEzB,KAA2B,EAC3B0B,WAA+B,EAC/BC,aAAgB,EAChB;QACA,MAAMC,mBAAmB,IAAI,CAACL,eAAe,CAACvB;QAE9C,MAAMN,UAAUmC,mCACdD,kBACAF,aACAC;QAGF,8FAA8F;QAC9F,uGAAuG;QACvG,sHAAsH;QACtH,IAAI,IAAI,CAAChD,WAAW,EAAE;YACpBe,QAAQC,KAAK,CAACC;QAChB;QACA,OAAOF;IACT;AACF;AAEA,SAASE,gBAAgB;AAEzB,kEAAkE;AAClE,4EAA4E;AAC5E,uCAAuC;AACvC,SAASiC,mCACPC,SAAuB,EACvBJ,WAA+B,EAC/BC,aAAgB;IAEhB,yDAAyD;IACzD,iDAAiD;IACjD,8EAA8E;IAC9E,kFAAkF;IAClF,gGAAgG;IAChG,MAAMjC,UAAU,IAAIqC,QAAW,CAACV,SAASxB;QACvCiC,UAAUE,IAAI,CAACX,QAAQY,IAAI,CAAC,MAAMN,gBAAgB9B;IACpD;IACA,IAAI6B,gBAAgBQ,WAAW;QAC7B,mBAAmB;QACnBxC,QAAQgC,WAAW,GAAGA;IACxB;IACA,OAAOhC;AACT","ignoreList":[0]}}, - {"offset": {"line": 10335, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/search-params.ts"],"sourcesContent":["import type { WorkStore } from '../app-render/work-async-storage.external'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n annotateDynamicAccess,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStoreLegacy,\n type PrerenderStorePPR,\n type PrerenderStoreModern,\n type PrerenderStoreModernRuntime,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport {\n describeStringPropertyAccess,\n describeHasCheckingStringProperty,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n throwWithStaticGenerationBailoutErrorWithDynamicError,\n throwForSearchParamsAccessInUseCache,\n} from './utils'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type SearchParams = { [key: string]: string | string[] | undefined }\n\nexport function createSearchParamsFromClient(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'prerender-runtime':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in cache contexts.'\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport const createServerSearchParamsForMetadata =\n createServerSearchParamsForServerPage\n\nexport function createServerSearchParamsForServerPage(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerSearchParamsForServerPage should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderSearchParams(\n underlyingSearchParams,\n workUnitStore\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderSearchParamsForClientPage(\n workStore: WorkStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We're prerendering in a mode that aborts (cacheComponents) and should stall\n // the promise to ensure the RSC side is considered dynamic\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n return Promise.resolve({})\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nfunction createStaticPrerenderSearchParams(\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We are in a cacheComponents (PPR or otherwise) prerender\n return makeHangingSearchParams(workStore, prerenderStore)\n case 'prerender-ppr':\n case 'prerender-legacy':\n // We are in a legacy static generation and need to interrupt the\n // prerender when search params are accessed.\n return makeErroringSearchParams(workStore, prerenderStore)\n default:\n return prerenderStore satisfies never\n }\n}\n\nfunction createRuntimePrerenderSearchParams(\n underlyingSearchParams: SearchParams,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedSearchParams(underlyingSearchParams)\n )\n}\n\nfunction createRenderSearchParams(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n } else {\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n return makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n return makeUntrackedSearchParams(underlyingSearchParams)\n }\n }\n}\n\ninterface CacheLifetime {}\nconst CachedSearchParams = new WeakMap>()\n\nconst CachedSearchParamsForUseCache = new WeakMap<\n CacheLifetime,\n Promise\n>()\n\nfunction makeHangingSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreModern\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(prerenderStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n switch (prop) {\n case 'then': {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n case 'status': {\n const expression =\n '`use(searchParams)`, `searchParams.status`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n default: {\n return ReflectAdapter.get(target, prop, receiver)\n }\n }\n },\n })\n\n CachedSearchParams.set(prerenderStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeErroringSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreLegacy | PrerenderStorePPR\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const underlyingSearchParams = {}\n // For search params we don't construct a ReactPromise because we want to interrupt\n // rendering on any property access that was not set from outside and so we only want\n // to have properties like value and status if React sets them.\n const promise = Promise.resolve(underlyingSearchParams)\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (typeof prop === 'string' && prop === 'then') {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n if (workStore.dynamicShouldError) {\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n } else if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParams.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\n/**\n * This is a variation of `makeErroringSearchParams` that always throws an\n * error on access, because accessing searchParams inside of `\"use cache\"` is\n * not allowed.\n */\nexport function makeErroringSearchParamsForUseCache(\n workStore: WorkStore\n): Promise {\n const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve({})\n\n const proxiedPromise = new Proxy(promise, {\n get: function get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it. We know it\n // isn't a dynamic access because it can only be something that was\n // previously written to the promise and thus not an underlying\n // searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (\n typeof prop === 'string' &&\n (prop === 'then' || !wellKnownProperties.has(prop))\n ) {\n throwForSearchParamsAccessInUseCache(workStore, get)\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParamsForUseCache.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeUntrackedSearchParams(\n underlyingSearchParams: SearchParams\n): Promise {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve(underlyingSearchParams)\n CachedSearchParams.set(underlyingSearchParams, promise)\n\n return promise\n}\n\nfunction makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (requestStore.asyncApiPromises) {\n // Do not cache the resulting promise. If we do, we'll only show the first \"awaited at\"\n // across all segments that receive searchParams.\n return makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n const promise = makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n CachedSearchParams.set(requestStore, promise)\n return promise\n }\n}\n\nfunction makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n const promiseInitialized = { current: false }\n const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams,\n workStore,\n promiseInitialized\n )\n\n let promise: Promise\n if (requestStore.asyncApiPromises) {\n // We wrap each instance of searchParams in a `new Promise()`.\n // This is important when all awaits are in third party which would otherwise\n // track all the way to the internal params.\n const sharedSearchParamsParent =\n requestStore.asyncApiPromises.sharedSearchParamsParent\n promise = new Promise((resolve, reject) => {\n sharedSearchParamsParent.then(() => resolve(proxiedUnderlying), reject)\n })\n // @ts-expect-error\n promise.displayName = 'searchParams'\n } else {\n promise = makeDevtoolsIOAwarePromise(\n proxiedUnderlying,\n requestStore,\n RenderStage.Runtime\n )\n }\n promise.then(\n () => {\n promiseInitialized.current = true\n },\n // If we're in staged rendering, this promise will reject if the render\n // is aborted before it can reach the runtime stage.\n // In that case, we have to prevent an unhandled rejection from the promise\n // created by this `.then()` call.\n // This does not affect the `promiseInitialized` logic above,\n // because `proxiedUnderlying` will not be used to resolve the promise,\n // so there's no risk of any of its properties being accessed and triggering\n // an undesireable warning.\n ignoreReject\n )\n\n return instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams,\n promise,\n workStore\n )\n}\n\nfunction ignoreReject() {}\n\nfunction instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n promiseInitialized: { current: boolean }\n) {\n // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying\n // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender\n // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking\n // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger\n // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce\n // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise.\n return new Proxy(underlyingSearchParams, {\n get(target, prop, receiver) {\n if (typeof prop === 'string' && promiseInitialized.current) {\n if (workStore.dynamicShouldError) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (workStore.dynamicShouldError) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n if (workStore.dynamicShouldError) {\n const expression =\n '`{...searchParams}`, `Object.keys(searchParams)`, or similar'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n return Reflect.ownKeys(target)\n },\n })\n}\n\nfunction instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams: SearchParams,\n promise: Promise,\n workStore: WorkStore\n) {\n // Track which properties we should warn for.\n const proxiedProperties = new Set()\n\n Object.keys(underlyingSearchParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (prop === 'then' && workStore.dynamicShouldError) {\n const expression = '`searchParams.then`'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return Reflect.set(target, prop, value, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n const expression = '`Object.keys(searchParams)` or similar'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createSearchAccessError\n)\n\nfunction createSearchAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`searchParams\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["ReflectAdapter","throwToInterruptStaticGeneration","postponeWithTracking","annotateDynamicAccess","delayUntilRuntimeStage","workUnitAsyncStorage","throwInvariantForMissingStore","InvariantError","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","describeStringPropertyAccess","describeHasCheckingStringProperty","wellKnownProperties","throwWithStaticGenerationBailoutErrorWithDynamicError","throwForSearchParamsAccessInUseCache","RenderStage","createSearchParamsFromClient","underlyingSearchParams","workStore","workUnitStore","getStore","type","createStaticPrerenderSearchParams","createRenderSearchParams","createServerSearchParamsForMetadata","createServerSearchParamsForServerPage","createRuntimePrerenderSearchParams","createPrerenderSearchParamsForClientPage","forceStatic","Promise","resolve","renderSignal","route","prerenderStore","makeHangingSearchParams","makeErroringSearchParams","makeUntrackedSearchParams","requestStore","process","env","NODE_ENV","makeUntrackedSearchParamsWithDevWarnings","CachedSearchParams","WeakMap","CachedSearchParamsForUseCache","cachedSearchParams","get","promise","proxiedPromise","Proxy","target","prop","receiver","Object","hasOwn","expression","set","dynamicShouldError","dynamicTracking","makeErroringSearchParamsForUseCache","has","asyncApiPromises","makeUntrackedSearchParamsWithDevWarningsImpl","promiseInitialized","current","proxiedUnderlying","instrumentSearchParamsObjectWithDevWarnings","sharedSearchParamsParent","reject","then","displayName","Runtime","ignoreReject","instrumentSearchParamsPromiseWithDevWarnings","Reflect","ownKeys","proxiedProperties","Set","keys","forEach","add","warnForSyncAccess","value","delete","createSearchAccessError","prefix","Error"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 10754, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/params.ts"],"sourcesContent":["import {\n workAsyncStorage,\n type WorkStore,\n} from '../app-render/work-async-storage.external'\nimport type { OpaqueFallbackRouteParams } from './fallback-params'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStorePPR,\n type PrerenderStoreLegacy,\n type StaticPrerenderStoreModern,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type PrerenderStoreModernRuntime,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n describeStringPropertyAccess,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport { dynamicAccessAsyncStorage } from '../app-render/dynamic-access-async-storage.external'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type ParamValue = string | Array | undefined\nexport type Params = Record\n\nexport function createParamsFromClient(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createParamsFromClient should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createParamsFromClient should not be called in a runtime prerender.'\n )\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport type CreateServerParamsForMetadata = typeof createServerParamsForMetadata\nexport const createServerParamsForMetadata = createServerParamsForServerSegment\n\n// routes always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerParamsForRoute(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForRoute should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createServerParamsForServerSegment(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForServerSegment should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderParamsForClientSegment(\n underlyingParams: Params\n): Promise {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError(\n 'Missing workStore in createPrerenderParamsForClientSegment'\n )\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams) {\n for (let key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`params`'\n )\n }\n }\n }\n break\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderParamsForClientSegment should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'prerender-runtime':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n // We're prerendering in a mode that does not abort. We resolve the promise without\n // any tracking because we're just transporting a value from server to client where the tracking\n // will be applied.\n return Promise.resolve(underlyingParams)\n}\n\nfunction createStaticPrerenderParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise {\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingParams(\n underlyingParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n return makeErroringParams(\n underlyingParams,\n fallbackParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-legacy':\n break\n default:\n prerenderStore satisfies never\n }\n\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRuntimePrerenderParams(\n underlyingParams: Params,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedParams(underlyingParams)\n )\n}\n\nfunction createRenderParamsInProd(underlyingParams: Params): Promise {\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRenderParamsInDev(\n underlyingParams: Params,\n devFallbackParams: OpaqueFallbackRouteParams | null | undefined,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n let hasFallbackParams = false\n if (devFallbackParams) {\n for (let key in underlyingParams) {\n if (devFallbackParams.has(key)) {\n hasFallbackParams = true\n break\n }\n }\n }\n\n return makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams,\n hasFallbackParams,\n workStore,\n requestStore\n )\n}\n\ninterface CacheLifetime {}\nconst CachedParams = new WeakMap>()\n\nconst fallbackParamsProxyHandler: ProxyHandler> = {\n get: function get(target, prop, receiver) {\n if (prop === 'then' || prop === 'catch' || prop === 'finally') {\n const originalMethod = ReflectAdapter.get(target, prop, receiver)\n\n return {\n [prop]: (...args: unknown[]) => {\n const store = dynamicAccessAsyncStorage.getStore()\n\n if (store) {\n store.abortController.abort(\n new Error(`Accessed fallback \\`params\\` during prerendering.`)\n )\n }\n\n return new Proxy(\n originalMethod.apply(target, args),\n fallbackParamsProxyHandler\n )\n },\n }[prop]\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n}\n\nfunction makeHangingParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStoreModern\n): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = new Proxy(\n makeHangingPromise(\n prerenderStore.renderSignal,\n workStore.route,\n '`params`'\n ),\n fallbackParamsProxyHandler\n )\n\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeErroringParams(\n underlyingParams: Params,\n fallbackParams: OpaqueFallbackRouteParams,\n workStore: WorkStore,\n prerenderStore: PrerenderStorePPR | PrerenderStoreLegacy\n): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const augmentedUnderlying = { ...underlyingParams }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = Promise.resolve(augmentedUnderlying)\n CachedParams.set(underlyingParams, promise)\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n if (fallbackParams.has(prop)) {\n Object.defineProperty(augmentedUnderlying, prop, {\n get() {\n const expression = describeStringPropertyAccess('params', prop)\n // In most dynamic APIs we also throw if `dynamic = \"error\"` however\n // for params is only dynamic when we're generating a fallback shell\n // and even when `dynamic = \"error\"` we still support generating dynamic\n // fallback shells\n // TODO remove this comment when cacheComponents is the default since there\n // will be no `dynamic = \"error\"`\n if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n },\n enumerable: true,\n })\n }\n }\n })\n\n return promise\n}\n\nfunction makeUntrackedParams(underlyingParams: Params): Promise {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = Promise.resolve(underlyingParams)\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams: Params,\n hasFallbackParams: boolean,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise {\n if (requestStore.asyncApiPromises && hasFallbackParams) {\n // We wrap each instance of params in a `new Promise()`, because deduping\n // them across requests doesn't work anyway and this let us show each\n // await a different set of values. This is important when all awaits\n // are in third party which would otherwise track all the way to the\n // internal params.\n const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent\n const promise: Promise = new Promise((resolve, reject) => {\n sharedParamsParent.then(() => resolve(underlyingParams), reject)\n })\n // @ts-expect-error\n promise.displayName = 'params'\n return instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n }\n\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = hasFallbackParams\n ? makeDevtoolsIOAwarePromise(\n underlyingParams,\n requestStore,\n RenderStage.Runtime\n )\n : // We don't want to force an environment transition when this params is not part of the fallback params set\n Promise.resolve(underlyingParams)\n\n const proxiedPromise = instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n CachedParams.set(underlyingParams, proxiedPromise)\n return proxiedPromise\n}\n\nfunction instrumentParamsPromiseWithDevWarnings(\n underlyingParams: Params,\n promise: Promise,\n workStore: WorkStore\n): Promise {\n // Track which properties we should warn for.\n const proxiedProperties = new Set()\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (typeof prop === 'string') {\n if (\n // We are accessing a property that was proxied to the promise instance\n proxiedProperties.has(prop)\n ) {\n const expression = describeStringPropertyAccess('params', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return ReflectAdapter.set(target, prop, value, receiver)\n },\n ownKeys(target) {\n const expression = '`...params` or similar expression'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createParamsAccessError\n)\n\nfunction createParamsAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`params\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["workAsyncStorage","ReflectAdapter","throwToInterruptStaticGeneration","postponeWithTracking","delayUntilRuntimeStage","workUnitAsyncStorage","throwInvariantForMissingStore","InvariantError","describeStringPropertyAccess","wellKnownProperties","makeDevtoolsIOAwarePromise","makeHangingPromise","createDedupedByCallsiteServerErrorLoggerDev","dynamicAccessAsyncStorage","RenderStage","createParamsFromClient","underlyingParams","workStore","workUnitStore","getStore","type","createStaticPrerenderParams","process","env","NODE_ENV","devFallbackParams","createRenderParamsInDev","createRenderParamsInProd","createServerParamsForMetadata","createServerParamsForServerSegment","createServerParamsForRoute","createRuntimePrerenderParams","createPrerenderParamsForClientSegment","fallbackParams","fallbackRouteParams","key","has","renderSignal","route","Promise","resolve","prerenderStore","makeHangingParams","makeErroringParams","makeUntrackedParams","requestStore","hasFallbackParams","makeDynamicallyTrackedParamsWithDevWarnings","CachedParams","WeakMap","fallbackParamsProxyHandler","get","target","prop","receiver","originalMethod","args","store","abortController","abort","Error","Proxy","apply","cachedParams","promise","set","augmentedUnderlying","Object","keys","forEach","defineProperty","expression","dynamicTracking","enumerable","asyncApiPromises","sharedParamsParent","reject","then","displayName","instrumentParamsPromiseWithDevWarnings","Runtime","proxiedPromise","proxiedProperties","Set","add","warnForSyncAccess","value","delete","ownKeys","Reflect","createParamsAccessError","prefix"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 11155, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-page.tsx"],"sourcesContent":["'use client'\n\nimport type { ParsedUrlQuery } from 'querystring'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\nimport { urlSearchParamsToParsedUrlQuery } from '../route-params'\nimport { SearchParamsContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * When the Page is a client component we send the params and searchParams to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Page component.\n *\n * additionally we may send promises representing the params and searchParams. We don't ever use these passed\n * values but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations.\n * It is up to the caller to decide if the promises are needed.\n */\nexport function ClientPageRoot({\n Component,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n serverProvidedParams: null | {\n searchParams: ParsedUrlQuery\n params: Params\n promises: Array> | null\n }\n}) {\n let searchParams: ParsedUrlQuery\n let params: Params\n if (serverProvidedParams !== null) {\n searchParams = serverProvidedParams.searchParams\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params as\n // props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n\n // This is an intentional behavior change: when Cache Components is enabled,\n // client segments receive the \"canonical\" search params, not the\n // rewritten ones. Users should either call useSearchParams directly or pass\n // the rewritten ones in from a Server Component.\n // TODO: Log a deprecation error when this object is accessed\n searchParams = urlSearchParamsToParsedUrlQuery(use(SearchParamsContext)!)\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientSearchParams: Promise\n let clientParams: Promise\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling searchParams in a client Page.'\n )\n }\n\n const { createSearchParamsFromClient } =\n require('../../server/request/search-params') as typeof import('../../server/request/search-params')\n clientSearchParams = createSearchParamsFromClient(searchParams, store)\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return \n } else {\n const { createRenderSearchParamsFromClient } =\n require('../request/search-params.browser') as typeof import('../request/search-params.browser')\n const clientSearchParams = createRenderSearchParamsFromClient(searchParams)\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n\n return \n }\n}\n"],"names":["InvariantError","LayoutRouterContext","use","urlSearchParamsToParsedUrlQuery","SearchParamsContext","ClientPageRoot","Component","serverProvidedParams","searchParams","params","layoutRouterContext","parentParams","window","workAsyncStorage","require","clientSearchParams","clientParams","store","getStore","createSearchParamsFromClient","createParamsFromClient","createRenderSearchParamsFromClient","createRenderParamsFromClient"],"mappings":";;;;;AAGA,SAASA,cAAc,QAAQ,mCAAkC;AAGjE,SAASC,mBAAmB,QAAQ,qDAAoD;AACxF,SAASC,GAAG,QAAQ,QAAO;AAC3B,SAASC,+BAA+B,QAAQ,kBAAiB;AACjE,SAASC,mBAAmB,QAAQ,uDAAsD;AAT1F;;;;;;;AAmBO,SAASC,eAAe,EAC7BC,SAAS,EACTC,oBAAoB,EAQrB;IACC,IAAIC;IACJ,IAAIC;IACJ,IAAIF,yBAAyB,MAAM;QACjCC,eAAeD,qBAAqBC,YAAY;QAChDC,SAASF,qBAAqBE,MAAM;IACtC,OAAO;QACL,2EAA2E;QAC3E,+DAA+D;QAC/D,MAAMC,0BAAsBR,4MAAAA,EAAID,oPAAAA;QAChCQ,SACEC,wBAAwB,OAAOA,oBAAoBC,YAAY,GAAG,CAAC;QAErE,4EAA4E;QAC5E,iEAAiE;QACjE,4EAA4E;QAC5E,iDAAiD;QACjD,6DAA6D;QAC7DH,mBAAeL,mMAAAA,MAAgCD,4MAAAA,EAAIE,sPAAAA;IACrD;IAEA,IAAI,OAAOQ,WAAW,kBAAa;QACjC,MAAM,EAAEC,gBAAgB,EAAE,GACxBC,QAAQ;QAEV,IAAIC;QACJ,IAAIC;QACJ,yEAAyE;QACzE,wEAAwE;QACxE,MAAMC,QAAQJ,iBAAiBK,QAAQ;QACvC,IAAI,CAACD,OAAO;YACV,MAAM,OAAA,cAEL,CAFK,IAAIjB,4LAAAA,CACR,6EADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEA,MAAM,EAAEmB,4BAA4B,EAAE,GACpCL,QAAQ;QACVC,qBAAqBI,6BAA6BX,cAAcS;QAEhE,MAAM,EAAEG,sBAAsB,EAAE,GAC9BN,QAAQ;QACVE,eAAeI,uBAAuBX,QAAQQ;QAE9C,OAAA,WAAA,OAAO,8NAAA,EAACX,WAAAA;YAAUG,QAAQO;YAAcR,cAAcO;;IACxD,OAAO;;AAUT","ignoreList":[0]}}, - {"offset": {"line": 11219, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-segment.tsx"],"sourcesContent":["'use client'\n\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\n\n/**\n * When the Page is a client component we send the params to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Segment component.\n *\n * additionally we may send a promise representing params. We don't ever use this passed\n * value but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations\n * such as when cacheComponents is enabled. It is up to the caller to decide if the promises are needed.\n */\nexport function ClientSegmentRoot({\n Component,\n slots,\n serverProvidedParams,\n}: {\n Component: React.ComponentType\n slots: { [key: string]: React.ReactNode }\n serverProvidedParams: null | {\n params: Params\n promises: Array> | null\n }\n}) {\n let params: Params\n if (serverProvidedParams !== null) {\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params\n // as props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientParams: Promise\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling params in a client segment such as a Layout or Template.'\n )\n }\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return \n } else {\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n return \n }\n}\n"],"names":["InvariantError","LayoutRouterContext","use","ClientSegmentRoot","Component","slots","serverProvidedParams","params","layoutRouterContext","parentParams","window","workAsyncStorage","require","clientParams","store","getStore","createParamsFromClient","createRenderParamsFromClient"],"mappings":";;;;;AAEA,SAASA,cAAc,QAAQ,mCAAkC;AAGjE,SAASC,mBAAmB,QAAQ,qDAAoD;AACxF,SAASC,GAAG,QAAQ,QAAO;AAN3B;;;;;AAgBO,SAASC,kBAAkB,EAChCC,SAAS,EACTC,KAAK,EACLC,oBAAoB,EAQrB;IACC,IAAIC;IACJ,IAAID,yBAAyB,MAAM;QACjCC,SAASD,qBAAqBC,MAAM;IACtC,OAAO;QACL,wEAAwE;QACxE,kEAAkE;QAClE,MAAMC,0BAAsBN,4MAAAA,EAAID,oPAAAA;QAChCM,SACEC,wBAAwB,OAAOA,oBAAoBC,YAAY,GAAG,CAAC;IACvE;IAEA,IAAI,OAAOC,WAAW,kBAAa;QACjC,MAAM,EAAEC,gBAAgB,EAAE,GACxBC,QAAQ;QAEV,IAAIC;QACJ,yEAAyE;QACzE,wEAAwE;QACxE,MAAMC,QAAQH,iBAAiBI,QAAQ;QACvC,IAAI,CAACD,OAAO;YACV,MAAM,OAAA,cAEL,CAFK,IAAId,4LAAAA,CACR,uGADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEA,MAAM,EAAEgB,sBAAsB,EAAE,GAC9BJ,QAAQ;QACVC,eAAeG,uBAAuBT,QAAQO;QAE9C,OAAA,WAAA,OAAO,8NAAA,EAACV,WAAAA;YAAW,GAAGC,KAAK;YAAEE,QAAQM;;IACvC,OAAO;;AAMT","ignoreList":[0]}}, - {"offset": {"line": 11268, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/icon-mark.tsx"],"sourcesContent":["'use client'\n\n// This is a client component that only renders during SSR,\n// but will be replaced during streaming with an icon insertion script tag.\n// We don't want it to be presented anywhere so it's only visible during streaming,\n// right after the icon meta tags so that browser can pick it up as soon as it's rendered.\n// Note: we don't just emit the script here because we only need the script if it's not in the head,\n// and we need it to be hoistable alongside the other metadata but sync scripts are not hoistable.\nexport const IconMark = () => {\n if (typeof window !== 'undefined') {\n return null\n }\n return \n}\n"],"names":["IconMark","window","meta","name"],"mappings":";;;;;AAAA;;AAQO,MAAMA,WAAW;IACtB,IAAI,OAAOC,WAAW,aAAa;;IAGnC,OAAA,WAAA,OAAO,8NAAA,EAACC,QAAAA;QAAKC,MAAK;;AACpB,EAAC","ignoreList":[0]}}, - {"offset": {"line": 11286, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-components.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from './boundary-constants'\n\n// We use a namespace object to allow us to recover the name of the function\n// at runtime even when production bundling/minification is used.\nconst NameSpace = {\n [METADATA_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [VIEWPORT_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [OUTLET_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [ROOT_LAYOUT_BOUNDARY_NAME]: function ({\n children,\n }: {\n children: ReactNode\n }) {\n return children\n },\n}\n\nexport const MetadataBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[METADATA_BOUNDARY_NAME.slice(0) as typeof METADATA_BOUNDARY_NAME]\n\nexport const ViewportBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[VIEWPORT_BOUNDARY_NAME.slice(0) as typeof VIEWPORT_BOUNDARY_NAME]\n\nexport const OutletBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[OUTLET_BOUNDARY_NAME.slice(0) as typeof OUTLET_BOUNDARY_NAME]\n\nexport const RootLayoutBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[\n ROOT_LAYOUT_BOUNDARY_NAME.slice(0) as typeof ROOT_LAYOUT_BOUNDARY_NAME\n ]\n"],"names":["METADATA_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","NameSpace","children","MetadataBoundary","slice","ViewportBoundary","OutletBoundary","RootLayoutBoundary"],"mappings":";;;;;;;;;;AAGA,SACEA,sBAAsB,EACtBC,sBAAsB,EACtBC,oBAAoB,EACpBC,yBAAyB,QACpB,uBAAsB;AAR7B;;AAUA,4EAA4E;AAC5E,iEAAiE;AACjE,MAAMC,YAAY;IAChB,CAACJ,0MAAAA,CAAuB,EAAE,SAAU,EAAEK,QAAQ,EAA2B;QACvE,OAAOA;IACT;IACA,CAACJ,0MAAAA,CAAuB,EAAE,SAAU,EAAEI,QAAQ,EAA2B;QACvE,OAAOA;IACT;IACA,CAACH,wMAAAA,CAAqB,EAAE,SAAU,EAAEG,QAAQ,EAA2B;QACrE,OAAOA;IACT;IACA,CAACF,6MAAAA,CAA0B,EAAE,SAAU,EACrCE,QAAQ,EAGT;QACC,OAAOA;IACT;AACF;AAEO,MAAMC,mBAEX,AADA,4DAC4D,oBADoB;AAEhFF,SAAS,CAACJ,0MAAAA,CAAuBO,KAAK,CAAC,GAAoC,CAAA;AAEtE,MAAMC,mBACX,AACA,4DAA4D,oBADoB;AAEhFJ,SAAS,CAACH,0MAAAA,CAAuBM,KAAK,CAAC,GAAoC,CAAA;AAEtE,MAAME,iBACX,AACA,4DAA4D,oBADoB;AAEhFL,SAAS,CAACF,wMAAAA,CAAqBK,KAAK,CAAC,GAAkC,CAAA;AAElE,MAAMG,qBACX,AACA,4DAA4D,oBADoB;AAEhFN,SAAS,CACPD,6MAAAA,CAA0BI,KAAK,CAAC,GACjC,CAAA","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_9774470f._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_9774470f._.js deleted file mode 100644 index 66a3bd3..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_9774470f._.js +++ /dev/null @@ -1,149 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/client/components/styles/access-error-styles.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "styles", { - enumerable: true, - get: function() { - return styles; - } -}); -const styles = { - error: { - // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52 - fontFamily: 'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"', - height: '100vh', - textAlign: 'center', - display: 'flex', - flexDirection: 'column', - alignItems: 'center', - justifyContent: 'center' - }, - desc: { - display: 'inline-block' - }, - h1: { - display: 'inline-block', - margin: '0 20px 0 0', - padding: '0 23px 0 0', - fontSize: 24, - fontWeight: 500, - verticalAlign: 'top', - lineHeight: '49px' - }, - h2: { - fontSize: 14, - fontWeight: 400, - lineHeight: '49px', - margin: 0 - } -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=access-error-styles.js.map -}), -"[project]/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HTTPAccessErrorFallback", { - enumerable: true, - get: function() { - return HTTPAccessErrorFallback; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -const _accesserrorstyles = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/styles/access-error-styles.js [app-rsc] (ecmascript)"); -function HTTPAccessErrorFallback({ status, message }) { - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("title", { - children: `${status}: ${message}` - }), - /*#__PURE__*/ (0, _jsxruntime.jsx)("div", { - style: _accesserrorstyles.styles.error, - children: /*#__PURE__*/ (0, _jsxruntime.jsxs)("div", { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("style", { - dangerouslySetInnerHTML: { - /* Minified CSS from - body { margin: 0; color: #000; background: #fff; } - .next-error-h1 { - border-right: 1px solid rgba(0, 0, 0, .3); - } - - @media (prefers-color-scheme: dark) { - body { color: #fff; background: #000; } - .next-error-h1 { - border-right: 1px solid rgba(255, 255, 255, .3); - } - } - */ __html: `body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}` - } - }), - /*#__PURE__*/ (0, _jsxruntime.jsx)("h1", { - className: "next-error-h1", - style: _accesserrorstyles.styles.h1, - children: status - }), - /*#__PURE__*/ (0, _jsxruntime.jsx)("div", { - style: _accesserrorstyles.styles.desc, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)("h2", { - style: _accesserrorstyles.styles.h2, - children: message - }) - }) - ] - }) - }) - ] - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=error-fallback.js.map -}), -"[project]/node_modules/next/dist/client/components/builtin/not-found.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return NotFound; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -const _errorfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js [app-rsc] (ecmascript)"); -function NotFound() { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_errorfallback.HTTPAccessErrorFallback, { - status: 404, - message: "This page could not be found." - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=not-found.js.map -}), -]; - -//# sourceMappingURL=node_modules_next_dist_client_components_9774470f._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_9774470f._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_9774470f._.js.map deleted file mode 100644 index 3e9c254..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_9774470f._.js.map +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/styles/access-error-styles.ts"],"sourcesContent":["export const styles: Record = {\n error: {\n // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52\n fontFamily:\n 'system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"',\n height: '100vh',\n textAlign: 'center',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n\n desc: {\n display: 'inline-block',\n },\n\n h1: {\n display: 'inline-block',\n margin: '0 20px 0 0',\n padding: '0 23px 0 0',\n fontSize: 24,\n fontWeight: 500,\n verticalAlign: 'top',\n lineHeight: '49px',\n },\n\n h2: {\n fontSize: 14,\n fontWeight: 400,\n lineHeight: '49px',\n margin: 0,\n },\n}\n"],"names":["styles","error","fontFamily","height","textAlign","display","flexDirection","alignItems","justifyContent","desc","h1","margin","padding","fontSize","fontWeight","verticalAlign","lineHeight","h2"],"mappings":";;;+BAAaA,UAAAA;;;eAAAA;;;AAAN,MAAMA,SAA8C;IACzDC,OAAO;QACL,0FAA0F;QAC1FC,YACE;QACFC,QAAQ;QACRC,WAAW;QACXC,SAAS;QACTC,eAAe;QACfC,YAAY;QACZC,gBAAgB;IAClB;IAEAC,MAAM;QACJJ,SAAS;IACX;IAEAK,IAAI;QACFL,SAAS;QACTM,QAAQ;QACRC,SAAS;QACTC,UAAU;QACVC,YAAY;QACZC,eAAe;QACfC,YAAY;IACd;IAEAC,IAAI;QACFJ,UAAU;QACVC,YAAY;QACZE,YAAY;QACZL,QAAQ;IACV;AACF","ignoreList":[0]}}, - {"offset": {"line": 54, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/error-fallback.tsx"],"sourcesContent":["import { styles } from '../styles/access-error-styles'\n\nexport function HTTPAccessErrorFallback({\n status,\n message,\n}: {\n status: number\n message: string\n}) {\n return (\n <>\n {/* */}\n {`${status}: ${message}`}\n {/* */}\n
\n
\n \n

\n {status}\n

\n
\n

{message}

\n
\n
\n
\n \n )\n}\n"],"names":["HTTPAccessErrorFallback","status","message","title","div","style","styles","error","dangerouslySetInnerHTML","__html","h1","className","desc","h2"],"mappings":";;;+BAEgBA,2BAAAA;;;eAAAA;;;;mCAFO;AAEhB,SAASA,wBAAwB,EACtCC,MAAM,EACNC,OAAO,EAIR;IACC,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,IAAA,EAAA,YAAA,QAAA,EAAA;;0BAEE,CAAA,GAAA,YAAA,GAAA,EAACC,SAAAA;0BAAO,GAAGF,OAAO,EAAE,EAAEC,SAAS;;0BAE/B,CAAA,GAAA,YAAA,GAAA,EAACE,OAAAA;gBAAIC,OAAOC,mBAAAA,MAAM,CAACC,KAAK;0BACtB,WAAA,GAAA,CAAA,GAAA,YAAA,IAAA,EAACH,OAAAA;;sCACC,CAAA,GAAA,YAAA,GAAA,EAACC,SAAAA;4BACCG,yBAAyB;gCACvB;;;;;;;;;;;;cAYA,GACAC,QAAQ,CAAC,6NAA6N,CAAC;4BACzO;;sCAEF,CAAA,GAAA,YAAA,GAAA,EAACC,MAAAA;4BAAGC,WAAU;4BAAgBN,OAAOC,mBAAAA,MAAM,CAACI,EAAE;sCAC3CT;;sCAEH,CAAA,GAAA,YAAA,GAAA,EAACG,OAAAA;4BAAIC,OAAOC,mBAAAA,MAAM,CAACM,IAAI;sCACrB,WAAA,GAAA,CAAA,GAAA,YAAA,GAAA,EAACC,MAAAA;gCAAGR,OAAOC,mBAAAA,MAAM,CAACO,EAAE;0CAAGX;;;;;;;;AAMnC","ignoreList":[0]}}, - {"offset": {"line": 121, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/not-found.tsx"],"sourcesContent":["import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'\n\nexport default function NotFound() {\n return (\n \n )\n}\n"],"names":["NotFound","HTTPAccessErrorFallback","status","message"],"mappings":";;;+BAEA,WAAA;;;eAAwBA;;;;+BAFgB;AAEzB,SAASA;IACtB,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACC,eAAAA,uBAAuB,EAAA;QACtBC,QAAQ;QACRC,SAAQ;;AAGd","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_45780354.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_45780354.js deleted file mode 100644 index 29f6b97..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_45780354.js +++ /dev/null @@ -1,32 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/client/components/builtin/forbidden.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return Forbidden; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -const _errorfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js [app-rsc] (ecmascript)"); -function Forbidden() { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_errorfallback.HTTPAccessErrorFallback, { - status: 403, - message: "This page could not be accessed." - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=forbidden.js.map -}), -]; - -//# sourceMappingURL=node_modules_next_dist_client_components_builtin_forbidden_45780354.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_45780354.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_45780354.js.map deleted file mode 100644 index 4cf6cb0..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_45780354.js.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/forbidden.tsx"],"sourcesContent":["import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'\n\nexport default function Forbidden() {\n return (\n \n )\n}\n"],"names":["Forbidden","HTTPAccessErrorFallback","status","message"],"mappings":";;;+BAEA,WAAA;;;eAAwBA;;;;+BAFgB;AAEzB,SAASA;IACtB,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACC,eAAAA,uBAAuB,EAAA;QACtBC,QAAQ;QACRC,SAAQ;;AAGd","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_ece394eb.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_ece394eb.js deleted file mode 100644 index fec3443..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_ece394eb.js +++ /dev/null @@ -1,24 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy) ", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/client/components/builtin/global-error.js ")); -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy)", ((__turbopack_context__, module, exports) => { - -// This file is generated by next-core EcmascriptClientReferenceModule. -const { createClientModuleProxy } = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js [app-rsc] (ecmascript)"); -__turbopack_context__.n(createClientModuleProxy("[project]/node_modules/next/dist/client/components/builtin/global-error.js")); -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__$3c$module__evaluation$3e$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy) "); -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__ = __turbopack_context__.i("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-rsc] (client reference proxy)"); -; -__turbopack_context__.n(__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$client$2f$components$2f$builtin$2f$global$2d$error$2e$js__$5b$app$2d$rsc$5d$__$28$client__reference__proxy$29$__); -}), -]; - -//# sourceMappingURL=node_modules_next_dist_client_components_builtin_global-error_ece394eb.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_ece394eb.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_ece394eb.js.map deleted file mode 100644 index 65e3e65..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_ece394eb.js.map +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 3, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/client/components/builtin/global-error.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/components/builtin/global-error.js \"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 9, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/client/components/builtin/global-error.js/__nextjs-internal-proxy.cjs"],"sourcesContent":["// This file is generated by next-core EcmascriptClientReferenceModule.\nconst { createClientModuleProxy } = require(\"react-server-dom-turbopack/server\");\n\n__turbopack_context__.n(createClientModuleProxy(\"[project]/node_modules/next/dist/client/components/builtin/global-error.js\"));\n"],"names":[],"mappings":"AAAA,uEAAuE;AACvE,MAAM,EAAE,uBAAuB,EAAE;AAEjC,sBAAsB,CAAC,CAAC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 16, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/global-error.tsx"],"sourcesContent":["'use client'\n\nimport { HandleISRError } from '../handle-isr-error'\n\nconst styles = {\n error: {\n // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52\n fontFamily:\n 'system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"',\n height: '100vh',\n textAlign: 'center',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n text: {\n fontSize: '14px',\n fontWeight: 400,\n lineHeight: '28px',\n margin: '0 8px',\n },\n} as const\n\nexport type GlobalErrorComponent = React.ComponentType<{\n error: any\n}>\nfunction DefaultGlobalError({ error }: { error: any }) {\n const digest: string | undefined = error?.digest\n return (\n \n \n \n \n
\n
\n

\n Application error: a {digest ? 'server' : 'client'}-side exception\n has occurred while loading {window.location.hostname} (see the{' '}\n {digest ? 'server logs' : 'browser console'} for more\n information).\n

\n {digest ?

{`Digest: ${digest}`}

: null}\n
\n
\n \n \n )\n}\n\n// Exported so that the import signature in the loaders can be identical to user\n// supplied custom global error signatures.\nexport default DefaultGlobalError\n"],"names":["styles","error","fontFamily","height","textAlign","display","flexDirection","alignItems","justifyContent","text","fontSize","fontWeight","lineHeight","margin","DefaultGlobalError","digest","html","id","head","body","HandleISRError","div","style","h2","window","location","hostname","p"],"mappings":"","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_15817684.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_15817684.js deleted file mode 100644 index 7b29d7c..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_15817684.js +++ /dev/null @@ -1,32 +0,0 @@ -module.exports = [ -"[project]/node_modules/next/dist/client/components/builtin/unauthorized.js [app-rsc] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return Unauthorized; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js [app-rsc] (ecmascript)"); -const _errorfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js [app-rsc] (ecmascript)"); -function Unauthorized() { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_errorfallback.HTTPAccessErrorFallback, { - status: 401, - message: "You're not authorized to access this page." - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=unauthorized.js.map -}), -]; - -//# sourceMappingURL=node_modules_next_dist_client_components_builtin_unauthorized_15817684.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_15817684.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_15817684.js.map deleted file mode 100644 index 8c18ec3..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_15817684.js.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/unauthorized.tsx"],"sourcesContent":["import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback'\n\nexport default function Unauthorized() {\n return (\n \n )\n}\n"],"names":["Unauthorized","HTTPAccessErrorFallback","status","message"],"mappings":";;;+BAEA,WAAA;;;eAAwBA;;;;+BAFgB;AAEzB,SAASA;IACtB,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACC,eAAAA,uBAAuB,EAAA;QACtBC,QAAQ;QACRC,SAAQ;;AAGd","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/src_app_5b2047f8._.js b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/src_app_5b2047f8._.js deleted file mode 100644 index 96b28b5..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/src_app_5b2047f8._.js +++ /dev/null @@ -1,22 +0,0 @@ -module.exports = [ -"[project]/src/app/favicon.ico (static in ecmascript, tag client)", ((__turbopack_context__) => { - -__turbopack_context__.v("/_next/static/media/favicon.0b3bf435.ico");}), -"[project]/src/app/favicon.ico.mjs { IMAGE => \"[project]/src/app/favicon.ico (static in ecmascript, tag client)\" } [app-rsc] (structured image object, ecmascript)", ((__turbopack_context__) => { -"use strict"; - -__turbopack_context__.s([ - "default", - ()=>__TURBOPACK__default__export__ -]); -var __TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$29$__ = __turbopack_context__.i("[project]/src/app/favicon.ico (static in ecmascript, tag client)"); -; -const __TURBOPACK__default__export__ = { - src: __TURBOPACK__imported__module__$5b$project$5d2f$src$2f$app$2f$favicon$2e$ico__$28$static__in__ecmascript$2c$__tag__client$29$__["default"], - width: 256, - height: 256 -}; -}), -]; - -//# sourceMappingURL=src_app_5b2047f8._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/src_app_5b2047f8._.js.map b/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/src_app_5b2047f8._.js.map deleted file mode 100644 index 5c12806..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/chunks/ssr/src_app_5b2047f8._.js.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 7, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/src/app/favicon.ico.mjs%20%28structured%20image%20object%29"],"sourcesContent":["import src from \"IMAGE\";\nexport default { src, width: 256, height: 256 }\n"],"names":[],"mappings":";;;;AAAA;;uCACe;IAAE,KAAA,0IAAG;IAAE,OAAO;IAAK,QAAQ;AAAI"}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/interception-route-rewrite-manifest.js b/saintBarthVolleyApp/frontend/.next/dev/server/interception-route-rewrite-manifest.js deleted file mode 100644 index 24f77ba..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/interception-route-rewrite-manifest.js +++ /dev/null @@ -1 +0,0 @@ -self.__INTERCEPTION_ROUTE_REWRITE_MANIFEST="[]"; \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/middleware-build-manifest.js b/saintBarthVolleyApp/frontend/.next/dev/server/middleware-build-manifest.js deleted file mode 100644 index e79aa03..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/middleware-build-manifest.js +++ /dev/null @@ -1,26 +0,0 @@ -globalThis.__BUILD_MANIFEST = { - "pages": { - "/_app": [] - }, - "devFiles": [], - "polyfillFiles": [ - "static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js" - ], - "lowPriorityFiles": [], - "rootMainFiles": [ - "static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js", - "static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js", - "static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js", - "static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js", - "static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js", - "static/chunks/node_modules_next_dist_client_17643121._.js", - "static/chunks/node_modules_next_dist_f3530cac._.js", - "static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js", - "static/chunks/_a0ff3932._.js", - "static/chunks/turbopack-_23a915ee._.js" - ] -}; -globalThis.__BUILD_MANIFEST.lowPriorityFiles = [ -"/static/" + process.env.__NEXT_BUILD_ID + "/_buildManifest.js", -"/static/" + process.env.__NEXT_BUILD_ID + "/_ssgManifest.js" -]; \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/middleware-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/middleware-manifest.json deleted file mode 100644 index bfc43ea..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/middleware-manifest.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "version": 3, - "middleware": { - "/": { - "files": [ - "server/edge/chunks/node_modules_next_dist_91a24696._.js", - "server/edge/chunks/[root-of-the-server]__f2b15f93._.js", - "server/edge/chunks/turbopack-node_modules_next_dist_esm_build_templates_edge-wrapper_6f7abda9.js" - ], - "name": "middleware", - "page": "/", - "matchers": [ - { - "regexp": "^(?:\\/(_next\\/data\\/[^/]{1,}))?\\/admin(?:\\/((?:[^\\/#\\?]+?)(?:\\/(?:[^\\/#\\?]+?))*))?(\\\\.json)?[\\/#\\?]?$", - "originalSource": "/admin/:path*" - } - ], - "wasm": [], - "assets": [], - "env": { - "__NEXT_BUILD_ID": "development", - "NEXT_SERVER_ACTIONS_ENCRYPTION_KEY": "n0SX09riOuLUmRD0NXN8Mrp8d65tEg6mH2WbVPuTRzo=", - "__NEXT_PREVIEW_MODE_ID": "d7f8fe0f9cb6a31e8649dfc6d22a3d7b", - "__NEXT_PREVIEW_MODE_ENCRYPTION_KEY": "74d7ebc0351e3b1b219074efa35340bc6c6973b3b85ddf12da78e676cc9a52c3", - "__NEXT_PREVIEW_MODE_SIGNING_KEY": "dcb9f886df7d43f1ea2b0b8ffc0a442a667068de77b09c0700ba1a7a18693de6" - } - } - }, - "sortedMiddleware": [ - "/" - ], - "functions": {} -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/next-font-manifest.js b/saintBarthVolleyApp/frontend/.next/dev/server/next-font-manifest.js deleted file mode 100644 index a3899e9..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/next-font-manifest.js +++ /dev/null @@ -1 +0,0 @@ -self.__NEXT_FONT_MANIFEST="{\n \"app\": {\n \"[project]/src/app/_not-found/page\": [\n \"static/media/caa3a2e1cccd8315-s.p.853070df.woff2\",\n \"static/media/797e433ab948586e-s.p.dbea232f.woff2\"\n ],\n \"[project]/src/app/admin/club/page\": [\n \"static/media/caa3a2e1cccd8315-s.p.853070df.woff2\",\n \"static/media/797e433ab948586e-s.p.dbea232f.woff2\"\n ],\n \"[project]/src/app/admin/members/page\": [\n \"static/media/caa3a2e1cccd8315-s.p.853070df.woff2\",\n \"static/media/797e433ab948586e-s.p.dbea232f.woff2\"\n ],\n \"[project]/src/app/admin/users/page\": [\n \"static/media/caa3a2e1cccd8315-s.p.853070df.woff2\",\n \"static/media/797e433ab948586e-s.p.dbea232f.woff2\"\n ]\n },\n \"appUsingSizeAdjust\": true,\n \"pages\": {},\n \"pagesUsingSizeAdjust\": false\n}" \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/next-font-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/next-font-manifest.json deleted file mode 100644 index 937d51c..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/next-font-manifest.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "app": { - "[project]/src/app/_not-found/page": [ - "static/media/caa3a2e1cccd8315-s.p.853070df.woff2", - "static/media/797e433ab948586e-s.p.dbea232f.woff2" - ], - "[project]/src/app/admin/club/page": [ - "static/media/caa3a2e1cccd8315-s.p.853070df.woff2", - "static/media/797e433ab948586e-s.p.dbea232f.woff2" - ], - "[project]/src/app/admin/members/page": [ - "static/media/caa3a2e1cccd8315-s.p.853070df.woff2", - "static/media/797e433ab948586e-s.p.dbea232f.woff2" - ], - "[project]/src/app/admin/users/page": [ - "static/media/caa3a2e1cccd8315-s.p.853070df.woff2", - "static/media/797e433ab948586e-s.p.dbea232f.woff2" - ] - }, - "appUsingSizeAdjust": true, - "pages": {}, - "pagesUsingSizeAdjust": false -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/pages-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/pages-manifest.json deleted file mode 100644 index 9e26dfe..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/pages-manifest.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/server-reference-manifest.js b/saintBarthVolleyApp/frontend/.next/dev/server/server-reference-manifest.js deleted file mode 100644 index 0a08187..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/server-reference-manifest.js +++ /dev/null @@ -1 +0,0 @@ -self.__RSC_SERVER_MANIFEST="{\n \"node\": {},\n \"edge\": {},\n \"encryptionKey\": \"n0SX09riOuLUmRD0NXN8Mrp8d65tEg6mH2WbVPuTRzo=\"\n}" \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/server/server-reference-manifest.json b/saintBarthVolleyApp/frontend/.next/dev/server/server-reference-manifest.json deleted file mode 100644 index 4324204..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/server/server-reference-manifest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "node": {}, - "edge": {}, - "encryptionKey": "n0SX09riOuLUmRD0NXN8Mrp8d65tEg6mH2WbVPuTRzo=" -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_a71539c9_module_css_bad6b30c._.single.css b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_a71539c9_module_css_bad6b30c._.single.css deleted file mode 100644 index 47a6c7b..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_a71539c9_module_css_bad6b30c._.single.css +++ /dev/null @@ -1,47 +0,0 @@ -/* [next]/internal/font/google/geist_a71539c9.module.css [app-client] (css) */ -@font-face { - font-family: Geist; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/8a480f0b521d4e75-s.8e0177b5.woff2") format("woff2"); - unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116; -} - -@font-face { - font-family: Geist; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/7178b3e590c64307-s.b97b3418.woff2") format("woff2"); - unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; -} - -@font-face { - font-family: Geist; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/caa3a2e1cccd8315-s.p.853070df.woff2") format("woff2"); - unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -} - -@font-face { - font-family: Geist Fallback; - src: local(Arial); - ascent-override: 95.94%; - descent-override: 28.16%; - line-gap-override: 0.0%; - size-adjust: 104.76%; -} - -.geist_a71539c9-module__T19VSG__className { - font-family: Geist, Geist Fallback; - font-style: normal; -} - -.geist_a71539c9-module__T19VSG__variable { - --font-geist-sans: "Geist", "Geist Fallback"; -} - -/*# sourceMappingURL=%5Bnext%5D_internal_font_google_geist_a71539c9_module_css_bad6b30c._.single.css.map*/ \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_a71539c9_module_css_bad6b30c._.single.css.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_a71539c9_module_css_bad6b30c._.single.css.map deleted file mode 100644 index ec55474..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_a71539c9_module_css_bad6b30c._.single.css.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 1, "column": 0}, "map": {"version":3,"sources":["turbopack:///[next]/internal/font/google/geist_a71539c9.module.css"],"sourcesContent":["/* cyrillic */\n@font-face {\n font-family: 'Geist';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwYGFWNOITddY4.woff2%22,%22preload%22:false,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* latin-ext */\n@font-face {\n font-family: 'Geist';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwSGFWNOITddY4.woff2%22,%22preload%22:false,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: 'Geist';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwcGFWNOITd.woff2%22,%22preload%22:true,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n@font-face {\n font-family: 'Geist Fallback';\n src: local(\"Arial\");\n ascent-override: 95.94%;\ndescent-override: 28.16%;\nline-gap-override: 0.00%;\nsize-adjust: 104.76%;\n\n}\n.className {\n font-family: 'Geist', 'Geist Fallback';\n font-style: normal;\n\n}\n.variable {\n --font-geist-sans: 'Geist', 'Geist Fallback';\n}\n"],"names":[],"mappings":"AACA;;;;;;;;;AASA;;;;;;;;;AASA;;;;;;;;;AAQA;;;;;;;;;AASA;;;;;AAKA","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_mono_8d43a2aa_module_css_bad6b30c._.single.css b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_mono_8d43a2aa_module_css_bad6b30c._.single.css deleted file mode 100644 index 665b9e5..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_mono_8d43a2aa_module_css_bad6b30c._.single.css +++ /dev/null @@ -1,47 +0,0 @@ -/* [next]/internal/font/google/geist_mono_8d43a2aa.module.css [app-client] (css) */ -@font-face { - font-family: Geist Mono; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/4fa387ec64143e14-s.c1fdd6c2.woff2") format("woff2"); - unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116; -} - -@font-face { - font-family: Geist Mono; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/bbc41e54d2fcbd21-s.799d8ef8.woff2") format("woff2"); - unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; -} - -@font-face { - font-family: Geist Mono; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/797e433ab948586e-s.p.dbea232f.woff2") format("woff2"); - unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -} - -@font-face { - font-family: Geist Mono Fallback; - src: local(Arial); - ascent-override: 74.67%; - descent-override: 21.92%; - line-gap-override: 0.0%; - size-adjust: 134.59%; -} - -.geist_mono_8d43a2aa-module__8Li5zG__className { - font-family: Geist Mono, Geist Mono Fallback; - font-style: normal; -} - -.geist_mono_8d43a2aa-module__8Li5zG__variable { - --font-geist-mono: "Geist Mono", "Geist Mono Fallback"; -} - -/*# sourceMappingURL=%5Bnext%5D_internal_font_google_geist_mono_8d43a2aa_module_css_bad6b30c._.single.css.map*/ \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_mono_8d43a2aa_module_css_bad6b30c._.single.css.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_mono_8d43a2aa_module_css_bad6b30c._.single.css.map deleted file mode 100644 index 607a417..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[next]_internal_font_google_geist_mono_8d43a2aa_module_css_bad6b30c._.single.css.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 1, "column": 0}, "map": {"version":3,"sources":["turbopack:///[next]/internal/font/google/geist_mono_8d43a2aa.module.css"],"sourcesContent":["/* cyrillic */\n@font-face {\n font-family: 'Geist Mono';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geistmono/v4/or3nQ6H-1_WfwkMZI_qYFrMdmhHkjkotbA.woff2%22,%22preload%22:false,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* latin-ext */\n@font-face {\n font-family: 'Geist Mono';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geistmono/v4/or3nQ6H-1_WfwkMZI_qYFrkdmhHkjkotbA.woff2%22,%22preload%22:false,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: 'Geist Mono';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geistmono/v4/or3nQ6H-1_WfwkMZI_qYFrcdmhHkjko.woff2%22,%22preload%22:true,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n@font-face {\n font-family: 'Geist Mono Fallback';\n src: local(\"Arial\");\n ascent-override: 74.67%;\ndescent-override: 21.92%;\nline-gap-override: 0.00%;\nsize-adjust: 134.59%;\n\n}\n.className {\n font-family: 'Geist Mono', 'Geist Mono Fallback';\n font-style: normal;\n\n}\n.variable {\n --font-geist-mono: 'Geist Mono', 'Geist Mono Fallback';\n}\n"],"names":[],"mappings":"AACA;;;;;;;;;AASA;;;;;;;;;AASA;;;;;;;;;AAQA;;;;;;;;;AASA;;;;;AAKA","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[root-of-the-server]__0f0ba101._.css b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[root-of-the-server]__0f0ba101._.css deleted file mode 100644 index c17d051..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[root-of-the-server]__0f0ba101._.css +++ /dev/null @@ -1,4464 +0,0 @@ -/* [next]/internal/font/google/geist_a71539c9.module.css [app-client] (css) */ -@font-face { - font-family: Geist; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/8a480f0b521d4e75-s.8e0177b5.woff2") format("woff2"); - unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116; -} - -@font-face { - font-family: Geist; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/7178b3e590c64307-s.b97b3418.woff2") format("woff2"); - unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; -} - -@font-face { - font-family: Geist; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/caa3a2e1cccd8315-s.p.853070df.woff2") format("woff2"); - unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -} - -@font-face { - font-family: Geist Fallback; - src: local(Arial); - ascent-override: 95.94%; - descent-override: 28.16%; - line-gap-override: 0.0%; - size-adjust: 104.76%; -} - -.geist_a71539c9-module__T19VSG__className { - font-family: Geist, Geist Fallback; - font-style: normal; -} - -.geist_a71539c9-module__T19VSG__variable { - --font-geist-sans: "Geist", "Geist Fallback"; -} - -/* [next]/internal/font/google/geist_mono_8d43a2aa.module.css [app-client] (css) */ -@font-face { - font-family: Geist Mono; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/4fa387ec64143e14-s.c1fdd6c2.woff2") format("woff2"); - unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116; -} - -@font-face { - font-family: Geist Mono; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/bbc41e54d2fcbd21-s.799d8ef8.woff2") format("woff2"); - unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; -} - -@font-face { - font-family: Geist Mono; - font-style: normal; - font-weight: 100 900; - font-display: swap; - src: url("../media/797e433ab948586e-s.p.dbea232f.woff2") format("woff2"); - unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -} - -@font-face { - font-family: Geist Mono Fallback; - src: local(Arial); - ascent-override: 74.67%; - descent-override: 21.92%; - line-gap-override: 0.0%; - size-adjust: 134.59%; -} - -.geist_mono_8d43a2aa-module__8Li5zG__className { - font-family: Geist Mono, Geist Mono Fallback; - font-style: normal; -} - -.geist_mono_8d43a2aa-module__8Li5zG__variable { - --font-geist-mono: "Geist Mono", "Geist Mono Fallback"; -} - -/* [project]/src/app/globals.css [app-client] (css) */ -@layer properties { - @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) { - *, :before, :after, ::backdrop { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-translate-z: 0; - --tw-space-y-reverse: 0; - --tw-space-x-reverse: 0; - --tw-border-style: solid; - --tw-leading: initial; - --tw-font-weight: initial; - --tw-tracking: initial; - --tw-ordinal: initial; - --tw-slashed-zero: initial; - --tw-numeric-figure: initial; - --tw-numeric-spacing: initial; - --tw-numeric-fraction: initial; - --tw-shadow: 0 0 #0000; - --tw-shadow-color: initial; - --tw-shadow-alpha: 100%; - --tw-inset-shadow: 0 0 #0000; - --tw-inset-shadow-color: initial; - --tw-inset-shadow-alpha: 100%; - --tw-ring-color: initial; - --tw-ring-shadow: 0 0 #0000; - --tw-inset-ring-color: initial; - --tw-inset-ring-shadow: 0 0 #0000; - --tw-ring-inset: initial; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-offset-shadow: 0 0 #0000; - --tw-outline-style: solid; - --tw-duration: initial; - --tw-ease: initial; - --tw-content: ""; - --tw-blur: initial; - --tw-brightness: initial; - --tw-contrast: initial; - --tw-grayscale: initial; - --tw-hue-rotate: initial; - --tw-invert: initial; - --tw-opacity: initial; - --tw-saturate: initial; - --tw-sepia: initial; - --tw-drop-shadow: initial; - --tw-drop-shadow-color: initial; - --tw-drop-shadow-alpha: 100%; - --tw-drop-shadow-size: initial; - --tw-animation-delay: 0s; - --tw-animation-direction: normal; - --tw-animation-duration: initial; - --tw-animation-fill-mode: none; - --tw-animation-iteration-count: 1; - --tw-enter-blur: 0; - --tw-enter-opacity: 1; - --tw-enter-rotate: 0; - --tw-enter-scale: 1; - --tw-enter-translate-x: 0; - --tw-enter-translate-y: 0; - --tw-exit-blur: 0; - --tw-exit-opacity: 1; - --tw-exit-rotate: 0; - --tw-exit-scale: 1; - --tw-exit-translate-x: 0; - --tw-exit-translate-y: 0; - } - } -} - -@layer theme { - :root, :host { - --color-red-500: #fb2c36; - --color-red-600: #e40014; - --color-green-600: #00a544; - --color-blue-600: #155dfc; - --color-gray-200: #e5e7eb; - --color-gray-500: #6a7282; - --color-gray-700: #364153; - --color-zinc-50: #fafafa; - --color-zinc-400: #9f9fa9; - --color-zinc-600: #52525c; - --color-zinc-950: #09090b; - --color-black: #000; - --color-white: #fff; - --spacing: .25rem; - --container-xs: 20rem; - --container-sm: 24rem; - --container-md: 28rem; - --container-lg: 32rem; - --container-2xl: 42rem; - --container-3xl: 48rem; - --container-7xl: 80rem; - --text-xs: .75rem; - --text-xs--line-height: calc(1 / .75); - --text-sm: .875rem; - --text-sm--line-height: calc(1.25 / .875); - --text-base: 1rem; - --text-base--line-height: calc(1.5 / 1); - --text-lg: 1.125rem; - --text-lg--line-height: calc(1.75 / 1.125); - --text-xl: 1.25rem; - --text-xl--line-height: calc(1.75 / 1.25); - --text-2xl: 1.5rem; - --text-2xl--line-height: calc(2 / 1.5); - --text-3xl: 1.875rem; - --text-3xl--line-height: calc(2.25 / 1.875); - --font-weight-normal: 400; - --font-weight-medium: 500; - --font-weight-semibold: 600; - --font-weight-bold: 700; - --tracking-tight: -.025em; - --tracking-widest: .1em; - --leading-tight: 1.25; - --leading-snug: 1.375; - --leading-normal: 1.5; - --radius-xs: .125rem; - --ease-in-out: cubic-bezier(.4, 0, .2, 1); - --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite; - --aspect-video: 16 / 9; - --default-transition-duration: .15s; - --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1); - --default-font-family: var(--font-geist-sans); - --default-mono-font-family: var(--font-geist-mono); - --color-border: var(--border); - } - - @supports (color: lab(0% 0 0)) { - :root, :host { - --color-red-500: lab(55.4814% 75.0732 48.8528); - --color-red-600: lab(48.4493% 77.4328 61.5452); - --color-green-600: lab(59.0978% -58.6621 41.2579); - --color-blue-600: lab(44.0605% 29.0279 -86.0352); - --color-gray-200: lab(91.6229% -.159115 -2.26791); - --color-gray-500: lab(47.7841% -.393182 -10.0268); - --color-gray-700: lab(27.1134% -.956401 -12.3224); - --color-zinc-50: lab(98.26% 0 0); - --color-zinc-400: lab(65.6464% 1.53497 -5.42429); - --color-zinc-600: lab(35.1166% 1.78212 -6.1173); - --color-zinc-950: lab(2.51107% .242703 -.886115); - } - } -} - -@layer base { - *, :after, :before, ::backdrop { - box-sizing: border-box; - border: 0 solid; - margin: 0; - padding: 0; - } - - ::file-selector-button { - box-sizing: border-box; - border: 0 solid; - margin: 0; - padding: 0; - } - - html, :host { - -webkit-text-size-adjust: 100%; - tab-size: 4; - line-height: 1.5; - font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); - font-feature-settings: var(--default-font-feature-settings, normal); - font-variation-settings: var(--default-font-variation-settings, normal); - -webkit-tap-highlight-color: transparent; - } - - hr { - height: 0; - color: inherit; - border-top-width: 1px; - } - - abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - } - - h1, h2, h3, h4, h5, h6 { - font-size: inherit; - font-weight: inherit; - } - - a { - color: inherit; - -webkit-text-decoration: inherit; - -webkit-text-decoration: inherit; - text-decoration: inherit; - } - - b, strong { - font-weight: bolder; - } - - code, kbd, samp, pre { - font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace); - font-feature-settings: var(--default-mono-font-feature-settings, normal); - font-variation-settings: var(--default-mono-font-variation-settings, normal); - font-size: 1em; - } - - small { - font-size: 80%; - } - - sub, sup { - vertical-align: baseline; - font-size: 75%; - line-height: 0; - position: relative; - } - - sub { - bottom: -.25em; - } - - sup { - top: -.5em; - } - - table { - text-indent: 0; - border-color: inherit; - border-collapse: collapse; - } - - :-moz-focusring { - outline: auto; - } - - progress { - vertical-align: baseline; - } - - summary { - display: list-item; - } - - ol, ul, menu { - list-style: none; - } - - img, svg, video, canvas, audio, iframe, embed, object { - vertical-align: middle; - display: block; - } - - img, video { - max-width: 100%; - height: auto; - } - - button, input, select, optgroup, textarea { - font: inherit; - font-feature-settings: inherit; - font-variation-settings: inherit; - letter-spacing: inherit; - color: inherit; - opacity: 1; - background-color: #0000; - border-radius: 0; - } - - ::file-selector-button { - font: inherit; - font-feature-settings: inherit; - font-variation-settings: inherit; - letter-spacing: inherit; - color: inherit; - opacity: 1; - background-color: #0000; - border-radius: 0; - } - - :where(select:is([multiple], [size])) optgroup { - font-weight: bolder; - } - - :where(select:is([multiple], [size])) optgroup option { - padding-inline-start: 20px; - } - - ::file-selector-button { - margin-inline-end: 4px; - } - - ::placeholder { - opacity: 1; - } - - @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) { - ::placeholder { - color: currentColor; - } - - @supports (color: color-mix(in lab, red, red)) { - ::placeholder { - color: color-mix(in oklab, currentcolor 50%, transparent); - } - } - } - - textarea { - resize: vertical; - } - - ::-webkit-search-decoration { - -webkit-appearance: none; - } - - ::-webkit-date-and-time-value { - min-height: 1lh; - text-align: inherit; - } - - ::-webkit-datetime-edit { - display: inline-flex; - } - - ::-webkit-datetime-edit-fields-wrapper { - padding: 0; - } - - ::-webkit-datetime-edit { - padding-block: 0; - } - - ::-webkit-datetime-edit-year-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-month-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-day-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-hour-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-minute-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-second-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-millisecond-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-meridiem-field { - padding-block: 0; - } - - ::-webkit-calendar-picker-indicator { - line-height: 1; - } - - :-moz-ui-invalid { - box-shadow: none; - } - - button, input:where([type="button"], [type="reset"], [type="submit"]) { - appearance: button; - } - - ::file-selector-button { - appearance: button; - } - - ::-webkit-inner-spin-button { - height: auto; - } - - ::-webkit-outer-spin-button { - height: auto; - } - - [hidden]:where(:not([hidden="until-found"])) { - display: none !important; - } - - * { - border-color: var(--border); - outline-color: var(--ring); - } - - @supports (color: color-mix(in lab, red, red)) { - * { - outline-color: color-mix(in oklab, var(--ring) 50%, transparent); - } - } - - body { - background-color: var(--background); - color: var(--foreground); - } -} - -@layer components; - -@layer utilities { - .\@container\/card-header { - container: card-header / inline-size; - } - - .\@container\/field-group { - container: field-group / inline-size; - } - - .pointer-events-none { - pointer-events: none; - } - - .sr-only { - clip-path: inset(50%); - white-space: nowrap; - border-width: 0; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - position: absolute; - overflow: hidden; - } - - .absolute { - position: absolute; - } - - .fixed { - position: fixed; - } - - .relative { - position: relative; - } - - .sticky { - position: sticky; - } - - .inset-0 { - inset: calc(var(--spacing) * 0); - } - - .inset-x-0 { - inset-inline: calc(var(--spacing) * 0); - } - - .inset-y-0 { - inset-block: calc(var(--spacing) * 0); - } - - .start { - inset-inline-start: var(--spacing); - } - - .end { - inset-inline-end: var(--spacing); - } - - .top-0 { - top: calc(var(--spacing) * 0); - } - - .top-1\.5 { - top: calc(var(--spacing) * 1.5); - } - - .top-1\/2 { - top: 50%; - } - - .top-3\.5 { - top: calc(var(--spacing) * 3.5); - } - - .top-4 { - top: calc(var(--spacing) * 4); - } - - .top-6 { - top: calc(var(--spacing) * 6); - } - - .top-\[50\%\] { - top: 50%; - } - - .right-0 { - right: calc(var(--spacing) * 0); - } - - .right-1 { - right: calc(var(--spacing) * 1); - } - - .right-2 { - right: calc(var(--spacing) * 2); - } - - .right-3 { - right: calc(var(--spacing) * 3); - } - - .right-4 { - right: calc(var(--spacing) * 4); - } - - .bottom-0 { - bottom: calc(var(--spacing) * 0); - } - - .left-0 { - left: calc(var(--spacing) * 0); - } - - .left-2 { - left: calc(var(--spacing) * 2); - } - - .left-\[50\%\] { - left: 50%; - } - - .z-10 { - z-index: 10; - } - - .z-20 { - z-index: 20; - } - - .z-50 { - z-index: 50; - } - - .col-start-2 { - grid-column-start: 2; - } - - .row-span-2 { - grid-row: span 2 / span 2; - } - - .row-start-1 { - grid-row-start: 1; - } - - .-mx-1 { - margin-inline: calc(var(--spacing) * -1); - } - - .mx-2 { - margin-inline: calc(var(--spacing) * 2); - } - - .mx-3\.5 { - margin-inline: calc(var(--spacing) * 3.5); - } - - .mx-auto { - margin-inline: auto; - } - - .-my-2 { - margin-block: calc(var(--spacing) * -2); - } - - .my-0\.5 { - margin-block: calc(var(--spacing) * .5); - } - - .my-1 { - margin-block: calc(var(--spacing) * 1); - } - - .mt-2 { - margin-top: calc(var(--spacing) * 2); - } - - .mt-4 { - margin-top: calc(var(--spacing) * 4); - } - - .mt-auto { - margin-top: auto; - } - - .mb-3 { - margin-bottom: calc(var(--spacing) * 3); - } - - .mb-4 { - margin-bottom: calc(var(--spacing) * 4); - } - - .-ml-1 { - margin-left: calc(var(--spacing) * -1); - } - - .ml-2 { - margin-left: calc(var(--spacing) * 2); - } - - .ml-4 { - margin-left: calc(var(--spacing) * 4); - } - - .ml-auto { - margin-left: auto; - } - - .line-clamp-4 { - -webkit-line-clamp: 4; - -webkit-box-orient: vertical; - display: -webkit-box; - overflow: hidden; - } - - .block { - display: block; - } - - .flex { - display: flex; - } - - .grid { - display: grid; - } - - .hidden { - display: none; - } - - .inline-flex { - display: inline-flex; - } - - .table { - display: table; - } - - .table-caption { - display: table-caption; - } - - .table-cell { - display: table-cell; - } - - .table-row { - display: table-row; - } - - .field-sizing-content { - field-sizing: content; - } - - .aspect-square { - aspect-ratio: 1; - } - - .aspect-video { - aspect-ratio: var(--aspect-video); - } - - .size-2 { - width: calc(var(--spacing) * 2); - height: calc(var(--spacing) * 2); - } - - .size-2\.5 { - width: calc(var(--spacing) * 2.5); - height: calc(var(--spacing) * 2.5); - } - - .size-3\.5 { - width: calc(var(--spacing) * 3.5); - height: calc(var(--spacing) * 3.5); - } - - .size-4 { - width: calc(var(--spacing) * 4); - height: calc(var(--spacing) * 4); - } - - .size-5\! { - width: calc(var(--spacing) * 5) !important; - height: calc(var(--spacing) * 5) !important; - } - - .size-6 { - width: calc(var(--spacing) * 6); - height: calc(var(--spacing) * 6); - } - - .size-7 { - width: calc(var(--spacing) * 7); - height: calc(var(--spacing) * 7); - } - - .size-8 { - width: calc(var(--spacing) * 8); - height: calc(var(--spacing) * 8); - } - - .size-9 { - width: calc(var(--spacing) * 9); - height: calc(var(--spacing) * 9); - } - - .size-10 { - width: calc(var(--spacing) * 10); - height: calc(var(--spacing) * 10); - } - - .size-full { - width: 100%; - height: 100%; - } - - .h-\(--header-height\) { - height: var(--header-height); - } - - .h-2 { - height: calc(var(--spacing) * 2); - } - - .h-2\.5 { - height: calc(var(--spacing) * 2.5); - } - - .h-4 { - height: calc(var(--spacing) * 4); - } - - .h-5 { - height: calc(var(--spacing) * 5); - } - - .h-6 { - height: calc(var(--spacing) * 6); - } - - .h-7 { - height: calc(var(--spacing) * 7); - } - - .h-8 { - height: calc(var(--spacing) * 8); - } - - .h-9 { - height: calc(var(--spacing) * 9); - } - - .h-10 { - height: calc(var(--spacing) * 10); - } - - .h-12 { - height: calc(var(--spacing) * 12); - } - - .h-24 { - height: calc(var(--spacing) * 24); - } - - .h-32 { - height: calc(var(--spacing) * 32); - } - - .h-48 { - height: calc(var(--spacing) * 48); - } - - .h-60 { - height: calc(var(--spacing) * 60); - } - - .h-\[calc\(100\%-1px\)\] { - height: calc(100% - 1px); - } - - .h-\[var\(--radix-select-trigger-height\)\] { - height: var(--radix-select-trigger-height); - } - - .h-auto { - height: auto; - } - - .h-fit { - height: fit-content; - } - - .h-full { - height: 100%; - } - - .h-px { - height: 1px; - } - - .h-svh { - height: 100svh; - } - - .max-h-\(--radix-dropdown-menu-content-available-height\) { - max-height: var(--radix-dropdown-menu-content-available-height); - } - - .max-h-\(--radix-select-content-available-height\) { - max-height: var(--radix-select-content-available-height); - } - - .max-h-\[90vh\] { - max-height: 90vh; - } - - .min-h-0 { - min-height: calc(var(--spacing) * 0); - } - - .min-h-16 { - min-height: calc(var(--spacing) * 16); - } - - .min-h-\[400px\] { - min-height: 400px; - } - - .min-h-\[calc\(100vh-60px\)\] { - min-height: calc(100vh - 60px); - } - - .min-h-screen { - min-height: 100vh; - } - - .min-h-svh { - min-height: 100svh; - } - - .w-\(--radix-dropdown-menu-trigger-width\) { - width: var(--radix-dropdown-menu-trigger-width); - } - - .w-\(--sidebar-width\) { - width: var(--sidebar-width); - } - - .w-0 { - width: calc(var(--spacing) * 0); - } - - .w-1 { - width: calc(var(--spacing) * 1); - } - - .w-2 { - width: calc(var(--spacing) * 2); - } - - .w-2\.5 { - width: calc(var(--spacing) * 2.5); - } - - .w-3\/4 { - width: 75%; - } - - .w-4 { - width: calc(var(--spacing) * 4); - } - - .w-5 { - width: calc(var(--spacing) * 5); - } - - .w-8 { - width: calc(var(--spacing) * 8); - } - - .w-12 { - width: calc(var(--spacing) * 12); - } - - .w-24 { - width: calc(var(--spacing) * 24); - } - - .w-\[100px\] { - width: 100px; - } - - .w-auto { - width: auto; - } - - .w-fit { - width: fit-content; - } - - .w-full { - width: 100%; - } - - .max-w-\(--skeleton-width\) { - max-width: var(--skeleton-width); - } - - .max-w-3xl { - max-width: var(--container-3xl); - } - - .max-w-7xl { - max-width: var(--container-7xl); - } - - .max-w-\[calc\(100\%-2rem\)\] { - max-width: calc(100% - 2rem); - } - - .max-w-full { - max-width: 100%; - } - - .max-w-lg { - max-width: var(--container-lg); - } - - .max-w-md { - max-width: var(--container-md); - } - - .max-w-sm { - max-width: var(--container-sm); - } - - .max-w-xs { - max-width: var(--container-xs); - } - - .min-w-0 { - min-width: calc(var(--spacing) * 0); - } - - .min-w-5 { - min-width: calc(var(--spacing) * 5); - } - - .min-w-56 { - min-width: calc(var(--spacing) * 56); - } - - .min-w-\[8rem\] { - min-width: 8rem; - } - - .min-w-\[var\(--radix-select-trigger-width\)\] { - min-width: var(--radix-select-trigger-width); - } - - .flex-1 { - flex: 1; - } - - .shrink-0 { - flex-shrink: 0; - } - - .caption-bottom { - caption-side: bottom; - } - - .origin-\(--radix-dropdown-menu-content-transform-origin\) { - transform-origin: var(--radix-dropdown-menu-content-transform-origin); - } - - .origin-\(--radix-select-content-transform-origin\) { - transform-origin: var(--radix-select-content-transform-origin); - } - - .origin-\(--radix-tooltip-content-transform-origin\) { - transform-origin: var(--radix-tooltip-content-transform-origin); - } - - .-translate-x-1\/2 { - --tw-translate-x: calc(calc(1 / 2 * 100%) * -1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .-translate-x-px { - --tw-translate-x: -1px; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .translate-x-\[-50\%\] { - --tw-translate-x: -50%; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .translate-x-px { - --tw-translate-x: 1px; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .translate-y-\[-50\%\] { - --tw-translate-y: -50%; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .translate-y-\[calc\(-50\%_-_2px\)\] { - --tw-translate-y: calc(-50% - 2px); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .rotate-45 { - rotate: 45deg; - } - - .animate-in { - animation: enter var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none); - } - - .animate-pulse { - animation: var(--animate-pulse); - } - - .cursor-default { - cursor: default; - } - - .cursor-pointer { - cursor: pointer; - } - - .scroll-my-1 { - scroll-margin-block: calc(var(--spacing) * 1); - } - - .list-inside { - list-style-position: inside; - } - - .list-disc { - list-style-type: disc; - } - - .auto-rows-min { - grid-auto-rows: min-content; - } - - .grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); - } - - .grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .grid-rows-\[auto_auto\] { - grid-template-rows: auto auto; - } - - .flex-col { - flex-direction: column; - } - - .flex-col-reverse { - flex-direction: column-reverse; - } - - .flex-row { - flex-direction: row; - } - - .flex-wrap { - flex-wrap: wrap; - } - - .place-content-center { - place-content: center; - } - - .items-center { - align-items: center; - } - - .items-end { - align-items: flex-end; - } - - .items-start { - align-items: flex-start; - } - - .items-stretch { - align-items: stretch; - } - - .justify-between { - justify-content: space-between; - } - - .justify-center { - justify-content: center; - } - - .justify-end { - justify-content: flex-end; - } - - .gap-0\.5 { - gap: calc(var(--spacing) * .5); - } - - .gap-1 { - gap: calc(var(--spacing) * 1); - } - - .gap-1\.5 { - gap: calc(var(--spacing) * 1.5); - } - - .gap-2 { - gap: calc(var(--spacing) * 2); - } - - .gap-3 { - gap: calc(var(--spacing) * 3); - } - - .gap-4 { - gap: calc(var(--spacing) * 4); - } - - .gap-6 { - gap: calc(var(--spacing) * 6); - } - - .gap-7 { - gap: calc(var(--spacing) * 7); - } - - .gap-8 { - gap: calc(var(--spacing) * 8); - } - - .gap-10 { - gap: calc(var(--spacing) * 10); - } - - :where(.space-y-2 > :not(:last-child)) { - --tw-space-y-reverse: 0; - margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse)); - margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse))); - } - - :where(.space-y-4 > :not(:last-child)) { - --tw-space-y-reverse: 0; - margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse)); - margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))); - } - - :where(.-space-x-2 > :not(:last-child)) { - --tw-space-x-reverse: 0; - margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse)); - margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse))); - } - - .self-start { - align-self: flex-start; - } - - .justify-self-end { - justify-self: flex-end; - } - - .truncate { - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - } - - .overflow-auto { - overflow: auto; - } - - .overflow-hidden { - overflow: hidden; - } - - .overflow-x-auto { - overflow-x: auto; - } - - .overflow-x-hidden { - overflow-x: hidden; - } - - .overflow-y-auto { - overflow-y: auto; - } - - .rounded { - border-radius: .25rem; - } - - .rounded-\[2px\] { - border-radius: 2px; - } - - .rounded-\[4px\] { - border-radius: 4px; - } - - .rounded-full { - border-radius: 3.40282e38px; - } - - .rounded-lg { - border-radius: var(--radius); - } - - .rounded-md { - border-radius: calc(var(--radius) - 2px); - } - - .rounded-sm { - border-radius: calc(var(--radius) - 4px); - } - - .rounded-xl { - border-radius: calc(var(--radius) + 4px); - } - - .rounded-xs { - border-radius: var(--radius-xs); - } - - .border { - border-style: var(--tw-border-style); - border-width: 1px; - } - - .border-2 { - border-style: var(--tw-border-style); - border-width: 2px; - } - - .border-\[1\.5px\] { - border-style: var(--tw-border-style); - border-width: 1.5px; - } - - .border-t { - border-top-style: var(--tw-border-style); - border-top-width: 1px; - } - - .border-r { - border-right-style: var(--tw-border-style); - border-right-width: 1px; - } - - .border-b { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 1px; - } - - .border-l { - border-left-style: var(--tw-border-style); - border-left-width: 1px; - } - - .border-dashed { - --tw-border-style: dashed; - border-style: dashed; - } - - .border-solid { - --tw-border-style: solid; - border-style: solid; - } - - .border-\(--color-border\) { - border-color: var(--color-border); - } - - .border-black\/8 { - border-color: #00000014; - } - - @supports (color: color-mix(in lab, red, red)) { - .border-black\/8 { - border-color: color-mix(in oklab, var(--color-black) 8%, transparent); - } - } - - .border-border { - border-color: var(--border); - } - - .border-border\/50 { - border-color: var(--border); - } - - @supports (color: color-mix(in lab, red, red)) { - .border-border\/50 { - border-color: color-mix(in oklab, var(--border) 50%, transparent); - } - } - - .border-input { - border-color: var(--input); - } - - .border-sidebar-border { - border-color: var(--sidebar-border); - } - - .border-transparent { - border-color: #0000; - } - - .bg-\(--color-bg\) { - background-color: var(--color-bg); - } - - .bg-accent { - background-color: var(--accent); - } - - .bg-background { - background-color: var(--background); - } - - .bg-black { - background-color: var(--color-black); - } - - .bg-black\/30 { - background-color: #0000004d; - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-black\/30 { - background-color: color-mix(in oklab, var(--color-black) 30%, transparent); - } - } - - .bg-black\/40 { - background-color: #0006; - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-black\/40 { - background-color: color-mix(in oklab, var(--color-black) 40%, transparent); - } - } - - .bg-black\/50 { - background-color: #00000080; - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-black\/50 { - background-color: color-mix(in oklab, var(--color-black) 50%, transparent); - } - } - - .bg-border { - background-color: var(--border); - } - - .bg-card { - background-color: var(--card); - } - - .bg-destructive { - background-color: var(--destructive); - } - - .bg-destructive\/10 { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-destructive\/10 { - background-color: color-mix(in oklab, var(--destructive) 10%, transparent); - } - } - - .bg-foreground { - background-color: var(--foreground); - } - - .bg-gray-200 { - background-color: var(--color-gray-200); - } - - .bg-muted { - background-color: var(--muted); - } - - .bg-muted\/40 { - background-color: var(--muted); - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-muted\/40 { - background-color: color-mix(in oklab, var(--muted) 40%, transparent); - } - } - - .bg-muted\/50 { - background-color: var(--muted); - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-muted\/50 { - background-color: color-mix(in oklab, var(--muted) 50%, transparent); - } - } - - .bg-popover { - background-color: var(--popover); - } - - .bg-primary { - background-color: var(--primary); - } - - .bg-secondary { - background-color: var(--secondary); - } - - .bg-sidebar { - background-color: var(--sidebar); - } - - .bg-sidebar-border { - background-color: var(--sidebar-border); - } - - .bg-transparent { - background-color: #0000; - } - - .bg-white { - background-color: var(--color-white); - } - - .bg-zinc-50 { - background-color: var(--color-zinc-50); - } - - .fill-current { - fill: currentColor; - } - - .fill-foreground { - fill: var(--foreground); - } - - .object-contain { - object-fit: contain; - } - - .object-cover { - object-fit: cover; - } - - .p-0 { - padding: calc(var(--spacing) * 0); - } - - .p-1 { - padding: calc(var(--spacing) * 1); - } - - .p-2 { - padding: calc(var(--spacing) * 2); - } - - .p-3 { - padding: calc(var(--spacing) * 3); - } - - .p-4 { - padding: calc(var(--spacing) * 4); - } - - .p-6 { - padding: calc(var(--spacing) * 6); - } - - .p-\[3px\] { - padding: 3px; - } - - .px-1 { - padding-inline: calc(var(--spacing) * 1); - } - - .px-2 { - padding-inline: calc(var(--spacing) * 2); - } - - .px-2\.5 { - padding-inline: calc(var(--spacing) * 2.5); - } - - .px-3 { - padding-inline: calc(var(--spacing) * 3); - } - - .px-4 { - padding-inline: calc(var(--spacing) * 4); - } - - .px-5 { - padding-inline: calc(var(--spacing) * 5); - } - - .px-6 { - padding-inline: calc(var(--spacing) * 6); - } - - .px-16 { - padding-inline: calc(var(--spacing) * 16); - } - - .py-0\.5 { - padding-block: calc(var(--spacing) * .5); - } - - .py-1 { - padding-block: calc(var(--spacing) * 1); - } - - .py-1\.5 { - padding-block: calc(var(--spacing) * 1.5); - } - - .py-2 { - padding-block: calc(var(--spacing) * 2); - } - - .py-6 { - padding-block: calc(var(--spacing) * 6); - } - - .py-10 { - padding-block: calc(var(--spacing) * 10); - } - - .py-32 { - padding-block: calc(var(--spacing) * 32); - } - - .pt-3 { - padding-top: calc(var(--spacing) * 3); - } - - .pr-2 { - padding-right: calc(var(--spacing) * 2); - } - - .pr-8 { - padding-right: calc(var(--spacing) * 8); - } - - .pb-3 { - padding-bottom: calc(var(--spacing) * 3); - } - - .pl-2 { - padding-left: calc(var(--spacing) * 2); - } - - .pl-8 { - padding-left: calc(var(--spacing) * 8); - } - - .text-center { - text-align: center; - } - - .text-left { - text-align: left; - } - - .align-middle { - vertical-align: middle; - } - - .font-mono { - font-family: var(--font-geist-mono); - } - - .font-sans { - font-family: var(--font-geist-sans); - } - - .text-2xl { - font-size: var(--text-2xl); - line-height: var(--tw-leading, var(--text-2xl--line-height)); - } - - .text-3xl { - font-size: var(--text-3xl); - line-height: var(--tw-leading, var(--text-3xl--line-height)); - } - - .text-base { - font-size: var(--text-base); - line-height: var(--tw-leading, var(--text-base--line-height)); - } - - .text-lg { - font-size: var(--text-lg); - line-height: var(--tw-leading, var(--text-lg--line-height)); - } - - .text-sm { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - - .text-xl { - font-size: var(--text-xl); - line-height: var(--tw-leading, var(--text-xl--line-height)); - } - - .text-xs { - font-size: var(--text-xs); - line-height: var(--tw-leading, var(--text-xs--line-height)); - } - - .leading-8 { - --tw-leading: calc(var(--spacing) * 8); - line-height: calc(var(--spacing) * 8); - } - - .leading-10 { - --tw-leading: calc(var(--spacing) * 10); - line-height: calc(var(--spacing) * 10); - } - - .leading-none { - --tw-leading: 1; - line-height: 1; - } - - .leading-normal { - --tw-leading: var(--leading-normal); - line-height: var(--leading-normal); - } - - .leading-snug { - --tw-leading: var(--leading-snug); - line-height: var(--leading-snug); - } - - .leading-tight { - --tw-leading: var(--leading-tight); - line-height: var(--leading-tight); - } - - .font-bold { - --tw-font-weight: var(--font-weight-bold); - font-weight: var(--font-weight-bold); - } - - .font-medium { - --tw-font-weight: var(--font-weight-medium); - font-weight: var(--font-weight-medium); - } - - .font-normal { - --tw-font-weight: var(--font-weight-normal); - font-weight: var(--font-weight-normal); - } - - .font-semibold { - --tw-font-weight: var(--font-weight-semibold); - font-weight: var(--font-weight-semibold); - } - - .tracking-tight { - --tw-tracking: var(--tracking-tight); - letter-spacing: var(--tracking-tight); - } - - .tracking-widest { - --tw-tracking: var(--tracking-widest); - letter-spacing: var(--tracking-widest); - } - - .text-balance { - text-wrap: balance; - } - - .whitespace-nowrap { - white-space: nowrap; - } - - .text-background { - color: var(--background); - } - - .text-black { - color: var(--color-black); - } - - .text-blue-600 { - color: var(--color-blue-600); - } - - .text-card-foreground { - color: var(--card-foreground); - } - - .text-current { - color: currentColor; - } - - .text-destructive { - color: var(--destructive); - } - - .text-foreground { - color: var(--foreground); - } - - .text-foreground\/60 { - color: var(--foreground); - } - - @supports (color: color-mix(in lab, red, red)) { - .text-foreground\/60 { - color: color-mix(in oklab, var(--foreground) 60%, transparent); - } - } - - .text-gray-500 { - color: var(--color-gray-500); - } - - .text-gray-700 { - color: var(--color-gray-700); - } - - .text-green-600 { - color: var(--color-green-600); - } - - .text-muted-foreground { - color: var(--muted-foreground); - } - - .text-popover-foreground { - color: var(--popover-foreground); - } - - .text-primary { - color: var(--primary); - } - - .text-primary-foreground { - color: var(--primary-foreground); - } - - .text-red-500 { - color: var(--color-red-500); - } - - .text-red-600 { - color: var(--color-red-600); - } - - .text-secondary-foreground { - color: var(--secondary-foreground); - } - - .text-sidebar-foreground { - color: var(--sidebar-foreground); - } - - .text-sidebar-foreground\/70 { - color: var(--sidebar-foreground); - } - - @supports (color: color-mix(in lab, red, red)) { - .text-sidebar-foreground\/70 { - color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent); - } - } - - .text-white { - color: var(--color-white); - } - - .text-zinc-600 { - color: var(--color-zinc-600); - } - - .text-zinc-950 { - color: var(--color-zinc-950); - } - - .capitalize { - text-transform: capitalize; - } - - .tabular-nums { - --tw-numeric-spacing: tabular-nums; - font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, ); - } - - .underline { - text-decoration-line: underline; - } - - .underline-offset-4 { - text-underline-offset: 4px; - } - - .antialiased { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - - .opacity-50 { - opacity: .5; - } - - .opacity-70 { - opacity: .7; - } - - .shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] { - --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border))); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-lg { - --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-md { - --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-sm { - --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-xl { - --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-xs { - --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, #0000000d); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .ring-2 { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .ring-background { - --tw-ring-color: var(--background); - } - - .ring-sidebar-ring { - --tw-ring-color: var(--sidebar-ring); - } - - .ring-offset-background { - --tw-ring-offset-color: var(--background); - } - - .outline-hidden { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .outline-hidden { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .outline { - outline-style: var(--tw-outline-style); - outline-width: 1px; - } - - .transition { - transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[color\,box-shadow\] { - transition-property: color, box-shadow; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[left\,right\,width\] { - transition-property: left, right, width; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[margin\,opacity\] { - transition-property: margin, opacity; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[width\,height\,padding\] { - transition-property: width, height, padding; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[width\] { - transition-property: width; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-all { - transition-property: all; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-colors { - transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-opacity { - transition-property: opacity; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-shadow { - transition-property: box-shadow; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-transform { - transition-property: transform, translate, scale, rotate; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-none { - transition-property: none; - } - - .duration-200 { - --tw-duration: .2s; - transition-duration: .2s; - } - - .ease-in-out { - --tw-ease: var(--ease-in-out); - transition-timing-function: var(--ease-in-out); - } - - .ease-linear { - --tw-ease: linear; - transition-timing-function: linear; - } - - .fade-in-0 { - --tw-enter-opacity: 0; - } - - .outline-none { - --tw-outline-style: none; - outline-style: none; - } - - .select-none { - -webkit-user-select: none; - user-select: none; - } - - .zoom-in-95 { - --tw-enter-scale: .95; - } - - .group-focus-within\/menu-item\:opacity-100:is(:where(.group\/menu-item):focus-within *) { - opacity: 1; - } - - @media (hover: hover) { - .group-hover\/menu-item\:opacity-100:is(:where(.group\/menu-item):hover *) { - opacity: 1; - } - } - - .group-has-data-\[orientation\=horizontal\]\/field\:text-balance:is(:where(.group\/field):has([data-orientation="horizontal"]) *) { - text-wrap: balance; - } - - .group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8:is(:where(.group\/menu-item):has([data-sidebar="menu-action"]) *) { - padding-right: calc(var(--spacing) * 8); - } - - .group-has-data-\[size\=lg\]\/avatar-group\:size-10:is(:where(.group\/avatar-group):has([data-size="lg"]) *) { - width: calc(var(--spacing) * 10); - height: calc(var(--spacing) * 10); - } - - .group-has-data-\[size\=sm\]\/avatar-group\:size-6:is(:where(.group\/avatar-group):has([data-size="sm"]) *) { - width: calc(var(--spacing) * 6); - height: calc(var(--spacing) * 6); - } - - .group-data-\[collapsible\=icon\]\:-mt-8:is(:where(.group)[data-collapsible="icon"] *) { - margin-top: calc(var(--spacing) * -8); - } - - .group-data-\[collapsible\=icon\]\:hidden:is(:where(.group)[data-collapsible="icon"] *) { - display: none; - } - - .group-data-\[collapsible\=icon\]\:size-8\!:is(:where(.group)[data-collapsible="icon"] *) { - width: calc(var(--spacing) * 8) !important; - height: calc(var(--spacing) * 8) !important; - } - - .group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\):is(:where(.group)[data-collapsible="icon"] *) { - width: var(--sidebar-width-icon); - } - - .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\]:is(:where(.group)[data-collapsible="icon"] *) { - width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4))); - } - - .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\]:is(:where(.group)[data-collapsible="icon"] *) { - width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px); - } - - .group-data-\[collapsible\=icon\]\:overflow-hidden:is(:where(.group)[data-collapsible="icon"] *) { - overflow: hidden; - } - - .group-data-\[collapsible\=icon\]\:p-0\!:is(:where(.group)[data-collapsible="icon"] *) { - padding: calc(var(--spacing) * 0) !important; - } - - .group-data-\[collapsible\=icon\]\:p-2\!:is(:where(.group)[data-collapsible="icon"] *) { - padding: calc(var(--spacing) * 2) !important; - } - - .group-data-\[collapsible\=icon\]\:opacity-0:is(:where(.group)[data-collapsible="icon"] *) { - opacity: 0; - } - - .group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) { - right: calc(var(--sidebar-width) * -1); - } - - .group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) { - left: calc(var(--sidebar-width) * -1); - } - - .group-data-\[collapsible\=offcanvas\]\:w-0:is(:where(.group)[data-collapsible="offcanvas"] *) { - width: calc(var(--spacing) * 0); - } - - .group-data-\[collapsible\=offcanvas\]\:translate-x-0:is(:where(.group)[data-collapsible="offcanvas"] *) { - --tw-translate-x: calc(var(--spacing) * 0); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .group-data-\[disabled\=true\]\:pointer-events-none:is(:where(.group)[data-disabled="true"] *) { - pointer-events: none; - } - - .group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled="true"] *) { - opacity: .5; - } - - .group-data-\[disabled\=true\]\/field\:opacity-50:is(:where(.group\/field)[data-disabled="true"] *) { - opacity: .5; - } - - .group-data-\[orientation\=horizontal\]\/tabs\:h-9:is(:where(.group\/tabs)[data-orientation="horizontal"] *) { - height: calc(var(--spacing) * 9); - } - - .group-data-\[orientation\=vertical\]\/tabs\:h-fit:is(:where(.group\/tabs)[data-orientation="vertical"] *) { - height: fit-content; - } - - .group-data-\[orientation\=vertical\]\/tabs\:w-full:is(:where(.group\/tabs)[data-orientation="vertical"] *) { - width: 100%; - } - - .group-data-\[orientation\=vertical\]\/tabs\:flex-col:is(:where(.group\/tabs)[data-orientation="vertical"] *) { - flex-direction: column; - } - - .group-data-\[orientation\=vertical\]\/tabs\:justify-start:is(:where(.group\/tabs)[data-orientation="vertical"] *) { - justify-content: flex-start; - } - - .group-data-\[side\=left\]\:-right-4:is(:where(.group)[data-side="left"] *) { - right: calc(var(--spacing) * -4); - } - - .group-data-\[side\=left\]\:border-r:is(:where(.group)[data-side="left"] *) { - border-right-style: var(--tw-border-style); - border-right-width: 1px; - } - - .group-data-\[side\=right\]\:left-0:is(:where(.group)[data-side="right"] *) { - left: calc(var(--spacing) * 0); - } - - .group-data-\[side\=right\]\:rotate-180:is(:where(.group)[data-side="right"] *) { - rotate: 180deg; - } - - .group-data-\[side\=right\]\:border-l:is(:where(.group)[data-side="right"] *) { - border-left-style: var(--tw-border-style); - border-left-width: 1px; - } - - .group-data-\[size\=default\]\/avatar\:size-2\.5:is(:where(.group\/avatar)[data-size="default"] *) { - width: calc(var(--spacing) * 2.5); - height: calc(var(--spacing) * 2.5); - } - - .group-data-\[size\=lg\]\/avatar\:size-3:is(:where(.group\/avatar)[data-size="lg"] *) { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - - .group-data-\[size\=sm\]\/avatar\:size-2:is(:where(.group\/avatar)[data-size="sm"] *) { - width: calc(var(--spacing) * 2); - height: calc(var(--spacing) * 2); - } - - .group-data-\[size\=sm\]\/avatar\:text-xs:is(:where(.group\/avatar)[data-size="sm"] *) { - font-size: var(--text-xs); - line-height: var(--tw-leading, var(--text-xs--line-height)); - } - - .group-data-\[variant\=floating\]\:rounded-lg:is(:where(.group)[data-variant="floating"] *) { - border-radius: var(--radius); - } - - .group-data-\[variant\=floating\]\:border:is(:where(.group)[data-variant="floating"] *) { - border-style: var(--tw-border-style); - border-width: 1px; - } - - .group-data-\[variant\=floating\]\:border-sidebar-border:is(:where(.group)[data-variant="floating"] *) { - border-color: var(--sidebar-border); - } - - .group-data-\[variant\=floating\]\:shadow-sm:is(:where(.group)[data-variant="floating"] *) { - --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .group-data-\[variant\=line\]\/tabs-list\:bg-transparent:is(:where(.group\/tabs-list)[data-variant="line"] *) { - background-color: #0000; - } - - .group-data-\[variant\=outline\]\/field-group\:-mb-2:is(:where(.group\/field-group)[data-variant="outline"] *) { - margin-bottom: calc(var(--spacing) * -2); - } - - .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) { - display: block; - } - - .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:text-center:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) { - text-align: center; - } - - .group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:text-center:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="top"] *) { - text-align: center; - } - - @media (hover: hover) { - .peer-hover\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button):hover ~ *) { - color: var(--sidebar-accent-foreground); - } - } - - .peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled ~ *) { - cursor: not-allowed; - } - - .peer-disabled\:opacity-50:is(:where(.peer):disabled ~ *) { - opacity: .5; - } - - .peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button)[data-active="true"] ~ *) { - color: var(--sidebar-accent-foreground); - } - - .peer-data-\[size\=default\]\/menu-button\:top-1\.5:is(:where(.peer\/menu-button)[data-size="default"] ~ *) { - top: calc(var(--spacing) * 1.5); - } - - .peer-data-\[size\=lg\]\/menu-button\:top-2\.5:is(:where(.peer\/menu-button)[data-size="lg"] ~ *) { - top: calc(var(--spacing) * 2.5); - } - - .peer-data-\[size\=sm\]\/menu-button\:top-1:is(:where(.peer\/menu-button)[data-size="sm"] ~ *) { - top: calc(var(--spacing) * 1); - } - - .selection\:bg-primary ::selection, .selection\:bg-primary::selection { - background-color: var(--primary); - } - - .selection\:text-primary-foreground ::selection, .selection\:text-primary-foreground::selection { - color: var(--primary-foreground); - } - - .file\:inline-flex::file-selector-button { - display: inline-flex; - } - - .file\:h-7::file-selector-button { - height: calc(var(--spacing) * 7); - } - - .file\:border-0::file-selector-button { - border-style: var(--tw-border-style); - border-width: 0; - } - - .file\:bg-transparent::file-selector-button { - background-color: #0000; - } - - .file\:text-sm::file-selector-button { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - - .file\:font-medium::file-selector-button { - --tw-font-weight: var(--font-weight-medium); - font-weight: var(--font-weight-medium); - } - - .file\:text-foreground::file-selector-button { - color: var(--foreground); - } - - .placeholder\:text-muted-foreground::placeholder { - color: var(--muted-foreground); - } - - .after\:absolute:after { - content: var(--tw-content); - position: absolute; - } - - .after\:-inset-2:after { - content: var(--tw-content); - inset: calc(var(--spacing) * -2); - } - - .after\:inset-y-0:after { - content: var(--tw-content); - inset-block: calc(var(--spacing) * 0); - } - - .after\:left-1\/2:after { - content: var(--tw-content); - left: 50%; - } - - .after\:w-0\.5:after { - content: var(--tw-content); - width: calc(var(--spacing) * .5); - } - - .after\:bg-foreground:after { - content: var(--tw-content); - background-color: var(--foreground); - } - - .after\:opacity-0:after { - content: var(--tw-content); - opacity: 0; - } - - .after\:transition-opacity:after { - content: var(--tw-content); - transition-property: opacity; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .group-data-\[collapsible\=offcanvas\]\:after\:left-full:is(:where(.group)[data-collapsible="offcanvas"] *):after { - content: var(--tw-content); - left: 100%; - } - - .group-data-\[orientation\=horizontal\]\/tabs\:after\:inset-x-0:is(:where(.group\/tabs)[data-orientation="horizontal"] *):after { - content: var(--tw-content); - inset-inline: calc(var(--spacing) * 0); - } - - .group-data-\[orientation\=horizontal\]\/tabs\:after\:bottom-\[-5px\]:is(:where(.group\/tabs)[data-orientation="horizontal"] *):after { - content: var(--tw-content); - bottom: -5px; - } - - .group-data-\[orientation\=horizontal\]\/tabs\:after\:h-0\.5:is(:where(.group\/tabs)[data-orientation="horizontal"] *):after { - content: var(--tw-content); - height: calc(var(--spacing) * .5); - } - - .group-data-\[orientation\=vertical\]\/tabs\:after\:inset-y-0:is(:where(.group\/tabs)[data-orientation="vertical"] *):after { - content: var(--tw-content); - inset-block: calc(var(--spacing) * 0); - } - - .group-data-\[orientation\=vertical\]\/tabs\:after\:-right-1:is(:where(.group\/tabs)[data-orientation="vertical"] *):after { - content: var(--tw-content); - right: calc(var(--spacing) * -1); - } - - .group-data-\[orientation\=vertical\]\/tabs\:after\:w-0\.5:is(:where(.group\/tabs)[data-orientation="vertical"] *):after { - content: var(--tw-content); - width: calc(var(--spacing) * .5); - } - - .last\:mt-0:last-child { - margin-top: calc(var(--spacing) * 0); - } - - @media (hover: hover) { - .hover\:border-transparent:hover { - border-color: #0000; - } - } - - @media (hover: hover) { - .hover\:bg-\[\#383838\]:hover { - background-color: #383838; - } - } - - @media (hover: hover) { - .hover\:bg-accent:hover { - background-color: var(--accent); - } - } - - @media (hover: hover) { - .hover\:bg-black\/4:hover { - background-color: #0000000a; - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-black\/4:hover { - background-color: color-mix(in oklab, var(--color-black) 4%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-destructive\/90:hover { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-destructive\/90:hover { - background-color: color-mix(in oklab, var(--destructive) 90%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-muted:hover { - background-color: var(--muted); - } - } - - @media (hover: hover) { - .hover\:bg-muted\/50:hover { - background-color: var(--muted); - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-muted\/50:hover { - background-color: color-mix(in oklab, var(--muted) 50%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-primary\/90:hover { - background-color: var(--primary); - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-primary\/90:hover { - background-color: color-mix(in oklab, var(--primary) 90%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-secondary\/80:hover { - background-color: var(--secondary); - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-secondary\/80:hover { - background-color: color-mix(in oklab, var(--secondary) 80%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-sidebar-accent:hover { - background-color: var(--sidebar-accent); - } - } - - @media (hover: hover) { - .hover\:text-accent-foreground:hover { - color: var(--accent-foreground); - } - } - - @media (hover: hover) { - .hover\:text-foreground:hover { - color: var(--foreground); - } - } - - @media (hover: hover) { - .hover\:text-sidebar-accent-foreground:hover { - color: var(--sidebar-accent-foreground); - } - } - - @media (hover: hover) { - .hover\:underline:hover { - text-decoration-line: underline; - } - } - - @media (hover: hover) { - .hover\:opacity-100:hover { - opacity: 1; - } - } - - @media (hover: hover) { - .hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\]:hover { - --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-accent))); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - } - - @media (hover: hover) { - .hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar:hover:is(:where(.group)[data-collapsible="offcanvas"] *) { - background-color: var(--sidebar); - } - } - - @media (hover: hover) { - .hover\:after\:bg-sidebar-border:hover:after { - content: var(--tw-content); - background-color: var(--sidebar-border); - } - } - - .focus\:bg-accent:focus { - background-color: var(--accent); - } - - .focus\:text-accent-foreground:focus { - color: var(--accent-foreground); - } - - .focus\:ring-2:focus { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .focus\:ring-ring:focus { - --tw-ring-color: var(--ring); - } - - .focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; - --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - } - - .focus\:outline-hidden:focus { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .focus\:outline-hidden:focus { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .focus-visible\:border-ring:focus-visible { - border-color: var(--ring); - } - - .focus-visible\:ring-2:focus-visible { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .focus-visible\:ring-\[3px\]:focus-visible { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .focus-visible\:ring-destructive\/20:focus-visible { - --tw-ring-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .focus-visible\:ring-destructive\/20:focus-visible { - --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent); - } - } - - .focus-visible\:ring-ring\/50:focus-visible { - --tw-ring-color: var(--ring); - } - - @supports (color: color-mix(in lab, red, red)) { - .focus-visible\:ring-ring\/50:focus-visible { - --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent); - } - } - - .focus-visible\:outline-1:focus-visible { - outline-style: var(--tw-outline-style); - outline-width: 1px; - } - - .focus-visible\:outline-ring:focus-visible { - outline-color: var(--ring); - } - - .active\:bg-sidebar-accent:active { - background-color: var(--sidebar-accent); - } - - .active\:text-sidebar-accent-foreground:active { - color: var(--sidebar-accent-foreground); - } - - .disabled\:pointer-events-none:disabled { - pointer-events: none; - } - - .disabled\:cursor-not-allowed:disabled { - cursor: not-allowed; - } - - .disabled\:opacity-50:disabled { - opacity: .5; - } - - :where([data-side="left"]) .in-data-\[side\=left\]\:cursor-w-resize { - cursor: w-resize; - } - - :where([data-side="right"]) .in-data-\[side\=right\]\:cursor-e-resize { - cursor: e-resize; - } - - .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\]:has([data-slot="card-action"]) { - grid-template-columns: 1fr auto; - } - - .has-data-\[state\=checked\]\:border-primary:has([data-state="checked"]) { - border-color: var(--primary); - } - - .has-data-\[state\=checked\]\:bg-primary\/5:has([data-state="checked"]) { - background-color: var(--primary); - } - - @supports (color: color-mix(in lab, red, red)) { - .has-data-\[state\=checked\]\:bg-primary\/5:has([data-state="checked"]) { - background-color: color-mix(in oklab, var(--primary) 5%, transparent); - } - } - - .has-data-\[variant\=inset\]\:bg-sidebar:has([data-variant="inset"]) { - background-color: var(--sidebar); - } - - .has-\[\>\[data-slot\=checkbox-group\]\]\:gap-3:has( > [data-slot="checkbox-group"]) { - gap: calc(var(--spacing) * 3); - } - - .has-\[\>\[data-slot\=field-content\]\]\:items-start:has( > [data-slot="field-content"]) { - align-items: flex-start; - } - - .has-\[\>\[data-slot\=field\]\]\:w-full:has( > [data-slot="field"]) { - width: 100%; - } - - .has-\[\>\[data-slot\=field\]\]\:flex-col:has( > [data-slot="field"]) { - flex-direction: column; - } - - .has-\[\>\[data-slot\=field\]\]\:rounded-md:has( > [data-slot="field"]) { - border-radius: calc(var(--radius) - 2px); - } - - .has-\[\>\[data-slot\=field\]\]\:border:has( > [data-slot="field"]) { - border-style: var(--tw-border-style); - border-width: 1px; - } - - .has-\[\>\[data-slot\=radio-group\]\]\:gap-3:has( > [data-slot="radio-group"]) { - gap: calc(var(--spacing) * 3); - } - - .has-\[\>svg\]\:px-1\.5:has( > svg) { - padding-inline: calc(var(--spacing) * 1.5); - } - - .has-\[\>svg\]\:px-2\.5:has( > svg) { - padding-inline: calc(var(--spacing) * 2.5); - } - - .has-\[\>svg\]\:px-3:has( > svg) { - padding-inline: calc(var(--spacing) * 3); - } - - .has-\[\>svg\]\:px-4:has( > svg) { - padding-inline: calc(var(--spacing) * 4); - } - - .aria-disabled\:pointer-events-none[aria-disabled="true"] { - pointer-events: none; - } - - .aria-disabled\:opacity-50[aria-disabled="true"] { - opacity: .5; - } - - .aria-invalid\:border-destructive[aria-invalid="true"] { - border-color: var(--destructive); - } - - .aria-invalid\:ring-destructive\/20[aria-invalid="true"] { - --tw-ring-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .aria-invalid\:ring-destructive\/20[aria-invalid="true"] { - --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent); - } - } - - .data-\[active\=true\]\:bg-sidebar-accent[data-active="true"] { - background-color: var(--sidebar-accent); - } - - .data-\[active\=true\]\:font-medium[data-active="true"] { - --tw-font-weight: var(--font-weight-medium); - font-weight: var(--font-weight-medium); - } - - .data-\[active\=true\]\:text-sidebar-accent-foreground[data-active="true"] { - color: var(--sidebar-accent-foreground); - } - - .data-\[disabled\]\:pointer-events-none[data-disabled] { - pointer-events: none; - } - - .data-\[disabled\]\:opacity-50[data-disabled] { - opacity: .5; - } - - .data-\[inset\]\:pl-8[data-inset] { - padding-left: calc(var(--spacing) * 8); - } - - .data-\[invalid\=true\]\:text-destructive[data-invalid="true"] { - color: var(--destructive); - } - - .data-\[orientation\=horizontal\]\:h-px[data-orientation="horizontal"] { - height: 1px; - } - - .data-\[orientation\=horizontal\]\:w-full[data-orientation="horizontal"] { - width: 100%; - } - - .data-\[orientation\=horizontal\]\:flex-col[data-orientation="horizontal"] { - flex-direction: column; - } - - .data-\[orientation\=vertical\]\:h-4[data-orientation="vertical"] { - height: calc(var(--spacing) * 4); - } - - .data-\[orientation\=vertical\]\:h-full[data-orientation="vertical"] { - height: 100%; - } - - .data-\[orientation\=vertical\]\:w-px[data-orientation="vertical"] { - width: 1px; - } - - .data-\[placeholder\]\:text-muted-foreground[data-placeholder] { - color: var(--muted-foreground); - } - - .data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] { - --tw-translate-y: calc(var(--spacing) * 1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] { - --tw-enter-translate-y: calc(2 * var(--spacing) * -1); - } - - .data-\[side\=left\]\:-translate-x-1[data-side="left"] { - --tw-translate-x: calc(var(--spacing) * -1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] { - --tw-enter-translate-x: calc(2 * var(--spacing)); - } - - .data-\[side\=right\]\:translate-x-1[data-side="right"] { - --tw-translate-x: calc(var(--spacing) * 1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] { - --tw-enter-translate-x: calc(2 * var(--spacing) * -1); - } - - .data-\[side\=top\]\:-translate-y-1[data-side="top"] { - --tw-translate-y: calc(var(--spacing) * -1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] { - --tw-enter-translate-y: calc(2 * var(--spacing)); - } - - .data-\[size\=default\]\:h-9[data-size="default"] { - height: calc(var(--spacing) * 9); - } - - .data-\[size\=lg\]\:size-10[data-size="lg"] { - width: calc(var(--spacing) * 10); - height: calc(var(--spacing) * 10); - } - - .data-\[size\=sm\]\:size-6[data-size="sm"] { - width: calc(var(--spacing) * 6); - height: calc(var(--spacing) * 6); - } - - .data-\[size\=sm\]\:h-8[data-size="sm"] { - height: calc(var(--spacing) * 8); - } - - :is(.\*\:data-\[slot\=avatar\]\:ring-2 > *)[data-slot="avatar"] { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - :is(.\*\:data-\[slot\=avatar\]\:ring-background > *)[data-slot="avatar"] { - --tw-ring-color: var(--background); - } - - .data-\[slot\=checkbox-group\]\:gap-3[data-slot="checkbox-group"] { - gap: calc(var(--spacing) * 3); - } - - :is(.\*\:data-\[slot\=field\]\:p-4 > *)[data-slot="field"] { - padding: calc(var(--spacing) * 4); - } - - :is(.\*\:data-\[slot\=field-group\]\:gap-4 > *)[data-slot="field-group"] { - gap: calc(var(--spacing) * 4); - } - - :is(.\*\:data-\[slot\=select-value\]\:line-clamp-1 > *)[data-slot="select-value"] { - -webkit-line-clamp: 1; - -webkit-box-orient: vertical; - display: -webkit-box; - overflow: hidden; - } - - :is(.\*\:data-\[slot\=select-value\]\:flex > *)[data-slot="select-value"] { - display: flex; - } - - :is(.\*\:data-\[slot\=select-value\]\:items-center > *)[data-slot="select-value"] { - align-items: center; - } - - :is(.\*\:data-\[slot\=select-value\]\:gap-2 > *)[data-slot="select-value"] { - gap: calc(var(--spacing) * 2); - } - - .data-\[slot\=sidebar-menu-button\]\:p-1\.5\![data-slot="sidebar-menu-button"] { - padding: calc(var(--spacing) * 1.5) !important; - } - - .data-\[state\=active\]\:bg-background[data-state="active"] { - background-color: var(--background); - } - - .data-\[state\=active\]\:text-foreground[data-state="active"] { - color: var(--foreground); - } - - .group-data-\[variant\=default\]\/tabs-list\:data-\[state\=active\]\:shadow-sm:is(:where(.group\/tabs-list)[data-variant="default"] *)[data-state="active"] { - --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:bg-transparent:is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"] { - background-color: #0000; - } - - .group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:shadow-none:is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"] { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:after\:opacity-100:is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"]:after { - content: var(--tw-content); - opacity: 1; - } - - .data-\[state\=checked\]\:border-primary[data-state="checked"] { - border-color: var(--primary); - } - - .data-\[state\=checked\]\:bg-primary[data-state="checked"] { - background-color: var(--primary); - } - - .data-\[state\=checked\]\:text-primary-foreground[data-state="checked"] { - color: var(--primary-foreground); - } - - .data-\[state\=closed\]\:animate-out[data-state="closed"] { - animation: exit var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none); - } - - .data-\[state\=closed\]\:duration-300[data-state="closed"] { - --tw-duration: .3s; - transition-duration: .3s; - } - - .data-\[state\=closed\]\:fade-out-0[data-state="closed"] { - --tw-exit-opacity: 0; - } - - .data-\[state\=closed\]\:zoom-out-95[data-state="closed"] { - --tw-exit-scale: .95; - } - - .data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] { - --tw-exit-translate-y: 100%; - } - - .data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] { - --tw-exit-translate-x: -100%; - } - - .data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] { - --tw-exit-translate-x: 100%; - } - - .data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] { - --tw-exit-translate-y: -100%; - } - - .data-\[state\=open\]\:animate-in[data-state="open"] { - animation: enter var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none); - } - - .data-\[state\=open\]\:bg-accent[data-state="open"] { - background-color: var(--accent); - } - - .data-\[state\=open\]\:bg-secondary[data-state="open"] { - background-color: var(--secondary); - } - - .data-\[state\=open\]\:bg-sidebar-accent[data-state="open"] { - background-color: var(--sidebar-accent); - } - - .data-\[state\=open\]\:text-accent-foreground[data-state="open"] { - color: var(--accent-foreground); - } - - .data-\[state\=open\]\:text-muted-foreground[data-state="open"] { - color: var(--muted-foreground); - } - - .data-\[state\=open\]\:text-sidebar-accent-foreground[data-state="open"] { - color: var(--sidebar-accent-foreground); - } - - .data-\[state\=open\]\:opacity-100[data-state="open"] { - opacity: 1; - } - - .data-\[state\=open\]\:duration-500[data-state="open"] { - --tw-duration: .5s; - transition-duration: .5s; - } - - .data-\[state\=open\]\:fade-in-0[data-state="open"] { - --tw-enter-opacity: 0; - } - - .data-\[state\=open\]\:zoom-in-95[data-state="open"] { - --tw-enter-scale: .95; - } - - .data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] { - --tw-enter-translate-y: 100%; - } - - .data-\[state\=open\]\:slide-in-from-left[data-state="open"] { - --tw-enter-translate-x: -100%; - } - - .data-\[state\=open\]\:slide-in-from-right[data-state="open"] { - --tw-enter-translate-x: 100%; - } - - .data-\[state\=open\]\:slide-in-from-top[data-state="open"] { - --tw-enter-translate-y: -100%; - } - - @media (hover: hover) { - .data-\[state\=open\]\:hover\:bg-sidebar-accent[data-state="open"]:hover { - background-color: var(--sidebar-accent); - } - } - - @media (hover: hover) { - .data-\[state\=open\]\:hover\:text-sidebar-accent-foreground[data-state="open"]:hover { - color: var(--sidebar-accent-foreground); - } - } - - .data-\[state\=selected\]\:bg-muted[data-state="selected"] { - background-color: var(--muted); - } - - .data-\[variant\=destructive\]\:text-destructive[data-variant="destructive"] { - color: var(--destructive); - } - - .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant="destructive"]:focus { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant="destructive"]:focus { - background-color: color-mix(in oklab, var(--destructive) 10%, transparent); - } - } - - .data-\[variant\=destructive\]\:focus\:text-destructive[data-variant="destructive"]:focus { - color: var(--destructive); - } - - .data-\[variant\=label\]\:text-sm[data-variant="label"] { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - - .data-\[variant\=legend\]\:text-base[data-variant="legend"] { - font-size: var(--text-base); - line-height: var(--tw-leading, var(--text-base--line-height)); - } - - .data-\[variant\=line\]\:rounded-none[data-variant="line"] { - border-radius: 0; - } - - .data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction="bottom"] { - inset-inline: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=bottom\]\:bottom-0[data-vaul-drawer-direction="bottom"] { - bottom: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=bottom\]\:mt-24[data-vaul-drawer-direction="bottom"] { - margin-top: calc(var(--spacing) * 24); - } - - .data-\[vaul-drawer-direction\=bottom\]\:max-h-\[80vh\][data-vaul-drawer-direction="bottom"] { - max-height: 80vh; - } - - .data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg[data-vaul-drawer-direction="bottom"] { - border-top-left-radius: var(--radius); - border-top-right-radius: var(--radius); - } - - .data-\[vaul-drawer-direction\=bottom\]\:border-t[data-vaul-drawer-direction="bottom"] { - border-top-style: var(--tw-border-style); - border-top-width: 1px; - } - - .data-\[vaul-drawer-direction\=left\]\:inset-y-0[data-vaul-drawer-direction="left"] { - inset-block: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=left\]\:left-0[data-vaul-drawer-direction="left"] { - left: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=left\]\:w-3\/4[data-vaul-drawer-direction="left"] { - width: 75%; - } - - .data-\[vaul-drawer-direction\=left\]\:border-r[data-vaul-drawer-direction="left"] { - border-right-style: var(--tw-border-style); - border-right-width: 1px; - } - - .data-\[vaul-drawer-direction\=right\]\:inset-y-0[data-vaul-drawer-direction="right"] { - inset-block: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=right\]\:right-0[data-vaul-drawer-direction="right"] { - right: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=right\]\:w-3\/4[data-vaul-drawer-direction="right"] { - width: 75%; - } - - .data-\[vaul-drawer-direction\=right\]\:border-l[data-vaul-drawer-direction="right"] { - border-left-style: var(--tw-border-style); - border-left-width: 1px; - } - - .data-\[vaul-drawer-direction\=top\]\:inset-x-0[data-vaul-drawer-direction="top"] { - inset-inline: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=top\]\:top-0[data-vaul-drawer-direction="top"] { - top: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=top\]\:mb-24[data-vaul-drawer-direction="top"] { - margin-bottom: calc(var(--spacing) * 24); - } - - .data-\[vaul-drawer-direction\=top\]\:max-h-\[80vh\][data-vaul-drawer-direction="top"] { - max-height: 80vh; - } - - .data-\[vaul-drawer-direction\=top\]\:rounded-b-lg[data-vaul-drawer-direction="top"] { - border-bottom-right-radius: var(--radius); - border-bottom-left-radius: var(--radius); - } - - .data-\[vaul-drawer-direction\=top\]\:border-b[data-vaul-drawer-direction="top"] { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 1px; - } - - .nth-last-2\:-mt-1:nth-last-child(2) { - margin-top: calc(var(--spacing) * -1); - } - - @media (min-width: 40rem) { - .sm\:flex { - display: flex; - } - } - - @media (min-width: 40rem) { - .sm\:w-40 { - width: calc(var(--spacing) * 40); - } - } - - @media (min-width: 40rem) { - .sm\:w-48 { - width: calc(var(--spacing) * 48); - } - } - - @media (min-width: 40rem) { - .sm\:max-w-2xl { - max-width: var(--container-2xl); - } - } - - @media (min-width: 40rem) { - .sm\:max-w-lg { - max-width: var(--container-lg); - } - } - - @media (min-width: 40rem) { - .sm\:max-w-sm { - max-width: var(--container-sm); - } - } - - @media (min-width: 40rem) { - .sm\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - } - - @media (min-width: 40rem) { - .sm\:flex-row { - flex-direction: row; - } - } - - @media (min-width: 40rem) { - .sm\:items-start { - align-items: flex-start; - } - } - - @media (min-width: 40rem) { - .sm\:justify-end { - justify-content: flex-end; - } - } - - @media (min-width: 40rem) { - .sm\:text-left { - text-align: left; - } - } - - @media (min-width: 40rem) { - .data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm[data-vaul-drawer-direction="left"] { - max-width: var(--container-sm); - } - } - - @media (min-width: 40rem) { - .data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm[data-vaul-drawer-direction="right"] { - max-width: var(--container-sm); - } - } - - @media (min-width: 48rem) { - .md\:block { - display: block; - } - } - - @media (min-width: 48rem) { - .md\:flex { - display: flex; - } - } - - @media (min-width: 48rem) { - .md\:hidden { - display: none; - } - } - - @media (min-width: 48rem) { - .md\:w-39\.5 { - width: calc(var(--spacing) * 39.5); - } - } - - @media (min-width: 48rem) { - .md\:gap-1\.5 { - gap: calc(var(--spacing) * 1.5); - } - } - - @media (min-width: 48rem) { - .md\:p-6 { - padding: calc(var(--spacing) * 6); - } - } - - @media (min-width: 48rem) { - .md\:text-left { - text-align: left; - } - } - - @media (min-width: 48rem) { - .md\:text-sm { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - } - - @media (min-width: 48rem) { - .md\:opacity-0 { - opacity: 0; - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:m-2:is(:where(.peer)[data-variant="inset"] ~ *) { - margin: calc(var(--spacing) * 2); - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:ml-0:is(:where(.peer)[data-variant="inset"] ~ *) { - margin-left: calc(var(--spacing) * 0); - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:rounded-xl:is(:where(.peer)[data-variant="inset"] ~ *) { - border-radius: calc(var(--radius) + 4px); - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:shadow-sm:is(:where(.peer)[data-variant="inset"] ~ *) { - --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2:is(:where(.peer)[data-variant="inset"] ~ *):is(:where(.peer)[data-state="collapsed"] ~ *) { - margin-left: calc(var(--spacing) * 2); - } - } - - @media (min-width: 48rem) { - .md\:after\:hidden:after { - content: var(--tw-content); - display: none; - } - } - - @media (min-width: 64rem) { - .lg\:table-cell { - display: table-cell; - } - } - - @media (min-width: 64rem) { - .lg\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - } - - @media (min-width: 64rem) { - .lg\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - } - - @media (min-width: 64rem) { - .lg\:px-6 { - padding-inline: calc(var(--spacing) * 6); - } - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:flex-row { - flex-direction: row; - } - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:items-center { - align-items: center; - } - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:items-start:has( > [data-slot="field-content"]) { - align-items: flex-start; - } - } - - .dark\:border-input:is(.dark *) { - border-color: var(--input); - } - - .dark\:border-white\/\[\.145\]:is(.dark *) { - border-color: #ffffff25; - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:border-white\/\[\.145\]:is(.dark *) { - border-color: color-mix(in oklab, var(--color-white) 14.5%, transparent); - } - } - - .dark\:bg-black:is(.dark *) { - background-color: var(--color-black); - } - - .dark\:bg-destructive\/60:is(.dark *) { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:bg-destructive\/60:is(.dark *) { - background-color: color-mix(in oklab, var(--destructive) 60%, transparent); - } - } - - .dark\:bg-input\/30:is(.dark *) { - background-color: var(--input); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:bg-input\/30:is(.dark *) { - background-color: color-mix(in oklab, var(--input) 30%, transparent); - } - } - - .dark\:text-muted-foreground:is(.dark *) { - color: var(--muted-foreground); - } - - .dark\:text-zinc-50:is(.dark *) { - color: var(--color-zinc-50); - } - - .dark\:text-zinc-400:is(.dark *) { - color: var(--color-zinc-400); - } - - .dark\:invert:is(.dark *) { - --tw-invert: invert(100%); - filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, ); - } - - @media (hover: hover) { - .dark\:hover\:bg-\[\#1a1a1a\]:is(.dark *):hover { - background-color: #1a1a1a; - } - } - - @media (hover: hover) { - .dark\:hover\:bg-\[\#ccc\]:is(.dark *):hover { - background-color: #ccc; - } - } - - @media (hover: hover) { - .dark\:hover\:bg-accent\/50:is(.dark *):hover { - background-color: var(--accent); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:hover\:bg-accent\/50:is(.dark *):hover { - background-color: color-mix(in oklab, var(--accent) 50%, transparent); - } - } - } - - @media (hover: hover) { - .dark\:hover\:bg-input\/50:is(.dark *):hover { - background-color: var(--input); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:hover\:bg-input\/50:is(.dark *):hover { - background-color: color-mix(in oklab, var(--input) 50%, transparent); - } - } - } - - @media (hover: hover) { - .dark\:hover\:text-foreground:is(.dark *):hover { - color: var(--foreground); - } - } - - .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible { - --tw-ring-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible { - --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent); - } - } - - .dark\:has-data-\[state\=checked\]\:bg-primary\/10:is(.dark *):has([data-state="checked"]) { - background-color: var(--primary); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:has-data-\[state\=checked\]\:bg-primary\/10:is(.dark *):has([data-state="checked"]) { - background-color: color-mix(in oklab, var(--primary) 10%, transparent); - } - } - - .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid="true"] { - --tw-ring-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid="true"] { - --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent); - } - } - - .dark\:data-\[state\=active\]\:border-input:is(.dark *)[data-state="active"] { - border-color: var(--input); - } - - .dark\:data-\[state\=active\]\:bg-input\/30:is(.dark *)[data-state="active"] { - background-color: var(--input); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:data-\[state\=active\]\:bg-input\/30:is(.dark *)[data-state="active"] { - background-color: color-mix(in oklab, var(--input) 30%, transparent); - } - } - - .dark\:data-\[state\=active\]\:text-foreground:is(.dark *)[data-state="active"] { - color: var(--foreground); - } - - .dark\:group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:border-transparent:is(.dark *):is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"] { - border-color: #0000; - } - - .dark\:group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:bg-transparent:is(.dark *):is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"] { - background-color: #0000; - } - - .dark\:data-\[state\=checked\]\:bg-primary:is(.dark *)[data-state="checked"] { - background-color: var(--primary); - } - - .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant="destructive"]:focus { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant="destructive"]:focus { - background-color: color-mix(in oklab, var(--destructive) 20%, transparent); - } - } - - .\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text { - fill: var(--muted-foreground); - } - - .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] { - stroke: var(--border); - } - - @supports (color: color-mix(in lab, red, red)) { - .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] { - stroke: color-mix(in oklab, var(--border) 50%, transparent); - } - } - - .\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border .recharts-curve.recharts-tooltip-cursor { - stroke: var(--border); - } - - .\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke="#fff"] { - stroke: #0000; - } - - .\[\&_\.recharts-layer\]\:outline-hidden .recharts-layer { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .\[\&_\.recharts-layer\]\:outline-hidden .recharts-layer { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-polar-grid [stroke="#ccc"] { - stroke: var(--border); - } - - .\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted .recharts-radial-bar-background-sector { - fill: var(--muted); - } - - .\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted .recharts-rectangle.recharts-tooltip-cursor { - fill: var(--muted); - } - - .\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-reference-line [stroke="#ccc"] { - stroke: var(--border); - } - - .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-sector[stroke="#fff"] { - stroke: #0000; - } - - .\[\&_\.recharts-surface\]\:outline-hidden .recharts-surface { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .\[\&_\.recharts-surface\]\:outline-hidden .recharts-surface { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .\[\&_svg\]\:pointer-events-none svg { - pointer-events: none; - } - - .\[\&_svg\]\:shrink-0 svg { - flex-shrink: 0; - } - - .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3 svg:not([class*="size-"]) { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - - .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*="size-"]) { - width: calc(var(--spacing) * 4); - height: calc(var(--spacing) * 4); - } - - .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*="text-"]) { - color: var(--muted-foreground); - } - - .\[\&_tr\]\:border-b tr { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 1px; - } - - .\[\&_tr\:last-child\]\:border-0 tr:last-child { - border-style: var(--tw-border-style); - border-width: 0; - } - - .\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role="checkbox"]) { - padding-right: calc(var(--spacing) * 0); - } - - .\[\.border-b\]\:pb-6.border-b { - padding-bottom: calc(var(--spacing) * 6); - } - - .\[\.border-t\]\:pt-6.border-t { - padding-top: calc(var(--spacing) * 6); - } - - :is(.\*\:\[span\]\:last\:flex > *):is(span):last-child { - display: flex; - } - - :is(.\*\:\[span\]\:last\:items-center > *):is(span):last-child { - align-items: center; - } - - :is(.\*\:\[span\]\:last\:gap-2 > *):is(span):last-child { - gap: calc(var(--spacing) * 2); - } - - :is(.data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive[data-variant="destructive"] > *):is(svg) { - color: var(--destructive) !important; - } - - .\[\&\>\*\]\:w-full > * { - width: 100%; - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:\[\&\>\*\]\:w-auto > * { - width: auto; - } - } - - .\[\&\>\.sr-only\]\:w-auto > .sr-only { - width: auto; - } - - .\[\&\>\[data-slot\=field-label\]\]\:flex-auto > [data-slot="field-label"] { - flex: auto; - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:\[\&\>\[data-slot\=field-label\]\]\:flex-auto > [data-slot="field-label"] { - flex: auto; - } - } - - .\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] > [role="checkbox"] { - --tw-translate-y: 2px; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px:has( > [data-slot="field-content"]) > [role="checkbox"], .has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px:has( > [data-slot="field-content"]) [role="radio"] { - margin-top: 1px; - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px:has( > [data-slot="field-content"]) > [role="checkbox"], .\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px:has( > [data-slot="field-content"]) [role="radio"] { - margin-top: 1px; - } - } - - .\[\&\>a\]\:underline > a { - text-decoration-line: underline; - } - - .\[\&\>a\]\:underline-offset-4 > a { - text-underline-offset: 4px; - } - - .\[\&\>a\:hover\]\:text-primary > a:hover { - color: var(--primary); - } - - .\[\&\>button\]\:hidden > button { - display: none; - } - - .\[\&\>span\:last-child\]\:truncate > span:last-child { - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - } - - .\[\&\>svg\]\:pointer-events-none > svg { - pointer-events: none; - } - - .\[\&\>svg\]\:size-3 > svg { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - - .\[\&\>svg\]\:size-4 > svg { - width: calc(var(--spacing) * 4); - height: calc(var(--spacing) * 4); - } - - .\[\&\>svg\]\:h-2\.5 > svg { - height: calc(var(--spacing) * 2.5); - } - - .\[\&\>svg\]\:h-3 > svg { - height: calc(var(--spacing) * 3); - } - - .\[\&\>svg\]\:w-2\.5 > svg { - width: calc(var(--spacing) * 2.5); - } - - .\[\&\>svg\]\:w-3 > svg { - width: calc(var(--spacing) * 3); - } - - .\[\&\>svg\]\:shrink-0 > svg { - flex-shrink: 0; - } - - .\[\&\>svg\]\:text-muted-foreground > svg { - color: var(--muted-foreground); - } - - .\[\&\>svg\]\:text-sidebar-accent-foreground > svg { - color: var(--sidebar-accent-foreground); - } - - .group-has-data-\[size\=lg\]\/avatar-group\:\[\&\>svg\]\:size-5:is(:where(.group\/avatar-group):has([data-size="lg"]) *) > svg { - width: calc(var(--spacing) * 5); - height: calc(var(--spacing) * 5); - } - - .group-has-data-\[size\=sm\]\/avatar-group\:\[\&\>svg\]\:size-3:is(:where(.group\/avatar-group):has([data-size="sm"]) *) > svg { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - - .group-data-\[size\=default\]\/avatar\:\[\&\>svg\]\:size-2:is(:where(.group\/avatar)[data-size="default"] *) > svg { - width: calc(var(--spacing) * 2); - height: calc(var(--spacing) * 2); - } - - .group-data-\[size\=lg\]\/avatar\:\[\&\>svg\]\:size-2:is(:where(.group\/avatar)[data-size="lg"] *) > svg { - width: calc(var(--spacing) * 2); - height: calc(var(--spacing) * 2); - } - - .group-data-\[size\=sm\]\/avatar\:\[\&\>svg\]\:hidden:is(:where(.group\/avatar)[data-size="sm"] *) > svg { - display: none; - } - - .\[\&\>tr\]\:last\:border-b-0 > tr:last-child { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 0; - } - - [data-side="left"][data-collapsible="offcanvas"] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 { - right: calc(var(--spacing) * -2); - } - - [data-side="left"][data-state="collapsed"] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize { - cursor: e-resize; - } - - [data-side="right"][data-collapsible="offcanvas"] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 { - left: calc(var(--spacing) * -2); - } - - [data-side="right"][data-state="collapsed"] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize { - cursor: w-resize; - } - - [data-variant="legend"] + .\[\[data-variant\=legend\]\+\&\]\:-mt-1\.5 { - margin-top: calc(var(--spacing) * -1.5); - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:bg-accent:hover { - background-color: var(--accent); - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:bg-destructive\/90:hover { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - a.\[a\&\]\:hover\:bg-destructive\/90:hover { - background-color: color-mix(in oklab, var(--destructive) 90%, transparent); - } - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:bg-primary\/90:hover { - background-color: var(--primary); - } - - @supports (color: color-mix(in lab, red, red)) { - a.\[a\&\]\:hover\:bg-primary\/90:hover { - background-color: color-mix(in oklab, var(--primary) 90%, transparent); - } - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:bg-secondary\/90:hover { - background-color: var(--secondary); - } - - @supports (color: color-mix(in lab, red, red)) { - a.\[a\&\]\:hover\:bg-secondary\/90:hover { - background-color: color-mix(in oklab, var(--secondary) 90%, transparent); - } - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:text-accent-foreground:hover { - color: var(--accent-foreground); - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:underline:hover { - text-decoration-line: underline; - } - } -} - -@property --tw-animation-delay { - syntax: "*"; - inherits: false; - initial-value: 0s; -} - -@property --tw-animation-direction { - syntax: "*"; - inherits: false; - initial-value: normal; -} - -@property --tw-animation-duration { - syntax: "*"; - inherits: false -} - -@property --tw-animation-fill-mode { - syntax: "*"; - inherits: false; - initial-value: none; -} - -@property --tw-animation-iteration-count { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-enter-blur { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-enter-opacity { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-enter-rotate { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-enter-scale { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-enter-translate-x { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-enter-translate-y { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-exit-blur { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-exit-opacity { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-exit-rotate { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-exit-scale { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-exit-translate-x { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-exit-translate-y { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -:root { - --radius: .625rem; - --background: #fff; - --foreground: #0a0a0a; - --card: #fff; - --card-foreground: #0a0a0a; - --popover: #fff; - --popover-foreground: #0a0a0a; - --primary: #171717; - --primary-foreground: #fafafa; - --secondary: #f5f5f5; - --secondary-foreground: #171717; - --muted: #f5f5f5; - --muted-foreground: #737373; - --accent: #f5f5f5; - --accent-foreground: #171717; - --destructive: #e40014; - --border: #e5e5e5; - --input: #e5e5e5; - --ring: #a1a1a1; - --chart-1: #f05100; - --chart-2: #009588; - --chart-3: #104e64; - --chart-4: #fcbb00; - --chart-5: #f99c00; - --sidebar: #fafafa; - --sidebar-foreground: #0a0a0a; - --sidebar-primary: #171717; - --sidebar-primary-foreground: #fafafa; - --sidebar-accent: #f5f5f5; - --sidebar-accent-foreground: #171717; - --sidebar-border: #e5e5e5; - --sidebar-ring: #a1a1a1; -} - -@supports (color: lab(0% 0 0)) { - :root { - --background: lab(100% 0 0); - --foreground: lab(2.75381% 0 0); - --card: lab(100% 0 0); - --card-foreground: lab(2.75381% 0 0); - --popover: lab(100% 0 0); - --popover-foreground: lab(2.75381% 0 0); - --primary: lab(7.78201% -.0000149012 0); - --primary-foreground: lab(98.26% 0 0); - --secondary: lab(96.52% -.0000298023 .0000119209); - --secondary-foreground: lab(7.78201% -.0000149012 0); - --muted: lab(96.52% -.0000298023 .0000119209); - --muted-foreground: lab(48.496% 0 0); - --accent: lab(96.52% -.0000298023 .0000119209); - --accent-foreground: lab(7.78201% -.0000149012 0); - --destructive: lab(48.4493% 77.4328 61.5452); - --border: lab(90.952% 0 -.0000119209); - --input: lab(90.952% 0 -.0000119209); - --ring: lab(66.128% -.0000298023 .0000119209); - --chart-1: lab(57.1026% 64.2584 89.8886); - --chart-2: lab(55.0223% -41.0774 -3.90277); - --chart-3: lab(30.372% -13.1853 -18.7887); - --chart-4: lab(80.1641% 16.6016 99.2089); - --chart-5: lab(72.7183% 31.8672 97.9407); - --sidebar: lab(98.26% 0 0); - --sidebar-foreground: lab(2.75381% 0 0); - --sidebar-primary: lab(7.78201% -.0000149012 0); - --sidebar-primary-foreground: lab(98.26% 0 0); - --sidebar-accent: lab(96.52% -.0000298023 .0000119209); - --sidebar-accent-foreground: lab(7.78201% -.0000149012 0); - --sidebar-border: lab(90.952% 0 -.0000119209); - --sidebar-ring: lab(66.128% -.0000298023 .0000119209); - } -} - -.dark { - --background: #0a0a0a; - --foreground: #fafafa; - --card: #171717; - --card-foreground: #fafafa; - --popover: #171717; - --popover-foreground: #fafafa; - --primary: #e5e5e5; - --primary-foreground: #171717; - --secondary: #262626; - --secondary-foreground: #fafafa; - --muted: #262626; - --muted-foreground: #a1a1a1; - --accent: #262626; - --accent-foreground: #fafafa; - --destructive: #ff6568; - --border: #ffffff1a; - --input: #ffffff26; - --ring: #737373; - --chart-1: #1447e6; - --chart-2: #00bb7f; - --chart-3: #f99c00; - --chart-4: #ac4bff; - --chart-5: #ff2357; - --sidebar: #171717; - --sidebar-foreground: #fafafa; - --sidebar-primary: #1447e6; - --sidebar-primary-foreground: #fafafa; - --sidebar-accent: #262626; - --sidebar-accent-foreground: #fafafa; - --sidebar-border: #ffffff1a; - --sidebar-ring: #737373; -} - -@supports (color: lab(0% 0 0)) { - .dark { - --background: lab(2.75381% 0 0); - --foreground: lab(98.26% 0 0); - --card: lab(7.78201% -.0000149012 0); - --card-foreground: lab(98.26% 0 0); - --popover: lab(7.78201% -.0000149012 0); - --popover-foreground: lab(98.26% 0 0); - --primary: lab(90.952% 0 -.0000119209); - --primary-foreground: lab(7.78201% -.0000149012 0); - --secondary: lab(15.204% 0 -.00000596046); - --secondary-foreground: lab(98.26% 0 0); - --muted: lab(15.204% 0 -.00000596046); - --muted-foreground: lab(66.128% -.0000298023 .0000119209); - --accent: lab(15.204% 0 -.00000596046); - --accent-foreground: lab(98.26% 0 0); - --destructive: lab(63.7053% 60.745 31.3109); - --border: lab(100% 0 0 / .1); - --input: lab(100% 0 0 / .15); - --ring: lab(48.496% 0 0); - --chart-1: lab(36.9089% 35.0961 -85.6872); - --chart-2: lab(66.9756% -58.27 19.5419); - --chart-3: lab(72.7183% 31.8672 97.9407); - --chart-4: lab(52.0183% 66.11 -78.2316); - --chart-5: lab(56.101% 79.4328 31.4532); - --sidebar: lab(7.78201% -.0000149012 0); - --sidebar-foreground: lab(98.26% 0 0); - --sidebar-primary: lab(36.9089% 35.0961 -85.6872); - --sidebar-primary-foreground: lab(98.26% 0 0); - --sidebar-accent: lab(15.204% 0 -.00000596046); - --sidebar-accent-foreground: lab(98.26% 0 0); - --sidebar-border: lab(100% 0 0 / .1); - --sidebar-ring: lab(48.496% 0 0); - } -} - -@property --tw-translate-x { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-translate-y { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-translate-z { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-space-y-reverse { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-space-x-reverse { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-border-style { - syntax: "*"; - inherits: false; - initial-value: solid; -} - -@property --tw-leading { - syntax: "*"; - inherits: false -} - -@property --tw-font-weight { - syntax: "*"; - inherits: false -} - -@property --tw-tracking { - syntax: "*"; - inherits: false -} - -@property --tw-ordinal { - syntax: "*"; - inherits: false -} - -@property --tw-slashed-zero { - syntax: "*"; - inherits: false -} - -@property --tw-numeric-figure { - syntax: "*"; - inherits: false -} - -@property --tw-numeric-spacing { - syntax: "*"; - inherits: false -} - -@property --tw-numeric-fraction { - syntax: "*"; - inherits: false -} - -@property --tw-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-shadow-color { - syntax: "*"; - inherits: false -} - -@property --tw-shadow-alpha { - syntax: ""; - inherits: false; - initial-value: 100%; -} - -@property --tw-inset-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-inset-shadow-color { - syntax: "*"; - inherits: false -} - -@property --tw-inset-shadow-alpha { - syntax: ""; - inherits: false; - initial-value: 100%; -} - -@property --tw-ring-color { - syntax: "*"; - inherits: false -} - -@property --tw-ring-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-inset-ring-color { - syntax: "*"; - inherits: false -} - -@property --tw-inset-ring-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-ring-inset { - syntax: "*"; - inherits: false -} - -@property --tw-ring-offset-width { - syntax: ""; - inherits: false; - initial-value: 0; -} - -@property --tw-ring-offset-color { - syntax: "*"; - inherits: false; - initial-value: #fff; -} - -@property --tw-ring-offset-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-outline-style { - syntax: "*"; - inherits: false; - initial-value: solid; -} - -@property --tw-duration { - syntax: "*"; - inherits: false -} - -@property --tw-ease { - syntax: "*"; - inherits: false -} - -@property --tw-content { - syntax: "*"; - inherits: false; - initial-value: ""; -} - -@property --tw-blur { - syntax: "*"; - inherits: false -} - -@property --tw-brightness { - syntax: "*"; - inherits: false -} - -@property --tw-contrast { - syntax: "*"; - inherits: false -} - -@property --tw-grayscale { - syntax: "*"; - inherits: false -} - -@property --tw-hue-rotate { - syntax: "*"; - inherits: false -} - -@property --tw-invert { - syntax: "*"; - inherits: false -} - -@property --tw-opacity { - syntax: "*"; - inherits: false -} - -@property --tw-saturate { - syntax: "*"; - inherits: false -} - -@property --tw-sepia { - syntax: "*"; - inherits: false -} - -@property --tw-drop-shadow { - syntax: "*"; - inherits: false -} - -@property --tw-drop-shadow-color { - syntax: "*"; - inherits: false -} - -@property --tw-drop-shadow-alpha { - syntax: ""; - inherits: false; - initial-value: 100%; -} - -@property --tw-drop-shadow-size { - syntax: "*"; - inherits: false -} - -@keyframes pulse { - 50% { - opacity: .5; - } -} - -@keyframes enter { - from { - opacity: var(--tw-enter-opacity, 1); - transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0)); - filter: blur(var(--tw-enter-blur, 0)); - } -} - -@keyframes exit { - to { - opacity: var(--tw-exit-opacity, 1); - transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0)); - filter: blur(var(--tw-exit-blur, 0)); - } -} - -/*# sourceMappingURL=%5Broot-of-the-server%5D__0f0ba101._.css.map*/ \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[root-of-the-server]__0f0ba101._.css.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[root-of-the-server]__0f0ba101._.css.map deleted file mode 100644 index 042ceca..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[root-of-the-server]__0f0ba101._.css.map +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 1, "column": 0}, "map": {"version":3,"sources":["turbopack:///[next]/internal/font/google/geist_a71539c9.module.css"],"sourcesContent":["/* cyrillic */\n@font-face {\n font-family: 'Geist';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwYGFWNOITddY4.woff2%22,%22preload%22:false,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* latin-ext */\n@font-face {\n font-family: 'Geist';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwSGFWNOITddY4.woff2%22,%22preload%22:false,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: 'Geist';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMEwcGFWNOITd.woff2%22,%22preload%22:true,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n@font-face {\n font-family: 'Geist Fallback';\n src: local(\"Arial\");\n ascent-override: 95.94%;\ndescent-override: 28.16%;\nline-gap-override: 0.00%;\nsize-adjust: 104.76%;\n\n}\n.className {\n font-family: 'Geist', 'Geist Fallback';\n font-style: normal;\n\n}\n.variable {\n --font-geist-sans: 'Geist', 'Geist Fallback';\n}\n"],"names":[],"mappings":"AACA;;;;;;;;;AASA;;;;;;;;;AASA;;;;;;;;;AAQA;;;;;;;;;AASA;;;;;AAKA","ignoreList":[0]}}, - {"offset": {"line": 47, "column": 0}, "map": {"version":3,"sources":["turbopack:///[next]/internal/font/google/geist_mono_8d43a2aa.module.css"],"sourcesContent":["/* cyrillic */\n@font-face {\n font-family: 'Geist Mono';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geistmono/v4/or3nQ6H-1_WfwkMZI_qYFrMdmhHkjkotbA.woff2%22,%22preload%22:false,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* latin-ext */\n@font-face {\n font-family: 'Geist Mono';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geistmono/v4/or3nQ6H-1_WfwkMZI_qYFrkdmhHkjkotbA.woff2%22,%22preload%22:false,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n font-family: 'Geist Mono';\n font-style: normal;\n font-weight: 100 900;\n font-display: swap;\n src: url(@vercel/turbopack-next/internal/font/google/font?{%22url%22:%22https://fonts.gstatic.com/s/geistmono/v4/or3nQ6H-1_WfwkMZI_qYFrcdmhHkjko.woff2%22,%22preload%22:true,%22has_size_adjust%22:true}) format('woff2');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n@font-face {\n font-family: 'Geist Mono Fallback';\n src: local(\"Arial\");\n ascent-override: 74.67%;\ndescent-override: 21.92%;\nline-gap-override: 0.00%;\nsize-adjust: 134.59%;\n\n}\n.className {\n font-family: 'Geist Mono', 'Geist Mono Fallback';\n font-style: normal;\n\n}\n.variable {\n --font-geist-mono: 'Geist Mono', 'Geist Mono Fallback';\n}\n"],"names":[],"mappings":"AACA;;;;;;;;;AASA;;;;;;;;;AASA;;;;;;;;;AAQA;;;;;;;;;AASA;;;;;AAKA","ignoreList":[0]}}, - {"offset": {"line": 93, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/src/app/globals.css"],"sourcesContent":["/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */\n@layer properties;\n@layer theme, base, components, utilities;\n@layer theme {\n :root, :host {\n --color-red-500: oklch(63.7% 0.237 25.331);\n --color-red-600: oklch(57.7% 0.245 27.325);\n --color-green-600: oklch(62.7% 0.194 149.214);\n --color-blue-600: oklch(54.6% 0.245 262.881);\n --color-gray-200: oklch(92.8% 0.006 264.531);\n --color-gray-500: oklch(55.1% 0.027 264.364);\n --color-gray-700: oklch(37.3% 0.034 259.733);\n --color-zinc-50: oklch(98.5% 0 0);\n --color-zinc-400: oklch(70.5% 0.015 286.067);\n --color-zinc-600: oklch(44.2% 0.017 285.786);\n --color-zinc-950: oklch(14.1% 0.005 285.823);\n --color-black: #000;\n --color-white: #fff;\n --spacing: 0.25rem;\n --container-xs: 20rem;\n --container-sm: 24rem;\n --container-md: 28rem;\n --container-lg: 32rem;\n --container-2xl: 42rem;\n --container-3xl: 48rem;\n --container-7xl: 80rem;\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --text-lg: 1.125rem;\n --text-lg--line-height: calc(1.75 / 1.125);\n --text-xl: 1.25rem;\n --text-xl--line-height: calc(1.75 / 1.25);\n --text-2xl: 1.5rem;\n --text-2xl--line-height: calc(2 / 1.5);\n --text-3xl: 1.875rem;\n --text-3xl--line-height: calc(2.25 / 1.875);\n --font-weight-normal: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n --tracking-tight: -0.025em;\n --tracking-widest: 0.1em;\n --leading-tight: 1.25;\n --leading-snug: 1.375;\n --leading-normal: 1.5;\n --radius-xs: 0.125rem;\n --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);\n --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n --aspect-video: 16 / 9;\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-geist-sans);\n --default-mono-font-family: var(--font-geist-mono);\n --color-border: var(--border);\n }\n}\n@layer base {\n *, ::after, ::before, ::backdrop, ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html, :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1, h2, h3, h4, h5, h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b, strong {\n font-weight: bolder;\n }\n code, kbd, samp, pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub, sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol, ul, menu {\n list-style: none;\n }\n img, svg, video, canvas, audio, iframe, embed, object {\n display: block;\n vertical-align: middle;\n }\n img, video {\n max-width: 100%;\n height: auto;\n }\n button, input, select, optgroup, textarea, ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: currentcolor;\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, currentcolor 50%, transparent);\n }\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n ::-webkit-calendar-picker-indicator {\n line-height: 1;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button, input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]), ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n@layer utilities {\n .\\@container\\/card-header {\n container-type: inline-size;\n container-name: card-header;\n }\n .\\@container\\/field-group {\n container-type: inline-size;\n container-name: field-group;\n }\n .pointer-events-none {\n pointer-events: none;\n }\n .sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip-path: inset(50%);\n white-space: nowrap;\n border-width: 0;\n }\n .absolute {\n position: absolute;\n }\n .fixed {\n position: fixed;\n }\n .relative {\n position: relative;\n }\n .sticky {\n position: sticky;\n }\n .inset-0 {\n inset: calc(var(--spacing) * 0);\n }\n .inset-x-0 {\n inset-inline: calc(var(--spacing) * 0);\n }\n .inset-y-0 {\n inset-block: calc(var(--spacing) * 0);\n }\n .start {\n inset-inline-start: var(--spacing);\n }\n .end {\n inset-inline-end: var(--spacing);\n }\n .top-0 {\n top: calc(var(--spacing) * 0);\n }\n .top-1\\.5 {\n top: calc(var(--spacing) * 1.5);\n }\n .top-1\\/2 {\n top: calc(1 / 2 * 100%);\n }\n .top-3\\.5 {\n top: calc(var(--spacing) * 3.5);\n }\n .top-4 {\n top: calc(var(--spacing) * 4);\n }\n .top-6 {\n top: calc(var(--spacing) * 6);\n }\n .top-\\[50\\%\\] {\n top: 50%;\n }\n .right-0 {\n right: calc(var(--spacing) * 0);\n }\n .right-1 {\n right: calc(var(--spacing) * 1);\n }\n .right-2 {\n right: calc(var(--spacing) * 2);\n }\n .right-3 {\n right: calc(var(--spacing) * 3);\n }\n .right-4 {\n right: calc(var(--spacing) * 4);\n }\n .bottom-0 {\n bottom: calc(var(--spacing) * 0);\n }\n .left-0 {\n left: calc(var(--spacing) * 0);\n }\n .left-2 {\n left: calc(var(--spacing) * 2);\n }\n .left-\\[50\\%\\] {\n left: 50%;\n }\n .z-10 {\n z-index: 10;\n }\n .z-20 {\n z-index: 20;\n }\n .z-50 {\n z-index: 50;\n }\n .col-start-2 {\n grid-column-start: 2;\n }\n .row-span-2 {\n grid-row: span 2 / span 2;\n }\n .row-start-1 {\n grid-row-start: 1;\n }\n .-mx-1 {\n margin-inline: calc(var(--spacing) * -1);\n }\n .mx-2 {\n margin-inline: calc(var(--spacing) * 2);\n }\n .mx-3\\.5 {\n margin-inline: calc(var(--spacing) * 3.5);\n }\n .mx-auto {\n margin-inline: auto;\n }\n .-my-2 {\n margin-block: calc(var(--spacing) * -2);\n }\n .my-0\\.5 {\n margin-block: calc(var(--spacing) * 0.5);\n }\n .my-1 {\n margin-block: calc(var(--spacing) * 1);\n }\n .mt-2 {\n margin-top: calc(var(--spacing) * 2);\n }\n .mt-4 {\n margin-top: calc(var(--spacing) * 4);\n }\n .mt-auto {\n margin-top: auto;\n }\n .mb-3 {\n margin-bottom: calc(var(--spacing) * 3);\n }\n .mb-4 {\n margin-bottom: calc(var(--spacing) * 4);\n }\n .-ml-1 {\n margin-left: calc(var(--spacing) * -1);\n }\n .ml-2 {\n margin-left: calc(var(--spacing) * 2);\n }\n .ml-4 {\n margin-left: calc(var(--spacing) * 4);\n }\n .ml-auto {\n margin-left: auto;\n }\n .line-clamp-4 {\n overflow: hidden;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 4;\n }\n .block {\n display: block;\n }\n .flex {\n display: flex;\n }\n .grid {\n display: grid;\n }\n .hidden {\n display: none;\n }\n .inline-flex {\n display: inline-flex;\n }\n .table {\n display: table;\n }\n .table-caption {\n display: table-caption;\n }\n .table-cell {\n display: table-cell;\n }\n .table-row {\n display: table-row;\n }\n .field-sizing-content {\n field-sizing: content;\n }\n .aspect-square {\n aspect-ratio: 1 / 1;\n }\n .aspect-video {\n aspect-ratio: var(--aspect-video);\n }\n .size-2 {\n width: calc(var(--spacing) * 2);\n height: calc(var(--spacing) * 2);\n }\n .size-2\\.5 {\n width: calc(var(--spacing) * 2.5);\n height: calc(var(--spacing) * 2.5);\n }\n .size-3\\.5 {\n width: calc(var(--spacing) * 3.5);\n height: calc(var(--spacing) * 3.5);\n }\n .size-4 {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n }\n .size-5\\! {\n width: calc(var(--spacing) * 5) !important;\n height: calc(var(--spacing) * 5) !important;\n }\n .size-6 {\n width: calc(var(--spacing) * 6);\n height: calc(var(--spacing) * 6);\n }\n .size-7 {\n width: calc(var(--spacing) * 7);\n height: calc(var(--spacing) * 7);\n }\n .size-8 {\n width: calc(var(--spacing) * 8);\n height: calc(var(--spacing) * 8);\n }\n .size-9 {\n width: calc(var(--spacing) * 9);\n height: calc(var(--spacing) * 9);\n }\n .size-10 {\n width: calc(var(--spacing) * 10);\n height: calc(var(--spacing) * 10);\n }\n .size-full {\n width: 100%;\n height: 100%;\n }\n .h-\\(--header-height\\) {\n height: var(--header-height);\n }\n .h-2 {\n height: calc(var(--spacing) * 2);\n }\n .h-2\\.5 {\n height: calc(var(--spacing) * 2.5);\n }\n .h-4 {\n height: calc(var(--spacing) * 4);\n }\n .h-5 {\n height: calc(var(--spacing) * 5);\n }\n .h-6 {\n height: calc(var(--spacing) * 6);\n }\n .h-7 {\n height: calc(var(--spacing) * 7);\n }\n .h-8 {\n height: calc(var(--spacing) * 8);\n }\n .h-9 {\n height: calc(var(--spacing) * 9);\n }\n .h-10 {\n height: calc(var(--spacing) * 10);\n }\n .h-12 {\n height: calc(var(--spacing) * 12);\n }\n .h-24 {\n height: calc(var(--spacing) * 24);\n }\n .h-32 {\n height: calc(var(--spacing) * 32);\n }\n .h-48 {\n height: calc(var(--spacing) * 48);\n }\n .h-60 {\n height: calc(var(--spacing) * 60);\n }\n .h-\\[calc\\(100\\%-1px\\)\\] {\n height: calc(100% - 1px);\n }\n .h-\\[var\\(--radix-select-trigger-height\\)\\] {\n height: var(--radix-select-trigger-height);\n }\n .h-auto {\n height: auto;\n }\n .h-fit {\n height: fit-content;\n }\n .h-full {\n height: 100%;\n }\n .h-px {\n height: 1px;\n }\n .h-svh {\n height: 100svh;\n }\n .max-h-\\(--radix-dropdown-menu-content-available-height\\) {\n max-height: var(--radix-dropdown-menu-content-available-height);\n }\n .max-h-\\(--radix-select-content-available-height\\) {\n max-height: var(--radix-select-content-available-height);\n }\n .max-h-\\[90vh\\] {\n max-height: 90vh;\n }\n .min-h-0 {\n min-height: calc(var(--spacing) * 0);\n }\n .min-h-16 {\n min-height: calc(var(--spacing) * 16);\n }\n .min-h-\\[400px\\] {\n min-height: 400px;\n }\n .min-h-\\[calc\\(100vh-60px\\)\\] {\n min-height: calc(100vh - 60px);\n }\n .min-h-screen {\n min-height: 100vh;\n }\n .min-h-svh {\n min-height: 100svh;\n }\n .w-\\(--radix-dropdown-menu-trigger-width\\) {\n width: var(--radix-dropdown-menu-trigger-width);\n }\n .w-\\(--sidebar-width\\) {\n width: var(--sidebar-width);\n }\n .w-0 {\n width: calc(var(--spacing) * 0);\n }\n .w-1 {\n width: calc(var(--spacing) * 1);\n }\n .w-2 {\n width: calc(var(--spacing) * 2);\n }\n .w-2\\.5 {\n width: calc(var(--spacing) * 2.5);\n }\n .w-3\\/4 {\n width: calc(3 / 4 * 100%);\n }\n .w-4 {\n width: calc(var(--spacing) * 4);\n }\n .w-5 {\n width: calc(var(--spacing) * 5);\n }\n .w-8 {\n width: calc(var(--spacing) * 8);\n }\n .w-12 {\n width: calc(var(--spacing) * 12);\n }\n .w-24 {\n width: calc(var(--spacing) * 24);\n }\n .w-\\[100px\\] {\n width: 100px;\n }\n .w-auto {\n width: auto;\n }\n .w-fit {\n width: fit-content;\n }\n .w-full {\n width: 100%;\n }\n .max-w-\\(--skeleton-width\\) {\n max-width: var(--skeleton-width);\n }\n .max-w-3xl {\n max-width: var(--container-3xl);\n }\n .max-w-7xl {\n max-width: var(--container-7xl);\n }\n .max-w-\\[calc\\(100\\%-2rem\\)\\] {\n max-width: calc(100% - 2rem);\n }\n .max-w-full {\n max-width: 100%;\n }\n .max-w-lg {\n max-width: var(--container-lg);\n }\n .max-w-md {\n max-width: var(--container-md);\n }\n .max-w-sm {\n max-width: var(--container-sm);\n }\n .max-w-xs {\n max-width: var(--container-xs);\n }\n .min-w-0 {\n min-width: calc(var(--spacing) * 0);\n }\n .min-w-5 {\n min-width: calc(var(--spacing) * 5);\n }\n .min-w-56 {\n min-width: calc(var(--spacing) * 56);\n }\n .min-w-\\[8rem\\] {\n min-width: 8rem;\n }\n .min-w-\\[var\\(--radix-select-trigger-width\\)\\] {\n min-width: var(--radix-select-trigger-width);\n }\n .flex-1 {\n flex: 1;\n }\n .shrink-0 {\n flex-shrink: 0;\n }\n .caption-bottom {\n caption-side: bottom;\n }\n .origin-\\(--radix-dropdown-menu-content-transform-origin\\) {\n transform-origin: var(--radix-dropdown-menu-content-transform-origin);\n }\n .origin-\\(--radix-select-content-transform-origin\\) {\n transform-origin: var(--radix-select-content-transform-origin);\n }\n .origin-\\(--radix-tooltip-content-transform-origin\\) {\n transform-origin: var(--radix-tooltip-content-transform-origin);\n }\n .-translate-x-1\\/2 {\n --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .-translate-x-px {\n --tw-translate-x: -1px;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .translate-x-\\[-50\\%\\] {\n --tw-translate-x: -50%;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .translate-x-px {\n --tw-translate-x: 1px;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .translate-y-\\[-50\\%\\] {\n --tw-translate-y: -50%;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .translate-y-\\[calc\\(-50\\%_-_2px\\)\\] {\n --tw-translate-y: calc(-50% - 2px);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .rotate-45 {\n rotate: 45deg;\n }\n .animate-in {\n animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);\n }\n .animate-pulse {\n animation: var(--animate-pulse);\n }\n .cursor-default {\n cursor: default;\n }\n .cursor-pointer {\n cursor: pointer;\n }\n .scroll-my-1 {\n scroll-margin-block: calc(var(--spacing) * 1);\n }\n .list-inside {\n list-style-position: inside;\n }\n .list-disc {\n list-style-type: disc;\n }\n .auto-rows-min {\n grid-auto-rows: min-content;\n }\n .grid-cols-1 {\n grid-template-columns: repeat(1, minmax(0, 1fr));\n }\n .grid-cols-2 {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n }\n .grid-rows-\\[auto_auto\\] {\n grid-template-rows: auto auto;\n }\n .flex-col {\n flex-direction: column;\n }\n .flex-col-reverse {\n flex-direction: column-reverse;\n }\n .flex-row {\n flex-direction: row;\n }\n .flex-wrap {\n flex-wrap: wrap;\n }\n .place-content-center {\n place-content: center;\n }\n .items-center {\n align-items: center;\n }\n .items-end {\n align-items: flex-end;\n }\n .items-start {\n align-items: flex-start;\n }\n .items-stretch {\n align-items: stretch;\n }\n .justify-between {\n justify-content: space-between;\n }\n .justify-center {\n justify-content: center;\n }\n .justify-end {\n justify-content: flex-end;\n }\n .gap-0\\.5 {\n gap: calc(var(--spacing) * 0.5);\n }\n .gap-1 {\n gap: calc(var(--spacing) * 1);\n }\n .gap-1\\.5 {\n gap: calc(var(--spacing) * 1.5);\n }\n .gap-2 {\n gap: calc(var(--spacing) * 2);\n }\n .gap-3 {\n gap: calc(var(--spacing) * 3);\n }\n .gap-4 {\n gap: calc(var(--spacing) * 4);\n }\n .gap-6 {\n gap: calc(var(--spacing) * 6);\n }\n .gap-7 {\n gap: calc(var(--spacing) * 7);\n }\n .gap-8 {\n gap: calc(var(--spacing) * 8);\n }\n .gap-10 {\n gap: calc(var(--spacing) * 10);\n }\n .space-y-2 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-4 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .-space-x-2 {\n :where(& > :not(:last-child)) {\n --tw-space-x-reverse: 0;\n margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse));\n margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));\n }\n }\n .self-start {\n align-self: flex-start;\n }\n .justify-self-end {\n justify-self: flex-end;\n }\n .truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .overflow-auto {\n overflow: auto;\n }\n .overflow-hidden {\n overflow: hidden;\n }\n .overflow-x-auto {\n overflow-x: auto;\n }\n .overflow-x-hidden {\n overflow-x: hidden;\n }\n .overflow-y-auto {\n overflow-y: auto;\n }\n .rounded {\n border-radius: 0.25rem;\n }\n .rounded-\\[2px\\] {\n border-radius: 2px;\n }\n .rounded-\\[4px\\] {\n border-radius: 4px;\n }\n .rounded-full {\n border-radius: calc(infinity * 1px);\n }\n .rounded-lg {\n border-radius: var(--radius);\n }\n .rounded-md {\n border-radius: calc(var(--radius) - 2px);\n }\n .rounded-sm {\n border-radius: calc(var(--radius) - 4px);\n }\n .rounded-xl {\n border-radius: calc(var(--radius) + 4px);\n }\n .rounded-xs {\n border-radius: var(--radius-xs);\n }\n .border {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n .border-2 {\n border-style: var(--tw-border-style);\n border-width: 2px;\n }\n .border-\\[1\\.5px\\] {\n border-style: var(--tw-border-style);\n border-width: 1.5px;\n }\n .border-t {\n border-top-style: var(--tw-border-style);\n border-top-width: 1px;\n }\n .border-r {\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n }\n .border-b {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n }\n .border-l {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n .border-dashed {\n --tw-border-style: dashed;\n border-style: dashed;\n }\n .border-solid {\n --tw-border-style: solid;\n border-style: solid;\n }\n .border-\\(--color-border\\) {\n border-color: var(--color-border);\n }\n .border-black\\/8 {\n border-color: color-mix(in srgb, #000 8%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--color-black) 8%, transparent);\n }\n }\n .border-border {\n border-color: var(--border);\n }\n .border-border\\/50 {\n border-color: var(--border);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--border) 50%, transparent);\n }\n }\n .border-input {\n border-color: var(--input);\n }\n .border-sidebar-border {\n border-color: var(--sidebar-border);\n }\n .border-transparent {\n border-color: transparent;\n }\n .bg-\\(--color-bg\\) {\n background-color: var(--color-bg);\n }\n .bg-accent {\n background-color: var(--accent);\n }\n .bg-background {\n background-color: var(--background);\n }\n .bg-black {\n background-color: var(--color-black);\n }\n .bg-black\\/30 {\n background-color: color-mix(in srgb, #000 30%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 30%, transparent);\n }\n }\n .bg-black\\/40 {\n background-color: color-mix(in srgb, #000 40%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 40%, transparent);\n }\n }\n .bg-black\\/50 {\n background-color: color-mix(in srgb, #000 50%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 50%, transparent);\n }\n }\n .bg-border {\n background-color: var(--border);\n }\n .bg-card {\n background-color: var(--card);\n }\n .bg-destructive {\n background-color: var(--destructive);\n }\n .bg-destructive\\/10 {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 10%, transparent);\n }\n }\n .bg-foreground {\n background-color: var(--foreground);\n }\n .bg-gray-200 {\n background-color: var(--color-gray-200);\n }\n .bg-muted {\n background-color: var(--muted);\n }\n .bg-muted\\/40 {\n background-color: var(--muted);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--muted) 40%, transparent);\n }\n }\n .bg-muted\\/50 {\n background-color: var(--muted);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--muted) 50%, transparent);\n }\n }\n .bg-popover {\n background-color: var(--popover);\n }\n .bg-primary {\n background-color: var(--primary);\n }\n .bg-secondary {\n background-color: var(--secondary);\n }\n .bg-sidebar {\n background-color: var(--sidebar);\n }\n .bg-sidebar-border {\n background-color: var(--sidebar-border);\n }\n .bg-transparent {\n background-color: transparent;\n }\n .bg-white {\n background-color: var(--color-white);\n }\n .bg-zinc-50 {\n background-color: var(--color-zinc-50);\n }\n .fill-current {\n fill: currentcolor;\n }\n .fill-foreground {\n fill: var(--foreground);\n }\n .object-contain {\n object-fit: contain;\n }\n .object-cover {\n object-fit: cover;\n }\n .p-0 {\n padding: calc(var(--spacing) * 0);\n }\n .p-1 {\n padding: calc(var(--spacing) * 1);\n }\n .p-2 {\n padding: calc(var(--spacing) * 2);\n }\n .p-3 {\n padding: calc(var(--spacing) * 3);\n }\n .p-4 {\n padding: calc(var(--spacing) * 4);\n }\n .p-6 {\n padding: calc(var(--spacing) * 6);\n }\n .p-\\[3px\\] {\n padding: 3px;\n }\n .px-1 {\n padding-inline: calc(var(--spacing) * 1);\n }\n .px-2 {\n padding-inline: calc(var(--spacing) * 2);\n }\n .px-2\\.5 {\n padding-inline: calc(var(--spacing) * 2.5);\n }\n .px-3 {\n padding-inline: calc(var(--spacing) * 3);\n }\n .px-4 {\n padding-inline: calc(var(--spacing) * 4);\n }\n .px-5 {\n padding-inline: calc(var(--spacing) * 5);\n }\n .px-6 {\n padding-inline: calc(var(--spacing) * 6);\n }\n .px-16 {\n padding-inline: calc(var(--spacing) * 16);\n }\n .py-0\\.5 {\n padding-block: calc(var(--spacing) * 0.5);\n }\n .py-1 {\n padding-block: calc(var(--spacing) * 1);\n }\n .py-1\\.5 {\n padding-block: calc(var(--spacing) * 1.5);\n }\n .py-2 {\n padding-block: calc(var(--spacing) * 2);\n }\n .py-6 {\n padding-block: calc(var(--spacing) * 6);\n }\n .py-10 {\n padding-block: calc(var(--spacing) * 10);\n }\n .py-32 {\n padding-block: calc(var(--spacing) * 32);\n }\n .pt-3 {\n padding-top: calc(var(--spacing) * 3);\n }\n .pr-2 {\n padding-right: calc(var(--spacing) * 2);\n }\n .pr-8 {\n padding-right: calc(var(--spacing) * 8);\n }\n .pb-3 {\n padding-bottom: calc(var(--spacing) * 3);\n }\n .pl-2 {\n padding-left: calc(var(--spacing) * 2);\n }\n .pl-8 {\n padding-left: calc(var(--spacing) * 8);\n }\n .text-center {\n text-align: center;\n }\n .text-left {\n text-align: left;\n }\n .align-middle {\n vertical-align: middle;\n }\n .font-mono {\n font-family: var(--font-geist-mono);\n }\n .font-sans {\n font-family: var(--font-geist-sans);\n }\n .text-2xl {\n font-size: var(--text-2xl);\n line-height: var(--tw-leading, var(--text-2xl--line-height));\n }\n .text-3xl {\n font-size: var(--text-3xl);\n line-height: var(--tw-leading, var(--text-3xl--line-height));\n }\n .text-base {\n font-size: var(--text-base);\n line-height: var(--tw-leading, var(--text-base--line-height));\n }\n .text-lg {\n font-size: var(--text-lg);\n line-height: var(--tw-leading, var(--text-lg--line-height));\n }\n .text-sm {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n .text-xl {\n font-size: var(--text-xl);\n line-height: var(--tw-leading, var(--text-xl--line-height));\n }\n .text-xs {\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n }\n .leading-8 {\n --tw-leading: calc(var(--spacing) * 8);\n line-height: calc(var(--spacing) * 8);\n }\n .leading-10 {\n --tw-leading: calc(var(--spacing) * 10);\n line-height: calc(var(--spacing) * 10);\n }\n .leading-none {\n --tw-leading: 1;\n line-height: 1;\n }\n .leading-normal {\n --tw-leading: var(--leading-normal);\n line-height: var(--leading-normal);\n }\n .leading-snug {\n --tw-leading: var(--leading-snug);\n line-height: var(--leading-snug);\n }\n .leading-tight {\n --tw-leading: var(--leading-tight);\n line-height: var(--leading-tight);\n }\n .font-bold {\n --tw-font-weight: var(--font-weight-bold);\n font-weight: var(--font-weight-bold);\n }\n .font-medium {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n .font-normal {\n --tw-font-weight: var(--font-weight-normal);\n font-weight: var(--font-weight-normal);\n }\n .font-semibold {\n --tw-font-weight: var(--font-weight-semibold);\n font-weight: var(--font-weight-semibold);\n }\n .tracking-tight {\n --tw-tracking: var(--tracking-tight);\n letter-spacing: var(--tracking-tight);\n }\n .tracking-widest {\n --tw-tracking: var(--tracking-widest);\n letter-spacing: var(--tracking-widest);\n }\n .text-balance {\n text-wrap: balance;\n }\n .whitespace-nowrap {\n white-space: nowrap;\n }\n .text-background {\n color: var(--background);\n }\n .text-black {\n color: var(--color-black);\n }\n .text-blue-600 {\n color: var(--color-blue-600);\n }\n .text-card-foreground {\n color: var(--card-foreground);\n }\n .text-current {\n color: currentcolor;\n }\n .text-destructive {\n color: var(--destructive);\n }\n .text-foreground {\n color: var(--foreground);\n }\n .text-foreground\\/60 {\n color: var(--foreground);\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, var(--foreground) 60%, transparent);\n }\n }\n .text-gray-500 {\n color: var(--color-gray-500);\n }\n .text-gray-700 {\n color: var(--color-gray-700);\n }\n .text-green-600 {\n color: var(--color-green-600);\n }\n .text-muted-foreground {\n color: var(--muted-foreground);\n }\n .text-popover-foreground {\n color: var(--popover-foreground);\n }\n .text-primary {\n color: var(--primary);\n }\n .text-primary-foreground {\n color: var(--primary-foreground);\n }\n .text-red-500 {\n color: var(--color-red-500);\n }\n .text-red-600 {\n color: var(--color-red-600);\n }\n .text-secondary-foreground {\n color: var(--secondary-foreground);\n }\n .text-sidebar-foreground {\n color: var(--sidebar-foreground);\n }\n .text-sidebar-foreground\\/70 {\n color: var(--sidebar-foreground);\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent);\n }\n }\n .text-white {\n color: var(--color-white);\n }\n .text-zinc-600 {\n color: var(--color-zinc-600);\n }\n .text-zinc-950 {\n color: var(--color-zinc-950);\n }\n .capitalize {\n text-transform: capitalize;\n }\n .tabular-nums {\n --tw-numeric-spacing: tabular-nums;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .underline {\n text-decoration-line: underline;\n }\n .underline-offset-4 {\n text-underline-offset: 4px;\n }\n .antialiased {\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n .opacity-50 {\n opacity: 50%;\n }\n .opacity-70 {\n opacity: 70%;\n }\n .shadow-\\[0_0_0_1px_hsl\\(var\\(--sidebar-border\\)\\)\\] {\n --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border)));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-lg {\n --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-md {\n --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-none {\n --tw-shadow: 0 0 #0000;\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-sm {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-xl {\n --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-xs {\n --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .ring-2 {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .ring-background {\n --tw-ring-color: var(--background);\n }\n .ring-sidebar-ring {\n --tw-ring-color: var(--sidebar-ring);\n }\n .ring-offset-background {\n --tw-ring-offset-color: var(--background);\n }\n .outline-hidden {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n .outline {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n .transition {\n transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[color\\,box-shadow\\] {\n transition-property: color,box-shadow;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[left\\,right\\,width\\] {\n transition-property: left,right,width;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[margin\\,opacity\\] {\n transition-property: margin,opacity;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[width\\,height\\,padding\\] {\n transition-property: width,height,padding;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[width\\] {\n transition-property: width;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-all {\n transition-property: all;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-colors {\n transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-opacity {\n transition-property: opacity;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-shadow {\n transition-property: box-shadow;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-transform {\n transition-property: transform, translate, scale, rotate;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-none {\n transition-property: none;\n }\n .duration-200 {\n --tw-duration: 200ms;\n transition-duration: 200ms;\n }\n .ease-in-out {\n --tw-ease: var(--ease-in-out);\n transition-timing-function: var(--ease-in-out);\n }\n .ease-linear {\n --tw-ease: linear;\n transition-timing-function: linear;\n }\n .fade-in-0 {\n --tw-enter-opacity: calc(0/100);\n --tw-enter-opacity: 0;\n }\n .outline-none {\n --tw-outline-style: none;\n outline-style: none;\n }\n .select-none {\n -webkit-user-select: none;\n user-select: none;\n }\n .zoom-in-95 {\n --tw-enter-scale: calc(95*1%);\n --tw-enter-scale: .95;\n }\n .group-focus-within\\/menu-item\\:opacity-100 {\n &:is(:where(.group\\/menu-item):focus-within *) {\n opacity: 100%;\n }\n }\n .group-hover\\/menu-item\\:opacity-100 {\n &:is(:where(.group\\/menu-item):hover *) {\n @media (hover: hover) {\n opacity: 100%;\n }\n }\n }\n .group-has-data-\\[orientation\\=horizontal\\]\\/field\\:text-balance {\n &:is(:where(.group\\/field):has(*[data-orientation=\"horizontal\"]) *) {\n text-wrap: balance;\n }\n }\n .group-has-data-\\[sidebar\\=menu-action\\]\\/menu-item\\:pr-8 {\n &:is(:where(.group\\/menu-item):has(*[data-sidebar=\"menu-action\"]) *) {\n padding-right: calc(var(--spacing) * 8);\n }\n }\n .group-has-data-\\[size\\=lg\\]\\/avatar-group\\:size-10 {\n &:is(:where(.group\\/avatar-group):has(*[data-size=\"lg\"]) *) {\n width: calc(var(--spacing) * 10);\n height: calc(var(--spacing) * 10);\n }\n }\n .group-has-data-\\[size\\=sm\\]\\/avatar-group\\:size-6 {\n &:is(:where(.group\\/avatar-group):has(*[data-size=\"sm\"]) *) {\n width: calc(var(--spacing) * 6);\n height: calc(var(--spacing) * 6);\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:-mt-8 {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n margin-top: calc(var(--spacing) * -8);\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:hidden {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n display: none;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:size-8\\! {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n width: calc(var(--spacing) * 8) !important;\n height: calc(var(--spacing) * 8) !important;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:w-\\(--sidebar-width-icon\\) {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n width: var(--sidebar-width-icon);\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:w-\\[calc\\(var\\(--sidebar-width-icon\\)\\+\\(--spacing\\(4\\)\\)\\)\\] {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)));\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:w-\\[calc\\(var\\(--sidebar-width-icon\\)\\+\\(--spacing\\(4\\)\\)\\+2px\\)\\] {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px);\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:overflow-hidden {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n overflow: hidden;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:p-0\\! {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n padding: calc(var(--spacing) * 0) !important;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:p-2\\! {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n padding: calc(var(--spacing) * 2) !important;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:opacity-0 {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n opacity: 0%;\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:right-\\[calc\\(var\\(--sidebar-width\\)\\*-1\\)\\] {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n right: calc(var(--sidebar-width) * -1);\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:left-\\[calc\\(var\\(--sidebar-width\\)\\*-1\\)\\] {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n left: calc(var(--sidebar-width) * -1);\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:w-0 {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n width: calc(var(--spacing) * 0);\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:translate-x-0 {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n --tw-translate-x: calc(var(--spacing) * 0);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .group-data-\\[disabled\\=true\\]\\:pointer-events-none {\n &:is(:where(.group)[data-disabled=\"true\"] *) {\n pointer-events: none;\n }\n }\n .group-data-\\[disabled\\=true\\]\\:opacity-50 {\n &:is(:where(.group)[data-disabled=\"true\"] *) {\n opacity: 50%;\n }\n }\n .group-data-\\[disabled\\=true\\]\\/field\\:opacity-50 {\n &:is(:where(.group\\/field)[data-disabled=\"true\"] *) {\n opacity: 50%;\n }\n }\n .group-data-\\[orientation\\=horizontal\\]\\/tabs\\:h-9 {\n &:is(:where(.group\\/tabs)[data-orientation=\"horizontal\"] *) {\n height: calc(var(--spacing) * 9);\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:h-fit {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n height: fit-content;\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:w-full {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n width: 100%;\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:flex-col {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n flex-direction: column;\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:justify-start {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n justify-content: flex-start;\n }\n }\n .group-data-\\[side\\=left\\]\\:-right-4 {\n &:is(:where(.group)[data-side=\"left\"] *) {\n right: calc(var(--spacing) * -4);\n }\n }\n .group-data-\\[side\\=left\\]\\:border-r {\n &:is(:where(.group)[data-side=\"left\"] *) {\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n }\n }\n .group-data-\\[side\\=right\\]\\:left-0 {\n &:is(:where(.group)[data-side=\"right\"] *) {\n left: calc(var(--spacing) * 0);\n }\n }\n .group-data-\\[side\\=right\\]\\:rotate-180 {\n &:is(:where(.group)[data-side=\"right\"] *) {\n rotate: 180deg;\n }\n }\n .group-data-\\[side\\=right\\]\\:border-l {\n &:is(:where(.group)[data-side=\"right\"] *) {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n }\n .group-data-\\[size\\=default\\]\\/avatar\\:size-2\\.5 {\n &:is(:where(.group\\/avatar)[data-size=\"default\"] *) {\n width: calc(var(--spacing) * 2.5);\n height: calc(var(--spacing) * 2.5);\n }\n }\n .group-data-\\[size\\=lg\\]\\/avatar\\:size-3 {\n &:is(:where(.group\\/avatar)[data-size=\"lg\"] *) {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n }\n .group-data-\\[size\\=sm\\]\\/avatar\\:size-2 {\n &:is(:where(.group\\/avatar)[data-size=\"sm\"] *) {\n width: calc(var(--spacing) * 2);\n height: calc(var(--spacing) * 2);\n }\n }\n .group-data-\\[size\\=sm\\]\\/avatar\\:text-xs {\n &:is(:where(.group\\/avatar)[data-size=\"sm\"] *) {\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n }\n }\n .group-data-\\[variant\\=floating\\]\\:rounded-lg {\n &:is(:where(.group)[data-variant=\"floating\"] *) {\n border-radius: var(--radius);\n }\n }\n .group-data-\\[variant\\=floating\\]\\:border {\n &:is(:where(.group)[data-variant=\"floating\"] *) {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n }\n .group-data-\\[variant\\=floating\\]\\:border-sidebar-border {\n &:is(:where(.group)[data-variant=\"floating\"] *) {\n border-color: var(--sidebar-border);\n }\n }\n .group-data-\\[variant\\=floating\\]\\:shadow-sm {\n &:is(:where(.group)[data-variant=\"floating\"] *) {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .group-data-\\[variant\\=line\\]\\/tabs-list\\:bg-transparent {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n background-color: transparent;\n }\n }\n .group-data-\\[variant\\=outline\\]\\/field-group\\:-mb-2 {\n &:is(:where(.group\\/field-group)[data-variant=\"outline\"] *) {\n margin-bottom: calc(var(--spacing) * -2);\n }\n }\n .group-data-\\[vaul-drawer-direction\\=bottom\\]\\/drawer-content\\:block {\n &:is(:where(.group\\/drawer-content)[data-vaul-drawer-direction=\"bottom\"] *) {\n display: block;\n }\n }\n .group-data-\\[vaul-drawer-direction\\=bottom\\]\\/drawer-content\\:text-center {\n &:is(:where(.group\\/drawer-content)[data-vaul-drawer-direction=\"bottom\"] *) {\n text-align: center;\n }\n }\n .group-data-\\[vaul-drawer-direction\\=top\\]\\/drawer-content\\:text-center {\n &:is(:where(.group\\/drawer-content)[data-vaul-drawer-direction=\"top\"] *) {\n text-align: center;\n }\n }\n .peer-hover\\/menu-button\\:text-sidebar-accent-foreground {\n &:is(:where(.peer\\/menu-button):hover ~ *) {\n @media (hover: hover) {\n color: var(--sidebar-accent-foreground);\n }\n }\n }\n .peer-disabled\\:cursor-not-allowed {\n &:is(:where(.peer):disabled ~ *) {\n cursor: not-allowed;\n }\n }\n .peer-disabled\\:opacity-50 {\n &:is(:where(.peer):disabled ~ *) {\n opacity: 50%;\n }\n }\n .peer-data-\\[active\\=true\\]\\/menu-button\\:text-sidebar-accent-foreground {\n &:is(:where(.peer\\/menu-button)[data-active=\"true\"] ~ *) {\n color: var(--sidebar-accent-foreground);\n }\n }\n .peer-data-\\[size\\=default\\]\\/menu-button\\:top-1\\.5 {\n &:is(:where(.peer\\/menu-button)[data-size=\"default\"] ~ *) {\n top: calc(var(--spacing) * 1.5);\n }\n }\n .peer-data-\\[size\\=lg\\]\\/menu-button\\:top-2\\.5 {\n &:is(:where(.peer\\/menu-button)[data-size=\"lg\"] ~ *) {\n top: calc(var(--spacing) * 2.5);\n }\n }\n .peer-data-\\[size\\=sm\\]\\/menu-button\\:top-1 {\n &:is(:where(.peer\\/menu-button)[data-size=\"sm\"] ~ *) {\n top: calc(var(--spacing) * 1);\n }\n }\n .selection\\:bg-primary {\n & *::selection {\n background-color: var(--primary);\n }\n &::selection {\n background-color: var(--primary);\n }\n }\n .selection\\:text-primary-foreground {\n & *::selection {\n color: var(--primary-foreground);\n }\n &::selection {\n color: var(--primary-foreground);\n }\n }\n .file\\:inline-flex {\n &::file-selector-button {\n display: inline-flex;\n }\n }\n .file\\:h-7 {\n &::file-selector-button {\n height: calc(var(--spacing) * 7);\n }\n }\n .file\\:border-0 {\n &::file-selector-button {\n border-style: var(--tw-border-style);\n border-width: 0px;\n }\n }\n .file\\:bg-transparent {\n &::file-selector-button {\n background-color: transparent;\n }\n }\n .file\\:text-sm {\n &::file-selector-button {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .file\\:font-medium {\n &::file-selector-button {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n }\n .file\\:text-foreground {\n &::file-selector-button {\n color: var(--foreground);\n }\n }\n .placeholder\\:text-muted-foreground {\n &::placeholder {\n color: var(--muted-foreground);\n }\n }\n .after\\:absolute {\n &::after {\n content: var(--tw-content);\n position: absolute;\n }\n }\n .after\\:-inset-2 {\n &::after {\n content: var(--tw-content);\n inset: calc(var(--spacing) * -2);\n }\n }\n .after\\:inset-y-0 {\n &::after {\n content: var(--tw-content);\n inset-block: calc(var(--spacing) * 0);\n }\n }\n .after\\:left-1\\/2 {\n &::after {\n content: var(--tw-content);\n left: calc(1 / 2 * 100%);\n }\n }\n .after\\:w-0\\.5 {\n &::after {\n content: var(--tw-content);\n width: calc(var(--spacing) * 0.5);\n }\n }\n .after\\:bg-foreground {\n &::after {\n content: var(--tw-content);\n background-color: var(--foreground);\n }\n }\n .after\\:opacity-0 {\n &::after {\n content: var(--tw-content);\n opacity: 0%;\n }\n }\n .after\\:transition-opacity {\n &::after {\n content: var(--tw-content);\n transition-property: opacity;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:after\\:left-full {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n &::after {\n content: var(--tw-content);\n left: 100%;\n }\n }\n }\n .group-data-\\[orientation\\=horizontal\\]\\/tabs\\:after\\:inset-x-0 {\n &:is(:where(.group\\/tabs)[data-orientation=\"horizontal\"] *) {\n &::after {\n content: var(--tw-content);\n inset-inline: calc(var(--spacing) * 0);\n }\n }\n }\n .group-data-\\[orientation\\=horizontal\\]\\/tabs\\:after\\:bottom-\\[-5px\\] {\n &:is(:where(.group\\/tabs)[data-orientation=\"horizontal\"] *) {\n &::after {\n content: var(--tw-content);\n bottom: -5px;\n }\n }\n }\n .group-data-\\[orientation\\=horizontal\\]\\/tabs\\:after\\:h-0\\.5 {\n &:is(:where(.group\\/tabs)[data-orientation=\"horizontal\"] *) {\n &::after {\n content: var(--tw-content);\n height: calc(var(--spacing) * 0.5);\n }\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:after\\:inset-y-0 {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n &::after {\n content: var(--tw-content);\n inset-block: calc(var(--spacing) * 0);\n }\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:after\\:-right-1 {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n &::after {\n content: var(--tw-content);\n right: calc(var(--spacing) * -1);\n }\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:after\\:w-0\\.5 {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n &::after {\n content: var(--tw-content);\n width: calc(var(--spacing) * 0.5);\n }\n }\n }\n .last\\:mt-0 {\n &:last-child {\n margin-top: calc(var(--spacing) * 0);\n }\n }\n .hover\\:border-transparent {\n &:hover {\n @media (hover: hover) {\n border-color: transparent;\n }\n }\n }\n .hover\\:bg-\\[\\#383838\\] {\n &:hover {\n @media (hover: hover) {\n background-color: #383838;\n }\n }\n }\n .hover\\:bg-accent {\n &:hover {\n @media (hover: hover) {\n background-color: var(--accent);\n }\n }\n }\n .hover\\:bg-black\\/4 {\n &:hover {\n @media (hover: hover) {\n background-color: color-mix(in srgb, #000 4%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 4%, transparent);\n }\n }\n }\n }\n .hover\\:bg-destructive\\/90 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 90%, transparent);\n }\n }\n }\n }\n .hover\\:bg-muted {\n &:hover {\n @media (hover: hover) {\n background-color: var(--muted);\n }\n }\n }\n .hover\\:bg-muted\\/50 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--muted);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--muted) 50%, transparent);\n }\n }\n }\n }\n .hover\\:bg-primary\\/90 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 90%, transparent);\n }\n }\n }\n }\n .hover\\:bg-secondary\\/80 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--secondary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--secondary) 80%, transparent);\n }\n }\n }\n }\n .hover\\:bg-sidebar-accent {\n &:hover {\n @media (hover: hover) {\n background-color: var(--sidebar-accent);\n }\n }\n }\n .hover\\:text-accent-foreground {\n &:hover {\n @media (hover: hover) {\n color: var(--accent-foreground);\n }\n }\n }\n .hover\\:text-foreground {\n &:hover {\n @media (hover: hover) {\n color: var(--foreground);\n }\n }\n }\n .hover\\:text-sidebar-accent-foreground {\n &:hover {\n @media (hover: hover) {\n color: var(--sidebar-accent-foreground);\n }\n }\n }\n .hover\\:underline {\n &:hover {\n @media (hover: hover) {\n text-decoration-line: underline;\n }\n }\n }\n .hover\\:opacity-100 {\n &:hover {\n @media (hover: hover) {\n opacity: 100%;\n }\n }\n }\n .hover\\:shadow-\\[0_0_0_1px_hsl\\(var\\(--sidebar-accent\\)\\)\\] {\n &:hover {\n @media (hover: hover) {\n --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-accent)));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .hover\\:group-data-\\[collapsible\\=offcanvas\\]\\:bg-sidebar {\n &:hover {\n @media (hover: hover) {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n background-color: var(--sidebar);\n }\n }\n }\n }\n .hover\\:after\\:bg-sidebar-border {\n &:hover {\n @media (hover: hover) {\n &::after {\n content: var(--tw-content);\n background-color: var(--sidebar-border);\n }\n }\n }\n }\n .focus\\:bg-accent {\n &:focus {\n background-color: var(--accent);\n }\n }\n .focus\\:text-accent-foreground {\n &:focus {\n color: var(--accent-foreground);\n }\n }\n .focus\\:ring-2 {\n &:focus {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus\\:ring-ring {\n &:focus {\n --tw-ring-color: var(--ring);\n }\n }\n .focus\\:ring-offset-2 {\n &:focus {\n --tw-ring-offset-width: 2px;\n --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n }\n }\n .focus\\:outline-hidden {\n &:focus {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n }\n .focus-visible\\:border-ring {\n &:focus-visible {\n border-color: var(--ring);\n }\n }\n .focus-visible\\:ring-2 {\n &:focus-visible {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus-visible\\:ring-\\[3px\\] {\n &:focus-visible {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus-visible\\:ring-destructive\\/20 {\n &:focus-visible {\n --tw-ring-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);\n }\n }\n }\n .focus-visible\\:ring-ring\\/50 {\n &:focus-visible {\n --tw-ring-color: var(--ring);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);\n }\n }\n }\n .focus-visible\\:outline-1 {\n &:focus-visible {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n }\n .focus-visible\\:outline-ring {\n &:focus-visible {\n outline-color: var(--ring);\n }\n }\n .active\\:bg-sidebar-accent {\n &:active {\n background-color: var(--sidebar-accent);\n }\n }\n .active\\:text-sidebar-accent-foreground {\n &:active {\n color: var(--sidebar-accent-foreground);\n }\n }\n .disabled\\:pointer-events-none {\n &:disabled {\n pointer-events: none;\n }\n }\n .disabled\\:cursor-not-allowed {\n &:disabled {\n cursor: not-allowed;\n }\n }\n .disabled\\:opacity-50 {\n &:disabled {\n opacity: 50%;\n }\n }\n .in-data-\\[side\\=left\\]\\:cursor-w-resize {\n :where(*[data-side=\"left\"]) & {\n cursor: w-resize;\n }\n }\n .in-data-\\[side\\=right\\]\\:cursor-e-resize {\n :where(*[data-side=\"right\"]) & {\n cursor: e-resize;\n }\n }\n .has-data-\\[slot\\=card-action\\]\\:grid-cols-\\[1fr_auto\\] {\n &:has(*[data-slot=\"card-action\"]) {\n grid-template-columns: 1fr auto;\n }\n }\n .has-data-\\[state\\=checked\\]\\:border-primary {\n &:has(*[data-state=\"checked\"]) {\n border-color: var(--primary);\n }\n }\n .has-data-\\[state\\=checked\\]\\:bg-primary\\/5 {\n &:has(*[data-state=\"checked\"]) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 5%, transparent);\n }\n }\n }\n .has-data-\\[variant\\=inset\\]\\:bg-sidebar {\n &:has(*[data-variant=\"inset\"]) {\n background-color: var(--sidebar);\n }\n }\n .has-\\[\\>\\[data-slot\\=checkbox-group\\]\\]\\:gap-3 {\n &:has(>[data-slot=checkbox-group]) {\n gap: calc(var(--spacing) * 3);\n }\n }\n .has-\\[\\>\\[data-slot\\=field-content\\]\\]\\:items-start {\n &:has(>[data-slot=field-content]) {\n align-items: flex-start;\n }\n }\n .has-\\[\\>\\[data-slot\\=field\\]\\]\\:w-full {\n &:has(>[data-slot=field]) {\n width: 100%;\n }\n }\n .has-\\[\\>\\[data-slot\\=field\\]\\]\\:flex-col {\n &:has(>[data-slot=field]) {\n flex-direction: column;\n }\n }\n .has-\\[\\>\\[data-slot\\=field\\]\\]\\:rounded-md {\n &:has(>[data-slot=field]) {\n border-radius: calc(var(--radius) - 2px);\n }\n }\n .has-\\[\\>\\[data-slot\\=field\\]\\]\\:border {\n &:has(>[data-slot=field]) {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n }\n .has-\\[\\>\\[data-slot\\=radio-group\\]\\]\\:gap-3 {\n &:has(>[data-slot=radio-group]) {\n gap: calc(var(--spacing) * 3);\n }\n }\n .has-\\[\\>svg\\]\\:px-1\\.5 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 1.5);\n }\n }\n .has-\\[\\>svg\\]\\:px-2\\.5 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 2.5);\n }\n }\n .has-\\[\\>svg\\]\\:px-3 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 3);\n }\n }\n .has-\\[\\>svg\\]\\:px-4 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 4);\n }\n }\n .aria-disabled\\:pointer-events-none {\n &[aria-disabled=\"true\"] {\n pointer-events: none;\n }\n }\n .aria-disabled\\:opacity-50 {\n &[aria-disabled=\"true\"] {\n opacity: 50%;\n }\n }\n .aria-invalid\\:border-destructive {\n &[aria-invalid=\"true\"] {\n border-color: var(--destructive);\n }\n }\n .aria-invalid\\:ring-destructive\\/20 {\n &[aria-invalid=\"true\"] {\n --tw-ring-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);\n }\n }\n }\n .data-\\[active\\=true\\]\\:bg-sidebar-accent {\n &[data-active=\"true\"] {\n background-color: var(--sidebar-accent);\n }\n }\n .data-\\[active\\=true\\]\\:font-medium {\n &[data-active=\"true\"] {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n }\n .data-\\[active\\=true\\]\\:text-sidebar-accent-foreground {\n &[data-active=\"true\"] {\n color: var(--sidebar-accent-foreground);\n }\n }\n .data-\\[disabled\\]\\:pointer-events-none {\n &[data-disabled] {\n pointer-events: none;\n }\n }\n .data-\\[disabled\\]\\:opacity-50 {\n &[data-disabled] {\n opacity: 50%;\n }\n }\n .data-\\[inset\\]\\:pl-8 {\n &[data-inset] {\n padding-left: calc(var(--spacing) * 8);\n }\n }\n .data-\\[invalid\\=true\\]\\:text-destructive {\n &[data-invalid=\"true\"] {\n color: var(--destructive);\n }\n }\n .data-\\[orientation\\=horizontal\\]\\:h-px {\n &[data-orientation=\"horizontal\"] {\n height: 1px;\n }\n }\n .data-\\[orientation\\=horizontal\\]\\:w-full {\n &[data-orientation=\"horizontal\"] {\n width: 100%;\n }\n }\n .data-\\[orientation\\=horizontal\\]\\:flex-col {\n &[data-orientation=\"horizontal\"] {\n flex-direction: column;\n }\n }\n .data-\\[orientation\\=vertical\\]\\:h-4 {\n &[data-orientation=\"vertical\"] {\n height: calc(var(--spacing) * 4);\n }\n }\n .data-\\[orientation\\=vertical\\]\\:h-full {\n &[data-orientation=\"vertical\"] {\n height: 100%;\n }\n }\n .data-\\[orientation\\=vertical\\]\\:w-px {\n &[data-orientation=\"vertical\"] {\n width: 1px;\n }\n }\n .data-\\[placeholder\\]\\:text-muted-foreground {\n &[data-placeholder] {\n color: var(--muted-foreground);\n }\n }\n .data-\\[side\\=bottom\\]\\:translate-y-1 {\n &[data-side=\"bottom\"] {\n --tw-translate-y: calc(var(--spacing) * 1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=bottom\\]\\:slide-in-from-top-2 {\n &[data-side=\"bottom\"] {\n --tw-enter-translate-y: calc(2*var(--spacing)*-1);\n }\n }\n .data-\\[side\\=left\\]\\:-translate-x-1 {\n &[data-side=\"left\"] {\n --tw-translate-x: calc(var(--spacing) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=left\\]\\:slide-in-from-right-2 {\n &[data-side=\"left\"] {\n --tw-enter-translate-x: calc(2*var(--spacing));\n }\n }\n .data-\\[side\\=right\\]\\:translate-x-1 {\n &[data-side=\"right\"] {\n --tw-translate-x: calc(var(--spacing) * 1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=right\\]\\:slide-in-from-left-2 {\n &[data-side=\"right\"] {\n --tw-enter-translate-x: calc(2*var(--spacing)*-1);\n }\n }\n .data-\\[side\\=top\\]\\:-translate-y-1 {\n &[data-side=\"top\"] {\n --tw-translate-y: calc(var(--spacing) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=top\\]\\:slide-in-from-bottom-2 {\n &[data-side=\"top\"] {\n --tw-enter-translate-y: calc(2*var(--spacing));\n }\n }\n .data-\\[size\\=default\\]\\:h-9 {\n &[data-size=\"default\"] {\n height: calc(var(--spacing) * 9);\n }\n }\n .data-\\[size\\=lg\\]\\:size-10 {\n &[data-size=\"lg\"] {\n width: calc(var(--spacing) * 10);\n height: calc(var(--spacing) * 10);\n }\n }\n .data-\\[size\\=sm\\]\\:size-6 {\n &[data-size=\"sm\"] {\n width: calc(var(--spacing) * 6);\n height: calc(var(--spacing) * 6);\n }\n }\n .data-\\[size\\=sm\\]\\:h-8 {\n &[data-size=\"sm\"] {\n height: calc(var(--spacing) * 8);\n }\n }\n .\\*\\:data-\\[slot\\=avatar\\]\\:ring-2 {\n :is(& > *) {\n &[data-slot=\"avatar\"] {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .\\*\\:data-\\[slot\\=avatar\\]\\:ring-background {\n :is(& > *) {\n &[data-slot=\"avatar\"] {\n --tw-ring-color: var(--background);\n }\n }\n }\n .data-\\[slot\\=checkbox-group\\]\\:gap-3 {\n &[data-slot=\"checkbox-group\"] {\n gap: calc(var(--spacing) * 3);\n }\n }\n .\\*\\:data-\\[slot\\=field\\]\\:p-4 {\n :is(& > *) {\n &[data-slot=\"field\"] {\n padding: calc(var(--spacing) * 4);\n }\n }\n }\n .\\*\\:data-\\[slot\\=field-group\\]\\:gap-4 {\n :is(& > *) {\n &[data-slot=\"field-group\"] {\n gap: calc(var(--spacing) * 4);\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:line-clamp-1 {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n overflow: hidden;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 1;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:flex {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n display: flex;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:items-center {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n align-items: center;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:gap-2 {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n gap: calc(var(--spacing) * 2);\n }\n }\n }\n .data-\\[slot\\=sidebar-menu-button\\]\\:p-1\\.5\\! {\n &[data-slot=\"sidebar-menu-button\"] {\n padding: calc(var(--spacing) * 1.5) !important;\n }\n }\n .data-\\[state\\=active\\]\\:bg-background {\n &[data-state=\"active\"] {\n background-color: var(--background);\n }\n }\n .data-\\[state\\=active\\]\\:text-foreground {\n &[data-state=\"active\"] {\n color: var(--foreground);\n }\n }\n .group-data-\\[variant\\=default\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:shadow-sm {\n &:is(:where(.group\\/tabs-list)[data-variant=\"default\"] *) {\n &[data-state=\"active\"] {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:bg-transparent {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n background-color: transparent;\n }\n }\n }\n .group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:shadow-none {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n --tw-shadow: 0 0 #0000;\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:after\\:opacity-100 {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n &::after {\n content: var(--tw-content);\n opacity: 100%;\n }\n }\n }\n }\n .data-\\[state\\=checked\\]\\:border-primary {\n &[data-state=\"checked\"] {\n border-color: var(--primary);\n }\n }\n .data-\\[state\\=checked\\]\\:bg-primary {\n &[data-state=\"checked\"] {\n background-color: var(--primary);\n }\n }\n .data-\\[state\\=checked\\]\\:text-primary-foreground {\n &[data-state=\"checked\"] {\n color: var(--primary-foreground);\n }\n }\n .data-\\[state\\=closed\\]\\:animate-out {\n &[data-state=\"closed\"] {\n animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);\n }\n }\n .data-\\[state\\=closed\\]\\:duration-300 {\n &[data-state=\"closed\"] {\n --tw-duration: 300ms;\n transition-duration: 300ms;\n }\n }\n .data-\\[state\\=closed\\]\\:fade-out-0 {\n &[data-state=\"closed\"] {\n --tw-exit-opacity: calc(0/100);\n --tw-exit-opacity: 0;\n }\n }\n .data-\\[state\\=closed\\]\\:zoom-out-95 {\n &[data-state=\"closed\"] {\n --tw-exit-scale: calc(95*1%);\n --tw-exit-scale: .95;\n }\n }\n .data-\\[state\\=closed\\]\\:slide-out-to-bottom {\n &[data-state=\"closed\"] {\n --tw-exit-translate-y: 100%;\n }\n }\n .data-\\[state\\=closed\\]\\:slide-out-to-left {\n &[data-state=\"closed\"] {\n --tw-exit-translate-x: -100%;\n }\n }\n .data-\\[state\\=closed\\]\\:slide-out-to-right {\n &[data-state=\"closed\"] {\n --tw-exit-translate-x: 100%;\n }\n }\n .data-\\[state\\=closed\\]\\:slide-out-to-top {\n &[data-state=\"closed\"] {\n --tw-exit-translate-y: -100%;\n }\n }\n .data-\\[state\\=open\\]\\:animate-in {\n &[data-state=\"open\"] {\n animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);\n }\n }\n .data-\\[state\\=open\\]\\:bg-accent {\n &[data-state=\"open\"] {\n background-color: var(--accent);\n }\n }\n .data-\\[state\\=open\\]\\:bg-secondary {\n &[data-state=\"open\"] {\n background-color: var(--secondary);\n }\n }\n .data-\\[state\\=open\\]\\:bg-sidebar-accent {\n &[data-state=\"open\"] {\n background-color: var(--sidebar-accent);\n }\n }\n .data-\\[state\\=open\\]\\:text-accent-foreground {\n &[data-state=\"open\"] {\n color: var(--accent-foreground);\n }\n }\n .data-\\[state\\=open\\]\\:text-muted-foreground {\n &[data-state=\"open\"] {\n color: var(--muted-foreground);\n }\n }\n .data-\\[state\\=open\\]\\:text-sidebar-accent-foreground {\n &[data-state=\"open\"] {\n color: var(--sidebar-accent-foreground);\n }\n }\n .data-\\[state\\=open\\]\\:opacity-100 {\n &[data-state=\"open\"] {\n opacity: 100%;\n }\n }\n .data-\\[state\\=open\\]\\:duration-500 {\n &[data-state=\"open\"] {\n --tw-duration: 500ms;\n transition-duration: 500ms;\n }\n }\n .data-\\[state\\=open\\]\\:fade-in-0 {\n &[data-state=\"open\"] {\n --tw-enter-opacity: calc(0/100);\n --tw-enter-opacity: 0;\n }\n }\n .data-\\[state\\=open\\]\\:zoom-in-95 {\n &[data-state=\"open\"] {\n --tw-enter-scale: calc(95*1%);\n --tw-enter-scale: .95;\n }\n }\n .data-\\[state\\=open\\]\\:slide-in-from-bottom {\n &[data-state=\"open\"] {\n --tw-enter-translate-y: 100%;\n }\n }\n .data-\\[state\\=open\\]\\:slide-in-from-left {\n &[data-state=\"open\"] {\n --tw-enter-translate-x: -100%;\n }\n }\n .data-\\[state\\=open\\]\\:slide-in-from-right {\n &[data-state=\"open\"] {\n --tw-enter-translate-x: 100%;\n }\n }\n .data-\\[state\\=open\\]\\:slide-in-from-top {\n &[data-state=\"open\"] {\n --tw-enter-translate-y: -100%;\n }\n }\n .data-\\[state\\=open\\]\\:hover\\:bg-sidebar-accent {\n &[data-state=\"open\"] {\n &:hover {\n @media (hover: hover) {\n background-color: var(--sidebar-accent);\n }\n }\n }\n }\n .data-\\[state\\=open\\]\\:hover\\:text-sidebar-accent-foreground {\n &[data-state=\"open\"] {\n &:hover {\n @media (hover: hover) {\n color: var(--sidebar-accent-foreground);\n }\n }\n }\n }\n .data-\\[state\\=selected\\]\\:bg-muted {\n &[data-state=\"selected\"] {\n background-color: var(--muted);\n }\n }\n .data-\\[variant\\=destructive\\]\\:text-destructive {\n &[data-variant=\"destructive\"] {\n color: var(--destructive);\n }\n }\n .data-\\[variant\\=destructive\\]\\:focus\\:bg-destructive\\/10 {\n &[data-variant=\"destructive\"] {\n &:focus {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 10%, transparent);\n }\n }\n }\n }\n .data-\\[variant\\=destructive\\]\\:focus\\:text-destructive {\n &[data-variant=\"destructive\"] {\n &:focus {\n color: var(--destructive);\n }\n }\n }\n .data-\\[variant\\=label\\]\\:text-sm {\n &[data-variant=\"label\"] {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .data-\\[variant\\=legend\\]\\:text-base {\n &[data-variant=\"legend\"] {\n font-size: var(--text-base);\n line-height: var(--tw-leading, var(--text-base--line-height));\n }\n }\n .data-\\[variant\\=line\\]\\:rounded-none {\n &[data-variant=\"line\"] {\n border-radius: 0;\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:inset-x-0 {\n &[data-vaul-drawer-direction=\"bottom\"] {\n inset-inline: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:bottom-0 {\n &[data-vaul-drawer-direction=\"bottom\"] {\n bottom: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:mt-24 {\n &[data-vaul-drawer-direction=\"bottom\"] {\n margin-top: calc(var(--spacing) * 24);\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:max-h-\\[80vh\\] {\n &[data-vaul-drawer-direction=\"bottom\"] {\n max-height: 80vh;\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:rounded-t-lg {\n &[data-vaul-drawer-direction=\"bottom\"] {\n border-top-left-radius: var(--radius);\n border-top-right-radius: var(--radius);\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:border-t {\n &[data-vaul-drawer-direction=\"bottom\"] {\n border-top-style: var(--tw-border-style);\n border-top-width: 1px;\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:inset-y-0 {\n &[data-vaul-drawer-direction=\"left\"] {\n inset-block: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:left-0 {\n &[data-vaul-drawer-direction=\"left\"] {\n left: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:w-3\\/4 {\n &[data-vaul-drawer-direction=\"left\"] {\n width: calc(3 / 4 * 100%);\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:border-r {\n &[data-vaul-drawer-direction=\"left\"] {\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:inset-y-0 {\n &[data-vaul-drawer-direction=\"right\"] {\n inset-block: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:right-0 {\n &[data-vaul-drawer-direction=\"right\"] {\n right: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:w-3\\/4 {\n &[data-vaul-drawer-direction=\"right\"] {\n width: calc(3 / 4 * 100%);\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:border-l {\n &[data-vaul-drawer-direction=\"right\"] {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:inset-x-0 {\n &[data-vaul-drawer-direction=\"top\"] {\n inset-inline: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:top-0 {\n &[data-vaul-drawer-direction=\"top\"] {\n top: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:mb-24 {\n &[data-vaul-drawer-direction=\"top\"] {\n margin-bottom: calc(var(--spacing) * 24);\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:max-h-\\[80vh\\] {\n &[data-vaul-drawer-direction=\"top\"] {\n max-height: 80vh;\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:rounded-b-lg {\n &[data-vaul-drawer-direction=\"top\"] {\n border-bottom-right-radius: var(--radius);\n border-bottom-left-radius: var(--radius);\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:border-b {\n &[data-vaul-drawer-direction=\"top\"] {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n }\n }\n .nth-last-2\\:-mt-1 {\n &:nth-last-child(2) {\n margin-top: calc(var(--spacing) * -1);\n }\n }\n .sm\\:flex {\n @media (width >= 40rem) {\n display: flex;\n }\n }\n .sm\\:w-40 {\n @media (width >= 40rem) {\n width: calc(var(--spacing) * 40);\n }\n }\n .sm\\:w-48 {\n @media (width >= 40rem) {\n width: calc(var(--spacing) * 48);\n }\n }\n .sm\\:max-w-2xl {\n @media (width >= 40rem) {\n max-width: var(--container-2xl);\n }\n }\n .sm\\:max-w-lg {\n @media (width >= 40rem) {\n max-width: var(--container-lg);\n }\n }\n .sm\\:max-w-sm {\n @media (width >= 40rem) {\n max-width: var(--container-sm);\n }\n }\n .sm\\:grid-cols-2 {\n @media (width >= 40rem) {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n }\n }\n .sm\\:flex-row {\n @media (width >= 40rem) {\n flex-direction: row;\n }\n }\n .sm\\:items-start {\n @media (width >= 40rem) {\n align-items: flex-start;\n }\n }\n .sm\\:justify-end {\n @media (width >= 40rem) {\n justify-content: flex-end;\n }\n }\n .sm\\:text-left {\n @media (width >= 40rem) {\n text-align: left;\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:sm\\:max-w-sm {\n &[data-vaul-drawer-direction=\"left\"] {\n @media (width >= 40rem) {\n max-width: var(--container-sm);\n }\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:sm\\:max-w-sm {\n &[data-vaul-drawer-direction=\"right\"] {\n @media (width >= 40rem) {\n max-width: var(--container-sm);\n }\n }\n }\n .md\\:block {\n @media (width >= 48rem) {\n display: block;\n }\n }\n .md\\:flex {\n @media (width >= 48rem) {\n display: flex;\n }\n }\n .md\\:hidden {\n @media (width >= 48rem) {\n display: none;\n }\n }\n .md\\:w-39\\.5 {\n @media (width >= 48rem) {\n width: calc(var(--spacing) * 39.5);\n }\n }\n .md\\:gap-1\\.5 {\n @media (width >= 48rem) {\n gap: calc(var(--spacing) * 1.5);\n }\n }\n .md\\:p-6 {\n @media (width >= 48rem) {\n padding: calc(var(--spacing) * 6);\n }\n }\n .md\\:text-left {\n @media (width >= 48rem) {\n text-align: left;\n }\n }\n .md\\:text-sm {\n @media (width >= 48rem) {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .md\\:opacity-0 {\n @media (width >= 48rem) {\n opacity: 0%;\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:m-2 {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n margin: calc(var(--spacing) * 2);\n }\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:ml-0 {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n margin-left: calc(var(--spacing) * 0);\n }\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:rounded-xl {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n border-radius: calc(var(--radius) + 4px);\n }\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:shadow-sm {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:peer-data-\\[state\\=collapsed\\]\\:ml-2 {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n &:is(:where(.peer)[data-state=\"collapsed\"] ~ *) {\n margin-left: calc(var(--spacing) * 2);\n }\n }\n }\n }\n .md\\:after\\:hidden {\n @media (width >= 48rem) {\n &::after {\n content: var(--tw-content);\n display: none;\n }\n }\n }\n .lg\\:table-cell {\n @media (width >= 64rem) {\n display: table-cell;\n }\n }\n .lg\\:grid-cols-2 {\n @media (width >= 64rem) {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n }\n }\n .lg\\:grid-cols-4 {\n @media (width >= 64rem) {\n grid-template-columns: repeat(4, minmax(0, 1fr));\n }\n }\n .lg\\:px-6 {\n @media (width >= 64rem) {\n padding-inline: calc(var(--spacing) * 6);\n }\n }\n .\\@md\\/field-group\\:flex-row {\n @container field-group (width >= 28rem) {\n flex-direction: row;\n }\n }\n .\\@md\\/field-group\\:items-center {\n @container field-group (width >= 28rem) {\n align-items: center;\n }\n }\n .\\@md\\/field-group\\:has-\\[\\>\\[data-slot\\=field-content\\]\\]\\:items-start {\n @container field-group (width >= 28rem) {\n &:has(>[data-slot=field-content]) {\n align-items: flex-start;\n }\n }\n }\n .dark\\:border-input {\n &:is(.dark *) {\n border-color: var(--input);\n }\n }\n .dark\\:border-white\\/\\[\\.145\\] {\n &:is(.dark *) {\n border-color: color-mix(in srgb, #fff 14.499999999999998%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--color-white) 14.499999999999998%, transparent);\n }\n }\n }\n .dark\\:bg-black {\n &:is(.dark *) {\n background-color: var(--color-black);\n }\n }\n .dark\\:bg-destructive\\/60 {\n &:is(.dark *) {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 60%, transparent);\n }\n }\n }\n .dark\\:bg-input\\/30 {\n &:is(.dark *) {\n background-color: var(--input);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--input) 30%, transparent);\n }\n }\n }\n .dark\\:text-muted-foreground {\n &:is(.dark *) {\n color: var(--muted-foreground);\n }\n }\n .dark\\:text-zinc-50 {\n &:is(.dark *) {\n color: var(--color-zinc-50);\n }\n }\n .dark\\:text-zinc-400 {\n &:is(.dark *) {\n color: var(--color-zinc-400);\n }\n }\n .dark\\:invert {\n &:is(.dark *) {\n --tw-invert: invert(100%);\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n }\n .dark\\:hover\\:bg-\\[\\#1a1a1a\\] {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n background-color: #1a1a1a;\n }\n }\n }\n }\n .dark\\:hover\\:bg-\\[\\#ccc\\] {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n background-color: #ccc;\n }\n }\n }\n }\n .dark\\:hover\\:bg-accent\\/50 {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n background-color: var(--accent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--accent) 50%, transparent);\n }\n }\n }\n }\n }\n .dark\\:hover\\:bg-input\\/50 {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n background-color: var(--input);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--input) 50%, transparent);\n }\n }\n }\n }\n }\n .dark\\:hover\\:text-foreground {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n color: var(--foreground);\n }\n }\n }\n }\n .dark\\:focus-visible\\:ring-destructive\\/40 {\n &:is(.dark *) {\n &:focus-visible {\n --tw-ring-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);\n }\n }\n }\n }\n .dark\\:has-data-\\[state\\=checked\\]\\:bg-primary\\/10 {\n &:is(.dark *) {\n &:has(*[data-state=\"checked\"]) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 10%, transparent);\n }\n }\n }\n }\n .dark\\:aria-invalid\\:ring-destructive\\/40 {\n &:is(.dark *) {\n &[aria-invalid=\"true\"] {\n --tw-ring-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);\n }\n }\n }\n }\n .dark\\:data-\\[state\\=active\\]\\:border-input {\n &:is(.dark *) {\n &[data-state=\"active\"] {\n border-color: var(--input);\n }\n }\n }\n .dark\\:data-\\[state\\=active\\]\\:bg-input\\/30 {\n &:is(.dark *) {\n &[data-state=\"active\"] {\n background-color: var(--input);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--input) 30%, transparent);\n }\n }\n }\n }\n .dark\\:data-\\[state\\=active\\]\\:text-foreground {\n &:is(.dark *) {\n &[data-state=\"active\"] {\n color: var(--foreground);\n }\n }\n }\n .dark\\:group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:border-transparent {\n &:is(.dark *) {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n border-color: transparent;\n }\n }\n }\n }\n .dark\\:group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:bg-transparent {\n &:is(.dark *) {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n background-color: transparent;\n }\n }\n }\n }\n .dark\\:data-\\[state\\=checked\\]\\:bg-primary {\n &:is(.dark *) {\n &[data-state=\"checked\"] {\n background-color: var(--primary);\n }\n }\n }\n .dark\\:data-\\[variant\\=destructive\\]\\:focus\\:bg-destructive\\/20 {\n &:is(.dark *) {\n &[data-variant=\"destructive\"] {\n &:focus {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 20%, transparent);\n }\n }\n }\n }\n }\n .\\[\\&_\\.recharts-cartesian-axis-tick_text\\]\\:fill-muted-foreground {\n & .recharts-cartesian-axis-tick text {\n fill: var(--muted-foreground);\n }\n }\n .\\[\\&_\\.recharts-cartesian-grid_line\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border\\/50 {\n & .recharts-cartesian-grid line[stroke='#ccc'] {\n stroke: var(--border);\n @supports (color: color-mix(in lab, red, red)) {\n stroke: color-mix(in oklab, var(--border) 50%, transparent);\n }\n }\n }\n .\\[\\&_\\.recharts-curve\\.recharts-tooltip-cursor\\]\\:stroke-border {\n & .recharts-curve.recharts-tooltip-cursor {\n stroke: var(--border);\n }\n }\n .\\[\\&_\\.recharts-dot\\[stroke\\=\\'\\#fff\\'\\]\\]\\:stroke-transparent {\n & .recharts-dot[stroke='#fff'] {\n stroke: transparent;\n }\n }\n .\\[\\&_\\.recharts-layer\\]\\:outline-hidden {\n & .recharts-layer {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n }\n .\\[\\&_\\.recharts-polar-grid_\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border {\n & .recharts-polar-grid [stroke='#ccc'] {\n stroke: var(--border);\n }\n }\n .\\[\\&_\\.recharts-radial-bar-background-sector\\]\\:fill-muted {\n & .recharts-radial-bar-background-sector {\n fill: var(--muted);\n }\n }\n .\\[\\&_\\.recharts-rectangle\\.recharts-tooltip-cursor\\]\\:fill-muted {\n & .recharts-rectangle.recharts-tooltip-cursor {\n fill: var(--muted);\n }\n }\n .\\[\\&_\\.recharts-reference-line_\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border {\n & .recharts-reference-line [stroke='#ccc'] {\n stroke: var(--border);\n }\n }\n .\\[\\&_\\.recharts-sector\\]\\:outline-hidden {\n & .recharts-sector {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n }\n .\\[\\&_\\.recharts-sector\\[stroke\\=\\'\\#fff\\'\\]\\]\\:stroke-transparent {\n & .recharts-sector[stroke='#fff'] {\n stroke: transparent;\n }\n }\n .\\[\\&_\\.recharts-surface\\]\\:outline-hidden {\n & .recharts-surface {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n }\n .\\[\\&_svg\\]\\:pointer-events-none {\n & svg {\n pointer-events: none;\n }\n }\n .\\[\\&_svg\\]\\:shrink-0 {\n & svg {\n flex-shrink: 0;\n }\n }\n .\\[\\&_svg\\:not\\(\\[class\\*\\=\\'size-\\'\\]\\)\\]\\:size-3 {\n & svg:not([class*='size-']) {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n }\n .\\[\\&_svg\\:not\\(\\[class\\*\\=\\'size-\\'\\]\\)\\]\\:size-4 {\n & svg:not([class*='size-']) {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n }\n }\n .\\[\\&_svg\\:not\\(\\[class\\*\\=\\'text-\\'\\]\\)\\]\\:text-muted-foreground {\n & svg:not([class*='text-']) {\n color: var(--muted-foreground);\n }\n }\n .\\[\\&_tr\\]\\:border-b {\n & tr {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n }\n }\n .\\[\\&_tr\\:last-child\\]\\:border-0 {\n & tr:last-child {\n border-style: var(--tw-border-style);\n border-width: 0px;\n }\n }\n .\\[\\&\\:has\\(\\[role\\=checkbox\\]\\)\\]\\:pr-0 {\n &:has([role=checkbox]) {\n padding-right: calc(var(--spacing) * 0);\n }\n }\n .\\[\\.border-b\\]\\:pb-6 {\n &:is(.border-b) {\n padding-bottom: calc(var(--spacing) * 6);\n }\n }\n .\\[\\.border-t\\]\\:pt-6 {\n &:is(.border-t) {\n padding-top: calc(var(--spacing) * 6);\n }\n }\n .\\*\\:\\[span\\]\\:last\\:flex {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n display: flex;\n }\n }\n }\n }\n .\\*\\:\\[span\\]\\:last\\:items-center {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n align-items: center;\n }\n }\n }\n }\n .\\*\\:\\[span\\]\\:last\\:gap-2 {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n gap: calc(var(--spacing) * 2);\n }\n }\n }\n }\n .data-\\[variant\\=destructive\\]\\:\\*\\:\\[svg\\]\\:\\!text-destructive {\n &[data-variant=\"destructive\"] {\n :is(& > *) {\n &:is(svg) {\n color: var(--destructive) !important;\n }\n }\n }\n }\n .\\[\\&\\>\\*\\]\\:w-full {\n &>* {\n width: 100%;\n }\n }\n .\\@md\\/field-group\\:\\[\\&\\>\\*\\]\\:w-auto {\n @container field-group (width >= 28rem) {\n &>* {\n width: auto;\n }\n }\n }\n .\\[\\&\\>\\.sr-only\\]\\:w-auto {\n &>.sr-only {\n width: auto;\n }\n }\n .\\[\\&\\>\\[data-slot\\=field-label\\]\\]\\:flex-auto {\n &>[data-slot=field-label] {\n flex: auto;\n }\n }\n .\\@md\\/field-group\\:\\[\\&\\>\\[data-slot\\=field-label\\]\\]\\:flex-auto {\n @container field-group (width >= 28rem) {\n &>[data-slot=field-label] {\n flex: auto;\n }\n }\n }\n .\\[\\&\\>\\[role\\=checkbox\\]\\]\\:translate-y-\\[2px\\] {\n &>[role=checkbox] {\n --tw-translate-y: 2px;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .has-\\[\\>\\[data-slot\\=field-content\\]\\]\\:\\[\\&\\>\\[role\\=checkbox\\]\\,\\[role\\=radio\\]\\]\\:mt-px {\n &:has(>[data-slot=field-content]) {\n &>[role=checkbox],[role=radio] {\n margin-top: 1px;\n }\n }\n }\n .\\@md\\/field-group\\:has-\\[\\>\\[data-slot\\=field-content\\]\\]\\:\\[\\&\\>\\[role\\=checkbox\\]\\,\\[role\\=radio\\]\\]\\:mt-px {\n @container field-group (width >= 28rem) {\n &:has(>[data-slot=field-content]) {\n &>[role=checkbox],[role=radio] {\n margin-top: 1px;\n }\n }\n }\n }\n .\\[\\&\\>a\\]\\:underline {\n &>a {\n text-decoration-line: underline;\n }\n }\n .\\[\\&\\>a\\]\\:underline-offset-4 {\n &>a {\n text-underline-offset: 4px;\n }\n }\n .\\[\\&\\>a\\:hover\\]\\:text-primary {\n &>a:hover {\n color: var(--primary);\n }\n }\n .\\[\\&\\>button\\]\\:hidden {\n &>button {\n display: none;\n }\n }\n .\\[\\&\\>span\\:last-child\\]\\:truncate {\n &>span:last-child {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n }\n .\\[\\&\\>svg\\]\\:pointer-events-none {\n &>svg {\n pointer-events: none;\n }\n }\n .\\[\\&\\>svg\\]\\:size-3 {\n &>svg {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n }\n .\\[\\&\\>svg\\]\\:size-4 {\n &>svg {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n }\n }\n .\\[\\&\\>svg\\]\\:h-2\\.5 {\n &>svg {\n height: calc(var(--spacing) * 2.5);\n }\n }\n .\\[\\&\\>svg\\]\\:h-3 {\n &>svg {\n height: calc(var(--spacing) * 3);\n }\n }\n .\\[\\&\\>svg\\]\\:w-2\\.5 {\n &>svg {\n width: calc(var(--spacing) * 2.5);\n }\n }\n .\\[\\&\\>svg\\]\\:w-3 {\n &>svg {\n width: calc(var(--spacing) * 3);\n }\n }\n .\\[\\&\\>svg\\]\\:shrink-0 {\n &>svg {\n flex-shrink: 0;\n }\n }\n .\\[\\&\\>svg\\]\\:text-muted-foreground {\n &>svg {\n color: var(--muted-foreground);\n }\n }\n .\\[\\&\\>svg\\]\\:text-sidebar-accent-foreground {\n &>svg {\n color: var(--sidebar-accent-foreground);\n }\n }\n .group-has-data-\\[size\\=lg\\]\\/avatar-group\\:\\[\\&\\>svg\\]\\:size-5 {\n &:is(:where(.group\\/avatar-group):has(*[data-size=\"lg\"]) *) {\n &>svg {\n width: calc(var(--spacing) * 5);\n height: calc(var(--spacing) * 5);\n }\n }\n }\n .group-has-data-\\[size\\=sm\\]\\/avatar-group\\:\\[\\&\\>svg\\]\\:size-3 {\n &:is(:where(.group\\/avatar-group):has(*[data-size=\"sm\"]) *) {\n &>svg {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n }\n }\n .group-data-\\[size\\=default\\]\\/avatar\\:\\[\\&\\>svg\\]\\:size-2 {\n &:is(:where(.group\\/avatar)[data-size=\"default\"] *) {\n &>svg {\n width: calc(var(--spacing) * 2);\n height: calc(var(--spacing) * 2);\n }\n }\n }\n .group-data-\\[size\\=lg\\]\\/avatar\\:\\[\\&\\>svg\\]\\:size-2 {\n &:is(:where(.group\\/avatar)[data-size=\"lg\"] *) {\n &>svg {\n width: calc(var(--spacing) * 2);\n height: calc(var(--spacing) * 2);\n }\n }\n }\n .group-data-\\[size\\=sm\\]\\/avatar\\:\\[\\&\\>svg\\]\\:hidden {\n &:is(:where(.group\\/avatar)[data-size=\"sm\"] *) {\n &>svg {\n display: none;\n }\n }\n }\n .\\[\\&\\>tr\\]\\:last\\:border-b-0 {\n &>tr {\n &:last-child {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 0px;\n }\n }\n }\n .\\[\\[data-side\\=left\\]\\[data-collapsible\\=offcanvas\\]_\\&\\]\\:-right-2 {\n [data-side=left][data-collapsible=offcanvas] & {\n right: calc(var(--spacing) * -2);\n }\n }\n .\\[\\[data-side\\=left\\]\\[data-state\\=collapsed\\]_\\&\\]\\:cursor-e-resize {\n [data-side=left][data-state=collapsed] & {\n cursor: e-resize;\n }\n }\n .\\[\\[data-side\\=right\\]\\[data-collapsible\\=offcanvas\\]_\\&\\]\\:-left-2 {\n [data-side=right][data-collapsible=offcanvas] & {\n left: calc(var(--spacing) * -2);\n }\n }\n .\\[\\[data-side\\=right\\]\\[data-state\\=collapsed\\]_\\&\\]\\:cursor-w-resize {\n [data-side=right][data-state=collapsed] & {\n cursor: w-resize;\n }\n }\n .\\[\\[data-variant\\=legend\\]\\+\\&\\]\\:-mt-1\\.5 {\n [data-variant=legend]+& {\n margin-top: calc(var(--spacing) * -1.5);\n }\n }\n .\\[a\\&\\]\\:hover\\:bg-accent {\n a& {\n &:hover {\n @media (hover: hover) {\n background-color: var(--accent);\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:bg-destructive\\/90 {\n a& {\n &:hover {\n @media (hover: hover) {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 90%, transparent);\n }\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:bg-primary\\/90 {\n a& {\n &:hover {\n @media (hover: hover) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 90%, transparent);\n }\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:bg-secondary\\/90 {\n a& {\n &:hover {\n @media (hover: hover) {\n background-color: var(--secondary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--secondary) 90%, transparent);\n }\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:text-accent-foreground {\n a& {\n &:hover {\n @media (hover: hover) {\n color: var(--accent-foreground);\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:underline {\n a& {\n &:hover {\n @media (hover: hover) {\n text-decoration-line: underline;\n }\n }\n }\n }\n}\n@property --tw-animation-delay {\n syntax: \"*\";\n inherits: false;\n initial-value: 0s;\n}\n@property --tw-animation-direction {\n syntax: \"*\";\n inherits: false;\n initial-value: normal;\n}\n@property --tw-animation-duration {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-animation-fill-mode {\n syntax: \"*\";\n inherits: false;\n initial-value: none;\n}\n@property --tw-animation-iteration-count {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-blur {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-opacity {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-rotate {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-scale {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-blur {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-opacity {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-exit-rotate {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-scale {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-exit-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n:root {\n --radius: 0.625rem;\n --background: oklch(1 0 0);\n --foreground: oklch(0.145 0 0);\n --card: oklch(1 0 0);\n --card-foreground: oklch(0.145 0 0);\n --popover: oklch(1 0 0);\n --popover-foreground: oklch(0.145 0 0);\n --primary: oklch(0.205 0 0);\n --primary-foreground: oklch(0.985 0 0);\n --secondary: oklch(0.97 0 0);\n --secondary-foreground: oklch(0.205 0 0);\n --muted: oklch(0.97 0 0);\n --muted-foreground: oklch(0.556 0 0);\n --accent: oklch(0.97 0 0);\n --accent-foreground: oklch(0.205 0 0);\n --destructive: oklch(0.577 0.245 27.325);\n --border: oklch(0.922 0 0);\n --input: oklch(0.922 0 0);\n --ring: oklch(0.708 0 0);\n --chart-1: oklch(0.646 0.222 41.116);\n --chart-2: oklch(0.6 0.118 184.704);\n --chart-3: oklch(0.398 0.07 227.392);\n --chart-4: oklch(0.828 0.189 84.429);\n --chart-5: oklch(0.769 0.188 70.08);\n --sidebar: oklch(0.985 0 0);\n --sidebar-foreground: oklch(0.145 0 0);\n --sidebar-primary: oklch(0.205 0 0);\n --sidebar-primary-foreground: oklch(0.985 0 0);\n --sidebar-accent: oklch(0.97 0 0);\n --sidebar-accent-foreground: oklch(0.205 0 0);\n --sidebar-border: oklch(0.922 0 0);\n --sidebar-ring: oklch(0.708 0 0);\n}\n.dark {\n --background: oklch(0.145 0 0);\n --foreground: oklch(0.985 0 0);\n --card: oklch(0.205 0 0);\n --card-foreground: oklch(0.985 0 0);\n --popover: oklch(0.205 0 0);\n --popover-foreground: oklch(0.985 0 0);\n --primary: oklch(0.922 0 0);\n --primary-foreground: oklch(0.205 0 0);\n --secondary: oklch(0.269 0 0);\n --secondary-foreground: oklch(0.985 0 0);\n --muted: oklch(0.269 0 0);\n --muted-foreground: oklch(0.708 0 0);\n --accent: oklch(0.269 0 0);\n --accent-foreground: oklch(0.985 0 0);\n --destructive: oklch(0.704 0.191 22.216);\n --border: oklch(1 0 0 / 10%);\n --input: oklch(1 0 0 / 15%);\n --ring: oklch(0.556 0 0);\n --chart-1: oklch(0.488 0.243 264.376);\n --chart-2: oklch(0.696 0.17 162.48);\n --chart-3: oklch(0.769 0.188 70.08);\n --chart-4: oklch(0.627 0.265 303.9);\n --chart-5: oklch(0.645 0.246 16.439);\n --sidebar: oklch(0.205 0 0);\n --sidebar-foreground: oklch(0.985 0 0);\n --sidebar-primary: oklch(0.488 0.243 264.376);\n --sidebar-primary-foreground: oklch(0.985 0 0);\n --sidebar-accent: oklch(0.269 0 0);\n --sidebar-accent-foreground: oklch(0.985 0 0);\n --sidebar-border: oklch(1 0 0 / 10%);\n --sidebar-ring: oklch(0.556 0 0);\n}\n@layer base {\n * {\n border-color: var(--border);\n outline-color: var(--ring);\n @supports (color: color-mix(in lab, red, red)) {\n outline-color: color-mix(in oklab, var(--ring) 50%, transparent);\n }\n }\n body {\n background-color: var(--background);\n color: var(--foreground);\n }\n}\n@property --tw-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-translate-z {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-space-y-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-space-x-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-border-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-leading {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-font-weight {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-tracking {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ordinal {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-slashed-zero {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-figure {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-spacing {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-fraction {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow-alpha {\n syntax: \"\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-inset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-shadow-alpha {\n syntax: \"\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-ring-inset {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-offset-width {\n syntax: \"\";\n inherits: false;\n initial-value: 0px;\n}\n@property --tw-ring-offset-color {\n syntax: \"*\";\n inherits: false;\n initial-value: #fff;\n}\n@property --tw-ring-offset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-outline-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-duration {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ease {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-content {\n syntax: \"*\";\n initial-value: \"\";\n inherits: false;\n}\n@property --tw-blur {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-brightness {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-contrast {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-grayscale {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-hue-rotate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-invert {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-opacity {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-saturate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-sepia {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow-alpha {\n syntax: \"\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-drop-shadow-size {\n syntax: \"*\";\n inherits: false;\n}\n@keyframes pulse {\n 50% {\n opacity: 0.5;\n }\n}\n@keyframes enter {\n from {\n opacity: var(--tw-enter-opacity,1);\n transform: translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));\n filter: blur(var(--tw-enter-blur,0));\n }\n}\n@keyframes exit {\n to {\n opacity: var(--tw-exit-opacity,1);\n transform: translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));\n filter: blur(var(--tw-exit-blur,0));\n }\n}\n@layer properties {\n @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {\n *, ::before, ::after, ::backdrop {\n --tw-translate-x: 0;\n --tw-translate-y: 0;\n --tw-translate-z: 0;\n --tw-space-y-reverse: 0;\n --tw-space-x-reverse: 0;\n --tw-border-style: solid;\n --tw-leading: initial;\n --tw-font-weight: initial;\n --tw-tracking: initial;\n --tw-ordinal: initial;\n --tw-slashed-zero: initial;\n --tw-numeric-figure: initial;\n --tw-numeric-spacing: initial;\n --tw-numeric-fraction: initial;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-color: initial;\n --tw-shadow-alpha: 100%;\n --tw-inset-shadow: 0 0 #0000;\n --tw-inset-shadow-color: initial;\n --tw-inset-shadow-alpha: 100%;\n --tw-ring-color: initial;\n --tw-ring-shadow: 0 0 #0000;\n --tw-inset-ring-color: initial;\n --tw-inset-ring-shadow: 0 0 #0000;\n --tw-ring-inset: initial;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-outline-style: solid;\n --tw-duration: initial;\n --tw-ease: initial;\n --tw-content: \"\";\n --tw-blur: initial;\n --tw-brightness: initial;\n --tw-contrast: initial;\n --tw-grayscale: initial;\n --tw-hue-rotate: initial;\n --tw-invert: initial;\n --tw-opacity: initial;\n --tw-saturate: initial;\n --tw-sepia: initial;\n --tw-drop-shadow: initial;\n --tw-drop-shadow-color: initial;\n --tw-drop-shadow-alpha: 100%;\n --tw-drop-shadow-size: initial;\n --tw-animation-delay: 0s;\n --tw-animation-direction: normal;\n --tw-animation-duration: initial;\n --tw-animation-fill-mode: none;\n --tw-animation-iteration-count: 1;\n --tw-enter-blur: 0;\n --tw-enter-opacity: 1;\n --tw-enter-rotate: 0;\n --tw-enter-scale: 1;\n --tw-enter-translate-x: 0;\n --tw-enter-translate-y: 0;\n --tw-exit-blur: 0;\n --tw-exit-opacity: 1;\n --tw-exit-rotate: 0;\n --tw-exit-scale: 1;\n --tw-exit-translate-x: 0;\n --tw-exit-translate-y: 0;\n }\n }\n}\n"],"names":[],"mappings":"AACA;EA27HE;IACE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA37HJ;EAEE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAA;IAAA;;;;;;;;;;;;;;;;AAFF;EA2DE;;;;;;;EAAA;;;;;;;EAMA;;;;;;;;;;EASA;;;;;;EAKA;;;;;EAIA;;;;;EAIA;;;;;;;EAKA;;;;EAGA;;;;;;;EAMA;;;;EAGA;;;;;;;EAMA;;;;EAGA;;;;EAGA;;;;;;EAKA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;;;;;;;EAAA;;;;;;;;;;;EAUA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;IACE;;;;IAEE;MAAgD;;;;;;EAKpD;;;;EAGA;;;;EAGA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAAA;;;;EAGA;;;;EAAA;;;;EAGA;;;;EA0gHA;;;;;EAGE;IAAgD;;;;;EAIlD;;;;;;AA3tHF;;AAAA;EA+ME;;;;EAIA;;;;EAIA;;;;EAGA;;;;;;;;;;;;EAWA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;;;EAMA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAIE;;;;;;EAOA;;;;;;EAOA;;;;;;EAMF;;;;EAGA;;;;EAGA;;;;;;EAKA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;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"}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js deleted file mode 100644 index 9391c68..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js +++ /dev/null @@ -1,13 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[turbopack]/browser/dev/hmr-client/hmr-client.ts [app-client] (ecmascript, async loader)", ((__turbopack_context__) => { - -__turbopack_context__.v((parentImport) => { - return Promise.all([ - "static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js", - "static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c7192189._.js" -].map((chunk) => __turbopack_context__.l(chunk))).then(() => { - return parentImport("[turbopack]/browser/dev/hmr-client/hmr-client.ts [app-client] (ecmascript)"); - }); -}); -}), -]); \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js.map deleted file mode 100644 index c15d7ec..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js.map +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c7192189._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c7192189._.js deleted file mode 100644 index daf4855..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c7192189._.js +++ /dev/null @@ -1,7 +0,0 @@ -(globalThis.TURBOPACK_CHUNK_LISTS || (globalThis.TURBOPACK_CHUNK_LISTS = [])).push({ - script: typeof document === "object" ? document.currentScript : undefined, - chunks: [ - "static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js" -], - source: "dynamic" -}); diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js deleted file mode 100644 index d95b854..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js +++ /dev/null @@ -1,467 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[turbopack]/browser/dev/hmr-client/hmr-client.ts [app-client] (ecmascript)", ((__turbopack_context__) => { -"use strict"; - -/// -/// -/// -/// -__turbopack_context__.s([ - "connect", - ()=>connect, - "setHooks", - ()=>setHooks, - "subscribeToUpdate", - ()=>subscribeToUpdate -]); -function connect({ addMessageListener, sendMessage, onUpdateError = console.error }) { - addMessageListener((msg)=>{ - switch(msg.type){ - case 'turbopack-connected': - handleSocketConnected(sendMessage); - break; - default: - try { - if (Array.isArray(msg.data)) { - for(let i = 0; i < msg.data.length; i++){ - handleSocketMessage(msg.data[i]); - } - } else { - handleSocketMessage(msg.data); - } - applyAggregatedUpdates(); - } catch (e) { - console.warn('[Fast Refresh] performing full reload\n\n' + "Fast Refresh will perform a full reload when you edit a file that's imported by modules outside of the React rendering tree.\n" + 'You might have a file which exports a React component but also exports a value that is imported by a non-React component file.\n' + 'Consider migrating the non-React component export to a separate file and importing it into both files.\n\n' + 'It is also possible the parent component of the component you edited is a class component, which disables Fast Refresh.\n' + 'Fast Refresh requires at least one parent function component in your React tree.'); - onUpdateError(e); - location.reload(); - } - break; - } - }); - const queued = globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS; - if (queued != null && !Array.isArray(queued)) { - throw new Error('A separate HMR handler was already registered'); - } - globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS = { - push: ([chunkPath, callback])=>{ - subscribeToChunkUpdate(chunkPath, sendMessage, callback); - } - }; - if (Array.isArray(queued)) { - for (const [chunkPath, callback] of queued){ - subscribeToChunkUpdate(chunkPath, sendMessage, callback); - } - } -} -const updateCallbackSets = new Map(); -function sendJSON(sendMessage, message) { - sendMessage(JSON.stringify(message)); -} -function resourceKey(resource) { - return JSON.stringify({ - path: resource.path, - headers: resource.headers || null - }); -} -function subscribeToUpdates(sendMessage, resource) { - sendJSON(sendMessage, { - type: 'turbopack-subscribe', - ...resource - }); - return ()=>{ - sendJSON(sendMessage, { - type: 'turbopack-unsubscribe', - ...resource - }); - }; -} -function handleSocketConnected(sendMessage) { - for (const key of updateCallbackSets.keys()){ - subscribeToUpdates(sendMessage, JSON.parse(key)); - } -} -// we aggregate all pending updates until the issues are resolved -const chunkListsWithPendingUpdates = new Map(); -function aggregateUpdates(msg) { - const key = resourceKey(msg.resource); - let aggregated = chunkListsWithPendingUpdates.get(key); - if (aggregated) { - aggregated.instruction = mergeChunkListUpdates(aggregated.instruction, msg.instruction); - } else { - chunkListsWithPendingUpdates.set(key, msg); - } -} -function applyAggregatedUpdates() { - if (chunkListsWithPendingUpdates.size === 0) return; - hooks.beforeRefresh(); - for (const msg of chunkListsWithPendingUpdates.values()){ - triggerUpdate(msg); - } - chunkListsWithPendingUpdates.clear(); - finalizeUpdate(); -} -function mergeChunkListUpdates(updateA, updateB) { - let chunks; - if (updateA.chunks != null) { - if (updateB.chunks == null) { - chunks = updateA.chunks; - } else { - chunks = mergeChunkListChunks(updateA.chunks, updateB.chunks); - } - } else if (updateB.chunks != null) { - chunks = updateB.chunks; - } - let merged; - if (updateA.merged != null) { - if (updateB.merged == null) { - merged = updateA.merged; - } else { - // Since `merged` is an array of updates, we need to merge them all into - // one, consistent update. - // Since there can only be `EcmascriptMergeUpdates` in the array, there is - // no need to key on the `type` field. - let update = updateA.merged[0]; - for(let i = 1; i < updateA.merged.length; i++){ - update = mergeChunkListEcmascriptMergedUpdates(update, updateA.merged[i]); - } - for(let i = 0; i < updateB.merged.length; i++){ - update = mergeChunkListEcmascriptMergedUpdates(update, updateB.merged[i]); - } - merged = [ - update - ]; - } - } else if (updateB.merged != null) { - merged = updateB.merged; - } - return { - type: 'ChunkListUpdate', - chunks, - merged - }; -} -function mergeChunkListChunks(chunksA, chunksB) { - const chunks = {}; - for (const [chunkPath, chunkUpdateA] of Object.entries(chunksA)){ - const chunkUpdateB = chunksB[chunkPath]; - if (chunkUpdateB != null) { - const mergedUpdate = mergeChunkUpdates(chunkUpdateA, chunkUpdateB); - if (mergedUpdate != null) { - chunks[chunkPath] = mergedUpdate; - } - } else { - chunks[chunkPath] = chunkUpdateA; - } - } - for (const [chunkPath, chunkUpdateB] of Object.entries(chunksB)){ - if (chunks[chunkPath] == null) { - chunks[chunkPath] = chunkUpdateB; - } - } - return chunks; -} -function mergeChunkUpdates(updateA, updateB) { - if (updateA.type === 'added' && updateB.type === 'deleted' || updateA.type === 'deleted' && updateB.type === 'added') { - return undefined; - } - if (updateA.type === 'partial') { - invariant(updateA.instruction, 'Partial updates are unsupported'); - } - if (updateB.type === 'partial') { - invariant(updateB.instruction, 'Partial updates are unsupported'); - } - return undefined; -} -function mergeChunkListEcmascriptMergedUpdates(mergedA, mergedB) { - const entries = mergeEcmascriptChunkEntries(mergedA.entries, mergedB.entries); - const chunks = mergeEcmascriptChunksUpdates(mergedA.chunks, mergedB.chunks); - return { - type: 'EcmascriptMergedUpdate', - entries, - chunks - }; -} -function mergeEcmascriptChunkEntries(entriesA, entriesB) { - return { - ...entriesA, - ...entriesB - }; -} -function mergeEcmascriptChunksUpdates(chunksA, chunksB) { - if (chunksA == null) { - return chunksB; - } - if (chunksB == null) { - return chunksA; - } - const chunks = {}; - for (const [chunkPath, chunkUpdateA] of Object.entries(chunksA)){ - const chunkUpdateB = chunksB[chunkPath]; - if (chunkUpdateB != null) { - const mergedUpdate = mergeEcmascriptChunkUpdates(chunkUpdateA, chunkUpdateB); - if (mergedUpdate != null) { - chunks[chunkPath] = mergedUpdate; - } - } else { - chunks[chunkPath] = chunkUpdateA; - } - } - for (const [chunkPath, chunkUpdateB] of Object.entries(chunksB)){ - if (chunks[chunkPath] == null) { - chunks[chunkPath] = chunkUpdateB; - } - } - if (Object.keys(chunks).length === 0) { - return undefined; - } - return chunks; -} -function mergeEcmascriptChunkUpdates(updateA, updateB) { - if (updateA.type === 'added' && updateB.type === 'deleted') { - // These two completely cancel each other out. - return undefined; - } - if (updateA.type === 'deleted' && updateB.type === 'added') { - const added = []; - const deleted = []; - const deletedModules = new Set(updateA.modules ?? []); - const addedModules = new Set(updateB.modules ?? []); - for (const moduleId of addedModules){ - if (!deletedModules.has(moduleId)) { - added.push(moduleId); - } - } - for (const moduleId of deletedModules){ - if (!addedModules.has(moduleId)) { - deleted.push(moduleId); - } - } - if (added.length === 0 && deleted.length === 0) { - return undefined; - } - return { - type: 'partial', - added, - deleted - }; - } - if (updateA.type === 'partial' && updateB.type === 'partial') { - const added = new Set([ - ...updateA.added ?? [], - ...updateB.added ?? [] - ]); - const deleted = new Set([ - ...updateA.deleted ?? [], - ...updateB.deleted ?? [] - ]); - if (updateB.added != null) { - for (const moduleId of updateB.added){ - deleted.delete(moduleId); - } - } - if (updateB.deleted != null) { - for (const moduleId of updateB.deleted){ - added.delete(moduleId); - } - } - return { - type: 'partial', - added: [ - ...added - ], - deleted: [ - ...deleted - ] - }; - } - if (updateA.type === 'added' && updateB.type === 'partial') { - const modules = new Set([ - ...updateA.modules ?? [], - ...updateB.added ?? [] - ]); - for (const moduleId of updateB.deleted ?? []){ - modules.delete(moduleId); - } - return { - type: 'added', - modules: [ - ...modules - ] - }; - } - if (updateA.type === 'partial' && updateB.type === 'deleted') { - // We could eagerly return `updateB` here, but this would potentially be - // incorrect if `updateA` has added modules. - const modules = new Set(updateB.modules ?? []); - if (updateA.added != null) { - for (const moduleId of updateA.added){ - modules.delete(moduleId); - } - } - return { - type: 'deleted', - modules: [ - ...modules - ] - }; - } - // Any other update combination is invalid. - return undefined; -} -function invariant(_, message) { - throw new Error(`Invariant: ${message}`); -} -const CRITICAL = [ - 'bug', - 'error', - 'fatal' -]; -function compareByList(list, a, b) { - const aI = list.indexOf(a) + 1 || list.length; - const bI = list.indexOf(b) + 1 || list.length; - return aI - bI; -} -const chunksWithIssues = new Map(); -function emitIssues() { - const issues = []; - const deduplicationSet = new Set(); - for (const [_, chunkIssues] of chunksWithIssues){ - for (const chunkIssue of chunkIssues){ - if (deduplicationSet.has(chunkIssue.formatted)) continue; - issues.push(chunkIssue); - deduplicationSet.add(chunkIssue.formatted); - } - } - sortIssues(issues); - hooks.issues(issues); -} -function handleIssues(msg) { - const key = resourceKey(msg.resource); - let hasCriticalIssues = false; - for (const issue of msg.issues){ - if (CRITICAL.includes(issue.severity)) { - hasCriticalIssues = true; - } - } - if (msg.issues.length > 0) { - chunksWithIssues.set(key, msg.issues); - } else if (chunksWithIssues.has(key)) { - chunksWithIssues.delete(key); - } - emitIssues(); - return hasCriticalIssues; -} -const SEVERITY_ORDER = [ - 'bug', - 'fatal', - 'error', - 'warning', - 'info', - 'log' -]; -const CATEGORY_ORDER = [ - 'parse', - 'resolve', - 'code generation', - 'rendering', - 'typescript', - 'other' -]; -function sortIssues(issues) { - issues.sort((a, b)=>{ - const first = compareByList(SEVERITY_ORDER, a.severity, b.severity); - if (first !== 0) return first; - return compareByList(CATEGORY_ORDER, a.category, b.category); - }); -} -const hooks = { - beforeRefresh: ()=>{}, - refresh: ()=>{}, - buildOk: ()=>{}, - issues: (_issues)=>{} -}; -function setHooks(newHooks) { - Object.assign(hooks, newHooks); -} -function handleSocketMessage(msg) { - sortIssues(msg.issues); - handleIssues(msg); - switch(msg.type){ - case 'issues': - break; - case 'partial': - // aggregate updates - aggregateUpdates(msg); - break; - default: - // run single update - const runHooks = chunkListsWithPendingUpdates.size === 0; - if (runHooks) hooks.beforeRefresh(); - triggerUpdate(msg); - if (runHooks) finalizeUpdate(); - break; - } -} -function finalizeUpdate() { - hooks.refresh(); - hooks.buildOk(); - // This is used by the Next.js integration test suite to notify it when HMR - // updates have been completed. - // TODO: Only run this in test environments (gate by `process.env.__NEXT_TEST_MODE`) - if (globalThis.__NEXT_HMR_CB) { - globalThis.__NEXT_HMR_CB(); - globalThis.__NEXT_HMR_CB = null; - } -} -function subscribeToChunkUpdate(chunkListPath, sendMessage, callback) { - return subscribeToUpdate({ - path: chunkListPath - }, sendMessage, callback); -} -function subscribeToUpdate(resource, sendMessage, callback) { - const key = resourceKey(resource); - let callbackSet; - const existingCallbackSet = updateCallbackSets.get(key); - if (!existingCallbackSet) { - callbackSet = { - callbacks: new Set([ - callback - ]), - unsubscribe: subscribeToUpdates(sendMessage, resource) - }; - updateCallbackSets.set(key, callbackSet); - } else { - existingCallbackSet.callbacks.add(callback); - callbackSet = existingCallbackSet; - } - return ()=>{ - callbackSet.callbacks.delete(callback); - if (callbackSet.callbacks.size === 0) { - callbackSet.unsubscribe(); - updateCallbackSets.delete(key); - } - }; -} -function triggerUpdate(msg) { - const key = resourceKey(msg.resource); - const callbackSet = updateCallbackSets.get(key); - if (!callbackSet) { - return; - } - for (const callback of callbackSet.callbacks){ - callback(msg); - } - if (msg.type === 'notFound') { - // This indicates that the resource which we subscribed to either does not exist or - // has been deleted. In either case, we should clear all update callbacks, so if a - // new subscription is created for the same resource, it will send a new "subscribe" - // message to the server. - // No need to send an "unsubscribe" message to the server, it will have already - // dropped the update stream before sending the "notFound" message. - updateCallbackSets.delete(key); - } -} -}), -]); - -//# sourceMappingURL=%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js.map deleted file mode 100644 index 65dc305..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/browser/dev/hmr-client/hmr-client.ts"],"sourcesContent":["/// \n/// \n/// \n/// \n\ntype SendMessage = (msg: any) => void\nexport type WebSocketMessage =\n | {\n type: 'turbopack-connected'\n }\n | {\n type: 'turbopack-message'\n data: Record\n }\n\nexport type ClientOptions = {\n addMessageListener: (cb: (msg: WebSocketMessage) => void) => void\n sendMessage: SendMessage\n onUpdateError: (err: unknown) => void\n}\n\nexport function connect({\n addMessageListener,\n sendMessage,\n onUpdateError = console.error,\n}: ClientOptions) {\n addMessageListener((msg) => {\n switch (msg.type) {\n case 'turbopack-connected':\n handleSocketConnected(sendMessage)\n break\n default:\n try {\n if (Array.isArray(msg.data)) {\n for (let i = 0; i < msg.data.length; i++) {\n handleSocketMessage(msg.data[i] as ServerMessage)\n }\n } else {\n handleSocketMessage(msg.data as ServerMessage)\n }\n applyAggregatedUpdates()\n } catch (e: unknown) {\n console.warn(\n '[Fast Refresh] performing full reload\\n\\n' +\n \"Fast Refresh will perform a full reload when you edit a file that's imported by modules outside of the React rendering tree.\\n\" +\n 'You might have a file which exports a React component but also exports a value that is imported by a non-React component file.\\n' +\n 'Consider migrating the non-React component export to a separate file and importing it into both files.\\n\\n' +\n 'It is also possible the parent component of the component you edited is a class component, which disables Fast Refresh.\\n' +\n 'Fast Refresh requires at least one parent function component in your React tree.'\n )\n onUpdateError(e)\n location.reload()\n }\n break\n }\n })\n\n const queued = globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS\n if (queued != null && !Array.isArray(queued)) {\n throw new Error('A separate HMR handler was already registered')\n }\n globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS = {\n push: ([chunkPath, callback]: [ChunkListPath, UpdateCallback]) => {\n subscribeToChunkUpdate(chunkPath, sendMessage, callback)\n },\n }\n\n if (Array.isArray(queued)) {\n for (const [chunkPath, callback] of queued) {\n subscribeToChunkUpdate(chunkPath, sendMessage, callback)\n }\n }\n}\n\ntype UpdateCallbackSet = {\n callbacks: Set\n unsubscribe: () => void\n}\n\nconst updateCallbackSets: Map = new Map()\n\nfunction sendJSON(sendMessage: SendMessage, message: ClientMessage) {\n sendMessage(JSON.stringify(message))\n}\n\ntype ResourceKey = string\n\nfunction resourceKey(resource: ResourceIdentifier): ResourceKey {\n return JSON.stringify({\n path: resource.path,\n headers: resource.headers || null,\n })\n}\n\nfunction subscribeToUpdates(\n sendMessage: SendMessage,\n resource: ResourceIdentifier\n): () => void {\n sendJSON(sendMessage, {\n type: 'turbopack-subscribe',\n ...resource,\n })\n\n return () => {\n sendJSON(sendMessage, {\n type: 'turbopack-unsubscribe',\n ...resource,\n })\n }\n}\n\nfunction handleSocketConnected(sendMessage: SendMessage) {\n for (const key of updateCallbackSets.keys()) {\n subscribeToUpdates(sendMessage, JSON.parse(key))\n }\n}\n\n// we aggregate all pending updates until the issues are resolved\nconst chunkListsWithPendingUpdates: Map =\n new Map()\n\nfunction aggregateUpdates(msg: PartialServerMessage) {\n const key = resourceKey(msg.resource)\n let aggregated = chunkListsWithPendingUpdates.get(key)\n\n if (aggregated) {\n aggregated.instruction = mergeChunkListUpdates(\n aggregated.instruction,\n msg.instruction\n )\n } else {\n chunkListsWithPendingUpdates.set(key, msg)\n }\n}\n\nfunction applyAggregatedUpdates() {\n if (chunkListsWithPendingUpdates.size === 0) return\n hooks.beforeRefresh()\n for (const msg of chunkListsWithPendingUpdates.values()) {\n triggerUpdate(msg)\n }\n chunkListsWithPendingUpdates.clear()\n finalizeUpdate()\n}\n\nfunction mergeChunkListUpdates(\n updateA: ChunkListUpdate,\n updateB: ChunkListUpdate\n): ChunkListUpdate {\n let chunks\n if (updateA.chunks != null) {\n if (updateB.chunks == null) {\n chunks = updateA.chunks\n } else {\n chunks = mergeChunkListChunks(updateA.chunks, updateB.chunks)\n }\n } else if (updateB.chunks != null) {\n chunks = updateB.chunks\n }\n\n let merged\n if (updateA.merged != null) {\n if (updateB.merged == null) {\n merged = updateA.merged\n } else {\n // Since `merged` is an array of updates, we need to merge them all into\n // one, consistent update.\n // Since there can only be `EcmascriptMergeUpdates` in the array, there is\n // no need to key on the `type` field.\n let update = updateA.merged[0]\n for (let i = 1; i < updateA.merged.length; i++) {\n update = mergeChunkListEcmascriptMergedUpdates(\n update,\n updateA.merged[i]\n )\n }\n\n for (let i = 0; i < updateB.merged.length; i++) {\n update = mergeChunkListEcmascriptMergedUpdates(\n update,\n updateB.merged[i]\n )\n }\n\n merged = [update]\n }\n } else if (updateB.merged != null) {\n merged = updateB.merged\n }\n\n return {\n type: 'ChunkListUpdate',\n chunks,\n merged,\n }\n}\n\nfunction mergeChunkListChunks(\n chunksA: Record,\n chunksB: Record\n): Record {\n const chunks: Record = {}\n\n for (const [chunkPath, chunkUpdateA] of Object.entries(chunksA) as Array<\n [ChunkPath, ChunkUpdate]\n >) {\n const chunkUpdateB = chunksB[chunkPath]\n if (chunkUpdateB != null) {\n const mergedUpdate = mergeChunkUpdates(chunkUpdateA, chunkUpdateB)\n if (mergedUpdate != null) {\n chunks[chunkPath] = mergedUpdate\n }\n } else {\n chunks[chunkPath] = chunkUpdateA\n }\n }\n\n for (const [chunkPath, chunkUpdateB] of Object.entries(chunksB) as Array<\n [ChunkPath, ChunkUpdate]\n >) {\n if (chunks[chunkPath] == null) {\n chunks[chunkPath] = chunkUpdateB\n }\n }\n\n return chunks\n}\n\nfunction mergeChunkUpdates(\n updateA: ChunkUpdate,\n updateB: ChunkUpdate\n): ChunkUpdate | undefined {\n if (\n (updateA.type === 'added' && updateB.type === 'deleted') ||\n (updateA.type === 'deleted' && updateB.type === 'added')\n ) {\n return undefined\n }\n\n if (updateA.type === 'partial') {\n invariant(updateA.instruction, 'Partial updates are unsupported')\n }\n\n if (updateB.type === 'partial') {\n invariant(updateB.instruction, 'Partial updates are unsupported')\n }\n\n return undefined\n}\n\nfunction mergeChunkListEcmascriptMergedUpdates(\n mergedA: EcmascriptMergedUpdate,\n mergedB: EcmascriptMergedUpdate\n): EcmascriptMergedUpdate {\n const entries = mergeEcmascriptChunkEntries(mergedA.entries, mergedB.entries)\n const chunks = mergeEcmascriptChunksUpdates(mergedA.chunks, mergedB.chunks)\n\n return {\n type: 'EcmascriptMergedUpdate',\n entries,\n chunks,\n }\n}\n\nfunction mergeEcmascriptChunkEntries(\n entriesA: Record | undefined,\n entriesB: Record | undefined\n): Record {\n return { ...entriesA, ...entriesB }\n}\n\nfunction mergeEcmascriptChunksUpdates(\n chunksA: Record | undefined,\n chunksB: Record | undefined\n): Record | undefined {\n if (chunksA == null) {\n return chunksB\n }\n\n if (chunksB == null) {\n return chunksA\n }\n\n const chunks: Record = {}\n\n for (const [chunkPath, chunkUpdateA] of Object.entries(chunksA) as Array<\n [ChunkPath, EcmascriptMergedChunkUpdate]\n >) {\n const chunkUpdateB = chunksB[chunkPath]\n if (chunkUpdateB != null) {\n const mergedUpdate = mergeEcmascriptChunkUpdates(\n chunkUpdateA,\n chunkUpdateB\n )\n if (mergedUpdate != null) {\n chunks[chunkPath] = mergedUpdate\n }\n } else {\n chunks[chunkPath] = chunkUpdateA\n }\n }\n\n for (const [chunkPath, chunkUpdateB] of Object.entries(chunksB) as Array<\n [ChunkPath, EcmascriptMergedChunkUpdate]\n >) {\n if (chunks[chunkPath] == null) {\n chunks[chunkPath] = chunkUpdateB\n }\n }\n\n if (Object.keys(chunks).length === 0) {\n return undefined\n }\n\n return chunks\n}\n\nfunction mergeEcmascriptChunkUpdates(\n updateA: EcmascriptMergedChunkUpdate,\n updateB: EcmascriptMergedChunkUpdate\n): EcmascriptMergedChunkUpdate | undefined {\n if (updateA.type === 'added' && updateB.type === 'deleted') {\n // These two completely cancel each other out.\n return undefined\n }\n\n if (updateA.type === 'deleted' && updateB.type === 'added') {\n const added = []\n const deleted = []\n const deletedModules = new Set(updateA.modules ?? [])\n const addedModules = new Set(updateB.modules ?? [])\n\n for (const moduleId of addedModules) {\n if (!deletedModules.has(moduleId)) {\n added.push(moduleId)\n }\n }\n\n for (const moduleId of deletedModules) {\n if (!addedModules.has(moduleId)) {\n deleted.push(moduleId)\n }\n }\n\n if (added.length === 0 && deleted.length === 0) {\n return undefined\n }\n\n return {\n type: 'partial',\n added,\n deleted,\n }\n }\n\n if (updateA.type === 'partial' && updateB.type === 'partial') {\n const added = new Set([...(updateA.added ?? []), ...(updateB.added ?? [])])\n const deleted = new Set([\n ...(updateA.deleted ?? []),\n ...(updateB.deleted ?? []),\n ])\n\n if (updateB.added != null) {\n for (const moduleId of updateB.added) {\n deleted.delete(moduleId)\n }\n }\n\n if (updateB.deleted != null) {\n for (const moduleId of updateB.deleted) {\n added.delete(moduleId)\n }\n }\n\n return {\n type: 'partial',\n added: [...added],\n deleted: [...deleted],\n }\n }\n\n if (updateA.type === 'added' && updateB.type === 'partial') {\n const modules = new Set([\n ...(updateA.modules ?? []),\n ...(updateB.added ?? []),\n ])\n\n for (const moduleId of updateB.deleted ?? []) {\n modules.delete(moduleId)\n }\n\n return {\n type: 'added',\n modules: [...modules],\n }\n }\n\n if (updateA.type === 'partial' && updateB.type === 'deleted') {\n // We could eagerly return `updateB` here, but this would potentially be\n // incorrect if `updateA` has added modules.\n\n const modules = new Set(updateB.modules ?? [])\n\n if (updateA.added != null) {\n for (const moduleId of updateA.added) {\n modules.delete(moduleId)\n }\n }\n\n return {\n type: 'deleted',\n modules: [...modules],\n }\n }\n\n // Any other update combination is invalid.\n\n return undefined\n}\n\nfunction invariant(_: never, message: string): never {\n throw new Error(`Invariant: ${message}`)\n}\n\nconst CRITICAL = ['bug', 'error', 'fatal']\n\nfunction compareByList(list: any[], a: any, b: any) {\n const aI = list.indexOf(a) + 1 || list.length\n const bI = list.indexOf(b) + 1 || list.length\n return aI - bI\n}\n\nconst chunksWithIssues: Map = new Map()\n\nfunction emitIssues() {\n const issues = []\n const deduplicationSet = new Set()\n\n for (const [_, chunkIssues] of chunksWithIssues) {\n for (const chunkIssue of chunkIssues) {\n if (deduplicationSet.has(chunkIssue.formatted)) continue\n\n issues.push(chunkIssue)\n deduplicationSet.add(chunkIssue.formatted)\n }\n }\n\n sortIssues(issues)\n\n hooks.issues(issues)\n}\n\nfunction handleIssues(msg: ServerMessage): boolean {\n const key = resourceKey(msg.resource)\n let hasCriticalIssues = false\n\n for (const issue of msg.issues) {\n if (CRITICAL.includes(issue.severity)) {\n hasCriticalIssues = true\n }\n }\n\n if (msg.issues.length > 0) {\n chunksWithIssues.set(key, msg.issues)\n } else if (chunksWithIssues.has(key)) {\n chunksWithIssues.delete(key)\n }\n\n emitIssues()\n\n return hasCriticalIssues\n}\n\nconst SEVERITY_ORDER = ['bug', 'fatal', 'error', 'warning', 'info', 'log']\nconst CATEGORY_ORDER = [\n 'parse',\n 'resolve',\n 'code generation',\n 'rendering',\n 'typescript',\n 'other',\n]\n\nfunction sortIssues(issues: Issue[]) {\n issues.sort((a, b) => {\n const first = compareByList(SEVERITY_ORDER, a.severity, b.severity)\n if (first !== 0) return first\n return compareByList(CATEGORY_ORDER, a.category, b.category)\n })\n}\n\nconst hooks = {\n beforeRefresh: () => {},\n refresh: () => {},\n buildOk: () => {},\n issues: (_issues: Issue[]) => {},\n}\n\nexport function setHooks(newHooks: typeof hooks) {\n Object.assign(hooks, newHooks)\n}\n\nfunction handleSocketMessage(msg: ServerMessage) {\n sortIssues(msg.issues)\n\n handleIssues(msg)\n\n switch (msg.type) {\n case 'issues':\n // issues are already handled\n break\n case 'partial':\n // aggregate updates\n aggregateUpdates(msg)\n break\n default:\n // run single update\n const runHooks = chunkListsWithPendingUpdates.size === 0\n if (runHooks) hooks.beforeRefresh()\n triggerUpdate(msg)\n if (runHooks) finalizeUpdate()\n break\n }\n}\n\nfunction finalizeUpdate() {\n hooks.refresh()\n hooks.buildOk()\n\n // This is used by the Next.js integration test suite to notify it when HMR\n // updates have been completed.\n // TODO: Only run this in test environments (gate by `process.env.__NEXT_TEST_MODE`)\n if (globalThis.__NEXT_HMR_CB) {\n globalThis.__NEXT_HMR_CB()\n globalThis.__NEXT_HMR_CB = null\n }\n}\n\nfunction subscribeToChunkUpdate(\n chunkListPath: ChunkListPath,\n sendMessage: SendMessage,\n callback: UpdateCallback\n): () => void {\n return subscribeToUpdate(\n {\n path: chunkListPath,\n },\n sendMessage,\n callback\n )\n}\n\nexport function subscribeToUpdate(\n resource: ResourceIdentifier,\n sendMessage: SendMessage,\n callback: UpdateCallback\n) {\n const key = resourceKey(resource)\n let callbackSet: UpdateCallbackSet\n const existingCallbackSet = updateCallbackSets.get(key)\n if (!existingCallbackSet) {\n callbackSet = {\n callbacks: new Set([callback]),\n unsubscribe: subscribeToUpdates(sendMessage, resource),\n }\n updateCallbackSets.set(key, callbackSet)\n } else {\n existingCallbackSet.callbacks.add(callback)\n callbackSet = existingCallbackSet\n }\n\n return () => {\n callbackSet.callbacks.delete(callback)\n\n if (callbackSet.callbacks.size === 0) {\n callbackSet.unsubscribe()\n updateCallbackSets.delete(key)\n }\n }\n}\n\nfunction triggerUpdate(msg: ServerMessage) {\n const key = resourceKey(msg.resource)\n const callbackSet = updateCallbackSets.get(key)\n if (!callbackSet) {\n return\n }\n\n for (const callback of callbackSet.callbacks) {\n callback(msg)\n }\n\n if (msg.type === 'notFound') {\n // This indicates that the resource which we subscribed to either does not exist or\n // has been deleted. In either case, we should clear all update callbacks, so if a\n // new subscription is created for the same resource, it will send a new \"subscribe\"\n // message to the server.\n // No need to send an \"unsubscribe\" message to the server, it will have already\n // dropped the update stream before sending the \"notFound\" message.\n updateCallbackSets.delete(key)\n }\n}\n"],"names":[],"mappings":"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","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/_23a915ee._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/_23a915ee._.js.map deleted file mode 100644 index cd77419..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/_23a915ee._.js.map +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 13, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/shared/runtime-utils.ts"],"sourcesContent":["/**\n * This file contains runtime types and functions that are shared between all\n * TurboPack ECMAScript runtimes.\n *\n * It will be prepended to the runtime code of each runtime.\n */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n\ntype EsmNamespaceObject = Record\n\n// @ts-ignore Defined in `dev-base.ts`\ndeclare function getOrInstantiateModuleFromParent(\n id: ModuleId,\n sourceModule: M\n): M\n\nconst REEXPORTED_OBJECTS = new WeakMap()\n\n/**\n * Constructs the `__turbopack_context__` object for a module.\n */\nfunction Context(\n this: TurbopackBaseContext,\n module: Module,\n exports: Exports\n) {\n this.m = module\n // We need to store this here instead of accessing it from the module object to:\n // 1. Make it available to factories directly, since we rewrite `this` to\n // `__turbopack_context__.e` in CJS modules.\n // 2. Support async modules which rewrite `module.exports` to a promise, so we\n // can still access the original exports object from functions like\n // `esmExport`\n // Ideally we could find a new approach for async modules and drop this property altogether.\n this.e = exports\n}\nconst contextPrototype = Context.prototype as TurbopackBaseContext\n\ntype ModuleContextMap = Record\n\ninterface ModuleContextEntry {\n id: () => ModuleId\n module: () => any\n}\n\ninterface ModuleContext {\n // require call\n (moduleId: string): Exports | EsmNamespaceObject\n\n // async import call\n import(moduleId: string): Promise\n\n keys(): ModuleId[]\n\n resolve(moduleId: string): ModuleId\n}\n\ntype GetOrInstantiateModuleFromParent = (\n moduleId: M['id'],\n parentModule: M\n) => M\n\ndeclare function getOrInstantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): Module\n\nconst hasOwnProperty = Object.prototype.hasOwnProperty\nconst toStringTag = typeof Symbol !== 'undefined' && Symbol.toStringTag\n\nfunction defineProp(\n obj: any,\n name: PropertyKey,\n options: PropertyDescriptor & ThisType\n) {\n if (!hasOwnProperty.call(obj, name)) Object.defineProperty(obj, name, options)\n}\n\nfunction getOverwrittenModule(\n moduleCache: ModuleCache,\n id: ModuleId\n): Module {\n let module = moduleCache[id]\n if (!module) {\n // This is invoked when a module is merged into another module, thus it wasn't invoked via\n // instantiateModule and the cache entry wasn't created yet.\n module = createModuleObject(id)\n moduleCache[id] = module\n }\n return module\n}\n\n/**\n * Creates the module object. Only done here to ensure all module objects have the same shape.\n */\nfunction createModuleObject(id: ModuleId): Module {\n return {\n exports: {},\n error: undefined,\n id,\n namespaceObject: undefined,\n }\n}\n\ntype BindingTag = 0\nconst BindingTag_Value = 0 as BindingTag\n\n// an arbitrary sequence of bindings as\n// - a prop name\n// - BindingTag_Value, a value to be bound directly, or\n// - 1 or 2 functions to bind as getters and sdetters\ntype EsmBindings = Array<\n string | BindingTag | (() => unknown) | ((v: unknown) => void) | unknown\n>\n\n/**\n * Adds the getters to the exports object.\n */\nfunction esm(exports: Exports, bindings: EsmBindings) {\n defineProp(exports, '__esModule', { value: true })\n if (toStringTag) defineProp(exports, toStringTag, { value: 'Module' })\n let i = 0\n while (i < bindings.length) {\n const propName = bindings[i++] as string\n const tagOrFunction = bindings[i++]\n if (typeof tagOrFunction === 'number') {\n if (tagOrFunction === BindingTag_Value) {\n defineProp(exports, propName, {\n value: bindings[i++],\n enumerable: true,\n writable: false,\n })\n } else {\n throw new Error(`unexpected tag: ${tagOrFunction}`)\n }\n } else {\n const getterFn = tagOrFunction as () => unknown\n if (typeof bindings[i] === 'function') {\n const setterFn = bindings[i++] as (v: unknown) => void\n defineProp(exports, propName, {\n get: getterFn,\n set: setterFn,\n enumerable: true,\n })\n } else {\n defineProp(exports, propName, {\n get: getterFn,\n enumerable: true,\n })\n }\n }\n }\n Object.seal(exports)\n}\n\n/**\n * Makes the module an ESM with exports\n */\nfunction esmExport(\n this: TurbopackBaseContext,\n bindings: EsmBindings,\n id: ModuleId | undefined\n) {\n let module: Module\n let exports: Module['exports']\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n exports = module.exports\n } else {\n module = this.m\n exports = this.e\n }\n module.namespaceObject = exports\n esm(exports, bindings)\n}\ncontextPrototype.s = esmExport\n\ntype ReexportedObjects = Record[]\nfunction ensureDynamicExports(\n module: Module,\n exports: Exports\n): ReexportedObjects {\n let reexportedObjects: ReexportedObjects | undefined =\n REEXPORTED_OBJECTS.get(module)\n\n if (!reexportedObjects) {\n REEXPORTED_OBJECTS.set(module, (reexportedObjects = []))\n module.exports = module.namespaceObject = new Proxy(exports, {\n get(target, prop) {\n if (\n hasOwnProperty.call(target, prop) ||\n prop === 'default' ||\n prop === '__esModule'\n ) {\n return Reflect.get(target, prop)\n }\n for (const obj of reexportedObjects!) {\n const value = Reflect.get(obj, prop)\n if (value !== undefined) return value\n }\n return undefined\n },\n ownKeys(target) {\n const keys = Reflect.ownKeys(target)\n for (const obj of reexportedObjects!) {\n for (const key of Reflect.ownKeys(obj)) {\n if (key !== 'default' && !keys.includes(key)) keys.push(key)\n }\n }\n return keys\n },\n })\n }\n return reexportedObjects\n}\n\n/**\n * Dynamically exports properties from an object\n */\nfunction dynamicExport(\n this: TurbopackBaseContext,\n object: Record,\n id: ModuleId | undefined\n) {\n let module: Module\n let exports: Exports\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n exports = module.exports\n } else {\n module = this.m\n exports = this.e\n }\n const reexportedObjects = ensureDynamicExports(module, exports)\n\n if (typeof object === 'object' && object !== null) {\n reexportedObjects.push(object)\n }\n}\ncontextPrototype.j = dynamicExport\n\nfunction exportValue(\n this: TurbopackBaseContext,\n value: any,\n id: ModuleId | undefined\n) {\n let module: Module\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n } else {\n module = this.m\n }\n module.exports = value\n}\ncontextPrototype.v = exportValue\n\nfunction exportNamespace(\n this: TurbopackBaseContext,\n namespace: any,\n id: ModuleId | undefined\n) {\n let module: Module\n if (id != null) {\n module = getOverwrittenModule(this.c, id)\n } else {\n module = this.m\n }\n module.exports = module.namespaceObject = namespace\n}\ncontextPrototype.n = exportNamespace\n\nfunction createGetter(obj: Record, key: string | symbol) {\n return () => obj[key]\n}\n\n/**\n * @returns prototype of the object\n */\nconst getProto: (obj: any) => any = Object.getPrototypeOf\n ? (obj) => Object.getPrototypeOf(obj)\n : (obj) => obj.__proto__\n\n/** Prototypes that are not expanded for exports */\nconst LEAF_PROTOTYPES = [null, getProto({}), getProto([]), getProto(getProto)]\n\n/**\n * @param raw\n * @param ns\n * @param allowExportDefault\n * * `false`: will have the raw module as default export\n * * `true`: will have the default property as default export\n */\nfunction interopEsm(\n raw: Exports,\n ns: EsmNamespaceObject,\n allowExportDefault?: boolean\n) {\n const bindings: EsmBindings = []\n let defaultLocation = -1\n for (\n let current = raw;\n (typeof current === 'object' || typeof current === 'function') &&\n !LEAF_PROTOTYPES.includes(current);\n current = getProto(current)\n ) {\n for (const key of Object.getOwnPropertyNames(current)) {\n bindings.push(key, createGetter(raw, key))\n if (defaultLocation === -1 && key === 'default') {\n defaultLocation = bindings.length - 1\n }\n }\n }\n\n // this is not really correct\n // we should set the `default` getter if the imported module is a `.cjs file`\n if (!(allowExportDefault && defaultLocation >= 0)) {\n // Replace the binding with one for the namespace itself in order to preserve iteration order.\n if (defaultLocation >= 0) {\n // Replace the getter with the value\n bindings.splice(defaultLocation, 1, BindingTag_Value, raw)\n } else {\n bindings.push('default', BindingTag_Value, raw)\n }\n }\n\n esm(ns, bindings)\n return ns\n}\n\nfunction createNS(raw: Module['exports']): EsmNamespaceObject {\n if (typeof raw === 'function') {\n return function (this: any, ...args: any[]) {\n return raw.apply(this, args)\n }\n } else {\n return Object.create(null)\n }\n}\n\nfunction esmImport(\n this: TurbopackBaseContext,\n id: ModuleId\n): Exclude {\n const module = getOrInstantiateModuleFromParent(id, this.m)\n\n // any ES module has to have `module.namespaceObject` defined.\n if (module.namespaceObject) return module.namespaceObject\n\n // only ESM can be an async module, so we don't need to worry about exports being a promise here.\n const raw = module.exports\n return (module.namespaceObject = interopEsm(\n raw,\n createNS(raw),\n raw && (raw as any).__esModule\n ))\n}\ncontextPrototype.i = esmImport\n\nfunction asyncLoader(\n this: TurbopackBaseContext,\n moduleId: ModuleId\n): Promise {\n const loader = this.r(moduleId) as (\n importFunction: EsmImport\n ) => Promise\n return loader(esmImport.bind(this))\n}\ncontextPrototype.A = asyncLoader\n\n// Add a simple runtime require so that environments without one can still pass\n// `typeof require` CommonJS checks so that exports are correctly registered.\nconst runtimeRequire =\n // @ts-ignore\n typeof require === 'function'\n ? // @ts-ignore\n require\n : function require() {\n throw new Error('Unexpected use of runtime require')\n }\ncontextPrototype.t = runtimeRequire\n\nfunction commonJsRequire(\n this: TurbopackBaseContext,\n id: ModuleId\n): Exports {\n return getOrInstantiateModuleFromParent(id, this.m).exports\n}\ncontextPrototype.r = commonJsRequire\n\n/**\n * Remove fragments and query parameters since they are never part of the context map keys\n *\n * This matches how we parse patterns at resolving time. Arguably we should only do this for\n * strings passed to `import` but the resolve does it for `import` and `require` and so we do\n * here as well.\n */\nfunction parseRequest(request: string): string {\n // Per the URI spec fragments can contain `?` characters, so we should trim it off first\n // https://datatracker.ietf.org/doc/html/rfc3986#section-3.5\n const hashIndex = request.indexOf('#')\n if (hashIndex !== -1) {\n request = request.substring(0, hashIndex)\n }\n\n const queryIndex = request.indexOf('?')\n if (queryIndex !== -1) {\n request = request.substring(0, queryIndex)\n }\n\n return request\n}\n/**\n * `require.context` and require/import expression runtime.\n */\nfunction moduleContext(map: ModuleContextMap): ModuleContext {\n function moduleContext(id: string): Exports {\n id = parseRequest(id)\n if (hasOwnProperty.call(map, id)) {\n return map[id].module()\n }\n\n const e = new Error(`Cannot find module '${id}'`)\n ;(e as any).code = 'MODULE_NOT_FOUND'\n throw e\n }\n\n moduleContext.keys = (): string[] => {\n return Object.keys(map)\n }\n\n moduleContext.resolve = (id: string): ModuleId => {\n id = parseRequest(id)\n if (hasOwnProperty.call(map, id)) {\n return map[id].id()\n }\n\n const e = new Error(`Cannot find module '${id}'`)\n ;(e as any).code = 'MODULE_NOT_FOUND'\n throw e\n }\n\n moduleContext.import = async (id: string) => {\n return await (moduleContext(id) as Promise)\n }\n\n return moduleContext\n}\ncontextPrototype.f = moduleContext\n\n/**\n * Returns the path of a chunk defined by its data.\n */\nfunction getChunkPath(chunkData: ChunkData): ChunkPath {\n return typeof chunkData === 'string' ? chunkData : chunkData.path\n}\n\nfunction isPromise(maybePromise: any): maybePromise is Promise {\n return (\n maybePromise != null &&\n typeof maybePromise === 'object' &&\n 'then' in maybePromise &&\n typeof maybePromise.then === 'function'\n )\n}\n\nfunction isAsyncModuleExt(obj: T): obj is AsyncModuleExt & T {\n return turbopackQueues in obj\n}\n\nfunction createPromise() {\n let resolve: (value: T | PromiseLike) => void\n let reject: (reason?: any) => void\n\n const promise = new Promise((res, rej) => {\n reject = rej\n resolve = res\n })\n\n return {\n promise,\n resolve: resolve!,\n reject: reject!,\n }\n}\n\n// Load the CompressedmoduleFactories of a chunk into the `moduleFactories` Map.\n// The CompressedModuleFactories format is\n// - 1 or more module ids\n// - a module factory function\n// So walking this is a little complex but the flat structure is also fast to\n// traverse, we can use `typeof` operators to distinguish the two cases.\nfunction installCompressedModuleFactories(\n chunkModules: CompressedModuleFactories,\n offset: number,\n moduleFactories: ModuleFactories,\n newModuleId?: (id: ModuleId) => void\n) {\n let i = offset\n while (i < chunkModules.length) {\n let moduleId = chunkModules[i] as ModuleId\n let end = i + 1\n // Find our factory function\n while (\n end < chunkModules.length &&\n typeof chunkModules[end] !== 'function'\n ) {\n end++\n }\n if (end === chunkModules.length) {\n throw new Error('malformed chunk format, expected a factory function')\n }\n // Each chunk item has a 'primary id' and optional additional ids. If the primary id is already\n // present we know all the additional ids are also present, so we don't need to check.\n if (!moduleFactories.has(moduleId)) {\n const moduleFactoryFn = chunkModules[end] as Function\n applyModuleFactoryName(moduleFactoryFn)\n newModuleId?.(moduleId)\n for (; i < end; i++) {\n moduleId = chunkModules[i] as ModuleId\n moduleFactories.set(moduleId, moduleFactoryFn)\n }\n }\n i = end + 1 // end is pointing at the last factory advance to the next id or the end of the array.\n }\n}\n\n// everything below is adapted from webpack\n// https://github.com/webpack/webpack/blob/6be4065ade1e252c1d8dcba4af0f43e32af1bdc1/lib/runtime/AsyncModuleRuntimeModule.js#L13\n\nconst turbopackQueues = Symbol('turbopack queues')\nconst turbopackExports = Symbol('turbopack exports')\nconst turbopackError = Symbol('turbopack error')\n\nconst enum QueueStatus {\n Unknown = -1,\n Unresolved = 0,\n Resolved = 1,\n}\n\ntype AsyncQueueFn = (() => void) & { queueCount: number }\ntype AsyncQueue = AsyncQueueFn[] & {\n status: QueueStatus\n}\n\nfunction resolveQueue(queue?: AsyncQueue) {\n if (queue && queue.status !== QueueStatus.Resolved) {\n queue.status = QueueStatus.Resolved\n queue.forEach((fn) => fn.queueCount--)\n queue.forEach((fn) => (fn.queueCount-- ? fn.queueCount++ : fn()))\n }\n}\n\ntype Dep = Exports | AsyncModulePromise | Promise\n\ntype AsyncModuleExt = {\n [turbopackQueues]: (fn: (queue: AsyncQueue) => void) => void\n [turbopackExports]: Exports\n [turbopackError]?: any\n}\n\ntype AsyncModulePromise = Promise & AsyncModuleExt\n\nfunction wrapDeps(deps: Dep[]): AsyncModuleExt[] {\n return deps.map((dep): AsyncModuleExt => {\n if (dep !== null && typeof dep === 'object') {\n if (isAsyncModuleExt(dep)) return dep\n if (isPromise(dep)) {\n const queue: AsyncQueue = Object.assign([], {\n status: QueueStatus.Unresolved,\n })\n\n const obj: AsyncModuleExt = {\n [turbopackExports]: {},\n [turbopackQueues]: (fn: (queue: AsyncQueue) => void) => fn(queue),\n }\n\n dep.then(\n (res) => {\n obj[turbopackExports] = res\n resolveQueue(queue)\n },\n (err) => {\n obj[turbopackError] = err\n resolveQueue(queue)\n }\n )\n\n return obj\n }\n }\n\n return {\n [turbopackExports]: dep,\n [turbopackQueues]: () => {},\n }\n })\n}\n\nfunction asyncModule(\n this: TurbopackBaseContext,\n body: (\n handleAsyncDependencies: (\n deps: Dep[]\n ) => Exports[] | Promise<() => Exports[]>,\n asyncResult: (err?: any) => void\n ) => void,\n hasAwait: boolean\n) {\n const module = this.m\n const queue: AsyncQueue | undefined = hasAwait\n ? Object.assign([], { status: QueueStatus.Unknown })\n : undefined\n\n const depQueues: Set = new Set()\n\n const { resolve, reject, promise: rawPromise } = createPromise()\n\n const promise: AsyncModulePromise = Object.assign(rawPromise, {\n [turbopackExports]: module.exports,\n [turbopackQueues]: (fn) => {\n queue && fn(queue)\n depQueues.forEach(fn)\n promise['catch'](() => {})\n },\n } satisfies AsyncModuleExt)\n\n const attributes: PropertyDescriptor = {\n get(): any {\n return promise\n },\n set(v: any) {\n // Calling `esmExport` leads to this.\n if (v !== promise) {\n promise[turbopackExports] = v\n }\n },\n }\n\n Object.defineProperty(module, 'exports', attributes)\n Object.defineProperty(module, 'namespaceObject', attributes)\n\n function handleAsyncDependencies(deps: Dep[]) {\n const currentDeps = wrapDeps(deps)\n\n const getResult = () =>\n currentDeps.map((d) => {\n if (d[turbopackError]) throw d[turbopackError]\n return d[turbopackExports]\n })\n\n const { promise, resolve } = createPromise<() => Exports[]>()\n\n const fn: AsyncQueueFn = Object.assign(() => resolve(getResult), {\n queueCount: 0,\n })\n\n function fnQueue(q: AsyncQueue) {\n if (q !== queue && !depQueues.has(q)) {\n depQueues.add(q)\n if (q && q.status === QueueStatus.Unresolved) {\n fn.queueCount++\n q.push(fn)\n }\n }\n }\n\n currentDeps.map((dep) => dep[turbopackQueues](fnQueue))\n\n return fn.queueCount ? promise : getResult()\n }\n\n function asyncResult(err?: any) {\n if (err) {\n reject((promise[turbopackError] = err))\n } else {\n resolve(promise[turbopackExports])\n }\n\n resolveQueue(queue)\n }\n\n body(handleAsyncDependencies, asyncResult)\n\n if (queue && queue.status === QueueStatus.Unknown) {\n queue.status = QueueStatus.Unresolved\n }\n}\ncontextPrototype.a = asyncModule\n\n/**\n * A pseudo \"fake\" URL object to resolve to its relative path.\n *\n * When UrlRewriteBehavior is set to relative, calls to the `new URL()` will construct url without base using this\n * runtime function to generate context-agnostic urls between different rendering context, i.e ssr / client to avoid\n * hydration mismatch.\n *\n * This is based on webpack's existing implementation:\n * https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/runtime/RelativeUrlRuntimeModule.js\n */\nconst relativeURL = function relativeURL(this: any, inputUrl: string) {\n const realUrl = new URL(inputUrl, 'x:/')\n const values: Record = {}\n for (const key in realUrl) values[key] = (realUrl as any)[key]\n values.href = inputUrl\n values.pathname = inputUrl.replace(/[?#].*/, '')\n values.origin = values.protocol = ''\n values.toString = values.toJSON = (..._args: Array) => inputUrl\n for (const key in values)\n Object.defineProperty(this, key, {\n enumerable: true,\n configurable: true,\n value: values[key],\n })\n}\nrelativeURL.prototype = URL.prototype\ncontextPrototype.U = relativeURL\n\n/**\n * Utility function to ensure all variants of an enum are handled.\n */\nfunction invariant(never: never, computeMessage: (arg: any) => string): never {\n throw new Error(`Invariant: ${computeMessage(never)}`)\n}\n\n/**\n * A stub function to make `require` available but non-functional in ESM.\n */\nfunction requireStub(_moduleId: ModuleId): never {\n throw new Error('dynamic usage of require is not supported')\n}\ncontextPrototype.z = requireStub\n\n// Make `globalThis` available to the module in a way that cannot be shadowed by a local variable.\ncontextPrototype.g = globalThis\n\ntype ContextConstructor = {\n new (module: Module, exports: Exports): TurbopackBaseContext\n}\n\nfunction applyModuleFactoryName(factory: Function) {\n // Give the module factory a nice name to improve stack traces.\n Object.defineProperty(factory, 'name', {\n value: 'module evaluation',\n })\n}\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 514, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/browser/runtime/base/runtime-base.ts"],"sourcesContent":["/**\n * This file contains runtime types and functions that are shared between all\n * Turbopack *development* ECMAScript runtimes.\n *\n * It will be appended to the runtime code of each runtime right after the\n * shared runtime utils.\n */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n/// \n\n// Used in WebWorkers to tell the runtime about the chunk base path\ndeclare var TURBOPACK_WORKER_LOCATION: string\n// Used in WebWorkers to tell the runtime about the chunk suffix\ndeclare var TURBOPACK_CHUNK_SUFFIX: string\n// Used in WebWorkers to tell the runtime about the current chunk url since it can't be detected via document.currentScript\n// Note it's stored in reversed order to use push and pop\ndeclare var TURBOPACK_NEXT_CHUNK_URLS: ChunkUrl[] | undefined\n\n// Injected by rust code\ndeclare var CHUNK_BASE_PATH: string\ndeclare var CHUNK_SUFFIX: string\n\ninterface TurbopackBrowserBaseContext extends TurbopackBaseContext {\n R: ResolvePathFromModule\n}\n\nconst browserContextPrototype =\n Context.prototype as TurbopackBrowserBaseContext\n\n// Provided by build or dev base\ndeclare function instantiateModule(\n id: ModuleId,\n sourceType: SourceType,\n sourceData: SourceData\n): Module\n\ntype RuntimeParams = {\n otherChunks: ChunkData[]\n runtimeModuleIds: ModuleId[]\n}\n\ntype ChunkRegistration = [\n chunkPath: ChunkScript,\n ...([RuntimeParams] | CompressedModuleFactories),\n]\n\ntype ChunkList = {\n script: ChunkListScript\n chunks: ChunkData[]\n source: 'entry' | 'dynamic'\n}\n\nenum SourceType {\n /**\n * The module was instantiated because it was included in an evaluated chunk's\n * runtime.\n * SourceData is a ChunkPath.\n */\n Runtime = 0,\n /**\n * The module was instantiated because a parent module imported it.\n * SourceData is a ModuleId.\n */\n Parent = 1,\n /**\n * The module was instantiated because it was included in a chunk's hot module\n * update.\n * SourceData is an array of ModuleIds or undefined.\n */\n Update = 2,\n}\n\ntype SourceData = ChunkPath | ModuleId | ModuleId[] | undefined\ninterface RuntimeBackend {\n registerChunk: (chunkPath: ChunkPath, params?: RuntimeParams) => void\n /**\n * Returns the same Promise for the same chunk URL.\n */\n loadChunkCached: (sourceType: SourceType, chunkUrl: ChunkUrl) => Promise\n loadWebAssembly: (\n sourceType: SourceType,\n sourceData: SourceData,\n wasmChunkPath: ChunkPath,\n edgeModule: () => WebAssembly.Module,\n importsObj: WebAssembly.Imports\n ) => Promise\n loadWebAssemblyModule: (\n sourceType: SourceType,\n sourceData: SourceData,\n wasmChunkPath: ChunkPath,\n edgeModule: () => WebAssembly.Module\n ) => Promise\n}\n\ninterface DevRuntimeBackend {\n reloadChunk?: (chunkUrl: ChunkUrl) => Promise\n unloadChunk?: (chunkUrl: ChunkUrl) => void\n restart: () => void\n}\n\nconst moduleFactories: ModuleFactories = new Map()\ncontextPrototype.M = moduleFactories\n\nconst availableModules: Map | true> = new Map()\n\nconst availableModuleChunks: Map | true> = new Map()\n\nfunction factoryNotAvailableMessage(\n moduleId: ModuleId,\n sourceType: SourceType,\n sourceData: SourceData\n): string {\n let instantiationReason\n switch (sourceType) {\n case SourceType.Runtime:\n instantiationReason = `as a runtime entry of chunk ${sourceData}`\n break\n case SourceType.Parent:\n instantiationReason = `because it was required from module ${sourceData}`\n break\n case SourceType.Update:\n instantiationReason = 'because of an HMR update'\n break\n default:\n invariant(\n sourceType,\n (sourceType) => `Unknown source type: ${sourceType}`\n )\n }\n return `Module ${moduleId} was instantiated ${instantiationReason}, but the module factory is not available.`\n}\n\nfunction loadChunk(\n this: TurbopackBrowserBaseContext,\n chunkData: ChunkData\n): Promise {\n return loadChunkInternal(SourceType.Parent, this.m.id, chunkData)\n}\nbrowserContextPrototype.l = loadChunk\n\nfunction loadInitialChunk(chunkPath: ChunkPath, chunkData: ChunkData) {\n return loadChunkInternal(SourceType.Runtime, chunkPath, chunkData)\n}\n\nasync function loadChunkInternal(\n sourceType: SourceType,\n sourceData: SourceData,\n chunkData: ChunkData\n): Promise {\n if (typeof chunkData === 'string') {\n return loadChunkPath(sourceType, sourceData, chunkData)\n }\n\n const includedList = chunkData.included || []\n const modulesPromises = includedList.map((included) => {\n if (moduleFactories.has(included)) return true\n return availableModules.get(included)\n })\n if (modulesPromises.length > 0 && modulesPromises.every((p) => p)) {\n // When all included items are already loaded or loading, we can skip loading ourselves\n await Promise.all(modulesPromises)\n return\n }\n\n const includedModuleChunksList = chunkData.moduleChunks || []\n const moduleChunksPromises = includedModuleChunksList\n .map((included) => {\n // TODO(alexkirsz) Do we need this check?\n // if (moduleFactories[included]) return true;\n return availableModuleChunks.get(included)\n })\n .filter((p) => p)\n\n let promise: Promise\n if (moduleChunksPromises.length > 0) {\n // Some module chunks are already loaded or loading.\n\n if (moduleChunksPromises.length === includedModuleChunksList.length) {\n // When all included module chunks are already loaded or loading, we can skip loading ourselves\n await Promise.all(moduleChunksPromises)\n return\n }\n\n const moduleChunksToLoad: Set = new Set()\n for (const moduleChunk of includedModuleChunksList) {\n if (!availableModuleChunks.has(moduleChunk)) {\n moduleChunksToLoad.add(moduleChunk)\n }\n }\n\n for (const moduleChunkToLoad of moduleChunksToLoad) {\n const promise = loadChunkPath(sourceType, sourceData, moduleChunkToLoad)\n\n availableModuleChunks.set(moduleChunkToLoad, promise)\n\n moduleChunksPromises.push(promise)\n }\n\n promise = Promise.all(moduleChunksPromises)\n } else {\n promise = loadChunkPath(sourceType, sourceData, chunkData.path)\n\n // Mark all included module chunks as loading if they are not already loaded or loading.\n for (const includedModuleChunk of includedModuleChunksList) {\n if (!availableModuleChunks.has(includedModuleChunk)) {\n availableModuleChunks.set(includedModuleChunk, promise)\n }\n }\n }\n\n for (const included of includedList) {\n if (!availableModules.has(included)) {\n // It might be better to race old and new promises, but it's rare that the new promise will be faster than a request started earlier.\n // In production it's even more rare, because the chunk optimization tries to deduplicate modules anyway.\n availableModules.set(included, promise)\n }\n }\n\n await promise\n}\n\nconst loadedChunk = Promise.resolve(undefined)\nconst instrumentedBackendLoadChunks = new WeakMap<\n Promise,\n Promise | typeof loadedChunk\n>()\n// Do not make this async. React relies on referential equality of the returned Promise.\nfunction loadChunkByUrl(\n this: TurbopackBrowserBaseContext,\n chunkUrl: ChunkUrl\n) {\n return loadChunkByUrlInternal(SourceType.Parent, this.m.id, chunkUrl)\n}\nbrowserContextPrototype.L = loadChunkByUrl\n\n// Do not make this async. React relies on referential equality of the returned Promise.\nfunction loadChunkByUrlInternal(\n sourceType: SourceType,\n sourceData: SourceData,\n chunkUrl: ChunkUrl\n): Promise {\n const thenable = BACKEND.loadChunkCached(sourceType, chunkUrl)\n let entry = instrumentedBackendLoadChunks.get(thenable)\n if (entry === undefined) {\n const resolve = instrumentedBackendLoadChunks.set.bind(\n instrumentedBackendLoadChunks,\n thenable,\n loadedChunk\n )\n entry = thenable.then(resolve).catch((cause) => {\n let loadReason: string\n switch (sourceType) {\n case SourceType.Runtime:\n loadReason = `as a runtime dependency of chunk ${sourceData}`\n break\n case SourceType.Parent:\n loadReason = `from module ${sourceData}`\n break\n case SourceType.Update:\n loadReason = 'from an HMR update'\n break\n default:\n invariant(\n sourceType,\n (sourceType) => `Unknown source type: ${sourceType}`\n )\n }\n let error = new Error(\n `Failed to load chunk ${chunkUrl} ${loadReason}${\n cause ? `: ${cause}` : ''\n }`,\n cause ? { cause } : undefined\n )\n error.name = 'ChunkLoadError'\n throw error\n })\n instrumentedBackendLoadChunks.set(thenable, entry)\n }\n\n return entry\n}\n\n// Do not make this async. React relies on referential equality of the returned Promise.\nfunction loadChunkPath(\n sourceType: SourceType,\n sourceData: SourceData,\n chunkPath: ChunkPath\n): Promise {\n const url = getChunkRelativeUrl(chunkPath)\n return loadChunkByUrlInternal(sourceType, sourceData, url)\n}\n\n/**\n * Returns an absolute url to an asset.\n */\nfunction resolvePathFromModule(\n this: TurbopackBaseContext,\n moduleId: string\n): string {\n const exported = this.r(moduleId)\n return exported?.default ?? exported\n}\nbrowserContextPrototype.R = resolvePathFromModule\n\n/**\n * no-op for browser\n * @param modulePath\n */\nfunction resolveAbsolutePath(modulePath?: string): string {\n return `/ROOT/${modulePath ?? ''}`\n}\nbrowserContextPrototype.P = resolveAbsolutePath\n\n/**\n * Returns a blob URL for the worker.\n * @param chunks list of chunks to load\n */\nfunction getWorkerBlobURL(chunks: ChunkPath[]): string {\n // It is important to reverse the array so when bootstrapping we can infer what chunk is being\n // evaluated by poping urls off of this array. See `getPathFromScript`\n let bootstrap = `self.TURBOPACK_WORKER_LOCATION = ${JSON.stringify(location.origin)};\nself.TURBOPACK_CHUNK_SUFFIX = ${JSON.stringify(CHUNK_SUFFIX)};\nself.TURBOPACK_NEXT_CHUNK_URLS = ${JSON.stringify(chunks.reverse().map(getChunkRelativeUrl), null, 2)};\nimportScripts(...self.TURBOPACK_NEXT_CHUNK_URLS.map(c => self.TURBOPACK_WORKER_LOCATION + c).reverse());`\n let blob = new Blob([bootstrap], { type: 'text/javascript' })\n return URL.createObjectURL(blob)\n}\nbrowserContextPrototype.b = getWorkerBlobURL\n\n/**\n * Instantiates a runtime module.\n */\nfunction instantiateRuntimeModule(\n moduleId: ModuleId,\n chunkPath: ChunkPath\n): Module {\n return instantiateModule(moduleId, SourceType.Runtime, chunkPath)\n}\n/**\n * Returns the URL relative to the origin where a chunk can be fetched from.\n */\nfunction getChunkRelativeUrl(chunkPath: ChunkPath | ChunkListPath): ChunkUrl {\n return `${CHUNK_BASE_PATH}${chunkPath\n .split('/')\n .map((p) => encodeURIComponent(p))\n .join('/')}${CHUNK_SUFFIX}` as ChunkUrl\n}\n\n/**\n * Return the ChunkPath from a ChunkScript.\n */\nfunction getPathFromScript(chunkScript: ChunkPath | ChunkScript): ChunkPath\nfunction getPathFromScript(\n chunkScript: ChunkListPath | ChunkListScript\n): ChunkListPath\nfunction getPathFromScript(\n chunkScript: ChunkPath | ChunkListPath | ChunkScript | ChunkListScript\n): ChunkPath | ChunkListPath {\n if (typeof chunkScript === 'string') {\n return chunkScript as ChunkPath | ChunkListPath\n }\n const chunkUrl =\n typeof TURBOPACK_NEXT_CHUNK_URLS !== 'undefined'\n ? TURBOPACK_NEXT_CHUNK_URLS.pop()!\n : chunkScript.getAttribute('src')!\n const src = decodeURIComponent(chunkUrl.replace(/[?#].*$/, ''))\n const path = src.startsWith(CHUNK_BASE_PATH)\n ? src.slice(CHUNK_BASE_PATH.length)\n : src\n return path as ChunkPath | ChunkListPath\n}\n\nconst regexJsUrl = /\\.js(?:\\?[^#]*)?(?:#.*)?$/\n/**\n * Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment.\n */\nfunction isJs(chunkUrlOrPath: ChunkUrl | ChunkPath): boolean {\n return regexJsUrl.test(chunkUrlOrPath)\n}\n\nconst regexCssUrl = /\\.css(?:\\?[^#]*)?(?:#.*)?$/\n/**\n * Checks if a given path/URL ends with .css, optionally followed by ?query or #fragment.\n */\nfunction isCss(chunkUrl: ChunkUrl): boolean {\n return regexCssUrl.test(chunkUrl)\n}\n\nfunction loadWebAssembly(\n this: TurbopackBaseContext,\n chunkPath: ChunkPath,\n edgeModule: () => WebAssembly.Module,\n importsObj: WebAssembly.Imports\n): Promise {\n return BACKEND.loadWebAssembly(\n SourceType.Parent,\n this.m.id,\n chunkPath,\n edgeModule,\n importsObj\n )\n}\ncontextPrototype.w = loadWebAssembly\n\nfunction loadWebAssemblyModule(\n this: TurbopackBaseContext,\n chunkPath: ChunkPath,\n edgeModule: () => WebAssembly.Module\n): Promise {\n return BACKEND.loadWebAssemblyModule(\n SourceType.Parent,\n this.m.id,\n chunkPath,\n edgeModule\n )\n}\ncontextPrototype.u = loadWebAssemblyModule\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 741, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/browser/runtime/base/dev-base.ts"],"sourcesContent":["/// \n/// \n/// \n\ninterface TurbopackDevContext extends TurbopackBrowserBaseContext {\n k: RefreshContext\n}\n\nconst devContextPrototype = Context.prototype as TurbopackDevContext\n\n/**\n * This file contains runtime types and functions that are shared between all\n * Turbopack *development* ECMAScript runtimes.\n *\n * It will be appended to the runtime code of each runtime right after the\n * shared runtime utils.\n */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\nconst devModuleCache: ModuleCache = Object.create(null)\ndevContextPrototype.c = devModuleCache\n\n// This file must not use `import` and `export` statements. Otherwise, it\n// becomes impossible to augment interfaces declared in ``d files\n// (e.g. `Module`). Hence, the need for `import()` here.\ntype RefreshRuntimeGlobals =\n import('@next/react-refresh-utils/dist/runtime').RefreshRuntimeGlobals\n\ndeclare var $RefreshHelpers$: RefreshRuntimeGlobals['$RefreshHelpers$']\ndeclare var $RefreshReg$: RefreshRuntimeGlobals['$RefreshReg$']\ndeclare var $RefreshSig$: RefreshRuntimeGlobals['$RefreshSig$']\ndeclare var $RefreshInterceptModuleExecution$: RefreshRuntimeGlobals['$RefreshInterceptModuleExecution$']\n\ntype RefreshContext = {\n register: RefreshRuntimeGlobals['$RefreshReg$']\n signature: RefreshRuntimeGlobals['$RefreshSig$']\n registerExports: typeof registerExportsAndSetupBoundaryForReactRefresh\n}\n\ntype RefreshHelpers = RefreshRuntimeGlobals['$RefreshHelpers$']\n\ntype ModuleFactory = (\n this: Module['exports'],\n context: TurbopackDevContext\n) => unknown\n\ninterface DevRuntimeBackend {\n reloadChunk?: (chunkUrl: ChunkUrl) => Promise\n unloadChunk?: (chunkUrl: ChunkUrl) => void\n restart: () => void\n}\n\nclass UpdateApplyError extends Error {\n name = 'UpdateApplyError'\n\n dependencyChain: ModuleId[]\n\n constructor(message: string, dependencyChain: ModuleId[]) {\n super(message)\n this.dependencyChain = dependencyChain\n }\n}\n\n/**\n * Module IDs that are instantiated as part of the runtime of a chunk.\n */\nconst runtimeModules: Set = new Set()\n\n/**\n * Map from module ID to the chunks that contain this module.\n *\n * In HMR, we need to keep track of which modules are contained in which so\n * chunks. This is so we don't eagerly dispose of a module when it is removed\n * from chunk A, but still exists in chunk B.\n */\nconst moduleChunksMap: Map> = new Map()\n/**\n * Map from a chunk path to all modules it contains.\n */\nconst chunkModulesMap: Map> = new Map()\n/**\n * Chunk lists that contain a runtime. When these chunk lists receive an update\n * that can't be reconciled with the current state of the page, we need to\n * reload the runtime entirely.\n */\nconst runtimeChunkLists: Set = new Set()\n/**\n * Map from a chunk list to the chunk paths it contains.\n */\nconst chunkListChunksMap: Map> = new Map()\n/**\n * Map from a chunk path to the chunk lists it belongs to.\n */\nconst chunkChunkListsMap: Map> = new Map()\n\n/**\n * Maps module IDs to persisted data between executions of their hot module\n * implementation (`hot.data`).\n */\nconst moduleHotData: Map = new Map()\n/**\n * Maps module instances to their hot module state.\n */\nconst moduleHotState: Map = new Map()\n/**\n * Modules that call `module.hot.invalidate()` (while being updated).\n */\nconst queuedInvalidatedModules: Set = new Set()\n\n/**\n * Gets or instantiates a runtime module.\n */\n// @ts-ignore\nfunction getOrInstantiateRuntimeModule(\n chunkPath: ChunkPath,\n moduleId: ModuleId\n): Module {\n const module = devModuleCache[moduleId]\n if (module) {\n if (module.error) {\n throw module.error\n }\n return module\n }\n\n // @ts-ignore\n return instantiateModule(moduleId, SourceType.Runtime, chunkPath)\n}\n\n/**\n * Retrieves a module from the cache, or instantiate it if it is not cached.\n */\n// @ts-ignore Defined in `runtime-utils.ts`\nconst getOrInstantiateModuleFromParent: GetOrInstantiateModuleFromParent<\n HotModule\n> = (id, sourceModule) => {\n if (!sourceModule.hot.active) {\n console.warn(\n `Unexpected import of module ${id} from module ${sourceModule.id}, which was deleted by an HMR update`\n )\n }\n\n const module = devModuleCache[id]\n\n if (sourceModule.children.indexOf(id) === -1) {\n sourceModule.children.push(id)\n }\n\n if (module) {\n if (module.error) {\n throw module.error\n }\n\n if (module.parents.indexOf(sourceModule.id) === -1) {\n module.parents.push(sourceModule.id)\n }\n\n return module\n }\n\n return instantiateModule(id, SourceType.Parent, sourceModule.id)\n}\n\nfunction DevContext(\n this: TurbopackDevContext,\n module: HotModule,\n exports: Exports,\n refresh: RefreshContext\n) {\n Context.call(this, module, exports)\n this.k = refresh\n}\nDevContext.prototype = Context.prototype\n\ntype DevContextConstructor = {\n new (\n module: HotModule,\n exports: Exports,\n refresh: RefreshContext\n ): TurbopackDevContext\n}\n\nfunction instantiateModule(\n moduleId: ModuleId,\n sourceType: SourceType,\n sourceData: SourceData\n): Module {\n // We are in development, this is always a string.\n let id = moduleId as string\n\n const moduleFactory = moduleFactories.get(id)\n if (typeof moduleFactory !== 'function') {\n // This can happen if modules incorrectly handle HMR disposes/updates,\n // e.g. when they keep a `setTimeout` around which still executes old code\n // and contains e.g. a `require(\"something\")` call.\n throw new Error(\n factoryNotAvailableMessage(id, sourceType, sourceData) +\n ' It might have been deleted in an HMR update.'\n )\n }\n\n const hotData = moduleHotData.get(id)!\n const { hot, hotState } = createModuleHot(id, hotData)\n\n let parents: ModuleId[]\n switch (sourceType) {\n case SourceType.Runtime:\n runtimeModules.add(id)\n parents = []\n break\n case SourceType.Parent:\n // No need to add this module as a child of the parent module here, this\n // has already been taken care of in `getOrInstantiateModuleFromParent`.\n parents = [sourceData as ModuleId]\n break\n case SourceType.Update:\n parents = (sourceData as ModuleId[]) || []\n break\n default:\n invariant(\n sourceType,\n (sourceType) => `Unknown source type: ${sourceType}`\n )\n }\n\n const module: HotModule = createModuleObject(id) as HotModule\n const exports = module.exports\n module.parents = parents\n module.children = []\n module.hot = hot\n\n devModuleCache[id] = module\n moduleHotState.set(module, hotState)\n\n // NOTE(alexkirsz) This can fail when the module encounters a runtime error.\n try {\n runModuleExecutionHooks(module, (refresh) => {\n const context = new (DevContext as any as DevContextConstructor)(\n module,\n exports,\n refresh\n )\n moduleFactory(context, module, exports)\n })\n } catch (error) {\n module.error = error as any\n throw error\n }\n\n if (module.namespaceObject && module.exports !== module.namespaceObject) {\n // in case of a circular dependency: cjs1 -> esm2 -> cjs1\n interopEsm(module.exports, module.namespaceObject)\n }\n\n return module\n}\n\nconst DUMMY_REFRESH_CONTEXT = {\n register: (_type: unknown, _id: unknown) => {},\n signature: () => (_type: unknown) => {},\n registerExports: (_module: unknown, _helpers: unknown) => {},\n}\n\n/**\n * NOTE(alexkirsz) Webpack has a \"module execution\" interception hook that\n * Next.js' React Refresh runtime hooks into to add module context to the\n * refresh registry.\n */\nfunction runModuleExecutionHooks(\n module: HotModule,\n executeModule: (ctx: RefreshContext) => void\n) {\n if (typeof globalThis.$RefreshInterceptModuleExecution$ === 'function') {\n const cleanupReactRefreshIntercept =\n globalThis.$RefreshInterceptModuleExecution$(module.id)\n try {\n executeModule({\n register: globalThis.$RefreshReg$,\n signature: globalThis.$RefreshSig$,\n registerExports: registerExportsAndSetupBoundaryForReactRefresh,\n })\n } finally {\n // Always cleanup the intercept, even if module execution failed.\n cleanupReactRefreshIntercept()\n }\n } else {\n // If the react refresh hooks are not installed we need to bind dummy functions.\n // This is expected when running in a Web Worker. It is also common in some of\n // our test environments.\n executeModule(DUMMY_REFRESH_CONTEXT)\n }\n}\n\n/**\n * This is adapted from https://github.com/vercel/next.js/blob/3466862d9dc9c8bb3131712134d38757b918d1c0/packages/react-refresh-utils/internal/ReactRefreshModule.runtime.ts\n */\nfunction registerExportsAndSetupBoundaryForReactRefresh(\n module: HotModule,\n helpers: RefreshHelpers\n) {\n const currentExports = module.exports\n const prevExports = module.hot.data.prevExports ?? null\n\n helpers.registerExportsForReactRefresh(currentExports, module.id)\n\n // A module can be accepted automatically based on its exports, e.g. when\n // it is a Refresh Boundary.\n if (helpers.isReactRefreshBoundary(currentExports)) {\n // Save the previous exports on update, so we can compare the boundary\n // signatures.\n module.hot.dispose((data) => {\n data.prevExports = currentExports\n })\n // Unconditionally accept an update to this module, we'll check if it's\n // still a Refresh Boundary later.\n module.hot.accept()\n\n // This field is set when the previous version of this module was a\n // Refresh Boundary, letting us know we need to check for invalidation or\n // enqueue an update.\n if (prevExports !== null) {\n // A boundary can become ineligible if its exports are incompatible\n // with the previous exports.\n //\n // For example, if you add/remove/change exports, we'll want to\n // re-execute the importing modules, and force those components to\n // re-render. Similarly, if you convert a class component to a\n // function, we want to invalidate the boundary.\n if (\n helpers.shouldInvalidateReactRefreshBoundary(\n helpers.getRefreshBoundarySignature(prevExports),\n helpers.getRefreshBoundarySignature(currentExports)\n )\n ) {\n module.hot.invalidate()\n } else {\n helpers.scheduleUpdate()\n }\n }\n } else {\n // Since we just executed the code for the module, it's possible that the\n // new exports made it ineligible for being a boundary.\n // We only care about the case when we were _previously_ a boundary,\n // because we already accepted this update (accidental side effect).\n const isNoLongerABoundary = prevExports !== null\n if (isNoLongerABoundary) {\n module.hot.invalidate()\n }\n }\n}\n\nfunction formatDependencyChain(dependencyChain: ModuleId[]): string {\n return `Dependency chain: ${dependencyChain.join(' -> ')}`\n}\n\nfunction computeOutdatedModules(\n added: Map,\n modified: Map\n): {\n outdatedModules: Set\n newModuleFactories: Map\n} {\n const newModuleFactories = new Map()\n\n for (const [moduleId, entry] of added) {\n if (entry != null) {\n newModuleFactories.set(moduleId, _eval(entry))\n }\n }\n\n const outdatedModules = computedInvalidatedModules(modified.keys())\n\n for (const [moduleId, entry] of modified) {\n newModuleFactories.set(moduleId, _eval(entry))\n }\n\n return { outdatedModules, newModuleFactories }\n}\n\nfunction computedInvalidatedModules(\n invalidated: Iterable\n): Set {\n const outdatedModules = new Set()\n\n for (const moduleId of invalidated) {\n const effect = getAffectedModuleEffects(moduleId)\n\n switch (effect.type) {\n case 'unaccepted':\n throw new UpdateApplyError(\n `cannot apply update: unaccepted module. ${formatDependencyChain(\n effect.dependencyChain\n )}.`,\n effect.dependencyChain\n )\n case 'self-declined':\n throw new UpdateApplyError(\n `cannot apply update: self-declined module. ${formatDependencyChain(\n effect.dependencyChain\n )}.`,\n effect.dependencyChain\n )\n case 'accepted':\n for (const outdatedModuleId of effect.outdatedModules) {\n outdatedModules.add(outdatedModuleId)\n }\n break\n // TODO(alexkirsz) Dependencies: handle dependencies effects.\n default:\n invariant(effect, (effect) => `Unknown effect type: ${effect?.type}`)\n }\n }\n\n return outdatedModules\n}\n\nfunction computeOutdatedSelfAcceptedModules(\n outdatedModules: Iterable\n): { moduleId: ModuleId; errorHandler: true | Function }[] {\n const outdatedSelfAcceptedModules: {\n moduleId: ModuleId\n errorHandler: true | Function\n }[] = []\n for (const moduleId of outdatedModules) {\n const module = devModuleCache[moduleId]\n const hotState = moduleHotState.get(module)!\n if (module && hotState.selfAccepted && !hotState.selfInvalidated) {\n outdatedSelfAcceptedModules.push({\n moduleId,\n errorHandler: hotState.selfAccepted,\n })\n }\n }\n return outdatedSelfAcceptedModules\n}\n\n/**\n * Adds, deletes, and moves modules between chunks. This must happen before the\n * dispose phase as it needs to know which modules were removed from all chunks,\n * which we can only compute *after* taking care of added and moved modules.\n */\nfunction updateChunksPhase(\n chunksAddedModules: Map>,\n chunksDeletedModules: Map>\n): { disposedModules: Set } {\n for (const [chunkPath, addedModuleIds] of chunksAddedModules) {\n for (const moduleId of addedModuleIds) {\n addModuleToChunk(moduleId, chunkPath)\n }\n }\n\n const disposedModules: Set = new Set()\n for (const [chunkPath, addedModuleIds] of chunksDeletedModules) {\n for (const moduleId of addedModuleIds) {\n if (removeModuleFromChunk(moduleId, chunkPath)) {\n disposedModules.add(moduleId)\n }\n }\n }\n\n return { disposedModules }\n}\n\nfunction disposePhase(\n outdatedModules: Iterable,\n disposedModules: Iterable\n): { outdatedModuleParents: Map> } {\n for (const moduleId of outdatedModules) {\n disposeModule(moduleId, 'replace')\n }\n\n for (const moduleId of disposedModules) {\n disposeModule(moduleId, 'clear')\n }\n\n // Removing modules from the module cache is a separate step.\n // We also want to keep track of previous parents of the outdated modules.\n const outdatedModuleParents = new Map()\n for (const moduleId of outdatedModules) {\n const oldModule = devModuleCache[moduleId]\n outdatedModuleParents.set(moduleId, oldModule?.parents)\n delete devModuleCache[moduleId]\n }\n\n // TODO(alexkirsz) Dependencies: remove outdated dependency from module\n // children.\n\n return { outdatedModuleParents }\n}\n\n/**\n * Disposes of an instance of a module.\n *\n * Returns the persistent hot data that should be kept for the next module\n * instance.\n *\n * NOTE: mode = \"replace\" will not remove modules from the devModuleCache\n * This must be done in a separate step afterwards.\n * This is important because all modules need to be disposed to update the\n * parent/child relationships before they are actually removed from the devModuleCache.\n * If this was done in this method, the following disposeModule calls won't find\n * the module from the module id in the cache.\n */\nfunction disposeModule(moduleId: ModuleId, mode: 'clear' | 'replace') {\n const module = devModuleCache[moduleId]\n if (!module) {\n return\n }\n\n const hotState = moduleHotState.get(module)!\n const data = {}\n\n // Run the `hot.dispose` handler, if any, passing in the persistent\n // `hot.data` object.\n for (const disposeHandler of hotState.disposeHandlers) {\n disposeHandler(data)\n }\n\n // This used to warn in `getOrInstantiateModuleFromParent` when a disposed\n // module is still importing other modules.\n module.hot.active = false\n\n moduleHotState.delete(module)\n\n // TODO(alexkirsz) Dependencies: delete the module from outdated deps.\n\n // Remove the disposed module from its children's parent list.\n // It will be added back once the module re-instantiates and imports its\n // children again.\n for (const childId of module.children) {\n const child = devModuleCache[childId]\n if (!child) {\n continue\n }\n\n const idx = child.parents.indexOf(module.id)\n if (idx >= 0) {\n child.parents.splice(idx, 1)\n }\n }\n\n switch (mode) {\n case 'clear':\n delete devModuleCache[module.id]\n moduleHotData.delete(module.id)\n break\n case 'replace':\n moduleHotData.set(module.id, data)\n break\n default:\n invariant(mode, (mode) => `invalid mode: ${mode}`)\n }\n}\n\nfunction applyPhase(\n outdatedSelfAcceptedModules: {\n moduleId: ModuleId\n errorHandler: true | Function\n }[],\n newModuleFactories: Map,\n outdatedModuleParents: Map>,\n reportError: (err: any) => void\n) {\n // Update module factories.\n for (const [moduleId, factory] of newModuleFactories.entries()) {\n applyModuleFactoryName(factory)\n moduleFactories.set(moduleId, factory)\n }\n\n // TODO(alexkirsz) Run new runtime entries here.\n\n // TODO(alexkirsz) Dependencies: call accept handlers for outdated deps.\n\n // Re-instantiate all outdated self-accepted modules.\n for (const { moduleId, errorHandler } of outdatedSelfAcceptedModules) {\n try {\n instantiateModule(\n moduleId,\n SourceType.Update,\n outdatedModuleParents.get(moduleId)\n )\n } catch (err) {\n if (typeof errorHandler === 'function') {\n try {\n errorHandler(err, { moduleId, module: devModuleCache[moduleId] })\n } catch (err2) {\n reportError(err2)\n reportError(err)\n }\n } else {\n reportError(err)\n }\n }\n }\n}\n\nfunction applyUpdate(update: PartialUpdate) {\n switch (update.type) {\n case 'ChunkListUpdate':\n applyChunkListUpdate(update)\n break\n default:\n invariant(update, (update) => `Unknown update type: ${update.type}`)\n }\n}\n\nfunction applyChunkListUpdate(update: ChunkListUpdate) {\n if (update.merged != null) {\n for (const merged of update.merged) {\n switch (merged.type) {\n case 'EcmascriptMergedUpdate':\n applyEcmascriptMergedUpdate(merged)\n break\n default:\n invariant(merged, (merged) => `Unknown merged type: ${merged.type}`)\n }\n }\n }\n\n if (update.chunks != null) {\n for (const [chunkPath, chunkUpdate] of Object.entries(\n update.chunks\n ) as Array<[ChunkPath, ChunkUpdate]>) {\n const chunkUrl = getChunkRelativeUrl(chunkPath)\n\n switch (chunkUpdate.type) {\n case 'added':\n BACKEND.loadChunkCached(SourceType.Update, chunkUrl)\n break\n case 'total':\n DEV_BACKEND.reloadChunk?.(chunkUrl)\n break\n case 'deleted':\n DEV_BACKEND.unloadChunk?.(chunkUrl)\n break\n case 'partial':\n invariant(\n chunkUpdate.instruction,\n (instruction) =>\n `Unknown partial instruction: ${JSON.stringify(instruction)}.`\n )\n break\n default:\n invariant(\n chunkUpdate,\n (chunkUpdate) => `Unknown chunk update type: ${chunkUpdate.type}`\n )\n }\n }\n }\n}\n\nfunction applyEcmascriptMergedUpdate(update: EcmascriptMergedUpdate) {\n const { entries = {}, chunks = {} } = update\n const { added, modified, chunksAdded, chunksDeleted } = computeChangedModules(\n entries,\n chunks\n )\n const { outdatedModules, newModuleFactories } = computeOutdatedModules(\n added,\n modified\n )\n const { disposedModules } = updateChunksPhase(chunksAdded, chunksDeleted)\n\n applyInternal(outdatedModules, disposedModules, newModuleFactories)\n}\n\nfunction applyInvalidatedModules(outdatedModules: Set) {\n if (queuedInvalidatedModules.size > 0) {\n computedInvalidatedModules(queuedInvalidatedModules).forEach((moduleId) => {\n outdatedModules.add(moduleId)\n })\n\n queuedInvalidatedModules.clear()\n }\n\n return outdatedModules\n}\n\nfunction applyInternal(\n outdatedModules: Set,\n disposedModules: Iterable,\n newModuleFactories: Map\n) {\n outdatedModules = applyInvalidatedModules(outdatedModules)\n\n const outdatedSelfAcceptedModules =\n computeOutdatedSelfAcceptedModules(outdatedModules)\n\n const { outdatedModuleParents } = disposePhase(\n outdatedModules,\n disposedModules\n )\n\n // we want to continue on error and only throw the error after we tried applying all updates\n let error: any\n\n function reportError(err: any) {\n if (!error) error = err\n }\n\n applyPhase(\n outdatedSelfAcceptedModules,\n newModuleFactories,\n outdatedModuleParents,\n reportError\n )\n\n if (error) {\n throw error\n }\n\n if (queuedInvalidatedModules.size > 0) {\n applyInternal(new Set(), [], new Map())\n }\n}\n\nfunction computeChangedModules(\n entries: Record,\n updates: Record\n): {\n added: Map\n modified: Map\n deleted: Set\n chunksAdded: Map>\n chunksDeleted: Map>\n} {\n const chunksAdded = new Map()\n const chunksDeleted = new Map()\n const added: Map = new Map()\n const modified = new Map()\n const deleted: Set = new Set()\n\n for (const [chunkPath, mergedChunkUpdate] of Object.entries(updates) as Array<\n [ChunkPath, EcmascriptMergedChunkUpdate]\n >) {\n switch (mergedChunkUpdate.type) {\n case 'added': {\n const updateAdded = new Set(mergedChunkUpdate.modules)\n for (const moduleId of updateAdded) {\n added.set(moduleId, entries[moduleId])\n }\n chunksAdded.set(chunkPath, updateAdded)\n break\n }\n case 'deleted': {\n // We could also use `mergedChunkUpdate.modules` here.\n const updateDeleted = new Set(chunkModulesMap.get(chunkPath))\n for (const moduleId of updateDeleted) {\n deleted.add(moduleId)\n }\n chunksDeleted.set(chunkPath, updateDeleted)\n break\n }\n case 'partial': {\n const updateAdded = new Set(mergedChunkUpdate.added)\n const updateDeleted = new Set(mergedChunkUpdate.deleted)\n for (const moduleId of updateAdded) {\n added.set(moduleId, entries[moduleId])\n }\n for (const moduleId of updateDeleted) {\n deleted.add(moduleId)\n }\n chunksAdded.set(chunkPath, updateAdded)\n chunksDeleted.set(chunkPath, updateDeleted)\n break\n }\n default:\n invariant(\n mergedChunkUpdate,\n (mergedChunkUpdate) =>\n `Unknown merged chunk update type: ${mergedChunkUpdate.type}`\n )\n }\n }\n\n // If a module was added from one chunk and deleted from another in the same update,\n // consider it to be modified, as it means the module was moved from one chunk to another\n // AND has new code in a single update.\n for (const moduleId of added.keys()) {\n if (deleted.has(moduleId)) {\n added.delete(moduleId)\n deleted.delete(moduleId)\n }\n }\n\n for (const [moduleId, entry] of Object.entries(entries)) {\n // Modules that haven't been added to any chunk but have new code are considered\n // to be modified.\n // This needs to be under the previous loop, as we need it to get rid of modules\n // that were added and deleted in the same update.\n if (!added.has(moduleId)) {\n modified.set(moduleId, entry)\n }\n }\n\n return { added, deleted, modified, chunksAdded, chunksDeleted }\n}\n\ntype ModuleEffect =\n | {\n type: 'unaccepted'\n dependencyChain: ModuleId[]\n }\n | {\n type: 'self-declined'\n dependencyChain: ModuleId[]\n moduleId: ModuleId\n }\n | {\n type: 'accepted'\n moduleId: ModuleId\n outdatedModules: Set\n }\n\nfunction getAffectedModuleEffects(moduleId: ModuleId): ModuleEffect {\n const outdatedModules: Set = new Set()\n\n type QueueItem = { moduleId?: ModuleId; dependencyChain: ModuleId[] }\n\n const queue: QueueItem[] = [\n {\n moduleId,\n dependencyChain: [],\n },\n ]\n\n let nextItem\n while ((nextItem = queue.shift())) {\n const { moduleId, dependencyChain } = nextItem\n\n if (moduleId != null) {\n if (outdatedModules.has(moduleId)) {\n // Avoid infinite loops caused by cycles between modules in the dependency chain.\n continue\n }\n\n outdatedModules.add(moduleId)\n }\n\n // We've arrived at the runtime of the chunk, which means that nothing\n // else above can accept this update.\n if (moduleId === undefined) {\n return {\n type: 'unaccepted',\n dependencyChain,\n }\n }\n\n const module = devModuleCache[moduleId]\n const hotState = moduleHotState.get(module)!\n\n if (\n // The module is not in the cache. Since this is a \"modified\" update,\n // it means that the module was never instantiated before.\n !module || // The module accepted itself without invalidating globalThis.\n // TODO is that right?\n (hotState.selfAccepted && !hotState.selfInvalidated)\n ) {\n continue\n }\n\n if (hotState.selfDeclined) {\n return {\n type: 'self-declined',\n dependencyChain,\n moduleId,\n }\n }\n\n if (runtimeModules.has(moduleId)) {\n queue.push({\n moduleId: undefined,\n dependencyChain: [...dependencyChain, moduleId],\n })\n continue\n }\n\n for (const parentId of module.parents) {\n const parent = devModuleCache[parentId]\n\n if (!parent) {\n // TODO(alexkirsz) Is this even possible?\n continue\n }\n\n // TODO(alexkirsz) Dependencies: check accepted and declined\n // dependencies here.\n\n queue.push({\n moduleId: parentId,\n dependencyChain: [...dependencyChain, moduleId],\n })\n }\n }\n\n return {\n type: 'accepted',\n moduleId,\n outdatedModules,\n }\n}\n\nfunction handleApply(chunkListPath: ChunkListPath, update: ServerMessage) {\n switch (update.type) {\n case 'partial': {\n // This indicates that the update is can be applied to the current state of the application.\n applyUpdate(update.instruction)\n break\n }\n case 'restart': {\n // This indicates that there is no way to apply the update to the\n // current state of the application, and that the application must be\n // restarted.\n DEV_BACKEND.restart()\n break\n }\n case 'notFound': {\n // This indicates that the chunk list no longer exists: either the dynamic import which created it was removed,\n // or the page itself was deleted.\n // If it is a dynamic import, we simply discard all modules that the chunk has exclusive access to.\n // If it is a runtime chunk list, we restart the application.\n if (runtimeChunkLists.has(chunkListPath)) {\n DEV_BACKEND.restart()\n } else {\n disposeChunkList(chunkListPath)\n }\n break\n }\n default:\n throw new Error(`Unknown update type: ${update.type}`)\n }\n}\n\nfunction createModuleHot(\n moduleId: ModuleId,\n hotData: HotData\n): { hot: Hot; hotState: HotState } {\n const hotState: HotState = {\n selfAccepted: false,\n selfDeclined: false,\n selfInvalidated: false,\n disposeHandlers: [],\n }\n\n const hot: Hot = {\n // TODO(alexkirsz) This is not defined in the HMR API. It was used to\n // decide whether to warn whenever an HMR-disposed module required other\n // modules. We might want to remove it.\n active: true,\n\n data: hotData ?? {},\n\n // TODO(alexkirsz) Support full (dep, callback, errorHandler) form.\n accept: (\n modules?: string | string[] | AcceptErrorHandler,\n _callback?: AcceptCallback,\n _errorHandler?: AcceptErrorHandler\n ) => {\n if (modules === undefined) {\n hotState.selfAccepted = true\n } else if (typeof modules === 'function') {\n hotState.selfAccepted = modules\n } else {\n throw new Error('unsupported `accept` signature')\n }\n },\n\n decline: (dep) => {\n if (dep === undefined) {\n hotState.selfDeclined = true\n } else {\n throw new Error('unsupported `decline` signature')\n }\n },\n\n dispose: (callback) => {\n hotState.disposeHandlers.push(callback)\n },\n\n addDisposeHandler: (callback) => {\n hotState.disposeHandlers.push(callback)\n },\n\n removeDisposeHandler: (callback) => {\n const idx = hotState.disposeHandlers.indexOf(callback)\n if (idx >= 0) {\n hotState.disposeHandlers.splice(idx, 1)\n }\n },\n\n invalidate: () => {\n hotState.selfInvalidated = true\n queuedInvalidatedModules.add(moduleId)\n },\n\n // NOTE(alexkirsz) This is part of the management API, which we don't\n // implement, but the Next.js React Refresh runtime uses this to decide\n // whether to schedule an update.\n status: () => 'idle',\n\n // NOTE(alexkirsz) Since we always return \"idle\" for now, these are no-ops.\n addStatusHandler: (_handler) => {},\n removeStatusHandler: (_handler) => {},\n\n // NOTE(jridgewell) Check returns the list of updated modules, but we don't\n // want the webpack code paths to ever update (the turbopack paths handle\n // this already).\n check: () => Promise.resolve(null),\n }\n\n return { hot, hotState }\n}\n\n/**\n * Removes a module from a chunk.\n * Returns `true` if there are no remaining chunks including this module.\n */\nfunction removeModuleFromChunk(\n moduleId: ModuleId,\n chunkPath: ChunkPath\n): boolean {\n const moduleChunks = moduleChunksMap.get(moduleId)!\n moduleChunks.delete(chunkPath)\n\n const chunkModules = chunkModulesMap.get(chunkPath)!\n chunkModules.delete(moduleId)\n\n const noRemainingModules = chunkModules.size === 0\n if (noRemainingModules) {\n chunkModulesMap.delete(chunkPath)\n }\n\n const noRemainingChunks = moduleChunks.size === 0\n if (noRemainingChunks) {\n moduleChunksMap.delete(moduleId)\n }\n\n return noRemainingChunks\n}\n\n/**\n * Disposes of a chunk list and its corresponding exclusive chunks.\n */\nfunction disposeChunkList(chunkListPath: ChunkListPath): boolean {\n const chunkPaths = chunkListChunksMap.get(chunkListPath)\n if (chunkPaths == null) {\n return false\n }\n chunkListChunksMap.delete(chunkListPath)\n\n for (const chunkPath of chunkPaths) {\n const chunkChunkLists = chunkChunkListsMap.get(chunkPath)!\n chunkChunkLists.delete(chunkListPath)\n\n if (chunkChunkLists.size === 0) {\n chunkChunkListsMap.delete(chunkPath)\n disposeChunk(chunkPath)\n }\n }\n\n // We must also dispose of the chunk list's chunk itself to ensure it may\n // be reloaded properly in the future.\n const chunkListUrl = getChunkRelativeUrl(chunkListPath)\n\n DEV_BACKEND.unloadChunk?.(chunkListUrl)\n\n return true\n}\n\n/**\n * Disposes of a chunk and its corresponding exclusive modules.\n *\n * @returns Whether the chunk was disposed of.\n */\nfunction disposeChunk(chunkPath: ChunkPath): boolean {\n const chunkUrl = getChunkRelativeUrl(chunkPath)\n // This should happen whether the chunk has any modules in it or not.\n // For instance, CSS chunks have no modules in them, but they still need to be unloaded.\n DEV_BACKEND.unloadChunk?.(chunkUrl)\n\n const chunkModules = chunkModulesMap.get(chunkPath)\n if (chunkModules == null) {\n return false\n }\n chunkModules.delete(chunkPath)\n\n for (const moduleId of chunkModules) {\n const moduleChunks = moduleChunksMap.get(moduleId)!\n moduleChunks.delete(chunkPath)\n\n const noRemainingChunks = moduleChunks.size === 0\n if (noRemainingChunks) {\n moduleChunksMap.delete(moduleId)\n disposeModule(moduleId, 'clear')\n availableModules.delete(moduleId)\n }\n }\n\n return true\n}\n\n/**\n * Adds a module to a chunk.\n */\nfunction addModuleToChunk(moduleId: ModuleId, chunkPath: ChunkPath) {\n let moduleChunks = moduleChunksMap.get(moduleId)\n if (!moduleChunks) {\n moduleChunks = new Set([chunkPath])\n moduleChunksMap.set(moduleId, moduleChunks)\n } else {\n moduleChunks.add(chunkPath)\n }\n\n let chunkModules = chunkModulesMap.get(chunkPath)\n if (!chunkModules) {\n chunkModules = new Set([moduleId])\n chunkModulesMap.set(chunkPath, chunkModules)\n } else {\n chunkModules.add(moduleId)\n }\n}\n\n/**\n * Marks a chunk list as a runtime chunk list. There can be more than one\n * runtime chunk list. For instance, integration tests can have multiple chunk\n * groups loaded at runtime, each with its own chunk list.\n */\nfunction markChunkListAsRuntime(chunkListPath: ChunkListPath) {\n runtimeChunkLists.add(chunkListPath)\n}\n\nfunction registerChunk(registration: ChunkRegistration) {\n const chunkPath = getPathFromScript(registration[0])\n let runtimeParams: RuntimeParams | undefined\n // When bootstrapping we are passed a single runtimeParams object so we can distinguish purely based on length\n if (registration.length === 2) {\n runtimeParams = registration[1] as RuntimeParams\n } else {\n runtimeParams = undefined\n installCompressedModuleFactories(\n registration as CompressedModuleFactories,\n /* offset= */ 1,\n moduleFactories,\n (id: ModuleId) => addModuleToChunk(id, chunkPath)\n )\n }\n return BACKEND.registerChunk(chunkPath, runtimeParams)\n}\n\n/**\n * Subscribes to chunk list updates from the update server and applies them.\n */\nfunction registerChunkList(chunkList: ChunkList) {\n const chunkListScript = chunkList.script\n const chunkListPath = getPathFromScript(chunkListScript)\n // The \"chunk\" is also registered to finish the loading in the backend\n BACKEND.registerChunk(chunkListPath as string as ChunkPath)\n globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS!.push([\n chunkListPath,\n handleApply.bind(null, chunkListPath),\n ])\n\n // Adding chunks to chunk lists and vice versa.\n const chunkPaths = new Set(chunkList.chunks.map(getChunkPath))\n chunkListChunksMap.set(chunkListPath, chunkPaths)\n for (const chunkPath of chunkPaths) {\n let chunkChunkLists = chunkChunkListsMap.get(chunkPath)\n if (!chunkChunkLists) {\n chunkChunkLists = new Set([chunkListPath])\n chunkChunkListsMap.set(chunkPath, chunkChunkLists)\n } else {\n chunkChunkLists.add(chunkListPath)\n }\n }\n\n if (chunkList.source === 'entry') {\n markChunkListAsRuntime(chunkListPath)\n }\n}\n\nglobalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS ??= []\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1595, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/browser/runtime/dom/runtime-backend-dom.ts"],"sourcesContent":["/**\n * This file contains the runtime code specific to the Turbopack development\n * ECMAScript DOM runtime.\n *\n * It will be appended to the base development runtime code.\n */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n/// \n\ntype ChunkResolver = {\n resolved: boolean\n loadingStarted: boolean\n resolve: () => void\n reject: (error?: Error) => void\n promise: Promise\n}\n\nlet BACKEND: RuntimeBackend\n\n/**\n * Maps chunk paths to the corresponding resolver.\n */\nconst chunkResolvers: Map = new Map()\n\n;(() => {\n BACKEND = {\n async registerChunk(chunkPath, params) {\n const chunkUrl = getChunkRelativeUrl(chunkPath)\n\n const resolver = getOrCreateResolver(chunkUrl)\n resolver.resolve()\n\n if (params == null) {\n return\n }\n\n for (const otherChunkData of params.otherChunks) {\n const otherChunkPath = getChunkPath(otherChunkData)\n const otherChunkUrl = getChunkRelativeUrl(otherChunkPath)\n\n // Chunk might have started loading, so we want to avoid triggering another load.\n getOrCreateResolver(otherChunkUrl)\n }\n\n // This waits for chunks to be loaded, but also marks included items as available.\n await Promise.all(\n params.otherChunks.map((otherChunkData) =>\n loadInitialChunk(chunkPath, otherChunkData)\n )\n )\n\n if (params.runtimeModuleIds.length > 0) {\n for (const moduleId of params.runtimeModuleIds) {\n getOrInstantiateRuntimeModule(chunkPath, moduleId)\n }\n }\n },\n\n /**\n * Loads the given chunk, and returns a promise that resolves once the chunk\n * has been loaded.\n */\n loadChunkCached(sourceType: SourceType, chunkUrl: ChunkUrl) {\n return doLoadChunk(sourceType, chunkUrl)\n },\n\n async loadWebAssembly(\n _sourceType: SourceType,\n _sourceData: SourceData,\n wasmChunkPath: ChunkPath,\n _edgeModule: () => WebAssembly.Module,\n importsObj: WebAssembly.Imports\n ): Promise {\n const req = fetchWebAssembly(wasmChunkPath)\n\n const { instance } = await WebAssembly.instantiateStreaming(\n req,\n importsObj\n )\n\n return instance.exports\n },\n\n async loadWebAssemblyModule(\n _sourceType: SourceType,\n _sourceData: SourceData,\n wasmChunkPath: ChunkPath,\n _edgeModule: () => WebAssembly.Module\n ): Promise {\n const req = fetchWebAssembly(wasmChunkPath)\n\n return await WebAssembly.compileStreaming(req)\n },\n }\n\n function getOrCreateResolver(chunkUrl: ChunkUrl): ChunkResolver {\n let resolver = chunkResolvers.get(chunkUrl)\n if (!resolver) {\n let resolve: () => void\n let reject: (error?: Error) => void\n const promise = new Promise((innerResolve, innerReject) => {\n resolve = innerResolve\n reject = innerReject\n })\n resolver = {\n resolved: false,\n loadingStarted: false,\n promise,\n resolve: () => {\n resolver!.resolved = true\n resolve()\n },\n reject: reject!,\n }\n chunkResolvers.set(chunkUrl, resolver)\n }\n return resolver\n }\n\n /**\n * Loads the given chunk, and returns a promise that resolves once the chunk\n * has been loaded.\n */\n function doLoadChunk(sourceType: SourceType, chunkUrl: ChunkUrl) {\n const resolver = getOrCreateResolver(chunkUrl)\n if (resolver.loadingStarted) {\n return resolver.promise\n }\n\n if (sourceType === SourceType.Runtime) {\n // We don't need to load chunks references from runtime code, as they're already\n // present in the DOM.\n resolver.loadingStarted = true\n\n if (isCss(chunkUrl)) {\n // CSS chunks do not register themselves, and as such must be marked as\n // loaded instantly.\n resolver.resolve()\n }\n\n // We need to wait for JS chunks to register themselves within `registerChunk`\n // before we can start instantiating runtime modules, hence the absence of\n // `resolver.resolve()` in this branch.\n\n return resolver.promise\n }\n\n if (typeof importScripts === 'function') {\n // We're in a web worker\n if (isCss(chunkUrl)) {\n // ignore\n } else if (isJs(chunkUrl)) {\n self.TURBOPACK_NEXT_CHUNK_URLS!.push(chunkUrl)\n importScripts(TURBOPACK_WORKER_LOCATION + chunkUrl)\n } else {\n throw new Error(\n `can't infer type of chunk from URL ${chunkUrl} in worker`\n )\n }\n } else {\n // TODO(PACK-2140): remove this once all filenames are guaranteed to be escaped.\n const decodedChunkUrl = decodeURI(chunkUrl)\n\n if (isCss(chunkUrl)) {\n const previousLinks = document.querySelectorAll(\n `link[rel=stylesheet][href=\"${chunkUrl}\"],link[rel=stylesheet][href^=\"${chunkUrl}?\"],link[rel=stylesheet][href=\"${decodedChunkUrl}\"],link[rel=stylesheet][href^=\"${decodedChunkUrl}?\"]`\n )\n if (previousLinks.length > 0) {\n // CSS chunks do not register themselves, and as such must be marked as\n // loaded instantly.\n resolver.resolve()\n } else {\n const link = document.createElement('link')\n link.rel = 'stylesheet'\n link.href = chunkUrl\n link.onerror = () => {\n resolver.reject()\n }\n link.onload = () => {\n // CSS chunks do not register themselves, and as such must be marked as\n // loaded instantly.\n resolver.resolve()\n }\n // Append to the `head` for webpack compatibility.\n document.head.appendChild(link)\n }\n } else if (isJs(chunkUrl)) {\n const previousScripts = document.querySelectorAll(\n `script[src=\"${chunkUrl}\"],script[src^=\"${chunkUrl}?\"],script[src=\"${decodedChunkUrl}\"],script[src^=\"${decodedChunkUrl}?\"]`\n )\n if (previousScripts.length > 0) {\n // There is this edge where the script already failed loading, but we\n // can't detect that. The Promise will never resolve in this case.\n for (const script of Array.from(previousScripts)) {\n script.addEventListener('error', () => {\n resolver.reject()\n })\n }\n } else {\n const script = document.createElement('script')\n script.src = chunkUrl\n // We'll only mark the chunk as loaded once the script has been executed,\n // which happens in `registerChunk`. Hence the absence of `resolve()` in\n // this branch.\n script.onerror = () => {\n resolver.reject()\n }\n // Append to the `head` for webpack compatibility.\n document.head.appendChild(script)\n }\n } else {\n throw new Error(`can't infer type of chunk from URL ${chunkUrl}`)\n }\n }\n\n resolver.loadingStarted = true\n return resolver.promise\n }\n\n function fetchWebAssembly(wasmChunkPath: ChunkPath) {\n return fetch(getChunkRelativeUrl(wasmChunkPath))\n }\n})()\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1757, "column": 0}, "map": {"version":3,"sources":["turbopack:///[turbopack]/browser/runtime/dom/dev-backend-dom.ts"],"sourcesContent":["/**\n * This file contains the runtime code specific to the Turbopack development\n * ECMAScript DOM runtime.\n *\n * It will be appended to the base development runtime code.\n */\n\n/* eslint-disable @typescript-eslint/no-unused-vars */\n\n/// \n/// \n/// \n/// \n\nlet DEV_BACKEND: DevRuntimeBackend\n;(() => {\n DEV_BACKEND = {\n unloadChunk(chunkUrl) {\n deleteResolver(chunkUrl)\n\n // TODO(PACK-2140): remove this once all filenames are guaranteed to be escaped.\n const decodedChunkUrl = decodeURI(chunkUrl)\n\n if (isCss(chunkUrl)) {\n const links = document.querySelectorAll(\n `link[href=\"${chunkUrl}\"],link[href^=\"${chunkUrl}?\"],link[href=\"${decodedChunkUrl}\"],link[href^=\"${decodedChunkUrl}?\"]`\n )\n for (const link of Array.from(links)) {\n link.remove()\n }\n } else if (isJs(chunkUrl)) {\n // Unloading a JS chunk would have no effect, as it lives in the JS\n // runtime once evaluated.\n // However, we still want to remove the script tag from the DOM to keep\n // the HTML somewhat consistent from the user's perspective.\n const scripts = document.querySelectorAll(\n `script[src=\"${chunkUrl}\"],script[src^=\"${chunkUrl}?\"],script[src=\"${decodedChunkUrl}\"],script[src^=\"${decodedChunkUrl}?\"]`\n )\n for (const script of Array.from(scripts)) {\n script.remove()\n }\n } else {\n throw new Error(`can't infer type of chunk from URL ${chunkUrl}`)\n }\n },\n\n reloadChunk(chunkUrl) {\n return new Promise((resolve, reject) => {\n if (!isCss(chunkUrl)) {\n reject(new Error('The DOM backend can only reload CSS chunks'))\n return\n }\n\n const decodedChunkUrl = decodeURI(chunkUrl)\n const previousLinks = document.querySelectorAll(\n `link[rel=stylesheet][href=\"${chunkUrl}\"],link[rel=stylesheet][href^=\"${chunkUrl}?\"],link[rel=stylesheet][href=\"${decodedChunkUrl}\"],link[rel=stylesheet][href^=\"${decodedChunkUrl}?\"]`\n )\n\n if (previousLinks.length === 0) {\n reject(new Error(`No link element found for chunk ${chunkUrl}`))\n return\n }\n\n const link = document.createElement('link')\n link.rel = 'stylesheet'\n\n if (navigator.userAgent.includes('Firefox')) {\n // Firefox won't reload CSS files that were previously loaded on the current page,\n // we need to add a query param to make sure CSS is actually reloaded from the server.\n //\n // I believe this is this issue: https://bugzilla.mozilla.org/show_bug.cgi?id=1037506\n //\n // Safari has a similar issue, but only if you have a `` tag\n // pointing to the same URL as the stylesheet: https://bugs.webkit.org/show_bug.cgi?id=187726\n link.href = `${chunkUrl}?ts=${Date.now()}`\n } else {\n link.href = chunkUrl\n }\n\n link.onerror = () => {\n reject()\n }\n link.onload = () => {\n // First load the new CSS, then remove the old ones. This prevents visible\n // flickering that would happen in-between removing the previous CSS and\n // loading the new one.\n for (const previousLink of Array.from(previousLinks))\n previousLink.remove()\n\n // CSS chunks do not register themselves, and as such must be marked as\n // loaded instantly.\n resolve()\n }\n\n // Make sure to insert the new CSS right after the previous one, so that\n // its precedence is higher.\n previousLinks[0].parentElement!.insertBefore(\n link,\n previousLinks[0].nextSibling\n )\n })\n },\n\n restart: () => self.location.reload(),\n }\n\n function deleteResolver(chunkUrl: ChunkUrl) {\n chunkResolvers.delete(chunkUrl)\n }\n})()\n\nfunction _eval({ code, url, map }: EcmascriptModuleEntry): ModuleFactory {\n code += `\\n\\n//# sourceURL=${encodeURI(\n location.origin + CHUNK_BASE_PATH + url + CHUNK_SUFFIX\n )}`\n if (map) {\n code += `\\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,${btoa(\n // btoa doesn't handle nonlatin characters, so escape them as \\x sequences\n // See https://stackoverflow.com/a/26603875\n unescape(encodeURIComponent(map))\n )}`\n }\n\n // eslint-disable-next-line no-eval\n return eval(code)\n}\n"],"names":[],"mappings":"AAAA;;;;;CAKC,GAED,oDAAoD,GAEpD,gDAAgD;AAChD,4CAA4C;AAC5C,iDAAiD;AACjD,0DAA0D;AAE1D,IAAI;AACH,CAAC;IACA,cAAc;QACZ,aAAY,QAAQ;YAClB,eAAe;YAEf,gFAAgF;YAChF,MAAM,kBAAkB,UAAU;YAElC,IAAI,MAAM,WAAW;gBACnB,MAAM,QAAQ,SAAS,gBAAgB,CACrC,CAAC,WAAW,EAAE,SAAS,eAAe,EAAE,SAAS,eAAe,EAAE,gBAAgB,eAAe,EAAE,gBAAgB,GAAG,CAAC;gBAEzH,KAAK,MAAM,QAAQ,MAAM,IAAI,CAAC,OAAQ;oBACpC,KAAK,MAAM;gBACb;YACF,OAAO,IAAI,KAAK,WAAW;gBACzB,mEAAmE;gBACnE,0BAA0B;gBAC1B,uEAAuE;gBACvE,4DAA4D;gBAC5D,MAAM,UAAU,SAAS,gBAAgB,CACvC,CAAC,YAAY,EAAE,SAAS,gBAAgB,EAAE,SAAS,gBAAgB,EAAE,gBAAgB,gBAAgB,EAAE,gBAAgB,GAAG,CAAC;gBAE7H,KAAK,MAAM,UAAU,MAAM,IAAI,CAAC,SAAU;oBACxC,OAAO,MAAM;gBACf;YACF,OAAO;gBACL,MAAM,IAAI,MAAM,CAAC,mCAAmC,EAAE,UAAU;YAClE;QACF;QAEA,aAAY,QAAQ;YAClB,OAAO,IAAI,QAAc,CAAC,SAAS;gBACjC,IAAI,CAAC,MAAM,WAAW;oBACpB,OAAO,IAAI,MAAM;oBACjB;gBACF;gBAEA,MAAM,kBAAkB,UAAU;gBAClC,MAAM,gBAAgB,SAAS,gBAAgB,CAC7C,CAAC,2BAA2B,EAAE,SAAS,+BAA+B,EAAE,SAAS,+BAA+B,EAAE,gBAAgB,+BAA+B,EAAE,gBAAgB,GAAG,CAAC;gBAGzL,IAAI,cAAc,MAAM,KAAK,GAAG;oBAC9B,OAAO,IAAI,MAAM,CAAC,gCAAgC,EAAE,UAAU;oBAC9D;gBACF;gBAEA,MAAM,OAAO,SAAS,aAAa,CAAC;gBACpC,KAAK,GAAG,GAAG;gBAEX,IAAI,UAAU,SAAS,CAAC,QAAQ,CAAC,YAAY;oBAC3C,kFAAkF;oBAClF,sFAAsF;oBACtF,EAAE;oBACF,qFAAqF;oBACrF,EAAE;oBACF,oFAAoF;oBACpF,6FAA6F;oBAC7F,KAAK,IAAI,GAAG,GAAG,SAAS,IAAI,EAAE,KAAK,GAAG,IAAI;gBAC5C,OAAO;oBACL,KAAK,IAAI,GAAG;gBACd;gBAEA,KAAK,OAAO,GAAG;oBACb;gBACF;gBACA,KAAK,MAAM,GAAG;oBACZ,0EAA0E;oBAC1E,wEAAwE;oBACxE,uBAAuB;oBACvB,KAAK,MAAM,gBAAgB,MAAM,IAAI,CAAC,eACpC,aAAa,MAAM;oBAErB,uEAAuE;oBACvE,oBAAoB;oBACpB;gBACF;gBAEA,wEAAwE;gBACxE,4BAA4B;gBAC5B,aAAa,CAAC,EAAE,CAAC,aAAa,CAAE,YAAY,CAC1C,MACA,aAAa,CAAC,EAAE,CAAC,WAAW;YAEhC;QACF;QAEA,SAAS,IAAM,KAAK,QAAQ,CAAC,MAAM;IACrC;IAEA,SAAS,eAAe,QAAkB;QACxC,eAAe,MAAM,CAAC;IACxB;AACF,CAAC;AAED,SAAS,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAyB;IACtD,QAAQ,CAAC,kBAAkB,EAAE,UAC3B,SAAS,MAAM,GAAG,kBAAkB,MAAM,eACzC;IACH,IAAI,KAAK;QACP,QAAQ,CAAC,kEAAkE,EAAE,KAC3E,0EAA0E;QAC1E,2CAA2C;QAC3C,SAAS,mBAAmB,QAC3B;IACL;IAEA,mCAAmC;IACnC,OAAO,KAAK;AACd","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/_a0ff3932._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/_a0ff3932._.js deleted file mode 100644 index dcd35a1..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/_a0ff3932._.js +++ /dev/null @@ -1,14 +0,0 @@ -(globalThis.TURBOPACK_CHUNK_LISTS || (globalThis.TURBOPACK_CHUNK_LISTS = [])).push({ - script: typeof document === "object" ? document.currentScript : undefined, - chunks: [ - "static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js", - "static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js", - "static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js", - "static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js", - "static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js", - "static/chunks/node_modules_next_dist_client_17643121._.js", - "static/chunks/node_modules_next_dist_f3530cac._.js", - "static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js" -], - source: "entry" -}); diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js deleted file mode 100644 index cde0668..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js +++ /dev/null @@ -1,49 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -function _interop_require_default(obj) { - return obj && obj.__esModule ? obj : { - default: obj - }; -} -exports._ = _interop_require_default; -}), -"[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -function _getRequireWildcardCache(nodeInterop) { - if (typeof WeakMap !== "function") return null; - var cacheBabelInterop = new WeakMap(); - var cacheNodeInterop = new WeakMap(); - return (_getRequireWildcardCache = function(nodeInterop) { - return nodeInterop ? cacheNodeInterop : cacheBabelInterop; - })(nodeInterop); -} -function _interop_require_wildcard(obj, nodeInterop) { - if (!nodeInterop && obj && obj.__esModule) return obj; - if (obj === null || typeof obj !== "object" && typeof obj !== "function") return { - default: obj - }; - var cache = _getRequireWildcardCache(nodeInterop); - if (cache && cache.has(obj)) return cache.get(obj); - var newObj = { - __proto__: null - }; - var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; - for(var key in obj){ - if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { - var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; - if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc); - else newObj[key] = obj[key]; - } - } - newObj.default = obj; - if (cache) cache.set(obj, newObj); - return newObj; -} -exports._ = _interop_require_wildcard; -}), -]); - -//# sourceMappingURL=node_modules_%40swc_helpers_cjs_d80fb378._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js.map deleted file mode 100644 index 9f3fc39..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/%40swc/helpers/cjs/_interop_require_default.cjs"],"sourcesContent":["\"use strict\";\n\nfunction _interop_require_default(obj) {\n return obj && obj.__esModule ? obj : { default: obj };\n}\nexports._ = _interop_require_default;\n"],"names":[],"mappings":"AAEA,SAAS,yBAAyB,GAAG;IACjC,OAAO,OAAO,IAAI,UAAU,GAAG,MAAM;QAAE,SAAS;IAAI;AACxD;AACA,QAAQ,CAAC,GAAG","ignoreList":[0]}}, - {"offset": {"line": 14, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/%40swc/helpers/cjs/_interop_require_wildcard.cjs"],"sourcesContent":["\"use strict\";\n\nfunction _getRequireWildcardCache(nodeInterop) {\n if (typeof WeakMap !== \"function\") return null;\n\n var cacheBabelInterop = new WeakMap();\n var cacheNodeInterop = new WeakMap();\n\n return (_getRequireWildcardCache = function(nodeInterop) {\n return nodeInterop ? cacheNodeInterop : cacheBabelInterop;\n })(nodeInterop);\n}\nfunction _interop_require_wildcard(obj, nodeInterop) {\n if (!nodeInterop && obj && obj.__esModule) return obj;\n if (obj === null || typeof obj !== \"object\" && typeof obj !== \"function\") return { default: obj };\n\n var cache = _getRequireWildcardCache(nodeInterop);\n\n if (cache && cache.has(obj)) return cache.get(obj);\n\n var newObj = { __proto__: null };\n var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;\n\n for (var key in obj) {\n if (key !== \"default\" && Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;\n if (desc && (desc.get || desc.set)) Object.defineProperty(newObj, key, desc);\n else newObj[key] = obj[key];\n }\n }\n\n newObj.default = obj;\n\n if (cache) cache.set(obj, newObj);\n\n return newObj;\n}\nexports._ = _interop_require_wildcard;\n"],"names":[],"mappings":"AAEA,SAAS,yBAAyB,WAAW;IACzC,IAAI,OAAO,YAAY,YAAY,OAAO;IAE1C,IAAI,oBAAoB,IAAI;IAC5B,IAAI,mBAAmB,IAAI;IAE3B,OAAO,CAAC,2BAA2B,SAAS,WAAW;QACnD,OAAO,cAAc,mBAAmB;IAC5C,CAAC,EAAE;AACP;AACA,SAAS,0BAA0B,GAAG,EAAE,WAAW;IAC/C,IAAI,CAAC,eAAe,OAAO,IAAI,UAAU,EAAE,OAAO;IAClD,IAAI,QAAQ,QAAQ,OAAO,QAAQ,YAAY,OAAO,QAAQ,YAAY,OAAO;QAAE,SAAS;IAAI;IAEhG,IAAI,QAAQ,yBAAyB;IAErC,IAAI,SAAS,MAAM,GAAG,CAAC,MAAM,OAAO,MAAM,GAAG,CAAC;IAE9C,IAAI,SAAS;QAAE,WAAW;IAAK;IAC/B,IAAI,wBAAwB,OAAO,cAAc,IAAI,OAAO,wBAAwB;IAEpF,IAAK,IAAI,OAAO,IAAK;QACjB,IAAI,QAAQ,aAAa,OAAO,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,MAAM;YACrE,IAAI,OAAO,wBAAwB,OAAO,wBAAwB,CAAC,KAAK,OAAO;YAC/E,IAAI,QAAQ,CAAC,KAAK,GAAG,IAAI,KAAK,GAAG,GAAG,OAAO,cAAc,CAAC,QAAQ,KAAK;iBAClE,MAAM,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI;QAC/B;IACJ;IAEA,OAAO,OAAO,GAAG;IAEjB,IAAI,OAAO,MAAM,GAAG,CAAC,KAAK;IAE1B,OAAO;AACX;AACA,QAAQ,CAAC,GAAG","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_2c670af9._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_2c670af9._.js deleted file mode 100644 index 59723fc..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_2c670af9._.js +++ /dev/null @@ -1,3219 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/next/dist/shared/lib/side-effect.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return SideEffect; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const isServer = typeof window === 'undefined'; -const useClientOnlyLayoutEffect = isServer ? ()=>{} : _react.useLayoutEffect; -const useClientOnlyEffect = isServer ? ()=>{} : _react.useEffect; -function SideEffect(props) { - const { headManager, reduceComponentsToState } = props; - function emitChange() { - if (headManager && headManager.mountedInstances) { - const headElements = _react.Children.toArray(Array.from(headManager.mountedInstances).filter(Boolean)); - headManager.updateHead(reduceComponentsToState(headElements)); - } - } - if (isServer) { - headManager?.mountedInstances?.add(props.children); - emitChange(); - } - useClientOnlyLayoutEffect({ - "SideEffect.useClientOnlyLayoutEffect": ()=>{ - headManager?.mountedInstances?.add(props.children); - return ({ - "SideEffect.useClientOnlyLayoutEffect": ()=>{ - headManager?.mountedInstances?.delete(props.children); - } - })["SideEffect.useClientOnlyLayoutEffect"]; - } - }["SideEffect.useClientOnlyLayoutEffect"]); - // We need to call `updateHead` method whenever the `SideEffect` is trigger in all - // life-cycles: mount, update, unmount. However, if there are multiple `SideEffect`s - // being rendered, we only trigger the method from the last one. - // This is ensured by keeping the last unflushed `updateHead` in the `_pendingUpdate` - // singleton in the layout effect pass, and actually trigger it in the effect pass. - useClientOnlyLayoutEffect({ - "SideEffect.useClientOnlyLayoutEffect": ()=>{ - if (headManager) { - headManager._pendingUpdate = emitChange; - } - return ({ - "SideEffect.useClientOnlyLayoutEffect": ()=>{ - if (headManager) { - headManager._pendingUpdate = emitChange; - } - } - })["SideEffect.useClientOnlyLayoutEffect"]; - } - }["SideEffect.useClientOnlyLayoutEffect"]); - useClientOnlyEffect({ - "SideEffect.useClientOnlyEffect": ()=>{ - if (headManager && headManager._pendingUpdate) { - headManager._pendingUpdate(); - headManager._pendingUpdate = null; - } - return ({ - "SideEffect.useClientOnlyEffect": ()=>{ - if (headManager && headManager._pendingUpdate) { - headManager._pendingUpdate(); - headManager._pendingUpdate = null; - } - } - })["SideEffect.useClientOnlyEffect"]; - } - }["SideEffect.useClientOnlyEffect"]); - return null; -} //# sourceMappingURL=side-effect.js.map -}), -"[project]/node_modules/next/dist/shared/lib/head.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use client'; -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - default: null, - defaultHead: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - default: function() { - return _default; - }, - defaultHead: function() { - return defaultHead; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _sideeffect = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/side-effect.js [app-client] (ecmascript)")); -const _headmanagercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js [app-client] (ecmascript)"); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-client] (ecmascript)"); -function defaultHead() { - const head = [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("meta", { - charSet: "utf-8" - }, "charset"), - /*#__PURE__*/ (0, _jsxruntime.jsx)("meta", { - name: "viewport", - content: "width=device-width" - }, "viewport") - ]; - return head; -} -function onlyReactElement(list, child) { - // React children can be "string" or "number" in this case we ignore them for backwards compat - if (typeof child === 'string' || typeof child === 'number') { - return list; - } - // Adds support for React.Fragment - if (child.type === _react.default.Fragment) { - return list.concat(_react.default.Children.toArray(child.props.children).reduce((fragmentList, fragmentChild)=>{ - if (typeof fragmentChild === 'string' || typeof fragmentChild === 'number') { - return fragmentList; - } - return fragmentList.concat(fragmentChild); - }, [])); - } - return list.concat(child); -} -const METATYPES = [ - 'name', - 'httpEquiv', - 'charSet', - 'itemProp' -]; -/* - returns a function for filtering head child elements - which shouldn't be duplicated, like - Also adds support for deduplicated `key` properties -*/ function unique() { - const keys = new Set(); - const tags = new Set(); - const metaTypes = new Set(); - const metaCategories = {}; - return (h)=>{ - let isUnique = true; - let hasKey = false; - if (h.key && typeof h.key !== 'number' && h.key.indexOf('$') > 0) { - hasKey = true; - const key = h.key.slice(h.key.indexOf('$') + 1); - if (keys.has(key)) { - isUnique = false; - } else { - keys.add(key); - } - } - // eslint-disable-next-line default-case - switch(h.type){ - case 'title': - case 'base': - if (tags.has(h.type)) { - isUnique = false; - } else { - tags.add(h.type); - } - break; - case 'meta': - for(let i = 0, len = METATYPES.length; i < len; i++){ - const metatype = METATYPES[i]; - if (!h.props.hasOwnProperty(metatype)) continue; - if (metatype === 'charSet') { - if (metaTypes.has(metatype)) { - isUnique = false; - } else { - metaTypes.add(metatype); - } - } else { - const category = h.props[metatype]; - const categories = metaCategories[metatype] || new Set(); - if ((metatype !== 'name' || !hasKey) && categories.has(category)) { - isUnique = false; - } else { - categories.add(category); - metaCategories[metatype] = categories; - } - } - } - break; - } - return isUnique; - }; -} -/** - * - * @param headChildrenElements List of children of <Head> - */ function reduceComponents(headChildrenElements) { - return headChildrenElements.reduce(onlyReactElement, []).reverse().concat(defaultHead().reverse()).filter(unique()).reverse().map((c, i)=>{ - const key = c.key || i; - if ("TURBOPACK compile-time truthy", 1) { - // omit JSON-LD structured data snippets from the warning - if (c.type === 'script' && c.props['type'] !== 'application/ld+json') { - const srcMessage = c.props['src'] ? `<script> tag with src="${c.props['src']}"` : `inline <script>`; - (0, _warnonce.warnOnce)(`Do not add <script> tags using next/head (see ${srcMessage}). Use next/script instead. \nSee more info here: https://nextjs.org/docs/messages/no-script-tags-in-head-component`); - } else if (c.type === 'link' && c.props['rel'] === 'stylesheet') { - (0, _warnonce.warnOnce)(`Do not add stylesheets using next/head (see <link rel="stylesheet"> tag with href="${c.props['href']}"). Use Document instead. \nSee more info here: https://nextjs.org/docs/messages/no-stylesheets-in-head-component`); - } - } - return /*#__PURE__*/ _react.default.cloneElement(c, { - key - }); - }); -} -/** - * This component injects elements to `<head>` of your page. - * To avoid duplicated `tags` in `<head>` you can use the `key` property, which will make sure every tag is only rendered once. - */ function Head({ children }) { - const headManager = (0, _react.useContext)(_headmanagercontextsharedruntime.HeadManagerContext); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_sideeffect.default, { - reduceComponentsToState: reduceComponents, - headManager: headManager, - children: children - }); -} -const _default = Head; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=head.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-blur-svg.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * A shared function, used on both client and server, to generate a SVG blur placeholder. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getImageBlurSvg", { - enumerable: true, - get: function() { - return getImageBlurSvg; - } -}); -function getImageBlurSvg({ widthInt, heightInt, blurWidth, blurHeight, blurDataURL, objectFit }) { - const std = 20; - const svgWidth = blurWidth ? blurWidth * 40 : widthInt; - const svgHeight = blurHeight ? blurHeight * 40 : heightInt; - const viewBox = svgWidth && svgHeight ? `viewBox='0 0 ${svgWidth} ${svgHeight}'` : ''; - const preserveAspectRatio = viewBox ? 'none' : objectFit === 'contain' ? 'xMidYMid' : objectFit === 'cover' ? 'xMidYMid slice' : 'none'; - return `%3Csvg xmlns='http://www.w3.org/2000/svg' ${viewBox}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${preserveAspectRatio}' style='filter: url(%23b);' href='${blurDataURL}'/%3E%3C/svg%3E`; -} //# sourceMappingURL=image-blur-svg.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-config.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - VALID_LOADERS: null, - imageConfigDefault: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - VALID_LOADERS: function() { - return VALID_LOADERS; - }, - imageConfigDefault: function() { - return imageConfigDefault; - } -}); -const VALID_LOADERS = [ - 'default', - 'imgix', - 'cloudinary', - 'akamai', - 'custom' -]; -const imageConfigDefault = { - deviceSizes: [ - 640, - 750, - 828, - 1080, - 1200, - 1920, - 2048, - 3840 - ], - imageSizes: [ - 32, - 48, - 64, - 96, - 128, - 256, - 384 - ], - path: '/_next/image', - loader: 'default', - loaderFile: '', - /** - * @deprecated Use `remotePatterns` instead to protect your application from malicious users. - */ domains: [], - disableStaticImages: false, - minimumCacheTTL: 14400, - formats: [ - 'image/webp' - ], - maximumRedirects: 3, - maximumResponseBody: 50000000, - dangerouslyAllowLocalIP: false, - dangerouslyAllowSVG: false, - contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`, - contentDispositionType: 'attachment', - localPatterns: undefined, - remotePatterns: [], - qualities: [ - 75 - ], - unoptimized: false -}; //# sourceMappingURL=image-config.js.map -}), -"[project]/node_modules/next/dist/shared/lib/get-img-props.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getImgProps", { - enumerable: true, - get: function() { - return getImgProps; - } -}); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-client] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-client] (ecmascript)"); -const _imageblursvg = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-blur-svg.js [app-client] (ecmascript)"); -const _imageconfig = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-config.js [app-client] (ecmascript)"); -const VALID_LOADING_VALUES = [ - 'lazy', - 'eager', - undefined -]; -// Object-fit values that are not valid background-size values -const INVALID_BACKGROUND_SIZE_VALUES = [ - '-moz-initial', - 'fill', - 'none', - 'scale-down', - undefined -]; -function isStaticRequire(src) { - return src.default !== undefined; -} -function isStaticImageData(src) { - return src.src !== undefined; -} -function isStaticImport(src) { - return !!src && typeof src === 'object' && (isStaticRequire(src) || isStaticImageData(src)); -} -const allImgs = new Map(); -let perfObserver; -function getInt(x) { - if (typeof x === 'undefined') { - return x; - } - if (typeof x === 'number') { - return Number.isFinite(x) ? x : NaN; - } - if (typeof x === 'string' && /^[0-9]+$/.test(x)) { - return parseInt(x, 10); - } - return NaN; -} -function getWidths({ deviceSizes, allSizes }, width, sizes) { - if (sizes) { - // Find all the "vw" percent sizes used in the sizes prop - const viewportWidthRe = /(^|\s)(1?\d?\d)vw/g; - const percentSizes = []; - for(let match; match = viewportWidthRe.exec(sizes); match){ - percentSizes.push(parseInt(match[2])); - } - if (percentSizes.length) { - const smallestRatio = Math.min(...percentSizes) * 0.01; - return { - widths: allSizes.filter((s)=>s >= deviceSizes[0] * smallestRatio), - kind: 'w' - }; - } - return { - widths: allSizes, - kind: 'w' - }; - } - if (typeof width !== 'number') { - return { - widths: deviceSizes, - kind: 'w' - }; - } - const widths = [ - ...new Set(// > are actually 3x in the green color, but only 1.5x in the red and - // > blue colors. Showing a 3x resolution image in the app vs a 2x - // > resolution image will be visually the same, though the 3x image - // > takes significantly more data. Even true 3x resolution screens are - // > wasteful as the human eye cannot see that level of detail without - // > something like a magnifying glass. - // https://blog.twitter.com/engineering/en_us/topics/infrastructure/2019/capping-image-fidelity-on-ultra-high-resolution-devices.html - [ - width, - width * 2 /*, width * 3*/ - ].map((w)=>allSizes.find((p)=>p >= w) || allSizes[allSizes.length - 1])) - ]; - return { - widths, - kind: 'x' - }; -} -function generateImgAttrs({ config, src, unoptimized, width, quality, sizes, loader }) { - if (unoptimized) { - const deploymentId = (0, _deploymentid.getDeploymentId)(); - if (src.startsWith('/') && !src.startsWith('//') && deploymentId) { - const sep = src.includes('?') ? '&' : '?'; - src = `${src}${sep}dpl=${deploymentId}`; - } - return { - src, - srcSet: undefined, - sizes: undefined - }; - } - const { widths, kind } = getWidths(config, width, sizes); - const last = widths.length - 1; - return { - sizes: !sizes && kind === 'w' ? '100vw' : sizes, - srcSet: widths.map((w, i)=>`${loader({ - config, - src, - quality, - width: w - })} ${kind === 'w' ? w : i + 1}${kind}`).join(', '), - // It's intended to keep `src` the last attribute because React updates - // attributes in order. If we keep `src` the first one, Safari will - // immediately start to fetch `src`, before `sizes` and `srcSet` are even - // updated by React. That causes multiple unnecessary requests if `srcSet` - // and `sizes` are defined. - // This bug cannot be reproduced in Chrome or Firefox. - src: loader({ - config, - src, - quality, - width: widths[last] - }) - }; -} -function getImgProps({ src, sizes, unoptimized = false, priority = false, preload = false, loading, className, quality, width, height, fill = false, style, overrideSrc, onLoad, onLoadingComplete, placeholder = 'empty', blurDataURL, fetchPriority, decoding = 'async', layout, objectFit, objectPosition, lazyBoundary, lazyRoot, ...rest }, _state) { - const { imgConf, showAltText, blurComplete, defaultLoader } = _state; - let config; - let c = imgConf || _imageconfig.imageConfigDefault; - if ('allSizes' in c) { - config = c; - } else { - const allSizes = [ - ...c.deviceSizes, - ...c.imageSizes - ].sort((a, b)=>a - b); - const deviceSizes = c.deviceSizes.sort((a, b)=>a - b); - const qualities = c.qualities?.sort((a, b)=>a - b); - config = { - ...c, - allSizes, - deviceSizes, - qualities - }; - } - if (typeof defaultLoader === 'undefined') { - throw Object.defineProperty(new Error('images.loaderFile detected but the file is missing default export.\nRead more: https://nextjs.org/docs/messages/invalid-images-config'), "__NEXT_ERROR_CODE", { - value: "E163", - enumerable: false, - configurable: true - }); - } - let loader = rest.loader || defaultLoader; - // Remove property so it's not spread on <img> element - delete rest.loader; - delete rest.srcSet; - // This special value indicates that the user - // didn't define a "loader" prop or "loader" config. - const isDefaultLoader = '__next_img_default' in loader; - if (isDefaultLoader) { - if (config.loader === 'custom') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing "loader" prop.` + `\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader`), "__NEXT_ERROR_CODE", { - value: "E252", - enumerable: false, - configurable: true - }); - } - } else { - // The user defined a "loader" prop or config. - // Since the config object is internal only, we - // must not pass it to the user-defined "loader". - const customImageLoader = loader; - loader = (obj)=>{ - const { config: _, ...opts } = obj; - return customImageLoader(opts); - }; - } - if (layout) { - if (layout === 'fill') { - fill = true; - } - const layoutToStyle = { - intrinsic: { - maxWidth: '100%', - height: 'auto' - }, - responsive: { - width: '100%', - height: 'auto' - } - }; - const layoutToSizes = { - responsive: '100vw', - fill: '100vw' - }; - const layoutStyle = layoutToStyle[layout]; - if (layoutStyle) { - style = { - ...style, - ...layoutStyle - }; - } - const layoutSizes = layoutToSizes[layout]; - if (layoutSizes && !sizes) { - sizes = layoutSizes; - } - } - let staticSrc = ''; - let widthInt = getInt(width); - let heightInt = getInt(height); - let blurWidth; - let blurHeight; - if (isStaticImport(src)) { - const staticImageData = isStaticRequire(src) ? src.default : src; - if (!staticImageData.src) { - throw Object.defineProperty(new Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(staticImageData)}`), "__NEXT_ERROR_CODE", { - value: "E460", - enumerable: false, - configurable: true - }); - } - if (!staticImageData.height || !staticImageData.width) { - throw Object.defineProperty(new Error(`An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(staticImageData)}`), "__NEXT_ERROR_CODE", { - value: "E48", - enumerable: false, - configurable: true - }); - } - blurWidth = staticImageData.blurWidth; - blurHeight = staticImageData.blurHeight; - blurDataURL = blurDataURL || staticImageData.blurDataURL; - staticSrc = staticImageData.src; - if (!fill) { - if (!widthInt && !heightInt) { - widthInt = staticImageData.width; - heightInt = staticImageData.height; - } else if (widthInt && !heightInt) { - const ratio = widthInt / staticImageData.width; - heightInt = Math.round(staticImageData.height * ratio); - } else if (!widthInt && heightInt) { - const ratio = heightInt / staticImageData.height; - widthInt = Math.round(staticImageData.width * ratio); - } - } - } - src = typeof src === 'string' ? src : staticSrc; - let isLazy = !priority && !preload && (loading === 'lazy' || typeof loading === 'undefined'); - if (!src || src.startsWith('data:') || src.startsWith('blob:')) { - // https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs - unoptimized = true; - isLazy = false; - } - if (config.unoptimized) { - unoptimized = true; - } - if (isDefaultLoader && !config.dangerouslyAllowSVG && src.split('?', 1)[0].endsWith('.svg')) { - // Special case to make svg serve as-is to avoid proxying - // through the built-in Image Optimization API. - unoptimized = true; - } - const qualityInt = getInt(quality); - if ("TURBOPACK compile-time truthy", 1) { - if (config.output === 'export' && isDefaultLoader && !unoptimized) { - throw Object.defineProperty(new Error(`Image Optimization using the default loader is not compatible with \`{ output: 'export' }\`. - Possible solutions: - - Remove \`{ output: 'export' }\` and run "next start" to run server mode including the Image Optimization API. - - Configure \`{ images: { unoptimized: true } }\` in \`next.config.js\` to disable the Image Optimization API. - Read more: https://nextjs.org/docs/messages/export-image-api`), "__NEXT_ERROR_CODE", { - value: "E500", - enumerable: false, - configurable: true - }); - } - if (!src) { - // React doesn't show the stack trace and there's - // no `src` to help identify which image, so we - // instead console.error(ref) during mount. - unoptimized = true; - } else { - if (fill) { - if (width) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "width" and "fill" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E96", - enumerable: false, - configurable: true - }); - } - if (height) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "height" and "fill" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E115", - enumerable: false, - configurable: true - }); - } - if (style?.position && style.position !== 'absolute') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.position" properties. Images with "fill" always use position absolute - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E216", - enumerable: false, - configurable: true - }); - } - if (style?.width && style.width !== '100%') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.width" properties. Images with "fill" always use width 100% - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E73", - enumerable: false, - configurable: true - }); - } - if (style?.height && style.height !== '100%') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "fill" and "style.height" properties. Images with "fill" always use height 100% - it cannot be modified.`), "__NEXT_ERROR_CODE", { - value: "E404", - enumerable: false, - configurable: true - }); - } - } else { - if (typeof widthInt === 'undefined') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing required "width" property.`), "__NEXT_ERROR_CODE", { - value: "E451", - enumerable: false, - configurable: true - }); - } else if (isNaN(widthInt)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "width" property. Expected a numeric value in pixels but received "${width}".`), "__NEXT_ERROR_CODE", { - value: "E66", - enumerable: false, - configurable: true - }); - } - if (typeof heightInt === 'undefined') { - throw Object.defineProperty(new Error(`Image with src "${src}" is missing required "height" property.`), "__NEXT_ERROR_CODE", { - value: "E397", - enumerable: false, - configurable: true - }); - } else if (isNaN(heightInt)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "height" property. Expected a numeric value in pixels but received "${height}".`), "__NEXT_ERROR_CODE", { - value: "E444", - enumerable: false, - configurable: true - }); - } - // eslint-disable-next-line no-control-regex - if (/^[\x00-\x20]/.test(src)) { - throw Object.defineProperty(new Error(`Image with src "${src}" cannot start with a space or control character. Use src.trimStart() to remove it or encodeURIComponent(src) to keep it.`), "__NEXT_ERROR_CODE", { - value: "E176", - enumerable: false, - configurable: true - }); - } - // eslint-disable-next-line no-control-regex - if (/[\x00-\x20]$/.test(src)) { - throw Object.defineProperty(new Error(`Image with src "${src}" cannot end with a space or control character. Use src.trimEnd() to remove it or encodeURIComponent(src) to keep it.`), "__NEXT_ERROR_CODE", { - value: "E21", - enumerable: false, - configurable: true - }); - } - } - } - if (!VALID_LOADING_VALUES.includes(loading)) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "loading" property. Provided "${loading}" should be one of ${VALID_LOADING_VALUES.map(String).join(',')}.`), "__NEXT_ERROR_CODE", { - value: "E357", - enumerable: false, - configurable: true - }); - } - if (priority && loading === 'lazy') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "priority" and "loading='lazy'" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E218", - enumerable: false, - configurable: true - }); - } - if (preload && loading === 'lazy') { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "preload" and "loading='lazy'" properties. Only one should be used.`), "__NEXT_ERROR_CODE", { - value: "E803", - enumerable: false, - configurable: true - }); - } - if (preload && priority) { - throw Object.defineProperty(new Error(`Image with src "${src}" has both "preload" and "priority" properties. Only "preload" should be used.`), "__NEXT_ERROR_CODE", { - value: "E802", - enumerable: false, - configurable: true - }); - } - if (placeholder !== 'empty' && placeholder !== 'blur' && !placeholder.startsWith('data:image/')) { - throw Object.defineProperty(new Error(`Image with src "${src}" has invalid "placeholder" property "${placeholder}".`), "__NEXT_ERROR_CODE", { - value: "E431", - enumerable: false, - configurable: true - }); - } - if (placeholder !== 'empty') { - if (widthInt && heightInt && widthInt * heightInt < 1600) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is smaller than 40x40. Consider removing the "placeholder" property to improve performance.`); - } - } - if (qualityInt && config.qualities && !config.qualities.includes(qualityInt)) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using quality "${qualityInt}" which is not configured in images.qualities [${config.qualities.join(', ')}]. Please update your config to [${[ - ...config.qualities, - qualityInt - ].sort().join(', ')}].` + `\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-qualities`); - } - if (placeholder === 'blur' && !blurDataURL) { - const VALID_BLUR_EXT = [ - 'jpeg', - 'png', - 'webp', - 'avif' - ] // should match next-image-loader - ; - throw Object.defineProperty(new Error(`Image with src "${src}" has "placeholder='blur'" property but is missing the "blurDataURL" property. - Possible solutions: - - Add a "blurDataURL" property, the contents should be a small Data URL to represent the image - - Change the "src" property to a static import with one of the supported file types: ${VALID_BLUR_EXT.join(',')} (animated images not supported) - - Remove the "placeholder" property, effectively no blur effect - Read more: https://nextjs.org/docs/messages/placeholder-blur-data-url`), "__NEXT_ERROR_CODE", { - value: "E371", - enumerable: false, - configurable: true - }); - } - if ('ref' in rest) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using unsupported "ref" property. Consider using the "onLoad" property instead.`); - } - if (!unoptimized && !isDefaultLoader) { - const urlStr = loader({ - config, - src, - width: widthInt || 400, - quality: qualityInt || 75 - }); - let url; - try { - url = new URL(urlStr); - } catch (err) {} - if (urlStr === src || url && url.pathname === src && !url.search) { - (0, _warnonce.warnOnce)(`Image with src "${src}" has a "loader" property that does not implement width. Please implement it or use the "unoptimized" property instead.` + `\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader-width`); - } - } - if (onLoadingComplete) { - (0, _warnonce.warnOnce)(`Image with src "${src}" is using deprecated "onLoadingComplete" property. Please use the "onLoad" property instead.`); - } - for (const [legacyKey, legacyValue] of Object.entries({ - layout, - objectFit, - objectPosition, - lazyBoundary, - lazyRoot - })){ - if (legacyValue) { - (0, _warnonce.warnOnce)(`Image with src "${src}" has legacy prop "${legacyKey}". Did you forget to run the codemod?` + `\nRead more: https://nextjs.org/docs/messages/next-image-upgrade-to-13`); - } - } - if (typeof window !== 'undefined' && !perfObserver && window.PerformanceObserver) { - perfObserver = new PerformanceObserver((entryList)=>{ - for (const entry of entryList.getEntries()){ - // @ts-ignore - missing "LargestContentfulPaint" class with "element" prop - const imgSrc = entry?.element?.src || ''; - const lcpImage = allImgs.get(imgSrc); - if (lcpImage && lcpImage.loading === 'lazy' && lcpImage.placeholder === 'empty' && !lcpImage.src.startsWith('data:') && !lcpImage.src.startsWith('blob:')) { - // https://web.dev/lcp/#measure-lcp-in-javascript - (0, _warnonce.warnOnce)(`Image with src "${lcpImage.src}" was detected as the Largest Contentful Paint (LCP). Please add the \`loading="eager"\` property if this image is above the fold.` + `\nRead more: https://nextjs.org/docs/app/api-reference/components/image#loading`); - } - } - }); - try { - perfObserver.observe({ - type: 'largest-contentful-paint', - buffered: true - }); - } catch (err) { - // Log error but don't crash the app - console.error(err); - } - } - } - const imgStyle = Object.assign(fill ? { - position: 'absolute', - height: '100%', - width: '100%', - left: 0, - top: 0, - right: 0, - bottom: 0, - objectFit, - objectPosition - } : {}, showAltText ? {} : { - color: 'transparent' - }, style); - const backgroundImage = !blurComplete && placeholder !== 'empty' ? placeholder === 'blur' ? `url("data:image/svg+xml;charset=utf-8,${(0, _imageblursvg.getImageBlurSvg)({ - widthInt, - heightInt, - blurWidth, - blurHeight, - blurDataURL: blurDataURL || '', - objectFit: imgStyle.objectFit - })}")` : `url("${placeholder}")` // assume `data:image/` - : null; - const backgroundSize = !INVALID_BACKGROUND_SIZE_VALUES.includes(imgStyle.objectFit) ? imgStyle.objectFit : imgStyle.objectFit === 'fill' ? '100% 100%' // the background-size equivalent of `fill` - : 'cover'; - let placeholderStyle = backgroundImage ? { - backgroundSize, - backgroundPosition: imgStyle.objectPosition || '50% 50%', - backgroundRepeat: 'no-repeat', - backgroundImage - } : {}; - if ("TURBOPACK compile-time truthy", 1) { - if (placeholderStyle.backgroundImage && placeholder === 'blur' && blurDataURL?.startsWith('/')) { - // During `next dev`, we don't want to generate blur placeholders with webpack - // because it can delay starting the dev server. Instead, `next-image-loader.js` - // will inline a special url to lazily generate the blur placeholder at request time. - placeholderStyle.backgroundImage = `url("${blurDataURL}")`; - } - } - const imgAttributes = generateImgAttrs({ - config, - src, - unoptimized, - width: widthInt, - quality: qualityInt, - sizes, - loader - }); - const loadingFinal = isLazy ? 'lazy' : loading; - if ("TURBOPACK compile-time truthy", 1) { - if (typeof window !== 'undefined') { - let fullUrl; - try { - fullUrl = new URL(imgAttributes.src); - } catch (e) { - fullUrl = new URL(imgAttributes.src, window.location.href); - } - allImgs.set(fullUrl.href, { - src, - loading: loadingFinal, - placeholder - }); - } - } - const props = { - ...rest, - loading: loadingFinal, - fetchPriority, - width: widthInt, - height: heightInt, - decoding, - className, - style: { - ...imgStyle, - ...placeholderStyle - }, - sizes: imgAttributes.sizes, - srcSet: imgAttributes.srcSet, - src: overrideSrc || imgAttributes.src - }; - const meta = { - unoptimized, - preload: preload || priority, - placeholder, - fill - }; - return { - props, - meta - }; -} //# sourceMappingURL=get-img-props.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ImageConfigContext", { - enumerable: true, - get: function() { - return ImageConfigContext; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _imageconfig = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-config.js [app-client] (ecmascript)"); -const ImageConfigContext = _react.default.createContext(_imageconfig.imageConfigDefault); -if ("TURBOPACK compile-time truthy", 1) { - ImageConfigContext.displayName = 'ImageConfigContext'; -} //# sourceMappingURL=image-config-context.shared-runtime.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router-context.shared-runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "RouterContext", { - enumerable: true, - get: function() { - return RouterContext; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const RouterContext = _react.default.createContext(null); -if ("TURBOPACK compile-time truthy", 1) { - RouterContext.displayName = 'RouterContext'; -} //# sourceMappingURL=router-context.shared-runtime.js.map -}), -"[project]/node_modules/next/dist/shared/lib/find-closest-quality.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "findClosestQuality", { - enumerable: true, - get: function() { - return findClosestQuality; - } -}); -function findClosestQuality(quality, config) { - const q = quality || 75; - if (!config?.qualities?.length) { - return q; - } - return config.qualities.reduce((prev, cur)=>Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev, 0); -} //# sourceMappingURL=find-closest-quality.js.map -}), -"[project]/node_modules/next/dist/compiled/picomatch/index.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -(()=>{ - "use strict"; - var t = { - 170: (t, e, u)=>{ - const n = u(510); - const isWindows = ()=>{ - if (typeof navigator !== "undefined" && navigator.platform) { - const t = navigator.platform.toLowerCase(); - return t === "win32" || t === "windows"; - } - if (typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"] !== "undefined" && __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"].platform) { - return __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"].platform === "win32"; - } - return false; - }; - function picomatch(t, e, u = false) { - if (e && (e.windows === null || e.windows === undefined)) { - e = { - ...e, - windows: isWindows() - }; - } - return n(t, e, u); - } - Object.assign(picomatch, n); - t.exports = picomatch; - }, - 154: (t)=>{ - const e = "\\\\/"; - const u = `[^${e}]`; - const n = "\\."; - const o = "\\+"; - const s = "\\?"; - const r = "\\/"; - const a = "(?=.)"; - const i = "[^/]"; - const c = `(?:${r}|$)`; - const p = `(?:^|${r})`; - const l = `${n}{1,2}${c}`; - const f = `(?!${n})`; - const A = `(?!${p}${l})`; - const _ = `(?!${n}{0,1}${c})`; - const R = `(?!${l})`; - const E = `[^.${r}]`; - const h = `${i}*?`; - const g = "/"; - const b = { - DOT_LITERAL: n, - PLUS_LITERAL: o, - QMARK_LITERAL: s, - SLASH_LITERAL: r, - ONE_CHAR: a, - QMARK: i, - END_ANCHOR: c, - DOTS_SLASH: l, - NO_DOT: f, - NO_DOTS: A, - NO_DOT_SLASH: _, - NO_DOTS_SLASH: R, - QMARK_NO_DOT: E, - STAR: h, - START_ANCHOR: p, - SEP: g - }; - const C = { - ...b, - SLASH_LITERAL: `[${e}]`, - QMARK: u, - STAR: `${u}*?`, - DOTS_SLASH: `${n}{1,2}(?:[${e}]|$)`, - NO_DOT: `(?!${n})`, - NO_DOTS: `(?!(?:^|[${e}])${n}{1,2}(?:[${e}]|$))`, - NO_DOT_SLASH: `(?!${n}{0,1}(?:[${e}]|$))`, - NO_DOTS_SLASH: `(?!${n}{1,2}(?:[${e}]|$))`, - QMARK_NO_DOT: `[^.${e}]`, - START_ANCHOR: `(?:^|[${e}])`, - END_ANCHOR: `(?:[${e}]|$)`, - SEP: "\\" - }; - const y = { - alnum: "a-zA-Z0-9", - alpha: "a-zA-Z", - ascii: "\\x00-\\x7F", - blank: " \\t", - cntrl: "\\x00-\\x1F\\x7F", - digit: "0-9", - graph: "\\x21-\\x7E", - lower: "a-z", - print: "\\x20-\\x7E ", - punct: "\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~", - space: " \\t\\r\\n\\v\\f", - upper: "A-Z", - word: "A-Za-z0-9_", - xdigit: "A-Fa-f0-9" - }; - t.exports = { - MAX_LENGTH: 1024 * 64, - POSIX_REGEX_SOURCE: y, - REGEX_BACKSLASH: /\\(?![*+?^${}(|)[\]])/g, - REGEX_NON_SPECIAL_CHARS: /^[^@![\].,$*+?^{}()|\\/]+/, - REGEX_SPECIAL_CHARS: /[-*+?.^${}(|)[\]]/, - REGEX_SPECIAL_CHARS_BACKREF: /(\\?)((\W)(\3*))/g, - REGEX_SPECIAL_CHARS_GLOBAL: /([-*+?.^${}(|)[\]])/g, - REGEX_REMOVE_BACKSLASH: /(?:\[.*?[^\\]\]|\\(?=.))/g, - REPLACEMENTS: { - "***": "*", - "**/**": "**", - "**/**/**": "**" - }, - CHAR_0: 48, - CHAR_9: 57, - CHAR_UPPERCASE_A: 65, - CHAR_LOWERCASE_A: 97, - CHAR_UPPERCASE_Z: 90, - CHAR_LOWERCASE_Z: 122, - CHAR_LEFT_PARENTHESES: 40, - CHAR_RIGHT_PARENTHESES: 41, - CHAR_ASTERISK: 42, - CHAR_AMPERSAND: 38, - CHAR_AT: 64, - CHAR_BACKWARD_SLASH: 92, - CHAR_CARRIAGE_RETURN: 13, - CHAR_CIRCUMFLEX_ACCENT: 94, - CHAR_COLON: 58, - CHAR_COMMA: 44, - CHAR_DOT: 46, - CHAR_DOUBLE_QUOTE: 34, - CHAR_EQUAL: 61, - CHAR_EXCLAMATION_MARK: 33, - CHAR_FORM_FEED: 12, - CHAR_FORWARD_SLASH: 47, - CHAR_GRAVE_ACCENT: 96, - CHAR_HASH: 35, - CHAR_HYPHEN_MINUS: 45, - CHAR_LEFT_ANGLE_BRACKET: 60, - CHAR_LEFT_CURLY_BRACE: 123, - CHAR_LEFT_SQUARE_BRACKET: 91, - CHAR_LINE_FEED: 10, - CHAR_NO_BREAK_SPACE: 160, - CHAR_PERCENT: 37, - CHAR_PLUS: 43, - CHAR_QUESTION_MARK: 63, - CHAR_RIGHT_ANGLE_BRACKET: 62, - CHAR_RIGHT_CURLY_BRACE: 125, - CHAR_RIGHT_SQUARE_BRACKET: 93, - CHAR_SEMICOLON: 59, - CHAR_SINGLE_QUOTE: 39, - CHAR_SPACE: 32, - CHAR_TAB: 9, - CHAR_UNDERSCORE: 95, - CHAR_VERTICAL_LINE: 124, - CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279, - extglobChars (t) { - return { - "!": { - type: "negate", - open: "(?:(?!(?:", - close: `))${t.STAR})` - }, - "?": { - type: "qmark", - open: "(?:", - close: ")?" - }, - "+": { - type: "plus", - open: "(?:", - close: ")+" - }, - "*": { - type: "star", - open: "(?:", - close: ")*" - }, - "@": { - type: "at", - open: "(?:", - close: ")" - } - }; - }, - globChars (t) { - return t === true ? C : b; - } - }; - }, - 697: (t, e, u)=>{ - const n = u(154); - const o = u(96); - const { MAX_LENGTH: s, POSIX_REGEX_SOURCE: r, REGEX_NON_SPECIAL_CHARS: a, REGEX_SPECIAL_CHARS_BACKREF: i, REPLACEMENTS: c } = n; - const expandRange = (t, e)=>{ - if (typeof e.expandRange === "function") { - return e.expandRange(...t, e); - } - t.sort(); - const u = `[${t.join("-")}]`; - try { - new RegExp(u); - } catch (e) { - return t.map((t)=>o.escapeRegex(t)).join(".."); - } - return u; - }; - const syntaxError = (t, e)=>`Missing ${t}: "${e}" - use "\\\\${e}" to match literal characters`; - const parse = (t, e)=>{ - if (typeof t !== "string") { - throw new TypeError("Expected a string"); - } - t = c[t] || t; - const u = { - ...e - }; - const p = typeof u.maxLength === "number" ? Math.min(s, u.maxLength) : s; - let l = t.length; - if (l > p) { - throw new SyntaxError(`Input length: ${l}, exceeds maximum allowed length: ${p}`); - } - const f = { - type: "bos", - value: "", - output: u.prepend || "" - }; - const A = [ - f - ]; - const _ = u.capture ? "" : "?:"; - const R = n.globChars(u.windows); - const E = n.extglobChars(R); - const { DOT_LITERAL: h, PLUS_LITERAL: g, SLASH_LITERAL: b, ONE_CHAR: C, DOTS_SLASH: y, NO_DOT: $, NO_DOT_SLASH: x, NO_DOTS_SLASH: S, QMARK: H, QMARK_NO_DOT: v, STAR: d, START_ANCHOR: L } = R; - const globstar = (t)=>`(${_}(?:(?!${L}${t.dot ? y : h}).)*?)`; - const T = u.dot ? "" : $; - const O = u.dot ? H : v; - let k = u.bash === true ? globstar(u) : d; - if (u.capture) { - k = `(${k})`; - } - if (typeof u.noext === "boolean") { - u.noextglob = u.noext; - } - const m = { - input: t, - index: -1, - start: 0, - dot: u.dot === true, - consumed: "", - output: "", - prefix: "", - backtrack: false, - negated: false, - brackets: 0, - braces: 0, - parens: 0, - quotes: 0, - globstar: false, - tokens: A - }; - t = o.removePrefix(t, m); - l = t.length; - const w = []; - const N = []; - const I = []; - let B = f; - let G; - const eos = ()=>m.index === l - 1; - const D = m.peek = (e = 1)=>t[m.index + e]; - const M = m.advance = ()=>t[++m.index] || ""; - const remaining = ()=>t.slice(m.index + 1); - const consume = (t = "", e = 0)=>{ - m.consumed += t; - m.index += e; - }; - const append = (t)=>{ - m.output += t.output != null ? t.output : t.value; - consume(t.value); - }; - const negate = ()=>{ - let t = 1; - while(D() === "!" && (D(2) !== "(" || D(3) === "?")){ - M(); - m.start++; - t++; - } - if (t % 2 === 0) { - return false; - } - m.negated = true; - m.start++; - return true; - }; - const increment = (t)=>{ - m[t]++; - I.push(t); - }; - const decrement = (t)=>{ - m[t]--; - I.pop(); - }; - const push = (t)=>{ - if (B.type === "globstar") { - const e = m.braces > 0 && (t.type === "comma" || t.type === "brace"); - const u = t.extglob === true || w.length && (t.type === "pipe" || t.type === "paren"); - if (t.type !== "slash" && t.type !== "paren" && !e && !u) { - m.output = m.output.slice(0, -B.output.length); - B.type = "star"; - B.value = "*"; - B.output = k; - m.output += B.output; - } - } - if (w.length && t.type !== "paren") { - w[w.length - 1].inner += t.value; - } - if (t.value || t.output) append(t); - if (B && B.type === "text" && t.type === "text") { - B.output = (B.output || B.value) + t.value; - B.value += t.value; - return; - } - t.prev = B; - A.push(t); - B = t; - }; - const extglobOpen = (t, e)=>{ - const n = { - ...E[e], - conditions: 1, - inner: "" - }; - n.prev = B; - n.parens = m.parens; - n.output = m.output; - const o = (u.capture ? "(" : "") + n.open; - increment("parens"); - push({ - type: t, - value: e, - output: m.output ? "" : C - }); - push({ - type: "paren", - extglob: true, - value: M(), - output: o - }); - w.push(n); - }; - const extglobClose = (t)=>{ - let n = t.close + (u.capture ? ")" : ""); - let o; - if (t.type === "negate") { - let s = k; - if (t.inner && t.inner.length > 1 && t.inner.includes("/")) { - s = globstar(u); - } - if (s !== k || eos() || /^\)+$/.test(remaining())) { - n = t.close = `)$))${s}`; - } - if (t.inner.includes("*") && (o = remaining()) && /^\.[^\\/.]+$/.test(o)) { - const u = parse(o, { - ...e, - fastpaths: false - }).output; - n = t.close = `)${u})${s})`; - } - if (t.prev.type === "bos") { - m.negatedExtglob = true; - } - } - push({ - type: "paren", - extglob: true, - value: G, - output: n - }); - decrement("parens"); - }; - if (u.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(t)) { - let n = false; - let s = t.replace(i, (t, e, u, o, s, r)=>{ - if (o === "\\") { - n = true; - return t; - } - if (o === "?") { - if (e) { - return e + o + (s ? H.repeat(s.length) : ""); - } - if (r === 0) { - return O + (s ? H.repeat(s.length) : ""); - } - return H.repeat(u.length); - } - if (o === ".") { - return h.repeat(u.length); - } - if (o === "*") { - if (e) { - return e + o + (s ? k : ""); - } - return k; - } - return e ? t : `\\${t}`; - }); - if (n === true) { - if (u.unescape === true) { - s = s.replace(/\\/g, ""); - } else { - s = s.replace(/\\+/g, (t)=>t.length % 2 === 0 ? "\\\\" : t ? "\\" : ""); - } - } - if (s === t && u.contains === true) { - m.output = t; - return m; - } - m.output = o.wrapOutput(s, m, e); - return m; - } - while(!eos()){ - G = M(); - if (G === "\0") { - continue; - } - if (G === "\\") { - const t = D(); - if (t === "/" && u.bash !== true) { - continue; - } - if (t === "." || t === ";") { - continue; - } - if (!t) { - G += "\\"; - push({ - type: "text", - value: G - }); - continue; - } - const e = /^\\+/.exec(remaining()); - let n = 0; - if (e && e[0].length > 2) { - n = e[0].length; - m.index += n; - if (n % 2 !== 0) { - G += "\\"; - } - } - if (u.unescape === true) { - G = M(); - } else { - G += M(); - } - if (m.brackets === 0) { - push({ - type: "text", - value: G - }); - continue; - } - } - if (m.brackets > 0 && (G !== "]" || B.value === "[" || B.value === "[^")) { - if (u.posix !== false && G === ":") { - const t = B.value.slice(1); - if (t.includes("[")) { - B.posix = true; - if (t.includes(":")) { - const t = B.value.lastIndexOf("["); - const e = B.value.slice(0, t); - const u = B.value.slice(t + 2); - const n = r[u]; - if (n) { - B.value = e + n; - m.backtrack = true; - M(); - if (!f.output && A.indexOf(B) === 1) { - f.output = C; - } - continue; - } - } - } - } - if (G === "[" && D() !== ":" || G === "-" && D() === "]") { - G = `\\${G}`; - } - if (G === "]" && (B.value === "[" || B.value === "[^")) { - G = `\\${G}`; - } - if (u.posix === true && G === "!" && B.value === "[") { - G = "^"; - } - B.value += G; - append({ - value: G - }); - continue; - } - if (m.quotes === 1 && G !== '"') { - G = o.escapeRegex(G); - B.value += G; - append({ - value: G - }); - continue; - } - if (G === '"') { - m.quotes = m.quotes === 1 ? 0 : 1; - if (u.keepQuotes === true) { - push({ - type: "text", - value: G - }); - } - continue; - } - if (G === "(") { - increment("parens"); - push({ - type: "paren", - value: G - }); - continue; - } - if (G === ")") { - if (m.parens === 0 && u.strictBrackets === true) { - throw new SyntaxError(syntaxError("opening", "(")); - } - const t = w[w.length - 1]; - if (t && m.parens === t.parens + 1) { - extglobClose(w.pop()); - continue; - } - push({ - type: "paren", - value: G, - output: m.parens ? ")" : "\\)" - }); - decrement("parens"); - continue; - } - if (G === "[") { - if (u.nobracket === true || !remaining().includes("]")) { - if (u.nobracket !== true && u.strictBrackets === true) { - throw new SyntaxError(syntaxError("closing", "]")); - } - G = `\\${G}`; - } else { - increment("brackets"); - } - push({ - type: "bracket", - value: G - }); - continue; - } - if (G === "]") { - if (u.nobracket === true || B && B.type === "bracket" && B.value.length === 1) { - push({ - type: "text", - value: G, - output: `\\${G}` - }); - continue; - } - if (m.brackets === 0) { - if (u.strictBrackets === true) { - throw new SyntaxError(syntaxError("opening", "[")); - } - push({ - type: "text", - value: G, - output: `\\${G}` - }); - continue; - } - decrement("brackets"); - const t = B.value.slice(1); - if (B.posix !== true && t[0] === "^" && !t.includes("/")) { - G = `/${G}`; - } - B.value += G; - append({ - value: G - }); - if (u.literalBrackets === false || o.hasRegexChars(t)) { - continue; - } - const e = o.escapeRegex(B.value); - m.output = m.output.slice(0, -B.value.length); - if (u.literalBrackets === true) { - m.output += e; - B.value = e; - continue; - } - B.value = `(${_}${e}|${B.value})`; - m.output += B.value; - continue; - } - if (G === "{" && u.nobrace !== true) { - increment("braces"); - const t = { - type: "brace", - value: G, - output: "(", - outputIndex: m.output.length, - tokensIndex: m.tokens.length - }; - N.push(t); - push(t); - continue; - } - if (G === "}") { - const t = N[N.length - 1]; - if (u.nobrace === true || !t) { - push({ - type: "text", - value: G, - output: G - }); - continue; - } - let e = ")"; - if (t.dots === true) { - const t = A.slice(); - const n = []; - for(let e = t.length - 1; e >= 0; e--){ - A.pop(); - if (t[e].type === "brace") { - break; - } - if (t[e].type !== "dots") { - n.unshift(t[e].value); - } - } - e = expandRange(n, u); - m.backtrack = true; - } - if (t.comma !== true && t.dots !== true) { - const u = m.output.slice(0, t.outputIndex); - const n = m.tokens.slice(t.tokensIndex); - t.value = t.output = "\\{"; - G = e = "\\}"; - m.output = u; - for (const t of n){ - m.output += t.output || t.value; - } - } - push({ - type: "brace", - value: G, - output: e - }); - decrement("braces"); - N.pop(); - continue; - } - if (G === "|") { - if (w.length > 0) { - w[w.length - 1].conditions++; - } - push({ - type: "text", - value: G - }); - continue; - } - if (G === ",") { - let t = G; - const e = N[N.length - 1]; - if (e && I[I.length - 1] === "braces") { - e.comma = true; - t = "|"; - } - push({ - type: "comma", - value: G, - output: t - }); - continue; - } - if (G === "/") { - if (B.type === "dot" && m.index === m.start + 1) { - m.start = m.index + 1; - m.consumed = ""; - m.output = ""; - A.pop(); - B = f; - continue; - } - push({ - type: "slash", - value: G, - output: b - }); - continue; - } - if (G === ".") { - if (m.braces > 0 && B.type === "dot") { - if (B.value === ".") B.output = h; - const t = N[N.length - 1]; - B.type = "dots"; - B.output += G; - B.value += G; - t.dots = true; - continue; - } - if (m.braces + m.parens === 0 && B.type !== "bos" && B.type !== "slash") { - push({ - type: "text", - value: G, - output: h - }); - continue; - } - push({ - type: "dot", - value: G, - output: h - }); - continue; - } - if (G === "?") { - const t = B && B.value === "("; - if (!t && u.noextglob !== true && D() === "(" && D(2) !== "?") { - extglobOpen("qmark", G); - continue; - } - if (B && B.type === "paren") { - const t = D(); - let e = G; - if (B.value === "(" && !/[!=<:]/.test(t) || t === "<" && !/<([!=]|\w+>)/.test(remaining())) { - e = `\\${G}`; - } - push({ - type: "text", - value: G, - output: e - }); - continue; - } - if (u.dot !== true && (B.type === "slash" || B.type === "bos")) { - push({ - type: "qmark", - value: G, - output: v - }); - continue; - } - push({ - type: "qmark", - value: G, - output: H - }); - continue; - } - if (G === "!") { - if (u.noextglob !== true && D() === "(") { - if (D(2) !== "?" || !/[!=<:]/.test(D(3))) { - extglobOpen("negate", G); - continue; - } - } - if (u.nonegate !== true && m.index === 0) { - negate(); - continue; - } - } - if (G === "+") { - if (u.noextglob !== true && D() === "(" && D(2) !== "?") { - extglobOpen("plus", G); - continue; - } - if (B && B.value === "(" || u.regex === false) { - push({ - type: "plus", - value: G, - output: g - }); - continue; - } - if (B && (B.type === "bracket" || B.type === "paren" || B.type === "brace") || m.parens > 0) { - push({ - type: "plus", - value: G - }); - continue; - } - push({ - type: "plus", - value: g - }); - continue; - } - if (G === "@") { - if (u.noextglob !== true && D() === "(" && D(2) !== "?") { - push({ - type: "at", - extglob: true, - value: G, - output: "" - }); - continue; - } - push({ - type: "text", - value: G - }); - continue; - } - if (G !== "*") { - if (G === "$" || G === "^") { - G = `\\${G}`; - } - const t = a.exec(remaining()); - if (t) { - G += t[0]; - m.index += t[0].length; - } - push({ - type: "text", - value: G - }); - continue; - } - if (B && (B.type === "globstar" || B.star === true)) { - B.type = "star"; - B.star = true; - B.value += G; - B.output = k; - m.backtrack = true; - m.globstar = true; - consume(G); - continue; - } - let e = remaining(); - if (u.noextglob !== true && /^\([^?]/.test(e)) { - extglobOpen("star", G); - continue; - } - if (B.type === "star") { - if (u.noglobstar === true) { - consume(G); - continue; - } - const n = B.prev; - const o = n.prev; - const s = n.type === "slash" || n.type === "bos"; - const r = o && (o.type === "star" || o.type === "globstar"); - if (u.bash === true && (!s || e[0] && e[0] !== "/")) { - push({ - type: "star", - value: G, - output: "" - }); - continue; - } - const a = m.braces > 0 && (n.type === "comma" || n.type === "brace"); - const i = w.length && (n.type === "pipe" || n.type === "paren"); - if (!s && n.type !== "paren" && !a && !i) { - push({ - type: "star", - value: G, - output: "" - }); - continue; - } - while(e.slice(0, 3) === "/**"){ - const u = t[m.index + 4]; - if (u && u !== "/") { - break; - } - e = e.slice(3); - consume("/**", 3); - } - if (n.type === "bos" && eos()) { - B.type = "globstar"; - B.value += G; - B.output = globstar(u); - m.output = B.output; - m.globstar = true; - consume(G); - continue; - } - if (n.type === "slash" && n.prev.type !== "bos" && !r && eos()) { - m.output = m.output.slice(0, -(n.output + B.output).length); - n.output = `(?:${n.output}`; - B.type = "globstar"; - B.output = globstar(u) + (u.strictSlashes ? ")" : "|$)"); - B.value += G; - m.globstar = true; - m.output += n.output + B.output; - consume(G); - continue; - } - if (n.type === "slash" && n.prev.type !== "bos" && e[0] === "/") { - const t = e[1] !== void 0 ? "|$" : ""; - m.output = m.output.slice(0, -(n.output + B.output).length); - n.output = `(?:${n.output}`; - B.type = "globstar"; - B.output = `${globstar(u)}${b}|${b}${t})`; - B.value += G; - m.output += n.output + B.output; - m.globstar = true; - consume(G + M()); - push({ - type: "slash", - value: "/", - output: "" - }); - continue; - } - if (n.type === "bos" && e[0] === "/") { - B.type = "globstar"; - B.value += G; - B.output = `(?:^|${b}|${globstar(u)}${b})`; - m.output = B.output; - m.globstar = true; - consume(G + M()); - push({ - type: "slash", - value: "/", - output: "" - }); - continue; - } - m.output = m.output.slice(0, -B.output.length); - B.type = "globstar"; - B.output = globstar(u); - B.value += G; - m.output += B.output; - m.globstar = true; - consume(G); - continue; - } - const n = { - type: "star", - value: G, - output: k - }; - if (u.bash === true) { - n.output = ".*?"; - if (B.type === "bos" || B.type === "slash") { - n.output = T + n.output; - } - push(n); - continue; - } - if (B && (B.type === "bracket" || B.type === "paren") && u.regex === true) { - n.output = G; - push(n); - continue; - } - if (m.index === m.start || B.type === "slash" || B.type === "dot") { - if (B.type === "dot") { - m.output += x; - B.output += x; - } else if (u.dot === true) { - m.output += S; - B.output += S; - } else { - m.output += T; - B.output += T; - } - if (D() !== "*") { - m.output += C; - B.output += C; - } - } - push(n); - } - while(m.brackets > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "]")); - m.output = o.escapeLast(m.output, "["); - decrement("brackets"); - } - while(m.parens > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", ")")); - m.output = o.escapeLast(m.output, "("); - decrement("parens"); - } - while(m.braces > 0){ - if (u.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "}")); - m.output = o.escapeLast(m.output, "{"); - decrement("braces"); - } - if (u.strictSlashes !== true && (B.type === "star" || B.type === "bracket")) { - push({ - type: "maybe_slash", - value: "", - output: `${b}?` - }); - } - if (m.backtrack === true) { - m.output = ""; - for (const t of m.tokens){ - m.output += t.output != null ? t.output : t.value; - if (t.suffix) { - m.output += t.suffix; - } - } - } - return m; - }; - parse.fastpaths = (t, e)=>{ - const u = { - ...e - }; - const r = typeof u.maxLength === "number" ? Math.min(s, u.maxLength) : s; - const a = t.length; - if (a > r) { - throw new SyntaxError(`Input length: ${a}, exceeds maximum allowed length: ${r}`); - } - t = c[t] || t; - const { DOT_LITERAL: i, SLASH_LITERAL: p, ONE_CHAR: l, DOTS_SLASH: f, NO_DOT: A, NO_DOTS: _, NO_DOTS_SLASH: R, STAR: E, START_ANCHOR: h } = n.globChars(u.windows); - const g = u.dot ? _ : A; - const b = u.dot ? R : A; - const C = u.capture ? "" : "?:"; - const y = { - negated: false, - prefix: "" - }; - let $ = u.bash === true ? ".*?" : E; - if (u.capture) { - $ = `(${$})`; - } - const globstar = (t)=>{ - if (t.noglobstar === true) return $; - return `(${C}(?:(?!${h}${t.dot ? f : i}).)*?)`; - }; - const create = (t)=>{ - switch(t){ - case "*": - return `${g}${l}${$}`; - case ".*": - return `${i}${l}${$}`; - case "*.*": - return `${g}${$}${i}${l}${$}`; - case "*/*": - return `${g}${$}${p}${l}${b}${$}`; - case "**": - return g + globstar(u); - case "**/*": - return `(?:${g}${globstar(u)}${p})?${b}${l}${$}`; - case "**/*.*": - return `(?:${g}${globstar(u)}${p})?${b}${$}${i}${l}${$}`; - case "**/.*": - return `(?:${g}${globstar(u)}${p})?${i}${l}${$}`; - default: - { - const e = /^(.*?)\.(\w+)$/.exec(t); - if (!e) return; - const u = create(e[1]); - if (!u) return; - return u + i + e[2]; - } - } - }; - const x = o.removePrefix(t, y); - let S = create(x); - if (S && u.strictSlashes !== true) { - S += `${p}?`; - } - return S; - }; - t.exports = parse; - }, - 510: (t, e, u)=>{ - const n = u(716); - const o = u(697); - const s = u(96); - const r = u(154); - const isObject = (t)=>t && typeof t === "object" && !Array.isArray(t); - const picomatch = (t, e, u = false)=>{ - if (Array.isArray(t)) { - const n = t.map((t)=>picomatch(t, e, u)); - const arrayMatcher = (t)=>{ - for (const e of n){ - const u = e(t); - if (u) return u; - } - return false; - }; - return arrayMatcher; - } - const n = isObject(t) && t.tokens && t.input; - if (t === "" || typeof t !== "string" && !n) { - throw new TypeError("Expected pattern to be a non-empty string"); - } - const o = e || {}; - const s = o.windows; - const r = n ? picomatch.compileRe(t, e) : picomatch.makeRe(t, e, false, true); - const a = r.state; - delete r.state; - let isIgnored = ()=>false; - if (o.ignore) { - const t = { - ...e, - ignore: null, - onMatch: null, - onResult: null - }; - isIgnored = picomatch(o.ignore, t, u); - } - const matcher = (u, n = false)=>{ - const { isMatch: i, match: c, output: p } = picomatch.test(u, r, e, { - glob: t, - posix: s - }); - const l = { - glob: t, - state: a, - regex: r, - posix: s, - input: u, - output: p, - match: c, - isMatch: i - }; - if (typeof o.onResult === "function") { - o.onResult(l); - } - if (i === false) { - l.isMatch = false; - return n ? l : false; - } - if (isIgnored(u)) { - if (typeof o.onIgnore === "function") { - o.onIgnore(l); - } - l.isMatch = false; - return n ? l : false; - } - if (typeof o.onMatch === "function") { - o.onMatch(l); - } - return n ? l : true; - }; - if (u) { - matcher.state = a; - } - return matcher; - }; - picomatch.test = (t, e, u, { glob: n, posix: o } = {})=>{ - if (typeof t !== "string") { - throw new TypeError("Expected input to be a string"); - } - if (t === "") { - return { - isMatch: false, - output: "" - }; - } - const r = u || {}; - const a = r.format || (o ? s.toPosixSlashes : null); - let i = t === n; - let c = i && a ? a(t) : t; - if (i === false) { - c = a ? a(t) : t; - i = c === n; - } - if (i === false || r.capture === true) { - if (r.matchBase === true || r.basename === true) { - i = picomatch.matchBase(t, e, u, o); - } else { - i = e.exec(c); - } - } - return { - isMatch: Boolean(i), - match: i, - output: c - }; - }; - picomatch.matchBase = (t, e, u)=>{ - const n = e instanceof RegExp ? e : picomatch.makeRe(e, u); - return n.test(s.basename(t)); - }; - picomatch.isMatch = (t, e, u)=>picomatch(e, u)(t); - picomatch.parse = (t, e)=>{ - if (Array.isArray(t)) return t.map((t)=>picomatch.parse(t, e)); - return o(t, { - ...e, - fastpaths: false - }); - }; - picomatch.scan = (t, e)=>n(t, e); - picomatch.compileRe = (t, e, u = false, n = false)=>{ - if (u === true) { - return t.output; - } - const o = e || {}; - const s = o.contains ? "" : "^"; - const r = o.contains ? "" : "$"; - let a = `${s}(?:${t.output})${r}`; - if (t && t.negated === true) { - a = `^(?!${a}).*$`; - } - const i = picomatch.toRegex(a, e); - if (n === true) { - i.state = t; - } - return i; - }; - picomatch.makeRe = (t, e = {}, u = false, n = false)=>{ - if (!t || typeof t !== "string") { - throw new TypeError("Expected a non-empty string"); - } - let s = { - negated: false, - fastpaths: true - }; - if (e.fastpaths !== false && (t[0] === "." || t[0] === "*")) { - s.output = o.fastpaths(t, e); - } - if (!s.output) { - s = o(t, e); - } - return picomatch.compileRe(s, e, u, n); - }; - picomatch.toRegex = (t, e)=>{ - try { - const u = e || {}; - return new RegExp(t, u.flags || (u.nocase ? "i" : "")); - } catch (t) { - if (e && e.debug === true) throw t; - return /$^/; - } - }; - picomatch.constants = r; - t.exports = picomatch; - }, - 716: (t, e, u)=>{ - const n = u(96); - const { CHAR_ASTERISK: o, CHAR_AT: s, CHAR_BACKWARD_SLASH: r, CHAR_COMMA: a, CHAR_DOT: i, CHAR_EXCLAMATION_MARK: c, CHAR_FORWARD_SLASH: p, CHAR_LEFT_CURLY_BRACE: l, CHAR_LEFT_PARENTHESES: f, CHAR_LEFT_SQUARE_BRACKET: A, CHAR_PLUS: _, CHAR_QUESTION_MARK: R, CHAR_RIGHT_CURLY_BRACE: E, CHAR_RIGHT_PARENTHESES: h, CHAR_RIGHT_SQUARE_BRACKET: g } = u(154); - const isPathSeparator = (t)=>t === p || t === r; - const depth = (t)=>{ - if (t.isPrefix !== true) { - t.depth = t.isGlobstar ? Infinity : 1; - } - }; - const scan = (t, e)=>{ - const u = e || {}; - const b = t.length - 1; - const C = u.parts === true || u.scanToEnd === true; - const y = []; - const $ = []; - const x = []; - let S = t; - let H = -1; - let v = 0; - let d = 0; - let L = false; - let T = false; - let O = false; - let k = false; - let m = false; - let w = false; - let N = false; - let I = false; - let B = false; - let G = false; - let D = 0; - let M; - let P; - let K = { - value: "", - depth: 0, - isGlob: false - }; - const eos = ()=>H >= b; - const peek = ()=>S.charCodeAt(H + 1); - const advance = ()=>{ - M = P; - return S.charCodeAt(++H); - }; - while(H < b){ - P = advance(); - let t; - if (P === r) { - N = K.backslashes = true; - P = advance(); - if (P === l) { - w = true; - } - continue; - } - if (w === true || P === l) { - D++; - while(eos() !== true && (P = advance())){ - if (P === r) { - N = K.backslashes = true; - advance(); - continue; - } - if (P === l) { - D++; - continue; - } - if (w !== true && P === i && (P = advance()) === i) { - L = K.isBrace = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (w !== true && P === a) { - L = K.isBrace = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === E) { - D--; - if (D === 0) { - w = false; - L = K.isBrace = true; - G = true; - break; - } - } - } - if (C === true) { - continue; - } - break; - } - if (P === p) { - y.push(H); - $.push(K); - K = { - value: "", - depth: 0, - isGlob: false - }; - if (G === true) continue; - if (M === i && H === v + 1) { - v += 2; - continue; - } - d = H + 1; - continue; - } - if (u.noext !== true) { - const t = P === _ || P === s || P === o || P === R || P === c; - if (t === true && peek() === f) { - O = K.isGlob = true; - k = K.isExtglob = true; - G = true; - if (P === c && H === v) { - B = true; - } - if (C === true) { - while(eos() !== true && (P = advance())){ - if (P === r) { - N = K.backslashes = true; - P = advance(); - continue; - } - if (P === h) { - O = K.isGlob = true; - G = true; - break; - } - } - continue; - } - break; - } - } - if (P === o) { - if (M === o) m = K.isGlobstar = true; - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === R) { - O = K.isGlob = true; - G = true; - if (C === true) { - continue; - } - break; - } - if (P === A) { - while(eos() !== true && (t = advance())){ - if (t === r) { - N = K.backslashes = true; - advance(); - continue; - } - if (t === g) { - T = K.isBracket = true; - O = K.isGlob = true; - G = true; - break; - } - } - if (C === true) { - continue; - } - break; - } - if (u.nonegate !== true && P === c && H === v) { - I = K.negated = true; - v++; - continue; - } - if (u.noparen !== true && P === f) { - O = K.isGlob = true; - if (C === true) { - while(eos() !== true && (P = advance())){ - if (P === f) { - N = K.backslashes = true; - P = advance(); - continue; - } - if (P === h) { - G = true; - break; - } - } - continue; - } - break; - } - if (O === true) { - G = true; - if (C === true) { - continue; - } - break; - } - } - if (u.noext === true) { - k = false; - O = false; - } - let U = S; - let X = ""; - let F = ""; - if (v > 0) { - X = S.slice(0, v); - S = S.slice(v); - d -= v; - } - if (U && O === true && d > 0) { - U = S.slice(0, d); - F = S.slice(d); - } else if (O === true) { - U = ""; - F = S; - } else { - U = S; - } - if (U && U !== "" && U !== "/" && U !== S) { - if (isPathSeparator(U.charCodeAt(U.length - 1))) { - U = U.slice(0, -1); - } - } - if (u.unescape === true) { - if (F) F = n.removeBackslashes(F); - if (U && N === true) { - U = n.removeBackslashes(U); - } - } - const Q = { - prefix: X, - input: t, - start: v, - base: U, - glob: F, - isBrace: L, - isBracket: T, - isGlob: O, - isExtglob: k, - isGlobstar: m, - negated: I, - negatedExtglob: B - }; - if (u.tokens === true) { - Q.maxDepth = 0; - if (!isPathSeparator(P)) { - $.push(K); - } - Q.tokens = $; - } - if (u.parts === true || u.tokens === true) { - let e; - for(let n = 0; n < y.length; n++){ - const o = e ? e + 1 : v; - const s = y[n]; - const r = t.slice(o, s); - if (u.tokens) { - if (n === 0 && v !== 0) { - $[n].isPrefix = true; - $[n].value = X; - } else { - $[n].value = r; - } - depth($[n]); - Q.maxDepth += $[n].depth; - } - if (n !== 0 || r !== "") { - x.push(r); - } - e = s; - } - if (e && e + 1 < t.length) { - const n = t.slice(e + 1); - x.push(n); - if (u.tokens) { - $[$.length - 1].value = n; - depth($[$.length - 1]); - Q.maxDepth += $[$.length - 1].depth; - } - } - Q.slashes = y; - Q.parts = x; - } - return Q; - }; - t.exports = scan; - }, - 96: (t, e, u)=>{ - const { REGEX_BACKSLASH: n, REGEX_REMOVE_BACKSLASH: o, REGEX_SPECIAL_CHARS: s, REGEX_SPECIAL_CHARS_GLOBAL: r } = u(154); - e.isObject = (t)=>t !== null && typeof t === "object" && !Array.isArray(t); - e.hasRegexChars = (t)=>s.test(t); - e.isRegexChar = (t)=>t.length === 1 && e.hasRegexChars(t); - e.escapeRegex = (t)=>t.replace(r, "\\$1"); - e.toPosixSlashes = (t)=>t.replace(n, "/"); - e.removeBackslashes = (t)=>t.replace(o, (t)=>t === "\\" ? "" : t); - e.escapeLast = (t, u, n)=>{ - const o = t.lastIndexOf(u, n); - if (o === -1) return t; - if (t[o - 1] === "\\") return e.escapeLast(t, u, o - 1); - return `${t.slice(0, o)}\\${t.slice(o)}`; - }; - e.removePrefix = (t, e = {})=>{ - let u = t; - if (u.startsWith("./")) { - u = u.slice(2); - e.prefix = "./"; - } - return u; - }; - e.wrapOutput = (t, e = {}, u = {})=>{ - const n = u.contains ? "" : "^"; - const o = u.contains ? "" : "$"; - let s = `${n}(?:${t})${o}`; - if (e.negated === true) { - s = `(?:^(?!${s}).*$)`; - } - return s; - }; - e.basename = (t, { windows: e } = {})=>{ - const u = t.split(e ? /[\\/]/ : "/"); - const n = u[u.length - 1]; - if (n === "") { - return u[u.length - 2]; - } - return n; - }; - } - }; - var e = {}; - function __nccwpck_require__(u) { - var n = e[u]; - if (n !== undefined) { - return n.exports; - } - var o = e[u] = { - exports: {} - }; - var s = true; - try { - t[u](o, o.exports, __nccwpck_require__); - s = false; - } finally{ - if (s) delete e[u]; - } - return o.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/picomatch") + "/"; - var u = __nccwpck_require__(170); - module.exports = u; -})(); -}), -"[project]/node_modules/next/dist/shared/lib/match-local-pattern.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - hasLocalMatch: null, - matchLocalPattern: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - hasLocalMatch: function() { - return hasLocalMatch; - }, - matchLocalPattern: function() { - return matchLocalPattern; - } -}); -const _picomatch = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/picomatch/index.js [app-client] (ecmascript)"); -function matchLocalPattern(pattern, url) { - if (pattern.search !== undefined) { - if (pattern.search !== url.search) { - return false; - } - } - if (!(0, _picomatch.makeRe)(pattern.pathname ?? '**', { - dot: true - }).test(url.pathname)) { - return false; - } - return true; -} -function hasLocalMatch(localPatterns, urlPathAndQuery) { - if (!localPatterns) { - // if the user didn't define "localPatterns", we allow all local images - return true; - } - const url = new URL(urlPathAndQuery, 'http://n'); - return localPatterns.some((p)=>matchLocalPattern(p, url)); -} //# sourceMappingURL=match-local-pattern.js.map -}), -"[project]/node_modules/next/dist/shared/lib/match-remote-pattern.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - hasRemoteMatch: null, - matchRemotePattern: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - hasRemoteMatch: function() { - return hasRemoteMatch; - }, - matchRemotePattern: function() { - return matchRemotePattern; - } -}); -const _picomatch = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/picomatch/index.js [app-client] (ecmascript)"); -function matchRemotePattern(pattern, url) { - if (pattern.protocol !== undefined) { - if (pattern.protocol.replace(/:$/, '') !== url.protocol.replace(/:$/, '')) { - return false; - } - } - if (pattern.port !== undefined) { - if (pattern.port !== url.port) { - return false; - } - } - if (pattern.hostname === undefined) { - throw Object.defineProperty(new Error(`Pattern should define hostname but found\n${JSON.stringify(pattern)}`), "__NEXT_ERROR_CODE", { - value: "E410", - enumerable: false, - configurable: true - }); - } else { - if (!(0, _picomatch.makeRe)(pattern.hostname).test(url.hostname)) { - return false; - } - } - if (pattern.search !== undefined) { - if (pattern.search !== url.search) { - return false; - } - } - // Should be the same as writeImagesManifest() - if (!(0, _picomatch.makeRe)(pattern.pathname ?? '**', { - dot: true - }).test(url.pathname)) { - return false; - } - return true; -} -function hasRemoteMatch(domains, remotePatterns, url) { - return domains.some((domain)=>url.hostname === domain) || remotePatterns.some((p)=>matchRemotePattern(p, url)); -} //# sourceMappingURL=match-remote-pattern.js.map -}), -"[project]/node_modules/next/dist/shared/lib/image-loader.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return _default; - } -}); -const _findclosestquality = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/find-closest-quality.js [app-client] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-client] (ecmascript)"); -function defaultLoader({ config, src, width, quality }) { - if (src.startsWith('/') && src.includes('?') && config.localPatterns?.length === 1 && config.localPatterns[0].pathname === '**' && config.localPatterns[0].search === '') { - throw Object.defineProperty(new Error(`Image with src "${src}" is using a query string which is not configured in images.localPatterns.` + `\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`), "__NEXT_ERROR_CODE", { - value: "E871", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - const missingValues = []; - // these should always be provided but make sure they are - if (!src) missingValues.push('src'); - if (!width) missingValues.push('width'); - if (missingValues.length > 0) { - throw Object.defineProperty(new Error(`Next Image Optimization requires ${missingValues.join(', ')} to be provided. Make sure you pass them as props to the \`next/image\` component. Received: ${JSON.stringify({ - src, - width, - quality - })}`), "__NEXT_ERROR_CODE", { - value: "E188", - enumerable: false, - configurable: true - }); - } - if (src.startsWith('//')) { - throw Object.defineProperty(new Error(`Failed to parse src "${src}" on \`next/image\`, protocol-relative URL (//) must be changed to an absolute URL (http:// or https://)`), "__NEXT_ERROR_CODE", { - value: "E360", - enumerable: false, - configurable: true - }); - } - if (src.startsWith('/') && config.localPatterns) { - if ("TURBOPACK compile-time truthy", 1) { - // We use dynamic require because this should only error in development - const { hasLocalMatch } = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/match-local-pattern.js [app-client] (ecmascript)"); - if (!hasLocalMatch(config.localPatterns, src)) { - throw Object.defineProperty(new Error(`Invalid src prop (${src}) on \`next/image\` does not match \`images.localPatterns\` configured in your \`next.config.js\`\n` + `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`), "__NEXT_ERROR_CODE", { - value: "E426", - enumerable: false, - configurable: true - }); - } - } - } - if (!src.startsWith('/') && (config.domains || config.remotePatterns)) { - let parsedSrc; - try { - parsedSrc = new URL(src); - } catch (err) { - console.error(err); - throw Object.defineProperty(new Error(`Failed to parse src "${src}" on \`next/image\`, if using relative image it must start with a leading slash "/" or be an absolute URL (http:// or https://)`), "__NEXT_ERROR_CODE", { - value: "E63", - enumerable: false, - configurable: true - }); - } - if ("TURBOPACK compile-time truthy", 1) { - // We use dynamic require because this should only error in development - const { hasRemoteMatch } = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/match-remote-pattern.js [app-client] (ecmascript)"); - if (!hasRemoteMatch(config.domains, config.remotePatterns, parsedSrc)) { - throw Object.defineProperty(new Error(`Invalid src prop (${src}) on \`next/image\`, hostname "${parsedSrc.hostname}" is not configured under images in your \`next.config.js\`\n` + `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host`), "__NEXT_ERROR_CODE", { - value: "E231", - enumerable: false, - configurable: true - }); - } - } - } - } - const q = (0, _findclosestquality.findClosestQuality)(quality, config); - let deploymentId = (0, _deploymentid.getDeploymentId)(); - return `${config.path}?url=${encodeURIComponent(src)}&w=${width}&q=${q}${src.startsWith('/') && deploymentId ? `&dpl=${deploymentId}` : ''}`; -} -// We use this to determine if the import is the default loader -// or a custom loader defined by the user in next.config.js -defaultLoader.__next_img_default = true; -const _default = defaultLoader; //# sourceMappingURL=image-loader.js.map -}), -"[project]/node_modules/next/dist/client/use-merged-ref.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "useMergedRef", { - enumerable: true, - get: function() { - return useMergedRef; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -function useMergedRef(refA, refB) { - const cleanupA = (0, _react.useRef)(null); - const cleanupB = (0, _react.useRef)(null); - // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null. - // (this happens often if the user doesn't pass a ref to Link/Form/Image) - // But this can cause us to leak a cleanup-ref into user code (previously via `<Link legacyBehavior>`), - // and the user might pass that ref into ref-merging library that doesn't support cleanup refs - // (because it hasn't been updated for React 19) - // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`. - // So in practice, it's safer to be defensive and always wrap the ref, even on React 19. - return (0, _react.useCallback)((current)=>{ - if (current === null) { - const cleanupFnA = cleanupA.current; - if (cleanupFnA) { - cleanupA.current = null; - cleanupFnA(); - } - const cleanupFnB = cleanupB.current; - if (cleanupFnB) { - cleanupB.current = null; - cleanupFnB(); - } - } else { - if (refA) { - cleanupA.current = applyRef(refA, current); - } - if (refB) { - cleanupB.current = applyRef(refB, current); - } - } - }, [ - refA, - refB - ]); -} -function applyRef(refA, current) { - if (typeof refA === 'function') { - const cleanup = refA(current); - if (typeof cleanup === 'function') { - return cleanup; - } else { - return ()=>refA(null); - } - } else { - refA.current = current; - return ()=>{ - refA.current = null; - }; - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=use-merged-ref.js.map -}), -"[project]/node_modules/next/dist/client/image-component.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use client'; -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "Image", { - enumerable: true, - get: function() { - return Image; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _reactdom = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-dom/index.js [app-client] (ecmascript)")); -const _head = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/head.js [app-client] (ecmascript)")); -const _getimgprops = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/get-img-props.js [app-client] (ecmascript)"); -const _imageconfig = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-config.js [app-client] (ecmascript)"); -const _imageconfigcontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js [app-client] (ecmascript)"); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-client] (ecmascript)"); -const _routercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router-context.shared-runtime.js [app-client] (ecmascript)"); -const _imageloader = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/image-loader.js [app-client] (ecmascript)")); -const _usemergedref = __turbopack_context__.r("[project]/node_modules/next/dist/client/use-merged-ref.js [app-client] (ecmascript)"); -// This is replaced by webpack define plugin -const configEnv = ("TURBOPACK compile-time value", { - "deviceSizes": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 640), - ("TURBOPACK compile-time value", 750), - ("TURBOPACK compile-time value", 828), - ("TURBOPACK compile-time value", 1080), - ("TURBOPACK compile-time value", 1200), - ("TURBOPACK compile-time value", 1920), - ("TURBOPACK compile-time value", 2048), - ("TURBOPACK compile-time value", 3840) - ]), - "imageSizes": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 32), - ("TURBOPACK compile-time value", 48), - ("TURBOPACK compile-time value", 64), - ("TURBOPACK compile-time value", 96), - ("TURBOPACK compile-time value", 128), - ("TURBOPACK compile-time value", 256), - ("TURBOPACK compile-time value", 384) - ]), - "qualities": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", 75) - ]), - "path": ("TURBOPACK compile-time value", "/_next/image"), - "loader": ("TURBOPACK compile-time value", "default"), - "dangerouslyAllowSVG": ("TURBOPACK compile-time value", false), - "unoptimized": ("TURBOPACK compile-time value", false), - "domains": ("TURBOPACK compile-time value", []), - "remotePatterns": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", { - "protocol": ("TURBOPACK compile-time value", "http"), - "hostname": ("TURBOPACK compile-time value", "localhost"), - "port": ("TURBOPACK compile-time value", "5000"), - "pathname": ("TURBOPACK compile-time value", "/uploads/**") - }) - ]), - "localPatterns": ("TURBOPACK compile-time value", [ - ("TURBOPACK compile-time value", { - "pathname": ("TURBOPACK compile-time value", "**"), - "search": ("TURBOPACK compile-time value", "") - }) - ]) -}); -if (typeof window === 'undefined') { - ; - globalThis.__NEXT_IMAGE_IMPORTED = true; -} -// See https://stackoverflow.com/q/39777833/266535 for why we use this ref -// handler instead of the img's onLoad attribute. -function handleLoading(img, placeholder, onLoadRef, onLoadingCompleteRef, setBlurComplete, unoptimized, sizesInput) { - const src = img?.src; - if (!img || img['data-loaded-src'] === src) { - return; - } - img['data-loaded-src'] = src; - const p = 'decode' in img ? img.decode() : Promise.resolve(); - p.catch(()=>{}).then(()=>{ - if (!img.parentElement || !img.isConnected) { - // Exit early in case of race condition: - // - onload() is called - // - decode() is called but incomplete - // - unmount is called - // - decode() completes - return; - } - if (placeholder !== 'empty') { - setBlurComplete(true); - } - if (onLoadRef?.current) { - // Since we don't have the SyntheticEvent here, - // we must create one with the same shape. - // See https://reactjs.org/docs/events.html - const event = new Event('load'); - Object.defineProperty(event, 'target', { - writable: false, - value: img - }); - let prevented = false; - let stopped = false; - onLoadRef.current({ - ...event, - nativeEvent: event, - currentTarget: img, - target: img, - isDefaultPrevented: ()=>prevented, - isPropagationStopped: ()=>stopped, - persist: ()=>{}, - preventDefault: ()=>{ - prevented = true; - event.preventDefault(); - }, - stopPropagation: ()=>{ - stopped = true; - event.stopPropagation(); - } - }); - } - if (onLoadingCompleteRef?.current) { - onLoadingCompleteRef.current(img); - } - if ("TURBOPACK compile-time truthy", 1) { - const origSrc = new URL(src, 'http://n').searchParams.get('url') || src; - if (img.getAttribute('data-nimg') === 'fill') { - if (!unoptimized && (!sizesInput || sizesInput === '100vw')) { - let widthViewportRatio = img.getBoundingClientRect().width / window.innerWidth; - if (widthViewportRatio < 0.6) { - if (sizesInput === '100vw') { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has "fill" prop and "sizes" prop of "100vw", but image is not rendered at full viewport width. Please adjust "sizes" to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`); - } else { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has "fill" but is missing "sizes" prop. Please add it to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`); - } - } - } - if (img.parentElement) { - const { position } = window.getComputedStyle(img.parentElement); - const valid = [ - 'absolute', - 'fixed', - 'relative' - ]; - if (!valid.includes(position)) { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has "fill" and parent element with invalid "position". Provided "${position}" should be one of ${valid.map(String).join(',')}.`); - } - } - if (img.height === 0) { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has "fill" and a height value of 0. This is likely because the parent element of the image has not been styled to have a set height.`); - } - } - const heightModified = img.height.toString() !== img.getAttribute('height'); - const widthModified = img.width.toString() !== img.getAttribute('width'); - if (heightModified && !widthModified || !heightModified && widthModified) { - (0, _warnonce.warnOnce)(`Image with src "${origSrc}" has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: "auto"' or 'height: "auto"' to maintain the aspect ratio.`); - } - } - }); -} -function getDynamicProps(fetchPriority) { - if (Boolean(_react.use)) { - // In React 19.0.0 or newer, we must use camelCase - // prop to avoid "Warning: Invalid DOM property". - // See https://github.com/facebook/react/pull/25927 - return { - fetchPriority - }; - } - // In React 18.2.0 or older, we must use lowercase prop - // to avoid "Warning: Invalid DOM property". - return { - fetchpriority: fetchPriority - }; -} -const ImageElement = /*#__PURE__*/ (0, _react.forwardRef)(({ src, srcSet, sizes, height, width, decoding, className, style, fetchPriority, placeholder, loading, unoptimized, fill, onLoadRef, onLoadingCompleteRef, setBlurComplete, setShowAltText, sizesInput, onLoad, onError, ...rest }, forwardedRef)=>{ - const ownRef = (0, _react.useCallback)((img)=>{ - if (!img) { - return; - } - if (onError) { - // If the image has an error before react hydrates, then the error is lost. - // The workaround is to wait until the image is mounted which is after hydration, - // then we set the src again to trigger the error handler (if there was an error). - // eslint-disable-next-line no-self-assign - img.src = img.src; - } - if ("TURBOPACK compile-time truthy", 1) { - if (!src) { - console.error(`Image is missing required "src" property:`, img); - } - if (img.getAttribute('alt') === null) { - console.error(`Image is missing required "alt" property. Please add Alternative Text to describe the image for screen readers and search engines.`); - } - } - if (img.complete) { - handleLoading(img, placeholder, onLoadRef, onLoadingCompleteRef, setBlurComplete, unoptimized, sizesInput); - } - }, [ - src, - placeholder, - onLoadRef, - onLoadingCompleteRef, - setBlurComplete, - onError, - unoptimized, - sizesInput - ]); - const ref = (0, _usemergedref.useMergedRef)(forwardedRef, ownRef); - return /*#__PURE__*/ (0, _jsxruntime.jsx)("img", { - ...rest, - ...getDynamicProps(fetchPriority), - // It's intended to keep `loading` before `src` because React updates - // props in order which causes Safari/Firefox to not lazy load properly. - // See https://github.com/facebook/react/issues/25883 - loading: loading, - width: width, - height: height, - decoding: decoding, - "data-nimg": fill ? 'fill' : '1', - className: className, - style: style, - // It's intended to keep `src` the last attribute because React updates - // attributes in order. If we keep `src` the first one, Safari will - // immediately start to fetch `src`, before `sizes` and `srcSet` are even - // updated by React. That causes multiple unnecessary requests if `srcSet` - // and `sizes` are defined. - // This bug cannot be reproduced in Chrome or Firefox. - sizes: sizes, - srcSet: srcSet, - src: src, - ref: ref, - onLoad: (event)=>{ - const img = event.currentTarget; - handleLoading(img, placeholder, onLoadRef, onLoadingCompleteRef, setBlurComplete, unoptimized, sizesInput); - }, - onError: (event)=>{ - // if the real image fails to load, this will ensure "alt" is visible - setShowAltText(true); - if (placeholder !== 'empty') { - // If the real image fails to load, this will still remove the placeholder. - setBlurComplete(true); - } - if (onError) { - onError(event); - } - } - }); -}); -function ImagePreload({ isAppRouter, imgAttributes }) { - const opts = { - as: 'image', - imageSrcSet: imgAttributes.srcSet, - imageSizes: imgAttributes.sizes, - crossOrigin: imgAttributes.crossOrigin, - referrerPolicy: imgAttributes.referrerPolicy, - ...getDynamicProps(imgAttributes.fetchPriority) - }; - if (isAppRouter && _reactdom.default.preload) { - _reactdom.default.preload(imgAttributes.src, opts); - return null; - } - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_head.default, { - children: /*#__PURE__*/ (0, _jsxruntime.jsx)("link", { - rel: "preload", - // Note how we omit the `href` attribute, as it would only be relevant - // for browsers that do not support `imagesrcset`, and in those cases - // it would cause the incorrect image to be preloaded. - // - // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-imagesrcset - href: imgAttributes.srcSet ? undefined : imgAttributes.src, - ...opts - }, '__nimg-' + imgAttributes.src + imgAttributes.srcSet + imgAttributes.sizes) - }); -} -const Image = /*#__PURE__*/ (0, _react.forwardRef)((props, forwardedRef)=>{ - const pagesRouter = (0, _react.useContext)(_routercontextsharedruntime.RouterContext); - // We're in the app directory if there is no pages router. - const isAppRouter = !pagesRouter; - const configContext = (0, _react.useContext)(_imageconfigcontextsharedruntime.ImageConfigContext); - const config = (0, _react.useMemo)(()=>{ - const c = configEnv || configContext || _imageconfig.imageConfigDefault; - const allSizes = [ - ...c.deviceSizes, - ...c.imageSizes - ].sort((a, b)=>a - b); - const deviceSizes = c.deviceSizes.sort((a, b)=>a - b); - const qualities = c.qualities?.sort((a, b)=>a - b); - return { - ...c, - allSizes, - deviceSizes, - qualities, - // During the SSR, configEnv (__NEXT_IMAGE_OPTS) does not include - // security sensitive configs like `localPatterns`, which is needed - // during the server render to ensure it's validated. Therefore use - // configContext, which holds the config from the server for validation. - localPatterns: typeof window === 'undefined' ? configContext?.localPatterns : c.localPatterns - }; - }, [ - configContext - ]); - const { onLoad, onLoadingComplete } = props; - const onLoadRef = (0, _react.useRef)(onLoad); - (0, _react.useEffect)(()=>{ - onLoadRef.current = onLoad; - }, [ - onLoad - ]); - const onLoadingCompleteRef = (0, _react.useRef)(onLoadingComplete); - (0, _react.useEffect)(()=>{ - onLoadingCompleteRef.current = onLoadingComplete; - }, [ - onLoadingComplete - ]); - const [blurComplete, setBlurComplete] = (0, _react.useState)(false); - const [showAltText, setShowAltText] = (0, _react.useState)(false); - const { props: imgAttributes, meta: imgMeta } = (0, _getimgprops.getImgProps)(props, { - defaultLoader: _imageloader.default, - imgConf: config, - blurComplete, - showAltText - }); - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(ImageElement, { - ...imgAttributes, - unoptimized: imgMeta.unoptimized, - placeholder: imgMeta.placeholder, - fill: imgMeta.fill, - onLoadRef: onLoadRef, - onLoadingCompleteRef: onLoadingCompleteRef, - setBlurComplete: setBlurComplete, - setShowAltText: setShowAltText, - sizesInput: props.sizes, - ref: forwardedRef - }), - imgMeta.preload ? /*#__PURE__*/ (0, _jsxruntime.jsx)(ImagePreload, { - isAppRouter: isAppRouter, - imgAttributes: imgAttributes - }) : null - ] - }); -}); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=image-component.js.map -}), -]); - -//# sourceMappingURL=node_modules_next_dist_2c670af9._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_2c670af9._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_2c670af9._.js.map deleted file mode 100644 index 9a9905c..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_2c670af9._.js.map +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/side-effect.tsx"],"sourcesContent":["import type React from 'react'\nimport { Children, useEffect, useLayoutEffect, type JSX } from 'react'\n\ntype State = JSX.Element[] | undefined\n\nexport type SideEffectProps = {\n reduceComponentsToState: (components: Array<React.ReactElement<any>>) => State\n handleStateChange?: (state: State) => void\n headManager: any\n children: React.ReactNode\n}\n\nconst isServer = typeof window === 'undefined'\nconst useClientOnlyLayoutEffect = isServer ? () => {} : useLayoutEffect\nconst useClientOnlyEffect = isServer ? () => {} : useEffect\n\nexport default function SideEffect(props: SideEffectProps) {\n const { headManager, reduceComponentsToState } = props\n\n function emitChange() {\n if (headManager && headManager.mountedInstances) {\n const headElements = Children.toArray(\n Array.from(headManager.mountedInstances as Set<React.ReactNode>).filter(\n Boolean\n )\n ) as React.ReactElement[]\n headManager.updateHead(reduceComponentsToState(headElements))\n }\n }\n\n if (isServer) {\n headManager?.mountedInstances?.add(props.children)\n emitChange()\n }\n\n useClientOnlyLayoutEffect(() => {\n headManager?.mountedInstances?.add(props.children)\n return () => {\n headManager?.mountedInstances?.delete(props.children)\n }\n })\n\n // We need to call `updateHead` method whenever the `SideEffect` is trigger in all\n // life-cycles: mount, update, unmount. However, if there are multiple `SideEffect`s\n // being rendered, we only trigger the method from the last one.\n // This is ensured by keeping the last unflushed `updateHead` in the `_pendingUpdate`\n // singleton in the layout effect pass, and actually trigger it in the effect pass.\n useClientOnlyLayoutEffect(() => {\n if (headManager) {\n headManager._pendingUpdate = emitChange\n }\n return () => {\n if (headManager) {\n headManager._pendingUpdate = emitChange\n }\n }\n })\n\n useClientOnlyEffect(() => {\n if (headManager && headManager._pendingUpdate) {\n headManager._pendingUpdate()\n headManager._pendingUpdate = null\n }\n return () => {\n if (headManager && headManager._pendingUpdate) {\n headManager._pendingUpdate()\n headManager._pendingUpdate = null\n }\n }\n })\n\n return null\n}\n"],"names":["SideEffect","isServer","window","useClientOnlyLayoutEffect","useLayoutEffect","useClientOnlyEffect","useEffect","props","headManager","reduceComponentsToState","emitChange","mountedInstances","headElements","Children","toArray","Array","from","filter","Boolean","updateHead","add","children","delete","_pendingUpdate"],"mappings":";;;+BAgBA,WAAA;;;eAAwBA;;;uBAfuC;AAW/D,MAAMC,WAAW,OAAOC,WAAW;AACnC,MAAMC,4BAA4BF,WAAW,KAAO,IAAIG,OAAAA,eAAe;AACvE,MAAMC,sBAAsBJ,WAAW,KAAO,IAAIK,OAAAA,SAAS;AAE5C,SAASN,WAAWO,KAAsB;IACvD,MAAM,EAAEC,WAAW,EAAEC,uBAAuB,EAAE,GAAGF;IAEjD,SAASG;QACP,IAAIF,eAAeA,YAAYG,gBAAgB,EAAE;YAC/C,MAAMC,eAAeC,OAAAA,QAAQ,CAACC,OAAO,CACnCC,MAAMC,IAAI,CAACR,YAAYG,gBAAgB,EAA0BM,MAAM,CACrEC;YAGJV,YAAYW,UAAU,CAACV,wBAAwBG;QACjD;IACF;IAEA,IAAIX,UAAU;QACZO,aAAaG,kBAAkBS,IAAIb,MAAMc,QAAQ;QACjDX;IACF;IAEAP;gDAA0B;YACxBK,aAAaG,kBAAkBS,IAAIb,MAAMc,QAAQ;YACjD;wDAAO;oBACLb,aAAaG,kBAAkBW,OAAOf,MAAMc,QAAQ;gBACtD;;QACF;;IAEA,kFAAkF;IAClF,oFAAoF;IACpF,gEAAgE;IAChE,qFAAqF;IACrF,mFAAmF;IACnFlB;gDAA0B;YACxB,IAAIK,aAAa;gBACfA,YAAYe,cAAc,GAAGb;YAC/B;YACA;wDAAO;oBACL,IAAIF,aAAa;wBACfA,YAAYe,cAAc,GAAGb;oBAC/B;gBACF;;QACF;;IAEAL;0CAAoB;YAClB,IAAIG,eAAeA,YAAYe,cAAc,EAAE;gBAC7Cf,YAAYe,cAAc;gBAC1Bf,YAAYe,cAAc,GAAG;YAC/B;YACA;kDAAO;oBACL,IAAIf,eAAeA,YAAYe,cAAc,EAAE;wBAC7Cf,YAAYe,cAAc;wBAC1Bf,YAAYe,cAAc,GAAG;oBAC/B;gBACF;;QACF;;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 80, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/head.tsx"],"sourcesContent":["'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport Effect from './side-effect'\nimport { HeadManagerContext } from './head-manager-context.shared-runtime'\nimport { warnOnce } from './utils/warn-once'\n\nexport function defaultHead(): JSX.Element[] {\n const head = [\n <meta charSet=\"utf-8\" key=\"charset\" />,\n <meta name=\"viewport\" content=\"width=device-width\" key=\"viewport\" />,\n ]\n return head\n}\n\nfunction onlyReactElement(\n list: Array<React.ReactElement<any>>,\n child: React.ReactElement | number | string\n): Array<React.ReactElement<any>> {\n // React children can be \"string\" or \"number\" in this case we ignore them for backwards compat\n if (typeof child === 'string' || typeof child === 'number') {\n return list\n }\n // Adds support for React.Fragment\n if (child.type === React.Fragment) {\n return list.concat(\n // @ts-expect-error @types/react does not remove fragments but this could also return ReactPortal[]\n React.Children.toArray(child.props.children).reduce(\n // @ts-expect-error @types/react does not remove fragments but this could also return ReactPortal[]\n (\n fragmentList: Array<React.ReactElement<any>>,\n fragmentChild: React.ReactElement | number | string\n ): Array<React.ReactElement<any>> => {\n if (\n typeof fragmentChild === 'string' ||\n typeof fragmentChild === 'number'\n ) {\n return fragmentList\n }\n return fragmentList.concat(fragmentChild)\n },\n []\n )\n )\n }\n return list.concat(child)\n}\n\nconst METATYPES = ['name', 'httpEquiv', 'charSet', 'itemProp']\n\n/*\n returns a function for filtering head child elements\n which shouldn't be duplicated, like <title/>\n Also adds support for deduplicated `key` properties\n*/\nfunction unique() {\n const keys = new Set()\n const tags = new Set()\n const metaTypes = new Set()\n const metaCategories: { [metatype: string]: Set<string> } = {}\n\n return (h: React.ReactElement<any>) => {\n let isUnique = true\n let hasKey = false\n\n if (h.key && typeof h.key !== 'number' && h.key.indexOf('$') > 0) {\n hasKey = true\n const key = h.key.slice(h.key.indexOf('$') + 1)\n if (keys.has(key)) {\n isUnique = false\n } else {\n keys.add(key)\n }\n }\n\n // eslint-disable-next-line default-case\n switch (h.type) {\n case 'title':\n case 'base':\n if (tags.has(h.type)) {\n isUnique = false\n } else {\n tags.add(h.type)\n }\n break\n case 'meta':\n for (let i = 0, len = METATYPES.length; i < len; i++) {\n const metatype = METATYPES[i]\n if (!h.props.hasOwnProperty(metatype)) continue\n\n if (metatype === 'charSet') {\n if (metaTypes.has(metatype)) {\n isUnique = false\n } else {\n metaTypes.add(metatype)\n }\n } else {\n const category = h.props[metatype]\n const categories = metaCategories[metatype] || new Set()\n if ((metatype !== 'name' || !hasKey) && categories.has(category)) {\n isUnique = false\n } else {\n categories.add(category)\n metaCategories[metatype] = categories\n }\n }\n }\n break\n }\n\n return isUnique\n }\n}\n\n/**\n *\n * @param headChildrenElements List of children of <Head>\n */\nfunction reduceComponents(\n headChildrenElements: Array<React.ReactElement<any>>\n) {\n return headChildrenElements\n .reduce(onlyReactElement, [])\n .reverse()\n .concat(defaultHead().reverse())\n .filter(unique())\n .reverse()\n .map((c: React.ReactElement<any>, i: number) => {\n const key = c.key || i\n if (process.env.NODE_ENV === 'development') {\n // omit JSON-LD structured data snippets from the warning\n if (c.type === 'script' && c.props['type'] !== 'application/ld+json') {\n const srcMessage = c.props['src']\n ? `<script> tag with src=\"${c.props['src']}\"`\n : `inline <script>`\n warnOnce(\n `Do not add <script> tags using next/head (see ${srcMessage}). Use next/script instead. \\nSee more info here: https://nextjs.org/docs/messages/no-script-tags-in-head-component`\n )\n } else if (c.type === 'link' && c.props['rel'] === 'stylesheet') {\n warnOnce(\n `Do not add stylesheets using next/head (see <link rel=\"stylesheet\"> tag with href=\"${c.props['href']}\"). Use Document instead. \\nSee more info here: https://nextjs.org/docs/messages/no-stylesheets-in-head-component`\n )\n }\n }\n return React.cloneElement(c, { key })\n })\n}\n\n/**\n * This component injects elements to `<head>` of your page.\n * To avoid duplicated `tags` in `<head>` you can use the `key` property, which will make sure every tag is only rendered once.\n */\nfunction Head({ children }: { children: React.ReactNode }) {\n const headManager = useContext(HeadManagerContext)\n return (\n <Effect\n reduceComponentsToState={reduceComponents}\n headManager={headManager}\n >\n {children}\n </Effect>\n )\n}\n\nexport default Head\n"],"names":["defaultHead","head","meta","charSet","name","content","onlyReactElement","list","child","type","React","Fragment","concat","Children","toArray","props","children","reduce","fragmentList","fragmentChild","METATYPES","unique","keys","Set","tags","metaTypes","metaCategories","h","isUnique","hasKey","key","indexOf","slice","has","add","i","len","length","metatype","hasOwnProperty","category","categories","reduceComponents","headChildrenElements","reverse","filter","map","c","process","env","NODE_ENV","srcMessage","warnOnce","cloneElement","Head","headManager","useContext","HeadManagerContext","Effect","reduceComponentsToState"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 245, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-blur-svg.ts"],"sourcesContent":["/**\n * A shared function, used on both client and server, to generate a SVG blur placeholder.\n */\nexport function getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL,\n objectFit,\n}: {\n widthInt?: number\n heightInt?: number\n blurWidth?: number\n blurHeight?: number\n blurDataURL: string\n objectFit?: string\n}): string {\n const std = 20\n const svgWidth = blurWidth ? blurWidth * 40 : widthInt\n const svgHeight = blurHeight ? blurHeight * 40 : heightInt\n\n const viewBox =\n svgWidth && svgHeight ? `viewBox='0 0 ${svgWidth} ${svgHeight}'` : ''\n const preserveAspectRatio = viewBox\n ? 'none'\n : objectFit === 'contain'\n ? 'xMidYMid'\n : objectFit === 'cover'\n ? 'xMidYMid slice'\n : 'none'\n\n return `%3Csvg xmlns='http://www.w3.org/2000/svg' ${viewBox}%3E%3Cfilter id='b' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -1' result='s'/%3E%3CfeFlood x='0' y='0' width='100%25' height='100%25'/%3E%3CfeComposite operator='out' in='s'/%3E%3CfeComposite in2='SourceGraphic'/%3E%3CfeGaussianBlur stdDeviation='${std}'/%3E%3C/filter%3E%3Cimage width='100%25' height='100%25' x='0' y='0' preserveAspectRatio='${preserveAspectRatio}' style='filter: url(%23b);' href='${blurDataURL}'/%3E%3C/svg%3E`\n}\n"],"names":["getImageBlurSvg","widthInt","heightInt","blurWidth","blurHeight","blurDataURL","objectFit","std","svgWidth","svgHeight","viewBox","preserveAspectRatio"],"mappings":"AAAA;;CAEC;;;+BACeA,mBAAAA;;;eAAAA;;;AAAT,SAASA,gBAAgB,EAC9BC,QAAQ,EACRC,SAAS,EACTC,SAAS,EACTC,UAAU,EACVC,WAAW,EACXC,SAAS,EAQV;IACC,MAAMC,MAAM;IACZ,MAAMC,WAAWL,YAAYA,YAAY,KAAKF;IAC9C,MAAMQ,YAAYL,aAAaA,aAAa,KAAKF;IAEjD,MAAMQ,UACJF,YAAYC,YAAY,CAAC,aAAa,EAAED,SAAS,CAAC,EAAEC,UAAU,CAAC,CAAC,GAAG;IACrE,MAAME,sBAAsBD,UACxB,SACAJ,cAAc,YACZ,aACAA,cAAc,UACZ,mBACA;IAER,OAAO,CAAC,0CAA0C,EAAEI,QAAQ,yFAAyF,EAAEH,IAAI,+PAA+P,EAAEA,IAAI,2FAA2F,EAAEI,oBAAoB,mCAAmC,EAAEN,YAAY,eAAe,CAAC;AACplB","ignoreList":[0]}}, - {"offset": {"line": 268, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-config.ts"],"sourcesContent":["export const VALID_LOADERS = [\n 'default',\n 'imgix',\n 'cloudinary',\n 'akamai',\n 'custom',\n] as const\n\nexport type LoaderValue = (typeof VALID_LOADERS)[number]\n\nexport type ImageLoaderProps = {\n src: string\n width: number\n quality?: number\n}\n\nexport type ImageLoaderPropsWithConfig = ImageLoaderProps & {\n config: Readonly<ImageConfig>\n}\n\nexport type LocalPattern = {\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\nexport type RemotePattern = {\n /**\n * Must be `http` or `https`.\n */\n protocol?: 'http' | 'https'\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single subdomain.\n * Double `**` matches any number of subdomains.\n */\n hostname: string\n\n /**\n * Can be literal port such as `8080` or empty string\n * meaning no port.\n */\n port?: string\n\n /**\n * Can be literal or wildcard.\n * Single `*` matches a single path segment.\n * Double `**` matches any number of path segments.\n */\n pathname?: string\n\n /**\n * Can be literal query string such as `?v=1` or\n * empty string meaning no query string.\n */\n search?: string\n}\n\ntype ImageFormat = 'image/avif' | 'image/webp'\n\n/**\n * Image configurations\n *\n * @see [Image configuration options](https://nextjs.org/docs/api-reference/next/image#configuration-options)\n */\nexport type ImageConfigComplete = {\n /** @see [Device sizes documentation](https://nextjs.org/docs/api-reference/next/image#device-sizes) */\n deviceSizes: number[]\n\n /** @see [Image sizing documentation](https://nextjs.org/docs/app/building-your-application/optimizing/images#image-sizing) */\n imageSizes: number[]\n\n /** @see [Image loaders configuration](https://nextjs.org/docs/api-reference/next/legacy/image#loader) */\n loader: LoaderValue\n\n /** @see [Image loader configuration](https://nextjs.org/docs/app/api-reference/components/image#path) */\n path: string\n\n /** @see [Image loader configuration](https://nextjs.org/docs/api-reference/next/image#loader-configuration) */\n loaderFile: string\n\n /**\n * @deprecated Use `remotePatterns` instead.\n */\n domains: string[]\n\n /** @see [Disable static image import configuration](https://nextjs.org/docs/api-reference/next/image#disable-static-imports) */\n disableStaticImages: boolean\n\n /** @see [Cache behavior](https://nextjs.org/docs/api-reference/next/image#caching-behavior) */\n minimumCacheTTL: number\n\n /** @see [Acceptable formats](https://nextjs.org/docs/api-reference/next/image#acceptable-formats) */\n formats: ImageFormat[]\n\n /** @see [Maximum Redirects](https://nextjs.org/docs/api-reference/next/image#maximumredirects) */\n maximumRedirects: number\n\n /** @see [Maximum Response Body](https://nextjs.org/docs/api-reference/next/image#maximumresponsebody) */\n maximumResponseBody: number\n\n /** @see [Dangerously Allow Local IP](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-local-ip) */\n dangerouslyAllowLocalIP: boolean\n\n /** @see [Dangerously Allow SVG](https://nextjs.org/docs/api-reference/next/image#dangerously-allow-svg) */\n dangerouslyAllowSVG: boolean\n\n /** @see [Content Security Policy](https://nextjs.org/docs/api-reference/next/image#contentsecuritypolicy) */\n contentSecurityPolicy: string\n\n /** @see [Content Disposition Type](https://nextjs.org/docs/api-reference/next/image#contentdispositiontype) */\n contentDispositionType: 'inline' | 'attachment'\n\n /** @see [Remote Patterns](https://nextjs.org/docs/api-reference/next/image#remotepatterns) */\n remotePatterns: Array<URL | RemotePattern>\n\n /** @see [Local Patterns](https://nextjs.org/docs/api-reference/next/image#localPatterns) */\n localPatterns: LocalPattern[] | undefined\n\n /** @see [Qualities](https://nextjs.org/docs/api-reference/next/image#qualities) */\n qualities: number[] | undefined\n\n /** @see [Unoptimized](https://nextjs.org/docs/api-reference/next/image#unoptimized) */\n unoptimized: boolean\n}\n\nexport type ImageConfig = Partial<ImageConfigComplete>\n\nexport const imageConfigDefault: ImageConfigComplete = {\n deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],\n imageSizes: [32, 48, 64, 96, 128, 256, 384],\n path: '/_next/image',\n loader: 'default',\n loaderFile: '',\n /**\n * @deprecated Use `remotePatterns` instead to protect your application from malicious users.\n */\n domains: [],\n disableStaticImages: false,\n minimumCacheTTL: 14400, // 4 hours\n formats: ['image/webp'],\n maximumRedirects: 3,\n maximumResponseBody: 50_000_000, // 50 MB\n dangerouslyAllowLocalIP: false,\n dangerouslyAllowSVG: false,\n contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`,\n contentDispositionType: 'attachment',\n localPatterns: undefined, // default: allow all local images\n remotePatterns: [], // default: allow no remote images\n qualities: [75],\n unoptimized: false,\n}\n"],"names":["VALID_LOADERS","imageConfigDefault","deviceSizes","imageSizes","path","loader","loaderFile","domains","disableStaticImages","minimumCacheTTL","formats","maximumRedirects","maximumResponseBody","dangerouslyAllowLocalIP","dangerouslyAllowSVG","contentSecurityPolicy","contentDispositionType","localPatterns","undefined","remotePatterns","qualities","unoptimized"],"mappings":";;;;;;;;;;;;;;IAAaA,aAAa,EAAA;eAAbA;;IA0IAC,kBAAkB,EAAA;eAAlBA;;;AA1IN,MAAMD,gBAAgB;IAC3B;IACA;IACA;IACA;IACA;CACD;AAoIM,MAAMC,qBAA0C;IACrDC,aAAa;QAAC;QAAK;QAAK;QAAK;QAAM;QAAM;QAAM;QAAM;KAAK;IAC1DC,YAAY;QAAC;QAAI;QAAI;QAAI;QAAI;QAAK;QAAK;KAAI;IAC3CC,MAAM;IACNC,QAAQ;IACRC,YAAY;IACZ;;GAEC,GACDC,SAAS,EAAE;IACXC,qBAAqB;IACrBC,iBAAiB;IACjBC,SAAS;QAAC;KAAa;IACvBC,kBAAkB;IAClBC,qBAAqB;IACrBC,yBAAyB;IACzBC,qBAAqB;IACrBC,uBAAuB,CAAC,6CAA6C,CAAC;IACtEC,wBAAwB;IACxBC,eAAeC;IACfC,gBAAgB,EAAE;IAClBC,WAAW;QAAC;KAAG;IACfC,aAAa;AACf","ignoreList":[0]}}, - {"offset": {"line": 344, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/get-img-props.ts"],"sourcesContent":["import { warnOnce } from './utils/warn-once'\nimport { getDeploymentId } from './deployment-id'\nimport { getImageBlurSvg } from './image-blur-svg'\nimport { imageConfigDefault } from './image-config'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n ImageLoaderPropsWithConfig,\n} from './image-config'\n\nimport type { CSSProperties, JSX } from 'react'\n\nexport interface StaticImageData {\n src: string\n height: number\n width: number\n blurDataURL?: string\n blurWidth?: number\n blurHeight?: number\n}\n\nexport interface StaticRequire {\n default: StaticImageData\n}\n\nexport type StaticImport = StaticRequire | StaticImageData\n\nexport type ImageProps = Omit<\n JSX.IntrinsicElements['img'],\n 'src' | 'srcSet' | 'ref' | 'alt' | 'width' | 'height' | 'loading'\n> & {\n src: string | StaticImport\n alt: string\n width?: number | `${number}`\n height?: number | `${number}`\n fill?: boolean\n loader?: ImageLoader\n quality?: number | `${number}`\n preload?: boolean\n /**\n * @deprecated Use `preload` prop instead.\n * See https://nextjs.org/docs/app/api-reference/components/image#preload\n */\n priority?: boolean\n loading?: LoadingValue\n placeholder?: PlaceholderValue\n blurDataURL?: string\n unoptimized?: boolean\n overrideSrc?: string\n /**\n * @deprecated Use `onLoad` instead.\n * @see https://nextjs.org/docs/app/api-reference/components/image#onload\n */\n onLoadingComplete?: OnLoadingComplete\n /**\n * @deprecated Use `fill` prop instead of `layout=\"fill\"` or change import to `next/legacy/image`.\n * @see https://nextjs.org/docs/api-reference/next/legacy/image\n */\n layout?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectFit?: string\n /**\n * @deprecated Use `style` prop instead.\n */\n objectPosition?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyBoundary?: string\n /**\n * @deprecated This prop does not do anything.\n */\n lazyRoot?: string\n}\n\nexport type ImgProps = Omit<ImageProps, 'src' | 'loader'> & {\n loading: LoadingValue\n width: number | undefined\n height: number | undefined\n style: NonNullable<JSX.IntrinsicElements['img']['style']>\n sizes: string | undefined\n srcSet: string | undefined\n src: string\n}\n\nconst VALID_LOADING_VALUES = ['lazy', 'eager', undefined] as const\n\n// Object-fit values that are not valid background-size values\nconst INVALID_BACKGROUND_SIZE_VALUES = [\n '-moz-initial',\n 'fill',\n 'none',\n 'scale-down',\n undefined,\n]\ntype LoadingValue = (typeof VALID_LOADING_VALUES)[number]\ntype ImageConfig = ImageConfigComplete & {\n allSizes: number[]\n output?: 'standalone' | 'export'\n}\n\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\n// Do not export - this is an internal type only\n// because `next.config.js` is only meant for the\n// built-in loaders, not for a custom loader() prop.\ntype ImageLoaderWithConfig = (p: ImageLoaderPropsWithConfig) => string\n\nexport type PlaceholderValue = 'blur' | 'empty' | `data:image/${string}`\nexport type OnLoad = React.ReactEventHandler<HTMLImageElement> | undefined\nexport type OnLoadingComplete = (img: HTMLImageElement) => void\n\nexport type PlaceholderStyle = Partial<\n Pick<\n CSSProperties,\n | 'backgroundSize'\n | 'backgroundPosition'\n | 'backgroundRepeat'\n | 'backgroundImage'\n >\n>\n\nfunction isStaticRequire(\n src: StaticRequire | StaticImageData\n): src is StaticRequire {\n return (src as StaticRequire).default !== undefined\n}\n\nfunction isStaticImageData(\n src: StaticRequire | StaticImageData\n): src is StaticImageData {\n return (src as StaticImageData).src !== undefined\n}\n\nfunction isStaticImport(src: string | StaticImport): src is StaticImport {\n return (\n !!src &&\n typeof src === 'object' &&\n (isStaticRequire(src as StaticImport) ||\n isStaticImageData(src as StaticImport))\n )\n}\n\nconst allImgs = new Map<\n string,\n { src: string; loading: LoadingValue; placeholder: PlaceholderValue }\n>()\nlet perfObserver: PerformanceObserver | undefined\n\nfunction getInt(x: unknown): number | undefined {\n if (typeof x === 'undefined') {\n return x\n }\n if (typeof x === 'number') {\n return Number.isFinite(x) ? x : NaN\n }\n if (typeof x === 'string' && /^[0-9]+$/.test(x)) {\n return parseInt(x, 10)\n }\n return NaN\n}\n\nfunction getWidths(\n { deviceSizes, allSizes }: ImageConfig,\n width: number | undefined,\n sizes: string | undefined\n): { widths: number[]; kind: 'w' | 'x' } {\n if (sizes) {\n // Find all the \"vw\" percent sizes used in the sizes prop\n const viewportWidthRe = /(^|\\s)(1?\\d?\\d)vw/g\n const percentSizes = []\n for (let match; (match = viewportWidthRe.exec(sizes)); match) {\n percentSizes.push(parseInt(match[2]))\n }\n if (percentSizes.length) {\n const smallestRatio = Math.min(...percentSizes) * 0.01\n return {\n widths: allSizes.filter((s) => s >= deviceSizes[0] * smallestRatio),\n kind: 'w',\n }\n }\n return { widths: allSizes, kind: 'w' }\n }\n if (typeof width !== 'number') {\n return { widths: deviceSizes, kind: 'w' }\n }\n\n const widths = [\n ...new Set(\n // > This means that most OLED screens that say they are 3x resolution,\n // > are actually 3x in the green color, but only 1.5x in the red and\n // > blue colors. Showing a 3x resolution image in the app vs a 2x\n // > resolution image will be visually the same, though the 3x image\n // > takes significantly more data. Even true 3x resolution screens are\n // > wasteful as the human eye cannot see that level of detail without\n // > something like a magnifying glass.\n // https://blog.twitter.com/engineering/en_us/topics/infrastructure/2019/capping-image-fidelity-on-ultra-high-resolution-devices.html\n [width, width * 2 /*, width * 3*/].map(\n (w) => allSizes.find((p) => p >= w) || allSizes[allSizes.length - 1]\n )\n ),\n ]\n return { widths, kind: 'x' }\n}\n\ntype GenImgAttrsData = {\n config: ImageConfig\n src: string\n unoptimized: boolean\n loader: ImageLoaderWithConfig\n width?: number\n quality?: number\n sizes?: string\n}\n\ntype GenImgAttrsResult = {\n src: string\n srcSet: string | undefined\n sizes: string | undefined\n}\n\nfunction generateImgAttrs({\n config,\n src,\n unoptimized,\n width,\n quality,\n sizes,\n loader,\n}: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n const deploymentId = getDeploymentId()\n if (src.startsWith('/') && !src.startsWith('//') && deploymentId) {\n const sep = src.includes('?') ? '&' : '?'\n src = `${src}${sep}dpl=${deploymentId}`\n }\n return { src, srcSet: undefined, sizes: undefined }\n }\n\n const { widths, kind } = getWidths(config, width, sizes)\n const last = widths.length - 1\n\n return {\n sizes: !sizes && kind === 'w' ? '100vw' : sizes,\n srcSet: widths\n .map(\n (w, i) =>\n `${loader({ config, src, quality, width: w })} ${\n kind === 'w' ? w : i + 1\n }${kind}`\n )\n .join(', '),\n\n // It's intended to keep `src` the last attribute because React updates\n // attributes in order. If we keep `src` the first one, Safari will\n // immediately start to fetch `src`, before `sizes` and `srcSet` are even\n // updated by React. That causes multiple unnecessary requests if `srcSet`\n // and `sizes` are defined.\n // This bug cannot be reproduced in Chrome or Firefox.\n src: loader({ config, src, quality, width: widths[last] }),\n }\n}\n\n/**\n * A shared function, used on both client and server, to generate the props for <img>.\n */\nexport function getImgProps(\n {\n src,\n sizes,\n unoptimized = false,\n priority = false,\n preload = false,\n loading,\n className,\n quality,\n width,\n height,\n fill = false,\n style,\n overrideSrc,\n onLoad,\n onLoadingComplete,\n placeholder = 'empty',\n blurDataURL,\n fetchPriority,\n decoding = 'async',\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n ...rest\n }: ImageProps,\n _state: {\n defaultLoader: ImageLoaderWithConfig\n imgConf: ImageConfigComplete\n showAltText?: boolean\n blurComplete?: boolean\n }\n): {\n props: ImgProps\n meta: {\n unoptimized: boolean\n preload: boolean\n placeholder: NonNullable<ImageProps['placeholder']>\n fill: boolean\n }\n} {\n const { imgConf, showAltText, blurComplete, defaultLoader } = _state\n let config: ImageConfig\n let c = imgConf || imageConfigDefault\n if ('allSizes' in c) {\n config = c as ImageConfig\n } else {\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n config = { ...c, allSizes, deviceSizes, qualities }\n }\n\n if (typeof defaultLoader === 'undefined') {\n throw new Error(\n 'images.loaderFile detected but the file is missing default export.\\nRead more: https://nextjs.org/docs/messages/invalid-images-config'\n )\n }\n let loader: ImageLoaderWithConfig = rest.loader || defaultLoader\n\n // Remove property so it's not spread on <img> element\n delete rest.loader\n delete (rest as any).srcSet\n\n // This special value indicates that the user\n // didn't define a \"loader\" prop or \"loader\" config.\n const isDefaultLoader = '__next_img_default' in loader\n\n if (isDefaultLoader) {\n if (config.loader === 'custom') {\n throw new Error(\n `Image with src \"${src}\" is missing \"loader\" prop.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader`\n )\n }\n } else {\n // The user defined a \"loader\" prop or config.\n // Since the config object is internal only, we\n // must not pass it to the user-defined \"loader\".\n const customImageLoader = loader as ImageLoader\n loader = (obj) => {\n const { config: _, ...opts } = obj\n return customImageLoader(opts)\n }\n }\n\n if (layout) {\n if (layout === 'fill') {\n fill = true\n }\n const layoutToStyle: Record<string, Record<string, string> | undefined> = {\n intrinsic: { maxWidth: '100%', height: 'auto' },\n responsive: { width: '100%', height: 'auto' },\n }\n const layoutToSizes: Record<string, string | undefined> = {\n responsive: '100vw',\n fill: '100vw',\n }\n const layoutStyle = layoutToStyle[layout]\n if (layoutStyle) {\n style = { ...style, ...layoutStyle }\n }\n const layoutSizes = layoutToSizes[layout]\n if (layoutSizes && !sizes) {\n sizes = layoutSizes\n }\n }\n\n let staticSrc = ''\n let widthInt = getInt(width)\n let heightInt = getInt(height)\n let blurWidth: number | undefined\n let blurHeight: number | undefined\n if (isStaticImport(src)) {\n const staticImageData = isStaticRequire(src) ? src.default : src\n\n if (!staticImageData.src) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include src. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n if (!staticImageData.height || !staticImageData.width) {\n throw new Error(\n `An object should only be passed to the image component src parameter if it comes from a static image import. It must include height and width. Received ${JSON.stringify(\n staticImageData\n )}`\n )\n }\n\n blurWidth = staticImageData.blurWidth\n blurHeight = staticImageData.blurHeight\n blurDataURL = blurDataURL || staticImageData.blurDataURL\n staticSrc = staticImageData.src\n\n if (!fill) {\n if (!widthInt && !heightInt) {\n widthInt = staticImageData.width\n heightInt = staticImageData.height\n } else if (widthInt && !heightInt) {\n const ratio = widthInt / staticImageData.width\n heightInt = Math.round(staticImageData.height * ratio)\n } else if (!widthInt && heightInt) {\n const ratio = heightInt / staticImageData.height\n widthInt = Math.round(staticImageData.width * ratio)\n }\n }\n }\n src = typeof src === 'string' ? src : staticSrc\n\n let isLazy =\n !priority &&\n !preload &&\n (loading === 'lazy' || typeof loading === 'undefined')\n if (!src || src.startsWith('data:') || src.startsWith('blob:')) {\n // https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/Data_URIs\n unoptimized = true\n isLazy = false\n }\n if (config.unoptimized) {\n unoptimized = true\n }\n if (\n isDefaultLoader &&\n !config.dangerouslyAllowSVG &&\n src.split('?', 1)[0].endsWith('.svg')\n ) {\n // Special case to make svg serve as-is to avoid proxying\n // through the built-in Image Optimization API.\n unoptimized = true\n }\n\n const qualityInt = getInt(quality)\n\n if (process.env.NODE_ENV !== 'production') {\n if (config.output === 'export' && isDefaultLoader && !unoptimized) {\n throw new Error(\n `Image Optimization using the default loader is not compatible with \\`{ output: 'export' }\\`.\n Possible solutions:\n - Remove \\`{ output: 'export' }\\` and run \"next start\" to run server mode including the Image Optimization API.\n - Configure \\`{ images: { unoptimized: true } }\\` in \\`next.config.js\\` to disable the Image Optimization API.\n Read more: https://nextjs.org/docs/messages/export-image-api`\n )\n }\n if (!src) {\n // React doesn't show the stack trace and there's\n // no `src` to help identify which image, so we\n // instead console.error(ref) during mount.\n unoptimized = true\n } else {\n if (fill) {\n if (width) {\n throw new Error(\n `Image with src \"${src}\" has both \"width\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (height) {\n throw new Error(\n `Image with src \"${src}\" has both \"height\" and \"fill\" properties. Only one should be used.`\n )\n }\n if (style?.position && style.position !== 'absolute') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.position\" properties. Images with \"fill\" always use position absolute - it cannot be modified.`\n )\n }\n if (style?.width && style.width !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.width\" properties. Images with \"fill\" always use width 100% - it cannot be modified.`\n )\n }\n if (style?.height && style.height !== '100%') {\n throw new Error(\n `Image with src \"${src}\" has both \"fill\" and \"style.height\" properties. Images with \"fill\" always use height 100% - it cannot be modified.`\n )\n }\n } else {\n if (typeof widthInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"width\" property.`\n )\n } else if (isNaN(widthInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"width\" property. Expected a numeric value in pixels but received \"${width}\".`\n )\n }\n if (typeof heightInt === 'undefined') {\n throw new Error(\n `Image with src \"${src}\" is missing required \"height\" property.`\n )\n } else if (isNaN(heightInt)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"height\" property. Expected a numeric value in pixels but received \"${height}\".`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/^[\\x00-\\x20]/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot start with a space or control character. Use src.trimStart() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n // eslint-disable-next-line no-control-regex\n if (/[\\x00-\\x20]$/.test(src)) {\n throw new Error(\n `Image with src \"${src}\" cannot end with a space or control character. Use src.trimEnd() to remove it or encodeURIComponent(src) to keep it.`\n )\n }\n }\n }\n if (!VALID_LOADING_VALUES.includes(loading)) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"loading\" property. Provided \"${loading}\" should be one of ${VALID_LOADING_VALUES.map(\n String\n ).join(',')}.`\n )\n }\n if (priority && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"priority\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && loading === 'lazy') {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"loading='lazy'\" properties. Only one should be used.`\n )\n }\n if (preload && priority) {\n throw new Error(\n `Image with src \"${src}\" has both \"preload\" and \"priority\" properties. Only \"preload\" should be used.`\n )\n }\n if (\n placeholder !== 'empty' &&\n placeholder !== 'blur' &&\n !placeholder.startsWith('data:image/')\n ) {\n throw new Error(\n `Image with src \"${src}\" has invalid \"placeholder\" property \"${placeholder}\".`\n )\n }\n if (placeholder !== 'empty') {\n if (widthInt && heightInt && widthInt * heightInt < 1600) {\n warnOnce(\n `Image with src \"${src}\" is smaller than 40x40. Consider removing the \"placeholder\" property to improve performance.`\n )\n }\n }\n if (\n qualityInt &&\n config.qualities &&\n !config.qualities.includes(qualityInt)\n ) {\n warnOnce(\n `Image with src \"${src}\" is using quality \"${qualityInt}\" which is not configured in images.qualities [${config.qualities.join(', ')}]. Please update your config to [${[...config.qualities, qualityInt].sort().join(', ')}].` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-qualities`\n )\n }\n if (placeholder === 'blur' && !blurDataURL) {\n const VALID_BLUR_EXT = ['jpeg', 'png', 'webp', 'avif'] // should match next-image-loader\n\n throw new Error(\n `Image with src \"${src}\" has \"placeholder='blur'\" property but is missing the \"blurDataURL\" property.\n Possible solutions:\n - Add a \"blurDataURL\" property, the contents should be a small Data URL to represent the image\n - Change the \"src\" property to a static import with one of the supported file types: ${VALID_BLUR_EXT.join(\n ','\n )} (animated images not supported)\n - Remove the \"placeholder\" property, effectively no blur effect\n Read more: https://nextjs.org/docs/messages/placeholder-blur-data-url`\n )\n }\n if ('ref' in rest) {\n warnOnce(\n `Image with src \"${src}\" is using unsupported \"ref\" property. Consider using the \"onLoad\" property instead.`\n )\n }\n\n if (!unoptimized && !isDefaultLoader) {\n const urlStr = loader({\n config,\n src,\n width: widthInt || 400,\n quality: qualityInt || 75,\n })\n let url: URL | undefined\n try {\n url = new URL(urlStr)\n } catch (err) {}\n if (urlStr === src || (url && url.pathname === src && !url.search)) {\n warnOnce(\n `Image with src \"${src}\" has a \"loader\" property that does not implement width. Please implement it or use the \"unoptimized\" property instead.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-missing-loader-width`\n )\n }\n }\n\n if (onLoadingComplete) {\n warnOnce(\n `Image with src \"${src}\" is using deprecated \"onLoadingComplete\" property. Please use the \"onLoad\" property instead.`\n )\n }\n\n for (const [legacyKey, legacyValue] of Object.entries({\n layout,\n objectFit,\n objectPosition,\n lazyBoundary,\n lazyRoot,\n })) {\n if (legacyValue) {\n warnOnce(\n `Image with src \"${src}\" has legacy prop \"${legacyKey}\". Did you forget to run the codemod?` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-upgrade-to-13`\n )\n }\n }\n\n if (\n typeof window !== 'undefined' &&\n !perfObserver &&\n window.PerformanceObserver\n ) {\n perfObserver = new PerformanceObserver((entryList) => {\n for (const entry of entryList.getEntries()) {\n // @ts-ignore - missing \"LargestContentfulPaint\" class with \"element\" prop\n const imgSrc = entry?.element?.src || ''\n const lcpImage = allImgs.get(imgSrc)\n if (\n lcpImage &&\n lcpImage.loading === 'lazy' &&\n lcpImage.placeholder === 'empty' &&\n !lcpImage.src.startsWith('data:') &&\n !lcpImage.src.startsWith('blob:')\n ) {\n // https://web.dev/lcp/#measure-lcp-in-javascript\n warnOnce(\n `Image with src \"${lcpImage.src}\" was detected as the Largest Contentful Paint (LCP). Please add the \\`loading=\"eager\"\\` property if this image is above the fold.` +\n `\\nRead more: https://nextjs.org/docs/app/api-reference/components/image#loading`\n )\n }\n }\n })\n try {\n perfObserver.observe({\n type: 'largest-contentful-paint',\n buffered: true,\n })\n } catch (err) {\n // Log error but don't crash the app\n console.error(err)\n }\n }\n }\n const imgStyle = Object.assign(\n fill\n ? {\n position: 'absolute',\n height: '100%',\n width: '100%',\n left: 0,\n top: 0,\n right: 0,\n bottom: 0,\n objectFit,\n objectPosition,\n }\n : {},\n showAltText ? {} : { color: 'transparent' },\n style\n )\n\n const backgroundImage =\n !blurComplete && placeholder !== 'empty'\n ? placeholder === 'blur'\n ? `url(\"data:image/svg+xml;charset=utf-8,${getImageBlurSvg({\n widthInt,\n heightInt,\n blurWidth,\n blurHeight,\n blurDataURL: blurDataURL || '', // assume not undefined\n objectFit: imgStyle.objectFit,\n })}\")`\n : `url(\"${placeholder}\")` // assume `data:image/`\n : null\n\n const backgroundSize = !INVALID_BACKGROUND_SIZE_VALUES.includes(\n imgStyle.objectFit\n )\n ? imgStyle.objectFit\n : imgStyle.objectFit === 'fill'\n ? '100% 100%' // the background-size equivalent of `fill`\n : 'cover'\n\n let placeholderStyle: PlaceholderStyle = backgroundImage\n ? {\n backgroundSize,\n backgroundPosition: imgStyle.objectPosition || '50% 50%',\n backgroundRepeat: 'no-repeat',\n backgroundImage,\n }\n : {}\n\n if (process.env.NODE_ENV === 'development') {\n if (\n placeholderStyle.backgroundImage &&\n placeholder === 'blur' &&\n blurDataURL?.startsWith('/')\n ) {\n // During `next dev`, we don't want to generate blur placeholders with webpack\n // because it can delay starting the dev server. Instead, `next-image-loader.js`\n // will inline a special url to lazily generate the blur placeholder at request time.\n placeholderStyle.backgroundImage = `url(\"${blurDataURL}\")`\n }\n }\n\n const imgAttributes = generateImgAttrs({\n config,\n src,\n unoptimized,\n width: widthInt,\n quality: qualityInt,\n sizes,\n loader,\n })\n\n const loadingFinal = isLazy ? 'lazy' : loading\n\n if (process.env.NODE_ENV !== 'production') {\n if (typeof window !== 'undefined') {\n let fullUrl: URL\n try {\n fullUrl = new URL(imgAttributes.src)\n } catch (e) {\n fullUrl = new URL(imgAttributes.src, window.location.href)\n }\n allImgs.set(fullUrl.href, { src, loading: loadingFinal, placeholder })\n }\n }\n\n const props: ImgProps = {\n ...rest,\n loading: loadingFinal,\n fetchPriority,\n width: widthInt,\n height: heightInt,\n decoding,\n className,\n style: { ...imgStyle, ...placeholderStyle },\n sizes: imgAttributes.sizes,\n srcSet: imgAttributes.srcSet,\n src: overrideSrc || imgAttributes.src,\n }\n const meta = { unoptimized, preload: preload || priority, placeholder, fill }\n return { props, meta }\n}\n"],"names":["getImgProps","VALID_LOADING_VALUES","undefined","INVALID_BACKGROUND_SIZE_VALUES","isStaticRequire","src","default","isStaticImageData","isStaticImport","allImgs","Map","perfObserver","getInt","x","Number","isFinite","NaN","test","parseInt","getWidths","deviceSizes","allSizes","width","sizes","viewportWidthRe","percentSizes","match","exec","push","length","smallestRatio","Math","min","widths","filter","s","kind","Set","map","w","find","p","generateImgAttrs","config","unoptimized","quality","loader","deploymentId","getDeploymentId","startsWith","sep","includes","srcSet","last","i","join","priority","preload","loading","className","height","fill","style","overrideSrc","onLoad","onLoadingComplete","placeholder","blurDataURL","fetchPriority","decoding","layout","objectFit","objectPosition","lazyBoundary","lazyRoot","rest","_state","imgConf","showAltText","blurComplete","defaultLoader","c","imageConfigDefault","imageSizes","sort","a","b","qualities","Error","isDefaultLoader","customImageLoader","obj","_","opts","layoutToStyle","intrinsic","maxWidth","responsive","layoutToSizes","layoutStyle","layoutSizes","staticSrc","widthInt","heightInt","blurWidth","blurHeight","staticImageData","JSON","stringify","ratio","round","isLazy","dangerouslyAllowSVG","split","endsWith","qualityInt","process","env","NODE_ENV","output","position","isNaN","String","warnOnce","VALID_BLUR_EXT","urlStr","url","URL","err","pathname","search","legacyKey","legacyValue","Object","entries","window","PerformanceObserver","entryList","entry","getEntries","imgSrc","element","lcpImage","get","observe","type","buffered","console","error","imgStyle","assign","left","top","right","bottom","color","backgroundImage","getImageBlurSvg","backgroundSize","placeholderStyle","backgroundPosition","backgroundRepeat","imgAttributes","loadingFinal","fullUrl","e","location","href","set","props","meta"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 925, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-config-context.shared-runtime.ts"],"sourcesContent":["import React from 'react'\nimport type { ImageConfigComplete } from './image-config'\nimport { imageConfigDefault } from './image-config'\n\nexport const ImageConfigContext =\n React.createContext<ImageConfigComplete>(imageConfigDefault)\n\nif (process.env.NODE_ENV !== 'production') {\n ImageConfigContext.displayName = 'ImageConfigContext'\n}\n"],"names":["ImageConfigContext","React","createContext","imageConfigDefault","process","env","NODE_ENV","displayName"],"mappings":"AAOII,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BAHhBN,sBAAAA;;;eAAAA;;;;gEAJK;6BAEiB;AAE5B,MAAMA,qBACXC,OAAAA,OAAK,CAACC,aAAa,CAAsBC,aAAAA,kBAAkB;AAE7D,wCAA2C;IACzCH,mBAAmBO,WAAW,GAAG;AACnC","ignoreList":[0]}}, - {"offset": {"line": 947, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router-context.shared-runtime.ts"],"sourcesContent":["import React from 'react'\nimport type { NextRouter } from './router/router'\n\nexport const RouterContext = React.createContext<NextRouter | null>(null)\n\nif (process.env.NODE_ENV !== 'production') {\n RouterContext.displayName = 'RouterContext'\n}\n"],"names":["RouterContext","React","createContext","process","env","NODE_ENV","displayName"],"mappings":"AAKIG,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BAFhBL,iBAAAA;;;eAAAA;;;;gEAHK;AAGX,MAAMA,gBAAgBC,OAAAA,OAAK,CAACC,aAAa,CAAoB;AAEpE,wCAA2C;IACzCF,cAAcM,WAAW,GAAG;AAC9B","ignoreList":[0]}}, - {"offset": {"line": 968, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/find-closest-quality.ts"],"sourcesContent":["import type { NextConfig } from '../../server/config-shared'\n\n/**\n * Find the closest matching `quality` in the list of `config.qualities`\n * @param quality the quality prop passed to the image component\n * @param config the \"images\" configuration from next.config.js\n * @returns the closest matching quality value\n */\nexport function findClosestQuality(\n quality: number | undefined,\n config: NextConfig['images'] | undefined\n): number {\n const q = quality || 75\n if (!config?.qualities?.length) {\n return q\n }\n return config.qualities.reduce(\n (prev, cur) => (Math.abs(cur - q) < Math.abs(prev - q) ? cur : prev),\n 0\n )\n}\n"],"names":["findClosestQuality","quality","config","q","qualities","length","reduce","prev","cur","Math","abs"],"mappings":";;;+BAQgBA,sBAAAA;;;eAAAA;;;AAAT,SAASA,mBACdC,OAA2B,EAC3BC,MAAwC;IAExC,MAAMC,IAAIF,WAAW;IACrB,IAAI,CAACC,QAAQE,WAAWC,QAAQ;QAC9B,OAAOF;IACT;IACA,OAAOD,OAAOE,SAAS,CAACE,MAAM,CAC5B,CAACC,MAAMC,MAASC,KAAKC,GAAG,CAACF,MAAML,KAAKM,KAAKC,GAAG,CAACH,OAAOJ,KAAKK,MAAMD,MAC/D;AAEJ","ignoreList":[0]}}, - {"offset": {"line": 987, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/picomatch/index.js"],"sourcesContent":["(()=>{\"use strict\";var t={170:(t,e,u)=>{const n=u(510);const isWindows=()=>{if(typeof navigator!==\"undefined\"&&navigator.platform){const t=navigator.platform.toLowerCase();return t===\"win32\"||t===\"windows\"}if(typeof process!==\"undefined\"&&process.platform){return process.platform===\"win32\"}return false};function picomatch(t,e,u=false){if(e&&(e.windows===null||e.windows===undefined)){e={...e,windows:isWindows()}}return n(t,e,u)}Object.assign(picomatch,n);t.exports=picomatch},154:t=>{const e=\"\\\\\\\\/\";const u=`[^${e}]`;const n=\"\\\\.\";const o=\"\\\\+\";const s=\"\\\\?\";const r=\"\\\\/\";const a=\"(?=.)\";const i=\"[^/]\";const c=`(?:${r}|$)`;const p=`(?:^|${r})`;const l=`${n}{1,2}${c}`;const f=`(?!${n})`;const A=`(?!${p}${l})`;const _=`(?!${n}{0,1}${c})`;const R=`(?!${l})`;const E=`[^.${r}]`;const h=`${i}*?`;const g=\"/\";const b={DOT_LITERAL:n,PLUS_LITERAL:o,QMARK_LITERAL:s,SLASH_LITERAL:r,ONE_CHAR:a,QMARK:i,END_ANCHOR:c,DOTS_SLASH:l,NO_DOT:f,NO_DOTS:A,NO_DOT_SLASH:_,NO_DOTS_SLASH:R,QMARK_NO_DOT:E,STAR:h,START_ANCHOR:p,SEP:g};const C={...b,SLASH_LITERAL:`[${e}]`,QMARK:u,STAR:`${u}*?`,DOTS_SLASH:`${n}{1,2}(?:[${e}]|$)`,NO_DOT:`(?!${n})`,NO_DOTS:`(?!(?:^|[${e}])${n}{1,2}(?:[${e}]|$))`,NO_DOT_SLASH:`(?!${n}{0,1}(?:[${e}]|$))`,NO_DOTS_SLASH:`(?!${n}{1,2}(?:[${e}]|$))`,QMARK_NO_DOT:`[^.${e}]`,START_ANCHOR:`(?:^|[${e}])`,END_ANCHOR:`(?:[${e}]|$)`,SEP:\"\\\\\"};const y={alnum:\"a-zA-Z0-9\",alpha:\"a-zA-Z\",ascii:\"\\\\x00-\\\\x7F\",blank:\" \\\\t\",cntrl:\"\\\\x00-\\\\x1F\\\\x7F\",digit:\"0-9\",graph:\"\\\\x21-\\\\x7E\",lower:\"a-z\",print:\"\\\\x20-\\\\x7E \",punct:\"\\\\-!\\\"#$%&'()\\\\*+,./:;<=>?@[\\\\]^_`{|}~\",space:\" \\\\t\\\\r\\\\n\\\\v\\\\f\",upper:\"A-Z\",word:\"A-Za-z0-9_\",xdigit:\"A-Fa-f0-9\"};t.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:y,REGEX_BACKSLASH:/\\\\(?![*+?^${}(|)[\\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\\].,$*+?^{}()|\\\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\\\?)((\\W)(\\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\\[.*?[^\\\\]\\]|\\\\(?=.))/g,REPLACEMENTS:{\"***\":\"*\",\"**/**\":\"**\",\"**/**/**\":\"**\"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,extglobChars(t){return{\"!\":{type:\"negate\",open:\"(?:(?!(?:\",close:`))${t.STAR})`},\"?\":{type:\"qmark\",open:\"(?:\",close:\")?\"},\"+\":{type:\"plus\",open:\"(?:\",close:\")+\"},\"*\":{type:\"star\",open:\"(?:\",close:\")*\"},\"@\":{type:\"at\",open:\"(?:\",close:\")\"}}},globChars(t){return t===true?C:b}}},697:(t,e,u)=>{const n=u(154);const o=u(96);const{MAX_LENGTH:s,POSIX_REGEX_SOURCE:r,REGEX_NON_SPECIAL_CHARS:a,REGEX_SPECIAL_CHARS_BACKREF:i,REPLACEMENTS:c}=n;const expandRange=(t,e)=>{if(typeof e.expandRange===\"function\"){return e.expandRange(...t,e)}t.sort();const u=`[${t.join(\"-\")}]`;try{new RegExp(u)}catch(e){return t.map((t=>o.escapeRegex(t))).join(\"..\")}return u};const syntaxError=(t,e)=>`Missing ${t}: \"${e}\" - use \"\\\\\\\\${e}\" to match literal characters`;const parse=(t,e)=>{if(typeof t!==\"string\"){throw new TypeError(\"Expected a string\")}t=c[t]||t;const u={...e};const p=typeof u.maxLength===\"number\"?Math.min(s,u.maxLength):s;let l=t.length;if(l>p){throw new SyntaxError(`Input length: ${l}, exceeds maximum allowed length: ${p}`)}const f={type:\"bos\",value:\"\",output:u.prepend||\"\"};const A=[f];const _=u.capture?\"\":\"?:\";const R=n.globChars(u.windows);const E=n.extglobChars(R);const{DOT_LITERAL:h,PLUS_LITERAL:g,SLASH_LITERAL:b,ONE_CHAR:C,DOTS_SLASH:y,NO_DOT:$,NO_DOT_SLASH:x,NO_DOTS_SLASH:S,QMARK:H,QMARK_NO_DOT:v,STAR:d,START_ANCHOR:L}=R;const globstar=t=>`(${_}(?:(?!${L}${t.dot?y:h}).)*?)`;const T=u.dot?\"\":$;const O=u.dot?H:v;let k=u.bash===true?globstar(u):d;if(u.capture){k=`(${k})`}if(typeof u.noext===\"boolean\"){u.noextglob=u.noext}const m={input:t,index:-1,start:0,dot:u.dot===true,consumed:\"\",output:\"\",prefix:\"\",backtrack:false,negated:false,brackets:0,braces:0,parens:0,quotes:0,globstar:false,tokens:A};t=o.removePrefix(t,m);l=t.length;const w=[];const N=[];const I=[];let B=f;let G;const eos=()=>m.index===l-1;const D=m.peek=(e=1)=>t[m.index+e];const M=m.advance=()=>t[++m.index]||\"\";const remaining=()=>t.slice(m.index+1);const consume=(t=\"\",e=0)=>{m.consumed+=t;m.index+=e};const append=t=>{m.output+=t.output!=null?t.output:t.value;consume(t.value)};const negate=()=>{let t=1;while(D()===\"!\"&&(D(2)!==\"(\"||D(3)===\"?\")){M();m.start++;t++}if(t%2===0){return false}m.negated=true;m.start++;return true};const increment=t=>{m[t]++;I.push(t)};const decrement=t=>{m[t]--;I.pop()};const push=t=>{if(B.type===\"globstar\"){const e=m.braces>0&&(t.type===\"comma\"||t.type===\"brace\");const u=t.extglob===true||w.length&&(t.type===\"pipe\"||t.type===\"paren\");if(t.type!==\"slash\"&&t.type!==\"paren\"&&!e&&!u){m.output=m.output.slice(0,-B.output.length);B.type=\"star\";B.value=\"*\";B.output=k;m.output+=B.output}}if(w.length&&t.type!==\"paren\"){w[w.length-1].inner+=t.value}if(t.value||t.output)append(t);if(B&&B.type===\"text\"&&t.type===\"text\"){B.output=(B.output||B.value)+t.value;B.value+=t.value;return}t.prev=B;A.push(t);B=t};const extglobOpen=(t,e)=>{const n={...E[e],conditions:1,inner:\"\"};n.prev=B;n.parens=m.parens;n.output=m.output;const o=(u.capture?\"(\":\"\")+n.open;increment(\"parens\");push({type:t,value:e,output:m.output?\"\":C});push({type:\"paren\",extglob:true,value:M(),output:o});w.push(n)};const extglobClose=t=>{let n=t.close+(u.capture?\")\":\"\");let o;if(t.type===\"negate\"){let s=k;if(t.inner&&t.inner.length>1&&t.inner.includes(\"/\")){s=globstar(u)}if(s!==k||eos()||/^\\)+$/.test(remaining())){n=t.close=`)$))${s}`}if(t.inner.includes(\"*\")&&(o=remaining())&&/^\\.[^\\\\/.]+$/.test(o)){const u=parse(o,{...e,fastpaths:false}).output;n=t.close=`)${u})${s})`}if(t.prev.type===\"bos\"){m.negatedExtglob=true}}push({type:\"paren\",extglob:true,value:G,output:n});decrement(\"parens\")};if(u.fastpaths!==false&&!/(^[*!]|[/()[\\]{}\"])/.test(t)){let n=false;let s=t.replace(i,((t,e,u,o,s,r)=>{if(o===\"\\\\\"){n=true;return t}if(o===\"?\"){if(e){return e+o+(s?H.repeat(s.length):\"\")}if(r===0){return O+(s?H.repeat(s.length):\"\")}return H.repeat(u.length)}if(o===\".\"){return h.repeat(u.length)}if(o===\"*\"){if(e){return e+o+(s?k:\"\")}return k}return e?t:`\\\\${t}`}));if(n===true){if(u.unescape===true){s=s.replace(/\\\\/g,\"\")}else{s=s.replace(/\\\\+/g,(t=>t.length%2===0?\"\\\\\\\\\":t?\"\\\\\":\"\"))}}if(s===t&&u.contains===true){m.output=t;return m}m.output=o.wrapOutput(s,m,e);return m}while(!eos()){G=M();if(G===\"\\0\"){continue}if(G===\"\\\\\"){const t=D();if(t===\"/\"&&u.bash!==true){continue}if(t===\".\"||t===\";\"){continue}if(!t){G+=\"\\\\\";push({type:\"text\",value:G});continue}const e=/^\\\\+/.exec(remaining());let n=0;if(e&&e[0].length>2){n=e[0].length;m.index+=n;if(n%2!==0){G+=\"\\\\\"}}if(u.unescape===true){G=M()}else{G+=M()}if(m.brackets===0){push({type:\"text\",value:G});continue}}if(m.brackets>0&&(G!==\"]\"||B.value===\"[\"||B.value===\"[^\")){if(u.posix!==false&&G===\":\"){const t=B.value.slice(1);if(t.includes(\"[\")){B.posix=true;if(t.includes(\":\")){const t=B.value.lastIndexOf(\"[\");const e=B.value.slice(0,t);const u=B.value.slice(t+2);const n=r[u];if(n){B.value=e+n;m.backtrack=true;M();if(!f.output&&A.indexOf(B)===1){f.output=C}continue}}}}if(G===\"[\"&&D()!==\":\"||G===\"-\"&&D()===\"]\"){G=`\\\\${G}`}if(G===\"]\"&&(B.value===\"[\"||B.value===\"[^\")){G=`\\\\${G}`}if(u.posix===true&&G===\"!\"&&B.value===\"[\"){G=\"^\"}B.value+=G;append({value:G});continue}if(m.quotes===1&&G!=='\"'){G=o.escapeRegex(G);B.value+=G;append({value:G});continue}if(G==='\"'){m.quotes=m.quotes===1?0:1;if(u.keepQuotes===true){push({type:\"text\",value:G})}continue}if(G===\"(\"){increment(\"parens\");push({type:\"paren\",value:G});continue}if(G===\")\"){if(m.parens===0&&u.strictBrackets===true){throw new SyntaxError(syntaxError(\"opening\",\"(\"))}const t=w[w.length-1];if(t&&m.parens===t.parens+1){extglobClose(w.pop());continue}push({type:\"paren\",value:G,output:m.parens?\")\":\"\\\\)\"});decrement(\"parens\");continue}if(G===\"[\"){if(u.nobracket===true||!remaining().includes(\"]\")){if(u.nobracket!==true&&u.strictBrackets===true){throw new SyntaxError(syntaxError(\"closing\",\"]\"))}G=`\\\\${G}`}else{increment(\"brackets\")}push({type:\"bracket\",value:G});continue}if(G===\"]\"){if(u.nobracket===true||B&&B.type===\"bracket\"&&B.value.length===1){push({type:\"text\",value:G,output:`\\\\${G}`});continue}if(m.brackets===0){if(u.strictBrackets===true){throw new SyntaxError(syntaxError(\"opening\",\"[\"))}push({type:\"text\",value:G,output:`\\\\${G}`});continue}decrement(\"brackets\");const t=B.value.slice(1);if(B.posix!==true&&t[0]===\"^\"&&!t.includes(\"/\")){G=`/${G}`}B.value+=G;append({value:G});if(u.literalBrackets===false||o.hasRegexChars(t)){continue}const e=o.escapeRegex(B.value);m.output=m.output.slice(0,-B.value.length);if(u.literalBrackets===true){m.output+=e;B.value=e;continue}B.value=`(${_}${e}|${B.value})`;m.output+=B.value;continue}if(G===\"{\"&&u.nobrace!==true){increment(\"braces\");const t={type:\"brace\",value:G,output:\"(\",outputIndex:m.output.length,tokensIndex:m.tokens.length};N.push(t);push(t);continue}if(G===\"}\"){const t=N[N.length-1];if(u.nobrace===true||!t){push({type:\"text\",value:G,output:G});continue}let e=\")\";if(t.dots===true){const t=A.slice();const n=[];for(let e=t.length-1;e>=0;e--){A.pop();if(t[e].type===\"brace\"){break}if(t[e].type!==\"dots\"){n.unshift(t[e].value)}}e=expandRange(n,u);m.backtrack=true}if(t.comma!==true&&t.dots!==true){const u=m.output.slice(0,t.outputIndex);const n=m.tokens.slice(t.tokensIndex);t.value=t.output=\"\\\\{\";G=e=\"\\\\}\";m.output=u;for(const t of n){m.output+=t.output||t.value}}push({type:\"brace\",value:G,output:e});decrement(\"braces\");N.pop();continue}if(G===\"|\"){if(w.length>0){w[w.length-1].conditions++}push({type:\"text\",value:G});continue}if(G===\",\"){let t=G;const e=N[N.length-1];if(e&&I[I.length-1]===\"braces\"){e.comma=true;t=\"|\"}push({type:\"comma\",value:G,output:t});continue}if(G===\"/\"){if(B.type===\"dot\"&&m.index===m.start+1){m.start=m.index+1;m.consumed=\"\";m.output=\"\";A.pop();B=f;continue}push({type:\"slash\",value:G,output:b});continue}if(G===\".\"){if(m.braces>0&&B.type===\"dot\"){if(B.value===\".\")B.output=h;const t=N[N.length-1];B.type=\"dots\";B.output+=G;B.value+=G;t.dots=true;continue}if(m.braces+m.parens===0&&B.type!==\"bos\"&&B.type!==\"slash\"){push({type:\"text\",value:G,output:h});continue}push({type:\"dot\",value:G,output:h});continue}if(G===\"?\"){const t=B&&B.value===\"(\";if(!t&&u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){extglobOpen(\"qmark\",G);continue}if(B&&B.type===\"paren\"){const t=D();let e=G;if(B.value===\"(\"&&!/[!=<:]/.test(t)||t===\"<\"&&!/<([!=]|\\w+>)/.test(remaining())){e=`\\\\${G}`}push({type:\"text\",value:G,output:e});continue}if(u.dot!==true&&(B.type===\"slash\"||B.type===\"bos\")){push({type:\"qmark\",value:G,output:v});continue}push({type:\"qmark\",value:G,output:H});continue}if(G===\"!\"){if(u.noextglob!==true&&D()===\"(\"){if(D(2)!==\"?\"||!/[!=<:]/.test(D(3))){extglobOpen(\"negate\",G);continue}}if(u.nonegate!==true&&m.index===0){negate();continue}}if(G===\"+\"){if(u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){extglobOpen(\"plus\",G);continue}if(B&&B.value===\"(\"||u.regex===false){push({type:\"plus\",value:G,output:g});continue}if(B&&(B.type===\"bracket\"||B.type===\"paren\"||B.type===\"brace\")||m.parens>0){push({type:\"plus\",value:G});continue}push({type:\"plus\",value:g});continue}if(G===\"@\"){if(u.noextglob!==true&&D()===\"(\"&&D(2)!==\"?\"){push({type:\"at\",extglob:true,value:G,output:\"\"});continue}push({type:\"text\",value:G});continue}if(G!==\"*\"){if(G===\"$\"||G===\"^\"){G=`\\\\${G}`}const t=a.exec(remaining());if(t){G+=t[0];m.index+=t[0].length}push({type:\"text\",value:G});continue}if(B&&(B.type===\"globstar\"||B.star===true)){B.type=\"star\";B.star=true;B.value+=G;B.output=k;m.backtrack=true;m.globstar=true;consume(G);continue}let e=remaining();if(u.noextglob!==true&&/^\\([^?]/.test(e)){extglobOpen(\"star\",G);continue}if(B.type===\"star\"){if(u.noglobstar===true){consume(G);continue}const n=B.prev;const o=n.prev;const s=n.type===\"slash\"||n.type===\"bos\";const r=o&&(o.type===\"star\"||o.type===\"globstar\");if(u.bash===true&&(!s||e[0]&&e[0]!==\"/\")){push({type:\"star\",value:G,output:\"\"});continue}const a=m.braces>0&&(n.type===\"comma\"||n.type===\"brace\");const i=w.length&&(n.type===\"pipe\"||n.type===\"paren\");if(!s&&n.type!==\"paren\"&&!a&&!i){push({type:\"star\",value:G,output:\"\"});continue}while(e.slice(0,3)===\"/**\"){const u=t[m.index+4];if(u&&u!==\"/\"){break}e=e.slice(3);consume(\"/**\",3)}if(n.type===\"bos\"&&eos()){B.type=\"globstar\";B.value+=G;B.output=globstar(u);m.output=B.output;m.globstar=true;consume(G);continue}if(n.type===\"slash\"&&n.prev.type!==\"bos\"&&!r&&eos()){m.output=m.output.slice(0,-(n.output+B.output).length);n.output=`(?:${n.output}`;B.type=\"globstar\";B.output=globstar(u)+(u.strictSlashes?\")\":\"|$)\");B.value+=G;m.globstar=true;m.output+=n.output+B.output;consume(G);continue}if(n.type===\"slash\"&&n.prev.type!==\"bos\"&&e[0]===\"/\"){const t=e[1]!==void 0?\"|$\":\"\";m.output=m.output.slice(0,-(n.output+B.output).length);n.output=`(?:${n.output}`;B.type=\"globstar\";B.output=`${globstar(u)}${b}|${b}${t})`;B.value+=G;m.output+=n.output+B.output;m.globstar=true;consume(G+M());push({type:\"slash\",value:\"/\",output:\"\"});continue}if(n.type===\"bos\"&&e[0]===\"/\"){B.type=\"globstar\";B.value+=G;B.output=`(?:^|${b}|${globstar(u)}${b})`;m.output=B.output;m.globstar=true;consume(G+M());push({type:\"slash\",value:\"/\",output:\"\"});continue}m.output=m.output.slice(0,-B.output.length);B.type=\"globstar\";B.output=globstar(u);B.value+=G;m.output+=B.output;m.globstar=true;consume(G);continue}const n={type:\"star\",value:G,output:k};if(u.bash===true){n.output=\".*?\";if(B.type===\"bos\"||B.type===\"slash\"){n.output=T+n.output}push(n);continue}if(B&&(B.type===\"bracket\"||B.type===\"paren\")&&u.regex===true){n.output=G;push(n);continue}if(m.index===m.start||B.type===\"slash\"||B.type===\"dot\"){if(B.type===\"dot\"){m.output+=x;B.output+=x}else if(u.dot===true){m.output+=S;B.output+=S}else{m.output+=T;B.output+=T}if(D()!==\"*\"){m.output+=C;B.output+=C}}push(n)}while(m.brackets>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\"]\"));m.output=o.escapeLast(m.output,\"[\");decrement(\"brackets\")}while(m.parens>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\")\"));m.output=o.escapeLast(m.output,\"(\");decrement(\"parens\")}while(m.braces>0){if(u.strictBrackets===true)throw new SyntaxError(syntaxError(\"closing\",\"}\"));m.output=o.escapeLast(m.output,\"{\");decrement(\"braces\")}if(u.strictSlashes!==true&&(B.type===\"star\"||B.type===\"bracket\")){push({type:\"maybe_slash\",value:\"\",output:`${b}?`})}if(m.backtrack===true){m.output=\"\";for(const t of m.tokens){m.output+=t.output!=null?t.output:t.value;if(t.suffix){m.output+=t.suffix}}}return m};parse.fastpaths=(t,e)=>{const u={...e};const r=typeof u.maxLength===\"number\"?Math.min(s,u.maxLength):s;const a=t.length;if(a>r){throw new SyntaxError(`Input length: ${a}, exceeds maximum allowed length: ${r}`)}t=c[t]||t;const{DOT_LITERAL:i,SLASH_LITERAL:p,ONE_CHAR:l,DOTS_SLASH:f,NO_DOT:A,NO_DOTS:_,NO_DOTS_SLASH:R,STAR:E,START_ANCHOR:h}=n.globChars(u.windows);const g=u.dot?_:A;const b=u.dot?R:A;const C=u.capture?\"\":\"?:\";const y={negated:false,prefix:\"\"};let $=u.bash===true?\".*?\":E;if(u.capture){$=`(${$})`}const globstar=t=>{if(t.noglobstar===true)return $;return`(${C}(?:(?!${h}${t.dot?f:i}).)*?)`};const create=t=>{switch(t){case\"*\":return`${g}${l}${$}`;case\".*\":return`${i}${l}${$}`;case\"*.*\":return`${g}${$}${i}${l}${$}`;case\"*/*\":return`${g}${$}${p}${l}${b}${$}`;case\"**\":return g+globstar(u);case\"**/*\":return`(?:${g}${globstar(u)}${p})?${b}${l}${$}`;case\"**/*.*\":return`(?:${g}${globstar(u)}${p})?${b}${$}${i}${l}${$}`;case\"**/.*\":return`(?:${g}${globstar(u)}${p})?${i}${l}${$}`;default:{const e=/^(.*?)\\.(\\w+)$/.exec(t);if(!e)return;const u=create(e[1]);if(!u)return;return u+i+e[2]}}};const x=o.removePrefix(t,y);let S=create(x);if(S&&u.strictSlashes!==true){S+=`${p}?`}return S};t.exports=parse},510:(t,e,u)=>{const n=u(716);const o=u(697);const s=u(96);const r=u(154);const isObject=t=>t&&typeof t===\"object\"&&!Array.isArray(t);const picomatch=(t,e,u=false)=>{if(Array.isArray(t)){const n=t.map((t=>picomatch(t,e,u)));const arrayMatcher=t=>{for(const e of n){const u=e(t);if(u)return u}return false};return arrayMatcher}const n=isObject(t)&&t.tokens&&t.input;if(t===\"\"||typeof t!==\"string\"&&!n){throw new TypeError(\"Expected pattern to be a non-empty string\")}const o=e||{};const s=o.windows;const r=n?picomatch.compileRe(t,e):picomatch.makeRe(t,e,false,true);const a=r.state;delete r.state;let isIgnored=()=>false;if(o.ignore){const t={...e,ignore:null,onMatch:null,onResult:null};isIgnored=picomatch(o.ignore,t,u)}const matcher=(u,n=false)=>{const{isMatch:i,match:c,output:p}=picomatch.test(u,r,e,{glob:t,posix:s});const l={glob:t,state:a,regex:r,posix:s,input:u,output:p,match:c,isMatch:i};if(typeof o.onResult===\"function\"){o.onResult(l)}if(i===false){l.isMatch=false;return n?l:false}if(isIgnored(u)){if(typeof o.onIgnore===\"function\"){o.onIgnore(l)}l.isMatch=false;return n?l:false}if(typeof o.onMatch===\"function\"){o.onMatch(l)}return n?l:true};if(u){matcher.state=a}return matcher};picomatch.test=(t,e,u,{glob:n,posix:o}={})=>{if(typeof t!==\"string\"){throw new TypeError(\"Expected input to be a string\")}if(t===\"\"){return{isMatch:false,output:\"\"}}const r=u||{};const a=r.format||(o?s.toPosixSlashes:null);let i=t===n;let c=i&&a?a(t):t;if(i===false){c=a?a(t):t;i=c===n}if(i===false||r.capture===true){if(r.matchBase===true||r.basename===true){i=picomatch.matchBase(t,e,u,o)}else{i=e.exec(c)}}return{isMatch:Boolean(i),match:i,output:c}};picomatch.matchBase=(t,e,u)=>{const n=e instanceof RegExp?e:picomatch.makeRe(e,u);return n.test(s.basename(t))};picomatch.isMatch=(t,e,u)=>picomatch(e,u)(t);picomatch.parse=(t,e)=>{if(Array.isArray(t))return t.map((t=>picomatch.parse(t,e)));return o(t,{...e,fastpaths:false})};picomatch.scan=(t,e)=>n(t,e);picomatch.compileRe=(t,e,u=false,n=false)=>{if(u===true){return t.output}const o=e||{};const s=o.contains?\"\":\"^\";const r=o.contains?\"\":\"$\";let a=`${s}(?:${t.output})${r}`;if(t&&t.negated===true){a=`^(?!${a}).*$`}const i=picomatch.toRegex(a,e);if(n===true){i.state=t}return i};picomatch.makeRe=(t,e={},u=false,n=false)=>{if(!t||typeof t!==\"string\"){throw new TypeError(\"Expected a non-empty string\")}let s={negated:false,fastpaths:true};if(e.fastpaths!==false&&(t[0]===\".\"||t[0]===\"*\")){s.output=o.fastpaths(t,e)}if(!s.output){s=o(t,e)}return picomatch.compileRe(s,e,u,n)};picomatch.toRegex=(t,e)=>{try{const u=e||{};return new RegExp(t,u.flags||(u.nocase?\"i\":\"\"))}catch(t){if(e&&e.debug===true)throw t;return/$^/}};picomatch.constants=r;t.exports=picomatch},716:(t,e,u)=>{const n=u(96);const{CHAR_ASTERISK:o,CHAR_AT:s,CHAR_BACKWARD_SLASH:r,CHAR_COMMA:a,CHAR_DOT:i,CHAR_EXCLAMATION_MARK:c,CHAR_FORWARD_SLASH:p,CHAR_LEFT_CURLY_BRACE:l,CHAR_LEFT_PARENTHESES:f,CHAR_LEFT_SQUARE_BRACKET:A,CHAR_PLUS:_,CHAR_QUESTION_MARK:R,CHAR_RIGHT_CURLY_BRACE:E,CHAR_RIGHT_PARENTHESES:h,CHAR_RIGHT_SQUARE_BRACKET:g}=u(154);const isPathSeparator=t=>t===p||t===r;const depth=t=>{if(t.isPrefix!==true){t.depth=t.isGlobstar?Infinity:1}};const scan=(t,e)=>{const u=e||{};const b=t.length-1;const C=u.parts===true||u.scanToEnd===true;const y=[];const $=[];const x=[];let S=t;let H=-1;let v=0;let d=0;let L=false;let T=false;let O=false;let k=false;let m=false;let w=false;let N=false;let I=false;let B=false;let G=false;let D=0;let M;let P;let K={value:\"\",depth:0,isGlob:false};const eos=()=>H>=b;const peek=()=>S.charCodeAt(H+1);const advance=()=>{M=P;return S.charCodeAt(++H)};while(H<b){P=advance();let t;if(P===r){N=K.backslashes=true;P=advance();if(P===l){w=true}continue}if(w===true||P===l){D++;while(eos()!==true&&(P=advance())){if(P===r){N=K.backslashes=true;advance();continue}if(P===l){D++;continue}if(w!==true&&P===i&&(P=advance())===i){L=K.isBrace=true;O=K.isGlob=true;G=true;if(C===true){continue}break}if(w!==true&&P===a){L=K.isBrace=true;O=K.isGlob=true;G=true;if(C===true){continue}break}if(P===E){D--;if(D===0){w=false;L=K.isBrace=true;G=true;break}}}if(C===true){continue}break}if(P===p){y.push(H);$.push(K);K={value:\"\",depth:0,isGlob:false};if(G===true)continue;if(M===i&&H===v+1){v+=2;continue}d=H+1;continue}if(u.noext!==true){const t=P===_||P===s||P===o||P===R||P===c;if(t===true&&peek()===f){O=K.isGlob=true;k=K.isExtglob=true;G=true;if(P===c&&H===v){B=true}if(C===true){while(eos()!==true&&(P=advance())){if(P===r){N=K.backslashes=true;P=advance();continue}if(P===h){O=K.isGlob=true;G=true;break}}continue}break}}if(P===o){if(M===o)m=K.isGlobstar=true;O=K.isGlob=true;G=true;if(C===true){continue}break}if(P===R){O=K.isGlob=true;G=true;if(C===true){continue}break}if(P===A){while(eos()!==true&&(t=advance())){if(t===r){N=K.backslashes=true;advance();continue}if(t===g){T=K.isBracket=true;O=K.isGlob=true;G=true;break}}if(C===true){continue}break}if(u.nonegate!==true&&P===c&&H===v){I=K.negated=true;v++;continue}if(u.noparen!==true&&P===f){O=K.isGlob=true;if(C===true){while(eos()!==true&&(P=advance())){if(P===f){N=K.backslashes=true;P=advance();continue}if(P===h){G=true;break}}continue}break}if(O===true){G=true;if(C===true){continue}break}}if(u.noext===true){k=false;O=false}let U=S;let X=\"\";let F=\"\";if(v>0){X=S.slice(0,v);S=S.slice(v);d-=v}if(U&&O===true&&d>0){U=S.slice(0,d);F=S.slice(d)}else if(O===true){U=\"\";F=S}else{U=S}if(U&&U!==\"\"&&U!==\"/\"&&U!==S){if(isPathSeparator(U.charCodeAt(U.length-1))){U=U.slice(0,-1)}}if(u.unescape===true){if(F)F=n.removeBackslashes(F);if(U&&N===true){U=n.removeBackslashes(U)}}const Q={prefix:X,input:t,start:v,base:U,glob:F,isBrace:L,isBracket:T,isGlob:O,isExtglob:k,isGlobstar:m,negated:I,negatedExtglob:B};if(u.tokens===true){Q.maxDepth=0;if(!isPathSeparator(P)){$.push(K)}Q.tokens=$}if(u.parts===true||u.tokens===true){let e;for(let n=0;n<y.length;n++){const o=e?e+1:v;const s=y[n];const r=t.slice(o,s);if(u.tokens){if(n===0&&v!==0){$[n].isPrefix=true;$[n].value=X}else{$[n].value=r}depth($[n]);Q.maxDepth+=$[n].depth}if(n!==0||r!==\"\"){x.push(r)}e=s}if(e&&e+1<t.length){const n=t.slice(e+1);x.push(n);if(u.tokens){$[$.length-1].value=n;depth($[$.length-1]);Q.maxDepth+=$[$.length-1].depth}}Q.slashes=y;Q.parts=x}return Q};t.exports=scan},96:(t,e,u)=>{const{REGEX_BACKSLASH:n,REGEX_REMOVE_BACKSLASH:o,REGEX_SPECIAL_CHARS:s,REGEX_SPECIAL_CHARS_GLOBAL:r}=u(154);e.isObject=t=>t!==null&&typeof t===\"object\"&&!Array.isArray(t);e.hasRegexChars=t=>s.test(t);e.isRegexChar=t=>t.length===1&&e.hasRegexChars(t);e.escapeRegex=t=>t.replace(r,\"\\\\$1\");e.toPosixSlashes=t=>t.replace(n,\"/\");e.removeBackslashes=t=>t.replace(o,(t=>t===\"\\\\\"?\"\":t));e.escapeLast=(t,u,n)=>{const o=t.lastIndexOf(u,n);if(o===-1)return t;if(t[o-1]===\"\\\\\")return e.escapeLast(t,u,o-1);return`${t.slice(0,o)}\\\\${t.slice(o)}`};e.removePrefix=(t,e={})=>{let u=t;if(u.startsWith(\"./\")){u=u.slice(2);e.prefix=\"./\"}return u};e.wrapOutput=(t,e={},u={})=>{const n=u.contains?\"\":\"^\";const o=u.contains?\"\":\"$\";let s=`${n}(?:${t})${o}`;if(e.negated===true){s=`(?:^(?!${s}).*$)`}return s};e.basename=(t,{windows:e}={})=>{const u=t.split(e?/[\\\\/]/:\"/\");const n=u[u.length-1];if(n===\"\"){return u[u.length-2]}return n}}};var e={};function __nccwpck_require__(u){var n=e[u];if(n!==undefined){return n.exports}var o=e[u]={exports:{}};var s=true;try{t[u](o,o.exports,__nccwpck_require__);s=false}finally{if(s)delete e[u]}return o.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var u=__nccwpck_require__(170);module.exports=u})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2586, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/match-local-pattern.ts"],"sourcesContent":["import type { LocalPattern } from './image-config'\nimport { makeRe } from 'next/dist/compiled/picomatch'\n\n// Modifying this function should also modify writeImagesManifest()\nexport function matchLocalPattern(pattern: LocalPattern, url: URL): boolean {\n if (pattern.search !== undefined) {\n if (pattern.search !== url.search) {\n return false\n }\n }\n\n if (!makeRe(pattern.pathname ?? '**', { dot: true }).test(url.pathname)) {\n return false\n }\n\n return true\n}\n\nexport function hasLocalMatch(\n localPatterns: LocalPattern[] | undefined,\n urlPathAndQuery: string\n): boolean {\n if (!localPatterns) {\n // if the user didn't define \"localPatterns\", we allow all local images\n return true\n }\n const url = new URL(urlPathAndQuery, 'http://n')\n return localPatterns.some((p) => matchLocalPattern(p, url))\n}\n"],"names":["hasLocalMatch","matchLocalPattern","pattern","url","search","undefined","makeRe","pathname","dot","test","localPatterns","urlPathAndQuery","URL","some","p"],"mappings":";;;;;;;;;;;;;;IAkBgBA,aAAa,EAAA;eAAbA;;IAdAC,iBAAiB,EAAA;eAAjBA;;;2BAHO;AAGhB,SAASA,kBAAkBC,OAAqB,EAAEC,GAAQ;IAC/D,IAAID,QAAQE,MAAM,KAAKC,WAAW;QAChC,IAAIH,QAAQE,MAAM,KAAKD,IAAIC,MAAM,EAAE;YACjC,OAAO;QACT;IACF;IAEA,IAAI,CAACE,CAAAA,GAAAA,WAAAA,MAAM,EAACJ,QAAQK,QAAQ,IAAI,MAAM;QAAEC,KAAK;IAAK,GAAGC,IAAI,CAACN,IAAII,QAAQ,GAAG;QACvE,OAAO;IACT;IAEA,OAAO;AACT;AAEO,SAASP,cACdU,aAAyC,EACzCC,eAAuB;IAEvB,IAAI,CAACD,eAAe;QAClB,uEAAuE;QACvE,OAAO;IACT;IACA,MAAMP,MAAM,IAAIS,IAAID,iBAAiB;IACrC,OAAOD,cAAcG,IAAI,CAAC,CAACC,IAAMb,kBAAkBa,GAAGX;AACxD","ignoreList":[0]}}, - {"offset": {"line": 2633, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/match-remote-pattern.ts"],"sourcesContent":["import type { RemotePattern } from './image-config'\nimport { makeRe } from 'next/dist/compiled/picomatch'\n\n// Modifying this function should also modify writeImagesManifest()\nexport function matchRemotePattern(\n pattern: RemotePattern | URL,\n url: URL\n): boolean {\n if (pattern.protocol !== undefined) {\n if (pattern.protocol.replace(/:$/, '') !== url.protocol.replace(/:$/, '')) {\n return false\n }\n }\n if (pattern.port !== undefined) {\n if (pattern.port !== url.port) {\n return false\n }\n }\n\n if (pattern.hostname === undefined) {\n throw new Error(\n `Pattern should define hostname but found\\n${JSON.stringify(pattern)}`\n )\n } else {\n if (!makeRe(pattern.hostname).test(url.hostname)) {\n return false\n }\n }\n\n if (pattern.search !== undefined) {\n if (pattern.search !== url.search) {\n return false\n }\n }\n\n // Should be the same as writeImagesManifest()\n if (!makeRe(pattern.pathname ?? '**', { dot: true }).test(url.pathname)) {\n return false\n }\n\n return true\n}\n\nexport function hasRemoteMatch(\n domains: string[],\n remotePatterns: Array<RemotePattern | URL>,\n url: URL\n): boolean {\n return (\n domains.some((domain) => url.hostname === domain) ||\n remotePatterns.some((p) => matchRemotePattern(p, url))\n )\n}\n"],"names":["hasRemoteMatch","matchRemotePattern","pattern","url","protocol","undefined","replace","port","hostname","Error","JSON","stringify","makeRe","test","search","pathname","dot","domains","remotePatterns","some","domain","p"],"mappings":";;;;;;;;;;;;;;IA2CgBA,cAAc,EAAA;eAAdA;;IAvCAC,kBAAkB,EAAA;eAAlBA;;;2BAHO;AAGhB,SAASA,mBACdC,OAA4B,EAC5BC,GAAQ;IAER,IAAID,QAAQE,QAAQ,KAAKC,WAAW;QAClC,IAAIH,QAAQE,QAAQ,CAACE,OAAO,CAAC,MAAM,QAAQH,IAAIC,QAAQ,CAACE,OAAO,CAAC,MAAM,KAAK;YACzE,OAAO;QACT;IACF;IACA,IAAIJ,QAAQK,IAAI,KAAKF,WAAW;QAC9B,IAAIH,QAAQK,IAAI,KAAKJ,IAAII,IAAI,EAAE;YAC7B,OAAO;QACT;IACF;IAEA,IAAIL,QAAQM,QAAQ,KAAKH,WAAW;QAClC,MAAM,OAAA,cAEL,CAFK,IAAII,MACR,CAAC,0CAA0C,EAAEC,KAAKC,SAAS,CAACT,UAAU,GADlE,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF,OAAO;QACL,IAAI,CAACU,CAAAA,GAAAA,WAAAA,MAAM,EAACV,QAAQM,QAAQ,EAAEK,IAAI,CAACV,IAAIK,QAAQ,GAAG;YAChD,OAAO;QACT;IACF;IAEA,IAAIN,QAAQY,MAAM,KAAKT,WAAW;QAChC,IAAIH,QAAQY,MAAM,KAAKX,IAAIW,MAAM,EAAE;YACjC,OAAO;QACT;IACF;IAEA,8CAA8C;IAC9C,IAAI,CAACF,CAAAA,GAAAA,WAAAA,MAAM,EAACV,QAAQa,QAAQ,IAAI,MAAM;QAAEC,KAAK;IAAK,GAAGH,IAAI,CAACV,IAAIY,QAAQ,GAAG;QACvE,OAAO;IACT;IAEA,OAAO;AACT;AAEO,SAASf,eACdiB,OAAiB,EACjBC,cAA0C,EAC1Cf,GAAQ;IAER,OACEc,QAAQE,IAAI,CAAC,CAACC,SAAWjB,IAAIK,QAAQ,KAAKY,WAC1CF,eAAeC,IAAI,CAAC,CAACE,IAAMpB,mBAAmBoB,GAAGlB;AAErD","ignoreList":[0]}}, - {"offset": {"line": 2697, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/image-loader.ts"],"sourcesContent":["import type { ImageLoaderPropsWithConfig } from './image-config'\nimport { findClosestQuality } from './find-closest-quality'\nimport { getDeploymentId } from './deployment-id'\n\nfunction defaultLoader({\n config,\n src,\n width,\n quality,\n}: ImageLoaderPropsWithConfig): string {\n if (\n src.startsWith('/') &&\n src.includes('?') &&\n config.localPatterns?.length === 1 &&\n config.localPatterns[0].pathname === '**' &&\n config.localPatterns[0].search === ''\n ) {\n throw new Error(\n `Image with src \"${src}\" is using a query string which is not configured in images.localPatterns.` +\n `\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n\n if (process.env.NODE_ENV !== 'production') {\n const missingValues = []\n\n // these should always be provided but make sure they are\n if (!src) missingValues.push('src')\n if (!width) missingValues.push('width')\n\n if (missingValues.length > 0) {\n throw new Error(\n `Next Image Optimization requires ${missingValues.join(\n ', '\n )} to be provided. Make sure you pass them as props to the \\`next/image\\` component. Received: ${JSON.stringify(\n { src, width, quality }\n )}`\n )\n }\n\n if (src.startsWith('//')) {\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, protocol-relative URL (//) must be changed to an absolute URL (http:// or https://)`\n )\n }\n\n if (src.startsWith('/') && config.localPatterns) {\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasLocalMatch } =\n require('./match-local-pattern') as typeof import('./match-local-pattern')\n if (!hasLocalMatch(config.localPatterns, src)) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\` does not match \\`images.localPatterns\\` configured in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns`\n )\n }\n }\n }\n\n if (!src.startsWith('/') && (config.domains || config.remotePatterns)) {\n let parsedSrc: URL\n try {\n parsedSrc = new URL(src)\n } catch (err) {\n console.error(err)\n throw new Error(\n `Failed to parse src \"${src}\" on \\`next/image\\`, if using relative image it must start with a leading slash \"/\" or be an absolute URL (http:// or https://)`\n )\n }\n\n if (\n process.env.NODE_ENV !== 'test' &&\n // micromatch isn't compatible with edge runtime\n process.env.NEXT_RUNTIME !== 'edge'\n ) {\n // We use dynamic require because this should only error in development\n const { hasRemoteMatch } =\n require('./match-remote-pattern') as typeof import('./match-remote-pattern')\n if (\n !hasRemoteMatch(config.domains!, config.remotePatterns!, parsedSrc)\n ) {\n throw new Error(\n `Invalid src prop (${src}) on \\`next/image\\`, hostname \"${parsedSrc.hostname}\" is not configured under images in your \\`next.config.js\\`\\n` +\n `See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host`\n )\n }\n }\n }\n }\n\n const q = findClosestQuality(quality, config)\n\n let deploymentId = getDeploymentId()\n return `${config.path}?url=${encodeURIComponent(src)}&w=${width}&q=${q}${\n src.startsWith('/') && deploymentId ? `&dpl=${deploymentId}` : ''\n }`\n}\n\n// We use this to determine if the import is the default loader\n// or a custom loader defined by the user in next.config.js\ndefaultLoader.__next_img_default = true\n\nexport default defaultLoader\n"],"names":["defaultLoader","config","src","width","quality","startsWith","includes","localPatterns","length","pathname","search","Error","process","env","NODE_ENV","missingValues","push","join","JSON","stringify","NEXT_RUNTIME","hasLocalMatch","require","domains","remotePatterns","parsedSrc","URL","err","console","error","hasRemoteMatch","hostname","q","findClosestQuality","deploymentId","getDeploymentId","path","encodeURIComponent","__next_img_default"],"mappings":"AAuBMY,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BAoF/B,WAAA;;;eAAA;;;oCA1GmC;8BACH;AAEhC,SAASd,cAAc,EACrBC,MAAM,EACNC,GAAG,EACHC,KAAK,EACLC,OAAO,EACoB;IAC3B,IACEF,IAAIG,UAAU,CAAC,QACfH,IAAII,QAAQ,CAAC,QACbL,OAAOM,aAAa,EAAEC,WAAW,KACjCP,OAAOM,aAAa,CAAC,EAAE,CAACE,QAAQ,KAAK,QACrCR,OAAOM,aAAa,CAAC,EAAE,CAACG,MAAM,KAAK,IACnC;QACA,MAAM,OAAA,cAGL,CAHK,IAAIC,MACR,CAAC,gBAAgB,EAAET,IAAI,0EAA0E,CAAC,GAChG,CAAC,mFAAmF,CAAC,GAFnF,qBAAA;mBAAA;wBAAA;0BAAA;QAGN;IACF;IAEA,wCAA2C;QACzC,MAAMa,gBAAgB,EAAE;QAExB,yDAAyD;QACzD,IAAI,CAACb,KAAKa,cAAcC,IAAI,CAAC;QAC7B,IAAI,CAACb,OAAOY,cAAcC,IAAI,CAAC;QAE/B,IAAID,cAAcP,MAAM,GAAG,GAAG;YAC5B,MAAM,OAAA,cAML,CANK,IAAIG,MACR,CAAC,iCAAiC,EAAEI,cAAcE,IAAI,CACpD,MACA,6FAA6F,EAAEC,KAAKC,SAAS,CAC7G;gBAAEjB;gBAAKC;gBAAOC;YAAQ,IACrB,GALC,qBAAA;uBAAA;4BAAA;8BAAA;YAMN;QACF;QAEA,IAAIF,IAAIG,UAAU,CAAC,OAAO;YACxB,MAAM,OAAA,cAEL,CAFK,IAAIM,MACR,CAAC,qBAAqB,EAAET,IAAI,wGAAwG,CAAC,GADjI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEA,IAAIA,IAAIG,UAAU,CAAC,QAAQJ,OAAOM,aAAa,EAAE;YAC/C,IACEK,QAAQC,GAAG,CAACC,QAAQ,KAAK,UACzB,CAEA,+CAFgD;gBAGhD,uEAAuE;gBACvE,MAAM,EAAEO,aAAa,EAAE,GACrBC,QAAQ;gBACV,IAAI,CAACD,cAAcpB,OAAOM,aAAa,EAAEL,MAAM;oBAC7C,MAAM,OAAA,cAGL,CAHK,IAAIS,MACR,CAAC,kBAAkB,EAAET,IAAI,mGAAmG,CAAC,GAC3H,CAAC,qFAAqF,CAAC,GAFrF,qBAAA;+BAAA;oCAAA;sCAAA;oBAGN;gBACF;YACF;QACF;QAEA,IAAI,CAACA,IAAIG,UAAU,CAAC,QAASJ,CAAAA,OAAOsB,OAAO,IAAItB,OAAOuB,cAAa,GAAI;YACrE,IAAIC;YACJ,IAAI;gBACFA,YAAY,IAAIC,IAAIxB;YACtB,EAAE,OAAOyB,KAAK;gBACZC,QAAQC,KAAK,CAACF;gBACd,MAAM,OAAA,cAEL,CAFK,IAAIhB,MACR,CAAC,qBAAqB,EAAET,IAAI,+HAA+H,CAAC,GADxJ,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEA,IACEU,QAAQC,GAAG,CAACC,QAAQ,KAAK,UACzB,CAEA,+CAFgD;gBAGhD,uEAAuE;gBACvE,MAAM,EAAEgB,cAAc,EAAE,GACtBR,QAAQ;gBACV,IACE,CAACQ,eAAe7B,OAAOsB,OAAO,EAAGtB,OAAOuB,cAAc,EAAGC,YACzD;oBACA,MAAM,OAAA,cAGL,CAHK,IAAId,MACR,CAAC,kBAAkB,EAAET,IAAI,+BAA+B,EAAEuB,UAAUM,QAAQ,CAAC,6DAA6D,CAAC,GACzI,CAAC,4EAA4E,CAAC,GAF5E,qBAAA;+BAAA;oCAAA;sCAAA;oBAGN;gBACF;YACF;QACF;IACF;IAEA,MAAMC,IAAIC,CAAAA,GAAAA,oBAAAA,kBAAkB,EAAC7B,SAASH;IAEtC,IAAIiC,eAAeC,CAAAA,GAAAA,cAAAA,eAAe;IAClC,OAAO,GAAGlC,OAAOmC,IAAI,CAAC,KAAK,EAAEC,mBAAmBnC,KAAK,GAAG,EAAEC,MAAM,GAAG,EAAE6B,IACnE9B,IAAIG,UAAU,CAAC,QAAQ6B,eAAe,CAAC,KAAK,EAAEA,cAAc,GAAG,IAC/D;AACJ;AAEA,+DAA+D;AAC/D,2DAA2D;AAC3DlC,cAAcsC,kBAAkB,GAAG;MAEnC,WAAetC","ignoreList":[0]}}, - {"offset": {"line": 2791, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/use-merged-ref.ts"],"sourcesContent":["import { useCallback, useRef, type Ref } from 'react'\n\n// This is a compatibility hook to support React 18 and 19 refs.\n// In 19, a cleanup function from refs may be returned.\n// In 18, returning a cleanup function creates a warning.\n// Since we take userspace refs, we don't know ahead of time if a cleanup function will be returned.\n// This implements cleanup functions with the old behavior in 18.\n// We know refs are always called alternating with `null` and then `T`.\n// So a call with `null` means we need to call the previous cleanup functions.\nexport function useMergedRef<TElement>(\n refA: Ref<TElement>,\n refB: Ref<TElement>\n): Ref<TElement> {\n const cleanupA = useRef<(() => void) | null>(null)\n const cleanupB = useRef<(() => void) | null>(null)\n\n // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.\n // (this happens often if the user doesn't pass a ref to Link/Form/Image)\n // But this can cause us to leak a cleanup-ref into user code (previously via `<Link legacyBehavior>`),\n // and the user might pass that ref into ref-merging library that doesn't support cleanup refs\n // (because it hasn't been updated for React 19)\n // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.\n // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.\n return useCallback(\n (current: TElement | null): void => {\n if (current === null) {\n const cleanupFnA = cleanupA.current\n if (cleanupFnA) {\n cleanupA.current = null\n cleanupFnA()\n }\n const cleanupFnB = cleanupB.current\n if (cleanupFnB) {\n cleanupB.current = null\n cleanupFnB()\n }\n } else {\n if (refA) {\n cleanupA.current = applyRef(refA, current)\n }\n if (refB) {\n cleanupB.current = applyRef(refB, current)\n }\n }\n },\n [refA, refB]\n )\n}\n\nfunction applyRef<TElement>(\n refA: NonNullable<Ref<TElement>>,\n current: TElement\n) {\n if (typeof refA === 'function') {\n const cleanup = refA(current)\n if (typeof cleanup === 'function') {\n return cleanup\n } else {\n return () => refA(null)\n }\n } else {\n refA.current = current\n return () => {\n refA.current = null\n }\n }\n}\n"],"names":["useMergedRef","refA","refB","cleanupA","useRef","cleanupB","useCallback","current","cleanupFnA","cleanupFnB","applyRef","cleanup"],"mappings":";;;+BASgBA,gBAAAA;;;eAAAA;;;uBAT8B;AASvC,SAASA,aACdC,IAAmB,EACnBC,IAAmB;IAEnB,MAAMC,WAAWC,CAAAA,GAAAA,OAAAA,MAAM,EAAsB;IAC7C,MAAMC,WAAWD,CAAAA,GAAAA,OAAAA,MAAM,EAAsB;IAE7C,mFAAmF;IACnF,yEAAyE;IACzE,uGAAuG;IACvG,8FAA8F;IAC9F,gDAAgD;IAChD,mGAAmG;IACnG,wFAAwF;IACxF,OAAOE,CAAAA,GAAAA,OAAAA,WAAW,EAChB,CAACC;QACC,IAAIA,YAAY,MAAM;YACpB,MAAMC,aAAaL,SAASI,OAAO;YACnC,IAAIC,YAAY;gBACdL,SAASI,OAAO,GAAG;gBACnBC;YACF;YACA,MAAMC,aAAaJ,SAASE,OAAO;YACnC,IAAIE,YAAY;gBACdJ,SAASE,OAAO,GAAG;gBACnBE;YACF;QACF,OAAO;YACL,IAAIR,MAAM;gBACRE,SAASI,OAAO,GAAGG,SAAST,MAAMM;YACpC;YACA,IAAIL,MAAM;gBACRG,SAASE,OAAO,GAAGG,SAASR,MAAMK;YACpC;QACF;IACF,GACA;QAACN;QAAMC;KAAK;AAEhB;AAEA,SAASQ,SACPT,IAAgC,EAChCM,OAAiB;IAEjB,IAAI,OAAON,SAAS,YAAY;QAC9B,MAAMU,UAAUV,KAAKM;QACrB,IAAI,OAAOI,YAAY,YAAY;YACjC,OAAOA;QACT,OAAO;YACL,OAAO,IAAMV,KAAK;QACpB;IACF,OAAO;QACLA,KAAKM,OAAO,GAAGA;QACf,OAAO;YACLN,KAAKM,OAAO,GAAG;QACjB;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 2862, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/image-component.tsx"],"sourcesContent":["'use client'\n\nimport React, {\n useRef,\n useEffect,\n useCallback,\n useContext,\n useMemo,\n useState,\n forwardRef,\n use,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport Head from '../shared/lib/head'\nimport { getImgProps } from '../shared/lib/get-img-props'\nimport type {\n ImageProps,\n ImgProps,\n OnLoad,\n OnLoadingComplete,\n PlaceholderValue,\n} from '../shared/lib/get-img-props'\nimport type {\n ImageConfigComplete,\n ImageLoaderProps,\n} from '../shared/lib/image-config'\nimport { imageConfigDefault } from '../shared/lib/image-config'\nimport { ImageConfigContext } from '../shared/lib/image-config-context.shared-runtime'\nimport { warnOnce } from '../shared/lib/utils/warn-once'\nimport { RouterContext } from '../shared/lib/router-context.shared-runtime'\n\n// This is replaced by webpack alias\nimport defaultLoader from 'next/dist/shared/lib/image-loader'\nimport { useMergedRef } from './use-merged-ref'\n\n// This is replaced by webpack define plugin\nconst configEnv = process.env.__NEXT_IMAGE_OPTS as any as ImageConfigComplete\n\nif (typeof window === 'undefined') {\n ;(globalThis as any).__NEXT_IMAGE_IMPORTED = true\n}\n\nexport type { ImageLoaderProps }\nexport type ImageLoader = (p: ImageLoaderProps) => string\n\ntype ImgElementWithDataProp = HTMLImageElement & {\n 'data-loaded-src': string | undefined\n}\n\ntype ImageElementProps = ImgProps & {\n unoptimized: boolean\n placeholder: PlaceholderValue\n onLoadRef: React.MutableRefObject<OnLoad | undefined>\n onLoadingCompleteRef: React.MutableRefObject<OnLoadingComplete | undefined>\n setBlurComplete: (b: boolean) => void\n setShowAltText: (b: boolean) => void\n sizesInput: string | undefined\n}\n\n// See https://stackoverflow.com/q/39777833/266535 for why we use this ref\n// handler instead of the img's onLoad attribute.\nfunction handleLoading(\n img: ImgElementWithDataProp,\n placeholder: PlaceholderValue,\n onLoadRef: React.MutableRefObject<OnLoad | undefined>,\n onLoadingCompleteRef: React.MutableRefObject<OnLoadingComplete | undefined>,\n setBlurComplete: (b: boolean) => void,\n unoptimized: boolean,\n sizesInput: string | undefined\n) {\n const src = img?.src\n if (!img || img['data-loaded-src'] === src) {\n return\n }\n img['data-loaded-src'] = src\n const p = 'decode' in img ? img.decode() : Promise.resolve()\n p.catch(() => {}).then(() => {\n if (!img.parentElement || !img.isConnected) {\n // Exit early in case of race condition:\n // - onload() is called\n // - decode() is called but incomplete\n // - unmount is called\n // - decode() completes\n return\n }\n if (placeholder !== 'empty') {\n setBlurComplete(true)\n }\n if (onLoadRef?.current) {\n // Since we don't have the SyntheticEvent here,\n // we must create one with the same shape.\n // See https://reactjs.org/docs/events.html\n const event = new Event('load')\n Object.defineProperty(event, 'target', { writable: false, value: img })\n let prevented = false\n let stopped = false\n onLoadRef.current({\n ...event,\n nativeEvent: event,\n currentTarget: img,\n target: img,\n isDefaultPrevented: () => prevented,\n isPropagationStopped: () => stopped,\n persist: () => {},\n preventDefault: () => {\n prevented = true\n event.preventDefault()\n },\n stopPropagation: () => {\n stopped = true\n event.stopPropagation()\n },\n })\n }\n if (onLoadingCompleteRef?.current) {\n onLoadingCompleteRef.current(img)\n }\n if (process.env.NODE_ENV !== 'production') {\n const origSrc = new URL(src, 'http://n').searchParams.get('url') || src\n if (img.getAttribute('data-nimg') === 'fill') {\n if (!unoptimized && (!sizesInput || sizesInput === '100vw')) {\n let widthViewportRatio =\n img.getBoundingClientRect().width / window.innerWidth\n if (widthViewportRatio < 0.6) {\n if (sizesInput === '100vw') {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" prop and \"sizes\" prop of \"100vw\", but image is not rendered at full viewport width. Please adjust \"sizes\" to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n } else {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" but is missing \"sizes\" prop. Please add it to improve page performance. Read more: https://nextjs.org/docs/api-reference/next/image#sizes`\n )\n }\n }\n }\n if (img.parentElement) {\n const { position } = window.getComputedStyle(img.parentElement)\n const valid = ['absolute', 'fixed', 'relative']\n if (!valid.includes(position)) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and parent element with invalid \"position\". Provided \"${position}\" should be one of ${valid\n .map(String)\n .join(',')}.`\n )\n }\n }\n if (img.height === 0) {\n warnOnce(\n `Image with src \"${origSrc}\" has \"fill\" and a height value of 0. This is likely because the parent element of the image has not been styled to have a set height.`\n )\n }\n }\n\n const heightModified =\n img.height.toString() !== img.getAttribute('height')\n const widthModified = img.width.toString() !== img.getAttribute('width')\n if (\n (heightModified && !widthModified) ||\n (!heightModified && widthModified)\n ) {\n warnOnce(\n `Image with src \"${origSrc}\" has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: \"auto\"' or 'height: \"auto\"' to maintain the aspect ratio.`\n )\n }\n }\n })\n}\n\nfunction getDynamicProps(\n fetchPriority?: string\n): Record<string, string | undefined> {\n if (Boolean(use)) {\n // In React 19.0.0 or newer, we must use camelCase\n // prop to avoid \"Warning: Invalid DOM property\".\n // See https://github.com/facebook/react/pull/25927\n return { fetchPriority }\n }\n // In React 18.2.0 or older, we must use lowercase prop\n // to avoid \"Warning: Invalid DOM property\".\n return { fetchpriority: fetchPriority }\n}\n\nconst ImageElement = forwardRef<HTMLImageElement | null, ImageElementProps>(\n (\n {\n src,\n srcSet,\n sizes,\n height,\n width,\n decoding,\n className,\n style,\n fetchPriority,\n placeholder,\n loading,\n unoptimized,\n fill,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n setShowAltText,\n sizesInput,\n onLoad,\n onError,\n ...rest\n },\n forwardedRef\n ) => {\n const ownRef = useCallback(\n (img: ImgElementWithDataProp | null) => {\n if (!img) {\n return\n }\n if (onError) {\n // If the image has an error before react hydrates, then the error is lost.\n // The workaround is to wait until the image is mounted which is after hydration,\n // then we set the src again to trigger the error handler (if there was an error).\n // eslint-disable-next-line no-self-assign\n img.src = img.src\n }\n if (process.env.NODE_ENV !== 'production') {\n if (!src) {\n console.error(`Image is missing required \"src\" property:`, img)\n }\n if (img.getAttribute('alt') === null) {\n console.error(\n `Image is missing required \"alt\" property. Please add Alternative Text to describe the image for screen readers and search engines.`\n )\n }\n }\n if (img.complete) {\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }\n },\n [\n src,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n onError,\n unoptimized,\n sizesInput,\n ]\n )\n\n const ref = useMergedRef(forwardedRef, ownRef)\n\n return (\n <img\n {...rest}\n {...getDynamicProps(fetchPriority)}\n // It's intended to keep `loading` before `src` because React updates\n // props in order which causes Safari/Firefox to not lazy load properly.\n // See https://github.com/facebook/react/issues/25883\n loading={loading}\n width={width}\n height={height}\n decoding={decoding}\n data-nimg={fill ? 'fill' : '1'}\n className={className}\n style={style}\n // It's intended to keep `src` the last attribute because React updates\n // attributes in order. If we keep `src` the first one, Safari will\n // immediately start to fetch `src`, before `sizes` and `srcSet` are even\n // updated by React. That causes multiple unnecessary requests if `srcSet`\n // and `sizes` are defined.\n // This bug cannot be reproduced in Chrome or Firefox.\n sizes={sizes}\n srcSet={srcSet}\n src={src}\n ref={ref}\n onLoad={(event) => {\n const img = event.currentTarget as ImgElementWithDataProp\n handleLoading(\n img,\n placeholder,\n onLoadRef,\n onLoadingCompleteRef,\n setBlurComplete,\n unoptimized,\n sizesInput\n )\n }}\n onError={(event) => {\n // if the real image fails to load, this will ensure \"alt\" is visible\n setShowAltText(true)\n if (placeholder !== 'empty') {\n // If the real image fails to load, this will still remove the placeholder.\n setBlurComplete(true)\n }\n if (onError) {\n onError(event)\n }\n }}\n />\n )\n }\n)\n\nfunction ImagePreload({\n isAppRouter,\n imgAttributes,\n}: {\n isAppRouter: boolean\n imgAttributes: ImgProps\n}) {\n const opts: ReactDOM.PreloadOptions = {\n as: 'image',\n imageSrcSet: imgAttributes.srcSet,\n imageSizes: imgAttributes.sizes,\n crossOrigin: imgAttributes.crossOrigin,\n referrerPolicy: imgAttributes.referrerPolicy,\n ...getDynamicProps(imgAttributes.fetchPriority),\n }\n\n if (isAppRouter && ReactDOM.preload) {\n ReactDOM.preload(imgAttributes.src, opts)\n return null\n }\n\n return (\n <Head>\n <link\n key={\n '__nimg-' +\n imgAttributes.src +\n imgAttributes.srcSet +\n imgAttributes.sizes\n }\n rel=\"preload\"\n // Note how we omit the `href` attribute, as it would only be relevant\n // for browsers that do not support `imagesrcset`, and in those cases\n // it would cause the incorrect image to be preloaded.\n //\n // https://html.spec.whatwg.org/multipage/semantics.html#attr-link-imagesrcset\n href={imgAttributes.srcSet ? undefined : imgAttributes.src}\n {...opts}\n />\n </Head>\n )\n}\n\n/**\n * The `Image` component is used to optimize images.\n *\n * Read more: [Next.js docs: `Image`](https://nextjs.org/docs/app/api-reference/components/image)\n */\nexport const Image = forwardRef<HTMLImageElement | null, ImageProps>(\n (props, forwardedRef) => {\n const pagesRouter = useContext(RouterContext)\n // We're in the app directory if there is no pages router.\n const isAppRouter = !pagesRouter\n\n const configContext = useContext(ImageConfigContext)\n const config = useMemo(() => {\n const c = configEnv || configContext || imageConfigDefault\n\n const allSizes = [...c.deviceSizes, ...c.imageSizes].sort((a, b) => a - b)\n const deviceSizes = c.deviceSizes.sort((a, b) => a - b)\n const qualities = c.qualities?.sort((a, b) => a - b)\n return {\n ...c,\n allSizes,\n deviceSizes,\n qualities,\n // During the SSR, configEnv (__NEXT_IMAGE_OPTS) does not include\n // security sensitive configs like `localPatterns`, which is needed\n // during the server render to ensure it's validated. Therefore use\n // configContext, which holds the config from the server for validation.\n localPatterns:\n typeof window === 'undefined'\n ? configContext?.localPatterns\n : c.localPatterns,\n }\n }, [configContext])\n\n const { onLoad, onLoadingComplete } = props\n const onLoadRef = useRef(onLoad)\n\n useEffect(() => {\n onLoadRef.current = onLoad\n }, [onLoad])\n\n const onLoadingCompleteRef = useRef(onLoadingComplete)\n\n useEffect(() => {\n onLoadingCompleteRef.current = onLoadingComplete\n }, [onLoadingComplete])\n\n const [blurComplete, setBlurComplete] = useState(false)\n const [showAltText, setShowAltText] = useState(false)\n const { props: imgAttributes, meta: imgMeta } = getImgProps(props, {\n defaultLoader,\n imgConf: config,\n blurComplete,\n showAltText,\n })\n\n return (\n <>\n {\n <ImageElement\n {...imgAttributes}\n unoptimized={imgMeta.unoptimized}\n placeholder={imgMeta.placeholder}\n fill={imgMeta.fill}\n onLoadRef={onLoadRef}\n onLoadingCompleteRef={onLoadingCompleteRef}\n setBlurComplete={setBlurComplete}\n setShowAltText={setShowAltText}\n sizesInput={props.sizes}\n ref={forwardedRef}\n />\n }\n {imgMeta.preload ? (\n <ImagePreload\n isAppRouter={isAppRouter}\n imgAttributes={imgAttributes}\n />\n ) : null}\n </>\n )\n }\n)\n"],"names":["Image","configEnv","process","env","__NEXT_IMAGE_OPTS","window","globalThis","__NEXT_IMAGE_IMPORTED","handleLoading","img","placeholder","onLoadRef","onLoadingCompleteRef","setBlurComplete","unoptimized","sizesInput","src","p","decode","Promise","resolve","catch","then","parentElement","isConnected","current","event","Event","Object","defineProperty","writable","value","prevented","stopped","nativeEvent","currentTarget","target","isDefaultPrevented","isPropagationStopped","persist","preventDefault","stopPropagation","NODE_ENV","origSrc","URL","searchParams","get","getAttribute","widthViewportRatio","getBoundingClientRect","width","innerWidth","warnOnce","position","getComputedStyle","valid","includes","map","String","join","height","heightModified","toString","widthModified","getDynamicProps","fetchPriority","Boolean","use","fetchpriority","ImageElement","forwardRef","srcSet","sizes","decoding","className","style","loading","fill","setShowAltText","onLoad","onError","rest","forwardedRef","ownRef","useCallback","console","error","complete","ref","useMergedRef","data-nimg","ImagePreload","isAppRouter","imgAttributes","opts","as","imageSrcSet","imageSizes","crossOrigin","referrerPolicy","ReactDOM","preload","Head","link","rel","href","undefined","props","pagesRouter","useContext","RouterContext","configContext","ImageConfigContext","config","useMemo","c","imageConfigDefault","allSizes","deviceSizes","sort","a","b","qualities","localPatterns","onLoadingComplete","useRef","useEffect","blurComplete","useState","showAltText","meta","imgMeta","getImgProps","defaultLoader","imgConf"],"mappings":"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","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_be32b49c._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_be32b49c._.js deleted file mode 100644 index 62f87ff..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_be32b49c._.js +++ /dev/null @@ -1,2503 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "disableSmoothScrollDuringRouteTransition", { - enumerable: true, - get: function() { - return disableSmoothScrollDuringRouteTransition; - } -}); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-client] (ecmascript)"); -function disableSmoothScrollDuringRouteTransition(fn, options = {}) { - // if only the hash is changed, we don't need to disable smooth scrolling - // we only care to prevent smooth scrolling when navigating to a new page to avoid jarring UX - if (options.onlyHashChange) { - fn(); - return; - } - const htmlElement = document.documentElement; - const hasDataAttribute = htmlElement.dataset.scrollBehavior === 'smooth'; - if (!hasDataAttribute) { - // Warn if smooth scrolling is detected but no data attribute is present - if (("TURBOPACK compile-time value", "development") === 'development' && getComputedStyle(htmlElement).scrollBehavior === 'smooth') { - (0, _warnonce.warnOnce)('Detected `scroll-behavior: smooth` on the `<html>` element. To disable smooth scrolling during route transitions, ' + 'add `data-scroll-behavior="smooth"` to your <html> element. ' + 'Learn more: https://nextjs.org/docs/messages/missing-data-scroll-behavior'); - } - // No smooth scrolling configured, run directly without style manipulation - fn(); - return; - } - // Proceed with temporarily disabling smooth scrolling - const existing = htmlElement.style.scrollBehavior; - htmlElement.style.scrollBehavior = 'auto'; - if (!options.dontForceLayout) { - // In Chrome-based browsers we need to force reflow before calling `scrollTo`. - // Otherwise it will not pickup the change in scrollBehavior - // More info here: https://github.com/vercel/next.js/issues/40719#issuecomment-1336248042 - htmlElement.getClientRects(); - } - fn(); - htmlElement.style.scrollBehavior = existing; -} //# sourceMappingURL=disable-smooth-scroll.js.map -}), -"[project]/node_modules/next/dist/client/components/bfcache.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "useRouterBFCache", { - enumerable: true, - get: function() { - return useRouterBFCache; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -// When the flag is disabled, only track the currently active tree -const MAX_BF_CACHE_ENTRIES = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : 1; -function useRouterBFCache(activeTree, activeStateKey) { - // The currently active entry. The entries form a linked list, sorted in - // order of most recently active. This allows us to reuse parts of the list - // without cloning, unless there's a reordering or removal. - // TODO: Once we start tracking back/forward history at each route level, - // we should use the history order instead. In other words, when traversing - // to an existing entry as a result of a popstate event, we should maintain - // the existing order instead of moving it to the front of the list. I think - // an initial implementation of this could be to pass an incrementing id - // to history.pushState/replaceState, then use that here for ordering. - const [prevActiveEntry, setPrevActiveEntry] = (0, _react.useState)(()=>{ - const initialEntry = { - tree: activeTree, - stateKey: activeStateKey, - next: null - }; - return initialEntry; - }); - if (prevActiveEntry.tree === activeTree) { - // Fast path. The active tree hasn't changed, so we can reuse the - // existing state. - return prevActiveEntry; - } - // The route tree changed. Note that this doesn't mean that the tree changed - // *at this level* — the change may be due to a child route. Either way, we - // need to either add or update the router tree in the bfcache. - // - // The rest of the code looks more complicated than it actually is because we - // can't mutate the state in place; we have to copy-on-write. - // Create a new entry for the active cache key. This is the head of the new - // linked list. - const newActiveEntry = { - tree: activeTree, - stateKey: activeStateKey, - next: null - }; - // We need to append the old list onto the new list. If the head of the new - // list was already present in the cache, then we'll need to clone everything - // that came before it. Then we can reuse the rest. - let n = 1; - let oldEntry = prevActiveEntry; - let clonedEntry = newActiveEntry; - while(oldEntry !== null && n < MAX_BF_CACHE_ENTRIES){ - if (oldEntry.stateKey === activeStateKey) { - // Fast path. This entry in the old list that corresponds to the key that - // is now active. We've already placed a clone of this entry at the front - // of the new list. We can reuse the rest of the old list without cloning. - // NOTE: We don't need to worry about eviction in this case because we - // haven't increased the size of the cache, and we assume the max size - // is constant across renders. If we were to change it to a dynamic limit, - // then the implementation would need to account for that. - clonedEntry.next = oldEntry.next; - break; - } else { - // Clone the entry and append it to the list. - n++; - const entry = { - tree: oldEntry.tree, - stateKey: oldEntry.stateKey, - next: null - }; - clonedEntry.next = entry; - clonedEntry = entry; - } - oldEntry = oldEntry.next; - } - setPrevActiveEntry(newActiveEntry); - return newActiveEntry; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=bfcache.js.map -}), -"[project]/node_modules/next/dist/client/components/layout-router.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use client'; -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, /** - * OuterLayoutRouter handles the current segment as well as <Offscreen> rendering of other segments. - * It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes. - */ "default", { - enumerable: true, - get: function() { - return OuterLayoutRouter; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _reactdom = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-dom/index.js [app-client] (ecmascript)")); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -const _unresolvedthenable = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/unresolved-thenable.js [app-client] (ecmascript)"); -const _errorboundary = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/error-boundary.js [app-client] (ecmascript)"); -const _matchsegments = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/match-segments.js [app-client] (ecmascript)"); -const _disablesmoothscroll = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js [app-client] (ecmascript)"); -const _redirectboundary = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-boundary.js [app-client] (ecmascript)"); -const _errorboundary1 = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)"); -const _createroutercachekey = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js [app-client] (ecmascript)"); -const _bfcache = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/bfcache.js [app-client] (ecmascript)"); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-client] (ecmascript)"); -const _hooksclientcontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js [app-client] (ecmascript)"); -const _routeparams = __turbopack_context__.r("[project]/node_modules/next/dist/client/route-params.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -const __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = _reactdom.default.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; -// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available -/** - * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning - */ function findDOMNode(instance) { - // Tree-shake for server bundle - if (typeof window === 'undefined') return null; - // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init. - // We need to lazily reference it. - const internal_reactDOMfindDOMNode = __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode; - return internal_reactDOMfindDOMNode(instance); -} -const rectProperties = [ - 'bottom', - 'height', - 'left', - 'right', - 'top', - 'width', - 'x', - 'y' -]; -/** - * Check if a HTMLElement is hidden or fixed/sticky position - */ function shouldSkipElement(element) { - // we ignore fixed or sticky positioned elements since they'll likely pass the "in-viewport" check - // and will result in a situation we bail on scroll because of something like a fixed nav, - // even though the actual page content is offscreen - if ([ - 'sticky', - 'fixed' - ].includes(getComputedStyle(element).position)) { - return true; - } - // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent` - // because `offsetParent` doesn't consider document/body - const rect = element.getBoundingClientRect(); - return rectProperties.every((item)=>rect[item] === 0); -} -/** - * Check if the top corner of the HTMLElement is in the viewport. - */ function topOfElementInViewport(element, viewportHeight) { - const rect = element.getBoundingClientRect(); - return rect.top >= 0 && rect.top <= viewportHeight; -} -/** - * Find the DOM node for a hash fragment. - * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior. - * If the hash fragment is an id, the page has to scroll to the element with that id. - * If the hash fragment is a name, the page has to scroll to the first element with that name. - */ function getHashFragmentDomNode(hashFragment) { - // If the hash fragment is `top` the page has to scroll to the top of the page. - if (hashFragment === 'top') { - return document.body; - } - // If the hash fragment is an id, the page has to scroll to the element with that id. - return document.getElementById(hashFragment) ?? // If the hash fragment is a name, the page has to scroll to the first element with that name. - document.getElementsByName(hashFragment)[0]; -} -class InnerScrollAndFocusHandler extends _react.default.Component { - componentDidMount() { - this.handlePotentialScroll(); - } - componentDidUpdate() { - // Because this property is overwritten in handlePotentialScroll it's fine to always run it when true as it'll be set to false for subsequent renders. - if (this.props.focusAndScrollRef.apply) { - this.handlePotentialScroll(); - } - } - render() { - return this.props.children; - } - constructor(...args){ - super(...args), this.handlePotentialScroll = ()=>{ - // Handle scroll and focus, it's only applied once in the first useEffect that triggers that changed. - const { focusAndScrollRef, segmentPath } = this.props; - if (focusAndScrollRef.apply) { - // segmentPaths is an array of segment paths that should be scrolled to - // if the current segment path is not in the array, the scroll is not applied - // unless the array is empty, in which case the scroll is always applied - if (focusAndScrollRef.segmentPaths.length !== 0 && !focusAndScrollRef.segmentPaths.some((scrollRefSegmentPath)=>segmentPath.every((segment, index)=>(0, _matchsegments.matchSegment)(segment, scrollRefSegmentPath[index])))) { - return; - } - let domNode = null; - const hashFragment = focusAndScrollRef.hashFragment; - if (hashFragment) { - domNode = getHashFragmentDomNode(hashFragment); - } - // `findDOMNode` is tricky because it returns just the first child if the component is a fragment. - // This already caused a bug where the first child was a <link/> in head. - if (!domNode) { - domNode = findDOMNode(this); - } - // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree. - if (!(domNode instanceof Element)) { - return; - } - // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior. - // If the element is skipped, try to select the next sibling and try again. - while(!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)){ - if ("TURBOPACK compile-time truthy", 1) { - if (domNode.parentElement?.localName === 'head') { - // TODO: We enter this state when metadata was rendered as part of the page or via Next.js. - // This is always a bug in Next.js and caused by React hoisting metadata. - // We need to replace `findDOMNode` in favor of Fragment Refs (when available) so that we can skip over metadata. - } - } - // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead. - if (domNode.nextElementSibling === null) { - return; - } - domNode = domNode.nextElementSibling; - } - // State is mutated to ensure that the focus and scroll is applied only once. - focusAndScrollRef.apply = false; - focusAndScrollRef.hashFragment = null; - focusAndScrollRef.segmentPaths = []; - (0, _disablesmoothscroll.disableSmoothScrollDuringRouteTransition)(()=>{ - // In case of hash scroll, we only need to scroll the element into view - if (hashFragment) { - ; - domNode.scrollIntoView(); - return; - } - // Store the current viewport height because reading `clientHeight` causes a reflow, - // and it won't change during this function. - const htmlElement = document.documentElement; - const viewportHeight = htmlElement.clientHeight; - // If the element's top edge is already in the viewport, exit early. - if (topOfElementInViewport(domNode, viewportHeight)) { - return; - } - // Otherwise, try scrolling go the top of the document to be backward compatible with pages - // scrollIntoView() called on `<html/>` element scrolls horizontally on chrome and firefox (that shouldn't happen) - // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left - // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically - htmlElement.scrollTop = 0; - // Scroll to domNode if domNode is not in viewport when scrolled to top of document - if (!topOfElementInViewport(domNode, viewportHeight)) { - // Scroll into view doesn't scroll horizontally by default when not needed - ; - domNode.scrollIntoView(); - } - }, { - // We will force layout by querying domNode position - dontForceLayout: true, - onlyHashChange: focusAndScrollRef.onlyHashChange - }); - // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition` - focusAndScrollRef.onlyHashChange = false; - // Set focus on the element - domNode.focus(); - } - }; - } -} -function ScrollAndFocusHandler({ segmentPath, children }) { - const context = (0, _react.useContext)(_approutercontextsharedruntime.GlobalLayoutRouterContext); - if (!context) { - throw Object.defineProperty(new Error('invariant global layout router not mounted'), "__NEXT_ERROR_CODE", { - value: "E473", - enumerable: false, - configurable: true - }); - } - return /*#__PURE__*/ (0, _jsxruntime.jsx)(InnerScrollAndFocusHandler, { - segmentPath: segmentPath, - focusAndScrollRef: context.focusAndScrollRef, - children: children - }); -} -/** - * InnerLayoutRouter handles rendering the provided segment based on the cache. - */ function InnerLayoutRouter({ tree, segmentPath, debugNameContext, cacheNode: maybeCacheNode, params, url, isActive }) { - const context = (0, _react.useContext)(_approutercontextsharedruntime.GlobalLayoutRouterContext); - const parentNavPromises = (0, _react.useContext)(_hooksclientcontextsharedruntime.NavigationPromisesContext); - if (!context) { - throw Object.defineProperty(new Error('invariant global layout router not mounted'), "__NEXT_ERROR_CODE", { - value: "E473", - enumerable: false, - configurable: true - }); - } - const cacheNode = maybeCacheNode !== null ? maybeCacheNode : // This should only be reachable for inactive/hidden segments, during - // prerendering The active segment should always be consistent with the - // CacheNode tree. Regardless, if we don't have a matching CacheNode, we - // must suspend rather than render nothing, to prevent showing an - // inconsistent route. - (0, _react.use)(_unresolvedthenable.unresolvedThenable); - // `rsc` represents the renderable node for this segment. - // If this segment has a `prefetchRsc`, it's the statically prefetched data. - // We should use that on initial render instead of `rsc`. Then we'll switch - // to `rsc` when the dynamic response streams in. - // - // If no prefetch data is available, then we go straight to rendering `rsc`. - const resolvedPrefetchRsc = cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc; - // We use `useDeferredValue` to handle switching between the prefetched and - // final values. The second argument is returned on initial render, then it - // re-renders with the first argument. - const rsc = (0, _react.useDeferredValue)(cacheNode.rsc, resolvedPrefetchRsc); - // `rsc` is either a React node or a promise for a React node, except we - // special case `null` to represent that this segment's data is missing. If - // it's a promise, we need to unwrap it so we can determine whether or not the - // data is missing. - let resolvedRsc; - if ((0, _pprnavigations.isDeferredRsc)(rsc)) { - const unwrappedRsc = (0, _react.use)(rsc); - if (unwrappedRsc === null) { - // If the promise was resolved to `null`, it means the data for this - // segment was not returned by the server. Suspend indefinitely. When this - // happens, the router is responsible for triggering a new state update to - // un-suspend this segment. - (0, _react.use)(_unresolvedthenable.unresolvedThenable); - } - resolvedRsc = unwrappedRsc; - } else { - // This is not a deferred RSC promise. Don't need to unwrap it. - if (rsc === null) { - (0, _react.use)(_unresolvedthenable.unresolvedThenable); - } - resolvedRsc = rsc; - } - // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide - // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`. - // Promises are cached outside of render to survive suspense retries. - let navigationPromises = null; - if ("TURBOPACK compile-time truthy", 1) { - const { createNestedLayoutNavigationPromises } = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/navigation-devtools.js [app-client] (ecmascript)"); - navigationPromises = createNestedLayoutNavigationPromises(tree, parentNavPromises); - } - let children = resolvedRsc; - if (navigationPromises) { - children = /*#__PURE__*/ (0, _jsxruntime.jsx)(_hooksclientcontextsharedruntime.NavigationPromisesContext.Provider, { - value: navigationPromises, - children: resolvedRsc - }); - } - children = /*#__PURE__*/ (0, _jsxruntime.jsx)(_approutercontextsharedruntime.LayoutRouterContext.Provider, { - value: { - parentTree: tree, - parentCacheNode: cacheNode, - parentSegmentPath: segmentPath, - parentParams: params, - debugNameContext: debugNameContext, - // TODO-APP: overriding of url for parallel routes - url: url, - isActive: isActive - }, - children: children - }); - return children; -} -/** - * Renders suspense boundary with the provided "loading" property as the fallback. - * If no loading property is provided it renders the children without a suspense boundary. - */ function LoadingBoundary({ name, loading, children }) { - // If loading is a promise, unwrap it. This happens in cases where we haven't - // yet received the loading data from the server — which includes whether or - // not this layout has a loading component at all. - // - // It's OK to suspend here instead of inside the fallback because this - // promise will resolve simultaneously with the data for the segment itself. - // So it will never suspend for longer than it would have if we didn't use - // a Suspense fallback at all. - let loadingModuleData; - if (typeof loading === 'object' && loading !== null && typeof loading.then === 'function') { - const promiseForLoading = loading; - loadingModuleData = (0, _react.use)(promiseForLoading); - } else { - loadingModuleData = loading; - } - if (loadingModuleData) { - const loadingRsc = loadingModuleData[0]; - const loadingStyles = loadingModuleData[1]; - const loadingScripts = loadingModuleData[2]; - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_react.Suspense, { - name: name, - fallback: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, { - children: [ - loadingStyles, - loadingScripts, - loadingRsc - ] - }), - children: children - }); - } - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_jsxruntime.Fragment, { - children: children - }); -} -function OuterLayoutRouter({ parallelRouterKey, error, errorStyles, errorScripts, templateStyles, templateScripts, template, notFound, forbidden, unauthorized, segmentViewBoundaries }) { - const context = (0, _react.useContext)(_approutercontextsharedruntime.LayoutRouterContext); - if (!context) { - throw Object.defineProperty(new Error('invariant expected layout router to be mounted'), "__NEXT_ERROR_CODE", { - value: "E56", - enumerable: false, - configurable: true - }); - } - const { parentTree, parentCacheNode, parentSegmentPath, parentParams, url, isActive, debugNameContext } = context; - // Get the CacheNode for this segment by reading it from the parent segment's - // child map. - const parentParallelRoutes = parentCacheNode.parallelRoutes; - let segmentMap = parentParallelRoutes.get(parallelRouterKey); - // If the parallel router cache node does not exist yet, create it. - // This writes to the cache when there is no item in the cache yet. It never *overwrites* existing cache items which is why it's safe in concurrent mode. - if (!segmentMap) { - segmentMap = new Map(); - parentParallelRoutes.set(parallelRouterKey, segmentMap); - } - const parentTreeSegment = parentTree[0]; - const segmentPath = parentSegmentPath === null ? // the code. We should clean this up. - [ - parallelRouterKey - ] : parentSegmentPath.concat([ - parentTreeSegment, - parallelRouterKey - ]); - // The "state" key of a segment is the one passed to React — it represents the - // identity of the UI tree. Whenever the state key changes, the tree is - // recreated and the state is reset. In the App Router model, search params do - // not cause state to be lost, so two segments with the same segment path but - // different search params should have the same state key. - // - // The "cache" key of a segment, however, *does* include the search params, if - // it's possible that the segment accessed the search params on the server. - // (This only applies to page segments; layout segments cannot access search - // params on the server.) - const activeTree = parentTree[1][parallelRouterKey]; - if (activeTree === undefined) { - // Could not find a matching segment. The client tree is inconsistent with - // the server tree. Suspend indefinitely; the router will have already - // detected the inconsistency when handling the server response, and - // triggered a refresh of the page to recover. - (0, _react.use)(_unresolvedthenable.unresolvedThenable); - } - const activeSegment = activeTree[0]; - const activeStateKey = (0, _createroutercachekey.createRouterCacheKey)(activeSegment, true) // no search params - ; - // At each level of the route tree, not only do we render the currently - // active segment — we also render the last N segments that were active at - // this level inside a hidden <Activity> boundary, to preserve their state - // if or when the user navigates to them again. - // - // bfcacheEntry is a linked list of FlightRouterStates. - let bfcacheEntry = (0, _bfcache.useRouterBFCache)(activeTree, activeStateKey); - let children = []; - do { - const tree = bfcacheEntry.tree; - const stateKey = bfcacheEntry.stateKey; - const segment = tree[0]; - const cacheKey = (0, _createroutercachekey.createRouterCacheKey)(segment); - // Read segment path from the parallel router cache node. - const cacheNode = segmentMap.get(cacheKey) ?? null; - /* - - Error boundary - - Only renders error boundary if error component is provided. - - Rendered for each segment to ensure they have their own error state. - - When gracefully degrade for bots, skip rendering error boundary. - - Loading boundary - - Only renders suspense boundary if loading components is provided. - - Rendered for each segment to ensure they have their own loading state. - - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch. - */ let segmentBoundaryTriggerNode = null; - let segmentViewStateNode = null; - if ("TURBOPACK compile-time truthy", 1) { - const { SegmentBoundaryTriggerNode, SegmentViewStateNode } = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)"); - const pagePrefix = (0, _apppaths.normalizeAppPath)(url); - segmentViewStateNode = /*#__PURE__*/ (0, _jsxruntime.jsx)(SegmentViewStateNode, { - page: pagePrefix - }, pagePrefix); - segmentBoundaryTriggerNode = /*#__PURE__*/ (0, _jsxruntime.jsx)(_jsxruntime.Fragment, { - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(SegmentBoundaryTriggerNode, {}) - }); - } - let params = parentParams; - if (Array.isArray(segment)) { - // This segment contains a route param. Accumulate these as we traverse - // down the router tree. The result represents the set of params that - // the layout/page components are permitted to access below this point. - const paramName = segment[0]; - const paramCacheKey = segment[1]; - const paramType = segment[2]; - const paramValue = (0, _routeparams.getParamValueFromCacheKey)(paramCacheKey, paramType); - if (paramValue !== null) { - params = { - ...parentParams, - [paramName]: paramValue - }; - } - } - const debugName = getBoundaryDebugNameFromSegment(segment); - // `debugNameContext` represents the nearest non-"virtual" parent segment. - // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments. - // So if `debugName` is undefined, the context is passed through unchanged. - const childDebugNameContext = debugName ?? debugNameContext; - // In practical terms, clicking this name in the Suspense DevTools - // should select the child slots of that layout. - // - // So the name we apply to the Activity boundary is actually based on - // the nearest parent segments. - // - // We skip over "virtual" parents, i.e. ones inserted by Next.js that - // don't correspond to application-defined code. - const isVirtual = debugName === undefined; - const debugNameToDisplay = isVirtual ? undefined : debugNameContext; - // TODO: The loading module data for a segment is stored on the parent, then - // applied to each of that parent segment's parallel route slots. In the - // simple case where there's only one parallel route (the `children` slot), - // this is no different from if the loading module data where stored on the - // child directly. But I'm not sure this actually makes sense when there are - // multiple parallel routes. It's not a huge issue because you always have - // the option to define a narrower loading boundary for a particular slot. But - // this sort of smells like an implementation accident to me. - const loadingModuleData = parentCacheNode.loading; - let child = /*#__PURE__*/ (0, _jsxruntime.jsxs)(_approutercontextsharedruntime.TemplateContext.Provider, { - value: /*#__PURE__*/ (0, _jsxruntime.jsxs)(ScrollAndFocusHandler, { - segmentPath: segmentPath, - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(_errorboundary.ErrorBoundary, { - errorComponent: error, - errorStyles: errorStyles, - errorScripts: errorScripts, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(LoadingBoundary, { - name: debugNameToDisplay, - loading: loadingModuleData, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_errorboundary1.HTTPAccessFallbackBoundary, { - notFound: notFound, - forbidden: forbidden, - unauthorized: unauthorized, - children: /*#__PURE__*/ (0, _jsxruntime.jsxs)(_redirectboundary.RedirectBoundary, { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(InnerLayoutRouter, { - url: url, - tree: tree, - params: params, - cacheNode: cacheNode, - segmentPath: segmentPath, - debugNameContext: childDebugNameContext, - isActive: isActive && stateKey === activeStateKey - }), - segmentBoundaryTriggerNode - ] - }) - }) - }) - }), - segmentViewStateNode - ] - }), - children: [ - templateStyles, - templateScripts, - template - ] - }, stateKey); - if ("TURBOPACK compile-time truthy", 1) { - const { SegmentStateProvider } = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)"); - child = /*#__PURE__*/ (0, _jsxruntime.jsxs)(SegmentStateProvider, { - children: [ - child, - segmentViewBoundaries - ] - }, stateKey); - } - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - children.push(child); - bfcacheEntry = bfcacheEntry.next; - }while (bfcacheEntry !== null) - return children; -} -function getBoundaryDebugNameFromSegment(segment) { - if (segment === '/') { - // Reached the root - return '/'; - } - if (typeof segment === 'string') { - if (isVirtualLayout(segment)) { - return undefined; - } else { - return segment + '/'; - } - } - const paramCacheKey = segment[1]; - return paramCacheKey + '/'; -} -function isVirtualLayout(segment) { - return(// in a more special way instead of checking the name, to distinguish them - // from app-defined groups. - segment === '(slot)'); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=layout-router.js.map -}), -"[project]/node_modules/next/dist/client/components/render-from-template-context.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return RenderFromTemplateContext; - } -}); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -function RenderFromTemplateContext() { - const children = (0, _react.useContext)(_approutercontextsharedruntime.TemplateContext); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_jsxruntime.Fragment, { - children: children - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=render-from-template-context.js.map -}), -"[project]/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ReflectAdapter", { - enumerable: true, - get: function() { - return ReflectAdapter; - } -}); -class ReflectAdapter { - static get(target, prop, receiver) { - const value = Reflect.get(target, prop, receiver); - if (typeof value === 'function') { - return value.bind(target); - } - return value; - } - static set(target, prop, value, receiver) { - return Reflect.set(target, prop, value, receiver); - } - static has(target, prop) { - return Reflect.has(target, prop); - } - static deleteProperty(target, prop) { - return Reflect.deleteProperty(target, prop); - } -} //# sourceMappingURL=reflect.js.map -}), -"[project]/node_modules/next/dist/shared/lib/utils/reflect-utils.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// This regex will have fast negatives meaning valid identifiers may not pass -// this test. However this is only used during static generation to provide hints -// about why a page bailed out of some or all prerendering and we can use bracket notation -// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']` -// even if this would have been fine too `searchParams.ಠ_ಠ` -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - describeHasCheckingStringProperty: null, - describeStringPropertyAccess: null, - wellKnownProperties: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - describeHasCheckingStringProperty: function() { - return describeHasCheckingStringProperty; - }, - describeStringPropertyAccess: function() { - return describeStringPropertyAccess; - }, - wellKnownProperties: function() { - return wellKnownProperties; - } -}); -const isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/; -function describeStringPropertyAccess(target, prop) { - if (isDefinitelyAValidIdentifier.test(prop)) { - return `\`${target}.${prop}\``; - } - return `\`${target}[${JSON.stringify(prop)}]\``; -} -function describeHasCheckingStringProperty(target, prop) { - const stringifiedProp = JSON.stringify(prop); - return `\`Reflect.has(${target}, ${stringifiedProp})\`, \`${stringifiedProp} in ${target}\`, or similar`; -} -const wellKnownProperties = new Set([ - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toString', - 'valueOf', - 'toLocaleString', - // Promise prototype - 'then', - 'catch', - 'finally', - // React Promise extension - 'status', - // 'value', - // 'error', - // React introspection - 'displayName', - '_debugInfo', - // Common tested properties - 'toJSON', - '$$typeof', - '__esModule' -]); //# sourceMappingURL=reflect-utils.js.map -}), -"[project]/node_modules/next/dist/client/request/search-params.browser.dev.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createRenderSearchParamsFromClient", { - enumerable: true, - get: function() { - return createRenderSearchParamsFromClient; - } -}); -const _reflect = __turbopack_context__.r("[project]/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js [app-client] (ecmascript)"); -const _reflectutils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/reflect-utils.js [app-client] (ecmascript)"); -const CachedSearchParams = new WeakMap(); -function makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams) { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const proxiedProperties = new Set(); - const promise = Promise.resolve(underlyingSearchParams); - Object.keys(underlyingSearchParams).forEach((prop)=>{ - if (_reflectutils.wellKnownProperties.has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (typeof prop === 'string') { - if (!_reflectutils.wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, _reflectutils.describeStringPropertyAccess)('searchParams', prop); - warnForSyncAccess(expression); - } - } - return _reflect.ReflectAdapter.get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return Reflect.set(target, prop, value, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (!_reflectutils.wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, _reflectutils.describeHasCheckingStringProperty)('searchParams', prop); - warnForSyncAccess(expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - warnForSyncSpread(); - return Reflect.ownKeys(target); - } - }); - CachedSearchParams.set(underlyingSearchParams, proxiedPromise); - return proxiedPromise; -} -function warnForSyncAccess(expression) { - console.error(`A searchParam property was accessed directly with ${expression}. ` + `\`searchParams\` is a Promise and must be unwrapped with \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`); -} -function warnForSyncSpread() { - console.error(`The keys of \`searchParams\` were accessed directly. ` + `\`searchParams\` is a Promise and must be unwrapped with \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`); -} -function createRenderSearchParamsFromClient(underlyingSearchParams) { - return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=search-params.browser.dev.js.map -}), -"[project]/node_modules/next/dist/client/request/search-params.browser.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createRenderSearchParamsFromClient", { - enumerable: true, - get: function() { - return createRenderSearchParamsFromClient; - } -}); -const createRenderSearchParamsFromClient = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/client/request/search-params.browser.dev.js [app-client] (ecmascript)").createRenderSearchParamsFromClient : "TURBOPACK unreachable"; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=search-params.browser.js.map -}), -"[project]/node_modules/next/dist/client/request/params.browser.dev.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createRenderParamsFromClient", { - enumerable: true, - get: function() { - return createRenderParamsFromClient; - } -}); -const _reflect = __turbopack_context__.r("[project]/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js [app-client] (ecmascript)"); -const _reflectutils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/reflect-utils.js [app-client] (ecmascript)"); -const CachedParams = new WeakMap(); -function makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = Promise.resolve(underlyingParams); - const proxiedProperties = new Set(); - Object.keys(underlyingParams).forEach((prop)=>{ - if (_reflectutils.wellKnownProperties.has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (typeof prop === 'string') { - if (proxiedProperties.has(prop)) { - const expression = (0, _reflectutils.describeStringPropertyAccess)('params', prop); - warnForSyncAccess(expression); - } - } - return _reflect.ReflectAdapter.get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return _reflect.ReflectAdapter.set(target, prop, value, receiver); - }, - ownKeys (target) { - warnForEnumeration(); - return Reflect.ownKeys(target); - } - }); - CachedParams.set(underlyingParams, proxiedPromise); - return proxiedPromise; -} -function warnForSyncAccess(expression) { - console.error(`A param property was accessed directly with ${expression}. ` + `\`params\` is a Promise and must be unwrapped with \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`); -} -function warnForEnumeration() { - console.error(`params are being enumerated. ` + `\`params\` is a Promise and must be unwrapped with \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`); -} -function createRenderParamsFromClient(clientParams) { - return makeDynamicallyTrackedParamsWithDevWarnings(clientParams); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=params.browser.dev.js.map -}), -"[project]/node_modules/next/dist/client/request/params.browser.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createRenderParamsFromClient", { - enumerable: true, - get: function() { - return createRenderParamsFromClient; - } -}); -const createRenderParamsFromClient = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/client/request/params.browser.dev.js [app-client] (ecmascript)").createRenderParamsFromClient : "TURBOPACK unreachable"; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=params.browser.js.map -}), -"[project]/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createDedupedByCallsiteServerErrorLoggerDev", { - enumerable: true, - get: function() { - return createDedupedByCallsiteServerErrorLoggerDev; - } -}); -const _react = /*#__PURE__*/ _interop_require_wildcard(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -function _getRequireWildcardCache(nodeInterop) { - if (typeof WeakMap !== "function") return null; - var cacheBabelInterop = new WeakMap(); - var cacheNodeInterop = new WeakMap(); - return (_getRequireWildcardCache = function(nodeInterop) { - return nodeInterop ? cacheNodeInterop : cacheBabelInterop; - })(nodeInterop); -} -function _interop_require_wildcard(obj, nodeInterop) { - if (!nodeInterop && obj && obj.__esModule) { - return obj; - } - if (obj === null || typeof obj !== "object" && typeof obj !== "function") { - return { - default: obj - }; - } - var cache = _getRequireWildcardCache(nodeInterop); - if (cache && cache.has(obj)) { - return cache.get(obj); - } - var newObj = { - __proto__: null - }; - var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; - for(var key in obj){ - if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { - var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; - if (desc && (desc.get || desc.set)) { - Object.defineProperty(newObj, key, desc); - } else { - newObj[key] = obj[key]; - } - } - } - newObj.default = obj; - if (cache) { - cache.set(obj, newObj); - } - return newObj; -} -const errorRef = { - current: null -}; -// React.cache is currently only available in canary/experimental React channels. -const cache = typeof _react.cache === 'function' ? _react.cache : (fn)=>fn; -// When Cache Components is enabled, we record these as errors so that they -// are captured by the dev overlay as it's more critical to fix these -// when enabled. -const logErrorOrWarn = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : console.warn; -// We don't want to dedupe across requests. -// The developer might've just attempted to fix the warning so we should warn again if it still happens. -const flushCurrentErrorIfNew = cache((key)=>{ - try { - logErrorOrWarn(errorRef.current); - } finally{ - errorRef.current = null; - } -}); -function createDedupedByCallsiteServerErrorLoggerDev(getMessage) { - return function logDedupedError(...args) { - const message = getMessage(...args); - if ("TURBOPACK compile-time truthy", 1) { - var _stack; - const callStackFrames = (_stack = new Error().stack) == null ? void 0 : _stack.split('\n'); - if (callStackFrames === undefined || callStackFrames.length < 4) { - logErrorOrWarn(message); - } else { - // Error: - // logDedupedError - // asyncApiBeingAccessedSynchronously - // <userland callsite> - // TODO: This breaks if sourcemaps with ignore lists are enabled. - const key = callStackFrames[4]; - errorRef.current = message; - flushCurrentErrorIfNew(key); - } - } else //TURBOPACK unreachable - ; - }; -} //# sourceMappingURL=create-deduped-by-callsite-server-error-logger.js.map -}), -"[project]/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "afterTaskAsyncStorageInstance", { - enumerable: true, - get: function() { - return afterTaskAsyncStorageInstance; - } -}); -const _asynclocalstorage = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/async-local-storage.js [app-client] (ecmascript)"); -const afterTaskAsyncStorageInstance = (0, _asynclocalstorage.createAsyncLocalStorage)(); //# sourceMappingURL=after-task-async-storage-instance.js.map -}), -"[project]/node_modules/next/dist/server/app-render/after-task-async-storage.external.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "afterTaskAsyncStorage", { - enumerable: true, - get: function() { - return _aftertaskasyncstorageinstance.afterTaskAsyncStorageInstance; - } -}); -const _aftertaskasyncstorageinstance = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js [app-client] (ecmascript)"); //# sourceMappingURL=after-task-async-storage.external.js.map -}), -"[project]/node_modules/next/dist/server/request/utils.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - isRequestAPICallableInsideAfter: null, - throwForSearchParamsAccessInUseCache: null, - throwWithStaticGenerationBailoutErrorWithDynamicError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - isRequestAPICallableInsideAfter: function() { - return isRequestAPICallableInsideAfter; - }, - throwForSearchParamsAccessInUseCache: function() { - return throwForSearchParamsAccessInUseCache; - }, - throwWithStaticGenerationBailoutErrorWithDynamicError: function() { - return throwWithStaticGenerationBailoutErrorWithDynamicError; - } -}); -const _staticgenerationbailout = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/static-generation-bailout.js [app-client] (ecmascript)"); -const _aftertaskasyncstorageexternal = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/after-task-async-storage.external.js [app-client] (ecmascript)"); -function throwWithStaticGenerationBailoutErrorWithDynamicError(route, expression) { - throw Object.defineProperty(new _staticgenerationbailout.StaticGenBailoutError(`Route ${route} with \`dynamic = "error"\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E543", - enumerable: false, - configurable: true - }); -} -function throwForSearchParamsAccessInUseCache(workStore, constructorOpt) { - const error = Object.defineProperty(new Error(`Route ${workStore.route} used \`searchParams\` inside "use cache". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \`searchParams\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`), "__NEXT_ERROR_CODE", { - value: "E842", - enumerable: false, - configurable: true - }); - Error.captureStackTrace(error, constructorOpt); - workStore.invalidDynamicUsageError ??= error; - throw error; -} -function isRequestAPICallableInsideAfter() { - const afterTaskStore = _aftertaskasyncstorageexternal.afterTaskAsyncStorage.getStore(); - return (afterTaskStore == null ? void 0 : afterTaskStore.rootTaskSpawnPhase) === 'action'; -} //# sourceMappingURL=utils.js.map -}), -"[project]/node_modules/next/dist/server/app-render/staged-rendering.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - RenderStage: null, - StagedRenderingController: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - RenderStage: function() { - return RenderStage; - }, - StagedRenderingController: function() { - return StagedRenderingController; - } -}); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -const _promisewithresolvers = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/promise-with-resolvers.js [app-client] (ecmascript)"); -var RenderStage = /*#__PURE__*/ function(RenderStage) { - RenderStage[RenderStage["Before"] = 1] = "Before"; - RenderStage[RenderStage["Static"] = 2] = "Static"; - RenderStage[RenderStage["Runtime"] = 3] = "Runtime"; - RenderStage[RenderStage["Dynamic"] = 4] = "Dynamic"; - RenderStage[RenderStage["Abandoned"] = 5] = "Abandoned"; - return RenderStage; -}({}); -class StagedRenderingController { - constructor(abortSignal = null, hasRuntimePrefetch){ - this.abortSignal = abortSignal; - this.hasRuntimePrefetch = hasRuntimePrefetch; - this.currentStage = 1; - this.staticInterruptReason = null; - this.runtimeInterruptReason = null; - this.staticStageEndTime = Infinity; - this.runtimeStageEndTime = Infinity; - this.runtimeStageListeners = []; - this.dynamicStageListeners = []; - this.runtimeStagePromise = (0, _promisewithresolvers.createPromiseWithResolvers)(); - this.dynamicStagePromise = (0, _promisewithresolvers.createPromiseWithResolvers)(); - this.mayAbandon = false; - if (abortSignal) { - abortSignal.addEventListener('abort', ()=>{ - const { reason } = abortSignal; - if (this.currentStage < 3) { - this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.runtimeStagePromise.reject(reason); - } - if (this.currentStage < 4 || this.currentStage === 5) { - this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections - ; - this.dynamicStagePromise.reject(reason); - } - }, { - once: true - }); - this.mayAbandon = true; - } - } - onStage(stage, callback) { - if (this.currentStage >= stage) { - callback(); - } else if (stage === 3) { - this.runtimeStageListeners.push(callback); - } else if (stage === 4) { - this.dynamicStageListeners.push(callback); - } else { - // This should never happen - throw Object.defineProperty(new _invarianterror.InvariantError(`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - canSyncInterrupt() { - // If we haven't started the render yet, it can't be interrupted. - if (this.currentStage === 1) { - return false; - } - const boundaryStage = this.hasRuntimePrefetch ? 4 : 3; - return this.currentStage < boundaryStage; - } - syncInterruptCurrentStageWithReason(reason) { - if (this.currentStage === 1) { - return; - } - // If Sync IO occurs during the initial (abandonable) render, we'll retry it, - // so we want a slightly different flow. - // See the implementation of `abandonRenderImpl` for more explanation. - if (this.mayAbandon) { - return this.abandonRenderImpl(); - } - // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage - // and capture the interruption reason. - switch(this.currentStage){ - case 2: - { - this.staticInterruptReason = reason; - this.advanceStage(4); - return; - } - case 3: - { - // We only error for Sync IO in the runtime stage if the route - // is configured to use runtime prefetching. - // We do this to reflect the fact that during a runtime prefetch, - // Sync IO aborts aborts the render. - // Note that `canSyncInterrupt` should prevent us from getting here at all - // if runtime prefetching isn't enabled. - if (this.hasRuntimePrefetch) { - this.runtimeInterruptReason = reason; - this.advanceStage(4); - } - return; - } - case 4: - case 5: - default: - } - } - getStaticInterruptReason() { - return this.staticInterruptReason; - } - getRuntimeInterruptReason() { - return this.runtimeInterruptReason; - } - getStaticStageEndTime() { - return this.staticStageEndTime; - } - getRuntimeStageEndTime() { - return this.runtimeStageEndTime; - } - abandonRender() { - if (!this.mayAbandon) { - throw Object.defineProperty(new _invarianterror.InvariantError('`abandonRender` called on a stage controller that cannot be abandoned.'), "__NEXT_ERROR_CODE", { - value: "E938", - enumerable: false, - configurable: true - }); - } - this.abandonRenderImpl(); - } - abandonRenderImpl() { - // In staged rendering, only the initial render is abandonable. - // We can abandon the initial render if - // 1. We notice a cache miss, and need to wait for caches to fill - // 2. A sync IO error occurs, and the render should be interrupted - // (this might be a lazy intitialization of a module, - // so we still want to restart in this case and see if it still occurs) - // In either case, we'll be doing another render after this one, - // so we only want to unblock the Runtime stage, not Dynamic, because - // unblocking the dynamic stage would likely lead to wasted (uncached) IO. - const { currentStage } = this; - switch(currentStage){ - case 2: - { - this.currentStage = 5; - this.resolveRuntimeStage(); - return; - } - case 3: - { - this.currentStage = 5; - return; - } - case 4: - case 1: - case 5: - break; - default: - { - currentStage; - } - } - } - advanceStage(stage) { - // If we're already at the target stage or beyond, do nothing. - // (this can happen e.g. if sync IO advanced us to the dynamic stage) - if (stage <= this.currentStage) { - return; - } - let currentStage = this.currentStage; - this.currentStage = stage; - if (currentStage < 3 && stage >= 3) { - this.staticStageEndTime = performance.now() + performance.timeOrigin; - this.resolveRuntimeStage(); - } - if (currentStage < 4 && stage >= 4) { - this.runtimeStageEndTime = performance.now() + performance.timeOrigin; - this.resolveDynamicStage(); - return; - } - } - /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */ resolveRuntimeStage() { - const runtimeListeners = this.runtimeStageListeners; - for(let i = 0; i < runtimeListeners.length; i++){ - runtimeListeners[i](); - } - runtimeListeners.length = 0; - this.runtimeStagePromise.resolve(); - } - /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */ resolveDynamicStage() { - const dynamicListeners = this.dynamicStageListeners; - for(let i = 0; i < dynamicListeners.length; i++){ - dynamicListeners[i](); - } - dynamicListeners.length = 0; - this.dynamicStagePromise.resolve(); - } - getStagePromise(stage) { - switch(stage){ - case 3: - { - return this.runtimeStagePromise.promise; - } - case 4: - { - return this.dynamicStagePromise.promise; - } - default: - { - stage; - throw Object.defineProperty(new _invarianterror.InvariantError(`Invalid render stage: ${stage}`), "__NEXT_ERROR_CODE", { - value: "E881", - enumerable: false, - configurable: true - }); - } - } - } - waitForStage(stage) { - return this.getStagePromise(stage); - } - delayUntilStage(stage, displayName, resolvedValue) { - const ioTriggerPromise = this.getStagePromise(stage); - const promise = makeDevtoolsIOPromiseFromIOTrigger(ioTriggerPromise, displayName, resolvedValue); - // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked. - // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it). - // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning. - if (this.abortSignal) { - promise.catch(ignoreReject); - } - return promise; - } -} -function ignoreReject() {} -// TODO(restart-on-cache-miss): the layering of `delayUntilStage`, -// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise` -// is confusing, we should clean it up. -function makeDevtoolsIOPromiseFromIOTrigger(ioTrigger, displayName, resolvedValue) { - // If we create a `new Promise` and give it a displayName - // (with no userspace code above us in the stack) - // React Devtools will use it as the IO cause when determining "suspended by". - // In particular, it should shadow any inner IO that resolved/rejected the promise - // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage) - const promise = new Promise((resolve, reject)=>{ - ioTrigger.then(resolve.bind(null, resolvedValue), reject); - }); - if (displayName !== undefined) { - // @ts-expect-error - promise.displayName = displayName; - } - return promise; -} //# sourceMappingURL=staged-rendering.js.map -}), -"[project]/node_modules/next/dist/server/request/search-params.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createPrerenderSearchParamsForClientPage: null, - createSearchParamsFromClient: null, - createServerSearchParamsForMetadata: null, - createServerSearchParamsForServerPage: null, - makeErroringSearchParamsForUseCache: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createPrerenderSearchParamsForClientPage: function() { - return createPrerenderSearchParamsForClientPage; - }, - createSearchParamsFromClient: function() { - return createSearchParamsFromClient; - }, - createServerSearchParamsForMetadata: function() { - return createServerSearchParamsForMetadata; - }, - createServerSearchParamsForServerPage: function() { - return createServerSearchParamsForServerPage; - }, - makeErroringSearchParamsForUseCache: function() { - return makeErroringSearchParamsForUseCache; - } -}); -const _reflect = __turbopack_context__.r("[project]/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js [app-client] (ecmascript)"); -const _dynamicrendering = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/dynamic-rendering.js [app-client] (ecmascript)"); -const _workunitasyncstorageexternal = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -const _dynamicrenderingutils = __turbopack_context__.r("[project]/node_modules/next/dist/server/dynamic-rendering-utils.js [app-client] (ecmascript)"); -const _creatededupedbycallsiteservererrorlogger = __turbopack_context__.r("[project]/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js [app-client] (ecmascript)"); -const _reflectutils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/reflect-utils.js [app-client] (ecmascript)"); -const _utils = __turbopack_context__.r("[project]/node_modules/next/dist/server/request/utils.js [app-client] (ecmascript)"); -const _stagedrendering = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/staged-rendering.js [app-client] (ecmascript)"); -function createSearchParamsFromClient(underlyingSearchParams, workStore) { - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'prerender-runtime': - throw Object.defineProperty(new _invarianterror.InvariantError('createSearchParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E769", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new _invarianterror.InvariantError('createSearchParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E739", - enumerable: false, - configurable: true - }); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, _workunitasyncstorageexternal.throwInvariantForMissingStore)(); -} -const createServerSearchParamsForMetadata = createServerSearchParamsForServerPage; -function createServerSearchParamsForServerPage(underlyingSearchParams, workStore) { - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderSearchParams(workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new _invarianterror.InvariantError('createServerSearchParamsForServerPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E747", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore); - case 'request': - return createRenderSearchParams(underlyingSearchParams, workStore, workUnitStore); - default: - workUnitStore; - } - } - (0, _workunitasyncstorageexternal.throwInvariantForMissingStore)(); -} -function createPrerenderSearchParamsForClientPage(workStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - // We're prerendering in a mode that aborts (cacheComponents) and should stall - // the promise to ensure the RSC side is considered dynamic - return (0, _dynamicrenderingutils.makeHangingPromise)(workUnitStore.renderSignal, workStore.route, '`searchParams`'); - case 'prerender-runtime': - throw Object.defineProperty(new _invarianterror.InvariantError('createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E768", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new _invarianterror.InvariantError('createPrerenderSearchParamsForClientPage should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E746", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - return Promise.resolve({}); - default: - workUnitStore; - } - } - (0, _workunitasyncstorageexternal.throwInvariantForMissingStore)(); -} -function createStaticPrerenderSearchParams(workStore, prerenderStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - // We are in a cacheComponents (PPR or otherwise) prerender - return makeHangingSearchParams(workStore, prerenderStore); - case 'prerender-ppr': - case 'prerender-legacy': - // We are in a legacy static generation and need to interrupt the - // prerender when search params are accessed. - return makeErroringSearchParams(workStore, prerenderStore); - default: - return prerenderStore; - } -} -function createRuntimePrerenderSearchParams(underlyingSearchParams, workUnitStore) { - return (0, _dynamicrendering.delayUntilRuntimeStage)(workUnitStore, makeUntrackedSearchParams(underlyingSearchParams)); -} -function createRenderSearchParams(underlyingSearchParams, workStore, requestStore) { - if (workStore.forceStatic) { - // When using forceStatic we override all other logic and always just return an empty - // dictionary object. - return Promise.resolve({}); - } else { - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore); - } else //TURBOPACK unreachable - ; - } -} -const CachedSearchParams = new WeakMap(); -const CachedSearchParamsForUseCache = new WeakMap(); -function makeHangingSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(prerenderStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = (0, _dynamicrenderingutils.makeHangingPromise)(prerenderStore.renderSignal, workStore.route, '`searchParams`'); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return _reflect.ReflectAdapter.get(target, prop, receiver); - } - switch(prop){ - case 'then': - { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - (0, _dynamicrendering.annotateDynamicAccess)(expression, prerenderStore); - return _reflect.ReflectAdapter.get(target, prop, receiver); - } - case 'status': - { - const expression = '`use(searchParams)`, `searchParams.status`, or similar'; - (0, _dynamicrendering.annotateDynamicAccess)(expression, prerenderStore); - return _reflect.ReflectAdapter.get(target, prop, receiver); - } - default: - { - return _reflect.ReflectAdapter.get(target, prop, receiver); - } - } - } - }); - CachedSearchParams.set(prerenderStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParams(workStore, prerenderStore) { - const cachedSearchParams = CachedSearchParams.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const underlyingSearchParams = {}; - // For search params we don't construct a ReactPromise because we want to interrupt - // rendering on any property access that was not set from outside and so we only want - // to have properties like value and status if React sets them. - const promise = Promise.resolve(underlyingSearchParams); - const proxiedPromise = new Proxy(promise, { - get (target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. - // We know it isn't a dynamic access because it can only be something - // that was previously written to the promise and thus not an underlying searchParam value - return _reflect.ReflectAdapter.get(target, prop, receiver); - } - if (typeof prop === 'string' && prop === 'then') { - const expression = '`await searchParams`, `searchParams.then`, or similar'; - if (workStore.dynamicShouldError) { - (0, _utils.throwWithStaticGenerationBailoutErrorWithDynamicError)(workStore.route, expression); - } else if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, _dynamicrendering.postponeWithTracking)(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, _dynamicrendering.throwToInterruptStaticGeneration)(expression, workStore, prerenderStore); - } - } - return _reflect.ReflectAdapter.get(target, prop, receiver); - } - }); - CachedSearchParams.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeErroringSearchParamsForUseCache(workStore) { - const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve({}); - const proxiedPromise = new Proxy(promise, { - get: function get(target, prop, receiver) { - if (Object.hasOwn(promise, prop)) { - // The promise has this property directly. we must return it. We know it - // isn't a dynamic access because it can only be something that was - // previously written to the promise and thus not an underlying - // searchParam value - return _reflect.ReflectAdapter.get(target, prop, receiver); - } - if (typeof prop === 'string' && (prop === 'then' || !_reflectutils.wellKnownProperties.has(prop))) { - (0, _utils.throwForSearchParamsAccessInUseCache)(workStore, get); - } - return _reflect.ReflectAdapter.get(target, prop, receiver); - } - }); - CachedSearchParamsForUseCache.set(workStore, proxiedPromise); - return proxiedPromise; -} -function makeUntrackedSearchParams(underlyingSearchParams) { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = Promise.resolve(underlyingSearchParams); - CachedSearchParams.set(underlyingSearchParams, promise); - return promise; -} -function makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams, workStore, requestStore) { - if (requestStore.asyncApiPromises) { - // Do not cache the resulting promise. If we do, we'll only show the first "awaited at" - // across all segments that receive searchParams. - return makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - } else { - const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams); - if (cachedSearchParams) { - return cachedSearchParams; - } - const promise = makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore); - CachedSearchParams.set(requestStore, promise); - return promise; - } -} -function makeUntrackedSearchParamsWithDevWarningsImpl(underlyingSearchParams, workStore, requestStore) { - const promiseInitialized = { - current: false - }; - const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized); - let promise; - if (requestStore.asyncApiPromises) { - // We wrap each instance of searchParams in a `new Promise()`. - // This is important when all awaits are in third party which would otherwise - // track all the way to the internal params. - const sharedSearchParamsParent = requestStore.asyncApiPromises.sharedSearchParamsParent; - promise = new Promise((resolve, reject)=>{ - sharedSearchParamsParent.then(()=>resolve(proxiedUnderlying), reject); - }); - // @ts-expect-error - promise.displayName = 'searchParams'; - } else { - promise = (0, _dynamicrenderingutils.makeDevtoolsIOAwarePromise)(proxiedUnderlying, requestStore, _stagedrendering.RenderStage.Runtime); - } - promise.then(()=>{ - promiseInitialized.current = true; - }, // is aborted before it can reach the runtime stage. - // In that case, we have to prevent an unhandled rejection from the promise - // created by this `.then()` call. - // This does not affect the `promiseInitialized` logic above, - // because `proxiedUnderlying` will not be used to resolve the promise, - // so there's no risk of any of its properties being accessed and triggering - // an undesireable warning. - ignoreReject); - return instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore); -} -function ignoreReject() {} -function instrumentSearchParamsObjectWithDevWarnings(underlyingSearchParams, workStore, promiseInitialized) { - // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying - // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender - // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking - // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger - // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce - // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise. - return new Proxy(underlyingSearchParams, { - get (target, prop, receiver) { - if (typeof prop === 'string' && promiseInitialized.current) { - if (workStore.dynamicShouldError) { - const expression = (0, _reflectutils.describeStringPropertyAccess)('searchParams', prop); - (0, _utils.throwWithStaticGenerationBailoutErrorWithDynamicError)(workStore.route, expression); - } - } - return _reflect.ReflectAdapter.get(target, prop, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (workStore.dynamicShouldError) { - const expression = (0, _reflectutils.describeHasCheckingStringProperty)('searchParams', prop); - (0, _utils.throwWithStaticGenerationBailoutErrorWithDynamicError)(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - if (workStore.dynamicShouldError) { - const expression = '`{...searchParams}`, `Object.keys(searchParams)`, or similar'; - (0, _utils.throwWithStaticGenerationBailoutErrorWithDynamicError)(workStore.route, expression); - } - return Reflect.ownKeys(target); - } - }); -} -function instrumentSearchParamsPromiseWithDevWarnings(underlyingSearchParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingSearchParams).forEach((prop)=>{ - if (_reflectutils.wellKnownProperties.has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (prop === 'then' && workStore.dynamicShouldError) { - const expression = '`searchParams.then`'; - (0, _utils.throwWithStaticGenerationBailoutErrorWithDynamicError)(workStore.route, expression); - } - if (typeof prop === 'string') { - if (!_reflectutils.wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, _reflectutils.describeStringPropertyAccess)('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return _reflect.ReflectAdapter.get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return Reflect.set(target, prop, value, receiver); - }, - has (target, prop) { - if (typeof prop === 'string') { - if (!_reflectutils.wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor - // the underlying searchParams. - Reflect.has(target, prop) === false)) { - const expression = (0, _reflectutils.describeHasCheckingStringProperty)('searchParams', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return Reflect.has(target, prop); - }, - ownKeys (target) { - const expression = '`Object.keys(searchParams)` or similar'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, _creatededupedbycallsiteservererrorlogger.createDedupedByCallsiteServerErrorLoggerDev)(createSearchAccessError); -function createSearchAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`searchParams\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E848", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=search-params.js.map -}), -"[project]/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "dynamicAccessAsyncStorageInstance", { - enumerable: true, - get: function() { - return dynamicAccessAsyncStorageInstance; - } -}); -const _asynclocalstorage = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/async-local-storage.js [app-client] (ecmascript)"); -const dynamicAccessAsyncStorageInstance = (0, _asynclocalstorage.createAsyncLocalStorage)(); //# sourceMappingURL=dynamic-access-async-storage-instance.js.map -}), -"[project]/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "dynamicAccessAsyncStorage", { - enumerable: true, - get: function() { - return _dynamicaccessasyncstorageinstance.dynamicAccessAsyncStorageInstance; - } -}); -const _dynamicaccessasyncstorageinstance = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js [app-client] (ecmascript)"); //# sourceMappingURL=dynamic-access-async-storage.external.js.map -}), -"[project]/node_modules/next/dist/server/request/params.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createParamsFromClient: null, - createPrerenderParamsForClientSegment: null, - createServerParamsForMetadata: null, - createServerParamsForRoute: null, - createServerParamsForServerSegment: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createParamsFromClient: function() { - return createParamsFromClient; - }, - createPrerenderParamsForClientSegment: function() { - return createPrerenderParamsForClientSegment; - }, - createServerParamsForMetadata: function() { - return createServerParamsForMetadata; - }, - createServerParamsForRoute: function() { - return createServerParamsForRoute; - }, - createServerParamsForServerSegment: function() { - return createServerParamsForServerSegment; - } -}); -const _workasyncstorageexternal = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-async-storage.external.js [app-client] (ecmascript)"); -const _reflect = __turbopack_context__.r("[project]/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js [app-client] (ecmascript)"); -const _dynamicrendering = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/dynamic-rendering.js [app-client] (ecmascript)"); -const _workunitasyncstorageexternal = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -const _reflectutils = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/reflect-utils.js [app-client] (ecmascript)"); -const _dynamicrenderingutils = __turbopack_context__.r("[project]/node_modules/next/dist/server/dynamic-rendering-utils.js [app-client] (ecmascript)"); -const _creatededupedbycallsiteservererrorlogger = __turbopack_context__.r("[project]/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js [app-client] (ecmascript)"); -const _dynamicaccessasyncstorageexternal = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js [app-client] (ecmascript)"); -const _stagedrendering = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/staged-rendering.js [app-client] (ecmascript)"); -function createParamsFromClient(underlyingParams, workStore) { - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new _invarianterror.InvariantError('createParamsFromClient should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E736", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - throw Object.defineProperty(new _invarianterror.InvariantError('createParamsFromClient should not be called in a runtime prerender.'), "__NEXT_ERROR_CODE", { - value: "E770", - enumerable: false, - configurable: true - }); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, _workunitasyncstorageexternal.throwInvariantForMissingStore)(); -} -const createServerParamsForMetadata = createServerParamsForServerSegment; -function createServerParamsForRoute(underlyingParams, workStore) { - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new _invarianterror.InvariantError('createServerParamsForRoute should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E738", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, _workunitasyncstorageexternal.throwInvariantForMissingStore)(); -} -function createServerParamsForServerSegment(underlyingParams, workStore) { - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - return createStaticPrerenderParams(underlyingParams, workStore, workUnitStore); - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new _invarianterror.InvariantError('createServerParamsForServerSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E743", - enumerable: false, - configurable: true - }); - case 'prerender-runtime': - return createRuntimePrerenderParams(underlyingParams, workUnitStore); - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - // Semantically we only need the dev tracking when running in `next dev` - // but since you would never use next dev with production NODE_ENV we use this - // as a proxy so we can statically exclude this code from production builds. - const devFallbackParams = workUnitStore.devFallbackParams; - return createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, workUnitStore); - } else //TURBOPACK unreachable - ; - default: - workUnitStore; - } - } - (0, _workunitasyncstorageexternal.throwInvariantForMissingStore)(); -} -function createPrerenderParamsForClientSegment(underlyingParams) { - const workStore = _workasyncstorageexternal.workAsyncStorage.getStore(); - if (!workStore) { - throw Object.defineProperty(new _invarianterror.InvariantError('Missing workStore in createPrerenderParamsForClientSegment'), "__NEXT_ERROR_CODE", { - value: "E773", - enumerable: false, - configurable: true - }); - } - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams) { - for(let key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return (0, _dynamicrenderingutils.makeHangingPromise)(workUnitStore.renderSignal, workStore.route, '`params`'); - } - } - } - break; - case 'cache': - case 'private-cache': - case 'unstable-cache': - throw Object.defineProperty(new _invarianterror.InvariantError('createPrerenderParamsForClientSegment should not be called in cache contexts.'), "__NEXT_ERROR_CODE", { - value: "E734", - enumerable: false, - configurable: true - }); - case 'prerender-ppr': - case 'prerender-legacy': - case 'prerender-runtime': - case 'request': - break; - default: - workUnitStore; - } - } - // We're prerendering in a mode that does not abort. We resolve the promise without - // any tracking because we're just transporting a value from server to client where the tracking - // will be applied. - return Promise.resolve(underlyingParams); -} -function createStaticPrerenderParams(underlyingParams, workStore, prerenderStore) { - switch(prerenderStore.type){ - case 'prerender': - case 'prerender-client': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - // This params object has one or more fallback params, so we need - // to consider the awaiting of this params object "dynamic". Since - // we are in cacheComponents mode we encode this as a promise that never - // resolves. - return makeHangingParams(underlyingParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = prerenderStore.fallbackRouteParams; - if (fallbackParams) { - for(const key in underlyingParams){ - if (fallbackParams.has(key)) { - return makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore); - } - } - } - break; - } - case 'prerender-legacy': - break; - default: - prerenderStore; - } - return makeUntrackedParams(underlyingParams); -} -function createRuntimePrerenderParams(underlyingParams, workUnitStore) { - return (0, _dynamicrendering.delayUntilRuntimeStage)(workUnitStore, makeUntrackedParams(underlyingParams)); -} -function createRenderParamsInProd(underlyingParams) { - return makeUntrackedParams(underlyingParams); -} -function createRenderParamsInDev(underlyingParams, devFallbackParams, workStore, requestStore) { - let hasFallbackParams = false; - if (devFallbackParams) { - for(let key in underlyingParams){ - if (devFallbackParams.has(key)) { - hasFallbackParams = true; - break; - } - } - } - return makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore); -} -const CachedParams = new WeakMap(); -const fallbackParamsProxyHandler = { - get: function get(target, prop, receiver) { - if (prop === 'then' || prop === 'catch' || prop === 'finally') { - const originalMethod = _reflect.ReflectAdapter.get(target, prop, receiver); - return ({ - [prop]: (...args)=>{ - const store = _dynamicaccessasyncstorageexternal.dynamicAccessAsyncStorage.getStore(); - if (store) { - store.abortController.abort(Object.defineProperty(new Error(`Accessed fallback \`params\` during prerendering.`), "__NEXT_ERROR_CODE", { - value: "E691", - enumerable: false, - configurable: true - })); - } - return new Proxy(originalMethod.apply(target, args), fallbackParamsProxyHandler); - } - })[prop]; - } - return _reflect.ReflectAdapter.get(target, prop, receiver); - } -}; -function makeHangingParams(underlyingParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = new Proxy((0, _dynamicrenderingutils.makeHangingPromise)(prerenderStore.renderSignal, workStore.route, '`params`'), fallbackParamsProxyHandler); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeErroringParams(underlyingParams, fallbackParams, workStore, prerenderStore) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const augmentedUnderlying = { - ...underlyingParams - }; - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = Promise.resolve(augmentedUnderlying); - CachedParams.set(underlyingParams, promise); - Object.keys(underlyingParams).forEach((prop)=>{ - if (_reflectutils.wellKnownProperties.has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - if (fallbackParams.has(prop)) { - Object.defineProperty(augmentedUnderlying, prop, { - get () { - const expression = (0, _reflectutils.describeStringPropertyAccess)('params', prop); - // In most dynamic APIs we also throw if `dynamic = "error"` however - // for params is only dynamic when we're generating a fallback shell - // and even when `dynamic = "error"` we still support generating dynamic - // fallback shells - // TODO remove this comment when cacheComponents is the default since there - // will be no `dynamic = "error"` - if (prerenderStore.type === 'prerender-ppr') { - // PPR Prerender (no cacheComponents) - (0, _dynamicrendering.postponeWithTracking)(workStore.route, expression, prerenderStore.dynamicTracking); - } else { - // Legacy Prerender - (0, _dynamicrendering.throwToInterruptStaticGeneration)(expression, workStore, prerenderStore); - } - }, - enumerable: true - }); - } - } - }); - return promise; -} -function makeUntrackedParams(underlyingParams) { - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - const promise = Promise.resolve(underlyingParams); - CachedParams.set(underlyingParams, promise); - return promise; -} -function makeDynamicallyTrackedParamsWithDevWarnings(underlyingParams, hasFallbackParams, workStore, requestStore) { - if (requestStore.asyncApiPromises && hasFallbackParams) { - // We wrap each instance of params in a `new Promise()`, because deduping - // them across requests doesn't work anyway and this let us show each - // await a different set of values. This is important when all awaits - // are in third party which would otherwise track all the way to the - // internal params. - const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent; - const promise = new Promise((resolve, reject)=>{ - sharedParamsParent.then(()=>resolve(underlyingParams), reject); - }); - // @ts-expect-error - promise.displayName = 'params'; - return instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - } - const cachedParams = CachedParams.get(underlyingParams); - if (cachedParams) { - return cachedParams; - } - // We don't use makeResolvedReactPromise here because params - // supports copying with spread and we don't want to unnecessarily - // instrument the promise with spreadable properties of ReactPromise. - const promise = hasFallbackParams ? (0, _dynamicrenderingutils.makeDevtoolsIOAwarePromise)(underlyingParams, requestStore, _stagedrendering.RenderStage.Runtime) : Promise.resolve(underlyingParams); - const proxiedPromise = instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore); - CachedParams.set(underlyingParams, proxiedPromise); - return proxiedPromise; -} -function instrumentParamsPromiseWithDevWarnings(underlyingParams, promise, workStore) { - // Track which properties we should warn for. - const proxiedProperties = new Set(); - Object.keys(underlyingParams).forEach((prop)=>{ - if (_reflectutils.wellKnownProperties.has(prop)) { - // These properties cannot be shadowed because they need to be the - // true underlying value for Promises to work correctly at runtime - } else { - proxiedProperties.add(prop); - } - }); - return new Proxy(promise, { - get (target, prop, receiver) { - if (typeof prop === 'string') { - if (proxiedProperties.has(prop)) { - const expression = (0, _reflectutils.describeStringPropertyAccess)('params', prop); - warnForSyncAccess(workStore.route, expression); - } - } - return _reflect.ReflectAdapter.get(target, prop, receiver); - }, - set (target, prop, value, receiver) { - if (typeof prop === 'string') { - proxiedProperties.delete(prop); - } - return _reflect.ReflectAdapter.set(target, prop, value, receiver); - }, - ownKeys (target) { - const expression = '`...params` or similar expression'; - warnForSyncAccess(workStore.route, expression); - return Reflect.ownKeys(target); - } - }); -} -const warnForSyncAccess = (0, _creatededupedbycallsiteservererrorlogger.createDedupedByCallsiteServerErrorLoggerDev)(createParamsAccessError); -function createParamsAccessError(route, expression) { - const prefix = route ? `Route "${route}" ` : 'This route '; - return Object.defineProperty(new Error(`${prefix}used ${expression}. ` + `\`params\` is a Promise and must be unwrapped with \`await\` or \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`), "__NEXT_ERROR_CODE", { - value: "E834", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=params.js.map -}), -"[project]/node_modules/next/dist/client/components/client-page.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ClientPageRoot", { - enumerable: true, - get: function() { - return ClientPageRoot; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _routeparams = __turbopack_context__.r("[project]/node_modules/next/dist/client/route-params.js [app-client] (ecmascript)"); -const _hooksclientcontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js [app-client] (ecmascript)"); -function ClientPageRoot({ Component, serverProvidedParams }) { - let searchParams; - let params; - if (serverProvidedParams !== null) { - searchParams = serverProvidedParams.searchParams; - params = serverProvidedParams.params; - } else { - // When Cache Components is enabled, the server does not pass the params as - // props; they are parsed on the client and passed via context. - const layoutRouterContext = (0, _react.use)(_approutercontextsharedruntime.LayoutRouterContext); - params = layoutRouterContext !== null ? layoutRouterContext.parentParams : {}; - // This is an intentional behavior change: when Cache Components is enabled, - // client segments receive the "canonical" search params, not the - // rewritten ones. Users should either call useSearchParams directly or pass - // the rewritten ones in from a Server Component. - // TODO: Log a deprecation error when this object is accessed - searchParams = (0, _routeparams.urlSearchParamsToParsedUrlQuery)((0, _react.use)(_hooksclientcontextsharedruntime.SearchParamsContext)); - } - if (typeof window === 'undefined') { - const { workAsyncStorage } = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-async-storage.external.js [app-client] (ecmascript)"); - let clientSearchParams; - let clientParams; - // We are going to instrument the searchParams prop with tracking for the - // appropriate context. We wrap differently in prerendering vs rendering - const store = workAsyncStorage.getStore(); - if (!store) { - throw Object.defineProperty(new _invarianterror.InvariantError('Expected workStore to exist when handling searchParams in a client Page.'), "__NEXT_ERROR_CODE", { - value: "E564", - enumerable: false, - configurable: true - }); - } - const { createSearchParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/server/request/search-params.js [app-client] (ecmascript)"); - clientSearchParams = createSearchParamsFromClient(searchParams, store); - const { createParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/server/request/params.js [app-client] (ecmascript)"); - clientParams = createParamsFromClient(params, store); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(Component, { - params: clientParams, - searchParams: clientSearchParams - }); - } else { - const { createRenderSearchParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/client/request/search-params.browser.js [app-client] (ecmascript)"); - const clientSearchParams = createRenderSearchParamsFromClient(searchParams); - const { createRenderParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/client/request/params.browser.js [app-client] (ecmascript)"); - const clientParams = createRenderParamsFromClient(params); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(Component, { - params: clientParams, - searchParams: clientSearchParams - }); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=client-page.js.map -}), -"[project]/node_modules/next/dist/client/components/client-segment.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ClientSegmentRoot", { - enumerable: true, - get: function() { - return ClientSegmentRoot; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -function ClientSegmentRoot({ Component, slots, serverProvidedParams }) { - let params; - if (serverProvidedParams !== null) { - params = serverProvidedParams.params; - } else { - // When Cache Components is enabled, the server does not pass the params - // as props; they are parsed on the client and passed via context. - const layoutRouterContext = (0, _react.use)(_approutercontextsharedruntime.LayoutRouterContext); - params = layoutRouterContext !== null ? layoutRouterContext.parentParams : {}; - } - if (typeof window === 'undefined') { - const { workAsyncStorage } = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-async-storage.external.js [app-client] (ecmascript)"); - let clientParams; - // We are going to instrument the searchParams prop with tracking for the - // appropriate context. We wrap differently in prerendering vs rendering - const store = workAsyncStorage.getStore(); - if (!store) { - throw Object.defineProperty(new _invarianterror.InvariantError('Expected workStore to exist when handling params in a client segment such as a Layout or Template.'), "__NEXT_ERROR_CODE", { - value: "E600", - enumerable: false, - configurable: true - }); - } - const { createParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/server/request/params.js [app-client] (ecmascript)"); - clientParams = createParamsFromClient(params, store); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(Component, { - ...slots, - params: clientParams - }); - } else { - const { createRenderParamsFromClient } = __turbopack_context__.r("[project]/node_modules/next/dist/client/request/params.browser.js [app-client] (ecmascript)"); - const clientParams = createRenderParamsFromClient(params); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(Component, { - ...slots, - params: clientParams - }); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=client-segment.js.map -}), -"[project]/node_modules/next/dist/lib/metadata/generate/icon-mark.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "IconMark", { - enumerable: true, - get: function() { - return IconMark; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const IconMark = ()=>{ - if (typeof window !== 'undefined') { - return null; - } - return /*#__PURE__*/ (0, _jsxruntime.jsx)("meta", { - name: "\xabnxt-icon\xbb" - }); -}; //# sourceMappingURL=icon-mark.js.map -}), -]); - -//# sourceMappingURL=node_modules_next_dist_be32b49c._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_be32b49c._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_be32b49c._.js.map deleted file mode 100644 index bc853a0..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_be32b49c._.js.map +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/disable-smooth-scroll.ts"],"sourcesContent":["import { warnOnce } from '../../utils/warn-once'\n\n/**\n * Run function with `scroll-behavior: auto` applied to `<html/>`.\n * This css change will be reverted after the function finishes.\n */\nexport function disableSmoothScrollDuringRouteTransition(\n fn: () => void,\n options: { dontForceLayout?: boolean; onlyHashChange?: boolean } = {}\n) {\n // if only the hash is changed, we don't need to disable smooth scrolling\n // we only care to prevent smooth scrolling when navigating to a new page to avoid jarring UX\n if (options.onlyHashChange) {\n fn()\n return\n }\n\n const htmlElement = document.documentElement\n const hasDataAttribute = htmlElement.dataset.scrollBehavior === 'smooth'\n\n if (!hasDataAttribute) {\n // Warn if smooth scrolling is detected but no data attribute is present\n if (\n process.env.NODE_ENV === 'development' &&\n getComputedStyle(htmlElement).scrollBehavior === 'smooth'\n ) {\n warnOnce(\n 'Detected `scroll-behavior: smooth` on the `<html>` element. To disable smooth scrolling during route transitions, ' +\n 'add `data-scroll-behavior=\"smooth\"` to your <html> element. ' +\n 'Learn more: https://nextjs.org/docs/messages/missing-data-scroll-behavior'\n )\n }\n // No smooth scrolling configured, run directly without style manipulation\n fn()\n return\n }\n\n // Proceed with temporarily disabling smooth scrolling\n const existing = htmlElement.style.scrollBehavior\n htmlElement.style.scrollBehavior = 'auto'\n if (!options.dontForceLayout) {\n // In Chrome-based browsers we need to force reflow before calling `scrollTo`.\n // Otherwise it will not pickup the change in scrollBehavior\n // More info here: https://github.com/vercel/next.js/issues/40719#issuecomment-1336248042\n htmlElement.getClientRects()\n }\n fn()\n htmlElement.style.scrollBehavior = existing\n}\n"],"names":["disableSmoothScrollDuringRouteTransition","fn","options","onlyHashChange","htmlElement","document","documentElement","hasDataAttribute","dataset","scrollBehavior","process","env","NODE_ENV","getComputedStyle","warnOnce","existing","style","dontForceLayout","getClientRects"],"mappings":"AAuBMU,QAAQC,GAAG,CAACC,QAAQ;;;;;+BAjBVZ,4CAAAA;;;eAAAA;;;0BANS;AAMlB,SAASA,yCACdC,EAAc,EACdC,UAAmE,CAAC,CAAC;IAErE,yEAAyE;IACzE,6FAA6F;IAC7F,IAAIA,QAAQC,cAAc,EAAE;QAC1BF;QACA;IACF;IAEA,MAAMG,cAAcC,SAASC,eAAe;IAC5C,MAAMC,mBAAmBH,YAAYI,OAAO,CAACC,cAAc,KAAK;IAEhE,IAAI,CAACF,kBAAkB;QACrB,wEAAwE;QACxE,wDAC2B,iBACzBM,iBAAiBT,aAAaK,cAAc,KAAK,UACjD;YACAK,CAAAA,GAAAA,UAAAA,QAAQ,EACN,uHACE,iEACA;QAEN;QACA,0EAA0E;QAC1Eb;QACA;IACF;IAEA,sDAAsD;IACtD,MAAMc,WAAWX,YAAYY,KAAK,CAACP,cAAc;IACjDL,YAAYY,KAAK,CAACP,cAAc,GAAG;IACnC,IAAI,CAACP,QAAQe,eAAe,EAAE;QAC5B,8EAA8E;QAC9E,4DAA4D;QAC5D,yFAAyF;QACzFb,YAAYc,cAAc;IAC5B;IACAjB;IACAG,YAAYY,KAAK,CAACP,cAAc,GAAGM;AACrC","ignoreList":[0]}}, - {"offset": {"line": 50, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/bfcache.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport { useState } from 'react'\n\n// When the flag is disabled, only track the currently active tree\nconst MAX_BF_CACHE_ENTRIES = process.env.__NEXT_CACHE_COMPONENTS ? 3 : 1\n\nexport type RouterBFCacheEntry = {\n tree: FlightRouterState\n stateKey: string\n // The entries form a linked list, sorted in order of most recently active.\n next: RouterBFCacheEntry | null\n}\n\n/**\n * Keeps track of the most recent N trees (FlightRouterStates) that were active\n * at a certain segment level. E.g. for a segment \"/a/b/[param]\", this hook\n * tracks the last N param values that the router rendered for N.\n *\n * The result of this hook precisely determines the number and order of\n * trees that are rendered in parallel at their segment level.\n *\n * The purpose of this cache is to we can preserve the React and DOM state of\n * some number of inactive trees, by rendering them in an <Activity> boundary.\n * That means it would not make sense for the the lifetime of the cache to be\n * any longer than the lifetime of the React tree; e.g. if the hook were\n * unmounted, then the React tree would be, too. So, we use React state to\n * manage it.\n *\n * Note that we don't store the RSC data for the cache entries in this hook —\n * the data for inactive segments is stored in the parent CacheNode, which\n * *does* have a longer lifetime than the React tree. This hook only determines\n * which of those trees should have their *state* preserved, by <Activity>.\n */\nexport function useRouterBFCache(\n activeTree: FlightRouterState,\n activeStateKey: string\n): RouterBFCacheEntry {\n // The currently active entry. The entries form a linked list, sorted in\n // order of most recently active. This allows us to reuse parts of the list\n // without cloning, unless there's a reordering or removal.\n // TODO: Once we start tracking back/forward history at each route level,\n // we should use the history order instead. In other words, when traversing\n // to an existing entry as a result of a popstate event, we should maintain\n // the existing order instead of moving it to the front of the list. I think\n // an initial implementation of this could be to pass an incrementing id\n // to history.pushState/replaceState, then use that here for ordering.\n const [prevActiveEntry, setPrevActiveEntry] = useState<RouterBFCacheEntry>(\n () => {\n const initialEntry: RouterBFCacheEntry = {\n tree: activeTree,\n stateKey: activeStateKey,\n next: null,\n }\n return initialEntry\n }\n )\n\n if (prevActiveEntry.tree === activeTree) {\n // Fast path. The active tree hasn't changed, so we can reuse the\n // existing state.\n return prevActiveEntry\n }\n\n // The route tree changed. Note that this doesn't mean that the tree changed\n // *at this level* — the change may be due to a child route. Either way, we\n // need to either add or update the router tree in the bfcache.\n //\n // The rest of the code looks more complicated than it actually is because we\n // can't mutate the state in place; we have to copy-on-write.\n\n // Create a new entry for the active cache key. This is the head of the new\n // linked list.\n const newActiveEntry: RouterBFCacheEntry = {\n tree: activeTree,\n stateKey: activeStateKey,\n next: null,\n }\n\n // We need to append the old list onto the new list. If the head of the new\n // list was already present in the cache, then we'll need to clone everything\n // that came before it. Then we can reuse the rest.\n let n = 1\n let oldEntry: RouterBFCacheEntry | null = prevActiveEntry\n let clonedEntry: RouterBFCacheEntry = newActiveEntry\n while (oldEntry !== null && n < MAX_BF_CACHE_ENTRIES) {\n if (oldEntry.stateKey === activeStateKey) {\n // Fast path. This entry in the old list that corresponds to the key that\n // is now active. We've already placed a clone of this entry at the front\n // of the new list. We can reuse the rest of the old list without cloning.\n // NOTE: We don't need to worry about eviction in this case because we\n // haven't increased the size of the cache, and we assume the max size\n // is constant across renders. If we were to change it to a dynamic limit,\n // then the implementation would need to account for that.\n clonedEntry.next = oldEntry.next\n break\n } else {\n // Clone the entry and append it to the list.\n n++\n const entry: RouterBFCacheEntry = {\n tree: oldEntry.tree,\n stateKey: oldEntry.stateKey,\n next: null,\n }\n clonedEntry.next = entry\n clonedEntry = entry\n }\n oldEntry = oldEntry.next\n }\n\n setPrevActiveEntry(newActiveEntry)\n return newActiveEntry\n}\n"],"names":["useRouterBFCache","MAX_BF_CACHE_ENTRIES","process","env","__NEXT_CACHE_COMPONENTS","activeTree","activeStateKey","prevActiveEntry","setPrevActiveEntry","useState","initialEntry","tree","stateKey","next","newActiveEntry","n","oldEntry","clonedEntry","entry"],"mappings":"AAI6BE,QAAQC,GAAG,CAACC,uBAAuB;;;;;+BA6BhDJ,oBAAAA;;;eAAAA;;;uBAhCS;AAEzB,kEAAkE;AAClE,MAAMC,6DAA6D,0BAAI;AA6BhE,SAASD,iBACdK,UAA6B,EAC7BC,cAAsB;IAEtB,wEAAwE;IACxE,2EAA2E;IAC3E,2DAA2D;IAC3D,yEAAyE;IACzE,2EAA2E;IAC3E,2EAA2E;IAC3E,4EAA4E;IAC5E,wEAAwE;IACxE,sEAAsE;IACtE,MAAM,CAACC,iBAAiBC,mBAAmB,GAAGC,CAAAA,GAAAA,OAAAA,QAAQ,EACpD;QACE,MAAMC,eAAmC;YACvCC,MAAMN;YACNO,UAAUN;YACVO,MAAM;QACR;QACA,OAAOH;IACT;IAGF,IAAIH,gBAAgBI,IAAI,KAAKN,YAAY;QACvC,iEAAiE;QACjE,kBAAkB;QAClB,OAAOE;IACT;IAEA,4EAA4E;IAC5E,2EAA2E;IAC3E,+DAA+D;IAC/D,EAAE;IACF,6EAA6E;IAC7E,6DAA6D;IAE7D,2EAA2E;IAC3E,eAAe;IACf,MAAMO,iBAAqC;QACzCH,MAAMN;QACNO,UAAUN;QACVO,MAAM;IACR;IAEA,2EAA2E;IAC3E,6EAA6E;IAC7E,mDAAmD;IACnD,IAAIE,IAAI;IACR,IAAIC,WAAsCT;IAC1C,IAAIU,cAAkCH;IACtC,MAAOE,aAAa,QAAQD,IAAId,qBAAsB;QACpD,IAAIe,SAASJ,QAAQ,KAAKN,gBAAgB;YACxC,yEAAyE;YACzE,yEAAyE;YACzE,0EAA0E;YAC1E,sEAAsE;YACtE,sEAAsE;YACtE,0EAA0E;YAC1E,0DAA0D;YAC1DW,YAAYJ,IAAI,GAAGG,SAASH,IAAI;YAChC;QACF,OAAO;YACL,6CAA6C;YAC7CE;YACA,MAAMG,QAA4B;gBAChCP,MAAMK,SAASL,IAAI;gBACnBC,UAAUI,SAASJ,QAAQ;gBAC3BC,MAAM;YACR;YACAI,YAAYJ,IAAI,GAAGK;YACnBD,cAAcC;QAChB;QACAF,WAAWA,SAASH,IAAI;IAC1B;IAEAL,mBAAmBM;IACnB,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 144, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/layout-router.tsx"],"sourcesContent":["'use client'\n\nimport type { CacheNode } from '../../shared/lib/app-router-types'\nimport type { LoadingModuleData } from '../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n} from '../../shared/lib/app-router-types'\nimport type { ErrorComponent } from './error-boundary'\nimport type { FocusAndScrollRef } from './router-reducer/router-reducer-types'\n\nimport React, {\n Activity,\n useContext,\n use,\n Suspense,\n useDeferredValue,\n type JSX,\n type ActivityProps,\n} from 'react'\nimport ReactDOM from 'react-dom'\nimport {\n LayoutRouterContext,\n GlobalLayoutRouterContext,\n TemplateContext,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport { unresolvedThenable } from './unresolved-thenable'\nimport { ErrorBoundary } from './error-boundary'\nimport { matchSegment } from './match-segments'\nimport { disableSmoothScrollDuringRouteTransition } from '../../shared/lib/router/utils/disable-smooth-scroll'\nimport { RedirectBoundary } from './redirect-boundary'\nimport { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary'\nimport { createRouterCacheKey } from './router-reducer/create-router-cache-key'\nimport { useRouterBFCache, type RouterBFCacheEntry } from './bfcache'\nimport { normalizeAppPath } from '../../shared/lib/router/utils/app-paths'\nimport {\n NavigationPromisesContext,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport { getParamValueFromCacheKey } from '../route-params'\nimport type { Params } from '../../server/request/params'\nimport { isDeferredRsc } from './router-reducer/ppr-navigations'\n\nconst __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = (\n ReactDOM as any\n).__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE\n\n// TODO-APP: Replace with new React API for finding dom nodes without a `ref` when available\n/**\n * Wraps ReactDOM.findDOMNode with additional logic to hide React Strict Mode warning\n */\nfunction findDOMNode(\n instance: React.ReactInstance | null | undefined\n): Element | Text | null {\n // Tree-shake for server bundle\n if (typeof window === 'undefined') return null\n\n // __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode is null during module init.\n // We need to lazily reference it.\n const internal_reactDOMfindDOMNode =\n __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE.findDOMNode\n return internal_reactDOMfindDOMNode(instance)\n}\n\nconst rectProperties = [\n 'bottom',\n 'height',\n 'left',\n 'right',\n 'top',\n 'width',\n 'x',\n 'y',\n] as const\n/**\n * Check if a HTMLElement is hidden or fixed/sticky position\n */\nfunction shouldSkipElement(element: HTMLElement) {\n // we ignore fixed or sticky positioned elements since they'll likely pass the \"in-viewport\" check\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if (['sticky', 'fixed'].includes(getComputedStyle(element).position)) {\n return true\n }\n\n // Uses `getBoundingClientRect` to check if the element is hidden instead of `offsetParent`\n // because `offsetParent` doesn't consider document/body\n const rect = element.getBoundingClientRect()\n return rectProperties.every((item) => rect[item] === 0)\n}\n\n/**\n * Check if the top corner of the HTMLElement is in the viewport.\n */\nfunction topOfElementInViewport(element: HTMLElement, viewportHeight: number) {\n const rect = element.getBoundingClientRect()\n return rect.top >= 0 && rect.top <= viewportHeight\n}\n\n/**\n * Find the DOM node for a hash fragment.\n * If `top` the page has to scroll to the top of the page. This mirrors the browser's behavior.\n * If the hash fragment is an id, the page has to scroll to the element with that id.\n * If the hash fragment is a name, the page has to scroll to the first element with that name.\n */\nfunction getHashFragmentDomNode(hashFragment: string) {\n // If the hash fragment is `top` the page has to scroll to the top of the page.\n if (hashFragment === 'top') {\n return document.body\n }\n\n // If the hash fragment is an id, the page has to scroll to the element with that id.\n return (\n document.getElementById(hashFragment) ??\n // If the hash fragment is a name, the page has to scroll to the first element with that name.\n document.getElementsByName(hashFragment)[0]\n )\n}\ninterface ScrollAndFocusHandlerProps {\n focusAndScrollRef: FocusAndScrollRef\n children: React.ReactNode\n segmentPath: FlightSegmentPath\n}\nclass InnerScrollAndFocusHandler extends React.Component<ScrollAndFocusHandlerProps> {\n handlePotentialScroll = () => {\n // Handle scroll and focus, it's only applied once in the first useEffect that triggers that changed.\n const { focusAndScrollRef, segmentPath } = this.props\n\n if (focusAndScrollRef.apply) {\n // segmentPaths is an array of segment paths that should be scrolled to\n // if the current segment path is not in the array, the scroll is not applied\n // unless the array is empty, in which case the scroll is always applied\n if (\n focusAndScrollRef.segmentPaths.length !== 0 &&\n !focusAndScrollRef.segmentPaths.some((scrollRefSegmentPath) =>\n segmentPath.every((segment, index) =>\n matchSegment(segment, scrollRefSegmentPath[index])\n )\n )\n ) {\n return\n }\n\n let domNode:\n | ReturnType<typeof getHashFragmentDomNode>\n | ReturnType<typeof findDOMNode> = null\n const hashFragment = focusAndScrollRef.hashFragment\n\n if (hashFragment) {\n domNode = getHashFragmentDomNode(hashFragment)\n }\n\n // `findDOMNode` is tricky because it returns just the first child if the component is a fragment.\n // This already caused a bug where the first child was a <link/> in head.\n if (!domNode) {\n domNode = findDOMNode(this)\n }\n\n // If there is no DOM node this layout-router level is skipped. It'll be handled higher-up in the tree.\n if (!(domNode instanceof Element)) {\n return\n }\n\n // Verify if the element is a HTMLElement and if we want to consider it for scroll behavior.\n // If the element is skipped, try to select the next sibling and try again.\n while (!(domNode instanceof HTMLElement) || shouldSkipElement(domNode)) {\n if (process.env.NODE_ENV !== 'production') {\n if (domNode.parentElement?.localName === 'head') {\n // TODO: We enter this state when metadata was rendered as part of the page or via Next.js.\n // This is always a bug in Next.js and caused by React hoisting metadata.\n // We need to replace `findDOMNode` in favor of Fragment Refs (when available) so that we can skip over metadata.\n }\n }\n\n // No siblings found that match the criteria are found, so handle scroll higher up in the tree instead.\n if (domNode.nextElementSibling === null) {\n return\n }\n domNode = domNode.nextElementSibling\n }\n\n // State is mutated to ensure that the focus and scroll is applied only once.\n focusAndScrollRef.apply = false\n focusAndScrollRef.hashFragment = null\n focusAndScrollRef.segmentPaths = []\n\n disableSmoothScrollDuringRouteTransition(\n () => {\n // In case of hash scroll, we only need to scroll the element into view\n if (hashFragment) {\n ;(domNode as HTMLElement).scrollIntoView()\n\n return\n }\n // Store the current viewport height because reading `clientHeight` causes a reflow,\n // and it won't change during this function.\n const htmlElement = document.documentElement\n const viewportHeight = htmlElement.clientHeight\n\n // If the element's top edge is already in the viewport, exit early.\n if (topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n return\n }\n\n // Otherwise, try scrolling go the top of the document to be backward compatible with pages\n // scrollIntoView() called on `<html/>` element scrolls horizontally on chrome and firefox (that shouldn't happen)\n // We could use it to scroll horizontally following RTL but that also seems to be broken - it will always scroll left\n // scrollLeft = 0 also seems to ignore RTL and manually checking for RTL is too much hassle so we will scroll just vertically\n htmlElement.scrollTop = 0\n\n // Scroll to domNode if domNode is not in viewport when scrolled to top of document\n if (!topOfElementInViewport(domNode as HTMLElement, viewportHeight)) {\n // Scroll into view doesn't scroll horizontally by default when not needed\n ;(domNode as HTMLElement).scrollIntoView()\n }\n },\n {\n // We will force layout by querying domNode position\n dontForceLayout: true,\n onlyHashChange: focusAndScrollRef.onlyHashChange,\n }\n )\n\n // Mutate after scrolling so that it can be read by `disableSmoothScrollDuringRouteTransition`\n focusAndScrollRef.onlyHashChange = false\n\n // Set focus on the element\n domNode.focus()\n }\n }\n\n componentDidMount() {\n this.handlePotentialScroll()\n }\n\n componentDidUpdate() {\n // Because this property is overwritten in handlePotentialScroll it's fine to always run it when true as it'll be set to false for subsequent renders.\n if (this.props.focusAndScrollRef.apply) {\n this.handlePotentialScroll()\n }\n }\n\n render() {\n return this.props.children\n }\n}\n\nfunction ScrollAndFocusHandler({\n segmentPath,\n children,\n}: {\n segmentPath: FlightSegmentPath\n children: React.ReactNode\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n return (\n <InnerScrollAndFocusHandler\n segmentPath={segmentPath}\n focusAndScrollRef={context.focusAndScrollRef}\n >\n {children}\n </InnerScrollAndFocusHandler>\n )\n}\n\n/**\n * InnerLayoutRouter handles rendering the provided segment based on the cache.\n */\nfunction InnerLayoutRouter({\n tree,\n segmentPath,\n debugNameContext,\n cacheNode: maybeCacheNode,\n params,\n url,\n isActive,\n}: {\n tree: FlightRouterState\n segmentPath: FlightSegmentPath\n debugNameContext: string\n cacheNode: CacheNode | null\n params: Params\n url: string\n isActive: boolean\n}) {\n const context = useContext(GlobalLayoutRouterContext)\n const parentNavPromises = useContext(NavigationPromisesContext)\n\n if (!context) {\n throw new Error('invariant global layout router not mounted')\n }\n\n const cacheNode =\n maybeCacheNode !== null\n ? maybeCacheNode\n : // This segment is not in the cache. Suspend indefinitely.\n //\n // This should only be reachable for inactive/hidden segments, during\n // prerendering The active segment should always be consistent with the\n // CacheNode tree. Regardless, if we don't have a matching CacheNode, we\n // must suspend rather than render nothing, to prevent showing an\n // inconsistent route.\n\n (use(unresolvedThenable) as never)\n\n // `rsc` represents the renderable node for this segment.\n\n // If this segment has a `prefetchRsc`, it's the statically prefetched data.\n // We should use that on initial render instead of `rsc`. Then we'll switch\n // to `rsc` when the dynamic response streams in.\n //\n // If no prefetch data is available, then we go straight to rendering `rsc`.\n const resolvedPrefetchRsc =\n cacheNode.prefetchRsc !== null ? cacheNode.prefetchRsc : cacheNode.rsc\n\n // We use `useDeferredValue` to handle switching between the prefetched and\n // final values. The second argument is returned on initial render, then it\n // re-renders with the first argument.\n const rsc: any = useDeferredValue(cacheNode.rsc, resolvedPrefetchRsc)\n\n // `rsc` is either a React node or a promise for a React node, except we\n // special case `null` to represent that this segment's data is missing. If\n // it's a promise, we need to unwrap it so we can determine whether or not the\n // data is missing.\n let resolvedRsc: React.ReactNode\n if (isDeferredRsc(rsc)) {\n const unwrappedRsc = use(rsc)\n if (unwrappedRsc === null) {\n // If the promise was resolved to `null`, it means the data for this\n // segment was not returned by the server. Suspend indefinitely. When this\n // happens, the router is responsible for triggering a new state update to\n // un-suspend this segment.\n use(unresolvedThenable) as never\n }\n resolvedRsc = unwrappedRsc\n } else {\n // This is not a deferred RSC promise. Don't need to unwrap it.\n if (rsc === null) {\n use(unresolvedThenable) as never\n }\n resolvedRsc = rsc\n }\n\n // In dev, we create a NavigationPromisesContext containing the instrumented promises that provide\n // `useSelectedLayoutSegment` and `useSelectedLayoutSegments`.\n // Promises are cached outside of render to survive suspense retries.\n let navigationPromises: NavigationPromises | null = null\n if (process.env.NODE_ENV !== 'production') {\n const { createNestedLayoutNavigationPromises } =\n require('./navigation-devtools') as typeof import('./navigation-devtools')\n\n navigationPromises = createNestedLayoutNavigationPromises(\n tree,\n parentNavPromises\n )\n }\n\n let children = resolvedRsc\n\n if (navigationPromises) {\n children = (\n <NavigationPromisesContext.Provider value={navigationPromises}>\n {resolvedRsc}\n </NavigationPromisesContext.Provider>\n )\n }\n\n children = (\n // The layout router context narrows down tree and childNodes at each level.\n <LayoutRouterContext.Provider\n value={{\n parentTree: tree,\n parentCacheNode: cacheNode,\n parentSegmentPath: segmentPath,\n parentParams: params,\n debugNameContext: debugNameContext,\n\n // TODO-APP: overriding of url for parallel routes\n url: url,\n isActive: isActive,\n }}\n >\n {children}\n </LayoutRouterContext.Provider>\n )\n\n return children\n}\n\n/**\n * Renders suspense boundary with the provided \"loading\" property as the fallback.\n * If no loading property is provided it renders the children without a suspense boundary.\n */\nfunction LoadingBoundary({\n name,\n loading,\n children,\n}: {\n name: ActivityProps['name']\n loading: LoadingModuleData | Promise<LoadingModuleData>\n children: React.ReactNode\n}): JSX.Element {\n // If loading is a promise, unwrap it. This happens in cases where we haven't\n // yet received the loading data from the server — which includes whether or\n // not this layout has a loading component at all.\n //\n // It's OK to suspend here instead of inside the fallback because this\n // promise will resolve simultaneously with the data for the segment itself.\n // So it will never suspend for longer than it would have if we didn't use\n // a Suspense fallback at all.\n let loadingModuleData\n if (\n typeof loading === 'object' &&\n loading !== null &&\n typeof (loading as any).then === 'function'\n ) {\n const promiseForLoading = loading as Promise<LoadingModuleData>\n loadingModuleData = use(promiseForLoading)\n } else {\n loadingModuleData = loading as LoadingModuleData\n }\n\n if (loadingModuleData) {\n const loadingRsc = loadingModuleData[0]\n const loadingStyles = loadingModuleData[1]\n const loadingScripts = loadingModuleData[2]\n return (\n <Suspense\n name={name}\n fallback={\n <>\n {loadingStyles}\n {loadingScripts}\n {loadingRsc}\n </>\n }\n >\n {children}\n </Suspense>\n )\n }\n\n return <>{children}</>\n}\n\n/**\n * OuterLayoutRouter handles the current segment as well as <Offscreen> rendering of other segments.\n * It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes.\n */\nexport default function OuterLayoutRouter({\n parallelRouterKey,\n error,\n errorStyles,\n errorScripts,\n templateStyles,\n templateScripts,\n template,\n notFound,\n forbidden,\n unauthorized,\n segmentViewBoundaries,\n}: {\n parallelRouterKey: string\n error: ErrorComponent | undefined\n errorStyles: React.ReactNode | undefined\n errorScripts: React.ReactNode | undefined\n templateStyles: React.ReactNode | undefined\n templateScripts: React.ReactNode | undefined\n template: React.ReactNode\n notFound: React.ReactNode | undefined\n forbidden: React.ReactNode | undefined\n unauthorized: React.ReactNode | undefined\n segmentViewBoundaries?: React.ReactNode\n}) {\n const context = useContext(LayoutRouterContext)\n if (!context) {\n throw new Error('invariant expected layout router to be mounted')\n }\n\n const {\n parentTree,\n parentCacheNode,\n parentSegmentPath,\n parentParams,\n url,\n isActive,\n debugNameContext,\n } = context\n\n // Get the CacheNode for this segment by reading it from the parent segment's\n // child map.\n const parentParallelRoutes = parentCacheNode.parallelRoutes\n let segmentMap = parentParallelRoutes.get(parallelRouterKey)\n // If the parallel router cache node does not exist yet, create it.\n // This writes to the cache when there is no item in the cache yet. It never *overwrites* existing cache items which is why it's safe in concurrent mode.\n if (!segmentMap) {\n segmentMap = new Map()\n parentParallelRoutes.set(parallelRouterKey, segmentMap)\n }\n const parentTreeSegment = parentTree[0]\n const segmentPath =\n parentSegmentPath === null\n ? // TODO: The root segment value is currently omitted from the segment\n // path. This has led to a bunch of special cases scattered throughout\n // the code. We should clean this up.\n [parallelRouterKey]\n : parentSegmentPath.concat([parentTreeSegment, parallelRouterKey])\n\n // The \"state\" key of a segment is the one passed to React — it represents the\n // identity of the UI tree. Whenever the state key changes, the tree is\n // recreated and the state is reset. In the App Router model, search params do\n // not cause state to be lost, so two segments with the same segment path but\n // different search params should have the same state key.\n //\n // The \"cache\" key of a segment, however, *does* include the search params, if\n // it's possible that the segment accessed the search params on the server.\n // (This only applies to page segments; layout segments cannot access search\n // params on the server.)\n const activeTree = parentTree[1][parallelRouterKey]\n if (activeTree === undefined) {\n // Could not find a matching segment. The client tree is inconsistent with\n // the server tree. Suspend indefinitely; the router will have already\n // detected the inconsistency when handling the server response, and\n // triggered a refresh of the page to recover.\n use(unresolvedThenable) as never\n }\n\n const activeSegment = activeTree[0]\n const activeStateKey = createRouterCacheKey(activeSegment, true) // no search params\n\n // At each level of the route tree, not only do we render the currently\n // active segment — we also render the last N segments that were active at\n // this level inside a hidden <Activity> boundary, to preserve their state\n // if or when the user navigates to them again.\n //\n // bfcacheEntry is a linked list of FlightRouterStates.\n let bfcacheEntry: RouterBFCacheEntry | null = useRouterBFCache(\n activeTree,\n activeStateKey\n )\n let children: Array<React.ReactNode> = []\n do {\n const tree = bfcacheEntry.tree\n const stateKey = bfcacheEntry.stateKey\n const segment = tree[0]\n const cacheKey = createRouterCacheKey(segment)\n\n // Read segment path from the parallel router cache node.\n const cacheNode = segmentMap.get(cacheKey) ?? null\n\n /*\n - Error boundary\n - Only renders error boundary if error component is provided.\n - Rendered for each segment to ensure they have their own error state.\n - When gracefully degrade for bots, skip rendering error boundary.\n - Loading boundary\n - Only renders suspense boundary if loading components is provided.\n - Rendered for each segment to ensure they have their own loading state.\n - Passed to the router during rendering to ensure it can be immediately rendered when suspending on a Flight fetch.\n */\n\n let segmentBoundaryTriggerNode: React.ReactNode = null\n let segmentViewStateNode: React.ReactNode = null\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentBoundaryTriggerNode, SegmentViewStateNode } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n const pagePrefix = normalizeAppPath(url)\n segmentViewStateNode = (\n <SegmentViewStateNode key={pagePrefix} page={pagePrefix} />\n )\n\n segmentBoundaryTriggerNode = (\n <>\n <SegmentBoundaryTriggerNode />\n </>\n )\n }\n\n let params = parentParams\n if (Array.isArray(segment)) {\n // This segment contains a route param. Accumulate these as we traverse\n // down the router tree. The result represents the set of params that\n // the layout/page components are permitted to access below this point.\n const paramName = segment[0]\n const paramCacheKey = segment[1]\n const paramType = segment[2]\n const paramValue = getParamValueFromCacheKey(paramCacheKey, paramType)\n if (paramValue !== null) {\n params = {\n ...parentParams,\n [paramName]: paramValue,\n }\n }\n }\n\n const debugName = getBoundaryDebugNameFromSegment(segment)\n // `debugNameContext` represents the nearest non-\"virtual\" parent segment.\n // `getBoundaryDebugNameFromSegment` returns undefined for virtual segments.\n // So if `debugName` is undefined, the context is passed through unchanged.\n const childDebugNameContext = debugName ?? debugNameContext\n\n // In practical terms, clicking this name in the Suspense DevTools\n // should select the child slots of that layout.\n //\n // So the name we apply to the Activity boundary is actually based on\n // the nearest parent segments.\n //\n // We skip over \"virtual\" parents, i.e. ones inserted by Next.js that\n // don't correspond to application-defined code.\n const isVirtual = debugName === undefined\n const debugNameToDisplay = isVirtual ? undefined : debugNameContext\n\n // TODO: The loading module data for a segment is stored on the parent, then\n // applied to each of that parent segment's parallel route slots. In the\n // simple case where there's only one parallel route (the `children` slot),\n // this is no different from if the loading module data where stored on the\n // child directly. But I'm not sure this actually makes sense when there are\n // multiple parallel routes. It's not a huge issue because you always have\n // the option to define a narrower loading boundary for a particular slot. But\n // this sort of smells like an implementation accident to me.\n const loadingModuleData = parentCacheNode.loading\n let child = (\n <TemplateContext.Provider\n key={stateKey}\n value={\n <ScrollAndFocusHandler segmentPath={segmentPath}>\n <ErrorBoundary\n errorComponent={error}\n errorStyles={errorStyles}\n errorScripts={errorScripts}\n >\n <LoadingBoundary\n name={debugNameToDisplay}\n loading={loadingModuleData}\n >\n <HTTPAccessFallbackBoundary\n notFound={notFound}\n forbidden={forbidden}\n unauthorized={unauthorized}\n >\n <RedirectBoundary>\n <InnerLayoutRouter\n url={url}\n tree={tree}\n params={params}\n cacheNode={cacheNode}\n segmentPath={segmentPath}\n debugNameContext={childDebugNameContext}\n isActive={isActive && stateKey === activeStateKey}\n />\n {segmentBoundaryTriggerNode}\n </RedirectBoundary>\n </HTTPAccessFallbackBoundary>\n </LoadingBoundary>\n </ErrorBoundary>\n {segmentViewStateNode}\n </ScrollAndFocusHandler>\n }\n >\n {templateStyles}\n {templateScripts}\n {template}\n </TemplateContext.Provider>\n )\n\n if (process.env.NODE_ENV !== 'production') {\n const { SegmentStateProvider } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n\n child = (\n <SegmentStateProvider key={stateKey}>\n {child}\n {segmentViewBoundaries}\n </SegmentStateProvider>\n )\n }\n\n if (process.env.__NEXT_CACHE_COMPONENTS) {\n child = (\n <Activity\n name={debugNameToDisplay}\n key={stateKey}\n mode={stateKey === activeStateKey ? 'visible' : 'hidden'}\n >\n {child}\n </Activity>\n )\n }\n\n children.push(child)\n\n bfcacheEntry = bfcacheEntry.next\n } while (bfcacheEntry !== null)\n\n return children\n}\n\nfunction getBoundaryDebugNameFromSegment(segment: Segment): string | undefined {\n if (segment === '/') {\n // Reached the root\n return '/'\n }\n if (typeof segment === 'string') {\n if (isVirtualLayout(segment)) {\n return undefined\n } else {\n return segment + '/'\n }\n }\n const paramCacheKey = segment[1]\n return paramCacheKey + '/'\n}\n\nfunction isVirtualLayout(segment: string): boolean {\n return (\n // This is inserted by the loader. We should consider encoding these\n // in a more special way instead of checking the name, to distinguish them\n // from app-defined groups.\n segment === '(slot)'\n )\n}\n"],"names":["OuterLayoutRouter","__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","ReactDOM","findDOMNode","instance","window","internal_reactDOMfindDOMNode","rectProperties","shouldSkipElement","element","includes","getComputedStyle","position","rect","getBoundingClientRect","every","item","topOfElementInViewport","viewportHeight","top","getHashFragmentDomNode","hashFragment","document","body","getElementById","getElementsByName","InnerScrollAndFocusHandler","React","Component","componentDidMount","handlePotentialScroll","componentDidUpdate","props","focusAndScrollRef","apply","render","children","segmentPath","segmentPaths","length","some","scrollRefSegmentPath","segment","index","matchSegment","domNode","Element","HTMLElement","process","env","NODE_ENV","parentElement","localName","nextElementSibling","disableSmoothScrollDuringRouteTransition","scrollIntoView","htmlElement","documentElement","clientHeight","scrollTop","dontForceLayout","onlyHashChange","focus","ScrollAndFocusHandler","context","useContext","GlobalLayoutRouterContext","Error","InnerLayoutRouter","tree","debugNameContext","cacheNode","maybeCacheNode","params","url","isActive","parentNavPromises","NavigationPromisesContext","use","unresolvedThenable","resolvedPrefetchRsc","prefetchRsc","rsc","useDeferredValue","resolvedRsc","isDeferredRsc","unwrappedRsc","navigationPromises","createNestedLayoutNavigationPromises","require","Provider","value","LayoutRouterContext","parentTree","parentCacheNode","parentSegmentPath","parentParams","LoadingBoundary","name","loading","loadingModuleData","then","promiseForLoading","loadingRsc","loadingStyles","loadingScripts","Suspense","fallback","parallelRouterKey","error","errorStyles","errorScripts","templateStyles","templateScripts","template","notFound","forbidden","unauthorized","segmentViewBoundaries","parentParallelRoutes","parallelRoutes","segmentMap","get","Map","set","parentTreeSegment","concat","activeTree","undefined","activeSegment","activeStateKey","createRouterCacheKey","bfcacheEntry","useRouterBFCache","stateKey","cacheKey","segmentBoundaryTriggerNode","segmentViewStateNode","SegmentBoundaryTriggerNode","SegmentViewStateNode","pagePrefix","normalizeAppPath","page","Array","isArray","paramName","paramCacheKey","paramType","paramValue","getParamValueFromCacheKey","debugName","getBoundaryDebugNameFromSegment","childDebugNameContext","isVirtual","debugNameToDisplay","child","TemplateContext","ErrorBoundary","errorComponent","HTTPAccessFallbackBoundary","RedirectBoundary","SegmentStateProvider","__NEXT_CACHE_COMPONENTS","Activity","mode","push","next","isVirtualLayout"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 681, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/render-from-template-context.tsx"],"sourcesContent":["'use client'\n\nimport React, { useContext, type JSX } from 'react'\nimport { TemplateContext } from '../../shared/lib/app-router-context.shared-runtime'\n\nexport default function RenderFromTemplateContext(): JSX.Element {\n const children = useContext(TemplateContext)\n return <>{children}</>\n}\n"],"names":["RenderFromTemplateContext","children","useContext","TemplateContext"],"mappings":";;;+BAKA,WAAA;;;eAAwBA;;;;;iEAHoB;+CACZ;AAEjB,SAASA;IACtB,MAAMC,WAAWC,CAAAA,GAAAA,OAAAA,UAAU,EAACC,+BAAAA,eAAe;IAC3C,OAAA,WAAA,GAAO,CAAA,GAAA,YAAA,GAAA,EAAA,YAAA,QAAA,EAAA;kBAAGF;;AACZ","ignoreList":[0]}}, - {"offset": {"line": 711, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/web/spec-extension/adapters/reflect.ts"],"sourcesContent":["export class ReflectAdapter {\n static get<T extends object>(\n target: T,\n prop: string | symbol,\n receiver: unknown\n ): any {\n const value = Reflect.get(target, prop, receiver)\n if (typeof value === 'function') {\n return value.bind(target)\n }\n\n return value\n }\n\n static set<T extends object>(\n target: T,\n prop: string | symbol,\n value: any,\n receiver: any\n ): boolean {\n return Reflect.set(target, prop, value, receiver)\n }\n\n static has<T extends object>(target: T, prop: string | symbol): boolean {\n return Reflect.has(target, prop)\n }\n\n static deleteProperty<T extends object>(\n target: T,\n prop: string | symbol\n ): boolean {\n return Reflect.deleteProperty(target, prop)\n }\n}\n"],"names":["ReflectAdapter","get","target","prop","receiver","value","Reflect","bind","set","has","deleteProperty"],"mappings":";;;+BAAaA,kBAAAA;;;eAAAA;;;AAAN,MAAMA;IACX,OAAOC,IACLC,MAAS,EACTC,IAAqB,EACrBC,QAAiB,EACZ;QACL,MAAMC,QAAQC,QAAQL,GAAG,CAACC,QAAQC,MAAMC;QACxC,IAAI,OAAOC,UAAU,YAAY;YAC/B,OAAOA,MAAME,IAAI,CAACL;QACpB;QAEA,OAAOG;IACT;IAEA,OAAOG,IACLN,MAAS,EACTC,IAAqB,EACrBE,KAAU,EACVD,QAAa,EACJ;QACT,OAAOE,QAAQE,GAAG,CAACN,QAAQC,MAAME,OAAOD;IAC1C;IAEA,OAAOK,IAAsBP,MAAS,EAAEC,IAAqB,EAAW;QACtE,OAAOG,QAAQG,GAAG,CAACP,QAAQC;IAC7B;IAEA,OAAOO,eACLR,MAAS,EACTC,IAAqB,EACZ;QACT,OAAOG,QAAQI,cAAc,CAACR,QAAQC;IACxC;AACF","ignoreList":[0]}}, - {"offset": {"line": 742, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/reflect-utils.ts"],"sourcesContent":["// This regex will have fast negatives meaning valid identifiers may not pass\n// this test. However this is only used during static generation to provide hints\n// about why a page bailed out of some or all prerendering and we can use bracket notation\n// for example while `ಠ_ಠ` is a valid identifier it's ok to print `searchParams['ಠ_ಠ']`\n// even if this would have been fine too `searchParams.ಠ_ಠ`\nconst isDefinitelyAValidIdentifier = /^[A-Za-z_$][A-Za-z0-9_$]*$/\n\nexport function describeStringPropertyAccess(target: string, prop: string) {\n if (isDefinitelyAValidIdentifier.test(prop)) {\n return `\\`${target}.${prop}\\``\n }\n return `\\`${target}[${JSON.stringify(prop)}]\\``\n}\n\nexport function describeHasCheckingStringProperty(\n target: string,\n prop: string\n) {\n const stringifiedProp = JSON.stringify(prop)\n return `\\`Reflect.has(${target}, ${stringifiedProp})\\`, \\`${stringifiedProp} in ${target}\\`, or similar`\n}\n\nexport const wellKnownProperties = new Set([\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toString',\n 'valueOf',\n 'toLocaleString',\n\n // Promise prototype\n 'then',\n 'catch',\n 'finally',\n\n // React Promise extension\n 'status',\n // 'value',\n // 'error',\n\n // React introspection\n 'displayName',\n '_debugInfo',\n\n // Common tested properties\n 'toJSON',\n '$$typeof',\n '__esModule',\n])\n"],"names":["describeHasCheckingStringProperty","describeStringPropertyAccess","wellKnownProperties","isDefinitelyAValidIdentifier","target","prop","test","JSON","stringify","stringifiedProp","Set"],"mappings":"AAAA,6EAA6E;AAC7E,iFAAiF;AACjF,0FAA0F;AAC1F,uFAAuF;AACvF,2DAA2D;;;;;;;;;;;;;;;;IAU3CA,iCAAiC,EAAA;eAAjCA;;IAPAC,4BAA4B,EAAA;eAA5BA;;IAeHC,mBAAmB,EAAA;eAAnBA;;;AAjBb,MAAMC,+BAA+B;AAE9B,SAASF,6BAA6BG,MAAc,EAAEC,IAAY;IACvE,IAAIF,6BAA6BG,IAAI,CAACD,OAAO;QAC3C,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEC,KAAK,EAAE,CAAC;IAChC;IACA,OAAO,CAAC,EAAE,EAAED,OAAO,CAAC,EAAEG,KAAKC,SAAS,CAACH,MAAM,GAAG,CAAC;AACjD;AAEO,SAASL,kCACdI,MAAc,EACdC,IAAY;IAEZ,MAAMI,kBAAkBF,KAAKC,SAAS,CAACH;IACvC,OAAO,CAAC,cAAc,EAAED,OAAO,EAAE,EAAEK,gBAAgB,OAAO,EAAEA,gBAAgB,IAAI,EAAEL,OAAO,cAAc,CAAC;AAC1G;AAEO,MAAMF,sBAAsB,IAAIQ,IAAI;IACzC;IACA;IACA;IACA;IACA;IACA;IAEA,oBAAoB;IACpB;IACA;IACA;IAEA,0BAA0B;IAC1B;IACA,WAAW;IACX,WAAW;IAEX,sBAAsB;IACtB;IACA;IAEA,2BAA2B;IAC3B;IACA;IACA;CACD","ignoreList":[0]}}, - {"offset": {"line": 810, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/request/search-params.browser.dev.ts"],"sourcesContent":["import type { SearchParams } from '../../server/request/search-params'\n\nimport { ReflectAdapter } from '../../server/web/spec-extension/adapters/reflect'\nimport {\n describeStringPropertyAccess,\n describeHasCheckingStringProperty,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\n\ninterface CacheLifetime {}\nconst CachedSearchParams = new WeakMap<CacheLifetime, Promise<SearchParams>>()\n\nfunction makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams: SearchParams\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const proxiedProperties = new Set<string>()\n const promise = Promise.resolve(underlyingSearchParams)\n\n Object.keys(underlyingSearchParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n warnForSyncAccess(expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return Reflect.set(target, prop, value, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n warnForSyncAccess(expression)\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n warnForSyncSpread()\n return Reflect.ownKeys(target)\n },\n })\n\n CachedSearchParams.set(underlyingSearchParams, proxiedPromise)\n return proxiedPromise\n}\n\nfunction warnForSyncAccess(expression: string) {\n console.error(\n `A searchParam property was accessed directly with ${expression}. ` +\n `\\`searchParams\\` is a Promise and must be unwrapped with \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n\nfunction warnForSyncSpread() {\n console.error(\n `The keys of \\`searchParams\\` were accessed directly. ` +\n `\\`searchParams\\` is a Promise and must be unwrapped with \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n\nexport function createRenderSearchParamsFromClient(\n underlyingSearchParams: SearchParams\n): Promise<SearchParams> {\n return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams)\n}\n"],"names":["createRenderSearchParamsFromClient","CachedSearchParams","WeakMap","makeUntrackedSearchParamsWithDevWarnings","underlyingSearchParams","cachedSearchParams","get","proxiedProperties","Set","promise","Promise","resolve","Object","keys","forEach","prop","wellKnownProperties","has","add","proxiedPromise","Proxy","target","receiver","Reflect","expression","describeStringPropertyAccess","warnForSyncAccess","ReflectAdapter","set","value","delete","describeHasCheckingStringProperty","ownKeys","warnForSyncSpread","console","error"],"mappings":";;;+BAkGgBA,sCAAAA;;;eAAAA;;;yBAhGe;8BAKxB;AAGP,MAAMC,qBAAqB,IAAIC;AAE/B,SAASC,yCACPC,sBAAoC;IAEpC,MAAMC,qBAAqBJ,mBAAmBK,GAAG,CAACF;IAClD,IAAIC,oBAAoB;QACtB,OAAOA;IACT;IAEA,MAAME,oBAAoB,IAAIC;IAC9B,MAAMC,UAAUC,QAAQC,OAAO,CAACP;IAEhCQ,OAAOC,IAAI,CAACT,wBAAwBU,OAAO,CAAC,CAACC;QAC3C,IAAIC,cAAAA,mBAAmB,CAACC,GAAG,CAACF,OAAO;QACjC,kEAAkE;QAClE,kEAAkE;QACpE,OAAO;YACLR,kBAAkBW,GAAG,CAACH;QACxB;IACF;IAEA,MAAMI,iBAAiB,IAAIC,MAAMX,SAAS;QACxCH,KAAIe,MAAM,EAAEN,IAAI,EAAEO,QAAQ;YACxB,IAAI,OAAOP,SAAS,UAAU;gBAC5B,IACE,CAACC,cAAAA,mBAAmB,CAACC,GAAG,CAACF,SACxBR,CAAAA,kBAAkBU,GAAG,CAACF,SACrB,oEAAoE;gBACpE,+BAA+B;gBAC/BQ,QAAQN,GAAG,CAACI,QAAQN,UAAU,KAAI,GACpC;oBACA,MAAMS,aAAaC,CAAAA,GAAAA,cAAAA,4BAA4B,EAAC,gBAAgBV;oBAChEW,kBAAkBF;gBACpB;YACF;YACA,OAAOG,SAAAA,cAAc,CAACrB,GAAG,CAACe,QAAQN,MAAMO;QAC1C;QACAM,KAAIP,MAAM,EAAEN,IAAI,EAAEc,KAAK,EAAEP,QAAQ;YAC/B,IAAI,OAAOP,SAAS,UAAU;gBAC5BR,kBAAkBuB,MAAM,CAACf;YAC3B;YACA,OAAOQ,QAAQK,GAAG,CAACP,QAAQN,MAAMc,OAAOP;QAC1C;QACAL,KAAII,MAAM,EAAEN,IAAI;YACd,IAAI,OAAOA,SAAS,UAAU;gBAC5B,IACE,CAACC,cAAAA,mBAAmB,CAACC,GAAG,CAACF,SACxBR,CAAAA,kBAAkBU,GAAG,CAACF,SACrB,oEAAoE;gBACpE,+BAA+B;gBAC/BQ,QAAQN,GAAG,CAACI,QAAQN,UAAU,KAAI,GACpC;oBACA,MAAMS,aAAaO,CAAAA,GAAAA,cAAAA,iCAAiC,EAClD,gBACAhB;oBAEFW,kBAAkBF;gBACpB;YACF;YACA,OAAOD,QAAQN,GAAG,CAACI,QAAQN;QAC7B;QACAiB,SAAQX,MAAM;YACZY;YACA,OAAOV,QAAQS,OAAO,CAACX;QACzB;IACF;IAEApB,mBAAmB2B,GAAG,CAACxB,wBAAwBe;IAC/C,OAAOA;AACT;AAEA,SAASO,kBAAkBF,UAAkB;IAC3CU,QAAQC,KAAK,CACX,CAAC,kDAAkD,EAAEX,WAAW,EAAE,CAAC,GACjE,CAAC,0GAA0G,CAAC,GAC5G,CAAC,8DAA8D,CAAC;AAEtE;AAEA,SAASS;IACPC,QAAQC,KAAK,CACX,CAAC,qDAAqD,CAAC,GACrD,CAAC,0GAA0G,CAAC,GAC5G,CAAC,8DAA8D,CAAC;AAEtE;AAEO,SAASnC,mCACdI,sBAAoC;IAEpC,OAAOD,yCAAyCC;AAClD","ignoreList":[0]}}, - {"offset": {"line": 894, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/request/search-params.browser.ts"],"sourcesContent":["export const createRenderSearchParamsFromClient =\n process.env.NODE_ENV === 'development'\n ? (\n require('./search-params.browser.dev') as typeof import('./search-params.browser.dev')\n ).createRenderSearchParamsFromClient\n : (\n require('./search-params.browser.prod') as typeof import('./search-params.browser.prod')\n ).createRenderSearchParamsFromClient\n"],"names":["createRenderSearchParamsFromClient","process","env","NODE_ENV","require"],"mappings":"AACEC,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BADdH,sCAAAA;;;eAAAA;;;AAAN,MAAMA,4EAGLI,QAAQ,0HACRJ,kCAAkC,GAElCI,QAAQ,gCACRJ,kCAAkC","ignoreList":[0]}}, - {"offset": {"line": 917, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/request/params.browser.dev.ts"],"sourcesContent":["import type { Params } from '../../server/request/params'\n\nimport { ReflectAdapter } from '../../server/web/spec-extension/adapters/reflect'\nimport {\n describeStringPropertyAccess,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\n\ninterface CacheLifetime {}\nconst CachedParams = new WeakMap<CacheLifetime, Promise<Params>>()\n\nfunction makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams: Params\n): Promise<Params> {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = Promise.resolve(underlyingParams)\n\n const proxiedProperties = new Set<string>()\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (typeof prop === 'string') {\n if (\n // We are accessing a property that was proxied to the promise instance\n proxiedProperties.has(prop)\n ) {\n const expression = describeStringPropertyAccess('params', prop)\n warnForSyncAccess(expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return ReflectAdapter.set(target, prop, value, receiver)\n },\n ownKeys(target) {\n warnForEnumeration()\n return Reflect.ownKeys(target)\n },\n })\n\n CachedParams.set(underlyingParams, proxiedPromise)\n return proxiedPromise\n}\n\nfunction warnForSyncAccess(expression: string) {\n console.error(\n `A param property was accessed directly with ${expression}. ` +\n `\\`params\\` is a Promise and must be unwrapped with \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n\nfunction warnForEnumeration() {\n console.error(\n `params are being enumerated. ` +\n `\\`params\\` is a Promise and must be unwrapped with \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n\nexport function createRenderParamsFromClient(\n clientParams: Params\n): Promise<Params> {\n return makeDynamicallyTrackedParamsWithDevWarnings(clientParams)\n}\n"],"names":["createRenderParamsFromClient","CachedParams","WeakMap","makeDynamicallyTrackedParamsWithDevWarnings","underlyingParams","cachedParams","get","promise","Promise","resolve","proxiedProperties","Set","Object","keys","forEach","prop","wellKnownProperties","has","add","proxiedPromise","Proxy","target","receiver","expression","describeStringPropertyAccess","warnForSyncAccess","ReflectAdapter","set","value","delete","ownKeys","warnForEnumeration","Reflect","console","error","clientParams"],"mappings":";;;+BAgFgBA,gCAAAA;;;eAAAA;;;yBA9Ee;8BAIxB;AAGP,MAAMC,eAAe,IAAIC;AAEzB,SAASC,4CACPC,gBAAwB;IAExB,MAAMC,eAAeJ,aAAaK,GAAG,CAACF;IACtC,IAAIC,cAAc;QAChB,OAAOA;IACT;IAEA,4DAA4D;IAC5D,kEAAkE;IAClE,qEAAqE;IACrE,MAAME,UAAUC,QAAQC,OAAO,CAACL;IAEhC,MAAMM,oBAAoB,IAAIC;IAE9BC,OAAOC,IAAI,CAACT,kBAAkBU,OAAO,CAAC,CAACC;QACrC,IAAIC,cAAAA,mBAAmB,CAACC,GAAG,CAACF,OAAO;QACjC,kEAAkE;QAClE,kEAAkE;QACpE,OAAO;YACLL,kBAAkBQ,GAAG,CAACH;QACxB;IACF;IAEA,MAAMI,iBAAiB,IAAIC,MAAMb,SAAS;QACxCD,KAAIe,MAAM,EAAEN,IAAI,EAAEO,QAAQ;YACxB,IAAI,OAAOP,SAAS,UAAU;gBAC5B,IACE,AACAL,kBAAkBO,GAAG,CAACF,OACtB,0CAFuE;oBAGvE,MAAMQ,aAAaC,CAAAA,GAAAA,cAAAA,4BAA4B,EAAC,UAAUT;oBAC1DU,kBAAkBF;gBACpB;YACF;YACA,OAAOG,SAAAA,cAAc,CAACpB,GAAG,CAACe,QAAQN,MAAMO;QAC1C;QACAK,KAAIN,MAAM,EAAEN,IAAI,EAAEa,KAAK,EAAEN,QAAQ;YAC/B,IAAI,OAAOP,SAAS,UAAU;gBAC5BL,kBAAkBmB,MAAM,CAACd;YAC3B;YACA,OAAOW,SAAAA,cAAc,CAACC,GAAG,CAACN,QAAQN,MAAMa,OAAON;QACjD;QACAQ,SAAQT,MAAM;YACZU;YACA,OAAOC,QAAQF,OAAO,CAACT;QACzB;IACF;IAEApB,aAAa0B,GAAG,CAACvB,kBAAkBe;IACnC,OAAOA;AACT;AAEA,SAASM,kBAAkBF,UAAkB;IAC3CU,QAAQC,KAAK,CACX,CAAC,4CAA4C,EAAEX,WAAW,EAAE,CAAC,GAC3D,CAAC,oGAAoG,CAAC,GACtG,CAAC,8DAA8D,CAAC;AAEtE;AAEA,SAASQ;IACPE,QAAQC,KAAK,CACX,CAAC,6BAA6B,CAAC,GAC7B,CAAC,oGAAoG,CAAC,GACtG,CAAC,8DAA8D,CAAC;AAEtE;AAEO,SAASlC,6BACdmC,YAAoB;IAEpB,OAAOhC,4CAA4CgC;AACrD","ignoreList":[0]}}, - {"offset": {"line": 991, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/request/params.browser.ts"],"sourcesContent":["export const createRenderParamsFromClient =\n process.env.NODE_ENV === 'development'\n ? (require('./params.browser.dev') as typeof import('./params.browser.dev'))\n .createRenderParamsFromClient\n : (\n require('./params.browser.prod') as typeof import('./params.browser.prod')\n ).createRenderParamsFromClient\n"],"names":["createRenderParamsFromClient","process","env","NODE_ENV","require"],"mappings":"AACEC,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BADdH,gCAAAA;;;eAAAA;;;AAAN,MAAMA,sEAENI,QAAQ,mHACNJ,4BAA4B,GAE7BI,QAAQ,yBACRJ,4BAA4B","ignoreList":[0]}}, - {"offset": {"line": 1014, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/create-deduped-by-callsite-server-error-logger.ts"],"sourcesContent":["import * as React from 'react'\n\nconst errorRef: { current: null | Error } = { current: null }\n\n// React.cache is currently only available in canary/experimental React channels.\nconst cache =\n typeof React.cache === 'function'\n ? React.cache\n : (fn: (key: unknown) => void) => fn\n\n// When Cache Components is enabled, we record these as errors so that they\n// are captured by the dev overlay as it's more critical to fix these\n// when enabled.\nconst logErrorOrWarn = process.env.__NEXT_CACHE_COMPONENTS\n ? console.error\n : console.warn\n\n// We don't want to dedupe across requests.\n// The developer might've just attempted to fix the warning so we should warn again if it still happens.\nconst flushCurrentErrorIfNew = cache(\n // eslint-disable-next-line @typescript-eslint/no-unused-vars -- cache key\n (key: unknown) => {\n try {\n logErrorOrWarn(errorRef.current)\n } finally {\n errorRef.current = null\n }\n }\n)\n\n/**\n * Creates a function that logs an error message that is deduped by the userland\n * callsite.\n * This requires no indirection between the call of this function and the userland\n * callsite i.e. there's only a single library frame above this.\n * Do not use on the Client where sourcemaps and ignore listing might be enabled.\n * Only use that for warnings need a fix independent of the callstack.\n *\n * @param getMessage\n * @returns\n */\nexport function createDedupedByCallsiteServerErrorLoggerDev<Args extends any[]>(\n getMessage: (...args: Args) => Error\n) {\n return function logDedupedError(...args: Args) {\n const message = getMessage(...args)\n\n if (process.env.NODE_ENV !== 'production') {\n const callStackFrames = new Error().stack?.split('\\n')\n if (callStackFrames === undefined || callStackFrames.length < 4) {\n logErrorOrWarn(message)\n } else {\n // Error:\n // logDedupedError\n // asyncApiBeingAccessedSynchronously\n // <userland callsite>\n // TODO: This breaks if sourcemaps with ignore lists are enabled.\n const key = callStackFrames[4]\n errorRef.current = message\n flushCurrentErrorIfNew(key)\n }\n } else {\n logErrorOrWarn(message)\n }\n }\n}\n"],"names":["createDedupedByCallsiteServerErrorLoggerDev","errorRef","current","cache","React","fn","logErrorOrWarn","process","env","__NEXT_CACHE_COMPONENTS","console","error","warn","flushCurrentErrorIfNew","key","getMessage","logDedupedError","args","message","NODE_ENV","callStackFrames","Error","stack","split","undefined","length"],"mappings":"AAauBO,QAAQC,GAAG,CAACC,uBAAuB;;;;;+BA4B1CT,+CAAAA;;;eAAAA;;;+DAzCO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvB,MAAMC,WAAsC;IAAEC,SAAS;AAAK;AAE5D,iFAAiF;AACjF,MAAMC,QACJ,OAAOC,OAAMD,KAAK,KAAK,aACnBC,OAAMD,KAAK,GACX,CAACE,KAA+BA;AAEtC,2EAA2E;AAC3E,qEAAqE;AACrE,gBAAgB;AAChB,MAAMC,uDACFI,QAAQC,KAAK,aACbD,QAAQE,IAAI;AAEhB,2CAA2C;AAC3C,wGAAwG;AACxG,MAAMC,yBAAyBV,MAC7B,AACA,CAACW,yEADyE;IAExE,IAAI;QACFR,eAAeL,SAASC,OAAO;IACjC,SAAU;QACRD,SAASC,OAAO,GAAG;IACrB;AACF;AAcK,SAASF,4CACde,UAAoC;IAEpC,OAAO,SAASC,gBAAgB,GAAGC,IAAU;QAC3C,MAAMC,UAAUH,cAAcE;QAE9B,IAAIV,QAAQC,GAAG,CAACW,QAAQ,KAAK,WAAc;gBACjB;YAAxB,MAAMC,kBAAAA,CAAkB,SAAA,IAAIC,QAAQC,KAAK,KAAA,OAAA,KAAA,IAAjB,OAAmBC,KAAK,CAAC;YACjD,IAAIH,oBAAoBI,aAAaJ,gBAAgBK,MAAM,GAAG,GAAG;gBAC/DnB,eAAeY;YACjB,OAAO;gBACL,SAAS;gBACT,oBAAoB;gBACpB,uCAAuC;gBACvC,wBAAwB;gBACxB,iEAAiE;gBACjE,MAAMJ,MAAMM,eAAe,CAAC,EAAE;gBAC9BnB,SAASC,OAAO,GAAGgB;gBACnBL,uBAAuBC;YACzB;QACF,OAAO;;IAGT;AACF","ignoreList":[0]}}, - {"offset": {"line": 1111, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/after-task-async-storage-instance.ts"],"sourcesContent":["import type { AfterTaskAsyncStorage } from './after-task-async-storage.external'\nimport { createAsyncLocalStorage } from './async-local-storage'\n\nexport const afterTaskAsyncStorageInstance: AfterTaskAsyncStorage =\n createAsyncLocalStorage()\n"],"names":["afterTaskAsyncStorageInstance","createAsyncLocalStorage"],"mappings":";;;+BAGaA,iCAAAA;;;eAAAA;;;mCAF2B;AAEjC,MAAMA,gCACXC,CAAAA,GAAAA,mBAAAA,uBAAuB","ignoreList":[0]}}, - {"offset": {"line": 1126, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/after-task-async-storage.external.ts"],"sourcesContent":["import type { AsyncLocalStorage } from 'async_hooks'\n\n// Share the instance module in the next-shared layer\nimport { afterTaskAsyncStorageInstance as afterTaskAsyncStorage } from './after-task-async-storage-instance' with { 'turbopack-transition': 'next-shared' }\nimport type { WorkUnitStore } from './work-unit-async-storage.external'\n\nexport interface AfterTaskStore {\n /** The phase in which the topmost `after` was called.\n *\n * NOTE: Can be undefined when running `generateStaticParams`,\n * where we only have a `workStore`, no `workUnitStore`.\n */\n readonly rootTaskSpawnPhase: WorkUnitStore['phase'] | undefined\n}\n\nexport type AfterTaskAsyncStorage = AsyncLocalStorage<AfterTaskStore>\n\nexport { afterTaskAsyncStorage }\n"],"names":["afterTaskAsyncStorage"],"mappings":";;;+BAiBSA,yBAAAA;;;eAAAA,+BAAAA,6BAAqB;;;+CAdyC","ignoreList":[0]}}, - {"offset": {"line": 1140, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/utils.ts"],"sourcesContent":["import { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport { afterTaskAsyncStorage } from '../app-render/after-task-async-storage.external'\nimport type { WorkStore } from '../app-render/work-async-storage.external'\n\nexport function throwWithStaticGenerationBailoutErrorWithDynamicError(\n route: string,\n expression: string\n): never {\n throw new StaticGenBailoutError(\n `Route ${route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n}\n\nexport function throwForSearchParamsAccessInUseCache(\n workStore: WorkStore,\n constructorOpt: Function\n): never {\n const error = new Error(\n `Route ${workStore.route} used \\`searchParams\\` inside \"use cache\". Accessing dynamic request data inside a cache scope is not supported. If you need some search params inside a cached function await \\`searchParams\\` outside of the cached function and pass only the required search params as arguments to the cached function. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`\n )\n\n Error.captureStackTrace(error, constructorOpt)\n workStore.invalidDynamicUsageError ??= error\n\n throw error\n}\n\nexport function isRequestAPICallableInsideAfter() {\n const afterTaskStore = afterTaskAsyncStorage.getStore()\n return afterTaskStore?.rootTaskSpawnPhase === 'action'\n}\n"],"names":["isRequestAPICallableInsideAfter","throwForSearchParamsAccessInUseCache","throwWithStaticGenerationBailoutErrorWithDynamicError","route","expression","StaticGenBailoutError","workStore","constructorOpt","error","Error","captureStackTrace","invalidDynamicUsageError","afterTaskStore","afterTaskAsyncStorage","getStore","rootTaskSpawnPhase"],"mappings":";;;;;;;;;;;;;;;IA2BgBA,+BAA+B,EAAA;eAA/BA;;IAdAC,oCAAoC,EAAA;eAApCA;;IATAC,qDAAqD,EAAA;eAArDA;;;yCAJsB;+CACA;AAG/B,SAASA,sDACdC,KAAa,EACbC,UAAkB;IAElB,MAAM,OAAA,cAEL,CAFK,IAAIC,yBAAAA,qBAAqB,CAC7B,CAAC,MAAM,EAAEF,MAAM,4EAA4E,EAAEC,WAAW,0HAA0H,CAAC,GAD/N,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAEO,SAASH,qCACdK,SAAoB,EACpBC,cAAwB;IAExB,MAAMC,QAAQ,OAAA,cAEb,CAFa,IAAIC,MAChB,CAAC,MAAM,EAAEH,UAAUH,KAAK,CAAC,2XAA2X,CAAC,GADzY,qBAAA;eAAA;oBAAA;sBAAA;IAEd;IAEAM,MAAMC,iBAAiB,CAACF,OAAOD;IAC/BD,UAAUK,wBAAwB,KAAKH;IAEvC,MAAMA;AACR;AAEO,SAASR;IACd,MAAMY,iBAAiBC,+BAAAA,qBAAqB,CAACC,QAAQ;IACrD,OAAOF,CAAAA,kBAAAA,OAAAA,KAAAA,IAAAA,eAAgBG,kBAAkB,MAAK;AAChD","ignoreList":[0]}}, - {"offset": {"line": 1192, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/staged-rendering.ts"],"sourcesContent":["import { InvariantError } from '../../shared/lib/invariant-error'\nimport { createPromiseWithResolvers } from '../../shared/lib/promise-with-resolvers'\n\nexport enum RenderStage {\n Before = 1,\n Static = 2,\n Runtime = 3,\n Dynamic = 4,\n Abandoned = 5,\n}\n\nexport type NonStaticRenderStage = RenderStage.Runtime | RenderStage.Dynamic\n\nexport class StagedRenderingController {\n currentStage: RenderStage = RenderStage.Before\n\n staticInterruptReason: Error | null = null\n runtimeInterruptReason: Error | null = null\n staticStageEndTime: number = Infinity\n runtimeStageEndTime: number = Infinity\n\n private runtimeStageListeners: Array<() => void> = []\n private dynamicStageListeners: Array<() => void> = []\n\n private runtimeStagePromise = createPromiseWithResolvers<void>()\n private dynamicStagePromise = createPromiseWithResolvers<void>()\n\n private mayAbandon: boolean = false\n\n constructor(\n private abortSignal: AbortSignal | null = null,\n private hasRuntimePrefetch: boolean\n ) {\n if (abortSignal) {\n abortSignal.addEventListener(\n 'abort',\n () => {\n const { reason } = abortSignal\n if (this.currentStage < RenderStage.Runtime) {\n this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.runtimeStagePromise.reject(reason)\n }\n if (\n this.currentStage < RenderStage.Dynamic ||\n this.currentStage === RenderStage.Abandoned\n ) {\n this.dynamicStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.dynamicStagePromise.reject(reason)\n }\n },\n { once: true }\n )\n\n this.mayAbandon = true\n }\n }\n\n onStage(stage: NonStaticRenderStage, callback: () => void) {\n if (this.currentStage >= stage) {\n callback()\n } else if (stage === RenderStage.Runtime) {\n this.runtimeStageListeners.push(callback)\n } else if (stage === RenderStage.Dynamic) {\n this.dynamicStageListeners.push(callback)\n } else {\n // This should never happen\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n\n canSyncInterrupt() {\n // If we haven't started the render yet, it can't be interrupted.\n if (this.currentStage === RenderStage.Before) {\n return false\n }\n\n const boundaryStage = this.hasRuntimePrefetch\n ? RenderStage.Dynamic\n : RenderStage.Runtime\n return this.currentStage < boundaryStage\n }\n\n syncInterruptCurrentStageWithReason(reason: Error) {\n if (this.currentStage === RenderStage.Before) {\n return\n }\n\n // If Sync IO occurs during the initial (abandonable) render, we'll retry it,\n // so we want a slightly different flow.\n // See the implementation of `abandonRenderImpl` for more explanation.\n if (this.mayAbandon) {\n return this.abandonRenderImpl()\n }\n\n // If we're in the final render, we cannot abandon it. We need to advance to the Dynamic stage\n // and capture the interruption reason.\n switch (this.currentStage) {\n case RenderStage.Static: {\n this.staticInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n return\n }\n case RenderStage.Runtime: {\n // We only error for Sync IO in the runtime stage if the route\n // is configured to use runtime prefetching.\n // We do this to reflect the fact that during a runtime prefetch,\n // Sync IO aborts aborts the render.\n // Note that `canSyncInterrupt` should prevent us from getting here at all\n // if runtime prefetching isn't enabled.\n if (this.hasRuntimePrefetch) {\n this.runtimeInterruptReason = reason\n this.advanceStage(RenderStage.Dynamic)\n }\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Abandoned:\n default:\n }\n }\n\n getStaticInterruptReason() {\n return this.staticInterruptReason\n }\n\n getRuntimeInterruptReason() {\n return this.runtimeInterruptReason\n }\n\n getStaticStageEndTime() {\n return this.staticStageEndTime\n }\n\n getRuntimeStageEndTime() {\n return this.runtimeStageEndTime\n }\n\n abandonRender() {\n if (!this.mayAbandon) {\n throw new InvariantError(\n '`abandonRender` called on a stage controller that cannot be abandoned.'\n )\n }\n\n this.abandonRenderImpl()\n }\n\n private abandonRenderImpl() {\n // In staged rendering, only the initial render is abandonable.\n // We can abandon the initial render if\n // 1. We notice a cache miss, and need to wait for caches to fill\n // 2. A sync IO error occurs, and the render should be interrupted\n // (this might be a lazy intitialization of a module,\n // so we still want to restart in this case and see if it still occurs)\n // In either case, we'll be doing another render after this one,\n // so we only want to unblock the Runtime stage, not Dynamic, because\n // unblocking the dynamic stage would likely lead to wasted (uncached) IO.\n const { currentStage } = this\n switch (currentStage) {\n case RenderStage.Static: {\n this.currentStage = RenderStage.Abandoned\n this.resolveRuntimeStage()\n return\n }\n case RenderStage.Runtime: {\n this.currentStage = RenderStage.Abandoned\n return\n }\n case RenderStage.Dynamic:\n case RenderStage.Before:\n case RenderStage.Abandoned:\n break\n default: {\n currentStage satisfies never\n }\n }\n }\n\n advanceStage(\n stage: RenderStage.Static | RenderStage.Runtime | RenderStage.Dynamic\n ) {\n // If we're already at the target stage or beyond, do nothing.\n // (this can happen e.g. if sync IO advanced us to the dynamic stage)\n if (stage <= this.currentStage) {\n return\n }\n\n let currentStage = this.currentStage\n this.currentStage = stage\n\n if (currentStage < RenderStage.Runtime && stage >= RenderStage.Runtime) {\n this.staticStageEndTime = performance.now() + performance.timeOrigin\n this.resolveRuntimeStage()\n }\n if (currentStage < RenderStage.Dynamic && stage >= RenderStage.Dynamic) {\n this.runtimeStageEndTime = performance.now() + performance.timeOrigin\n this.resolveDynamicStage()\n return\n }\n }\n\n /** Fire the `onStage` listeners for the runtime stage and unblock any promises waiting for it. */\n private resolveRuntimeStage() {\n const runtimeListeners = this.runtimeStageListeners\n for (let i = 0; i < runtimeListeners.length; i++) {\n runtimeListeners[i]()\n }\n runtimeListeners.length = 0\n this.runtimeStagePromise.resolve()\n }\n\n /** Fire the `onStage` listeners for the dynamic stage and unblock any promises waiting for it. */\n private resolveDynamicStage() {\n const dynamicListeners = this.dynamicStageListeners\n for (let i = 0; i < dynamicListeners.length; i++) {\n dynamicListeners[i]()\n }\n dynamicListeners.length = 0\n this.dynamicStagePromise.resolve()\n }\n\n private getStagePromise(stage: NonStaticRenderStage): Promise<void> {\n switch (stage) {\n case RenderStage.Runtime: {\n return this.runtimeStagePromise.promise\n }\n case RenderStage.Dynamic: {\n return this.dynamicStagePromise.promise\n }\n default: {\n stage satisfies never\n throw new InvariantError(`Invalid render stage: ${stage}`)\n }\n }\n }\n\n waitForStage(stage: NonStaticRenderStage) {\n return this.getStagePromise(stage)\n }\n\n delayUntilStage<T>(\n stage: NonStaticRenderStage,\n displayName: string | undefined,\n resolvedValue: T\n ) {\n const ioTriggerPromise = this.getStagePromise(stage)\n\n const promise = makeDevtoolsIOPromiseFromIOTrigger(\n ioTriggerPromise,\n displayName,\n resolvedValue\n )\n\n // Analogously to `makeHangingPromise`, we might reject this promise if the signal is invoked.\n // (e.g. in the case where we don't want want the render to proceed to the dynamic stage and abort it).\n // We shouldn't consider this an unhandled rejection, so we attach a noop catch handler here to suppress this warning.\n if (this.abortSignal) {\n promise.catch(ignoreReject)\n }\n return promise\n }\n}\n\nfunction ignoreReject() {}\n\n// TODO(restart-on-cache-miss): the layering of `delayUntilStage`,\n// `makeDevtoolsIOPromiseFromIOTrigger` and and `makeDevtoolsIOAwarePromise`\n// is confusing, we should clean it up.\nfunction makeDevtoolsIOPromiseFromIOTrigger<T>(\n ioTrigger: Promise<any>,\n displayName: string | undefined,\n resolvedValue: T\n): Promise<T> {\n // If we create a `new Promise` and give it a displayName\n // (with no userspace code above us in the stack)\n // React Devtools will use it as the IO cause when determining \"suspended by\".\n // In particular, it should shadow any inner IO that resolved/rejected the promise\n // (in case of staged rendering, this will be the `setTimeout` that triggers the relevant stage)\n const promise = new Promise<T>((resolve, reject) => {\n ioTrigger.then(resolve.bind(null, resolvedValue), reject)\n })\n if (displayName !== undefined) {\n // @ts-expect-error\n promise.displayName = displayName\n }\n return promise\n}\n"],"names":["RenderStage","StagedRenderingController","constructor","abortSignal","hasRuntimePrefetch","currentStage","staticInterruptReason","runtimeInterruptReason","staticStageEndTime","Infinity","runtimeStageEndTime","runtimeStageListeners","dynamicStageListeners","runtimeStagePromise","createPromiseWithResolvers","dynamicStagePromise","mayAbandon","addEventListener","reason","promise","catch","ignoreReject","reject","once","onStage","stage","callback","push","InvariantError","canSyncInterrupt","boundaryStage","syncInterruptCurrentStageWithReason","abandonRenderImpl","advanceStage","getStaticInterruptReason","getRuntimeInterruptReason","getStaticStageEndTime","getRuntimeStageEndTime","abandonRender","resolveRuntimeStage","performance","now","timeOrigin","resolveDynamicStage","runtimeListeners","i","length","resolve","dynamicListeners","getStagePromise","waitForStage","delayUntilStage","displayName","resolvedValue","ioTriggerPromise","makeDevtoolsIOPromiseFromIOTrigger","ioTrigger","Promise","then","bind","undefined"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1466, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/search-params.ts"],"sourcesContent":["import type { WorkStore } from '../app-render/work-async-storage.external'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n annotateDynamicAccess,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStoreLegacy,\n type PrerenderStorePPR,\n type PrerenderStoreModern,\n type PrerenderStoreModernRuntime,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport {\n describeStringPropertyAccess,\n describeHasCheckingStringProperty,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n throwWithStaticGenerationBailoutErrorWithDynamicError,\n throwForSearchParamsAccessInUseCache,\n} from './utils'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type SearchParams = { [key: string]: string | string[] | undefined }\n\nexport function createSearchParamsFromClient(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise<SearchParams> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'prerender-runtime':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createSearchParamsFromClient should not be called in cache contexts.'\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport const createServerSearchParamsForMetadata =\n createServerSearchParamsForServerPage\n\nexport function createServerSearchParamsForServerPage(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore\n): Promise<SearchParams> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderSearchParams(workStore, workUnitStore)\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerSearchParamsForServerPage should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderSearchParams(\n underlyingSearchParams,\n workUnitStore\n )\n case 'request':\n return createRenderSearchParams(\n underlyingSearchParams,\n workStore,\n workUnitStore\n )\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderSearchParamsForClientPage(\n workStore: WorkStore\n): Promise<SearchParams> {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We're prerendering in a mode that aborts (cacheComponents) and should stall\n // the promise to ensure the RSC side is considered dynamic\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in a runtime prerender.'\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderSearchParamsForClientPage should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n return Promise.resolve({})\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nfunction createStaticPrerenderSearchParams(\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise<SearchParams> {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n }\n\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client':\n // We are in a cacheComponents (PPR or otherwise) prerender\n return makeHangingSearchParams(workStore, prerenderStore)\n case 'prerender-ppr':\n case 'prerender-legacy':\n // We are in a legacy static generation and need to interrupt the\n // prerender when search params are accessed.\n return makeErroringSearchParams(workStore, prerenderStore)\n default:\n return prerenderStore satisfies never\n }\n}\n\nfunction createRuntimePrerenderSearchParams(\n underlyingSearchParams: SearchParams,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise<SearchParams> {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedSearchParams(underlyingSearchParams)\n )\n}\n\nfunction createRenderSearchParams(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<SearchParams> {\n if (workStore.forceStatic) {\n // When using forceStatic we override all other logic and always just return an empty\n // dictionary object.\n return Promise.resolve({})\n } else {\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n return makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n return makeUntrackedSearchParams(underlyingSearchParams)\n }\n }\n}\n\ninterface CacheLifetime {}\nconst CachedSearchParams = new WeakMap<CacheLifetime, Promise<SearchParams>>()\n\nconst CachedSearchParamsForUseCache = new WeakMap<\n CacheLifetime,\n Promise<SearchParams>\n>()\n\nfunction makeHangingSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreModern\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParams.get(prerenderStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = makeHangingPromise<SearchParams>(\n prerenderStore.renderSignal,\n workStore.route,\n '`searchParams`'\n )\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n switch (prop) {\n case 'then': {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n case 'status': {\n const expression =\n '`use(searchParams)`, `searchParams.status`, or similar'\n annotateDynamicAccess(expression, prerenderStore)\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n default: {\n return ReflectAdapter.get(target, prop, receiver)\n }\n }\n },\n })\n\n CachedSearchParams.set(prerenderStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeErroringSearchParams(\n workStore: WorkStore,\n prerenderStore: PrerenderStoreLegacy | PrerenderStorePPR\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParams.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const underlyingSearchParams = {}\n // For search params we don't construct a ReactPromise because we want to interrupt\n // rendering on any property access that was not set from outside and so we only want\n // to have properties like value and status if React sets them.\n const promise = Promise.resolve(underlyingSearchParams)\n\n const proxiedPromise = new Proxy(promise, {\n get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it.\n // We know it isn't a dynamic access because it can only be something\n // that was previously written to the promise and thus not an underlying searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (typeof prop === 'string' && prop === 'then') {\n const expression =\n '`await searchParams`, `searchParams.then`, or similar'\n if (workStore.dynamicShouldError) {\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n } else if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParams.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\n/**\n * This is a variation of `makeErroringSearchParams` that always throws an\n * error on access, because accessing searchParams inside of `\"use cache\"` is\n * not allowed.\n */\nexport function makeErroringSearchParamsForUseCache(\n workStore: WorkStore\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParamsForUseCache.get(workStore)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve({})\n\n const proxiedPromise = new Proxy(promise, {\n get: function get(target, prop, receiver) {\n if (Object.hasOwn(promise, prop)) {\n // The promise has this property directly. we must return it. We know it\n // isn't a dynamic access because it can only be something that was\n // previously written to the promise and thus not an underlying\n // searchParam value\n return ReflectAdapter.get(target, prop, receiver)\n }\n\n if (\n typeof prop === 'string' &&\n (prop === 'then' || !wellKnownProperties.has(prop))\n ) {\n throwForSearchParamsAccessInUseCache(workStore, get)\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n })\n\n CachedSearchParamsForUseCache.set(workStore, proxiedPromise)\n return proxiedPromise\n}\n\nfunction makeUntrackedSearchParams(\n underlyingSearchParams: SearchParams\n): Promise<SearchParams> {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n\n const promise = Promise.resolve(underlyingSearchParams)\n CachedSearchParams.set(underlyingSearchParams, promise)\n\n return promise\n}\n\nfunction makeUntrackedSearchParamsWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<SearchParams> {\n if (requestStore.asyncApiPromises) {\n // Do not cache the resulting promise. If we do, we'll only show the first \"awaited at\"\n // across all segments that receive searchParams.\n return makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n } else {\n const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams)\n if (cachedSearchParams) {\n return cachedSearchParams\n }\n const promise = makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams,\n workStore,\n requestStore\n )\n CachedSearchParams.set(requestStore, promise)\n return promise\n }\n}\n\nfunction makeUntrackedSearchParamsWithDevWarningsImpl(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<SearchParams> {\n const promiseInitialized = { current: false }\n const proxiedUnderlying = instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams,\n workStore,\n promiseInitialized\n )\n\n let promise: Promise<SearchParams>\n if (requestStore.asyncApiPromises) {\n // We wrap each instance of searchParams in a `new Promise()`.\n // This is important when all awaits are in third party which would otherwise\n // track all the way to the internal params.\n const sharedSearchParamsParent =\n requestStore.asyncApiPromises.sharedSearchParamsParent\n promise = new Promise((resolve, reject) => {\n sharedSearchParamsParent.then(() => resolve(proxiedUnderlying), reject)\n })\n // @ts-expect-error\n promise.displayName = 'searchParams'\n } else {\n promise = makeDevtoolsIOAwarePromise(\n proxiedUnderlying,\n requestStore,\n RenderStage.Runtime\n )\n }\n promise.then(\n () => {\n promiseInitialized.current = true\n },\n // If we're in staged rendering, this promise will reject if the render\n // is aborted before it can reach the runtime stage.\n // In that case, we have to prevent an unhandled rejection from the promise\n // created by this `.then()` call.\n // This does not affect the `promiseInitialized` logic above,\n // because `proxiedUnderlying` will not be used to resolve the promise,\n // so there's no risk of any of its properties being accessed and triggering\n // an undesireable warning.\n ignoreReject\n )\n\n return instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams,\n promise,\n workStore\n )\n}\n\nfunction ignoreReject() {}\n\nfunction instrumentSearchParamsObjectWithDevWarnings(\n underlyingSearchParams: SearchParams,\n workStore: WorkStore,\n promiseInitialized: { current: boolean }\n) {\n // We have an unfortunate sequence of events that requires this initialization logic. We want to instrument the underlying\n // searchParams object to detect if you are accessing values in dev. This is used for warnings and for things like the static prerender\n // indicator. However when we pass this proxy to our Promise.resolve() below the VM checks if the resolved value is a promise by looking\n // at the `.then` property. To our dynamic tracking logic this is indistinguishable from a `then` searchParam and so we would normally trigger\n // dynamic tracking. However we know that this .then is not real dynamic access, it's just how thenables resolve in sequence. So we introduce\n // this initialization concept so we omit the dynamic check until after we've constructed our resolved promise.\n return new Proxy(underlyingSearchParams, {\n get(target, prop, receiver) {\n if (typeof prop === 'string' && promiseInitialized.current) {\n if (workStore.dynamicShouldError) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (workStore.dynamicShouldError) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n if (workStore.dynamicShouldError) {\n const expression =\n '`{...searchParams}`, `Object.keys(searchParams)`, or similar'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n return Reflect.ownKeys(target)\n },\n })\n}\n\nfunction instrumentSearchParamsPromiseWithDevWarnings(\n underlyingSearchParams: SearchParams,\n promise: Promise<SearchParams>,\n workStore: WorkStore\n) {\n // Track which properties we should warn for.\n const proxiedProperties = new Set<string>()\n\n Object.keys(underlyingSearchParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (prop === 'then' && workStore.dynamicShouldError) {\n const expression = '`searchParams.then`'\n throwWithStaticGenerationBailoutErrorWithDynamicError(\n workStore.route,\n expression\n )\n }\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeStringPropertyAccess('searchParams', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return Reflect.set(target, prop, value, receiver)\n },\n has(target, prop) {\n if (typeof prop === 'string') {\n if (\n !wellKnownProperties.has(prop) &&\n (proxiedProperties.has(prop) ||\n // We are accessing a property that doesn't exist on the promise nor\n // the underlying searchParams.\n Reflect.has(target, prop) === false)\n ) {\n const expression = describeHasCheckingStringProperty(\n 'searchParams',\n prop\n )\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return Reflect.has(target, prop)\n },\n ownKeys(target) {\n const expression = '`Object.keys(searchParams)` or similar'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createSearchAccessError\n)\n\nfunction createSearchAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`searchParams\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["createPrerenderSearchParamsForClientPage","createSearchParamsFromClient","createServerSearchParamsForMetadata","createServerSearchParamsForServerPage","makeErroringSearchParamsForUseCache","underlyingSearchParams","workStore","workUnitStore","workUnitAsyncStorage","getStore","type","createStaticPrerenderSearchParams","InvariantError","createRenderSearchParams","throwInvariantForMissingStore","createRuntimePrerenderSearchParams","forceStatic","Promise","resolve","makeHangingPromise","renderSignal","route","prerenderStore","makeHangingSearchParams","makeErroringSearchParams","delayUntilRuntimeStage","makeUntrackedSearchParams","requestStore","process","env","NODE_ENV","makeUntrackedSearchParamsWithDevWarnings","CachedSearchParams","WeakMap","CachedSearchParamsForUseCache","cachedSearchParams","get","promise","proxiedPromise","Proxy","target","prop","receiver","Object","hasOwn","ReflectAdapter","expression","annotateDynamicAccess","set","dynamicShouldError","throwWithStaticGenerationBailoutErrorWithDynamicError","postponeWithTracking","dynamicTracking","throwToInterruptStaticGeneration","wellKnownProperties","has","throwForSearchParamsAccessInUseCache","asyncApiPromises","makeUntrackedSearchParamsWithDevWarningsImpl","promiseInitialized","current","proxiedUnderlying","instrumentSearchParamsObjectWithDevWarnings","sharedSearchParamsParent","reject","then","displayName","makeDevtoolsIOAwarePromise","RenderStage","Runtime","ignoreReject","instrumentSearchParamsPromiseWithDevWarnings","describeStringPropertyAccess","describeHasCheckingStringProperty","Reflect","ownKeys","proxiedProperties","Set","keys","forEach","add","warnForSyncAccess","value","delete","createDedupedByCallsiteServerErrorLoggerDev","createSearchAccessError","prefix","Error"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1899, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/dynamic-access-async-storage-instance.ts"],"sourcesContent":["import { createAsyncLocalStorage } from './async-local-storage'\nimport type { DynamicAccessStorage } from './dynamic-access-async-storage.external'\n\nexport const dynamicAccessAsyncStorageInstance: DynamicAccessStorage =\n createAsyncLocalStorage()\n"],"names":["dynamicAccessAsyncStorageInstance","createAsyncLocalStorage"],"mappings":";;;+BAGaA,qCAAAA;;;eAAAA;;;mCAH2B;AAGjC,MAAMA,oCACXC,CAAAA,GAAAA,mBAAAA,uBAAuB","ignoreList":[0]}}, - {"offset": {"line": 1914, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/dynamic-access-async-storage.external.ts"],"sourcesContent":["import type { AsyncLocalStorage } from 'async_hooks'\n\n// Share the instance module in the next-shared layer\nimport { dynamicAccessAsyncStorageInstance } from './dynamic-access-async-storage-instance' with { 'turbopack-transition': 'next-shared' }\n\nexport interface DynamicAccessAsyncStore {\n readonly abortController: AbortController\n}\n\nexport type DynamicAccessStorage = AsyncLocalStorage<DynamicAccessAsyncStore>\nexport { dynamicAccessAsyncStorageInstance as dynamicAccessAsyncStorage }\n"],"names":["dynamicAccessAsyncStorage","dynamicAccessAsyncStorageInstance"],"mappings":";;;+BAU8CA,6BAAAA;;;eAArCC,mCAAAA,iCAAiC;;;mDAPQ","ignoreList":[0]}}, - {"offset": {"line": 1928, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/request/params.ts"],"sourcesContent":["import {\n workAsyncStorage,\n type WorkStore,\n} from '../app-render/work-async-storage.external'\nimport type { OpaqueFallbackRouteParams } from './fallback-params'\n\nimport { ReflectAdapter } from '../web/spec-extension/adapters/reflect'\nimport {\n throwToInterruptStaticGeneration,\n postponeWithTracking,\n delayUntilRuntimeStage,\n} from '../app-render/dynamic-rendering'\n\nimport {\n workUnitAsyncStorage,\n type PrerenderStorePPR,\n type PrerenderStoreLegacy,\n type StaticPrerenderStoreModern,\n type StaticPrerenderStore,\n throwInvariantForMissingStore,\n type PrerenderStoreModernRuntime,\n type RequestStore,\n} from '../app-render/work-unit-async-storage.external'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport {\n describeStringPropertyAccess,\n wellKnownProperties,\n} from '../../shared/lib/utils/reflect-utils'\nimport {\n makeDevtoolsIOAwarePromise,\n makeHangingPromise,\n} from '../dynamic-rendering-utils'\nimport { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'\nimport { dynamicAccessAsyncStorage } from '../app-render/dynamic-access-async-storage.external'\nimport { RenderStage } from '../app-render/staged-rendering'\n\nexport type ParamValue = string | Array<string> | undefined\nexport type Params = Record<string, ParamValue>\n\nexport function createParamsFromClient(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise<Params> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createParamsFromClient should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n throw new InvariantError(\n 'createParamsFromClient should not be called in a runtime prerender.'\n )\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\n// generateMetadata always runs in RSC context so it is equivalent to a Server Page Component\nexport type CreateServerParamsForMetadata = typeof createServerParamsForMetadata\nexport const createServerParamsForMetadata = createServerParamsForServerSegment\n\n// routes always runs in RSC context so it is equivalent to a Server Page Component\nexport function createServerParamsForRoute(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise<Params> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForRoute should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createServerParamsForServerSegment(\n underlyingParams: Params,\n workStore: WorkStore\n): Promise<Params> {\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n return createStaticPrerenderParams(\n underlyingParams,\n workStore,\n workUnitStore\n )\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createServerParamsForServerSegment should not be called in cache contexts.'\n )\n case 'prerender-runtime':\n return createRuntimePrerenderParams(underlyingParams, workUnitStore)\n case 'request':\n if (process.env.NODE_ENV === 'development') {\n // Semantically we only need the dev tracking when running in `next dev`\n // but since you would never use next dev with production NODE_ENV we use this\n // as a proxy so we can statically exclude this code from production builds.\n const devFallbackParams = workUnitStore.devFallbackParams\n return createRenderParamsInDev(\n underlyingParams,\n devFallbackParams,\n workStore,\n workUnitStore\n )\n } else {\n return createRenderParamsInProd(underlyingParams)\n }\n default:\n workUnitStore satisfies never\n }\n }\n throwInvariantForMissingStore()\n}\n\nexport function createPrerenderParamsForClientSegment(\n underlyingParams: Params\n): Promise<Params> {\n const workStore = workAsyncStorage.getStore()\n if (!workStore) {\n throw new InvariantError(\n 'Missing workStore in createPrerenderParamsForClientSegment'\n )\n }\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams) {\n for (let key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n '`params`'\n )\n }\n }\n }\n break\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n throw new InvariantError(\n 'createPrerenderParamsForClientSegment should not be called in cache contexts.'\n )\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'prerender-runtime':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n // We're prerendering in a mode that does not abort. We resolve the promise without\n // any tracking because we're just transporting a value from server to client where the tracking\n // will be applied.\n return Promise.resolve(underlyingParams)\n}\n\nfunction createStaticPrerenderParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStore\n): Promise<Params> {\n switch (prerenderStore.type) {\n case 'prerender':\n case 'prerender-client': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n // This params object has one or more fallback params, so we need\n // to consider the awaiting of this params object \"dynamic\". Since\n // we are in cacheComponents mode we encode this as a promise that never\n // resolves.\n return makeHangingParams(\n underlyingParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = prerenderStore.fallbackRouteParams\n if (fallbackParams) {\n for (const key in underlyingParams) {\n if (fallbackParams.has(key)) {\n return makeErroringParams(\n underlyingParams,\n fallbackParams,\n workStore,\n prerenderStore\n )\n }\n }\n }\n break\n }\n case 'prerender-legacy':\n break\n default:\n prerenderStore satisfies never\n }\n\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRuntimePrerenderParams(\n underlyingParams: Params,\n workUnitStore: PrerenderStoreModernRuntime\n): Promise<Params> {\n return delayUntilRuntimeStage(\n workUnitStore,\n makeUntrackedParams(underlyingParams)\n )\n}\n\nfunction createRenderParamsInProd(underlyingParams: Params): Promise<Params> {\n return makeUntrackedParams(underlyingParams)\n}\n\nfunction createRenderParamsInDev(\n underlyingParams: Params,\n devFallbackParams: OpaqueFallbackRouteParams | null | undefined,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<Params> {\n let hasFallbackParams = false\n if (devFallbackParams) {\n for (let key in underlyingParams) {\n if (devFallbackParams.has(key)) {\n hasFallbackParams = true\n break\n }\n }\n }\n\n return makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams,\n hasFallbackParams,\n workStore,\n requestStore\n )\n}\n\ninterface CacheLifetime {}\nconst CachedParams = new WeakMap<CacheLifetime, Promise<Params>>()\n\nconst fallbackParamsProxyHandler: ProxyHandler<Promise<Params>> = {\n get: function get(target, prop, receiver) {\n if (prop === 'then' || prop === 'catch' || prop === 'finally') {\n const originalMethod = ReflectAdapter.get(target, prop, receiver)\n\n return {\n [prop]: (...args: unknown[]) => {\n const store = dynamicAccessAsyncStorage.getStore()\n\n if (store) {\n store.abortController.abort(\n new Error(`Accessed fallback \\`params\\` during prerendering.`)\n )\n }\n\n return new Proxy(\n originalMethod.apply(target, args),\n fallbackParamsProxyHandler\n )\n },\n }[prop]\n }\n\n return ReflectAdapter.get(target, prop, receiver)\n },\n}\n\nfunction makeHangingParams(\n underlyingParams: Params,\n workStore: WorkStore,\n prerenderStore: StaticPrerenderStoreModern\n): Promise<Params> {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = new Proxy(\n makeHangingPromise<Params>(\n prerenderStore.renderSignal,\n workStore.route,\n '`params`'\n ),\n fallbackParamsProxyHandler\n )\n\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeErroringParams(\n underlyingParams: Params,\n fallbackParams: OpaqueFallbackRouteParams,\n workStore: WorkStore,\n prerenderStore: PrerenderStorePPR | PrerenderStoreLegacy\n): Promise<Params> {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const augmentedUnderlying = { ...underlyingParams }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = Promise.resolve(augmentedUnderlying)\n CachedParams.set(underlyingParams, promise)\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n if (fallbackParams.has(prop)) {\n Object.defineProperty(augmentedUnderlying, prop, {\n get() {\n const expression = describeStringPropertyAccess('params', prop)\n // In most dynamic APIs we also throw if `dynamic = \"error\"` however\n // for params is only dynamic when we're generating a fallback shell\n // and even when `dynamic = \"error\"` we still support generating dynamic\n // fallback shells\n // TODO remove this comment when cacheComponents is the default since there\n // will be no `dynamic = \"error\"`\n if (prerenderStore.type === 'prerender-ppr') {\n // PPR Prerender (no cacheComponents)\n postponeWithTracking(\n workStore.route,\n expression,\n prerenderStore.dynamicTracking\n )\n } else {\n // Legacy Prerender\n throwToInterruptStaticGeneration(\n expression,\n workStore,\n prerenderStore\n )\n }\n },\n enumerable: true,\n })\n }\n }\n })\n\n return promise\n}\n\nfunction makeUntrackedParams(underlyingParams: Params): Promise<Params> {\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n const promise = Promise.resolve(underlyingParams)\n CachedParams.set(underlyingParams, promise)\n\n return promise\n}\n\nfunction makeDynamicallyTrackedParamsWithDevWarnings(\n underlyingParams: Params,\n hasFallbackParams: boolean,\n workStore: WorkStore,\n requestStore: RequestStore\n): Promise<Params> {\n if (requestStore.asyncApiPromises && hasFallbackParams) {\n // We wrap each instance of params in a `new Promise()`, because deduping\n // them across requests doesn't work anyway and this let us show each\n // await a different set of values. This is important when all awaits\n // are in third party which would otherwise track all the way to the\n // internal params.\n const sharedParamsParent = requestStore.asyncApiPromises.sharedParamsParent\n const promise: Promise<Params> = new Promise((resolve, reject) => {\n sharedParamsParent.then(() => resolve(underlyingParams), reject)\n })\n // @ts-expect-error\n promise.displayName = 'params'\n return instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n }\n\n const cachedParams = CachedParams.get(underlyingParams)\n if (cachedParams) {\n return cachedParams\n }\n\n // We don't use makeResolvedReactPromise here because params\n // supports copying with spread and we don't want to unnecessarily\n // instrument the promise with spreadable properties of ReactPromise.\n const promise = hasFallbackParams\n ? makeDevtoolsIOAwarePromise(\n underlyingParams,\n requestStore,\n RenderStage.Runtime\n )\n : // We don't want to force an environment transition when this params is not part of the fallback params set\n Promise.resolve(underlyingParams)\n\n const proxiedPromise = instrumentParamsPromiseWithDevWarnings(\n underlyingParams,\n promise,\n workStore\n )\n CachedParams.set(underlyingParams, proxiedPromise)\n return proxiedPromise\n}\n\nfunction instrumentParamsPromiseWithDevWarnings(\n underlyingParams: Params,\n promise: Promise<Params>,\n workStore: WorkStore\n): Promise<Params> {\n // Track which properties we should warn for.\n const proxiedProperties = new Set<string>()\n\n Object.keys(underlyingParams).forEach((prop) => {\n if (wellKnownProperties.has(prop)) {\n // These properties cannot be shadowed because they need to be the\n // true underlying value for Promises to work correctly at runtime\n } else {\n proxiedProperties.add(prop)\n }\n })\n\n return new Proxy(promise, {\n get(target, prop, receiver) {\n if (typeof prop === 'string') {\n if (\n // We are accessing a property that was proxied to the promise instance\n proxiedProperties.has(prop)\n ) {\n const expression = describeStringPropertyAccess('params', prop)\n warnForSyncAccess(workStore.route, expression)\n }\n }\n return ReflectAdapter.get(target, prop, receiver)\n },\n set(target, prop, value, receiver) {\n if (typeof prop === 'string') {\n proxiedProperties.delete(prop)\n }\n return ReflectAdapter.set(target, prop, value, receiver)\n },\n ownKeys(target) {\n const expression = '`...params` or similar expression'\n warnForSyncAccess(workStore.route, expression)\n return Reflect.ownKeys(target)\n },\n })\n}\n\nconst warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(\n createParamsAccessError\n)\n\nfunction createParamsAccessError(\n route: string | undefined,\n expression: string\n) {\n const prefix = route ? `Route \"${route}\" ` : 'This route '\n return new Error(\n `${prefix}used ${expression}. ` +\n `\\`params\\` is a Promise and must be unwrapped with \\`await\\` or \\`React.use()\\` before accessing its properties. ` +\n `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`\n )\n}\n"],"names":["createParamsFromClient","createPrerenderParamsForClientSegment","createServerParamsForMetadata","createServerParamsForRoute","createServerParamsForServerSegment","underlyingParams","workStore","workUnitStore","workUnitAsyncStorage","getStore","type","createStaticPrerenderParams","InvariantError","process","env","NODE_ENV","devFallbackParams","createRenderParamsInDev","createRenderParamsInProd","throwInvariantForMissingStore","createRuntimePrerenderParams","workAsyncStorage","fallbackParams","fallbackRouteParams","key","has","makeHangingPromise","renderSignal","route","Promise","resolve","prerenderStore","makeHangingParams","makeErroringParams","makeUntrackedParams","delayUntilRuntimeStage","requestStore","hasFallbackParams","makeDynamicallyTrackedParamsWithDevWarnings","CachedParams","WeakMap","fallbackParamsProxyHandler","get","target","prop","receiver","originalMethod","ReflectAdapter","args","store","dynamicAccessAsyncStorage","abortController","abort","Error","Proxy","apply","cachedParams","promise","set","augmentedUnderlying","Object","keys","forEach","wellKnownProperties","defineProperty","expression","describeStringPropertyAccess","postponeWithTracking","dynamicTracking","throwToInterruptStaticGeneration","enumerable","asyncApiPromises","sharedParamsParent","reject","then","displayName","instrumentParamsPromiseWithDevWarnings","makeDevtoolsIOAwarePromise","RenderStage","Runtime","proxiedPromise","proxiedProperties","Set","add","warnForSyncAccess","value","delete","ownKeys","Reflect","createDedupedByCallsiteServerErrorLoggerDev","createParamsAccessError","prefix"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2342, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-page.tsx"],"sourcesContent":["'use client'\n\nimport type { ParsedUrlQuery } from 'querystring'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\nimport { urlSearchParamsToParsedUrlQuery } from '../route-params'\nimport { SearchParamsContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * When the Page is a client component we send the params and searchParams to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Page component.\n *\n * additionally we may send promises representing the params and searchParams. We don't ever use these passed\n * values but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations.\n * It is up to the caller to decide if the promises are needed.\n */\nexport function ClientPageRoot({\n Component,\n serverProvidedParams,\n}: {\n Component: React.ComponentType<any>\n serverProvidedParams: null | {\n searchParams: ParsedUrlQuery\n params: Params\n promises: Array<Promise<any>> | null\n }\n}) {\n let searchParams: ParsedUrlQuery\n let params: Params\n if (serverProvidedParams !== null) {\n searchParams = serverProvidedParams.searchParams\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params as\n // props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n\n // This is an intentional behavior change: when Cache Components is enabled,\n // client segments receive the \"canonical\" search params, not the\n // rewritten ones. Users should either call useSearchParams directly or pass\n // the rewritten ones in from a Server Component.\n // TODO: Log a deprecation error when this object is accessed\n searchParams = urlSearchParamsToParsedUrlQuery(use(SearchParamsContext)!)\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientSearchParams: Promise<ParsedUrlQuery>\n let clientParams: Promise<Params>\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling searchParams in a client Page.'\n )\n }\n\n const { createSearchParamsFromClient } =\n require('../../server/request/search-params') as typeof import('../../server/request/search-params')\n clientSearchParams = createSearchParamsFromClient(searchParams, store)\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return <Component params={clientParams} searchParams={clientSearchParams} />\n } else {\n const { createRenderSearchParamsFromClient } =\n require('../request/search-params.browser') as typeof import('../request/search-params.browser')\n const clientSearchParams = createRenderSearchParamsFromClient(searchParams)\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n\n return <Component params={clientParams} searchParams={clientSearchParams} />\n }\n}\n"],"names":["ClientPageRoot","Component","serverProvidedParams","searchParams","params","layoutRouterContext","use","LayoutRouterContext","parentParams","urlSearchParamsToParsedUrlQuery","SearchParamsContext","window","workAsyncStorage","require","clientSearchParams","clientParams","store","getStore","InvariantError","createSearchParamsFromClient","createParamsFromClient","createRenderSearchParamsFromClient","createRenderParamsFromClient"],"mappings":";;;+BAmBgBA,kBAAAA;;;eAAAA;;;;gCAhBe;+CAGK;uBAChB;6BAC4B;iDACZ;AAU7B,SAASA,eAAe,EAC7BC,SAAS,EACTC,oBAAoB,EAQrB;IACC,IAAIC;IACJ,IAAIC;IACJ,IAAIF,yBAAyB,MAAM;QACjCC,eAAeD,qBAAqBC,YAAY;QAChDC,SAASF,qBAAqBE,MAAM;IACtC,OAAO;QACL,2EAA2E;QAC3E,+DAA+D;QAC/D,MAAMC,sBAAsBC,CAAAA,GAAAA,OAAAA,GAAG,EAACC,+BAAAA,mBAAmB;QACnDH,SACEC,wBAAwB,OAAOA,oBAAoBG,YAAY,GAAG,CAAC;QAErE,4EAA4E;QAC5E,iEAAiE;QACjE,4EAA4E;QAC5E,iDAAiD;QACjD,6DAA6D;QAC7DL,eAAeM,CAAAA,GAAAA,aAAAA,+BAA+B,EAACH,CAAAA,GAAAA,OAAAA,GAAG,EAACI,iCAAAA,mBAAmB;IACxE;IAEA,IAAI,OAAOC,WAAW,aAAa;QACjC,MAAM,EAAEC,gBAAgB,EAAE,GACxBC,QAAQ;QAEV,IAAIC;QACJ,IAAIC;QACJ,yEAAyE;QACzE,wEAAwE;QACxE,MAAMC,QAAQJ,iBAAiBK,QAAQ;QACvC,IAAI,CAACD,OAAO;YACV,MAAM,OAAA,cAEL,CAFK,IAAIE,gBAAAA,cAAc,CACtB,6EADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEA,MAAM,EAAEC,4BAA4B,EAAE,GACpCN,QAAQ;QACVC,qBAAqBK,6BAA6BhB,cAAca;QAEhE,MAAM,EAAEI,sBAAsB,EAAE,GAC9BP,QAAQ;QACVE,eAAeK,uBAAuBhB,QAAQY;QAE9C,OAAA,WAAA,GAAO,CAAA,GAAA,YAAA,GAAA,EAACf,WAAAA;YAAUG,QAAQW;YAAcZ,cAAcW;;IACxD,OAAO;QACL,MAAM,EAAEO,kCAAkC,EAAE,GAC1CR,QAAQ;QACV,MAAMC,qBAAqBO,mCAAmClB;QAC9D,MAAM,EAAEmB,4BAA4B,EAAE,GACpCT,QAAQ;QACV,MAAME,eAAeO,6BAA6BlB;QAElD,OAAA,WAAA,GAAO,CAAA,GAAA,YAAA,GAAA,EAACH,WAAAA;YAAUG,QAAQW;YAAcZ,cAAcW;;IACxD;AACF","ignoreList":[0]}}, - {"offset": {"line": 2419, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/client-segment.tsx"],"sourcesContent":["'use client'\n\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nimport type { Params } from '../../server/request/params'\nimport { LayoutRouterContext } from '../../shared/lib/app-router-context.shared-runtime'\nimport { use } from 'react'\n\n/**\n * When the Page is a client component we send the params to this client wrapper\n * where they are turned into dynamically tracked values before being passed to the actual Segment component.\n *\n * additionally we may send a promise representing params. We don't ever use this passed\n * value but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations\n * such as when cacheComponents is enabled. It is up to the caller to decide if the promises are needed.\n */\nexport function ClientSegmentRoot({\n Component,\n slots,\n serverProvidedParams,\n}: {\n Component: React.ComponentType<any>\n slots: { [key: string]: React.ReactNode }\n serverProvidedParams: null | {\n params: Params\n promises: Array<Promise<any>> | null\n }\n}) {\n let params: Params\n if (serverProvidedParams !== null) {\n params = serverProvidedParams.params\n } else {\n // When Cache Components is enabled, the server does not pass the params\n // as props; they are parsed on the client and passed via context.\n const layoutRouterContext = use(LayoutRouterContext)\n params =\n layoutRouterContext !== null ? layoutRouterContext.parentParams : {}\n }\n\n if (typeof window === 'undefined') {\n const { workAsyncStorage } =\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n\n let clientParams: Promise<Params>\n // We are going to instrument the searchParams prop with tracking for the\n // appropriate context. We wrap differently in prerendering vs rendering\n const store = workAsyncStorage.getStore()\n if (!store) {\n throw new InvariantError(\n 'Expected workStore to exist when handling params in a client segment such as a Layout or Template.'\n )\n }\n\n const { createParamsFromClient } =\n require('../../server/request/params') as typeof import('../../server/request/params')\n clientParams = createParamsFromClient(params, store)\n\n return <Component {...slots} params={clientParams} />\n } else {\n const { createRenderParamsFromClient } =\n require('../request/params.browser') as typeof import('../request/params.browser')\n const clientParams = createRenderParamsFromClient(params)\n return <Component {...slots} params={clientParams} />\n }\n}\n"],"names":["ClientSegmentRoot","Component","slots","serverProvidedParams","params","layoutRouterContext","use","LayoutRouterContext","parentParams","window","workAsyncStorage","require","clientParams","store","getStore","InvariantError","createParamsFromClient","createRenderParamsFromClient"],"mappings":";;;+BAgBgBA,qBAAAA;;;eAAAA;;;;gCAde;+CAGK;uBAChB;AAUb,SAASA,kBAAkB,EAChCC,SAAS,EACTC,KAAK,EACLC,oBAAoB,EAQrB;IACC,IAAIC;IACJ,IAAID,yBAAyB,MAAM;QACjCC,SAASD,qBAAqBC,MAAM;IACtC,OAAO;QACL,wEAAwE;QACxE,kEAAkE;QAClE,MAAMC,sBAAsBC,CAAAA,GAAAA,OAAAA,GAAG,EAACC,+BAAAA,mBAAmB;QACnDH,SACEC,wBAAwB,OAAOA,oBAAoBG,YAAY,GAAG,CAAC;IACvE;IAEA,IAAI,OAAOC,WAAW,aAAa;QACjC,MAAM,EAAEC,gBAAgB,EAAE,GACxBC,QAAQ;QAEV,IAAIC;QACJ,yEAAyE;QACzE,wEAAwE;QACxE,MAAMC,QAAQH,iBAAiBI,QAAQ;QACvC,IAAI,CAACD,OAAO;YACV,MAAM,OAAA,cAEL,CAFK,IAAIE,gBAAAA,cAAc,CACtB,uGADI,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;QAEA,MAAM,EAAEC,sBAAsB,EAAE,GAC9BL,QAAQ;QACVC,eAAeI,uBAAuBZ,QAAQS;QAE9C,OAAA,WAAA,GAAO,CAAA,GAAA,YAAA,GAAA,EAACZ,WAAAA;YAAW,GAAGC,KAAK;YAAEE,QAAQQ;;IACvC,OAAO;QACL,MAAM,EAAEK,4BAA4B,EAAE,GACpCN,QAAQ;QACV,MAAMC,eAAeK,6BAA6Bb;QAClD,OAAA,WAAA,GAAO,CAAA,GAAA,YAAA,GAAA,EAACH,WAAAA;YAAW,GAAGC,KAAK;YAAEE,QAAQQ;;IACvC;AACF","ignoreList":[0]}}, - {"offset": {"line": 2481, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/metadata/generate/icon-mark.tsx"],"sourcesContent":["'use client'\n\n// This is a client component that only renders during SSR,\n// but will be replaced during streaming with an icon insertion script tag.\n// We don't want it to be presented anywhere so it's only visible during streaming,\n// right after the icon meta tags so that browser can pick it up as soon as it's rendered.\n// Note: we don't just emit the script here because we only need the script if it's not in the head,\n// and we need it to be hoistable alongside the other metadata but sync scripts are not hoistable.\nexport const IconMark = () => {\n if (typeof window !== 'undefined') {\n return null\n }\n return <meta name=\"«nxt-icon»\" />\n}\n"],"names":["IconMark","window","meta","name"],"mappings":";;;+BAQaA,YAAAA;;;eAAAA;;;;AAAN,MAAMA,WAAW;IACtB,IAAI,OAAOC,WAAW,aAAa;QACjC,OAAO;IACT;IACA,OAAA,WAAA,GAAO,CAAA,GAAA,YAAA,GAAA,EAACC,QAAAA;QAAKC,MAAK;;AACpB","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js deleted file mode 100644 index ab422b9..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js +++ /dev/null @@ -1 +0,0 @@ -!function(){var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function e(t){var e={exports:{}};return t(e,e.exports),e.exports}var r,n,o=function(t){return t&&t.Math===Math&&t},i=o("object"==typeof globalThis&&globalThis)||o("object"==typeof window&&window)||o("object"==typeof self&&self)||o("object"==typeof t&&t)||o("object"==typeof t&&t)||function(){return this}()||Function("return this")(),a=function(t){try{return!!t()}catch(t){return!0}},u=!a(function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}),s=!a(function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}),c=Function.prototype.call,f=s?c.bind(c):function(){return c.apply(c,arguments)},l={}.propertyIsEnumerable,h=Object.getOwnPropertyDescriptor,p=h&&!l.call({1:2},1)?function(t){var e=h(this,t);return!!e&&e.enumerable}:l,v={f:p},d=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},g=Function.prototype,y=g.call,m=s&&g.bind.bind(y,y),b=s?m:function(t){return function(){return y.apply(t,arguments)}},w=b({}.toString),S=b("".slice),E=function(t){return S(w(t),8,-1)},O=Object,x=b("".split),R=a(function(){return!O("z").propertyIsEnumerable(0)})?function(t){return"String"===E(t)?x(t,""):O(t)}:O,P=function(t){return null==t},A=TypeError,j=function(t){if(P(t))throw new A("Can't call method on "+t);return t},k=function(t){return R(j(t))},I="object"==typeof document&&document.all,T=void 0===I&&void 0!==I?function(t){return"function"==typeof t||t===I}:function(t){return"function"==typeof t},M=function(t){return"object"==typeof t?null!==t:T(t)},L=function(t,e){return arguments.length<2?T(r=i[t])?r:void 0:i[t]&&i[t][e];var r},U=b({}.isPrototypeOf),N=i.navigator,C=N&&N.userAgent,_=C?String(C):"",F=i.process,B=i.Deno,D=F&&F.versions||B&&B.version,z=D&&D.v8;z&&(n=(r=z.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!n&&_&&(!(r=_.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=_.match(/Chrome\/(\d+)/))&&(n=+r[1]);var W=n,q=i.String,H=!!Object.getOwnPropertySymbols&&!a(function(){var t=Symbol("symbol detection");return!q(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&W&&W<41}),$=H&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,K=Object,G=$?function(t){return"symbol"==typeof t}:function(t){var e=L("Symbol");return T(e)&&U(e.prototype,K(t))},V=String,Y=function(t){try{return V(t)}catch(t){return"Object"}},X=TypeError,J=function(t){if(T(t))return t;throw new X(Y(t)+" is not a function")},Q=function(t,e){var r=t[e];return P(r)?void 0:J(r)},Z=TypeError,tt=Object.defineProperty,et=function(t,e){try{tt(i,t,{value:e,configurable:!0,writable:!0})}catch(r){i[t]=e}return e},rt=e(function(t){var e="__core-js_shared__",r=t.exports=i[e]||et(e,{});(r.versions||(r.versions=[])).push({version:"3.38.1",mode:"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE",source:"https://github.com/zloirock/core-js"})}),nt=function(t,e){return rt[t]||(rt[t]=e||{})},ot=Object,it=function(t){return ot(j(t))},at=b({}.hasOwnProperty),ut=Object.hasOwn||function(t,e){return at(it(t),e)},st=0,ct=Math.random(),ft=b(1..toString),lt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+ft(++st+ct,36)},ht=i.Symbol,pt=nt("wks"),vt=$?ht.for||ht:ht&&ht.withoutSetter||lt,dt=function(t){return ut(pt,t)||(pt[t]=H&&ut(ht,t)?ht[t]:vt("Symbol."+t)),pt[t]},gt=TypeError,yt=dt("toPrimitive"),mt=function(t,e){if(!M(t)||G(t))return t;var r,n=Q(t,yt);if(n){if(void 0===e&&(e="default"),r=f(n,t,e),!M(r)||G(r))return r;throw new gt("Can't convert object to primitive value")}return void 0===e&&(e="number"),function(t,e){var r,n;if("string"===e&&T(r=t.toString)&&!M(n=f(r,t)))return n;if(T(r=t.valueOf)&&!M(n=f(r,t)))return n;if("string"!==e&&T(r=t.toString)&&!M(n=f(r,t)))return n;throw new Z("Can't convert object to primitive value")}(t,e)},bt=function(t){var e=mt(t,"string");return G(e)?e:e+""},wt=i.document,St=M(wt)&&M(wt.createElement),Et=function(t){return St?wt.createElement(t):{}},Ot=!u&&!a(function(){return 7!==Object.defineProperty(Et("div"),"a",{get:function(){return 7}}).a}),xt=Object.getOwnPropertyDescriptor,Rt={f:u?xt:function(t,e){if(t=k(t),e=bt(e),Ot)try{return xt(t,e)}catch(t){}if(ut(t,e))return d(!f(v.f,t,e),t[e])}},Pt=u&&a(function(){return 42!==Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype}),At=String,jt=TypeError,kt=function(t){if(M(t))return t;throw new jt(At(t)+" is not an object")},It=TypeError,Tt=Object.defineProperty,Mt=Object.getOwnPropertyDescriptor,Lt="enumerable",Ut="configurable",Nt="writable",Ct={f:u?Pt?function(t,e,r){if(kt(t),e=bt(e),kt(r),"function"==typeof t&&"prototype"===e&&"value"in r&&Nt in r&&!r[Nt]){var n=Mt(t,e);n&&n[Nt]&&(t[e]=r.value,r={configurable:Ut in r?r[Ut]:n[Ut],enumerable:Lt in r?r[Lt]:n[Lt],writable:!1})}return Tt(t,e,r)}:Tt:function(t,e,r){if(kt(t),e=bt(e),kt(r),Ot)try{return Tt(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new It("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},_t=u?function(t,e,r){return Ct.f(t,e,d(1,r))}:function(t,e,r){return t[e]=r,t},Ft=Function.prototype,Bt=u&&Object.getOwnPropertyDescriptor,Dt=ut(Ft,"name"),zt={EXISTS:Dt,PROPER:Dt&&"something"===function(){}.name,CONFIGURABLE:Dt&&(!u||u&&Bt(Ft,"name").configurable)},Wt=b(Function.toString);T(rt.inspectSource)||(rt.inspectSource=function(t){return Wt(t)});var qt,Ht,$t,Kt=rt.inspectSource,Gt=i.WeakMap,Vt=T(Gt)&&/native code/.test(String(Gt)),Yt=nt("keys"),Xt=function(t){return Yt[t]||(Yt[t]=lt(t))},Jt={},Qt="Object already initialized",Zt=i.TypeError;if(Vt||rt.state){var te=rt.state||(rt.state=new(0,i.WeakMap));te.get=te.get,te.has=te.has,te.set=te.set,qt=function(t,e){if(te.has(t))throw new Zt(Qt);return e.facade=t,te.set(t,e),e},Ht=function(t){return te.get(t)||{}},$t=function(t){return te.has(t)}}else{var ee=Xt("state");Jt[ee]=!0,qt=function(t,e){if(ut(t,ee))throw new Zt(Qt);return e.facade=t,_t(t,ee,e),e},Ht=function(t){return ut(t,ee)?t[ee]:{}},$t=function(t){return ut(t,ee)}}var re,ne={set:qt,get:Ht,has:$t,enforce:function(t){return $t(t)?Ht(t):qt(t,{})},getterFor:function(t){return function(e){var r;if(!M(e)||(r=Ht(e)).type!==t)throw new Zt("Incompatible receiver, "+t+" required");return r}}},oe=e(function(t){var e=zt.CONFIGURABLE,r=ne.enforce,n=ne.get,o=String,i=Object.defineProperty,s=b("".slice),c=b("".replace),f=b([].join),l=u&&!a(function(){return 8!==i(function(){},"length",{value:8}).length}),h=String(String).split("String"),p=t.exports=function(t,n,a){"Symbol("===s(o(n),0,7)&&(n="["+c(o(n),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),a&&a.getter&&(n="get "+n),a&&a.setter&&(n="set "+n),(!ut(t,"name")||e&&t.name!==n)&&(u?i(t,"name",{value:n,configurable:!0}):t.name=n),l&&a&&ut(a,"arity")&&t.length!==a.arity&&i(t,"length",{value:a.arity});try{a&&ut(a,"constructor")&&a.constructor?u&&i(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var p=r(t);return ut(p,"source")||(p.source=f(h,"string"==typeof n?n:"")),t};Function.prototype.toString=p(function(){return T(this)&&n(this).source||Kt(this)},"toString")}),ie=function(t,e,r,n){n||(n={});var o=n.enumerable,i=void 0!==n.name?n.name:e;if(T(r)&&oe(r,i,n),n.global)o?t[e]=r:et(e,r);else{try{n.unsafe?t[e]&&(o=!0):delete t[e]}catch(t){}o?t[e]=r:Ct.f(t,e,{value:r,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},ae=Math.ceil,ue=Math.floor,se=Math.trunc||function(t){var e=+t;return(e>0?ue:ae)(e)},ce=function(t){var e=+t;return e!=e||0===e?0:se(e)},fe=Math.max,le=Math.min,he=function(t,e){var r=ce(t);return r<0?fe(r+e,0):le(r,e)},pe=Math.min,ve=function(t){var e=ce(t);return e>0?pe(e,9007199254740991):0},de=function(t){return ve(t.length)},ge=function(t){return function(e,r,n){var o=k(e),i=de(o);if(0===i)return!t&&-1;var a,u=he(n,i);if(t&&r!=r){for(;i>u;)if((a=o[u++])!=a)return!0}else for(;i>u;u++)if((t||u in o)&&o[u]===r)return t||u||0;return!t&&-1}},ye={includes:ge(!0),indexOf:ge(!1)},me=ye.indexOf,be=b([].push),we=function(t,e){var r,n=k(t),o=0,i=[];for(r in n)!ut(Jt,r)&&ut(n,r)&&be(i,r);for(;e.length>o;)ut(n,r=e[o++])&&(~me(i,r)||be(i,r));return i},Se=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],Ee=Se.concat("length","prototype"),Oe={f:Object.getOwnPropertyNames||function(t){return we(t,Ee)}},xe={f:Object.getOwnPropertySymbols},Re=b([].concat),Pe=L("Reflect","ownKeys")||function(t){var e=Oe.f(kt(t)),r=xe.f;return r?Re(e,r(t)):e},Ae=function(t,e,r){for(var n=Pe(e),o=Ct.f,i=Rt.f,a=0;a<n.length;a++){var u=n[a];ut(t,u)||r&&ut(r,u)||o(t,u,i(e,u))}},je=/#|\.prototype\./,ke=function(t,e){var r=Te[Ie(t)];return r===Le||r!==Me&&(T(e)?a(e):!!e)},Ie=ke.normalize=function(t){return String(t).replace(je,".").toLowerCase()},Te=ke.data={},Me=ke.NATIVE="N",Le=ke.POLYFILL="P",Ue=ke,Ne=Rt.f,Ce=function(t,e){var r,n,o,a,u,s=t.target,c=t.global,f=t.stat;if(r=c?i:f?i[s]||et(s,{}):i[s]&&i[s].prototype)for(n in e){if(a=e[n],o=t.dontCallGetSet?(u=Ne(r,n))&&u.value:r[n],!Ue(c?n:s+(f?".":"#")+n,t.forced)&&void 0!==o){if(typeof a==typeof o)continue;Ae(a,o)}(t.sham||o&&o.sham)&&_t(a,"sham",!0),ie(r,n,a,t)}},_e=Object.keys||function(t){return we(t,Se)},Fe=u&&!Pt?Object.defineProperties:function(t,e){kt(t);for(var r,n=k(e),o=_e(e),i=o.length,a=0;i>a;)Ct.f(t,r=o[a++],n[r]);return t},Be={f:Fe},De=L("document","documentElement"),ze="prototype",We="script",qe=Xt("IE_PROTO"),He=function(){},$e=function(t){return"<"+We+">"+t+"</"+We+">"},Ke=function(t){t.write($e("")),t.close();var e=t.parentWindow.Object;return t=null,e},Ge=function(){try{re=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;Ge="undefined"!=typeof document?document.domain&&re?Ke(re):(e=Et("iframe"),r="java"+We+":",e.style.display="none",De.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write($e("document.F=Object")),t.close(),t.F):Ke(re);for(var n=Se.length;n--;)delete Ge[ze][Se[n]];return Ge()};Jt[qe]=!0;var Ve=Object.create||function(t,e){var r;return null!==t?(He[ze]=kt(t),r=new He,He[ze]=null,r[qe]=t):r=Ge(),void 0===e?r:Be.f(r,e)},Ye=Ct.f,Xe=dt("unscopables"),Je=Array.prototype;void 0===Je[Xe]&&Ye(Je,Xe,{configurable:!0,value:Ve(null)});var Qe=function(t){Je[Xe][t]=!0};Ce({target:"Array",proto:!0},{at:function(t){var e=it(this),r=de(e),n=ce(t),o=n>=0?n:r+n;return o<0||o>=r?void 0:e[o]}}),Qe("at");var Ze=function(t,e){return b(i[t].prototype[e])},tr=(Ze("Array","at"),TypeError),er=function(t,e){if(!delete t[e])throw new tr("Cannot delete property "+Y(e)+" of "+Y(t))},rr=Math.min,nr=[].copyWithin||function(t,e){var r=it(this),n=de(r),o=he(t,n),i=he(e,n),a=arguments.length>2?arguments[2]:void 0,u=rr((void 0===a?n:he(a,n))-i,n-o),s=1;for(i<o&&o<i+u&&(s=-1,i+=u-1,o+=u-1);u-- >0;)i in r?r[o]=r[i]:er(r,o),o+=s,i+=s;return r};Ce({target:"Array",proto:!0},{copyWithin:nr}),Qe("copyWithin"),Ze("Array","copyWithin"),Ce({target:"Array",proto:!0},{fill:function(t){for(var e=it(this),r=de(e),n=arguments.length,o=he(n>1?arguments[1]:void 0,r),i=n>2?arguments[2]:void 0,a=void 0===i?r:he(i,r);a>o;)e[o++]=t;return e}}),Qe("fill"),Ze("Array","fill");var or=function(t){if("Function"===E(t))return b(t)},ir=or(or.bind),ar=function(t,e){return J(t),void 0===e?t:s?ir(t,e):function(){return t.apply(e,arguments)}},ur=Array.isArray||function(t){return"Array"===E(t)},sr={};sr[dt("toStringTag")]="z";var cr="[object z]"===String(sr),fr=dt("toStringTag"),lr=Object,hr="Arguments"===E(function(){return arguments}()),pr=cr?E:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=lr(t),fr))?r:hr?E(e):"Object"===(n=E(e))&&T(e.callee)?"Arguments":n},vr=function(){},dr=L("Reflect","construct"),gr=/^\s*(?:class|function)\b/,yr=b(gr.exec),mr=!gr.test(vr),br=function(t){if(!T(t))return!1;try{return dr(vr,[],t),!0}catch(t){return!1}},wr=function(t){if(!T(t))return!1;switch(pr(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return mr||!!yr(gr,Kt(t))}catch(t){return!0}};wr.sham=!0;var Sr=!dr||a(function(){var t;return br(br.call)||!br(Object)||!br(function(){t=!0})||t})?wr:br,Er=dt("species"),Or=Array,xr=function(t,e){return new(function(t){var e;return ur(t)&&(Sr(e=t.constructor)&&(e===Or||ur(e.prototype))||M(e)&&null===(e=e[Er]))&&(e=void 0),void 0===e?Or:e}(t))(0===e?0:e)},Rr=b([].push),Pr=function(t){var e=1===t,r=2===t,n=3===t,o=4===t,i=6===t,a=7===t,u=5===t||i;return function(s,c,f,l){for(var h,p,v=it(s),d=R(v),g=de(d),y=ar(c,f),m=0,b=l||xr,w=e?b(s,g):r||a?b(s,0):void 0;g>m;m++)if((u||m in d)&&(p=y(h=d[m],m,v),t))if(e)w[m]=p;else if(p)switch(t){case 3:return!0;case 5:return h;case 6:return m;case 2:Rr(w,h)}else switch(t){case 4:return!1;case 7:Rr(w,h)}return i?-1:n||o?o:w}},Ar={forEach:Pr(0),map:Pr(1),filter:Pr(2),some:Pr(3),every:Pr(4),find:Pr(5),findIndex:Pr(6),filterReject:Pr(7)},jr=Ar.find,kr="find",Ir=!0;kr in[]&&Array(1)[kr](function(){Ir=!1}),Ce({target:"Array",proto:!0,forced:Ir},{find:function(t){return jr(this,t,arguments.length>1?arguments[1]:void 0)}}),Qe(kr),Ze("Array","find");var Tr=Ar.findIndex,Mr="findIndex",Lr=!0;Mr in[]&&Array(1)[Mr](function(){Lr=!1}),Ce({target:"Array",proto:!0,forced:Lr},{findIndex:function(t){return Tr(this,t,arguments.length>1?arguments[1]:void 0)}}),Qe(Mr),Ze("Array","findIndex");var Ur=TypeError,Nr=function(t){if(t>9007199254740991)throw Ur("Maximum allowed index exceeded");return t},Cr=function(t,e,r,n,o,i,a,u){for(var s,c,f=o,l=0,h=!!a&&ar(a,u);l<n;)l in r&&(s=h?h(r[l],l,e):r[l],i>0&&ur(s)?(c=de(s),f=Cr(t,e,s,c,f,i-1)-1):(Nr(f+1),t[f]=s),f++),l++;return f},_r=Cr;Ce({target:"Array",proto:!0},{flatMap:function(t){var e,r=it(this),n=de(r);return J(t),(e=xr(r,0)).length=_r(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}}),Qe("flatMap"),Ze("Array","flatMap"),Ce({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=it(this),r=de(e),n=xr(e,0);return n.length=_r(n,e,e,r,0,void 0===t?1:ce(t)),n}}),Qe("flat"),Ze("Array","flat");var Fr,Br,Dr,zr=String,Wr=function(t){if("Symbol"===pr(t))throw new TypeError("Cannot convert a Symbol value to a string");return zr(t)},qr=b("".charAt),Hr=b("".charCodeAt),$r=b("".slice),Kr=function(t){return function(e,r){var n,o,i=Wr(j(e)),a=ce(r),u=i.length;return a<0||a>=u?t?"":void 0:(n=Hr(i,a))<55296||n>56319||a+1===u||(o=Hr(i,a+1))<56320||o>57343?t?qr(i,a):n:t?$r(i,a,a+2):o-56320+(n-55296<<10)+65536}},Gr={codeAt:Kr(!1),charAt:Kr(!0)},Vr=!a(function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}),Yr=Xt("IE_PROTO"),Xr=Object,Jr=Xr.prototype,Qr=Vr?Xr.getPrototypeOf:function(t){var e=it(t);if(ut(e,Yr))return e[Yr];var r=e.constructor;return T(r)&&e instanceof r?r.prototype:e instanceof Xr?Jr:null},Zr=dt("iterator"),tn=!1;[].keys&&("next"in(Dr=[].keys())?(Br=Qr(Qr(Dr)))!==Object.prototype&&(Fr=Br):tn=!0);var en=!M(Fr)||a(function(){var t={};return Fr[Zr].call(t)!==t});en&&(Fr={}),T(Fr[Zr])||ie(Fr,Zr,function(){return this});var rn={IteratorPrototype:Fr,BUGGY_SAFARI_ITERATORS:tn},nn=Ct.f,on=dt("toStringTag"),an=function(t,e,r){t&&!r&&(t=t.prototype),t&&!ut(t,on)&&nn(t,on,{configurable:!0,value:e})},un={},sn=rn.IteratorPrototype,cn=function(){return this},fn=function(t,e,r,n){var o=e+" Iterator";return t.prototype=Ve(sn,{next:d(+!n,r)}),an(t,o,!1),un[o]=cn,t},ln=function(t,e,r){try{return b(J(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}},hn=String,pn=TypeError,vn=function(t){if(function(t){return M(t)||null===t}(t))return t;throw new pn("Can't set "+hn(t)+" as a prototype")},dn=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=ln(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return j(r),vn(n),M(r)?(e?t(r,n):r.__proto__=n,r):r}}():void 0),gn=zt.PROPER,yn=zt.CONFIGURABLE,mn=rn.IteratorPrototype,bn=rn.BUGGY_SAFARI_ITERATORS,wn=dt("iterator"),Sn="keys",En="values",On="entries",xn=function(){return this},Rn=function(t,e,r,n,o,i,a){fn(r,e,n);var u,s,c,l=function(t){if(t===o&&g)return g;if(!bn&&t&&t in v)return v[t];switch(t){case Sn:case En:case On:return function(){return new r(this,t)}}return function(){return new r(this)}},h=e+" Iterator",p=!1,v=t.prototype,d=v[wn]||v["@@iterator"]||o&&v[o],g=!bn&&d||l(o),y="Array"===e&&v.entries||d;if(y&&(u=Qr(y.call(new t)))!==Object.prototype&&u.next&&(Qr(u)!==mn&&(dn?dn(u,mn):T(u[wn])||ie(u,wn,xn)),an(u,h,!0)),gn&&o===En&&d&&d.name!==En&&(yn?_t(v,"name",En):(p=!0,g=function(){return f(d,this)})),o)if(s={values:l(En),keys:i?g:l(Sn),entries:l(On)},a)for(c in s)(bn||p||!(c in v))&&ie(v,c,s[c]);else Ce({target:e,proto:!0,forced:bn||p},s);return v[wn]!==g&&ie(v,wn,g,{name:o}),un[e]=g,s},Pn=function(t,e){return{value:t,done:e}},An=Gr.charAt,jn="String Iterator",kn=ne.set,In=ne.getterFor(jn);Rn(String,"String",function(t){kn(this,{type:jn,string:Wr(t),index:0})},function(){var t,e=In(this),r=e.string,n=e.index;return n>=r.length?Pn(void 0,!0):(t=An(r,n),e.index+=t.length,Pn(t,!1))});var Tn=function(t,e,r){var n,o;kt(t);try{if(!(n=Q(t,"return"))){if("throw"===e)throw r;return r}n=f(n,t)}catch(t){o=!0,n=t}if("throw"===e)throw r;if(o)throw n;return kt(n),r},Mn=function(t,e,r,n){try{return n?e(kt(r)[0],r[1]):e(r)}catch(e){Tn(t,"throw",e)}},Ln=dt("iterator"),Un=Array.prototype,Nn=function(t){return void 0!==t&&(un.Array===t||Un[Ln]===t)},Cn=function(t,e,r){u?Ct.f(t,e,d(0,r)):t[e]=r},_n=dt("iterator"),Fn=function(t){if(!P(t))return Q(t,_n)||Q(t,"@@iterator")||un[pr(t)]},Bn=TypeError,Dn=function(t,e){var r=arguments.length<2?Fn(t):e;if(J(r))return kt(f(r,t));throw new Bn(Y(t)+" is not iterable")},zn=Array,Wn=function(t){var e=it(t),r=Sr(this),n=arguments.length,o=n>1?arguments[1]:void 0,i=void 0!==o;i&&(o=ar(o,n>2?arguments[2]:void 0));var a,u,s,c,l,h,p=Fn(e),v=0;if(!p||this===zn&&Nn(p))for(a=de(e),u=r?new this(a):zn(a);a>v;v++)h=i?o(e[v],v):e[v],Cn(u,v,h);else for(u=r?new this:[],l=(c=Dn(e,p)).next;!(s=f(l,c)).done;v++)h=i?Mn(c,o,[s.value,v],!0):s.value,Cn(u,v,h);return u.length=v,u},qn=dt("iterator"),Hn=!1;try{var $n=0,Kn={next:function(){return{done:!!$n++}},return:function(){Hn=!0}};Kn[qn]=function(){return this},Array.from(Kn,function(){throw 2})}catch(t){}var Gn=function(t,e){try{if(!e&&!Hn)return!1}catch(t){return!1}var r=!1;try{var n={};n[qn]=function(){return{next:function(){return{done:r=!0}}}},t(n)}catch(t){}return r},Vn=!Gn(function(t){Array.from(t)});Ce({target:"Array",stat:!0,forced:Vn},{from:Wn});var Yn=i,Xn=ye.includes,Jn=a(function(){return!Array(1).includes()});Ce({target:"Array",proto:!0,forced:Jn},{includes:function(t){return Xn(this,t,arguments.length>1?arguments[1]:void 0)}}),Qe("includes"),Ze("Array","includes");var Qn=Ct.f,Zn="Array Iterator",to=ne.set,eo=ne.getterFor(Zn),ro=Rn(Array,"Array",function(t,e){to(this,{type:Zn,target:k(t),index:0,kind:e})},function(){var t=eo(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,Pn(void 0,!0);switch(t.kind){case"keys":return Pn(r,!1);case"values":return Pn(e[r],!1)}return Pn([r,e[r]],!1)},"values"),no=un.Arguments=un.Array;if(Qe("keys"),Qe("values"),Qe("entries"),u&&"values"!==no.name)try{Qn(no,"name",{value:"values"})}catch(t){}cr||ie(Object.prototype,"toString",cr?{}.toString:function(){return"[object "+pr(this)+"]"},{unsafe:!0}),Ze("Array","values");var oo=Array,io=a(function(){function t(){}return!(oo.of.call(t)instanceof t)});Ce({target:"Array",stat:!0,forced:io},{of:function(){for(var t=0,e=arguments.length,r=new(Sr(this)?this:oo)(e);e>t;)Cn(r,t,arguments[t++]);return r.length=e,r}});var ao=dt("hasInstance"),uo=Function.prototype;ao in uo||Ct.f(uo,ao,{value:oe(function(t){if(!T(this)||!M(t))return!1;var e=this.prototype;return M(e)?U(e,t):t instanceof this},ao)}),dt("hasInstance");var so=function(t,e,r){return r.get&&oe(r.get,e,{getter:!0}),r.set&&oe(r.set,e,{setter:!0}),Ct.f(t,e,r)},co=zt.EXISTS,fo=Function.prototype,lo=b(fo.toString),ho=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,po=b(ho.exec);u&&!co&&so(fo,"name",{configurable:!0,get:function(){try{return po(ho,lo(this))[1]}catch(t){return""}}});var vo=b([].slice),go=Oe.f,yo="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],mo={f:function(t){return yo&&"Window"===E(t)?function(t){try{return go(t)}catch(t){return vo(yo)}}(t):go(k(t))}},bo=a(function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}}),wo=Object.isExtensible,So=a(function(){wo(1)})||bo?function(t){return!!M(t)&&(!bo||"ArrayBuffer"!==E(t))&&(!wo||wo(t))}:wo,Eo=!a(function(){return Object.isExtensible(Object.preventExtensions({}))}),Oo=e(function(t){var e=Ct.f,r=!1,n=lt("meta"),o=0,i=function(t){e(t,n,{value:{objectID:"O"+o++,weakData:{}}})},a=t.exports={enable:function(){a.enable=function(){},r=!0;var t=Oe.f,e=b([].splice),o={};o[n]=1,t(o).length&&(Oe.f=function(r){for(var o=t(r),i=0,a=o.length;i<a;i++)if(o[i]===n){e(o,i,1);break}return o},Ce({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:mo.f}))},fastKey:function(t,e){if(!M(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!ut(t,n)){if(!So(t))return"F";if(!e)return"E";i(t)}return t[n].objectID},getWeakData:function(t,e){if(!ut(t,n)){if(!So(t))return!0;if(!e)return!1;i(t)}return t[n].weakData},onFreeze:function(t){return Eo&&r&&So(t)&&!ut(t,n)&&i(t),t}};Jt[n]=!0}),xo=TypeError,Ro=function(t,e){this.stopped=t,this.result=e},Po=Ro.prototype,Ao=function(t,e,r){var n,o,i,a,u,s,c,l=!(!r||!r.AS_ENTRIES),h=!(!r||!r.IS_RECORD),p=!(!r||!r.IS_ITERATOR),v=!(!r||!r.INTERRUPTED),d=ar(e,r&&r.that),g=function(t){return n&&Tn(n,"normal",t),new Ro(!0,t)},y=function(t){return l?(kt(t),v?d(t[0],t[1],g):d(t[0],t[1])):v?d(t,g):d(t)};if(h)n=t.iterator;else if(p)n=t;else{if(!(o=Fn(t)))throw new xo(Y(t)+" is not iterable");if(Nn(o)){for(i=0,a=de(t);a>i;i++)if((u=y(t[i]))&&U(Po,u))return u;return new Ro(!1)}n=Dn(t,o)}for(s=h?t.next:n.next;!(c=f(s,n)).done;){try{u=y(c.value)}catch(t){Tn(n,"throw",t)}if("object"==typeof u&&u&&U(Po,u))return u}return new Ro(!1)},jo=TypeError,ko=function(t,e){if(U(e,t))return t;throw new jo("Incorrect invocation")},Io=function(t,e,r){var n,o;return dn&&T(n=e.constructor)&&n!==r&&M(o=n.prototype)&&o!==r.prototype&&dn(t,o),t},To=function(t,e,r){var n=-1!==t.indexOf("Map"),o=-1!==t.indexOf("Weak"),u=n?"set":"add",s=i[t],c=s&&s.prototype,f=s,l={},h=function(t){var e=b(c[t]);ie(c,t,"add"===t?function(t){return e(this,0===t?0:t),this}:"delete"===t?function(t){return!(o&&!M(t))&&e(this,0===t?0:t)}:"get"===t?function(t){return o&&!M(t)?void 0:e(this,0===t?0:t)}:"has"===t?function(t){return!(o&&!M(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(Ue(t,!T(s)||!(o||c.forEach&&!a(function(){(new s).entries().next()}))))f=r.getConstructor(e,t,n,u),Oo.enable();else if(Ue(t,!0)){var p=new f,v=p[u](o?{}:-0,1)!==p,d=a(function(){p.has(1)}),g=Gn(function(t){new s(t)}),y=!o&&a(function(){for(var t=new s,e=5;e--;)t[u](e,e);return!t.has(-0)});g||((f=e(function(t,e){ko(t,c);var r=Io(new s,t,f);return P(e)||Ao(e,r[u],{that:r,AS_ENTRIES:n}),r})).prototype=c,c.constructor=f),(d||y)&&(h("delete"),h("has"),n&&h("get")),(y||v)&&h(u),o&&c.clear&&delete c.clear}return l[t]=f,Ce({global:!0,constructor:!0,forced:f!==s},l),an(f,t),o||r.setStrong(f,t,n),f},Mo=function(t,e,r){for(var n in e)ie(t,n,e[n],r);return t},Lo=dt("species"),Uo=function(t){var e=L(t);u&&e&&!e[Lo]&&so(e,Lo,{configurable:!0,get:function(){return this}})},No=Oo.fastKey,Co=ne.set,_o=ne.getterFor,Fo={getConstructor:function(t,e,r,n){var o=t(function(t,o){ko(t,i),Co(t,{type:e,index:Ve(null),first:null,last:null,size:0}),u||(t.size=0),P(o)||Ao(o,t[n],{that:t,AS_ENTRIES:r})}),i=o.prototype,a=_o(e),s=function(t,e,r){var n,o,i=a(t),s=c(t,e);return s?s.value=r:(i.last=s={index:o=No(e,!0),key:e,value:r,previous:n=i.last,next:null,removed:!1},i.first||(i.first=s),n&&(n.next=s),u?i.size++:t.size++,"F"!==o&&(i.index[o]=s)),t},c=function(t,e){var r,n=a(t),o=No(e);if("F"!==o)return n.index[o];for(r=n.first;r;r=r.next)if(r.key===e)return r};return Mo(i,{clear:function(){for(var t=a(this),e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=null),e=e.next;t.first=t.last=null,t.index=Ve(null),u?t.size=0:this.size=0},delete:function(t){var e=this,r=a(e),n=c(e,t);if(n){var o=n.next,i=n.previous;delete r.index[n.index],n.removed=!0,i&&(i.next=o),o&&(o.previous=i),r.first===n&&(r.first=o),r.last===n&&(r.last=i),u?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=a(this),n=ar(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!c(this,t)}}),Mo(i,r?{get:function(t){var e=c(this,t);return e&&e.value},set:function(t,e){return s(this,0===t?0:t,e)}}:{add:function(t){return s(this,t=0===t?0:t,t)}}),u&&so(i,"size",{configurable:!0,get:function(){return a(this).size}}),o},setStrong:function(t,e,r){var n=e+" Iterator",o=_o(e),i=_o(n);Rn(t,e,function(t,e){Co(this,{type:n,target:t,state:o(t),kind:e,last:null})},function(){for(var t=i(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?Pn("keys"===e?r.key:"values"===e?r.value:[r.key,r.value],!1):(t.target=null,Pn(void 0,!0))},r?"entries":"values",!r,!0),Uo(e)}};To("Map",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},Fo);var Bo=Map.prototype,Do={Map:Map,set:b(Bo.set),get:b(Bo.get),has:b(Bo.has),remove:b(Bo.delete),proto:Bo},zo=Do.Map,Wo=Do.has,qo=Do.get,Ho=Do.set,$o=b([].push),Ko=a(function(){return 1!==zo.groupBy("ab",function(t){return t}).get("a").length});Ce({target:"Map",stat:!0,forced:Ko},{groupBy:function(t,e){j(t),J(e);var r=new zo,n=0;return Ao(t,function(t){var o=e(t,n++);Wo(r,o)?$o(qo(r,o),t):Ho(r,o,[t])}),r}});var Go={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},Vo=Et("span").classList,Yo=Vo&&Vo.constructor&&Vo.constructor.prototype,Xo=Yo===Object.prototype?void 0:Yo,Jo=dt("iterator"),Qo=ro.values,Zo=function(t,e){if(t){if(t[Jo]!==Qo)try{_t(t,Jo,Qo)}catch(e){t[Jo]=Qo}if(an(t,e,!0),Go[e])for(var r in ro)if(t[r]!==ro[r])try{_t(t,r,ro[r])}catch(e){t[r]=ro[r]}}};for(var ti in Go)Zo(i[ti]&&i[ti].prototype,ti);Zo(Xo,"DOMTokenList");var ei=function(t,e,r){return function(n){var o=it(n),i=arguments.length,a=i>1?arguments[1]:void 0,u=void 0!==a,s=u?ar(a,i>2?arguments[2]:void 0):void 0,c=new t,f=0;return Ao(o,function(t){var n=u?s(t,f++):t;r?e(c,kt(n)[0],n[1]):e(c,n)}),c}};Ce({target:"Map",stat:!0,forced:!0},{from:ei(Do.Map,Do.set,!0)});var ri=function(t,e,r){return function(){for(var n=new t,o=arguments.length,i=0;i<o;i++){var a=arguments[i];r?e(n,kt(a)[0],a[1]):e(n,a)}return n}};Ce({target:"Map",stat:!0,forced:!0},{of:ri(Do.Map,Do.set,!0)});var ni=Do.has,oi=function(t){return ni(t),t},ii=Do.remove;Ce({target:"Map",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var t,e=oi(this),r=!0,n=0,o=arguments.length;n<o;n++)t=ii(e,arguments[n]),r=r&&t;return!!r}});var ai=Do.get,ui=Do.has,si=Do.set;Ce({target:"Map",proto:!0,real:!0,forced:!0},{emplace:function(t,e){var r,n,o=oi(this);return ui(o,t)?(r=ai(o,t),"update"in e&&(r=e.update(r,t,o),si(o,t,r)),r):(n=e.insert(t,o),si(o,t,n),n)}});var ci=function(t,e,r){for(var n,o,i=r?t:t.iterator,a=t.next;!(n=f(a,i)).done;)if(void 0!==(o=e(n.value)))return o},fi=Do.Map,li=Do.proto,hi=b(li.forEach),pi=b(li.entries),vi=pi(new fi).next,di=function(t,e,r){return r?ci({iterator:pi(t),next:vi},function(t){return e(t[1],t[0])}):hi(t,e)};Ce({target:"Map",proto:!0,real:!0,forced:!0},{every:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0);return!1!==di(e,function(t,n){if(!r(t,n,e))return!1},!0)}});var gi=Do.Map,yi=Do.set;Ce({target:"Map",proto:!0,real:!0,forced:!0},{filter:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new gi;return di(e,function(t,o){r(t,o,e)&&yi(n,o,t)}),n}}),Ce({target:"Map",proto:!0,real:!0,forced:!0},{find:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=di(e,function(t,n){if(r(t,n,e))return{value:t}},!0);return n&&n.value}}),Ce({target:"Map",proto:!0,real:!0,forced:!0},{findKey:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=di(e,function(t,n){if(r(t,n,e))return{key:n}},!0);return n&&n.key}}),Ce({target:"Map",proto:!0,real:!0,forced:!0},{includes:function(t){return!0===di(oi(this),function(e){if((r=e)===(n=t)||r!=r&&n!=n)return!0;var r,n},!0)}});var mi=Do.Map;Ce({target:"Map",stat:!0,forced:!0},{keyBy:function(t,e){var r=new(T(this)?this:mi);J(e);var n=J(r.set);return Ao(t,function(t){f(n,r,e(t),t)}),r}}),Ce({target:"Map",proto:!0,real:!0,forced:!0},{keyOf:function(t){var e=di(oi(this),function(e,r){if(e===t)return{key:r}},!0);return e&&e.key}});var bi=Do.Map,wi=Do.set;Ce({target:"Map",proto:!0,real:!0,forced:!0},{mapKeys:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new bi;return di(e,function(t,o){wi(n,r(t,o,e),t)}),n}});var Si=Do.Map,Ei=Do.set;Ce({target:"Map",proto:!0,real:!0,forced:!0},{mapValues:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new Si;return di(e,function(t,o){Ei(n,o,r(t,o,e))}),n}});var Oi=Do.set;Ce({target:"Map",proto:!0,real:!0,arity:1,forced:!0},{merge:function(t){for(var e=oi(this),r=arguments.length,n=0;n<r;)Ao(arguments[n++],function(t,r){Oi(e,t,r)},{AS_ENTRIES:!0});return e}});var xi=TypeError;Ce({target:"Map",proto:!0,real:!0,forced:!0},{reduce:function(t){var e=oi(this),r=arguments.length<2,n=r?void 0:arguments[1];if(J(t),di(e,function(o,i){r?(r=!1,n=o):n=t(n,o,i,e)}),r)throw new xi("Reduce of empty map with no initial value");return n}}),Ce({target:"Map",proto:!0,real:!0,forced:!0},{some:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0);return!0===di(e,function(t,n){if(r(t,n,e))return!0},!0)}});var Ri=TypeError,Pi=Do.get,Ai=Do.has,ji=Do.set;Ce({target:"Map",proto:!0,real:!0,forced:!0},{update:function(t,e){var r=oi(this),n=arguments.length;J(e);var o=Ai(r,t);if(!o&&n<3)throw new Ri("Updating absent value");var i=o?Pi(r,t):J(n>2?arguments[2]:void 0)(t,r);return ji(r,t,e(i,t,r)),r}});var ki=TypeError,Ii=function(t,e){var r,n=kt(this),o=J(n.get),i=J(n.has),a=J(n.set),u=arguments.length>2?arguments[2]:void 0;if(!T(e)&&!T(u))throw new ki("At least one callback required");return f(i,n,t)?(r=f(o,n,t),T(e)&&(r=e(r),f(a,n,t,r))):T(u)&&(r=u(),f(a,n,t,r)),r};Ce({target:"Map",proto:!0,real:!0,forced:!0},{upsert:Ii}),Ce({target:"Map",proto:!0,real:!0,name:"upsert",forced:!0},{updateOrInsert:Ii});var Ti=b(1..valueOf),Mi="\t\n\v\f\r                 \u2028\u2029\ufeff",Li=b("".replace),Ui=RegExp("^["+Mi+"]+"),Ni=RegExp("(^|[^"+Mi+"])["+Mi+"]+$"),Ci=function(t){return function(e){var r=Wr(j(e));return 1&t&&(r=Li(r,Ui,"")),2&t&&(r=Li(r,Ni,"$1")),r}},_i={start:Ci(1),end:Ci(2),trim:Ci(3)},Fi=Oe.f,Bi=Rt.f,Di=Ct.f,zi=_i.trim,Wi="Number",qi=i[Wi],Hi=qi.prototype,$i=i.TypeError,Ki=b("".slice),Gi=b("".charCodeAt),Vi=Ue(Wi,!qi(" 0o1")||!qi("0b1")||qi("+0x1")),Yi=function(t){var e,r=arguments.length<1?0:qi(function(t){var e=mt(t,"number");return"bigint"==typeof e?e:function(t){var e,r,n,o,i,a,u,s,c=mt(t,"number");if(G(c))throw new $i("Cannot convert a Symbol value to a number");if("string"==typeof c&&c.length>2)if(c=zi(c),43===(e=Gi(c,0))||45===e){if(88===(r=Gi(c,2))||120===r)return NaN}else if(48===e){switch(Gi(c,1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+c}for(a=(i=Ki(c,2)).length,u=0;u<a;u++)if((s=Gi(i,u))<48||s>o)return NaN;return parseInt(i,n)}return+c}(e)}(t));return U(Hi,e=this)&&a(function(){Ti(e)})?Io(Object(r),this,Yi):r};Yi.prototype=Hi,Vi&&(Hi.constructor=Yi),Ce({global:!0,constructor:!0,wrap:!0,forced:Vi},{Number:Yi}),Vi&&function(t,e){for(var r,n=u?Fi(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),o=0;n.length>o;o++)ut(e,r=n[o])&&!ut(t,r)&&Di(t,r,Bi(e,r))}(Yn[Wi],qi),Ce({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)});var Xi=i.isFinite;Ce({target:"Number",stat:!0},{isFinite:Number.isFinite||function(t){return"number"==typeof t&&Xi(t)}});var Ji=Math.floor,Qi=Number.isInteger||function(t){return!M(t)&&isFinite(t)&&Ji(t)===t};Ce({target:"Number",stat:!0},{isInteger:Qi}),Ce({target:"Number",stat:!0},{isNaN:function(t){return t!=t}});var Zi=Math.abs;Ce({target:"Number",stat:!0},{isSafeInteger:function(t){return Qi(t)&&Zi(t)<=9007199254740991}}),Ce({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991}),Ce({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991});var ta=_i.trim,ea=b("".charAt),ra=i.parseFloat,na=i.Symbol,oa=na&&na.iterator,ia=1/ra(Mi+"-0")!=-Infinity||oa&&!a(function(){ra(Object(oa))})?function(t){var e=ta(Wr(t)),r=ra(e);return 0===r&&"-"===ea(e,0)?-0:r}:ra;Ce({target:"Number",stat:!0,forced:Number.parseFloat!==ia},{parseFloat:ia});var aa=_i.trim,ua=i.parseInt,sa=i.Symbol,ca=sa&&sa.iterator,fa=/^[+-]?0x/i,la=b(fa.exec),ha=8!==ua(Mi+"08")||22!==ua(Mi+"0x16")||ca&&!a(function(){ua(Object(ca))})?function(t,e){var r=aa(Wr(t));return ua(r,e>>>0||(la(fa,r)?16:10))}:ua;Ce({target:"Number",stat:!0,forced:Number.parseInt!==ha},{parseInt:ha});var pa=b(v.f),va=b([].push),da=u&&a(function(){var t=Object.create(null);return t[2]=2,!pa(t,2)}),ga=function(t){return function(e){for(var r,n=k(e),o=_e(n),i=da&&null===Qr(n),a=o.length,s=0,c=[];a>s;)r=o[s++],u&&!(i?r in n:pa(n,r))||va(c,t?[r,n[r]]:n[r]);return c}},ya={entries:ga(!0),values:ga(!1)},ma=ya.entries;Ce({target:"Object",stat:!0},{entries:function(t){return ma(t)}}),Ce({target:"Object",stat:!0,sham:!u},{getOwnPropertyDescriptors:function(t){for(var e,r,n=k(t),o=Rt.f,i=Pe(n),a={},u=0;i.length>u;)void 0!==(r=o(n,e=i[u++]))&&Cn(a,e,r);return a}});var ba=a(function(){_e(1)});Ce({target:"Object",stat:!0,forced:ba},{keys:function(t){return _e(it(t))}});var wa=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};Ce({target:"Object",stat:!0},{is:wa});var Sa=ya.values;Ce({target:"Object",stat:!0},{values:function(t){return Sa(t)}}),Ce({target:"Object",stat:!0},{hasOwn:ut});var Ea=Function.prototype,Oa=Ea.apply,xa=Ea.call,Ra="object"==typeof Reflect&&Reflect.apply||(s?xa.bind(Oa):function(){return xa.apply(Oa,arguments)}),Pa=!a(function(){Reflect.apply(function(){})});Ce({target:"Reflect",stat:!0,forced:Pa},{apply:function(t,e,r){return Ra(J(t),e,kt(r))}});var Aa=Function,ja=b([].concat),ka=b([].join),Ia={},Ta=s?Aa.bind:function(t){var e=J(this),r=e.prototype,n=vo(arguments,1),o=function(){var r=ja(n,vo(arguments));return this instanceof o?function(t,e,r){if(!ut(Ia,e)){for(var n=[],o=0;o<e;o++)n[o]="a["+o+"]";Ia[e]=Aa("C,a","return new C("+ka(n,",")+")")}return Ia[e](t,r)}(e,r.length,r):e.apply(t,r)};return M(r)&&(o.prototype=r),o},Ma=TypeError,La=function(t){if(Sr(t))return t;throw new Ma(Y(t)+" is not a constructor")},Ua=L("Reflect","construct"),Na=Object.prototype,Ca=[].push,_a=a(function(){function t(){}return!(Ua(function(){},[],t)instanceof t)}),Fa=!a(function(){Ua(function(){})}),Ba=_a||Fa;Ce({target:"Reflect",stat:!0,forced:Ba,sham:Ba},{construct:function(t,e){La(t),kt(e);var r=arguments.length<3?t:La(arguments[2]);if(Fa&&!_a)return Ua(t,e,r);if(t===r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return Ra(Ca,n,e),new(Ra(Ta,t,n))}var o=r.prototype,i=Ve(M(o)?o:Na),a=Ra(t,i,e);return M(a)?a:i}});var Da=a(function(){Reflect.defineProperty(Ct.f({},1,{value:1}),1,{value:2})});Ce({target:"Reflect",stat:!0,forced:Da,sham:!u},{defineProperty:function(t,e,r){kt(t);var n=bt(e);kt(r);try{return Ct.f(t,n,r),!0}catch(t){return!1}}});var za=Rt.f;Ce({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=za(kt(t),e);return!(r&&!r.configurable)&&delete t[e]}});var Wa=function(t){return void 0!==t&&(ut(t,"value")||ut(t,"writable"))};Ce({target:"Reflect",stat:!0},{get:function t(e,r){var n,o,i=arguments.length<3?e:arguments[2];return kt(e)===i?e[r]:(n=Rt.f(e,r))?Wa(n)?n.value:void 0===n.get?void 0:f(n.get,i):M(o=Qr(e))?t(o,r,i):void 0}}),Ce({target:"Reflect",stat:!0,sham:!u},{getOwnPropertyDescriptor:function(t,e){return Rt.f(kt(t),e)}}),Ce({target:"Reflect",stat:!0,sham:!Vr},{getPrototypeOf:function(t){return Qr(kt(t))}}),Ce({target:"Reflect",stat:!0},{has:function(t,e){return e in t}}),Ce({target:"Reflect",stat:!0},{isExtensible:function(t){return kt(t),So(t)}}),Ce({target:"Reflect",stat:!0},{ownKeys:Pe}),Ce({target:"Reflect",stat:!0,sham:!Eo},{preventExtensions:function(t){kt(t);try{var e=L("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}});var qa=a(function(){var t=function(){},e=Ct.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)});Ce({target:"Reflect",stat:!0,forced:qa},{set:function t(e,r,n){var o,i,a,u=arguments.length<4?e:arguments[3],s=Rt.f(kt(e),r);if(!s){if(M(i=Qr(e)))return t(i,r,n,u);s=d(0)}if(Wa(s)){if(!1===s.writable||!M(u))return!1;if(o=Rt.f(u,r)){if(o.get||o.set||!1===o.writable)return!1;o.value=n,Ct.f(u,r,o)}else Ct.f(u,r,d(0,n))}else{if(void 0===(a=s.set))return!1;f(a,u,n)}return!0}}),dn&&Ce({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){kt(t),vn(e);try{return dn(t,e),!0}catch(t){return!1}}}),Ce({global:!0},{Reflect:{}}),an(i.Reflect,"Reflect",!0);var Ha=Oo.getWeakData,$a=ne.set,Ka=ne.getterFor,Ga=Ar.find,Va=Ar.findIndex,Ya=b([].splice),Xa=0,Ja=function(t){return t.frozen||(t.frozen=new Qa)},Qa=function(){this.entries=[]},Za=function(t,e){return Ga(t.entries,function(t){return t[0]===e})};Qa.prototype={get:function(t){var e=Za(this,t);if(e)return e[1]},has:function(t){return!!Za(this,t)},set:function(t,e){var r=Za(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=Va(this.entries,function(e){return e[0]===t});return~e&&Ya(this.entries,e,1),!!~e}};var tu,eu={getConstructor:function(t,e,r,n){var o=t(function(t,o){ko(t,i),$a(t,{type:e,id:Xa++,frozen:null}),P(o)||Ao(o,t[n],{that:t,AS_ENTRIES:r})}),i=o.prototype,a=Ka(e),u=function(t,e,r){var n=a(t),o=Ha(kt(e),!0);return!0===o?Ja(n).set(e,r):o[n.id]=r,t};return Mo(i,{delete:function(t){var e=a(this);if(!M(t))return!1;var r=Ha(t);return!0===r?Ja(e).delete(t):r&&ut(r,e.id)&&delete r[e.id]},has:function(t){var e=a(this);if(!M(t))return!1;var r=Ha(t);return!0===r?Ja(e).has(t):r&&ut(r,e.id)}}),Mo(i,r?{get:function(t){var e=a(this);if(M(t)){var r=Ha(t);if(!0===r)return Ja(e).get(t);if(r)return r[e.id]}},set:function(t,e){return u(this,t,e)}}:{add:function(t){return u(this,t,!0)}}),o}},ru=ne.enforce,nu=Object,ou=Array.isArray,iu=nu.isExtensible,au=nu.isFrozen,uu=nu.isSealed,su=nu.freeze,cu=nu.seal,fu=!i.ActiveXObject&&"ActiveXObject"in i,lu=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},hu=To("WeakMap",lu,eu),pu=hu.prototype,vu=b(pu.set);if(Vt)if(fu){tu=eu.getConstructor(lu,"WeakMap",!0),Oo.enable();var du=b(pu.delete),gu=b(pu.has),yu=b(pu.get);Mo(pu,{delete:function(t){if(M(t)&&!iu(t)){var e=ru(this);return e.frozen||(e.frozen=new tu),du(this,t)||e.frozen.delete(t)}return du(this,t)},has:function(t){if(M(t)&&!iu(t)){var e=ru(this);return e.frozen||(e.frozen=new tu),gu(this,t)||e.frozen.has(t)}return gu(this,t)},get:function(t){if(M(t)&&!iu(t)){var e=ru(this);return e.frozen||(e.frozen=new tu),gu(this,t)?yu(this,t):e.frozen.get(t)}return yu(this,t)},set:function(t,e){if(M(t)&&!iu(t)){var r=ru(this);r.frozen||(r.frozen=new tu),gu(this,t)?vu(this,t,e):r.frozen.set(t,e)}else vu(this,t,e);return this}})}else Eo&&a(function(){var t=su([]);return vu(new hu,t,1),!au(t)})&&Mo(pu,{set:function(t,e){var r;return ou(t)&&(au(t)?r=su:uu(t)&&(r=cu)),vu(this,t,e),r&&r(t),this}});var mu=L("Map"),bu=L("WeakMap"),wu=b([].push),Su=nt("metadata"),Eu=Su.store||(Su.store=new bu),Ou=function(t,e,r){var n=Eu.get(t);if(!n){if(!r)return;Eu.set(t,n=new mu)}var o=n.get(e);if(!o){if(!r)return;n.set(e,o=new mu)}return o},xu={store:Eu,getMap:Ou,has:function(t,e,r){var n=Ou(e,r,!1);return void 0!==n&&n.has(t)},get:function(t,e,r){var n=Ou(e,r,!1);return void 0===n?void 0:n.get(t)},set:function(t,e,r,n){Ou(r,n,!0).set(t,e)},keys:function(t,e){var r=Ou(t,e,!1),n=[];return r&&r.forEach(function(t,e){wu(n,e)}),n},toKey:function(t){return void 0===t||"symbol"==typeof t?t:String(t)}},Ru=xu.toKey,Pu=xu.set;Ce({target:"Reflect",stat:!0},{defineMetadata:function(t,e,r){var n=arguments.length<4?void 0:Ru(arguments[3]);Pu(t,e,kt(r),n)}});var Au=xu.toKey,ju=xu.getMap,ku=xu.store;Ce({target:"Reflect",stat:!0},{deleteMetadata:function(t,e){var r=arguments.length<3?void 0:Au(arguments[2]),n=ju(kt(e),r,!1);if(void 0===n||!n.delete(t))return!1;if(n.size)return!0;var o=ku.get(e);return o.delete(r),!!o.size||ku.delete(e)}});var Iu=xu.has,Tu=xu.get,Mu=xu.toKey,Lu=function(t,e,r){if(Iu(t,e,r))return Tu(t,e,r);var n=Qr(e);return null!==n?Lu(t,n,r):void 0};Ce({target:"Reflect",stat:!0},{getMetadata:function(t,e){var r=arguments.length<3?void 0:Mu(arguments[2]);return Lu(t,kt(e),r)}});var Uu=Do.Map,Nu=Do.has,Cu=Do.set,_u=b([].push),Fu=b(function(t){var e,r,n,o=it(this),i=de(o),a=[],u=new Uu,s=P(t)?function(t){return t}:J(t);for(e=0;e<i;e++)n=s(r=o[e]),Nu(u,n)||Cu(u,n,r);return di(u,function(t){_u(a,t)}),a}),Bu=b([].concat),Du=xu.keys,zu=xu.toKey,Wu=function(t,e){var r=Du(t,e),n=Qr(t);if(null===n)return r;var o=Wu(n,e);return o.length?r.length?Fu(Bu(r,o)):o:r};Ce({target:"Reflect",stat:!0},{getMetadataKeys:function(t){var e=arguments.length<2?void 0:zu(arguments[1]);return Wu(kt(t),e)}});var qu=xu.get,Hu=xu.toKey;Ce({target:"Reflect",stat:!0},{getOwnMetadata:function(t,e){var r=arguments.length<3?void 0:Hu(arguments[2]);return qu(t,kt(e),r)}});var $u=xu.keys,Ku=xu.toKey;Ce({target:"Reflect",stat:!0},{getOwnMetadataKeys:function(t){var e=arguments.length<2?void 0:Ku(arguments[1]);return $u(kt(t),e)}});var Gu=xu.has,Vu=xu.toKey,Yu=function(t,e,r){if(Gu(t,e,r))return!0;var n=Qr(e);return null!==n&&Yu(t,n,r)};Ce({target:"Reflect",stat:!0},{hasMetadata:function(t,e){var r=arguments.length<3?void 0:Vu(arguments[2]);return Yu(t,kt(e),r)}});var Xu=xu.has,Ju=xu.toKey;Ce({target:"Reflect",stat:!0},{hasOwnMetadata:function(t,e){var r=arguments.length<3?void 0:Ju(arguments[2]);return Xu(t,kt(e),r)}});var Qu=xu.toKey,Zu=xu.set;Ce({target:"Reflect",stat:!0},{metadata:function(t,e){return function(r,n){Zu(t,e,kt(r),Qu(n))}}});var ts=dt("match"),es=function(t){var e;return M(t)&&(void 0!==(e=t[ts])?!!e:"RegExp"===E(t))},rs=function(){var t=kt(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e},ns=RegExp.prototype,os=function(t){var e=t.flags;return void 0!==e||"flags"in ns||ut(t,"flags")||!U(ns,t)?e:f(rs,t)},is=i.RegExp,as=a(function(){var t=is("a","y");return t.lastIndex=2,null!==t.exec("abcd")}),us=as||a(function(){return!is("a","y").sticky}),ss=as||a(function(){var t=is("^r","gy");return t.lastIndex=2,null!==t.exec("str")}),cs={BROKEN_CARET:ss,MISSED_STICKY:us,UNSUPPORTED_Y:as},fs=Ct.f,ls=function(t,e,r){r in t||fs(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})},hs=i.RegExp,ps=a(function(){var t=hs(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)}),vs=i.RegExp,ds=a(function(){var t=vs("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}),gs=Oe.f,ys=ne.enforce,ms=dt("match"),bs=i.RegExp,ws=bs.prototype,Ss=i.SyntaxError,Es=b(ws.exec),Os=b("".charAt),xs=b("".replace),Rs=b("".indexOf),Ps=b("".slice),As=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,js=/a/g,ks=/a/g,Is=new bs(js)!==js,Ts=cs.MISSED_STICKY,Ms=cs.UNSUPPORTED_Y,Ls=u&&(!Is||Ts||ps||ds||a(function(){return ks[ms]=!1,bs(js)!==js||bs(ks)===ks||"/a/i"!==String(bs(js,"i"))}));if(Ue("RegExp",Ls)){for(var Us=function(t,e){var r,n,o,i,a,u,s=U(ws,this),c=es(t),f=void 0===e,l=[],h=t;if(!s&&c&&f&&t.constructor===Us)return t;if((c||U(ws,t))&&(t=t.source,f&&(e=os(h))),t=void 0===t?"":Wr(t),e=void 0===e?"":Wr(e),h=t,ps&&"dotAll"in js&&(n=!!e&&Rs(e,"s")>-1)&&(e=xs(e,/s/g,"")),r=e,Ts&&"sticky"in js&&(o=!!e&&Rs(e,"y")>-1)&&Ms&&(e=xs(e,/y/g,"")),ds&&(i=function(t){for(var e,r=t.length,n=0,o="",i=[],a=Ve(null),u=!1,s=!1,c=0,f="";n<=r;n++){if("\\"===(e=Os(t,n)))e+=Os(t,++n);else if("]"===e)u=!1;else if(!u)switch(!0){case"["===e:u=!0;break;case"("===e:if(o+=e,"?:"===Ps(t,n+1,n+3))continue;Es(As,Ps(t,n+1))&&(n+=2,s=!0),c++;continue;case">"===e&&s:if(""===f||ut(a,f))throw new Ss("Invalid capture group name");a[f]=!0,i[i.length]=[f,c],s=!1,f="";continue}s?f+=e:o+=e}return[o,i]}(t),t=i[0],l=i[1]),a=Io(bs(t,e),s?this:ws,Us),(n||o||l.length)&&(u=ys(a),n&&(u.dotAll=!0,u.raw=Us(function(t){for(var e,r=t.length,n=0,o="",i=!1;n<=r;n++)"\\"!==(e=Os(t,n))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+Os(t,++n);return o}(t),r)),o&&(u.sticky=!0),l.length&&(u.groups=l)),t!==h)try{_t(a,"source",""===h?"(?:)":h)}catch(t){}return a},Ns=gs(bs),Cs=0;Ns.length>Cs;)ls(Us,bs,Ns[Cs++]);ws.constructor=Us,Us.prototype=ws,ie(i,"RegExp",Us,{constructor:!0})}Uo("RegExp");var _s=zt.PROPER,Fs="toString",Bs=RegExp.prototype,Ds=Bs[Fs];(a(function(){return"/a/b"!==Ds.call({source:"a",flags:"b"})})||_s&&Ds.name!==Fs)&&ie(Bs,Fs,function(){var t=kt(this);return"/"+Wr(t.source)+"/"+Wr(os(t))},{unsafe:!0});var zs=ne.get,Ws=RegExp.prototype,qs=TypeError;u&&ps&&so(Ws,"dotAll",{configurable:!0,get:function(){if(this!==Ws){if("RegExp"===E(this))return!!zs(this).dotAll;throw new qs("Incompatible receiver, RegExp required")}}});var Hs=ne.get,$s=nt("native-string-replace",String.prototype.replace),Ks=RegExp.prototype.exec,Gs=Ks,Vs=b("".charAt),Ys=b("".indexOf),Xs=b("".replace),Js=b("".slice),Qs=function(){var t=/a/,e=/b*/g;return f(Ks,t,"a"),f(Ks,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),Zs=cs.BROKEN_CARET,tc=void 0!==/()??/.exec("")[1];(Qs||tc||Zs||ps||ds)&&(Gs=function(t){var e,r,n,o,i,a,u,s=this,c=Hs(s),l=Wr(t),h=c.raw;if(h)return h.lastIndex=s.lastIndex,e=f(Gs,h,l),s.lastIndex=h.lastIndex,e;var p=c.groups,v=Zs&&s.sticky,d=f(rs,s),g=s.source,y=0,m=l;if(v&&(d=Xs(d,"y",""),-1===Ys(d,"g")&&(d+="g"),m=Js(l,s.lastIndex),s.lastIndex>0&&(!s.multiline||s.multiline&&"\n"!==Vs(l,s.lastIndex-1))&&(g="(?: "+g+")",m=" "+m,y++),r=new RegExp("^(?:"+g+")",d)),tc&&(r=new RegExp("^"+g+"$(?!\\s)",d)),Qs&&(n=s.lastIndex),o=f(Ks,v?r:s,m),v?o?(o.input=Js(o.input,y),o[0]=Js(o[0],y),o.index=s.lastIndex,s.lastIndex+=o[0].length):s.lastIndex=0:Qs&&o&&(s.lastIndex=s.global?o.index+o[0].length:n),tc&&o&&o.length>1&&f($s,o[0],r,function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)}),o&&p)for(o.groups=a=Ve(null),i=0;i<p.length;i++)a[(u=p[i])[0]]=o[u[1]];return o});var ec=Gs;Ce({target:"RegExp",proto:!0,forced:/./.exec!==ec},{exec:ec});var rc=i.RegExp,nc=rc.prototype;u&&a(function(){var t=!0;try{rc(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",o=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},i={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var a in t&&(i.hasIndices="d"),i)o(a,i[a]);return Object.getOwnPropertyDescriptor(nc,"flags").get.call(e)!==n||r!==n})&&so(nc,"flags",{configurable:!0,get:rs});var oc=ne.get,ic=RegExp.prototype,ac=TypeError;u&&cs.MISSED_STICKY&&so(ic,"sticky",{configurable:!0,get:function(){if(this!==ic){if("RegExp"===E(this))return!!oc(this).sticky;throw new ac("Incompatible receiver, RegExp required")}}});var uc,sc,cc=(uc=!1,(sc=/[ac]/).exec=function(){return uc=!0,/./.exec.apply(this,arguments)},!0===sc.test("abc")&&uc),fc=/./.test;Ce({target:"RegExp",proto:!0,forced:!cc},{test:function(t){var e=kt(this),r=Wr(t),n=e.exec;if(!T(n))return f(fc,e,r);var o=f(n,e,r);return null!==o&&(kt(o),!0)}});var lc=dt("species"),hc=RegExp.prototype,pc=function(t,e,r,n){var o=dt(t),i=!a(function(){var e={};return e[o]=function(){return 7},7!==""[t](e)}),u=i&&!a(function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[lc]=function(){return r},r.flags="",r[o]=/./[o]),r.exec=function(){return e=!0,null},r[o](""),!e});if(!i||!u||r){var s=/./[o],c=e(o,""[t],function(t,e,r,n,o){var a=e.exec;return a===ec||a===hc.exec?i&&!o?{done:!0,value:f(s,e,r,n)}:{done:!0,value:f(t,r,e,n)}:{done:!1}});ie(String.prototype,t,c[0]),ie(hc,o,c[1])}n&&_t(hc[o],"sham",!0)},vc=Gr.charAt,dc=function(t,e,r){return e+(r?vc(t,e).length:1)},gc=TypeError,yc=function(t,e){var r=t.exec;if(T(r)){var n=f(r,t,e);return null!==n&&kt(n),n}if("RegExp"===E(t))return f(ec,t,e);throw new gc("RegExp#exec called on incompatible receiver")};pc("match",function(t,e,r){return[function(e){var r=j(this),n=P(e)?void 0:Q(e,t);return n?f(n,e,r):new RegExp(e)[t](Wr(r))},function(t){var n=kt(this),o=Wr(t),i=r(e,n,o);if(i.done)return i.value;if(!n.global)return yc(n,o);var a=n.unicode;n.lastIndex=0;for(var u,s=[],c=0;null!==(u=yc(n,o));){var f=Wr(u[0]);s[c]=f,""===f&&(n.lastIndex=dc(o,ve(n.lastIndex),a)),c++}return 0===c?null:s}]});var mc=Math.floor,bc=b("".charAt),wc=b("".replace),Sc=b("".slice),Ec=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,Oc=/\$([$&'`]|\d{1,2})/g,xc=function(t,e,r,n,o,i){var a=r+t.length,u=n.length,s=Oc;return void 0!==o&&(o=it(o),s=Ec),wc(i,s,function(i,s){var c;switch(bc(s,0)){case"$":return"$";case"&":return t;case"`":return Sc(e,0,r);case"'":return Sc(e,a);case"<":c=o[Sc(s,1,-1)];break;default:var f=+s;if(0===f)return i;if(f>u){var l=mc(f/10);return 0===l?i:l<=u?void 0===n[l-1]?bc(s,1):n[l-1]+bc(s,1):i}c=n[f-1]}return void 0===c?"":c})},Rc=dt("replace"),Pc=Math.max,Ac=Math.min,jc=b([].concat),kc=b([].push),Ic=b("".indexOf),Tc=b("".slice),Mc="$0"==="a".replace(/./,"$0"),Lc=!!/./[Rc]&&""===/./[Rc]("a","$0"),Uc=!a(function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")});pc("replace",function(t,e,r){var n=Lc?"$":"$0";return[function(t,r){var n=j(this),o=P(t)?void 0:Q(t,Rc);return o?f(o,t,n,r):f(e,Wr(n),t,r)},function(t,o){var i=kt(this),a=Wr(t);if("string"==typeof o&&-1===Ic(o,n)&&-1===Ic(o,"$<")){var u=r(e,i,a,o);if(u.done)return u.value}var s=T(o);s||(o=Wr(o));var c,f=i.global;f&&(c=i.unicode,i.lastIndex=0);for(var l,h=[];null!==(l=yc(i,a))&&(kc(h,l),f);)""===Wr(l[0])&&(i.lastIndex=dc(a,ve(i.lastIndex),c));for(var p,v="",d=0,g=0;g<h.length;g++){for(var y,m=Wr((l=h[g])[0]),b=Pc(Ac(ce(l.index),a.length),0),w=[],S=1;S<l.length;S++)kc(w,void 0===(p=l[S])?p:String(p));var E=l.groups;if(s){var O=jc([m],w,b,a);void 0!==E&&kc(O,E),y=Wr(Ra(o,void 0,O))}else y=xc(m,a,b,w,E,o);b>=d&&(v+=Tc(a,d,b)+y,d=b+m.length)}return v+Tc(a,d)}]},!Uc||!Mc||Lc),pc("search",function(t,e,r){return[function(e){var r=j(this),n=P(e)?void 0:Q(e,t);return n?f(n,e,r):new RegExp(e)[t](Wr(r))},function(t){var n=kt(this),o=Wr(t),i=r(e,n,o);if(i.done)return i.value;var a=n.lastIndex;wa(a,0)||(n.lastIndex=0);var u=yc(n,o);return wa(n.lastIndex,a)||(n.lastIndex=a),null===u?-1:u.index}]});var Nc=dt("species"),Cc=function(t,e){var r,n=kt(t).constructor;return void 0===n||P(r=kt(n)[Nc])?e:La(r)},_c=cs.UNSUPPORTED_Y,Fc=Math.min,Bc=b([].push),Dc=b("".slice),zc=!a(function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]}),Wc="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;pc("split",function(t,e,r){var n="0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:f(e,this,t,r)}:e;return[function(e,r){var o=j(this),i=P(e)?void 0:Q(e,t);return i?f(i,e,o,r):f(n,Wr(o),e,r)},function(t,o){var i=kt(this),a=Wr(t);if(!Wc){var u=r(n,i,a,o,n!==e);if(u.done)return u.value}var s=Cc(i,RegExp),c=i.unicode,f=new s(_c?"^(?:"+i.source+")":i,(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(_c?"g":"y")),l=void 0===o?4294967295:o>>>0;if(0===l)return[];if(0===a.length)return null===yc(f,a)?[a]:[];for(var h=0,p=0,v=[];p<a.length;){f.lastIndex=_c?0:p;var d,g=yc(f,_c?Dc(a,p):a);if(null===g||(d=Fc(ve(f.lastIndex+(_c?p:0)),a.length))===h)p=dc(a,p,c);else{if(Bc(v,Dc(a,h,p)),v.length===l)return v;for(var y=1;y<=g.length-1;y++)if(Bc(v,g[y]),v.length===l)return v;p=h=d}}return Bc(v,Dc(a,h)),v}]},Wc||!zc,_c);var qc=TypeError,Hc=RangeError,$c=function(t){var e=Wr(j(this)),r="",n=ce(t);if(n<0||Infinity===n)throw new Hc("Wrong number of repetitions");for(;n>0;(n>>>=1)&&(e+=e))1&n&&(r+=e);return r},Kc=b($c),Gc=b("".slice),Vc=Math.ceil,Yc=function(t){return function(e,r,n){var o,i,a=Wr(j(e)),u=ve(r),s=a.length,c=void 0===n?" ":Wr(n);return u<=s||""===c?a:((i=Kc(c,Vc((o=u-s)/c.length))).length>o&&(i=Gc(i,0,o)),t?a+i:i+a)}},Xc={start:Yc(!1),end:Yc(!0)},Jc=Xc.start,Qc=Array,Zc=RegExp.escape,tf=b("".charAt),ef=b("".charCodeAt),rf=b(1.1.toString),nf=b([].join),of=/^[0-9a-z]/i,af=/^[$()*+./?[\\\]^{|}]/,uf=RegExp("^[!\"#%&',\\-:;<=>@`~"+Mi+"]"),sf=b(of.exec),cf={"\t":"t","\n":"n","\v":"v","\f":"f","\r":"r"},ff=function(t){var e=rf(ef(t,0),16);return e.length<3?"\\x"+Jc(e,2,"0"):"\\u"+Jc(e,4,"0")},lf=!Zc||"\\x61b"!==Zc("ab");Ce({target:"RegExp",stat:!0,forced:lf},{escape:function(t){!function(t){if("string"==typeof t)return t;throw new qc("Argument is not a string")}(t);for(var e=t.length,r=Qc(e),n=0;n<e;n++){var o=tf(t,n);if(0===n&&sf(of,o))r[n]=ff(o);else if(ut(cf,o))r[n]="\\"+cf[o];else if(sf(af,o))r[n]="\\"+o;else if(sf(uf,o))r[n]=ff(o);else{var i=ef(o,0);55296!=(63488&i)?r[n]=o:i>=56320||n+1>=e||56320!=(64512&ef(t,n+1))?r[n]=ff(o):(r[n]=o,r[++n]=tf(t,n))}}return nf(r,"")}}),To("Set",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},Fo);var hf=Set.prototype,pf={Set:Set,add:b(hf.add),has:b(hf.has),remove:b(hf.delete),proto:hf},vf=pf.has,df=function(t){return vf(t),t},gf=pf.Set,yf=pf.proto,mf=b(yf.forEach),bf=b(yf.keys),wf=bf(new gf).next,Sf=function(t,e,r){return r?ci({iterator:bf(t),next:wf},e):mf(t,e)},Ef=pf.Set,Of=pf.add,xf=function(t){var e=new Ef;return Sf(t,function(t){Of(e,t)}),e},Rf=ln(pf.proto,"size","get")||function(t){return t.size},Pf="Invalid size",Af=RangeError,jf=TypeError,kf=Math.max,If=function(t,e){this.set=t,this.size=kf(e,0),this.has=J(t.has),this.keys=J(t.keys)};If.prototype={getIterator:function(){return{iterator:t=kt(f(this.keys,this.set)),next:t.next,done:!1};var t},includes:function(t){return f(this.has,this.set,t)}};var Tf=function(t){kt(t);var e=+t.size;if(e!=e)throw new jf(Pf);var r=ce(e);if(r<0)throw new Af(Pf);return new If(t,r)},Mf=pf.has,Lf=pf.remove,Uf=function(t){var e=df(this),r=Tf(t),n=xf(e);return Rf(e)<=r.size?Sf(e,function(t){r.includes(t)&&Lf(n,t)}):ci(r.getIterator(),function(t){Mf(e,t)&&Lf(n,t)}),n},Nf=function(t){return{size:t,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}},Cf=function(t){var e=L("Set");try{(new e)[t](Nf(0));try{return(new e)[t](Nf(-1)),!1}catch(t){return!0}}catch(t){return!1}};Ce({target:"Set",proto:!0,real:!0,forced:!Cf("difference")},{difference:Uf});var _f=pf.Set,Ff=pf.add,Bf=pf.has,Df=function(t){var e=df(this),r=Tf(t),n=new _f;return Rf(e)>r.size?ci(r.getIterator(),function(t){Bf(e,t)&&Ff(n,t)}):Sf(e,function(t){r.includes(t)&&Ff(n,t)}),n},zf=!Cf("intersection")||a(function(){return"3,2"!==String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))});Ce({target:"Set",proto:!0,real:!0,forced:zf},{intersection:Df});var Wf=pf.has,qf=function(t){var e=df(this),r=Tf(t);if(Rf(e)<=r.size)return!1!==Sf(e,function(t){if(r.includes(t))return!1},!0);var n=r.getIterator();return!1!==ci(n,function(t){if(Wf(e,t))return Tn(n,"normal",!1)})};Ce({target:"Set",proto:!0,real:!0,forced:!Cf("isDisjointFrom")},{isDisjointFrom:qf});var Hf=function(t){var e=df(this),r=Tf(t);return!(Rf(e)>r.size)&&!1!==Sf(e,function(t){if(!r.includes(t))return!1},!0)};Ce({target:"Set",proto:!0,real:!0,forced:!Cf("isSubsetOf")},{isSubsetOf:Hf});var $f=pf.has,Kf=function(t){var e=df(this),r=Tf(t);if(Rf(e)<r.size)return!1;var n=r.getIterator();return!1!==ci(n,function(t){if(!$f(e,t))return Tn(n,"normal",!1)})};Ce({target:"Set",proto:!0,real:!0,forced:!Cf("isSupersetOf")},{isSupersetOf:Kf});var Gf=pf.add,Vf=pf.has,Yf=pf.remove,Xf=function(t){var e=df(this),r=Tf(t).getIterator(),n=xf(e);return ci(r,function(t){Vf(e,t)?Yf(n,t):Gf(n,t)}),n};Ce({target:"Set",proto:!0,real:!0,forced:!Cf("symmetricDifference")},{symmetricDifference:Xf});var Jf=pf.add,Qf=function(t){var e=df(this),r=Tf(t).getIterator(),n=xf(e);return ci(r,function(t){Jf(n,t)}),n};Ce({target:"Set",proto:!0,real:!0,forced:!Cf("union")},{union:Qf}),Ce({target:"Set",stat:!0,forced:!0},{from:ei(pf.Set,pf.add,!1)}),Ce({target:"Set",stat:!0,forced:!0},{of:ri(pf.Set,pf.add,!1)});var Zf=pf.add;Ce({target:"Set",proto:!0,real:!0,forced:!0},{addAll:function(){for(var t=df(this),e=0,r=arguments.length;e<r;e++)Zf(t,arguments[e]);return t}});var tl=pf.remove;Ce({target:"Set",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var t,e=df(this),r=!0,n=0,o=arguments.length;n<o;n++)t=tl(e,arguments[n]),r=r&&t;return!!r}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{every:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0);return!1!==Sf(e,function(t){if(!r(t,t,e))return!1},!0)}});var el=dt("iterator"),rl=Object,nl=L("Set"),ol=function(t){return function(t){return M(t)&&"number"==typeof t.size&&T(t.has)&&T(t.keys)}(t)?t:function(t){if(P(t))return!1;var e=rl(t);return void 0!==e[el]||"@@iterator"in e||ut(un,pr(e))}(t)?new nl(t):t};Ce({target:"Set",proto:!0,real:!0,forced:!0},{difference:function(t){return f(Uf,this,ol(t))}});var il=pf.Set,al=pf.add;Ce({target:"Set",proto:!0,real:!0,forced:!0},{filter:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new il;return Sf(e,function(t){r(t,t,e)&&al(n,t)}),n}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{find:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=Sf(e,function(t){if(r(t,t,e))return{value:t}},!0);return n&&n.value}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{intersection:function(t){return f(Df,this,ol(t))}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{isDisjointFrom:function(t){return f(qf,this,ol(t))}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{isSubsetOf:function(t){return f(Hf,this,ol(t))}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{isSupersetOf:function(t){return f(Kf,this,ol(t))}});var ul=b([].join),sl=b([].push);Ce({target:"Set",proto:!0,real:!0,forced:!0},{join:function(t){var e=df(this),r=void 0===t?",":Wr(t),n=[];return Sf(e,function(t){sl(n,t)}),ul(n,r)}});var cl=pf.Set,fl=pf.add;Ce({target:"Set",proto:!0,real:!0,forced:!0},{map:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new cl;return Sf(e,function(t){fl(n,r(t,t,e))}),n}});var ll=TypeError;Ce({target:"Set",proto:!0,real:!0,forced:!0},{reduce:function(t){var e=df(this),r=arguments.length<2,n=r?void 0:arguments[1];if(J(t),Sf(e,function(o){r?(r=!1,n=o):n=t(n,o,o,e)}),r)throw new ll("Reduce of empty set with no initial value");return n}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{some:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0);return!0===Sf(e,function(t){if(r(t,t,e))return!0},!0)}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{symmetricDifference:function(t){return f(Xf,this,ol(t))}}),Ce({target:"Set",proto:!0,real:!0,forced:!0},{union:function(t){return f(Qf,this,ol(t))}});var hl=dt("species"),pl=dt("isConcatSpreadable"),vl=W>=51||!a(function(){var t=[];return t[pl]=!1,t.concat()[0]!==t}),dl=function(t){if(!M(t))return!1;var e=t[pl];return void 0!==e?!!e:ur(t)},gl=!(vl&&(W>=51||!a(function(){var t=[];return(t.constructor={})[hl]=function(){return{foo:1}},1!==t.concat(Boolean).foo})));Ce({target:"Array",proto:!0,arity:1,forced:gl},{concat:function(t){var e,r,n,o,i,a=it(this),u=xr(a,0),s=0;for(e=-1,n=arguments.length;e<n;e++)if(dl(i=-1===e?a:arguments[e]))for(o=de(i),Nr(s+o),r=0;r<o;r++,s++)r in i&&Cn(u,s,i[r]);else Nr(s+1),Cn(u,s++,i);return u.length=s,u}});var yl={f:dt},ml=Ct.f,bl=function(t){var e=Yn.Symbol||(Yn.Symbol={});ut(e,t)||ml(e,t,{value:yl.f(t)})},wl=function(){var t=L("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,n=dt("toPrimitive");e&&!e[n]&&ie(e,n,function(t){return f(r,this)},{arity:1})},Sl=Ar.forEach,El=Xt("hidden"),Ol="Symbol",xl="prototype",Rl=ne.set,Pl=ne.getterFor(Ol),Al=Object[xl],jl=i.Symbol,kl=jl&&jl[xl],Il=i.RangeError,Tl=i.TypeError,Ml=i.QObject,Ll=Rt.f,Ul=Ct.f,Nl=mo.f,Cl=v.f,_l=b([].push),Fl=nt("symbols"),Bl=nt("op-symbols"),Dl=nt("wks"),zl=!Ml||!Ml[xl]||!Ml[xl].findChild,Wl=function(t,e,r){var n=Ll(Al,e);n&&delete Al[e],Ul(t,e,r),n&&t!==Al&&Ul(Al,e,n)},ql=u&&a(function(){return 7!==Ve(Ul({},"a",{get:function(){return Ul(this,"a",{value:7}).a}})).a})?Wl:Ul,Hl=function(t,e){var r=Fl[t]=Ve(kl);return Rl(r,{type:Ol,tag:t,description:e}),u||(r.description=e),r},$l=function(t,e,r){t===Al&&$l(Bl,e,r),kt(t);var n=bt(e);return kt(r),ut(Fl,n)?(r.enumerable?(ut(t,El)&&t[El][n]&&(t[El][n]=!1),r=Ve(r,{enumerable:d(0,!1)})):(ut(t,El)||Ul(t,El,d(1,Ve(null))),t[El][n]=!0),ql(t,n,r)):Ul(t,n,r)},Kl=function(t,e){kt(t);var r=k(e),n=_e(r).concat(Xl(r));return Sl(n,function(e){u&&!f(Gl,r,e)||$l(t,e,r[e])}),t},Gl=function(t){var e=bt(t),r=f(Cl,this,e);return!(this===Al&&ut(Fl,e)&&!ut(Bl,e))&&(!(r||!ut(this,e)||!ut(Fl,e)||ut(this,El)&&this[El][e])||r)},Vl=function(t,e){var r=k(t),n=bt(e);if(r!==Al||!ut(Fl,n)||ut(Bl,n)){var o=Ll(r,n);return!o||!ut(Fl,n)||ut(r,El)&&r[El][n]||(o.enumerable=!0),o}},Yl=function(t){var e=Nl(k(t)),r=[];return Sl(e,function(t){ut(Fl,t)||ut(Jt,t)||_l(r,t)}),r},Xl=function(t){var e=t===Al,r=Nl(e?Bl:k(t)),n=[];return Sl(r,function(t){!ut(Fl,t)||e&&!ut(Al,t)||_l(n,Fl[t])}),n};H||(jl=function(){if(U(kl,this))throw new Tl("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?Wr(arguments[0]):void 0,e=lt(t),r=function(t){var n=void 0===this?i:this;n===Al&&f(r,Bl,t),ut(n,El)&&ut(n[El],e)&&(n[El][e]=!1);var o=d(1,t);try{ql(n,e,o)}catch(t){if(!(t instanceof Il))throw t;Wl(n,e,o)}};return u&&zl&&ql(Al,e,{configurable:!0,set:r}),Hl(e,t)},ie(kl=jl[xl],"toString",function(){return Pl(this).tag}),ie(jl,"withoutSetter",function(t){return Hl(lt(t),t)}),v.f=Gl,Ct.f=$l,Be.f=Kl,Rt.f=Vl,Oe.f=mo.f=Yl,xe.f=Xl,yl.f=function(t){return Hl(dt(t),t)},u&&(so(kl,"description",{configurable:!0,get:function(){return Pl(this).description}}),ie(Al,"propertyIsEnumerable",Gl,{unsafe:!0}))),Ce({global:!0,constructor:!0,wrap:!0,forced:!H,sham:!H},{Symbol:jl}),Sl(_e(Dl),function(t){bl(t)}),Ce({target:Ol,stat:!0,forced:!H},{useSetter:function(){zl=!0},useSimple:function(){zl=!1}}),Ce({target:"Object",stat:!0,forced:!H,sham:!u},{create:function(t,e){return void 0===e?Ve(t):Kl(Ve(t),e)},defineProperty:$l,defineProperties:Kl,getOwnPropertyDescriptor:Vl}),Ce({target:"Object",stat:!0,forced:!H},{getOwnPropertyNames:Yl}),wl(),an(jl,Ol),Jt[El]=!0;var Jl=H&&!!Symbol.for&&!!Symbol.keyFor,Ql=nt("string-to-symbol-registry"),Zl=nt("symbol-to-string-registry");Ce({target:"Symbol",stat:!0,forced:!Jl},{for:function(t){var e=Wr(t);if(ut(Ql,e))return Ql[e];var r=L("Symbol")(e);return Ql[e]=r,Zl[r]=e,r}});var th=nt("symbol-to-string-registry");Ce({target:"Symbol",stat:!0,forced:!Jl},{keyFor:function(t){if(!G(t))throw new TypeError(Y(t)+" is not a symbol");if(ut(th,t))return th[t]}});var eh=b([].push),rh=String,nh=L("JSON","stringify"),oh=b(/./.exec),ih=b("".charAt),ah=b("".charCodeAt),uh=b("".replace),sh=b(1..toString),ch=/[\uD800-\uDFFF]/g,fh=/^[\uD800-\uDBFF]$/,lh=/^[\uDC00-\uDFFF]$/,hh=!H||a(function(){var t=L("Symbol")("stringify detection");return"[null]"!==nh([t])||"{}"!==nh({a:t})||"{}"!==nh(Object(t))}),ph=a(function(){return'"\\udf06\\ud834"'!==nh("\udf06\ud834")||'"\\udead"'!==nh("\udead")}),vh=function(t,e){var r=vo(arguments),n=function(t){if(T(t))return t;if(ur(t)){for(var e=t.length,r=[],n=0;n<e;n++){var o=t[n];"string"==typeof o?eh(r,o):"number"!=typeof o&&"Number"!==E(o)&&"String"!==E(o)||eh(r,Wr(o))}var i=r.length,a=!0;return function(t,e){if(a)return a=!1,e;if(ur(this))return e;for(var n=0;n<i;n++)if(r[n]===t)return e}}}(e);if(T(n)||void 0!==t&&!G(t))return r[1]=function(t,e){if(T(n)&&(e=f(n,this,rh(t),e)),!G(e))return e},Ra(nh,null,r)},dh=function(t,e,r){var n=ih(r,e-1),o=ih(r,e+1);return oh(fh,t)&&!oh(lh,o)||oh(lh,t)&&!oh(fh,n)?"\\u"+sh(ah(t,0),16):t};nh&&Ce({target:"JSON",stat:!0,arity:3,forced:hh||ph},{stringify:function(t,e,r){var n=vo(arguments),o=Ra(hh?vh:nh,null,n);return ph&&"string"==typeof o?uh(o,ch,dh):o}});var gh=!H||a(function(){xe.f(1)});Ce({target:"Object",stat:!0,forced:gh},{getOwnPropertySymbols:function(t){var e=xe.f;return e?e(it(t)):[]}}),bl("asyncIterator");var yh=i.Symbol,mh=yh&&yh.prototype;if(u&&T(yh)&&(!("description"in mh)||void 0!==yh().description)){var bh={},wh=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:Wr(arguments[0]),e=U(mh,this)?new yh(t):void 0===t?yh():yh(t);return""===t&&(bh[e]=!0),e};Ae(wh,yh),wh.prototype=mh,mh.constructor=wh;var Sh="Symbol(description detection)"===String(yh("description detection")),Eh=b(mh.valueOf),Oh=b(mh.toString),xh=/^Symbol\((.*)\)[^)]+$/,Rh=b("".replace),Ph=b("".slice);so(mh,"description",{configurable:!0,get:function(){var t=Eh(this);if(ut(bh,t))return"";var e=Oh(t),r=Sh?Ph(e,7,-1):Rh(e,xh,"$1");return""===r?void 0:r}}),Ce({global:!0,constructor:!0,forced:!0},{Symbol:wh})}bl("hasInstance"),bl("isConcatSpreadable"),bl("iterator"),bl("match"),bl("matchAll"),bl("replace"),bl("search"),bl("species"),bl("split"),bl("toPrimitive"),wl(),bl("toStringTag"),an(L("Symbol"),"Symbol"),bl("unscopables"),an(i.JSON,"JSON",!0),an(Math,"Math",!0);var Ah=Ct.f,jh=dt("metadata"),kh=Function.prototype;void 0===kh[jh]&&Ah(kh,jh,{value:null});var Ih=Ct.f,Th=Rt.f,Mh=i.Symbol;if(bl("asyncDispose"),Mh){var Lh=Th(Mh,"asyncDispose");Lh.enumerable&&Lh.configurable&&Lh.writable&&Ih(Mh,"asyncDispose",{value:Lh.value,enumerable:!1,configurable:!1,writable:!1})}var Uh=Ct.f,Nh=Rt.f,Ch=i.Symbol;if(bl("dispose"),Ch){var _h=Nh(Ch,"dispose");_h.enumerable&&_h.configurable&&_h.writable&&Uh(Ch,"dispose",{value:_h.value,enumerable:!1,configurable:!1,writable:!1})}bl("metadata");var Fh=L("Symbol"),Bh=Fh.keyFor,Dh=b(Fh.prototype.valueOf),zh=Fh.isRegisteredSymbol||function(t){try{return void 0!==Bh(Dh(t))}catch(t){return!1}};Ce({target:"Symbol",stat:!0},{isRegisteredSymbol:zh});for(var Wh=L("Symbol"),qh=Wh.isWellKnownSymbol,Hh=L("Object","getOwnPropertyNames"),$h=b(Wh.prototype.valueOf),Kh=nt("wks"),Gh=0,Vh=Hh(Wh),Yh=Vh.length;Gh<Yh;Gh++)try{var Xh=Vh[Gh];G(Wh[Xh])&&dt(Xh)}catch(t){}var Jh=function(t){if(qh&&qh(t))return!0;try{for(var e=$h(t),r=0,n=Hh(Kh),o=n.length;r<o;r++)if(Kh[n[r]]==e)return!0}catch(t){}return!1};Ce({target:"Symbol",stat:!0,forced:!0},{isWellKnownSymbol:Jh}),bl("customMatcher"),bl("observable"),Ce({target:"Symbol",stat:!0,name:"isRegisteredSymbol"},{isRegistered:zh}),Ce({target:"Symbol",stat:!0,name:"isWellKnownSymbol",forced:!0},{isWellKnown:Jh}),bl("matcher"),bl("metadataKey"),bl("patternMatch"),bl("replaceAll"),yl.f("asyncIterator");var Qh=Gr.codeAt;Ce({target:"String",proto:!0},{codePointAt:function(t){return Qh(this,t)}}),Ze("String","codePointAt");var Zh=TypeError,tp=function(t){if(es(t))throw new Zh("The method doesn't accept regular expressions");return t},ep=dt("match"),rp=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[ep]=!1,"/./"[t](e)}catch(t){}}return!1},np=Rt.f,op=or("".slice),ip=Math.min,ap=rp("endsWith"),up=!ap&&!!function(){var t=np(String.prototype,"endsWith");return t&&!t.writable}();Ce({target:"String",proto:!0,forced:!up&&!ap},{endsWith:function(t){var e=Wr(j(this));tp(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,o=void 0===r?n:ip(ve(r),n),i=Wr(t);return op(e,o-i.length,o)===i}}),Ze("String","endsWith");var sp=RangeError,cp=String.fromCharCode,fp=String.fromCodePoint,lp=b([].join);Ce({target:"String",stat:!0,arity:1,forced:!!fp&&1!==fp.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,o=0;n>o;){if(e=+arguments[o++],he(e,1114111)!==e)throw new sp(e+" is not a valid code point");r[o]=e<65536?cp(e):cp(55296+((e-=65536)>>10),e%1024+56320)}return lp(r,"")}});var hp=b("".indexOf);Ce({target:"String",proto:!0,forced:!rp("includes")},{includes:function(t){return!!~hp(Wr(j(this)),Wr(tp(t)),arguments.length>1?arguments[1]:void 0)}}),Ze("String","includes"),b(un.String);var pp=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(_),vp=Xc.start;Ce({target:"String",proto:!0,forced:pp},{padStart:function(t){return vp(this,t,arguments.length>1?arguments[1]:void 0)}}),Ze("String","padStart");var dp=Xc.end;Ce({target:"String",proto:!0,forced:pp},{padEnd:function(t){return dp(this,t,arguments.length>1?arguments[1]:void 0)}}),Ze("String","padEnd");var gp=b([].push),yp=b([].join);Ce({target:"String",stat:!0},{raw:function(t){var e=k(it(t).raw),r=de(e);if(!r)return"";for(var n=arguments.length,o=[],i=0;;){if(gp(o,Wr(e[i++])),i===r)return yp(o,"");i<n&&gp(o,Wr(arguments[i]))}}}),Ce({target:"String",proto:!0},{repeat:$c}),Ze("String","repeat");var mp=Rt.f,bp=or("".slice),wp=Math.min,Sp=rp("startsWith"),Ep=!Sp&&!!function(){var t=mp(String.prototype,"startsWith");return t&&!t.writable}();Ce({target:"String",proto:!0,forced:!Ep&&!Sp},{startsWith:function(t){var e=Wr(j(this));tp(t);var r=ve(wp(arguments.length>1?arguments[1]:void 0,e.length)),n=Wr(t);return bp(e,r,r+n.length)===n}}),Ze("String","startsWith");var Op=zt.PROPER,xp=function(t){return a(function(){return!!Mi[t]()||"​…᠎"!=="​…᠎"[t]()||Op&&Mi[t].name!==t})},Rp=_i.start,Pp=xp("trimStart")?function(){return Rp(this)}:"".trimStart;Ce({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==Pp},{trimLeft:Pp}),Ce({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==Pp},{trimStart:Pp}),Ze("String","trimLeft");var Ap=_i.end,jp=xp("trimEnd")?function(){return Ap(this)}:"".trimEnd;Ce({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==jp},{trimRight:jp}),Ce({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==jp},{trimEnd:jp}),Ze("String","trimRight");var kp=Object.getOwnPropertyDescriptor,Ip=function(t){if(!u)return i[t];var e=kp(i,t);return e&&e.value},Tp=dt("iterator"),Mp=!a(function(){var t=new URL("b?a=1&b=2&c=3","https://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach(function(t,r){e.delete("b"),n+=r+t}),r.delete("a",2),r.delete("b",void 0),!e.size&&!u||!e.sort||"https://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[Tp]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("https://тест").host||"#%D0%B1"!==new URL("https://a#б").hash||"a1c3"!==n||"x"!==new URL("https://x",void 0).host}),Lp=TypeError,Up=function(t,e){if(t<e)throw new Lp("Not enough arguments");return t},Np=Math.floor,Cp=function(t,e){var r=t.length;if(r<8)for(var n,o,i=1;i<r;){for(o=i,n=t[i];o&&e(t[o-1],n)>0;)t[o]=t[--o];o!==i++&&(t[o]=n)}else for(var a=Np(r/2),u=Cp(vo(t,0,a),e),s=Cp(vo(t,a),e),c=u.length,f=s.length,l=0,h=0;l<c||h<f;)t[l+h]=l<c&&h<f?e(u[l],s[h])<=0?u[l++]:s[h++]:l<c?u[l++]:s[h++];return t},_p=Cp,Fp=dt("iterator"),Bp="URLSearchParams",Dp=Bp+"Iterator",zp=ne.set,Wp=ne.getterFor(Bp),qp=ne.getterFor(Dp),Hp=Ip("fetch"),$p=Ip("Request"),Kp=Ip("Headers"),Gp=$p&&$p.prototype,Vp=Kp&&Kp.prototype,Yp=i.TypeError,Xp=i.encodeURIComponent,Jp=String.fromCharCode,Qp=L("String","fromCodePoint"),Zp=parseInt,tv=b("".charAt),ev=b([].join),rv=b([].push),nv=b("".replace),ov=b([].shift),iv=b([].splice),av=b("".split),uv=b("".slice),sv=b(/./.exec),cv=/\+/g,fv=/^[0-9a-f]+$/i,lv=function(t,e){var r=uv(t,e,e+2);return sv(fv,r)?Zp(r,16):NaN},hv=function(t){for(var e=0,r=128;r>0&&0!=(t&r);r>>=1)e++;return e},pv=function(t){var e=null;switch(t.length){case 1:e=t[0];break;case 2:e=(31&t[0])<<6|63&t[1];break;case 3:e=(15&t[0])<<12|(63&t[1])<<6|63&t[2];break;case 4:e=(7&t[0])<<18|(63&t[1])<<12|(63&t[2])<<6|63&t[3]}return e>1114111?null:e},vv=function(t){for(var e=(t=nv(t,cv," ")).length,r="",n=0;n<e;){var o=tv(t,n);if("%"===o){if("%"===tv(t,n+1)||n+3>e){r+="%",n++;continue}var i=lv(t,n+1);if(i!=i){r+=o,n++;continue}n+=2;var a=hv(i);if(0===a)o=Jp(i);else{if(1===a||a>4){r+="�",n++;continue}for(var u=[i],s=1;s<a&&!(3+ ++n>e||"%"!==tv(t,n));){var c=lv(t,n+1);if(c!=c){n+=3;break}if(c>191||c<128)break;rv(u,c),n+=2,s++}if(u.length!==a){r+="�";continue}var f=pv(u);null===f?r+="�":o=Qp(f)}}r+=o,n++}return r},dv=/[!'()~]|%20/g,gv={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},yv=function(t){return gv[t]},mv=function(t){return nv(Xp(t),dv,yv)},bv=fn(function(t,e){zp(this,{type:Dp,target:Wp(t).entries,index:0,kind:e})},Bp,function(){var t=qp(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,Pn(void 0,!0);var n=e[r];switch(t.kind){case"keys":return Pn(n.key,!1);case"values":return Pn(n.value,!1)}return Pn([n.key,n.value],!1)},!0),wv=function(t){this.entries=[],this.url=null,void 0!==t&&(M(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===tv(t,0)?uv(t,1):t:Wr(t)))};wv.prototype={type:Bp,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,o,i,a,u,s=this.entries,c=Fn(t);if(c)for(r=(e=Dn(t,c)).next;!(n=f(r,e)).done;){if(o=Dn(kt(n.value)),(a=f(i=o.next,o)).done||(u=f(i,o)).done||!f(i,o).done)throw new Yp("Expected sequence with length 2");rv(s,{key:Wr(a.value),value:Wr(u.value)})}else for(var l in t)ut(t,l)&&rv(s,{key:l,value:Wr(t[l])})},parseQuery:function(t){if(t)for(var e,r,n=this.entries,o=av(t,"&"),i=0;i<o.length;)(e=o[i++]).length&&(r=av(e,"="),rv(n,{key:vv(ov(r)),value:vv(ev(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],rv(r,mv(t.key)+"="+mv(t.value));return ev(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var Sv=function(){ko(this,Ev);var t=zp(this,new wv(arguments.length>0?arguments[0]:void 0));u||(this.size=t.entries.length)},Ev=Sv.prototype;if(Mo(Ev,{append:function(t,e){var r=Wp(this);Up(arguments.length,2),rv(r.entries,{key:Wr(t),value:Wr(e)}),u||this.length++,r.updateURL()},delete:function(t){for(var e=Wp(this),r=Up(arguments.length,1),n=e.entries,o=Wr(t),i=r<2?void 0:arguments[1],a=void 0===i?i:Wr(i),s=0;s<n.length;){var c=n[s];if(c.key!==o||void 0!==a&&c.value!==a)s++;else if(iv(n,s,1),void 0!==a)break}u||(this.size=n.length),e.updateURL()},get:function(t){var e=Wp(this).entries;Up(arguments.length,1);for(var r=Wr(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=Wp(this).entries;Up(arguments.length,1);for(var r=Wr(t),n=[],o=0;o<e.length;o++)e[o].key===r&&rv(n,e[o].value);return n},has:function(t){for(var e=Wp(this).entries,r=Up(arguments.length,1),n=Wr(t),o=r<2?void 0:arguments[1],i=void 0===o?o:Wr(o),a=0;a<e.length;){var u=e[a++];if(u.key===n&&(void 0===i||u.value===i))return!0}return!1},set:function(t,e){var r=Wp(this);Up(arguments.length,1);for(var n,o=r.entries,i=!1,a=Wr(t),s=Wr(e),c=0;c<o.length;c++)(n=o[c]).key===a&&(i?iv(o,c--,1):(i=!0,n.value=s));i||rv(o,{key:a,value:s}),u||(this.size=o.length),r.updateURL()},sort:function(){var t=Wp(this);_p(t.entries,function(t,e){return t.key>e.key?1:-1}),t.updateURL()},forEach:function(t){for(var e,r=Wp(this).entries,n=ar(t,arguments.length>1?arguments[1]:void 0),o=0;o<r.length;)n((e=r[o++]).value,e.key,this)},keys:function(){return new bv(this,"keys")},values:function(){return new bv(this,"values")},entries:function(){return new bv(this,"entries")}},{enumerable:!0}),ie(Ev,Fp,Ev.entries,{name:"entries"}),ie(Ev,"toString",function(){return Wp(this).serialize()},{enumerable:!0}),u&&so(Ev,"size",{get:function(){return Wp(this).entries.length},configurable:!0,enumerable:!0}),an(Sv,Bp),Ce({global:!0,constructor:!0,forced:!Mp},{URLSearchParams:Sv}),!Mp&&T(Kp)){var Ov=b(Vp.has),xv=b(Vp.set),Rv=function(t){if(M(t)){var e,r=t.body;if(pr(r)===Bp)return e=t.headers?new Kp(t.headers):new Kp,Ov(e,"content-type")||xv(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),Ve(t,{body:d(0,Wr(r)),headers:d(0,e)})}return t};if(T(Hp)&&Ce({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return Hp(t,arguments.length>1?Rv(arguments[1]):{})}}),T($p)){var Pv=function(t){return ko(this,Gp),new $p(t,arguments.length>1?Rv(arguments[1]):{})};Gp.constructor=Pv,Pv.prototype=Gp,Ce({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:Pv})}}var Av={URLSearchParams:Sv,getState:Wp},jv=URLSearchParams,kv=jv.prototype,Iv=b(kv.append),Tv=b(kv.delete),Mv=b(kv.forEach),Lv=b([].push),Uv=new jv("a=1&a=2&b=3");Uv.delete("a",1),Uv.delete("b",void 0),Uv+""!="a=2"&&ie(kv,"delete",function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return Tv(this,t);var n=[];Mv(this,function(t,e){Lv(n,{key:e,value:t})}),Up(e,1);for(var o,i=Wr(t),a=Wr(r),u=0,s=0,c=!1,f=n.length;u<f;)o=n[u++],c||o.key===i?(c=!0,Tv(this,o.key)):s++;for(;s<f;)(o=n[s++]).key===i&&o.value===a||Iv(this,o.key,o.value)},{enumerable:!0,unsafe:!0});var Nv=URLSearchParams,Cv=Nv.prototype,_v=b(Cv.getAll),Fv=b(Cv.has),Bv=new Nv("a=1");!Bv.has("a",2)&&Bv.has("a",void 0)||ie(Cv,"has",function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return Fv(this,t);var n=_v(this,t);Up(e,1);for(var o=Wr(r),i=0;i<n.length;)if(n[i++]===o)return!0;return!1},{enumerable:!0,unsafe:!0});var Dv=URLSearchParams.prototype,zv=b(Dv.forEach);u&&!("size"in Dv)&&so(Dv,"size",{get:function(){var t=0;return zv(this,function(){t++}),t},configurable:!0,enumerable:!0});var Wv,qv=Object.assign,Hv=Object.defineProperty,$v=b([].concat),Kv=!qv||a(function(){if(u&&1!==qv({b:1},qv(Hv({},"a",{enumerable:!0,get:function(){Hv(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol("assign detection"),n="abcdefghijklmnopqrst";return t[r]=7,n.split("").forEach(function(t){e[t]=t}),7!==qv({},t)[r]||_e(qv({},e)).join("")!==n})?function(t,e){for(var r=it(t),n=arguments.length,o=1,i=xe.f,a=v.f;n>o;)for(var s,c=R(arguments[o++]),l=i?$v(_e(c),i(c)):_e(c),h=l.length,p=0;h>p;)s=l[p++],u&&!f(a,c,s)||(r[s]=c[s]);return r}:qv,Gv=2147483647,Vv=/[^\0-\u007E]/,Yv=/[.\u3002\uFF0E\uFF61]/g,Xv="Overflow: input needs wider integers to process",Jv=RangeError,Qv=b(Yv.exec),Zv=Math.floor,td=String.fromCharCode,ed=b("".charCodeAt),rd=b([].join),nd=b([].push),od=b("".replace),id=b("".split),ad=b("".toLowerCase),ud=function(t){return t+22+75*(t<26)},sd=function(t,e,r){var n=0;for(t=r?Zv(t/700):t>>1,t+=Zv(t/e);t>455;)t=Zv(t/35),n+=36;return Zv(n+36*t/(t+38))},cd=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var o=ed(t,r++);if(o>=55296&&o<=56319&&r<n){var i=ed(t,r++);56320==(64512&i)?nd(e,((1023&o)<<10)+(1023&i)+65536):(nd(e,o),r--)}else nd(e,o)}return e}(t);var r,n,o=t.length,i=128,a=0,u=72;for(r=0;r<t.length;r++)(n=t[r])<128&&nd(e,td(n));var s=e.length,c=s;for(s&&nd(e,"-");c<o;){var f=Gv;for(r=0;r<t.length;r++)(n=t[r])>=i&&n<f&&(f=n);var l=c+1;if(f-i>Zv((Gv-a)/l))throw new Jv(Xv);for(a+=(f-i)*l,i=f,r=0;r<t.length;r++){if((n=t[r])<i&&++a>Gv)throw new Jv(Xv);if(n===i){for(var h=a,p=36;;){var v=p<=u?1:p>=u+26?26:p-u;if(h<v)break;var d=h-v,g=36-v;nd(e,td(ud(v+d%g))),h=Zv(d/g),p+=36}nd(e,td(ud(h))),u=sd(a,l,c===s),a=0,c++}}a++,i++}return rd(e,"")},fd=Gr.codeAt,ld=ne.set,hd=ne.getterFor("URL"),pd=Av.URLSearchParams,vd=Av.getState,dd=i.URL,gd=i.TypeError,yd=i.parseInt,md=Math.floor,bd=Math.pow,wd=b("".charAt),Sd=b(/./.exec),Ed=b([].join),Od=b(1..toString),xd=b([].pop),Rd=b([].push),Pd=b("".replace),Ad=b([].shift),jd=b("".split),kd=b("".slice),Id=b("".toLowerCase),Td=b([].unshift),Md="Invalid scheme",Ld="Invalid host",Ud="Invalid port",Nd=/[a-z]/i,Cd=/[\d+-.a-z]/i,_d=/\d/,Fd=/^0x/i,Bd=/^[0-7]+$/,Dd=/^\d+$/,zd=/^[\da-f]+$/i,Wd=/[\0\t\n\r #%/:<>?@[\\\]^|]/,qd=/[\0\t\n\r #/:<>?@[\\\]^|]/,Hd=/^[\u0000-\u0020]+/,$d=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,Kd=/[\t\n\r]/g,Gd=function(t){var e,r,n,o;if("number"==typeof t){for(e=[],r=0;r<4;r++)Td(e,t%256),t=md(t/256);return Ed(e,".")}if("object"==typeof t){for(e="",n=function(t){for(var e=null,r=1,n=null,o=0,i=0;i<8;i++)0!==t[i]?(o>r&&(e=n,r=o),n=null,o=0):(null===n&&(n=i),++o);return o>r?n:e}(t),r=0;r<8;r++)o&&0===t[r]||(o&&(o=!1),n===r?(e+=r?":":"::",o=!0):(e+=Od(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},Vd={},Yd=Kv({},Vd,{" ":1,'"':1,"<":1,">":1,"`":1}),Xd=Kv({},Yd,{"#":1,"?":1,"{":1,"}":1}),Jd=Kv({},Xd,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),Qd=function(t,e){var r=fd(t,0);return r>32&&r<127&&!ut(e,t)?t:encodeURIComponent(t)},Zd={ftp:21,file:null,http:80,https:443,ws:80,wss:443},tg=function(t,e){var r;return 2===t.length&&Sd(Nd,wd(t,0))&&(":"===(r=wd(t,1))||!e&&"|"===r)},eg=function(t){var e;return t.length>1&&tg(kd(t,0,2))&&(2===t.length||"/"===(e=wd(t,2))||"\\"===e||"?"===e||"#"===e)},rg=function(t){return"."===t||"%2e"===Id(t)},ng={},og={},ig={},ag={},ug={},sg={},cg={},fg={},lg={},hg={},pg={},vg={},dg={},gg={},yg={},mg={},bg={},wg={},Sg={},Eg={},Og={},xg=function(t,e,r){var n,o,i,a=Wr(t);if(e){if(o=this.parse(a))throw new gd(o);this.searchParams=null}else{if(void 0!==r&&(n=new xg(r,!0)),o=this.parse(a,null,n))throw new gd(o);(i=vd(new pd)).bindURL(this),this.searchParams=i}};xg.prototype={type:"URL",parse:function(t,e,r){var n,o,i,a,u,s=this,c=e||ng,f=0,l="",h=!1,p=!1,v=!1;for(t=Wr(t),e||(s.scheme="",s.username="",s.password="",s.host=null,s.port=null,s.path=[],s.query=null,s.fragment=null,s.cannotBeABaseURL=!1,t=Pd(t,Hd,""),t=Pd(t,$d,"$1")),t=Pd(t,Kd,""),n=Wn(t);f<=n.length;){switch(o=n[f],c){case ng:if(!o||!Sd(Nd,o)){if(e)return Md;c=ig;continue}l+=Id(o),c=og;break;case og:if(o&&(Sd(Cd,o)||"+"===o||"-"===o||"."===o))l+=Id(o);else{if(":"!==o){if(e)return Md;l="",c=ig,f=0;continue}if(e&&(s.isSpecial()!==ut(Zd,l)||"file"===l&&(s.includesCredentials()||null!==s.port)||"file"===s.scheme&&!s.host))return;if(s.scheme=l,e)return void(s.isSpecial()&&Zd[s.scheme]===s.port&&(s.port=null));l="","file"===s.scheme?c=gg:s.isSpecial()&&r&&r.scheme===s.scheme?c=ag:s.isSpecial()?c=fg:"/"===n[f+1]?(c=ug,f++):(s.cannotBeABaseURL=!0,Rd(s.path,""),c=Sg)}break;case ig:if(!r||r.cannotBeABaseURL&&"#"!==o)return Md;if(r.cannotBeABaseURL&&"#"===o){s.scheme=r.scheme,s.path=vo(r.path),s.query=r.query,s.fragment="",s.cannotBeABaseURL=!0,c=Og;break}c="file"===r.scheme?gg:sg;continue;case ag:if("/"!==o||"/"!==n[f+1]){c=sg;continue}c=lg,f++;break;case ug:if("/"===o){c=hg;break}c=wg;continue;case sg:if(s.scheme=r.scheme,o===Wv)s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,s.path=vo(r.path),s.query=r.query;else if("/"===o||"\\"===o&&s.isSpecial())c=cg;else if("?"===o)s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,s.path=vo(r.path),s.query="",c=Eg;else{if("#"!==o){s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,s.path=vo(r.path),s.path.length--,c=wg;continue}s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,s.path=vo(r.path),s.query=r.query,s.fragment="",c=Og}break;case cg:if(!s.isSpecial()||"/"!==o&&"\\"!==o){if("/"!==o){s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,c=wg;continue}c=hg}else c=lg;break;case fg:if(c=lg,"/"!==o||"/"!==wd(l,f+1))continue;f++;break;case lg:if("/"!==o&&"\\"!==o){c=hg;continue}break;case hg:if("@"===o){h&&(l="%40"+l),h=!0,i=Wn(l);for(var d=0;d<i.length;d++){var g=i[d];if(":"!==g||v){var y=Qd(g,Jd);v?s.password+=y:s.username+=y}else v=!0}l=""}else if(o===Wv||"/"===o||"?"===o||"#"===o||"\\"===o&&s.isSpecial()){if(h&&""===l)return"Invalid authority";f-=Wn(l).length+1,l="",c=pg}else l+=o;break;case pg:case vg:if(e&&"file"===s.scheme){c=mg;continue}if(":"!==o||p){if(o===Wv||"/"===o||"?"===o||"#"===o||"\\"===o&&s.isSpecial()){if(s.isSpecial()&&""===l)return Ld;if(e&&""===l&&(s.includesCredentials()||null!==s.port))return;if(a=s.parseHost(l))return a;if(l="",c=bg,e)return;continue}"["===o?p=!0:"]"===o&&(p=!1),l+=o}else{if(""===l)return Ld;if(a=s.parseHost(l))return a;if(l="",c=dg,e===vg)return}break;case dg:if(!Sd(_d,o)){if(o===Wv||"/"===o||"?"===o||"#"===o||"\\"===o&&s.isSpecial()||e){if(""!==l){var m=yd(l,10);if(m>65535)return Ud;s.port=s.isSpecial()&&m===Zd[s.scheme]?null:m,l=""}if(e)return;c=bg;continue}return Ud}l+=o;break;case gg:if(s.scheme="file","/"===o||"\\"===o)c=yg;else{if(!r||"file"!==r.scheme){c=wg;continue}switch(o){case Wv:s.host=r.host,s.path=vo(r.path),s.query=r.query;break;case"?":s.host=r.host,s.path=vo(r.path),s.query="",c=Eg;break;case"#":s.host=r.host,s.path=vo(r.path),s.query=r.query,s.fragment="",c=Og;break;default:eg(Ed(vo(n,f),""))||(s.host=r.host,s.path=vo(r.path),s.shortenPath()),c=wg;continue}}break;case yg:if("/"===o||"\\"===o){c=mg;break}r&&"file"===r.scheme&&!eg(Ed(vo(n,f),""))&&(tg(r.path[0],!0)?Rd(s.path,r.path[0]):s.host=r.host),c=wg;continue;case mg:if(o===Wv||"/"===o||"\\"===o||"?"===o||"#"===o){if(!e&&tg(l))c=wg;else if(""===l){if(s.host="",e)return;c=bg}else{if(a=s.parseHost(l))return a;if("localhost"===s.host&&(s.host=""),e)return;l="",c=bg}continue}l+=o;break;case bg:if(s.isSpecial()){if(c=wg,"/"!==o&&"\\"!==o)continue}else if(e||"?"!==o)if(e||"#"!==o){if(o!==Wv&&(c=wg,"/"!==o))continue}else s.fragment="",c=Og;else s.query="",c=Eg;break;case wg:if(o===Wv||"/"===o||"\\"===o&&s.isSpecial()||!e&&("?"===o||"#"===o)){if(".."===(u=Id(u=l))||"%2e."===u||".%2e"===u||"%2e%2e"===u?(s.shortenPath(),"/"===o||"\\"===o&&s.isSpecial()||Rd(s.path,"")):rg(l)?"/"===o||"\\"===o&&s.isSpecial()||Rd(s.path,""):("file"===s.scheme&&!s.path.length&&tg(l)&&(s.host&&(s.host=""),l=wd(l,0)+":"),Rd(s.path,l)),l="","file"===s.scheme&&(o===Wv||"?"===o||"#"===o))for(;s.path.length>1&&""===s.path[0];)Ad(s.path);"?"===o?(s.query="",c=Eg):"#"===o&&(s.fragment="",c=Og)}else l+=Qd(o,Xd);break;case Sg:"?"===o?(s.query="",c=Eg):"#"===o?(s.fragment="",c=Og):o!==Wv&&(s.path[0]+=Qd(o,Vd));break;case Eg:e||"#"!==o?o!==Wv&&("'"===o&&s.isSpecial()?s.query+="%27":s.query+="#"===o?"%23":Qd(o,Vd)):(s.fragment="",c=Og);break;case Og:o!==Wv&&(s.fragment+=Qd(o,Yd))}f++}},parseHost:function(t){var e,r,n;if("["===wd(t,0)){if("]"!==wd(t,t.length-1))return Ld;if(e=function(t){var e,r,n,o,i,a,u,s=[0,0,0,0,0,0,0,0],c=0,f=null,l=0,h=function(){return wd(t,l)};if(":"===h()){if(":"!==wd(t,1))return;l+=2,f=++c}for(;h();){if(8===c)return;if(":"!==h()){for(e=r=0;r<4&&Sd(zd,h());)e=16*e+yd(h(),16),l++,r++;if("."===h()){if(0===r)return;if(l-=r,c>6)return;for(n=0;h();){if(o=null,n>0){if(!("."===h()&&n<4))return;l++}if(!Sd(_d,h()))return;for(;Sd(_d,h());){if(i=yd(h(),10),null===o)o=i;else{if(0===o)return;o=10*o+i}if(o>255)return;l++}s[c]=256*s[c]+o,2!=++n&&4!==n||c++}if(4!==n)return;break}if(":"===h()){if(l++,!h())return}else if(h())return;s[c++]=e}else{if(null!==f)return;l++,f=++c}}if(null!==f)for(a=c-f,c=7;0!==c&&a>0;)u=s[c],s[c--]=s[f+a-1],s[f+--a]=u;else if(8!==c)return;return s}(kd(t,1,-1)),!e)return Ld;this.host=e}else if(this.isSpecial()){if(t=function(t){var e,r,n=[],o=id(od(ad(t),Yv,"."),".");for(e=0;e<o.length;e++)nd(n,Qv(Vv,r=o[e])?"xn--"+cd(r):r);return rd(n,".")}(t),Sd(Wd,t))return Ld;if(e=function(t){var e,r,n,o,i,a,u,s=jd(t,".");if(s.length&&""===s[s.length-1]&&s.length--,(e=s.length)>4)return t;for(r=[],n=0;n<e;n++){if(""===(o=s[n]))return t;if(i=10,o.length>1&&"0"===wd(o,0)&&(i=Sd(Fd,o)?16:8,o=kd(o,8===i?1:2)),""===o)a=0;else{if(!Sd(10===i?Dd:8===i?Bd:zd,o))return t;a=yd(o,i)}Rd(r,a)}for(n=0;n<e;n++)if(a=r[n],n===e-1){if(a>=bd(256,5-e))return null}else if(a>255)return null;for(u=xd(r),n=0;n<r.length;n++)u+=r[n]*bd(256,3-n);return u}(t),null===e)return Ld;this.host=e}else{if(Sd(qd,t))return Ld;for(e="",r=Wn(t),n=0;n<r.length;n++)e+=Qd(r[n],Vd);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return ut(Zd,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"===this.scheme&&1===e&&tg(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,o=t.host,i=t.port,a=t.path,u=t.query,s=t.fragment,c=e+":";return null!==o?(c+="//",t.includesCredentials()&&(c+=r+(n?":"+n:"")+"@"),c+=Gd(o),null!==i&&(c+=":"+i)):"file"===e&&(c+="//"),c+=t.cannotBeABaseURL?a[0]:a.length?"/"+Ed(a,"/"):"",null!==u&&(c+="?"+u),null!==s&&(c+="#"+s),c},setHref:function(t){var e=this.parse(t);if(e)throw new gd(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"===t)try{return new Rg(t.path[0]).origin}catch(t){return"null"}return"file"!==t&&this.isSpecial()?t+"://"+Gd(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(Wr(t)+":",ng)},getUsername:function(){return this.username},setUsername:function(t){var e=Wn(Wr(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=Qd(e[r],Jd)}},getPassword:function(){return this.password},setPassword:function(t){var e=Wn(Wr(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=Qd(e[r],Jd)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?Gd(t):Gd(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,pg)},getHostname:function(){var t=this.host;return null===t?"":Gd(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,vg)},getPort:function(){var t=this.port;return null===t?"":Wr(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""===(t=Wr(t))?this.port=null:this.parse(t,dg))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+Ed(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,bg))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""===(t=Wr(t))?this.query=null:("?"===wd(t,0)&&(t=kd(t,1)),this.query="",this.parse(t,Eg)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!==(t=Wr(t))?("#"===wd(t,0)&&(t=kd(t,1)),this.fragment="",this.parse(t,Og)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var Rg=function(t){var e=ko(this,Pg),r=Up(arguments.length,1)>1?arguments[1]:void 0,n=ld(e,new xg(t,!1,r));u||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},Pg=Rg.prototype,Ag=function(t,e){return{get:function(){return hd(this)[t]()},set:e&&function(t){return hd(this)[e](t)},configurable:!0,enumerable:!0}};if(u&&(so(Pg,"href",Ag("serialize","setHref")),so(Pg,"origin",Ag("getOrigin")),so(Pg,"protocol",Ag("getProtocol","setProtocol")),so(Pg,"username",Ag("getUsername","setUsername")),so(Pg,"password",Ag("getPassword","setPassword")),so(Pg,"host",Ag("getHost","setHost")),so(Pg,"hostname",Ag("getHostname","setHostname")),so(Pg,"port",Ag("getPort","setPort")),so(Pg,"pathname",Ag("getPathname","setPathname")),so(Pg,"search",Ag("getSearch","setSearch")),so(Pg,"searchParams",Ag("getSearchParams")),so(Pg,"hash",Ag("getHash","setHash"))),ie(Pg,"toJSON",function(){return hd(this).serialize()},{enumerable:!0}),ie(Pg,"toString",function(){return hd(this).serialize()},{enumerable:!0}),dd){var jg=dd.createObjectURL,kg=dd.revokeObjectURL;jg&&ie(Rg,"createObjectURL",ar(jg,dd)),kg&&ie(Rg,"revokeObjectURL",ar(kg,dd))}an(Rg,"URL"),Ce({global:!0,constructor:!0,forced:!Mp,sham:!u},{URL:Rg});var Ig=L("URL"),Tg=Mp&&a(function(){Ig.canParse()}),Mg=a(function(){return 1!==Ig.canParse.length});Ce({target:"URL",stat:!0,forced:!Tg||Mg},{canParse:function(t){var e=Up(arguments.length,1),r=Wr(t),n=e<2||void 0===arguments[1]?void 0:Wr(arguments[1]);try{return!!new Ig(r,n)}catch(t){return!1}}});var Lg=L("URL");Ce({target:"URL",stat:!0,forced:!Mp},{parse:function(t){var e=Up(arguments.length,1),r=Wr(t),n=e<2||void 0===arguments[1]?void 0:Wr(arguments[1]);try{return new Lg(r,n)}catch(t){return null}}}),Ce({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return f(URL.prototype.toString,this)}});var Ug=WeakMap.prototype,Ng={WeakMap:WeakMap,set:b(Ug.set),get:b(Ug.get),has:b(Ug.has),remove:b(Ug.delete)},Cg=Ng.has,_g=function(t){return Cg(t),t},Fg=Ng.get,Bg=Ng.has,Dg=Ng.set;Ce({target:"WeakMap",proto:!0,real:!0,forced:!0},{emplace:function(t,e){var r,n,o=_g(this);return Bg(o,t)?(r=Fg(o,t),"update"in e&&(r=e.update(r,t,o),Dg(o,t,r)),r):(n=e.insert(t,o),Dg(o,t,n),n)}}),Ce({target:"WeakMap",stat:!0,forced:!0},{from:ei(Ng.WeakMap,Ng.set,!0)}),Ce({target:"WeakMap",stat:!0,forced:!0},{of:ri(Ng.WeakMap,Ng.set,!0)});var zg=Ng.remove;Ce({target:"WeakMap",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var t,e=_g(this),r=!0,n=0,o=arguments.length;n<o;n++)t=zg(e,arguments[n]),r=r&&t;return!!r}}),Ce({target:"WeakMap",proto:!0,real:!0,forced:!0},{upsert:Ii}),To("WeakSet",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},eu);var Wg=WeakSet.prototype,qg={WeakSet:WeakSet,add:b(Wg.add),has:b(Wg.has),remove:b(Wg.delete)},Hg=qg.has,$g=function(t){return Hg(t),t},Kg=qg.add;Ce({target:"WeakSet",proto:!0,real:!0,forced:!0},{addAll:function(){for(var t=$g(this),e=0,r=arguments.length;e<r;e++)Kg(t,arguments[e]);return t}});var Gg=qg.remove;Ce({target:"WeakSet",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var t,e=$g(this),r=!0,n=0,o=arguments.length;n<o;n++)t=Gg(e,arguments[n]),r=r&&t;return!!r}}),Ce({target:"WeakSet",stat:!0,forced:!0},{from:ei(qg.WeakSet,qg.add,!1)}),Ce({target:"WeakSet",stat:!0,forced:!0},{of:ri(qg.WeakSet,qg.add,!1)});var Vg=Error,Yg=b("".replace),Xg=String(new Vg("zxcasd").stack),Jg=/\n\s*at [^:]*:[^\n]*/,Qg=Jg.test(Xg),Zg=!a(function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",d(1,7)),7!==t.stack)}),ty=Error.captureStackTrace,ey=dt("toStringTag"),ry=Error,ny=[].push,oy=function(t,e){var r,n,o,i,a,u=U(iy,this);dn?r=dn(new ry,u?Qr(this):iy):(r=u?this:Ve(iy),_t(r,ey,"Error")),void 0!==e&&_t(r,"message",function(t,e){return void 0===t?arguments.length<2?"":e:Wr(t)}(e)),i=r,a=r.stack,Zg&&(ty?ty(i,oy):_t(i,"stack",function(t,e){if(Qg&&"string"==typeof t&&!Vg.prepareStackTrace)for(;e--;)t=Yg(t,Jg,"");return t}(a,1))),arguments.length>2&&(n=r,M(o=arguments[2])&&"cause"in o&&_t(n,"cause",o.cause));var s=[];return Ao(t,ny,{that:s}),_t(r,"errors",s),r};dn?dn(oy,ry):Ae(oy,ry,{name:!0});var iy=oy.prototype=Ve(ry.prototype,{constructor:d(1,oy),message:d(1,""),name:d(1,"AggregateError")});Ce({global:!0,constructor:!0,arity:2},{AggregateError:oy});var ay,uy,sy,cy,fy=function(t){return _.slice(0,t.length)===t},ly=fy("Bun/")?"BUN":fy("Cloudflare-Workers")?"CLOUDFLARE":fy("Deno/")?"DENO":fy("Node.js/")?"NODE":i.Bun&&"string"==typeof Bun.version?"BUN":i.Deno&&"object"==typeof Deno.version?"DENO":"process"===E(i.process)?"NODE":i.window&&i.document?"BROWSER":"REST",hy="NODE"===ly,py=/(?:ipad|iphone|ipod).*applewebkit/i.test(_),vy=i.setImmediate,dy=i.clearImmediate,gy=i.process,yy=i.Dispatch,my=i.Function,by=i.MessageChannel,wy=i.String,Sy=0,Ey={},Oy="onreadystatechange";a(function(){ay=i.location});var xy=function(t){if(ut(Ey,t)){var e=Ey[t];delete Ey[t],e()}},Ry=function(t){return function(){xy(t)}},Py=function(t){xy(t.data)},Ay=function(t){i.postMessage(wy(t),ay.protocol+"//"+ay.host)};vy&&dy||(vy=function(t){Up(arguments.length,1);var e=T(t)?t:my(t),r=vo(arguments,1);return Ey[++Sy]=function(){Ra(e,void 0,r)},uy(Sy),Sy},dy=function(t){delete Ey[t]},hy?uy=function(t){gy.nextTick(Ry(t))}:yy&&yy.now?uy=function(t){yy.now(Ry(t))}:by&&!py?(cy=(sy=new by).port2,sy.port1.onmessage=Py,uy=ar(cy.postMessage,cy)):i.addEventListener&&T(i.postMessage)&&!i.importScripts&&ay&&"file:"!==ay.protocol&&!a(Ay)?(uy=Ay,i.addEventListener("message",Py,!1)):uy=Oy in Et("script")?function(t){De.appendChild(Et("script"))[Oy]=function(){De.removeChild(this),xy(t)}}:function(t){setTimeout(Ry(t),0)});var jy={set:vy,clear:dy},ky=function(){this.head=null,this.tail=null};ky.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var Iy,Ty,My,Ly,Uy,Ny=ky,Cy=/ipad|iphone|ipod/i.test(_)&&"undefined"!=typeof Pebble,_y=/web0s(?!.*chrome)/i.test(_),Fy=jy.set,By=i.MutationObserver||i.WebKitMutationObserver,Dy=i.document,zy=i.process,Wy=i.Promise,qy=Ip("queueMicrotask");if(!qy){var Hy=new Ny,$y=function(){var t,e;for(hy&&(t=zy.domain)&&t.exit();e=Hy.get();)try{e()}catch(t){throw Hy.head&&Iy(),t}t&&t.enter()};py||hy||_y||!By||!Dy?!Cy&&Wy&&Wy.resolve?((Ly=Wy.resolve(void 0)).constructor=Wy,Uy=ar(Ly.then,Ly),Iy=function(){Uy($y)}):hy?Iy=function(){zy.nextTick($y)}:(Fy=ar(Fy,i),Iy=function(){Fy($y)}):(Ty=!0,My=Dy.createTextNode(""),new By($y).observe(My,{characterData:!0}),Iy=function(){My.data=Ty=!Ty}),qy=function(t){Hy.head||Iy(),Hy.add(t)}}var Ky,Gy,Vy,Yy=qy,Xy=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},Jy=i.Promise,Qy=dt("species"),Zy=!1,tm=T(i.PromiseRejectionEvent),em=Ue("Promise",function(){var t=Kt(Jy),e=t!==String(Jy);if(!e&&66===W)return!0;if(!W||W<51||!/native code/.test(t)){var r=new Jy(function(t){t(1)}),n=function(t){t(function(){},function(){})};if((r.constructor={})[Qy]=n,!(Zy=r.then(function(){})instanceof n))return!0}return!(e||"BROWSER"!==ly&&"DENO"!==ly||tm)}),rm={CONSTRUCTOR:em,REJECTION_EVENT:tm,SUBCLASSING:Zy},nm=TypeError,om=function(t){var e,r;this.promise=new t(function(t,n){if(void 0!==e||void 0!==r)throw new nm("Bad Promise constructor");e=t,r=n}),this.resolve=J(e),this.reject=J(r)},im={f:function(t){return new om(t)}},am=jy.set,um="Promise",sm=rm.CONSTRUCTOR,cm=rm.REJECTION_EVENT,fm=rm.SUBCLASSING,lm=ne.getterFor(um),hm=ne.set,pm=Jy&&Jy.prototype,vm=Jy,dm=pm,gm=i.TypeError,ym=i.document,mm=i.process,bm=im.f,wm=bm,Sm=!!(ym&&ym.createEvent&&i.dispatchEvent),Em="unhandledrejection",Om=function(t){var e;return!(!M(t)||!T(e=t.then))&&e},xm=function(t,e){var r,n,o,i=e.value,a=1===e.state,u=a?t.ok:t.fail,s=t.resolve,c=t.reject,l=t.domain;try{u?(a||(2===e.rejection&&km(e),e.rejection=1),!0===u?r=i:(l&&l.enter(),r=u(i),l&&(l.exit(),o=!0)),r===t.promise?c(new gm("Promise-chain cycle")):(n=Om(r))?f(n,r,s,c):s(r)):c(i)}catch(t){l&&!o&&l.exit(),c(t)}},Rm=function(t,e){t.notified||(t.notified=!0,Yy(function(){for(var r,n=t.reactions;r=n.get();)xm(r,t);t.notified=!1,e&&!t.rejection&&Am(t)}))},Pm=function(t,e,r){var n,o;Sm?((n=ym.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),i.dispatchEvent(n)):n={promise:e,reason:r},!cm&&(o=i["on"+t])?o(n):t===Em&&function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}}("Unhandled promise rejection",r)},Am=function(t){f(am,i,function(){var e,r=t.facade,n=t.value;if(jm(t)&&(e=Xy(function(){hy?mm.emit("unhandledRejection",n,r):Pm(Em,r,n)}),t.rejection=hy||jm(t)?2:1,e.error))throw e.value})},jm=function(t){return 1!==t.rejection&&!t.parent},km=function(t){f(am,i,function(){var e=t.facade;hy?mm.emit("rejectionHandled",e):Pm("rejectionhandled",e,t.value)})},Im=function(t,e,r){return function(n){t(e,n,r)}},Tm=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,Rm(t,!0))},Mm=function(t,e,r){if(!t.done){t.done=!0,r&&(t=r);try{if(t.facade===e)throw new gm("Promise can't be resolved itself");var n=Om(e);n?Yy(function(){var r={done:!1};try{f(n,e,Im(Mm,r,t),Im(Tm,r,t))}catch(e){Tm(r,e,t)}}):(t.value=e,t.state=1,Rm(t,!1))}catch(e){Tm({done:!1},e,t)}}};if(sm&&(vm=function(t){ko(this,dm),J(t),f(Ky,this);var e=lm(this);try{t(Im(Mm,e),Im(Tm,e))}catch(t){Tm(e,t)}},(Ky=function(t){hm(this,{type:um,done:!1,notified:!1,parent:!1,reactions:new Ny,rejection:!1,state:0,value:null})}).prototype=ie(dm=vm.prototype,"then",function(t,e){var r=lm(this),n=bm(Cc(this,vm));return r.parent=!0,n.ok=!T(t)||t,n.fail=T(e)&&e,n.domain=hy?mm.domain:void 0,0===r.state?r.reactions.add(n):Yy(function(){xm(n,r)}),n.promise}),Gy=function(){var t=new Ky,e=lm(t);this.promise=t,this.resolve=Im(Mm,e),this.reject=Im(Tm,e)},im.f=bm=function(t){return t===vm||void 0===t?new Gy(t):wm(t)},T(Jy)&&pm!==Object.prototype)){Vy=pm.then,fm||ie(pm,"then",function(t,e){var r=this;return new vm(function(t,e){f(Vy,r,t,e)}).then(t,e)},{unsafe:!0});try{delete pm.constructor}catch(t){}dn&&dn(pm,dm)}Ce({global:!0,constructor:!0,wrap:!0,forced:sm},{Promise:vm}),an(vm,um,!1),Uo(um);var Lm=rm.CONSTRUCTOR||!Gn(function(t){Jy.all(t).then(void 0,function(){})});Ce({target:"Promise",stat:!0,forced:Lm},{all:function(t){var e=this,r=im.f(e),n=r.resolve,o=r.reject,i=Xy(function(){var r=J(e.resolve),i=[],a=0,u=1;Ao(t,function(t){var s=a++,c=!1;u++,f(r,e,t).then(function(t){c||(c=!0,i[s]=t,--u||n(i))},o)}),--u||n(i)});return i.error&&o(i.value),r.promise}});var Um=Jy&&Jy.prototype;if(Ce({target:"Promise",proto:!0,forced:rm.CONSTRUCTOR,real:!0},{catch:function(t){return this.then(void 0,t)}}),T(Jy)){var Nm=L("Promise").prototype.catch;Um.catch!==Nm&&ie(Um,"catch",Nm,{unsafe:!0})}Ce({target:"Promise",stat:!0,forced:Lm},{race:function(t){var e=this,r=im.f(e),n=r.reject,o=Xy(function(){var o=J(e.resolve);Ao(t,function(t){f(o,e,t).then(r.resolve,n)})});return o.error&&n(o.value),r.promise}}),Ce({target:"Promise",stat:!0,forced:rm.CONSTRUCTOR},{reject:function(t){var e=im.f(this);return(0,e.reject)(t),e.promise}});var Cm=function(t,e){if(kt(t),M(e)&&e.constructor===t)return e;var r=im.f(t);return(0,r.resolve)(e),r.promise};Ce({target:"Promise",stat:!0,forced:rm.CONSTRUCTOR},{resolve:function(t){return Cm(this,t)}}),Ce({target:"Promise",stat:!0,forced:Lm},{allSettled:function(t){var e=this,r=im.f(e),n=r.resolve,o=r.reject,i=Xy(function(){var r=J(e.resolve),o=[],i=0,a=1;Ao(t,function(t){var u=i++,s=!1;a++,f(r,e,t).then(function(t){s||(s=!0,o[u]={status:"fulfilled",value:t},--a||n(o))},function(t){s||(s=!0,o[u]={status:"rejected",reason:t},--a||n(o))})}),--a||n(o)});return i.error&&o(i.value),r.promise}});var _m="No one promise resolved";Ce({target:"Promise",stat:!0,forced:Lm},{any:function(t){var e=this,r=L("AggregateError"),n=im.f(e),o=n.resolve,i=n.reject,a=Xy(function(){var n=J(e.resolve),a=[],u=0,s=1,c=!1;Ao(t,function(t){var l=u++,h=!1;s++,f(n,e,t).then(function(t){h||c||(c=!0,o(t))},function(t){h||c||(h=!0,a[l]=t,--s||i(new r(a,_m)))})}),--s||i(new r(a,_m))});return a.error&&i(a.value),n.promise}}),Ce({target:"Promise",stat:!0},{withResolvers:function(){var t=im.f(this);return{promise:t.promise,resolve:t.resolve,reject:t.reject}}});var Fm=Jy&&Jy.prototype,Bm=!!Jy&&a(function(){Fm.finally.call({then:function(){}},function(){})});if(Ce({target:"Promise",proto:!0,real:!0,forced:Bm},{finally:function(t){var e=Cc(this,L("Promise")),r=T(t);return this.then(r?function(r){return Cm(e,t()).then(function(){return r})}:t,r?function(r){return Cm(e,t()).then(function(){throw r})}:t)}}),T(Jy)){var Dm=L("Promise").prototype.finally;Fm.finally!==Dm&&ie(Fm,"finally",Dm,{unsafe:!0})}var zm=i.Promise,Wm=!1,qm=!zm||!zm.try||Xy(function(){zm.try(function(t){Wm=8===t},8)}).error||!Wm;Ce({target:"Promise",stat:!0,forced:qm},{try:function(t){var e=arguments.length>1?vo(arguments,1):[],r=im.f(this),n=Xy(function(){return Ra(J(t),void 0,e)});return(n.error?r.reject:r.resolve)(n.value),r.promise}}),Ze("Promise","finally");var Hm="URLSearchParams"in self,$m="Symbol"in self&&"iterator"in Symbol,Km="FileReader"in self&&"Blob"in self&&function(){try{return new Blob,!0}catch(t){return!1}}(),Gm="FormData"in self,Vm="ArrayBuffer"in self;if(Vm)var Ym=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],Xm=ArrayBuffer.isView||function(t){return t&&Ym.indexOf(Object.prototype.toString.call(t))>-1};function Jm(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~]/i.test(t))throw new TypeError("Invalid character in header field name");return t.toLowerCase()}function Qm(t){return"string"!=typeof t&&(t=String(t)),t}function Zm(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return $m&&(e[Symbol.iterator]=function(){return e}),e}function tb(t){this.map={},t instanceof tb?t.forEach(function(t,e){this.append(e,t)},this):Array.isArray(t)?t.forEach(function(t){this.append(t[0],t[1])},this):t&&Object.getOwnPropertyNames(t).forEach(function(e){this.append(e,t[e])},this)}function eb(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function rb(t){return new Promise(function(e,r){t.onload=function(){e(t.result)},t.onerror=function(){r(t.error)}})}function nb(t){var e=new FileReader,r=rb(e);return e.readAsArrayBuffer(t),r}function ob(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function ib(){return this.bodyUsed=!1,this._initBody=function(t){var e;this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:Km&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:Gm&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:Hm&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():Vm&&Km&&(e=t)&&DataView.prototype.isPrototypeOf(e)?(this._bodyArrayBuffer=ob(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):Vm&&(ArrayBuffer.prototype.isPrototypeOf(t)||Xm(t))?this._bodyArrayBuffer=ob(t):this._bodyText=t=Object.prototype.toString.call(t):this._bodyText="",this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):Hm&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},Km&&(this.blob=function(){var t=eb(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?eb(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(nb)}),this.text=function(){var t=eb(this);if(t)return t;if(this._bodyBlob)return function(t){var e=new FileReader,r=rb(e);return e.readAsText(t),r}(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),r=new Array(e.length),n=0;n<e.length;n++)r[n]=String.fromCharCode(e[n]);return r.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},Gm&&(this.formData=function(){return this.text().then(sb)}),this.json=function(){return this.text().then(JSON.parse)},this}tb.prototype.append=function(t,e){t=Jm(t),e=Qm(e);var r=this.map[t];this.map[t]=r?r+", "+e:e},tb.prototype.delete=function(t){delete this.map[Jm(t)]},tb.prototype.get=function(t){return t=Jm(t),this.has(t)?this.map[t]:null},tb.prototype.has=function(t){return this.map.hasOwnProperty(Jm(t))},tb.prototype.set=function(t,e){this.map[Jm(t)]=Qm(e)},tb.prototype.forEach=function(t,e){for(var r in this.map)this.map.hasOwnProperty(r)&&t.call(e,this.map[r],r,this)},tb.prototype.keys=function(){var t=[];return this.forEach(function(e,r){t.push(r)}),Zm(t)},tb.prototype.values=function(){var t=[];return this.forEach(function(e){t.push(e)}),Zm(t)},tb.prototype.entries=function(){var t=[];return this.forEach(function(e,r){t.push([r,e])}),Zm(t)},$m&&(tb.prototype[Symbol.iterator]=tb.prototype.entries);var ab=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function ub(t,e){var r=(e=e||{}).body;if(t instanceof ub){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new tb(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,r||null==t._bodyInit||(r=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=e.credentials||this.credentials||"same-origin",!e.headers&&this.headers||(this.headers=new tb(e.headers)),this.method=function(t){var e=t.toUpperCase();return ab.indexOf(e)>-1?e:t}(e.method||this.method||"GET"),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&r)throw new TypeError("Body not allowed for GET or HEAD requests");this._initBody(r)}function sb(t){var e=new FormData;return t.trim().split("&").forEach(function(t){if(t){var r=t.split("="),n=r.shift().replace(/\+/g," "),o=r.join("=").replace(/\+/g," ");e.append(decodeURIComponent(n),decodeURIComponent(o))}}),e}function cb(t,e){e||(e={}),this.type="default",this.status=void 0===e.status?200:e.status,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in e?e.statusText:"OK",this.headers=new tb(e.headers),this.url=e.url||"",this._initBody(t)}ub.prototype.clone=function(){return new ub(this,{body:this._bodyInit})},ib.call(ub.prototype),ib.call(cb.prototype),cb.prototype.clone=function(){return new cb(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new tb(this.headers),url:this.url})},cb.error=function(){var t=new cb(null,{status:0,statusText:""});return t.type="error",t};var fb=[301,302,303,307,308];cb.redirect=function(t,e){if(-1===fb.indexOf(e))throw new RangeError("Invalid status code");return new cb(null,{status:e,headers:{location:t}})};var lb=self.DOMException;try{new lb}catch(t){(lb=function(t,e){this.message=t,this.name=e;var r=Error(t);this.stack=r.stack}).prototype=Object.create(Error.prototype),lb.prototype.constructor=lb}function hb(t,e){return new Promise(function(r,n){var o=new ub(t,e);if(o.signal&&o.signal.aborted)return n(new lb("Aborted","AbortError"));var i=new XMLHttpRequest;function a(){i.abort()}i.onload=function(){var t,e,n={status:i.status,statusText:i.statusText,headers:(t=i.getAllResponseHeaders()||"",e=new tb,t.replace(/\r?\n[\t ]+/g," ").split(/\r?\n/).forEach(function(t){var r=t.split(":"),n=r.shift().trim();if(n){var o=r.join(":").trim();e.append(n,o)}}),e)};n.url="responseURL"in i?i.responseURL:n.headers.get("X-Request-URL"),r(new cb("response"in i?i.response:i.responseText,n))},i.onerror=function(){n(new TypeError("Network request failed"))},i.ontimeout=function(){n(new TypeError("Network request failed"))},i.onabort=function(){n(new lb("Aborted","AbortError"))},i.open(o.method,o.url,!0),"include"===o.credentials?i.withCredentials=!0:"omit"===o.credentials&&(i.withCredentials=!1),"responseType"in i&&Km&&(i.responseType="blob"),o.headers.forEach(function(t,e){i.setRequestHeader(e,t)}),o.signal&&(o.signal.addEventListener("abort",a),i.onreadystatechange=function(){4===i.readyState&&o.signal.removeEventListener("abort",a)}),i.send(void 0===o._bodyInit?null:o._bodyInit)})}hb.polyfill=!0,self.fetch||(self.fetch=hb,self.Headers=tb,self.Request=ub,self.Response=cb);var pb=Object.getOwnPropertySymbols,vb=Object.prototype.hasOwnProperty,db=Object.prototype.propertyIsEnumerable,gb=function(){try{if(!Object.assign)return!1;var t=new String("abc");if(t[5]="de","5"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},r=0;r<10;r++)e["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(e).map(function(t){return e[t]}).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach(function(t){n[t]=t}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(t){return!1}}()?Object.assign:function(t,e){for(var r,n,o=function(t){if(null==t)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(t)}(t),i=1;i<arguments.length;i++){for(var a in r=Object(arguments[i]))vb.call(r,a)&&(o[a]=r[a]);if(pb){n=pb(r);for(var u=0;u<n.length;u++)db.call(r,n[u])&&(o[n[u]]=r[n[u]])}}return o};Object.assign=gb}(); diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js.map deleted file mode 100644 index fc2cc96..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_build_polyfills_polyfill-nomodule.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["turbopack:///node_modules/next/dist/build/polyfills/polyfill-nomodule.js"],"sourcesContent":["!function(){var t=\"undefined\"!=typeof globalThis?globalThis:\"undefined\"!=typeof window?window:\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:{};function e(t){var e={exports:{}};return t(e,e.exports),e.exports}var r,n,o=function(t){return t&&t.Math===Math&&t},i=o(\"object\"==typeof globalThis&&globalThis)||o(\"object\"==typeof window&&window)||o(\"object\"==typeof self&&self)||o(\"object\"==typeof t&&t)||o(\"object\"==typeof t&&t)||function(){return this}()||Function(\"return this\")(),a=function(t){try{return!!t()}catch(t){return!0}},u=!a(function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}),s=!a(function(){var t=function(){}.bind();return\"function\"!=typeof t||t.hasOwnProperty(\"prototype\")}),c=Function.prototype.call,f=s?c.bind(c):function(){return c.apply(c,arguments)},l={}.propertyIsEnumerable,h=Object.getOwnPropertyDescriptor,p=h&&!l.call({1:2},1)?function(t){var e=h(this,t);return!!e&&e.enumerable}:l,v={f:p},d=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},g=Function.prototype,y=g.call,m=s&&g.bind.bind(y,y),b=s?m:function(t){return function(){return y.apply(t,arguments)}},w=b({}.toString),S=b(\"\".slice),E=function(t){return S(w(t),8,-1)},O=Object,x=b(\"\".split),R=a(function(){return!O(\"z\").propertyIsEnumerable(0)})?function(t){return\"String\"===E(t)?x(t,\"\"):O(t)}:O,P=function(t){return null==t},A=TypeError,j=function(t){if(P(t))throw new A(\"Can't call method on \"+t);return t},k=function(t){return R(j(t))},I=\"object\"==typeof document&&document.all,T=void 0===I&&void 0!==I?function(t){return\"function\"==typeof t||t===I}:function(t){return\"function\"==typeof t},M=function(t){return\"object\"==typeof t?null!==t:T(t)},L=function(t,e){return arguments.length<2?T(r=i[t])?r:void 0:i[t]&&i[t][e];var r},U=b({}.isPrototypeOf),N=i.navigator,C=N&&N.userAgent,_=C?String(C):\"\",F=i.process,B=i.Deno,D=F&&F.versions||B&&B.version,z=D&&D.v8;z&&(n=(r=z.split(\".\"))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!n&&_&&(!(r=_.match(/Edge\\/(\\d+)/))||r[1]>=74)&&(r=_.match(/Chrome\\/(\\d+)/))&&(n=+r[1]);var W=n,q=i.String,H=!!Object.getOwnPropertySymbols&&!a(function(){var t=Symbol(\"symbol detection\");return!q(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&W&&W<41}),$=H&&!Symbol.sham&&\"symbol\"==typeof Symbol.iterator,K=Object,G=$?function(t){return\"symbol\"==typeof t}:function(t){var e=L(\"Symbol\");return T(e)&&U(e.prototype,K(t))},V=String,Y=function(t){try{return V(t)}catch(t){return\"Object\"}},X=TypeError,J=function(t){if(T(t))return t;throw new X(Y(t)+\" is not a function\")},Q=function(t,e){var r=t[e];return P(r)?void 0:J(r)},Z=TypeError,tt=Object.defineProperty,et=function(t,e){try{tt(i,t,{value:e,configurable:!0,writable:!0})}catch(r){i[t]=e}return e},rt=e(function(t){var e=\"__core-js_shared__\",r=t.exports=i[e]||et(e,{});(r.versions||(r.versions=[])).push({version:\"3.38.1\",mode:\"global\",copyright:\"© 2014-2024 Denis Pushkarev (zloirock.ru)\",license:\"https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE\",source:\"https://github.com/zloirock/core-js\"})}),nt=function(t,e){return rt[t]||(rt[t]=e||{})},ot=Object,it=function(t){return ot(j(t))},at=b({}.hasOwnProperty),ut=Object.hasOwn||function(t,e){return at(it(t),e)},st=0,ct=Math.random(),ft=b(1..toString),lt=function(t){return\"Symbol(\"+(void 0===t?\"\":t)+\")_\"+ft(++st+ct,36)},ht=i.Symbol,pt=nt(\"wks\"),vt=$?ht.for||ht:ht&&ht.withoutSetter||lt,dt=function(t){return ut(pt,t)||(pt[t]=H&&ut(ht,t)?ht[t]:vt(\"Symbol.\"+t)),pt[t]},gt=TypeError,yt=dt(\"toPrimitive\"),mt=function(t,e){if(!M(t)||G(t))return t;var r,n=Q(t,yt);if(n){if(void 0===e&&(e=\"default\"),r=f(n,t,e),!M(r)||G(r))return r;throw new gt(\"Can't convert object to primitive value\")}return void 0===e&&(e=\"number\"),function(t,e){var r,n;if(\"string\"===e&&T(r=t.toString)&&!M(n=f(r,t)))return n;if(T(r=t.valueOf)&&!M(n=f(r,t)))return n;if(\"string\"!==e&&T(r=t.toString)&&!M(n=f(r,t)))return n;throw new Z(\"Can't convert object to primitive value\")}(t,e)},bt=function(t){var e=mt(t,\"string\");return G(e)?e:e+\"\"},wt=i.document,St=M(wt)&&M(wt.createElement),Et=function(t){return St?wt.createElement(t):{}},Ot=!u&&!a(function(){return 7!==Object.defineProperty(Et(\"div\"),\"a\",{get:function(){return 7}}).a}),xt=Object.getOwnPropertyDescriptor,Rt={f:u?xt:function(t,e){if(t=k(t),e=bt(e),Ot)try{return xt(t,e)}catch(t){}if(ut(t,e))return d(!f(v.f,t,e),t[e])}},Pt=u&&a(function(){return 42!==Object.defineProperty(function(){},\"prototype\",{value:42,writable:!1}).prototype}),At=String,jt=TypeError,kt=function(t){if(M(t))return t;throw new jt(At(t)+\" is not an object\")},It=TypeError,Tt=Object.defineProperty,Mt=Object.getOwnPropertyDescriptor,Lt=\"enumerable\",Ut=\"configurable\",Nt=\"writable\",Ct={f:u?Pt?function(t,e,r){if(kt(t),e=bt(e),kt(r),\"function\"==typeof t&&\"prototype\"===e&&\"value\"in r&&Nt in r&&!r[Nt]){var n=Mt(t,e);n&&n[Nt]&&(t[e]=r.value,r={configurable:Ut in r?r[Ut]:n[Ut],enumerable:Lt in r?r[Lt]:n[Lt],writable:!1})}return Tt(t,e,r)}:Tt:function(t,e,r){if(kt(t),e=bt(e),kt(r),Ot)try{return Tt(t,e,r)}catch(t){}if(\"get\"in r||\"set\"in r)throw new It(\"Accessors not supported\");return\"value\"in r&&(t[e]=r.value),t}},_t=u?function(t,e,r){return Ct.f(t,e,d(1,r))}:function(t,e,r){return t[e]=r,t},Ft=Function.prototype,Bt=u&&Object.getOwnPropertyDescriptor,Dt=ut(Ft,\"name\"),zt={EXISTS:Dt,PROPER:Dt&&\"something\"===function(){}.name,CONFIGURABLE:Dt&&(!u||u&&Bt(Ft,\"name\").configurable)},Wt=b(Function.toString);T(rt.inspectSource)||(rt.inspectSource=function(t){return Wt(t)});var qt,Ht,$t,Kt=rt.inspectSource,Gt=i.WeakMap,Vt=T(Gt)&&/native code/.test(String(Gt)),Yt=nt(\"keys\"),Xt=function(t){return Yt[t]||(Yt[t]=lt(t))},Jt={},Qt=\"Object already initialized\",Zt=i.TypeError;if(Vt||rt.state){var te=rt.state||(rt.state=new(0,i.WeakMap));te.get=te.get,te.has=te.has,te.set=te.set,qt=function(t,e){if(te.has(t))throw new Zt(Qt);return e.facade=t,te.set(t,e),e},Ht=function(t){return te.get(t)||{}},$t=function(t){return te.has(t)}}else{var ee=Xt(\"state\");Jt[ee]=!0,qt=function(t,e){if(ut(t,ee))throw new Zt(Qt);return e.facade=t,_t(t,ee,e),e},Ht=function(t){return ut(t,ee)?t[ee]:{}},$t=function(t){return ut(t,ee)}}var re,ne={set:qt,get:Ht,has:$t,enforce:function(t){return $t(t)?Ht(t):qt(t,{})},getterFor:function(t){return function(e){var r;if(!M(e)||(r=Ht(e)).type!==t)throw new Zt(\"Incompatible receiver, \"+t+\" required\");return r}}},oe=e(function(t){var e=zt.CONFIGURABLE,r=ne.enforce,n=ne.get,o=String,i=Object.defineProperty,s=b(\"\".slice),c=b(\"\".replace),f=b([].join),l=u&&!a(function(){return 8!==i(function(){},\"length\",{value:8}).length}),h=String(String).split(\"String\"),p=t.exports=function(t,n,a){\"Symbol(\"===s(o(n),0,7)&&(n=\"[\"+c(o(n),/^Symbol\\(([^)]*)\\).*$/,\"$1\")+\"]\"),a&&a.getter&&(n=\"get \"+n),a&&a.setter&&(n=\"set \"+n),(!ut(t,\"name\")||e&&t.name!==n)&&(u?i(t,\"name\",{value:n,configurable:!0}):t.name=n),l&&a&&ut(a,\"arity\")&&t.length!==a.arity&&i(t,\"length\",{value:a.arity});try{a&&ut(a,\"constructor\")&&a.constructor?u&&i(t,\"prototype\",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var p=r(t);return ut(p,\"source\")||(p.source=f(h,\"string\"==typeof n?n:\"\")),t};Function.prototype.toString=p(function(){return T(this)&&n(this).source||Kt(this)},\"toString\")}),ie=function(t,e,r,n){n||(n={});var o=n.enumerable,i=void 0!==n.name?n.name:e;if(T(r)&&oe(r,i,n),n.global)o?t[e]=r:et(e,r);else{try{n.unsafe?t[e]&&(o=!0):delete t[e]}catch(t){}o?t[e]=r:Ct.f(t,e,{value:r,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},ae=Math.ceil,ue=Math.floor,se=Math.trunc||function(t){var e=+t;return(e>0?ue:ae)(e)},ce=function(t){var e=+t;return e!=e||0===e?0:se(e)},fe=Math.max,le=Math.min,he=function(t,e){var r=ce(t);return r<0?fe(r+e,0):le(r,e)},pe=Math.min,ve=function(t){var e=ce(t);return e>0?pe(e,9007199254740991):0},de=function(t){return ve(t.length)},ge=function(t){return function(e,r,n){var o=k(e),i=de(o);if(0===i)return!t&&-1;var a,u=he(n,i);if(t&&r!=r){for(;i>u;)if((a=o[u++])!=a)return!0}else for(;i>u;u++)if((t||u in o)&&o[u]===r)return t||u||0;return!t&&-1}},ye={includes:ge(!0),indexOf:ge(!1)},me=ye.indexOf,be=b([].push),we=function(t,e){var r,n=k(t),o=0,i=[];for(r in n)!ut(Jt,r)&&ut(n,r)&&be(i,r);for(;e.length>o;)ut(n,r=e[o++])&&(~me(i,r)||be(i,r));return i},Se=[\"constructor\",\"hasOwnProperty\",\"isPrototypeOf\",\"propertyIsEnumerable\",\"toLocaleString\",\"toString\",\"valueOf\"],Ee=Se.concat(\"length\",\"prototype\"),Oe={f:Object.getOwnPropertyNames||function(t){return we(t,Ee)}},xe={f:Object.getOwnPropertySymbols},Re=b([].concat),Pe=L(\"Reflect\",\"ownKeys\")||function(t){var e=Oe.f(kt(t)),r=xe.f;return r?Re(e,r(t)):e},Ae=function(t,e,r){for(var n=Pe(e),o=Ct.f,i=Rt.f,a=0;a<n.length;a++){var u=n[a];ut(t,u)||r&&ut(r,u)||o(t,u,i(e,u))}},je=/#|\\.prototype\\./,ke=function(t,e){var r=Te[Ie(t)];return r===Le||r!==Me&&(T(e)?a(e):!!e)},Ie=ke.normalize=function(t){return String(t).replace(je,\".\").toLowerCase()},Te=ke.data={},Me=ke.NATIVE=\"N\",Le=ke.POLYFILL=\"P\",Ue=ke,Ne=Rt.f,Ce=function(t,e){var r,n,o,a,u,s=t.target,c=t.global,f=t.stat;if(r=c?i:f?i[s]||et(s,{}):i[s]&&i[s].prototype)for(n in e){if(a=e[n],o=t.dontCallGetSet?(u=Ne(r,n))&&u.value:r[n],!Ue(c?n:s+(f?\".\":\"#\")+n,t.forced)&&void 0!==o){if(typeof a==typeof o)continue;Ae(a,o)}(t.sham||o&&o.sham)&&_t(a,\"sham\",!0),ie(r,n,a,t)}},_e=Object.keys||function(t){return we(t,Se)},Fe=u&&!Pt?Object.defineProperties:function(t,e){kt(t);for(var r,n=k(e),o=_e(e),i=o.length,a=0;i>a;)Ct.f(t,r=o[a++],n[r]);return t},Be={f:Fe},De=L(\"document\",\"documentElement\"),ze=\"prototype\",We=\"script\",qe=Xt(\"IE_PROTO\"),He=function(){},$e=function(t){return\"<\"+We+\">\"+t+\"</\"+We+\">\"},Ke=function(t){t.write($e(\"\")),t.close();var e=t.parentWindow.Object;return t=null,e},Ge=function(){try{re=new ActiveXObject(\"htmlfile\")}catch(t){}var t,e,r;Ge=\"undefined\"!=typeof document?document.domain&&re?Ke(re):(e=Et(\"iframe\"),r=\"java\"+We+\":\",e.style.display=\"none\",De.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write($e(\"document.F=Object\")),t.close(),t.F):Ke(re);for(var n=Se.length;n--;)delete Ge[ze][Se[n]];return Ge()};Jt[qe]=!0;var Ve=Object.create||function(t,e){var r;return null!==t?(He[ze]=kt(t),r=new He,He[ze]=null,r[qe]=t):r=Ge(),void 0===e?r:Be.f(r,e)},Ye=Ct.f,Xe=dt(\"unscopables\"),Je=Array.prototype;void 0===Je[Xe]&&Ye(Je,Xe,{configurable:!0,value:Ve(null)});var Qe=function(t){Je[Xe][t]=!0};Ce({target:\"Array\",proto:!0},{at:function(t){var e=it(this),r=de(e),n=ce(t),o=n>=0?n:r+n;return o<0||o>=r?void 0:e[o]}}),Qe(\"at\");var Ze=function(t,e){return b(i[t].prototype[e])},tr=(Ze(\"Array\",\"at\"),TypeError),er=function(t,e){if(!delete t[e])throw new tr(\"Cannot delete property \"+Y(e)+\" of \"+Y(t))},rr=Math.min,nr=[].copyWithin||function(t,e){var r=it(this),n=de(r),o=he(t,n),i=he(e,n),a=arguments.length>2?arguments[2]:void 0,u=rr((void 0===a?n:he(a,n))-i,n-o),s=1;for(i<o&&o<i+u&&(s=-1,i+=u-1,o+=u-1);u-- >0;)i in r?r[o]=r[i]:er(r,o),o+=s,i+=s;return r};Ce({target:\"Array\",proto:!0},{copyWithin:nr}),Qe(\"copyWithin\"),Ze(\"Array\",\"copyWithin\"),Ce({target:\"Array\",proto:!0},{fill:function(t){for(var e=it(this),r=de(e),n=arguments.length,o=he(n>1?arguments[1]:void 0,r),i=n>2?arguments[2]:void 0,a=void 0===i?r:he(i,r);a>o;)e[o++]=t;return e}}),Qe(\"fill\"),Ze(\"Array\",\"fill\");var or=function(t){if(\"Function\"===E(t))return b(t)},ir=or(or.bind),ar=function(t,e){return J(t),void 0===e?t:s?ir(t,e):function(){return t.apply(e,arguments)}},ur=Array.isArray||function(t){return\"Array\"===E(t)},sr={};sr[dt(\"toStringTag\")]=\"z\";var cr=\"[object z]\"===String(sr),fr=dt(\"toStringTag\"),lr=Object,hr=\"Arguments\"===E(function(){return arguments}()),pr=cr?E:function(t){var e,r,n;return void 0===t?\"Undefined\":null===t?\"Null\":\"string\"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=lr(t),fr))?r:hr?E(e):\"Object\"===(n=E(e))&&T(e.callee)?\"Arguments\":n},vr=function(){},dr=L(\"Reflect\",\"construct\"),gr=/^\\s*(?:class|function)\\b/,yr=b(gr.exec),mr=!gr.test(vr),br=function(t){if(!T(t))return!1;try{return dr(vr,[],t),!0}catch(t){return!1}},wr=function(t){if(!T(t))return!1;switch(pr(t)){case\"AsyncFunction\":case\"GeneratorFunction\":case\"AsyncGeneratorFunction\":return!1}try{return mr||!!yr(gr,Kt(t))}catch(t){return!0}};wr.sham=!0;var Sr=!dr||a(function(){var t;return br(br.call)||!br(Object)||!br(function(){t=!0})||t})?wr:br,Er=dt(\"species\"),Or=Array,xr=function(t,e){return new(function(t){var e;return ur(t)&&(Sr(e=t.constructor)&&(e===Or||ur(e.prototype))||M(e)&&null===(e=e[Er]))&&(e=void 0),void 0===e?Or:e}(t))(0===e?0:e)},Rr=b([].push),Pr=function(t){var e=1===t,r=2===t,n=3===t,o=4===t,i=6===t,a=7===t,u=5===t||i;return function(s,c,f,l){for(var h,p,v=it(s),d=R(v),g=de(d),y=ar(c,f),m=0,b=l||xr,w=e?b(s,g):r||a?b(s,0):void 0;g>m;m++)if((u||m in d)&&(p=y(h=d[m],m,v),t))if(e)w[m]=p;else if(p)switch(t){case 3:return!0;case 5:return h;case 6:return m;case 2:Rr(w,h)}else switch(t){case 4:return!1;case 7:Rr(w,h)}return i?-1:n||o?o:w}},Ar={forEach:Pr(0),map:Pr(1),filter:Pr(2),some:Pr(3),every:Pr(4),find:Pr(5),findIndex:Pr(6),filterReject:Pr(7)},jr=Ar.find,kr=\"find\",Ir=!0;kr in[]&&Array(1)[kr](function(){Ir=!1}),Ce({target:\"Array\",proto:!0,forced:Ir},{find:function(t){return jr(this,t,arguments.length>1?arguments[1]:void 0)}}),Qe(kr),Ze(\"Array\",\"find\");var Tr=Ar.findIndex,Mr=\"findIndex\",Lr=!0;Mr in[]&&Array(1)[Mr](function(){Lr=!1}),Ce({target:\"Array\",proto:!0,forced:Lr},{findIndex:function(t){return Tr(this,t,arguments.length>1?arguments[1]:void 0)}}),Qe(Mr),Ze(\"Array\",\"findIndex\");var Ur=TypeError,Nr=function(t){if(t>9007199254740991)throw Ur(\"Maximum allowed index exceeded\");return t},Cr=function(t,e,r,n,o,i,a,u){for(var s,c,f=o,l=0,h=!!a&&ar(a,u);l<n;)l in r&&(s=h?h(r[l],l,e):r[l],i>0&&ur(s)?(c=de(s),f=Cr(t,e,s,c,f,i-1)-1):(Nr(f+1),t[f]=s),f++),l++;return f},_r=Cr;Ce({target:\"Array\",proto:!0},{flatMap:function(t){var e,r=it(this),n=de(r);return J(t),(e=xr(r,0)).length=_r(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}}),Qe(\"flatMap\"),Ze(\"Array\",\"flatMap\"),Ce({target:\"Array\",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=it(this),r=de(e),n=xr(e,0);return n.length=_r(n,e,e,r,0,void 0===t?1:ce(t)),n}}),Qe(\"flat\"),Ze(\"Array\",\"flat\");var Fr,Br,Dr,zr=String,Wr=function(t){if(\"Symbol\"===pr(t))throw new TypeError(\"Cannot convert a Symbol value to a string\");return zr(t)},qr=b(\"\".charAt),Hr=b(\"\".charCodeAt),$r=b(\"\".slice),Kr=function(t){return function(e,r){var n,o,i=Wr(j(e)),a=ce(r),u=i.length;return a<0||a>=u?t?\"\":void 0:(n=Hr(i,a))<55296||n>56319||a+1===u||(o=Hr(i,a+1))<56320||o>57343?t?qr(i,a):n:t?$r(i,a,a+2):o-56320+(n-55296<<10)+65536}},Gr={codeAt:Kr(!1),charAt:Kr(!0)},Vr=!a(function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}),Yr=Xt(\"IE_PROTO\"),Xr=Object,Jr=Xr.prototype,Qr=Vr?Xr.getPrototypeOf:function(t){var e=it(t);if(ut(e,Yr))return e[Yr];var r=e.constructor;return T(r)&&e instanceof r?r.prototype:e instanceof Xr?Jr:null},Zr=dt(\"iterator\"),tn=!1;[].keys&&(\"next\"in(Dr=[].keys())?(Br=Qr(Qr(Dr)))!==Object.prototype&&(Fr=Br):tn=!0);var en=!M(Fr)||a(function(){var t={};return Fr[Zr].call(t)!==t});en&&(Fr={}),T(Fr[Zr])||ie(Fr,Zr,function(){return this});var rn={IteratorPrototype:Fr,BUGGY_SAFARI_ITERATORS:tn},nn=Ct.f,on=dt(\"toStringTag\"),an=function(t,e,r){t&&!r&&(t=t.prototype),t&&!ut(t,on)&&nn(t,on,{configurable:!0,value:e})},un={},sn=rn.IteratorPrototype,cn=function(){return this},fn=function(t,e,r,n){var o=e+\" Iterator\";return t.prototype=Ve(sn,{next:d(+!n,r)}),an(t,o,!1),un[o]=cn,t},ln=function(t,e,r){try{return b(J(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}},hn=String,pn=TypeError,vn=function(t){if(function(t){return M(t)||null===t}(t))return t;throw new pn(\"Can't set \"+hn(t)+\" as a prototype\")},dn=Object.setPrototypeOf||(\"__proto__\"in{}?function(){var t,e=!1,r={};try{(t=ln(Object.prototype,\"__proto__\",\"set\"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return j(r),vn(n),M(r)?(e?t(r,n):r.__proto__=n,r):r}}():void 0),gn=zt.PROPER,yn=zt.CONFIGURABLE,mn=rn.IteratorPrototype,bn=rn.BUGGY_SAFARI_ITERATORS,wn=dt(\"iterator\"),Sn=\"keys\",En=\"values\",On=\"entries\",xn=function(){return this},Rn=function(t,e,r,n,o,i,a){fn(r,e,n);var u,s,c,l=function(t){if(t===o&&g)return g;if(!bn&&t&&t in v)return v[t];switch(t){case Sn:case En:case On:return function(){return new r(this,t)}}return function(){return new r(this)}},h=e+\" Iterator\",p=!1,v=t.prototype,d=v[wn]||v[\"@@iterator\"]||o&&v[o],g=!bn&&d||l(o),y=\"Array\"===e&&v.entries||d;if(y&&(u=Qr(y.call(new t)))!==Object.prototype&&u.next&&(Qr(u)!==mn&&(dn?dn(u,mn):T(u[wn])||ie(u,wn,xn)),an(u,h,!0)),gn&&o===En&&d&&d.name!==En&&(yn?_t(v,\"name\",En):(p=!0,g=function(){return f(d,this)})),o)if(s={values:l(En),keys:i?g:l(Sn),entries:l(On)},a)for(c in s)(bn||p||!(c in v))&&ie(v,c,s[c]);else Ce({target:e,proto:!0,forced:bn||p},s);return v[wn]!==g&&ie(v,wn,g,{name:o}),un[e]=g,s},Pn=function(t,e){return{value:t,done:e}},An=Gr.charAt,jn=\"String Iterator\",kn=ne.set,In=ne.getterFor(jn);Rn(String,\"String\",function(t){kn(this,{type:jn,string:Wr(t),index:0})},function(){var t,e=In(this),r=e.string,n=e.index;return n>=r.length?Pn(void 0,!0):(t=An(r,n),e.index+=t.length,Pn(t,!1))});var Tn=function(t,e,r){var n,o;kt(t);try{if(!(n=Q(t,\"return\"))){if(\"throw\"===e)throw r;return r}n=f(n,t)}catch(t){o=!0,n=t}if(\"throw\"===e)throw r;if(o)throw n;return kt(n),r},Mn=function(t,e,r,n){try{return n?e(kt(r)[0],r[1]):e(r)}catch(e){Tn(t,\"throw\",e)}},Ln=dt(\"iterator\"),Un=Array.prototype,Nn=function(t){return void 0!==t&&(un.Array===t||Un[Ln]===t)},Cn=function(t,e,r){u?Ct.f(t,e,d(0,r)):t[e]=r},_n=dt(\"iterator\"),Fn=function(t){if(!P(t))return Q(t,_n)||Q(t,\"@@iterator\")||un[pr(t)]},Bn=TypeError,Dn=function(t,e){var r=arguments.length<2?Fn(t):e;if(J(r))return kt(f(r,t));throw new Bn(Y(t)+\" is not iterable\")},zn=Array,Wn=function(t){var e=it(t),r=Sr(this),n=arguments.length,o=n>1?arguments[1]:void 0,i=void 0!==o;i&&(o=ar(o,n>2?arguments[2]:void 0));var a,u,s,c,l,h,p=Fn(e),v=0;if(!p||this===zn&&Nn(p))for(a=de(e),u=r?new this(a):zn(a);a>v;v++)h=i?o(e[v],v):e[v],Cn(u,v,h);else for(u=r?new this:[],l=(c=Dn(e,p)).next;!(s=f(l,c)).done;v++)h=i?Mn(c,o,[s.value,v],!0):s.value,Cn(u,v,h);return u.length=v,u},qn=dt(\"iterator\"),Hn=!1;try{var $n=0,Kn={next:function(){return{done:!!$n++}},return:function(){Hn=!0}};Kn[qn]=function(){return this},Array.from(Kn,function(){throw 2})}catch(t){}var Gn=function(t,e){try{if(!e&&!Hn)return!1}catch(t){return!1}var r=!1;try{var n={};n[qn]=function(){return{next:function(){return{done:r=!0}}}},t(n)}catch(t){}return r},Vn=!Gn(function(t){Array.from(t)});Ce({target:\"Array\",stat:!0,forced:Vn},{from:Wn});var Yn=i,Xn=ye.includes,Jn=a(function(){return!Array(1).includes()});Ce({target:\"Array\",proto:!0,forced:Jn},{includes:function(t){return Xn(this,t,arguments.length>1?arguments[1]:void 0)}}),Qe(\"includes\"),Ze(\"Array\",\"includes\");var Qn=Ct.f,Zn=\"Array Iterator\",to=ne.set,eo=ne.getterFor(Zn),ro=Rn(Array,\"Array\",function(t,e){to(this,{type:Zn,target:k(t),index:0,kind:e})},function(){var t=eo(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,Pn(void 0,!0);switch(t.kind){case\"keys\":return Pn(r,!1);case\"values\":return Pn(e[r],!1)}return Pn([r,e[r]],!1)},\"values\"),no=un.Arguments=un.Array;if(Qe(\"keys\"),Qe(\"values\"),Qe(\"entries\"),u&&\"values\"!==no.name)try{Qn(no,\"name\",{value:\"values\"})}catch(t){}cr||ie(Object.prototype,\"toString\",cr?{}.toString:function(){return\"[object \"+pr(this)+\"]\"},{unsafe:!0}),Ze(\"Array\",\"values\");var oo=Array,io=a(function(){function t(){}return!(oo.of.call(t)instanceof t)});Ce({target:\"Array\",stat:!0,forced:io},{of:function(){for(var t=0,e=arguments.length,r=new(Sr(this)?this:oo)(e);e>t;)Cn(r,t,arguments[t++]);return r.length=e,r}});var ao=dt(\"hasInstance\"),uo=Function.prototype;ao in uo||Ct.f(uo,ao,{value:oe(function(t){if(!T(this)||!M(t))return!1;var e=this.prototype;return M(e)?U(e,t):t instanceof this},ao)}),dt(\"hasInstance\");var so=function(t,e,r){return r.get&&oe(r.get,e,{getter:!0}),r.set&&oe(r.set,e,{setter:!0}),Ct.f(t,e,r)},co=zt.EXISTS,fo=Function.prototype,lo=b(fo.toString),ho=/function\\b(?:\\s|\\/\\*[\\S\\s]*?\\*\\/|\\/\\/[^\\n\\r]*[\\n\\r]+)*([^\\s(/]*)/,po=b(ho.exec);u&&!co&&so(fo,\"name\",{configurable:!0,get:function(){try{return po(ho,lo(this))[1]}catch(t){return\"\"}}});var vo=b([].slice),go=Oe.f,yo=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],mo={f:function(t){return yo&&\"Window\"===E(t)?function(t){try{return go(t)}catch(t){return vo(yo)}}(t):go(k(t))}},bo=a(function(){if(\"function\"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,\"a\",{value:8})}}),wo=Object.isExtensible,So=a(function(){wo(1)})||bo?function(t){return!!M(t)&&(!bo||\"ArrayBuffer\"!==E(t))&&(!wo||wo(t))}:wo,Eo=!a(function(){return Object.isExtensible(Object.preventExtensions({}))}),Oo=e(function(t){var e=Ct.f,r=!1,n=lt(\"meta\"),o=0,i=function(t){e(t,n,{value:{objectID:\"O\"+o++,weakData:{}}})},a=t.exports={enable:function(){a.enable=function(){},r=!0;var t=Oe.f,e=b([].splice),o={};o[n]=1,t(o).length&&(Oe.f=function(r){for(var o=t(r),i=0,a=o.length;i<a;i++)if(o[i]===n){e(o,i,1);break}return o},Ce({target:\"Object\",stat:!0,forced:!0},{getOwnPropertyNames:mo.f}))},fastKey:function(t,e){if(!M(t))return\"symbol\"==typeof t?t:(\"string\"==typeof t?\"S\":\"P\")+t;if(!ut(t,n)){if(!So(t))return\"F\";if(!e)return\"E\";i(t)}return t[n].objectID},getWeakData:function(t,e){if(!ut(t,n)){if(!So(t))return!0;if(!e)return!1;i(t)}return t[n].weakData},onFreeze:function(t){return Eo&&r&&So(t)&&!ut(t,n)&&i(t),t}};Jt[n]=!0}),xo=TypeError,Ro=function(t,e){this.stopped=t,this.result=e},Po=Ro.prototype,Ao=function(t,e,r){var n,o,i,a,u,s,c,l=!(!r||!r.AS_ENTRIES),h=!(!r||!r.IS_RECORD),p=!(!r||!r.IS_ITERATOR),v=!(!r||!r.INTERRUPTED),d=ar(e,r&&r.that),g=function(t){return n&&Tn(n,\"normal\",t),new Ro(!0,t)},y=function(t){return l?(kt(t),v?d(t[0],t[1],g):d(t[0],t[1])):v?d(t,g):d(t)};if(h)n=t.iterator;else if(p)n=t;else{if(!(o=Fn(t)))throw new xo(Y(t)+\" is not iterable\");if(Nn(o)){for(i=0,a=de(t);a>i;i++)if((u=y(t[i]))&&U(Po,u))return u;return new Ro(!1)}n=Dn(t,o)}for(s=h?t.next:n.next;!(c=f(s,n)).done;){try{u=y(c.value)}catch(t){Tn(n,\"throw\",t)}if(\"object\"==typeof u&&u&&U(Po,u))return u}return new Ro(!1)},jo=TypeError,ko=function(t,e){if(U(e,t))return t;throw new jo(\"Incorrect invocation\")},Io=function(t,e,r){var n,o;return dn&&T(n=e.constructor)&&n!==r&&M(o=n.prototype)&&o!==r.prototype&&dn(t,o),t},To=function(t,e,r){var n=-1!==t.indexOf(\"Map\"),o=-1!==t.indexOf(\"Weak\"),u=n?\"set\":\"add\",s=i[t],c=s&&s.prototype,f=s,l={},h=function(t){var e=b(c[t]);ie(c,t,\"add\"===t?function(t){return e(this,0===t?0:t),this}:\"delete\"===t?function(t){return!(o&&!M(t))&&e(this,0===t?0:t)}:\"get\"===t?function(t){return o&&!M(t)?void 0:e(this,0===t?0:t)}:\"has\"===t?function(t){return!(o&&!M(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(Ue(t,!T(s)||!(o||c.forEach&&!a(function(){(new s).entries().next()}))))f=r.getConstructor(e,t,n,u),Oo.enable();else if(Ue(t,!0)){var p=new f,v=p[u](o?{}:-0,1)!==p,d=a(function(){p.has(1)}),g=Gn(function(t){new s(t)}),y=!o&&a(function(){for(var t=new s,e=5;e--;)t[u](e,e);return!t.has(-0)});g||((f=e(function(t,e){ko(t,c);var r=Io(new s,t,f);return P(e)||Ao(e,r[u],{that:r,AS_ENTRIES:n}),r})).prototype=c,c.constructor=f),(d||y)&&(h(\"delete\"),h(\"has\"),n&&h(\"get\")),(y||v)&&h(u),o&&c.clear&&delete c.clear}return l[t]=f,Ce({global:!0,constructor:!0,forced:f!==s},l),an(f,t),o||r.setStrong(f,t,n),f},Mo=function(t,e,r){for(var n in e)ie(t,n,e[n],r);return t},Lo=dt(\"species\"),Uo=function(t){var e=L(t);u&&e&&!e[Lo]&&so(e,Lo,{configurable:!0,get:function(){return this}})},No=Oo.fastKey,Co=ne.set,_o=ne.getterFor,Fo={getConstructor:function(t,e,r,n){var o=t(function(t,o){ko(t,i),Co(t,{type:e,index:Ve(null),first:null,last:null,size:0}),u||(t.size=0),P(o)||Ao(o,t[n],{that:t,AS_ENTRIES:r})}),i=o.prototype,a=_o(e),s=function(t,e,r){var n,o,i=a(t),s=c(t,e);return s?s.value=r:(i.last=s={index:o=No(e,!0),key:e,value:r,previous:n=i.last,next:null,removed:!1},i.first||(i.first=s),n&&(n.next=s),u?i.size++:t.size++,\"F\"!==o&&(i.index[o]=s)),t},c=function(t,e){var r,n=a(t),o=No(e);if(\"F\"!==o)return n.index[o];for(r=n.first;r;r=r.next)if(r.key===e)return r};return Mo(i,{clear:function(){for(var t=a(this),e=t.first;e;)e.removed=!0,e.previous&&(e.previous=e.previous.next=null),e=e.next;t.first=t.last=null,t.index=Ve(null),u?t.size=0:this.size=0},delete:function(t){var e=this,r=a(e),n=c(e,t);if(n){var o=n.next,i=n.previous;delete r.index[n.index],n.removed=!0,i&&(i.next=o),o&&(o.previous=i),r.first===n&&(r.first=o),r.last===n&&(r.last=i),u?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=a(this),n=ar(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!c(this,t)}}),Mo(i,r?{get:function(t){var e=c(this,t);return e&&e.value},set:function(t,e){return s(this,0===t?0:t,e)}}:{add:function(t){return s(this,t=0===t?0:t,t)}}),u&&so(i,\"size\",{configurable:!0,get:function(){return a(this).size}}),o},setStrong:function(t,e,r){var n=e+\" Iterator\",o=_o(e),i=_o(n);Rn(t,e,function(t,e){Co(this,{type:n,target:t,state:o(t),kind:e,last:null})},function(){for(var t=i(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?Pn(\"keys\"===e?r.key:\"values\"===e?r.value:[r.key,r.value],!1):(t.target=null,Pn(void 0,!0))},r?\"entries\":\"values\",!r,!0),Uo(e)}};To(\"Map\",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},Fo);var Bo=Map.prototype,Do={Map:Map,set:b(Bo.set),get:b(Bo.get),has:b(Bo.has),remove:b(Bo.delete),proto:Bo},zo=Do.Map,Wo=Do.has,qo=Do.get,Ho=Do.set,$o=b([].push),Ko=a(function(){return 1!==zo.groupBy(\"ab\",function(t){return t}).get(\"a\").length});Ce({target:\"Map\",stat:!0,forced:Ko},{groupBy:function(t,e){j(t),J(e);var r=new zo,n=0;return Ao(t,function(t){var o=e(t,n++);Wo(r,o)?$o(qo(r,o),t):Ho(r,o,[t])}),r}});var Go={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},Vo=Et(\"span\").classList,Yo=Vo&&Vo.constructor&&Vo.constructor.prototype,Xo=Yo===Object.prototype?void 0:Yo,Jo=dt(\"iterator\"),Qo=ro.values,Zo=function(t,e){if(t){if(t[Jo]!==Qo)try{_t(t,Jo,Qo)}catch(e){t[Jo]=Qo}if(an(t,e,!0),Go[e])for(var r in ro)if(t[r]!==ro[r])try{_t(t,r,ro[r])}catch(e){t[r]=ro[r]}}};for(var ti in Go)Zo(i[ti]&&i[ti].prototype,ti);Zo(Xo,\"DOMTokenList\");var ei=function(t,e,r){return function(n){var o=it(n),i=arguments.length,a=i>1?arguments[1]:void 0,u=void 0!==a,s=u?ar(a,i>2?arguments[2]:void 0):void 0,c=new t,f=0;return Ao(o,function(t){var n=u?s(t,f++):t;r?e(c,kt(n)[0],n[1]):e(c,n)}),c}};Ce({target:\"Map\",stat:!0,forced:!0},{from:ei(Do.Map,Do.set,!0)});var ri=function(t,e,r){return function(){for(var n=new t,o=arguments.length,i=0;i<o;i++){var a=arguments[i];r?e(n,kt(a)[0],a[1]):e(n,a)}return n}};Ce({target:\"Map\",stat:!0,forced:!0},{of:ri(Do.Map,Do.set,!0)});var ni=Do.has,oi=function(t){return ni(t),t},ii=Do.remove;Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var t,e=oi(this),r=!0,n=0,o=arguments.length;n<o;n++)t=ii(e,arguments[n]),r=r&&t;return!!r}});var ai=Do.get,ui=Do.has,si=Do.set;Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{emplace:function(t,e){var r,n,o=oi(this);return ui(o,t)?(r=ai(o,t),\"update\"in e&&(r=e.update(r,t,o),si(o,t,r)),r):(n=e.insert(t,o),si(o,t,n),n)}});var ci=function(t,e,r){for(var n,o,i=r?t:t.iterator,a=t.next;!(n=f(a,i)).done;)if(void 0!==(o=e(n.value)))return o},fi=Do.Map,li=Do.proto,hi=b(li.forEach),pi=b(li.entries),vi=pi(new fi).next,di=function(t,e,r){return r?ci({iterator:pi(t),next:vi},function(t){return e(t[1],t[0])}):hi(t,e)};Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{every:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0);return!1!==di(e,function(t,n){if(!r(t,n,e))return!1},!0)}});var gi=Do.Map,yi=Do.set;Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{filter:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new gi;return di(e,function(t,o){r(t,o,e)&&yi(n,o,t)}),n}}),Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{find:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=di(e,function(t,n){if(r(t,n,e))return{value:t}},!0);return n&&n.value}}),Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{findKey:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=di(e,function(t,n){if(r(t,n,e))return{key:n}},!0);return n&&n.key}}),Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{includes:function(t){return!0===di(oi(this),function(e){if((r=e)===(n=t)||r!=r&&n!=n)return!0;var r,n},!0)}});var mi=Do.Map;Ce({target:\"Map\",stat:!0,forced:!0},{keyBy:function(t,e){var r=new(T(this)?this:mi);J(e);var n=J(r.set);return Ao(t,function(t){f(n,r,e(t),t)}),r}}),Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{keyOf:function(t){var e=di(oi(this),function(e,r){if(e===t)return{key:r}},!0);return e&&e.key}});var bi=Do.Map,wi=Do.set;Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{mapKeys:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new bi;return di(e,function(t,o){wi(n,r(t,o,e),t)}),n}});var Si=Do.Map,Ei=Do.set;Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{mapValues:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new Si;return di(e,function(t,o){Ei(n,o,r(t,o,e))}),n}});var Oi=Do.set;Ce({target:\"Map\",proto:!0,real:!0,arity:1,forced:!0},{merge:function(t){for(var e=oi(this),r=arguments.length,n=0;n<r;)Ao(arguments[n++],function(t,r){Oi(e,t,r)},{AS_ENTRIES:!0});return e}});var xi=TypeError;Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{reduce:function(t){var e=oi(this),r=arguments.length<2,n=r?void 0:arguments[1];if(J(t),di(e,function(o,i){r?(r=!1,n=o):n=t(n,o,i,e)}),r)throw new xi(\"Reduce of empty map with no initial value\");return n}}),Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{some:function(t){var e=oi(this),r=ar(t,arguments.length>1?arguments[1]:void 0);return!0===di(e,function(t,n){if(r(t,n,e))return!0},!0)}});var Ri=TypeError,Pi=Do.get,Ai=Do.has,ji=Do.set;Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{update:function(t,e){var r=oi(this),n=arguments.length;J(e);var o=Ai(r,t);if(!o&&n<3)throw new Ri(\"Updating absent value\");var i=o?Pi(r,t):J(n>2?arguments[2]:void 0)(t,r);return ji(r,t,e(i,t,r)),r}});var ki=TypeError,Ii=function(t,e){var r,n=kt(this),o=J(n.get),i=J(n.has),a=J(n.set),u=arguments.length>2?arguments[2]:void 0;if(!T(e)&&!T(u))throw new ki(\"At least one callback required\");return f(i,n,t)?(r=f(o,n,t),T(e)&&(r=e(r),f(a,n,t,r))):T(u)&&(r=u(),f(a,n,t,r)),r};Ce({target:\"Map\",proto:!0,real:!0,forced:!0},{upsert:Ii}),Ce({target:\"Map\",proto:!0,real:!0,name:\"upsert\",forced:!0},{updateOrInsert:Ii});var Ti=b(1..valueOf),Mi=\"\\t\\n\\v\\f\\r                 \\u2028\\u2029\\ufeff\",Li=b(\"\".replace),Ui=RegExp(\"^[\"+Mi+\"]+\"),Ni=RegExp(\"(^|[^\"+Mi+\"])[\"+Mi+\"]+$\"),Ci=function(t){return function(e){var r=Wr(j(e));return 1&t&&(r=Li(r,Ui,\"\")),2&t&&(r=Li(r,Ni,\"$1\")),r}},_i={start:Ci(1),end:Ci(2),trim:Ci(3)},Fi=Oe.f,Bi=Rt.f,Di=Ct.f,zi=_i.trim,Wi=\"Number\",qi=i[Wi],Hi=qi.prototype,$i=i.TypeError,Ki=b(\"\".slice),Gi=b(\"\".charCodeAt),Vi=Ue(Wi,!qi(\" 0o1\")||!qi(\"0b1\")||qi(\"+0x1\")),Yi=function(t){var e,r=arguments.length<1?0:qi(function(t){var e=mt(t,\"number\");return\"bigint\"==typeof e?e:function(t){var e,r,n,o,i,a,u,s,c=mt(t,\"number\");if(G(c))throw new $i(\"Cannot convert a Symbol value to a number\");if(\"string\"==typeof c&&c.length>2)if(c=zi(c),43===(e=Gi(c,0))||45===e){if(88===(r=Gi(c,2))||120===r)return NaN}else if(48===e){switch(Gi(c,1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+c}for(a=(i=Ki(c,2)).length,u=0;u<a;u++)if((s=Gi(i,u))<48||s>o)return NaN;return parseInt(i,n)}return+c}(e)}(t));return U(Hi,e=this)&&a(function(){Ti(e)})?Io(Object(r),this,Yi):r};Yi.prototype=Hi,Vi&&(Hi.constructor=Yi),Ce({global:!0,constructor:!0,wrap:!0,forced:Vi},{Number:Yi}),Vi&&function(t,e){for(var r,n=u?Fi(e):\"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range\".split(\",\"),o=0;n.length>o;o++)ut(e,r=n[o])&&!ut(t,r)&&Di(t,r,Bi(e,r))}(Yn[Wi],qi),Ce({target:\"Number\",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)});var Xi=i.isFinite;Ce({target:\"Number\",stat:!0},{isFinite:Number.isFinite||function(t){return\"number\"==typeof t&&Xi(t)}});var Ji=Math.floor,Qi=Number.isInteger||function(t){return!M(t)&&isFinite(t)&&Ji(t)===t};Ce({target:\"Number\",stat:!0},{isInteger:Qi}),Ce({target:\"Number\",stat:!0},{isNaN:function(t){return t!=t}});var Zi=Math.abs;Ce({target:\"Number\",stat:!0},{isSafeInteger:function(t){return Qi(t)&&Zi(t)<=9007199254740991}}),Ce({target:\"Number\",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991}),Ce({target:\"Number\",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991});var ta=_i.trim,ea=b(\"\".charAt),ra=i.parseFloat,na=i.Symbol,oa=na&&na.iterator,ia=1/ra(Mi+\"-0\")!=-Infinity||oa&&!a(function(){ra(Object(oa))})?function(t){var e=ta(Wr(t)),r=ra(e);return 0===r&&\"-\"===ea(e,0)?-0:r}:ra;Ce({target:\"Number\",stat:!0,forced:Number.parseFloat!==ia},{parseFloat:ia});var aa=_i.trim,ua=i.parseInt,sa=i.Symbol,ca=sa&&sa.iterator,fa=/^[+-]?0x/i,la=b(fa.exec),ha=8!==ua(Mi+\"08\")||22!==ua(Mi+\"0x16\")||ca&&!a(function(){ua(Object(ca))})?function(t,e){var r=aa(Wr(t));return ua(r,e>>>0||(la(fa,r)?16:10))}:ua;Ce({target:\"Number\",stat:!0,forced:Number.parseInt!==ha},{parseInt:ha});var pa=b(v.f),va=b([].push),da=u&&a(function(){var t=Object.create(null);return t[2]=2,!pa(t,2)}),ga=function(t){return function(e){for(var r,n=k(e),o=_e(n),i=da&&null===Qr(n),a=o.length,s=0,c=[];a>s;)r=o[s++],u&&!(i?r in n:pa(n,r))||va(c,t?[r,n[r]]:n[r]);return c}},ya={entries:ga(!0),values:ga(!1)},ma=ya.entries;Ce({target:\"Object\",stat:!0},{entries:function(t){return ma(t)}}),Ce({target:\"Object\",stat:!0,sham:!u},{getOwnPropertyDescriptors:function(t){for(var e,r,n=k(t),o=Rt.f,i=Pe(n),a={},u=0;i.length>u;)void 0!==(r=o(n,e=i[u++]))&&Cn(a,e,r);return a}});var ba=a(function(){_e(1)});Ce({target:\"Object\",stat:!0,forced:ba},{keys:function(t){return _e(it(t))}});var wa=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};Ce({target:\"Object\",stat:!0},{is:wa});var Sa=ya.values;Ce({target:\"Object\",stat:!0},{values:function(t){return Sa(t)}}),Ce({target:\"Object\",stat:!0},{hasOwn:ut});var Ea=Function.prototype,Oa=Ea.apply,xa=Ea.call,Ra=\"object\"==typeof Reflect&&Reflect.apply||(s?xa.bind(Oa):function(){return xa.apply(Oa,arguments)}),Pa=!a(function(){Reflect.apply(function(){})});Ce({target:\"Reflect\",stat:!0,forced:Pa},{apply:function(t,e,r){return Ra(J(t),e,kt(r))}});var Aa=Function,ja=b([].concat),ka=b([].join),Ia={},Ta=s?Aa.bind:function(t){var e=J(this),r=e.prototype,n=vo(arguments,1),o=function(){var r=ja(n,vo(arguments));return this instanceof o?function(t,e,r){if(!ut(Ia,e)){for(var n=[],o=0;o<e;o++)n[o]=\"a[\"+o+\"]\";Ia[e]=Aa(\"C,a\",\"return new C(\"+ka(n,\",\")+\")\")}return Ia[e](t,r)}(e,r.length,r):e.apply(t,r)};return M(r)&&(o.prototype=r),o},Ma=TypeError,La=function(t){if(Sr(t))return t;throw new Ma(Y(t)+\" is not a constructor\")},Ua=L(\"Reflect\",\"construct\"),Na=Object.prototype,Ca=[].push,_a=a(function(){function t(){}return!(Ua(function(){},[],t)instanceof t)}),Fa=!a(function(){Ua(function(){})}),Ba=_a||Fa;Ce({target:\"Reflect\",stat:!0,forced:Ba,sham:Ba},{construct:function(t,e){La(t),kt(e);var r=arguments.length<3?t:La(arguments[2]);if(Fa&&!_a)return Ua(t,e,r);if(t===r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return Ra(Ca,n,e),new(Ra(Ta,t,n))}var o=r.prototype,i=Ve(M(o)?o:Na),a=Ra(t,i,e);return M(a)?a:i}});var Da=a(function(){Reflect.defineProperty(Ct.f({},1,{value:1}),1,{value:2})});Ce({target:\"Reflect\",stat:!0,forced:Da,sham:!u},{defineProperty:function(t,e,r){kt(t);var n=bt(e);kt(r);try{return Ct.f(t,n,r),!0}catch(t){return!1}}});var za=Rt.f;Ce({target:\"Reflect\",stat:!0},{deleteProperty:function(t,e){var r=za(kt(t),e);return!(r&&!r.configurable)&&delete t[e]}});var Wa=function(t){return void 0!==t&&(ut(t,\"value\")||ut(t,\"writable\"))};Ce({target:\"Reflect\",stat:!0},{get:function t(e,r){var n,o,i=arguments.length<3?e:arguments[2];return kt(e)===i?e[r]:(n=Rt.f(e,r))?Wa(n)?n.value:void 0===n.get?void 0:f(n.get,i):M(o=Qr(e))?t(o,r,i):void 0}}),Ce({target:\"Reflect\",stat:!0,sham:!u},{getOwnPropertyDescriptor:function(t,e){return Rt.f(kt(t),e)}}),Ce({target:\"Reflect\",stat:!0,sham:!Vr},{getPrototypeOf:function(t){return Qr(kt(t))}}),Ce({target:\"Reflect\",stat:!0},{has:function(t,e){return e in t}}),Ce({target:\"Reflect\",stat:!0},{isExtensible:function(t){return kt(t),So(t)}}),Ce({target:\"Reflect\",stat:!0},{ownKeys:Pe}),Ce({target:\"Reflect\",stat:!0,sham:!Eo},{preventExtensions:function(t){kt(t);try{var e=L(\"Object\",\"preventExtensions\");return e&&e(t),!0}catch(t){return!1}}});var qa=a(function(){var t=function(){},e=Ct.f(new t,\"a\",{configurable:!0});return!1!==Reflect.set(t.prototype,\"a\",1,e)});Ce({target:\"Reflect\",stat:!0,forced:qa},{set:function t(e,r,n){var o,i,a,u=arguments.length<4?e:arguments[3],s=Rt.f(kt(e),r);if(!s){if(M(i=Qr(e)))return t(i,r,n,u);s=d(0)}if(Wa(s)){if(!1===s.writable||!M(u))return!1;if(o=Rt.f(u,r)){if(o.get||o.set||!1===o.writable)return!1;o.value=n,Ct.f(u,r,o)}else Ct.f(u,r,d(0,n))}else{if(void 0===(a=s.set))return!1;f(a,u,n)}return!0}}),dn&&Ce({target:\"Reflect\",stat:!0},{setPrototypeOf:function(t,e){kt(t),vn(e);try{return dn(t,e),!0}catch(t){return!1}}}),Ce({global:!0},{Reflect:{}}),an(i.Reflect,\"Reflect\",!0);var Ha=Oo.getWeakData,$a=ne.set,Ka=ne.getterFor,Ga=Ar.find,Va=Ar.findIndex,Ya=b([].splice),Xa=0,Ja=function(t){return t.frozen||(t.frozen=new Qa)},Qa=function(){this.entries=[]},Za=function(t,e){return Ga(t.entries,function(t){return t[0]===e})};Qa.prototype={get:function(t){var e=Za(this,t);if(e)return e[1]},has:function(t){return!!Za(this,t)},set:function(t,e){var r=Za(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=Va(this.entries,function(e){return e[0]===t});return~e&&Ya(this.entries,e,1),!!~e}};var tu,eu={getConstructor:function(t,e,r,n){var o=t(function(t,o){ko(t,i),$a(t,{type:e,id:Xa++,frozen:null}),P(o)||Ao(o,t[n],{that:t,AS_ENTRIES:r})}),i=o.prototype,a=Ka(e),u=function(t,e,r){var n=a(t),o=Ha(kt(e),!0);return!0===o?Ja(n).set(e,r):o[n.id]=r,t};return Mo(i,{delete:function(t){var e=a(this);if(!M(t))return!1;var r=Ha(t);return!0===r?Ja(e).delete(t):r&&ut(r,e.id)&&delete r[e.id]},has:function(t){var e=a(this);if(!M(t))return!1;var r=Ha(t);return!0===r?Ja(e).has(t):r&&ut(r,e.id)}}),Mo(i,r?{get:function(t){var e=a(this);if(M(t)){var r=Ha(t);if(!0===r)return Ja(e).get(t);if(r)return r[e.id]}},set:function(t,e){return u(this,t,e)}}:{add:function(t){return u(this,t,!0)}}),o}},ru=ne.enforce,nu=Object,ou=Array.isArray,iu=nu.isExtensible,au=nu.isFrozen,uu=nu.isSealed,su=nu.freeze,cu=nu.seal,fu=!i.ActiveXObject&&\"ActiveXObject\"in i,lu=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},hu=To(\"WeakMap\",lu,eu),pu=hu.prototype,vu=b(pu.set);if(Vt)if(fu){tu=eu.getConstructor(lu,\"WeakMap\",!0),Oo.enable();var du=b(pu.delete),gu=b(pu.has),yu=b(pu.get);Mo(pu,{delete:function(t){if(M(t)&&!iu(t)){var e=ru(this);return e.frozen||(e.frozen=new tu),du(this,t)||e.frozen.delete(t)}return du(this,t)},has:function(t){if(M(t)&&!iu(t)){var e=ru(this);return e.frozen||(e.frozen=new tu),gu(this,t)||e.frozen.has(t)}return gu(this,t)},get:function(t){if(M(t)&&!iu(t)){var e=ru(this);return e.frozen||(e.frozen=new tu),gu(this,t)?yu(this,t):e.frozen.get(t)}return yu(this,t)},set:function(t,e){if(M(t)&&!iu(t)){var r=ru(this);r.frozen||(r.frozen=new tu),gu(this,t)?vu(this,t,e):r.frozen.set(t,e)}else vu(this,t,e);return this}})}else Eo&&a(function(){var t=su([]);return vu(new hu,t,1),!au(t)})&&Mo(pu,{set:function(t,e){var r;return ou(t)&&(au(t)?r=su:uu(t)&&(r=cu)),vu(this,t,e),r&&r(t),this}});var mu=L(\"Map\"),bu=L(\"WeakMap\"),wu=b([].push),Su=nt(\"metadata\"),Eu=Su.store||(Su.store=new bu),Ou=function(t,e,r){var n=Eu.get(t);if(!n){if(!r)return;Eu.set(t,n=new mu)}var o=n.get(e);if(!o){if(!r)return;n.set(e,o=new mu)}return o},xu={store:Eu,getMap:Ou,has:function(t,e,r){var n=Ou(e,r,!1);return void 0!==n&&n.has(t)},get:function(t,e,r){var n=Ou(e,r,!1);return void 0===n?void 0:n.get(t)},set:function(t,e,r,n){Ou(r,n,!0).set(t,e)},keys:function(t,e){var r=Ou(t,e,!1),n=[];return r&&r.forEach(function(t,e){wu(n,e)}),n},toKey:function(t){return void 0===t||\"symbol\"==typeof t?t:String(t)}},Ru=xu.toKey,Pu=xu.set;Ce({target:\"Reflect\",stat:!0},{defineMetadata:function(t,e,r){var n=arguments.length<4?void 0:Ru(arguments[3]);Pu(t,e,kt(r),n)}});var Au=xu.toKey,ju=xu.getMap,ku=xu.store;Ce({target:\"Reflect\",stat:!0},{deleteMetadata:function(t,e){var r=arguments.length<3?void 0:Au(arguments[2]),n=ju(kt(e),r,!1);if(void 0===n||!n.delete(t))return!1;if(n.size)return!0;var o=ku.get(e);return o.delete(r),!!o.size||ku.delete(e)}});var Iu=xu.has,Tu=xu.get,Mu=xu.toKey,Lu=function(t,e,r){if(Iu(t,e,r))return Tu(t,e,r);var n=Qr(e);return null!==n?Lu(t,n,r):void 0};Ce({target:\"Reflect\",stat:!0},{getMetadata:function(t,e){var r=arguments.length<3?void 0:Mu(arguments[2]);return Lu(t,kt(e),r)}});var Uu=Do.Map,Nu=Do.has,Cu=Do.set,_u=b([].push),Fu=b(function(t){var e,r,n,o=it(this),i=de(o),a=[],u=new Uu,s=P(t)?function(t){return t}:J(t);for(e=0;e<i;e++)n=s(r=o[e]),Nu(u,n)||Cu(u,n,r);return di(u,function(t){_u(a,t)}),a}),Bu=b([].concat),Du=xu.keys,zu=xu.toKey,Wu=function(t,e){var r=Du(t,e),n=Qr(t);if(null===n)return r;var o=Wu(n,e);return o.length?r.length?Fu(Bu(r,o)):o:r};Ce({target:\"Reflect\",stat:!0},{getMetadataKeys:function(t){var e=arguments.length<2?void 0:zu(arguments[1]);return Wu(kt(t),e)}});var qu=xu.get,Hu=xu.toKey;Ce({target:\"Reflect\",stat:!0},{getOwnMetadata:function(t,e){var r=arguments.length<3?void 0:Hu(arguments[2]);return qu(t,kt(e),r)}});var $u=xu.keys,Ku=xu.toKey;Ce({target:\"Reflect\",stat:!0},{getOwnMetadataKeys:function(t){var e=arguments.length<2?void 0:Ku(arguments[1]);return $u(kt(t),e)}});var Gu=xu.has,Vu=xu.toKey,Yu=function(t,e,r){if(Gu(t,e,r))return!0;var n=Qr(e);return null!==n&&Yu(t,n,r)};Ce({target:\"Reflect\",stat:!0},{hasMetadata:function(t,e){var r=arguments.length<3?void 0:Vu(arguments[2]);return Yu(t,kt(e),r)}});var Xu=xu.has,Ju=xu.toKey;Ce({target:\"Reflect\",stat:!0},{hasOwnMetadata:function(t,e){var r=arguments.length<3?void 0:Ju(arguments[2]);return Xu(t,kt(e),r)}});var Qu=xu.toKey,Zu=xu.set;Ce({target:\"Reflect\",stat:!0},{metadata:function(t,e){return function(r,n){Zu(t,e,kt(r),Qu(n))}}});var ts=dt(\"match\"),es=function(t){var e;return M(t)&&(void 0!==(e=t[ts])?!!e:\"RegExp\"===E(t))},rs=function(){var t=kt(this),e=\"\";return t.hasIndices&&(e+=\"d\"),t.global&&(e+=\"g\"),t.ignoreCase&&(e+=\"i\"),t.multiline&&(e+=\"m\"),t.dotAll&&(e+=\"s\"),t.unicode&&(e+=\"u\"),t.unicodeSets&&(e+=\"v\"),t.sticky&&(e+=\"y\"),e},ns=RegExp.prototype,os=function(t){var e=t.flags;return void 0!==e||\"flags\"in ns||ut(t,\"flags\")||!U(ns,t)?e:f(rs,t)},is=i.RegExp,as=a(function(){var t=is(\"a\",\"y\");return t.lastIndex=2,null!==t.exec(\"abcd\")}),us=as||a(function(){return!is(\"a\",\"y\").sticky}),ss=as||a(function(){var t=is(\"^r\",\"gy\");return t.lastIndex=2,null!==t.exec(\"str\")}),cs={BROKEN_CARET:ss,MISSED_STICKY:us,UNSUPPORTED_Y:as},fs=Ct.f,ls=function(t,e,r){r in t||fs(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})},hs=i.RegExp,ps=a(function(){var t=hs(\".\",\"s\");return!(t.dotAll&&t.test(\"\\n\")&&\"s\"===t.flags)}),vs=i.RegExp,ds=a(function(){var t=vs(\"(?<a>b)\",\"g\");return\"b\"!==t.exec(\"b\").groups.a||\"bc\"!==\"b\".replace(t,\"$<a>c\")}),gs=Oe.f,ys=ne.enforce,ms=dt(\"match\"),bs=i.RegExp,ws=bs.prototype,Ss=i.SyntaxError,Es=b(ws.exec),Os=b(\"\".charAt),xs=b(\"\".replace),Rs=b(\"\".indexOf),Ps=b(\"\".slice),As=/^\\?<[^\\s\\d!#%&*+<=>@^][^\\s!#%&*+<=>@^]*>/,js=/a/g,ks=/a/g,Is=new bs(js)!==js,Ts=cs.MISSED_STICKY,Ms=cs.UNSUPPORTED_Y,Ls=u&&(!Is||Ts||ps||ds||a(function(){return ks[ms]=!1,bs(js)!==js||bs(ks)===ks||\"/a/i\"!==String(bs(js,\"i\"))}));if(Ue(\"RegExp\",Ls)){for(var Us=function(t,e){var r,n,o,i,a,u,s=U(ws,this),c=es(t),f=void 0===e,l=[],h=t;if(!s&&c&&f&&t.constructor===Us)return t;if((c||U(ws,t))&&(t=t.source,f&&(e=os(h))),t=void 0===t?\"\":Wr(t),e=void 0===e?\"\":Wr(e),h=t,ps&&\"dotAll\"in js&&(n=!!e&&Rs(e,\"s\")>-1)&&(e=xs(e,/s/g,\"\")),r=e,Ts&&\"sticky\"in js&&(o=!!e&&Rs(e,\"y\")>-1)&&Ms&&(e=xs(e,/y/g,\"\")),ds&&(i=function(t){for(var e,r=t.length,n=0,o=\"\",i=[],a=Ve(null),u=!1,s=!1,c=0,f=\"\";n<=r;n++){if(\"\\\\\"===(e=Os(t,n)))e+=Os(t,++n);else if(\"]\"===e)u=!1;else if(!u)switch(!0){case\"[\"===e:u=!0;break;case\"(\"===e:if(o+=e,\"?:\"===Ps(t,n+1,n+3))continue;Es(As,Ps(t,n+1))&&(n+=2,s=!0),c++;continue;case\">\"===e&&s:if(\"\"===f||ut(a,f))throw new Ss(\"Invalid capture group name\");a[f]=!0,i[i.length]=[f,c],s=!1,f=\"\";continue}s?f+=e:o+=e}return[o,i]}(t),t=i[0],l=i[1]),a=Io(bs(t,e),s?this:ws,Us),(n||o||l.length)&&(u=ys(a),n&&(u.dotAll=!0,u.raw=Us(function(t){for(var e,r=t.length,n=0,o=\"\",i=!1;n<=r;n++)\"\\\\\"!==(e=Os(t,n))?i||\".\"!==e?(\"[\"===e?i=!0:\"]\"===e&&(i=!1),o+=e):o+=\"[\\\\s\\\\S]\":o+=e+Os(t,++n);return o}(t),r)),o&&(u.sticky=!0),l.length&&(u.groups=l)),t!==h)try{_t(a,\"source\",\"\"===h?\"(?:)\":h)}catch(t){}return a},Ns=gs(bs),Cs=0;Ns.length>Cs;)ls(Us,bs,Ns[Cs++]);ws.constructor=Us,Us.prototype=ws,ie(i,\"RegExp\",Us,{constructor:!0})}Uo(\"RegExp\");var _s=zt.PROPER,Fs=\"toString\",Bs=RegExp.prototype,Ds=Bs[Fs];(a(function(){return\"/a/b\"!==Ds.call({source:\"a\",flags:\"b\"})})||_s&&Ds.name!==Fs)&&ie(Bs,Fs,function(){var t=kt(this);return\"/\"+Wr(t.source)+\"/\"+Wr(os(t))},{unsafe:!0});var zs=ne.get,Ws=RegExp.prototype,qs=TypeError;u&&ps&&so(Ws,\"dotAll\",{configurable:!0,get:function(){if(this!==Ws){if(\"RegExp\"===E(this))return!!zs(this).dotAll;throw new qs(\"Incompatible receiver, RegExp required\")}}});var Hs=ne.get,$s=nt(\"native-string-replace\",String.prototype.replace),Ks=RegExp.prototype.exec,Gs=Ks,Vs=b(\"\".charAt),Ys=b(\"\".indexOf),Xs=b(\"\".replace),Js=b(\"\".slice),Qs=function(){var t=/a/,e=/b*/g;return f(Ks,t,\"a\"),f(Ks,e,\"a\"),0!==t.lastIndex||0!==e.lastIndex}(),Zs=cs.BROKEN_CARET,tc=void 0!==/()??/.exec(\"\")[1];(Qs||tc||Zs||ps||ds)&&(Gs=function(t){var e,r,n,o,i,a,u,s=this,c=Hs(s),l=Wr(t),h=c.raw;if(h)return h.lastIndex=s.lastIndex,e=f(Gs,h,l),s.lastIndex=h.lastIndex,e;var p=c.groups,v=Zs&&s.sticky,d=f(rs,s),g=s.source,y=0,m=l;if(v&&(d=Xs(d,\"y\",\"\"),-1===Ys(d,\"g\")&&(d+=\"g\"),m=Js(l,s.lastIndex),s.lastIndex>0&&(!s.multiline||s.multiline&&\"\\n\"!==Vs(l,s.lastIndex-1))&&(g=\"(?: \"+g+\")\",m=\" \"+m,y++),r=new RegExp(\"^(?:\"+g+\")\",d)),tc&&(r=new RegExp(\"^\"+g+\"$(?!\\\\s)\",d)),Qs&&(n=s.lastIndex),o=f(Ks,v?r:s,m),v?o?(o.input=Js(o.input,y),o[0]=Js(o[0],y),o.index=s.lastIndex,s.lastIndex+=o[0].length):s.lastIndex=0:Qs&&o&&(s.lastIndex=s.global?o.index+o[0].length:n),tc&&o&&o.length>1&&f($s,o[0],r,function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)}),o&&p)for(o.groups=a=Ve(null),i=0;i<p.length;i++)a[(u=p[i])[0]]=o[u[1]];return o});var ec=Gs;Ce({target:\"RegExp\",proto:!0,forced:/./.exec!==ec},{exec:ec});var rc=i.RegExp,nc=rc.prototype;u&&a(function(){var t=!0;try{rc(\".\",\"d\")}catch(e){t=!1}var e={},r=\"\",n=t?\"dgimsy\":\"gimsy\",o=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},i={dotAll:\"s\",global:\"g\",ignoreCase:\"i\",multiline:\"m\",sticky:\"y\"};for(var a in t&&(i.hasIndices=\"d\"),i)o(a,i[a]);return Object.getOwnPropertyDescriptor(nc,\"flags\").get.call(e)!==n||r!==n})&&so(nc,\"flags\",{configurable:!0,get:rs});var oc=ne.get,ic=RegExp.prototype,ac=TypeError;u&&cs.MISSED_STICKY&&so(ic,\"sticky\",{configurable:!0,get:function(){if(this!==ic){if(\"RegExp\"===E(this))return!!oc(this).sticky;throw new ac(\"Incompatible receiver, RegExp required\")}}});var uc,sc,cc=(uc=!1,(sc=/[ac]/).exec=function(){return uc=!0,/./.exec.apply(this,arguments)},!0===sc.test(\"abc\")&&uc),fc=/./.test;Ce({target:\"RegExp\",proto:!0,forced:!cc},{test:function(t){var e=kt(this),r=Wr(t),n=e.exec;if(!T(n))return f(fc,e,r);var o=f(n,e,r);return null!==o&&(kt(o),!0)}});var lc=dt(\"species\"),hc=RegExp.prototype,pc=function(t,e,r,n){var o=dt(t),i=!a(function(){var e={};return e[o]=function(){return 7},7!==\"\"[t](e)}),u=i&&!a(function(){var e=!1,r=/a/;return\"split\"===t&&((r={}).constructor={},r.constructor[lc]=function(){return r},r.flags=\"\",r[o]=/./[o]),r.exec=function(){return e=!0,null},r[o](\"\"),!e});if(!i||!u||r){var s=/./[o],c=e(o,\"\"[t],function(t,e,r,n,o){var a=e.exec;return a===ec||a===hc.exec?i&&!o?{done:!0,value:f(s,e,r,n)}:{done:!0,value:f(t,r,e,n)}:{done:!1}});ie(String.prototype,t,c[0]),ie(hc,o,c[1])}n&&_t(hc[o],\"sham\",!0)},vc=Gr.charAt,dc=function(t,e,r){return e+(r?vc(t,e).length:1)},gc=TypeError,yc=function(t,e){var r=t.exec;if(T(r)){var n=f(r,t,e);return null!==n&&kt(n),n}if(\"RegExp\"===E(t))return f(ec,t,e);throw new gc(\"RegExp#exec called on incompatible receiver\")};pc(\"match\",function(t,e,r){return[function(e){var r=j(this),n=P(e)?void 0:Q(e,t);return n?f(n,e,r):new RegExp(e)[t](Wr(r))},function(t){var n=kt(this),o=Wr(t),i=r(e,n,o);if(i.done)return i.value;if(!n.global)return yc(n,o);var a=n.unicode;n.lastIndex=0;for(var u,s=[],c=0;null!==(u=yc(n,o));){var f=Wr(u[0]);s[c]=f,\"\"===f&&(n.lastIndex=dc(o,ve(n.lastIndex),a)),c++}return 0===c?null:s}]});var mc=Math.floor,bc=b(\"\".charAt),wc=b(\"\".replace),Sc=b(\"\".slice),Ec=/\\$([$&'`]|\\d{1,2}|<[^>]*>)/g,Oc=/\\$([$&'`]|\\d{1,2})/g,xc=function(t,e,r,n,o,i){var a=r+t.length,u=n.length,s=Oc;return void 0!==o&&(o=it(o),s=Ec),wc(i,s,function(i,s){var c;switch(bc(s,0)){case\"$\":return\"$\";case\"&\":return t;case\"`\":return Sc(e,0,r);case\"'\":return Sc(e,a);case\"<\":c=o[Sc(s,1,-1)];break;default:var f=+s;if(0===f)return i;if(f>u){var l=mc(f/10);return 0===l?i:l<=u?void 0===n[l-1]?bc(s,1):n[l-1]+bc(s,1):i}c=n[f-1]}return void 0===c?\"\":c})},Rc=dt(\"replace\"),Pc=Math.max,Ac=Math.min,jc=b([].concat),kc=b([].push),Ic=b(\"\".indexOf),Tc=b(\"\".slice),Mc=\"$0\"===\"a\".replace(/./,\"$0\"),Lc=!!/./[Rc]&&\"\"===/./[Rc](\"a\",\"$0\"),Uc=!a(function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:\"7\"},t},\"7\"!==\"\".replace(t,\"$<a>\")});pc(\"replace\",function(t,e,r){var n=Lc?\"$\":\"$0\";return[function(t,r){var n=j(this),o=P(t)?void 0:Q(t,Rc);return o?f(o,t,n,r):f(e,Wr(n),t,r)},function(t,o){var i=kt(this),a=Wr(t);if(\"string\"==typeof o&&-1===Ic(o,n)&&-1===Ic(o,\"$<\")){var u=r(e,i,a,o);if(u.done)return u.value}var s=T(o);s||(o=Wr(o));var c,f=i.global;f&&(c=i.unicode,i.lastIndex=0);for(var l,h=[];null!==(l=yc(i,a))&&(kc(h,l),f);)\"\"===Wr(l[0])&&(i.lastIndex=dc(a,ve(i.lastIndex),c));for(var p,v=\"\",d=0,g=0;g<h.length;g++){for(var y,m=Wr((l=h[g])[0]),b=Pc(Ac(ce(l.index),a.length),0),w=[],S=1;S<l.length;S++)kc(w,void 0===(p=l[S])?p:String(p));var E=l.groups;if(s){var O=jc([m],w,b,a);void 0!==E&&kc(O,E),y=Wr(Ra(o,void 0,O))}else y=xc(m,a,b,w,E,o);b>=d&&(v+=Tc(a,d,b)+y,d=b+m.length)}return v+Tc(a,d)}]},!Uc||!Mc||Lc),pc(\"search\",function(t,e,r){return[function(e){var r=j(this),n=P(e)?void 0:Q(e,t);return n?f(n,e,r):new RegExp(e)[t](Wr(r))},function(t){var n=kt(this),o=Wr(t),i=r(e,n,o);if(i.done)return i.value;var a=n.lastIndex;wa(a,0)||(n.lastIndex=0);var u=yc(n,o);return wa(n.lastIndex,a)||(n.lastIndex=a),null===u?-1:u.index}]});var Nc=dt(\"species\"),Cc=function(t,e){var r,n=kt(t).constructor;return void 0===n||P(r=kt(n)[Nc])?e:La(r)},_c=cs.UNSUPPORTED_Y,Fc=Math.min,Bc=b([].push),Dc=b(\"\".slice),zc=!a(function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r=\"ab\".split(t);return 2!==r.length||\"a\"!==r[0]||\"b\"!==r[1]}),Wc=\"c\"===\"abbc\".split(/(b)*/)[1]||4!==\"test\".split(/(?:)/,-1).length||2!==\"ab\".split(/(?:ab)*/).length||4!==\".\".split(/(.?)(.?)/).length||\".\".split(/()()/).length>1||\"\".split(/.?/).length;pc(\"split\",function(t,e,r){var n=\"0\".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:f(e,this,t,r)}:e;return[function(e,r){var o=j(this),i=P(e)?void 0:Q(e,t);return i?f(i,e,o,r):f(n,Wr(o),e,r)},function(t,o){var i=kt(this),a=Wr(t);if(!Wc){var u=r(n,i,a,o,n!==e);if(u.done)return u.value}var s=Cc(i,RegExp),c=i.unicode,f=new s(_c?\"^(?:\"+i.source+\")\":i,(i.ignoreCase?\"i\":\"\")+(i.multiline?\"m\":\"\")+(i.unicode?\"u\":\"\")+(_c?\"g\":\"y\")),l=void 0===o?4294967295:o>>>0;if(0===l)return[];if(0===a.length)return null===yc(f,a)?[a]:[];for(var h=0,p=0,v=[];p<a.length;){f.lastIndex=_c?0:p;var d,g=yc(f,_c?Dc(a,p):a);if(null===g||(d=Fc(ve(f.lastIndex+(_c?p:0)),a.length))===h)p=dc(a,p,c);else{if(Bc(v,Dc(a,h,p)),v.length===l)return v;for(var y=1;y<=g.length-1;y++)if(Bc(v,g[y]),v.length===l)return v;p=h=d}}return Bc(v,Dc(a,h)),v}]},Wc||!zc,_c);var qc=TypeError,Hc=RangeError,$c=function(t){var e=Wr(j(this)),r=\"\",n=ce(t);if(n<0||Infinity===n)throw new Hc(\"Wrong number of repetitions\");for(;n>0;(n>>>=1)&&(e+=e))1&n&&(r+=e);return r},Kc=b($c),Gc=b(\"\".slice),Vc=Math.ceil,Yc=function(t){return function(e,r,n){var o,i,a=Wr(j(e)),u=ve(r),s=a.length,c=void 0===n?\" \":Wr(n);return u<=s||\"\"===c?a:((i=Kc(c,Vc((o=u-s)/c.length))).length>o&&(i=Gc(i,0,o)),t?a+i:i+a)}},Xc={start:Yc(!1),end:Yc(!0)},Jc=Xc.start,Qc=Array,Zc=RegExp.escape,tf=b(\"\".charAt),ef=b(\"\".charCodeAt),rf=b(1.1.toString),nf=b([].join),of=/^[0-9a-z]/i,af=/^[$()*+./?[\\\\\\]^{|}]/,uf=RegExp(\"^[!\\\"#%&',\\\\-:;<=>@`~\"+Mi+\"]\"),sf=b(of.exec),cf={\"\\t\":\"t\",\"\\n\":\"n\",\"\\v\":\"v\",\"\\f\":\"f\",\"\\r\":\"r\"},ff=function(t){var e=rf(ef(t,0),16);return e.length<3?\"\\\\x\"+Jc(e,2,\"0\"):\"\\\\u\"+Jc(e,4,\"0\")},lf=!Zc||\"\\\\x61b\"!==Zc(\"ab\");Ce({target:\"RegExp\",stat:!0,forced:lf},{escape:function(t){!function(t){if(\"string\"==typeof t)return t;throw new qc(\"Argument is not a string\")}(t);for(var e=t.length,r=Qc(e),n=0;n<e;n++){var o=tf(t,n);if(0===n&&sf(of,o))r[n]=ff(o);else if(ut(cf,o))r[n]=\"\\\\\"+cf[o];else if(sf(af,o))r[n]=\"\\\\\"+o;else if(sf(uf,o))r[n]=ff(o);else{var i=ef(o,0);55296!=(63488&i)?r[n]=o:i>=56320||n+1>=e||56320!=(64512&ef(t,n+1))?r[n]=ff(o):(r[n]=o,r[++n]=tf(t,n))}}return nf(r,\"\")}}),To(\"Set\",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},Fo);var hf=Set.prototype,pf={Set:Set,add:b(hf.add),has:b(hf.has),remove:b(hf.delete),proto:hf},vf=pf.has,df=function(t){return vf(t),t},gf=pf.Set,yf=pf.proto,mf=b(yf.forEach),bf=b(yf.keys),wf=bf(new gf).next,Sf=function(t,e,r){return r?ci({iterator:bf(t),next:wf},e):mf(t,e)},Ef=pf.Set,Of=pf.add,xf=function(t){var e=new Ef;return Sf(t,function(t){Of(e,t)}),e},Rf=ln(pf.proto,\"size\",\"get\")||function(t){return t.size},Pf=\"Invalid size\",Af=RangeError,jf=TypeError,kf=Math.max,If=function(t,e){this.set=t,this.size=kf(e,0),this.has=J(t.has),this.keys=J(t.keys)};If.prototype={getIterator:function(){return{iterator:t=kt(f(this.keys,this.set)),next:t.next,done:!1};var t},includes:function(t){return f(this.has,this.set,t)}};var Tf=function(t){kt(t);var e=+t.size;if(e!=e)throw new jf(Pf);var r=ce(e);if(r<0)throw new Af(Pf);return new If(t,r)},Mf=pf.has,Lf=pf.remove,Uf=function(t){var e=df(this),r=Tf(t),n=xf(e);return Rf(e)<=r.size?Sf(e,function(t){r.includes(t)&&Lf(n,t)}):ci(r.getIterator(),function(t){Mf(e,t)&&Lf(n,t)}),n},Nf=function(t){return{size:t,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}},Cf=function(t){var e=L(\"Set\");try{(new e)[t](Nf(0));try{return(new e)[t](Nf(-1)),!1}catch(t){return!0}}catch(t){return!1}};Ce({target:\"Set\",proto:!0,real:!0,forced:!Cf(\"difference\")},{difference:Uf});var _f=pf.Set,Ff=pf.add,Bf=pf.has,Df=function(t){var e=df(this),r=Tf(t),n=new _f;return Rf(e)>r.size?ci(r.getIterator(),function(t){Bf(e,t)&&Ff(n,t)}):Sf(e,function(t){r.includes(t)&&Ff(n,t)}),n},zf=!Cf(\"intersection\")||a(function(){return\"3,2\"!==String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))});Ce({target:\"Set\",proto:!0,real:!0,forced:zf},{intersection:Df});var Wf=pf.has,qf=function(t){var e=df(this),r=Tf(t);if(Rf(e)<=r.size)return!1!==Sf(e,function(t){if(r.includes(t))return!1},!0);var n=r.getIterator();return!1!==ci(n,function(t){if(Wf(e,t))return Tn(n,\"normal\",!1)})};Ce({target:\"Set\",proto:!0,real:!0,forced:!Cf(\"isDisjointFrom\")},{isDisjointFrom:qf});var Hf=function(t){var e=df(this),r=Tf(t);return!(Rf(e)>r.size)&&!1!==Sf(e,function(t){if(!r.includes(t))return!1},!0)};Ce({target:\"Set\",proto:!0,real:!0,forced:!Cf(\"isSubsetOf\")},{isSubsetOf:Hf});var $f=pf.has,Kf=function(t){var e=df(this),r=Tf(t);if(Rf(e)<r.size)return!1;var n=r.getIterator();return!1!==ci(n,function(t){if(!$f(e,t))return Tn(n,\"normal\",!1)})};Ce({target:\"Set\",proto:!0,real:!0,forced:!Cf(\"isSupersetOf\")},{isSupersetOf:Kf});var Gf=pf.add,Vf=pf.has,Yf=pf.remove,Xf=function(t){var e=df(this),r=Tf(t).getIterator(),n=xf(e);return ci(r,function(t){Vf(e,t)?Yf(n,t):Gf(n,t)}),n};Ce({target:\"Set\",proto:!0,real:!0,forced:!Cf(\"symmetricDifference\")},{symmetricDifference:Xf});var Jf=pf.add,Qf=function(t){var e=df(this),r=Tf(t).getIterator(),n=xf(e);return ci(r,function(t){Jf(n,t)}),n};Ce({target:\"Set\",proto:!0,real:!0,forced:!Cf(\"union\")},{union:Qf}),Ce({target:\"Set\",stat:!0,forced:!0},{from:ei(pf.Set,pf.add,!1)}),Ce({target:\"Set\",stat:!0,forced:!0},{of:ri(pf.Set,pf.add,!1)});var Zf=pf.add;Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{addAll:function(){for(var t=df(this),e=0,r=arguments.length;e<r;e++)Zf(t,arguments[e]);return t}});var tl=pf.remove;Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var t,e=df(this),r=!0,n=0,o=arguments.length;n<o;n++)t=tl(e,arguments[n]),r=r&&t;return!!r}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{every:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0);return!1!==Sf(e,function(t){if(!r(t,t,e))return!1},!0)}});var el=dt(\"iterator\"),rl=Object,nl=L(\"Set\"),ol=function(t){return function(t){return M(t)&&\"number\"==typeof t.size&&T(t.has)&&T(t.keys)}(t)?t:function(t){if(P(t))return!1;var e=rl(t);return void 0!==e[el]||\"@@iterator\"in e||ut(un,pr(e))}(t)?new nl(t):t};Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{difference:function(t){return f(Uf,this,ol(t))}});var il=pf.Set,al=pf.add;Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{filter:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new il;return Sf(e,function(t){r(t,t,e)&&al(n,t)}),n}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{find:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=Sf(e,function(t){if(r(t,t,e))return{value:t}},!0);return n&&n.value}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{intersection:function(t){return f(Df,this,ol(t))}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{isDisjointFrom:function(t){return f(qf,this,ol(t))}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{isSubsetOf:function(t){return f(Hf,this,ol(t))}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{isSupersetOf:function(t){return f(Kf,this,ol(t))}});var ul=b([].join),sl=b([].push);Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{join:function(t){var e=df(this),r=void 0===t?\",\":Wr(t),n=[];return Sf(e,function(t){sl(n,t)}),ul(n,r)}});var cl=pf.Set,fl=pf.add;Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{map:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0),n=new cl;return Sf(e,function(t){fl(n,r(t,t,e))}),n}});var ll=TypeError;Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{reduce:function(t){var e=df(this),r=arguments.length<2,n=r?void 0:arguments[1];if(J(t),Sf(e,function(o){r?(r=!1,n=o):n=t(n,o,o,e)}),r)throw new ll(\"Reduce of empty set with no initial value\");return n}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{some:function(t){var e=df(this),r=ar(t,arguments.length>1?arguments[1]:void 0);return!0===Sf(e,function(t){if(r(t,t,e))return!0},!0)}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{symmetricDifference:function(t){return f(Xf,this,ol(t))}}),Ce({target:\"Set\",proto:!0,real:!0,forced:!0},{union:function(t){return f(Qf,this,ol(t))}});var hl=dt(\"species\"),pl=dt(\"isConcatSpreadable\"),vl=W>=51||!a(function(){var t=[];return t[pl]=!1,t.concat()[0]!==t}),dl=function(t){if(!M(t))return!1;var e=t[pl];return void 0!==e?!!e:ur(t)},gl=!(vl&&(W>=51||!a(function(){var t=[];return(t.constructor={})[hl]=function(){return{foo:1}},1!==t.concat(Boolean).foo})));Ce({target:\"Array\",proto:!0,arity:1,forced:gl},{concat:function(t){var e,r,n,o,i,a=it(this),u=xr(a,0),s=0;for(e=-1,n=arguments.length;e<n;e++)if(dl(i=-1===e?a:arguments[e]))for(o=de(i),Nr(s+o),r=0;r<o;r++,s++)r in i&&Cn(u,s,i[r]);else Nr(s+1),Cn(u,s++,i);return u.length=s,u}});var yl={f:dt},ml=Ct.f,bl=function(t){var e=Yn.Symbol||(Yn.Symbol={});ut(e,t)||ml(e,t,{value:yl.f(t)})},wl=function(){var t=L(\"Symbol\"),e=t&&t.prototype,r=e&&e.valueOf,n=dt(\"toPrimitive\");e&&!e[n]&&ie(e,n,function(t){return f(r,this)},{arity:1})},Sl=Ar.forEach,El=Xt(\"hidden\"),Ol=\"Symbol\",xl=\"prototype\",Rl=ne.set,Pl=ne.getterFor(Ol),Al=Object[xl],jl=i.Symbol,kl=jl&&jl[xl],Il=i.RangeError,Tl=i.TypeError,Ml=i.QObject,Ll=Rt.f,Ul=Ct.f,Nl=mo.f,Cl=v.f,_l=b([].push),Fl=nt(\"symbols\"),Bl=nt(\"op-symbols\"),Dl=nt(\"wks\"),zl=!Ml||!Ml[xl]||!Ml[xl].findChild,Wl=function(t,e,r){var n=Ll(Al,e);n&&delete Al[e],Ul(t,e,r),n&&t!==Al&&Ul(Al,e,n)},ql=u&&a(function(){return 7!==Ve(Ul({},\"a\",{get:function(){return Ul(this,\"a\",{value:7}).a}})).a})?Wl:Ul,Hl=function(t,e){var r=Fl[t]=Ve(kl);return Rl(r,{type:Ol,tag:t,description:e}),u||(r.description=e),r},$l=function(t,e,r){t===Al&&$l(Bl,e,r),kt(t);var n=bt(e);return kt(r),ut(Fl,n)?(r.enumerable?(ut(t,El)&&t[El][n]&&(t[El][n]=!1),r=Ve(r,{enumerable:d(0,!1)})):(ut(t,El)||Ul(t,El,d(1,Ve(null))),t[El][n]=!0),ql(t,n,r)):Ul(t,n,r)},Kl=function(t,e){kt(t);var r=k(e),n=_e(r).concat(Xl(r));return Sl(n,function(e){u&&!f(Gl,r,e)||$l(t,e,r[e])}),t},Gl=function(t){var e=bt(t),r=f(Cl,this,e);return!(this===Al&&ut(Fl,e)&&!ut(Bl,e))&&(!(r||!ut(this,e)||!ut(Fl,e)||ut(this,El)&&this[El][e])||r)},Vl=function(t,e){var r=k(t),n=bt(e);if(r!==Al||!ut(Fl,n)||ut(Bl,n)){var o=Ll(r,n);return!o||!ut(Fl,n)||ut(r,El)&&r[El][n]||(o.enumerable=!0),o}},Yl=function(t){var e=Nl(k(t)),r=[];return Sl(e,function(t){ut(Fl,t)||ut(Jt,t)||_l(r,t)}),r},Xl=function(t){var e=t===Al,r=Nl(e?Bl:k(t)),n=[];return Sl(r,function(t){!ut(Fl,t)||e&&!ut(Al,t)||_l(n,Fl[t])}),n};H||(jl=function(){if(U(kl,this))throw new Tl(\"Symbol is not a constructor\");var t=arguments.length&&void 0!==arguments[0]?Wr(arguments[0]):void 0,e=lt(t),r=function(t){var n=void 0===this?i:this;n===Al&&f(r,Bl,t),ut(n,El)&&ut(n[El],e)&&(n[El][e]=!1);var o=d(1,t);try{ql(n,e,o)}catch(t){if(!(t instanceof Il))throw t;Wl(n,e,o)}};return u&&zl&&ql(Al,e,{configurable:!0,set:r}),Hl(e,t)},ie(kl=jl[xl],\"toString\",function(){return Pl(this).tag}),ie(jl,\"withoutSetter\",function(t){return Hl(lt(t),t)}),v.f=Gl,Ct.f=$l,Be.f=Kl,Rt.f=Vl,Oe.f=mo.f=Yl,xe.f=Xl,yl.f=function(t){return Hl(dt(t),t)},u&&(so(kl,\"description\",{configurable:!0,get:function(){return Pl(this).description}}),ie(Al,\"propertyIsEnumerable\",Gl,{unsafe:!0}))),Ce({global:!0,constructor:!0,wrap:!0,forced:!H,sham:!H},{Symbol:jl}),Sl(_e(Dl),function(t){bl(t)}),Ce({target:Ol,stat:!0,forced:!H},{useSetter:function(){zl=!0},useSimple:function(){zl=!1}}),Ce({target:\"Object\",stat:!0,forced:!H,sham:!u},{create:function(t,e){return void 0===e?Ve(t):Kl(Ve(t),e)},defineProperty:$l,defineProperties:Kl,getOwnPropertyDescriptor:Vl}),Ce({target:\"Object\",stat:!0,forced:!H},{getOwnPropertyNames:Yl}),wl(),an(jl,Ol),Jt[El]=!0;var Jl=H&&!!Symbol.for&&!!Symbol.keyFor,Ql=nt(\"string-to-symbol-registry\"),Zl=nt(\"symbol-to-string-registry\");Ce({target:\"Symbol\",stat:!0,forced:!Jl},{for:function(t){var e=Wr(t);if(ut(Ql,e))return Ql[e];var r=L(\"Symbol\")(e);return Ql[e]=r,Zl[r]=e,r}});var th=nt(\"symbol-to-string-registry\");Ce({target:\"Symbol\",stat:!0,forced:!Jl},{keyFor:function(t){if(!G(t))throw new TypeError(Y(t)+\" is not a symbol\");if(ut(th,t))return th[t]}});var eh=b([].push),rh=String,nh=L(\"JSON\",\"stringify\"),oh=b(/./.exec),ih=b(\"\".charAt),ah=b(\"\".charCodeAt),uh=b(\"\".replace),sh=b(1..toString),ch=/[\\uD800-\\uDFFF]/g,fh=/^[\\uD800-\\uDBFF]$/,lh=/^[\\uDC00-\\uDFFF]$/,hh=!H||a(function(){var t=L(\"Symbol\")(\"stringify detection\");return\"[null]\"!==nh([t])||\"{}\"!==nh({a:t})||\"{}\"!==nh(Object(t))}),ph=a(function(){return'\"\\\\udf06\\\\ud834\"'!==nh(\"\\udf06\\ud834\")||'\"\\\\udead\"'!==nh(\"\\udead\")}),vh=function(t,e){var r=vo(arguments),n=function(t){if(T(t))return t;if(ur(t)){for(var e=t.length,r=[],n=0;n<e;n++){var o=t[n];\"string\"==typeof o?eh(r,o):\"number\"!=typeof o&&\"Number\"!==E(o)&&\"String\"!==E(o)||eh(r,Wr(o))}var i=r.length,a=!0;return function(t,e){if(a)return a=!1,e;if(ur(this))return e;for(var n=0;n<i;n++)if(r[n]===t)return e}}}(e);if(T(n)||void 0!==t&&!G(t))return r[1]=function(t,e){if(T(n)&&(e=f(n,this,rh(t),e)),!G(e))return e},Ra(nh,null,r)},dh=function(t,e,r){var n=ih(r,e-1),o=ih(r,e+1);return oh(fh,t)&&!oh(lh,o)||oh(lh,t)&&!oh(fh,n)?\"\\\\u\"+sh(ah(t,0),16):t};nh&&Ce({target:\"JSON\",stat:!0,arity:3,forced:hh||ph},{stringify:function(t,e,r){var n=vo(arguments),o=Ra(hh?vh:nh,null,n);return ph&&\"string\"==typeof o?uh(o,ch,dh):o}});var gh=!H||a(function(){xe.f(1)});Ce({target:\"Object\",stat:!0,forced:gh},{getOwnPropertySymbols:function(t){var e=xe.f;return e?e(it(t)):[]}}),bl(\"asyncIterator\");var yh=i.Symbol,mh=yh&&yh.prototype;if(u&&T(yh)&&(!(\"description\"in mh)||void 0!==yh().description)){var bh={},wh=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:Wr(arguments[0]),e=U(mh,this)?new yh(t):void 0===t?yh():yh(t);return\"\"===t&&(bh[e]=!0),e};Ae(wh,yh),wh.prototype=mh,mh.constructor=wh;var Sh=\"Symbol(description detection)\"===String(yh(\"description detection\")),Eh=b(mh.valueOf),Oh=b(mh.toString),xh=/^Symbol\\((.*)\\)[^)]+$/,Rh=b(\"\".replace),Ph=b(\"\".slice);so(mh,\"description\",{configurable:!0,get:function(){var t=Eh(this);if(ut(bh,t))return\"\";var e=Oh(t),r=Sh?Ph(e,7,-1):Rh(e,xh,\"$1\");return\"\"===r?void 0:r}}),Ce({global:!0,constructor:!0,forced:!0},{Symbol:wh})}bl(\"hasInstance\"),bl(\"isConcatSpreadable\"),bl(\"iterator\"),bl(\"match\"),bl(\"matchAll\"),bl(\"replace\"),bl(\"search\"),bl(\"species\"),bl(\"split\"),bl(\"toPrimitive\"),wl(),bl(\"toStringTag\"),an(L(\"Symbol\"),\"Symbol\"),bl(\"unscopables\"),an(i.JSON,\"JSON\",!0),an(Math,\"Math\",!0);var Ah=Ct.f,jh=dt(\"metadata\"),kh=Function.prototype;void 0===kh[jh]&&Ah(kh,jh,{value:null});var Ih=Ct.f,Th=Rt.f,Mh=i.Symbol;if(bl(\"asyncDispose\"),Mh){var Lh=Th(Mh,\"asyncDispose\");Lh.enumerable&&Lh.configurable&&Lh.writable&&Ih(Mh,\"asyncDispose\",{value:Lh.value,enumerable:!1,configurable:!1,writable:!1})}var Uh=Ct.f,Nh=Rt.f,Ch=i.Symbol;if(bl(\"dispose\"),Ch){var _h=Nh(Ch,\"dispose\");_h.enumerable&&_h.configurable&&_h.writable&&Uh(Ch,\"dispose\",{value:_h.value,enumerable:!1,configurable:!1,writable:!1})}bl(\"metadata\");var Fh=L(\"Symbol\"),Bh=Fh.keyFor,Dh=b(Fh.prototype.valueOf),zh=Fh.isRegisteredSymbol||function(t){try{return void 0!==Bh(Dh(t))}catch(t){return!1}};Ce({target:\"Symbol\",stat:!0},{isRegisteredSymbol:zh});for(var Wh=L(\"Symbol\"),qh=Wh.isWellKnownSymbol,Hh=L(\"Object\",\"getOwnPropertyNames\"),$h=b(Wh.prototype.valueOf),Kh=nt(\"wks\"),Gh=0,Vh=Hh(Wh),Yh=Vh.length;Gh<Yh;Gh++)try{var Xh=Vh[Gh];G(Wh[Xh])&&dt(Xh)}catch(t){}var Jh=function(t){if(qh&&qh(t))return!0;try{for(var e=$h(t),r=0,n=Hh(Kh),o=n.length;r<o;r++)if(Kh[n[r]]==e)return!0}catch(t){}return!1};Ce({target:\"Symbol\",stat:!0,forced:!0},{isWellKnownSymbol:Jh}),bl(\"customMatcher\"),bl(\"observable\"),Ce({target:\"Symbol\",stat:!0,name:\"isRegisteredSymbol\"},{isRegistered:zh}),Ce({target:\"Symbol\",stat:!0,name:\"isWellKnownSymbol\",forced:!0},{isWellKnown:Jh}),bl(\"matcher\"),bl(\"metadataKey\"),bl(\"patternMatch\"),bl(\"replaceAll\"),yl.f(\"asyncIterator\");var Qh=Gr.codeAt;Ce({target:\"String\",proto:!0},{codePointAt:function(t){return Qh(this,t)}}),Ze(\"String\",\"codePointAt\");var Zh=TypeError,tp=function(t){if(es(t))throw new Zh(\"The method doesn't accept regular expressions\");return t},ep=dt(\"match\"),rp=function(t){var e=/./;try{\"/./\"[t](e)}catch(r){try{return e[ep]=!1,\"/./\"[t](e)}catch(t){}}return!1},np=Rt.f,op=or(\"\".slice),ip=Math.min,ap=rp(\"endsWith\"),up=!ap&&!!function(){var t=np(String.prototype,\"endsWith\");return t&&!t.writable}();Ce({target:\"String\",proto:!0,forced:!up&&!ap},{endsWith:function(t){var e=Wr(j(this));tp(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,o=void 0===r?n:ip(ve(r),n),i=Wr(t);return op(e,o-i.length,o)===i}}),Ze(\"String\",\"endsWith\");var sp=RangeError,cp=String.fromCharCode,fp=String.fromCodePoint,lp=b([].join);Ce({target:\"String\",stat:!0,arity:1,forced:!!fp&&1!==fp.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,o=0;n>o;){if(e=+arguments[o++],he(e,1114111)!==e)throw new sp(e+\" is not a valid code point\");r[o]=e<65536?cp(e):cp(55296+((e-=65536)>>10),e%1024+56320)}return lp(r,\"\")}});var hp=b(\"\".indexOf);Ce({target:\"String\",proto:!0,forced:!rp(\"includes\")},{includes:function(t){return!!~hp(Wr(j(this)),Wr(tp(t)),arguments.length>1?arguments[1]:void 0)}}),Ze(\"String\",\"includes\"),b(un.String);var pp=/Version\\/10(?:\\.\\d+){1,2}(?: [\\w./]+)?(?: Mobile\\/\\w+)? Safari\\//.test(_),vp=Xc.start;Ce({target:\"String\",proto:!0,forced:pp},{padStart:function(t){return vp(this,t,arguments.length>1?arguments[1]:void 0)}}),Ze(\"String\",\"padStart\");var dp=Xc.end;Ce({target:\"String\",proto:!0,forced:pp},{padEnd:function(t){return dp(this,t,arguments.length>1?arguments[1]:void 0)}}),Ze(\"String\",\"padEnd\");var gp=b([].push),yp=b([].join);Ce({target:\"String\",stat:!0},{raw:function(t){var e=k(it(t).raw),r=de(e);if(!r)return\"\";for(var n=arguments.length,o=[],i=0;;){if(gp(o,Wr(e[i++])),i===r)return yp(o,\"\");i<n&&gp(o,Wr(arguments[i]))}}}),Ce({target:\"String\",proto:!0},{repeat:$c}),Ze(\"String\",\"repeat\");var mp=Rt.f,bp=or(\"\".slice),wp=Math.min,Sp=rp(\"startsWith\"),Ep=!Sp&&!!function(){var t=mp(String.prototype,\"startsWith\");return t&&!t.writable}();Ce({target:\"String\",proto:!0,forced:!Ep&&!Sp},{startsWith:function(t){var e=Wr(j(this));tp(t);var r=ve(wp(arguments.length>1?arguments[1]:void 0,e.length)),n=Wr(t);return bp(e,r,r+n.length)===n}}),Ze(\"String\",\"startsWith\");var Op=zt.PROPER,xp=function(t){return a(function(){return!!Mi[t]()||\"​…᠎\"!==\"​…᠎\"[t]()||Op&&Mi[t].name!==t})},Rp=_i.start,Pp=xp(\"trimStart\")?function(){return Rp(this)}:\"\".trimStart;Ce({target:\"String\",proto:!0,name:\"trimStart\",forced:\"\".trimLeft!==Pp},{trimLeft:Pp}),Ce({target:\"String\",proto:!0,name:\"trimStart\",forced:\"\".trimStart!==Pp},{trimStart:Pp}),Ze(\"String\",\"trimLeft\");var Ap=_i.end,jp=xp(\"trimEnd\")?function(){return Ap(this)}:\"\".trimEnd;Ce({target:\"String\",proto:!0,name:\"trimEnd\",forced:\"\".trimRight!==jp},{trimRight:jp}),Ce({target:\"String\",proto:!0,name:\"trimEnd\",forced:\"\".trimEnd!==jp},{trimEnd:jp}),Ze(\"String\",\"trimRight\");var kp=Object.getOwnPropertyDescriptor,Ip=function(t){if(!u)return i[t];var e=kp(i,t);return e&&e.value},Tp=dt(\"iterator\"),Mp=!a(function(){var t=new URL(\"b?a=1&b=2&c=3\",\"https://a\"),e=t.searchParams,r=new URLSearchParams(\"a=1&a=2&b=3\"),n=\"\";return t.pathname=\"c%20d\",e.forEach(function(t,r){e.delete(\"b\"),n+=r+t}),r.delete(\"a\",2),r.delete(\"b\",void 0),!e.size&&!u||!e.sort||\"https://a/c%20d?a=1&c=3\"!==t.href||\"3\"!==e.get(\"c\")||\"a=1\"!==String(new URLSearchParams(\"?a=1\"))||!e[Tp]||\"a\"!==new URL(\"https://a@b\").username||\"b\"!==new URLSearchParams(new URLSearchParams(\"a=b\")).get(\"a\")||\"xn--e1aybc\"!==new URL(\"https://тест\").host||\"#%D0%B1\"!==new URL(\"https://a#б\").hash||\"a1c3\"!==n||\"x\"!==new URL(\"https://x\",void 0).host}),Lp=TypeError,Up=function(t,e){if(t<e)throw new Lp(\"Not enough arguments\");return t},Np=Math.floor,Cp=function(t,e){var r=t.length;if(r<8)for(var n,o,i=1;i<r;){for(o=i,n=t[i];o&&e(t[o-1],n)>0;)t[o]=t[--o];o!==i++&&(t[o]=n)}else for(var a=Np(r/2),u=Cp(vo(t,0,a),e),s=Cp(vo(t,a),e),c=u.length,f=s.length,l=0,h=0;l<c||h<f;)t[l+h]=l<c&&h<f?e(u[l],s[h])<=0?u[l++]:s[h++]:l<c?u[l++]:s[h++];return t},_p=Cp,Fp=dt(\"iterator\"),Bp=\"URLSearchParams\",Dp=Bp+\"Iterator\",zp=ne.set,Wp=ne.getterFor(Bp),qp=ne.getterFor(Dp),Hp=Ip(\"fetch\"),$p=Ip(\"Request\"),Kp=Ip(\"Headers\"),Gp=$p&&$p.prototype,Vp=Kp&&Kp.prototype,Yp=i.TypeError,Xp=i.encodeURIComponent,Jp=String.fromCharCode,Qp=L(\"String\",\"fromCodePoint\"),Zp=parseInt,tv=b(\"\".charAt),ev=b([].join),rv=b([].push),nv=b(\"\".replace),ov=b([].shift),iv=b([].splice),av=b(\"\".split),uv=b(\"\".slice),sv=b(/./.exec),cv=/\\+/g,fv=/^[0-9a-f]+$/i,lv=function(t,e){var r=uv(t,e,e+2);return sv(fv,r)?Zp(r,16):NaN},hv=function(t){for(var e=0,r=128;r>0&&0!=(t&r);r>>=1)e++;return e},pv=function(t){var e=null;switch(t.length){case 1:e=t[0];break;case 2:e=(31&t[0])<<6|63&t[1];break;case 3:e=(15&t[0])<<12|(63&t[1])<<6|63&t[2];break;case 4:e=(7&t[0])<<18|(63&t[1])<<12|(63&t[2])<<6|63&t[3]}return e>1114111?null:e},vv=function(t){for(var e=(t=nv(t,cv,\" \")).length,r=\"\",n=0;n<e;){var o=tv(t,n);if(\"%\"===o){if(\"%\"===tv(t,n+1)||n+3>e){r+=\"%\",n++;continue}var i=lv(t,n+1);if(i!=i){r+=o,n++;continue}n+=2;var a=hv(i);if(0===a)o=Jp(i);else{if(1===a||a>4){r+=\"�\",n++;continue}for(var u=[i],s=1;s<a&&!(3+ ++n>e||\"%\"!==tv(t,n));){var c=lv(t,n+1);if(c!=c){n+=3;break}if(c>191||c<128)break;rv(u,c),n+=2,s++}if(u.length!==a){r+=\"�\";continue}var f=pv(u);null===f?r+=\"�\":o=Qp(f)}}r+=o,n++}return r},dv=/[!'()~]|%20/g,gv={\"!\":\"%21\",\"'\":\"%27\",\"(\":\"%28\",\")\":\"%29\",\"~\":\"%7E\",\"%20\":\"+\"},yv=function(t){return gv[t]},mv=function(t){return nv(Xp(t),dv,yv)},bv=fn(function(t,e){zp(this,{type:Dp,target:Wp(t).entries,index:0,kind:e})},Bp,function(){var t=qp(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=null,Pn(void 0,!0);var n=e[r];switch(t.kind){case\"keys\":return Pn(n.key,!1);case\"values\":return Pn(n.value,!1)}return Pn([n.key,n.value],!1)},!0),wv=function(t){this.entries=[],this.url=null,void 0!==t&&(M(t)?this.parseObject(t):this.parseQuery(\"string\"==typeof t?\"?\"===tv(t,0)?uv(t,1):t:Wr(t)))};wv.prototype={type:Bp,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,o,i,a,u,s=this.entries,c=Fn(t);if(c)for(r=(e=Dn(t,c)).next;!(n=f(r,e)).done;){if(o=Dn(kt(n.value)),(a=f(i=o.next,o)).done||(u=f(i,o)).done||!f(i,o).done)throw new Yp(\"Expected sequence with length 2\");rv(s,{key:Wr(a.value),value:Wr(u.value)})}else for(var l in t)ut(t,l)&&rv(s,{key:l,value:Wr(t[l])})},parseQuery:function(t){if(t)for(var e,r,n=this.entries,o=av(t,\"&\"),i=0;i<o.length;)(e=o[i++]).length&&(r=av(e,\"=\"),rv(n,{key:vv(ov(r)),value:vv(ev(r,\"=\"))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],rv(r,mv(t.key)+\"=\"+mv(t.value));return ev(r,\"&\")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var Sv=function(){ko(this,Ev);var t=zp(this,new wv(arguments.length>0?arguments[0]:void 0));u||(this.size=t.entries.length)},Ev=Sv.prototype;if(Mo(Ev,{append:function(t,e){var r=Wp(this);Up(arguments.length,2),rv(r.entries,{key:Wr(t),value:Wr(e)}),u||this.length++,r.updateURL()},delete:function(t){for(var e=Wp(this),r=Up(arguments.length,1),n=e.entries,o=Wr(t),i=r<2?void 0:arguments[1],a=void 0===i?i:Wr(i),s=0;s<n.length;){var c=n[s];if(c.key!==o||void 0!==a&&c.value!==a)s++;else if(iv(n,s,1),void 0!==a)break}u||(this.size=n.length),e.updateURL()},get:function(t){var e=Wp(this).entries;Up(arguments.length,1);for(var r=Wr(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=Wp(this).entries;Up(arguments.length,1);for(var r=Wr(t),n=[],o=0;o<e.length;o++)e[o].key===r&&rv(n,e[o].value);return n},has:function(t){for(var e=Wp(this).entries,r=Up(arguments.length,1),n=Wr(t),o=r<2?void 0:arguments[1],i=void 0===o?o:Wr(o),a=0;a<e.length;){var u=e[a++];if(u.key===n&&(void 0===i||u.value===i))return!0}return!1},set:function(t,e){var r=Wp(this);Up(arguments.length,1);for(var n,o=r.entries,i=!1,a=Wr(t),s=Wr(e),c=0;c<o.length;c++)(n=o[c]).key===a&&(i?iv(o,c--,1):(i=!0,n.value=s));i||rv(o,{key:a,value:s}),u||(this.size=o.length),r.updateURL()},sort:function(){var t=Wp(this);_p(t.entries,function(t,e){return t.key>e.key?1:-1}),t.updateURL()},forEach:function(t){for(var e,r=Wp(this).entries,n=ar(t,arguments.length>1?arguments[1]:void 0),o=0;o<r.length;)n((e=r[o++]).value,e.key,this)},keys:function(){return new bv(this,\"keys\")},values:function(){return new bv(this,\"values\")},entries:function(){return new bv(this,\"entries\")}},{enumerable:!0}),ie(Ev,Fp,Ev.entries,{name:\"entries\"}),ie(Ev,\"toString\",function(){return Wp(this).serialize()},{enumerable:!0}),u&&so(Ev,\"size\",{get:function(){return Wp(this).entries.length},configurable:!0,enumerable:!0}),an(Sv,Bp),Ce({global:!0,constructor:!0,forced:!Mp},{URLSearchParams:Sv}),!Mp&&T(Kp)){var Ov=b(Vp.has),xv=b(Vp.set),Rv=function(t){if(M(t)){var e,r=t.body;if(pr(r)===Bp)return e=t.headers?new Kp(t.headers):new Kp,Ov(e,\"content-type\")||xv(e,\"content-type\",\"application/x-www-form-urlencoded;charset=UTF-8\"),Ve(t,{body:d(0,Wr(r)),headers:d(0,e)})}return t};if(T(Hp)&&Ce({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return Hp(t,arguments.length>1?Rv(arguments[1]):{})}}),T($p)){var Pv=function(t){return ko(this,Gp),new $p(t,arguments.length>1?Rv(arguments[1]):{})};Gp.constructor=Pv,Pv.prototype=Gp,Ce({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:Pv})}}var Av={URLSearchParams:Sv,getState:Wp},jv=URLSearchParams,kv=jv.prototype,Iv=b(kv.append),Tv=b(kv.delete),Mv=b(kv.forEach),Lv=b([].push),Uv=new jv(\"a=1&a=2&b=3\");Uv.delete(\"a\",1),Uv.delete(\"b\",void 0),Uv+\"\"!=\"a=2\"&&ie(kv,\"delete\",function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return Tv(this,t);var n=[];Mv(this,function(t,e){Lv(n,{key:e,value:t})}),Up(e,1);for(var o,i=Wr(t),a=Wr(r),u=0,s=0,c=!1,f=n.length;u<f;)o=n[u++],c||o.key===i?(c=!0,Tv(this,o.key)):s++;for(;s<f;)(o=n[s++]).key===i&&o.value===a||Iv(this,o.key,o.value)},{enumerable:!0,unsafe:!0});var Nv=URLSearchParams,Cv=Nv.prototype,_v=b(Cv.getAll),Fv=b(Cv.has),Bv=new Nv(\"a=1\");!Bv.has(\"a\",2)&&Bv.has(\"a\",void 0)||ie(Cv,\"has\",function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return Fv(this,t);var n=_v(this,t);Up(e,1);for(var o=Wr(r),i=0;i<n.length;)if(n[i++]===o)return!0;return!1},{enumerable:!0,unsafe:!0});var Dv=URLSearchParams.prototype,zv=b(Dv.forEach);u&&!(\"size\"in Dv)&&so(Dv,\"size\",{get:function(){var t=0;return zv(this,function(){t++}),t},configurable:!0,enumerable:!0});var Wv,qv=Object.assign,Hv=Object.defineProperty,$v=b([].concat),Kv=!qv||a(function(){if(u&&1!==qv({b:1},qv(Hv({},\"a\",{enumerable:!0,get:function(){Hv(this,\"b\",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol(\"assign detection\"),n=\"abcdefghijklmnopqrst\";return t[r]=7,n.split(\"\").forEach(function(t){e[t]=t}),7!==qv({},t)[r]||_e(qv({},e)).join(\"\")!==n})?function(t,e){for(var r=it(t),n=arguments.length,o=1,i=xe.f,a=v.f;n>o;)for(var s,c=R(arguments[o++]),l=i?$v(_e(c),i(c)):_e(c),h=l.length,p=0;h>p;)s=l[p++],u&&!f(a,c,s)||(r[s]=c[s]);return r}:qv,Gv=2147483647,Vv=/[^\\0-\\u007E]/,Yv=/[.\\u3002\\uFF0E\\uFF61]/g,Xv=\"Overflow: input needs wider integers to process\",Jv=RangeError,Qv=b(Yv.exec),Zv=Math.floor,td=String.fromCharCode,ed=b(\"\".charCodeAt),rd=b([].join),nd=b([].push),od=b(\"\".replace),id=b(\"\".split),ad=b(\"\".toLowerCase),ud=function(t){return t+22+75*(t<26)},sd=function(t,e,r){var n=0;for(t=r?Zv(t/700):t>>1,t+=Zv(t/e);t>455;)t=Zv(t/35),n+=36;return Zv(n+36*t/(t+38))},cd=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var o=ed(t,r++);if(o>=55296&&o<=56319&&r<n){var i=ed(t,r++);56320==(64512&i)?nd(e,((1023&o)<<10)+(1023&i)+65536):(nd(e,o),r--)}else nd(e,o)}return e}(t);var r,n,o=t.length,i=128,a=0,u=72;for(r=0;r<t.length;r++)(n=t[r])<128&&nd(e,td(n));var s=e.length,c=s;for(s&&nd(e,\"-\");c<o;){var f=Gv;for(r=0;r<t.length;r++)(n=t[r])>=i&&n<f&&(f=n);var l=c+1;if(f-i>Zv((Gv-a)/l))throw new Jv(Xv);for(a+=(f-i)*l,i=f,r=0;r<t.length;r++){if((n=t[r])<i&&++a>Gv)throw new Jv(Xv);if(n===i){for(var h=a,p=36;;){var v=p<=u?1:p>=u+26?26:p-u;if(h<v)break;var d=h-v,g=36-v;nd(e,td(ud(v+d%g))),h=Zv(d/g),p+=36}nd(e,td(ud(h))),u=sd(a,l,c===s),a=0,c++}}a++,i++}return rd(e,\"\")},fd=Gr.codeAt,ld=ne.set,hd=ne.getterFor(\"URL\"),pd=Av.URLSearchParams,vd=Av.getState,dd=i.URL,gd=i.TypeError,yd=i.parseInt,md=Math.floor,bd=Math.pow,wd=b(\"\".charAt),Sd=b(/./.exec),Ed=b([].join),Od=b(1..toString),xd=b([].pop),Rd=b([].push),Pd=b(\"\".replace),Ad=b([].shift),jd=b(\"\".split),kd=b(\"\".slice),Id=b(\"\".toLowerCase),Td=b([].unshift),Md=\"Invalid scheme\",Ld=\"Invalid host\",Ud=\"Invalid port\",Nd=/[a-z]/i,Cd=/[\\d+-.a-z]/i,_d=/\\d/,Fd=/^0x/i,Bd=/^[0-7]+$/,Dd=/^\\d+$/,zd=/^[\\da-f]+$/i,Wd=/[\\0\\t\\n\\r #%/:<>?@[\\\\\\]^|]/,qd=/[\\0\\t\\n\\r #/:<>?@[\\\\\\]^|]/,Hd=/^[\\u0000-\\u0020]+/,$d=/(^|[^\\u0000-\\u0020])[\\u0000-\\u0020]+$/,Kd=/[\\t\\n\\r]/g,Gd=function(t){var e,r,n,o;if(\"number\"==typeof t){for(e=[],r=0;r<4;r++)Td(e,t%256),t=md(t/256);return Ed(e,\".\")}if(\"object\"==typeof t){for(e=\"\",n=function(t){for(var e=null,r=1,n=null,o=0,i=0;i<8;i++)0!==t[i]?(o>r&&(e=n,r=o),n=null,o=0):(null===n&&(n=i),++o);return o>r?n:e}(t),r=0;r<8;r++)o&&0===t[r]||(o&&(o=!1),n===r?(e+=r?\":\":\"::\",o=!0):(e+=Od(t[r],16),r<7&&(e+=\":\")));return\"[\"+e+\"]\"}return t},Vd={},Yd=Kv({},Vd,{\" \":1,'\"':1,\"<\":1,\">\":1,\"`\":1}),Xd=Kv({},Yd,{\"#\":1,\"?\":1,\"{\":1,\"}\":1}),Jd=Kv({},Xd,{\"/\":1,\":\":1,\";\":1,\"=\":1,\"@\":1,\"[\":1,\"\\\\\":1,\"]\":1,\"^\":1,\"|\":1}),Qd=function(t,e){var r=fd(t,0);return r>32&&r<127&&!ut(e,t)?t:encodeURIComponent(t)},Zd={ftp:21,file:null,http:80,https:443,ws:80,wss:443},tg=function(t,e){var r;return 2===t.length&&Sd(Nd,wd(t,0))&&(\":\"===(r=wd(t,1))||!e&&\"|\"===r)},eg=function(t){var e;return t.length>1&&tg(kd(t,0,2))&&(2===t.length||\"/\"===(e=wd(t,2))||\"\\\\\"===e||\"?\"===e||\"#\"===e)},rg=function(t){return\".\"===t||\"%2e\"===Id(t)},ng={},og={},ig={},ag={},ug={},sg={},cg={},fg={},lg={},hg={},pg={},vg={},dg={},gg={},yg={},mg={},bg={},wg={},Sg={},Eg={},Og={},xg=function(t,e,r){var n,o,i,a=Wr(t);if(e){if(o=this.parse(a))throw new gd(o);this.searchParams=null}else{if(void 0!==r&&(n=new xg(r,!0)),o=this.parse(a,null,n))throw new gd(o);(i=vd(new pd)).bindURL(this),this.searchParams=i}};xg.prototype={type:\"URL\",parse:function(t,e,r){var n,o,i,a,u,s=this,c=e||ng,f=0,l=\"\",h=!1,p=!1,v=!1;for(t=Wr(t),e||(s.scheme=\"\",s.username=\"\",s.password=\"\",s.host=null,s.port=null,s.path=[],s.query=null,s.fragment=null,s.cannotBeABaseURL=!1,t=Pd(t,Hd,\"\"),t=Pd(t,$d,\"$1\")),t=Pd(t,Kd,\"\"),n=Wn(t);f<=n.length;){switch(o=n[f],c){case ng:if(!o||!Sd(Nd,o)){if(e)return Md;c=ig;continue}l+=Id(o),c=og;break;case og:if(o&&(Sd(Cd,o)||\"+\"===o||\"-\"===o||\".\"===o))l+=Id(o);else{if(\":\"!==o){if(e)return Md;l=\"\",c=ig,f=0;continue}if(e&&(s.isSpecial()!==ut(Zd,l)||\"file\"===l&&(s.includesCredentials()||null!==s.port)||\"file\"===s.scheme&&!s.host))return;if(s.scheme=l,e)return void(s.isSpecial()&&Zd[s.scheme]===s.port&&(s.port=null));l=\"\",\"file\"===s.scheme?c=gg:s.isSpecial()&&r&&r.scheme===s.scheme?c=ag:s.isSpecial()?c=fg:\"/\"===n[f+1]?(c=ug,f++):(s.cannotBeABaseURL=!0,Rd(s.path,\"\"),c=Sg)}break;case ig:if(!r||r.cannotBeABaseURL&&\"#\"!==o)return Md;if(r.cannotBeABaseURL&&\"#\"===o){s.scheme=r.scheme,s.path=vo(r.path),s.query=r.query,s.fragment=\"\",s.cannotBeABaseURL=!0,c=Og;break}c=\"file\"===r.scheme?gg:sg;continue;case ag:if(\"/\"!==o||\"/\"!==n[f+1]){c=sg;continue}c=lg,f++;break;case ug:if(\"/\"===o){c=hg;break}c=wg;continue;case sg:if(s.scheme=r.scheme,o===Wv)s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,s.path=vo(r.path),s.query=r.query;else if(\"/\"===o||\"\\\\\"===o&&s.isSpecial())c=cg;else if(\"?\"===o)s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,s.path=vo(r.path),s.query=\"\",c=Eg;else{if(\"#\"!==o){s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,s.path=vo(r.path),s.path.length--,c=wg;continue}s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,s.path=vo(r.path),s.query=r.query,s.fragment=\"\",c=Og}break;case cg:if(!s.isSpecial()||\"/\"!==o&&\"\\\\\"!==o){if(\"/\"!==o){s.username=r.username,s.password=r.password,s.host=r.host,s.port=r.port,c=wg;continue}c=hg}else c=lg;break;case fg:if(c=lg,\"/\"!==o||\"/\"!==wd(l,f+1))continue;f++;break;case lg:if(\"/\"!==o&&\"\\\\\"!==o){c=hg;continue}break;case hg:if(\"@\"===o){h&&(l=\"%40\"+l),h=!0,i=Wn(l);for(var d=0;d<i.length;d++){var g=i[d];if(\":\"!==g||v){var y=Qd(g,Jd);v?s.password+=y:s.username+=y}else v=!0}l=\"\"}else if(o===Wv||\"/\"===o||\"?\"===o||\"#\"===o||\"\\\\\"===o&&s.isSpecial()){if(h&&\"\"===l)return\"Invalid authority\";f-=Wn(l).length+1,l=\"\",c=pg}else l+=o;break;case pg:case vg:if(e&&\"file\"===s.scheme){c=mg;continue}if(\":\"!==o||p){if(o===Wv||\"/\"===o||\"?\"===o||\"#\"===o||\"\\\\\"===o&&s.isSpecial()){if(s.isSpecial()&&\"\"===l)return Ld;if(e&&\"\"===l&&(s.includesCredentials()||null!==s.port))return;if(a=s.parseHost(l))return a;if(l=\"\",c=bg,e)return;continue}\"[\"===o?p=!0:\"]\"===o&&(p=!1),l+=o}else{if(\"\"===l)return Ld;if(a=s.parseHost(l))return a;if(l=\"\",c=dg,e===vg)return}break;case dg:if(!Sd(_d,o)){if(o===Wv||\"/\"===o||\"?\"===o||\"#\"===o||\"\\\\\"===o&&s.isSpecial()||e){if(\"\"!==l){var m=yd(l,10);if(m>65535)return Ud;s.port=s.isSpecial()&&m===Zd[s.scheme]?null:m,l=\"\"}if(e)return;c=bg;continue}return Ud}l+=o;break;case gg:if(s.scheme=\"file\",\"/\"===o||\"\\\\\"===o)c=yg;else{if(!r||\"file\"!==r.scheme){c=wg;continue}switch(o){case Wv:s.host=r.host,s.path=vo(r.path),s.query=r.query;break;case\"?\":s.host=r.host,s.path=vo(r.path),s.query=\"\",c=Eg;break;case\"#\":s.host=r.host,s.path=vo(r.path),s.query=r.query,s.fragment=\"\",c=Og;break;default:eg(Ed(vo(n,f),\"\"))||(s.host=r.host,s.path=vo(r.path),s.shortenPath()),c=wg;continue}}break;case yg:if(\"/\"===o||\"\\\\\"===o){c=mg;break}r&&\"file\"===r.scheme&&!eg(Ed(vo(n,f),\"\"))&&(tg(r.path[0],!0)?Rd(s.path,r.path[0]):s.host=r.host),c=wg;continue;case mg:if(o===Wv||\"/\"===o||\"\\\\\"===o||\"?\"===o||\"#\"===o){if(!e&&tg(l))c=wg;else if(\"\"===l){if(s.host=\"\",e)return;c=bg}else{if(a=s.parseHost(l))return a;if(\"localhost\"===s.host&&(s.host=\"\"),e)return;l=\"\",c=bg}continue}l+=o;break;case bg:if(s.isSpecial()){if(c=wg,\"/\"!==o&&\"\\\\\"!==o)continue}else if(e||\"?\"!==o)if(e||\"#\"!==o){if(o!==Wv&&(c=wg,\"/\"!==o))continue}else s.fragment=\"\",c=Og;else s.query=\"\",c=Eg;break;case wg:if(o===Wv||\"/\"===o||\"\\\\\"===o&&s.isSpecial()||!e&&(\"?\"===o||\"#\"===o)){if(\"..\"===(u=Id(u=l))||\"%2e.\"===u||\".%2e\"===u||\"%2e%2e\"===u?(s.shortenPath(),\"/\"===o||\"\\\\\"===o&&s.isSpecial()||Rd(s.path,\"\")):rg(l)?\"/\"===o||\"\\\\\"===o&&s.isSpecial()||Rd(s.path,\"\"):(\"file\"===s.scheme&&!s.path.length&&tg(l)&&(s.host&&(s.host=\"\"),l=wd(l,0)+\":\"),Rd(s.path,l)),l=\"\",\"file\"===s.scheme&&(o===Wv||\"?\"===o||\"#\"===o))for(;s.path.length>1&&\"\"===s.path[0];)Ad(s.path);\"?\"===o?(s.query=\"\",c=Eg):\"#\"===o&&(s.fragment=\"\",c=Og)}else l+=Qd(o,Xd);break;case Sg:\"?\"===o?(s.query=\"\",c=Eg):\"#\"===o?(s.fragment=\"\",c=Og):o!==Wv&&(s.path[0]+=Qd(o,Vd));break;case Eg:e||\"#\"!==o?o!==Wv&&(\"'\"===o&&s.isSpecial()?s.query+=\"%27\":s.query+=\"#\"===o?\"%23\":Qd(o,Vd)):(s.fragment=\"\",c=Og);break;case Og:o!==Wv&&(s.fragment+=Qd(o,Yd))}f++}},parseHost:function(t){var e,r,n;if(\"[\"===wd(t,0)){if(\"]\"!==wd(t,t.length-1))return Ld;if(e=function(t){var e,r,n,o,i,a,u,s=[0,0,0,0,0,0,0,0],c=0,f=null,l=0,h=function(){return wd(t,l)};if(\":\"===h()){if(\":\"!==wd(t,1))return;l+=2,f=++c}for(;h();){if(8===c)return;if(\":\"!==h()){for(e=r=0;r<4&&Sd(zd,h());)e=16*e+yd(h(),16),l++,r++;if(\".\"===h()){if(0===r)return;if(l-=r,c>6)return;for(n=0;h();){if(o=null,n>0){if(!(\".\"===h()&&n<4))return;l++}if(!Sd(_d,h()))return;for(;Sd(_d,h());){if(i=yd(h(),10),null===o)o=i;else{if(0===o)return;o=10*o+i}if(o>255)return;l++}s[c]=256*s[c]+o,2!=++n&&4!==n||c++}if(4!==n)return;break}if(\":\"===h()){if(l++,!h())return}else if(h())return;s[c++]=e}else{if(null!==f)return;l++,f=++c}}if(null!==f)for(a=c-f,c=7;0!==c&&a>0;)u=s[c],s[c--]=s[f+a-1],s[f+--a]=u;else if(8!==c)return;return s}(kd(t,1,-1)),!e)return Ld;this.host=e}else if(this.isSpecial()){if(t=function(t){var e,r,n=[],o=id(od(ad(t),Yv,\".\"),\".\");for(e=0;e<o.length;e++)nd(n,Qv(Vv,r=o[e])?\"xn--\"+cd(r):r);return rd(n,\".\")}(t),Sd(Wd,t))return Ld;if(e=function(t){var e,r,n,o,i,a,u,s=jd(t,\".\");if(s.length&&\"\"===s[s.length-1]&&s.length--,(e=s.length)>4)return t;for(r=[],n=0;n<e;n++){if(\"\"===(o=s[n]))return t;if(i=10,o.length>1&&\"0\"===wd(o,0)&&(i=Sd(Fd,o)?16:8,o=kd(o,8===i?1:2)),\"\"===o)a=0;else{if(!Sd(10===i?Dd:8===i?Bd:zd,o))return t;a=yd(o,i)}Rd(r,a)}for(n=0;n<e;n++)if(a=r[n],n===e-1){if(a>=bd(256,5-e))return null}else if(a>255)return null;for(u=xd(r),n=0;n<r.length;n++)u+=r[n]*bd(256,3-n);return u}(t),null===e)return Ld;this.host=e}else{if(Sd(qd,t))return Ld;for(e=\"\",r=Wn(t),n=0;n<r.length;n++)e+=Qd(r[n],Vd);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||\"file\"===this.scheme},includesCredentials:function(){return\"\"!==this.username||\"\"!==this.password},isSpecial:function(){return ut(Zd,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||\"file\"===this.scheme&&1===e&&tg(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,o=t.host,i=t.port,a=t.path,u=t.query,s=t.fragment,c=e+\":\";return null!==o?(c+=\"//\",t.includesCredentials()&&(c+=r+(n?\":\"+n:\"\")+\"@\"),c+=Gd(o),null!==i&&(c+=\":\"+i)):\"file\"===e&&(c+=\"//\"),c+=t.cannotBeABaseURL?a[0]:a.length?\"/\"+Ed(a,\"/\"):\"\",null!==u&&(c+=\"?\"+u),null!==s&&(c+=\"#\"+s),c},setHref:function(t){var e=this.parse(t);if(e)throw new gd(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if(\"blob\"===t)try{return new Rg(t.path[0]).origin}catch(t){return\"null\"}return\"file\"!==t&&this.isSpecial()?t+\"://\"+Gd(this.host)+(null!==e?\":\"+e:\"\"):\"null\"},getProtocol:function(){return this.scheme+\":\"},setProtocol:function(t){this.parse(Wr(t)+\":\",ng)},getUsername:function(){return this.username},setUsername:function(t){var e=Wn(Wr(t));if(!this.cannotHaveUsernamePasswordPort()){this.username=\"\";for(var r=0;r<e.length;r++)this.username+=Qd(e[r],Jd)}},getPassword:function(){return this.password},setPassword:function(t){var e=Wn(Wr(t));if(!this.cannotHaveUsernamePasswordPort()){this.password=\"\";for(var r=0;r<e.length;r++)this.password+=Qd(e[r],Jd)}},getHost:function(){var t=this.host,e=this.port;return null===t?\"\":null===e?Gd(t):Gd(t)+\":\"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,pg)},getHostname:function(){var t=this.host;return null===t?\"\":Gd(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,vg)},getPort:function(){var t=this.port;return null===t?\"\":Wr(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(\"\"===(t=Wr(t))?this.port=null:this.parse(t,dg))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?\"/\"+Ed(t,\"/\"):\"\"},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,bg))},getSearch:function(){var t=this.query;return t?\"?\"+t:\"\"},setSearch:function(t){\"\"===(t=Wr(t))?this.query=null:(\"?\"===wd(t,0)&&(t=kd(t,1)),this.query=\"\",this.parse(t,Eg)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?\"#\"+t:\"\"},setHash:function(t){\"\"!==(t=Wr(t))?(\"#\"===wd(t,0)&&(t=kd(t,1)),this.fragment=\"\",this.parse(t,Og)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var Rg=function(t){var e=ko(this,Pg),r=Up(arguments.length,1)>1?arguments[1]:void 0,n=ld(e,new xg(t,!1,r));u||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},Pg=Rg.prototype,Ag=function(t,e){return{get:function(){return hd(this)[t]()},set:e&&function(t){return hd(this)[e](t)},configurable:!0,enumerable:!0}};if(u&&(so(Pg,\"href\",Ag(\"serialize\",\"setHref\")),so(Pg,\"origin\",Ag(\"getOrigin\")),so(Pg,\"protocol\",Ag(\"getProtocol\",\"setProtocol\")),so(Pg,\"username\",Ag(\"getUsername\",\"setUsername\")),so(Pg,\"password\",Ag(\"getPassword\",\"setPassword\")),so(Pg,\"host\",Ag(\"getHost\",\"setHost\")),so(Pg,\"hostname\",Ag(\"getHostname\",\"setHostname\")),so(Pg,\"port\",Ag(\"getPort\",\"setPort\")),so(Pg,\"pathname\",Ag(\"getPathname\",\"setPathname\")),so(Pg,\"search\",Ag(\"getSearch\",\"setSearch\")),so(Pg,\"searchParams\",Ag(\"getSearchParams\")),so(Pg,\"hash\",Ag(\"getHash\",\"setHash\"))),ie(Pg,\"toJSON\",function(){return hd(this).serialize()},{enumerable:!0}),ie(Pg,\"toString\",function(){return hd(this).serialize()},{enumerable:!0}),dd){var jg=dd.createObjectURL,kg=dd.revokeObjectURL;jg&&ie(Rg,\"createObjectURL\",ar(jg,dd)),kg&&ie(Rg,\"revokeObjectURL\",ar(kg,dd))}an(Rg,\"URL\"),Ce({global:!0,constructor:!0,forced:!Mp,sham:!u},{URL:Rg});var Ig=L(\"URL\"),Tg=Mp&&a(function(){Ig.canParse()}),Mg=a(function(){return 1!==Ig.canParse.length});Ce({target:\"URL\",stat:!0,forced:!Tg||Mg},{canParse:function(t){var e=Up(arguments.length,1),r=Wr(t),n=e<2||void 0===arguments[1]?void 0:Wr(arguments[1]);try{return!!new Ig(r,n)}catch(t){return!1}}});var Lg=L(\"URL\");Ce({target:\"URL\",stat:!0,forced:!Mp},{parse:function(t){var e=Up(arguments.length,1),r=Wr(t),n=e<2||void 0===arguments[1]?void 0:Wr(arguments[1]);try{return new Lg(r,n)}catch(t){return null}}}),Ce({target:\"URL\",proto:!0,enumerable:!0},{toJSON:function(){return f(URL.prototype.toString,this)}});var Ug=WeakMap.prototype,Ng={WeakMap:WeakMap,set:b(Ug.set),get:b(Ug.get),has:b(Ug.has),remove:b(Ug.delete)},Cg=Ng.has,_g=function(t){return Cg(t),t},Fg=Ng.get,Bg=Ng.has,Dg=Ng.set;Ce({target:\"WeakMap\",proto:!0,real:!0,forced:!0},{emplace:function(t,e){var r,n,o=_g(this);return Bg(o,t)?(r=Fg(o,t),\"update\"in e&&(r=e.update(r,t,o),Dg(o,t,r)),r):(n=e.insert(t,o),Dg(o,t,n),n)}}),Ce({target:\"WeakMap\",stat:!0,forced:!0},{from:ei(Ng.WeakMap,Ng.set,!0)}),Ce({target:\"WeakMap\",stat:!0,forced:!0},{of:ri(Ng.WeakMap,Ng.set,!0)});var zg=Ng.remove;Ce({target:\"WeakMap\",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var t,e=_g(this),r=!0,n=0,o=arguments.length;n<o;n++)t=zg(e,arguments[n]),r=r&&t;return!!r}}),Ce({target:\"WeakMap\",proto:!0,real:!0,forced:!0},{upsert:Ii}),To(\"WeakSet\",function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},eu);var Wg=WeakSet.prototype,qg={WeakSet:WeakSet,add:b(Wg.add),has:b(Wg.has),remove:b(Wg.delete)},Hg=qg.has,$g=function(t){return Hg(t),t},Kg=qg.add;Ce({target:\"WeakSet\",proto:!0,real:!0,forced:!0},{addAll:function(){for(var t=$g(this),e=0,r=arguments.length;e<r;e++)Kg(t,arguments[e]);return t}});var Gg=qg.remove;Ce({target:\"WeakSet\",proto:!0,real:!0,forced:!0},{deleteAll:function(){for(var t,e=$g(this),r=!0,n=0,o=arguments.length;n<o;n++)t=Gg(e,arguments[n]),r=r&&t;return!!r}}),Ce({target:\"WeakSet\",stat:!0,forced:!0},{from:ei(qg.WeakSet,qg.add,!1)}),Ce({target:\"WeakSet\",stat:!0,forced:!0},{of:ri(qg.WeakSet,qg.add,!1)});var Vg=Error,Yg=b(\"\".replace),Xg=String(new Vg(\"zxcasd\").stack),Jg=/\\n\\s*at [^:]*:[^\\n]*/,Qg=Jg.test(Xg),Zg=!a(function(){var t=new Error(\"a\");return!(\"stack\"in t)||(Object.defineProperty(t,\"stack\",d(1,7)),7!==t.stack)}),ty=Error.captureStackTrace,ey=dt(\"toStringTag\"),ry=Error,ny=[].push,oy=function(t,e){var r,n,o,i,a,u=U(iy,this);dn?r=dn(new ry,u?Qr(this):iy):(r=u?this:Ve(iy),_t(r,ey,\"Error\")),void 0!==e&&_t(r,\"message\",function(t,e){return void 0===t?arguments.length<2?\"\":e:Wr(t)}(e)),i=r,a=r.stack,Zg&&(ty?ty(i,oy):_t(i,\"stack\",function(t,e){if(Qg&&\"string\"==typeof t&&!Vg.prepareStackTrace)for(;e--;)t=Yg(t,Jg,\"\");return t}(a,1))),arguments.length>2&&(n=r,M(o=arguments[2])&&\"cause\"in o&&_t(n,\"cause\",o.cause));var s=[];return Ao(t,ny,{that:s}),_t(r,\"errors\",s),r};dn?dn(oy,ry):Ae(oy,ry,{name:!0});var iy=oy.prototype=Ve(ry.prototype,{constructor:d(1,oy),message:d(1,\"\"),name:d(1,\"AggregateError\")});Ce({global:!0,constructor:!0,arity:2},{AggregateError:oy});var ay,uy,sy,cy,fy=function(t){return _.slice(0,t.length)===t},ly=fy(\"Bun/\")?\"BUN\":fy(\"Cloudflare-Workers\")?\"CLOUDFLARE\":fy(\"Deno/\")?\"DENO\":fy(\"Node.js/\")?\"NODE\":i.Bun&&\"string\"==typeof Bun.version?\"BUN\":i.Deno&&\"object\"==typeof Deno.version?\"DENO\":\"process\"===E(i.process)?\"NODE\":i.window&&i.document?\"BROWSER\":\"REST\",hy=\"NODE\"===ly,py=/(?:ipad|iphone|ipod).*applewebkit/i.test(_),vy=i.setImmediate,dy=i.clearImmediate,gy=i.process,yy=i.Dispatch,my=i.Function,by=i.MessageChannel,wy=i.String,Sy=0,Ey={},Oy=\"onreadystatechange\";a(function(){ay=i.location});var xy=function(t){if(ut(Ey,t)){var e=Ey[t];delete Ey[t],e()}},Ry=function(t){return function(){xy(t)}},Py=function(t){xy(t.data)},Ay=function(t){i.postMessage(wy(t),ay.protocol+\"//\"+ay.host)};vy&&dy||(vy=function(t){Up(arguments.length,1);var e=T(t)?t:my(t),r=vo(arguments,1);return Ey[++Sy]=function(){Ra(e,void 0,r)},uy(Sy),Sy},dy=function(t){delete Ey[t]},hy?uy=function(t){gy.nextTick(Ry(t))}:yy&&yy.now?uy=function(t){yy.now(Ry(t))}:by&&!py?(cy=(sy=new by).port2,sy.port1.onmessage=Py,uy=ar(cy.postMessage,cy)):i.addEventListener&&T(i.postMessage)&&!i.importScripts&&ay&&\"file:\"!==ay.protocol&&!a(Ay)?(uy=Ay,i.addEventListener(\"message\",Py,!1)):uy=Oy in Et(\"script\")?function(t){De.appendChild(Et(\"script\"))[Oy]=function(){De.removeChild(this),xy(t)}}:function(t){setTimeout(Ry(t),0)});var jy={set:vy,clear:dy},ky=function(){this.head=null,this.tail=null};ky.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var Iy,Ty,My,Ly,Uy,Ny=ky,Cy=/ipad|iphone|ipod/i.test(_)&&\"undefined\"!=typeof Pebble,_y=/web0s(?!.*chrome)/i.test(_),Fy=jy.set,By=i.MutationObserver||i.WebKitMutationObserver,Dy=i.document,zy=i.process,Wy=i.Promise,qy=Ip(\"queueMicrotask\");if(!qy){var Hy=new Ny,$y=function(){var t,e;for(hy&&(t=zy.domain)&&t.exit();e=Hy.get();)try{e()}catch(t){throw Hy.head&&Iy(),t}t&&t.enter()};py||hy||_y||!By||!Dy?!Cy&&Wy&&Wy.resolve?((Ly=Wy.resolve(void 0)).constructor=Wy,Uy=ar(Ly.then,Ly),Iy=function(){Uy($y)}):hy?Iy=function(){zy.nextTick($y)}:(Fy=ar(Fy,i),Iy=function(){Fy($y)}):(Ty=!0,My=Dy.createTextNode(\"\"),new By($y).observe(My,{characterData:!0}),Iy=function(){My.data=Ty=!Ty}),qy=function(t){Hy.head||Iy(),Hy.add(t)}}var Ky,Gy,Vy,Yy=qy,Xy=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}},Jy=i.Promise,Qy=dt(\"species\"),Zy=!1,tm=T(i.PromiseRejectionEvent),em=Ue(\"Promise\",function(){var t=Kt(Jy),e=t!==String(Jy);if(!e&&66===W)return!0;if(!W||W<51||!/native code/.test(t)){var r=new Jy(function(t){t(1)}),n=function(t){t(function(){},function(){})};if((r.constructor={})[Qy]=n,!(Zy=r.then(function(){})instanceof n))return!0}return!(e||\"BROWSER\"!==ly&&\"DENO\"!==ly||tm)}),rm={CONSTRUCTOR:em,REJECTION_EVENT:tm,SUBCLASSING:Zy},nm=TypeError,om=function(t){var e,r;this.promise=new t(function(t,n){if(void 0!==e||void 0!==r)throw new nm(\"Bad Promise constructor\");e=t,r=n}),this.resolve=J(e),this.reject=J(r)},im={f:function(t){return new om(t)}},am=jy.set,um=\"Promise\",sm=rm.CONSTRUCTOR,cm=rm.REJECTION_EVENT,fm=rm.SUBCLASSING,lm=ne.getterFor(um),hm=ne.set,pm=Jy&&Jy.prototype,vm=Jy,dm=pm,gm=i.TypeError,ym=i.document,mm=i.process,bm=im.f,wm=bm,Sm=!!(ym&&ym.createEvent&&i.dispatchEvent),Em=\"unhandledrejection\",Om=function(t){var e;return!(!M(t)||!T(e=t.then))&&e},xm=function(t,e){var r,n,o,i=e.value,a=1===e.state,u=a?t.ok:t.fail,s=t.resolve,c=t.reject,l=t.domain;try{u?(a||(2===e.rejection&&km(e),e.rejection=1),!0===u?r=i:(l&&l.enter(),r=u(i),l&&(l.exit(),o=!0)),r===t.promise?c(new gm(\"Promise-chain cycle\")):(n=Om(r))?f(n,r,s,c):s(r)):c(i)}catch(t){l&&!o&&l.exit(),c(t)}},Rm=function(t,e){t.notified||(t.notified=!0,Yy(function(){for(var r,n=t.reactions;r=n.get();)xm(r,t);t.notified=!1,e&&!t.rejection&&Am(t)}))},Pm=function(t,e,r){var n,o;Sm?((n=ym.createEvent(\"Event\")).promise=e,n.reason=r,n.initEvent(t,!1,!0),i.dispatchEvent(n)):n={promise:e,reason:r},!cm&&(o=i[\"on\"+t])?o(n):t===Em&&function(t,e){try{1===arguments.length?console.error(t):console.error(t,e)}catch(t){}}(\"Unhandled promise rejection\",r)},Am=function(t){f(am,i,function(){var e,r=t.facade,n=t.value;if(jm(t)&&(e=Xy(function(){hy?mm.emit(\"unhandledRejection\",n,r):Pm(Em,r,n)}),t.rejection=hy||jm(t)?2:1,e.error))throw e.value})},jm=function(t){return 1!==t.rejection&&!t.parent},km=function(t){f(am,i,function(){var e=t.facade;hy?mm.emit(\"rejectionHandled\",e):Pm(\"rejectionhandled\",e,t.value)})},Im=function(t,e,r){return function(n){t(e,n,r)}},Tm=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,Rm(t,!0))},Mm=function(t,e,r){if(!t.done){t.done=!0,r&&(t=r);try{if(t.facade===e)throw new gm(\"Promise can't be resolved itself\");var n=Om(e);n?Yy(function(){var r={done:!1};try{f(n,e,Im(Mm,r,t),Im(Tm,r,t))}catch(e){Tm(r,e,t)}}):(t.value=e,t.state=1,Rm(t,!1))}catch(e){Tm({done:!1},e,t)}}};if(sm&&(vm=function(t){ko(this,dm),J(t),f(Ky,this);var e=lm(this);try{t(Im(Mm,e),Im(Tm,e))}catch(t){Tm(e,t)}},(Ky=function(t){hm(this,{type:um,done:!1,notified:!1,parent:!1,reactions:new Ny,rejection:!1,state:0,value:null})}).prototype=ie(dm=vm.prototype,\"then\",function(t,e){var r=lm(this),n=bm(Cc(this,vm));return r.parent=!0,n.ok=!T(t)||t,n.fail=T(e)&&e,n.domain=hy?mm.domain:void 0,0===r.state?r.reactions.add(n):Yy(function(){xm(n,r)}),n.promise}),Gy=function(){var t=new Ky,e=lm(t);this.promise=t,this.resolve=Im(Mm,e),this.reject=Im(Tm,e)},im.f=bm=function(t){return t===vm||void 0===t?new Gy(t):wm(t)},T(Jy)&&pm!==Object.prototype)){Vy=pm.then,fm||ie(pm,\"then\",function(t,e){var r=this;return new vm(function(t,e){f(Vy,r,t,e)}).then(t,e)},{unsafe:!0});try{delete pm.constructor}catch(t){}dn&&dn(pm,dm)}Ce({global:!0,constructor:!0,wrap:!0,forced:sm},{Promise:vm}),an(vm,um,!1),Uo(um);var Lm=rm.CONSTRUCTOR||!Gn(function(t){Jy.all(t).then(void 0,function(){})});Ce({target:\"Promise\",stat:!0,forced:Lm},{all:function(t){var e=this,r=im.f(e),n=r.resolve,o=r.reject,i=Xy(function(){var r=J(e.resolve),i=[],a=0,u=1;Ao(t,function(t){var s=a++,c=!1;u++,f(r,e,t).then(function(t){c||(c=!0,i[s]=t,--u||n(i))},o)}),--u||n(i)});return i.error&&o(i.value),r.promise}});var Um=Jy&&Jy.prototype;if(Ce({target:\"Promise\",proto:!0,forced:rm.CONSTRUCTOR,real:!0},{catch:function(t){return this.then(void 0,t)}}),T(Jy)){var Nm=L(\"Promise\").prototype.catch;Um.catch!==Nm&&ie(Um,\"catch\",Nm,{unsafe:!0})}Ce({target:\"Promise\",stat:!0,forced:Lm},{race:function(t){var e=this,r=im.f(e),n=r.reject,o=Xy(function(){var o=J(e.resolve);Ao(t,function(t){f(o,e,t).then(r.resolve,n)})});return o.error&&n(o.value),r.promise}}),Ce({target:\"Promise\",stat:!0,forced:rm.CONSTRUCTOR},{reject:function(t){var e=im.f(this);return(0,e.reject)(t),e.promise}});var Cm=function(t,e){if(kt(t),M(e)&&e.constructor===t)return e;var r=im.f(t);return(0,r.resolve)(e),r.promise};Ce({target:\"Promise\",stat:!0,forced:rm.CONSTRUCTOR},{resolve:function(t){return Cm(this,t)}}),Ce({target:\"Promise\",stat:!0,forced:Lm},{allSettled:function(t){var e=this,r=im.f(e),n=r.resolve,o=r.reject,i=Xy(function(){var r=J(e.resolve),o=[],i=0,a=1;Ao(t,function(t){var u=i++,s=!1;a++,f(r,e,t).then(function(t){s||(s=!0,o[u]={status:\"fulfilled\",value:t},--a||n(o))},function(t){s||(s=!0,o[u]={status:\"rejected\",reason:t},--a||n(o))})}),--a||n(o)});return i.error&&o(i.value),r.promise}});var _m=\"No one promise resolved\";Ce({target:\"Promise\",stat:!0,forced:Lm},{any:function(t){var e=this,r=L(\"AggregateError\"),n=im.f(e),o=n.resolve,i=n.reject,a=Xy(function(){var n=J(e.resolve),a=[],u=0,s=1,c=!1;Ao(t,function(t){var l=u++,h=!1;s++,f(n,e,t).then(function(t){h||c||(c=!0,o(t))},function(t){h||c||(h=!0,a[l]=t,--s||i(new r(a,_m)))})}),--s||i(new r(a,_m))});return a.error&&i(a.value),n.promise}}),Ce({target:\"Promise\",stat:!0},{withResolvers:function(){var t=im.f(this);return{promise:t.promise,resolve:t.resolve,reject:t.reject}}});var Fm=Jy&&Jy.prototype,Bm=!!Jy&&a(function(){Fm.finally.call({then:function(){}},function(){})});if(Ce({target:\"Promise\",proto:!0,real:!0,forced:Bm},{finally:function(t){var e=Cc(this,L(\"Promise\")),r=T(t);return this.then(r?function(r){return Cm(e,t()).then(function(){return r})}:t,r?function(r){return Cm(e,t()).then(function(){throw r})}:t)}}),T(Jy)){var Dm=L(\"Promise\").prototype.finally;Fm.finally!==Dm&&ie(Fm,\"finally\",Dm,{unsafe:!0})}var zm=i.Promise,Wm=!1,qm=!zm||!zm.try||Xy(function(){zm.try(function(t){Wm=8===t},8)}).error||!Wm;Ce({target:\"Promise\",stat:!0,forced:qm},{try:function(t){var e=arguments.length>1?vo(arguments,1):[],r=im.f(this),n=Xy(function(){return Ra(J(t),void 0,e)});return(n.error?r.reject:r.resolve)(n.value),r.promise}}),Ze(\"Promise\",\"finally\");var Hm=\"URLSearchParams\"in self,$m=\"Symbol\"in self&&\"iterator\"in Symbol,Km=\"FileReader\"in self&&\"Blob\"in self&&function(){try{return new Blob,!0}catch(t){return!1}}(),Gm=\"FormData\"in self,Vm=\"ArrayBuffer\"in self;if(Vm)var Ym=[\"[object Int8Array]\",\"[object Uint8Array]\",\"[object Uint8ClampedArray]\",\"[object Int16Array]\",\"[object Uint16Array]\",\"[object Int32Array]\",\"[object Uint32Array]\",\"[object Float32Array]\",\"[object Float64Array]\"],Xm=ArrayBuffer.isView||function(t){return t&&Ym.indexOf(Object.prototype.toString.call(t))>-1};function Jm(t){if(\"string\"!=typeof t&&(t=String(t)),/[^a-z0-9\\-#$%&'*+.^_`|~]/i.test(t))throw new TypeError(\"Invalid character in header field name\");return t.toLowerCase()}function Qm(t){return\"string\"!=typeof t&&(t=String(t)),t}function Zm(t){var e={next:function(){var e=t.shift();return{done:void 0===e,value:e}}};return $m&&(e[Symbol.iterator]=function(){return e}),e}function tb(t){this.map={},t instanceof tb?t.forEach(function(t,e){this.append(e,t)},this):Array.isArray(t)?t.forEach(function(t){this.append(t[0],t[1])},this):t&&Object.getOwnPropertyNames(t).forEach(function(e){this.append(e,t[e])},this)}function eb(t){if(t.bodyUsed)return Promise.reject(new TypeError(\"Already read\"));t.bodyUsed=!0}function rb(t){return new Promise(function(e,r){t.onload=function(){e(t.result)},t.onerror=function(){r(t.error)}})}function nb(t){var e=new FileReader,r=rb(e);return e.readAsArrayBuffer(t),r}function ob(t){if(t.slice)return t.slice(0);var e=new Uint8Array(t.byteLength);return e.set(new Uint8Array(t)),e.buffer}function ib(){return this.bodyUsed=!1,this._initBody=function(t){var e;this._bodyInit=t,t?\"string\"==typeof t?this._bodyText=t:Km&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:Gm&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:Hm&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():Vm&&Km&&(e=t)&&DataView.prototype.isPrototypeOf(e)?(this._bodyArrayBuffer=ob(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):Vm&&(ArrayBuffer.prototype.isPrototypeOf(t)||Xm(t))?this._bodyArrayBuffer=ob(t):this._bodyText=t=Object.prototype.toString.call(t):this._bodyText=\"\",this.headers.get(\"content-type\")||(\"string\"==typeof t?this.headers.set(\"content-type\",\"text/plain;charset=UTF-8\"):this._bodyBlob&&this._bodyBlob.type?this.headers.set(\"content-type\",this._bodyBlob.type):Hm&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set(\"content-type\",\"application/x-www-form-urlencoded;charset=UTF-8\"))},Km&&(this.blob=function(){var t=eb(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error(\"could not read FormData body as blob\");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){return this._bodyArrayBuffer?eb(this)||Promise.resolve(this._bodyArrayBuffer):this.blob().then(nb)}),this.text=function(){var t=eb(this);if(t)return t;if(this._bodyBlob)return function(t){var e=new FileReader,r=rb(e);return e.readAsText(t),r}(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var e=new Uint8Array(t),r=new Array(e.length),n=0;n<e.length;n++)r[n]=String.fromCharCode(e[n]);return r.join(\"\")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error(\"could not read FormData body as text\");return Promise.resolve(this._bodyText)},Gm&&(this.formData=function(){return this.text().then(sb)}),this.json=function(){return this.text().then(JSON.parse)},this}tb.prototype.append=function(t,e){t=Jm(t),e=Qm(e);var r=this.map[t];this.map[t]=r?r+\", \"+e:e},tb.prototype.delete=function(t){delete this.map[Jm(t)]},tb.prototype.get=function(t){return t=Jm(t),this.has(t)?this.map[t]:null},tb.prototype.has=function(t){return this.map.hasOwnProperty(Jm(t))},tb.prototype.set=function(t,e){this.map[Jm(t)]=Qm(e)},tb.prototype.forEach=function(t,e){for(var r in this.map)this.map.hasOwnProperty(r)&&t.call(e,this.map[r],r,this)},tb.prototype.keys=function(){var t=[];return this.forEach(function(e,r){t.push(r)}),Zm(t)},tb.prototype.values=function(){var t=[];return this.forEach(function(e){t.push(e)}),Zm(t)},tb.prototype.entries=function(){var t=[];return this.forEach(function(e,r){t.push([r,e])}),Zm(t)},$m&&(tb.prototype[Symbol.iterator]=tb.prototype.entries);var ab=[\"DELETE\",\"GET\",\"HEAD\",\"OPTIONS\",\"POST\",\"PUT\"];function ub(t,e){var r=(e=e||{}).body;if(t instanceof ub){if(t.bodyUsed)throw new TypeError(\"Already read\");this.url=t.url,this.credentials=t.credentials,e.headers||(this.headers=new tb(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,r||null==t._bodyInit||(r=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=e.credentials||this.credentials||\"same-origin\",!e.headers&&this.headers||(this.headers=new tb(e.headers)),this.method=function(t){var e=t.toUpperCase();return ab.indexOf(e)>-1?e:t}(e.method||this.method||\"GET\"),this.mode=e.mode||this.mode||null,this.signal=e.signal||this.signal,this.referrer=null,(\"GET\"===this.method||\"HEAD\"===this.method)&&r)throw new TypeError(\"Body not allowed for GET or HEAD requests\");this._initBody(r)}function sb(t){var e=new FormData;return t.trim().split(\"&\").forEach(function(t){if(t){var r=t.split(\"=\"),n=r.shift().replace(/\\+/g,\" \"),o=r.join(\"=\").replace(/\\+/g,\" \");e.append(decodeURIComponent(n),decodeURIComponent(o))}}),e}function cb(t,e){e||(e={}),this.type=\"default\",this.status=void 0===e.status?200:e.status,this.ok=this.status>=200&&this.status<300,this.statusText=\"statusText\"in e?e.statusText:\"OK\",this.headers=new tb(e.headers),this.url=e.url||\"\",this._initBody(t)}ub.prototype.clone=function(){return new ub(this,{body:this._bodyInit})},ib.call(ub.prototype),ib.call(cb.prototype),cb.prototype.clone=function(){return new cb(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new tb(this.headers),url:this.url})},cb.error=function(){var t=new cb(null,{status:0,statusText:\"\"});return t.type=\"error\",t};var fb=[301,302,303,307,308];cb.redirect=function(t,e){if(-1===fb.indexOf(e))throw new RangeError(\"Invalid status code\");return new cb(null,{status:e,headers:{location:t}})};var lb=self.DOMException;try{new lb}catch(t){(lb=function(t,e){this.message=t,this.name=e;var r=Error(t);this.stack=r.stack}).prototype=Object.create(Error.prototype),lb.prototype.constructor=lb}function hb(t,e){return new Promise(function(r,n){var o=new ub(t,e);if(o.signal&&o.signal.aborted)return n(new lb(\"Aborted\",\"AbortError\"));var i=new XMLHttpRequest;function a(){i.abort()}i.onload=function(){var t,e,n={status:i.status,statusText:i.statusText,headers:(t=i.getAllResponseHeaders()||\"\",e=new tb,t.replace(/\\r?\\n[\\t ]+/g,\" \").split(/\\r?\\n/).forEach(function(t){var r=t.split(\":\"),n=r.shift().trim();if(n){var o=r.join(\":\").trim();e.append(n,o)}}),e)};n.url=\"responseURL\"in i?i.responseURL:n.headers.get(\"X-Request-URL\"),r(new cb(\"response\"in i?i.response:i.responseText,n))},i.onerror=function(){n(new TypeError(\"Network request failed\"))},i.ontimeout=function(){n(new TypeError(\"Network request failed\"))},i.onabort=function(){n(new lb(\"Aborted\",\"AbortError\"))},i.open(o.method,o.url,!0),\"include\"===o.credentials?i.withCredentials=!0:\"omit\"===o.credentials&&(i.withCredentials=!1),\"responseType\"in i&&Km&&(i.responseType=\"blob\"),o.headers.forEach(function(t,e){i.setRequestHeader(e,t)}),o.signal&&(o.signal.addEventListener(\"abort\",a),i.onreadystatechange=function(){4===i.readyState&&o.signal.removeEventListener(\"abort\",a)}),i.send(void 0===o._bodyInit?null:o._bodyInit)})}hb.polyfill=!0,self.fetch||(self.fetch=hb,self.Headers=tb,self.Request=ub,self.Response=cb);var pb=Object.getOwnPropertySymbols,vb=Object.prototype.hasOwnProperty,db=Object.prototype.propertyIsEnumerable,gb=function(){try{if(!Object.assign)return!1;var t=new String(\"abc\");if(t[5]=\"de\",\"5\"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},r=0;r<10;r++)e[\"_\"+String.fromCharCode(r)]=r;if(\"0123456789\"!==Object.getOwnPropertyNames(e).map(function(t){return e[t]}).join(\"\"))return!1;var n={};return\"abcdefghijklmnopqrst\".split(\"\").forEach(function(t){n[t]=t}),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},n)).join(\"\")}catch(t){return!1}}()?Object.assign:function(t,e){for(var r,n,o=function(t){if(null==t)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(t)}(t),i=1;i<arguments.length;i++){for(var a in r=Object(arguments[i]))vb.call(r,a)&&(o[a]=r[a]);if(pb){n=pb(r);for(var u=0;u<n.length;u++)db.call(r,n[u])&&(o[n[u]]=r[n[u]])}}return o};Object.assign=gb}();\n"],"names":[],"mappings":"AAAA","ignoreList":[0]} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_17643121._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_17643121._.js deleted file mode 100644 index 419465e..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_17643121._.js +++ /dev/null @@ -1,12725 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/next/dist/client/asset-prefix.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getAssetPrefix", { - enumerable: true, - get: function() { - return getAssetPrefix; - } -}); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -function getAssetPrefix() { - const currentScript = document.currentScript; - if (!(currentScript instanceof HTMLScriptElement)) { - throw Object.defineProperty(new _invarianterror.InvariantError(`Expected document.currentScript to be a <script> element. Received ${currentScript} instead.`), "__NEXT_ERROR_CODE", { - value: "E783", - enumerable: false, - configurable: true - }); - } - const { pathname } = new URL(currentScript.src); - const nextIndex = pathname.indexOf('/_next/'); - if (nextIndex === -1) { - throw Object.defineProperty(new _invarianterror.InvariantError(`Expected document.currentScript src to contain '/_next/'. Received ${currentScript.src} instead.`), "__NEXT_ERROR_CODE", { - value: "E784", - enumerable: false, - configurable: true - }); - } - return pathname.slice(0, nextIndex); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=asset-prefix.js.map -}), -"[project]/node_modules/next/dist/client/set-attributes-from-props.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "setAttributesFromProps", { - enumerable: true, - get: function() { - return setAttributesFromProps; - } -}); -const DOMAttributeNames = { - acceptCharset: 'accept-charset', - className: 'class', - htmlFor: 'for', - httpEquiv: 'http-equiv', - noModule: 'noModule' -}; -const ignoreProps = [ - 'onLoad', - 'onReady', - 'dangerouslySetInnerHTML', - 'children', - 'onError', - 'strategy', - 'stylesheets' -]; -function isBooleanScriptAttribute(attr) { - return [ - 'async', - 'defer', - 'noModule' - ].includes(attr); -} -function setAttributesFromProps(el, props) { - for (const [p, value] of Object.entries(props)){ - if (!props.hasOwnProperty(p)) continue; - if (ignoreProps.includes(p)) continue; - // we don't render undefined props to the DOM - if (value === undefined) { - continue; - } - const attr = DOMAttributeNames[p] || p.toLowerCase(); - if (el.tagName === 'SCRIPT' && isBooleanScriptAttribute(attr)) { - // Correctly assign boolean script attributes - // https://github.com/vercel/next.js/pull/20748 - ; - el[attr] = !!value; - } else { - el.setAttribute(attr, String(value)); - } - // Remove falsy non-zero boolean attributes so they are correctly interpreted - // (e.g. if we set them to false, this coerces to the string "false", which the browser interprets as true) - if (value === false || el.tagName === 'SCRIPT' && isBooleanScriptAttribute(attr) && (!value || value === 'false')) { - // Call setAttribute before, as we need to set and unset the attribute to override force async: - // https://html.spec.whatwg.org/multipage/scripting.html#script-force-async - el.setAttribute(attr, ''); - el.removeAttribute(attr); - } - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=set-attributes-from-props.js.map -}), -"[project]/node_modules/next/dist/client/app-bootstrap.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * Before starting the Next.js runtime and requiring any module, we need to make - * sure the following scripts are executed in the correct order: - * - Polyfills - * - next/script with `beforeInteractive` strategy - */ "use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "appBootstrap", { - enumerable: true, - get: function() { - return appBootstrap; - } -}); -const _assetprefix = __turbopack_context__.r("[project]/node_modules/next/dist/client/asset-prefix.js [app-client] (ecmascript)"); -const _setattributesfromprops = __turbopack_context__.r("[project]/node_modules/next/dist/client/set-attributes-from-props.js [app-client] (ecmascript)"); -const version = "16.1.6"; -window.next = { - version, - appDir: true -}; -function loadScriptsInSequence(scripts, hydrate) { - if (!scripts || !scripts.length) { - return hydrate(); - } - return scripts.reduce((promise, [src, props])=>{ - return promise.then(()=>{ - return new Promise((resolve, reject)=>{ - const el = document.createElement('script'); - if (props) { - (0, _setattributesfromprops.setAttributesFromProps)(el, props); - } - if (src) { - el.src = src; - el.onload = ()=>resolve(); - el.onerror = reject; - } else if (props) { - el.innerHTML = props.children; - setTimeout(resolve); - } - document.head.appendChild(el); - }); - }); - }, Promise.resolve()).catch((err)=>{ - console.error(err); - // Still try to hydrate even if there's an error. - }).then(()=>{ - hydrate(); - }); -} -function appBootstrap(hydrate) { - const assetPrefix = (0, _assetprefix.getAssetPrefix)(); - loadScriptsInSequence(self.__next_s, ()=>{ - // If the static shell is being debugged, skip hydration if the - // `__nextppronly` query is present. This is only enabled when the - // environment variable `__NEXT_EXPERIMENTAL_STATIC_SHELL_DEBUGGING` is - // set to `1`. Otherwise the following is optimized out. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - hydrate(assetPrefix); - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-bootstrap.js.map -}), -"[project]/node_modules/next/dist/client/react-client-callbacks/report-global-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "reportGlobalError", { - enumerable: true, - get: function() { - return reportGlobalError; - } -}); -const reportGlobalError = typeof reportError === 'function' ? reportError : (error)=>{ - // TODO: Dispatch error event - globalThis.console.error(error); -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=report-global-error.js.map -}), -"[project]/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -// This module can be shared between both pages router and app router -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - isRecoverableError: null, - onRecoverableError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - isRecoverableError: function() { - return isRecoverableError; - }, - onRecoverableError: function() { - return onRecoverableError; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _bailouttocsr = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js [app-client] (ecmascript)"); -const _iserror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/lib/is-error.js [app-client] (ecmascript)")); -const _reportglobalerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/react-client-callbacks/report-global-error.js [app-client] (ecmascript)"); -const recoverableErrors = new WeakSet(); -function isRecoverableError(error) { - return recoverableErrors.has(error); -} -const onRecoverableError = (error)=>{ - // x-ref: https://github.com/facebook/react/pull/28736 - let cause = (0, _iserror.default)(error) && 'cause' in error ? error.cause : error; - // Skip certain custom errors which are not expected to be reported on client - if ((0, _bailouttocsr.isBailoutToCSRError)(cause)) return; - if ("TURBOPACK compile-time truthy", 1) { - const { decorateDevError } = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/stitched-error.js [app-client] (ecmascript)"); - const causeError = decorateDevError(cause); - recoverableErrors.add(causeError); - cause = causeError; - } - (0, _reportglobalerror.reportGlobalError)(cause); -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=on-recoverable-error.js.map -}), -"[project]/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - HTTPAccessErrorStatus: null, - HTTP_ERROR_FALLBACK_ERROR_CODE: null, - getAccessFallbackErrorTypeByStatus: null, - getAccessFallbackHTTPStatus: null, - isHTTPAccessFallbackError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - HTTPAccessErrorStatus: function() { - return HTTPAccessErrorStatus; - }, - HTTP_ERROR_FALLBACK_ERROR_CODE: function() { - return HTTP_ERROR_FALLBACK_ERROR_CODE; - }, - getAccessFallbackErrorTypeByStatus: function() { - return getAccessFallbackErrorTypeByStatus; - }, - getAccessFallbackHTTPStatus: function() { - return getAccessFallbackHTTPStatus; - }, - isHTTPAccessFallbackError: function() { - return isHTTPAccessFallbackError; - } -}); -const HTTPAccessErrorStatus = { - NOT_FOUND: 404, - FORBIDDEN: 403, - UNAUTHORIZED: 401 -}; -const ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus)); -const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'; -function isHTTPAccessFallbackError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const [prefix, httpStatus] = error.digest.split(';'); - return prefix === HTTP_ERROR_FALLBACK_ERROR_CODE && ALLOWED_CODES.has(Number(httpStatus)); -} -function getAccessFallbackHTTPStatus(error) { - const httpStatus = error.digest.split(';')[1]; - return Number(httpStatus); -} -function getAccessFallbackErrorTypeByStatus(status) { - switch(status){ - case 401: - return 'unauthorized'; - case 403: - return 'forbidden'; - case 404: - return 'not-found'; - default: - return; - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=http-access-fallback.js.map -}), -"[project]/node_modules/next/dist/client/components/redirect-status-code.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "RedirectStatusCode", { - enumerable: true, - get: function() { - return RedirectStatusCode; - } -}); -var RedirectStatusCode = /*#__PURE__*/ function(RedirectStatusCode) { - RedirectStatusCode[RedirectStatusCode["SeeOther"] = 303] = "SeeOther"; - RedirectStatusCode[RedirectStatusCode["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - RedirectStatusCode[RedirectStatusCode["PermanentRedirect"] = 308] = "PermanentRedirect"; - return RedirectStatusCode; -}({}); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=redirect-status-code.js.map -}), -"[project]/node_modules/next/dist/client/components/redirect-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - REDIRECT_ERROR_CODE: null, - RedirectType: null, - isRedirectError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - REDIRECT_ERROR_CODE: function() { - return REDIRECT_ERROR_CODE; - }, - RedirectType: function() { - return RedirectType; - }, - isRedirectError: function() { - return isRedirectError; - } -}); -const _redirectstatuscode = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-status-code.js [app-client] (ecmascript)"); -const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'; -var RedirectType = /*#__PURE__*/ function(RedirectType) { - RedirectType["push"] = "push"; - RedirectType["replace"] = "replace"; - return RedirectType; -}({}); -function isRedirectError(error) { - if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') { - return false; - } - const digest = error.digest.split(';'); - const [errorCode, type] = digest; - const destination = digest.slice(2, -2).join(';'); - const status = digest.at(-2); - const statusCode = Number(status); - return errorCode === REDIRECT_ERROR_CODE && (type === 'replace' || type === 'push') && typeof destination === 'string' && !isNaN(statusCode) && statusCode in _redirectstatuscode.RedirectStatusCode; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=redirect-error.js.map -}), -"[project]/node_modules/next/dist/client/components/is-next-router-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "isNextRouterError", { - enumerable: true, - get: function() { - return isNextRouterError; - } -}); -const _httpaccessfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js [app-client] (ecmascript)"); -const _redirecterror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-error.js [app-client] (ecmascript)"); -function isNextRouterError(error) { - return (0, _redirecterror.isRedirectError)(error) || (0, _httpaccessfallback.isHTTPAccessFallbackError)(error); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=is-next-router-error.js.map -}), -"[project]/node_modules/next/dist/client/lib/console.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - formatConsoleArgs: null, - parseConsoleArgs: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - formatConsoleArgs: function() { - return formatConsoleArgs; - }, - parseConsoleArgs: function() { - return parseConsoleArgs; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _iserror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/lib/is-error.js [app-client] (ecmascript)")); -function formatObject(arg, depth) { - switch(typeof arg){ - case 'object': - if (arg === null) { - return 'null'; - } else if (Array.isArray(arg)) { - let result = '['; - if (depth < 1) { - for(let i = 0; i < arg.length; i++){ - if (result !== '[') { - result += ','; - } - if (Object.prototype.hasOwnProperty.call(arg, i)) { - result += formatObject(arg[i], depth + 1); - } - } - } else { - result += arg.length > 0 ? '...' : ''; - } - result += ']'; - return result; - } else if (arg instanceof Error) { - return arg + ''; - } else { - const keys = Object.keys(arg); - let result = '{'; - if (depth < 1) { - for(let i = 0; i < keys.length; i++){ - const key = keys[i]; - const desc = Object.getOwnPropertyDescriptor(arg, 'key'); - if (desc && !desc.get && !desc.set) { - const jsonKey = JSON.stringify(key); - if (jsonKey !== '"' + key + '"') { - result += jsonKey + ': '; - } else { - result += key + ': '; - } - result += formatObject(desc.value, depth + 1); - } - } - } else { - result += keys.length > 0 ? '...' : ''; - } - result += '}'; - return result; - } - case 'string': - return JSON.stringify(arg); - case 'number': - case 'bigint': - case 'boolean': - case 'symbol': - case 'undefined': - case 'function': - default: - return String(arg); - } -} -function formatConsoleArgs(args) { - let message; - let idx; - if (typeof args[0] === 'string') { - message = args[0]; - idx = 1; - } else { - message = ''; - idx = 0; - } - let result = ''; - let startQuote = false; - for(let i = 0; i < message.length; ++i){ - const char = message[i]; - if (char !== '%' || i === message.length - 1 || idx >= args.length) { - result += char; - continue; - } - const code = message[++i]; - switch(code){ - case 'c': - { - // TODO: We should colorize with HTML instead of turning into a string. - // Ignore for now. - result = startQuote ? `${result}]` : `[${result}`; - startQuote = !startQuote; - idx++; - break; - } - case 'O': - case 'o': - { - result += formatObject(args[idx++], 0); - break; - } - case 'd': - case 'i': - { - result += parseInt(args[idx++], 10); - break; - } - case 'f': - { - result += parseFloat(args[idx++]); - break; - } - case 's': - { - result += String(args[idx++]); - break; - } - default: - result += '%' + code; - } - } - for(; idx < args.length; idx++){ - result += (idx > 0 ? ' ' : '') + formatObject(args[idx], 0); - } - return result; -} -function parseConsoleArgs(args) { - // See - // https://github.com/facebook/react/blob/65a56d0e99261481c721334a3ec4561d173594cd/packages/react-devtools-shared/src/backend/flight/renderer.js#L88-L93 - // - // Logs replayed from the server look like this: - // [ - // "%c%s%c%o\n\n%s\n\n%s\n", - // "background: #e6e6e6; ...", - // " Server ", // can also be e.g. " Prerender " - // "", - // Error, - // "The above error occurred in the <Page> component.", - // ... - // ] - if (args.length > 3 && typeof args[0] === 'string' && args[0].startsWith('%c%s%c') && typeof args[1] === 'string' && typeof args[2] === 'string' && typeof args[3] === 'string') { - const environmentName = args[2]; - const maybeError = args[4]; - return { - environmentName: environmentName.trim(), - error: (0, _iserror.default)(maybeError) ? maybeError : null - }; - } - return { - environmentName: null, - error: null - }; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=console.js.map -}), -"[project]/node_modules/next/dist/client/app-globals.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -// imports polyfill from `@next/polyfill-module` after build. -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -__turbopack_context__.r("[project]/node_modules/next/dist/build/polyfills/polyfill-module.js [app-client] (ecmascript)"); -// Only setup devtools in development -if ("TURBOPACK compile-time truthy", 1) { - __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/app-dev-overlay-setup.js [app-client] (ecmascript)"); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-globals.js.map -}), -"[project]/node_modules/next/dist/client/components/readonly-url-search-params.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * ReadonlyURLSearchParams implementation shared between client and server. - * This file is intentionally not marked as 'use client' or 'use server' - * so it can be imported by both environments. - */ /** @internal */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ReadonlyURLSearchParams", { - enumerable: true, - get: function() { - return ReadonlyURLSearchParams; - } -}); -class ReadonlyURLSearchParamsError extends Error { - constructor(){ - super('Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams'); - } -} -class ReadonlyURLSearchParams extends URLSearchParams { - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ append() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ delete() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ set() { - throw new ReadonlyURLSearchParamsError(); - } - /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */ sort() { - throw new ReadonlyURLSearchParamsError(); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=readonly-url-search-params.js.map -}), -"[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ACTION_HEADER: null, - FLIGHT_HEADERS: null, - NEXT_ACTION_NOT_FOUND_HEADER: null, - NEXT_ACTION_REVALIDATED_HEADER: null, - NEXT_DID_POSTPONE_HEADER: null, - NEXT_HMR_REFRESH_HASH_COOKIE: null, - NEXT_HMR_REFRESH_HEADER: null, - NEXT_HTML_REQUEST_ID_HEADER: null, - NEXT_IS_PRERENDER_HEADER: null, - NEXT_REQUEST_ID_HEADER: null, - NEXT_REWRITTEN_PATH_HEADER: null, - NEXT_REWRITTEN_QUERY_HEADER: null, - NEXT_ROUTER_PREFETCH_HEADER: null, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER: null, - NEXT_ROUTER_STALE_TIME_HEADER: null, - NEXT_ROUTER_STATE_TREE_HEADER: null, - NEXT_RSC_UNION_QUERY: null, - NEXT_URL: null, - RSC_CONTENT_TYPE_HEADER: null, - RSC_HEADER: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ACTION_HEADER: function() { - return ACTION_HEADER; - }, - FLIGHT_HEADERS: function() { - return FLIGHT_HEADERS; - }, - NEXT_ACTION_NOT_FOUND_HEADER: function() { - return NEXT_ACTION_NOT_FOUND_HEADER; - }, - NEXT_ACTION_REVALIDATED_HEADER: function() { - return NEXT_ACTION_REVALIDATED_HEADER; - }, - NEXT_DID_POSTPONE_HEADER: function() { - return NEXT_DID_POSTPONE_HEADER; - }, - NEXT_HMR_REFRESH_HASH_COOKIE: function() { - return NEXT_HMR_REFRESH_HASH_COOKIE; - }, - NEXT_HMR_REFRESH_HEADER: function() { - return NEXT_HMR_REFRESH_HEADER; - }, - NEXT_HTML_REQUEST_ID_HEADER: function() { - return NEXT_HTML_REQUEST_ID_HEADER; - }, - NEXT_IS_PRERENDER_HEADER: function() { - return NEXT_IS_PRERENDER_HEADER; - }, - NEXT_REQUEST_ID_HEADER: function() { - return NEXT_REQUEST_ID_HEADER; - }, - NEXT_REWRITTEN_PATH_HEADER: function() { - return NEXT_REWRITTEN_PATH_HEADER; - }, - NEXT_REWRITTEN_QUERY_HEADER: function() { - return NEXT_REWRITTEN_QUERY_HEADER; - }, - NEXT_ROUTER_PREFETCH_HEADER: function() { - return NEXT_ROUTER_PREFETCH_HEADER; - }, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER: function() { - return NEXT_ROUTER_SEGMENT_PREFETCH_HEADER; - }, - NEXT_ROUTER_STALE_TIME_HEADER: function() { - return NEXT_ROUTER_STALE_TIME_HEADER; - }, - NEXT_ROUTER_STATE_TREE_HEADER: function() { - return NEXT_ROUTER_STATE_TREE_HEADER; - }, - NEXT_RSC_UNION_QUERY: function() { - return NEXT_RSC_UNION_QUERY; - }, - NEXT_URL: function() { - return NEXT_URL; - }, - RSC_CONTENT_TYPE_HEADER: function() { - return RSC_CONTENT_TYPE_HEADER; - }, - RSC_HEADER: function() { - return RSC_HEADER; - } -}); -const RSC_HEADER = 'rsc'; -const ACTION_HEADER = 'next-action'; -const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree'; -const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch'; -const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER = 'next-router-segment-prefetch'; -const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh'; -const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__'; -const NEXT_URL = 'next-url'; -const RSC_CONTENT_TYPE_HEADER = 'text/x-component'; -const FLIGHT_HEADERS = [ - RSC_HEADER, - NEXT_ROUTER_STATE_TREE_HEADER, - NEXT_ROUTER_PREFETCH_HEADER, - NEXT_HMR_REFRESH_HEADER, - NEXT_ROUTER_SEGMENT_PREFETCH_HEADER -]; -const NEXT_RSC_UNION_QUERY = '_rsc'; -const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time'; -const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed'; -const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path'; -const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query'; -const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender'; -const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found'; -const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id'; -const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id'; -const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated'; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-router-headers.js.map -}), -"[project]/node_modules/next/dist/client/components/navigation-untracked.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "useUntrackedPathname", { - enumerable: true, - get: function() { - return useUntrackedPathname; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _hooksclientcontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js [app-client] (ecmascript)"); -/** - * This checks to see if the current render has any unknown route parameters that - * would cause the pathname to be dynamic. It's used to trigger a different - * render path in the error boundary. - * - * @returns true if there are any unknown route parameters, false otherwise - */ function hasFallbackRouteParams() { - if (typeof window === 'undefined') { - // AsyncLocalStorage should not be included in the client bundle. - const { workUnitAsyncStorage } = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js [app-client] (ecmascript)"); - const workUnitStore = workUnitAsyncStorage.getStore(); - if (!workUnitStore) return false; - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - const fallbackParams = workUnitStore.fallbackRouteParams; - return fallbackParams ? fallbackParams.size > 0 : false; - case 'prerender-legacy': - case 'request': - case 'prerender-runtime': - case 'cache': - case 'private-cache': - case 'unstable-cache': - break; - default: - workUnitStore; - } - return false; - } - return false; -} -function useUntrackedPathname() { - // If there are any unknown route parameters we would typically throw - // an error, but this internal method allows us to return a null value instead - // for components that do not propagate the pathname to the static shell (like - // the error boundary). - if (hasFallbackRouteParams()) { - return null; - } - // This shouldn't cause any issues related to conditional rendering because - // the environment will be consistent for the render. - // eslint-disable-next-line react-hooks/rules-of-hooks - return (0, _react.useContext)(_hooksclientcontextsharedruntime.PathnameContext); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=navigation-untracked.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createHrefFromUrl", { - enumerable: true, - get: function() { - return createHrefFromUrl; - } -}); -function createHrefFromUrl(url, includeHash = true) { - return url.pathname + url.search + (includeHash ? url.hash : ''); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=create-href-from-url.js.map -}), -"[project]/node_modules/next/dist/client/components/nav-failure-handler.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - handleHardNavError: null, - useNavFailureHandler: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - handleHardNavError: function() { - return handleHardNavError; - }, - useNavFailureHandler: function() { - return useNavFailureHandler; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -function handleHardNavError(error) { - if (error && typeof window !== 'undefined' && window.next.__pendingUrl && (0, _createhreffromurl.createHrefFromUrl)(new URL(window.location.href)) !== (0, _createhreffromurl.createHrefFromUrl)(window.next.__pendingUrl)) { - console.error(`Error occurred during navigation, falling back to hard navigation`, error); - window.location.href = window.next.__pendingUrl.toString(); - return true; - } - return false; -} -function useNavFailureHandler() { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=nav-failure-handler.js.map -}), -"[project]/node_modules/next/dist/client/components/handle-isr-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HandleISRError", { - enumerable: true, - get: function() { - return HandleISRError; - } -}); -const workAsyncStorage = typeof window === 'undefined' ? __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-async-storage.external.js [app-client] (ecmascript)").workAsyncStorage : undefined; -function HandleISRError({ error }) { - if (workAsyncStorage) { - const store = workAsyncStorage.getStore(); - if (store?.isStaticGeneration) { - if (error) { - console.error(error); - } - throw error; - } - } - return null; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=handle-isr-error.js.map -}), -"[project]/node_modules/next/dist/client/components/error-boundary.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use client'; -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ErrorBoundary: null, - ErrorBoundaryHandler: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ErrorBoundary: function() { - return ErrorBoundary; - }, - ErrorBoundaryHandler: function() { - return ErrorBoundaryHandler; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _navigationuntracked = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/navigation-untracked.js [app-client] (ecmascript)"); -const _isnextroutererror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/is-next-router-error.js [app-client] (ecmascript)"); -const _navfailurehandler = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/nav-failure-handler.js [app-client] (ecmascript)"); -const _handleisrerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/handle-isr-error.js [app-client] (ecmascript)"); -const _isbot = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/is-bot.js [app-client] (ecmascript)"); -const isBotUserAgent = typeof window !== 'undefined' && (0, _isbot.isBot)(window.navigator.userAgent); -class ErrorBoundaryHandler extends _react.default.Component { - constructor(props){ - super(props), this.reset = ()=>{ - this.setState({ - error: null - }); - }; - this.state = { - error: null, - previousPathname: this.props.pathname - }; - } - static getDerivedStateFromError(error) { - if ((0, _isnextroutererror.isNextRouterError)(error)) { - // Re-throw if an expected internal Next.js router error occurs - // this means it should be handled by a different boundary (such as a NotFound boundary in a parent segment) - throw error; - } - return { - error - }; - } - static getDerivedStateFromProps(props, state) { - const { error } = state; - // if we encounter an error while - // a navigation is pending we shouldn't render - // the error boundary and instead should fallback - // to a hard navigation to attempt recovering - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - /** - * Handles reset of the error boundary when a navigation happens. - * Ensures the error boundary does not stay enabled when navigating to a new page. - * Approach of setState in render is safe as it checks the previous pathname and then overrides - * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders - */ if (props.pathname !== state.previousPathname && state.error) { - return { - error: null, - previousPathname: props.pathname - }; - } - return { - error: state.error, - previousPathname: props.pathname - }; - } - // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version. - render() { - //When it's bot request, segment level error boundary will keep rendering the children, - // the final error will be caught by the root error boundary and determine wether need to apply graceful degrade. - if (this.state.error && !isBotUserAgent) { - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(_handleisrerror.HandleISRError, { - error: this.state.error - }), - this.props.errorStyles, - this.props.errorScripts, - /*#__PURE__*/ (0, _jsxruntime.jsx)(this.props.errorComponent, { - error: this.state.error, - reset: this.reset - }) - ] - }); - } - return this.props.children; - } -} -function ErrorBoundary({ errorComponent, errorStyles, errorScripts, children }) { - // When we're rendering the missing params shell, this will return null. This - // is because we won't be rendering any not found boundaries or error - // boundaries for the missing params shell. When this runs on the client - // (where these errors can occur), we will get the correct pathname. - const pathname = (0, _navigationuntracked.useUntrackedPathname)(); - if (errorComponent) { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(ErrorBoundaryHandler, { - pathname: pathname, - errorComponent: errorComponent, - errorStyles: errorStyles, - errorScripts: errorScripts, - children: children - }); - } - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_jsxruntime.Fragment, { - children: children - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=error-boundary.js.map -}), -"[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, // supplied custom global error signatures. -"default", { - enumerable: true, - get: function() { - return _default; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _handleisrerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/handle-isr-error.js [app-client] (ecmascript)"); -const styles = { - error: { - // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52 - fontFamily: 'system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"', - height: '100vh', - textAlign: 'center', - display: 'flex', - flexDirection: 'column', - alignItems: 'center', - justifyContent: 'center' - }, - text: { - fontSize: '14px', - fontWeight: 400, - lineHeight: '28px', - margin: '0 8px' - } -}; -function DefaultGlobalError({ error }) { - const digest = error?.digest; - return /*#__PURE__*/ (0, _jsxruntime.jsxs)("html", { - id: "__next_error__", - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("head", {}), - /*#__PURE__*/ (0, _jsxruntime.jsxs)("body", { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(_handleisrerror.HandleISRError, { - error: error - }), - /*#__PURE__*/ (0, _jsxruntime.jsx)("div", { - style: styles.error, - children: /*#__PURE__*/ (0, _jsxruntime.jsxs)("div", { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsxs)("h2", { - style: styles.text, - children: [ - "Application error: a ", - digest ? 'server' : 'client', - "-side exception has occurred while loading ", - window.location.hostname, - " (see the", - ' ', - digest ? 'server logs' : 'browser console', - " for more information)." - ] - }), - digest ? /*#__PURE__*/ (0, _jsxruntime.jsx)("p", { - style: styles.text, - children: `Digest: ${digest}` - }) : null - ] - }) - }) - ] - }) - ] - }); -} -const _default = DefaultGlobalError; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=global-error.js.map -}), -"[project]/node_modules/next/dist/client/dev/runtime-error-handler.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "RuntimeErrorHandler", { - enumerable: true, - get: function() { - return RuntimeErrorHandler; - } -}); -const RuntimeErrorHandler = { - hadRuntimeError: false -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=runtime-error-handler.js.map -}), -"[project]/node_modules/next/dist/client/components/not-found.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "notFound", { - enumerable: true, - get: function() { - return notFound; - } -}); -const _httpaccessfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js [app-client] (ecmascript)"); -/** - * This function allows you to render the [not-found.js file](https://nextjs.org/docs/app/api-reference/file-conventions/not-found) - * within a route segment as well as inject a tag. - * - * `notFound()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * - In a Server Component, this will insert a `<meta name="robots" content="noindex" />` meta tag and set the status code to 404. - * - In a Route Handler or Server Action, it will serve a 404 to the caller. - * - * Read more: [Next.js Docs: `notFound`](https://nextjs.org/docs/app/api-reference/functions/not-found) - */ const DIGEST = `${_httpaccessfallback.HTTP_ERROR_FALLBACK_ERROR_CODE};404`; -function notFound() { - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=not-found.js.map -}), -"[project]/node_modules/next/dist/client/react-client-callbacks/error-boundary-callbacks.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -// This file is only used in app router due to the specific error state handling. -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - onCaughtError: null, - onUncaughtError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - onCaughtError: function() { - return onCaughtError; - }, - onUncaughtError: function() { - return onUncaughtError; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _isnextroutererror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/is-next-router-error.js [app-client] (ecmascript)"); -const _bailouttocsr = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js [app-client] (ecmascript)"); -const _reportglobalerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/react-client-callbacks/report-global-error.js [app-client] (ecmascript)"); -const _errorboundary = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/error-boundary.js [app-client] (ecmascript)"); -const _globalerror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)")); -const devToolErrorMod = ("TURBOPACK compile-time truthy", 1) ? __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/index.js [app-client] (ecmascript)") : "TURBOPACK unreachable"; -function onCaughtError(thrownValue, errorInfo) { - const errorBoundaryComponent = errorInfo.errorBoundary?.constructor; - let isImplicitErrorBoundary; - if ("TURBOPACK compile-time truthy", 1) { - const { AppDevOverlayErrorBoundary } = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/app-dev-overlay-error-boundary.js [app-client] (ecmascript)"); - isImplicitErrorBoundary = errorBoundaryComponent === AppDevOverlayErrorBoundary; - } - isImplicitErrorBoundary = isImplicitErrorBoundary || errorBoundaryComponent === _errorboundary.ErrorBoundaryHandler && errorInfo.errorBoundary.props.errorComponent === _globalerror.default; - // Skip the segment explorer triggered error - if ("TURBOPACK compile-time truthy", 1) { - const { SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE } = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)"); - if (thrownValue instanceof Error && thrownValue.message === SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE) { - return; - } - } - if (isImplicitErrorBoundary) { - // We don't consider errors caught unless they're caught by an explicit error - // boundary. The built-in ones are considered implicit. - // This mimics how the same app would behave without Next.js. - return onUncaughtError(thrownValue); - } - // Skip certain custom errors which are not expected to be reported on client - if ((0, _bailouttocsr.isBailoutToCSRError)(thrownValue) || (0, _isnextroutererror.isNextRouterError)(thrownValue)) return; - if ("TURBOPACK compile-time truthy", 1) { - const errorBoundaryName = errorBoundaryComponent?.displayName || errorBoundaryComponent?.name || 'Unknown'; - const componentThatErroredFrame = errorInfo?.componentStack?.split('\n')[1]; - // Match chrome or safari stack trace - const matches = // example 1: at Page (http://localhost:3000/_next/static/chunks/pages/index.js?ts=1631600000000:2:1) - // example 2: Page@http://localhost:3000/_next/static/chunks/pages/index.js?ts=1631600000000:2:1 - componentThatErroredFrame?.match(/\s+at (\w+)\s+|(\w+)@/) ?? []; - const componentThatErroredName = matches[1] || matches[2] || 'Unknown'; - // Create error location with errored component and error boundary, to match the behavior of default React onCaughtError handler. - const errorBoundaryMessage = `It was handled by the <${errorBoundaryName}> error boundary.`; - const componentErrorMessage = ("TURBOPACK compile-time truthy", 1) ? `The above error occurred in the <${componentThatErroredName}> component.` : "TURBOPACK unreachable"; - const errorLocation = `${componentErrorMessage} ${errorBoundaryMessage}`; - const error = devToolErrorMod.decorateDevError(thrownValue); - // Log and report the error with location but without modifying the error stack - devToolErrorMod.originConsoleError('%o\n\n%s', thrownValue, errorLocation); - devToolErrorMod.handleClientError(error); - } else //TURBOPACK unreachable - ; -} -function onUncaughtError(thrownValue) { - // Skip certain custom errors which are not expected to be reported on client - if ((0, _bailouttocsr.isBailoutToCSRError)(thrownValue) || (0, _isnextroutererror.isNextRouterError)(thrownValue)) return; - if ("TURBOPACK compile-time truthy", 1) { - const error = devToolErrorMod.decorateDevError(thrownValue); - // TODO: Add an adendum to the overlay telling people about custom error boundaries. - (0, _reportglobalerror.reportGlobalError)(error); - } else //TURBOPACK unreachable - ; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=error-boundary-callbacks.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ACTION_HMR_REFRESH: null, - ACTION_NAVIGATE: null, - ACTION_REFRESH: null, - ACTION_RESTORE: null, - ACTION_SERVER_ACTION: null, - ACTION_SERVER_PATCH: null, - PrefetchKind: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ACTION_HMR_REFRESH: function() { - return ACTION_HMR_REFRESH; - }, - ACTION_NAVIGATE: function() { - return ACTION_NAVIGATE; - }, - ACTION_REFRESH: function() { - return ACTION_REFRESH; - }, - ACTION_RESTORE: function() { - return ACTION_RESTORE; - }, - ACTION_SERVER_ACTION: function() { - return ACTION_SERVER_ACTION; - }, - ACTION_SERVER_PATCH: function() { - return ACTION_SERVER_PATCH; - }, - PrefetchKind: function() { - return PrefetchKind; - } -}); -const ACTION_REFRESH = 'refresh'; -const ACTION_NAVIGATE = 'navigate'; -const ACTION_RESTORE = 'restore'; -const ACTION_SERVER_PATCH = 'server-patch'; -const ACTION_HMR_REFRESH = 'hmr-refresh'; -const ACTION_SERVER_ACTION = 'server-action'; -var PrefetchKind = /*#__PURE__*/ function(PrefetchKind) { - PrefetchKind["AUTO"] = "auto"; - PrefetchKind["FULL"] = "full"; - return PrefetchKind; -}({}); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=router-reducer-types.js.map -}), -"[project]/node_modules/next/dist/client/components/use-action-queue.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - dispatchAppRouterAction: null, - useActionQueue: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - dispatchAppRouterAction: function() { - return dispatchAppRouterAction; - }, - useActionQueue: function() { - return useActionQueue; - } -}); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _isthenable = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/is-thenable.js [app-client] (ecmascript)"); -// The app router state lives outside of React, so we can import the dispatch -// method directly wherever we need it, rather than passing it around via props -// or context. -let dispatch = null; -function dispatchAppRouterAction(action) { - if (dispatch === null) { - throw Object.defineProperty(new Error('Internal Next.js error: Router action dispatched before initialization.'), "__NEXT_ERROR_CODE", { - value: "E668", - enumerable: false, - configurable: true - }); - } - dispatch(action); -} -const __DEV__ = ("TURBOPACK compile-time value", "development") !== 'production'; -const promisesWithDebugInfo = ("TURBOPACK compile-time truthy", 1) ? new WeakMap() : "TURBOPACK unreachable"; -function useActionQueue(actionQueue) { - const [state, setState] = _react.default.useState(actionQueue.state); - // Because of a known issue that requires to decode Flight streams inside the - // render phase, we have to be a bit clever and assign the dispatch method to - // a module-level variable upon initialization. The useState hook in this - // module only exists to synchronize state that lives outside of React. - // Ideally, what we'd do instead is pass the state as a prop to root.render; - // this is conceptually how we're modeling the app router state, despite the - // weird implementation details. - if ("TURBOPACK compile-time truthy", 1) { - const { useAppDevRenderingIndicator } = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/use-app-dev-rendering-indicator.js [app-client] (ecmascript)"); - // eslint-disable-next-line react-hooks/rules-of-hooks - const appDevRenderingIndicator = useAppDevRenderingIndicator(); - dispatch = (action)=>{ - appDevRenderingIndicator(()=>{ - actionQueue.dispatch(action, setState); - }); - }; - } else //TURBOPACK unreachable - ; - // When navigating to a non-prefetched route, then App Router state will be - // blocked until the server responds. We need to transfer the `_debugInfo` - // from the underlying Flight response onto the top-level promise that is - // passed to React (via `use`) so that the latency is accurately represented - // in the React DevTools. - const stateWithDebugInfo = (0, _react.useMemo)(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - if ((0, _isthenable.isThenable)(state)) { - // useMemo can't be used to cache a Promise since the memoized value is thrown - // away when we suspend. So we use a WeakMap to cache the Promise with debug info. - let promiseWithDebugInfo = promisesWithDebugInfo.get(state); - if (promiseWithDebugInfo === undefined) { - const debugInfo = []; - promiseWithDebugInfo = Promise.resolve(state).then((asyncState)=>{ - if (asyncState.debugInfo !== null) { - debugInfo.push(...asyncState.debugInfo); - } - return asyncState; - }); - promiseWithDebugInfo._debugInfo = debugInfo; - promisesWithDebugInfo.set(state, promiseWithDebugInfo); - } - return promiseWithDebugInfo; - } - return state; - }, [ - state - ]); - return (0, _isthenable.isThenable)(stateWithDebugInfo) ? (0, _react.use)(stateWithDebugInfo) : stateWithDebugInfo; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=use-action-queue.js.map -}), -"[project]/node_modules/next/dist/client/app-call-server.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "callServer", { - enumerable: true, - get: function() { - return callServer; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _routerreducertypes = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js [app-client] (ecmascript)"); -const _useactionqueue = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/use-action-queue.js [app-client] (ecmascript)"); -async function callServer(actionId, actionArgs) { - return new Promise((resolve, reject)=>{ - (0, _react.startTransition)(()=>{ - (0, _useactionqueue.dispatchAppRouterAction)({ - type: _routerreducertypes.ACTION_SERVER_ACTION, - actionId, - actionArgs, - resolve, - reject - }); - }); - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-call-server.js.map -}), -"[project]/node_modules/next/dist/client/app-find-source-map-url.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "findSourceMapURL", { - enumerable: true, - get: function() { - return findSourceMapURL; - } -}); -const basePath = ("TURBOPACK compile-time value", "") || ''; -const pathname = `${basePath}/__nextjs_source-map`; -const findSourceMapURL = ("TURBOPACK compile-time truthy", 1) ? function findSourceMapURL(filename) { - if (filename === '') { - return null; - } - if (filename.startsWith(document.location.origin) && filename.includes('/_next/static')) { - // This is a request for a client chunk. This can only happen when - // using Turbopack. In this case, since we control how those source - // maps are generated, we can safely assume that the sourceMappingURL - // is relative to the filename, with an added `.map` extension. The - // browser can just request this file, and it gets served through the - // normal dev server, without the need to route this through - // the `/__nextjs_source-map` dev middleware. - return `${filename}.map`; - } - const url = new URL(pathname, document.location.origin); - url.searchParams.set('filename', filename); - return url.href; -} : "TURBOPACK unreachable"; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-find-source-map-url.js.map -}), -"[project]/node_modules/next/dist/client/components/match-segments.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "matchSegment", { - enumerable: true, - get: function() { - return matchSegment; - } -}); -const matchSegment = (existingSegment, segment)=>{ - // segment is either Array or string - if (typeof existingSegment === 'string') { - if (typeof segment === 'string') { - // Common case: segment is just a string - return existingSegment === segment; - } - return false; - } - if (typeof segment === 'string') { - return false; - } - return existingSegment[0] === segment[0] && existingSegment[1] === segment[1]; -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=match-segments.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - computeChangedPath: null, - extractPathFromFlightRouterState: null, - getSelectedParams: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - computeChangedPath: function() { - return computeChangedPath; - }, - extractPathFromFlightRouterState: function() { - return extractPathFromFlightRouterState; - }, - getSelectedParams: function() { - return getSelectedParams; - } -}); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-client] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const _matchsegments = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/match-segments.js [app-client] (ecmascript)"); -const removeLeadingSlash = (segment)=>{ - return segment[0] === '/' ? segment.slice(1) : segment; -}; -const segmentToPathname = (segment)=>{ - if (typeof segment === 'string') { - // 'children' is not a valid path -- it's technically a parallel route that corresponds with the current segment's page - // if we don't skip it, then the computed pathname might be something like `/children` which doesn't make sense. - if (segment === 'children') return ''; - return segment; - } - return segment[1]; -}; -function normalizeSegments(segments) { - return segments.reduce((acc, segment)=>{ - segment = removeLeadingSlash(segment); - if (segment === '' || (0, _segment.isGroupSegment)(segment)) { - return acc; - } - return `${acc}/${segment}`; - }, '') || '/'; -} -function extractPathFromFlightRouterState(flightRouterState) { - const segment = Array.isArray(flightRouterState[0]) ? flightRouterState[0][1] : flightRouterState[0]; - if (segment === _segment.DEFAULT_SEGMENT_KEY || _interceptionroutes.INTERCEPTION_ROUTE_MARKERS.some((m)=>segment.startsWith(m))) return undefined; - if (segment.startsWith(_segment.PAGE_SEGMENT_KEY)) return ''; - const segments = [ - segmentToPathname(segment) - ]; - const parallelRoutes = flightRouterState[1] ?? {}; - const childrenPath = parallelRoutes.children ? extractPathFromFlightRouterState(parallelRoutes.children) : undefined; - if (childrenPath !== undefined) { - segments.push(childrenPath); - } else { - for (const [key, value] of Object.entries(parallelRoutes)){ - if (key === 'children') continue; - const childPath = extractPathFromFlightRouterState(value); - if (childPath !== undefined) { - segments.push(childPath); - } - } - } - return normalizeSegments(segments); -} -function computeChangedPathImpl(treeA, treeB) { - const [segmentA, parallelRoutesA] = treeA; - const [segmentB, parallelRoutesB] = treeB; - const normalizedSegmentA = segmentToPathname(segmentA); - const normalizedSegmentB = segmentToPathname(segmentB); - if (_interceptionroutes.INTERCEPTION_ROUTE_MARKERS.some((m)=>normalizedSegmentA.startsWith(m) || normalizedSegmentB.startsWith(m))) { - return ''; - } - if (!(0, _matchsegments.matchSegment)(segmentA, segmentB)) { - // once we find where the tree changed, we compute the rest of the path by traversing the tree - return extractPathFromFlightRouterState(treeB) ?? ''; - } - for(const parallelRouterKey in parallelRoutesA){ - if (parallelRoutesB[parallelRouterKey]) { - const changedPath = computeChangedPathImpl(parallelRoutesA[parallelRouterKey], parallelRoutesB[parallelRouterKey]); - if (changedPath !== null) { - return `${segmentToPathname(segmentB)}/${changedPath}`; - } - } - } - return null; -} -function computeChangedPath(treeA, treeB) { - const changedPath = computeChangedPathImpl(treeA, treeB); - if (changedPath == null || changedPath === '/') { - return changedPath; - } - // lightweight normalization to remove route groups - return normalizeSegments(changedPath.split('/')); -} -function getSelectedParams(currentTree, params = {}) { - const parallelRoutes = currentTree[1]; - for (const parallelRoute of Object.values(parallelRoutes)){ - const segment = parallelRoute[0]; - const isDynamicParameter = Array.isArray(segment); - const segmentValue = isDynamicParameter ? segment[1] : segment; - if (!segmentValue || segmentValue.startsWith(_segment.PAGE_SEGMENT_KEY)) continue; - // Ensure catchAll and optional catchall are turned into an array - const isCatchAll = isDynamicParameter && (segment[2] === 'c' || segment[2] === 'oc'); - if (isCatchAll) { - params[segment[0]] = segment[1].split('/'); - } else if (isDynamicParameter) { - params[segment[0]] = segment[1]; - } - params = getSelectedParams(parallelRoute, params); - } - return params; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=compute-changed-path.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/handle-mutable.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "handleMutable", { - enumerable: true, - get: function() { - return handleMutable; - } -}); -const _computechangedpath = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js [app-client] (ecmascript)"); -function isNotUndefined(value) { - return typeof value !== 'undefined'; -} -function handleMutable(state, mutable) { - // shouldScroll is true by default, can override to false. - const shouldScroll = mutable.shouldScroll ?? true; - let previousNextUrl = state.previousNextUrl; - let nextUrl = state.nextUrl; - if (isNotUndefined(mutable.patchedTree)) { - // If we received a patched tree, we need to compute the changed path. - const changedPath = (0, _computechangedpath.computeChangedPath)(state.tree, mutable.patchedTree); - if (changedPath) { - // If the tree changed, we need to update the nextUrl - previousNextUrl = nextUrl; - nextUrl = changedPath; - } else if (!nextUrl) { - // if the tree ends up being the same (ie, no changed path), and we don't have a nextUrl, then we should use the canonicalUrl - nextUrl = state.canonicalUrl; - } - // otherwise this will be a no-op and continue to use the existing nextUrl - } - return { - // Set href. - canonicalUrl: mutable.canonicalUrl ?? state.canonicalUrl, - renderedSearch: mutable.renderedSearch ?? state.renderedSearch, - pushRef: { - pendingPush: isNotUndefined(mutable.pendingPush) ? mutable.pendingPush : state.pushRef.pendingPush, - mpaNavigation: isNotUndefined(mutable.mpaNavigation) ? mutable.mpaNavigation : state.pushRef.mpaNavigation, - preserveCustomHistoryState: isNotUndefined(mutable.preserveCustomHistoryState) ? mutable.preserveCustomHistoryState : state.pushRef.preserveCustomHistoryState - }, - // All navigation requires scroll and focus management to trigger. - focusAndScrollRef: { - apply: shouldScroll ? isNotUndefined(mutable?.scrollableSegments) ? true : state.focusAndScrollRef.apply : false, - onlyHashChange: mutable.onlyHashChange || false, - hashFragment: shouldScroll ? mutable.hashFragment && mutable.hashFragment !== '' ? decodeURIComponent(mutable.hashFragment.slice(1)) : state.focusAndScrollRef.hashFragment : null, - segmentPaths: shouldScroll ? mutable?.scrollableSegments ?? state.focusAndScrollRef.segmentPaths : [] - }, - // Apply cache. - cache: mutable.cache ? mutable.cache : state.cache, - // Apply patched router state. - tree: isNotUndefined(mutable.patchedTree) ? mutable.patchedTree : state.tree, - nextUrl, - previousNextUrl: previousNextUrl, - debugInfo: mutable.collectedDebugInfo ?? null - }; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=handle-mutable.js.map -}), -"[project]/node_modules/next/dist/client/route-params.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - doesStaticSegmentAppearInURL: null, - getCacheKeyForDynamicParam: null, - getParamValueFromCacheKey: null, - getRenderedPathname: null, - getRenderedSearch: null, - parseDynamicParamFromURLPart: null, - urlSearchParamsToParsedUrlQuery: null, - urlToUrlWithoutFlightMarker: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - doesStaticSegmentAppearInURL: function() { - return doesStaticSegmentAppearInURL; - }, - getCacheKeyForDynamicParam: function() { - return getCacheKeyForDynamicParam; - }, - getParamValueFromCacheKey: function() { - return getParamValueFromCacheKey; - }, - getRenderedPathname: function() { - return getRenderedPathname; - }, - getRenderedSearch: function() { - return getRenderedSearch; - }, - parseDynamicParamFromURLPart: function() { - return parseDynamicParamFromURLPart; - }, - urlSearchParamsToParsedUrlQuery: function() { - return urlSearchParamsToParsedUrlQuery; - }, - urlToUrlWithoutFlightMarker: function() { - return urlToUrlWithoutFlightMarker; - } -}); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const _segmentvalueencoding = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js [app-client] (ecmascript)"); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)"); -function getRenderedSearch(response) { - // If the server performed a rewrite, the search params used to render the - // page will be different from the params in the request URL. In this case, - // the response will include a header that gives the rewritten search query. - const rewrittenQuery = response.headers.get(_approuterheaders.NEXT_REWRITTEN_QUERY_HEADER); - if (rewrittenQuery !== null) { - return rewrittenQuery === '' ? '' : '?' + rewrittenQuery; - } - // If the header is not present, there was no rewrite, so we use the search - // query of the response URL. - return urlToUrlWithoutFlightMarker(new URL(response.url)).search; -} -function getRenderedPathname(response) { - // If the server performed a rewrite, the pathname used to render the - // page will be different from the pathname in the request URL. In this case, - // the response will include a header that gives the rewritten pathname. - const rewrittenPath = response.headers.get(_approuterheaders.NEXT_REWRITTEN_PATH_HEADER); - return rewrittenPath ?? urlToUrlWithoutFlightMarker(new URL(response.url)).pathname; -} -function parseDynamicParamFromURLPart(paramType, pathnameParts, partIndex) { - // This needs to match the behavior in get-dynamic-param.ts. - switch(paramType){ - // Catchalls - case 'c': - { - // Catchalls receive all the remaining URL parts. If there are no - // remaining pathname parts, return an empty array. - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>encodeURIComponent(s)) : []; - } - // Catchall intercepted - case 'ci(..)(..)': - case 'ci(.)': - case 'ci(..)': - case 'ci(...)': - { - const prefix = paramType.length - 2; - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s, i)=>{ - if (i === 0) { - return encodeURIComponent(s.slice(prefix)); - } - return encodeURIComponent(s); - }) : []; - } - // Optional catchalls - case 'oc': - { - // Optional catchalls receive all the remaining URL parts, unless this is - // the end of the pathname, in which case they return null. - return partIndex < pathnameParts.length ? pathnameParts.slice(partIndex).map((s)=>encodeURIComponent(s)) : null; - } - // Dynamic - case 'd': - { - if (partIndex >= pathnameParts.length) { - // The route tree expected there to be more parts in the URL than there - // actually are. This could happen if the x-nextjs-rewritten-path header - // is incorrectly set, or potentially due to bug in Next.js. TODO: - // Should this be a hard error? During a prefetch, we can just abort. - // During a client navigation, we could trigger a hard refresh. But if - // it happens during initial render, we don't really have any - // recovery options. - return ''; - } - return encodeURIComponent(pathnameParts[partIndex]); - } - // Dynamic intercepted - case 'di(..)(..)': - case 'di(.)': - case 'di(..)': - case 'di(...)': - { - const prefix = paramType.length - 2; - if (partIndex >= pathnameParts.length) { - // The route tree expected there to be more parts in the URL than there - // actually are. This could happen if the x-nextjs-rewritten-path header - // is incorrectly set, or potentially due to bug in Next.js. TODO: - // Should this be a hard error? During a prefetch, we can just abort. - // During a client navigation, we could trigger a hard refresh. But if - // it happens during initial render, we don't really have any - // recovery options. - return ''; - } - return encodeURIComponent(pathnameParts[partIndex].slice(prefix)); - } - default: - paramType; - return ''; - } -} -function doesStaticSegmentAppearInURL(segment) { - // This is not a parameterized segment; however, we need to determine - // whether or not this segment appears in the URL. For example, this route - // groups do not appear in the URL, so they should be skipped. Any other - // special cases must be handled here. - // TODO: Consider encoding this directly into the router tree instead of - // inferring it on the client based on the segment type. Something like - // a `doesAppearInURL` flag in FlightRouterState. - if (segment === _segmentvalueencoding.ROOT_SEGMENT_REQUEST_KEY || // For some reason, the loader tree sometimes includes extra __PAGE__ - // "layouts" when part of a parallel route. But it's not a leaf node. - // Otherwise, we wouldn't need this special case because pages are - // always leaf nodes. - // TODO: Investigate why the loader produces these fake page segments. - segment.startsWith(_segment.PAGE_SEGMENT_KEY) || // Route groups. - segment[0] === '(' && segment.endsWith(')') || segment === _segment.DEFAULT_SEGMENT_KEY || segment === '/_not-found') { - return false; - } else { - // All other segment types appear in the URL - return true; - } -} -function getCacheKeyForDynamicParam(paramValue, renderedSearch) { - // This needs to match the logic in get-dynamic-param.ts, until we're able to - // unify the various implementations so that these are always computed on - // the client. - if (typeof paramValue === 'string') { - // TODO: Refactor or remove this helper function to accept a string rather - // than the whole segment type. Also we can probably just append the - // search string instead of turning it into JSON. - const pageSegmentWithSearchParams = (0, _segment.addSearchParamsIfPageSegment)(paramValue, Object.fromEntries(new URLSearchParams(renderedSearch))); - return pageSegmentWithSearchParams; - } else if (paramValue === null) { - return ''; - } else { - return paramValue.join('/'); - } -} -function urlToUrlWithoutFlightMarker(url) { - const urlWithoutFlightParameters = new URL(url); - urlWithoutFlightParameters.searchParams.delete(_approuterheaders.NEXT_RSC_UNION_QUERY); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return urlWithoutFlightParameters; -} -function getParamValueFromCacheKey(paramCacheKey, paramType) { - // Turn the cache key string sent by the server (as part of FlightRouterState) - // into a value that can be passed to `useParams` and client components. - const isCatchAll = paramType === 'c' || paramType === 'oc'; - if (isCatchAll) { - // Catch-all param keys are a concatenation of the path segments. - // See equivalent logic in `getSelectedParams`. - // TODO: We should just pass the array directly, rather than concatenate - // it to a string and then split it back to an array. It needs to be an - // array in some places, like when passing a key React, but we can convert - // it at runtime in those places. - return paramCacheKey.split('/'); - } - return paramCacheKey; -} -function urlSearchParamsToParsedUrlQuery(searchParams) { - // Converts a URLSearchParams object to the same type used by the server when - // creating search params props, i.e. the type returned by Node's - // "querystring" module. - const result = {}; - for (const [key, value] of searchParams.entries()){ - if (result[key] === undefined) { - result[key] = value; - } else if (Array.isArray(result[key])) { - result[key].push(value); - } else { - result[key] = [ - result[key], - value - ]; - } - } - return result; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=route-params.js.map -}), -"[project]/node_modules/next/dist/client/flight-data-helpers.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createInitialRSCPayloadFromFallbackPrerender: null, - getFlightDataPartsFromPath: null, - getNextFlightSegmentPath: null, - normalizeFlightData: null, - prepareFlightRouterStateForRequest: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createInitialRSCPayloadFromFallbackPrerender: function() { - return createInitialRSCPayloadFromFallbackPrerender; - }, - getFlightDataPartsFromPath: function() { - return getFlightDataPartsFromPath; - }, - getNextFlightSegmentPath: function() { - return getNextFlightSegmentPath; - }, - normalizeFlightData: function() { - return normalizeFlightData; - }, - prepareFlightRouterStateForRequest: function() { - return prepareFlightRouterStateForRequest; - } -}); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const _routeparams = __turbopack_context__.r("[project]/node_modules/next/dist/client/route-params.js [app-client] (ecmascript)"); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -function getFlightDataPartsFromPath(flightDataPath) { - // Pick the last 4 items from the `FlightDataPath` to get the [tree, seedData, viewport, isHeadPartial]. - const flightDataPathLength = 4; - // tree, seedData, and head are *always* the last three items in the `FlightDataPath`. - const [tree, seedData, head, isHeadPartial] = flightDataPath.slice(-flightDataPathLength); - // The `FlightSegmentPath` is everything except the last three items. For a root render, it won't be present. - const segmentPath = flightDataPath.slice(0, -flightDataPathLength); - return { - // TODO: Unify these two segment path helpers. We are inconsistently pushing an empty segment ("") - // to the start of the segment path in some places which makes it hard to use solely the segment path. - // Look for "// TODO-APP: remove ''" in the codebase. - pathToSegment: segmentPath.slice(0, -1), - segmentPath, - // if the `FlightDataPath` corresponds with the root, there'll be no segment path, - // in which case we default to ''. - segment: segmentPath[segmentPath.length - 1] ?? '', - tree, - seedData, - head, - isHeadPartial, - isRootRender: flightDataPath.length === flightDataPathLength - }; -} -function createInitialRSCPayloadFromFallbackPrerender(response, fallbackInitialRSCPayload) { - // This is a static fallback page. In order to hydrate the page, we need to - // parse the client params from the URL, but to account for the possibility - // that the page was rewritten, we need to check the response headers - // for x-nextjs-rewritten-path or x-nextjs-rewritten-query headers. Since - // we can't access the headers of the initial document response, the client - // performs a fetch request to the current location. Since it's possible that - // the fetch request will be dynamically rewritten to a different path than - // the initial document, this fetch request delivers _all_ the hydration data - // for the page; it was not inlined into the document, like it normally - // would be. - // - // TODO: Consider treating the case where fetch is rewritten to a different - // path from the document as a special deopt case. We should optimistically - // assume this won't happen, inline the data into the document, and perform - // a minimal request (like a HEAD or range request) to verify that the - // response matches. Tricky to get right because we need to account for - // all the different deployment environments we support, like output: - // "export" mode, where we currently don't assume that custom response - // headers are present. - // Patch the Flight data sent by the server with the correct params parsed - // from the URL + response object. - const renderedPathname = (0, _routeparams.getRenderedPathname)(response); - const renderedSearch = (0, _routeparams.getRenderedSearch)(response); - const canonicalUrl = (0, _createhreffromurl.createHrefFromUrl)(new URL(location.href)); - const originalFlightDataPath = fallbackInitialRSCPayload.f[0]; - const originalFlightRouterState = originalFlightDataPath[0]; - return { - b: fallbackInitialRSCPayload.b, - c: canonicalUrl.split('/'), - q: renderedSearch, - i: fallbackInitialRSCPayload.i, - f: [ - [ - fillInFallbackFlightRouterState(originalFlightRouterState, renderedPathname, renderedSearch), - originalFlightDataPath[1], - originalFlightDataPath[2], - originalFlightDataPath[2] - ] - ], - m: fallbackInitialRSCPayload.m, - G: fallbackInitialRSCPayload.G, - S: fallbackInitialRSCPayload.S - }; -} -function fillInFallbackFlightRouterState(flightRouterState, renderedPathname, renderedSearch) { - const pathnameParts = renderedPathname.split('/').filter((p)=>p !== ''); - const index = 0; - return fillInFallbackFlightRouterStateImpl(flightRouterState, renderedSearch, pathnameParts, index); -} -function fillInFallbackFlightRouterStateImpl(flightRouterState, renderedSearch, pathnameParts, pathnamePartsIndex) { - const originalSegment = flightRouterState[0]; - let newSegment; - let doesAppearInURL; - if (typeof originalSegment === 'string') { - newSegment = originalSegment; - doesAppearInURL = (0, _routeparams.doesStaticSegmentAppearInURL)(originalSegment); - } else { - const paramName = originalSegment[0]; - const paramType = originalSegment[2]; - const paramValue = (0, _routeparams.parseDynamicParamFromURLPart)(paramType, pathnameParts, pathnamePartsIndex); - const cacheKey = (0, _routeparams.getCacheKeyForDynamicParam)(paramValue, renderedSearch); - newSegment = [ - paramName, - cacheKey, - paramType - ]; - doesAppearInURL = true; - } - // Only increment the index if the segment appears in the URL. If it's a - // "virtual" segment, like a route group, it remains the same. - const childPathnamePartsIndex = doesAppearInURL ? pathnamePartsIndex + 1 : pathnamePartsIndex; - const children = flightRouterState[1]; - const newChildren = {}; - for(let key in children){ - const childFlightRouterState = children[key]; - newChildren[key] = fillInFallbackFlightRouterStateImpl(childFlightRouterState, renderedSearch, pathnameParts, childPathnamePartsIndex); - } - const newState = [ - newSegment, - newChildren, - null, - flightRouterState[3], - flightRouterState[4] - ]; - return newState; -} -function getNextFlightSegmentPath(flightSegmentPath) { - // Since `FlightSegmentPath` is a repeated tuple of `Segment` and `ParallelRouteKey`, we slice off two items - // to get the next segment path. - return flightSegmentPath.slice(2); -} -function normalizeFlightData(flightData) { - // FlightData can be a string when the server didn't respond with a proper flight response, - // or when a redirect happens, to signal to the client that it needs to perform an MPA navigation. - if (typeof flightData === 'string') { - return flightData; - } - return flightData.map((flightDataPath)=>getFlightDataPartsFromPath(flightDataPath)); -} -function prepareFlightRouterStateForRequest(flightRouterState, isHmrRefresh) { - // HMR requests need the complete, unmodified state for proper functionality - if (isHmrRefresh) { - return encodeURIComponent(JSON.stringify(flightRouterState)); - } - return encodeURIComponent(JSON.stringify(stripClientOnlyDataFromFlightRouterState(flightRouterState))); -} -/** - * Recursively strips client-only data from FlightRouterState while preserving - * server-needed information for proper rendering decisions. - */ function stripClientOnlyDataFromFlightRouterState(flightRouterState) { - const [segment, parallelRoutes, _url, refreshMarker, isRootLayout, hasLoadingBoundary] = flightRouterState; - // __PAGE__ segments are always fetched from the server, so there's - // no need to send them up - const cleanedSegment = stripSearchParamsFromPageSegment(segment); - // Recursively process parallel routes - const cleanedParallelRoutes = {}; - for (const [key, childState] of Object.entries(parallelRoutes)){ - cleanedParallelRoutes[key] = stripClientOnlyDataFromFlightRouterState(childState); - } - const result = [ - cleanedSegment, - cleanedParallelRoutes, - null, - shouldPreserveRefreshMarker(refreshMarker) ? refreshMarker : null - ]; - // Append optional fields if present - if (isRootLayout !== undefined) { - result[4] = isRootLayout; - } - if (hasLoadingBoundary !== undefined) { - result[5] = hasLoadingBoundary; - } - return result; -} -/** - * Strips search parameters from __PAGE__ segments to prevent sensitive - * client-side data from being sent to the server. - */ function stripSearchParamsFromPageSegment(segment) { - if (typeof segment === 'string' && segment.startsWith(_segment.PAGE_SEGMENT_KEY + '?')) { - return _segment.PAGE_SEGMENT_KEY; - } - return segment; -} -/** - * Determines whether the refresh marker should be sent to the server - * Client-only markers like 'refresh' are stripped, while server-needed markers - * like 'refetch' and 'inside-shared-layout' are preserved. - */ function shouldPreserveRefreshMarker(refreshMarker) { - return Boolean(refreshMarker && refreshMarker !== 'refresh'); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=flight-data-helpers.js.map -}), -"[project]/node_modules/next/dist/client/app-build-id.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// This gets assigned as a side-effect during app initialization. Because it -// represents the build used to create the JS bundle, it should never change -// after being set, so we store it in a global variable. -// -// When performing RSC requests, if the incoming data has a different build ID, -// we perform an MPA navigation/refresh to load the updated build and ensure -// that the client and server in sync. -// Starts as an empty string. In practice, because setAppBuildId is called -// during initialization before hydration starts, this will always get -// reassigned to the actual build ID before it's ever needed by a navigation. -// If for some reasons it didn't, due to a bug or race condition, then on -// navigation the build comparision would fail and trigger an MPA navigation. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getAppBuildId: null, - setAppBuildId: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getAppBuildId: function() { - return getAppBuildId; - }, - setAppBuildId: function() { - return setAppBuildId; - } -}); -let globalBuildId = ''; -function setAppBuildId(buildId) { - globalBuildId = buildId; -} -function getAppBuildId() { - return globalBuildId; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-build-id.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - setCacheBustingSearchParam: null, - setCacheBustingSearchParamWithHash: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - setCacheBustingSearchParam: function() { - return setCacheBustingSearchParam; - }, - setCacheBustingSearchParamWithHash: function() { - return setCacheBustingSearchParamWithHash; - } -}); -const _cachebustingsearchparam = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js [app-client] (ecmascript)"); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)"); -const setCacheBustingSearchParam = (url, headers)=>{ - const uniqueCacheKey = (0, _cachebustingsearchparam.computeCacheBustingSearchParam)(headers[_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER], headers[_approuterheaders.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER], headers[_approuterheaders.NEXT_ROUTER_STATE_TREE_HEADER], headers[_approuterheaders.NEXT_URL]); - setCacheBustingSearchParamWithHash(url, uniqueCacheKey); -}; -const setCacheBustingSearchParamWithHash = (url, hash)=>{ - /** - * Note that we intentionally do not use `url.searchParams.set` here: - * - * const url = new URL('https://example.com/search?q=custom%20spacing'); - * url.searchParams.set('_rsc', 'abc123'); - * console.log(url.toString()); // Outputs: https://example.com/search?q=custom+spacing&_rsc=abc123 - * ^ <--- this is causing confusion - * This is in fact intended based on https://url.spec.whatwg.org/#interface-urlsearchparams, but - * we want to preserve the %20 as %20 if that's what the user passed in, hence the custom - * logic below. - */ const existingSearch = url.search; - const rawQuery = existingSearch.startsWith('?') ? existingSearch.slice(1) : existingSearch; - // Always remove any existing cache busting param and add a fresh one to ensure - // we have the correct value based on current request headers - const pairs = rawQuery.split('&').filter((pair)=>pair && !pair.startsWith(`${_approuterheaders.NEXT_RSC_UNION_QUERY}=`)); - if (hash.length > 0) { - pairs.push(`${_approuterheaders.NEXT_RSC_UNION_QUERY}=${hash}`); - } else { - pairs.push(`${_approuterheaders.NEXT_RSC_UNION_QUERY}`); - } - url.search = pairs.length ? `?${pairs.join('&')}` : ''; -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=set-cache-busting-search-param.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use client'; -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createFetch: null, - createFromNextReadableStream: null, - fetchServerResponse: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createFetch: function() { - return createFetch; - }, - createFromNextReadableStream: function() { - return createFromNextReadableStream; - }, - fetchServerResponse: function() { - return fetchServerResponse; - } -}); -const _client = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.js [app-client] (ecmascript)"); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)"); -const _appcallserver = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-call-server.js [app-client] (ecmascript)"); -const _appfindsourcemapurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-find-source-map-url.js [app-client] (ecmascript)"); -const _flightdatahelpers = __turbopack_context__.r("[project]/node_modules/next/dist/client/flight-data-helpers.js [app-client] (ecmascript)"); -const _appbuildid = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-build-id.js [app-client] (ecmascript)"); -const _setcachebustingsearchparam = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js [app-client] (ecmascript)"); -const _routeparams = __turbopack_context__.r("[project]/node_modules/next/dist/client/route-params.js [app-client] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-client] (ecmascript)"); -const createFromReadableStream = _client.createFromReadableStream; -const createFromFetch = _client.createFromFetch; -let createDebugChannel; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -function doMpaNavigation(url) { - return (0, _routeparams.urlToUrlWithoutFlightMarker)(new URL(url, location.origin)).toString(); -} -let isPageUnloading = false; -if (typeof window !== 'undefined') { - // Track when the page is unloading, e.g. due to reloading the page or - // performing hard navigations. This allows us to suppress error logging when - // the browser cancels in-flight requests during page unload. - window.addEventListener('pagehide', ()=>{ - isPageUnloading = true; - }); - // Reset the flag on pageshow, e.g. when navigating back and the JavaScript - // execution context is restored by the browser. - window.addEventListener('pageshow', ()=>{ - isPageUnloading = false; - }); -} -async function fetchServerResponse(url, options) { - const { flightRouterState, nextUrl } = options; - const headers = { - // Enable flight response - [_approuterheaders.RSC_HEADER]: '1', - // Provide the current router state - [_approuterheaders.NEXT_ROUTER_STATE_TREE_HEADER]: (0, _flightdatahelpers.prepareFlightRouterStateForRequest)(flightRouterState, options.isHmrRefresh) - }; - if (("TURBOPACK compile-time value", "development") === 'development' && options.isHmrRefresh) { - headers[_approuterheaders.NEXT_HMR_REFRESH_HEADER] = '1'; - } - if (nextUrl) { - headers[_approuterheaders.NEXT_URL] = nextUrl; - } - // In static export mode, we need to modify the URL to request the .txt file, - // but we should preserve the original URL for the canonical URL and error handling. - const originalUrl = url; - try { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Typically, during a navigation, we decode the response using Flight's - // `createFromFetch` API, which accepts a `fetch` promise. - // TODO: Remove this check once the old PPR flag is removed - const isLegacyPPR = ("TURBOPACK compile-time value", false) && !("TURBOPACK compile-time value", false); - const shouldImmediatelyDecode = !isLegacyPPR; - const res = await createFetch(url, headers, 'auto', shouldImmediatelyDecode); - const responseUrl = (0, _routeparams.urlToUrlWithoutFlightMarker)(new URL(res.url)); - const canonicalUrl = res.redirected ? responseUrl : originalUrl; - const contentType = res.headers.get('content-type') || ''; - const interception = !!res.headers.get('vary')?.includes(_approuterheaders.NEXT_URL); - const postponed = !!res.headers.get(_approuterheaders.NEXT_DID_POSTPONE_HEADER); - const staleTimeHeaderSeconds = res.headers.get(_approuterheaders.NEXT_ROUTER_STALE_TIME_HEADER); - const staleTime = staleTimeHeaderSeconds !== null ? parseInt(staleTimeHeaderSeconds, 10) * 1000 : -1; - let isFlightResponse = contentType.startsWith(_approuterheaders.RSC_CONTENT_TYPE_HEADER); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // If fetch returns something different than flight response handle it like a mpa navigation - // If the fetch was not 200, we also handle it like a mpa navigation - if (!isFlightResponse || !res.ok || !res.body) { - // in case the original URL came with a hash, preserve it before redirecting to the new URL - if (url.hash) { - responseUrl.hash = url.hash; - } - return doMpaNavigation(responseUrl.toString()); - } - // We may navigate to a page that requires a different Webpack runtime. - // In prod, every page will have the same Webpack runtime. - // In dev, the Webpack runtime is minimal for each page. - // We need to ensure the Webpack runtime is updated before executing client-side JS of the new page. - // TODO: This needs to happen in the Flight Client. - // Or Webpack needs to include the runtime update in the Flight response as - // a blocking script. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - let flightResponsePromise = res.flightResponse; - if (flightResponsePromise === null) { - // Typically, `createFetch` would have already started decoding the - // Flight response. If it hasn't, though, we need to decode it now. - // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR - // without Cache Components). Remove this branch once legacy PPR - // is deleted. - const flightStream = postponed ? createUnclosingPrefetchStream(res.body) : res.body; - flightResponsePromise = createFromNextReadableStream(flightStream, headers); - } - const flightResponse = await flightResponsePromise; - if ((0, _appbuildid.getAppBuildId)() !== flightResponse.b) { - return doMpaNavigation(res.url); - } - const normalizedFlightData = (0, _flightdatahelpers.normalizeFlightData)(flightResponse.f); - if (typeof normalizedFlightData === 'string') { - return doMpaNavigation(normalizedFlightData); - } - return { - flightData: normalizedFlightData, - canonicalUrl: canonicalUrl, - renderedSearch: (0, _routeparams.getRenderedSearch)(res), - couldBeIntercepted: interception, - prerendered: flightResponse.S, - postponed, - staleTime, - debugInfo: flightResponsePromise._debugInfo ?? null - }; - } catch (err) { - if (!isPageUnloading) { - console.error(`Failed to fetch RSC payload for ${originalUrl}. Falling back to browser navigation.`, err); - } - // If fetch fails handle it like a mpa navigation - // TODO-APP: Add a test for the case where a CORS request fails, e.g. external url redirect coming from the response. - // See https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521 for a reproduction. - return originalUrl.toString(); - } -} -async function createFetch(url, headers, fetchPriority, shouldImmediatelyDecode, signal) { - // TODO: In output: "export" mode, the headers do nothing. Omit them (and the - // cache busting search param) from the request so they're - // maximally cacheable. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - const deploymentId = (0, _deploymentid.getDeploymentId)(); - if (deploymentId) { - headers['x-deployment-id'] = deploymentId; - } - if ("TURBOPACK compile-time truthy", 1) { - if (self.__next_r) { - headers[_approuterheaders.NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r; - } - // Create a new request ID for the server action request. The server uses - // this to tag debug information sent via WebSocket to the client, which - // then routes those chunks to the debug channel associated with this ID. - headers[_approuterheaders.NEXT_REQUEST_ID_HEADER] = crypto.getRandomValues(new Uint32Array(1))[0].toString(16); - } - const fetchOptions = { - // Backwards compat for older browsers. `same-origin` is the default in modern browsers. - credentials: 'same-origin', - headers, - priority: fetchPriority || undefined, - signal - }; - // `fetchUrl` is slightly different from `url` because we add a cache-busting - // search param to it. This should not leak outside of this function, so we - // track them separately. - let fetchUrl = new URL(url); - (0, _setcachebustingsearchparam.setCacheBustingSearchParam)(fetchUrl, headers); - let fetchPromise = fetch(fetchUrl, fetchOptions); - // Immediately pass the fetch promise to the Flight client so that the debug - // info includes the latency from the client to the server. The internal timer - // in React starts as soon as `createFromFetch` is called. - // - // The only case where we don't do this is during a prefetch, because we have - // to do some extra processing of the response stream (see - // `createUnclosingPrefetchStream`). But this is fine, because a top-level - // prefetch response never blocks a navigation; if it hasn't already been - // written into the cache by the time the navigation happens, the router will - // go straight to a dynamic request. - let flightResponsePromise = shouldImmediatelyDecode ? createFromNextFetch(fetchPromise, headers) : null; - let browserResponse = await fetchPromise; - // If the server responds with a redirect (e.g. 307), and the redirected - // location does not contain the cache busting search param set in the - // original request, the response is likely invalid — when following the - // redirect, the browser forwards the request headers, but since the cache - // busting search param is missing, the server will reject the request due to - // a mismatch. - // - // Ideally, we would be able to intercept the redirect response and perform it - // manually, instead of letting the browser automatically follow it, but this - // is not allowed by the fetch API. - // - // So instead, we must "replay" the redirect by fetching the new location - // again, but this time we'll append the cache busting search param to prevent - // a mismatch. - // - // TODO: We can optimize Next.js's built-in middleware APIs by returning a - // custom status code, to prevent the browser from automatically following it. - // - // This does not affect Server Action-based redirects; those are encoded - // differently, as part of the Flight body. It only affects redirects that - // occur in a middleware or a third-party proxy. - let redirected = browserResponse.redirected; - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Remove the cache busting search param from the response URL, to prevent it - // from leaking outside of this function. - const responseUrl = new URL(browserResponse.url, fetchUrl); - responseUrl.searchParams.delete(_approuterheaders.NEXT_RSC_UNION_QUERY); - const rscResponse = { - url: responseUrl.href, - // This is true if any redirects occurred, either automatically by the - // browser, or manually by us. So it's different from - // `browserResponse.redirected`, which only tells us whether the browser - // followed a redirect, and only for the last response in the chain. - redirected, - // These can be copied from the last browser response we received. We - // intentionally only expose the subset of fields that are actually used - // elsewhere in the codebase. - ok: browserResponse.ok, - headers: browserResponse.headers, - body: browserResponse.body, - status: browserResponse.status, - // This is the exact promise returned by `createFromFetch`. It contains - // debug information that we need to transfer to any derived promises that - // are later rendered by React. - flightResponse: flightResponsePromise - }; - return rscResponse; -} -function createFromNextReadableStream(flightStream, requestHeaders) { - return createFromReadableStream(flightStream, { - callServer: _appcallserver.callServer, - findSourceMapURL: _appfindsourcemapurl.findSourceMapURL, - debugChannel: createDebugChannel && createDebugChannel(requestHeaders) - }); -} -function createFromNextFetch(promiseForResponse, requestHeaders) { - return createFromFetch(promiseForResponse, { - callServer: _appcallserver.callServer, - findSourceMapURL: _appfindsourcemapurl.findSourceMapURL, - debugChannel: createDebugChannel && createDebugChannel(requestHeaders) - }); -} -function createUnclosingPrefetchStream(originalFlightStream) { - // When PPR is enabled, prefetch streams may contain references that never - // resolve, because that's how we encode dynamic data access. In the decoded - // object returned by the Flight client, these are reified into hanging - // promises that suspend during render, which is effectively what we want. - // The UI resolves when it switches to the dynamic data stream - // (via useDeferredValue(dynamic, static)). - // - // However, the Flight implementation currently errors if the server closes - // the response before all the references are resolved. As a cheat to work - // around this, we wrap the original stream in a new stream that never closes, - // and therefore doesn't error. - const reader = originalFlightStream.getReader(); - return new ReadableStream({ - async pull (controller) { - while(true){ - const { done, value } = await reader.read(); - if (!done) { - // Pass to the target stream and keep consuming the Flight response - // from the server. - controller.enqueue(value); - continue; - } - // The server stream has closed. Exit, but intentionally do not close - // the target stream. - return; - } - } - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=fetch-server-response.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createRouterCacheKey", { - enumerable: true, - get: function() { - return createRouterCacheKey; - } -}); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -function createRouterCacheKey(segment, withoutSearchParameters = false) { - // if the segment is an array, it means it's a dynamic segment - // for example, ['lang', 'en', 'd']. We need to convert it to a string to store it as a cache node key. - if (Array.isArray(segment)) { - return `${segment[0]}|${segment[1]}|${segment[2]}`; - } - // Page segments might have search parameters, ie __PAGE__?foo=bar - // When `withoutSearchParameters` is true, we only want to return the page segment - if (withoutSearchParameters && segment.startsWith(_segment.PAGE_SEGMENT_KEY)) { - return _segment.PAGE_SEGMENT_KEY; - } - return segment; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=create-router-cache-key.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "isNavigatingToNewRootLayout", { - enumerable: true, - get: function() { - return isNavigatingToNewRootLayout; - } -}); -function isNavigatingToNewRootLayout(currentTree, nextTree) { - // Compare segments - const currentTreeSegment = currentTree[0]; - const nextTreeSegment = nextTree[0]; - // If any segment is different before we find the root layout, the root layout has changed. - // E.g. /same/(group1)/layout.js -> /same/(group2)/layout.js - // First segment is 'same' for both, keep looking. (group1) changed to (group2) before the root layout was found, it must have changed. - if (Array.isArray(currentTreeSegment) && Array.isArray(nextTreeSegment)) { - // Compare dynamic param name and type but ignore the value, different values would not affect the current root layout - // /[name] - /slug1 and /slug2, both values (slug1 & slug2) still has the same layout /[name]/layout.js - if (currentTreeSegment[0] !== nextTreeSegment[0] || currentTreeSegment[2] !== nextTreeSegment[2]) { - return true; - } - } else if (currentTreeSegment !== nextTreeSegment) { - return true; - } - // Current tree root layout found - if (currentTree[4]) { - // If the next tree doesn't have the root layout flag, it must have changed. - return !nextTree[4]; - } - // Current tree didn't have its root layout here, must have changed. - if (nextTree[4]) { - return true; - } - // We can't assume it's `parallelRoutes.children` here in case the root layout is `app/@something/layout.js` - // But it's not possible to be more than one parallelRoutes before the root layout is found - // TODO-APP: change to traverse all parallel routes - const currentTreeChild = Object.values(currentTree[1])[0]; - const nextTreeChild = Object.values(nextTree[1])[0]; - if (!currentTreeChild || !nextTreeChild) return true; - return isNavigatingToNewRootLayout(currentTreeChild, nextTreeChild); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=is-navigating-to-new-root-layout.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - FreshnessPolicy: null, - createInitialCacheNodeForHydration: null, - isDeferredRsc: null, - spawnDynamicRequests: null, - startPPRNavigation: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - FreshnessPolicy: function() { - return FreshnessPolicy; - }, - createInitialCacheNodeForHydration: function() { - return createInitialCacheNodeForHydration; - }, - isDeferredRsc: function() { - return isDeferredRsc; - }, - spawnDynamicRequests: function() { - return spawnDynamicRequests; - }, - startPPRNavigation: function() { - return startPPRNavigation; - } -}); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const _matchsegments = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/match-segments.js [app-client] (ecmascript)"); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _createroutercachekey = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js [app-client] (ecmascript)"); -const _fetchserverresponse = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js [app-client] (ecmascript)"); -const _useactionqueue = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/use-action-queue.js [app-client] (ecmascript)"); -const _routerreducertypes = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js [app-client] (ecmascript)"); -const _isnavigatingtonewrootlayout = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js [app-client] (ecmascript)"); -const _navigatereducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js [app-client] (ecmascript)"); -const _navigation = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/navigation.js [app-client] (ecmascript)"); -var FreshnessPolicy = /*#__PURE__*/ function(FreshnessPolicy) { - FreshnessPolicy[FreshnessPolicy["Default"] = 0] = "Default"; - FreshnessPolicy[FreshnessPolicy["Hydration"] = 1] = "Hydration"; - FreshnessPolicy[FreshnessPolicy["HistoryTraversal"] = 2] = "HistoryTraversal"; - FreshnessPolicy[FreshnessPolicy["RefreshAll"] = 3] = "RefreshAll"; - FreshnessPolicy[FreshnessPolicy["HMRRefresh"] = 4] = "HMRRefresh"; - return FreshnessPolicy; -}({}); -const noop = ()=>{}; -function createInitialCacheNodeForHydration(navigatedAt, initialTree, seedData, seedHead) { - // Create the initial cache node tree, using the data embedded into the - // HTML document. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const task = createCacheNodeOnNavigation(navigatedAt, initialTree, undefined, 1, seedData, seedHead, null, null, false, null, null, false, accumulation); - // NOTE: We intentionally don't check if any data needs to be fetched from the - // server. We assume the initial hydration payload is sufficient to render - // the page. - // - // The completeness of the initial data is an important property that we rely - // on as a last-ditch mechanism for recovering the app; we must always be able - // to reload a fresh HTML document to get to a consistent state. - // - // In the future, there may be cases where the server intentionally sends - // partial data and expects the client to fill in the rest, in which case this - // logic may change. (There already is a similar case where the server sends - // _no_ hydration data in the HTML document at all, and the client fetches it - // separately, but that's different because we still end up hydrating with a - // complete tree.) - return task.node; -} -function startPPRNavigation(navigatedAt, oldUrl, oldCacheNode, oldRouterState, newRouterState, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, accumulation) { - const didFindRootLayout = false; - const parentNeedsDynamicRequest = false; - const parentRefreshUrl = null; - return updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNode !== null ? oldCacheNode : undefined, oldRouterState, newRouterState, freshness, didFindRootLayout, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, null, null, parentNeedsDynamicRequest, parentRefreshUrl, accumulation); -} -function updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNode, oldRouterState, newRouterState, freshness, didFindRootLayout, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, parentRefreshUrl, accumulation) { - // Check if this segment matches the one in the previous route. - const oldSegment = oldRouterState[0]; - const newSegment = newRouterState[0]; - if (!(0, _matchsegments.matchSegment)(newSegment, oldSegment)) { - // This segment does not match the previous route. We're now entering the - // new part of the target route. Switch to the "create" path. - if (// highest-level layout in a route tree is referred to as the "root" - // layout.) This could mean that we're navigating between two different - // root layouts. When this happens, we perform a full-page (MPA-style) - // navigation. - // - // However, the algorithm for deciding where to start rendering a route - // (i.e. the one performed in order to reach this function) is stricter - // than the one used to detect a change in the root layout. So just - // because we're re-rendering a segment outside of the root layout does - // not mean we should trigger a full-page navigation. - // - // Specifically, we handle dynamic parameters differently: two segments - // are considered the same even if their parameter values are different. - // - // Refer to isNavigatingToNewRootLayout for details. - // - // Note that we only have to perform this extra traversal if we didn't - // already discover a root layout in the part of the tree that is - // unchanged. We also only need to compare the subtree that is not - // shared. In the common case, this branch is skipped completely. - !didFindRootLayout && (0, _isnavigatingtonewrootlayout.isNavigatingToNewRootLayout)(oldRouterState, newRouterState) || // The global Not Found route (app/global-not-found.tsx) is a special - // case, because it acts like a root layout, but in the router tree, it - // is rendered in the same position as app/layout.tsx. - // - // Any navigation to the global Not Found route should trigger a - // full-page navigation. - // - // TODO: We should probably model this by changing the key of the root - // segment when this happens. Then the root layout check would work - // as expected, without a special case. - newSegment === _segment.NOT_FOUND_SEGMENT_KEY) { - return null; - } - if (parentSegmentPath === null || parentParallelRouteKey === null) { - // The root should never mismatch. If it does, it suggests an internal - // Next.js error, or a malformed server response. Trigger a full- - // page navigation. - return null; - } - return createCacheNodeOnNavigation(navigatedAt, newRouterState, oldCacheNode, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, accumulation); - } - // TODO: The segment paths are tracked so that LayoutRouter knows which - // segments to scroll to after a navigation. But we should just mark this - // information on the CacheNode directly. It used to be necessary to do this - // separately because CacheNodes were created lazily during render, not when - // rather than when creating the route tree. - const segmentPath = parentParallelRouteKey !== null && parentSegmentPath !== null ? parentSegmentPath.concat([ - parentParallelRouteKey, - newSegment - ]) : []; - const newRouterStateChildren = newRouterState[1]; - const oldRouterStateChildren = oldRouterState[1]; - const seedDataChildren = seedData !== null ? seedData[1] : null; - const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null; - // We're currently traversing the part of the tree that was also part of - // the previous route. If we discover a root layout, then we don't need to - // trigger an MPA navigation. - const isRootLayout = newRouterState[4] === true; - const childDidFindRootLayout = didFindRootLayout || isRootLayout; - const oldParallelRoutes = oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined; - // Clone the current set of segment children, even if they aren't active in - // the new tree. - // TODO: We currently retain all the inactive segments indefinitely, until - // there's an explicit refresh, or a parent layout is lazily refreshed. We - // rely on this for popstate navigations, which update the Router State Tree - // but do not eagerly perform a data fetch, because they expect the segment - // data to already be in the Cache Node tree. For highly static sites that - // are mostly read-only, this may happen only rarely, causing memory to - // leak. We should figure out a better model for the lifetime of inactive - // segments, so we can maintain instant back/forward navigations without - // leaking memory indefinitely. - let shouldDropSiblingCaches = false; - let shouldRefreshDynamicData = false; - switch(freshness){ - case 0: - case 2: - case 1: - // We should never drop dynamic data in shared layouts, except during - // a refresh. - shouldDropSiblingCaches = false; - shouldRefreshDynamicData = false; - break; - case 3: - case 4: - shouldDropSiblingCaches = true; - shouldRefreshDynamicData = true; - break; - default: - freshness; - break; - } - const newParallelRoutes = new Map(shouldDropSiblingCaches ? undefined : oldParallelRoutes); - // TODO: We're not consistent about how we do this check. Some places - // check if the segment starts with PAGE_SEGMENT_KEY, but most seem to - // check if there any any children, which is why I'm doing it here. We - // should probably encode an empty children set as `null` though. Either - // way, we should update all the checks to be consistent. - const isLeafSegment = Object.keys(newRouterStateChildren).length === 0; - // Get the data for this segment. Since it was part of the previous route, - // usually we just clone the data from the old CacheNode. However, during a - // refresh or a revalidation, there won't be any existing CacheNode. So we - // may need to consult the prefetch cache, like we would for a new segment. - let newCacheNode; - let needsDynamicRequest; - if (oldCacheNode !== undefined && !shouldRefreshDynamicData && // During a same-page navigation, we always refetch the page segments - !(isLeafSegment && isSamePageNavigation)) { - // Reuse the existing CacheNode - const dropPrefetchRsc = false; - newCacheNode = reuseDynamicCacheNode(dropPrefetchRsc, oldCacheNode, newParallelRoutes); - needsDynamicRequest = false; - } else if (seedData !== null && seedData[0] !== null) { - // If this navigation was the result of an action, then check if the - // server sent back data in the action response. We should favor using - // that, rather than performing a separate request. This is both better - // for performance and it's more likely to be consistent with any - // writes that were just performed by the action, compared to a - // separate request. - const seedRsc = seedData[0]; - const seedLoading = seedData[2]; - const isSeedRscPartial = false; - const isSeedHeadPartial = seedHead === null; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isLeafSegment && isSeedHeadPartial; - } else if (prefetchData !== null) { - // Consult the prefetch cache. - const prefetchRsc = prefetchData[0]; - const prefetchLoading = prefetchData[2]; - const isPrefetchRSCPartial = prefetchData[3]; - newCacheNode = readCacheNodeFromSeedData(prefetchRsc, prefetchLoading, isPrefetchRSCPartial, prefetchHead, isPrefetchHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isPrefetchRSCPartial || isLeafSegment && isPrefetchHeadPartial; - } else { - // Spawn a request to fetch new data from the server. - newCacheNode = spawnNewCacheNode(newParallelRoutes, isLeafSegment, navigatedAt, freshness); - needsDynamicRequest = true; - } - // During a refresh navigation, there's a special case that happens when - // entering a "default" slot. The default slot may not be part of the - // current route; it may have been reused from an older route. If so, - // we need to fetch its data from the old route's URL rather than current - // route's URL. Keep track of this as we traverse the tree. - const href = newRouterState[2]; - const refreshUrl = typeof href === 'string' && newRouterState[3] === 'refresh' ? href : parentRefreshUrl; - // If this segment itself needs to fetch new data from the server, then by - // definition it is being refreshed. Track its refresh URL so we know which - // URL to request the data from. - if (needsDynamicRequest && refreshUrl !== null) { - accumulateRefreshUrl(accumulation, refreshUrl); - } - // As we diff the trees, we may sometimes modify (copy-on-write, not mutate) - // the Route Tree that was returned by the server — for example, in the case - // of default parallel routes, we preserve the currently active segment. To - // avoid mutating the original tree, we clone the router state children along - // the return path. - let patchedRouterStateChildren = {}; - let taskChildren = null; - // Most navigations require a request to fetch additional data from the - // server, either because the data was not already prefetched, or because the - // target route contains dynamic data that cannot be prefetched. - // - // However, if the target route is fully static, and it's already completely - // loaded into the segment cache, then we can skip the server request. - // - // This starts off as `false`, and is set to `true` if any of the child - // routes requires a dynamic request. - let childNeedsDynamicRequest = false; - // As we traverse the children, we'll construct a FlightRouterState that can - // be sent to the server to request the dynamic data. If it turns out that - // nothing in the subtree is dynamic (i.e. childNeedsDynamicRequest is false - // at the end), then this will be discarded. - // TODO: We can probably optimize the format of this data structure to only - // include paths that are dynamic. Instead of reusing the - // FlightRouterState type. - let dynamicRequestTreeChildren = {}; - for(let parallelRouteKey in newRouterStateChildren){ - let newRouterStateChild = newRouterStateChildren[parallelRouteKey]; - const oldRouterStateChild = oldRouterStateChildren[parallelRouteKey]; - if (oldRouterStateChild === undefined) { - // This should never happen, but if it does, it suggests a malformed - // server response. Trigger a full-page navigation. - return null; - } - const oldSegmentMapChild = oldParallelRoutes !== undefined ? oldParallelRoutes.get(parallelRouteKey) : undefined; - let seedDataChild = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null; - let prefetchDataChild = prefetchDataChildren !== null ? prefetchDataChildren[parallelRouteKey] : null; - let newSegmentChild = newRouterStateChild[0]; - let seedHeadChild = seedHead; - let prefetchHeadChild = prefetchHead; - let isPrefetchHeadPartialChild = isPrefetchHeadPartial; - if (// was stashed in the history entry as-is. - freshness !== 2 && newSegmentChild === _segment.DEFAULT_SEGMENT_KEY) { - // This is a "default" segment. These are never sent by the server during - // a soft navigation; instead, the client reuses whatever segment was - // already active in that slot on the previous route. - newRouterStateChild = reuseActiveSegmentInDefaultSlot(oldUrl, oldRouterStateChild); - newSegmentChild = newRouterStateChild[0]; - // Since we're switching to a different route tree, these are no - // longer valid, because they correspond to the outer tree. - seedDataChild = null; - seedHeadChild = null; - prefetchDataChild = null; - prefetchHeadChild = null; - isPrefetchHeadPartialChild = false; - } - const newSegmentKeyChild = (0, _createroutercachekey.createRouterCacheKey)(newSegmentChild); - const oldCacheNodeChild = oldSegmentMapChild !== undefined ? oldSegmentMapChild.get(newSegmentKeyChild) : undefined; - const taskChild = updateCacheNodeOnNavigation(navigatedAt, oldUrl, oldCacheNodeChild, oldRouterStateChild, newRouterStateChild, freshness, childDidFindRootLayout, seedDataChild ?? null, seedHeadChild, prefetchDataChild ?? null, prefetchHeadChild, isPrefetchHeadPartialChild, isSamePageNavigation, segmentPath, parallelRouteKey, parentNeedsDynamicRequest || needsDynamicRequest, refreshUrl, accumulation); - if (taskChild === null) { - // One of the child tasks discovered a change to the root layout. - // Immediately unwind from this recursive traversal. This will trigger a - // full-page navigation. - return null; - } - // Recursively propagate up the child tasks. - if (taskChildren === null) { - taskChildren = new Map(); - } - taskChildren.set(parallelRouteKey, taskChild); - const newCacheNodeChild = taskChild.node; - if (newCacheNodeChild !== null) { - const newSegmentMapChild = new Map(shouldDropSiblingCaches ? undefined : oldSegmentMapChild); - newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild); - newParallelRoutes.set(parallelRouteKey, newSegmentMapChild); - } - // The child tree's route state may be different from the prefetched - // route sent by the server. We need to clone it as we traverse back up - // the tree. - const taskChildRoute = taskChild.route; - patchedRouterStateChildren[parallelRouteKey] = taskChildRoute; - const dynamicRequestTreeChild = taskChild.dynamicRequestTree; - if (dynamicRequestTreeChild !== null) { - // Something in the child tree is dynamic. - childNeedsDynamicRequest = true; - dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild; - } else { - dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute; - } - } - return { - status: needsDynamicRequest ? 0 : 1, - route: patchRouterStateWithNewChildren(newRouterState, patchedRouterStateChildren), - node: newCacheNode, - dynamicRequestTree: createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest), - refreshUrl, - children: taskChildren - }; -} -function createCacheNodeOnNavigation(navigatedAt, newRouterState, oldCacheNode, freshness, seedData, seedHead, prefetchData, prefetchHead, isPrefetchHeadPartial, parentSegmentPath, parentParallelRouteKey, parentNeedsDynamicRequest, accumulation) { - // Same traversal as updateCacheNodeNavigation, but simpler. We switch to this - // path once we reach the part of the tree that was not in the previous route. - // We don't need to diff against the old tree, we just need to create a new - // one. We also don't need to worry about any refresh-related logic. - // - // For the most part, this is a subset of updateCacheNodeOnNavigation, so any - // change that happens in this function likely needs to be applied to that - // one, too. However there are some places where the behavior intentionally - // diverges, which is why we keep them separate. - const newSegment = newRouterState[0]; - const segmentPath = parentParallelRouteKey !== null && parentSegmentPath !== null ? parentSegmentPath.concat([ - parentParallelRouteKey, - newSegment - ]) : []; - const newRouterStateChildren = newRouterState[1]; - const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null; - const seedDataChildren = seedData !== null ? seedData[1] : null; - const oldParallelRoutes = oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined; - let shouldDropSiblingCaches = false; - let shouldRefreshDynamicData = false; - let dropPrefetchRsc = false; - switch(freshness){ - case 0: - // We should never drop dynamic data in sibling caches except during - // a refresh. - shouldDropSiblingCaches = false; - // Only reuse the dynamic data if experimental.staleTimes.dynamic config - // is set, and the data is not stale. (This is not a recommended API with - // Cache Components, but it's supported for backwards compatibility. Use - // cacheLife instead.) - // - // DYNAMIC_STALETIME_MS defaults to 0, but it can be increased. - shouldRefreshDynamicData = oldCacheNode === undefined || navigatedAt - oldCacheNode.navigatedAt >= _navigatereducer.DYNAMIC_STALETIME_MS; - dropPrefetchRsc = false; - break; - case 1: - // During hydration, we assume the data sent by the server is both - // consistent and complete. - shouldRefreshDynamicData = false; - shouldDropSiblingCaches = false; - dropPrefetchRsc = false; - break; - case 2: - // During back/forward navigations, we reuse the dynamic data regardless - // of how stale it may be. - shouldRefreshDynamicData = false; - shouldRefreshDynamicData = false; - // Only show prefetched data if the dynamic data is still pending. This - // avoids a flash back to the prefetch state in a case where it's highly - // likely to have already streamed in. - // - // Tehnically, what we're actually checking is whether the dynamic network - // response was received. But since it's a streaming response, this does - // not mean that all the dynamic data has fully streamed in. It just means - // that _some_ of the dynamic data was received. But as a heuristic, we - // assume that the rest dynamic data will stream in quickly, so it's still - // better to skip the prefetch state. - if (oldCacheNode !== undefined) { - const oldRsc = oldCacheNode.rsc; - const oldRscDidResolve = !isDeferredRsc(oldRsc) || oldRsc.status !== 'pending'; - dropPrefetchRsc = oldRscDidResolve; - } else { - dropPrefetchRsc = false; - } - break; - case 3: - case 4: - // Drop all dynamic data. - shouldRefreshDynamicData = true; - shouldDropSiblingCaches = true; - dropPrefetchRsc = false; - break; - default: - freshness; - break; - } - const newParallelRoutes = new Map(shouldDropSiblingCaches ? undefined : oldParallelRoutes); - const isLeafSegment = Object.keys(newRouterStateChildren).length === 0; - if (isLeafSegment) { - // The segment path of every leaf segment (i.e. page) is collected into - // a result array. This is used by the LayoutRouter to scroll to ensure that - // new pages are visible after a navigation. - // - // This only happens for new pages, not for refreshed pages. - // - // TODO: We should use a string to represent the segment path instead of - // an array. We already use a string representation for the path when - // accessing the Segment Cache, so we can use the same one. - if (accumulation.scrollableSegments === null) { - accumulation.scrollableSegments = []; - } - accumulation.scrollableSegments.push(segmentPath); - } - let newCacheNode; - let needsDynamicRequest; - if (!shouldRefreshDynamicData && oldCacheNode !== undefined) { - // Reuse the existing CacheNode - newCacheNode = reuseDynamicCacheNode(dropPrefetchRsc, oldCacheNode, newParallelRoutes); - needsDynamicRequest = false; - } else if (seedData !== null && seedData[0] !== null) { - // If this navigation was the result of an action, then check if the - // server sent back data in the action response. We should favor using - // that, rather than performing a separate request. This is both better - // for performance and it's more likely to be consistent with any - // writes that were just performed by the action, compared to a - // separate request. - const seedRsc = seedData[0]; - const seedLoading = seedData[2]; - const isSeedRscPartial = false; - const isSeedHeadPartial = seedHead === null && freshness !== 1; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isLeafSegment && isSeedHeadPartial; - } else if (freshness === 1 && isLeafSegment && seedHead !== null) { - // This is another weird case related to "not found" pages and hydration. - // There will be a head sent by the server, but no page seed data. - // TODO: We really should get rid of all these "not found" specific quirks - // and make sure the tree is always consistent. - const seedRsc = null; - const seedLoading = null; - const isSeedRscPartial = false; - const isSeedHeadPartial = false; - newCacheNode = readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = false; - } else if (freshness !== 1 && prefetchData !== null) { - // Consult the prefetch cache. - const prefetchRsc = prefetchData[0]; - const prefetchLoading = prefetchData[2]; - const isPrefetchRSCPartial = prefetchData[3]; - newCacheNode = readCacheNodeFromSeedData(prefetchRsc, prefetchLoading, isPrefetchRSCPartial, prefetchHead, isPrefetchHeadPartial, isLeafSegment, newParallelRoutes, navigatedAt); - needsDynamicRequest = isPrefetchRSCPartial || isLeafSegment && isPrefetchHeadPartial; - } else { - // Spawn a request to fetch new data from the server. - newCacheNode = spawnNewCacheNode(newParallelRoutes, isLeafSegment, navigatedAt, freshness); - needsDynamicRequest = true; - } - let patchedRouterStateChildren = {}; - let taskChildren = null; - let childNeedsDynamicRequest = false; - let dynamicRequestTreeChildren = {}; - for(let parallelRouteKey in newRouterStateChildren){ - const newRouterStateChild = newRouterStateChildren[parallelRouteKey]; - const oldSegmentMapChild = oldParallelRoutes !== undefined ? oldParallelRoutes.get(parallelRouteKey) : undefined; - const seedDataChild = seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null; - const prefetchDataChild = prefetchDataChildren !== null ? prefetchDataChildren[parallelRouteKey] : null; - const newSegmentChild = newRouterStateChild[0]; - const newSegmentKeyChild = (0, _createroutercachekey.createRouterCacheKey)(newSegmentChild); - const oldCacheNodeChild = oldSegmentMapChild !== undefined ? oldSegmentMapChild.get(newSegmentKeyChild) : undefined; - const taskChild = createCacheNodeOnNavigation(navigatedAt, newRouterStateChild, oldCacheNodeChild, freshness, seedDataChild ?? null, seedHead, prefetchDataChild ?? null, prefetchHead, isPrefetchHeadPartial, segmentPath, parallelRouteKey, parentNeedsDynamicRequest || needsDynamicRequest, accumulation); - if (taskChildren === null) { - taskChildren = new Map(); - } - taskChildren.set(parallelRouteKey, taskChild); - const newCacheNodeChild = taskChild.node; - if (newCacheNodeChild !== null) { - const newSegmentMapChild = new Map(shouldDropSiblingCaches ? undefined : oldSegmentMapChild); - newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild); - newParallelRoutes.set(parallelRouteKey, newSegmentMapChild); - } - const taskChildRoute = taskChild.route; - patchedRouterStateChildren[parallelRouteKey] = taskChildRoute; - const dynamicRequestTreeChild = taskChild.dynamicRequestTree; - if (dynamicRequestTreeChild !== null) { - childNeedsDynamicRequest = true; - dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild; - } else { - dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute; - } - } - return { - status: needsDynamicRequest ? 0 : 1, - route: patchRouterStateWithNewChildren(newRouterState, patchedRouterStateChildren), - node: newCacheNode, - dynamicRequestTree: createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest), - // This route is not part of the current tree, so there's no reason to - // track the refresh URL. - refreshUrl: null, - children: taskChildren - }; -} -function patchRouterStateWithNewChildren(baseRouterState, newChildren) { - const clone = [ - baseRouterState[0], - newChildren - ]; - // Based on equivalent logic in apply-router-state-patch-to-tree, but should - // confirm whether we need to copy all of these fields. Not sure the server - // ever sends, e.g. the refetch marker. - if (2 in baseRouterState) { - clone[2] = baseRouterState[2]; - } - if (3 in baseRouterState) { - clone[3] = baseRouterState[3]; - } - if (4 in baseRouterState) { - clone[4] = baseRouterState[4]; - } - return clone; -} -function createDynamicRequestTree(newRouterState, dynamicRequestTreeChildren, needsDynamicRequest, childNeedsDynamicRequest, parentNeedsDynamicRequest) { - // Create a FlightRouterState that instructs the server how to render the - // requested segment. - // - // Or, if neither this segment nor any of the children require a new data, - // then we return `null` to skip the request. - let dynamicRequestTree = null; - if (needsDynamicRequest) { - dynamicRequestTree = patchRouterStateWithNewChildren(newRouterState, dynamicRequestTreeChildren); - // The "refetch" marker is set on the top-most segment that requires new - // data. We can omit it if a parent was already marked. - if (!parentNeedsDynamicRequest) { - dynamicRequestTree[3] = 'refetch'; - } - } else if (childNeedsDynamicRequest) { - // This segment does not request new data, but at least one of its - // children does. - dynamicRequestTree = patchRouterStateWithNewChildren(newRouterState, dynamicRequestTreeChildren); - } else { - dynamicRequestTree = null; - } - return dynamicRequestTree; -} -function accumulateRefreshUrl(accumulation, refreshUrl) { - // This is a refresh navigation, and we're inside a "default" slot that's - // not part of the current route; it was reused from an older route. In - // order to get fresh data for this reused route, we need to issue a - // separate request using the old route's URL. - // - // Track these extra URLs in the accumulated result. Later, we'll construct - // an appropriate request for each unique URL in the final set. The reason - // we don't do it immediately here is so we can deduplicate multiple - // instances of the same URL into a single request. See - // listenForDynamicRequest for more details. - const separateRefreshUrls = accumulation.separateRefreshUrls; - if (separateRefreshUrls === null) { - accumulation.separateRefreshUrls = new Set([ - refreshUrl - ]); - } else { - separateRefreshUrls.add(refreshUrl); - } -} -function reuseActiveSegmentInDefaultSlot(oldUrl, oldRouterState) { - // This is a "default" segment. These are never sent by the server during a - // soft navigation; instead, the client reuses whatever segment was already - // active in that slot on the previous route. This means if we later need to - // refresh the segment, it will have to be refetched from the previous route's - // URL. We store it in the Flight Router State. - // - // TODO: We also mark the segment with a "refresh" marker but I think we can - // get rid of that eventually by making sure we only add URLs to page segments - // that are reused. Then the presence of the URL alone is enough. - let reusedRouterState; - const oldRefreshMarker = oldRouterState[3]; - if (oldRefreshMarker === 'refresh') { - // This segment was already reused from an even older route. Keep its - // existing URL and refresh marker. - reusedRouterState = oldRouterState; - } else { - // This segment was not previously reused, and it's not on the new route. - // So it must have been delivered in the old route. - reusedRouterState = patchRouterStateWithNewChildren(oldRouterState, oldRouterState[1]); - reusedRouterState[2] = (0, _createhreffromurl.createHrefFromUrl)(oldUrl); - reusedRouterState[3] = 'refresh'; - } - return reusedRouterState; -} -function reuseDynamicCacheNode(dropPrefetchRsc, existingCacheNode, parallelRoutes) { - // Clone an existing CacheNode's data, with (possibly) new children. - const cacheNode = { - rsc: existingCacheNode.rsc, - prefetchRsc: dropPrefetchRsc ? null : existingCacheNode.prefetchRsc, - head: existingCacheNode.head, - prefetchHead: dropPrefetchRsc ? null : existingCacheNode.prefetchHead, - loading: existingCacheNode.loading, - parallelRoutes, - // Don't update the navigatedAt timestamp, since we're reusing - // existing data. - navigatedAt: existingCacheNode.navigatedAt - }; - return cacheNode; -} -function readCacheNodeFromSeedData(seedRsc, seedLoading, isSeedRscPartial, seedHead, isSeedHeadPartial, isPageSegment, parallelRoutes, navigatedAt) { - // TODO: Currently this is threaded through the navigation logic using the - // CacheNodeSeedData type, but in the future this will read directly from - // the Segment Cache. See readRenderSnapshotFromCache. - let rsc; - let prefetchRsc; - if (isSeedRscPartial) { - // The prefetched data contains dynamic holes. Create a pending promise that - // will be fulfilled when the dynamic data is received from the server. - prefetchRsc = seedRsc; - rsc = createDeferredRsc(); - } else { - // The prefetched data is complete. Use it directly. - prefetchRsc = null; - rsc = seedRsc; - } - // If this is a page segment, also read the head. - let prefetchHead; - let head; - if (isPageSegment) { - if (isSeedHeadPartial) { - prefetchHead = seedHead; - head = createDeferredRsc(); - } else { - prefetchHead = null; - head = seedHead; - } - } else { - prefetchHead = null; - head = null; - } - const cacheNode = { - rsc, - prefetchRsc, - head, - prefetchHead, - // TODO: Technically, a loading boundary could contain dynamic data. We - // should have separate `loading` and `prefetchLoading` fields to handle - // this, like we do for the segment data and head. - loading: seedLoading, - parallelRoutes, - navigatedAt - }; - return cacheNode; -} -function spawnNewCacheNode(parallelRoutes, isLeafSegment, navigatedAt, freshness) { - // We should never spawn network requests during hydration. We must treat the - // initial payload as authoritative, because the initial page load is used - // as a last-ditch mechanism for recovering the app. - // - // This is also an important safety check because if this leaks into the - // server rendering path (which theoretically it never should because - // the server payload should be consistent), the server would hang because - // these promises would never resolve. - // - // TODO: There is an existing case where the global "not found" boundary - // triggers this path. But it does render correctly despite that. That's an - // unusual render path so it's not surprising, but we should look into - // modeling it in a more consistent way. See also the /_notFound special - // case in updateCacheNodeOnNavigation. - const isHydration = freshness === 1; - const cacheNode = { - rsc: !isHydration ? createDeferredRsc() : null, - prefetchRsc: null, - head: !isHydration && isLeafSegment ? createDeferredRsc() : null, - prefetchHead: null, - loading: !isHydration ? createDeferredRsc() : null, - parallelRoutes, - navigatedAt - }; - return cacheNode; -} -// Represents whether the previuos navigation resulted in a route tree mismatch. -// A mismatch results in a refresh of the page. If there are two successive -// mismatches, we will fall back to an MPA navigation, to prevent a retry loop. -let previousNavigationDidMismatch = false; -function spawnDynamicRequests(task, primaryUrl, nextUrl, freshnessPolicy, accumulation) { - const dynamicRequestTree = task.dynamicRequestTree; - if (dynamicRequestTree === null) { - // This navigation was fully cached. There are no dynamic requests to spawn. - previousNavigationDidMismatch = false; - return; - } - // This is intentionally not an async function to discourage the caller from - // awaiting the result. Any subsequent async operations spawned by this - // function should result in a separate navigation task, rather than - // block the original one. - // - // In this function we spawn (but do not await) all the network requests that - // block the navigation, and collect the promises. The next function, - // `finishNavigationTask`, can await the promises in any order without - // accidentally introducing a network waterfall. - const primaryRequestPromise = fetchMissingDynamicData(task, dynamicRequestTree, primaryUrl, nextUrl, freshnessPolicy); - const separateRefreshUrls = accumulation.separateRefreshUrls; - let refreshRequestPromises = null; - if (separateRefreshUrls !== null) { - // There are multiple URLs that we need to request the data from. This - // happens when a "default" parallel route slot is present in the tree, and - // its data cannot be fetched from the current route. We need to split the - // combined dynamic request tree into separate requests per URL. - // TODO: Create a scoped dynamic request tree that omits anything that - // is not relevant to the given URL. Without doing this, the server may - // sometimes render more data than necessary; this is not a regression - // compared to the pre-Segment Cache implementation, though, just an - // optimization we can make in the future. - // Construct a request tree for each additional refresh URL. This will - // prune away everything except the parts of the tree that match the - // given refresh URL. - refreshRequestPromises = []; - const canonicalUrl = (0, _createhreffromurl.createHrefFromUrl)(primaryUrl); - for (const refreshUrl of separateRefreshUrls){ - if (refreshUrl === canonicalUrl) { - continue; - } - // TODO: Create a scoped dynamic request tree that omits anything that - // is not relevant to the given URL. Without doing this, the server may - // sometimes render more data than necessary; this is not a regression - // compared to the pre-Segment Cache implementation, though, just an - // optimization we can make in the future. - // const scopedDynamicRequestTree = splitTaskByURL(task, refreshUrl) - const scopedDynamicRequestTree = dynamicRequestTree; - if (scopedDynamicRequestTree !== null) { - refreshRequestPromises.push(fetchMissingDynamicData(task, scopedDynamicRequestTree, new URL(refreshUrl, location.origin), // time the refresh URL was set, not the current Next-Url. Need to - // start tracking this alongside the refresh URL. In the meantime, - // if a refresh fails due to a mismatch, it will trigger a - // hard refresh. - nextUrl, freshnessPolicy)); - } - } - } - // Further async operations are moved into this separate function to - // discourage sequential network requests. - const voidPromise = finishNavigationTask(task, nextUrl, primaryRequestPromise, refreshRequestPromises); - // `finishNavigationTask` is responsible for error handling, so we can attach - // noop callbacks to this promise. - voidPromise.then(noop, noop); -} -async function finishNavigationTask(task, nextUrl, primaryRequestPromise, refreshRequestPromises) { - // Wait for all the requests to finish, or for the first one to fail. - let exitStatus = await waitForRequestsToFinish(primaryRequestPromise, refreshRequestPromises); - // Once the all the requests have finished, check the tree for any remaining - // pending tasks. If anything is still pending, it means the server response - // does not match the client, and we must refresh to get back to a consistent - // state. We can skip this step if we already detected a mismatch during the - // first phase; it doesn't matter in that case because we're going to refresh - // the whole tree regardless. - if (exitStatus === 0) { - exitStatus = abortRemainingPendingTasks(task, null, null); - } - switch(exitStatus){ - case 0: - { - // The task has completely finished. There's no missing data. Exit. - previousNavigationDidMismatch = false; - return; - } - case 1: - { - // Some data failed to finish loading. Trigger a soft retry. - // TODO: As an extra precaution against soft retry loops, consider - // tracking whether a navigation was itself triggered by a retry. If two - // happen in a row, fall back to a hard retry. - const isHardRetry = false; - const primaryRequestResult = await primaryRequestPromise; - dispatchRetryDueToTreeMismatch(isHardRetry, primaryRequestResult.url, nextUrl, primaryRequestResult.seed, task.route); - return; - } - case 2: - { - // Some data failed to finish loading in a non-recoverable way, such as a - // network error. Trigger an MPA navigation. - // - // Hard navigating/refreshing is how we prevent an infinite retry loop - // caused by a network error — when the network fails, we fall back to the - // browser behavior for offline navigations. In the future, Next.js may - // introduce its own custom handling of offline navigations, but that - // doesn't exist yet. - const isHardRetry = true; - const primaryRequestResult = await primaryRequestPromise; - dispatchRetryDueToTreeMismatch(isHardRetry, primaryRequestResult.url, nextUrl, primaryRequestResult.seed, task.route); - return; - } - default: - { - return exitStatus; - } - } -} -function waitForRequestsToFinish(primaryRequestPromise, refreshRequestPromises) { - // Custom async combinator logic. This could be replaced by Promise.any but - // we don't assume that's available. - // - // Each promise resolves once the server responsds and the data is written - // into the CacheNode tree. Resolve the combined promise once all the - // requests finish. - // - // Or, resolve as soon as one of the requests fails, without waiting for the - // others to finish. - return new Promise((resolve)=>{ - const onFulfill = (result)=>{ - if (result.exitStatus === 0) { - remainingCount--; - if (remainingCount === 0) { - // All the requests finished successfully. - resolve(0); - } - } else { - // One of the requests failed. Exit with a failing status. - // NOTE: It's possible for one of the requests to fail with SoftRetry - // and a later one to fail with HardRetry. In this case, we choose to - // retry immediately, rather than delay the retry until all the requests - // finish. If it fails again, we will hard retry on the next - // attempt, anyway. - resolve(result.exitStatus); - } - }; - // onReject shouldn't ever be called because fetchMissingDynamicData's - // entire body is wrapped in a try/catch. This is just defensive. - const onReject = ()=>resolve(2); - // Attach the listeners to the promises. - let remainingCount = 1; - primaryRequestPromise.then(onFulfill, onReject); - if (refreshRequestPromises !== null) { - remainingCount += refreshRequestPromises.length; - refreshRequestPromises.forEach((refreshRequestPromise)=>refreshRequestPromise.then(onFulfill, onReject)); - } - }); -} -function dispatchRetryDueToTreeMismatch(isHardRetry, retryUrl, retryNextUrl, seed, baseTree) { - // If this is the second time in a row that a navigation resulted in a - // mismatch, fall back to a hard (MPA) refresh. - isHardRetry = isHardRetry || previousNavigationDidMismatch; - previousNavigationDidMismatch = true; - const retryAction = { - type: _routerreducertypes.ACTION_SERVER_PATCH, - previousTree: baseTree, - url: retryUrl, - nextUrl: retryNextUrl, - seed, - mpa: isHardRetry - }; - (0, _useactionqueue.dispatchAppRouterAction)(retryAction); -} -async function fetchMissingDynamicData(task, dynamicRequestTree, url, nextUrl, freshnessPolicy) { - try { - const result = await (0, _fetchserverresponse.fetchServerResponse)(url, { - flightRouterState: dynamicRequestTree, - nextUrl, - isHmrRefresh: freshnessPolicy === 4 - }); - if (typeof result === 'string') { - // fetchServerResponse will return an href to indicate that the SPA - // navigation failed. For example, if the server triggered a hard - // redirect, or the fetch request errored. Initiate an MPA navigation - // to the given href. - return { - exitStatus: 2, - url: new URL(result, location.origin), - seed: null - }; - } - const seed = (0, _navigation.convertServerPatchToFullTree)(task.route, result.flightData, result.renderedSearch); - const didReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(task, seed.tree, seed.data, seed.head, result.debugInfo); - return { - exitStatus: didReceiveUnknownParallelRoute ? 1 : 0, - url: new URL(result.canonicalUrl, location.origin), - seed - }; - } catch { - // This shouldn't happen because fetchServerResponse's entire body is - // wrapped in a try/catch. If it does, though, it implies the server failed - // to respond with any tree at all. So we must fall back to a hard retry. - return { - exitStatus: 2, - url: url, - seed: null - }; - } -} -function writeDynamicDataIntoNavigationTask(task, serverRouterState, dynamicData, dynamicHead, debugInfo) { - if (task.status === 0 && dynamicData !== null) { - task.status = 1; - finishPendingCacheNode(task.node, dynamicData, dynamicHead, debugInfo); - } - const taskChildren = task.children; - const serverChildren = serverRouterState[1]; - const dynamicDataChildren = dynamicData !== null ? dynamicData[1] : null; - // Detect whether the server sends a parallel route slot that the client - // doesn't know about. - let didReceiveUnknownParallelRoute = false; - if (taskChildren !== null) { - for(const parallelRouteKey in serverChildren){ - const serverRouterStateChild = serverChildren[parallelRouteKey]; - const dynamicDataChild = dynamicDataChildren !== null ? dynamicDataChildren[parallelRouteKey] : null; - const taskChild = taskChildren.get(parallelRouteKey); - if (taskChild === undefined) { - // The server sent a child segment that the client doesn't know about. - // - // When we receive an unknown parallel route, we must consider it a - // mismatch. This is unlike the case where the segment itself - // mismatches, because multiple routes can be active simultaneously. - // But a given layout should never have a mismatching set of - // child slots. - // - // Theoretically, this should only happen in development during an HMR - // refresh, because the set of parallel routes for a layout does not - // change over the lifetime of a build/deployment. In production, we - // should have already mismatched on either the build id or the segment - // path. But as an extra precaution, we validate in prod, too. - didReceiveUnknownParallelRoute = true; - } else { - const taskSegment = taskChild.route[0]; - if ((0, _matchsegments.matchSegment)(serverRouterStateChild[0], taskSegment) && dynamicDataChild !== null && dynamicDataChild !== undefined) { - // Found a match for this task. Keep traversing down the task tree. - const childDidReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(taskChild, serverRouterStateChild, dynamicDataChild, dynamicHead, debugInfo); - if (childDidReceiveUnknownParallelRoute) { - didReceiveUnknownParallelRoute = true; - } - } - } - } - } - return didReceiveUnknownParallelRoute; -} -function finishPendingCacheNode(cacheNode, dynamicData, dynamicHead, debugInfo) { - // Writes a dynamic response into an existing Cache Node tree. This does _not_ - // create a new tree, it updates the existing tree in-place. So it must follow - // the Suspense rules of cache safety — it can resolve pending promises, but - // it cannot overwrite existing data. It can add segments to the tree (because - // a missing segment will cause the layout router to suspend). - // but it cannot delete them. - // - // We must resolve every promise in the tree, or else it will suspend - // indefinitely. If we did not receive data for a segment, we will resolve its - // data promise to `null` to trigger a lazy fetch during render. - // Use the dynamic data from the server to fulfill the deferred RSC promise - // on the Cache Node. - const rsc = cacheNode.rsc; - const dynamicSegmentData = dynamicData[0]; - if (dynamicSegmentData === null) { - // This is an empty CacheNode; this particular server request did not - // render this segment. There may be a separate pending request that will, - // though, so we won't abort the task until all pending requests finish. - return; - } - if (rsc === null) { - // This is a lazy cache node. We can overwrite it. This is only safe - // because we know that the LayoutRouter suspends if `rsc` is `null`. - cacheNode.rsc = dynamicSegmentData; - } else if (isDeferredRsc(rsc)) { - // This is a deferred RSC promise. We can fulfill it with the data we just - // received from the server. If it was already resolved by a different - // navigation, then this does nothing because we can't overwrite data. - rsc.resolve(dynamicSegmentData, debugInfo); - } else { - // This is not a deferred RSC promise, nor is it empty, so it must have - // been populated by a different navigation. We must not overwrite it. - } - // If we navigated without a prefetch, then `loading` will be a deferred promise too. - // Fulfill it using the dynamic response so that we can display the loading boundary. - const loading = cacheNode.loading; - if (isDeferredRsc(loading)) { - const dynamicLoading = dynamicData[2]; - loading.resolve(dynamicLoading, debugInfo); - } - // Check if this is a leaf segment. If so, it will have a `head` property with - // a pending promise that needs to be resolved with the dynamic head from - // the server. - const head = cacheNode.head; - if (isDeferredRsc(head)) { - head.resolve(dynamicHead, debugInfo); - } -} -function abortRemainingPendingTasks(task, error, debugInfo) { - let exitStatus; - if (task.status === 0) { - // The data for this segment is still missing. - task.status = 2; - abortPendingCacheNode(task.node, error, debugInfo); - // If the server failed to fulfill the data for this segment, it implies - // that the route tree received from the server mismatched the tree that - // was previously prefetched. - // - // In an app with fully static routes and no proxy-driven redirects or - // rewrites, this should never happen, because the route for a URL would - // always be the same across multiple requests. So, this implies that some - // runtime routing condition changed, likely in a proxy, without being - // pushed to the client. - // - // When this happens, we treat this the same as a refresh(). The entire - // tree will be re-rendered from the root. - if (task.refreshUrl === null) { - // Trigger a "soft" refresh. Essentially the same as calling `refresh()` - // in a Server Action. - exitStatus = 1; - } else { - // The mismatch was discovered inside an inactive parallel route. This - // implies the inactive parallel route is no longer reachable at the URL - // that originally rendered it. Fall back to an MPA refresh. - // TODO: An alternative could be to trigger a soft refresh but to _not_ - // re-use the inactive parallel routes this time. Similar to what would - // happen if were to do a hard refrehs, but without the HTML page. - exitStatus = 2; - } - } else { - // This segment finished. (An error here is treated as Done because they are - // surfaced to the application during render.) - exitStatus = 0; - } - const taskChildren = task.children; - if (taskChildren !== null) { - for (const [, taskChild] of taskChildren){ - const childExitStatus = abortRemainingPendingTasks(taskChild, error, debugInfo); - // Propagate the exit status up the tree. The statuses are ordered by - // their precedence. - if (childExitStatus > exitStatus) { - exitStatus = childExitStatus; - } - } - } - return exitStatus; -} -function abortPendingCacheNode(cacheNode, error, debugInfo) { - const rsc = cacheNode.rsc; - if (isDeferredRsc(rsc)) { - if (error === null) { - // This will trigger a lazy fetch during render. - rsc.resolve(null, debugInfo); - } else { - // This will trigger an error during rendering. - rsc.reject(error, debugInfo); - } - } - const loading = cacheNode.loading; - if (isDeferredRsc(loading)) { - loading.resolve(null, debugInfo); - } - // Check if this is a leaf segment. If so, it will have a `head` property with - // a pending promise that needs to be resolved. If an error was provided, we - // will not resolve it with an error, since this is rendered at the root of - // the app. We want the segment to error, not the entire app. - const head = cacheNode.head; - if (isDeferredRsc(head)) { - head.resolve(null, debugInfo); - } -} -const DEFERRED = Symbol(); -function isDeferredRsc(value) { - return value && typeof value === 'object' && value.tag === DEFERRED; -} -function createDeferredRsc() { - // Create an unresolved promise that represents data derived from a Flight - // response. The promise will be resolved later as soon as we start receiving - // data from the server, i.e. as soon as the Flight client decodes and returns - // the top-level response object. - // The `_debugInfo` field contains profiling information. Promises that are - // created by Flight already have this info added by React; for any derived - // promise created by the router, we need to transfer the Flight debug info - // onto the derived promise. - // - // The debug info represents the latency between the start of the navigation - // and the start of rendering. (It does not represent the time it takes for - // whole stream to finish.) - const debugInfo = []; - let resolve; - let reject; - const pendingRsc = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - pendingRsc.status = 'pending'; - pendingRsc.resolve = (value, responseDebugInfo)=>{ - if (pendingRsc.status === 'pending') { - const fulfilledRsc = pendingRsc; - fulfilledRsc.status = 'fulfilled'; - fulfilledRsc.value = value; - if (responseDebugInfo !== null) { - // Transfer the debug info to the derived promise. - debugInfo.push.apply(debugInfo, responseDebugInfo); - } - resolve(value); - } - }; - pendingRsc.reject = (error, responseDebugInfo)=>{ - if (pendingRsc.status === 'pending') { - const rejectedRsc = pendingRsc; - rejectedRsc.status = 'rejected'; - rejectedRsc.reason = error; - if (responseDebugInfo !== null) { - // Transfer the debug info to the derived promise. - debugInfo.push.apply(debugInfo, responseDebugInfo); - } - reject(error); - } - }; - pendingRsc.tag = DEFERRED; - pendingRsc._debugInfo = debugInfo; - return pendingRsc; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=ppr-navigations.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Shared types and constants for the Segment Cache. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - FetchStrategy: null, - NavigationResultTag: null, - PrefetchPriority: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - FetchStrategy: function() { - return FetchStrategy; - }, - NavigationResultTag: function() { - return NavigationResultTag; - }, - PrefetchPriority: function() { - return PrefetchPriority; - } -}); -var NavigationResultTag = /*#__PURE__*/ function(NavigationResultTag) { - NavigationResultTag[NavigationResultTag["MPA"] = 0] = "MPA"; - NavigationResultTag[NavigationResultTag["Success"] = 1] = "Success"; - NavigationResultTag[NavigationResultTag["NoOp"] = 2] = "NoOp"; - NavigationResultTag[NavigationResultTag["Async"] = 3] = "Async"; - return NavigationResultTag; -}({}); -var PrefetchPriority = /*#__PURE__*/ function(PrefetchPriority) { - /** - * Assigned to the most recently hovered/touched link. Special network - * bandwidth is reserved for this task only. There's only ever one Intent- - * priority task at a time; when a new Intent task is scheduled, the previous - * one is bumped down to Default. - */ PrefetchPriority[PrefetchPriority["Intent"] = 2] = "Intent"; - /** - * The default priority for prefetch tasks. - */ PrefetchPriority[PrefetchPriority["Default"] = 1] = "Default"; - /** - * Assigned to tasks when they spawn non-blocking background work, like - * revalidating a partially cached entry to see if more data is available. - */ PrefetchPriority[PrefetchPriority["Background"] = 0] = "Background"; - return PrefetchPriority; -}({}); -var FetchStrategy = /*#__PURE__*/ function(FetchStrategy) { - // Deliberately ordered so we can easily compare two segments - // and determine if one segment is "more specific" than another - // (i.e. if it's likely that it contains more data) - FetchStrategy[FetchStrategy["LoadingBoundary"] = 0] = "LoadingBoundary"; - FetchStrategy[FetchStrategy["PPR"] = 1] = "PPR"; - FetchStrategy[FetchStrategy["PPRRuntime"] = 2] = "PPRRuntime"; - FetchStrategy[FetchStrategy["Full"] = 3] = "Full"; - return FetchStrategy; -}({}); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=types.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/lru.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - deleteFromLru: null, - lruPut: null, - updateLruSize: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - deleteFromLru: function() { - return deleteFromLru; - }, - lruPut: function() { - return lruPut; - }, - updateLruSize: function() { - return updateLruSize; - } -}); -const _cachemap = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache-map.js [app-client] (ecmascript)"); -// We use an LRU for memory management. We must update this whenever we add or -// remove a new cache entry, or when an entry changes size. -let head = null; -let didScheduleCleanup = false; -let lruSize = 0; -// TODO: I chose the max size somewhat arbitrarily. Consider setting this based -// on navigator.deviceMemory, or some other heuristic. We should make this -// customizable via the Next.js config, too. -const maxLruSize = 50 * 1024 * 1024 // 50 MB -; -function lruPut(node) { - if (head === node) { - // Already at the head - return; - } - const prev = node.prev; - const next = node.next; - if (next === null || prev === null) { - // This is an insertion - lruSize += node.size; - // Whenever we add an entry, we need to check if we've exceeded the - // max size. We don't evict entries immediately; they're evicted later in - // an asynchronous task. - ensureCleanupIsScheduled(); - } else { - // This is a move. Remove from its current position. - prev.next = next; - next.prev = prev; - } - // Move to the front of the list - if (head === null) { - // This is the first entry - node.prev = node; - node.next = node; - } else { - // Add to the front of the list - const tail = head.prev; - node.prev = tail; - // In practice, this is never null, but that isn't encoded in the type - if (tail !== null) { - tail.next = node; - } - node.next = head; - head.prev = node; - } - head = node; -} -function updateLruSize(node, newNodeSize) { - // This is a separate function from `put` so that we can resize the entry - // regardless of whether it's currently being tracked by the LRU. - const prevNodeSize = node.size; - node.size = newNodeSize; - if (node.next === null) { - // This entry is not currently being tracked by the LRU. - return; - } - // Update the total LRU size - lruSize = lruSize - prevNodeSize + newNodeSize; - ensureCleanupIsScheduled(); -} -function deleteFromLru(deleted) { - const next = deleted.next; - const prev = deleted.prev; - if (next !== null && prev !== null) { - lruSize -= deleted.size; - deleted.next = null; - deleted.prev = null; - // Remove from the list - if (head === deleted) { - // Update the head - if (next === head) { - // This was the last entry - head = null; - } else { - head = next; - prev.next = next; - next.prev = prev; - } - } else { - prev.next = next; - next.prev = prev; - } - } else { - // Already deleted - } -} -function ensureCleanupIsScheduled() { - if (didScheduleCleanup || lruSize <= maxLruSize) { - return; - } - didScheduleCleanup = true; - requestCleanupCallback(cleanup); -} -function cleanup() { - didScheduleCleanup = false; - // Evict entries until we're at 90% capacity. We can assume this won't - // infinite loop because even if `maxLruSize` were 0, eventually - // `deleteFromLru` sets `head` to `null` when we run out entries. - const ninetyPercentMax = maxLruSize * 0.9; - while(lruSize > ninetyPercentMax && head !== null){ - const tail = head.prev; - // In practice, this is never null, but that isn't encoded in the type - if (tail !== null) { - // Delete the entry from the map. In turn, this will remove it from - // the LRU. - (0, _cachemap.deleteMapEntry)(tail); - } - } -} -const requestCleanupCallback = typeof requestIdleCallback === 'function' ? requestIdleCallback : (cb)=>setTimeout(cb, 0); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=lru.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/cache-map.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - Fallback: null, - createCacheMap: null, - deleteFromCacheMap: null, - deleteMapEntry: null, - getFromCacheMap: null, - isValueExpired: null, - setInCacheMap: null, - setSizeInCacheMap: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - Fallback: function() { - return Fallback; - }, - createCacheMap: function() { - return createCacheMap; - }, - deleteFromCacheMap: function() { - return deleteFromCacheMap; - }, - deleteMapEntry: function() { - return deleteMapEntry; - }, - getFromCacheMap: function() { - return getFromCacheMap; - }, - isValueExpired: function() { - return isValueExpired; - }, - setInCacheMap: function() { - return setInCacheMap; - }, - setSizeInCacheMap: function() { - return setSizeInCacheMap; - } -}); -const _lru = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/lru.js [app-client] (ecmascript)"); -const Fallback = {}; -// This is a special internal key that is used for "revalidation" entries. It's -// an implementation detail that shouldn't leak outside of this module. -const Revalidation = {}; -function createCacheMap() { - const cacheMap = { - parent: null, - key: null, - value: null, - map: null, - // LRU-related fields - prev: null, - next: null, - size: 0 - }; - return cacheMap; -} -function getOrInitialize(cacheMap, keys, isRevalidation) { - // Go through each level of keys until we find the entry that matches, or - // create a new entry if one doesn't exist. - // - // This function will only return entries that match the keypath _exactly_. - // Unlike getWithFallback, it will not access fallback entries unless it's - // explicitly part of the keypath. - let entry = cacheMap; - let remainingKeys = keys; - let key = null; - while(true){ - const previousKey = key; - if (remainingKeys !== null) { - key = remainingKeys.value; - remainingKeys = remainingKeys.parent; - } else if (isRevalidation && previousKey !== Revalidation) { - // During a revalidation, we append an internal "Revalidation" key to - // the end of the keypath. The "normal" entry is its parent. - // However, if the parent entry is currently empty, we don't need to store - // this as a revalidation entry. Just insert the revalidation into the - // normal slot. - if (entry.value === null) { - return entry; - } - // Otheriwse, create a child entry. - key = Revalidation; - } else { - break; - } - let map = entry.map; - if (map !== null) { - const existingEntry = map.get(key); - if (existingEntry !== undefined) { - // Found a match. Keep going. - entry = existingEntry; - continue; - } - } else { - map = new Map(); - entry.map = map; - } - // No entry exists yet at this level. Create a new one. - const newEntry = { - parent: entry, - key, - value: null, - map: null, - // LRU-related fields - prev: null, - next: null, - size: 0 - }; - map.set(key, newEntry); - entry = newEntry; - } - return entry; -} -function getFromCacheMap(now, currentCacheVersion, rootEntry, keys, isRevalidation) { - const entry = getEntryWithFallbackImpl(now, currentCacheVersion, rootEntry, keys, isRevalidation, 0); - if (entry === null || entry.value === null) { - return null; - } - // This is an LRU access. Move the entry to the front of the list. - (0, _lru.lruPut)(entry); - return entry.value; -} -function isValueExpired(now, currentCacheVersion, value) { - return value.staleAt <= now || value.version < currentCacheVersion; -} -function lazilyEvictIfNeeded(now, currentCacheVersion, entry) { - // We have a matching entry, but before we can return it, we need to check if - // it's still fresh. Otherwise it should be treated the same as a cache miss. - if (entry.value === null) { - // This entry has no value, so there's nothing to evict. - return entry; - } - const value = entry.value; - if (isValueExpired(now, currentCacheVersion, value)) { - // The value expired. Lazily evict it from the cache, and return null. This - // is conceptually the same as a cache miss. - deleteMapEntry(entry); - return null; - } - // The matched entry has not expired. Return it. - return entry; -} -function getEntryWithFallbackImpl(now, currentCacheVersion, entry, keys, isRevalidation, previousKey) { - // This is similar to getExactEntry, but if an exact match is not found for - // a key, it will return the fallback entry instead. This is recursive at - // every level, e.g. an entry with keypath [a, Fallback, c, Fallback] is - // valid match for [a, b, c, d]. - // - // It will return the most specific match available. - let key; - let remainingKeys; - if (keys !== null) { - key = keys.value; - remainingKeys = keys.parent; - } else if (isRevalidation && previousKey !== Revalidation) { - // During a revalidation, we append an internal "Revalidation" key to - // the end of the keypath. - key = Revalidation; - remainingKeys = null; - } else { - // There are no more keys. This is the terminal entry. - // TODO: When performing a lookup during a navigation, as opposed to a - // prefetch, we may want to skip entries that are Pending if there's also - // a Fulfilled fallback entry. Tricky to say, though, since if it's - // already pending, it's likely to stream in soon. Maybe we could do this - // just on slow connections and offline mode. - return lazilyEvictIfNeeded(now, currentCacheVersion, entry); - } - const map = entry.map; - if (map !== null) { - const existingEntry = map.get(key); - if (existingEntry !== undefined) { - // Found an exact match for this key. Keep searching. - const result = getEntryWithFallbackImpl(now, currentCacheVersion, existingEntry, remainingKeys, isRevalidation, key); - if (result !== null) { - return result; - } - } - // No match found for this key. Check if there's a fallback. - const fallbackEntry = map.get(Fallback); - if (fallbackEntry !== undefined) { - // Found a fallback for this key. Keep searching. - return getEntryWithFallbackImpl(now, currentCacheVersion, fallbackEntry, remainingKeys, isRevalidation, key); - } - } - return null; -} -function setInCacheMap(cacheMap, keys, value, isRevalidation) { - // Add a value to the map at the given keypath. If the value is already - // part of the map, it's removed from its previous keypath. (NOTE: This is - // unlike a regular JS map, but the behavior is intentional.) - const entry = getOrInitialize(cacheMap, keys, isRevalidation); - setMapEntryValue(entry, value); - // This is an LRU access. Move the entry to the front of the list. - (0, _lru.lruPut)(entry); - (0, _lru.updateLruSize)(entry, value.size); -} -function setMapEntryValue(entry, value) { - if (entry.value !== null) { - // There's already a value at the given keypath. Disconnect the old value - // from the map. We're not calling `deleteMapEntry` here because the - // entry itself is still in the map. We just want to overwrite its value. - dropRef(entry.value); - entry.value = null; - } - // This value may already be in the map at a different keypath. - // Grab a reference before we overwrite it. - const oldEntry = value.ref; - entry.value = value; - value.ref = entry; - (0, _lru.updateLruSize)(entry, value.size); - if (oldEntry !== null && oldEntry !== entry && oldEntry.value === value) { - // This value is already in the map at a different keypath in the map. - // Values only exist at a single keypath at a time. Remove it from the - // previous keypath. - // - // Note that only the internal map entry is garbage collected; we don't - // call `dropRef` here because it's still in the map, just - // at a new keypath (the one we just set, above). - deleteMapEntry(oldEntry); - } -} -function deleteFromCacheMap(value) { - const entry = value.ref; - if (entry === null) { - // This value is not a member of any map. - return; - } - dropRef(value); - deleteMapEntry(entry); -} -function dropRef(value) { - // Drop the value from the map by setting its `ref` backpointer to - // null. This is a separate operation from `deleteMapEntry` because when - // re-keying a value we need to be able to delete the old, internal map - // entry without garbage collecting the value itself. - value.ref = null; -} -function deleteMapEntry(entry) { - // Delete the entry from the cache. - entry.value = null; - (0, _lru.deleteFromLru)(entry); - // Check if we can garbage collect the entry. - const map = entry.map; - if (map === null) { - // Since this entry has no value, and also no child entries, we can - // garbage collect it. Remove it from its parent, and keep garbage - // collecting the parents until we reach a non-empty entry. - let parent = entry.parent; - let key = entry.key; - while(parent !== null){ - const parentMap = parent.map; - if (parentMap !== null) { - parentMap.delete(key); - if (parentMap.size === 0) { - // We just removed the last entry in the parent map. - parent.map = null; - if (parent.value === null) { - // The parent node has no child entries, nor does it have a value - // on itself. It can be garbage collected. Keep going. - key = parent.key; - parent = parent.parent; - continue; - } - } - } - break; - } - } else { - // Check if there's a revalidating entry. If so, promote it to a - // "normal" entry, since the normal one was just deleted. - const revalidatingEntry = map.get(Revalidation); - if (revalidatingEntry !== undefined && revalidatingEntry.value !== null) { - setMapEntryValue(entry, revalidatingEntry.value); - } - } -} -function setSizeInCacheMap(value, size) { - const entry = value.ref; - if (entry === null) { - // This value is not a member of any map. - return; - } - // Except during initialization (when the size is set to 0), this is the only - // place the `size` field should be updated, to ensure it's in sync with the - // the LRU. - value.size = size; - (0, _lru.updateLruSize)(entry, size); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=cache-map.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/vary-path.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - appendLayoutVaryPath: null, - clonePageVaryPathWithNewSearchParams: null, - finalizeLayoutVaryPath: null, - finalizeMetadataVaryPath: null, - finalizePageVaryPath: null, - getFulfilledRouteVaryPath: null, - getRouteVaryPath: null, - getSegmentVaryPathForRequest: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - appendLayoutVaryPath: function() { - return appendLayoutVaryPath; - }, - clonePageVaryPathWithNewSearchParams: function() { - return clonePageVaryPathWithNewSearchParams; - }, - finalizeLayoutVaryPath: function() { - return finalizeLayoutVaryPath; - }, - finalizeMetadataVaryPath: function() { - return finalizeMetadataVaryPath; - }, - finalizePageVaryPath: function() { - return finalizePageVaryPath; - }, - getFulfilledRouteVaryPath: function() { - return getFulfilledRouteVaryPath; - }, - getRouteVaryPath: function() { - return getRouteVaryPath; - }, - getSegmentVaryPathForRequest: function() { - return getSegmentVaryPathForRequest; - } -}); -const _types = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)"); -const _cachemap = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache-map.js [app-client] (ecmascript)"); -const _segmentvalueencoding = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js [app-client] (ecmascript)"); -function getRouteVaryPath(pathname, search, nextUrl) { - // requestKey -> searchParams -> nextUrl - const varyPath = { - value: pathname, - parent: { - value: search, - parent: { - value: nextUrl, - parent: null - } - } - }; - return varyPath; -} -function getFulfilledRouteVaryPath(pathname, search, nextUrl, couldBeIntercepted) { - // This is called when a route's data is fulfilled. The cache entry will be - // re-keyed based on which inputs the response varies by. - // requestKey -> searchParams -> nextUrl - const varyPath = { - value: pathname, - parent: { - value: search, - parent: { - value: couldBeIntercepted ? nextUrl : _cachemap.Fallback, - parent: null - } - } - }; - return varyPath; -} -function appendLayoutVaryPath(parentPath, cacheKey) { - const varyPathPart = { - value: cacheKey, - parent: parentPath - }; - return varyPathPart; -} -function finalizeLayoutVaryPath(requestKey, varyPath) { - const layoutVaryPath = { - value: requestKey, - parent: varyPath - }; - return layoutVaryPath; -} -function finalizePageVaryPath(requestKey, renderedSearch, varyPath) { - // Unlike layouts, a page segment's vary path also includes the search string. - // requestKey -> searchParams -> pathParams - const pageVaryPath = { - value: requestKey, - parent: { - value: renderedSearch, - parent: varyPath - } - }; - return pageVaryPath; -} -function finalizeMetadataVaryPath(pageRequestKey, renderedSearch, varyPath) { - // The metadata "segment" is not a real segment because it doesn't exist in - // the normal structure of the route tree, but in terms of caching, it - // behaves like a page segment because it varies by all the same params as - // a page. - // - // To keep the protocol for querying the server simple, the request key for - // the metadata does not include any path information. It's unnecessary from - // the server's perspective, because unlike page segments, there's only one - // metadata response per URL, i.e. there's no need to distinguish multiple - // parallel pages. - // - // However, this means the metadata request key is insufficient for - // caching the the metadata in the client cache, because on the client we - // use the request key to distinguish the metadata entry from all other - // page's metadata entries. - // - // So instead we create a simulated request key based on the page segment. - // Conceptually this is equivalent to the request key the server would have - // assigned the metadata segment if it treated it as part of the actual - // route structure. - // If there are multiple parallel pages, we use whichever is the first one. - // This is fine because the only difference between request keys for - // different parallel pages are things like route groups and parallel - // route slots. As long as it's always the same one, it doesn't matter. - const pageVaryPath = { - // Append the actual metadata request key to the page request key. Note - // that we're not using a separate vary path part; it's unnecessary because - // these are not conceptually separate inputs. - value: pageRequestKey + _segmentvalueencoding.HEAD_REQUEST_KEY, - parent: { - value: renderedSearch, - parent: varyPath - } - }; - return pageVaryPath; -} -function getSegmentVaryPathForRequest(fetchStrategy, tree) { - // This is used for storing pending requests in the cache. We want to choose - // the most generic vary path based on the strategy used to fetch it, i.e. - // static/PPR versus runtime prefetching, so that it can be reused as much - // as possible. - // - // We may be able to re-key the response to something even more generic once - // we receive it — for example, if the server tells us that the response - // doesn't vary on a particular param — but even before we send the request, - // we know some params are reusable based on the fetch strategy alone. For - // example, a static prefetch will never vary on search params. - // - // The original vary path with all the params filled in is stored on the - // route tree object. We will clone this one to create a new vary path - // where certain params are replaced with Fallback. - // - // This result of this function is not stored anywhere. It's only used to - // access the cache a single time. - // - // TODO: Rather than create a new list object just to access the cache, the - // plan is to add the concept of a "vary mask". This will represent all the - // params that can be treated as Fallback. (Or perhaps the inverse.) - const originalVaryPath = tree.varyPath; - // Only page segments (and the special "metadata" segment, which is treated - // like a page segment for the purposes of caching) may contain search - // params. There's no reason to include them in the vary path otherwise. - if (tree.isPage) { - // Only a runtime prefetch will include search params in the vary path. - // Static prefetches never include search params, so they can be reused - // across all possible search param values. - const doesVaryOnSearchParams = fetchStrategy === _types.FetchStrategy.Full || fetchStrategy === _types.FetchStrategy.PPRRuntime; - if (!doesVaryOnSearchParams) { - // The response from the the server will not vary on search params. Clone - // the end of the original vary path to replace the search params - // with Fallback. - // - // requestKey -> searchParams -> pathParams - // ^ This part gets replaced with Fallback - const searchParamsVaryPath = originalVaryPath.parent; - const pathParamsVaryPath = searchParamsVaryPath.parent; - const patchedVaryPath = { - value: originalVaryPath.value, - parent: { - value: _cachemap.Fallback, - parent: pathParamsVaryPath - } - }; - return patchedVaryPath; - } - } - // The request does vary on search params. We don't need to modify anything. - return originalVaryPath; -} -function clonePageVaryPathWithNewSearchParams(originalVaryPath, newSearch) { - // requestKey -> searchParams -> pathParams - // ^ This part gets replaced with newSearch - const searchParamsVaryPath = originalVaryPath.parent; - const clonedVaryPath = { - value: originalVaryPath.value, - parent: { - value: newSearch, - parent: searchParamsVaryPath.parent - } - }; - return clonedVaryPath; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=vary-path.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/cache-key.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// TypeScript trick to simulate opaque types, like in Flow. -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createCacheKey", { - enumerable: true, - get: function() { - return createCacheKey; - } -}); -function createCacheKey(originalHref, nextUrl) { - const originalUrl = new URL(originalHref); - const cacheKey = { - pathname: originalUrl.pathname, - search: originalUrl.search, - nextUrl: nextUrl - }; - return cacheKey; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=cache-key.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/scheduler.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - cancelPrefetchTask: null, - isPrefetchTaskDirty: null, - pingPrefetchTask: null, - reschedulePrefetchTask: null, - schedulePrefetchTask: null, - startRevalidationCooldown: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - cancelPrefetchTask: function() { - return cancelPrefetchTask; - }, - isPrefetchTaskDirty: function() { - return isPrefetchTaskDirty; - }, - pingPrefetchTask: function() { - return pingPrefetchTask; - }, - reschedulePrefetchTask: function() { - return reschedulePrefetchTask; - }, - schedulePrefetchTask: function() { - return schedulePrefetchTask; - }, - startRevalidationCooldown: function() { - return startRevalidationCooldown; - } -}); -const _approutertypes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-types.js [app-client] (ecmascript)"); -const _matchsegments = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/match-segments.js [app-client] (ecmascript)"); -const _cache = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache.js [app-client] (ecmascript)"); -const _varypath = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/vary-path.js [app-client] (ecmascript)"); -const _cachekey = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache-key.js [app-client] (ecmascript)"); -const _types = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const scheduleMicrotask = typeof queueMicrotask === 'function' ? queueMicrotask : (fn)=>Promise.resolve().then(fn).catch((error)=>setTimeout(()=>{ - throw error; - })); -const taskHeap = []; -let inProgressRequests = 0; -let sortIdCounter = 0; -let didScheduleMicrotask = false; -// The most recently hovered (or touched, etc) link, i.e. the most recent task -// scheduled at Intent priority. There's only ever a single task at Intent -// priority at a time. We reserve special network bandwidth for this task only. -let mostRecentlyHoveredLink = null; -// CDN cache propagation delay after revalidation (in milliseconds) -const REVALIDATION_COOLDOWN_MS = 300; -// Timeout handle for the revalidation cooldown. When non-null, prefetch -// requests are blocked to allow CDN cache propagation. -let revalidationCooldownTimeoutHandle = null; -function startRevalidationCooldown() { - // Clear any existing timeout in case multiple revalidations happen - // in quick succession. - if (revalidationCooldownTimeoutHandle !== null) { - clearTimeout(revalidationCooldownTimeoutHandle); - } - // Schedule the cooldown to expire after the delay. - revalidationCooldownTimeoutHandle = setTimeout(()=>{ - revalidationCooldownTimeoutHandle = null; - // Retry the prefetch queue now that the cooldown has expired. - ensureWorkIsScheduled(); - }, REVALIDATION_COOLDOWN_MS); -} -function schedulePrefetchTask(key, treeAtTimeOfPrefetch, fetchStrategy, priority, onInvalidate) { - // Spawn a new prefetch task - const task = { - key, - treeAtTimeOfPrefetch, - cacheVersion: (0, _cache.getCurrentCacheVersion)(), - priority, - phase: 1, - hasBackgroundWork: false, - spawnedRuntimePrefetches: null, - fetchStrategy, - sortId: sortIdCounter++, - isCanceled: false, - onInvalidate, - _heapIndex: -1 - }; - trackMostRecentlyHoveredLink(task); - heapPush(taskHeap, task); - // Schedule an async task to process the queue. - // - // The main reason we process the queue in an async task is for batching. - // It's common for a single JS task/event to trigger multiple prefetches. - // By deferring to a microtask, we only process the queue once per JS task. - // If they have different priorities, it also ensures they are processed in - // the optimal order. - ensureWorkIsScheduled(); - return task; -} -function cancelPrefetchTask(task) { - // Remove the prefetch task from the queue. If the task already completed, - // then this is a no-op. - // - // We must also explicitly mark the task as canceled so that a blocked task - // does not get added back to the queue when it's pinged by the network. - task.isCanceled = true; - heapDelete(taskHeap, task); -} -function reschedulePrefetchTask(task, treeAtTimeOfPrefetch, fetchStrategy, priority) { - // Bump the prefetch task to the top of the queue, as if it were a fresh - // task. This is essentially the same as canceling the task and scheduling - // a new one, except it reuses the original object. - // - // The primary use case is to increase the priority of a Link-initated - // prefetch on hover. - // Un-cancel the task, in case it was previously canceled. - task.isCanceled = false; - task.phase = 1; - // Assign a new sort ID to move it ahead of all other tasks at the same - // priority level. (Higher sort IDs are processed first.) - task.sortId = sortIdCounter++; - task.priority = // Intent priority, even if the rescheduled priority is lower. - task === mostRecentlyHoveredLink ? _types.PrefetchPriority.Intent : priority; - task.treeAtTimeOfPrefetch = treeAtTimeOfPrefetch; - task.fetchStrategy = fetchStrategy; - trackMostRecentlyHoveredLink(task); - if (task._heapIndex !== -1) { - // The task is already in the queue. - heapResift(taskHeap, task); - } else { - heapPush(taskHeap, task); - } - ensureWorkIsScheduled(); -} -function isPrefetchTaskDirty(task, nextUrl, tree) { - // This is used to quickly bail out of a prefetch task if the result is - // guaranteed to not have changed since the task was initiated. This is - // strictly an optimization — theoretically, if it always returned true, no - // behavior should change because a full prefetch task will effectively - // perform the same checks. - const currentCacheVersion = (0, _cache.getCurrentCacheVersion)(); - return task.cacheVersion !== currentCacheVersion || task.treeAtTimeOfPrefetch !== tree || task.key.nextUrl !== nextUrl; -} -function trackMostRecentlyHoveredLink(task) { - // Track the mostly recently hovered link, i.e. the most recently scheduled - // task at Intent priority. There must only be one such task at a time. - if (task.priority === _types.PrefetchPriority.Intent && task !== mostRecentlyHoveredLink) { - if (mostRecentlyHoveredLink !== null) { - // Bump the previously hovered link's priority down to Default. - if (mostRecentlyHoveredLink.priority !== _types.PrefetchPriority.Background) { - mostRecentlyHoveredLink.priority = _types.PrefetchPriority.Default; - heapResift(taskHeap, mostRecentlyHoveredLink); - } - } - mostRecentlyHoveredLink = task; - } -} -function ensureWorkIsScheduled() { - if (didScheduleMicrotask) { - // Already scheduled a task to process the queue - return; - } - didScheduleMicrotask = true; - scheduleMicrotask(processQueueInMicrotask); -} -/** - * Checks if we've exceeded the maximum number of concurrent prefetch requests, - * to avoid saturating the browser's internal network queue. This is a - * cooperative limit — prefetch tasks should check this before issuing - * new requests. - * - * Also checks if we're within the revalidation cooldown window, during which - * prefetch requests are delayed to allow CDN cache propagation. - */ function hasNetworkBandwidth(task) { - // Check if we're within the revalidation cooldown window - if (revalidationCooldownTimeoutHandle !== null) { - // We're within the cooldown window. Return false to prevent prefetching. - // When the cooldown expires, the timeout will call ensureWorkIsScheduled() - // to retry the queue. - return false; - } - // TODO: Also check if there's an in-progress navigation. We should never - // add prefetch requests to the network queue if an actual navigation is - // taking place, to ensure there's sufficient bandwidth for render-blocking - // data and resources. - // TODO: Consider reserving some amount of bandwidth for static prefetches. - if (task.priority === _types.PrefetchPriority.Intent) { - // The most recently hovered link is allowed to exceed the default limit. - // - // The goal is to always have enough bandwidth to start a new prefetch - // request when hovering over a link. - // - // However, because we don't abort in-progress requests, it's still possible - // we'll run out of bandwidth. When links are hovered in quick succession, - // there could be multiple hover requests running simultaneously. - return inProgressRequests < 12; - } - // The default limit is lower than the limit for a hovered link. - return inProgressRequests < 4; -} -function spawnPrefetchSubtask(prefetchSubtask) { - // When the scheduler spawns an async task, we don't await its result. - // Instead, the async task writes its result directly into the cache, then - // pings the scheduler to continue. - // - // We process server responses streamingly, so the prefetch subtask will - // likely resolve before we're finished receiving all the data. The subtask - // result includes a promise that resolves once the network connection is - // closed. The scheduler uses this to control network bandwidth by tracking - // and limiting the number of concurrent requests. - inProgressRequests++; - return prefetchSubtask.then((result)=>{ - if (result === null) { - // The prefetch task errored before it could start processing the - // network stream. Assume the connection is closed. - onPrefetchConnectionClosed(); - return null; - } - // Wait for the connection to close before freeing up more bandwidth. - result.closed.then(onPrefetchConnectionClosed); - return result.value; - }); -} -function onPrefetchConnectionClosed() { - inProgressRequests--; - // Notify the scheduler that we have more bandwidth, and can continue - // processing tasks. - ensureWorkIsScheduled(); -} -function pingPrefetchTask(task) { - // "Ping" a prefetch that's already in progress to notify it of new data. - if (task.isCanceled || // Check if prefetch is already queued. - task._heapIndex !== -1) { - return; - } - // Add the task back to the queue. - heapPush(taskHeap, task); - ensureWorkIsScheduled(); -} -function processQueueInMicrotask() { - didScheduleMicrotask = false; - // We aim to minimize how often we read the current time. Since nearly all - // functions in the prefetch scheduler are synchronous, we can read the time - // once and pass it as an argument wherever it's needed. - const now = Date.now(); - // Process the task queue until we run out of network bandwidth. - let task = heapPeek(taskHeap); - while(task !== null && hasNetworkBandwidth(task)){ - task.cacheVersion = (0, _cache.getCurrentCacheVersion)(); - const exitStatus = pingRoute(now, task); - // These fields are only valid for a single attempt. Reset them after each - // iteration of the task queue. - const hasBackgroundWork = task.hasBackgroundWork; - task.hasBackgroundWork = false; - task.spawnedRuntimePrefetches = null; - switch(exitStatus){ - case 0: - // The task yielded because there are too many requests in progress. - // Stop processing tasks until we have more bandwidth. - return; - case 1: - // The task is blocked. It needs more data before it can proceed. - // Keep the task out of the queue until the server responds. - heapPop(taskHeap); - // Continue to the next task - task = heapPeek(taskHeap); - continue; - case 2: - if (task.phase === 1) { - // Finished prefetching the route tree. Proceed to prefetching - // the segments. - task.phase = 0; - heapResift(taskHeap, task); - } else if (hasBackgroundWork) { - // The task spawned additional background work. Reschedule the task - // at background priority. - task.priority = _types.PrefetchPriority.Background; - heapResift(taskHeap, task); - } else { - // The prefetch is complete. Continue to the next task. - heapPop(taskHeap); - } - task = heapPeek(taskHeap); - continue; - default: - exitStatus; - } - } -} -/** - * Check this during a prefetch task to determine if background work can be - * performed. If so, it evaluates to `true`. Otherwise, it returns `false`, - * while also scheduling a background task to run later. Usage: - * - * @example - * if (background(task)) { - * // Perform background-pri work - * } - */ function background(task) { - if (task.priority === _types.PrefetchPriority.Background) { - return true; - } - task.hasBackgroundWork = true; - return false; -} -function pingRoute(now, task) { - const key = task.key; - const route = (0, _cache.readOrCreateRouteCacheEntry)(now, task, key); - const exitStatus = pingRootRouteTree(now, task, route); - if (exitStatus !== 0 && key.search !== '') { - // If the URL has a non-empty search string, also prefetch the pathname - // without the search string. We use the searchless route tree as a base for - // optimistic routing; see requestOptimisticRouteCacheEntry for details. - // - // Note that we don't need to prefetch any of the segment data. Just the - // route tree. - // - // TODO: This is a temporary solution; the plan is to replace this by adding - // a wildcard lookup method to the TupleMap implementation. This is - // non-trivial to implement because it needs to account for things like - // fallback route entries, hence this temporary workaround. - const url = new URL(key.pathname, location.origin); - const keyWithoutSearch = (0, _cachekey.createCacheKey)(url.href, key.nextUrl); - const routeWithoutSearch = (0, _cache.readOrCreateRouteCacheEntry)(now, task, keyWithoutSearch); - switch(routeWithoutSearch.status){ - case _cache.EntryStatus.Empty: - { - if (background(task)) { - routeWithoutSearch.status = _cache.EntryStatus.Pending; - spawnPrefetchSubtask((0, _cache.fetchRouteOnCacheMiss)(routeWithoutSearch, task, keyWithoutSearch)); - } - break; - } - case _cache.EntryStatus.Pending: - case _cache.EntryStatus.Fulfilled: - case _cache.EntryStatus.Rejected: - { - break; - } - default: - routeWithoutSearch; - } - } - return exitStatus; -} -function pingRootRouteTree(now, task, route) { - switch(route.status){ - case _cache.EntryStatus.Empty: - { - // Route is not yet cached, and there's no request already in progress. - // Spawn a task to request the route, load it into the cache, and ping - // the task to continue. - // TODO: There are multiple strategies in the <Link> API for prefetching - // a route. Currently we've only implemented the main one: per-segment, - // static-data only. - // - // There's also `<Link prefetch={true}>` - // which prefetch both static *and* dynamic data. - // Similarly, we need to fallback to the old, per-page - // behavior if PPR is disabled for a route (via the incremental opt-in). - // - // Those cases will be handled here. - spawnPrefetchSubtask((0, _cache.fetchRouteOnCacheMiss)(route, task, task.key)); - // If the request takes longer than a minute, a subsequent request should - // retry instead of waiting for this one. When the response is received, - // this value will be replaced by a new value based on the stale time sent - // from the server. - // TODO: We should probably also manually abort the fetch task, to reclaim - // server bandwidth. - route.staleAt = now + 60 * 1000; - // Upgrade to Pending so we know there's already a request in progress - route.status = _cache.EntryStatus.Pending; - // Intentional fallthrough to the Pending branch - } - case _cache.EntryStatus.Pending: - { - // Still pending. We can't start prefetching the segments until the route - // tree has loaded. Add the task to the set of blocked tasks so that it - // is notified when the route tree is ready. - const blockedTasks = route.blockedTasks; - if (blockedTasks === null) { - route.blockedTasks = new Set([ - task - ]); - } else { - blockedTasks.add(task); - } - return 1; - } - case _cache.EntryStatus.Rejected: - { - // Route tree failed to load. Treat as a 404. - return 2; - } - case _cache.EntryStatus.Fulfilled: - { - if (task.phase !== 0) { - // Do not prefetch segment data until we've entered the segment phase. - return 2; - } - // Recursively fill in the segment tree. - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - const tree = route.tree; - // A task's fetch strategy gets set to `PPR` for any "auto" prefetch. - // If it turned out that the route isn't PPR-enabled, we need to use `LoadingBoundary` instead. - // We don't need to do this for runtime prefetches, because those are only available in - // `cacheComponents`, where every route is PPR. - const fetchStrategy = task.fetchStrategy === _types.FetchStrategy.PPR ? route.isPPREnabled ? _types.FetchStrategy.PPR : _types.FetchStrategy.LoadingBoundary : task.fetchStrategy; - switch(fetchStrategy){ - case _types.FetchStrategy.PPR: - { - // For Cache Components pages, each segment may be prefetched - // statically or using a runtime request, based on various - // configurations and heuristics. We'll do this in two passes: first - // traverse the tree and perform all the static prefetches. - // - // Then, if there are any segments that need a runtime request, - // do another pass to perform a runtime prefetch. - pingStaticHead(now, task, route); - const exitStatus = pingSharedPartOfCacheComponentsTree(now, task, route, task.treeAtTimeOfPrefetch, tree); - if (exitStatus === 0) { - // Child yielded without finishing. - return 0; - } - const spawnedRuntimePrefetches = task.spawnedRuntimePrefetches; - if (spawnedRuntimePrefetches !== null) { - // During the first pass, we discovered segments that require a - // runtime prefetch. Do a second pass to construct a request tree. - const spawnedEntries = new Map(); - pingRuntimeHead(now, task, route, spawnedEntries, _types.FetchStrategy.PPRRuntime); - const requestTree = pingRuntimePrefetches(now, task, route, tree, spawnedRuntimePrefetches, spawnedEntries); - let needsDynamicRequest = spawnedEntries.size > 0; - if (needsDynamicRequest) { - // Perform a dynamic prefetch request and populate the cache with - // the result. - spawnPrefetchSubtask((0, _cache.fetchSegmentPrefetchesUsingDynamicRequest)(task, route, _types.FetchStrategy.PPRRuntime, requestTree, spawnedEntries)); - } - } - return 2; - } - case _types.FetchStrategy.Full: - case _types.FetchStrategy.PPRRuntime: - case _types.FetchStrategy.LoadingBoundary: - { - // Prefetch multiple segments using a single dynamic request. - // TODO: We can consolidate this branch with previous one by modeling - // it as if the first segment in the new tree has runtime prefetching - // enabled. Will do this as a follow-up refactor. Might want to remove - // the special metatdata case below first. In the meantime, it's not - // really that much duplication, just would be nice to remove one of - // these codepaths. - const spawnedEntries = new Map(); - pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy); - const dynamicRequestTree = diffRouteTreeAgainstCurrent(now, task, route, task.treeAtTimeOfPrefetch, tree, spawnedEntries, fetchStrategy); - let needsDynamicRequest = spawnedEntries.size > 0; - if (needsDynamicRequest) { - spawnPrefetchSubtask((0, _cache.fetchSegmentPrefetchesUsingDynamicRequest)(task, route, fetchStrategy, dynamicRequestTree, spawnedEntries)); - } - return 2; - } - default: - fetchStrategy; - } - break; - } - default: - { - route; - } - } - return 2; -} -function pingStaticHead(now, task, route) { - // The Head data for a page (metadata, viewport) is not really a route - // segment, in the sense that it doesn't appear in the route tree. But we - // store it in the cache as if it were, using a special key. - pingStaticSegmentData(now, task, route, (0, _cache.readOrCreateSegmentCacheEntry)(now, _types.FetchStrategy.PPR, route, route.metadata), task.key, route.metadata); -} -function pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy) { - pingRouteTreeAndIncludeDynamicData(now, task, route, route.metadata, false, spawnedEntries, // and LoadingBoundary - fetchStrategy === _types.FetchStrategy.LoadingBoundary ? _types.FetchStrategy.Full : fetchStrategy); -} -// TODO: Rename dynamic -> runtime throughout this module -function pingSharedPartOfCacheComponentsTree(now, task, route, oldTree, newTree) { - // When Cache Components is enabled (or PPR, or a fully static route when PPR - // is disabled; those cases are treated equivalently to Cache Components), we - // start by prefetching each segment individually. Once we reach the "new" - // part of the tree — the part that doesn't exist on the current page — we - // may choose to switch to a runtime prefetch instead, based on the - // information sent by the server in the route tree. - // - // The traversal starts in the "shared" part of the tree. Once we reach the - // "new" part of the tree, we switch to a different traversal, - // pingNewPartOfCacheComponentsTree. - // Prefetch this segment's static data. - const segment = (0, _cache.readOrCreateSegmentCacheEntry)(now, task.fetchStrategy, route, newTree); - pingStaticSegmentData(now, task, route, segment, task.key, newTree); - // Recursively ping the children. - const oldTreeChildren = oldTree[1]; - const newTreeChildren = newTree.slots; - if (newTreeChildren !== null) { - for(const parallelRouteKey in newTreeChildren){ - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - const newTreeChild = newTreeChildren[parallelRouteKey]; - const newTreeChildSegment = newTreeChild.segment; - const oldTreeChild = oldTreeChildren[parallelRouteKey]; - const oldTreeChildSegment = oldTreeChild?.[0]; - let childExitStatus; - if (oldTreeChildSegment !== undefined && doesCurrentSegmentMatchCachedSegment(route, newTreeChildSegment, oldTreeChildSegment)) { - // We're still in the "shared" part of the tree. - childExitStatus = pingSharedPartOfCacheComponentsTree(now, task, route, oldTreeChild, newTreeChild); - } else { - // We've entered the "new" part of the tree. Switch - // traversal functions. - childExitStatus = pingNewPartOfCacheComponentsTree(now, task, route, newTreeChild); - } - if (childExitStatus === 0) { - // Child yielded without finishing. - return 0; - } - } - } - return 2; -} -function pingNewPartOfCacheComponentsTree(now, task, route, tree) { - // We're now prefetching in the "new" part of the tree, the part that doesn't - // exist on the current page. (In other words, we're deeper than the - // shared layouts.) Segments in here default to being prefetched statically. - // However, if the server instructs us to, we may switch to a runtime - // prefetch instead. Traverse the tree and check at each segment. - if (tree.hasRuntimePrefetch) { - // This route has a runtime prefetch response. Since we're below the shared - // layout, everything from this point should be prefetched using a single, - // combined runtime request, rather than using per-segment static requests. - // This is true even if some of the child segments are known to be fully - // static — once we've decided to perform a runtime prefetch, we might as - // well respond with the static segments in the same roundtrip. (That's how - // regular navigations work, too.) We'll still skip over segments that are - // already cached, though. - // - // It's the server's responsibility to set a reasonable value of - // `hasRuntimePrefetch`. Currently it's user-defined, but eventually, the - // server may send a value of `false` even if the user opts in, if it - // determines during build that the route is always fully static. There are - // more optimizations we can do once we implement fallback param - // tracking, too. - // - // Use the task object to collect the segments that need a runtime prefetch. - // This will signal to the outer task queue that a second traversal is - // required to construct a request tree. - if (task.spawnedRuntimePrefetches === null) { - task.spawnedRuntimePrefetches = new Set([ - tree.requestKey - ]); - } else { - task.spawnedRuntimePrefetches.add(tree.requestKey); - } - // Then exit the traversal without prefetching anything further. - return 2; - } - // This segment should not be runtime prefetched. Prefetch its static data. - const segment = (0, _cache.readOrCreateSegmentCacheEntry)(now, task.fetchStrategy, route, tree); - pingStaticSegmentData(now, task, route, segment, task.key, tree); - if (tree.slots !== null) { - if (!hasNetworkBandwidth(task)) { - // Stop prefetching segments until there's more bandwidth. - return 0; - } - // Recursively ping the children. - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - const childExitStatus = pingNewPartOfCacheComponentsTree(now, task, route, childTree); - if (childExitStatus === 0) { - // Child yielded without finishing. - return 0; - } - } - } - // This segment and all its children have finished prefetching. - return 2; -} -function diffRouteTreeAgainstCurrent(now, task, route, oldTree, newTree, spawnedEntries, fetchStrategy) { - // This is a single recursive traversal that does multiple things: - // - Finds the parts of the target route (newTree) that are not part of - // of the current page (oldTree) by diffing them, using the same algorithm - // as a real navigation. - // - Constructs a request tree (FlightRouterState) that describes which - // segments need to be prefetched and which ones are already cached. - // - Creates a set of pending cache entries for the segments that need to - // be prefetched, so that a subsequent prefetch task does not request the - // same segments again. - const oldTreeChildren = oldTree[1]; - const newTreeChildren = newTree.slots; - let requestTreeChildren = {}; - if (newTreeChildren !== null) { - for(const parallelRouteKey in newTreeChildren){ - const newTreeChild = newTreeChildren[parallelRouteKey]; - const newTreeChildSegment = newTreeChild.segment; - const oldTreeChild = oldTreeChildren[parallelRouteKey]; - const oldTreeChildSegment = oldTreeChild?.[0]; - if (oldTreeChildSegment !== undefined && doesCurrentSegmentMatchCachedSegment(route, newTreeChildSegment, oldTreeChildSegment)) { - // This segment is already part of the current route. Keep traversing. - const requestTreeChild = diffRouteTreeAgainstCurrent(now, task, route, oldTreeChild, newTreeChild, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - } else { - // This segment is not part of the current route. We're entering a - // part of the tree that we need to prefetch (unless everything is - // already cached). - switch(fetchStrategy){ - case _types.FetchStrategy.LoadingBoundary: - { - // When PPR is disabled, we can't prefetch per segment. We must - // fallback to the old prefetch behavior and send a dynamic request. - // Only routes that include a loading boundary can be prefetched in - // this way. - // - // This is simlar to a "full" prefetch, but we're much more - // conservative about which segments to include in the request. - // - // The server will only render up to the first loading boundary - // inside new part of the tree. If there's no loading boundary - // anywhere in the tree, the server will never return any data, so - // we can skip the request. - const subtreeHasLoadingBoundary = newTreeChild.hasLoadingBoundary !== _approutertypes.HasLoadingBoundary.SubtreeHasNoLoadingBoundary; - const requestTreeChild = subtreeHasLoadingBoundary ? pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, newTreeChild, null, spawnedEntries) : (0, _cache.convertRouteTreeToFlightRouterState)(newTreeChild); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - case _types.FetchStrategy.PPRRuntime: - { - // This is a runtime prefetch. Fetch all cacheable data in the tree, - // not just the static PPR shell. - const requestTreeChild = pingRouteTreeAndIncludeDynamicData(now, task, route, newTreeChild, false, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - case _types.FetchStrategy.Full: - { - // This is a "full" prefetch. Fetch all the data in the tree, both - // static and dynamic. We issue roughly the same request that we - // would during a real navigation. The goal is that once the - // navigation occurs, the router should not have to fetch any - // additional data. - // - // Although the response will include dynamic data, opting into a - // Full prefetch — via <Link prefetch={true}> — implicitly - // instructs the cache to treat the response as "static", or non- - // dynamic, since the whole point is to cache it for - // future navigations. - // - // Construct a tree (currently a FlightRouterState) that represents - // which segments need to be prefetched and which ones are already - // cached. If the tree is empty, then we can exit. Otherwise, we'll - // send the request tree to the server and use the response to - // populate the segment cache. - const requestTreeChild = pingRouteTreeAndIncludeDynamicData(now, task, route, newTreeChild, false, spawnedEntries, fetchStrategy); - requestTreeChildren[parallelRouteKey] = requestTreeChild; - break; - } - default: - fetchStrategy; - } - } - } - } - const requestTree = [ - newTree.segment, - requestTreeChildren, - null, - null, - newTree.isRootLayout - ]; - return requestTree; -} -function pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, tree, refetchMarkerContext, spawnedEntries) { - // This function is similar to pingRouteTreeAndIncludeDynamicData, except the - // server is only going to return a minimal loading state — it will stop - // rendering at the first loading boundary. Whereas a Full prefetch is - // intentionally aggressive and tries to pretfetch all the data that will be - // needed for a navigation, a LoadingBoundary prefetch is much more - // conservative. For example, it will omit from the request tree any segment - // that is already cached, regardles of whether it's partial or full. By - // contrast, a Full prefetch will refetch partial segments. - // "inside-shared-layout" tells the server where to start looking for a - // loading boundary. - let refetchMarker = refetchMarkerContext === null ? 'inside-shared-layout' : null; - const segment = (0, _cache.readOrCreateSegmentCacheEntry)(now, task.fetchStrategy, route, tree); - switch(segment.status){ - case _cache.EntryStatus.Empty: - { - // This segment is not cached. Add a refetch marker so the server knows - // to start rendering here. - // TODO: Instead of a "refetch" marker, we could just omit this subtree's - // FlightRouterState from the request tree. I think this would probably - // already work even without any updates to the server. For consistency, - // though, I'll send the full tree and we'll look into this later as part - // of a larger redesign of the request protocol. - // Add the pending cache entry to the result map. - spawnedEntries.set(tree.requestKey, (0, _cache.upgradeToPendingSegment)(segment, // might not include it in the pending response. If another route is able - // to issue a per-segment request, we'll do that in the background. - _types.FetchStrategy.LoadingBoundary)); - if (refetchMarkerContext !== 'refetch') { - refetchMarker = refetchMarkerContext = 'refetch'; - } else { - // There's already a parent with a refetch marker, so we don't need - // to add another one. - } - break; - } - case _cache.EntryStatus.Fulfilled: - { - // The segment is already cached. - const segmentHasLoadingBoundary = tree.hasLoadingBoundary === _approutertypes.HasLoadingBoundary.SegmentHasLoadingBoundary; - if (segmentHasLoadingBoundary) { - // This segment has a loading boundary, which means the server won't - // render its children. So there's nothing left to prefetch along this - // path. We can bail out. - return (0, _cache.convertRouteTreeToFlightRouterState)(tree); - } - break; - } - case _cache.EntryStatus.Pending: - { - break; - } - case _cache.EntryStatus.Rejected: - { - break; - } - default: - segment; - } - const requestTreeChildren = {}; - if (tree.slots !== null) { - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingPPRDisabledRouteTreeUpToLoadingBoundary(now, task, route, childTree, refetchMarkerContext, spawnedEntries); - } - } - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - refetchMarker, - tree.isRootLayout - ]; - return requestTree; -} -function pingRouteTreeAndIncludeDynamicData(now, task, route, tree, isInsideRefetchingParent, spawnedEntries, fetchStrategy) { - // The tree we're constructing is the same shape as the tree we're navigating - // to. But even though this is a "new" tree, some of the individual segments - // may be cached as a result of other route prefetches. - // - // So we need to find the first uncached segment along each path add an - // explicit "refetch" marker so the server knows where to start rendering. - // Once the server starts rendering along a path, it keeps rendering the - // entire subtree. - const segment = (0, _cache.readOrCreateSegmentCacheEntry)(now, // and we have to use the former here. - // We can have a task with `FetchStrategy.PPR` where some of its segments are configured to - // always use runtime prefetching (via `export const prefetch`), and those should check for - // entries that include search params. - fetchStrategy, route, tree); - let spawnedSegment = null; - switch(segment.status){ - case _cache.EntryStatus.Empty: - { - // This segment is not cached. Include it in the request. - spawnedSegment = (0, _cache.upgradeToPendingSegment)(segment, fetchStrategy); - break; - } - case _cache.EntryStatus.Fulfilled: - { - // The segment is already cached. - if (segment.isPartial && (0, _cache.canNewFetchStrategyProvideMoreContent)(segment.fetchStrategy, fetchStrategy)) { - // The cached segment contains dynamic holes, and was prefetched using a less specific strategy than the current one. - // This means we're in one of these cases: - // - we have a static prefetch, and we're doing a runtime prefetch - // - we have a static or runtime prefetch, and we're doing a Full prefetch (or a navigation). - // In either case, we need to include it in the request to get a more specific (or full) version. - spawnedSegment = pingFullSegmentRevalidation(now, route, tree, fetchStrategy); - } - break; - } - case _cache.EntryStatus.Pending: - case _cache.EntryStatus.Rejected: - { - // There's either another prefetch currently in progress, or the previous - // attempt failed. If the new strategy can provide more content, fetch it again. - if ((0, _cache.canNewFetchStrategyProvideMoreContent)(segment.fetchStrategy, fetchStrategy)) { - spawnedSegment = pingFullSegmentRevalidation(now, route, tree, fetchStrategy); - } - break; - } - default: - segment; - } - const requestTreeChildren = {}; - if (tree.slots !== null) { - for(const parallelRouteKey in tree.slots){ - const childTree = tree.slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingRouteTreeAndIncludeDynamicData(now, task, route, childTree, isInsideRefetchingParent || spawnedSegment !== null, spawnedEntries, fetchStrategy); - } - } - if (spawnedSegment !== null) { - // Add the pending entry to the result map. - spawnedEntries.set(tree.requestKey, spawnedSegment); - } - // Don't bother to add a refetch marker if one is already present in a parent. - const refetchMarker = !isInsideRefetchingParent && spawnedSegment !== null ? 'refetch' : null; - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - refetchMarker, - tree.isRootLayout - ]; - return requestTree; -} -function pingRuntimePrefetches(now, task, route, tree, spawnedRuntimePrefetches, spawnedEntries) { - // Construct a request tree (FlightRouterState) for a runtime prefetch. If - // a segment is part of the runtime prefetch, the tree is constructed by - // diffing against what's already in the prefetch cache. Otherwise, we send - // a regular FlightRouterState with no special markers. - // - // See pingRouteTreeAndIncludeDynamicData for details. - if (spawnedRuntimePrefetches.has(tree.requestKey)) { - // This segment needs a runtime prefetch. - return pingRouteTreeAndIncludeDynamicData(now, task, route, tree, false, spawnedEntries, _types.FetchStrategy.PPRRuntime); - } - let requestTreeChildren = {}; - const slots = tree.slots; - if (slots !== null) { - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - requestTreeChildren[parallelRouteKey] = pingRuntimePrefetches(now, task, route, childTree, spawnedRuntimePrefetches, spawnedEntries); - } - } - // This segment is not part of the runtime prefetch. Clone the base tree. - const requestTree = [ - tree.segment, - requestTreeChildren, - null, - null - ]; - return requestTree; -} -function pingStaticSegmentData(now, task, route, segment, routeKey, tree) { - switch(segment.status){ - case _cache.EntryStatus.Empty: - // Upgrade to Pending so we know there's already a request in progress - spawnPrefetchSubtask((0, _cache.fetchSegmentOnCacheMiss)(route, (0, _cache.upgradeToPendingSegment)(segment, _types.FetchStrategy.PPR), routeKey, tree)); - break; - case _cache.EntryStatus.Pending: - { - // There's already a request in progress. Depending on what kind of - // request it is, we may want to revalidate it. - switch(segment.fetchStrategy){ - case _types.FetchStrategy.PPR: - case _types.FetchStrategy.PPRRuntime: - case _types.FetchStrategy.Full: - break; - case _types.FetchStrategy.LoadingBoundary: - // There's a pending request, but because it's using the old - // prefetching strategy, we can't be sure if it will be fulfilled by - // the response — it might be inside the loading boundary. Perform - // a revalidation, but because it's speculative, wait to do it at - // background priority. - if (background(task)) { - // TODO: Instead of speculatively revalidating, consider including - // `hasLoading` in the route tree prefetch response. - pingPPRSegmentRevalidation(now, route, routeKey, tree); - } - break; - default: - segment.fetchStrategy; - } - break; - } - case _cache.EntryStatus.Rejected: - { - // The existing entry in the cache was rejected. Depending on how it - // was originally fetched, we may or may not want to revalidate it. - switch(segment.fetchStrategy){ - case _types.FetchStrategy.PPR: - case _types.FetchStrategy.PPRRuntime: - case _types.FetchStrategy.Full: - break; - case _types.FetchStrategy.LoadingBoundary: - // There's a rejected entry, but it was fetched using the loading - // boundary strategy. So the reason it wasn't returned by the server - // might just be because it was inside a loading boundary. Or because - // there was a dynamic rewrite. Revalidate it using the per- - // segment strategy. - // - // Because a rejected segment will definitely prevent the segment (and - // all of its children) from rendering, we perform this revalidation - // immediately instead of deferring it to a background task. - pingPPRSegmentRevalidation(now, route, routeKey, tree); - break; - default: - segment.fetchStrategy; - } - break; - } - case _cache.EntryStatus.Fulfilled: - break; - default: - segment; - } -// Segments do not have dependent tasks, so once the prefetch is initiated, -// there's nothing else for us to do (except write the server data into the -// entry, which is handled by `fetchSegmentOnCacheMiss`). -} -function pingPPRSegmentRevalidation(now, route, routeKey, tree) { - const revalidatingSegment = (0, _cache.readOrCreateRevalidatingSegmentEntry)(now, _types.FetchStrategy.PPR, route, tree); - switch(revalidatingSegment.status){ - case _cache.EntryStatus.Empty: - // Spawn a prefetch request and upsert the segment into the cache - // upon completion. - upsertSegmentOnCompletion(spawnPrefetchSubtask((0, _cache.fetchSegmentOnCacheMiss)(route, (0, _cache.upgradeToPendingSegment)(revalidatingSegment, _types.FetchStrategy.PPR), routeKey, tree)), (0, _varypath.getSegmentVaryPathForRequest)(_types.FetchStrategy.PPR, tree)); - break; - case _cache.EntryStatus.Pending: - break; - case _cache.EntryStatus.Fulfilled: - case _cache.EntryStatus.Rejected: - break; - default: - revalidatingSegment; - } -} -function pingFullSegmentRevalidation(now, route, tree, fetchStrategy) { - const revalidatingSegment = (0, _cache.readOrCreateRevalidatingSegmentEntry)(now, fetchStrategy, route, tree); - if (revalidatingSegment.status === _cache.EntryStatus.Empty) { - // During a Full/PPRRuntime prefetch, a single dynamic request is made for all the - // segments that we need. So we don't initiate a request here directly. By - // returning a pending entry from this function, it signals to the caller - // that this segment should be included in the request that's sent to - // the server. - const pendingSegment = (0, _cache.upgradeToPendingSegment)(revalidatingSegment, fetchStrategy); - upsertSegmentOnCompletion((0, _cache.waitForSegmentCacheEntry)(pendingSegment), (0, _varypath.getSegmentVaryPathForRequest)(fetchStrategy, tree)); - return pendingSegment; - } else { - // There's already a revalidation in progress. - const nonEmptyRevalidatingSegment = revalidatingSegment; - if ((0, _cache.canNewFetchStrategyProvideMoreContent)(nonEmptyRevalidatingSegment.fetchStrategy, fetchStrategy)) { - // The existing revalidation was fetched using a less specific strategy. - // Reset it and start a new revalidation. - const emptySegment = (0, _cache.overwriteRevalidatingSegmentCacheEntry)(fetchStrategy, route, tree); - const pendingSegment = (0, _cache.upgradeToPendingSegment)(emptySegment, fetchStrategy); - upsertSegmentOnCompletion((0, _cache.waitForSegmentCacheEntry)(pendingSegment), (0, _varypath.getSegmentVaryPathForRequest)(fetchStrategy, tree)); - return pendingSegment; - } - switch(nonEmptyRevalidatingSegment.status){ - case _cache.EntryStatus.Pending: - // There's already an in-progress prefetch that includes this segment. - return null; - case _cache.EntryStatus.Fulfilled: - case _cache.EntryStatus.Rejected: - // A previous revalidation attempt finished, but we chose not to replace - // the existing entry in the cache. Don't try again until or unless the - // revalidation entry expires. - return null; - default: - nonEmptyRevalidatingSegment; - return null; - } - } -} -const noop = ()=>{}; -function upsertSegmentOnCompletion(promise, varyPath) { - // Wait for a segment to finish loading, then upsert it into the cache - promise.then((fulfilled)=>{ - if (fulfilled !== null) { - // Received new data. Attempt to replace the existing entry in the cache. - (0, _cache.upsertSegmentEntry)(Date.now(), varyPath, fulfilled); - } - }, noop); -} -function doesCurrentSegmentMatchCachedSegment(route, currentSegment, cachedSegment) { - if (cachedSegment === _segment.PAGE_SEGMENT_KEY) { - // In the FlightRouterState stored by the router, the page segment has the - // rendered search params appended to the name of the segment. In the - // prefetch cache, however, this is stored separately. So, when comparing - // the router's current FlightRouterState to the cached FlightRouterState, - // we need to make sure we compare both parts of the segment. - // TODO: This is not modeled clearly. We use the same type, - // FlightRouterState, for both the CacheNode tree _and_ the prefetch cache - // _and_ the server response format, when conceptually those are three - // different things and treated in different ways. We should encode more of - // this information into the type design so mistakes are less likely. - return currentSegment === (0, _segment.addSearchParamsIfPageSegment)(_segment.PAGE_SEGMENT_KEY, Object.fromEntries(new URLSearchParams(route.renderedSearch))); - } - // Non-page segments are compared using the same function as the server - return (0, _matchsegments.matchSegment)(cachedSegment, currentSegment); -} -// ----------------------------------------------------------------------------- -// The remainder of the module is a MinHeap implementation. Try not to put any -// logic below here unless it's related to the heap algorithm. We can extract -// this to a separate module if/when we need multiple kinds of heaps. -// ----------------------------------------------------------------------------- -function compareQueuePriority(a, b) { - // Since the queue is a MinHeap, this should return a positive number if b is - // higher priority than a, and a negative number if a is higher priority - // than b. - // `priority` is an integer, where higher numbers are higher priority. - const priorityDiff = b.priority - a.priority; - if (priorityDiff !== 0) { - return priorityDiff; - } - // If the priority is the same, check which phase the prefetch is in — is it - // prefetching the route tree, or the segments? Route trees are prioritized. - const phaseDiff = b.phase - a.phase; - if (phaseDiff !== 0) { - return phaseDiff; - } - // Finally, check the insertion order. `sortId` is an incrementing counter - // assigned to prefetches. We want to process the newest prefetches first. - return b.sortId - a.sortId; -} -function heapPush(heap, node) { - const index = heap.length; - heap.push(node); - node._heapIndex = index; - heapSiftUp(heap, node, index); -} -function heapPeek(heap) { - return heap.length === 0 ? null : heap[0]; -} -function heapPop(heap) { - if (heap.length === 0) { - return null; - } - const first = heap[0]; - first._heapIndex = -1; - const last = heap.pop(); - if (last !== first) { - heap[0] = last; - last._heapIndex = 0; - heapSiftDown(heap, last, 0); - } - return first; -} -function heapDelete(heap, node) { - const index = node._heapIndex; - if (index !== -1) { - node._heapIndex = -1; - if (heap.length !== 0) { - const last = heap.pop(); - if (last !== node) { - heap[index] = last; - last._heapIndex = index; - heapSiftDown(heap, last, index); - } - } - } -} -function heapResift(heap, node) { - const index = node._heapIndex; - if (index !== -1) { - if (index === 0) { - heapSiftDown(heap, node, 0); - } else { - const parentIndex = index - 1 >>> 1; - const parent = heap[parentIndex]; - if (compareQueuePriority(parent, node) > 0) { - // The parent is larger. Sift up. - heapSiftUp(heap, node, index); - } else { - // The parent is smaller (or equal). Sift down. - heapSiftDown(heap, node, index); - } - } - } -} -function heapSiftUp(heap, node, i) { - let index = i; - while(index > 0){ - const parentIndex = index - 1 >>> 1; - const parent = heap[parentIndex]; - if (compareQueuePriority(parent, node) > 0) { - // The parent is larger. Swap positions. - heap[parentIndex] = node; - node._heapIndex = parentIndex; - heap[index] = parent; - parent._heapIndex = index; - index = parentIndex; - } else { - // The parent is smaller. Exit. - return; - } - } -} -function heapSiftDown(heap, node, i) { - let index = i; - const length = heap.length; - const halfLength = length >>> 1; - while(index < halfLength){ - const leftIndex = (index + 1) * 2 - 1; - const left = heap[leftIndex]; - const rightIndex = leftIndex + 1; - const right = heap[rightIndex]; - // If the left or right node is smaller, swap with the smaller of those. - if (compareQueuePriority(left, node) < 0) { - if (rightIndex < length && compareQueuePriority(right, left) < 0) { - heap[index] = right; - right._heapIndex = index; - heap[rightIndex] = node; - node._heapIndex = rightIndex; - index = rightIndex; - } else { - heap[index] = left; - left._heapIndex = index; - heap[leftIndex] = node; - node._heapIndex = leftIndex; - index = leftIndex; - } - } else if (rightIndex < length && compareQueuePriority(right, node) < 0) { - heap[index] = right; - right._heapIndex = index; - heap[rightIndex] = node; - node._heapIndex = rightIndex; - index = rightIndex; - } else { - // Neither child is smaller. Exit. - return; - } - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=scheduler.js.map -}), -"[project]/node_modules/next/dist/client/normalize-trailing-slash.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "normalizePathTrailingSlash", { - enumerable: true, - get: function() { - return normalizePathTrailingSlash; - } -}); -const _removetrailingslash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js [app-client] (ecmascript)"); -const _parsepath = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-path.js [app-client] (ecmascript)"); -const normalizePathTrailingSlash = (path)=>{ - if (!path.startsWith('/') || ("TURBOPACK compile-time value", void 0)) { - return path; - } - const { pathname, query, hash } = (0, _parsepath.parsePath)(path); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return `${(0, _removetrailingslash.removeTrailingSlash)(pathname)}${query}${hash}`; -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=normalize-trailing-slash.js.map -}), -"[project]/node_modules/next/dist/client/add-base-path.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "addBasePath", { - enumerable: true, - get: function() { - return addBasePath; - } -}); -const _addpathprefix = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js [app-client] (ecmascript)"); -const _normalizetrailingslash = __turbopack_context__.r("[project]/node_modules/next/dist/client/normalize-trailing-slash.js [app-client] (ecmascript)"); -const basePath = ("TURBOPACK compile-time value", "") || ''; -function addBasePath(path, required) { - return (0, _normalizetrailingslash.normalizePathTrailingSlash)(("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : (0, _addpathprefix.addPathPrefix)(path, basePath)); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=add-base-path.js.map -}), -"[project]/node_modules/next/dist/client/components/app-router-utils.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createPrefetchURL: null, - isExternalURL: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createPrefetchURL: function() { - return createPrefetchURL; - }, - isExternalURL: function() { - return isExternalURL; - } -}); -const _isbot = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/is-bot.js [app-client] (ecmascript)"); -const _addbasepath = __turbopack_context__.r("[project]/node_modules/next/dist/client/add-base-path.js [app-client] (ecmascript)"); -function isExternalURL(url) { - return url.origin !== window.location.origin; -} -function createPrefetchURL(href) { - // Don't prefetch for bots as they don't navigate. - if ((0, _isbot.isBot)(window.navigator.userAgent)) { - return null; - } - let url; - try { - url = new URL((0, _addbasepath.addBasePath)(href), window.location.href); - } catch (_) { - // TODO: Does this need to throw or can we just console.error instead? Does - // anyone rely on this throwing? (Seems unlikely.) - throw Object.defineProperty(new Error(`Cannot prefetch '${href}' because it cannot be converted to a URL.`), "__NEXT_ERROR_CODE", { - value: "E234", - enumerable: false, - configurable: true - }); - } - // Don't prefetch during development (improves compilation performance) - if ("TURBOPACK compile-time truthy", 1) { - return null; - } - //TURBOPACK unreachable - ; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-router-utils.js.map -}), -"[project]/node_modules/next/dist/client/components/links.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - IDLE_LINK_STATUS: null, - PENDING_LINK_STATUS: null, - mountFormInstance: null, - mountLinkInstance: null, - onLinkVisibilityChanged: null, - onNavigationIntent: null, - pingVisibleLinks: null, - setLinkForCurrentNavigation: null, - unmountLinkForCurrentNavigation: null, - unmountPrefetchableInstance: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - IDLE_LINK_STATUS: function() { - return IDLE_LINK_STATUS; - }, - PENDING_LINK_STATUS: function() { - return PENDING_LINK_STATUS; - }, - mountFormInstance: function() { - return mountFormInstance; - }, - mountLinkInstance: function() { - return mountLinkInstance; - }, - onLinkVisibilityChanged: function() { - return onLinkVisibilityChanged; - }, - onNavigationIntent: function() { - return onNavigationIntent; - }, - pingVisibleLinks: function() { - return pingVisibleLinks; - }, - setLinkForCurrentNavigation: function() { - return setLinkForCurrentNavigation; - }, - unmountLinkForCurrentNavigation: function() { - return unmountLinkForCurrentNavigation; - }, - unmountPrefetchableInstance: function() { - return unmountPrefetchableInstance; - } -}); -const _types = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)"); -const _cachekey = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache-key.js [app-client] (ecmascript)"); -const _scheduler = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/scheduler.js [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -// Tracks the most recently navigated link instance. When null, indicates -// the current navigation was not initiated by a link click. -let linkForMostRecentNavigation = null; -const PENDING_LINK_STATUS = { - pending: true -}; -const IDLE_LINK_STATUS = { - pending: false -}; -function setLinkForCurrentNavigation(link) { - (0, _react.startTransition)(()=>{ - linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS); - link?.setOptimisticLinkStatus(PENDING_LINK_STATUS); - linkForMostRecentNavigation = link; - }); -} -function unmountLinkForCurrentNavigation(link) { - if (linkForMostRecentNavigation === link) { - linkForMostRecentNavigation = null; - } -} -// Use a WeakMap to associate a Link instance with its DOM element. This is -// used by the IntersectionObserver to track the link's visibility. -const prefetchable = typeof WeakMap === 'function' ? new WeakMap() : new Map(); -// A Set of the currently visible links. We re-prefetch visible links after a -// cache invalidation, or when the current URL changes. It's a separate data -// structure from the WeakMap above because only the visible links need to -// be enumerated. -const prefetchableAndVisible = new Set(); -// A single IntersectionObserver instance shared by all <Link> components. -const observer = typeof IntersectionObserver === 'function' ? new IntersectionObserver(handleIntersect, { - rootMargin: '200px' -}) : null; -function observeVisibility(element, instance) { - const existingInstance = prefetchable.get(element); - if (existingInstance !== undefined) { - // This shouldn't happen because each <Link> component should have its own - // anchor tag instance, but it's defensive coding to avoid a memory leak in - // case there's a logical error somewhere else. - unmountPrefetchableInstance(element); - } - // Only track prefetchable links that have a valid prefetch URL - prefetchable.set(element, instance); - if (observer !== null) { - observer.observe(element); - } -} -function coercePrefetchableUrl(href) { - if (typeof window !== 'undefined') { - const { createPrefetchURL } = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-utils.js [app-client] (ecmascript)"); - try { - return createPrefetchURL(href); - } catch { - // createPrefetchURL sometimes throws an error if an invalid URL is - // provided, though I'm not sure if it's actually necessary. - // TODO: Consider removing the throw from the inner function, or change it - // to reportError. Or maybe the error isn't even necessary for automatic - // prefetches, just navigations. - const reportErrorFn = typeof reportError === 'function' ? reportError : console.error; - reportErrorFn(`Cannot prefetch '${href}' because it cannot be converted to a URL.`); - return null; - } - } else { - return null; - } -} -function mountLinkInstance(element, href, router, fetchStrategy, prefetchEnabled, setOptimisticLinkStatus) { - if (prefetchEnabled) { - const prefetchURL = coercePrefetchableUrl(href); - if (prefetchURL !== null) { - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: prefetchURL.href, - setOptimisticLinkStatus - }; - // We only observe the link's visibility if it's prefetchable. For - // example, this excludes links to external URLs. - observeVisibility(element, instance); - return instance; - } - } - // If the link is not prefetchable, we still create an instance so we can - // track its optimistic state (i.e. useLinkStatus). - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: null, - setOptimisticLinkStatus - }; - return instance; -} -function mountFormInstance(element, href, router, fetchStrategy) { - const prefetchURL = coercePrefetchableUrl(href); - if (prefetchURL === null) { - // This href is not prefetchable, so we don't track it. - // TODO: We currently observe/unobserve a form every time its href changes. - // For Links, this isn't a big deal because the href doesn't usually change, - // but for forms it's extremely common. We should optimize this. - return; - } - const instance = { - router, - fetchStrategy, - isVisible: false, - prefetchTask: null, - prefetchHref: prefetchURL.href, - setOptimisticLinkStatus: null - }; - observeVisibility(element, instance); -} -function unmountPrefetchableInstance(element) { - const instance = prefetchable.get(element); - if (instance !== undefined) { - prefetchable.delete(element); - prefetchableAndVisible.delete(instance); - const prefetchTask = instance.prefetchTask; - if (prefetchTask !== null) { - (0, _scheduler.cancelPrefetchTask)(prefetchTask); - } - } - if (observer !== null) { - observer.unobserve(element); - } -} -function handleIntersect(entries) { - for (const entry of entries){ - // Some extremely old browsers or polyfills don't reliably support - // isIntersecting so we check intersectionRatio instead. (Do we care? Not - // really. But whatever this is fine.) - const isVisible = entry.intersectionRatio > 0; - onLinkVisibilityChanged(entry.target, isVisible); - } -} -function onLinkVisibilityChanged(element, isVisible) { - if ("TURBOPACK compile-time truthy", 1) { - // Prefetching on viewport is disabled in development for performance - // reasons, because it requires compiling the target page. - // TODO: Investigate re-enabling this. - return; - } - //TURBOPACK unreachable - ; - const instance = undefined; -} -function onNavigationIntent(element, unstable_upgradeToDynamicPrefetch) { - const instance = prefetchable.get(element); - if (instance === undefined) { - return; - } - // Prefetch the link on hover/touchstart. - if (instance !== undefined) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - rescheduleLinkPrefetch(instance, _types.PrefetchPriority.Intent); - } -} -function rescheduleLinkPrefetch(instance, priority) { - // Ensures that app-router-instance is not compiled in the server bundle - if (typeof window !== 'undefined') { - const existingPrefetchTask = instance.prefetchTask; - if (!instance.isVisible) { - // Cancel any in-progress prefetch task. (If it already finished then this - // is a no-op.) - if (existingPrefetchTask !== null) { - (0, _scheduler.cancelPrefetchTask)(existingPrefetchTask); - } - // We don't need to reset the prefetchTask to null upon cancellation; an - // old task object can be rescheduled with reschedulePrefetchTask. This is a - // micro-optimization but also makes the code simpler (don't need to - // worry about whether an old task object is stale). - return; - } - const { getCurrentAppRouterState } = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-instance.js [app-client] (ecmascript)"); - const appRouterState = getCurrentAppRouterState(); - if (appRouterState !== null) { - const treeAtTimeOfPrefetch = appRouterState.tree; - if (existingPrefetchTask === null) { - // Initiate a prefetch task. - const nextUrl = appRouterState.nextUrl; - const cacheKey = (0, _cachekey.createCacheKey)(instance.prefetchHref, nextUrl); - instance.prefetchTask = (0, _scheduler.schedulePrefetchTask)(cacheKey, treeAtTimeOfPrefetch, instance.fetchStrategy, priority, null); - } else { - // We already have an old task object that we can reschedule. This is - // effectively the same as canceling the old task and creating a new one. - (0, _scheduler.reschedulePrefetchTask)(existingPrefetchTask, treeAtTimeOfPrefetch, instance.fetchStrategy, priority); - } - } - } -} -function pingVisibleLinks(nextUrl, tree) { - // For each currently visible link, cancel the existing prefetch task (if it - // exists) and schedule a new one. This is effectively the same as if all the - // visible links left and then re-entered the viewport. - // - // This is called when the Next-Url or the base tree changes, since those - // may affect the result of a prefetch task. It's also called after a - // cache invalidation. - for (const instance of prefetchableAndVisible){ - const task = instance.prefetchTask; - if (task !== null && !(0, _scheduler.isPrefetchTaskDirty)(task, nextUrl, tree)) { - continue; - } - // Something changed. Cancel the existing prefetch task and schedule a - // new one. - if (task !== null) { - (0, _scheduler.cancelPrefetchTask)(task); - } - const cacheKey = (0, _cachekey.createCacheKey)(instance.prefetchHref, nextUrl); - instance.prefetchTask = (0, _scheduler.schedulePrefetchTask)(cacheKey, tree, instance.fetchStrategy, _types.PrefetchPriority.Default, null); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=links.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/cache.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - EntryStatus: null, - canNewFetchStrategyProvideMoreContent: null, - convertRouteTreeToFlightRouterState: null, - createDetachedSegmentCacheEntry: null, - fetchRouteOnCacheMiss: null, - fetchSegmentOnCacheMiss: null, - fetchSegmentPrefetchesUsingDynamicRequest: null, - getCurrentCacheVersion: null, - getStaleTimeMs: null, - overwriteRevalidatingSegmentCacheEntry: null, - pingInvalidationListeners: null, - readOrCreateRevalidatingSegmentEntry: null, - readOrCreateRouteCacheEntry: null, - readOrCreateSegmentCacheEntry: null, - readRouteCacheEntry: null, - readSegmentCacheEntry: null, - requestOptimisticRouteCacheEntry: null, - revalidateEntireCache: null, - upgradeToPendingSegment: null, - upsertSegmentEntry: null, - waitForSegmentCacheEntry: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - EntryStatus: function() { - return EntryStatus; - }, - canNewFetchStrategyProvideMoreContent: function() { - return canNewFetchStrategyProvideMoreContent; - }, - convertRouteTreeToFlightRouterState: function() { - return convertRouteTreeToFlightRouterState; - }, - createDetachedSegmentCacheEntry: function() { - return createDetachedSegmentCacheEntry; - }, - fetchRouteOnCacheMiss: function() { - return fetchRouteOnCacheMiss; - }, - fetchSegmentOnCacheMiss: function() { - return fetchSegmentOnCacheMiss; - }, - fetchSegmentPrefetchesUsingDynamicRequest: function() { - return fetchSegmentPrefetchesUsingDynamicRequest; - }, - getCurrentCacheVersion: function() { - return getCurrentCacheVersion; - }, - getStaleTimeMs: function() { - return getStaleTimeMs; - }, - overwriteRevalidatingSegmentCacheEntry: function() { - return overwriteRevalidatingSegmentCacheEntry; - }, - pingInvalidationListeners: function() { - return pingInvalidationListeners; - }, - readOrCreateRevalidatingSegmentEntry: function() { - return readOrCreateRevalidatingSegmentEntry; - }, - readOrCreateRouteCacheEntry: function() { - return readOrCreateRouteCacheEntry; - }, - readOrCreateSegmentCacheEntry: function() { - return readOrCreateSegmentCacheEntry; - }, - readRouteCacheEntry: function() { - return readRouteCacheEntry; - }, - readSegmentCacheEntry: function() { - return readSegmentCacheEntry; - }, - requestOptimisticRouteCacheEntry: function() { - return requestOptimisticRouteCacheEntry; - }, - revalidateEntireCache: function() { - return revalidateEntireCache; - }, - upgradeToPendingSegment: function() { - return upgradeToPendingSegment; - }, - upsertSegmentEntry: function() { - return upsertSegmentEntry; - }, - waitForSegmentCacheEntry: function() { - return waitForSegmentCacheEntry; - } -}); -const _approutertypes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-types.js [app-client] (ecmascript)"); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)"); -const _fetchserverresponse = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js [app-client] (ecmascript)"); -const _scheduler = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/scheduler.js [app-client] (ecmascript)"); -const _varypath = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/vary-path.js [app-client] (ecmascript)"); -const _appbuildid = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-build-id.js [app-client] (ecmascript)"); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _cachekey = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache-key.js [app-client] (ecmascript)"); -const _routeparams = __turbopack_context__.r("[project]/node_modules/next/dist/client/route-params.js [app-client] (ecmascript)"); -const _cachemap = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache-map.js [app-client] (ecmascript)"); -const _segmentvalueencoding = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js [app-client] (ecmascript)"); -const _flightdatahelpers = __turbopack_context__.r("[project]/node_modules/next/dist/client/flight-data-helpers.js [app-client] (ecmascript)"); -const _navigatereducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js [app-client] (ecmascript)"); -const _links = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/links.js [app-client] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const _types = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)"); -const _promisewithresolvers = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/promise-with-resolvers.js [app-client] (ecmascript)"); -function getStaleTimeMs(staleTimeSeconds) { - return Math.max(staleTimeSeconds, 30) * 1000; -} -var EntryStatus = /*#__PURE__*/ function(EntryStatus) { - EntryStatus[EntryStatus["Empty"] = 0] = "Empty"; - EntryStatus[EntryStatus["Pending"] = 1] = "Pending"; - EntryStatus[EntryStatus["Fulfilled"] = 2] = "Fulfilled"; - EntryStatus[EntryStatus["Rejected"] = 3] = "Rejected"; - return EntryStatus; -}({}); -const isOutputExportMode = ("TURBOPACK compile-time value", "development") === 'production' && ("TURBOPACK compile-time value", void 0) === 'export'; -const MetadataOnlyRequestTree = [ - '', - {}, - null, - 'metadata-only' -]; -let routeCacheMap = (0, _cachemap.createCacheMap)(); -let segmentCacheMap = (0, _cachemap.createCacheMap)(); -// All invalidation listeners for the whole cache are tracked in single set. -// Since we don't yet support tag or path-based invalidation, there's no point -// tracking them any more granularly than this. Once we add granular -// invalidation, that may change, though generally the model is to just notify -// the listeners and allow the caller to poll the prefetch cache with a new -// prefetch task if desired. -let invalidationListeners = null; -// Incrementing counter used to track cache invalidations. -let currentCacheVersion = 0; -function getCurrentCacheVersion() { - return currentCacheVersion; -} -function revalidateEntireCache(nextUrl, tree) { - // Increment the current cache version. This does not eagerly evict anything - // from the cache, but because all the entries are versioned, and we check - // the version when reading from the cache, this effectively causes all - // entries to be evicted lazily. We do it lazily because in the future, - // actions like revalidateTag or refresh will not evict the entire cache, - // but rather some subset of the entries. - currentCacheVersion++; - // Start a cooldown before re-prefetching to allow CDN cache propagation. - (0, _scheduler.startRevalidationCooldown)(); - // Prefetch all the currently visible links again, to re-fill the cache. - (0, _links.pingVisibleLinks)(nextUrl, tree); - // Similarly, notify all invalidation listeners (i.e. those passed to - // `router.prefetch(onInvalidate)`), so they can trigger a new prefetch - // if needed. - pingInvalidationListeners(nextUrl, tree); -} -function attachInvalidationListener(task) { - // This function is called whenever a prefetch task reads a cache entry. If - // the task has an onInvalidate function associated with it — i.e. the one - // optionally passed to router.prefetch(onInvalidate) — then we attach that - // listener to the every cache entry that the task reads. Then, if an entry - // is invalidated, we call the function. - if (task.onInvalidate !== null) { - if (invalidationListeners === null) { - invalidationListeners = new Set([ - task - ]); - } else { - invalidationListeners.add(task); - } - } -} -function notifyInvalidationListener(task) { - const onInvalidate = task.onInvalidate; - if (onInvalidate !== null) { - // Clear the callback from the task object to guarantee it's not called more - // than once. - task.onInvalidate = null; - // This is a user-space function, so we must wrap in try/catch. - try { - onInvalidate(); - } catch (error) { - if (typeof reportError === 'function') { - reportError(error); - } else { - console.error(error); - } - } - } -} -function pingInvalidationListeners(nextUrl, tree) { - // The rough equivalent of pingVisibleLinks, but for onInvalidate callbacks. - // This is called when the Next-Url or the base tree changes, since those - // may affect the result of a prefetch task. It's also called after a - // cache invalidation. - if (invalidationListeners !== null) { - const tasks = invalidationListeners; - invalidationListeners = null; - for (const task of tasks){ - if ((0, _scheduler.isPrefetchTaskDirty)(task, nextUrl, tree)) { - notifyInvalidationListener(task); - } - } - } -} -function readRouteCacheEntry(now, key) { - const varyPath = (0, _varypath.getRouteVaryPath)(key.pathname, key.search, key.nextUrl); - const isRevalidation = false; - return (0, _cachemap.getFromCacheMap)(now, getCurrentCacheVersion(), routeCacheMap, varyPath, isRevalidation); -} -function readSegmentCacheEntry(now, varyPath) { - const isRevalidation = false; - return (0, _cachemap.getFromCacheMap)(now, getCurrentCacheVersion(), segmentCacheMap, varyPath, isRevalidation); -} -function readRevalidatingSegmentCacheEntry(now, varyPath) { - const isRevalidation = true; - return (0, _cachemap.getFromCacheMap)(now, getCurrentCacheVersion(), segmentCacheMap, varyPath, isRevalidation); -} -function waitForSegmentCacheEntry(pendingEntry) { - // Because the entry is pending, there's already a in-progress request. - // Attach a promise to the entry that will resolve when the server responds. - let promiseWithResolvers = pendingEntry.promise; - if (promiseWithResolvers === null) { - promiseWithResolvers = pendingEntry.promise = (0, _promisewithresolvers.createPromiseWithResolvers)(); - } else { - // There's already a promise we can use - } - return promiseWithResolvers.promise; -} -function readOrCreateRouteCacheEntry(now, task, key) { - attachInvalidationListener(task); - const existingEntry = readRouteCacheEntry(now, key); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const pendingEntry = { - canonicalUrl: null, - status: 0, - blockedTasks: null, - tree: null, - metadata: null, - // This is initialized to true because we don't know yet whether the route - // could be intercepted. It's only set to false once we receive a response - // from the server. - couldBeIntercepted: true, - // Similarly, we don't yet know if the route supports PPR. - isPPREnabled: false, - renderedSearch: null, - // Map-related fields - ref: null, - size: 0, - // Since this is an empty entry, there's no reason to ever evict it. It will - // be updated when the data is populated. - staleAt: Infinity, - version: getCurrentCacheVersion() - }; - const varyPath = (0, _varypath.getRouteVaryPath)(key.pathname, key.search, key.nextUrl); - const isRevalidation = false; - (0, _cachemap.setInCacheMap)(routeCacheMap, varyPath, pendingEntry, isRevalidation); - return pendingEntry; -} -function requestOptimisticRouteCacheEntry(now, requestedUrl, nextUrl) { - // This function is called during a navigation when there was no matching - // route tree in the prefetch cache. Before de-opting to a blocking, - // unprefetched navigation, we will first attempt to construct an "optimistic" - // route tree by checking the cache for similar routes. - // - // Check if there's a route with the same pathname, but with different - // search params. We can then base our optimistic route tree on this entry. - // - // Conceptually, we are simulating what would happen if we did perform a - // prefetch the requested URL, under the assumption that the server will - // not redirect or rewrite the request in a different manner than the - // base route tree. This assumption might not hold, in which case we'll have - // to recover when we perform the dynamic navigation request. However, this - // is what would happen if a route were dynamically rewritten/redirected - // in between the prefetch and the navigation. So the logic needs to exist - // to handle this case regardless. - // Look for a route with the same pathname, but with an empty search string. - // TODO: There's nothing inherently special about the empty search string; - // it's chosen somewhat arbitrarily, with the rationale that it's the most - // likely one to exist. But we should update this to match _any_ search - // string. The plan is to generalize this logic alongside other improvements - // related to "fallback" cache entries. - const requestedSearch = requestedUrl.search; - if (requestedSearch === '') { - // The caller would have already checked if a route with an empty search - // string is in the cache. So we can bail out here. - return null; - } - const urlWithoutSearchParams = new URL(requestedUrl); - urlWithoutSearchParams.search = ''; - const routeWithNoSearchParams = readRouteCacheEntry(now, (0, _cachekey.createCacheKey)(urlWithoutSearchParams.href, nextUrl)); - if (routeWithNoSearchParams === null || routeWithNoSearchParams.status !== 2) { - // Bail out of constructing an optimistic route tree. This will result in - // a blocking, unprefetched navigation. - return null; - } - // Now we have a base route tree we can "patch" with our optimistic values. - // Optimistically assume that redirects for the requested pathname do - // not vary on the search string. Therefore, if the base route was - // redirected to a different search string, then the optimistic route - // should be redirected to the same search string. Otherwise, we use - // the requested search string. - const canonicalUrlForRouteWithNoSearchParams = new URL(routeWithNoSearchParams.canonicalUrl, requestedUrl.origin); - const optimisticCanonicalSearch = canonicalUrlForRouteWithNoSearchParams.search !== '' ? canonicalUrlForRouteWithNoSearchParams.search : requestedSearch; - // Similarly, optimistically assume that rewrites for the requested - // pathname do not vary on the search string. Therefore, if the base - // route was rewritten to a different search string, then the optimistic - // route should be rewritten to the same search string. Otherwise, we use - // the requested search string. - const optimisticRenderedSearch = routeWithNoSearchParams.renderedSearch !== '' ? routeWithNoSearchParams.renderedSearch : requestedSearch; - const optimisticUrl = new URL(routeWithNoSearchParams.canonicalUrl, location.origin); - optimisticUrl.search = optimisticCanonicalSearch; - const optimisticCanonicalUrl = (0, _createhreffromurl.createHrefFromUrl)(optimisticUrl); - const optimisticRouteTree = createOptimisticRouteTree(routeWithNoSearchParams.tree, optimisticRenderedSearch); - const optimisticMetadataTree = createOptimisticRouteTree(routeWithNoSearchParams.metadata, optimisticRenderedSearch); - // Clone the base route tree, and override the relevant fields with our - // optimistic values. - const optimisticEntry = { - canonicalUrl: optimisticCanonicalUrl, - status: 2, - // This isn't cloned because it's instance-specific - blockedTasks: null, - tree: optimisticRouteTree, - metadata: optimisticMetadataTree, - couldBeIntercepted: routeWithNoSearchParams.couldBeIntercepted, - isPPREnabled: routeWithNoSearchParams.isPPREnabled, - // Override the rendered search with the optimistic value. - renderedSearch: optimisticRenderedSearch, - // Map-related fields - ref: null, - size: 0, - staleAt: routeWithNoSearchParams.staleAt, - version: routeWithNoSearchParams.version - }; - // Do not insert this entry into the cache. It only exists so we can - // perform the current navigation. Just return it to the caller. - return optimisticEntry; -} -function createOptimisticRouteTree(tree, newRenderedSearch) { - // Create a new route tree that identical to the original one except for - // the rendered search string, which is contained in the vary path. - let clonedSlots = null; - const originalSlots = tree.slots; - if (originalSlots !== null) { - clonedSlots = {}; - for(const parallelRouteKey in originalSlots){ - const childTree = originalSlots[parallelRouteKey]; - clonedSlots[parallelRouteKey] = createOptimisticRouteTree(childTree, newRenderedSearch); - } - } - // We only need to clone the vary path if the route is a page. - if (tree.isPage) { - return { - requestKey: tree.requestKey, - segment: tree.segment, - varyPath: (0, _varypath.clonePageVaryPathWithNewSearchParams)(tree.varyPath, newRenderedSearch), - isPage: true, - slots: clonedSlots, - isRootLayout: tree.isRootLayout, - hasLoadingBoundary: tree.hasLoadingBoundary, - hasRuntimePrefetch: tree.hasRuntimePrefetch - }; - } - return { - requestKey: tree.requestKey, - segment: tree.segment, - varyPath: tree.varyPath, - isPage: false, - slots: clonedSlots, - isRootLayout: tree.isRootLayout, - hasLoadingBoundary: tree.hasLoadingBoundary, - hasRuntimePrefetch: tree.hasRuntimePrefetch - }; -} -function readOrCreateSegmentCacheEntry(now, fetchStrategy, route, tree) { - const existingEntry = readSegmentCacheEntry(now, tree.varyPath); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const varyPathForRequest = (0, _varypath.getSegmentVaryPathForRequest)(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = false; - (0, _cachemap.setInCacheMap)(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function readOrCreateRevalidatingSegmentEntry(now, fetchStrategy, route, tree) { - // This function is called when we've already confirmed that a particular - // segment is cached, but we want to perform another request anyway in case it - // returns more complete and/or fresher data than we already have. The logic - // for deciding whether to replace the existing entry is handled elsewhere; - // this function just handles retrieving a cache entry that we can use to - // track the revalidation. - // - // The reason revalidations are stored in the cache is because we need to be - // able to dedupe multiple revalidation requests. The reason they have to be - // handled specially is because we shouldn't overwrite a "normal" entry if - // one exists at the same keypath. So, for each internal cache location, there - // is a special "revalidation" slot that is used solely for this purpose. - // - // You can think of it as if all the revalidation entries were stored in a - // separate cache map from the canonical entries, and then transfered to the - // canonical cache map once the request is complete — this isn't how it's - // actually implemented, since it's more efficient to store them in the same - // data structure as the normal entries, but that's how it's modeled - // conceptually. - // TODO: Once we implement Fallback behavior for params, where an entry is - // re-keyed based on response information, we'll need to account for the - // possibility that the keypath of the previous entry is more generic than - // the keypath of the revalidating entry. In other words, the server could - // return a less generic entry upon revalidation. For now, though, this isn't - // a concern because the keypath is based solely on the prefetch strategy, - // not on data contained in the response. - const existingEntry = readRevalidatingSegmentCacheEntry(now, tree.varyPath); - if (existingEntry !== null) { - return existingEntry; - } - // Create a pending entry and add it to the cache. - const varyPathForRequest = (0, _varypath.getSegmentVaryPathForRequest)(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = true; - (0, _cachemap.setInCacheMap)(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function overwriteRevalidatingSegmentCacheEntry(fetchStrategy, route, tree) { - // This function is called when we've already decided to replace an existing - // revalidation entry. Create a new entry and write it into the cache, - // overwriting the previous value. - const varyPathForRequest = (0, _varypath.getSegmentVaryPathForRequest)(fetchStrategy, tree); - const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt); - const isRevalidation = true; - (0, _cachemap.setInCacheMap)(segmentCacheMap, varyPathForRequest, pendingEntry, isRevalidation); - return pendingEntry; -} -function upsertSegmentEntry(now, varyPath, candidateEntry) { - // We have a new entry that has not yet been inserted into the cache. Before - // we do so, we need to confirm whether it takes precedence over the existing - // entry (if one exists). - // TODO: We should not upsert an entry if its key was invalidated in the time - // since the request was made. We can do that by passing the "owner" entry to - // this function and confirming it's the same as `existingEntry`. - if ((0, _cachemap.isValueExpired)(now, getCurrentCacheVersion(), candidateEntry)) { - // The entry is expired. We cannot upsert it. - return null; - } - const existingEntry = readSegmentCacheEntry(now, varyPath); - if (existingEntry !== null) { - // Don't replace a more specific segment with a less-specific one. A case where this - // might happen is if the existing segment was fetched via - // `<Link prefetch={true}>`. - if (// than the segment we already have in the cache, so it can't have more content. - candidateEntry.fetchStrategy !== existingEntry.fetchStrategy && !canNewFetchStrategyProvideMoreContent(existingEntry.fetchStrategy, candidateEntry.fetchStrategy) || // The existing entry isn't partial, but the new one is. - // (TODO: can this be true if `candidateEntry.fetchStrategy >= existingEntry.fetchStrategy`?) - !existingEntry.isPartial && candidateEntry.isPartial) { - // We're going to leave revalidating entry in the cache so that it doesn't - // get revalidated again unnecessarily. Downgrade the Fulfilled entry to - // Rejected and null out the data so it can be garbage collected. We leave - // `staleAt` intact to prevent subsequent revalidation attempts only until - // the entry expires. - const rejectedEntry = candidateEntry; - rejectedEntry.status = 3; - rejectedEntry.loading = null; - rejectedEntry.rsc = null; - return null; - } - // Evict the existing entry from the cache. - (0, _cachemap.deleteFromCacheMap)(existingEntry); - } - const isRevalidation = false; - (0, _cachemap.setInCacheMap)(segmentCacheMap, varyPath, candidateEntry, isRevalidation); - return candidateEntry; -} -function createDetachedSegmentCacheEntry(staleAt) { - const emptyEntry = { - status: 0, - // Default to assuming the fetch strategy will be PPR. This will be updated - // when a fetch is actually initiated. - fetchStrategy: _types.FetchStrategy.PPR, - rsc: null, - loading: null, - isPartial: true, - promise: null, - // Map-related fields - ref: null, - size: 0, - staleAt, - version: 0 - }; - return emptyEntry; -} -function upgradeToPendingSegment(emptyEntry, fetchStrategy) { - const pendingEntry = emptyEntry; - pendingEntry.status = 1; - pendingEntry.fetchStrategy = fetchStrategy; - if (fetchStrategy === _types.FetchStrategy.Full) { - // We can assume the response will contain the full segment data. Set this - // to false so we know it's OK to omit this segment from any navigation - // requests that may happen while the data is still pending. - pendingEntry.isPartial = false; - } - // Set the version here, since this is right before the request is initiated. - // The next time the global cache version is incremented, the entry will - // effectively be evicted. This happens before initiating the request, rather - // than when receiving the response, because it's guaranteed to happen - // before the data is read on the server. - pendingEntry.version = getCurrentCacheVersion(); - return pendingEntry; -} -function pingBlockedTasks(entry) { - const blockedTasks = entry.blockedTasks; - if (blockedTasks !== null) { - for (const task of blockedTasks){ - (0, _scheduler.pingPrefetchTask)(task); - } - entry.blockedTasks = null; - } -} -function fulfillRouteCacheEntry(entry, tree, metadataVaryPath, staleAt, couldBeIntercepted, canonicalUrl, renderedSearch, isPPREnabled) { - // The Head is not actually part of the route tree, but other than that, it's - // fetched and cached like a segment. Some functions expect a RouteTree - // object, so rather than fork the logic in all those places, we use this - // "fake" one. - const metadata = { - requestKey: _segmentvalueencoding.HEAD_REQUEST_KEY, - segment: _segmentvalueencoding.HEAD_REQUEST_KEY, - varyPath: metadataVaryPath, - // The metadata isn't really a "page" (though it isn't really a "segment" - // either) but for the purposes of how this field is used, it behaves like - // one. If this logic ever gets more complex we can change this to an enum. - isPage: true, - slots: null, - isRootLayout: false, - hasLoadingBoundary: _approutertypes.HasLoadingBoundary.SubtreeHasNoLoadingBoundary, - hasRuntimePrefetch: false - }; - const fulfilledEntry = entry; - fulfilledEntry.status = 2; - fulfilledEntry.tree = tree; - fulfilledEntry.metadata = metadata; - fulfilledEntry.staleAt = staleAt; - fulfilledEntry.couldBeIntercepted = couldBeIntercepted; - fulfilledEntry.canonicalUrl = canonicalUrl; - fulfilledEntry.renderedSearch = renderedSearch; - fulfilledEntry.isPPREnabled = isPPREnabled; - pingBlockedTasks(entry); - return fulfilledEntry; -} -function fulfillSegmentCacheEntry(segmentCacheEntry, rsc, loading, staleAt, isPartial) { - const fulfilledEntry = segmentCacheEntry; - fulfilledEntry.status = 2; - fulfilledEntry.rsc = rsc; - fulfilledEntry.loading = loading; - fulfilledEntry.staleAt = staleAt; - fulfilledEntry.isPartial = isPartial; - // Resolve any listeners that were waiting for this data. - if (segmentCacheEntry.promise !== null) { - segmentCacheEntry.promise.resolve(fulfilledEntry); - // Free the promise for garbage collection. - fulfilledEntry.promise = null; - } - return fulfilledEntry; -} -function rejectRouteCacheEntry(entry, staleAt) { - const rejectedEntry = entry; - rejectedEntry.status = 3; - rejectedEntry.staleAt = staleAt; - pingBlockedTasks(entry); -} -function rejectSegmentCacheEntry(entry, staleAt) { - const rejectedEntry = entry; - rejectedEntry.status = 3; - rejectedEntry.staleAt = staleAt; - if (entry.promise !== null) { - // NOTE: We don't currently propagate the reason the prefetch was canceled - // but we could by accepting a `reason` argument. - entry.promise.resolve(null); - entry.promise = null; - } -} -function convertRootTreePrefetchToRouteTree(rootTree, renderedPathname, renderedSearch, acc) { - // Remove trailing and leading slashes - const pathnameParts = renderedPathname.split('/').filter((p)=>p !== ''); - const index = 0; - const rootSegment = _segmentvalueencoding.ROOT_SEGMENT_REQUEST_KEY; - return convertTreePrefetchToRouteTree(rootTree.tree, rootSegment, null, _segmentvalueencoding.ROOT_SEGMENT_REQUEST_KEY, pathnameParts, index, renderedSearch, acc); -} -function convertTreePrefetchToRouteTree(prefetch, segment, partialVaryPath, requestKey, pathnameParts, pathnamePartsIndex, renderedSearch, acc) { - // Converts the route tree sent by the server into the format used by the - // cache. The cached version of the tree includes additional fields, such as a - // cache key for each segment. Since this is frequently accessed, we compute - // it once instead of on every access. This same cache key is also used to - // request the segment from the server. - let slots = null; - let isPage; - let varyPath; - const prefetchSlots = prefetch.slots; - if (prefetchSlots !== null) { - isPage = false; - varyPath = (0, _varypath.finalizeLayoutVaryPath)(requestKey, partialVaryPath); - slots = {}; - for(let parallelRouteKey in prefetchSlots){ - const childPrefetch = prefetchSlots[parallelRouteKey]; - const childParamName = childPrefetch.name; - const childParamType = childPrefetch.paramType; - const childServerSentParamKey = childPrefetch.paramKey; - let childDoesAppearInURL; - let childSegment; - let childPartialVaryPath; - if (childParamType !== null) { - // This segment is parameterized. Get the param from the pathname. - const childParamValue = (0, _routeparams.parseDynamicParamFromURLPart)(childParamType, pathnameParts, pathnamePartsIndex); - // Assign a cache key to the segment, based on the param value. In the - // pre-Segment Cache implementation, the server computes this and sends - // it in the body of the response. In the Segment Cache implementation, - // the server sends an empty string and we fill it in here. - // TODO: We're intentionally not adding the search param to page - // segments here; it's tracked separately and added back during a read. - // This would clearer if we waited to construct the segment until it's - // read from the cache, since that's effectively what we're - // doing anyway. - const childParamKey = // cacheComponents is enabled. - childServerSentParamKey !== null ? childServerSentParamKey : (0, _routeparams.getCacheKeyForDynamicParam)(childParamValue, ''); - childPartialVaryPath = (0, _varypath.appendLayoutVaryPath)(partialVaryPath, childParamKey); - childSegment = [ - childParamName, - childParamKey, - childParamType - ]; - childDoesAppearInURL = true; - } else { - // This segment does not have a param. Inherit the partial vary path of - // the parent. - childPartialVaryPath = partialVaryPath; - childSegment = childParamName; - childDoesAppearInURL = (0, _routeparams.doesStaticSegmentAppearInURL)(childParamName); - } - // Only increment the index if the segment appears in the URL. If it's a - // "virtual" segment, like a route group, it remains the same. - const childPathnamePartsIndex = childDoesAppearInURL ? pathnamePartsIndex + 1 : pathnamePartsIndex; - const childRequestKeyPart = (0, _segmentvalueencoding.createSegmentRequestKeyPart)(childSegment); - const childRequestKey = (0, _segmentvalueencoding.appendSegmentRequestKeyPart)(requestKey, parallelRouteKey, childRequestKeyPart); - slots[parallelRouteKey] = convertTreePrefetchToRouteTree(childPrefetch, childSegment, childPartialVaryPath, childRequestKey, pathnameParts, childPathnamePartsIndex, renderedSearch, acc); - } - } else { - if (requestKey.endsWith(_segment.PAGE_SEGMENT_KEY)) { - // This is a page segment. - isPage = true; - varyPath = (0, _varypath.finalizePageVaryPath)(requestKey, renderedSearch, partialVaryPath); - // The metadata "segment" is not part the route tree, but it has the same - // conceptual params as a page segment. Write the vary path into the - // accumulator object. If there are multiple parallel pages, we use the - // first one. Which page we choose is arbitrary as long as it's - // consistently the same one every time every time. See - // finalizeMetadataVaryPath for more details. - if (acc.metadataVaryPath === null) { - acc.metadataVaryPath = (0, _varypath.finalizeMetadataVaryPath)(requestKey, renderedSearch, partialVaryPath); - } - } else { - // This is a layout segment. - isPage = false; - varyPath = (0, _varypath.finalizeLayoutVaryPath)(requestKey, partialVaryPath); - } - } - return { - requestKey, - segment, - varyPath, - // TODO: Cheating the type system here a bit because TypeScript can't tell - // that the type of isPage and varyPath are consistent. The fix would be to - // create separate constructors and call the appropriate one from each of - // the branches above. Just seems a bit overkill only for one field so I'll - // leave it as-is for now. If isPage were wrong it would break the behavior - // and we'd catch it quickly, anyway. - isPage: isPage, - slots, - isRootLayout: prefetch.isRootLayout, - // This field is only relevant to dynamic routes. For a PPR/static route, - // there's always some partial loading state we can fetch. - hasLoadingBoundary: _approutertypes.HasLoadingBoundary.SegmentHasLoadingBoundary, - hasRuntimePrefetch: prefetch.hasRuntimePrefetch - }; -} -function convertRootFlightRouterStateToRouteTree(flightRouterState, renderedSearch, acc) { - return convertFlightRouterStateToRouteTree(flightRouterState, _segmentvalueencoding.ROOT_SEGMENT_REQUEST_KEY, null, renderedSearch, acc); -} -function convertFlightRouterStateToRouteTree(flightRouterState, requestKey, parentPartialVaryPath, renderedSearch, acc) { - const originalSegment = flightRouterState[0]; - let segment; - let partialVaryPath; - let isPage; - let varyPath; - if (Array.isArray(originalSegment)) { - isPage = false; - const paramCacheKey = originalSegment[1]; - partialVaryPath = (0, _varypath.appendLayoutVaryPath)(parentPartialVaryPath, paramCacheKey); - varyPath = (0, _varypath.finalizeLayoutVaryPath)(requestKey, partialVaryPath); - segment = originalSegment; - } else { - // This segment does not have a param. Inherit the partial vary path of - // the parent. - partialVaryPath = parentPartialVaryPath; - if (requestKey.endsWith(_segment.PAGE_SEGMENT_KEY)) { - // This is a page segment. - isPage = true; - // The navigation implementation expects the search params to be included - // in the segment. However, in the case of a static response, the search - // params are omitted. So the client needs to add them back in when reading - // from the Segment Cache. - // - // For consistency, we'll do this for dynamic responses, too. - // - // TODO: We should move search params out of FlightRouterState and handle - // them entirely on the client, similar to our plan for dynamic params. - segment = _segment.PAGE_SEGMENT_KEY; - varyPath = (0, _varypath.finalizePageVaryPath)(requestKey, renderedSearch, partialVaryPath); - // The metadata "segment" is not part the route tree, but it has the same - // conceptual params as a page segment. Write the vary path into the - // accumulator object. If there are multiple parallel pages, we use the - // first one. Which page we choose is arbitrary as long as it's - // consistently the same one every time every time. See - // finalizeMetadataVaryPath for more details. - if (acc.metadataVaryPath === null) { - acc.metadataVaryPath = (0, _varypath.finalizeMetadataVaryPath)(requestKey, renderedSearch, partialVaryPath); - } - } else { - // This is a layout segment. - isPage = false; - segment = originalSegment; - varyPath = (0, _varypath.finalizeLayoutVaryPath)(requestKey, partialVaryPath); - } - } - let slots = null; - const parallelRoutes = flightRouterState[1]; - for(let parallelRouteKey in parallelRoutes){ - const childRouterState = parallelRoutes[parallelRouteKey]; - const childSegment = childRouterState[0]; - // TODO: Eventually, the param values will not be included in the response - // from the server. We'll instead fill them in on the client by parsing - // the URL. This is where we'll do that. - const childRequestKeyPart = (0, _segmentvalueencoding.createSegmentRequestKeyPart)(childSegment); - const childRequestKey = (0, _segmentvalueencoding.appendSegmentRequestKeyPart)(requestKey, parallelRouteKey, childRequestKeyPart); - const childTree = convertFlightRouterStateToRouteTree(childRouterState, childRequestKey, partialVaryPath, renderedSearch, acc); - if (slots === null) { - slots = { - [parallelRouteKey]: childTree - }; - } else { - slots[parallelRouteKey] = childTree; - } - } - return { - requestKey, - segment, - varyPath, - // TODO: Cheating the type system here a bit because TypeScript can't tell - // that the type of isPage and varyPath are consistent. The fix would be to - // create separate constructors and call the appropriate one from each of - // the branches above. Just seems a bit overkill only for one field so I'll - // leave it as-is for now. If isPage were wrong it would break the behavior - // and we'd catch it quickly, anyway. - isPage: isPage, - slots, - isRootLayout: flightRouterState[4] === true, - hasLoadingBoundary: flightRouterState[5] !== undefined ? flightRouterState[5] : _approutertypes.HasLoadingBoundary.SubtreeHasNoLoadingBoundary, - // Non-static tree responses are only used by apps that haven't adopted - // Cache Components. So this is always false. - hasRuntimePrefetch: false - }; -} -function convertRouteTreeToFlightRouterState(routeTree) { - const parallelRoutes = {}; - if (routeTree.slots !== null) { - for(const parallelRouteKey in routeTree.slots){ - parallelRoutes[parallelRouteKey] = convertRouteTreeToFlightRouterState(routeTree.slots[parallelRouteKey]); - } - } - const flightRouterState = [ - routeTree.segment, - parallelRoutes, - null, - null, - routeTree.isRootLayout - ]; - return flightRouterState; -} -async function fetchRouteOnCacheMiss(entry, task, key) { - // This function is allowed to use async/await because it contains the actual - // fetch that gets issued on a cache miss. Notice it writes the result to the - // cache entry directly, rather than return data that is then written by - // the caller. - const pathname = key.pathname; - const search = key.search; - const nextUrl = key.nextUrl; - const segmentPath = '/_tree'; - const headers = { - [_approuterheaders.RSC_HEADER]: '1', - [_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER]: '1', - [_approuterheaders.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: segmentPath - }; - if (nextUrl !== null) { - headers[_approuterheaders.NEXT_URL] = nextUrl; - } - try { - const url = new URL(pathname + search, location.origin); - let response; - let urlAfterRedirects; - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - // "Server" mode. We can use request headers instead of the pathname. - // TODO: The eventual plan is to get rid of our custom request headers and - // encode everything into the URL, using a similar strategy to the - // "output: export" block above. - response = await fetchPrefetchResponse(url, headers); - urlAfterRedirects = response !== null && response.redirected ? new URL(response.url) : url; - } - if (!response || !response.ok || // 204 is a Cache miss. Though theoretically this shouldn't happen when - // PPR is enabled, because we always respond to route tree requests, even - // if it needs to be blockingly generated on demand. - response.status === 204 || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - // TODO: The canonical URL is the href without the origin. I think - // historically the reason for this is because the initial canonical URL - // gets passed as a prop to the top-level React component, which means it - // needs to be computed during SSR. If it were to include the origin, it - // would need to always be same as location.origin on the client, to prevent - // a hydration mismatch. To sidestep this complexity, we omit the origin. - // - // However, since this is neither a native URL object nor a fully qualified - // URL string, we need to be careful about how we use it. To prevent subtle - // mistakes, we should create a special type for it, instead of just string. - // Or, we should just use a (readonly) URL object instead. The type of the - // prop that we pass to seed the initial state does not need to be the same - // type as the state itself. - const canonicalUrl = (0, _createhreffromurl.createHrefFromUrl)(urlAfterRedirects); - // Check whether the response varies based on the Next-Url header. - const varyHeader = response.headers.get('vary'); - const couldBeIntercepted = varyHeader !== null && varyHeader.includes(_approuterheaders.NEXT_URL); - // Track when the network connection closes. - const closed = (0, _promisewithresolvers.createPromiseWithResolvers)(); - // This checks whether the response was served from the per-segment cache, - // rather than the old prefetching flow. If it fails, it implies that PPR - // is disabled on this route. - const routeIsPPREnabled = response.headers.get(_approuterheaders.NEXT_DID_POSTPONE_HEADER) === '2' || // In output: "export" mode, we can't rely on response headers. But if we - // receive a well-formed response, we can assume it's a static response, - // because all data is static in this mode. - isOutputExportMode; - if (routeIsPPREnabled) { - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, _cachemap.setSizeInCacheMap)(entry, size); - }); - const serverData = await (0, _fetchserverresponse.createFromNextReadableStream)(prefetchStream, headers); - if (serverData.buildId !== (0, _appbuildid.getAppBuildId)()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - // TODO: We should cache the fact that this is an MPA navigation. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - // Get the params that were used to render the target page. These may - // be different from the params in the request URL, if the page - // was rewritten. - const renderedPathname = (0, _routeparams.getRenderedPathname)(response); - const renderedSearch = (0, _routeparams.getRenderedSearch)(response); - // Convert the server-sent data into the RouteTree format used by the - // client cache. - // - // During this traversal, we accumulate additional data into this - // "accumulator" object. - const acc = { - metadataVaryPath: null - }; - const routeTree = convertRootTreePrefetchToRouteTree(serverData, renderedPathname, renderedSearch, acc); - const metadataVaryPath = acc.metadataVaryPath; - if (metadataVaryPath === null) { - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - const staleTimeMs = getStaleTimeMs(serverData.staleTime); - fulfillRouteCacheEntry(entry, routeTree, metadataVaryPath, Date.now() + staleTimeMs, couldBeIntercepted, canonicalUrl, renderedSearch, routeIsPPREnabled); - } else { - // PPR is not enabled for this route. The server responds with a - // different format (FlightRouterState) that we need to convert. - // TODO: We will unify the responses eventually. I'm keeping the types - // separate for now because FlightRouterState has so many - // overloaded concerns. - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, _cachemap.setSizeInCacheMap)(entry, size); - }); - const serverData = await (0, _fetchserverresponse.createFromNextReadableStream)(prefetchStream, headers); - if (serverData.b !== (0, _appbuildid.getAppBuildId)()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - // TODO: We should cache the fact that this is an MPA navigation. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } - writeDynamicTreeResponseIntoCache(Date.now(), task, // using the LoadingBoundary fetch strategy, so mark their cache entries accordingly. - _types.FetchStrategy.LoadingBoundary, response, serverData, entry, couldBeIntercepted, canonicalUrl, routeIsPPREnabled); - } - if (!couldBeIntercepted) { - // This route will never be intercepted. So we can use this entry for all - // requests to this route, regardless of the Next-Url header. This works - // because when reading the cache we always check for a valid - // non-intercepted entry first. - // Re-key the entry. The `set` implementation handles removing it from - // its previous position in the cache. We don't need to do anything to - // update the LRU, because the entry is already in it. - // TODO: Treat this as an upsert — should check if an entry already - // exists at the new keypath, and if so, whether we should keep that - // one instead. - const fulfilledVaryPath = (0, _varypath.getFulfilledRouteVaryPath)(pathname, search, nextUrl, couldBeIntercepted); - const isRevalidation = false; - (0, _cachemap.setInCacheMap)(routeCacheMap, fulfilledVaryPath, entry, isRevalidation); - } - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - return { - value: null, - closed: closed.promise - }; - } catch (error) { - // Either the connection itself failed, or something bad happened while - // decoding the response. - rejectRouteCacheEntry(entry, Date.now() + 10 * 1000); - return null; - } -} -async function fetchSegmentOnCacheMiss(route, segmentCacheEntry, routeKey, tree) { - // This function is allowed to use async/await because it contains the actual - // fetch that gets issued on a cache miss. Notice it writes the result to the - // cache entry directly, rather than return data that is then written by - // the caller. - // - // Segment fetches are non-blocking so we don't need to ping the scheduler - // on completion. - // Use the canonical URL to request the segment, not the original URL. These - // are usually the same, but the canonical URL will be different if the route - // tree response was redirected. To avoid an extra waterfall on every segment - // request, we pass the redirected URL instead of the original one. - const url = new URL(route.canonicalUrl, location.origin); - const nextUrl = routeKey.nextUrl; - const requestKey = tree.requestKey; - const normalizedRequestKey = requestKey === _segmentvalueencoding.ROOT_SEGMENT_REQUEST_KEY ? // `_index` instead of as an empty string. This should be treated as - // an implementation detail and not as a stable part of the protocol. - // It just needs to match the equivalent logic that happens when - // prerendering the responses. It should not leak outside of Next.js. - '/_index' : requestKey; - const headers = { - [_approuterheaders.RSC_HEADER]: '1', - [_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER]: '1', - [_approuterheaders.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: normalizedRequestKey - }; - if (nextUrl !== null) { - headers[_approuterheaders.NEXT_URL] = nextUrl; - } - const requestUrl = ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : url; - try { - const response = await fetchPrefetchResponse(requestUrl, headers); - if (!response || !response.ok || response.status === 204 || // Cache miss - // This checks whether the response was served from the per-segment cache, - // rather than the old prefetching flow. If it fails, it implies that PPR - // is disabled on this route. Theoretically this should never happen - // because we only issue requests for segments once we've verified that - // the route supports PPR. - response.headers.get(_approuterheaders.NEXT_DID_POSTPONE_HEADER) !== '2' && // In output: "export" mode, we can't rely on response headers. But if - // we receive a well-formed response, we can assume it's a static - // response, because all data is static in this mode. - !isOutputExportMode || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } - // Track when the network connection closes. - const closed = (0, _promisewithresolvers.createPromiseWithResolvers)(); - // Wrap the original stream in a new stream that never closes. That way the - // Flight client doesn't error if there's a hanging promise. - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(size) { - (0, _cachemap.setSizeInCacheMap)(segmentCacheEntry, size); - }); - const serverData = await (0, _fetchserverresponse.createFromNextReadableStream)(prefetchStream, headers); - if (serverData.buildId !== (0, _appbuildid.getAppBuildId)()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } - return { - value: fulfillSegmentCacheEntry(segmentCacheEntry, serverData.rsc, serverData.loading, // So we use the stale time of the route. - route.staleAt, serverData.isPartial), - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - closed: closed.promise - }; - } catch (error) { - // Either the connection itself failed, or something bad happened while - // decoding the response. - rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000); - return null; - } -} -async function fetchSegmentPrefetchesUsingDynamicRequest(task, route, fetchStrategy, dynamicRequestTree, spawnedEntries) { - const key = task.key; - const url = new URL(route.canonicalUrl, location.origin); - const nextUrl = key.nextUrl; - if (spawnedEntries.size === 1 && spawnedEntries.has(route.metadata.requestKey)) { - // The only thing pending is the head. Instruct the server to - // skip over everything else. - dynamicRequestTree = MetadataOnlyRequestTree; - } - const headers = { - [_approuterheaders.RSC_HEADER]: '1', - [_approuterheaders.NEXT_ROUTER_STATE_TREE_HEADER]: (0, _flightdatahelpers.prepareFlightRouterStateForRequest)(dynamicRequestTree) - }; - if (nextUrl !== null) { - headers[_approuterheaders.NEXT_URL] = nextUrl; - } - switch(fetchStrategy){ - case _types.FetchStrategy.Full: - { - break; - } - case _types.FetchStrategy.PPRRuntime: - { - headers[_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER] = '2'; - break; - } - case _types.FetchStrategy.LoadingBoundary: - { - headers[_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER] = '1'; - break; - } - default: - { - fetchStrategy; - } - } - try { - const response = await fetchPrefetchResponse(url, headers); - if (!response || !response.ok || !response.body) { - // Server responded with an error, or with a miss. We should still cache - // the response, but we can try again after 10 seconds. - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } - const renderedSearch = (0, _routeparams.getRenderedSearch)(response); - if (renderedSearch !== route.renderedSearch) { - // The search params that were used to render the target page are - // different from the search params in the request URL. This only happens - // when there's a dynamic rewrite in between the tree prefetch and the - // data prefetch. - // TODO: For now, since this is an edge case, we reject the prefetch, but - // the proper way to handle this is to evict the stale route tree entry - // then fill the cache with the new response. - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } - // Track when the network connection closes. - const closed = (0, _promisewithresolvers.createPromiseWithResolvers)(); - let fulfilledEntries = null; - const prefetchStream = createPrefetchResponseStream(response.body, closed.resolve, function onResponseSizeUpdate(totalBytesReceivedSoFar) { - // When processing a dynamic response, we don't know how large each - // individual segment is, so approximate by assiging each segment - // the average of the total response size. - if (fulfilledEntries === null) { - // Haven't received enough data yet to know which segments - // were included. - return; - } - const averageSize = totalBytesReceivedSoFar / fulfilledEntries.length; - for (const entry of fulfilledEntries){ - (0, _cachemap.setSizeInCacheMap)(entry, averageSize); - } - }); - const serverData = await (0, _fetchserverresponse.createFromNextReadableStream)(prefetchStream, headers); - const isResponsePartial = fetchStrategy === _types.FetchStrategy.PPRRuntime ? serverData.rp?.[0] === true : false; - // Aside from writing the data into the cache, this function also returns - // the entries that were fulfilled, so we can streamingly update their sizes - // in the LRU as more data comes in. - fulfilledEntries = writeDynamicRenderResponseIntoCache(Date.now(), task, fetchStrategy, response, serverData, isResponsePartial, route, spawnedEntries); - // Return a promise that resolves when the network connection closes, so - // the scheduler can track the number of concurrent network connections. - return { - value: null, - closed: closed.promise - }; - } catch (error) { - rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000); - return null; - } -} -function writeDynamicTreeResponseIntoCache(now, task, fetchStrategy, response, serverData, entry, couldBeIntercepted, canonicalUrl, routeIsPPREnabled) { - // Get the URL that was used to render the target page. This may be different - // from the URL in the request URL, if the page was rewritten. - const renderedSearch = (0, _routeparams.getRenderedSearch)(response); - const normalizedFlightDataResult = (0, _flightdatahelpers.normalizeFlightData)(serverData.f); - if (// MPA navigation. - typeof normalizedFlightDataResult === 'string' || normalizedFlightDataResult.length !== 1) { - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const flightData = normalizedFlightDataResult[0]; - if (!flightData.isRootRender) { - // Unexpected response format. - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const flightRouterState = flightData.tree; - // For runtime prefetches, stale time is in the payload at rp[1]. - // For other responses, fall back to the header. - const staleTimeSeconds = typeof serverData.rp?.[1] === 'number' ? serverData.rp[1] : parseInt(response.headers.get(_approuterheaders.NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10); - const staleTimeMs = !isNaN(staleTimeSeconds) ? getStaleTimeMs(staleTimeSeconds) : _navigatereducer.STATIC_STALETIME_MS; - // If the response contains dynamic holes, then we must conservatively assume - // that any individual segment might contain dynamic holes, and also the - // head. If it did not contain dynamic holes, then we can assume every segment - // and the head is completely static. - const isResponsePartial = response.headers.get(_approuterheaders.NEXT_DID_POSTPONE_HEADER) === '1'; - // Convert the server-sent data into the RouteTree format used by the - // client cache. - // - // During this traversal, we accumulate additional data into this - // "accumulator" object. - const acc = { - metadataVaryPath: null - }; - const routeTree = convertRootFlightRouterStateToRouteTree(flightRouterState, renderedSearch, acc); - const metadataVaryPath = acc.metadataVaryPath; - if (metadataVaryPath === null) { - rejectRouteCacheEntry(entry, now + 10 * 1000); - return; - } - const fulfilledEntry = fulfillRouteCacheEntry(entry, routeTree, metadataVaryPath, now + staleTimeMs, couldBeIntercepted, canonicalUrl, renderedSearch, routeIsPPREnabled); - // If the server sent segment data as part of the response, we should write - // it into the cache to prevent a second, redundant prefetch request. - // - // TODO: When `clientSegmentCache` is enabled, the server does not include - // segment data when responding to a route tree prefetch request. However, - // when `clientSegmentCache` is set to "client-only", and PPR is enabled (or - // the page is fully static), the normal check is bypassed and the server - // responds with the full page. This is a temporary situation until we can - // remove the "client-only" option. Then, we can delete this function call. - writeDynamicRenderResponseIntoCache(now, task, fetchStrategy, response, serverData, isResponsePartial, fulfilledEntry, null); -} -function rejectSegmentEntriesIfStillPending(entries, staleAt) { - const fulfilledEntries = []; - for (const entry of entries.values()){ - if (entry.status === 1) { - rejectSegmentCacheEntry(entry, staleAt); - } else if (entry.status === 2) { - fulfilledEntries.push(entry); - } - } - return fulfilledEntries; -} -function writeDynamicRenderResponseIntoCache(now, task, fetchStrategy, response, serverData, isResponsePartial, route, spawnedEntries) { - if (serverData.b !== (0, _appbuildid.getAppBuildId)()) { - // The server build does not match the client. Treat as a 404. During - // an actual navigation, the router will trigger an MPA navigation. - // TODO: Consider moving the build ID to a response header so we can check - // it before decoding the response, and so there's one way of checking - // across all response types. - if (spawnedEntries !== null) { - rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - } - return null; - } - const flightDatas = (0, _flightdatahelpers.normalizeFlightData)(serverData.f); - if (typeof flightDatas === 'string') { - // This means navigating to this route will result in an MPA navigation. - // TODO: We should cache this, too, so that the MPA navigation is immediate. - return null; - } - // For runtime prefetches, stale time is in the payload at rp[1]. - // For other responses, fall back to the header. - const staleTimeSeconds = typeof serverData.rp?.[1] === 'number' ? serverData.rp[1] : parseInt(response.headers.get(_approuterheaders.NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10); - const staleTimeMs = !isNaN(staleTimeSeconds) ? getStaleTimeMs(staleTimeSeconds) : _navigatereducer.STATIC_STALETIME_MS; - const staleAt = now + staleTimeMs; - for (const flightData of flightDatas){ - const seedData = flightData.seedData; - if (seedData !== null) { - // The data sent by the server represents only a subtree of the app. We - // need to find the part of the task tree that matches the response. - // - // segmentPath represents the parent path of subtree. It's a repeating - // pattern of parallel route key and segment: - // - // [string, Segment, string, Segment, string, Segment, ...] - const segmentPath = flightData.segmentPath; - let tree = route.tree; - for(let i = 0; i < segmentPath.length; i += 2){ - const parallelRouteKey = segmentPath[i]; - if (tree?.slots?.[parallelRouteKey] !== undefined) { - tree = tree.slots[parallelRouteKey]; - } else { - if (spawnedEntries !== null) { - rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - } - return null; - } - } - writeSeedDataIntoCache(now, task, fetchStrategy, route, tree, staleAt, seedData, isResponsePartial, spawnedEntries); - } - const head = flightData.head; - if (head !== null) { - fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, head, null, flightData.isHeadPartial, staleAt, route.metadata, spawnedEntries); - } - } - // Any entry that's still pending was intentionally not rendered by the - // server, because it was inside the loading boundary. Mark them as rejected - // so we know not to fetch them again. - // TODO: If PPR is enabled on some routes but not others, then it's possible - // that a different page is able to do a per-segment prefetch of one of the - // segments we're marking as rejected here. We should mark on the segment - // somehow that the reason for the rejection is because of a non-PPR prefetch. - // That way a per-segment prefetch knows to disregard the rejection. - if (spawnedEntries !== null) { - const fulfilledEntries = rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000); - return fulfilledEntries; - } - return null; -} -function writeSeedDataIntoCache(now, task, fetchStrategy, route, tree, staleAt, seedData, isResponsePartial, entriesOwnedByCurrentTask) { - // This function is used to write the result of a runtime server request - // (CacheNodeSeedData) into the prefetch cache. - const rsc = seedData[0]; - const loading = seedData[2]; - const isPartial = rsc === null || isResponsePartial; - fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, rsc, loading, isPartial, staleAt, tree, entriesOwnedByCurrentTask); - // Recursively write the child data into the cache. - const slots = tree.slots; - if (slots !== null) { - const seedDataChildren = seedData[1]; - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - const childSeedData = seedDataChildren[parallelRouteKey]; - if (childSeedData !== null && childSeedData !== undefined) { - writeSeedDataIntoCache(now, task, fetchStrategy, route, childTree, staleAt, childSeedData, isResponsePartial, entriesOwnedByCurrentTask); - } - } - } -} -function fulfillEntrySpawnedByRuntimePrefetch(now, fetchStrategy, route, rsc, loading, isPartial, staleAt, tree, entriesOwnedByCurrentTask) { - // We should only write into cache entries that are owned by us. Or create - // a new one and write into that. We must never write over an entry that was - // created by a different task, because that causes data races. - const ownedEntry = entriesOwnedByCurrentTask !== null ? entriesOwnedByCurrentTask.get(tree.requestKey) : undefined; - if (ownedEntry !== undefined) { - fulfillSegmentCacheEntry(ownedEntry, rsc, loading, staleAt, isPartial); - } else { - // There's no matching entry. Attempt to create a new one. - const possiblyNewEntry = readOrCreateSegmentCacheEntry(now, fetchStrategy, route, tree); - if (possiblyNewEntry.status === 0) { - // Confirmed this is a new entry. We can fulfill it. - const newEntry = possiblyNewEntry; - fulfillSegmentCacheEntry(upgradeToPendingSegment(newEntry, fetchStrategy), rsc, loading, staleAt, isPartial); - } else { - // There was already an entry in the cache. But we may be able to - // replace it with the new one from the server. - const newEntry = fulfillSegmentCacheEntry(upgradeToPendingSegment(createDetachedSegmentCacheEntry(staleAt), fetchStrategy), rsc, loading, staleAt, isPartial); - upsertSegmentEntry(now, (0, _varypath.getSegmentVaryPathForRequest)(fetchStrategy, tree), newEntry); - } - } -} -async function fetchPrefetchResponse(url, headers) { - const fetchPriority = 'low'; - // When issuing a prefetch request, don't immediately decode the response; we - // use the lower level `createFromResponse` API instead because we need to do - // some extra processing of the response stream. See - // `createPrefetchResponseStream` for more details. - const shouldImmediatelyDecode = false; - const response = await (0, _fetchserverresponse.createFetch)(url, headers, fetchPriority, shouldImmediatelyDecode); - if (!response.ok) { - return null; - } - // Check the content type - if ("TURBOPACK compile-time falsy", 0) { - // In output: "export" mode, we relaxed about the content type, since it's - // not Next.js that's serving the response. If the status is OK, assume the - // response is valid. If it's not a valid response, the Flight client won't - // be able to decode it, and we'll treat it as a miss. - } else { - const contentType = response.headers.get('content-type'); - const isFlightResponse = contentType && contentType.startsWith(_approuterheaders.RSC_CONTENT_TYPE_HEADER); - if (!isFlightResponse) { - return null; - } - } - return response; -} -function createPrefetchResponseStream(originalFlightStream, onStreamClose, onResponseSizeUpdate) { - // When PPR is enabled, prefetch streams may contain references that never - // resolve, because that's how we encode dynamic data access. In the decoded - // object returned by the Flight client, these are reified into hanging - // promises that suspend during render, which is effectively what we want. - // The UI resolves when it switches to the dynamic data stream - // (via useDeferredValue(dynamic, static)). - // - // However, the Flight implementation currently errors if the server closes - // the response before all the references are resolved. As a cheat to work - // around this, we wrap the original stream in a new stream that never closes, - // and therefore doesn't error. - // - // While processing the original stream, we also incrementally update the size - // of the cache entry in the LRU. - let totalByteLength = 0; - const reader = originalFlightStream.getReader(); - return new ReadableStream({ - async pull (controller) { - while(true){ - const { done, value } = await reader.read(); - if (!done) { - // Pass to the target stream and keep consuming the Flight response - // from the server. - controller.enqueue(value); - // Incrementally update the size of the cache entry in the LRU. - // NOTE: Since prefetch responses are delivered in a single chunk, - // it's not really necessary to do this streamingly, but I'm doing it - // anyway in case this changes in the future. - totalByteLength += value.byteLength; - onResponseSizeUpdate(totalByteLength); - continue; - } - // The server stream has closed. Exit, but intentionally do not close - // the target stream. We do notify the caller, though. - onStreamClose(); - return; - } - } - }); -} -function addSegmentPathToUrlInOutputExportMode(url, segmentPath) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return url; -} -function canNewFetchStrategyProvideMoreContent(currentStrategy, newStrategy) { - return currentStrategy < newStrategy; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=cache.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/navigation.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - convertServerPatchToFullTree: null, - navigate: null, - navigateToSeededRoute: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - convertServerPatchToFullTree: function() { - return convertServerPatchToFullTree; - }, - navigate: function() { - return navigate; - }, - navigateToSeededRoute: function() { - return navigateToSeededRoute; - } -}); -const _fetchserverresponse = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _cache = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache.js [app-client] (ecmascript)"); -const _cachekey = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache-key.js [app-client] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const _types = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)"); -function navigate(url, currentUrl, currentCacheNode, currentFlightRouterState, nextUrl, freshnessPolicy, shouldScroll, accumulation) { - const now = Date.now(); - const href = url.href; - // We special case navigations to the exact same URL as the current location. - // It's a common UI pattern for apps to refresh when you click a link to the - // current page. So when this happens, we refresh the dynamic data in the page - // segments. - // - // Note that this does not apply if the any part of the hash or search query - // has changed. This might feel a bit weird but it makes more sense when you - // consider that the way to trigger this behavior is to click the same link - // multiple times. - // - // TODO: We should probably refresh the *entire* route when this case occurs, - // not just the page segments. Essentially treating it the same as a refresh() - // triggered by an action, which is the more explicit way of modeling the UI - // pattern described above. - // - // Also note that this only refreshes the dynamic data, not static/ cached - // data. If the page segment is fully static and prefetched, the request is - // skipped. (This is also how refresh() works.) - const isSamePageNavigation = href === currentUrl.href; - const cacheKey = (0, _cachekey.createCacheKey)(href, nextUrl); - const route = (0, _cache.readRouteCacheEntry)(now, cacheKey); - if (route !== null && route.status === _cache.EntryStatus.Fulfilled) { - // We have a matching prefetch. - const snapshot = readRenderSnapshotFromCache(now, route, route.tree); - const prefetchFlightRouterState = snapshot.flightRouterState; - const prefetchSeedData = snapshot.seedData; - const headSnapshot = readHeadSnapshotFromCache(now, route); - const prefetchHead = headSnapshot.rsc; - const isPrefetchHeadPartial = headSnapshot.isPartial; - // TODO: The "canonicalUrl" stored in the cache doesn't include the hash, - // because hash entries do not vary by hash fragment. However, the one - // we set in the router state *does* include the hash, and it's used to - // sync with the actual browser location. To make this less of a refactor - // hazard, we should always track the hash separately from the rest of - // the URL. - const newCanonicalUrl = route.canonicalUrl + url.hash; - const renderedSearch = route.renderedSearch; - return navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, newCanonicalUrl, renderedSearch, freshnessPolicy, shouldScroll); - } - // There was no matching route tree in the cache. Let's see if we can - // construct an "optimistic" route tree. - // - // Do not construct an optimistic route tree if there was a cache hit, but - // the entry has a rejected status, since it may have been rejected due to a - // rewrite or redirect based on the search params. - // - // TODO: There are multiple reasons a prefetch might be rejected; we should - // track them explicitly and choose what to do here based on that. - if (route === null || route.status !== _cache.EntryStatus.Rejected) { - const optimisticRoute = (0, _cache.requestOptimisticRouteCacheEntry)(now, url, nextUrl); - if (optimisticRoute !== null) { - // We have an optimistic route tree. Proceed with the normal flow. - const snapshot = readRenderSnapshotFromCache(now, optimisticRoute, optimisticRoute.tree); - const prefetchFlightRouterState = snapshot.flightRouterState; - const prefetchSeedData = snapshot.seedData; - const headSnapshot = readHeadSnapshotFromCache(now, optimisticRoute); - const prefetchHead = headSnapshot.rsc; - const isPrefetchHeadPartial = headSnapshot.isPartial; - const newCanonicalUrl = optimisticRoute.canonicalUrl + url.hash; - const newRenderedSearch = optimisticRoute.renderedSearch; - return navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, newCanonicalUrl, newRenderedSearch, freshnessPolicy, shouldScroll); - } - } - // There's no matching prefetch for this route in the cache. - let collectedDebugInfo = accumulation.collectedDebugInfo ?? []; - if (accumulation.collectedDebugInfo === undefined) { - collectedDebugInfo = accumulation.collectedDebugInfo = []; - } - return { - tag: _types.NavigationResultTag.Async, - data: navigateDynamicallyWithNoPrefetch(now, url, currentUrl, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, shouldScroll, collectedDebugInfo) - }; -} -function navigateToSeededRoute(now, url, canonicalUrl, navigationSeed, currentUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, shouldScroll) { - // A version of navigate() that accepts the target route tree as an argument - // rather than reading it from the prefetch cache. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const isSamePageNavigation = url.href === currentUrl.href; - const task = (0, _pprnavigations.startPPRNavigation)(now, currentUrl, currentCacheNode, currentFlightRouterState, navigationSeed.tree, freshnessPolicy, navigationSeed.data, navigationSeed.head, null, null, false, isSamePageNavigation, accumulation); - if (task !== null) { - (0, _pprnavigations.spawnDynamicRequests)(task, url, nextUrl, freshnessPolicy, accumulation); - return navigationTaskToResult(task, canonicalUrl, navigationSeed.renderedSearch, accumulation.scrollableSegments, shouldScroll, url.hash); - } - // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation. - return { - tag: _types.NavigationResultTag.MPA, - data: canonicalUrl - }; -} -function navigateUsingPrefetchedRouteTree(now, url, currentUrl, nextUrl, isSamePageNavigation, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, canonicalUrl, renderedSearch, freshnessPolicy, shouldScroll) { - // Recursively construct a prefetch tree by reading from the Segment Cache. To - // maintain compatibility, we output the same data structures as the old - // prefetching implementation: FlightRouterState and CacheNodeSeedData. - // TODO: Eventually updateCacheNodeOnNavigation (or the equivalent) should - // read from the Segment Cache directly. It's only structured this way for now - // so we can share code with the old prefetching implementation. - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const seedData = null; - const seedHead = null; - const task = (0, _pprnavigations.startPPRNavigation)(now, currentUrl, currentCacheNode, currentFlightRouterState, prefetchFlightRouterState, freshnessPolicy, seedData, seedHead, prefetchSeedData, prefetchHead, isPrefetchHeadPartial, isSamePageNavigation, accumulation); - if (task !== null) { - (0, _pprnavigations.spawnDynamicRequests)(task, url, nextUrl, freshnessPolicy, accumulation); - return navigationTaskToResult(task, canonicalUrl, renderedSearch, accumulation.scrollableSegments, shouldScroll, url.hash); - } - // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation. - return { - tag: _types.NavigationResultTag.MPA, - data: canonicalUrl - }; -} -function navigationTaskToResult(task, canonicalUrl, renderedSearch, scrollableSegments, shouldScroll, hash) { - return { - tag: _types.NavigationResultTag.Success, - data: { - flightRouterState: task.route, - cacheNode: task.node, - canonicalUrl, - renderedSearch, - scrollableSegments, - shouldScroll, - hash - } - }; -} -function readRenderSnapshotFromCache(now, route, tree) { - let childRouterStates = {}; - let childSeedDatas = {}; - const slots = tree.slots; - if (slots !== null) { - for(const parallelRouteKey in slots){ - const childTree = slots[parallelRouteKey]; - const childResult = readRenderSnapshotFromCache(now, route, childTree); - childRouterStates[parallelRouteKey] = childResult.flightRouterState; - childSeedDatas[parallelRouteKey] = childResult.seedData; - } - } - let rsc = null; - let loading = null; - let isPartial = true; - const segmentEntry = (0, _cache.readSegmentCacheEntry)(now, tree.varyPath); - if (segmentEntry !== null) { - switch(segmentEntry.status){ - case _cache.EntryStatus.Fulfilled: - { - // Happy path: a cache hit - rsc = segmentEntry.rsc; - loading = segmentEntry.loading; - isPartial = segmentEntry.isPartial; - break; - } - case _cache.EntryStatus.Pending: - { - // We haven't received data for this segment yet, but there's already - // an in-progress request. Since it's extremely likely to arrive - // before the dynamic data response, we might as well use it. - const promiseForFulfilledEntry = (0, _cache.waitForSegmentCacheEntry)(segmentEntry); - rsc = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.rsc : null); - loading = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.loading : null); - // Because the request is still pending, we typically don't know yet - // whether the response will be partial. We shouldn't skip this segment - // during the dynamic navigation request. Otherwise, we might need to - // do yet another request to fill in the remaining data, creating - // a waterfall. - // - // The one exception is if this segment is being fetched with via - // prefetch={true} (i.e. the "force stale" or "full" strategy). If so, - // we can assume the response will be full. This field is set to `false` - // for such segments. - isPartial = segmentEntry.isPartial; - break; - } - case _cache.EntryStatus.Empty: - case _cache.EntryStatus.Rejected: - break; - default: - segmentEntry; - } - } - // The navigation implementation expects the search params to be - // included in the segment. However, the Segment Cache tracks search - // params separately from the rest of the segment key. So we need to - // add them back here. - // - // See corresponding comment in convertFlightRouterStateToTree. - // - // TODO: What we should do instead is update the navigation diffing - // logic to compare search params explicitly. This is a temporary - // solution until more of the Segment Cache implementation has settled. - const segment = (0, _segment.addSearchParamsIfPageSegment)(tree.segment, Object.fromEntries(new URLSearchParams(route.renderedSearch))); - // We don't need this information in a render snapshot, so this can just be a placeholder. - const hasRuntimePrefetch = false; - return { - flightRouterState: [ - segment, - childRouterStates, - null, - null, - tree.isRootLayout - ], - seedData: [ - rsc, - childSeedDatas, - loading, - isPartial, - hasRuntimePrefetch - ] - }; -} -function readHeadSnapshotFromCache(now, route) { - // Same as readRenderSnapshotFromCache, but for the head - let rsc = null; - let isPartial = true; - const segmentEntry = (0, _cache.readSegmentCacheEntry)(now, route.metadata.varyPath); - if (segmentEntry !== null) { - switch(segmentEntry.status){ - case _cache.EntryStatus.Fulfilled: - { - rsc = segmentEntry.rsc; - isPartial = segmentEntry.isPartial; - break; - } - case _cache.EntryStatus.Pending: - { - const promiseForFulfilledEntry = (0, _cache.waitForSegmentCacheEntry)(segmentEntry); - rsc = promiseForFulfilledEntry.then((entry)=>entry !== null ? entry.rsc : null); - isPartial = segmentEntry.isPartial; - break; - } - case _cache.EntryStatus.Empty: - case _cache.EntryStatus.Rejected: - break; - default: - segmentEntry; - } - } - return { - rsc, - isPartial - }; -} -// Used to request all the dynamic data for a route, rather than just a subset, -// e.g. during a refresh or a revalidation. Typically this gets constructed -// during the normal flow when diffing the route tree, but for an unprefetched -// navigation, where we don't know the structure of the target route, we use -// this instead. -const DynamicRequestTreeForEntireRoute = [ - '', - {}, - null, - 'refetch' -]; -async function navigateDynamicallyWithNoPrefetch(now, url, currentUrl, nextUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, shouldScroll, collectedDebugInfo) { - // Runs when a navigation happens but there's no cached prefetch we can use. - // Don't bother to wait for a prefetch response; go straight to a full - // navigation that contains both static and dynamic data in a single stream. - // (This is unlike the old navigation implementation, which instead blocks - // the dynamic request until a prefetch request is received.) - // - // To avoid duplication of logic, we're going to pretend that the tree - // returned by the dynamic request is, in fact, a prefetch tree. Then we can - // use the same server response to write the actual data into the CacheNode - // tree. So it's the same flow as the "happy path" (prefetch, then - // navigation), except we use a single server response for both stages. - let dynamicRequestTree; - switch(freshnessPolicy){ - case _pprnavigations.FreshnessPolicy.Default: - case _pprnavigations.FreshnessPolicy.HistoryTraversal: - dynamicRequestTree = currentFlightRouterState; - break; - case _pprnavigations.FreshnessPolicy.Hydration: - case _pprnavigations.FreshnessPolicy.RefreshAll: - case _pprnavigations.FreshnessPolicy.HMRRefresh: - dynamicRequestTree = DynamicRequestTreeForEntireRoute; - break; - default: - freshnessPolicy; - dynamicRequestTree = currentFlightRouterState; - break; - } - const promiseForDynamicServerResponse = (0, _fetchserverresponse.fetchServerResponse)(url, { - flightRouterState: dynamicRequestTree, - nextUrl - }); - const result = await promiseForDynamicServerResponse; - if (typeof result === 'string') { - // This is an MPA navigation. - const newUrl = result; - return { - tag: _types.NavigationResultTag.MPA, - data: newUrl - }; - } - const { flightData, canonicalUrl, renderedSearch, debugInfo: debugInfoFromResponse } = result; - if (debugInfoFromResponse !== null) { - collectedDebugInfo.push(...debugInfoFromResponse); - } - // Since the response format of dynamic requests and prefetches is slightly - // different, we'll need to massage the data a bit. Create FlightRouterState - // tree that simulates what we'd receive as the result of a prefetch. - const navigationSeed = convertServerPatchToFullTree(currentFlightRouterState, flightData, renderedSearch); - return navigateToSeededRoute(now, url, (0, _createhreffromurl.createHrefFromUrl)(canonicalUrl), navigationSeed, currentUrl, currentCacheNode, currentFlightRouterState, freshnessPolicy, nextUrl, shouldScroll); -} -function convertServerPatchToFullTree(currentTree, flightData, renderedSearch) { - // During a client navigation or prefetch, the server sends back only a patch - // for the parts of the tree that have changed. - // - // This applies the patch to the base tree to create a full representation of - // the resulting tree. - // - // The return type includes a full FlightRouterState tree and a full - // CacheNodeSeedData tree. (Conceptually these are the same tree, and should - // eventually be unified, but there's still lots of existing code that - // operates on FlightRouterState trees alone without the CacheNodeSeedData.) - // - // TODO: This similar to what apply-router-state-patch-to-tree does. It - // will eventually fully replace it. We should get rid of all the remaining - // places where we iterate over the server patch format. This should also - // eventually replace normalizeFlightData. - let baseTree = currentTree; - let baseData = null; - let head = null; - for (const { segmentPath, tree: treePatch, seedData: dataPatch, head: headPatch } of flightData){ - const result = convertServerPatchToFullTreeImpl(baseTree, baseData, treePatch, dataPatch, segmentPath, 0); - baseTree = result.tree; - baseData = result.data; - // This is the same for all patches per response, so just pick an - // arbitrary one - head = headPatch; - } - return { - tree: baseTree, - data: baseData, - renderedSearch, - head - }; -} -function convertServerPatchToFullTreeImpl(baseRouterState, baseData, treePatch, dataPatch, segmentPath, index) { - if (index === segmentPath.length) { - // We reached the part of the tree that we need to patch. - return { - tree: treePatch, - data: dataPatch - }; - } - // segmentPath represents the parent path of subtree. It's a repeating - // pattern of parallel route key and segment: - // - // [string, Segment, string, Segment, string, Segment, ...] - // - // This path tells us which part of the base tree to apply the tree patch. - // - // NOTE: We receive the FlightRouterState patch in the same request as the - // seed data patch. Therefore we don't need to worry about diffing the segment - // values; we can assume the server sent us a correct result. - const updatedParallelRouteKey = segmentPath[index]; - // const segment: Segment = segmentPath[index + 1] <-- Not used, see note above - const baseTreeChildren = baseRouterState[1]; - const baseSeedDataChildren = baseData !== null ? baseData[1] : null; - const newTreeChildren = {}; - const newSeedDataChildren = {}; - for(const parallelRouteKey in baseTreeChildren){ - const childBaseRouterState = baseTreeChildren[parallelRouteKey]; - const childBaseSeedData = baseSeedDataChildren !== null ? baseSeedDataChildren[parallelRouteKey] ?? null : null; - if (parallelRouteKey === updatedParallelRouteKey) { - const result = convertServerPatchToFullTreeImpl(childBaseRouterState, childBaseSeedData, treePatch, dataPatch, segmentPath, // the end of the segment path. - index + 2); - newTreeChildren[parallelRouteKey] = result.tree; - newSeedDataChildren[parallelRouteKey] = result.data; - } else { - // This child is not being patched. Copy it over as-is. - newTreeChildren[parallelRouteKey] = childBaseRouterState; - newSeedDataChildren[parallelRouteKey] = childBaseSeedData; - } - } - let clonedTree; - let clonedSeedData; - // Clone all the fields except the children. - // Clone the FlightRouterState tree. Based on equivalent logic in - // apply-router-state-patch-to-tree, but should confirm whether we need to - // copy all of these fields. Not sure the server ever sends, e.g. the - // refetch marker. - clonedTree = [ - baseRouterState[0], - newTreeChildren - ]; - if (2 in baseRouterState) { - clonedTree[2] = baseRouterState[2]; - } - if (3 in baseRouterState) { - clonedTree[3] = baseRouterState[3]; - } - if (4 in baseRouterState) { - clonedTree[4] = baseRouterState[4]; - } - // Clone the CacheNodeSeedData tree. - const isEmptySeedDataPartial = true; - clonedSeedData = [ - null, - newSeedDataChildren, - null, - isEmptySeedDataPartial, - false - ]; - return { - tree: clonedTree, - data: clonedSeedData - }; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=navigation.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DYNAMIC_STALETIME_MS: null, - STATIC_STALETIME_MS: null, - generateSegmentsFromPatch: null, - handleExternalUrl: null, - handleNavigationResult: null, - navigateReducer: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DYNAMIC_STALETIME_MS: function() { - return DYNAMIC_STALETIME_MS; - }, - STATIC_STALETIME_MS: function() { - return STATIC_STALETIME_MS; - }, - generateSegmentsFromPatch: function() { - return generateSegmentsFromPatch; - }, - handleExternalUrl: function() { - return handleExternalUrl; - }, - handleNavigationResult: function() { - return handleNavigationResult; - }, - navigateReducer: function() { - return navigateReducer; - } -}); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _handlemutable = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/handle-mutable.js [app-client] (ecmascript)"); -const _navigation = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/navigation.js [app-client] (ecmascript)"); -const _types = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)"); -const _cache = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -const DYNAMIC_STALETIME_MS = Number(("TURBOPACK compile-time value", "0")) * 1000; -const STATIC_STALETIME_MS = (0, _cache.getStaleTimeMs)(Number(("TURBOPACK compile-time value", "300"))); -function handleExternalUrl(state, mutable, url, pendingPush) { - mutable.mpaNavigation = true; - mutable.canonicalUrl = url; - mutable.pendingPush = pendingPush; - mutable.scrollableSegments = undefined; - return (0, _handlemutable.handleMutable)(state, mutable); -} -function generateSegmentsFromPatch(flightRouterPatch) { - const segments = []; - const [segment, parallelRoutes] = flightRouterPatch; - if (Object.keys(parallelRoutes).length === 0) { - return [ - [ - segment - ] - ]; - } - for (const [parallelRouteKey, parallelRoute] of Object.entries(parallelRoutes)){ - for (const childSegment of generateSegmentsFromPatch(parallelRoute)){ - // If the segment is empty, it means we are at the root of the tree - if (segment === '') { - segments.push([ - parallelRouteKey, - ...childSegment - ]); - } else { - segments.push([ - segment, - parallelRouteKey, - ...childSegment - ]); - } - } - } - return segments; -} -function handleNavigationResult(url, state, mutable, pendingPush, result) { - switch(result.tag){ - case _types.NavigationResultTag.MPA: - { - // Perform an MPA navigation. - const newUrl = result.data; - return handleExternalUrl(state, mutable, newUrl, pendingPush); - } - case _types.NavigationResultTag.Success: - { - // Received a new result. - mutable.cache = result.data.cacheNode; - mutable.patchedTree = result.data.flightRouterState; - mutable.renderedSearch = result.data.renderedSearch; - mutable.canonicalUrl = result.data.canonicalUrl; - // TODO: During a refresh, we don't set the `scrollableSegments`. There's - // some confusing and subtle logic in `handleMutable` that decides what - // to do when `shouldScroll` is set but `scrollableSegments` is not. I'm - // not convinced it's totally coherent but the tests assert on this - // particular behavior so I've ported the logic as-is from the previous - // router implementation, for now. - mutable.scrollableSegments = result.data.scrollableSegments ?? undefined; - mutable.shouldScroll = result.data.shouldScroll; - mutable.hashFragment = result.data.hash; - // Check if the only thing that changed was the hash fragment. - const oldUrl = new URL(state.canonicalUrl, url); - const onlyHashChange = // navigations are always same-origin. - url.pathname === oldUrl.pathname && url.search === oldUrl.search && url.hash !== oldUrl.hash; - if (onlyHashChange) { - // The only updated part of the URL is the hash. - mutable.onlyHashChange = true; - mutable.shouldScroll = result.data.shouldScroll; - mutable.hashFragment = url.hash; - // Setting this to an empty array triggers a scroll for all new and - // updated segments. See `ScrollAndFocusHandler` for more details. - mutable.scrollableSegments = []; - } - return (0, _handlemutable.handleMutable)(state, mutable); - } - case _types.NavigationResultTag.Async: - { - return result.data.then((asyncResult)=>handleNavigationResult(url, state, mutable, pendingPush, asyncResult), // TODO: This matches the current behavior but we need to do something - // better here if the network fails. - ()=>{ - return state; - }); - } - default: - { - result; - return state; - } - } -} -function navigateReducer(state, action) { - const { url, isExternalUrl, navigateType, shouldScroll } = action; - const mutable = {}; - const href = (0, _createhreffromurl.createHrefFromUrl)(url); - const pendingPush = navigateType === 'push'; - mutable.preserveCustomHistoryState = false; - mutable.pendingPush = pendingPush; - if (isExternalUrl) { - return handleExternalUrl(state, mutable, url.toString(), pendingPush); - } - // Handles case where `<meta http-equiv="refresh">` tag is present, - // which will trigger an MPA navigation. - if (document.getElementById('__next-page-redirect')) { - return handleExternalUrl(state, mutable, href, pendingPush); - } - // Temporary glue code between the router reducer and the new navigation - // implementation. Eventually we'll rewrite the router reducer to a - // state machine. - const currentUrl = new URL(state.canonicalUrl, location.origin); - const result = (0, _navigation.navigate)(url, currentUrl, state.cache, state.tree, state.nextUrl, _pprnavigations.FreshnessPolicy.Default, shouldScroll, mutable); - return handleNavigationResult(url, state, mutable, pendingPush, result); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=navigate-reducer.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "hasInterceptionRouteInCurrentTree", { - enumerable: true, - get: function() { - return hasInterceptionRouteInCurrentTree; - } -}); -const _interceptionroutes = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-client] (ecmascript)"); -function hasInterceptionRouteInCurrentTree([segment, parallelRoutes]) { - // If we have a dynamic segment, it's marked as an interception route by the presence of the `i` suffix. - if (Array.isArray(segment) && (segment[2] === 'di(..)(..)' || segment[2] === 'ci(..)(..)' || segment[2] === 'di(.)' || segment[2] === 'ci(.)' || segment[2] === 'di(..)' || segment[2] === 'ci(..)' || segment[2] === 'di(...)' || segment[2] === 'ci(...)')) { - return true; - } - // If segment is not an array, apply the existing string-based check - if (typeof segment === 'string' && (0, _interceptionroutes.isInterceptionRouteAppPath)(segment)) { - return true; - } - // Iterate through parallelRoutes if they exist - if (parallelRoutes) { - for(const key in parallelRoutes){ - if (hasInterceptionRouteInCurrentTree(parallelRoutes[key])) { - return true; - } - } - } - return false; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=has-interception-route-in-current-tree.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - refreshDynamicData: null, - refreshReducer: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - refreshDynamicData: function() { - return refreshDynamicData; - }, - refreshReducer: function() { - return refreshReducer; - } -}); -const _navigatereducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js [app-client] (ecmascript)"); -const _navigation = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/navigation.js [app-client] (ecmascript)"); -const _cache = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache.js [app-client] (ecmascript)"); -const _hasinterceptionrouteincurrenttree = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -function refreshReducer(state) { - // TODO: Currently, all refreshes purge the prefetch cache. In the future, - // only client-side refreshes will have this behavior; the server-side - // `refresh` should send new data without purging the prefetch cache. - const currentNextUrl = state.nextUrl; - const currentRouterState = state.tree; - (0, _cache.revalidateEntireCache)(currentNextUrl, currentRouterState); - return refreshDynamicData(state, _pprnavigations.FreshnessPolicy.RefreshAll); -} -function refreshDynamicData(state, freshnessPolicy) { - const currentNextUrl = state.nextUrl; - // We always send the last next-url, not the current when performing a dynamic - // request. This is because we update the next-url after a navigation, but we - // want the same interception route to be matched that used the last next-url. - const nextUrlForRefresh = (0, _hasinterceptionrouteincurrenttree.hasInterceptionRouteInCurrentTree)(state.tree) ? state.previousNextUrl || currentNextUrl : null; - // A refresh is modeled as a navigation to the current URL, but where any - // existing dynamic data (including in shared layouts) is re-fetched. - const currentCanonicalUrl = state.canonicalUrl; - const currentUrl = new URL(currentCanonicalUrl, location.origin); - const currentFlightRouterState = state.tree; - const shouldScroll = true; - const navigationSeed = { - tree: state.tree, - renderedSearch: state.renderedSearch, - data: null, - head: null - }; - const now = Date.now(); - const result = (0, _navigation.navigateToSeededRoute)(now, currentUrl, currentCanonicalUrl, navigationSeed, currentUrl, state.cache, currentFlightRouterState, freshnessPolicy, nextUrlForRefresh, shouldScroll); - const mutable = {}; - mutable.preserveCustomHistoryState = false; - return (0, _navigatereducer.handleNavigationResult)(currentUrl, state, mutable, false, result); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=refresh-reducer.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "serverPatchReducer", { - enumerable: true, - get: function() { - return serverPatchReducer; - } -}); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _navigatereducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js [app-client] (ecmascript)"); -const _navigation = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/navigation.js [app-client] (ecmascript)"); -const _refreshreducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -function serverPatchReducer(state, action) { - const mutable = {}; - mutable.preserveCustomHistoryState = false; - // A "retry" is a navigation that happens due to a route mismatch. It's - // similar to a refresh, because we will omit any existing dynamic data on - // the page. But we seed the retry navigation with the exact tree that the - // server just responded with. - const retryMpa = action.mpa; - const retryUrl = new URL(action.url, location.origin); - const retrySeed = action.seed; - if (retryMpa || retrySeed === null) { - // If the server did not send back data during the mismatch, fall back to - // an MPA navigation. - return (0, _navigatereducer.handleExternalUrl)(state, mutable, retryUrl.href, false); - } - const currentUrl = new URL(state.canonicalUrl, location.origin); - if (action.previousTree !== state.tree) { - // There was another, more recent navigation since the once that - // mismatched. We can abort the retry, but we still need to refresh the - // page to evict any stale dynamic data. - return (0, _refreshreducer.refreshReducer)(state); - } - // There have been no new navigations since the mismatched one. Refresh, - // using the tree we just received from the server. - const retryCanonicalUrl = (0, _createhreffromurl.createHrefFromUrl)(retryUrl); - const retryNextUrl = action.nextUrl; - // A retry should not create a new history entry. - const pendingPush = false; - const shouldScroll = true; - const now = Date.now(); - const result = (0, _navigation.navigateToSeededRoute)(now, retryUrl, retryCanonicalUrl, retrySeed, currentUrl, state.cache, state.tree, _pprnavigations.FreshnessPolicy.RefreshAll, retryNextUrl, shouldScroll); - return (0, _navigatereducer.handleNavigationResult)(retryUrl, state, mutable, pendingPush, result); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=server-patch-reducer.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "restoreReducer", { - enumerable: true, - get: function() { - return restoreReducer; - } -}); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _computechangedpath = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -const _navigatereducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js [app-client] (ecmascript)"); -function restoreReducer(state, action) { - // This action is used to restore the router state from the history state. - // However, it's possible that the history state no longer contains the `FlightRouterState`. - // We will copy over the internal state on pushState/replaceState events, but if a history entry - // occurred before hydration, or if the user navigated to a hash using a regular anchor link, - // the history state will not contain the `FlightRouterState`. - // In this case, we'll continue to use the existing tree so the router doesn't get into an invalid state. - let treeToRestore; - let renderedSearch; - const historyState = action.historyState; - if (historyState) { - treeToRestore = historyState.tree; - renderedSearch = historyState.renderedSearch; - } else { - treeToRestore = state.tree; - renderedSearch = state.renderedSearch; - } - const currentUrl = new URL(state.canonicalUrl, location.origin); - const restoredUrl = action.url; - const restoredCanonicalUrl = (0, _createhreffromurl.createHrefFromUrl)(restoredUrl); - const restoredNextUrl = (0, _computechangedpath.extractPathFromFlightRouterState)(treeToRestore) ?? restoredUrl.pathname; - const now = Date.now(); - const accumulation = { - scrollableSegments: null, - separateRefreshUrls: null - }; - const task = (0, _pprnavigations.startPPRNavigation)(now, currentUrl, state.cache, state.tree, treeToRestore, _pprnavigations.FreshnessPolicy.HistoryTraversal, null, null, null, null, false, false, accumulation); - if (task === null) { - const mutable = { - preserveCustomHistoryState: true - }; - return (0, _navigatereducer.handleExternalUrl)(state, mutable, restoredCanonicalUrl, false); - } - (0, _pprnavigations.spawnDynamicRequests)(task, restoredUrl, restoredNextUrl, _pprnavigations.FreshnessPolicy.HistoryTraversal, accumulation); - return { - // Set canonical url - canonicalUrl: restoredCanonicalUrl, - renderedSearch, - pushRef: { - pendingPush: false, - mpaNavigation: false, - // Ensures that the custom history state that was set is preserved when applying this update. - preserveCustomHistoryState: true - }, - focusAndScrollRef: state.focusAndScrollRef, - cache: task.node, - // Restore provided tree - tree: treeToRestore, - nextUrl: restoredNextUrl, - // TODO: We need to restore previousNextUrl, too, which represents the - // Next-Url that was used to fetch the data. Anywhere we fetch using the - // canonical URL, there should be a corresponding Next-Url. - previousNextUrl: null, - debugInfo: null - }; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=restore-reducer.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "hmrRefreshReducer", { - enumerable: true, - get: function() { - return hmrRefreshReducer; - } -}); -const _refreshreducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -function hmrRefreshReducer(state) { - return (0, _refreshreducer.refreshDynamicData)(state, _pprnavigations.FreshnessPolicy.HMRRefresh); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=hmr-refresh-reducer.js.map -}), -"[project]/node_modules/next/dist/client/components/unrecognized-action-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - UnrecognizedActionError: null, - unstable_isUnrecognizedActionError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - UnrecognizedActionError: function() { - return UnrecognizedActionError; - }, - unstable_isUnrecognizedActionError: function() { - return unstable_isUnrecognizedActionError; - } -}); -class UnrecognizedActionError extends Error { - constructor(...args){ - super(...args); - this.name = 'UnrecognizedActionError'; - } -} -function unstable_isUnrecognizedActionError(error) { - return !!(error && typeof error === 'object' && error instanceof UnrecognizedActionError); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=unrecognized-action-error.js.map -}), -"[project]/node_modules/next/dist/client/assign-location.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "assignLocation", { - enumerable: true, - get: function() { - return assignLocation; - } -}); -const _addbasepath = __turbopack_context__.r("[project]/node_modules/next/dist/client/add-base-path.js [app-client] (ecmascript)"); -function assignLocation(location, url) { - if (location.startsWith('.')) { - const urlBase = url.origin + url.pathname; - return new URL(// new URL('./relative', 'https://example.com/subdir').href -> 'https://example.com/relative' - // new URL('./relative', 'https://example.com/subdir/').href -> 'https://example.com/subdir/relative' - (urlBase.endsWith('/') ? urlBase : urlBase + '/') + location); - } - return new URL((0, _addbasepath.addBasePath)(location), url.href); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=assign-location.js.map -}), -"[project]/node_modules/next/dist/client/components/redirect.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getRedirectError: null, - getRedirectStatusCodeFromError: null, - getRedirectTypeFromError: null, - getURLFromRedirectError: null, - permanentRedirect: null, - redirect: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getRedirectError: function() { - return getRedirectError; - }, - getRedirectStatusCodeFromError: function() { - return getRedirectStatusCodeFromError; - }, - getRedirectTypeFromError: function() { - return getRedirectTypeFromError; - }, - getURLFromRedirectError: function() { - return getURLFromRedirectError; - }, - permanentRedirect: function() { - return permanentRedirect; - }, - redirect: function() { - return redirect; - } -}); -const _redirectstatuscode = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-status-code.js [app-client] (ecmascript)"); -const _redirecterror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-error.js [app-client] (ecmascript)"); -const actionAsyncStorage = typeof window === 'undefined' ? __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/action-async-storage.external.js [app-client] (ecmascript)").actionAsyncStorage : undefined; -function getRedirectError(url, type, statusCode = _redirectstatuscode.RedirectStatusCode.TemporaryRedirect) { - const error = Object.defineProperty(new Error(_redirecterror.REDIRECT_ERROR_CODE), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = `${_redirecterror.REDIRECT_ERROR_CODE};${type};${url};${statusCode};`; - return error; -} -function redirect(/** The URL to redirect to */ url, type) { - type ??= actionAsyncStorage?.getStore()?.isAction ? _redirecterror.RedirectType.push : _redirecterror.RedirectType.replace; - throw getRedirectError(url, type, _redirectstatuscode.RedirectStatusCode.TemporaryRedirect); -} -function permanentRedirect(/** The URL to redirect to */ url, type = _redirecterror.RedirectType.replace) { - throw getRedirectError(url, type, _redirectstatuscode.RedirectStatusCode.PermanentRedirect); -} -function getURLFromRedirectError(error) { - if (!(0, _redirecterror.isRedirectError)(error)) return null; - // Slices off the beginning of the digest that contains the code and the - // separating ';'. - return error.digest.split(';').slice(2, -2).join(';'); -} -function getRedirectTypeFromError(error) { - if (!(0, _redirecterror.isRedirectError)(error)) { - throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", { - value: "E260", - enumerable: false, - configurable: true - }); - } - return error.digest.split(';', 2)[1]; -} -function getRedirectStatusCodeFromError(error) { - if (!(0, _redirecterror.isRedirectError)(error)) { - throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", { - value: "E260", - enumerable: false, - configurable: true - }); - } - return Number(error.digest.split(';').at(-2)); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=redirect.js.map -}), -"[project]/node_modules/next/dist/client/has-base-path.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "hasBasePath", { - enumerable: true, - get: function() { - return hasBasePath; - } -}); -const _pathhasprefix = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js [app-client] (ecmascript)"); -const basePath = ("TURBOPACK compile-time value", "") || ''; -function hasBasePath(path) { - return (0, _pathhasprefix.pathHasPrefix)(path, basePath); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=has-base-path.js.map -}), -"[project]/node_modules/next/dist/client/remove-base-path.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "removeBasePath", { - enumerable: true, - get: function() { - return removeBasePath; - } -}); -const _hasbasepath = __turbopack_context__.r("[project]/node_modules/next/dist/client/has-base-path.js [app-client] (ecmascript)"); -const basePath = ("TURBOPACK compile-time value", "") || ''; -function removeBasePath(path) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Can't trim the basePath if it has zero length! - if (basePath.length === 0) return path; - path = path.slice(basePath.length); - if (!path.startsWith('/')) path = `/${path}`; - return path; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=remove-base-path.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "serverActionReducer", { - enumerable: true, - get: function() { - return serverActionReducer; - } -}); -const _appcallserver = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-call-server.js [app-client] (ecmascript)"); -const _appfindsourcemapurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-find-source-map-url.js [app-client] (ecmascript)"); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)"); -const _unrecognizedactionerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/unrecognized-action-error.js [app-client] (ecmascript)"); -const _client = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.js [app-client] (ecmascript)"); -const _assignlocation = __turbopack_context__.r("[project]/node_modules/next/dist/client/assign-location.js [app-client] (ecmascript)"); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _navigatereducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js [app-client] (ecmascript)"); -const _hasinterceptionrouteincurrenttree = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js [app-client] (ecmascript)"); -const _flightdatahelpers = __turbopack_context__.r("[project]/node_modules/next/dist/client/flight-data-helpers.js [app-client] (ecmascript)"); -const _redirect = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect.js [app-client] (ecmascript)"); -const _redirecterror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-error.js [app-client] (ecmascript)"); -const _removebasepath = __turbopack_context__.r("[project]/node_modules/next/dist/client/remove-base-path.js [app-client] (ecmascript)"); -const _hasbasepath = __turbopack_context__.r("[project]/node_modules/next/dist/client/has-base-path.js [app-client] (ecmascript)"); -const _serverreferenceinfo = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/server-reference-info.js [app-client] (ecmascript)"); -const _cache = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache.js [app-client] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-client] (ecmascript)"); -const _navigation = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/navigation.js [app-client] (ecmascript)"); -const _actionrevalidationkind = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/action-revalidation-kind.js [app-client] (ecmascript)"); -const _approuterutils = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-utils.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -const createFromFetch = _client.createFromFetch; -let createDebugChannel; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -async function fetchServerAction(state, nextUrl, { actionId, actionArgs }) { - const temporaryReferences = (0, _client.createTemporaryReferenceSet)(); - const info = (0, _serverreferenceinfo.extractInfoFromServerReferenceId)(actionId); - // TODO: Currently, we're only omitting unused args for the experimental "use - // cache" functions. Once the server reference info byte feature is stable, we - // should apply this to server actions as well. - const usedArgs = info.type === 'use-cache' ? (0, _serverreferenceinfo.omitUnusedArgs)(actionArgs, info) : actionArgs; - const body = await (0, _client.encodeReply)(usedArgs, { - temporaryReferences - }); - const headers = { - Accept: _approuterheaders.RSC_CONTENT_TYPE_HEADER, - [_approuterheaders.ACTION_HEADER]: actionId, - [_approuterheaders.NEXT_ROUTER_STATE_TREE_HEADER]: (0, _flightdatahelpers.prepareFlightRouterStateForRequest)(state.tree) - }; - const deploymentId = (0, _deploymentid.getDeploymentId)(); - if (deploymentId) { - headers['x-deployment-id'] = deploymentId; - } - if (nextUrl) { - headers[_approuterheaders.NEXT_URL] = nextUrl; - } - if ("TURBOPACK compile-time truthy", 1) { - if (self.__next_r) { - headers[_approuterheaders.NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r; - } - // Create a new request ID for the server action request. The server uses - // this to tag debug information sent via WebSocket to the client, which - // then routes those chunks to the debug channel associated with this ID. - headers[_approuterheaders.NEXT_REQUEST_ID_HEADER] = crypto.getRandomValues(new Uint32Array(1))[0].toString(16); - } - const res = await fetch(state.canonicalUrl, { - method: 'POST', - headers, - body - }); - // Handle server actions that the server didn't recognize. - const unrecognizedActionHeader = res.headers.get(_approuterheaders.NEXT_ACTION_NOT_FOUND_HEADER); - if (unrecognizedActionHeader === '1') { - throw Object.defineProperty(new _unrecognizedactionerror.UnrecognizedActionError(`Server Action "${actionId}" was not found on the server. \nRead more: https://nextjs.org/docs/messages/failed-to-find-server-action`), "__NEXT_ERROR_CODE", { - value: "E715", - enumerable: false, - configurable: true - }); - } - const redirectHeader = res.headers.get('x-action-redirect'); - const [location1, _redirectType] = redirectHeader?.split(';') || []; - let redirectType; - switch(_redirectType){ - case 'push': - redirectType = _redirecterror.RedirectType.push; - break; - case 'replace': - redirectType = _redirecterror.RedirectType.replace; - break; - default: - redirectType = undefined; - } - const isPrerender = !!res.headers.get(_approuterheaders.NEXT_IS_PRERENDER_HEADER); - let revalidationKind = _actionrevalidationkind.ActionDidNotRevalidate; - try { - const revalidationHeader = res.headers.get('x-action-revalidated'); - if (revalidationHeader) { - const parsedKind = JSON.parse(revalidationHeader); - if (parsedKind === _actionrevalidationkind.ActionDidRevalidateStaticAndDynamic || parsedKind === _actionrevalidationkind.ActionDidRevalidateDynamicOnly) { - revalidationKind = parsedKind; - } - } - } catch {} - const redirectLocation = location1 ? (0, _assignlocation.assignLocation)(location1, new URL(state.canonicalUrl, window.location.href)) : undefined; - const contentType = res.headers.get('content-type'); - const isRscResponse = !!(contentType && contentType.startsWith(_approuterheaders.RSC_CONTENT_TYPE_HEADER)); - // Handle invalid server action responses. - // A valid response must have `content-type: text/x-component`, unless it's an external redirect. - // (external redirects have an 'x-action-redirect' header, but the body is an empty 'text/plain') - if (!isRscResponse && !redirectLocation) { - // The server can respond with a text/plain error message, but we'll fallback to something generic - // if there isn't one. - const message = res.status >= 400 && contentType === 'text/plain' ? await res.text() : 'An unexpected response was received from the server.'; - throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - let actionResult; - let actionFlightData; - let actionFlightDataRenderedSearch; - let actionFlightDataCouldBeIntercepted; - if (isRscResponse) { - const response = await createFromFetch(Promise.resolve(res), { - callServer: _appcallserver.callServer, - findSourceMapURL: _appfindsourcemapurl.findSourceMapURL, - temporaryReferences, - debugChannel: createDebugChannel && createDebugChannel(headers) - }); - // An internal redirect can send an RSC response, but does not have a useful `actionResult`. - actionResult = redirectLocation ? undefined : response.a; - const maybeFlightData = (0, _flightdatahelpers.normalizeFlightData)(response.f); - if (maybeFlightData !== '') { - actionFlightData = maybeFlightData; - actionFlightDataRenderedSearch = response.q; - actionFlightDataCouldBeIntercepted = response.i; - } - } else { - // An external redirect doesn't contain RSC data. - actionResult = undefined; - actionFlightData = undefined; - actionFlightDataRenderedSearch = undefined; - actionFlightDataCouldBeIntercepted = undefined; - } - return { - actionResult, - actionFlightData, - actionFlightDataRenderedSearch, - actionFlightDataCouldBeIntercepted, - redirectLocation, - redirectType, - revalidationKind, - isPrerender - }; -} -function serverActionReducer(state, action) { - const { resolve, reject } = action; - const mutable = {}; - mutable.preserveCustomHistoryState = false; - // only pass along the `nextUrl` param (used for interception routes) if the current route was intercepted. - // If the route has been intercepted, the action should be as well. - // Otherwise the server action might be intercepted with the wrong action id - // (ie, one that corresponds with the intercepted route) - const nextUrl = // performing a dynamic request. This is because we update - // the next-url after a navigation, but we want the same - // interception route to be matched that used the last - // next-url. - (state.previousNextUrl || state.nextUrl) && (0, _hasinterceptionrouteincurrenttree.hasInterceptionRouteInCurrentTree)(state.tree) ? state.previousNextUrl || state.nextUrl : null; - return fetchServerAction(state, nextUrl, action).then(async ({ revalidationKind, actionResult, actionFlightData: flightData, actionFlightDataRenderedSearch: flightDataRenderedSearch, actionFlightDataCouldBeIntercepted: flightDataCouldBeIntercepted, redirectLocation, redirectType })=>{ - if (revalidationKind !== _actionrevalidationkind.ActionDidNotRevalidate) { - // Store whether this action triggered any revalidation - // The action queue will use this information to potentially - // trigger a refresh action if the action was discarded - // (ie, due to a navigation, before the action completed) - action.didRevalidate = true; - // If there was a revalidation, evict the entire prefetch cache. - // TODO: Evict only segments with matching tags and/or paths. - if (revalidationKind === _actionrevalidationkind.ActionDidRevalidateStaticAndDynamic) { - (0, _cache.revalidateEntireCache)(nextUrl, state.tree); - } - } - const pendingPush = redirectType !== _redirecterror.RedirectType.replace; - state.pushRef.pendingPush = pendingPush; - mutable.pendingPush = pendingPush; - if (redirectLocation !== undefined) { - // If the action triggered a redirect, the action promise will be rejected with - // a redirect so that it's handled by RedirectBoundary as we won't have a valid - // action result to resolve the promise with. This will effectively reset the state of - // the component that called the action as the error boundary will remount the tree. - // The status code doesn't matter here as the action handler will have already sent - // a response with the correct status code. - const resolvedRedirectType = redirectType || _redirecterror.RedirectType.push; - if ((0, _approuterutils.isExternalURL)(redirectLocation)) { - // External redirect. Triggers an MPA navigation. - const redirectHref = redirectLocation.href; - const redirectError = createRedirectErrorForAction(redirectHref, resolvedRedirectType); - reject(redirectError); - return (0, _navigatereducer.handleExternalUrl)(state, mutable, redirectHref, pendingPush); - } else { - // Internal redirect. Triggers an SPA navigation. - const redirectWithBasepath = (0, _createhreffromurl.createHrefFromUrl)(redirectLocation, false); - const redirectHref = (0, _hasbasepath.hasBasePath)(redirectWithBasepath) ? (0, _removebasepath.removeBasePath)(redirectWithBasepath) : redirectWithBasepath; - const redirectError = createRedirectErrorForAction(redirectHref, resolvedRedirectType); - reject(redirectError); - } - } else { - // If there's no redirect, resolve the action with the result. - resolve(actionResult); - } - // Check if we can bail out without updating any state. - if (redirectLocation === undefined && // Did the action revalidate any data? - revalidationKind === _actionrevalidationkind.ActionDidNotRevalidate && // Did the server render new data? - flightData === undefined) { - // The action did not trigger any revalidations or redirects. No - // navigation is required. - return state; - } - if (flightData === undefined && redirectLocation !== undefined) { - // The server redirected, but did not send any Flight data. This implies - // an external redirect. - // TODO: We should refactor the action response type to be more explicit - // about the various response types. - return (0, _navigatereducer.handleExternalUrl)(state, mutable, redirectLocation.href, pendingPush); - } - if (typeof flightData === 'string') { - // If the flight data is just a string, something earlier in the - // response handling triggered an external redirect. - return (0, _navigatereducer.handleExternalUrl)(state, mutable, flightData, pendingPush); - } - // The action triggered a navigation — either a redirect, a revalidation, - // or both. - // If there was no redirect, then the target URL is the same as the - // current URL. - const currentUrl = new URL(state.canonicalUrl, location.origin); - const redirectUrl = redirectLocation !== undefined ? redirectLocation : currentUrl; - const currentFlightRouterState = state.tree; - const shouldScroll = true; - // If the action triggered a revalidation of the cache, we should also - // refresh all the dynamic data. - const freshnessPolicy = revalidationKind === _actionrevalidationkind.ActionDidNotRevalidate ? _pprnavigations.FreshnessPolicy.Default : _pprnavigations.FreshnessPolicy.RefreshAll; - // The server may have sent back new data. If so, we will perform a - // "seeded" navigation that uses the data from the response. - if (flightData !== undefined) { - const normalizedFlightData = flightData[0]; - if (normalizedFlightData !== undefined && // TODO: Currently the server always renders from the root in - // response to a Server Action. In the case of a normal redirect - // with no revalidation, it should skip over the shared layouts. - normalizedFlightData.isRootRender && flightDataRenderedSearch !== undefined && flightDataCouldBeIntercepted !== undefined) { - // The server sent back new route data as part of the response. We - // will use this to render the new page. If this happens to be only a - // subset of the data needed to render the new page, we'll initiate a - // new fetch, like we would for a normal navigation. - const redirectCanonicalUrl = (0, _createhreffromurl.createHrefFromUrl)(redirectUrl); - const navigationSeed = { - tree: normalizedFlightData.tree, - renderedSearch: flightDataRenderedSearch, - data: normalizedFlightData.seedData, - head: normalizedFlightData.head - }; - const now = Date.now(); - const result = (0, _navigation.navigateToSeededRoute)(now, redirectUrl, redirectCanonicalUrl, navigationSeed, currentUrl, state.cache, currentFlightRouterState, freshnessPolicy, nextUrl, shouldScroll); - return (0, _navigatereducer.handleNavigationResult)(redirectUrl, state, mutable, pendingPush, result); - } - } - // The server did not send back new data. We'll perform a regular, non- - // seeded navigation — effectively the same as <Link> or router.push(). - const result = (0, _navigation.navigate)(redirectUrl, currentUrl, state.cache, currentFlightRouterState, nextUrl, freshnessPolicy, shouldScroll, mutable); - return (0, _navigatereducer.handleNavigationResult)(redirectUrl, state, mutable, pendingPush, result); - }, (e)=>{ - // When the server action is rejected we don't update the state and instead call the reject handler of the promise. - reject(e); - return state; - }); -} -function createRedirectErrorForAction(redirectHref, resolvedRedirectType) { - const redirectError = (0, _redirect.getRedirectError)(redirectHref, resolvedRedirectType); - redirectError.handled = true; - return redirectError; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=server-action-reducer.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/router-reducer.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "reducer", { - enumerable: true, - get: function() { - return reducer; - } -}); -const _routerreducertypes = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js [app-client] (ecmascript)"); -const _navigatereducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js [app-client] (ecmascript)"); -const _serverpatchreducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js [app-client] (ecmascript)"); -const _restorereducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js [app-client] (ecmascript)"); -const _refreshreducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js [app-client] (ecmascript)"); -const _hmrrefreshreducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js [app-client] (ecmascript)"); -const _serveractionreducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js [app-client] (ecmascript)"); -/** - * Reducer that handles the app-router state updates. - */ function clientReducer(state, action) { - switch(action.type){ - case _routerreducertypes.ACTION_NAVIGATE: - { - return (0, _navigatereducer.navigateReducer)(state, action); - } - case _routerreducertypes.ACTION_SERVER_PATCH: - { - return (0, _serverpatchreducer.serverPatchReducer)(state, action); - } - case _routerreducertypes.ACTION_RESTORE: - { - return (0, _restorereducer.restoreReducer)(state, action); - } - case _routerreducertypes.ACTION_REFRESH: - { - return (0, _refreshreducer.refreshReducer)(state); - } - case _routerreducertypes.ACTION_HMR_REFRESH: - { - return (0, _hmrrefreshreducer.hmrRefreshReducer)(state); - } - case _routerreducertypes.ACTION_SERVER_ACTION: - { - return (0, _serveractionreducer.serverActionReducer)(state, action); - } - // This case should never be hit as dispatch is strongly typed. - default: - throw Object.defineProperty(new Error('Unknown action'), "__NEXT_ERROR_CODE", { - value: "E295", - enumerable: false, - configurable: true - }); - } -} -function serverReducer(state, _action) { - return state; -} -const reducer = typeof window === 'undefined' ? serverReducer : clientReducer; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=router-reducer.js.map -}), -"[project]/node_modules/next/dist/client/components/segment-cache/prefetch.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "prefetch", { - enumerable: true, - get: function() { - return prefetch; - } -}); -const _approuterutils = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-utils.js [app-client] (ecmascript)"); -const _cachekey = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/cache-key.js [app-client] (ecmascript)"); -const _scheduler = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/scheduler.js [app-client] (ecmascript)"); -const _types = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)"); -function prefetch(href, nextUrl, treeAtTimeOfPrefetch, fetchStrategy, onInvalidate) { - const url = (0, _approuterutils.createPrefetchURL)(href); - if (url === null) { - // This href should not be prefetched. - return; - } - const cacheKey = (0, _cachekey.createCacheKey)(url.href, nextUrl); - (0, _scheduler.schedulePrefetchTask)(cacheKey, treeAtTimeOfPrefetch, fetchStrategy, _types.PrefetchPriority.Default, onInvalidate); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=prefetch.js.map -}), -"[project]/node_modules/next/dist/client/components/app-router-instance.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createMutableActionQueue: null, - dispatchNavigateAction: null, - dispatchTraverseAction: null, - getCurrentAppRouterState: null, - publicAppRouterInstance: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createMutableActionQueue: function() { - return createMutableActionQueue; - }, - dispatchNavigateAction: function() { - return dispatchNavigateAction; - }, - dispatchTraverseAction: function() { - return dispatchTraverseAction; - }, - getCurrentAppRouterState: function() { - return getCurrentAppRouterState; - }, - publicAppRouterInstance: function() { - return publicAppRouterInstance; - } -}); -const _routerreducertypes = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js [app-client] (ecmascript)"); -const _routerreducer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/router-reducer.js [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _isthenable = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/is-thenable.js [app-client] (ecmascript)"); -const _types = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/types.js [app-client] (ecmascript)"); -const _prefetch = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/segment-cache/prefetch.js [app-client] (ecmascript)"); -const _useactionqueue = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/use-action-queue.js [app-client] (ecmascript)"); -const _addbasepath = __turbopack_context__.r("[project]/node_modules/next/dist/client/add-base-path.js [app-client] (ecmascript)"); -const _approuterutils = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-utils.js [app-client] (ecmascript)"); -const _links = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/links.js [app-client] (ecmascript)"); -function runRemainingActions(actionQueue, setState) { - if (actionQueue.pending !== null) { - actionQueue.pending = actionQueue.pending.next; - if (actionQueue.pending !== null) { - runAction({ - actionQueue, - action: actionQueue.pending, - setState - }); - } - } else { - // Check for refresh when pending is already null - // This handles the case where a discarded server action completes - // after the navigation has already finished and the queue is empty - if (actionQueue.needsRefresh) { - actionQueue.needsRefresh = false; - actionQueue.dispatch({ - type: _routerreducertypes.ACTION_REFRESH - }, setState); - } - } -} -async function runAction({ actionQueue, action, setState }) { - const prevState = actionQueue.state; - actionQueue.pending = action; - const payload = action.payload; - const actionResult = actionQueue.action(prevState, payload); - function handleResult(nextState) { - // if we discarded this action, the state should also be discarded - if (action.discarded) { - // Check if the discarded server action revalidated data - if (action.payload.type === _routerreducertypes.ACTION_SERVER_ACTION && action.payload.didRevalidate) { - // The server action was discarded but it revalidated data, - // mark that we need to refresh after all actions complete - actionQueue.needsRefresh = true; - } - // Still need to run remaining actions even for discarded actions - // to potentially trigger the refresh - runRemainingActions(actionQueue, setState); - return; - } - actionQueue.state = nextState; - runRemainingActions(actionQueue, setState); - action.resolve(nextState); - } - // if the action is a promise, set up a callback to resolve it - if ((0, _isthenable.isThenable)(actionResult)) { - actionResult.then(handleResult, (err)=>{ - runRemainingActions(actionQueue, setState); - action.reject(err); - }); - } else { - handleResult(actionResult); - } -} -function dispatchAction(actionQueue, payload, setState) { - let resolvers = { - resolve: setState, - reject: ()=>{} - }; - // most of the action types are async with the exception of restore - // it's important that restore is handled quickly since it's fired on the popstate event - // and we don't want to add any delay on a back/forward nav - // this only creates a promise for the async actions - if (payload.type !== _routerreducertypes.ACTION_RESTORE) { - // Create the promise and assign the resolvers to the object. - const deferredPromise = new Promise((resolve, reject)=>{ - resolvers = { - resolve, - reject - }; - }); - (0, _react.startTransition)(()=>{ - // we immediately notify React of the pending promise -- the resolver is attached to the action node - // and will be called when the associated action promise resolves - setState(deferredPromise); - }); - } - const newAction = { - payload, - next: null, - resolve: resolvers.resolve, - reject: resolvers.reject - }; - // Check if the queue is empty - if (actionQueue.pending === null) { - // The queue is empty, so add the action and start it immediately - // Mark this action as the last in the queue - actionQueue.last = newAction; - runAction({ - actionQueue, - action: newAction, - setState - }); - } else if (payload.type === _routerreducertypes.ACTION_NAVIGATE || payload.type === _routerreducertypes.ACTION_RESTORE) { - // Navigations (including back/forward) take priority over any pending actions. - // Mark the pending action as discarded (so the state is never applied) and start the navigation action immediately. - actionQueue.pending.discarded = true; - // The rest of the current queue should still execute after this navigation. - // (Note that it can't contain any earlier navigations, because we always put those into `actionQueue.pending` by calling `runAction`) - newAction.next = actionQueue.pending.next; - runAction({ - actionQueue, - action: newAction, - setState - }); - } else { - // The queue is not empty, so add the action to the end of the queue - // It will be started by runRemainingActions after the previous action finishes - if (actionQueue.last !== null) { - actionQueue.last.next = newAction; - } - actionQueue.last = newAction; - } -} -let globalActionQueue = null; -function createMutableActionQueue(initialState, instrumentationHooks) { - const actionQueue = { - state: initialState, - dispatch: (payload, setState)=>dispatchAction(actionQueue, payload, setState), - action: async (state, action)=>{ - const result = (0, _routerreducer.reducer)(state, action); - return result; - }, - pending: null, - last: null, - onRouterTransitionStart: instrumentationHooks !== null && typeof instrumentationHooks.onRouterTransitionStart === 'function' ? instrumentationHooks.onRouterTransitionStart : null - }; - if (typeof window !== 'undefined') { - // The action queue is lazily created on hydration, but after that point - // it doesn't change. So we can store it in a global rather than pass - // it around everywhere via props/context. - if (globalActionQueue !== null) { - throw Object.defineProperty(new Error('Internal Next.js Error: createMutableActionQueue was called more ' + 'than once'), "__NEXT_ERROR_CODE", { - value: "E624", - enumerable: false, - configurable: true - }); - } - globalActionQueue = actionQueue; - } - return actionQueue; -} -function getCurrentAppRouterState() { - return globalActionQueue !== null ? globalActionQueue.state : null; -} -function getAppRouterActionQueue() { - if (globalActionQueue === null) { - throw Object.defineProperty(new Error('Internal Next.js error: Router action dispatched before initialization.'), "__NEXT_ERROR_CODE", { - value: "E668", - enumerable: false, - configurable: true - }); - } - return globalActionQueue; -} -function getProfilingHookForOnNavigationStart() { - if (globalActionQueue !== null) { - return globalActionQueue.onRouterTransitionStart; - } - return null; -} -function dispatchNavigateAction(href, navigateType, shouldScroll, linkInstanceRef) { - // TODO: This stuff could just go into the reducer. Leaving as-is for now - // since we're about to rewrite all the router reducer stuff anyway. - const url = new URL((0, _addbasepath.addBasePath)(href), location.href); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - (0, _links.setLinkForCurrentNavigation)(linkInstanceRef); - const onRouterTransitionStart = getProfilingHookForOnNavigationStart(); - if (onRouterTransitionStart !== null) { - onRouterTransitionStart(href, navigateType); - } - (0, _useactionqueue.dispatchAppRouterAction)({ - type: _routerreducertypes.ACTION_NAVIGATE, - url, - isExternalUrl: (0, _approuterutils.isExternalURL)(url), - locationSearch: location.search, - shouldScroll, - navigateType - }); -} -function dispatchTraverseAction(href, historyState) { - const onRouterTransitionStart = getProfilingHookForOnNavigationStart(); - if (onRouterTransitionStart !== null) { - onRouterTransitionStart(href, 'traverse'); - } - (0, _useactionqueue.dispatchAppRouterAction)({ - type: _routerreducertypes.ACTION_RESTORE, - url: new URL(href), - historyState - }); -} -const publicAppRouterInstance = { - back: ()=>window.history.back(), - forward: ()=>window.history.forward(), - prefetch: // data in the router reducer state; it writes into a global mutable - // cache. So we don't need to dispatch an action. - (href, options)=>{ - const actionQueue = getAppRouterActionQueue(); - const prefetchKind = options?.kind ?? _routerreducertypes.PrefetchKind.AUTO; - // We don't currently offer a way to issue a runtime prefetch via `router.prefetch()`. - // This will be possible when we update its API to not take a PrefetchKind. - let fetchStrategy; - switch(prefetchKind){ - case _routerreducertypes.PrefetchKind.AUTO: - { - // We default to PPR. We'll discover whether or not the route supports it with the initial prefetch. - fetchStrategy = _types.FetchStrategy.PPR; - break; - } - case _routerreducertypes.PrefetchKind.FULL: - { - fetchStrategy = _types.FetchStrategy.Full; - break; - } - default: - { - prefetchKind; - // Despite typescript thinking that this can't happen, - // we might get an unexpected value from user code. - // We don't know what they want, but we know they want a prefetch, - // so use the default. - fetchStrategy = _types.FetchStrategy.PPR; - } - } - (0, _prefetch.prefetch)(href, actionQueue.state.nextUrl, actionQueue.state.tree, fetchStrategy, options?.onInvalidate ?? null); - }, - replace: (href, options)=>{ - (0, _react.startTransition)(()=>{ - dispatchNavigateAction(href, 'replace', options?.scroll ?? true, null); - }); - }, - push: (href, options)=>{ - (0, _react.startTransition)(()=>{ - dispatchNavigateAction(href, 'push', options?.scroll ?? true, null); - }); - }, - refresh: ()=>{ - (0, _react.startTransition)(()=>{ - (0, _useactionqueue.dispatchAppRouterAction)({ - type: _routerreducertypes.ACTION_REFRESH - }); - }); - }, - hmrRefresh: ()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - (0, _react.startTransition)(()=>{ - (0, _useactionqueue.dispatchAppRouterAction)({ - type: _routerreducertypes.ACTION_HMR_REFRESH - }); - }); - } - } -}; -// Exists for debugging purposes. Don't use in application code. -if (typeof window !== 'undefined' && window.next) { - window.next.router = publicAppRouterInstance; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-router-instance.js.map -}), -"[project]/node_modules/next/dist/client/components/app-router-announcer.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "AppRouterAnnouncer", { - enumerable: true, - get: function() { - return AppRouterAnnouncer; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _reactdom = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-dom/index.js [app-client] (ecmascript)"); -const ANNOUNCER_TYPE = 'next-route-announcer'; -const ANNOUNCER_ID = '__next-route-announcer__'; -function getAnnouncerNode() { - const existingAnnouncer = document.getElementsByName(ANNOUNCER_TYPE)[0]; - if (existingAnnouncer?.shadowRoot?.childNodes[0]) { - return existingAnnouncer.shadowRoot.childNodes[0]; - } else { - const container = document.createElement(ANNOUNCER_TYPE); - container.style.cssText = 'position:absolute'; - const announcer = document.createElement('div'); - announcer.ariaLive = 'assertive'; - announcer.id = ANNOUNCER_ID; - announcer.role = 'alert'; - announcer.style.cssText = 'position:absolute;border:0;height:1px;margin:-1px;padding:0;width:1px;clip:rect(0 0 0 0);overflow:hidden;white-space:nowrap;word-wrap:normal'; - // Use shadow DOM here to avoid any potential CSS bleed - const shadow = container.attachShadow({ - mode: 'open' - }); - shadow.appendChild(announcer); - document.body.appendChild(container); - return announcer; - } -} -function AppRouterAnnouncer({ tree }) { - const [portalNode, setPortalNode] = (0, _react.useState)(null); - (0, _react.useEffect)(()=>{ - const announcer = getAnnouncerNode(); - setPortalNode(announcer); - return ()=>{ - const container = document.getElementsByTagName(ANNOUNCER_TYPE)[0]; - if (container?.isConnected) { - document.body.removeChild(container); - } - }; - }, []); - const [routeAnnouncement, setRouteAnnouncement] = (0, _react.useState)(''); - const previousTitle = (0, _react.useRef)(undefined); - (0, _react.useEffect)(()=>{ - let currentTitle = ''; - if (document.title) { - currentTitle = document.title; - } else { - const pageHeader = document.querySelector('h1'); - if (pageHeader) { - currentTitle = pageHeader.innerText || pageHeader.textContent || ''; - } - } - // Only announce the title change, but not for the first load because screen - // readers do that automatically. - if (previousTitle.current !== undefined && previousTitle.current !== currentTitle) { - setRouteAnnouncement(currentTitle); - } - previousTitle.current = currentTitle; - }, [ - tree - ]); - return portalNode ? /*#__PURE__*/ (0, _reactdom.createPortal)(routeAnnouncement, portalNode) : null; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-router-announcer.js.map -}), -"[project]/node_modules/next/dist/client/components/forbidden.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "forbidden", { - enumerable: true, - get: function() { - return forbidden; - } -}); -const _httpaccessfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js [app-client] (ecmascript)"); -// TODO: Add `forbidden` docs -/** - * @experimental - * This function allows you to render the [forbidden.js file](https://nextjs.org/docs/app/api-reference/file-conventions/forbidden) - * within a route segment as well as inject a tag. - * - * `forbidden()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * Read more: [Next.js Docs: `forbidden`](https://nextjs.org/docs/app/api-reference/functions/forbidden) - */ const DIGEST = `${_httpaccessfallback.HTTP_ERROR_FALLBACK_ERROR_CODE};403`; -function forbidden() { - if ("TURBOPACK compile-time truthy", 1) { - throw Object.defineProperty(new Error(`\`forbidden()\` is experimental and only allowed to be enabled when \`experimental.authInterrupts\` is enabled.`), "__NEXT_ERROR_CODE", { - value: "E488", - enumerable: false, - configurable: true - }); - } - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=forbidden.js.map -}), -"[project]/node_modules/next/dist/client/components/unauthorized.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "unauthorized", { - enumerable: true, - get: function() { - return unauthorized; - } -}); -const _httpaccessfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js [app-client] (ecmascript)"); -// TODO: Add `unauthorized` docs -/** - * @experimental - * This function allows you to render the [unauthorized.js file](https://nextjs.org/docs/app/api-reference/file-conventions/unauthorized) - * within a route segment as well as inject a tag. - * - * `unauthorized()` can be used in - * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components), - * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and - * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations). - * - * - * Read more: [Next.js Docs: `unauthorized`](https://nextjs.org/docs/app/api-reference/functions/unauthorized) - */ const DIGEST = `${_httpaccessfallback.HTTP_ERROR_FALLBACK_ERROR_CODE};401`; -function unauthorized() { - if ("TURBOPACK compile-time truthy", 1) { - throw Object.defineProperty(new Error(`\`unauthorized()\` is experimental and only allowed to be used when \`experimental.authInterrupts\` is enabled.`), "__NEXT_ERROR_CODE", { - value: "E411", - enumerable: false, - configurable: true - }); - } - const error = Object.defineProperty(new Error(DIGEST), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = DIGEST; - throw error; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=unauthorized.js.map -}), -"[project]/node_modules/next/dist/client/components/unstable-rethrow.browser.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "unstable_rethrow", { - enumerable: true, - get: function() { - return unstable_rethrow; - } -}); -const _bailouttocsr = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js [app-client] (ecmascript)"); -const _isnextroutererror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/is-next-router-error.js [app-client] (ecmascript)"); -function unstable_rethrow(error) { - if ((0, _isnextroutererror.isNextRouterError)(error) || (0, _bailouttocsr.isBailoutToCSRError)(error)) { - throw error; - } - if (error instanceof Error && 'cause' in error) { - unstable_rethrow(error.cause); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=unstable-rethrow.browser.js.map -}), -"[project]/node_modules/next/dist/client/components/hooks-server-context.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DynamicServerError: null, - isDynamicServerError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DynamicServerError: function() { - return DynamicServerError; - }, - isDynamicServerError: function() { - return isDynamicServerError; - } -}); -const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'; -class DynamicServerError extends Error { - constructor(description){ - super(`Dynamic server usage: ${description}`), this.description = description, this.digest = DYNAMIC_ERROR_CODE; - } -} -function isDynamicServerError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') { - return false; - } - return err.digest === DYNAMIC_ERROR_CODE; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=hooks-server-context.js.map -}), -"[project]/node_modules/next/dist/client/components/static-generation-bailout.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - StaticGenBailoutError: null, - isStaticGenBailoutError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - StaticGenBailoutError: function() { - return StaticGenBailoutError; - }, - isStaticGenBailoutError: function() { - return isStaticGenBailoutError; - } -}); -const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'; -class StaticGenBailoutError extends Error { - constructor(...args){ - super(...args), this.code = NEXT_STATIC_GEN_BAILOUT; - } -} -function isStaticGenBailoutError(error) { - if (typeof error !== 'object' || error === null || !('code' in error)) { - return false; - } - return error.code === NEXT_STATIC_GEN_BAILOUT; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=static-generation-bailout.js.map -}), -"[project]/node_modules/next/dist/client/components/unstable-rethrow.server.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "unstable_rethrow", { - enumerable: true, - get: function() { - return unstable_rethrow; - } -}); -const _dynamicrenderingutils = __turbopack_context__.r("[project]/node_modules/next/dist/server/dynamic-rendering-utils.js [app-client] (ecmascript)"); -const _ispostpone = __turbopack_context__.r("[project]/node_modules/next/dist/server/lib/router-utils/is-postpone.js [app-client] (ecmascript)"); -const _bailouttocsr = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js [app-client] (ecmascript)"); -const _isnextroutererror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/is-next-router-error.js [app-client] (ecmascript)"); -const _dynamicrendering = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/dynamic-rendering.js [app-client] (ecmascript)"); -const _hooksservercontext = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/hooks-server-context.js [app-client] (ecmascript)"); -function unstable_rethrow(error) { - if ((0, _isnextroutererror.isNextRouterError)(error) || (0, _bailouttocsr.isBailoutToCSRError)(error) || (0, _hooksservercontext.isDynamicServerError)(error) || (0, _dynamicrendering.isDynamicPostpone)(error) || (0, _ispostpone.isPostpone)(error) || (0, _dynamicrenderingutils.isHangingPromiseRejectionError)(error) || (0, _dynamicrendering.isPrerenderInterruptedError)(error)) { - throw error; - } - if (error instanceof Error && 'cause' in error) { - unstable_rethrow(error.cause); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=unstable-rethrow.server.js.map -}), -"[project]/node_modules/next/dist/client/components/unstable-rethrow.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * This function should be used to rethrow internal Next.js errors so that they can be handled by the framework. - * When wrapping an API that uses errors to interrupt control flow, you should use this function before you do any error handling. - * This function will rethrow the error if it is a Next.js error so it can be handled, otherwise it will do nothing. - * - * Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow) - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "unstable_rethrow", { - enumerable: true, - get: function() { - return unstable_rethrow; - } -}); -const unstable_rethrow = typeof window === 'undefined' ? __turbopack_context__.r("[project]/node_modules/next/dist/client/components/unstable-rethrow.server.js [app-client] (ecmascript)").unstable_rethrow : __turbopack_context__.r("[project]/node_modules/next/dist/client/components/unstable-rethrow.browser.js [app-client] (ecmascript)").unstable_rethrow; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=unstable-rethrow.js.map -}), -"[project]/node_modules/next/dist/client/components/navigation.react-server.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ReadonlyURLSearchParams: null, - RedirectType: null, - forbidden: null, - notFound: null, - permanentRedirect: null, - redirect: null, - unauthorized: null, - unstable_isUnrecognizedActionError: null, - unstable_rethrow: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ReadonlyURLSearchParams: function() { - return _readonlyurlsearchparams.ReadonlyURLSearchParams; - }, - RedirectType: function() { - return _redirecterror.RedirectType; - }, - forbidden: function() { - return _forbidden.forbidden; - }, - notFound: function() { - return _notfound.notFound; - }, - permanentRedirect: function() { - return _redirect.permanentRedirect; - }, - redirect: function() { - return _redirect.redirect; - }, - unauthorized: function() { - return _unauthorized.unauthorized; - }, - unstable_isUnrecognizedActionError: function() { - return unstable_isUnrecognizedActionError; - }, - unstable_rethrow: function() { - return _unstablerethrow.unstable_rethrow; - } -}); -const _readonlyurlsearchparams = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/readonly-url-search-params.js [app-client] (ecmascript)"); -const _redirect = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect.js [app-client] (ecmascript)"); -const _redirecterror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-error.js [app-client] (ecmascript)"); -const _notfound = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/not-found.js [app-client] (ecmascript)"); -const _forbidden = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/forbidden.js [app-client] (ecmascript)"); -const _unauthorized = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/unauthorized.js [app-client] (ecmascript)"); -const _unstablerethrow = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/unstable-rethrow.js [app-client] (ecmascript)"); -function unstable_isUnrecognizedActionError() { - throw Object.defineProperty(new Error('`unstable_isUnrecognizedActionError` can only be used on the client.'), "__NEXT_ERROR_CODE", { - value: "E776", - enumerable: false, - configurable: true - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=navigation.react-server.js.map -}), -"[project]/node_modules/next/dist/client/components/navigation.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ReadonlyURLSearchParams: null, - RedirectType: null, - ServerInsertedHTMLContext: null, - forbidden: null, - notFound: null, - permanentRedirect: null, - redirect: null, - unauthorized: null, - unstable_isUnrecognizedActionError: null, - unstable_rethrow: null, - useParams: null, - usePathname: null, - useRouter: null, - useSearchParams: null, - useSelectedLayoutSegment: null, - useSelectedLayoutSegments: null, - useServerInsertedHTML: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - // We need the same class that was used to instantiate the context value - // Otherwise instanceof checks will fail in usercode - ReadonlyURLSearchParams: function() { - return _hooksclientcontextsharedruntime.ReadonlyURLSearchParams; - }, - RedirectType: function() { - return _navigationreactserver.RedirectType; - }, - ServerInsertedHTMLContext: function() { - return _serverinsertedhtmlsharedruntime.ServerInsertedHTMLContext; - }, - forbidden: function() { - return _navigationreactserver.forbidden; - }, - notFound: function() { - return _navigationreactserver.notFound; - }, - permanentRedirect: function() { - return _navigationreactserver.permanentRedirect; - }, - redirect: function() { - return _navigationreactserver.redirect; - }, - unauthorized: function() { - return _navigationreactserver.unauthorized; - }, - unstable_isUnrecognizedActionError: function() { - return _unrecognizedactionerror.unstable_isUnrecognizedActionError; - }, - unstable_rethrow: function() { - return _navigationreactserver.unstable_rethrow; - }, - useParams: function() { - return useParams; - }, - usePathname: function() { - return usePathname; - }, - useRouter: function() { - return useRouter; - }, - useSearchParams: function() { - return useSearchParams; - }, - useSelectedLayoutSegment: function() { - return useSelectedLayoutSegment; - }, - useSelectedLayoutSegments: function() { - return useSelectedLayoutSegments; - }, - useServerInsertedHTML: function() { - return _serverinsertedhtmlsharedruntime.useServerInsertedHTML; - } -}); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -const _hooksclientcontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js [app-client] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const _serverinsertedhtmlsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js [app-client] (ecmascript)"); -const _unrecognizedactionerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/unrecognized-action-error.js [app-client] (ecmascript)"); -const _navigationreactserver = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/navigation.react-server.js [app-client] (ecmascript)"); -const useDynamicRouteParams = typeof window === 'undefined' ? __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/dynamic-rendering.js [app-client] (ecmascript)").useDynamicRouteParams : undefined; -const useDynamicSearchParams = typeof window === 'undefined' ? __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/dynamic-rendering.js [app-client] (ecmascript)").useDynamicSearchParams : undefined; -function useSearchParams() { - useDynamicSearchParams?.('useSearchParams()'); - const searchParams = (0, _react.useContext)(_hooksclientcontextsharedruntime.SearchParamsContext); - // In the case where this is `null`, the compat types added in - // `next-env.d.ts` will add a new overload that changes the return type to - // include `null`. - const readonlySearchParams = (0, _react.useMemo)(()=>{ - if (!searchParams) { - // When the router is not ready in pages, we won't have the search params - // available. - return null; - } - return new _hooksclientcontextsharedruntime.ReadonlyURLSearchParams(searchParams); - }, [ - searchParams - ]); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in _react.default) { - const navigationPromises = (0, _react.use)(_hooksclientcontextsharedruntime.NavigationPromisesContext); - if (navigationPromises) { - return (0, _react.use)(navigationPromises.searchParams); - } - } - return readonlySearchParams; -} -function usePathname() { - useDynamicRouteParams?.('usePathname()'); - // In the case where this is `null`, the compat types added in `next-env.d.ts` - // will add a new overload that changes the return type to include `null`. - const pathname = (0, _react.useContext)(_hooksclientcontextsharedruntime.PathnameContext); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in _react.default) { - const navigationPromises = (0, _react.use)(_hooksclientcontextsharedruntime.NavigationPromisesContext); - if (navigationPromises) { - return (0, _react.use)(navigationPromises.pathname); - } - } - return pathname; -} -function useRouter() { - const router = (0, _react.useContext)(_approutercontextsharedruntime.AppRouterContext); - if (router === null) { - throw Object.defineProperty(new Error('invariant expected app router to be mounted'), "__NEXT_ERROR_CODE", { - value: "E238", - enumerable: false, - configurable: true - }); - } - return router; -} -function useParams() { - useDynamicRouteParams?.('useParams()'); - const params = (0, _react.useContext)(_hooksclientcontextsharedruntime.PathParamsContext); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in _react.default) { - const navigationPromises = (0, _react.use)(_hooksclientcontextsharedruntime.NavigationPromisesContext); - if (navigationPromises) { - return (0, _react.use)(navigationPromises.params); - } - } - return params; -} -function useSelectedLayoutSegments(parallelRouteKey = 'children') { - useDynamicRouteParams?.('useSelectedLayoutSegments()'); - const context = (0, _react.useContext)(_approutercontextsharedruntime.LayoutRouterContext); - // @ts-expect-error This only happens in `pages`. Type is overwritten in navigation.d.ts - if (!context) return null; - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && 'use' in _react.default) { - const navigationPromises = (0, _react.use)(_hooksclientcontextsharedruntime.NavigationPromisesContext); - if (navigationPromises) { - const promise = navigationPromises.selectedLayoutSegmentsPromises?.get(parallelRouteKey); - if (promise) { - // We should always have a promise here, but if we don't, it's not worth erroring over. - // We just won't be able to instrument it, but can still provide the value. - return (0, _react.use)(promise); - } - } - } - return (0, _segment.getSelectedLayoutSegmentPath)(context.parentTree, parallelRouteKey); -} -function useSelectedLayoutSegment(parallelRouteKey = 'children') { - useDynamicRouteParams?.('useSelectedLayoutSegment()'); - const navigationPromises = (0, _react.useContext)(_hooksclientcontextsharedruntime.NavigationPromisesContext); - const selectedLayoutSegments = useSelectedLayoutSegments(parallelRouteKey); - // Instrument with Suspense DevTools (dev-only) - if (("TURBOPACK compile-time value", "development") !== 'production' && navigationPromises && 'use' in _react.default) { - const promise = navigationPromises.selectedLayoutSegmentPromises?.get(parallelRouteKey); - if (promise) { - // We should always have a promise here, but if we don't, it's not worth erroring over. - // We just won't be able to instrument it, but can still provide the value. - return (0, _react.use)(promise); - } - } - return (0, _segment.computeSelectedLayoutSegment)(selectedLayoutSegments, parallelRouteKey); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=navigation.js.map -}), -"[project]/node_modules/next/dist/client/components/redirect-boundary.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - RedirectBoundary: null, - RedirectErrorBoundary: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - RedirectBoundary: function() { - return RedirectBoundary; - }, - RedirectErrorBoundary: function() { - return RedirectErrorBoundary; - } -}); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _navigation = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/navigation.js [app-client] (ecmascript)"); -const _redirect = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect.js [app-client] (ecmascript)"); -const _redirecterror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-error.js [app-client] (ecmascript)"); -function HandleRedirect({ redirect, reset, redirectType }) { - const router = (0, _navigation.useRouter)(); - (0, _react.useEffect)(()=>{ - _react.default.startTransition(()=>{ - if (redirectType === _redirecterror.RedirectType.push) { - router.push(redirect, {}); - } else { - router.replace(redirect, {}); - } - reset(); - }); - }, [ - redirect, - redirectType, - reset, - router - ]); - return null; -} -class RedirectErrorBoundary extends _react.default.Component { - constructor(props){ - super(props); - this.state = { - redirect: null, - redirectType: null - }; - } - static getDerivedStateFromError(error) { - if ((0, _redirecterror.isRedirectError)(error)) { - const url = (0, _redirect.getURLFromRedirectError)(error); - const redirectType = (0, _redirect.getRedirectTypeFromError)(error); - if ('handled' in error) { - // The redirect was already handled. We'll still catch the redirect error - // so that we can remount the subtree, but we don't actually need to trigger the - // router.push. - return { - redirect: null, - redirectType: null - }; - } - return { - redirect: url, - redirectType - }; - } - // Re-throw if error is not for redirect - throw error; - } - // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version. - render() { - const { redirect, redirectType } = this.state; - if (redirect !== null && redirectType !== null) { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(HandleRedirect, { - redirect: redirect, - redirectType: redirectType, - reset: ()=>this.setState({ - redirect: null - }) - }); - } - return this.props.children; - } -} -function RedirectBoundary({ children }) { - const router = (0, _navigation.useRouter)(); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(RedirectErrorBoundary, { - router: router, - children: children - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=redirect-boundary.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "findHeadInCache", { - enumerable: true, - get: function() { - return findHeadInCache; - } -}); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const _createroutercachekey = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js [app-client] (ecmascript)"); -function findHeadInCache(cache, parallelRoutes) { - return findHeadInCacheImpl(cache, parallelRoutes, '', ''); -} -function findHeadInCacheImpl(cache, parallelRoutes, keyPrefix, keyPrefixWithoutSearchParams) { - const isLastItem = Object.keys(parallelRoutes).length === 0; - if (isLastItem) { - // Returns the entire Cache Node of the segment whose head we will render. - return [ - cache, - keyPrefix, - keyPrefixWithoutSearchParams - ]; - } - // First try the 'children' parallel route if it exists - // when starting from the "root", this corresponds with the main page component - const parallelRoutesKeys = Object.keys(parallelRoutes).filter((key)=>key !== 'children'); - // if we are at the root, we need to check the children slot first - if ('children' in parallelRoutes) { - parallelRoutesKeys.unshift('children'); - } - for (const key of parallelRoutesKeys){ - const [segment, childParallelRoutes] = parallelRoutes[key]; - // If the parallel is not matched and using the default segment, - // skip searching the head from it. - if (segment === _segment.DEFAULT_SEGMENT_KEY) { - continue; - } - const childSegmentMap = cache.parallelRoutes.get(key); - if (!childSegmentMap) { - continue; - } - const cacheKey = (0, _createroutercachekey.createRouterCacheKey)(segment); - const cacheKeyWithoutSearchParams = (0, _createroutercachekey.createRouterCacheKey)(segment, true); - const cacheNode = childSegmentMap.get(cacheKey); - if (!cacheNode) { - continue; - } - const item = findHeadInCacheImpl(cacheNode, childParallelRoutes, keyPrefix + '/' + cacheKey, keyPrefix + '/' + cacheKeyWithoutSearchParams); - if (item) { - return item; - } - } - return null; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=find-head-in-cache.js.map -}), -"[project]/node_modules/next/dist/client/components/unresolved-thenable.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Create a "Thenable" that does not resolve. This is used to suspend indefinitely when data is not available yet. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "unresolvedThenable", { - enumerable: true, - get: function() { - return unresolvedThenable; - } -}); -const unresolvedThenable = { - then: ()=>{} -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=unresolved-thenable.js.map -}), -"[project]/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - GracefulDegradeBoundary: null, - default: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - GracefulDegradeBoundary: function() { - return GracefulDegradeBoundary; - }, - default: function() { - return _default; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -function getDomNodeAttributes(node) { - const result = {}; - for(let i = 0; i < node.attributes.length; i++){ - const attr = node.attributes[i]; - result[attr.name] = attr.value; - } - return result; -} -class GracefulDegradeBoundary extends _react.Component { - constructor(props){ - super(props); - this.state = { - hasError: false - }; - this.rootHtml = ''; - this.htmlAttributes = {}; - this.htmlRef = /*#__PURE__*/ (0, _react.createRef)(); - } - static getDerivedStateFromError(_) { - return { - hasError: true - }; - } - componentDidMount() { - const htmlNode = this.htmlRef.current; - if (this.state.hasError && htmlNode) { - // Reapply the cached HTML attributes to the root element - Object.entries(this.htmlAttributes).forEach(([key, value])=>{ - htmlNode.setAttribute(key, value); - }); - } - } - render() { - const { hasError } = this.state; - // Cache the root HTML content on the first render - if (typeof window !== 'undefined' && !this.rootHtml) { - this.rootHtml = document.documentElement.innerHTML; - this.htmlAttributes = getDomNodeAttributes(document.documentElement); - } - if (hasError) { - // Render the current HTML content without hydration - return /*#__PURE__*/ (0, _jsxruntime.jsx)("html", { - ref: this.htmlRef, - suppressHydrationWarning: true, - dangerouslySetInnerHTML: { - __html: this.rootHtml - } - }); - } - return this.props.children; - } -} -const _default = GracefulDegradeBoundary; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=graceful-degrade-boundary.js.map -}), -"[project]/node_modules/next/dist/client/components/errors/root-error-boundary.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return RootErrorBoundary; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _gracefuldegradeboundary = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js [app-client] (ecmascript)")); -const _errorboundary = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/error-boundary.js [app-client] (ecmascript)"); -const _isbot = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/is-bot.js [app-client] (ecmascript)"); -const isBotUserAgent = typeof window !== 'undefined' && (0, _isbot.isBot)(window.navigator.userAgent); -function RootErrorBoundary({ children, errorComponent, errorStyles, errorScripts }) { - if (isBotUserAgent) { - // Preserve existing DOM/HTML for bots to avoid replacing content with an error UI - // and to keep the original SSR output intact. - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_gracefuldegradeboundary.default, { - children: children - }); - } - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_errorboundary.ErrorBoundary, { - errorComponent: errorComponent, - errorStyles: errorStyles, - errorScripts: errorScripts, - children: children - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=root-error-boundary.js.map -}), -"[project]/node_modules/next/dist/client/components/navigation-devtools.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createNestedLayoutNavigationPromises: null, - createRootNavigationPromises: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createNestedLayoutNavigationPromises: function() { - return createNestedLayoutNavigationPromises; - }, - createRootNavigationPromises: function() { - return createRootNavigationPromises; - } -}); -const _hooksclientcontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js [app-client] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const layoutSegmentPromisesCache = new WeakMap(); -/** - * Creates instrumented promises for layout segment hooks at a given tree level. - * This is dev-only code for React Suspense DevTools instrumentation. - */ function createLayoutSegmentPromises(tree) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Check if we already have cached promises for this tree - const cached = layoutSegmentPromisesCache.get(tree); - if (cached) { - return cached; - } - // Create new promises and cache them - const segmentPromises = new Map(); - const segmentsPromises = new Map(); - const parallelRoutes = tree[1]; - for (const parallelRouteKey of Object.keys(parallelRoutes)){ - const segments = (0, _segment.getSelectedLayoutSegmentPath)(tree, parallelRouteKey); - // Use the shared logic to compute the segment value - const segment = (0, _segment.computeSelectedLayoutSegment)(segments, parallelRouteKey); - segmentPromises.set(parallelRouteKey, (0, _hooksclientcontextsharedruntime.createDevToolsInstrumentedPromise)('useSelectedLayoutSegment', segment)); - segmentsPromises.set(parallelRouteKey, (0, _hooksclientcontextsharedruntime.createDevToolsInstrumentedPromise)('useSelectedLayoutSegments', segments)); - } - const result = { - selectedLayoutSegmentPromises: segmentPromises, - selectedLayoutSegmentsPromises: segmentsPromises - }; - // Cache the result for future renders - layoutSegmentPromisesCache.set(tree, result); - return result; -} -const rootNavigationPromisesCache = new WeakMap(); -function createRootNavigationPromises(tree, pathname, searchParams, pathParams) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - // Create stable cache keys from the values - const searchParamsString = searchParams.toString(); - const pathParamsString = JSON.stringify(pathParams); - const cacheKey = `${pathname}:${searchParamsString}:${pathParamsString}`; - // Get or create the cache for this tree - let treeCache = rootNavigationPromisesCache.get(tree); - if (!treeCache) { - treeCache = new Map(); - rootNavigationPromisesCache.set(tree, treeCache); - } - // Check if we have cached promises for this combination - const cached = treeCache.get(cacheKey); - if (cached) { - return cached; - } - const readonlySearchParams = new _hooksclientcontextsharedruntime.ReadonlyURLSearchParams(searchParams); - const layoutSegmentPromises = createLayoutSegmentPromises(tree); - const promises = { - pathname: (0, _hooksclientcontextsharedruntime.createDevToolsInstrumentedPromise)('usePathname', pathname), - searchParams: (0, _hooksclientcontextsharedruntime.createDevToolsInstrumentedPromise)('useSearchParams', readonlySearchParams), - params: (0, _hooksclientcontextsharedruntime.createDevToolsInstrumentedPromise)('useParams', pathParams), - ...layoutSegmentPromises - }; - treeCache.set(cacheKey, promises); - return promises; -} -const nestedLayoutPromisesCache = new WeakMap(); -function createNestedLayoutNavigationPromises(tree, parentNavPromises) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - const parallelRoutes = tree[1]; - const parallelRouteKeys = Object.keys(parallelRoutes); - // Only create promises if there are parallel routes at this level - if (parallelRouteKeys.length === 0) { - return null; - } - // Get or create the cache for this tree - let treeCache = nestedLayoutPromisesCache.get(tree); - if (!treeCache) { - treeCache = new Map(); - nestedLayoutPromisesCache.set(tree, treeCache); - } - // Check if we have cached promises for this parent combination - const cached = treeCache.get(parentNavPromises); - if (cached) { - return cached; - } - // Create merged promises - const layoutSegmentPromises = createLayoutSegmentPromises(tree); - const promises = { - ...parentNavPromises, - ...layoutSegmentPromises - }; - treeCache.set(parentNavPromises, promises); - return promises; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=navigation-devtools.js.map -}), -"[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use client'; -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HTTPAccessFallbackBoundary", { - enumerable: true, - get: function() { - return HTTPAccessFallbackBoundary; - } -}); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _navigationuntracked = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/navigation-untracked.js [app-client] (ecmascript)"); -const _httpaccessfallback = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js [app-client] (ecmascript)"); -const _warnonce = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-client] (ecmascript)"); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -class HTTPAccessFallbackErrorBoundary extends _react.default.Component { - constructor(props){ - super(props); - this.state = { - triggeredStatus: undefined, - previousPathname: props.pathname - }; - } - componentDidCatch() { - if (("TURBOPACK compile-time value", "development") === 'development' && this.props.missingSlots && this.props.missingSlots.size > 0 && // A missing children slot is the typical not-found case, so no need to warn - !this.props.missingSlots.has('children')) { - let warningMessage = 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\n' + 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\n\n'; - const formattedSlots = Array.from(this.props.missingSlots).sort((a, b)=>a.localeCompare(b)).map((slot)=>`@${slot}`).join(', '); - warningMessage += 'Missing slots: ' + formattedSlots; - (0, _warnonce.warnOnce)(warningMessage); - } - } - static getDerivedStateFromError(error) { - if ((0, _httpaccessfallback.isHTTPAccessFallbackError)(error)) { - const httpStatus = (0, _httpaccessfallback.getAccessFallbackHTTPStatus)(error); - return { - triggeredStatus: httpStatus - }; - } - // Re-throw if error is not for 404 - throw error; - } - static getDerivedStateFromProps(props, state) { - /** - * Handles reset of the error boundary when a navigation happens. - * Ensures the error boundary does not stay enabled when navigating to a new page. - * Approach of setState in render is safe as it checks the previous pathname and then overrides - * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders - */ if (props.pathname !== state.previousPathname && state.triggeredStatus) { - return { - triggeredStatus: undefined, - previousPathname: props.pathname - }; - } - return { - triggeredStatus: state.triggeredStatus, - previousPathname: props.pathname - }; - } - render() { - const { notFound, forbidden, unauthorized, children } = this.props; - const { triggeredStatus } = this.state; - const errorComponents = { - [_httpaccessfallback.HTTPAccessErrorStatus.NOT_FOUND]: notFound, - [_httpaccessfallback.HTTPAccessErrorStatus.FORBIDDEN]: forbidden, - [_httpaccessfallback.HTTPAccessErrorStatus.UNAUTHORIZED]: unauthorized - }; - if (triggeredStatus) { - const isNotFound = triggeredStatus === _httpaccessfallback.HTTPAccessErrorStatus.NOT_FOUND && notFound; - const isForbidden = triggeredStatus === _httpaccessfallback.HTTPAccessErrorStatus.FORBIDDEN && forbidden; - const isUnauthorized = triggeredStatus === _httpaccessfallback.HTTPAccessErrorStatus.UNAUTHORIZED && unauthorized; - // If there's no matched boundary in this layer, keep throwing the error by rendering the children - if (!(isNotFound || isForbidden || isUnauthorized)) { - return children; - } - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("meta", { - name: "robots", - content: "noindex" - }), - ("TURBOPACK compile-time value", "development") === 'development' && /*#__PURE__*/ (0, _jsxruntime.jsx)("meta", { - name: "boundary-next-error", - content: (0, _httpaccessfallback.getAccessFallbackErrorTypeByStatus)(triggeredStatus) - }), - errorComponents[triggeredStatus] - ] - }); - } - return children; - } -} -function HTTPAccessFallbackBoundary({ notFound, forbidden, unauthorized, children }) { - // When we're rendering the missing params shell, this will return null. This - // is because we won't be rendering any not found boundaries or error - // boundaries for the missing params shell. When this runs on the client - // (where these error can occur), we will get the correct pathname. - const pathname = (0, _navigationuntracked.useUntrackedPathname)(); - const missingSlots = (0, _react.useContext)(_approutercontextsharedruntime.MissingSlotContext); - const hasErrorFallback = !!(notFound || forbidden || unauthorized); - if (hasErrorFallback) { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(HTTPAccessFallbackErrorBoundary, { - pathname: pathname, - notFound: notFound, - forbidden: forbidden, - unauthorized: unauthorized, - missingSlots: missingSlots, - children: children - }); - } - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_jsxruntime.Fragment, { - children: children - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=error-boundary.js.map -}), -"[project]/node_modules/next/dist/client/components/dev-root-http-access-fallback-boundary.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DevRootHTTPAccessFallbackBoundary: null, - bailOnRootNotFound: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DevRootHTTPAccessFallbackBoundary: function() { - return DevRootHTTPAccessFallbackBoundary; - }, - bailOnRootNotFound: function() { - return bailOnRootNotFound; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _errorboundary = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js [app-client] (ecmascript)"); -function bailOnRootNotFound() { - throw Object.defineProperty(new Error('notFound() is not allowed to use in root layout'), "__NEXT_ERROR_CODE", { - value: "E192", - enumerable: false, - configurable: true - }); -} -function NotAllowedRootHTTPFallbackError() { - bailOnRootNotFound(); - return null; -} -function DevRootHTTPAccessFallbackBoundary({ children }) { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_errorboundary.HTTPAccessFallbackBoundary, { - notFound: /*#__PURE__*/ (0, _jsxruntime.jsx)(NotAllowedRootHTTPFallbackError, {}), - children: children - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=dev-root-http-access-fallback-boundary.js.map -}), -"[project]/node_modules/next/dist/client/dev/hot-reloader/shared.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - REACT_REFRESH_FULL_RELOAD: null, - REACT_REFRESH_FULL_RELOAD_FROM_ERROR: null, - reportInvalidHmrMessage: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - REACT_REFRESH_FULL_RELOAD: function() { - return REACT_REFRESH_FULL_RELOAD; - }, - REACT_REFRESH_FULL_RELOAD_FROM_ERROR: function() { - return REACT_REFRESH_FULL_RELOAD_FROM_ERROR; - }, - reportInvalidHmrMessage: function() { - return reportInvalidHmrMessage; - } -}); -const REACT_REFRESH_FULL_RELOAD = '[Fast Refresh] performing full reload\n\n' + "Fast Refresh will perform a full reload when you edit a file that's imported by modules outside of the React rendering tree.\n" + 'You might have a file which exports a React component but also exports a value that is imported by a non-React component file.\n' + 'Consider migrating the non-React component export to a separate file and importing it into both files.\n\n' + 'It is also possible the parent component of the component you edited is a class component, which disables Fast Refresh.\n' + 'Fast Refresh requires at least one parent function component in your React tree.'; -const REACT_REFRESH_FULL_RELOAD_FROM_ERROR = '[Fast Refresh] performing full reload because your application had an unrecoverable error'; -function reportInvalidHmrMessage(message, err) { - console.warn('[HMR] Invalid message: ' + JSON.stringify(message) + '\n' + (err instanceof Error && err?.stack || '')); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=shared.js.map -}), -"[project]/node_modules/next/dist/client/dev/hot-reloader/get-socket-url.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getSocketUrl", { - enumerable: true, - get: function() { - return getSocketUrl; - } -}); -const _normalizedassetprefix = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/normalized-asset-prefix.js [app-client] (ecmascript)"); -function getSocketProtocol(assetPrefix) { - let protocol = window.location.protocol; - try { - // assetPrefix is a url - protocol = new URL(assetPrefix).protocol; - } catch {} - return protocol === 'http:' ? 'ws:' : 'wss:'; -} -function getSocketUrl(assetPrefix) { - const prefix = (0, _normalizedassetprefix.normalizedAssetPrefix)(assetPrefix); - const protocol = getSocketProtocol(assetPrefix || ''); - if (URL.canParse(prefix)) { - // since normalized asset prefix is ensured to be a URL format, - // we can safely replace the protocol - return prefix.replace(/^http/, 'ws'); - } - const { hostname, port } = window.location; - return `${protocol}//${hostname}${port ? `:${port}` : ''}${prefix}`; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=get-socket-url.js.map -}), -"[project]/node_modules/next/dist/client/dev/hot-reloader/app/web-socket.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createProcessTurbopackMessage: null, - createWebSocket: null, - useWebSocketPing: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createProcessTurbopackMessage: function() { - return createProcessTurbopackMessage; - }, - createWebSocket: function() { - return createWebSocket; - }, - useWebSocketPing: function() { - return useWebSocketPing; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -const _getsocketurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/hot-reloader/get-socket-url.js [app-client] (ecmascript)"); -const _hotreloadertypes = __turbopack_context__.r("[project]/node_modules/next/dist/server/dev/hot-reloader-types.js [app-client] (ecmascript)"); -const _shared = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/hot-reloader/shared.js [app-client] (ecmascript)"); -const _hotreloaderapp = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/hot-reloader/app/hot-reloader-app.js [app-client] (ecmascript)"); -const _forwardlogs = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/forward-logs.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -const _constants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/constants.js [app-client] (ecmascript)"); -let reconnections = 0; -let reloading = false; -let serverSessionId = null; -let mostRecentCompilationHash = null; -function createWebSocket(assetPrefix, staticIndicatorState) { - if (!self.__next_r) { - throw Object.defineProperty(new _invarianterror.InvariantError(`Expected a request ID to be defined for the document via self.__next_r.`), "__NEXT_ERROR_CODE", { - value: "E806", - enumerable: false, - configurable: true - }); - } - let webSocket; - let timer; - const sendMessage = (data)=>{ - if (webSocket && webSocket.readyState === webSocket.OPEN) { - webSocket.send(data); - } - }; - const processTurbopackMessage = createProcessTurbopackMessage(sendMessage); - function init() { - if (webSocket) { - webSocket.close(); - } - const newWebSocket = new window.WebSocket(`${(0, _getsocketurl.getSocketUrl)(assetPrefix)}/_next/webpack-hmr?id=${self.__next_r}`); - newWebSocket.binaryType = 'arraybuffer'; - function handleOnline() { - _forwardlogs.logQueue.onSocketReady(newWebSocket); - reconnections = 0; - window.console.log('[HMR] connected'); - } - function handleMessage(event) { - // While the page is reloading, don't respond to any more messages. - if (reloading) { - return; - } - try { - const message = event.data instanceof ArrayBuffer ? parseBinaryMessage(event.data) : JSON.parse(event.data); - // Check for server restart in Turbopack mode - if (message.type === _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED) { - if (serverSessionId !== null && serverSessionId !== message.data.sessionId) { - // Either the server's session id has changed and it's a new server, or - // it's been too long since we disconnected and we should reload the page. - window.location.reload(); - reloading = true; - return; - } - serverSessionId = message.data.sessionId; - } - // Track webpack compilation hash for server restart detection - if (message.type === _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SYNC && 'hash' in message) { - // If we had previously reconnected and the hash changed, the server may have restarted - if (mostRecentCompilationHash !== null && mostRecentCompilationHash !== message.hash) { - window.location.reload(); - reloading = true; - return; - } - mostRecentCompilationHash = message.hash; - } - (0, _hotreloaderapp.processMessage)(message, sendMessage, processTurbopackMessage, staticIndicatorState); - } catch (err) { - (0, _shared.reportInvalidHmrMessage)(event, err); - } - } - function handleDisconnect() { - newWebSocket.onerror = null; - newWebSocket.onclose = null; - newWebSocket.close(); - reconnections++; - // After 25 reconnects we'll want to reload the page as it indicates the dev server is no longer running. - if (reconnections > _constants.WEB_SOCKET_MAX_RECONNECTIONS) { - reloading = true; - window.location.reload(); - return; - } - clearTimeout(timer); - // Try again after 5 seconds - timer = setTimeout(init, reconnections > 5 ? 5000 : 1000); - } - newWebSocket.onopen = handleOnline; - newWebSocket.onerror = handleDisconnect; - newWebSocket.onclose = handleDisconnect; - newWebSocket.onmessage = handleMessage; - webSocket = newWebSocket; - return newWebSocket; - } - return init(); -} -function createProcessTurbopackMessage(sendMessage) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - let queue = []; - let callback; - const processTurbopackMessage = (msg)=>{ - if (callback) { - callback(msg); - } else { - queue.push(msg); - } - }; - __turbopack_context__.A("[turbopack]/browser/dev/hmr-client/hmr-client.ts [app-client] (ecmascript, async loader)").then(({ connect })=>{ - connect({ - addMessageListener (cb) { - callback = cb; - // Replay all Turbopack messages before we were able to establish the HMR client. - for (const msg of queue){ - cb(msg); - } - queue.length = 0; - }, - sendMessage, - onUpdateError: (err)=>(0, _hotreloaderapp.performFullReload)(err, sendMessage) - }); - }); - return processTurbopackMessage; -} -function useWebSocketPing(webSocket) { - const { tree } = (0, _react.useContext)(_approutercontextsharedruntime.GlobalLayoutRouterContext); - (0, _react.useEffect)(()=>{ - if (!webSocket) { - throw Object.defineProperty(new _invarianterror.InvariantError('Expected webSocket to be defined in dev mode.'), "__NEXT_ERROR_CODE", { - value: "E785", - enumerable: false, - configurable: true - }); - } - // Never send pings when using Turbopack as it's not used. - // Pings were originally used to keep track of active routes in on-demand-entries with webpack. - if ("TURBOPACK compile-time truthy", 1) { - return; - } - //TURBOPACK unreachable - ; - // Taken from on-demand-entries-client.js - const interval = undefined; - }, [ - tree, - webSocket - ]); -} -const textDecoder = new TextDecoder(); -function parseBinaryMessage(data) { - assertByteLength(data, 1); - const view = new DataView(data); - const messageType = view.getUint8(0); - switch(messageType){ - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER: - { - const serializedErrors = new Uint8Array(data, 1); - return { - type: _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER, - serializedErrors - }; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK: - { - assertByteLength(data, 2); - const requestIdLength = view.getUint8(1); - assertByteLength(data, 2 + requestIdLength); - const requestId = textDecoder.decode(new Uint8Array(data, 2, requestIdLength)); - const chunk = data.byteLength > 2 + requestIdLength ? new Uint8Array(data, 2 + requestIdLength) : null; - return { - type: _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK, - requestId, - chunk - }; - } - default: - { - throw Object.defineProperty(new _invarianterror.InvariantError(`Invalid binary HMR message of type ${messageType}`), "__NEXT_ERROR_CODE", { - value: "E809", - enumerable: false, - configurable: true - }); - } - } -} -function assertByteLength(data, expectedLength) { - if (data.byteLength < expectedLength) { - throw Object.defineProperty(new _invarianterror.InvariantError(`Invalid binary HMR message: insufficient data (expected ${expectedLength} bytes, got ${data.byteLength})`), "__NEXT_ERROR_CODE", { - value: "E808", - enumerable: false, - configurable: true - }); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=web-socket.js.map -}), -"[project]/node_modules/next/dist/client/dev/report-hmr-latency.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, /** - * Logs information about a completed HMR to the console, the server (via a - * `client-hmr-latency` event), and to `self.__NEXT_HMR_LATENCY_CB` (a debugging - * hook). - * - * @param hasUpdate Set this to `false` to avoid reporting the HMR event via a - * `client-hmr-latency` event or to `self.__NEXT_HMR_LATENCY_CB`. Used by - * turbopack when we must report a message to the browser console (because we - * already logged a "rebuilding" message), but it's not a real HMR, so we - * don't want to impact our telemetry. - */ "default", { - enumerable: true, - get: function() { - return reportHmrLatency; - } -}); -function reportHmrLatency(sendMessage, updatedModules, startMsSinceEpoch, endMsSinceEpoch, hasUpdate = true) { - const latencyMs = endMsSinceEpoch - startMsSinceEpoch; - console.log(`[Fast Refresh] done in ${latencyMs}ms`); - if (!hasUpdate) { - return; - } - sendMessage(JSON.stringify({ - event: 'client-hmr-latency', - id: window.__nextDevClientId, - startTime: startMsSinceEpoch, - endTime: endMsSinceEpoch, - page: window.location.pathname, - updatedModules, - // Whether the page (tab) was hidden at the time the event occurred. - // This can impact the accuracy of the event's timing. - isPageHidden: document.visibilityState === 'hidden' - })); - if (self.__NEXT_HMR_LATENCY_CB) { - self.__NEXT_HMR_LATENCY_CB(latencyMs); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=report-hmr-latency.js.map -}), -"[project]/node_modules/next/dist/client/dev/hot-reloader/turbopack-hot-reloader-common.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "TurbopackHmr", { - enumerable: true, - get: function() { - return TurbopackHmr; - } -}); -// How long to wait before reporting the HMR start, used to suppress irrelevant -// `BUILDING` events. Does not impact reported latency. -const TURBOPACK_HMR_START_DELAY_MS = 100; -class TurbopackHmr { - #updatedModules; - #startMsSinceEpoch; - #lastUpdateMsSinceEpoch; - #deferredReportHmrStartId; - #reportedHmrStart; - constructor(){ - this.#updatedModules = new Set(); - this.#reportedHmrStart = false; - } - // HACK: Turbopack tends to generate a lot of irrelevant "BUILDING" actions, - // as it reports *any* compilation, including fully no-op/cached compilations - // and those unrelated to HMR. Fixing this would require significant - // architectural changes. - // - // Work around this by deferring any "rebuilding" message by 100ms. If we get - // a BUILT event within that threshold and nothing has changed, just suppress - // the message entirely. - #runDeferredReportHmrStart() { - if (this.#deferredReportHmrStartId != null) { - console.log('[Fast Refresh] rebuilding'); - this.#reportedHmrStart = true; - this.#cancelDeferredReportHmrStart(); - } - } - #cancelDeferredReportHmrStart() { - clearTimeout(this.#deferredReportHmrStartId); - this.#deferredReportHmrStartId = undefined; - } - onBuilding() { - this.#lastUpdateMsSinceEpoch = undefined; - this.#cancelDeferredReportHmrStart(); - this.#startMsSinceEpoch = Date.now(); - // report the HMR start after a short delay - this.#deferredReportHmrStartId = setTimeout(()=>this.#runDeferredReportHmrStart(), self.__NEXT_HMR_TURBOPACK_REPORT_NOISY_NOOP_EVENTS ? 0 : TURBOPACK_HMR_START_DELAY_MS); - } - /** Helper for other `onEvent` methods. */ #onUpdate() { - this.#runDeferredReportHmrStart(); - this.#lastUpdateMsSinceEpoch = Date.now(); - } - onTurbopackMessage(msg) { - this.#onUpdate(); - const updatedModules = extractModulesFromTurbopackMessage(msg.data); - for (const module1 of updatedModules){ - this.#updatedModules.add(module1); - } - } - onServerComponentChanges() { - this.#onUpdate(); - } - onReloadPage() { - this.#onUpdate(); - } - onPageAddRemove() { - this.#onUpdate(); - } - /** - * @returns `null` if the caller should ignore the update entirely. Returns an - * object with `hasUpdates: false` if the caller should report the end of - * the HMR in the browser console, but the HMR was a no-op. - */ onBuilt() { - // Check that we got *any* `TurbopackMessage`, even if - // `updatedModules` is empty (not everything gets recorded there). - // - // There's also a case where `onBuilt` gets called before `onBuilding`, - // which can happen during initial page load. Ignore that too! - const hasUpdates = this.#lastUpdateMsSinceEpoch != null && this.#startMsSinceEpoch != null; - if (!hasUpdates && !this.#reportedHmrStart) { - // suppress the update entirely - this.#cancelDeferredReportHmrStart(); - return null; - } - this.#runDeferredReportHmrStart(); - const result = { - hasUpdates, - updatedModules: this.#updatedModules, - startMsSinceEpoch: this.#startMsSinceEpoch, - endMsSinceEpoch: this.#lastUpdateMsSinceEpoch ?? Date.now() - }; - this.#updatedModules = new Set(); - this.#reportedHmrStart = false; - return result; - } -} -function extractModulesFromTurbopackMessage(data) { - const updatedModules = new Set(); - const updates = Array.isArray(data) ? data : [ - data - ]; - for (const update of updates){ - // TODO this won't capture changes to CSS since they don't result in a "merged" update - if (update.type !== 'partial' || update.instruction.type !== 'ChunkListUpdate' || update.instruction.merged === undefined) { - continue; - } - for (const mergedUpdate of update.instruction.merged){ - for (const name of Object.keys(mergedUpdate.entries)){ - const res = /(.*)\s+[([].*/.exec(name); - if (res === null) { - continue; - } - updatedModules.add(res[1]); - } - } - } - return updatedModules; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=turbopack-hot-reloader-common.js.map -}), -"[project]/node_modules/next/dist/client/dev/debug-channel.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createDebugChannel: null, - getOrCreateDebugChannelReadableWriterPair: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createDebugChannel: function() { - return createDebugChannel; - }, - getOrCreateDebugChannelReadableWriterPair: function() { - return getOrCreateDebugChannelReadableWriterPair; - } -}); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -const pairs = new Map(); -function getOrCreateDebugChannelReadableWriterPair(requestId) { - let pair = pairs.get(requestId); - if (!pair) { - const { readable, writable } = new TransformStream(); - pair = { - readable, - writer: writable.getWriter() - }; - pairs.set(requestId, pair); - pair.writer.closed.finally(()=>pairs.delete(requestId)); - } - return pair; -} -function createDebugChannel(requestHeaders) { - let requestId; - if (requestHeaders) { - requestId = requestHeaders[_approuterheaders.NEXT_REQUEST_ID_HEADER] ?? undefined; - if (!requestId) { - throw Object.defineProperty(new _invarianterror.InvariantError(`Expected a ${JSON.stringify(_approuterheaders.NEXT_REQUEST_ID_HEADER)} request header.`), "__NEXT_ERROR_CODE", { - value: "E854", - enumerable: false, - configurable: true - }); - } - } else { - requestId = self.__next_r; - if (!requestId) { - throw Object.defineProperty(new _invarianterror.InvariantError(`Expected a request ID to be defined for the document via self.__next_r.`), "__NEXT_ERROR_CODE", { - value: "E806", - enumerable: false, - configurable: true - }); - } - } - const { readable } = getOrCreateDebugChannelReadableWriterPair(requestId); - return { - readable - }; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=debug-channel.js.map -}), -"[project]/node_modules/next/dist/client/dev/hot-reloader/app/hot-reloader-app.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/// <reference types="webpack/module.d.ts" /> -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - default: null, - performFullReload: null, - processMessage: null, - waitForWebpackRuntimeHotUpdate: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - default: function() { - return HotReload; - }, - performFullReload: function() { - return performFullReload; - }, - processMessage: function() { - return processMessage; - }, - waitForWebpackRuntimeHotUpdate: function() { - return waitForWebpackRuntimeHotUpdate; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _stripansi = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/strip-ansi/index.js [app-client] (ecmascript)")); -const _formatwebpackmessages = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/format-webpack-messages.js [app-client] (ecmascript)")); -const _shared = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/hot-reloader/shared.js [app-client] (ecmascript)"); -const _nextdevtools = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/next-devtools/index.js (raw)"); -const _replayssronlyerrors = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/replay-ssr-only-errors.js [app-client] (ecmascript)"); -const _appdevoverlayerrorboundary = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/app-dev-overlay-error-boundary.js [app-client] (ecmascript)"); -const _useerrorhandler = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/use-error-handler.js [app-client] (ecmascript)"); -const _runtimeerrorhandler = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/runtime-error-handler.js [app-client] (ecmascript)"); -const _websocket = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/hot-reloader/app/web-socket.js [app-client] (ecmascript)"); -const _hotreloadertypes = __turbopack_context__.r("[project]/node_modules/next/dist/server/dev/hot-reloader-types.js [app-client] (ecmascript)"); -const _navigationuntracked = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/navigation-untracked.js [app-client] (ecmascript)"); -const _reporthmrlatency = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/client/dev/report-hmr-latency.js [app-client] (ecmascript)")); -const _turbopackhotreloadercommon = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/hot-reloader/turbopack-hot-reloader-common.js [app-client] (ecmascript)"); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)"); -const _approuterinstance = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-instance.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -const _debugchannel = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/debug-channel.js [app-client] (ecmascript)"); -const _client = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.js [app-client] (ecmascript)"); -const _appfindsourcemapurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-find-source-map-url.js [app-client] (ecmascript)"); -const createFromReadableStream = _client.createFromReadableStream; -let mostRecentCompilationHash = null; -let __nextDevClientId = Math.round(Math.random() * 100 + Date.now()); -let reloading = false; -let webpackStartMsSinceEpoch = null; -const turbopackHmr = ("TURBOPACK compile-time truthy", 1) ? new _turbopackhotreloadercommon.TurbopackHmr() : "TURBOPACK unreachable"; -let pendingHotUpdateWebpack = Promise.resolve(); -let resolvePendingHotUpdateWebpack = ()=>{}; -function setPendingHotUpdateWebpack() { - pendingHotUpdateWebpack = new Promise((resolve)=>{ - resolvePendingHotUpdateWebpack = ()=>{ - resolve(); - }; - }); -} -function waitForWebpackRuntimeHotUpdate() { - return pendingHotUpdateWebpack; -} -// There is a newer version of the code available. -function handleAvailableHash(hash) { - // Update last known compilation hash. - mostRecentCompilationHash = hash; -} -/** - * Is there a newer version of this code available? - * For webpack: Check if the hash changed compared to __webpack_hash__ - * For Turbopack: Always true because it doesn't have __webpack_hash__ - */ function isUpdateAvailable() { - if ("TURBOPACK compile-time truthy", 1) { - return true; - } - //TURBOPACK unreachable - ; -} -// Webpack disallows updates in other states. -function canApplyUpdates() { - return module.hot.status() === 'idle'; -} -function afterApplyUpdates(fn) { - if (canApplyUpdates()) { - fn(); - } else { - function handler(status) { - if (status === 'idle') { - module.hot.removeStatusHandler(handler); - fn(); - } - } - module.hot.addStatusHandler(handler); - } -} -function performFullReload(err, sendMessage) { - const stackTrace = err && (err.stack && err.stack.split('\n').slice(0, 5).join('\n') || err.message || err + ''); - sendMessage(JSON.stringify({ - event: 'client-full-reload', - stackTrace, - hadRuntimeError: !!_runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError, - dependencyChain: err ? err.dependencyChain : undefined - })); - if (reloading) return; - reloading = true; - window.location.reload(); -} -// Attempt to update code on the fly, fall back to a hard reload. -function tryApplyUpdatesWebpack(sendMessage) { - if (!isUpdateAvailable() || !canApplyUpdates()) { - resolvePendingHotUpdateWebpack(); - _nextdevtools.dispatcher.onBuildOk(); - (0, _reporthmrlatency.default)(sendMessage, [], webpackStartMsSinceEpoch, Date.now()); - return; - } - function handleApplyUpdates(err, updatedModules) { - if (err || _runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError || updatedModules == null) { - if (err) { - console.warn(_shared.REACT_REFRESH_FULL_RELOAD); - } else if (_runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError) { - console.warn(_shared.REACT_REFRESH_FULL_RELOAD_FROM_ERROR); - } - performFullReload(err, sendMessage); - return; - } - _nextdevtools.dispatcher.onBuildOk(); - if (isUpdateAvailable()) { - // While we were updating, there was a new update! Do it again. - tryApplyUpdatesWebpack(sendMessage); - return; - } - _nextdevtools.dispatcher.onRefresh(); - resolvePendingHotUpdateWebpack(); - (0, _reporthmrlatency.default)(sendMessage, updatedModules, webpackStartMsSinceEpoch, Date.now()); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - } - // https://webpack.js.org/api/hot-module-replacement/#check - module.hot.check(/* autoApply */ false).then((updatedModules)=>{ - if (updatedModules == null) { - return null; - } - // We should always handle an update, even if updatedModules is empty (but - // non-null) for any reason. That's what webpack would normally do: - // https://github.com/webpack/webpack/blob/3aa6b6bc3a64/lib/hmr/HotModuleReplacement.runtime.js#L296-L298 - _nextdevtools.dispatcher.onBeforeRefresh(); - // https://webpack.js.org/api/hot-module-replacement/#apply - return module.hot.apply(); - }).then((updatedModules)=>{ - handleApplyUpdates(null, updatedModules); - }, (err)=>{ - handleApplyUpdates(err, null); - }); -} -function processMessage(message, sendMessage, processTurbopackMessage, staticIndicatorState) { - function handleErrors(errors) { - // "Massage" webpack messages. - const formatted = (0, _formatwebpackmessages.default)({ - errors: errors, - warnings: [] - }); - // Only show the first error. - _nextdevtools.dispatcher.onBuildError(formatted.errors[0]); - // Also log them to the console. - for(let i = 0; i < formatted.errors.length; i++){ - console.error((0, _stripansi.default)(formatted.errors[i])); - } - // Do not attempt to reload now. - // We will reload on next success instead. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - } - function handleHotUpdate() { - if ("TURBOPACK compile-time truthy", 1) { - const hmrUpdate = turbopackHmr.onBuilt(); - if (hmrUpdate != null) { - (0, _reporthmrlatency.default)(sendMessage, [ - ...hmrUpdate.updatedModules - ], hmrUpdate.startMsSinceEpoch, hmrUpdate.endMsSinceEpoch, hmrUpdate.hasUpdates); - } - _nextdevtools.dispatcher.onBuildOk(); - } else //TURBOPACK unreachable - ; - } - switch(message.type){ - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ISR_MANIFEST: - { - if ("TURBOPACK compile-time truthy", 1) { - staticIndicatorState.appIsrManifest = message.data; - // Handle the initial static indicator status on receiving the ISR - // manifest. Navigation is handled in an effect inside HotReload for - // pathname changes as we'll receive the updated manifest before - // usePathname triggers for a new value. - const isStatic = staticIndicatorState.pathname ? message.data[staticIndicatorState.pathname] : undefined; - _nextdevtools.dispatcher.onStaticIndicator(isStatic === undefined ? 'pending' : isStatic ? 'static' : 'dynamic'); - } - break; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.BUILDING: - { - _nextdevtools.dispatcher.buildingIndicatorShow(); - if ("TURBOPACK compile-time truthy", 1) { - turbopackHmr.onBuilding(); - } else //TURBOPACK unreachable - ; - break; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.BUILT: - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SYNC: - { - _nextdevtools.dispatcher.buildingIndicatorHide(); - if (message.hash) { - handleAvailableHash(message.hash); - } - const { errors, warnings } = message; - // Is undefined when it's a 'built' event - if ('versionInfo' in message) _nextdevtools.dispatcher.onVersionInfo(message.versionInfo); - if ('debug' in message && message.debug) _nextdevtools.dispatcher.onDebugInfo(message.debug); - if ('devIndicator' in message) _nextdevtools.dispatcher.onDevIndicator(message.devIndicator); - if ('devToolsConfig' in message) _nextdevtools.dispatcher.onDevToolsConfig(message.devToolsConfig); - const hasErrors = Boolean(errors && errors.length); - // Compilation with errors (e.g. syntax error or missing modules). - if (hasErrors) { - sendMessage(JSON.stringify({ - event: 'client-error', - errorCount: errors.length, - clientId: __nextDevClientId - })); - handleErrors(errors); - return; - } - const hasWarnings = Boolean(warnings && warnings.length); - if (hasWarnings) { - sendMessage(JSON.stringify({ - event: 'client-warning', - warningCount: warnings.length, - clientId: __nextDevClientId - })); - // Print warnings to the console. - const formattedMessages = (0, _formatwebpackmessages.default)({ - warnings: warnings, - errors: [] - }); - for(let i = 0; i < formattedMessages.warnings.length; i++){ - if (i === 5) { - console.warn('There were more warnings in other files.\n' + 'You can find a complete log in the terminal.'); - break; - } - console.warn((0, _stripansi.default)(formattedMessages.warnings[i])); - } - // No early return here as we need to apply modules in the same way between warnings only and compiles without warnings - } - sendMessage(JSON.stringify({ - event: 'client-success', - clientId: __nextDevClientId - })); - if (message.type === _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.BUILT) { - handleHotUpdate(); - } - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED: - { - processTurbopackMessage({ - type: _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED, - data: { - sessionId: message.data.sessionId - } - }); - break; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_MESSAGE: - { - turbopackHmr.onTurbopackMessage(message); - _nextdevtools.dispatcher.onBeforeRefresh(); - processTurbopackMessage({ - type: _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_MESSAGE, - data: message.data - }); - if (_runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError) { - console.warn(_shared.REACT_REFRESH_FULL_RELOAD_FROM_ERROR); - performFullReload(null, sendMessage); - } - _nextdevtools.dispatcher.onRefresh(); - break; - } - // TODO-APP: make server component change more granular - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES: - { - turbopackHmr?.onServerComponentChanges(); - sendMessage(JSON.stringify({ - event: 'server-component-reload-page', - clientId: __nextDevClientId, - hash: message.hash - })); - // Store the latest hash in a session cookie so that it's sent back to the - // server with any subsequent requests. - document.cookie = `${_approuterheaders.NEXT_HMR_REFRESH_HASH_COOKIE}=${message.hash};path=/`; - if (_runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError || document.documentElement.id === '__next_error__') { - if (reloading) return; - reloading = true; - return window.location.reload(); - } - (0, _react.startTransition)(()=>{ - _approuterinstance.publicAppRouterInstance.hmrRefresh(); - _nextdevtools.dispatcher.onRefresh(); - }); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE: - { - turbopackHmr?.onReloadPage(); - sendMessage(JSON.stringify({ - event: 'client-reload-page', - clientId: __nextDevClientId - })); - if (reloading) return; - reloading = true; - return window.location.reload(); - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ADDED_PAGE: - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REMOVED_PAGE: - { - turbopackHmr?.onPageAddRemove(); - // TODO-APP: potentially only refresh if the currently viewed page was added/removed. - return _approuterinstance.publicAppRouterInstance.hmrRefresh(); - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ERROR: - { - const { errorJSON } = message; - if (errorJSON) { - const errorObject = JSON.parse(errorJSON); - const error = Object.defineProperty(new Error(errorObject.message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.stack = errorObject.stack; - handleErrors([ - error - ]); - } - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.DEV_PAGES_MANIFEST_UPDATE: - { - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.DEVTOOLS_CONFIG: - { - _nextdevtools.dispatcher.onDevToolsConfig(message.data); - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK: - { - const { requestId, chunk } = message; - const { writer } = (0, _debugchannel.getOrCreateDebugChannelReadableWriterPair)(requestId); - if (chunk) { - writer.ready.then(()=>writer.write(chunk)).catch(console.error); - } else { - // A null chunk signals that no more chunks will be sent, which allows - // us to close the writer. - // TODO: Revisit this cleanup logic when we integrate the return channel - // that keeps the connection open to be able to lazily retrieve debug - // objects. - writer.ready.then(()=>writer.close()).catch(console.error); - } - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REQUEST_CURRENT_ERROR_STATE: - { - const errorState = (0, _nextdevtools.getSerializedOverlayState)(); - const response = { - event: _hotreloadertypes.HMR_MESSAGE_SENT_TO_SERVER.MCP_ERROR_STATE_RESPONSE, - requestId: message.requestId, - errorState, - url: window.location.href - }; - sendMessage(JSON.stringify(response)); - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REQUEST_PAGE_METADATA: - { - const segmentTrieData = (0, _nextdevtools.getSegmentTrieData)(); - const response = { - event: _hotreloadertypes.HMR_MESSAGE_SENT_TO_SERVER.MCP_PAGE_METADATA_RESPONSE, - requestId: message.requestId, - segmentTrieData, - url: window.location.href - }; - sendMessage(JSON.stringify(response)); - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.CACHE_INDICATOR: - { - _nextdevtools.dispatcher.onCacheIndicator(message.state); - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER: - { - createFromReadableStream(new ReadableStream({ - start (controller) { - controller.enqueue(message.serializedErrors); - controller.close(); - } - }), { - findSourceMapURL: _appfindsourcemapurl.findSourceMapURL - }).then((errors)=>{ - for (const error of errors){ - console.error(error); - } - }, (err)=>{ - console.error(Object.defineProperty(new Error('Failed to deserialize errors.', { - cause: err - }), "__NEXT_ERROR_CODE", { - value: "E946", - enumerable: false, - configurable: true - })); - }); - return; - } - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES: - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES: - case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ONLY_CHANGES: - break; - default: - { - message; - } - } -} -function HotReload({ children, globalError, webSocket, staticIndicatorState }) { - (0, _useerrorhandler.useErrorHandler)(_nextdevtools.dispatcher.onUnhandledError, _nextdevtools.dispatcher.onUnhandledRejection); - (0, _websocket.useWebSocketPing)(webSocket); - // We don't want access of the pathname for the dev tools to trigger a dynamic - // access (as the dev overlay will never be present in production). - const pathname = (0, _navigationuntracked.useUntrackedPathname)(); - if ("TURBOPACK compile-time truthy", 1) { - // this conditional is only for dead-code elimination which - // isn't a runtime conditional only build-time so ignore hooks rule - // eslint-disable-next-line react-hooks/rules-of-hooks - (0, _react.useEffect)(()=>{ - if (!staticIndicatorState) { - throw Object.defineProperty(new _invarianterror.InvariantError('Expected staticIndicatorState to be defined in dev mode.'), "__NEXT_ERROR_CODE", { - value: "E786", - enumerable: false, - configurable: true - }); - } - staticIndicatorState.pathname = pathname; - if (staticIndicatorState.appIsrManifest) { - const isStatic = pathname ? staticIndicatorState.appIsrManifest[pathname] : undefined; - _nextdevtools.dispatcher.onStaticIndicator(isStatic === undefined ? 'pending' : isStatic ? 'static' : 'dynamic'); - } - }, [ - pathname, - staticIndicatorState - ]); - } - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_appdevoverlayerrorboundary.AppDevOverlayErrorBoundary, { - globalError: globalError, - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(_replayssronlyerrors.ReplaySsrOnlyErrors, { - onBlockingError: _nextdevtools.dispatcher.openErrorOverlay - }), - children - ] - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=hot-reloader-app.js.map -}), -"[project]/node_modules/next/dist/client/components/app-router.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return AppRouter; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -const _routerreducertypes = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js [app-client] (ecmascript)"); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _hooksclientcontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js [app-client] (ecmascript)"); -const _useactionqueue = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/use-action-queue.js [app-client] (ecmascript)"); -const _approuterannouncer = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-announcer.js [app-client] (ecmascript)"); -const _redirectboundary = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-boundary.js [app-client] (ecmascript)"); -const _findheadincache = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js [app-client] (ecmascript)"); -const _unresolvedthenable = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/unresolved-thenable.js [app-client] (ecmascript)"); -const _removebasepath = __turbopack_context__.r("[project]/node_modules/next/dist/client/remove-base-path.js [app-client] (ecmascript)"); -const _hasbasepath = __turbopack_context__.r("[project]/node_modules/next/dist/client/has-base-path.js [app-client] (ecmascript)"); -const _computechangedpath = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js [app-client] (ecmascript)"); -const _navfailurehandler = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/nav-failure-handler.js [app-client] (ecmascript)"); -const _approuterinstance = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-instance.js [app-client] (ecmascript)"); -const _redirect = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect.js [app-client] (ecmascript)"); -const _redirecterror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/redirect-error.js [app-client] (ecmascript)"); -const _links = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/links.js [app-client] (ecmascript)"); -const _rooterrorboundary = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/client/components/errors/root-error-boundary.js [app-client] (ecmascript)")); -const _globalerror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)")); -const _boundarycomponents = __turbopack_context__.r("[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)"); -const _deploymentid = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-client] (ecmascript)"); -const globalMutable = {}; -function HistoryUpdater({ appRouterState }) { - (0, _react.useInsertionEffect)(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - const { tree, pushRef, canonicalUrl, renderedSearch } = appRouterState; - const appHistoryState = { - tree, - renderedSearch - }; - // TODO: Use Navigation API if available - const historyState = { - ...pushRef.preserveCustomHistoryState ? window.history.state : {}, - // Identifier is shortened intentionally. - // __NA is used to identify if the history entry can be handled by the app-router. - // __N is used to identify if the history entry can be handled by the old router. - __NA: true, - __PRIVATE_NEXTJS_INTERNALS_TREE: appHistoryState - }; - if (pushRef.pendingPush && // Skip pushing an additional history entry if the canonicalUrl is the same as the current url. - // This mirrors the browser behavior for normal navigation. - (0, _createhreffromurl.createHrefFromUrl)(new URL(window.location.href)) !== canonicalUrl) { - // This intentionally mutates React state, pushRef is overwritten to ensure additional push/replace calls do not trigger an additional history entry. - pushRef.pendingPush = false; - window.history.pushState(historyState, '', canonicalUrl); - } else { - window.history.replaceState(historyState, '', canonicalUrl); - } - }, [ - appRouterState - ]); - (0, _react.useEffect)(()=>{ - // The Next-Url and the base tree may affect the result of a prefetch - // task. Re-prefetch all visible links with the updated values. In most - // cases, this will not result in any new network requests, only if - // the prefetch result actually varies on one of these inputs. - (0, _links.pingVisibleLinks)(appRouterState.nextUrl, appRouterState.tree); - }, [ - appRouterState.nextUrl, - appRouterState.tree - ]); - return null; -} -function copyNextJsInternalHistoryState(data) { - if (data == null) data = {}; - const currentState = window.history.state; - const __NA = currentState?.__NA; - if (__NA) { - data.__NA = __NA; - } - const __PRIVATE_NEXTJS_INTERNALS_TREE = currentState?.__PRIVATE_NEXTJS_INTERNALS_TREE; - if (__PRIVATE_NEXTJS_INTERNALS_TREE) { - data.__PRIVATE_NEXTJS_INTERNALS_TREE = __PRIVATE_NEXTJS_INTERNALS_TREE; - } - return data; -} -function Head({ headCacheNode }) { - // If this segment has a `prefetchHead`, it's the statically prefetched data. - // We should use that on initial render instead of `head`. Then we'll switch - // to `head` when the dynamic response streams in. - const head = headCacheNode !== null ? headCacheNode.head : null; - const prefetchHead = headCacheNode !== null ? headCacheNode.prefetchHead : null; - // If no prefetch data is available, then we go straight to rendering `head`. - const resolvedPrefetchRsc = prefetchHead !== null ? prefetchHead : head; - // We use `useDeferredValue` to handle switching between the prefetched and - // final values. The second argument is returned on initial render, then it - // re-renders with the first argument. - return (0, _react.useDeferredValue)(head, resolvedPrefetchRsc); -} -/** - * The global router that wraps the application components. - */ function Router({ actionQueue, globalError, webSocket, staticIndicatorState }) { - const state = (0, _useactionqueue.useActionQueue)(actionQueue); - const { canonicalUrl } = state; - // Add memoized pathname/query for useSearchParams and usePathname. - const { searchParams, pathname } = (0, _react.useMemo)(()=>{ - const url = new URL(canonicalUrl, typeof window === 'undefined' ? 'http://n' : window.location.href); - return { - // This is turned into a readonly class in `useSearchParams` - searchParams: url.searchParams, - pathname: (0, _hasbasepath.hasBasePath)(url.pathname) ? (0, _removebasepath.removeBasePath)(url.pathname) : url.pathname - }; - }, [ - canonicalUrl - ]); - if ("TURBOPACK compile-time truthy", 1) { - const { cache, tree } = state; - // This hook is in a conditional but that is ok because `process.env.NODE_ENV` never changes - // eslint-disable-next-line react-hooks/rules-of-hooks - (0, _react.useEffect)(()=>{ - // Add `window.nd` for debugging purposes. - // This is not meant for use in applications as concurrent rendering will affect the cache/tree/router. - // @ts-ignore this is for debugging - window.nd = { - router: _approuterinstance.publicAppRouterInstance, - cache, - tree - }; - }, [ - cache, - tree - ]); - } - (0, _react.useEffect)(()=>{ - // If the app is restored from bfcache, it's possible that - // pushRef.mpaNavigation is true, which would mean that any re-render of this component - // would trigger the mpa navigation logic again from the lines below. - // This will restore the router to the initial state in the event that the app is restored from bfcache. - function handlePageShow(event) { - if (!event.persisted || !window.history.state?.__PRIVATE_NEXTJS_INTERNALS_TREE) { - return; - } - // Clear the pendingMpaPath value so that a subsequent MPA navigation to the same URL can be triggered. - // This is necessary because if the browser restored from bfcache, the pendingMpaPath would still be set to the value - // of the last MPA navigation. - globalMutable.pendingMpaPath = undefined; - (0, _useactionqueue.dispatchAppRouterAction)({ - type: _routerreducertypes.ACTION_RESTORE, - url: new URL(window.location.href), - historyState: window.history.state.__PRIVATE_NEXTJS_INTERNALS_TREE - }); - } - window.addEventListener('pageshow', handlePageShow); - return ()=>{ - window.removeEventListener('pageshow', handlePageShow); - }; - }, []); - (0, _react.useEffect)(()=>{ - // Ensure that any redirect errors that bubble up outside of the RedirectBoundary - // are caught and handled by the router. - function handleUnhandledRedirect(event) { - const error = 'reason' in event ? event.reason : event.error; - if ((0, _redirecterror.isRedirectError)(error)) { - event.preventDefault(); - const url = (0, _redirect.getURLFromRedirectError)(error); - const redirectType = (0, _redirect.getRedirectTypeFromError)(error); - // TODO: This should access the router methods directly, rather than - // go through the public interface. - if (redirectType === _redirecterror.RedirectType.push) { - _approuterinstance.publicAppRouterInstance.push(url, {}); - } else { - _approuterinstance.publicAppRouterInstance.replace(url, {}); - } - } - } - window.addEventListener('error', handleUnhandledRedirect); - window.addEventListener('unhandledrejection', handleUnhandledRedirect); - return ()=>{ - window.removeEventListener('error', handleUnhandledRedirect); - window.removeEventListener('unhandledrejection', handleUnhandledRedirect); - }; - }, []); - // When mpaNavigation flag is set do a hard navigation to the new url. - // Infinitely suspend because we don't actually want to rerender any child - // components with the new URL and any entangled state updates shouldn't - // commit either (eg: useTransition isPending should stay true until the page - // unloads). - // - // This is a side effect in render. Don't try this at home, kids. It's - // probably safe because we know this is a singleton component and it's never - // in <Offscreen>. At least I hope so. (It will run twice in dev strict mode, - // but that's... fine?) - const { pushRef } = state; - if (pushRef.mpaNavigation) { - // if there's a re-render, we don't want to trigger another redirect if one is already in flight to the same URL - if (globalMutable.pendingMpaPath !== canonicalUrl) { - const location = window.location; - if (pushRef.pendingPush) { - location.assign(canonicalUrl); - } else { - location.replace(canonicalUrl); - } - globalMutable.pendingMpaPath = canonicalUrl; - } - // TODO-APP: Should we listen to navigateerror here to catch failed - // navigations somehow? And should we call window.stop() if a SPA navigation - // should interrupt an MPA one? - // NOTE: This is intentionally using `throw` instead of `use` because we're - // inside an externally mutable condition (pushRef.mpaNavigation), which - // violates the rules of hooks. - throw _unresolvedthenable.unresolvedThenable; - } - (0, _react.useEffect)(()=>{ - const originalPushState = window.history.pushState.bind(window.history); - const originalReplaceState = window.history.replaceState.bind(window.history); - // Ensure the canonical URL in the Next.js Router is updated when the URL is changed so that `usePathname` and `useSearchParams` hold the pushed values. - const applyUrlFromHistoryPushReplace = (url)=>{ - const href = window.location.href; - const appHistoryState = window.history.state?.__PRIVATE_NEXTJS_INTERNALS_TREE; - (0, _react.startTransition)(()=>{ - (0, _useactionqueue.dispatchAppRouterAction)({ - type: _routerreducertypes.ACTION_RESTORE, - url: new URL(url ?? href, href), - historyState: appHistoryState - }); - }); - }; - /** - * Patch pushState to ensure external changes to the history are reflected in the Next.js Router. - * Ensures Next.js internal history state is copied to the new history entry. - * Ensures usePathname and useSearchParams hold the newly provided url. - */ window.history.pushState = function pushState(data, _unused, url) { - // TODO: Warn when Navigation API is available (navigation.navigate() should be used) - // Avoid a loop when Next.js internals trigger pushState/replaceState - if (data?.__NA || data?._N) { - return originalPushState(data, _unused, url); - } - data = copyNextJsInternalHistoryState(data); - if (url) { - applyUrlFromHistoryPushReplace(url); - } - return originalPushState(data, _unused, url); - }; - /** - * Patch replaceState to ensure external changes to the history are reflected in the Next.js Router. - * Ensures Next.js internal history state is copied to the new history entry. - * Ensures usePathname and useSearchParams hold the newly provided url. - */ window.history.replaceState = function replaceState(data, _unused, url) { - // TODO: Warn when Navigation API is available (navigation.navigate() should be used) - // Avoid a loop when Next.js internals trigger pushState/replaceState - if (data?.__NA || data?._N) { - return originalReplaceState(data, _unused, url); - } - data = copyNextJsInternalHistoryState(data); - if (url) { - applyUrlFromHistoryPushReplace(url); - } - return originalReplaceState(data, _unused, url); - }; - /** - * Handle popstate event, this is used to handle back/forward in the browser. - * By default dispatches ACTION_RESTORE, however if the history entry was not pushed/replaced by app-router it will reload the page. - * That case can happen when the old router injected the history entry. - */ const onPopState = (event)=>{ - if (!event.state) { - // TODO-APP: this case only happens when pushState/replaceState was called outside of Next.js. It should probably reload the page in this case. - return; - } - // This case happens when the history entry was pushed by the `pages` router. - if (!event.state.__NA) { - window.location.reload(); - return; - } - // TODO-APP: Ideally the back button should not use startTransition as it should apply the updates synchronously - // Without startTransition works if the cache is there for this path - (0, _react.startTransition)(()=>{ - (0, _approuterinstance.dispatchTraverseAction)(window.location.href, event.state.__PRIVATE_NEXTJS_INTERNALS_TREE); - }); - }; - // Register popstate event to call onPopstate. - window.addEventListener('popstate', onPopState); - return ()=>{ - window.history.pushState = originalPushState; - window.history.replaceState = originalReplaceState; - window.removeEventListener('popstate', onPopState); - }; - }, []); - const { cache, tree, nextUrl, focusAndScrollRef, previousNextUrl } = state; - const matchingHead = (0, _react.useMemo)(()=>{ - return (0, _findheadincache.findHeadInCache)(cache, tree[1]); - }, [ - cache, - tree - ]); - // Add memoized pathParams for useParams. - const pathParams = (0, _react.useMemo)(()=>{ - return (0, _computechangedpath.getSelectedParams)(tree); - }, [ - tree - ]); - // Create instrumented promises for navigation hooks (dev-only) - // These are specially instrumented promises to show in the Suspense DevTools - // Promises are cached outside of render to survive suspense retries. - let instrumentedNavigationPromises = null; - if ("TURBOPACK compile-time truthy", 1) { - const { createRootNavigationPromises } = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/navigation-devtools.js [app-client] (ecmascript)"); - instrumentedNavigationPromises = createRootNavigationPromises(tree, pathname, searchParams, pathParams); - } - const layoutRouterContext = (0, _react.useMemo)(()=>{ - return { - parentTree: tree, - parentCacheNode: cache, - parentSegmentPath: null, - parentParams: {}, - // This is the <Activity> "name" that shows up in the Suspense DevTools. - // It represents the root of the app. - debugNameContext: '/', - // Root node always has `url` - // Provided in AppTreeContext to ensure it can be overwritten in layout-router - url: canonicalUrl, - // Root segment is always active - isActive: true - }; - }, [ - tree, - cache, - canonicalUrl - ]); - const globalLayoutRouterContext = (0, _react.useMemo)(()=>{ - return { - tree, - focusAndScrollRef, - nextUrl, - previousNextUrl - }; - }, [ - tree, - focusAndScrollRef, - nextUrl, - previousNextUrl - ]); - let head; - if (matchingHead !== null) { - // The head is wrapped in an extra component so we can use - // `useDeferredValue` to swap between the prefetched and final versions of - // the head. (This is what LayoutRouter does for segment data, too.) - // - // The `key` is used to remount the component whenever the head moves to - // a different segment. - const [headCacheNode, headKey, headKeyWithoutSearchParams] = matchingHead; - head = /*#__PURE__*/ (0, _jsxruntime.jsx)(Head, { - headCacheNode: headCacheNode - }, typeof window === 'undefined' ? headKeyWithoutSearchParams : headKey); - } else { - head = null; - } - let content = /*#__PURE__*/ (0, _jsxruntime.jsxs)(_redirectboundary.RedirectBoundary, { - children: [ - head, - /*#__PURE__*/ (0, _jsxruntime.jsx)(_boundarycomponents.RootLayoutBoundary, { - children: cache.rsc - }), - /*#__PURE__*/ (0, _jsxruntime.jsx)(_approuterannouncer.AppRouterAnnouncer, { - tree: tree - }) - ] - }); - if ("TURBOPACK compile-time truthy", 1) { - // In development, we apply few error boundaries and hot-reloader: - // - DevRootHTTPAccessFallbackBoundary: avoid using navigation API like notFound() in root layout - // - HotReloader: - // - hot-reload the app when the code changes - // - render dev overlay - // - catch runtime errors and display global-error when necessary - if (typeof window !== 'undefined') { - const { DevRootHTTPAccessFallbackBoundary } = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/dev-root-http-access-fallback-boundary.js [app-client] (ecmascript)"); - content = /*#__PURE__*/ (0, _jsxruntime.jsx)(DevRootHTTPAccessFallbackBoundary, { - children: content - }); - } - const HotReloader = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/hot-reloader/app/hot-reloader-app.js [app-client] (ecmascript)").default; - content = /*#__PURE__*/ (0, _jsxruntime.jsx)(HotReloader, { - globalError: globalError, - webSocket: webSocket, - staticIndicatorState: staticIndicatorState, - children: content - }); - } else //TURBOPACK unreachable - ; - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)(HistoryUpdater, { - appRouterState: state - }), - /*#__PURE__*/ (0, _jsxruntime.jsx)(RuntimeStyles, {}), - /*#__PURE__*/ (0, _jsxruntime.jsx)(_hooksclientcontextsharedruntime.NavigationPromisesContext.Provider, { - value: instrumentedNavigationPromises, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_hooksclientcontextsharedruntime.PathParamsContext.Provider, { - value: pathParams, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_hooksclientcontextsharedruntime.PathnameContext.Provider, { - value: pathname, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_hooksclientcontextsharedruntime.SearchParamsContext.Provider, { - value: searchParams, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_approutercontextsharedruntime.GlobalLayoutRouterContext.Provider, { - value: globalLayoutRouterContext, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_approutercontextsharedruntime.AppRouterContext.Provider, { - value: _approuterinstance.publicAppRouterInstance, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_approutercontextsharedruntime.LayoutRouterContext.Provider, { - value: layoutRouterContext, - children: content - }) - }) - }) - }) - }) - }) - }) - ] - }); -} -function AppRouter({ actionQueue, globalErrorState, webSocket, staticIndicatorState }) { - (0, _navfailurehandler.useNavFailureHandler)(); - const router = /*#__PURE__*/ (0, _jsxruntime.jsx)(Router, { - actionQueue: actionQueue, - globalError: globalErrorState, - webSocket: webSocket, - staticIndicatorState: staticIndicatorState - }); - // At the very top level, use the default GlobalError component as the final fallback. - // When the app router itself fails, which means the framework itself fails, we show the default error. - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_rooterrorboundary.default, { - errorComponent: _globalerror.default, - children: router - }); -} -const runtimeStyles = new Set(); -let runtimeStyleChanged = new Set(); -globalThis._N_E_STYLE_LOAD = function(href) { - let len = runtimeStyles.size; - runtimeStyles.add(href); - if (runtimeStyles.size !== len) { - runtimeStyleChanged.forEach((cb)=>cb()); - } - // TODO figure out how to get a promise here - // But maybe it's not necessary as react would block rendering until it's loaded - return Promise.resolve(); -}; -function RuntimeStyles() { - const [, forceUpdate] = _react.default.useState(0); - const renderedStylesSize = runtimeStyles.size; - (0, _react.useEffect)(()=>{ - const changed = ()=>forceUpdate((c)=>c + 1); - runtimeStyleChanged.add(changed); - if (renderedStylesSize !== runtimeStyles.size) { - changed(); - } - return ()=>{ - runtimeStyleChanged.delete(changed); - }; - }, [ - renderedStylesSize, - forceUpdate - ]); - const dplId = (0, _deploymentid.getDeploymentIdQueryOrEmptyString)(); - return [ - ...runtimeStyles - ].map((href, i)=>/*#__PURE__*/ (0, _jsxruntime.jsx)("link", { - rel: "stylesheet", - href: `${href}${dplId}`, - // @ts-ignore - precedence: "next" - }, i)); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-router.js.map -}), -"[project]/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createInitialRouterState", { - enumerable: true, - get: function() { - return createInitialRouterState; - } -}); -const _createhreffromurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js [app-client] (ecmascript)"); -const _computechangedpath = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js [app-client] (ecmascript)"); -const _flightdatahelpers = __turbopack_context__.r("[project]/node_modules/next/dist/client/flight-data-helpers.js [app-client] (ecmascript)"); -const _pprnavigations = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js [app-client] (ecmascript)"); -function createInitialRouterState({ navigatedAt, initialFlightData, initialCanonicalUrlParts, initialRenderedSearch, location }) { - // When initialized on the server, the canonical URL is provided as an array of parts. - // This is to ensure that when the RSC payload streamed to the client, crawlers don't interpret it - // as a URL that should be crawled. - const initialCanonicalUrl = initialCanonicalUrlParts.join('/'); - const normalizedFlightData = (0, _flightdatahelpers.getFlightDataPartsFromPath)(initialFlightData[0]); - const { tree: initialTree, seedData: initialSeedData, head: initialHead } = normalizedFlightData; - // For the SSR render, seed data should always be available (we only send back a `null` response - // in the case of a `loading` segment, pre-PPR.) - const canonicalUrl = // This is safe to do as canonicalUrl can't be rendered, it's only used to control the history updates in the useEffect further down in this file. - location ? (0, _createhreffromurl.createHrefFromUrl)(location) : initialCanonicalUrl; - const initialState = { - tree: initialTree, - cache: (0, _pprnavigations.createInitialCacheNodeForHydration)(navigatedAt, initialTree, initialSeedData, initialHead), - pushRef: { - pendingPush: false, - mpaNavigation: false, - // First render needs to preserve the previous window.history.state - // to avoid it being overwritten on navigation back/forward with MPA Navigation. - preserveCustomHistoryState: true - }, - focusAndScrollRef: { - apply: false, - onlyHashChange: false, - hashFragment: null, - segmentPaths: [] - }, - canonicalUrl, - renderedSearch: initialRenderedSearch, - nextUrl: ((0, _computechangedpath.extractPathFromFlightRouterState)(initialTree) || location?.pathname) ?? null, - previousNextUrl: null, - debugInfo: null - }; - return initialState; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=create-initial-router-state.js.map -}), -"[project]/node_modules/next/dist/client/app-link-gc.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "linkGc", { - enumerable: true, - get: function() { - return linkGc; - } -}); -function linkGc() { - // TODO-APP: Remove this logic when Float has GC built-in in development. - if ("TURBOPACK compile-time truthy", 1) { - const callback = (mutationList)=>{ - for (const mutation of mutationList){ - if (mutation.type === 'childList') { - for (const node of mutation.addedNodes){ - if ('tagName' in node && node.tagName === 'LINK') { - const link = node; - if (link.dataset.precedence?.startsWith('next')) { - const href = link.getAttribute('href'); - if (href) { - const [resource, version] = href.split('?v=', 2); - if (version) { - const currentOrigin = window.location.origin; - const allLinks = [ - ...document.querySelectorAll('link[href^="' + resource + '"]'), - // It's possible that the resource is a full URL or only pathname, - // so we need to remove the alternative href as well. - ...document.querySelectorAll('link[href^="' + (resource.startsWith(currentOrigin) ? resource.slice(currentOrigin.length) : currentOrigin + resource) + '"]') - ]; - for (const otherLink of allLinks){ - if (otherLink.dataset.precedence?.startsWith('next')) { - const otherHref = otherLink.getAttribute('href'); - if (otherHref) { - const [, otherVersion] = otherHref.split('?v=', 2); - if (!otherVersion || +otherVersion < +version) { - // Delay the removal of the stylesheet to avoid FOUC - // caused by `@font-face` rules, as they seem to be - // a couple of ticks delayed between the old and new - // styles being swapped even if the font is cached. - setTimeout(()=>{ - otherLink.remove(); - }, 5); - const preloadLink = document.querySelector(`link[rel="preload"][as="style"][href="${otherHref}"]`); - if (preloadLink) { - preloadLink.remove(); - } - } - } - } - } - } - } - } - } - } - } - } - }; - // Create an observer instance linked to the callback function - const observer = new MutationObserver(callback); - observer.observe(document.head, { - childList: true - }); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-link-gc.js.map -}), -"[project]/node_modules/next/dist/client/app-index.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "hydrate", { - enumerable: true, - get: function() { - return hydrate; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -__turbopack_context__.r("[project]/node_modules/next/dist/client/app-globals.js [app-client] (ecmascript)"); -const _client = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-dom/client.js [app-client] (ecmascript)")); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _client1 = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.js [app-client] (ecmascript)"); -const _headmanagercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js [app-client] (ecmascript)"); -const _onrecoverableerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js [app-client] (ecmascript)"); -const _errorboundarycallbacks = __turbopack_context__.r("[project]/node_modules/next/dist/client/react-client-callbacks/error-boundary-callbacks.js [app-client] (ecmascript)"); -const _appcallserver = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-call-server.js [app-client] (ecmascript)"); -const _appfindsourcemapurl = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-find-source-map-url.js [app-client] (ecmascript)"); -const _approuterinstance = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-instance.js [app-client] (ecmascript)"); -const _approuter = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router.js [app-client] (ecmascript)")); -const _createinitialrouterstate = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js [app-client] (ecmascript)"); -const _approutercontextsharedruntime = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)"); -const _appbuildid = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-build-id.js [app-client] (ecmascript)"); -const _flightdatahelpers = __turbopack_context__.r("[project]/node_modules/next/dist/client/flight-data-helpers.js [app-client] (ecmascript)"); -/// <reference types="react-dom/experimental" /> -const createFromReadableStream = _client1.createFromReadableStream; -const createFromFetch = _client1.createFromFetch; -const appElement = document; -const encoder = new TextEncoder(); -let initialServerDataBuffer = undefined; -let initialServerDataWriter = undefined; -let initialServerDataLoaded = false; -let initialServerDataFlushed = false; -let initialFormStateData = null; -function nextServerDataCallback(seg) { - if (seg[0] === 0) { - initialServerDataBuffer = []; - } else if (seg[0] === 1) { - if (!initialServerDataBuffer) throw Object.defineProperty(new Error('Unexpected server data: missing bootstrap script.'), "__NEXT_ERROR_CODE", { - value: "E18", - enumerable: false, - configurable: true - }); - if (initialServerDataWriter) { - initialServerDataWriter.enqueue(encoder.encode(seg[1])); - } else { - initialServerDataBuffer.push(seg[1]); - } - } else if (seg[0] === 2) { - initialFormStateData = seg[1]; - } else if (seg[0] === 3) { - if (!initialServerDataBuffer) throw Object.defineProperty(new Error('Unexpected server data: missing bootstrap script.'), "__NEXT_ERROR_CODE", { - value: "E18", - enumerable: false, - configurable: true - }); - // Decode the base64 string back to binary data. - const binaryString = atob(seg[1]); - const decodedChunk = new Uint8Array(binaryString.length); - for(var i = 0; i < binaryString.length; i++){ - decodedChunk[i] = binaryString.charCodeAt(i); - } - if (initialServerDataWriter) { - initialServerDataWriter.enqueue(decodedChunk); - } else { - initialServerDataBuffer.push(decodedChunk); - } - } -} -function isStreamErrorOrUnfinished(ctr) { - // If `desiredSize` is null, it means the stream is closed or errored. If it is lower than 0, the stream is still unfinished. - return ctr.desiredSize === null || ctr.desiredSize < 0; -} -// There might be race conditions between `nextServerDataRegisterWriter` and -// `DOMContentLoaded`. The former will be called when React starts to hydrate -// the root, the latter will be called when the DOM is fully loaded. -// For streaming, the former is called first due to partial hydration. -// For non-streaming, the latter can be called first. -// Hence, we use two variables `initialServerDataLoaded` and -// `initialServerDataFlushed` to make sure the writer will be closed and -// `initialServerDataBuffer` will be cleared in the right time. -function nextServerDataRegisterWriter(ctr) { - if (initialServerDataBuffer) { - initialServerDataBuffer.forEach((val)=>{ - ctr.enqueue(typeof val === 'string' ? encoder.encode(val) : val); - }); - if (initialServerDataLoaded && !initialServerDataFlushed) { - if (isStreamErrorOrUnfinished(ctr)) { - ctr.error(Object.defineProperty(new Error('The connection to the page was unexpectedly closed, possibly due to the stop button being clicked, loss of Wi-Fi, or an unstable internet connection.'), "__NEXT_ERROR_CODE", { - value: "E117", - enumerable: false, - configurable: true - })); - } else { - ctr.close(); - } - initialServerDataFlushed = true; - initialServerDataBuffer = undefined; - } - } - initialServerDataWriter = ctr; -} -// When `DOMContentLoaded`, we can close all pending writers to finish hydration. -const DOMContentLoaded = function() { - if (initialServerDataWriter && !initialServerDataFlushed) { - initialServerDataWriter.close(); - initialServerDataFlushed = true; - initialServerDataBuffer = undefined; - } - initialServerDataLoaded = true; -}; -// It's possible that the DOM is already loaded. -if (document.readyState === 'loading') { - document.addEventListener('DOMContentLoaded', DOMContentLoaded, false); -} else { - // Delayed in marco task to ensure it's executed later than hydration - setTimeout(DOMContentLoaded); -} -const nextServerDataLoadingGlobal = self.__next_f = self.__next_f || []; -// Consume all buffered chunks and clear the global data array right after to release memory. -// Otherwise it will be retained indefinitely. -nextServerDataLoadingGlobal.forEach(nextServerDataCallback); -nextServerDataLoadingGlobal.length = 0; -// Patch its push method so subsequent chunks are handled (but not actually pushed to the array). -nextServerDataLoadingGlobal.push = nextServerDataCallback; -const readable = new ReadableStream({ - start (controller) { - nextServerDataRegisterWriter(controller); - } -}); -if ("TURBOPACK compile-time truthy", 1) { - // @ts-expect-error - readable.name = 'hydration'; -} -let debugChannel; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -const clientResumeFetch = window.__NEXT_CLIENT_RESUME; -let initialServerResponse; -if (clientResumeFetch) { - initialServerResponse = Promise.resolve(createFromFetch(clientResumeFetch, { - callServer: _appcallserver.callServer, - findSourceMapURL: _appfindsourcemapurl.findSourceMapURL, - debugChannel - })).then(async (fallbackInitialRSCPayload)=>(0, _flightdatahelpers.createInitialRSCPayloadFromFallbackPrerender)(await clientResumeFetch, fallbackInitialRSCPayload)); -} else { - initialServerResponse = createFromReadableStream(readable, { - callServer: _appcallserver.callServer, - findSourceMapURL: _appfindsourcemapurl.findSourceMapURL, - debugChannel, - startTime: 0 - }); -} -function ServerRoot({ initialRSCPayload, actionQueue, webSocket, staticIndicatorState }) { - const router = /*#__PURE__*/ (0, _jsxruntime.jsx)(_approuter.default, { - actionQueue: actionQueue, - globalErrorState: initialRSCPayload.G, - webSocket: webSocket, - staticIndicatorState: staticIndicatorState - }); - if (("TURBOPACK compile-time value", "development") === 'development' && initialRSCPayload.m) { - // We provide missing slot information in a context provider only during development - // as we log some additional information about the missing slots in the console. - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_approutercontextsharedruntime.MissingSlotContext, { - value: initialRSCPayload.m, - children: router - }); - } - return router; -} -const StrictModeIfEnabled = ("TURBOPACK compile-time truthy", 1) ? _react.default.StrictMode : "TURBOPACK unreachable"; -function Root({ children }) { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return children; -} -const enableTransitionIndicator = ("TURBOPACK compile-time value", false); -function noDefaultTransitionIndicator() { - return ()=>{}; -} -const reactRootOptions = { - onDefaultTransitionIndicator: ("TURBOPACK compile-time falsy", 0) ? "TURBOPACK unreachable" : noDefaultTransitionIndicator, - onRecoverableError: _onrecoverableerror.onRecoverableError, - onCaughtError: _errorboundarycallbacks.onCaughtError, - onUncaughtError: _errorboundarycallbacks.onUncaughtError -}; -async function hydrate(instrumentationHooks, assetPrefix) { - let staticIndicatorState; - let webSocket; - if ("TURBOPACK compile-time truthy", 1) { - const { createWebSocket } = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/hot-reloader/app/web-socket.js [app-client] (ecmascript)"); - staticIndicatorState = { - pathname: null, - appIsrManifest: null - }; - webSocket = createWebSocket(assetPrefix, staticIndicatorState); - } - const initialRSCPayload = await initialServerResponse; - // setAppBuildId should be called only once, during JS initialization - // and before any components have hydrated. - (0, _appbuildid.setAppBuildId)(initialRSCPayload.b); - const initialTimestamp = Date.now(); - const actionQueue = (0, _approuterinstance.createMutableActionQueue)((0, _createinitialrouterstate.createInitialRouterState)({ - navigatedAt: initialTimestamp, - initialFlightData: initialRSCPayload.f, - initialCanonicalUrlParts: initialRSCPayload.c, - initialRenderedSearch: initialRSCPayload.q, - location: window.location - }), instrumentationHooks); - const reactEl = /*#__PURE__*/ (0, _jsxruntime.jsx)(StrictModeIfEnabled, { - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_headmanagercontextsharedruntime.HeadManagerContext.Provider, { - value: { - appDir: true - }, - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(Root, { - children: /*#__PURE__*/ (0, _jsxruntime.jsx)(ServerRoot, { - initialRSCPayload: initialRSCPayload, - actionQueue: actionQueue, - webSocket: webSocket, - staticIndicatorState: staticIndicatorState - }) - }) - }) - }); - if (document.documentElement.id === '__next_error__') { - let element = reactEl; - // Server rendering failed, fall back to client-side rendering - if ("TURBOPACK compile-time truthy", 1) { - const { RootLevelDevOverlayElement } = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/client-entry.js [app-client] (ecmascript)"); - // Note this won't cause hydration mismatch because we are doing CSR w/o hydration - element = /*#__PURE__*/ (0, _jsxruntime.jsx)(RootLevelDevOverlayElement, { - children: element - }); - } - _client.default.createRoot(appElement, reactRootOptions).render(element); - } else { - _react.default.startTransition(()=>{ - _client.default.hydrateRoot(appElement, reactEl, { - ...reactRootOptions, - formState: initialFormStateData - }); - }); - } - // TODO-APP: Remove this logic when Float has GC built-in in development. - if ("TURBOPACK compile-time truthy", 1) { - const { linkGc } = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-link-gc.js [app-client] (ecmascript)"); - linkGc(); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-index.js.map -}), -"[project]/node_modules/next/dist/client/app-next-turbopack.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -const _appbootstrap = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-bootstrap.js [app-client] (ecmascript)"); -const _onrecoverableerror = __turbopack_context__.r("[project]/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js [app-client] (ecmascript)"); -window.next.turbopack = true; -self.__webpack_hash__ = ''; -// eslint-disable-next-line @next/internal/typechecked-require -const instrumentationHooks = __turbopack_context__.r("[project]/node_modules/next/dist/lib/require-instrumentation-client.js [app-client] (ecmascript)"); -(0, _appbootstrap.appBootstrap)((assetPrefix)=>{ - const { hydrate } = __turbopack_context__.r("[project]/node_modules/next/dist/client/app-index.js [app-client] (ecmascript)"); - try { - hydrate(instrumentationHooks, assetPrefix); - } finally{ - if ("TURBOPACK compile-time truthy", 1) { - const enableCacheIndicator = ("TURBOPACK compile-time value", false); - const { getOwnerStack } = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/stitched-error.js [app-client] (ecmascript)"); - const { renderAppDevOverlay } = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/next-devtools/index.js (raw)"); - renderAppDevOverlay(getOwnerStack, _onrecoverableerror.isRecoverableError, enableCacheIndicator); - } - } -}); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-next-turbopack.js.map -}), -]); - -//# sourceMappingURL=node_modules_next_dist_client_17643121._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_17643121._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_17643121._.js.map deleted file mode 100644 index 1f4be18..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_17643121._.js.map +++ /dev/null @@ -1,99 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/asset-prefix.ts"],"sourcesContent":["import { InvariantError } from '../shared/lib/invariant-error'\n\nexport function getAssetPrefix() {\n const currentScript = document.currentScript\n\n if (!(currentScript instanceof HTMLScriptElement)) {\n throw new InvariantError(\n `Expected document.currentScript to be a <script> element. Received ${currentScript} instead.`\n )\n }\n\n const { pathname } = new URL(currentScript.src)\n const nextIndex = pathname.indexOf('/_next/')\n\n if (nextIndex === -1) {\n throw new InvariantError(\n `Expected document.currentScript src to contain '/_next/'. Received ${currentScript.src} instead.`\n )\n }\n\n return pathname.slice(0, nextIndex)\n}\n"],"names":["getAssetPrefix","currentScript","document","HTMLScriptElement","InvariantError","pathname","URL","src","nextIndex","indexOf","slice"],"mappings":";;;+BAEgBA,kBAAAA;;;eAAAA;;;gCAFe;AAExB,SAASA;IACd,MAAMC,gBAAgBC,SAASD,aAAa;IAE5C,IAAI,CAAEA,CAAAA,yBAAyBE,iBAAgB,GAAI;QACjD,MAAM,OAAA,cAEL,CAFK,IAAIC,gBAAAA,cAAc,CACtB,CAAC,mEAAmE,EAAEH,cAAc,SAAS,CAAC,GAD1F,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,MAAM,EAAEI,QAAQ,EAAE,GAAG,IAAIC,IAAIL,cAAcM,GAAG;IAC9C,MAAMC,YAAYH,SAASI,OAAO,CAAC;IAEnC,IAAID,cAAc,CAAC,GAAG;QACpB,MAAM,OAAA,cAEL,CAFK,IAAIJ,gBAAAA,cAAc,CACtB,CAAC,mEAAmE,EAAEH,cAAcM,GAAG,CAAC,SAAS,CAAC,GAD9F,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,OAAOF,SAASK,KAAK,CAAC,GAAGF;AAC3B","ignoreList":[0]}}, - {"offset": {"line": 45, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/set-attributes-from-props.ts"],"sourcesContent":["const DOMAttributeNames: Record<string, string> = {\n acceptCharset: 'accept-charset',\n className: 'class',\n htmlFor: 'for',\n httpEquiv: 'http-equiv',\n noModule: 'noModule',\n}\n\nconst ignoreProps = [\n 'onLoad',\n 'onReady',\n 'dangerouslySetInnerHTML',\n 'children',\n 'onError',\n 'strategy',\n 'stylesheets',\n]\n\nfunction isBooleanScriptAttribute(\n attr: string\n): attr is 'async' | 'defer' | 'noModule' {\n return ['async', 'defer', 'noModule'].includes(attr)\n}\n\nexport function setAttributesFromProps(el: HTMLElement, props: object) {\n for (const [p, value] of Object.entries(props)) {\n if (!props.hasOwnProperty(p)) continue\n if (ignoreProps.includes(p)) continue\n\n // we don't render undefined props to the DOM\n if (value === undefined) {\n continue\n }\n\n const attr = DOMAttributeNames[p] || p.toLowerCase()\n\n if (el.tagName === 'SCRIPT' && isBooleanScriptAttribute(attr)) {\n // Correctly assign boolean script attributes\n // https://github.com/vercel/next.js/pull/20748\n ;(el as HTMLScriptElement)[attr] = !!value\n } else {\n el.setAttribute(attr, String(value))\n }\n\n // Remove falsy non-zero boolean attributes so they are correctly interpreted\n // (e.g. if we set them to false, this coerces to the string \"false\", which the browser interprets as true)\n if (\n value === false ||\n (el.tagName === 'SCRIPT' &&\n isBooleanScriptAttribute(attr) &&\n (!value || value === 'false'))\n ) {\n // Call setAttribute before, as we need to set and unset the attribute to override force async:\n // https://html.spec.whatwg.org/multipage/scripting.html#script-force-async\n el.setAttribute(attr, '')\n el.removeAttribute(attr)\n }\n }\n}\n"],"names":["setAttributesFromProps","DOMAttributeNames","acceptCharset","className","htmlFor","httpEquiv","noModule","ignoreProps","isBooleanScriptAttribute","attr","includes","el","props","p","value","Object","entries","hasOwnProperty","undefined","toLowerCase","tagName","setAttribute","String","removeAttribute"],"mappings":";;;+BAwBgBA,0BAAAA;;;eAAAA;;;AAxBhB,MAAMC,oBAA4C;IAChDC,eAAe;IACfC,WAAW;IACXC,SAAS;IACTC,WAAW;IACXC,UAAU;AACZ;AAEA,MAAMC,cAAc;IAClB;IACA;IACA;IACA;IACA;IACA;IACA;CACD;AAED,SAASC,yBACPC,IAAY;IAEZ,OAAO;QAAC;QAAS;QAAS;KAAW,CAACC,QAAQ,CAACD;AACjD;AAEO,SAAST,uBAAuBW,EAAe,EAAEC,KAAa;IACnE,KAAK,MAAM,CAACC,GAAGC,MAAM,IAAIC,OAAOC,OAAO,CAACJ,OAAQ;QAC9C,IAAI,CAACA,MAAMK,cAAc,CAACJ,IAAI;QAC9B,IAAIN,YAAYG,QAAQ,CAACG,IAAI;QAE7B,6CAA6C;QAC7C,IAAIC,UAAUI,WAAW;YACvB;QACF;QAEA,MAAMT,OAAOR,iBAAiB,CAACY,EAAE,IAAIA,EAAEM,WAAW;QAElD,IAAIR,GAAGS,OAAO,KAAK,YAAYZ,yBAAyBC,OAAO;YAC7D,6CAA6C;YAC7C,+CAA+C;;YAC7CE,EAAwB,CAACF,KAAK,GAAG,CAAC,CAACK;QACvC,OAAO;YACLH,GAAGU,YAAY,CAACZ,MAAMa,OAAOR;QAC/B;QAEA,6EAA6E;QAC7E,2GAA2G;QAC3G,IACEA,UAAU,SACTH,GAAGS,OAAO,KAAK,YACdZ,yBAAyBC,SACxB,CAAA,CAACK,SAASA,UAAU,OAAM,GAC7B;YACA,+FAA+F;YAC/F,2EAA2E;YAC3EH,GAAGU,YAAY,CAACZ,MAAM;YACtBE,GAAGY,eAAe,CAACd;QACrB;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 115, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-bootstrap.ts"],"sourcesContent":["/**\n * Before starting the Next.js runtime and requiring any module, we need to make\n * sure the following scripts are executed in the correct order:\n * - Polyfills\n * - next/script with `beforeInteractive` strategy\n */\n\nimport { getAssetPrefix } from './asset-prefix'\nimport { setAttributesFromProps } from './set-attributes-from-props'\n\nconst version = process.env.__NEXT_VERSION\n\nwindow.next = {\n version,\n appDir: true,\n}\n\nfunction loadScriptsInSequence(\n scripts: [src: string, props: { [prop: string]: any }][],\n hydrate: () => void\n) {\n if (!scripts || !scripts.length) {\n return hydrate()\n }\n\n return scripts\n .reduce((promise, [src, props]) => {\n return promise.then(() => {\n return new Promise<void>((resolve, reject) => {\n const el = document.createElement('script')\n\n if (props) {\n setAttributesFromProps(el, props)\n }\n\n if (src) {\n el.src = src\n el.onload = () => resolve()\n el.onerror = reject\n } else if (props) {\n el.innerHTML = props.children\n setTimeout(resolve)\n }\n\n document.head.appendChild(el)\n })\n })\n }, Promise.resolve())\n .catch((err: Error) => {\n console.error(err)\n // Still try to hydrate even if there's an error.\n })\n .then(() => {\n hydrate()\n })\n}\n\nexport function appBootstrap(hydrate: (assetPrefix: string) => void) {\n const assetPrefix = getAssetPrefix()\n\n loadScriptsInSequence((self as any).__next_s, () => {\n // If the static shell is being debugged, skip hydration if the\n // `__nextppronly` query is present. This is only enabled when the\n // environment variable `__NEXT_EXPERIMENTAL_STATIC_SHELL_DEBUGGING` is\n // set to `1`. Otherwise the following is optimized out.\n if (process.env.__NEXT_EXPERIMENTAL_STATIC_SHELL_DEBUGGING === '1') {\n const search = new URLSearchParams(window.location.search)\n if (\n search.get('__nextppronly') === 'fallback' ||\n search.get('__nextppronly') === '1'\n ) {\n console.warn(\n `Skipping hydration due to __nextppronly=${search.get('__nextppronly')}`\n )\n return\n }\n }\n\n hydrate(assetPrefix)\n })\n}\n"],"names":["appBootstrap","version","process","env","__NEXT_VERSION","window","next","appDir","loadScriptsInSequence","scripts","hydrate","length","reduce","promise","src","props","then","Promise","resolve","reject","el","document","createElement","setAttributesFromProps","onload","onerror","innerHTML","children","setTimeout","head","appendChild","catch","err","console","error","assetPrefix","getAssetPrefix","self","__next_s","__NEXT_EXPERIMENTAL_STATIC_SHELL_DEBUGGING","search","URLSearchParams","location","get","warn"],"mappings":"AAiEQE,QAAQC,GAAG,CAACoC,0CAA0C,KAAK,KAAK;AAjExE;;;;;CAKC,GAAA;;;;+BAoDevC,gBAAAA;;;eAAAA;;;6BAlDe;wCACQ;AAEvC,MAAMC,UAAUC,QAAQC,GAAG,CAACC,cAAc;AAE1CC,OAAOC,IAAI,GAAG;IACZL;IACAM,QAAQ;AACV;AAEA,SAASC,sBACPC,OAAwD,EACxDC,OAAmB;IAEnB,IAAI,CAACD,WAAW,CAACA,QAAQE,MAAM,EAAE;QAC/B,OAAOD;IACT;IAEA,OAAOD,QACJG,MAAM,CAAC,CAACC,SAAS,CAACC,KAAKC,MAAM;QAC5B,OAAOF,QAAQG,IAAI,CAAC;YAClB,OAAO,IAAIC,QAAc,CAACC,SAASC;gBACjC,MAAMC,KAAKC,SAASC,aAAa,CAAC;gBAElC,IAAIP,OAAO;oBACTQ,CAAAA,GAAAA,wBAAAA,sBAAsB,EAACH,IAAIL;gBAC7B;gBAEA,IAAID,KAAK;oBACPM,GAAGN,GAAG,GAAGA;oBACTM,GAAGI,MAAM,GAAG,IAAMN;oBAClBE,GAAGK,OAAO,GAAGN;gBACf,OAAO,IAAIJ,OAAO;oBAChBK,GAAGM,SAAS,GAAGX,MAAMY,QAAQ;oBAC7BC,WAAWV;gBACb;gBAEAG,SAASQ,IAAI,CAACC,WAAW,CAACV;YAC5B;QACF;IACF,GAAGH,QAAQC,OAAO,IACjBa,KAAK,CAAC,CAACC;QACNC,QAAQC,KAAK,CAACF;IACd,iDAAiD;IACnD,GACChB,IAAI,CAAC;QACJN;IACF;AACJ;AAEO,SAASV,aAAaU,OAAsC;IACjE,MAAMyB,cAAcC,CAAAA,GAAAA,aAAAA,cAAc;IAElC5B,sBAAuB6B,KAAaC,QAAQ,EAAE;QAC5C,+DAA+D;QAC/D,kEAAkE;QAClE,uEAAuE;QACvE,wDAAwD;QACxD;;QAaA5B,QAAQyB;IACV;AACF","ignoreList":[0]}}, - {"offset": {"line": 190, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/react-client-callbacks/report-global-error.ts"],"sourcesContent":["export const reportGlobalError =\n typeof reportError === 'function'\n ? // In modern browsers, reportError will dispatch an error event,\n // emulating an uncaught JavaScript error.\n reportError\n : (error: unknown) => {\n // TODO: Dispatch error event\n globalThis.console.error(error)\n }\n"],"names":["reportGlobalError","reportError","error","globalThis","console"],"mappings":";;;+BAAaA,qBAAAA;;;eAAAA;;;AAAN,MAAMA,oBACX,OAAOC,gBAAgB,aAEnB,AACAA,cACA,CAACC,2BAFyC;IAGxC,6BAA6B;IAC7BC,WAAWC,OAAO,CAACF,KAAK,CAACA;AAC3B","ignoreList":[0]}}, - {"offset": {"line": 214, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/react-client-callbacks/on-recoverable-error.ts"],"sourcesContent":["// This module can be shared between both pages router and app router\n\nimport type { HydrationOptions } from 'react-dom/client'\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport isError from '../../lib/is-error'\nimport { reportGlobalError } from './report-global-error'\n\nconst recoverableErrors = new WeakSet<Error>()\n\nexport function isRecoverableError(error: Error): boolean {\n return recoverableErrors.has(error)\n}\n\nexport const onRecoverableError: HydrationOptions['onRecoverableError'] = (\n error\n) => {\n // x-ref: https://github.com/facebook/react/pull/28736\n let cause = isError(error) && 'cause' in error ? error.cause : error\n // Skip certain custom errors which are not expected to be reported on client\n if (isBailoutToCSRError(cause)) return\n\n if (process.env.NODE_ENV !== 'production') {\n const { decorateDevError } =\n require('../../next-devtools/userspace/app/errors/stitched-error') as typeof import('../../next-devtools/userspace/app/errors/stitched-error')\n const causeError = decorateDevError(cause)\n recoverableErrors.add(causeError)\n cause = causeError\n }\n\n reportGlobalError(cause)\n}\n"],"names":["isRecoverableError","onRecoverableError","recoverableErrors","WeakSet","error","has","cause","isError","isBailoutToCSRError","process","env","NODE_ENV","decorateDevError","require","causeError","add","reportGlobalError"],"mappings":"AAqBMS,QAAQC,GAAG,CAACC,QAAQ,KAAK;AArB/B,qEAAqE;;;;;;;;;;;;;;;;IASrDX,kBAAkB,EAAA;eAAlBA;;IAIHC,kBAAkB,EAAA;eAAlBA;;;;8BAVuB;kEAChB;mCACc;AAElC,MAAMC,oBAAoB,IAAIC;AAEvB,SAASH,mBAAmBI,KAAY;IAC7C,OAAOF,kBAAkBG,GAAG,CAACD;AAC/B;AAEO,MAAMH,qBAA6D,CACxEG;IAEA,sDAAsD;IACtD,IAAIE,QAAQC,CAAAA,GAAAA,SAAAA,OAAO,EAACH,UAAU,WAAWA,QAAQA,MAAME,KAAK,GAAGF;IAC/D,6EAA6E;IAC7E,IAAII,CAAAA,GAAAA,cAAAA,mBAAmB,EAACF,QAAQ;IAEhC,wCAA2C;QACzC,MAAM,EAAEM,gBAAgB,EAAE,GACxBC,QAAQ;QACV,MAAMC,aAAaF,iBAAiBN;QACpCJ,kBAAkBa,GAAG,CAACD;QACtBR,QAAQQ;IACV;IAEAE,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACV;AACpB","ignoreList":[0]}}, - {"offset": {"line": 270, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/http-access-fallback.ts"],"sourcesContent":["export const HTTPAccessErrorStatus = {\n NOT_FOUND: 404,\n FORBIDDEN: 403,\n UNAUTHORIZED: 401,\n}\n\nconst ALLOWED_CODES = new Set(Object.values(HTTPAccessErrorStatus))\n\nexport const HTTP_ERROR_FALLBACK_ERROR_CODE = 'NEXT_HTTP_ERROR_FALLBACK'\n\nexport type HTTPAccessFallbackError = Error & {\n digest: `${typeof HTTP_ERROR_FALLBACK_ERROR_CODE};${string}`\n}\n\n/**\n * Checks an error to determine if it's an error generated by\n * the HTTP navigation APIs `notFound()`, `forbidden()` or `unauthorized()`.\n *\n * @param error the error that may reference a HTTP access error\n * @returns true if the error is a HTTP access error\n */\nexport function isHTTPAccessFallbackError(\n error: unknown\n): error is HTTPAccessFallbackError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n const [prefix, httpStatus] = error.digest.split(';')\n\n return (\n prefix === HTTP_ERROR_FALLBACK_ERROR_CODE &&\n ALLOWED_CODES.has(Number(httpStatus))\n )\n}\n\nexport function getAccessFallbackHTTPStatus(\n error: HTTPAccessFallbackError\n): number {\n const httpStatus = error.digest.split(';')[1]\n return Number(httpStatus)\n}\n\nexport function getAccessFallbackErrorTypeByStatus(\n status: number\n): 'not-found' | 'forbidden' | 'unauthorized' | undefined {\n switch (status) {\n case 401:\n return 'unauthorized'\n case 403:\n return 'forbidden'\n case 404:\n return 'not-found'\n default:\n return\n }\n}\n"],"names":["HTTPAccessErrorStatus","HTTP_ERROR_FALLBACK_ERROR_CODE","getAccessFallbackErrorTypeByStatus","getAccessFallbackHTTPStatus","isHTTPAccessFallbackError","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","ALLOWED_CODES","Set","Object","values","error","digest","prefix","httpStatus","split","has","Number","status"],"mappings":";;;;;;;;;;;;;;;;;IAAaA,qBAAqB,EAAA;eAArBA;;IAQAC,8BAA8B,EAAA;eAA9BA;;IAuCGC,kCAAkC,EAAA;eAAlCA;;IAPAC,2BAA2B,EAAA;eAA3BA;;IAnBAC,yBAAyB,EAAA;eAAzBA;;;AArBT,MAAMJ,wBAAwB;IACnCK,WAAW;IACXC,WAAW;IACXC,cAAc;AAChB;AAEA,MAAMC,gBAAgB,IAAIC,IAAIC,OAAOC,MAAM,CAACX;AAErC,MAAMC,iCAAiC;AAavC,SAASG,0BACdQ,KAAc;IAEd,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IACA,MAAM,CAACC,QAAQC,WAAW,GAAGH,MAAMC,MAAM,CAACG,KAAK,CAAC;IAEhD,OACEF,WAAWb,kCACXO,cAAcS,GAAG,CAACC,OAAOH;AAE7B;AAEO,SAASZ,4BACdS,KAA8B;IAE9B,MAAMG,aAAaH,MAAMC,MAAM,CAACG,KAAK,CAAC,IAAI,CAAC,EAAE;IAC7C,OAAOE,OAAOH;AAChB;AAEO,SAASb,mCACdiB,MAAc;IAEd,OAAQA;QACN,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT,KAAK;YACH,OAAO;QACT;YACE;IACJ;AACF","ignoreList":[0]}}, - {"offset": {"line": 344, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-status-code.ts"],"sourcesContent":["export enum RedirectStatusCode {\n SeeOther = 303,\n TemporaryRedirect = 307,\n PermanentRedirect = 308,\n}\n"],"names":["RedirectStatusCode"],"mappings":";;;+BAAYA,sBAAAA;;;eAAAA;;;AAAL,IAAKA,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;;;;WAAAA","ignoreList":[0]}}, - {"offset": {"line": 370, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-error.ts"],"sourcesContent":["import { RedirectStatusCode } from './redirect-status-code'\n\nexport const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'\n\nexport enum RedirectType {\n push = 'push',\n replace = 'replace',\n}\n\nexport type RedirectError = Error & {\n digest: `${typeof REDIRECT_ERROR_CODE};${RedirectType};${string};${RedirectStatusCode};`\n}\n\n/**\n * Checks an error to determine if it's an error generated by the\n * `redirect(url)` helper.\n *\n * @param error the error that may reference a redirect error\n * @returns true if the error is a redirect error\n */\nexport function isRedirectError(error: unknown): error is RedirectError {\n if (\n typeof error !== 'object' ||\n error === null ||\n !('digest' in error) ||\n typeof error.digest !== 'string'\n ) {\n return false\n }\n\n const digest = error.digest.split(';')\n const [errorCode, type] = digest\n const destination = digest.slice(2, -2).join(';')\n const status = digest.at(-2)\n\n const statusCode = Number(status)\n\n return (\n errorCode === REDIRECT_ERROR_CODE &&\n (type === 'replace' || type === 'push') &&\n typeof destination === 'string' &&\n !isNaN(statusCode) &&\n statusCode in RedirectStatusCode\n )\n}\n"],"names":["REDIRECT_ERROR_CODE","RedirectType","isRedirectError","error","digest","split","errorCode","type","destination","slice","join","status","at","statusCode","Number","isNaN","RedirectStatusCode"],"mappings":";;;;;;;;;;;;;;;IAEaA,mBAAmB,EAAA;eAAnBA;;IAEDC,YAAY,EAAA;eAAZA;;IAgBIC,eAAe,EAAA;eAAfA;;;oCApBmB;AAE5B,MAAMF,sBAAsB;AAE5B,IAAKC,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;WAAAA;;AAgBL,SAASC,gBAAgBC,KAAc;IAC5C,IACE,OAAOA,UAAU,YACjBA,UAAU,QACV,CAAE,CAAA,YAAYA,KAAI,KAClB,OAAOA,MAAMC,MAAM,KAAK,UACxB;QACA,OAAO;IACT;IAEA,MAAMA,SAASD,MAAMC,MAAM,CAACC,KAAK,CAAC;IAClC,MAAM,CAACC,WAAWC,KAAK,GAAGH;IAC1B,MAAMI,cAAcJ,OAAOK,KAAK,CAAC,GAAG,CAAC,GAAGC,IAAI,CAAC;IAC7C,MAAMC,SAASP,OAAOQ,EAAE,CAAC,CAAC;IAE1B,MAAMC,aAAaC,OAAOH;IAE1B,OACEL,cAAcN,uBACbO,CAAAA,SAAS,aAAaA,SAAS,MAAK,KACrC,OAAOC,gBAAgB,YACvB,CAACO,MAAMF,eACPA,cAAcG,oBAAAA,kBAAkB;AAEpC","ignoreList":[0]}}, - {"offset": {"line": 424, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/is-next-router-error.ts"],"sourcesContent":["import {\n isHTTPAccessFallbackError,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\nimport { isRedirectError, type RedirectError } from './redirect-error'\n\n/**\n * Returns true if the error is a navigation signal error. These errors are\n * thrown by user code to perform navigation operations and interrupt the React\n * render.\n */\nexport function isNextRouterError(\n error: unknown\n): error is RedirectError | HTTPAccessFallbackError {\n return isRedirectError(error) || isHTTPAccessFallbackError(error)\n}\n"],"names":["isNextRouterError","error","isRedirectError","isHTTPAccessFallbackError"],"mappings":";;;+BAWgBA,qBAAAA;;;eAAAA;;;oCART;+BAC6C;AAO7C,SAASA,kBACdC,KAAc;IAEd,OAAOC,CAAAA,GAAAA,eAAAA,eAAe,EAACD,UAAUE,CAAAA,GAAAA,oBAAAA,yBAAyB,EAACF;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 449, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/lib/console.ts"],"sourcesContent":["import isError from '../../lib/is-error'\n\nfunction formatObject(arg: unknown, depth: number) {\n switch (typeof arg) {\n case 'object':\n if (arg === null) {\n return 'null'\n } else if (Array.isArray(arg)) {\n let result = '['\n if (depth < 1) {\n for (let i = 0; i < arg.length; i++) {\n if (result !== '[') {\n result += ','\n }\n if (Object.prototype.hasOwnProperty.call(arg, i)) {\n result += formatObject(arg[i], depth + 1)\n }\n }\n } else {\n result += arg.length > 0 ? '...' : ''\n }\n result += ']'\n return result\n } else if (arg instanceof Error) {\n return arg + ''\n } else {\n const keys = Object.keys(arg)\n let result = '{'\n if (depth < 1) {\n for (let i = 0; i < keys.length; i++) {\n const key = keys[i]\n const desc = Object.getOwnPropertyDescriptor(arg, 'key')\n if (desc && !desc.get && !desc.set) {\n const jsonKey = JSON.stringify(key)\n if (jsonKey !== '\"' + key + '\"') {\n result += jsonKey + ': '\n } else {\n result += key + ': '\n }\n result += formatObject(desc.value, depth + 1)\n }\n }\n } else {\n result += keys.length > 0 ? '...' : ''\n }\n result += '}'\n return result\n }\n case 'string':\n return JSON.stringify(arg)\n case 'number':\n case 'bigint':\n case 'boolean':\n case 'symbol':\n case 'undefined':\n case 'function':\n default:\n return String(arg)\n }\n}\n\nexport function formatConsoleArgs(args: unknown[]): string {\n let message: string\n let idx: number\n if (typeof args[0] === 'string') {\n message = args[0]\n idx = 1\n } else {\n message = ''\n idx = 0\n }\n let result = ''\n let startQuote = false\n for (let i = 0; i < message.length; ++i) {\n const char = message[i]\n if (char !== '%' || i === message.length - 1 || idx >= args.length) {\n result += char\n continue\n }\n\n const code = message[++i]\n switch (code) {\n case 'c': {\n // TODO: We should colorize with HTML instead of turning into a string.\n // Ignore for now.\n result = startQuote ? `${result}]` : `[${result}`\n startQuote = !startQuote\n idx++\n break\n }\n case 'O':\n case 'o': {\n result += formatObject(args[idx++], 0)\n break\n }\n case 'd':\n case 'i': {\n result += parseInt(args[idx++] as any, 10)\n break\n }\n case 'f': {\n result += parseFloat(args[idx++] as any)\n break\n }\n case 's': {\n result += String(args[idx++])\n break\n }\n default:\n result += '%' + code\n }\n }\n\n for (; idx < args.length; idx++) {\n result += (idx > 0 ? ' ' : '') + formatObject(args[idx], 0)\n }\n\n return result\n}\n\nexport function parseConsoleArgs(args: unknown[]): {\n environmentName: string | null\n error: Error | null\n} {\n // See\n // https://github.com/facebook/react/blob/65a56d0e99261481c721334a3ec4561d173594cd/packages/react-devtools-shared/src/backend/flight/renderer.js#L88-L93\n //\n // Logs replayed from the server look like this:\n // [\n // \"%c%s%c%o\\n\\n%s\\n\\n%s\\n\",\n // \"background: #e6e6e6; ...\",\n // \" Server \", // can also be e.g. \" Prerender \"\n // \"\",\n // Error,\n // \"The above error occurred in the <Page> component.\",\n // ...\n // ]\n if (\n args.length > 3 &&\n typeof args[0] === 'string' &&\n args[0].startsWith('%c%s%c') &&\n typeof args[1] === 'string' &&\n typeof args[2] === 'string' &&\n typeof args[3] === 'string'\n ) {\n const environmentName = args[2]\n const maybeError = args[4]\n\n return {\n environmentName: environmentName.trim(),\n error: isError(maybeError) ? maybeError : null,\n }\n }\n\n return {\n environmentName: null,\n error: null,\n }\n}\n"],"names":["formatConsoleArgs","parseConsoleArgs","formatObject","arg","depth","Array","isArray","result","i","length","Object","prototype","hasOwnProperty","call","Error","keys","key","desc","getOwnPropertyDescriptor","get","set","jsonKey","JSON","stringify","value","String","args","message","idx","startQuote","char","code","parseInt","parseFloat","startsWith","environmentName","maybeError","trim","error","isError"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 628, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-globals.ts"],"sourcesContent":["// imports polyfill from `@next/polyfill-module` after build.\nimport '../build/polyfills/polyfill-module'\n\n// Only setup devtools in development\nif (process.env.NODE_ENV !== 'production') {\n require('../next-devtools/userspace/app/app-dev-overlay-setup') as typeof import('../next-devtools/userspace/app/app-dev-overlay-setup')\n}\n"],"names":["process","env","NODE_ENV","require"],"mappings":"AAIIA,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAJ7B,6DAA6D;;;;;;AAG7D,qCAAqC;AACrC,wCAA2C;;AAE3C","ignoreList":[0]}}, - {"offset": {"line": 650, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/readonly-url-search-params.ts"],"sourcesContent":["/**\n * ReadonlyURLSearchParams implementation shared between client and server.\n * This file is intentionally not marked as 'use client' or 'use server'\n * so it can be imported by both environments.\n */\n\n/** @internal */\nclass ReadonlyURLSearchParamsError extends Error {\n constructor() {\n super(\n 'Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams'\n )\n }\n}\n\n/**\n * A read-only version of URLSearchParams that throws errors when mutation methods are called.\n * This ensures that the URLSearchParams returned by useSearchParams() cannot be mutated.\n */\nexport class ReadonlyURLSearchParams extends URLSearchParams {\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n append() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n delete() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n set() {\n throw new ReadonlyURLSearchParamsError()\n }\n /** @deprecated Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams */\n sort() {\n throw new ReadonlyURLSearchParamsError()\n }\n}\n"],"names":["ReadonlyURLSearchParams","ReadonlyURLSearchParamsError","Error","constructor","URLSearchParams","append","delete","set","sort"],"mappings":"AAAA;;;;CAIC,GAED,cAAc;;;+BAaDA,2BAAAA;;;eAAAA;;;AAZb,MAAMC,qCAAqCC;IACzCC,aAAc;QACZ,KAAK,CACH;IAEJ;AACF;AAMO,MAAMH,gCAAgCI;IAC3C,wKAAwK,GACxKC,SAAS;QACP,MAAM,IAAIJ;IACZ;IACA,wKAAwK,GACxKK,SAAS;QACP,MAAM,IAAIL;IACZ;IACA,wKAAwK,GACxKM,MAAM;QACJ,MAAM,IAAIN;IACZ;IACA,wKAAwK,GACxKO,OAAO;QACL,MAAM,IAAIP;IACZ;AACF","ignoreList":[0]}}, - {"offset": {"line": 693, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-headers.ts"],"sourcesContent":["export const RSC_HEADER = 'rsc' as const\nexport const ACTION_HEADER = 'next-action' as const\n// TODO: Instead of sending the full router state, we only need to send the\n// segment path. Saves bytes. Then we could also use this field for segment\n// prefetches, which also need to specify a particular segment.\nexport const NEXT_ROUTER_STATE_TREE_HEADER = 'next-router-state-tree' as const\nexport const NEXT_ROUTER_PREFETCH_HEADER = 'next-router-prefetch' as const\n// This contains the path to the segment being prefetched.\n// TODO: If we change next-router-state-tree to be a segment path, we can use\n// that instead. Then next-router-prefetch and next-router-segment-prefetch can\n// be merged into a single enum.\nexport const NEXT_ROUTER_SEGMENT_PREFETCH_HEADER =\n 'next-router-segment-prefetch' as const\nexport const NEXT_HMR_REFRESH_HEADER = 'next-hmr-refresh' as const\nexport const NEXT_HMR_REFRESH_HASH_COOKIE = '__next_hmr_refresh_hash__' as const\nexport const NEXT_URL = 'next-url' as const\nexport const RSC_CONTENT_TYPE_HEADER = 'text/x-component' as const\n\nexport const FLIGHT_HEADERS = [\n RSC_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n] as const\n\nexport const NEXT_RSC_UNION_QUERY = '_rsc' as const\n\nexport const NEXT_ROUTER_STALE_TIME_HEADER = 'x-nextjs-stale-time' as const\nexport const NEXT_DID_POSTPONE_HEADER = 'x-nextjs-postponed' as const\nexport const NEXT_REWRITTEN_PATH_HEADER = 'x-nextjs-rewritten-path' as const\nexport const NEXT_REWRITTEN_QUERY_HEADER = 'x-nextjs-rewritten-query' as const\nexport const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\nexport const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\nexport const NEXT_REQUEST_ID_HEADER = 'x-nextjs-request-id' as const\nexport const NEXT_HTML_REQUEST_ID_HEADER = 'x-nextjs-html-request-id' as const\n\n// TODO: Should this include nextjs in the name, like the others?\nexport const NEXT_ACTION_REVALIDATED_HEADER = 'x-action-revalidated' as const\n"],"names":["ACTION_HEADER","FLIGHT_HEADERS","NEXT_ACTION_NOT_FOUND_HEADER","NEXT_ACTION_REVALIDATED_HEADER","NEXT_DID_POSTPONE_HEADER","NEXT_HMR_REFRESH_HASH_COOKIE","NEXT_HMR_REFRESH_HEADER","NEXT_HTML_REQUEST_ID_HEADER","NEXT_IS_PRERENDER_HEADER","NEXT_REQUEST_ID_HEADER","NEXT_REWRITTEN_PATH_HEADER","NEXT_REWRITTEN_QUERY_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STALE_TIME_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_RSC_UNION_QUERY","NEXT_URL","RSC_CONTENT_TYPE_HEADER","RSC_HEADER"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IACaA,aAAa,EAAA;eAAbA;;IAiBAC,cAAc,EAAA;eAAdA;;IAeAC,4BAA4B,EAAA;eAA5BA;;IAKAC,8BAA8B,EAAA;eAA9BA;;IATAC,wBAAwB,EAAA;eAAxBA;;IAfAC,4BAA4B,EAAA;eAA5BA;;IADAC,uBAAuB,EAAA;eAAvBA;;IAsBAC,2BAA2B,EAAA;eAA3BA;;IAHAC,wBAAwB,EAAA;eAAxBA;;IAEAC,sBAAsB,EAAA;eAAtBA;;IAJAC,0BAA0B,EAAA;eAA1BA;;IACAC,2BAA2B,EAAA;eAA3BA;;IAzBAC,2BAA2B,EAAA;eAA3BA;;IAKAC,mCAAmC,EAAA;eAAnCA;;IAiBAC,6BAA6B,EAAA;eAA7BA;;IAvBAC,6BAA6B,EAAA;eAA7BA;;IAqBAC,oBAAoB,EAAA;eAApBA;;IAXAC,QAAQ,EAAA;eAARA;;IACAC,uBAAuB,EAAA;eAAvBA;;IAhBAC,UAAU,EAAA;eAAVA;;;AAAN,MAAMA,aAAa;AACnB,MAAMnB,gBAAgB;AAItB,MAAMe,gCAAgC;AACtC,MAAMH,8BAA8B;AAKpC,MAAMC,sCACX;AACK,MAAMP,0BAA0B;AAChC,MAAMD,+BAA+B;AACrC,MAAMY,WAAW;AACjB,MAAMC,0BAA0B;AAEhC,MAAMjB,iBAAiB;IAC5BkB;IACAJ;IACAH;IACAN;IACAO;CACD;AAEM,MAAMG,uBAAuB;AAE7B,MAAMF,gCAAgC;AACtC,MAAMV,2BAA2B;AACjC,MAAMM,6BAA6B;AACnC,MAAMC,8BAA8B;AACpC,MAAMH,2BAA2B;AACjC,MAAMN,+BAA+B;AACrC,MAAMO,yBAAyB;AAC/B,MAAMF,8BAA8B;AAGpC,MAAMJ,iCAAiC","ignoreList":[0]}}, - {"offset": {"line": 823, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation-untracked.ts"],"sourcesContent":["import { useContext } from 'react'\nimport { PathnameContext } from '../../shared/lib/hooks-client-context.shared-runtime'\n\n/**\n * This checks to see if the current render has any unknown route parameters that\n * would cause the pathname to be dynamic. It's used to trigger a different\n * render path in the error boundary.\n *\n * @returns true if there are any unknown route parameters, false otherwise\n */\nfunction hasFallbackRouteParams(): boolean {\n if (typeof window === 'undefined') {\n // AsyncLocalStorage should not be included in the client bundle.\n const { workUnitAsyncStorage } =\n require('../../server/app-render/work-unit-async-storage.external') as typeof import('../../server/app-render/work-unit-async-storage.external')\n\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (!workUnitStore) return false\n\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n const fallbackParams = workUnitStore.fallbackRouteParams\n return fallbackParams ? fallbackParams.size > 0 : false\n case 'prerender-legacy':\n case 'request':\n case 'prerender-runtime':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n\n return false\n }\n\n return false\n}\n\n/**\n * This returns a `null` value if there are any unknown route parameters, and\n * otherwise returns the pathname from the context. This is an alternative to\n * `usePathname` that is used in the error boundary to avoid rendering the\n * error boundary when there are unknown route parameters. This doesn't throw\n * when accessed with unknown route parameters.\n *\n * @returns\n *\n * @internal\n */\nexport function useUntrackedPathname(): string | null {\n // If there are any unknown route parameters we would typically throw\n // an error, but this internal method allows us to return a null value instead\n // for components that do not propagate the pathname to the static shell (like\n // the error boundary).\n if (hasFallbackRouteParams()) {\n return null\n }\n\n // This shouldn't cause any issues related to conditional rendering because\n // the environment will be consistent for the render.\n // eslint-disable-next-line react-hooks/rules-of-hooks\n return useContext(PathnameContext)\n}\n"],"names":["useUntrackedPathname","hasFallbackRouteParams","window","workUnitAsyncStorage","require","workUnitStore","getStore","type","fallbackParams","fallbackRouteParams","size","useContext","PathnameContext"],"mappings":";;;+BAqDgBA,wBAAAA;;;eAAAA;;;uBArDW;iDACK;AAEhC;;;;;;CAMC,GACD,SAASC;IACP,IAAI,OAAOC,WAAW,aAAa;QACjC,iEAAiE;QACjE,MAAM,EAAEC,oBAAoB,EAAE,GAC5BC,QAAQ;QAEV,MAAMC,gBAAgBF,qBAAqBG,QAAQ;QACnD,IAAI,CAACD,eAAe,OAAO;QAE3B,OAAQA,cAAcE,IAAI;YACxB,KAAK;YACL,KAAK;YACL,KAAK;gBACH,MAAMC,iBAAiBH,cAAcI,mBAAmB;gBACxD,OAAOD,iBAAiBA,eAAeE,IAAI,GAAG,IAAI;YACpD,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;YACL,KAAK;gBACH;YACF;gBACEL;QACJ;QAEA,OAAO;IACT;IAEA,OAAO;AACT;AAaO,SAASL;IACd,qEAAqE;IACrE,8EAA8E;IAC9E,8EAA8E;IAC9E,uBAAuB;IACvB,IAAIC,0BAA0B;QAC5B,OAAO;IACT;IAEA,2EAA2E;IAC3E,qDAAqD;IACrD,sDAAsD;IACtD,OAAOU,CAAAA,GAAAA,OAAAA,UAAU,EAACC,iCAAAA,eAAe;AACnC","ignoreList":[0]}}, - {"offset": {"line": 890, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/create-href-from-url.ts"],"sourcesContent":["export function createHrefFromUrl(\n url: Pick<URL, 'pathname' | 'search' | 'hash'>,\n includeHash: boolean = true\n): string {\n return url.pathname + url.search + (includeHash ? url.hash : '')\n}\n"],"names":["createHrefFromUrl","url","includeHash","pathname","search","hash"],"mappings":";;;+BAAgBA,qBAAAA;;;eAAAA;;;AAAT,SAASA,kBACdC,GAA8C,EAC9CC,cAAuB,IAAI;IAE3B,OAAOD,IAAIE,QAAQ,GAAGF,IAAIG,MAAM,GAAIF,CAAAA,cAAcD,IAAII,IAAI,GAAG,EAAC;AAChE","ignoreList":[0]}}, - {"offset": {"line": 913, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/nav-failure-handler.ts"],"sourcesContent":["import { useEffect } from 'react'\nimport { createHrefFromUrl } from './router-reducer/create-href-from-url'\n\nexport function handleHardNavError(error: unknown): boolean {\n if (\n error &&\n typeof window !== 'undefined' &&\n window.next.__pendingUrl &&\n createHrefFromUrl(new URL(window.location.href)) !==\n createHrefFromUrl(window.next.__pendingUrl)\n ) {\n console.error(\n `Error occurred during navigation, falling back to hard navigation`,\n error\n )\n window.location.href = window.next.__pendingUrl.toString()\n return true\n }\n return false\n}\n\nexport function useNavFailureHandler() {\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n // this if is only for DCE of the feature flag not conditional\n // eslint-disable-next-line react-hooks/rules-of-hooks\n useEffect(() => {\n const uncaughtExceptionHandler = (\n evt: ErrorEvent | PromiseRejectionEvent\n ) => {\n const error = 'reason' in evt ? evt.reason : evt.error\n // if we have an unhandled exception/rejection during\n // a navigation we fall back to a hard navigation to\n // attempt recovering to a good state\n handleHardNavError(error)\n }\n window.addEventListener('unhandledrejection', uncaughtExceptionHandler)\n window.addEventListener('error', uncaughtExceptionHandler)\n return () => {\n window.removeEventListener('error', uncaughtExceptionHandler)\n window.removeEventListener(\n 'unhandledrejection',\n uncaughtExceptionHandler\n )\n }\n }, [])\n }\n}\n"],"names":["handleHardNavError","useNavFailureHandler","error","window","next","__pendingUrl","createHrefFromUrl","URL","location","href","console","toString","process","env","__NEXT_APP_NAV_FAIL_HANDLING","useEffect","uncaughtExceptionHandler","evt","reason","addEventListener","removeEventListener"],"mappings":"AAsBMY,QAAQC,GAAG,CAACC,4BAA4B,EAAE;;;;;;;;;;;;;;;;IAnBhCd,kBAAkB,EAAA;eAAlBA;;IAkBAC,oBAAoB,EAAA;eAApBA;;;uBArBU;mCACQ;AAE3B,SAASD,mBAAmBE,KAAc;IAC/C,IACEA,SACA,OAAOC,WAAW,eAClBA,OAAOC,IAAI,CAACC,YAAY,IACxBC,CAAAA,GAAAA,mBAAAA,iBAAiB,EAAC,IAAIC,IAAIJ,OAAOK,QAAQ,CAACC,IAAI,OAC5CH,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACH,OAAOC,IAAI,CAACC,YAAY,GAC5C;QACAK,QAAQR,KAAK,CACX,CAAC,iEAAiE,CAAC,EACnEA;QAEFC,OAAOK,QAAQ,CAACC,IAAI,GAAGN,OAAOC,IAAI,CAACC,YAAY,CAACM,QAAQ;QACxD,OAAO;IACT;IACA,OAAO;AACT;AAEO,SAASV;IACd;;AAwBF","ignoreList":[0]}}, - {"offset": {"line": 961, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/handle-isr-error.tsx"],"sourcesContent":["const workAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/work-async-storage.external') as typeof import('../../server/app-render/work-async-storage.external')\n ).workAsyncStorage\n : undefined\n\n// if we are revalidating we want to re-throw the error so the\n// function crashes so we can maintain our previous cache\n// instead of caching the error page\nexport function HandleISRError({ error }: { error: any }) {\n if (workAsyncStorage) {\n const store = workAsyncStorage.getStore()\n if (store?.isStaticGeneration) {\n if (error) {\n console.error(error)\n }\n throw error\n }\n }\n\n return null\n}\n"],"names":["HandleISRError","workAsyncStorage","window","require","undefined","error","store","getStore","isStaticGeneration","console"],"mappings":";;;+BAUgBA,kBAAAA;;;eAAAA;;;AAVhB,MAAMC,mBACJ,OAAOC,WAAW,cAEZC,QAAQ,+HACRF,gBAAgB,GAClBG;AAKC,SAASJ,eAAe,EAAEK,KAAK,EAAkB;IACtD,IAAIJ,kBAAkB;QACpB,MAAMK,QAAQL,iBAAiBM,QAAQ;QACvC,IAAID,OAAOE,oBAAoB;YAC7B,IAAIH,OAAO;gBACTI,QAAQJ,KAAK,CAACA;YAChB;YACA,MAAMA;QACR;IACF;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 994, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/error-boundary.tsx"],"sourcesContent":["'use client'\n\nimport React, { type JSX } from 'react'\nimport { useUntrackedPathname } from './navigation-untracked'\nimport { isNextRouterError } from './is-next-router-error'\nimport { handleHardNavError } from './nav-failure-handler'\nimport { HandleISRError } from './handle-isr-error'\nimport { isBot } from '../../shared/lib/router/utils/is-bot'\n\nconst isBotUserAgent =\n typeof window !== 'undefined' && isBot(window.navigator.userAgent)\n\nexport type ErrorComponent = React.ComponentType<{\n error: Error\n // global-error, there's no `reset` function;\n // regular error boundary, there's a `reset` function.\n reset?: () => void\n}>\n\nexport interface ErrorBoundaryProps {\n children?: React.ReactNode\n errorComponent: ErrorComponent | undefined\n errorStyles?: React.ReactNode | undefined\n errorScripts?: React.ReactNode | undefined\n}\n\ninterface ErrorBoundaryHandlerProps extends ErrorBoundaryProps {\n pathname: string | null\n errorComponent: ErrorComponent\n}\n\ninterface ErrorBoundaryHandlerState {\n error: Error | null\n previousPathname: string | null\n}\n\nexport class ErrorBoundaryHandler extends React.Component<\n ErrorBoundaryHandlerProps,\n ErrorBoundaryHandlerState\n> {\n constructor(props: ErrorBoundaryHandlerProps) {\n super(props)\n this.state = { error: null, previousPathname: this.props.pathname }\n }\n\n static getDerivedStateFromError(error: Error) {\n if (isNextRouterError(error)) {\n // Re-throw if an expected internal Next.js router error occurs\n // this means it should be handled by a different boundary (such as a NotFound boundary in a parent segment)\n throw error\n }\n\n return { error }\n }\n\n static getDerivedStateFromProps(\n props: ErrorBoundaryHandlerProps,\n state: ErrorBoundaryHandlerState\n ): ErrorBoundaryHandlerState | null {\n const { error } = state\n\n // if we encounter an error while\n // a navigation is pending we shouldn't render\n // the error boundary and instead should fallback\n // to a hard navigation to attempt recovering\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n if (error && handleHardNavError(error)) {\n // clear error so we don't render anything\n return {\n error: null,\n previousPathname: props.pathname,\n }\n }\n }\n\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.error) {\n return {\n error: null,\n previousPathname: props.pathname,\n }\n }\n return {\n error: state.error,\n previousPathname: props.pathname,\n }\n }\n\n reset = () => {\n this.setState({ error: null })\n }\n\n // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version.\n render(): React.ReactNode {\n //When it's bot request, segment level error boundary will keep rendering the children,\n // the final error will be caught by the root error boundary and determine wether need to apply graceful degrade.\n if (this.state.error && !isBotUserAgent) {\n return (\n <>\n <HandleISRError error={this.state.error} />\n {this.props.errorStyles}\n {this.props.errorScripts}\n <this.props.errorComponent\n error={this.state.error}\n reset={this.reset}\n />\n </>\n )\n }\n\n return this.props.children\n }\n}\n\n/**\n * Handles errors through `getDerivedStateFromError`.\n * Renders the provided error component and provides a way to `reset` the error boundary state.\n */\n\n/**\n * Renders error boundary with the provided \"errorComponent\" property as the fallback.\n * If no \"errorComponent\" property is provided it renders the children without an error boundary.\n */\nexport function ErrorBoundary({\n errorComponent,\n errorStyles,\n errorScripts,\n children,\n}: ErrorBoundaryProps & {\n children: React.ReactNode\n}): JSX.Element {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these errors can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n if (errorComponent) {\n return (\n <ErrorBoundaryHandler\n pathname={pathname}\n errorComponent={errorComponent}\n errorStyles={errorStyles}\n errorScripts={errorScripts}\n >\n {children}\n </ErrorBoundaryHandler>\n )\n }\n\n return <>{children}</>\n}\n"],"names":["ErrorBoundary","ErrorBoundaryHandler","isBotUserAgent","window","isBot","navigator","userAgent","React","Component","constructor","props","reset","setState","error","state","previousPathname","pathname","getDerivedStateFromError","isNextRouterError","getDerivedStateFromProps","process","env","__NEXT_APP_NAV_FAIL_HANDLING","handleHardNavError","render","HandleISRError","errorStyles","errorScripts","this","errorComponent","children","useUntrackedPathname"],"mappings":"AAiEQoB,QAAQC,GAAG,CAACC,4BAA4B,EAAE;AAjElD;;;;;;;;;;;;;;;;IAgIgBtB,aAAa,EAAA;eAAbA;;IA5FHC,oBAAoB,EAAA;eAApBA;;;;;gEAlCmB;qCACK;mCACH;mCACC;gCACJ;uBACT;AAEtB,MAAMC,iBACJ,OAAOC,WAAW,eAAeC,CAAAA,GAAAA,OAAAA,KAAK,EAACD,OAAOE,SAAS,CAACC,SAAS;AA0B5D,MAAML,6BAA6BM,OAAAA,OAAK,CAACC,SAAS;IAIvDC,YAAYC,KAAgC,CAAE;QAC5C,KAAK,CAACA,QAAAA,IAAAA,CAoDRC,KAAAA,GAAQ;YACN,IAAI,CAACC,QAAQ,CAAC;gBAAEC,OAAO;YAAK;QAC9B;QArDE,IAAI,CAACC,KAAK,GAAG;YAAED,OAAO;YAAME,kBAAkB,IAAI,CAACL,KAAK,CAACM,QAAQ;QAAC;IACpE;IAEA,OAAOC,yBAAyBJ,KAAY,EAAE;QAC5C,IAAIK,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACL,QAAQ;YAC5B,+DAA+D;YAC/D,4GAA4G;YAC5G,MAAMA;QACR;QAEA,OAAO;YAAEA;QAAM;IACjB;IAEA,OAAOM,yBACLT,KAAgC,EAChCI,KAAgC,EACE;QAClC,MAAM,EAAED,KAAK,EAAE,GAAGC;QAElB,iCAAiC;QACjC,8CAA8C;QAC9C,iDAAiD;QACjD,6CAA6C;QAC7C;;QAUA;;;;;KAKC,GACD,IAAIJ,MAAMM,QAAQ,KAAKF,MAAMC,gBAAgB,IAAID,MAAMD,KAAK,EAAE;YAC5D,OAAO;gBACLA,OAAO;gBACPE,kBAAkBL,MAAMM,QAAQ;YAClC;QACF;QACA,OAAO;YACLH,OAAOC,MAAMD,KAAK;YAClBE,kBAAkBL,MAAMM,QAAQ;QAClC;IACF;IAMA,yIAAyI;IACzIQ,SAA0B;QACxB,uFAAuF;QACvF,iHAAiH;QACjH,IAAI,IAAI,CAACV,KAAK,CAACD,KAAK,IAAI,CAACX,gBAAgB;YACvC,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,IAAA,EAAA,YAAA,QAAA,EAAA;;kCACE,CAAA,GAAA,YAAA,GAAA,EAACuB,gBAAAA,cAAc,EAAA;wBAACZ,OAAO,IAAI,CAACC,KAAK,CAACD,KAAK;;oBACtC,IAAI,CAACH,KAAK,CAACgB,WAAW;oBACtB,IAAI,CAAChB,KAAK,CAACiB,YAAY;kCACxB,CAAA,GAAA,YAAA,GAAA,EAACC,IAAI,CAAClB,KAAK,CAACmB,cAAc,EAAA;wBACxBhB,OAAO,IAAI,CAACC,KAAK,CAACD,KAAK;wBACvBF,OAAO,IAAI,CAACA,KAAK;;;;QAIzB;QAEA,OAAO,IAAI,CAACD,KAAK,CAACoB,QAAQ;IAC5B;AACF;AAWO,SAAS9B,cAAc,EAC5B6B,cAAc,EACdH,WAAW,EACXC,YAAY,EACZG,QAAQ,EAGT;IACC,6EAA6E;IAC7E,qEAAqE;IACrE,wEAAwE;IACxE,oEAAoE;IACpE,MAAMd,WAAWe,CAAAA,GAAAA,qBAAAA,oBAAoB;IACrC,IAAIF,gBAAgB;QAClB,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAAC5B,sBAAAA;YACCe,UAAUA;YACVa,gBAAgBA;YAChBH,aAAaA;YACbC,cAAcA;sBAEbG;;IAGP;IAEA,OAAA,WAAA,GAAO,CAAA,GAAA,YAAA,GAAA,EAAA,YAAA,QAAA,EAAA;kBAAGA;;AACZ","ignoreList":[0]}}, - {"offset": {"line": 1125, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/builtin/global-error.tsx"],"sourcesContent":["'use client'\n\nimport { HandleISRError } from '../handle-isr-error'\n\nconst styles = {\n error: {\n // https://github.com/sindresorhus/modern-normalize/blob/main/modern-normalize.css#L38-L52\n fontFamily:\n 'system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"',\n height: '100vh',\n textAlign: 'center',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n text: {\n fontSize: '14px',\n fontWeight: 400,\n lineHeight: '28px',\n margin: '0 8px',\n },\n} as const\n\nexport type GlobalErrorComponent = React.ComponentType<{\n error: any\n}>\nfunction DefaultGlobalError({ error }: { error: any }) {\n const digest: string | undefined = error?.digest\n return (\n <html id=\"__next_error__\">\n <head></head>\n <body>\n <HandleISRError error={error} />\n <div style={styles.error}>\n <div>\n <h2 style={styles.text}>\n Application error: a {digest ? 'server' : 'client'}-side exception\n has occurred while loading {window.location.hostname} (see the{' '}\n {digest ? 'server logs' : 'browser console'} for more\n information).\n </h2>\n {digest ? <p style={styles.text}>{`Digest: ${digest}`}</p> : null}\n </div>\n </div>\n </body>\n </html>\n )\n}\n\n// Exported so that the import signature in the loaders can be identical to user\n// supplied custom global error signatures.\nexport default DefaultGlobalError\n"],"names":["styles","error","fontFamily","height","textAlign","display","flexDirection","alignItems","justifyContent","text","fontSize","fontWeight","lineHeight","margin","DefaultGlobalError","digest","html","id","head","body","HandleISRError","div","style","h2","window","location","hostname","p"],"mappings":";;;+BAmDA,AADA,2CAC2C,qCADqC;AAEhF,WAAA;;;eAAA;;;;gCAlD+B;AAE/B,MAAMA,SAAS;IACbC,OAAO;QACL,0FAA0F;QAC1FC,YACE;QACFC,QAAQ;QACRC,WAAW;QACXC,SAAS;QACTC,eAAe;QACfC,YAAY;QACZC,gBAAgB;IAClB;IACAC,MAAM;QACJC,UAAU;QACVC,YAAY;QACZC,YAAY;QACZC,QAAQ;IACV;AACF;AAKA,SAASC,mBAAmB,EAAEb,KAAK,EAAkB;IACnD,MAAMc,SAA6Bd,OAAOc;IAC1C,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,IAAA,EAACC,QAAAA;QAAKC,IAAG;;0BACP,CAAA,GAAA,YAAA,GAAA,EAACC,QAAAA,CAAAA;0BACD,CAAA,GAAA,YAAA,IAAA,EAACC,QAAAA;;kCACC,CAAA,GAAA,YAAA,GAAA,EAACC,gBAAAA,cAAc,EAAA;wBAACnB,OAAOA;;kCACvB,CAAA,GAAA,YAAA,GAAA,EAACoB,OAAAA;wBAAIC,OAAOtB,OAAOC,KAAK;kCACtB,WAAA,GAAA,CAAA,GAAA,YAAA,IAAA,EAACoB,OAAAA;;8CACC,CAAA,GAAA,YAAA,IAAA,EAACE,MAAAA;oCAAGD,OAAOtB,OAAOS,IAAI;;wCAAE;wCACAM,SAAS,WAAW;wCAAS;wCACvBS,OAAOC,QAAQ,CAACC,QAAQ;wCAAC;wCAAU;wCAC9DX,SAAS,gBAAgB;wCAAkB;;;gCAG7CA,SAAAA,WAAAA,GAAS,CAAA,GAAA,YAAA,GAAA,EAACY,KAAAA;oCAAEL,OAAOtB,OAAOS,IAAI;8CAAG,CAAC,QAAQ,EAAEM,QAAQ;qCAAQ;;;;;;;;AAMzE;MAIA,WAAeD","ignoreList":[0]}}, - {"offset": {"line": 1207, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/dev/runtime-error-handler.ts"],"sourcesContent":["export const RuntimeErrorHandler = {\n hadRuntimeError: false,\n}\n"],"names":["RuntimeErrorHandler","hadRuntimeError"],"mappings":";;;+BAAaA,uBAAAA;;;eAAAA;;;AAAN,MAAMA,sBAAsB;IACjCC,iBAAiB;AACnB","ignoreList":[0]}}, - {"offset": {"line": 1230, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/not-found.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n/**\n * This function allows you to render the [not-found.js file](https://nextjs.org/docs/app/api-reference/file-conventions/not-found)\n * within a route segment as well as inject a tag.\n *\n * `notFound()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a `<meta name=\"robots\" content=\"noindex\" />` meta tag and set the status code to 404.\n * - In a Route Handler or Server Action, it will serve a 404 to the caller.\n *\n * Read more: [Next.js Docs: `notFound`](https://nextjs.org/docs/app/api-reference/functions/not-found)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};404`\n\nexport function notFound(): never {\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n\n throw error\n}\n"],"names":["notFound","DIGEST","HTTP_ERROR_FALLBACK_ERROR_CODE","error","Error","digest"],"mappings":";;;+BAsBgBA,YAAAA;;;eAAAA;;;oCAnBT;AAEP;;;;;;;;;;;;;CAaC,GAED,MAAMC,SAAS,GAAGC,oBAAAA,8BAA8B,CAAC,IAAI,CAAC;AAE/C,SAASF;IACd,MAAMG,QAAQ,OAAA,cAAiB,CAAjB,IAAIC,MAAMH,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BE,MAAkCE,MAAM,GAAGJ;IAE7C,MAAME;AACR","ignoreList":[0]}}, - {"offset": {"line": 1274, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/react-client-callbacks/error-boundary-callbacks.ts"],"sourcesContent":["// This file is only used in app router due to the specific error state handling.\n\nimport type { ErrorInfo } from 'react'\nimport { isNextRouterError } from '../components/is-next-router-error'\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { reportGlobalError } from './report-global-error'\nimport { ErrorBoundaryHandler } from '../components/error-boundary'\nimport DefaultErrorBoundary from '../components/builtin/global-error'\n\nconst devToolErrorMod: typeof import('../../next-devtools/userspace/app/errors') =\n process.env.NODE_ENV !== 'production'\n ? (require('../../next-devtools/userspace/app/errors') as typeof import('../../next-devtools/userspace/app/errors'))\n : {\n decorateDevError: (error: unknown) => error as Error,\n handleClientError: () => {},\n originConsoleError: console.error.bind(console),\n }\n\nexport function onCaughtError(\n thrownValue: unknown,\n errorInfo: ErrorInfo & { errorBoundary?: React.Component }\n) {\n const errorBoundaryComponent = errorInfo.errorBoundary?.constructor\n\n let isImplicitErrorBoundary\n\n if (process.env.NODE_ENV !== 'production') {\n const { AppDevOverlayErrorBoundary } =\n require('../../next-devtools/userspace/app/app-dev-overlay-error-boundary') as typeof import('../../next-devtools/userspace/app/app-dev-overlay-error-boundary')\n\n isImplicitErrorBoundary =\n errorBoundaryComponent === AppDevOverlayErrorBoundary\n }\n\n isImplicitErrorBoundary =\n isImplicitErrorBoundary ||\n (errorBoundaryComponent === ErrorBoundaryHandler &&\n (errorInfo.errorBoundary! as InstanceType<typeof ErrorBoundaryHandler>)\n .props.errorComponent === DefaultErrorBoundary)\n\n // Skip the segment explorer triggered error\n if (process.env.NODE_ENV !== 'production') {\n const { SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE } =\n require('../../next-devtools/userspace/app/segment-explorer-node') as typeof import('../../next-devtools/userspace/app/segment-explorer-node')\n if (\n thrownValue instanceof Error &&\n thrownValue.message === SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE\n ) {\n return\n }\n }\n\n if (isImplicitErrorBoundary) {\n // We don't consider errors caught unless they're caught by an explicit error\n // boundary. The built-in ones are considered implicit.\n // This mimics how the same app would behave without Next.js.\n return onUncaughtError(thrownValue)\n }\n\n // Skip certain custom errors which are not expected to be reported on client\n if (isBailoutToCSRError(thrownValue) || isNextRouterError(thrownValue)) return\n\n if (process.env.NODE_ENV !== 'production') {\n const errorBoundaryName =\n // read react component displayName\n (errorBoundaryComponent as any)?.displayName ||\n errorBoundaryComponent?.name ||\n 'Unknown'\n\n const componentThatErroredFrame = errorInfo?.componentStack?.split('\\n')[1]\n\n // Match chrome or safari stack trace\n const matches =\n // regex to match the function name in the stack trace\n // example 1: at Page (http://localhost:3000/_next/static/chunks/pages/index.js?ts=1631600000000:2:1)\n // example 2: Page@http://localhost:3000/_next/static/chunks/pages/index.js?ts=1631600000000:2:1\n componentThatErroredFrame?.match(/\\s+at (\\w+)\\s+|(\\w+)@/) ?? []\n const componentThatErroredName = matches[1] || matches[2] || 'Unknown'\n\n // Create error location with errored component and error boundary, to match the behavior of default React onCaughtError handler.\n const errorBoundaryMessage = `It was handled by the <${errorBoundaryName}> error boundary.`\n const componentErrorMessage = componentThatErroredName\n ? `The above error occurred in the <${componentThatErroredName}> component.`\n : `The above error occurred in one of your components.`\n\n const errorLocation = `${componentErrorMessage} ${errorBoundaryMessage}`\n const error = devToolErrorMod.decorateDevError(thrownValue)\n\n // Log and report the error with location but without modifying the error stack\n devToolErrorMod.originConsoleError('%o\\n\\n%s', thrownValue, errorLocation)\n\n devToolErrorMod.handleClientError(error)\n } else {\n devToolErrorMod.originConsoleError(thrownValue)\n }\n}\n\nexport function onUncaughtError(thrownValue: unknown) {\n // Skip certain custom errors which are not expected to be reported on client\n if (isBailoutToCSRError(thrownValue) || isNextRouterError(thrownValue)) return\n\n if (process.env.NODE_ENV !== 'production') {\n const error = devToolErrorMod.decorateDevError(thrownValue)\n\n // TODO: Add an adendum to the overlay telling people about custom error boundaries.\n reportGlobalError(error)\n } else {\n reportGlobalError(thrownValue)\n }\n}\n"],"names":["onCaughtError","onUncaughtError","devToolErrorMod","process","env","NODE_ENV","require","decorateDevError","error","handleClientError","originConsoleError","console","bind","thrownValue","errorInfo","errorBoundaryComponent","errorBoundary","constructor","isImplicitErrorBoundary","AppDevOverlayErrorBoundary","ErrorBoundaryHandler","props","errorComponent","DefaultErrorBoundary","SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE","Error","message","isBailoutToCSRError","isNextRouterError","errorBoundaryName","displayName","name","componentThatErroredFrame","componentStack","split","matches","match","componentThatErroredName","errorBoundaryMessage","componentErrorMessage","errorLocation","reportGlobalError"],"mappings":"AAUEG,QAAQC,GAAG,CAACC,QAAQ,KAAK,eACpBC,QAAQ;AAXf,iFAAiF;;;;;;;;;;;;;;;;IAkBjEN,aAAa,EAAA;eAAbA;;IA+EAC,eAAe,EAAA;eAAfA;;;;mCA9FkB;8BACE;mCACF;+BACG;sEACJ;AAEjC,MAAMC,6LAGA;AAMC,SAASF,cACda,WAAoB,EACpBC,SAA0D;IAE1D,MAAMC,yBAAyBD,UAAUE,aAAa,EAAEC;IAExD,IAAIC;IAEJ,IAAIf,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,MAAM,EAAEc,0BAA0B,EAAE,GAClCb,QAAQ;QAEVY,0BACEH,2BAA2BI;IAC/B;IAEAD,0BACEA,2BACCH,2BAA2BK,eAAAA,oBAAoB,IAC7CN,UAAUE,aAAa,CACrBK,KAAK,CAACC,cAAc,KAAKC,aAAAA,OAAoB;IAEpD,4CAA4C;IAC5C,IAAIpB,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,MAAM,EAAEmB,wCAAwC,EAAE,GAChDlB,QAAQ;QACV,IACEO,uBAAuBY,SACvBZ,YAAYa,OAAO,KAAKF,0CACxB;YACA;QACF;IACF;IAEA,IAAIN,yBAAyB;QAC3B,6EAA6E;QAC7E,uDAAuD;QACvD,6DAA6D;QAC7D,OAAOjB,gBAAgBY;IACzB;IAEA,6EAA6E;IAC7E,IAAIc,CAAAA,GAAAA,cAAAA,mBAAmB,EAACd,gBAAgBe,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACf,cAAc;IAExE,IAAIV,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,MAAMwB,oBAEJ,AADA,AACCd,wBAAgCe,WADE,IAEnCf,wBAAwBgB,QACxB;QAEF,MAAMC,4BAA4BlB,WAAWmB,gBAAgBC,MAAM,KAAK,CAAC,EAAE;QAE3E,qCAAqC;QACrC,MAAMC,UACJ,AACA,sDADsD,+CAC+C;QACrG,gGAAgG;QAChGH,2BAA2BI,MAAM,4BAA4B,EAAE;QACjE,MAAMC,2BAA2BF,OAAO,CAAC,EAAE,IAAIA,OAAO,CAAC,EAAE,IAAI;QAE7D,iIAAiI;QACjI,MAAMG,uBAAuB,CAAC,uBAAuB,EAAET,kBAAkB,iBAAiB,CAAC;QAC3F,MAAMU,wBAAwBF,uCAC1B,CAAC,iCAAiC,EAAEA,yBAAyB,YAAY,CAAC,GAC1E,CAAC,mDAAmD,CAAC;QAEzD,MAAMG,gBAAgB,GAAGD,sBAAsB,CAAC,EAAED,sBAAsB;QACxE,MAAM9B,QAAQN,gBAAgBK,gBAAgB,CAACM;QAE/C,+EAA+E;QAC/EX,gBAAgBQ,kBAAkB,CAAC,YAAYG,aAAa2B;QAE5DtC,gBAAgBO,iBAAiB,CAACD;IACpC,OAAO;;AAGT;AAEO,SAASP,gBAAgBY,WAAoB;IAClD,6EAA6E;IAC7E,IAAIc,CAAAA,GAAAA,cAAAA,mBAAmB,EAACd,gBAAgBe,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACf,cAAc;IAExE,IAAIV,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,MAAMG,QAAQN,gBAAgBK,gBAAgB,CAACM;QAE/C,oFAAoF;QACpF4B,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACjC;IACpB,OAAO;;AAGT","ignoreList":[0]}}, - {"offset": {"line": 1368, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/router-reducer-types.ts"],"sourcesContent":["import type { CacheNode } from '../../../shared/lib/app-router-types'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type { NavigationSeed } from '../segment-cache/navigation'\nimport type { FetchServerResponseResult } from './fetch-server-response'\n\nexport const ACTION_REFRESH = 'refresh'\nexport const ACTION_NAVIGATE = 'navigate'\nexport const ACTION_RESTORE = 'restore'\nexport const ACTION_SERVER_PATCH = 'server-patch'\nexport const ACTION_HMR_REFRESH = 'hmr-refresh'\nexport const ACTION_SERVER_ACTION = 'server-action'\n\nexport type RouterChangeByServerResponse = ({\n navigatedAt,\n previousTree,\n serverResponse,\n}: {\n navigatedAt: number\n previousTree: FlightRouterState\n serverResponse: FetchServerResponseResult\n}) => void\n\nexport interface Mutable {\n mpaNavigation?: boolean\n patchedTree?: FlightRouterState\n renderedSearch?: string\n canonicalUrl?: string\n scrollableSegments?: FlightSegmentPath[]\n pendingPush?: boolean\n cache?: CacheNode\n hashFragment?: string\n shouldScroll?: boolean\n preserveCustomHistoryState?: boolean\n onlyHashChange?: boolean\n collectedDebugInfo?: Array<unknown>\n}\n\nexport interface ServerActionMutable extends Mutable {\n inFlightServerAction?: Promise<any> | null\n}\n\n/**\n * Refresh triggers a refresh of the full page data.\n * - fetches the Flight data and fills rsc at the root of the cache.\n * - The router state is updated at the root.\n */\nexport interface RefreshAction {\n type: typeof ACTION_REFRESH\n}\n\nexport interface HmrRefreshAction {\n type: typeof ACTION_HMR_REFRESH\n}\n\nexport type ServerActionDispatcher = (\n args: Omit<\n ServerActionAction,\n 'type' | 'mutable' | 'navigate' | 'changeByServerResponse' | 'cache'\n >\n) => void\n\nexport interface ServerActionAction {\n type: typeof ACTION_SERVER_ACTION\n actionId: string\n actionArgs: any[]\n resolve: (value: any) => void\n reject: (reason?: any) => void\n didRevalidate?: boolean\n}\n\n/**\n * Navigate triggers a navigation to the provided url. It supports two types: `push` and `replace`.\n *\n * `navigateType`:\n * - `push` - pushes a new history entry in the browser history\n * - `replace` - replaces the current history entry in the browser history\n *\n * Navigate has multiple cache heuristics:\n * - page was prefetched\n * - Apply router state tree from prefetch\n * - Apply Flight data from prefetch to the cache\n * - If Flight data is a string, it's a redirect and the state is updated to trigger a redirect\n * - Check if hard navigation is needed\n * - Hard navigation happens when a dynamic parameter below the common layout changed\n * - When hard navigation is needed the cache is invalidated below the flightSegmentPath\n * - The missing cache nodes of the page will be fetched in layout-router and trigger the SERVER_PATCH action\n * - If hard navigation is not needed\n * - The cache is reused\n * - If any cache nodes are missing they'll be fetched in layout-router and trigger the SERVER_PATCH action\n * - page was not prefetched\n * - The navigate was called from `next/router` (`router.push()` / `router.replace()`) / `next/link` without prefetched data available (e.g. the prefetch didn't come back from the server before clicking the link)\n * - Flight data is fetched in the reducer (suspends the reducer)\n * - Router state tree is created based on Flight data\n * - Cache is filled based on the Flight data\n *\n * Above steps explain 3 cases:\n * - `soft` - Reuses the existing cache and fetches missing nodes in layout-router.\n * - `hard` - Creates a new cache where cache nodes are removed below the common layout and fetches missing nodes in layout-router.\n * - `optimistic` (explicit no prefetch) - Creates a new cache and kicks off the data fetch in the reducer. The data fetch is awaited in the layout-router.\n */\nexport interface NavigateAction {\n type: typeof ACTION_NAVIGATE\n url: URL\n isExternalUrl: boolean\n locationSearch: Location['search']\n navigateType: 'push' | 'replace'\n shouldScroll: boolean\n}\n\n/**\n * Restore applies the provided router state.\n * - Used for `popstate` (back/forward navigation) where a known router state has to be applied.\n * - Also used when syncing the router state with `pushState`/`replaceState` calls.\n * - Router state is applied as-is from the history state, if available.\n * - If the history state does not contain the router state, the existing router state is used.\n * - If any cache node is missing it will be fetched in layout-router during rendering and the server-patch case.\n * - If existing cache nodes match these are used.\n */\nexport interface RestoreAction {\n type: typeof ACTION_RESTORE\n url: URL\n historyState: AppHistoryState | undefined\n}\n\nexport type AppHistoryState = {\n tree: FlightRouterState\n renderedSearch: string\n}\n\n/**\n * Server-patch applies the provided Flight data to the cache and router tree.\n */\nexport interface ServerPatchAction {\n type: typeof ACTION_SERVER_PATCH\n previousTree: FlightRouterState\n url: URL\n nextUrl: string | null\n seed: NavigationSeed | null\n mpa: boolean\n}\n\n/**\n * PrefetchKind defines the type of prefetching that should be done.\n * - `auto` - if the page is dynamic, prefetch the page data partially, if static prefetch the page data fully.\n * - `full` - prefetch the page data fully.\n */\n\nexport enum PrefetchKind {\n AUTO = 'auto',\n FULL = 'full',\n}\n\n/**\n * Prefetch adds the provided FlightData to the prefetch cache\n * - Creates the router state tree based on the patch in FlightData\n * - Adds the FlightData to the prefetch cache\n * - In ACTION_NAVIGATE the prefetch cache is checked and the router state tree and FlightData are applied.\n */\n\nexport interface PushRef {\n /**\n * If the app-router should push a new history entry in app-router's useEffect()\n */\n pendingPush: boolean\n /**\n * Multi-page navigation through location.href.\n */\n mpaNavigation: boolean\n /**\n * Skip applying the router state to the browser history state.\n */\n preserveCustomHistoryState: boolean\n}\n\nexport type FocusAndScrollRef = {\n /**\n * If focus and scroll should be set in the layout-router's useEffect()\n */\n apply: boolean\n /**\n * The hash fragment that should be scrolled to.\n */\n hashFragment: string | null\n /**\n * The paths of the segments that should be focused.\n */\n segmentPaths: FlightSegmentPath[]\n /**\n * If only the URLs hash fragment changed\n */\n onlyHashChange: boolean\n}\n\n/**\n * Handles keeping the state of app-router.\n */\nexport type AppRouterState = {\n /**\n * The router state, this is written into the history state in app-router using replaceState/pushState.\n * - Has to be serializable as it is written into the history state.\n * - Holds which segments and parallel routes are shown on the screen.\n */\n tree: FlightRouterState\n /**\n * The cache holds React nodes for every segment that is shown on screen as well as previously shown segments.\n * It also holds in-progress data requests.\n */\n cache: CacheNode\n /**\n * Decides if the update should create a new history entry and if the navigation has to trigger a browser navigation.\n */\n pushRef: PushRef\n /**\n * Decides if the update should apply scroll and focus management.\n */\n focusAndScrollRef: FocusAndScrollRef\n /**\n * The canonical url that is pushed/replaced.\n * - This is the url you see in the browser.\n */\n canonicalUrl: string\n renderedSearch: string\n /**\n * The underlying \"url\" representing the UI state, which is used for intercepting routes.\n */\n nextUrl: string | null\n\n /**\n * The previous next-url that was used previous to a dynamic navigation.\n */\n previousNextUrl: string | null\n\n debugInfo: Array<unknown> | null\n}\n\nexport type ReadonlyReducerState = Readonly<AppRouterState>\nexport type ReducerState =\n | (Promise<AppRouterState> & { _debugInfo?: Array<unknown> })\n | AppRouterState\nexport type ReducerActions = Readonly<\n | RefreshAction\n | NavigateAction\n | RestoreAction\n | ServerPatchAction\n | HmrRefreshAction\n | ServerActionAction\n>\n"],"names":["ACTION_HMR_REFRESH","ACTION_NAVIGATE","ACTION_REFRESH","ACTION_RESTORE","ACTION_SERVER_ACTION","ACTION_SERVER_PATCH","PrefetchKind"],"mappings":";;;;;;;;;;;;;;;;;;;IAYaA,kBAAkB,EAAA;eAAlBA;;IAHAC,eAAe,EAAA;eAAfA;;IADAC,cAAc,EAAA;eAAdA;;IAEAC,cAAc,EAAA;eAAdA;;IAGAC,oBAAoB,EAAA;eAApBA;;IAFAC,mBAAmB,EAAA;eAAnBA;;IA2IDC,YAAY,EAAA;eAAZA;;;AA9IL,MAAMJ,iBAAiB;AACvB,MAAMD,kBAAkB;AACxB,MAAME,iBAAiB;AACvB,MAAME,sBAAsB;AAC5B,MAAML,qBAAqB;AAC3B,MAAMI,uBAAuB;AAyI7B,IAAKE,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;WAAAA","ignoreList":[0]}}, - {"offset": {"line": 1431, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/use-action-queue.ts"],"sourcesContent":["import type { Dispatch } from 'react'\nimport React, { use, useMemo } from 'react'\nimport { isThenable } from '../../shared/lib/is-thenable'\nimport type { AppRouterActionQueue } from './app-router-instance'\nimport type {\n AppRouterState,\n ReducerActions,\n ReducerState,\n} from './router-reducer/router-reducer-types'\n\n// The app router state lives outside of React, so we can import the dispatch\n// method directly wherever we need it, rather than passing it around via props\n// or context.\nlet dispatch: Dispatch<ReducerActions> | null = null\n\nexport function dispatchAppRouterAction(action: ReducerActions) {\n if (dispatch === null) {\n throw new Error(\n 'Internal Next.js error: Router action dispatched before initialization.'\n )\n }\n dispatch(action)\n}\n\nconst __DEV__ = process.env.NODE_ENV !== 'production'\nconst promisesWithDebugInfo: WeakMap<\n Promise<AppRouterState>,\n Promise<AppRouterState> & { _debugInfo?: Array<unknown> }\n> = __DEV__ ? new WeakMap() : (null as any)\n\nexport function useActionQueue(\n actionQueue: AppRouterActionQueue\n): AppRouterState {\n const [state, setState] = React.useState<ReducerState>(actionQueue.state)\n\n // Because of a known issue that requires to decode Flight streams inside the\n // render phase, we have to be a bit clever and assign the dispatch method to\n // a module-level variable upon initialization. The useState hook in this\n // module only exists to synchronize state that lives outside of React.\n // Ideally, what we'd do instead is pass the state as a prop to root.render;\n // this is conceptually how we're modeling the app router state, despite the\n // weird implementation details.\n if (process.env.NODE_ENV !== 'production') {\n const { useAppDevRenderingIndicator } =\n require('../../next-devtools/userspace/use-app-dev-rendering-indicator') as typeof import('../../next-devtools/userspace/use-app-dev-rendering-indicator')\n // eslint-disable-next-line react-hooks/rules-of-hooks\n const appDevRenderingIndicator = useAppDevRenderingIndicator()\n\n dispatch = (action: ReducerActions) => {\n appDevRenderingIndicator(() => {\n actionQueue.dispatch(action, setState)\n })\n }\n } else {\n dispatch = (action: ReducerActions) =>\n actionQueue.dispatch(action, setState)\n }\n\n // When navigating to a non-prefetched route, then App Router state will be\n // blocked until the server responds. We need to transfer the `_debugInfo`\n // from the underlying Flight response onto the top-level promise that is\n // passed to React (via `use`) so that the latency is accurately represented\n // in the React DevTools.\n const stateWithDebugInfo = useMemo(() => {\n if (!__DEV__) {\n return state\n }\n\n if (isThenable(state)) {\n // useMemo can't be used to cache a Promise since the memoized value is thrown\n // away when we suspend. So we use a WeakMap to cache the Promise with debug info.\n let promiseWithDebugInfo = promisesWithDebugInfo.get(state)\n if (promiseWithDebugInfo === undefined) {\n const debugInfo: Array<unknown> = []\n promiseWithDebugInfo = Promise.resolve(state).then((asyncState) => {\n if (asyncState.debugInfo !== null) {\n debugInfo.push(...asyncState.debugInfo)\n }\n return asyncState\n }) as Promise<AppRouterState> & { _debugInfo?: Array<unknown> }\n promiseWithDebugInfo._debugInfo = debugInfo\n\n promisesWithDebugInfo.set(state, promiseWithDebugInfo)\n }\n\n return promiseWithDebugInfo\n }\n return state\n }, [state])\n\n return isThenable(stateWithDebugInfo)\n ? use(stateWithDebugInfo)\n : stateWithDebugInfo\n}\n"],"names":["dispatchAppRouterAction","useActionQueue","dispatch","action","Error","__DEV__","process","env","NODE_ENV","promisesWithDebugInfo","WeakMap","actionQueue","state","setState","React","useState","useAppDevRenderingIndicator","require","appDevRenderingIndicator","stateWithDebugInfo","useMemo","isThenable","promiseWithDebugInfo","get","undefined","debugInfo","Promise","resolve","then","asyncState","push","_debugInfo","set","use"],"mappings":"AAwBgBM,QAAQC,GAAG,CAACC,QAAQ;;;;;;;;;;;;;;;;IATpBR,uBAAuB,EAAA;eAAvBA;;IAeAC,cAAc,EAAA;eAAdA;;;;iEA7BoB;4BACT;AAQ3B,6EAA6E;AAC7E,+EAA+E;AAC/E,cAAc;AACd,IAAIC,WAA4C;AAEzC,SAASF,wBAAwBG,MAAsB;IAC5D,IAAID,aAAa,MAAM;QACrB,MAAM,OAAA,cAEL,CAFK,IAAIE,MACR,4EADI,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IACAF,SAASC;AACX;AAEA,MAAME,8DAAmC;AACzC,MAAMI,wBAGFJ,uCAAU,IAAIK,YAAa;AAExB,SAAST,eACdU,WAAiC;IAEjC,MAAM,CAACC,OAAOC,SAAS,GAAGC,OAAAA,OAAK,CAACC,QAAQ,CAAeJ,YAAYC,KAAK;IAExE,6EAA6E;IAC7E,6EAA6E;IAC7E,yEAAyE;IACzE,uEAAuE;IACvE,4EAA4E;IAC5E,4EAA4E;IAC5E,gCAAgC;IAChC,IAAIN,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;QACzC,MAAM,EAAEQ,2BAA2B,EAAE,GACnCC,QAAQ;QACV,sDAAsD;QACtD,MAAMC,2BAA2BF;QAEjCd,WAAW,CAACC;YACVe,yBAAyB;gBACvBP,YAAYT,QAAQ,CAACC,QAAQU;YAC/B;QACF;IACF,OAAO;;IAKP,2EAA2E;IAC3E,0EAA0E;IAC1E,yEAAyE;IACzE,4EAA4E;IAC5E,yBAAyB;IACzB,MAAMM,qBAAqBC,CAAAA,GAAAA,OAAAA,OAAO,EAAC;QACjC,IAAI,CAACf,SAAS;;QAId,IAAIgB,CAAAA,GAAAA,YAAAA,UAAU,EAACT,QAAQ;YACrB,8EAA8E;YAC9E,kFAAkF;YAClF,IAAIU,uBAAuBb,sBAAsBc,GAAG,CAACX;YACrD,IAAIU,yBAAyBE,WAAW;gBACtC,MAAMC,YAA4B,EAAE;gBACpCH,uBAAuBI,QAAQC,OAAO,CAACf,OAAOgB,IAAI,CAAC,CAACC;oBAClD,IAAIA,WAAWJ,SAAS,KAAK,MAAM;wBACjCA,UAAUK,IAAI,IAAID,WAAWJ,SAAS;oBACxC;oBACA,OAAOI;gBACT;gBACAP,qBAAqBS,UAAU,GAAGN;gBAElChB,sBAAsBuB,GAAG,CAACpB,OAAOU;YACnC;YAEA,OAAOA;QACT;QACA,OAAOV;IACT,GAAG;QAACA;KAAM;IAEV,OAAOS,CAAAA,GAAAA,YAAAA,UAAU,EAACF,sBACdc,CAAAA,GAAAA,OAAAA,GAAG,EAACd,sBACJA;AACN","ignoreList":[0]}}, - {"offset": {"line": 1535, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-call-server.ts"],"sourcesContent":["import { startTransition } from 'react'\nimport { ACTION_SERVER_ACTION } from './components/router-reducer/router-reducer-types'\nimport { dispatchAppRouterAction } from './components/use-action-queue'\n\nexport async function callServer(actionId: string, actionArgs: any[]) {\n return new Promise((resolve, reject) => {\n startTransition(() => {\n dispatchAppRouterAction({\n type: ACTION_SERVER_ACTION,\n actionId,\n actionArgs,\n resolve,\n reject,\n })\n })\n })\n}\n"],"names":["callServer","actionId","actionArgs","Promise","resolve","reject","startTransition","dispatchAppRouterAction","type","ACTION_SERVER_ACTION"],"mappings":";;;+BAIsBA,cAAAA;;;eAAAA;;;uBAJU;oCACK;gCACG;AAEjC,eAAeA,WAAWC,QAAgB,EAAEC,UAAiB;IAClE,OAAO,IAAIC,QAAQ,CAACC,SAASC;QAC3BC,CAAAA,GAAAA,OAAAA,eAAe,EAAC;YACdC,CAAAA,GAAAA,gBAAAA,uBAAuB,EAAC;gBACtBC,MAAMC,oBAAAA,oBAAoB;gBAC1BR;gBACAC;gBACAE;gBACAC;YACF;QACF;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 1571, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-find-source-map-url.ts"],"sourcesContent":["const basePath = process.env.__NEXT_ROUTER_BASEPATH || ''\nconst pathname = `${basePath}/__nextjs_source-map`\n\nexport const findSourceMapURL =\n process.env.NODE_ENV === 'development'\n ? function findSourceMapURL(filename: string): string | null {\n if (filename === '') {\n return null\n }\n\n if (\n filename.startsWith(document.location.origin) &&\n filename.includes('/_next/static')\n ) {\n // This is a request for a client chunk. This can only happen when\n // using Turbopack. In this case, since we control how those source\n // maps are generated, we can safely assume that the sourceMappingURL\n // is relative to the filename, with an added `.map` extension. The\n // browser can just request this file, and it gets served through the\n // normal dev server, without the need to route this through\n // the `/__nextjs_source-map` dev middleware.\n return `${filename}.map`\n }\n\n const url = new URL(pathname, document.location.origin)\n url.searchParams.set('filename', filename)\n\n return url.href\n }\n : undefined\n"],"names":["findSourceMapURL","basePath","process","env","__NEXT_ROUTER_BASEPATH","pathname","NODE_ENV","filename","startsWith","document","location","origin","includes","url","URL","searchParams","set","href","undefined"],"mappings":"AAAiBE,QAAQC,GAAG,CAACC,sBAAsB;;;;;+BAGtCJ,oBAAAA;;;eAAAA;;;AAHb,MAAMC,mDAAiD;AACvD,MAAMI,WAAW,GAAGJ,SAAS,oBAAoB,CAAC;AAE3C,MAAMD,mBACXE,QAAQC,GAAG,CAACG,QAAQ,KAAK,cACrB,SAASN,iBAAiBO,QAAgB;IACxC,IAAIA,aAAa,IAAI;QACnB,OAAO;IACT;IAEA,IACEA,SAASC,UAAU,CAACC,SAASC,QAAQ,CAACC,MAAM,KAC5CJ,SAASK,QAAQ,CAAC,kBAClB;QACA,kEAAkE;QAClE,mEAAmE;QACnE,qEAAqE;QACrE,mEAAmE;QACnE,qEAAqE;QACrE,4DAA4D;QAC5D,6CAA6C;QAC7C,OAAO,GAAGL,SAAS,IAAI,CAAC;IAC1B;IAEA,MAAMM,MAAM,IAAIC,IAAIT,UAAUI,SAASC,QAAQ,CAACC,MAAM;IACtDE,IAAIE,YAAY,CAACC,GAAG,CAAC,YAAYT;IAEjC,OAAOM,IAAII,IAAI;AACjB,IACAC","ignoreList":[0]}}, - {"offset": {"line": 1613, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/match-segments.ts"],"sourcesContent":["import type { Segment } from '../../shared/lib/app-router-types'\n\nexport const matchSegment = (\n existingSegment: Segment,\n segment: Segment\n): boolean => {\n // segment is either Array or string\n if (typeof existingSegment === 'string') {\n if (typeof segment === 'string') {\n // Common case: segment is just a string\n return existingSegment === segment\n }\n return false\n }\n\n if (typeof segment === 'string') {\n return false\n }\n return existingSegment[0] === segment[0] && existingSegment[1] === segment[1]\n}\n"],"names":["matchSegment","existingSegment","segment"],"mappings":";;;+BAEaA,gBAAAA;;;eAAAA;;;AAAN,MAAMA,eAAe,CAC1BC,iBACAC;IAEA,oCAAoC;IACpC,IAAI,OAAOD,oBAAoB,UAAU;QACvC,IAAI,OAAOC,YAAY,UAAU;YAC/B,wCAAwC;YACxC,OAAOD,oBAAoBC;QAC7B;QACA,OAAO;IACT;IAEA,IAAI,OAAOA,YAAY,UAAU;QAC/B,OAAO;IACT;IACA,OAAOD,eAAe,CAAC,EAAE,KAAKC,OAAO,CAAC,EAAE,IAAID,eAAe,CAAC,EAAE,KAAKC,OAAO,CAAC,EAAE;AAC/E","ignoreList":[0]}}, - {"offset": {"line": 1647, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/compute-changed-path.ts"],"sourcesContent":["import type {\n FlightRouterState,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport { INTERCEPTION_ROUTE_MARKERS } from '../../../shared/lib/router/utils/interception-routes'\nimport type { Params } from '../../../server/request/params'\nimport {\n isGroupSegment,\n DEFAULT_SEGMENT_KEY,\n PAGE_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport { matchSegment } from '../match-segments'\n\nconst removeLeadingSlash = (segment: string): string => {\n return segment[0] === '/' ? segment.slice(1) : segment\n}\n\nconst segmentToPathname = (segment: Segment): string => {\n if (typeof segment === 'string') {\n // 'children' is not a valid path -- it's technically a parallel route that corresponds with the current segment's page\n // if we don't skip it, then the computed pathname might be something like `/children` which doesn't make sense.\n if (segment === 'children') return ''\n\n return segment\n }\n\n return segment[1]\n}\n\nfunction normalizeSegments(segments: string[]): string {\n return (\n segments.reduce((acc, segment) => {\n segment = removeLeadingSlash(segment)\n if (segment === '' || isGroupSegment(segment)) {\n return acc\n }\n\n return `${acc}/${segment}`\n }, '') || '/'\n )\n}\n\nexport function extractPathFromFlightRouterState(\n flightRouterState: FlightRouterState\n): string | undefined {\n const segment = Array.isArray(flightRouterState[0])\n ? flightRouterState[0][1]\n : flightRouterState[0]\n\n if (\n segment === DEFAULT_SEGMENT_KEY ||\n INTERCEPTION_ROUTE_MARKERS.some((m) => segment.startsWith(m))\n )\n return undefined\n\n if (segment.startsWith(PAGE_SEGMENT_KEY)) return ''\n\n const segments = [segmentToPathname(segment)]\n const parallelRoutes = flightRouterState[1] ?? {}\n\n const childrenPath = parallelRoutes.children\n ? extractPathFromFlightRouterState(parallelRoutes.children)\n : undefined\n\n if (childrenPath !== undefined) {\n segments.push(childrenPath)\n } else {\n for (const [key, value] of Object.entries(parallelRoutes)) {\n if (key === 'children') continue\n\n const childPath = extractPathFromFlightRouterState(value)\n\n if (childPath !== undefined) {\n segments.push(childPath)\n }\n }\n }\n\n return normalizeSegments(segments)\n}\n\nfunction computeChangedPathImpl(\n treeA: FlightRouterState,\n treeB: FlightRouterState\n): string | null {\n const [segmentA, parallelRoutesA] = treeA\n const [segmentB, parallelRoutesB] = treeB\n\n const normalizedSegmentA = segmentToPathname(segmentA)\n const normalizedSegmentB = segmentToPathname(segmentB)\n\n if (\n INTERCEPTION_ROUTE_MARKERS.some(\n (m) =>\n normalizedSegmentA.startsWith(m) || normalizedSegmentB.startsWith(m)\n )\n ) {\n return ''\n }\n\n if (!matchSegment(segmentA, segmentB)) {\n // once we find where the tree changed, we compute the rest of the path by traversing the tree\n return extractPathFromFlightRouterState(treeB) ?? ''\n }\n\n for (const parallelRouterKey in parallelRoutesA) {\n if (parallelRoutesB[parallelRouterKey]) {\n const changedPath = computeChangedPathImpl(\n parallelRoutesA[parallelRouterKey],\n parallelRoutesB[parallelRouterKey]\n )\n if (changedPath !== null) {\n return `${segmentToPathname(segmentB)}/${changedPath}`\n }\n }\n }\n\n return null\n}\n\nexport function computeChangedPath(\n treeA: FlightRouterState,\n treeB: FlightRouterState\n): string | null {\n const changedPath = computeChangedPathImpl(treeA, treeB)\n\n if (changedPath == null || changedPath === '/') {\n return changedPath\n }\n\n // lightweight normalization to remove route groups\n return normalizeSegments(changedPath.split('/'))\n}\n\n/**\n * Recursively extracts dynamic parameters from FlightRouterState.\n */\nexport function getSelectedParams(\n currentTree: FlightRouterState,\n params: Params = {}\n): Params {\n const parallelRoutes = currentTree[1]\n\n for (const parallelRoute of Object.values(parallelRoutes)) {\n const segment = parallelRoute[0]\n const isDynamicParameter = Array.isArray(segment)\n const segmentValue = isDynamicParameter ? segment[1] : segment\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) continue\n\n // Ensure catchAll and optional catchall are turned into an array\n const isCatchAll =\n isDynamicParameter && (segment[2] === 'c' || segment[2] === 'oc')\n\n if (isCatchAll) {\n params[segment[0]] = segment[1].split('/')\n } else if (isDynamicParameter) {\n params[segment[0]] = segment[1]\n }\n\n params = getSelectedParams(parallelRoute, params)\n }\n\n return params\n}\n"],"names":["computeChangedPath","extractPathFromFlightRouterState","getSelectedParams","removeLeadingSlash","segment","slice","segmentToPathname","normalizeSegments","segments","reduce","acc","isGroupSegment","flightRouterState","Array","isArray","DEFAULT_SEGMENT_KEY","INTERCEPTION_ROUTE_MARKERS","some","m","startsWith","undefined","PAGE_SEGMENT_KEY","parallelRoutes","childrenPath","children","push","key","value","Object","entries","childPath","computeChangedPathImpl","treeA","treeB","segmentA","parallelRoutesA","segmentB","parallelRoutesB","normalizedSegmentA","normalizedSegmentB","matchSegment","parallelRouterKey","changedPath","split","currentTree","params","parallelRoute","values","isDynamicParameter","segmentValue","isCatchAll"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1777, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/handle-mutable.ts"],"sourcesContent":["import { computeChangedPath } from './compute-changed-path'\nimport type {\n Mutable,\n ReadonlyReducerState,\n ReducerState,\n} from './router-reducer-types'\n\nfunction isNotUndefined<T>(value: T): value is Exclude<T, undefined> {\n return typeof value !== 'undefined'\n}\n\nexport function handleMutable(\n state: ReadonlyReducerState,\n mutable: Mutable\n): ReducerState {\n // shouldScroll is true by default, can override to false.\n const shouldScroll = mutable.shouldScroll ?? true\n\n let previousNextUrl = state.previousNextUrl\n let nextUrl = state.nextUrl\n\n if (isNotUndefined(mutable.patchedTree)) {\n // If we received a patched tree, we need to compute the changed path.\n const changedPath = computeChangedPath(state.tree, mutable.patchedTree)\n if (changedPath) {\n // If the tree changed, we need to update the nextUrl\n previousNextUrl = nextUrl\n nextUrl = changedPath\n } else if (!nextUrl) {\n // if the tree ends up being the same (ie, no changed path), and we don't have a nextUrl, then we should use the canonicalUrl\n nextUrl = state.canonicalUrl\n }\n // otherwise this will be a no-op and continue to use the existing nextUrl\n }\n\n return {\n // Set href.\n canonicalUrl: mutable.canonicalUrl ?? state.canonicalUrl,\n renderedSearch: mutable.renderedSearch ?? state.renderedSearch,\n pushRef: {\n pendingPush: isNotUndefined(mutable.pendingPush)\n ? mutable.pendingPush\n : state.pushRef.pendingPush,\n mpaNavigation: isNotUndefined(mutable.mpaNavigation)\n ? mutable.mpaNavigation\n : state.pushRef.mpaNavigation,\n preserveCustomHistoryState: isNotUndefined(\n mutable.preserveCustomHistoryState\n )\n ? mutable.preserveCustomHistoryState\n : state.pushRef.preserveCustomHistoryState,\n },\n // All navigation requires scroll and focus management to trigger.\n focusAndScrollRef: {\n apply: shouldScroll\n ? isNotUndefined(mutable?.scrollableSegments)\n ? true\n : state.focusAndScrollRef.apply\n : // If shouldScroll is false then we should not apply scroll and focus management.\n false,\n onlyHashChange: mutable.onlyHashChange || false,\n hashFragment: shouldScroll\n ? // Empty hash should trigger default behavior of scrolling layout into view.\n // #top is handled in layout-router.\n mutable.hashFragment && mutable.hashFragment !== ''\n ? // Remove leading # and decode hash to make non-latin hashes work.\n decodeURIComponent(mutable.hashFragment.slice(1))\n : state.focusAndScrollRef.hashFragment\n : // If shouldScroll is false then we should not apply scroll and focus management.\n null,\n segmentPaths: shouldScroll\n ? (mutable?.scrollableSegments ?? state.focusAndScrollRef.segmentPaths)\n : // If shouldScroll is false then we should not apply scroll and focus management.\n [],\n },\n // Apply cache.\n cache: mutable.cache ? mutable.cache : state.cache,\n // Apply patched router state.\n tree: isNotUndefined(mutable.patchedTree)\n ? mutable.patchedTree\n : state.tree,\n nextUrl,\n previousNextUrl: previousNextUrl,\n debugInfo: mutable.collectedDebugInfo ?? null,\n }\n}\n"],"names":["handleMutable","isNotUndefined","value","state","mutable","shouldScroll","previousNextUrl","nextUrl","patchedTree","changedPath","computeChangedPath","tree","canonicalUrl","renderedSearch","pushRef","pendingPush","mpaNavigation","preserveCustomHistoryState","focusAndScrollRef","apply","scrollableSegments","onlyHashChange","hashFragment","decodeURIComponent","slice","segmentPaths","cache","debugInfo","collectedDebugInfo"],"mappings":";;;+BAWgBA,iBAAAA;;;eAAAA;;;oCAXmB;AAOnC,SAASC,eAAkBC,KAAQ;IACjC,OAAO,OAAOA,UAAU;AAC1B;AAEO,SAASF,cACdG,KAA2B,EAC3BC,OAAgB;IAEhB,0DAA0D;IAC1D,MAAMC,eAAeD,QAAQC,YAAY,IAAI;IAE7C,IAAIC,kBAAkBH,MAAMG,eAAe;IAC3C,IAAIC,UAAUJ,MAAMI,OAAO;IAE3B,IAAIN,eAAeG,QAAQI,WAAW,GAAG;QACvC,sEAAsE;QACtE,MAAMC,cAAcC,CAAAA,GAAAA,oBAAAA,kBAAkB,EAACP,MAAMQ,IAAI,EAAEP,QAAQI,WAAW;QACtE,IAAIC,aAAa;YACf,qDAAqD;YACrDH,kBAAkBC;YAClBA,UAAUE;QACZ,OAAO,IAAI,CAACF,SAAS;YACnB,6HAA6H;YAC7HA,UAAUJ,MAAMS,YAAY;QAC9B;IACA,0EAA0E;IAC5E;IAEA,OAAO;QACL,YAAY;QACZA,cAAcR,QAAQQ,YAAY,IAAIT,MAAMS,YAAY;QACxDC,gBAAgBT,QAAQS,cAAc,IAAIV,MAAMU,cAAc;QAC9DC,SAAS;YACPC,aAAad,eAAeG,QAAQW,WAAW,IAC3CX,QAAQW,WAAW,GACnBZ,MAAMW,OAAO,CAACC,WAAW;YAC7BC,eAAef,eAAeG,QAAQY,aAAa,IAC/CZ,QAAQY,aAAa,GACrBb,MAAMW,OAAO,CAACE,aAAa;YAC/BC,4BAA4BhB,eAC1BG,QAAQa,0BAA0B,IAEhCb,QAAQa,0BAA0B,GAClCd,MAAMW,OAAO,CAACG,0BAA0B;QAC9C;QACA,kEAAkE;QAClEC,mBAAmB;YACjBC,OAAOd,eACHJ,eAAeG,SAASgB,sBACtB,OACAjB,MAAMe,iBAAiB,CAACC,KAAK,GAE/B;YACJE,gBAAgBjB,QAAQiB,cAAc,IAAI;YAC1CC,cAAcjB,eAEV,AACAD,QAAQkB,YAAY,IAAIlB,QAAQkB,IADI,QACQ,KAAK,KAE/CC,mBAAmBnB,QAAQkB,YAAY,CAACE,KAAK,CAAC,MAC9CrB,MAAMe,iBAAiB,CAACI,YAAY,GAEtC;YACJG,cAAcpB,eACTD,SAASgB,sBAAsBjB,MAAMe,iBAAiB,CAACO,YAAY,GAEpE,EAAE;QACR;QACA,eAAe;QACfC,OAAOtB,QAAQsB,KAAK,GAAGtB,QAAQsB,KAAK,GAAGvB,MAAMuB,KAAK;QAClD,8BAA8B;QAC9Bf,MAAMV,eAAeG,QAAQI,WAAW,IACpCJ,QAAQI,WAAW,GACnBL,MAAMQ,IAAI;QACdJ;QACAD,iBAAiBA;QACjBqB,WAAWvB,QAAQwB,kBAAkB,IAAI;IAC3C;AACF","ignoreList":[0]}}, - {"offset": {"line": 1844, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/route-params.ts"],"sourcesContent":["import type { DynamicParamTypesShort } from '../shared/lib/app-router-types'\nimport {\n addSearchParamsIfPageSegment,\n DEFAULT_SEGMENT_KEY,\n PAGE_SEGMENT_KEY,\n} from '../shared/lib/segment'\nimport { ROOT_SEGMENT_REQUEST_KEY } from '../shared/lib/segment-cache/segment-value-encoding'\nimport {\n NEXT_REWRITTEN_PATH_HEADER,\n NEXT_REWRITTEN_QUERY_HEADER,\n NEXT_RSC_UNION_QUERY,\n} from './components/app-router-headers'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n} from './components/segment-cache/cache-key'\nimport type { RSCResponse } from './components/router-reducer/fetch-server-response'\nimport type { ParsedUrlQuery } from 'querystring'\n\nexport type RouteParamValue = string | Array<string> | null\n\nexport function getRenderedSearch(\n response: RSCResponse<unknown> | Response\n): NormalizedSearch {\n // If the server performed a rewrite, the search params used to render the\n // page will be different from the params in the request URL. In this case,\n // the response will include a header that gives the rewritten search query.\n const rewrittenQuery = response.headers.get(NEXT_REWRITTEN_QUERY_HEADER)\n if (rewrittenQuery !== null) {\n return (\n rewrittenQuery === '' ? '' : '?' + rewrittenQuery\n ) as NormalizedSearch\n }\n // If the header is not present, there was no rewrite, so we use the search\n // query of the response URL.\n return urlToUrlWithoutFlightMarker(new URL(response.url))\n .search as NormalizedSearch\n}\n\nexport function getRenderedPathname(\n response: RSCResponse<unknown> | Response\n): NormalizedPathname {\n // If the server performed a rewrite, the pathname used to render the\n // page will be different from the pathname in the request URL. In this case,\n // the response will include a header that gives the rewritten pathname.\n const rewrittenPath = response.headers.get(NEXT_REWRITTEN_PATH_HEADER)\n return (rewrittenPath ??\n urlToUrlWithoutFlightMarker(new URL(response.url))\n .pathname) as NormalizedPathname\n}\n\nexport function parseDynamicParamFromURLPart(\n paramType: DynamicParamTypesShort,\n pathnameParts: Array<string>,\n partIndex: number\n): RouteParamValue {\n // This needs to match the behavior in get-dynamic-param.ts.\n switch (paramType) {\n // Catchalls\n case 'c': {\n // Catchalls receive all the remaining URL parts. If there are no\n // remaining pathname parts, return an empty array.\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s) => encodeURIComponent(s))\n : []\n }\n // Catchall intercepted\n case 'ci(..)(..)':\n case 'ci(.)':\n case 'ci(..)':\n case 'ci(...)': {\n const prefix = paramType.length - 2\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s, i) => {\n if (i === 0) {\n return encodeURIComponent(s.slice(prefix))\n }\n\n return encodeURIComponent(s)\n })\n : []\n }\n // Optional catchalls\n case 'oc': {\n // Optional catchalls receive all the remaining URL parts, unless this is\n // the end of the pathname, in which case they return null.\n return partIndex < pathnameParts.length\n ? pathnameParts.slice(partIndex).map((s) => encodeURIComponent(s))\n : null\n }\n // Dynamic\n case 'd': {\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return ''\n }\n return encodeURIComponent(pathnameParts[partIndex])\n }\n // Dynamic intercepted\n case 'di(..)(..)':\n case 'di(.)':\n case 'di(..)':\n case 'di(...)': {\n const prefix = paramType.length - 2\n if (partIndex >= pathnameParts.length) {\n // The route tree expected there to be more parts in the URL than there\n // actually are. This could happen if the x-nextjs-rewritten-path header\n // is incorrectly set, or potentially due to bug in Next.js. TODO:\n // Should this be a hard error? During a prefetch, we can just abort.\n // During a client navigation, we could trigger a hard refresh. But if\n // it happens during initial render, we don't really have any\n // recovery options.\n return ''\n }\n\n return encodeURIComponent(pathnameParts[partIndex].slice(prefix))\n }\n default:\n paramType satisfies never\n return ''\n }\n}\n\nexport function doesStaticSegmentAppearInURL(segment: string): boolean {\n // This is not a parameterized segment; however, we need to determine\n // whether or not this segment appears in the URL. For example, this route\n // groups do not appear in the URL, so they should be skipped. Any other\n // special cases must be handled here.\n // TODO: Consider encoding this directly into the router tree instead of\n // inferring it on the client based on the segment type. Something like\n // a `doesAppearInURL` flag in FlightRouterState.\n if (\n segment === ROOT_SEGMENT_REQUEST_KEY ||\n // For some reason, the loader tree sometimes includes extra __PAGE__\n // \"layouts\" when part of a parallel route. But it's not a leaf node.\n // Otherwise, we wouldn't need this special case because pages are\n // always leaf nodes.\n // TODO: Investigate why the loader produces these fake page segments.\n segment.startsWith(PAGE_SEGMENT_KEY) ||\n // Route groups.\n (segment[0] === '(' && segment.endsWith(')')) ||\n segment === DEFAULT_SEGMENT_KEY ||\n segment === '/_not-found'\n ) {\n return false\n } else {\n // All other segment types appear in the URL\n return true\n }\n}\n\nexport function getCacheKeyForDynamicParam(\n paramValue: RouteParamValue,\n renderedSearch: NormalizedSearch\n): string {\n // This needs to match the logic in get-dynamic-param.ts, until we're able to\n // unify the various implementations so that these are always computed on\n // the client.\n if (typeof paramValue === 'string') {\n // TODO: Refactor or remove this helper function to accept a string rather\n // than the whole segment type. Also we can probably just append the\n // search string instead of turning it into JSON.\n const pageSegmentWithSearchParams = addSearchParamsIfPageSegment(\n paramValue,\n Object.fromEntries(new URLSearchParams(renderedSearch))\n ) as string\n return pageSegmentWithSearchParams\n } else if (paramValue === null) {\n return ''\n } else {\n return paramValue.join('/')\n }\n}\n\nexport function urlToUrlWithoutFlightMarker(url: URL): URL {\n const urlWithoutFlightParameters = new URL(url)\n urlWithoutFlightParameters.searchParams.delete(NEXT_RSC_UNION_QUERY)\n if (process.env.NODE_ENV === 'production') {\n if (\n process.env.__NEXT_CONFIG_OUTPUT === 'export' &&\n urlWithoutFlightParameters.pathname.endsWith('.txt')\n ) {\n const { pathname } = urlWithoutFlightParameters\n const length = pathname.endsWith('/index.txt') ? 10 : 4\n // Slice off `/index.txt` or `.txt` from the end of the pathname\n urlWithoutFlightParameters.pathname = pathname.slice(0, -length)\n }\n }\n return urlWithoutFlightParameters\n}\n\nexport function getParamValueFromCacheKey(\n paramCacheKey: string,\n paramType: DynamicParamTypesShort\n) {\n // Turn the cache key string sent by the server (as part of FlightRouterState)\n // into a value that can be passed to `useParams` and client components.\n const isCatchAll = paramType === 'c' || paramType === 'oc'\n if (isCatchAll) {\n // Catch-all param keys are a concatenation of the path segments.\n // See equivalent logic in `getSelectedParams`.\n // TODO: We should just pass the array directly, rather than concatenate\n // it to a string and then split it back to an array. It needs to be an\n // array in some places, like when passing a key React, but we can convert\n // it at runtime in those places.\n return paramCacheKey.split('/')\n }\n return paramCacheKey\n}\n\nexport function urlSearchParamsToParsedUrlQuery(\n searchParams: URLSearchParams\n): ParsedUrlQuery {\n // Converts a URLSearchParams object to the same type used by the server when\n // creating search params props, i.e. the type returned by Node's\n // \"querystring\" module.\n const result: ParsedUrlQuery = {}\n for (const [key, value] of searchParams.entries()) {\n if (result[key] === undefined) {\n result[key] = value\n } else if (Array.isArray(result[key])) {\n result[key].push(value)\n } else {\n result[key] = [result[key], value]\n }\n }\n return result\n}\n"],"names":["doesStaticSegmentAppearInURL","getCacheKeyForDynamicParam","getParamValueFromCacheKey","getRenderedPathname","getRenderedSearch","parseDynamicParamFromURLPart","urlSearchParamsToParsedUrlQuery","urlToUrlWithoutFlightMarker","response","rewrittenQuery","headers","get","NEXT_REWRITTEN_QUERY_HEADER","URL","url","search","rewrittenPath","NEXT_REWRITTEN_PATH_HEADER","pathname","paramType","pathnameParts","partIndex","length","slice","map","s","encodeURIComponent","prefix","i","segment","ROOT_SEGMENT_REQUEST_KEY","startsWith","PAGE_SEGMENT_KEY","endsWith","DEFAULT_SEGMENT_KEY","paramValue","renderedSearch","pageSegmentWithSearchParams","addSearchParamsIfPageSegment","Object","fromEntries","URLSearchParams","join","urlWithoutFlightParameters","searchParams","delete","NEXT_RSC_UNION_QUERY","process","env","NODE_ENV","__NEXT_CONFIG_OUTPUT","paramCacheKey","isCatchAll","split","result","key","value","entries","undefined","Array","isArray","push"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2072, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/flight-data-helpers.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightData,\n FlightDataPath,\n FlightRouterState,\n FlightSegmentPath,\n Segment,\n HeadData,\n InitialRSCPayload,\n} from '../shared/lib/app-router-types'\nimport { PAGE_SEGMENT_KEY } from '../shared/lib/segment'\nimport type { NormalizedSearch } from './components/segment-cache/cache-key'\nimport {\n getCacheKeyForDynamicParam,\n parseDynamicParamFromURLPart,\n doesStaticSegmentAppearInURL,\n getRenderedPathname,\n getRenderedSearch,\n} from './route-params'\nimport { createHrefFromUrl } from './components/router-reducer/create-href-from-url'\n\nexport type NormalizedFlightData = {\n /**\n * The full `FlightSegmentPath` inclusive of the final `Segment`\n */\n segmentPath: FlightSegmentPath\n /**\n * The `FlightSegmentPath` exclusive of the final `Segment`\n */\n pathToSegment: FlightSegmentPath\n segment: Segment\n tree: FlightRouterState\n seedData: CacheNodeSeedData | null\n head: HeadData\n isHeadPartial: boolean\n isRootRender: boolean\n}\n\n// TODO: We should only have to export `normalizeFlightData`, however because the initial flight data\n// that gets passed to `createInitialRouterState` doesn't conform to the `FlightDataPath` type (it's missing the root segment)\n// we're currently exporting it so we can use it directly. This should be fixed as part of the unification of\n// the different ways we express `FlightSegmentPath`.\nexport function getFlightDataPartsFromPath(\n flightDataPath: FlightDataPath\n): NormalizedFlightData {\n // Pick the last 4 items from the `FlightDataPath` to get the [tree, seedData, viewport, isHeadPartial].\n const flightDataPathLength = 4\n // tree, seedData, and head are *always* the last three items in the `FlightDataPath`.\n const [tree, seedData, head, isHeadPartial] =\n flightDataPath.slice(-flightDataPathLength)\n // The `FlightSegmentPath` is everything except the last three items. For a root render, it won't be present.\n const segmentPath = flightDataPath.slice(0, -flightDataPathLength)\n\n return {\n // TODO: Unify these two segment path helpers. We are inconsistently pushing an empty segment (\"\")\n // to the start of the segment path in some places which makes it hard to use solely the segment path.\n // Look for \"// TODO-APP: remove ''\" in the codebase.\n pathToSegment: segmentPath.slice(0, -1),\n segmentPath,\n // if the `FlightDataPath` corresponds with the root, there'll be no segment path,\n // in which case we default to ''.\n segment: segmentPath[segmentPath.length - 1] ?? '',\n tree,\n seedData,\n head,\n isHeadPartial,\n isRootRender: flightDataPath.length === flightDataPathLength,\n }\n}\n\nexport function createInitialRSCPayloadFromFallbackPrerender(\n response: Response,\n fallbackInitialRSCPayload: InitialRSCPayload\n): InitialRSCPayload {\n // This is a static fallback page. In order to hydrate the page, we need to\n // parse the client params from the URL, but to account for the possibility\n // that the page was rewritten, we need to check the response headers\n // for x-nextjs-rewritten-path or x-nextjs-rewritten-query headers. Since\n // we can't access the headers of the initial document response, the client\n // performs a fetch request to the current location. Since it's possible that\n // the fetch request will be dynamically rewritten to a different path than\n // the initial document, this fetch request delivers _all_ the hydration data\n // for the page; it was not inlined into the document, like it normally\n // would be.\n //\n // TODO: Consider treating the case where fetch is rewritten to a different\n // path from the document as a special deopt case. We should optimistically\n // assume this won't happen, inline the data into the document, and perform\n // a minimal request (like a HEAD or range request) to verify that the\n // response matches. Tricky to get right because we need to account for\n // all the different deployment environments we support, like output:\n // \"export\" mode, where we currently don't assume that custom response\n // headers are present.\n\n // Patch the Flight data sent by the server with the correct params parsed\n // from the URL + response object.\n const renderedPathname = getRenderedPathname(response)\n const renderedSearch = getRenderedSearch(response)\n const canonicalUrl = createHrefFromUrl(new URL(location.href))\n const originalFlightDataPath = fallbackInitialRSCPayload.f[0]\n const originalFlightRouterState = originalFlightDataPath[0]\n return {\n b: fallbackInitialRSCPayload.b,\n c: canonicalUrl.split('/'),\n q: renderedSearch,\n i: fallbackInitialRSCPayload.i,\n f: [\n [\n fillInFallbackFlightRouterState(\n originalFlightRouterState,\n renderedPathname,\n renderedSearch as NormalizedSearch\n ),\n originalFlightDataPath[1],\n originalFlightDataPath[2],\n originalFlightDataPath[2],\n ],\n ],\n m: fallbackInitialRSCPayload.m,\n G: fallbackInitialRSCPayload.G,\n S: fallbackInitialRSCPayload.S,\n }\n}\n\nfunction fillInFallbackFlightRouterState(\n flightRouterState: FlightRouterState,\n renderedPathname: string,\n renderedSearch: NormalizedSearch\n): FlightRouterState {\n const pathnameParts = renderedPathname.split('/').filter((p) => p !== '')\n const index = 0\n return fillInFallbackFlightRouterStateImpl(\n flightRouterState,\n renderedSearch,\n pathnameParts,\n index\n )\n}\n\nfunction fillInFallbackFlightRouterStateImpl(\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n pathnameParts: Array<string>,\n pathnamePartsIndex: number\n): FlightRouterState {\n const originalSegment = flightRouterState[0]\n let newSegment: Segment\n let doesAppearInURL: boolean\n if (typeof originalSegment === 'string') {\n newSegment = originalSegment\n doesAppearInURL = doesStaticSegmentAppearInURL(originalSegment)\n } else {\n const paramName = originalSegment[0]\n const paramType = originalSegment[2]\n const paramValue = parseDynamicParamFromURLPart(\n paramType,\n pathnameParts,\n pathnamePartsIndex\n )\n const cacheKey = getCacheKeyForDynamicParam(paramValue, renderedSearch)\n newSegment = [paramName, cacheKey, paramType]\n doesAppearInURL = true\n }\n\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = doesAppearInURL\n ? pathnamePartsIndex + 1\n : pathnamePartsIndex\n\n const children = flightRouterState[1]\n const newChildren: { [key: string]: FlightRouterState } = {}\n for (let key in children) {\n const childFlightRouterState = children[key]\n newChildren[key] = fillInFallbackFlightRouterStateImpl(\n childFlightRouterState,\n renderedSearch,\n pathnameParts,\n childPathnamePartsIndex\n )\n }\n\n const newState: FlightRouterState = [\n newSegment,\n newChildren,\n null,\n flightRouterState[3],\n flightRouterState[4],\n ]\n return newState\n}\n\nexport function getNextFlightSegmentPath(\n flightSegmentPath: FlightSegmentPath\n): FlightSegmentPath {\n // Since `FlightSegmentPath` is a repeated tuple of `Segment` and `ParallelRouteKey`, we slice off two items\n // to get the next segment path.\n return flightSegmentPath.slice(2)\n}\n\nexport function normalizeFlightData(\n flightData: FlightData\n): NormalizedFlightData[] | string {\n // FlightData can be a string when the server didn't respond with a proper flight response,\n // or when a redirect happens, to signal to the client that it needs to perform an MPA navigation.\n if (typeof flightData === 'string') {\n return flightData\n }\n\n return flightData.map((flightDataPath) =>\n getFlightDataPartsFromPath(flightDataPath)\n )\n}\n\n/**\n * This function is used to prepare the flight router state for the request.\n * It removes markers that are not needed by the server, and are purely used\n * for stashing state on the client.\n * @param flightRouterState - The flight router state to prepare.\n * @param isHmrRefresh - Whether this is an HMR refresh request.\n * @returns The prepared flight router state.\n */\nexport function prepareFlightRouterStateForRequest(\n flightRouterState: FlightRouterState,\n isHmrRefresh?: boolean\n): string {\n // HMR requests need the complete, unmodified state for proper functionality\n if (isHmrRefresh) {\n return encodeURIComponent(JSON.stringify(flightRouterState))\n }\n\n return encodeURIComponent(\n JSON.stringify(stripClientOnlyDataFromFlightRouterState(flightRouterState))\n )\n}\n\n/**\n * Recursively strips client-only data from FlightRouterState while preserving\n * server-needed information for proper rendering decisions.\n */\nfunction stripClientOnlyDataFromFlightRouterState(\n flightRouterState: FlightRouterState\n): FlightRouterState {\n const [\n segment,\n parallelRoutes,\n _url, // Intentionally unused - URLs are client-only\n refreshMarker,\n isRootLayout,\n hasLoadingBoundary,\n ] = flightRouterState\n\n // __PAGE__ segments are always fetched from the server, so there's\n // no need to send them up\n const cleanedSegment = stripSearchParamsFromPageSegment(segment)\n\n // Recursively process parallel routes\n const cleanedParallelRoutes: { [key: string]: FlightRouterState } = {}\n for (const [key, childState] of Object.entries(parallelRoutes)) {\n cleanedParallelRoutes[key] =\n stripClientOnlyDataFromFlightRouterState(childState)\n }\n\n const result: FlightRouterState = [\n cleanedSegment,\n cleanedParallelRoutes,\n null, // URLs omitted - server reconstructs paths from segments\n shouldPreserveRefreshMarker(refreshMarker) ? refreshMarker : null,\n ]\n\n // Append optional fields if present\n if (isRootLayout !== undefined) {\n result[4] = isRootLayout\n }\n if (hasLoadingBoundary !== undefined) {\n result[5] = hasLoadingBoundary\n }\n\n return result\n}\n\n/**\n * Strips search parameters from __PAGE__ segments to prevent sensitive\n * client-side data from being sent to the server.\n */\nfunction stripSearchParamsFromPageSegment(segment: Segment): Segment {\n if (\n typeof segment === 'string' &&\n segment.startsWith(PAGE_SEGMENT_KEY + '?')\n ) {\n return PAGE_SEGMENT_KEY\n }\n return segment\n}\n\n/**\n * Determines whether the refresh marker should be sent to the server\n * Client-only markers like 'refresh' are stripped, while server-needed markers\n * like 'refetch' and 'inside-shared-layout' are preserved.\n */\nfunction shouldPreserveRefreshMarker(\n refreshMarker: FlightRouterState[3]\n): boolean {\n return Boolean(refreshMarker && refreshMarker !== 'refresh')\n}\n"],"names":["createInitialRSCPayloadFromFallbackPrerender","getFlightDataPartsFromPath","getNextFlightSegmentPath","normalizeFlightData","prepareFlightRouterStateForRequest","flightDataPath","flightDataPathLength","tree","seedData","head","isHeadPartial","slice","segmentPath","pathToSegment","segment","length","isRootRender","response","fallbackInitialRSCPayload","renderedPathname","getRenderedPathname","renderedSearch","getRenderedSearch","canonicalUrl","createHrefFromUrl","URL","location","href","originalFlightDataPath","f","originalFlightRouterState","b","c","split","q","i","fillInFallbackFlightRouterState","m","G","S","flightRouterState","pathnameParts","filter","p","index","fillInFallbackFlightRouterStateImpl","pathnamePartsIndex","originalSegment","newSegment","doesAppearInURL","doesStaticSegmentAppearInURL","paramName","paramType","paramValue","parseDynamicParamFromURLPart","cacheKey","getCacheKeyForDynamicParam","childPathnamePartsIndex","children","newChildren","key","childFlightRouterState","newState","flightSegmentPath","flightData","map","isHmrRefresh","encodeURIComponent","JSON","stringify","stripClientOnlyDataFromFlightRouterState","parallelRoutes","_url","refreshMarker","isRootLayout","hasLoadingBoundary","cleanedSegment","stripSearchParamsFromPageSegment","cleanedParallelRoutes","childState","Object","entries","result","shouldPreserveRefreshMarker","undefined","startsWith","PAGE_SEGMENT_KEY","Boolean"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2293, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-build-id.ts"],"sourcesContent":["// This gets assigned as a side-effect during app initialization. Because it\n// represents the build used to create the JS bundle, it should never change\n// after being set, so we store it in a global variable.\n//\n// When performing RSC requests, if the incoming data has a different build ID,\n// we perform an MPA navigation/refresh to load the updated build and ensure\n// that the client and server in sync.\n\n// Starts as an empty string. In practice, because setAppBuildId is called\n// during initialization before hydration starts, this will always get\n// reassigned to the actual build ID before it's ever needed by a navigation.\n// If for some reasons it didn't, due to a bug or race condition, then on\n// navigation the build comparision would fail and trigger an MPA navigation.\nlet globalBuildId: string = ''\n\nexport function setAppBuildId(buildId: string) {\n globalBuildId = buildId\n}\n\nexport function getAppBuildId(): string {\n return globalBuildId\n}\n"],"names":["getAppBuildId","setAppBuildId","globalBuildId","buildId"],"mappings":"AAAA,4EAA4E;AAC5E,4EAA4E;AAC5E,wDAAwD;AACxD,EAAE;AACF,+EAA+E;AAC/E,4EAA4E;AAC5E,sCAAsC;AAEtC,0EAA0E;AAC1E,sEAAsE;AACtE,6EAA6E;AAC7E,yEAAyE;AACzE,6EAA6E;;;;;;;;;;;;;;;IAO7DA,aAAa,EAAA;eAAbA;;IAJAC,aAAa,EAAA;eAAbA;;;AAFhB,IAAIC,gBAAwB;AAErB,SAASD,cAAcE,OAAe;IAC3CD,gBAAgBC;AAClB;AAEO,SAASH;IACd,OAAOE;AACT","ignoreList":[0]}}, - {"offset": {"line": 2344, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/set-cache-busting-search-param.ts"],"sourcesContent":["'use client'\n\nimport { computeCacheBustingSearchParam } from '../../../shared/lib/router/utils/cache-busting-search-param'\nimport {\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n NEXT_RSC_UNION_QUERY,\n} from '../app-router-headers'\nimport type { RequestHeaders } from './fetch-server-response'\n\n/**\n * Mutates the provided URL by adding a cache-busting search parameter for CDNs that don't\n * support custom headers. This helps avoid caching conflicts by making each request unique.\n *\n * Rather than relying on the Vary header which some CDNs ignore, we append a search param\n * to create a unique URL that forces a fresh request.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * Note: This function mutates the input URL directly and does not return anything.\n *\n * TODO: Since we need to use a search param anyway, we could simplify by removing the custom\n * headers approach entirely and just use search params.\n */\nexport const setCacheBustingSearchParam = (\n url: URL,\n headers: RequestHeaders\n): void => {\n const uniqueCacheKey = computeCacheBustingSearchParam(\n headers[NEXT_ROUTER_PREFETCH_HEADER],\n headers[NEXT_ROUTER_SEGMENT_PREFETCH_HEADER],\n headers[NEXT_ROUTER_STATE_TREE_HEADER],\n headers[NEXT_URL]\n )\n setCacheBustingSearchParamWithHash(url, uniqueCacheKey)\n}\n\n/**\n * Sets a cache-busting search parameter on a URL using a provided hash value.\n *\n * This function performs the same logic as `setCacheBustingSearchParam` but accepts\n * a pre-computed hash instead of computing it from headers.\n *\n * Example:\n * URL before: https://example.com/path?query=1\n * hash: \"abc123\"\n * URL after: https://example.com/path?query=1&_rsc=abc123\n *\n * If the hash is null, we will set `_rsc` search param without a value.\n * Like this: https://example.com/path?query=1&_rsc\n *\n * Note: This function mutates the input URL directly and does not return anything.\n */\nexport const setCacheBustingSearchParamWithHash = (\n url: URL,\n hash: string\n): void => {\n /**\n * Note that we intentionally do not use `url.searchParams.set` here:\n *\n * const url = new URL('https://example.com/search?q=custom%20spacing');\n * url.searchParams.set('_rsc', 'abc123');\n * console.log(url.toString()); // Outputs: https://example.com/search?q=custom+spacing&_rsc=abc123\n * ^ <--- this is causing confusion\n * This is in fact intended based on https://url.spec.whatwg.org/#interface-urlsearchparams, but\n * we want to preserve the %20 as %20 if that's what the user passed in, hence the custom\n * logic below.\n */\n const existingSearch = url.search\n const rawQuery = existingSearch.startsWith('?')\n ? existingSearch.slice(1)\n : existingSearch\n\n // Always remove any existing cache busting param and add a fresh one to ensure\n // we have the correct value based on current request headers\n const pairs = rawQuery\n .split('&')\n .filter((pair) => pair && !pair.startsWith(`${NEXT_RSC_UNION_QUERY}=`))\n\n if (hash.length > 0) {\n pairs.push(`${NEXT_RSC_UNION_QUERY}=${hash}`)\n } else {\n pairs.push(`${NEXT_RSC_UNION_QUERY}`)\n }\n url.search = pairs.length ? `?${pairs.join('&')}` : ''\n}\n"],"names":["setCacheBustingSearchParam","setCacheBustingSearchParamWithHash","url","headers","uniqueCacheKey","computeCacheBustingSearchParam","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","NEXT_URL","hash","existingSearch","search","rawQuery","startsWith","slice","pairs","split","filter","pair","NEXT_RSC_UNION_QUERY","length","push","join"],"mappings":";;;;;;;;;;;;;;IA4BaA,0BAA0B,EAAA;eAA1BA;;IA6BAC,kCAAkC,EAAA;eAAlCA;;;yCAvDkC;kCAOxC;AAmBA,MAAMD,6BAA6B,CACxCE,KACAC;IAEA,MAAMC,iBAAiBC,CAAAA,GAAAA,yBAAAA,8BAA8B,EACnDF,OAAO,CAACG,kBAAAA,2BAA2B,CAAC,EACpCH,OAAO,CAACI,kBAAAA,mCAAmC,CAAC,EAC5CJ,OAAO,CAACK,kBAAAA,6BAA6B,CAAC,EACtCL,OAAO,CAACM,kBAAAA,QAAQ,CAAC;IAEnBR,mCAAmCC,KAAKE;AAC1C;AAkBO,MAAMH,qCAAqC,CAChDC,KACAQ;IAEA;;;;;;;;;;GAUC,GACD,MAAMC,iBAAiBT,IAAIU,MAAM;IACjC,MAAMC,WAAWF,eAAeG,UAAU,CAAC,OACvCH,eAAeI,KAAK,CAAC,KACrBJ;IAEJ,+EAA+E;IAC/E,6DAA6D;IAC7D,MAAMK,QAAQH,SACXI,KAAK,CAAC,KACNC,MAAM,CAAC,CAACC,OAASA,QAAQ,CAACA,KAAKL,UAAU,CAAC,GAAGM,kBAAAA,oBAAoB,CAAC,CAAC,CAAC;IAEvE,IAAIV,KAAKW,MAAM,GAAG,GAAG;QACnBL,MAAMM,IAAI,CAAC,GAAGF,kBAAAA,oBAAoB,CAAC,CAAC,EAAEV,MAAM;IAC9C,OAAO;QACLM,MAAMM,IAAI,CAAC,GAAGF,kBAAAA,oBAAoB,EAAE;IACtC;IACAlB,IAAIU,MAAM,GAAGI,MAAMK,MAAM,GAAG,CAAC,CAAC,EAAEL,MAAMO,IAAI,CAAC,MAAM,GAAG;AACtD","ignoreList":[0]}}, - {"offset": {"line": 2405, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/fetch-server-response.ts"],"sourcesContent":["'use client'\n\n// TODO: Explicitly import from client.browser\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport {\n createFromReadableStream as createFromReadableStreamBrowser,\n createFromFetch as createFromFetchBrowser,\n} from 'react-server-dom-webpack/client'\n\nimport type {\n FlightRouterState,\n NavigationFlightResponse,\n} from '../../../shared/lib/app-router-types'\n\nimport {\n type NEXT_ROUTER_PREFETCH_HEADER,\n type NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_RSC_UNION_QUERY,\n NEXT_URL,\n RSC_HEADER,\n RSC_CONTENT_TYPE_HEADER,\n NEXT_HMR_REFRESH_HEADER,\n NEXT_DID_POSTPONE_HEADER,\n NEXT_ROUTER_STALE_TIME_HEADER,\n NEXT_HTML_REQUEST_ID_HEADER,\n NEXT_REQUEST_ID_HEADER,\n} from '../app-router-headers'\nimport { callServer } from '../../app-call-server'\nimport { findSourceMapURL } from '../../app-find-source-map-url'\nimport {\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n type NormalizedFlightData,\n} from '../../flight-data-helpers'\nimport { getAppBuildId } from '../../app-build-id'\nimport { setCacheBustingSearchParam } from './set-cache-busting-search-param'\nimport {\n getRenderedSearch,\n urlToUrlWithoutFlightMarker,\n} from '../../route-params'\nimport type { NormalizedSearch } from '../segment-cache/cache-key'\nimport { getDeploymentId } from '../../../shared/lib/deployment-id'\n\nconst createFromReadableStream =\n createFromReadableStreamBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromReadableStream']\nconst createFromFetch =\n createFromFetchBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromFetch']\n\nlet createDebugChannel:\n | typeof import('../../dev/debug-channel').createDebugChannel\n | undefined\n\nif (\n process.env.NODE_ENV !== 'production' &&\n process.env.__NEXT_REACT_DEBUG_CHANNEL\n) {\n createDebugChannel = (\n require('../../dev/debug-channel') as typeof import('../../dev/debug-channel')\n ).createDebugChannel\n}\n\nexport interface FetchServerResponseOptions {\n readonly flightRouterState: FlightRouterState\n readonly nextUrl: string | null\n readonly isHmrRefresh?: boolean\n}\n\ntype SpaFetchServerResponseResult = {\n flightData: NormalizedFlightData[]\n canonicalUrl: URL\n renderedSearch: NormalizedSearch\n couldBeIntercepted: boolean\n prerendered: boolean\n postponed: boolean\n staleTime: number\n debugInfo: Array<any> | null\n}\n\ntype MpaFetchServerResponseResult = string\n\nexport type FetchServerResponseResult =\n | MpaFetchServerResponseResult\n | SpaFetchServerResponseResult\n\nexport type RequestHeaders = {\n [RSC_HEADER]?: '1'\n [NEXT_ROUTER_STATE_TREE_HEADER]?: string\n [NEXT_URL]?: string\n [NEXT_ROUTER_PREFETCH_HEADER]?: '1' | '2'\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]?: string\n 'x-deployment-id'?: string\n [NEXT_HMR_REFRESH_HEADER]?: '1'\n // A header that is only added in test mode to assert on fetch priority\n 'Next-Test-Fetch-Priority'?: RequestInit['priority']\n [NEXT_HTML_REQUEST_ID_HEADER]?: string // dev-only\n [NEXT_REQUEST_ID_HEADER]?: string // dev-only\n}\n\nfunction doMpaNavigation(url: string): FetchServerResponseResult {\n return urlToUrlWithoutFlightMarker(new URL(url, location.origin)).toString()\n}\n\nlet isPageUnloading = false\n\nif (typeof window !== 'undefined') {\n // Track when the page is unloading, e.g. due to reloading the page or\n // performing hard navigations. This allows us to suppress error logging when\n // the browser cancels in-flight requests during page unload.\n window.addEventListener('pagehide', () => {\n isPageUnloading = true\n })\n\n // Reset the flag on pageshow, e.g. when navigating back and the JavaScript\n // execution context is restored by the browser.\n window.addEventListener('pageshow', () => {\n isPageUnloading = false\n })\n}\n\n/**\n * Fetch the flight data for the provided url. Takes in the current router state\n * to decide what to render server-side.\n */\nexport async function fetchServerResponse(\n url: URL,\n options: FetchServerResponseOptions\n): Promise<FetchServerResponseResult> {\n const { flightRouterState, nextUrl } = options\n\n const headers: RequestHeaders = {\n // Enable flight response\n [RSC_HEADER]: '1',\n // Provide the current router state\n [NEXT_ROUTER_STATE_TREE_HEADER]: prepareFlightRouterStateForRequest(\n flightRouterState,\n options.isHmrRefresh\n ),\n }\n\n if (process.env.NODE_ENV === 'development' && options.isHmrRefresh) {\n headers[NEXT_HMR_REFRESH_HEADER] = '1'\n }\n\n if (nextUrl) {\n headers[NEXT_URL] = nextUrl\n }\n\n // In static export mode, we need to modify the URL to request the .txt file,\n // but we should preserve the original URL for the canonical URL and error handling.\n const originalUrl = url\n\n try {\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n // In \"output: export\" mode, we can't rely on headers to distinguish\n // between HTML and RSC requests. Instead, we append an extra prefix\n // to the request.\n url = new URL(url)\n if (url.pathname.endsWith('/')) {\n url.pathname += 'index.txt'\n } else {\n url.pathname += '.txt'\n }\n }\n }\n\n // Typically, during a navigation, we decode the response using Flight's\n // `createFromFetch` API, which accepts a `fetch` promise.\n // TODO: Remove this check once the old PPR flag is removed\n const isLegacyPPR =\n process.env.__NEXT_PPR && !process.env.__NEXT_CACHE_COMPONENTS\n const shouldImmediatelyDecode = !isLegacyPPR\n const res = await createFetch<NavigationFlightResponse>(\n url,\n headers,\n 'auto',\n shouldImmediatelyDecode\n )\n\n const responseUrl = urlToUrlWithoutFlightMarker(new URL(res.url))\n const canonicalUrl = res.redirected ? responseUrl : originalUrl\n\n const contentType = res.headers.get('content-type') || ''\n const interception = !!res.headers.get('vary')?.includes(NEXT_URL)\n const postponed = !!res.headers.get(NEXT_DID_POSTPONE_HEADER)\n const staleTimeHeaderSeconds = res.headers.get(\n NEXT_ROUTER_STALE_TIME_HEADER\n )\n const staleTime =\n staleTimeHeaderSeconds !== null\n ? parseInt(staleTimeHeaderSeconds, 10) * 1000\n : -1\n let isFlightResponse = contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n\n if (process.env.NODE_ENV === 'production') {\n if (process.env.__NEXT_CONFIG_OUTPUT === 'export') {\n if (!isFlightResponse) {\n isFlightResponse = contentType.startsWith('text/plain')\n }\n }\n }\n\n // If fetch returns something different than flight response handle it like a mpa navigation\n // If the fetch was not 200, we also handle it like a mpa navigation\n if (!isFlightResponse || !res.ok || !res.body) {\n // in case the original URL came with a hash, preserve it before redirecting to the new URL\n if (url.hash) {\n responseUrl.hash = url.hash\n }\n\n return doMpaNavigation(responseUrl.toString())\n }\n\n // We may navigate to a page that requires a different Webpack runtime.\n // In prod, every page will have the same Webpack runtime.\n // In dev, the Webpack runtime is minimal for each page.\n // We need to ensure the Webpack runtime is updated before executing client-side JS of the new page.\n // TODO: This needs to happen in the Flight Client.\n // Or Webpack needs to include the runtime update in the Flight response as\n // a blocking script.\n if (process.env.NODE_ENV !== 'production' && !process.env.TURBOPACK) {\n await (\n require('../../dev/hot-reloader/app/hot-reloader-app') as typeof import('../../dev/hot-reloader/app/hot-reloader-app')\n ).waitForWebpackRuntimeHotUpdate()\n }\n\n let flightResponsePromise = res.flightResponse\n if (flightResponsePromise === null) {\n // Typically, `createFetch` would have already started decoding the\n // Flight response. If it hasn't, though, we need to decode it now.\n // TODO: This should only be reachable if legacy PPR is enabled (i.e. PPR\n // without Cache Components). Remove this branch once legacy PPR\n // is deleted.\n const flightStream = postponed\n ? createUnclosingPrefetchStream(res.body)\n : res.body\n flightResponsePromise =\n createFromNextReadableStream<NavigationFlightResponse>(\n flightStream,\n headers\n )\n }\n\n const flightResponse = await flightResponsePromise\n\n if (getAppBuildId() !== flightResponse.b) {\n return doMpaNavigation(res.url)\n }\n\n const normalizedFlightData = normalizeFlightData(flightResponse.f)\n if (typeof normalizedFlightData === 'string') {\n return doMpaNavigation(normalizedFlightData)\n }\n\n return {\n flightData: normalizedFlightData,\n canonicalUrl: canonicalUrl,\n renderedSearch: getRenderedSearch(res),\n couldBeIntercepted: interception,\n prerendered: flightResponse.S,\n postponed,\n staleTime,\n debugInfo: flightResponsePromise._debugInfo ?? null,\n }\n } catch (err) {\n if (!isPageUnloading) {\n console.error(\n `Failed to fetch RSC payload for ${originalUrl}. Falling back to browser navigation.`,\n err\n )\n }\n\n // If fetch fails handle it like a mpa navigation\n // TODO-APP: Add a test for the case where a CORS request fails, e.g. external url redirect coming from the response.\n // See https://github.com/vercel/next.js/issues/43605#issuecomment-1451617521 for a reproduction.\n return originalUrl.toString()\n }\n}\n\n// This is a subset of the standard Response type. We use a custom type for\n// this so we can limit which details about the response leak into the rest of\n// the codebase. For example, there's some custom logic for manually following\n// redirects, so \"redirected\" in this type could be a composite of multiple\n// browser fetch calls; however, this fact should not leak to the caller.\nexport type RSCResponse<T> = {\n ok: boolean\n redirected: boolean\n headers: Headers\n body: ReadableStream<Uint8Array> | null\n status: number\n url: string\n flightResponse: (Promise<T> & { _debugInfo?: Array<any> }) | null\n}\n\nexport async function createFetch<T>(\n url: URL,\n headers: RequestHeaders,\n fetchPriority: 'auto' | 'high' | 'low' | null,\n shouldImmediatelyDecode: boolean,\n signal?: AbortSignal\n): Promise<RSCResponse<T>> {\n // TODO: In output: \"export\" mode, the headers do nothing. Omit them (and the\n // cache busting search param) from the request so they're\n // maximally cacheable.\n\n if (process.env.__NEXT_TEST_MODE && fetchPriority !== null) {\n headers['Next-Test-Fetch-Priority'] = fetchPriority\n }\n\n const deploymentId = getDeploymentId()\n if (deploymentId) {\n headers['x-deployment-id'] = deploymentId\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (self.__next_r) {\n headers[NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r\n }\n\n // Create a new request ID for the server action request. The server uses\n // this to tag debug information sent via WebSocket to the client, which\n // then routes those chunks to the debug channel associated with this ID.\n headers[NEXT_REQUEST_ID_HEADER] = crypto\n .getRandomValues(new Uint32Array(1))[0]\n .toString(16)\n }\n\n const fetchOptions: RequestInit = {\n // Backwards compat for older browsers. `same-origin` is the default in modern browsers.\n credentials: 'same-origin',\n headers,\n priority: fetchPriority || undefined,\n signal,\n }\n // `fetchUrl` is slightly different from `url` because we add a cache-busting\n // search param to it. This should not leak outside of this function, so we\n // track them separately.\n let fetchUrl = new URL(url)\n setCacheBustingSearchParam(fetchUrl, headers)\n let fetchPromise = fetch(fetchUrl, fetchOptions)\n // Immediately pass the fetch promise to the Flight client so that the debug\n // info includes the latency from the client to the server. The internal timer\n // in React starts as soon as `createFromFetch` is called.\n //\n // The only case where we don't do this is during a prefetch, because we have\n // to do some extra processing of the response stream (see\n // `createUnclosingPrefetchStream`). But this is fine, because a top-level\n // prefetch response never blocks a navigation; if it hasn't already been\n // written into the cache by the time the navigation happens, the router will\n // go straight to a dynamic request.\n let flightResponsePromise = shouldImmediatelyDecode\n ? createFromNextFetch<T>(fetchPromise, headers)\n : null\n let browserResponse = await fetchPromise\n\n // If the server responds with a redirect (e.g. 307), and the redirected\n // location does not contain the cache busting search param set in the\n // original request, the response is likely invalid — when following the\n // redirect, the browser forwards the request headers, but since the cache\n // busting search param is missing, the server will reject the request due to\n // a mismatch.\n //\n // Ideally, we would be able to intercept the redirect response and perform it\n // manually, instead of letting the browser automatically follow it, but this\n // is not allowed by the fetch API.\n //\n // So instead, we must \"replay\" the redirect by fetching the new location\n // again, but this time we'll append the cache busting search param to prevent\n // a mismatch.\n //\n // TODO: We can optimize Next.js's built-in middleware APIs by returning a\n // custom status code, to prevent the browser from automatically following it.\n //\n // This does not affect Server Action-based redirects; those are encoded\n // differently, as part of the Flight body. It only affects redirects that\n // occur in a middleware or a third-party proxy.\n\n let redirected = browserResponse.redirected\n if (process.env.__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS) {\n // This is to prevent a redirect loop. Same limit used by Chrome.\n const MAX_REDIRECTS = 20\n for (let n = 0; n < MAX_REDIRECTS; n++) {\n if (!browserResponse.redirected) {\n // The server did not perform a redirect.\n break\n }\n const responseUrl = new URL(browserResponse.url, fetchUrl)\n if (responseUrl.origin !== fetchUrl.origin) {\n // The server redirected to an external URL. The rest of the logic below\n // is not relevant, because it only applies to internal redirects.\n break\n }\n if (\n responseUrl.searchParams.get(NEXT_RSC_UNION_QUERY) ===\n fetchUrl.searchParams.get(NEXT_RSC_UNION_QUERY)\n ) {\n // The redirected URL already includes the cache busting search param.\n // This was probably intentional. Regardless, there's no reason to\n // issue another request to this URL because it already has the param\n // value that we would have added below.\n break\n }\n // The RSC request was redirected. Assume the response is invalid.\n //\n // Append the cache busting search param to the redirected URL and\n // fetch again.\n // TODO: We should abort the previous request.\n fetchUrl = new URL(responseUrl)\n setCacheBustingSearchParam(fetchUrl, headers)\n fetchPromise = fetch(fetchUrl, fetchOptions)\n flightResponsePromise = shouldImmediatelyDecode\n ? createFromNextFetch<T>(fetchPromise, headers)\n : null\n browserResponse = await fetchPromise\n // We just performed a manual redirect, so this is now true.\n redirected = true\n }\n }\n\n // Remove the cache busting search param from the response URL, to prevent it\n // from leaking outside of this function.\n const responseUrl = new URL(browserResponse.url, fetchUrl)\n responseUrl.searchParams.delete(NEXT_RSC_UNION_QUERY)\n\n const rscResponse: RSCResponse<T> = {\n url: responseUrl.href,\n\n // This is true if any redirects occurred, either automatically by the\n // browser, or manually by us. So it's different from\n // `browserResponse.redirected`, which only tells us whether the browser\n // followed a redirect, and only for the last response in the chain.\n redirected,\n\n // These can be copied from the last browser response we received. We\n // intentionally only expose the subset of fields that are actually used\n // elsewhere in the codebase.\n ok: browserResponse.ok,\n headers: browserResponse.headers,\n body: browserResponse.body,\n status: browserResponse.status,\n\n // This is the exact promise returned by `createFromFetch`. It contains\n // debug information that we need to transfer to any derived promises that\n // are later rendered by React.\n flightResponse: flightResponsePromise,\n }\n\n return rscResponse\n}\n\nexport function createFromNextReadableStream<T>(\n flightStream: ReadableStream<Uint8Array>,\n requestHeaders: RequestHeaders\n): Promise<T> {\n return createFromReadableStream(flightStream, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n })\n}\n\nfunction createFromNextFetch<T>(\n promiseForResponse: Promise<Response>,\n requestHeaders: RequestHeaders\n): Promise<T> & { _debugInfo?: Array<any> } {\n return createFromFetch(promiseForResponse, {\n callServer,\n findSourceMapURL,\n debugChannel: createDebugChannel && createDebugChannel(requestHeaders),\n })\n}\n\nfunction createUnclosingPrefetchStream(\n originalFlightStream: ReadableStream<Uint8Array>\n): ReadableStream<Uint8Array> {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n continue\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream.\n return\n }\n },\n })\n}\n"],"names":["createFetch","createFromNextReadableStream","fetchServerResponse","createFromReadableStream","createFromReadableStreamBrowser","createFromFetch","createFromFetchBrowser","createDebugChannel","process","env","NODE_ENV","__NEXT_REACT_DEBUG_CHANNEL","require","doMpaNavigation","url","urlToUrlWithoutFlightMarker","URL","location","origin","toString","isPageUnloading","window","addEventListener","options","flightRouterState","nextUrl","headers","RSC_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","prepareFlightRouterStateForRequest","isHmrRefresh","NEXT_HMR_REFRESH_HEADER","NEXT_URL","originalUrl","__NEXT_CONFIG_OUTPUT","pathname","endsWith","isLegacyPPR","__NEXT_PPR","__NEXT_CACHE_COMPONENTS","shouldImmediatelyDecode","res","responseUrl","canonicalUrl","redirected","contentType","get","interception","includes","postponed","NEXT_DID_POSTPONE_HEADER","staleTimeHeaderSeconds","NEXT_ROUTER_STALE_TIME_HEADER","staleTime","parseInt","isFlightResponse","startsWith","RSC_CONTENT_TYPE_HEADER","ok","body","hash","TURBOPACK","waitForWebpackRuntimeHotUpdate","flightResponsePromise","flightResponse","flightStream","createUnclosingPrefetchStream","getAppBuildId","b","normalizedFlightData","normalizeFlightData","f","flightData","renderedSearch","getRenderedSearch","couldBeIntercepted","prerendered","S","debugInfo","_debugInfo","err","console","error","fetchPriority","signal","__NEXT_TEST_MODE","deploymentId","getDeploymentId","self","__next_r","NEXT_HTML_REQUEST_ID_HEADER","NEXT_REQUEST_ID_HEADER","crypto","getRandomValues","Uint32Array","fetchOptions","credentials","priority","undefined","fetchUrl","setCacheBustingSearchParam","fetchPromise","fetch","createFromNextFetch","browserResponse","__NEXT_CLIENT_VALIDATE_RSC_REQUEST_HEADERS","MAX_REDIRECTS","n","searchParams","NEXT_RSC_UNION_QUERY","delete","rscResponse","href","status","requestHeaders","callServer","findSourceMapURL","debugChannel","promiseForResponse","originalFlightStream","reader","getReader","ReadableStream","pull","controller","done","value","read","enqueue"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2704, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/create-router-cache-key.ts"],"sourcesContent":["import type { Segment } from '../../../shared/lib/app-router-types'\nimport { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment'\n\nexport function createRouterCacheKey(\n segment: Segment,\n withoutSearchParameters: boolean = false\n) {\n // if the segment is an array, it means it's a dynamic segment\n // for example, ['lang', 'en', 'd']. We need to convert it to a string to store it as a cache node key.\n if (Array.isArray(segment)) {\n return `${segment[0]}|${segment[1]}|${segment[2]}`\n }\n\n // Page segments might have search parameters, ie __PAGE__?foo=bar\n // When `withoutSearchParameters` is true, we only want to return the page segment\n if (withoutSearchParameters && segment.startsWith(PAGE_SEGMENT_KEY)) {\n return PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n"],"names":["createRouterCacheKey","segment","withoutSearchParameters","Array","isArray","startsWith","PAGE_SEGMENT_KEY"],"mappings":";;;+BAGgBA,wBAAAA;;;eAAAA;;;yBAFiB;AAE1B,SAASA,qBACdC,OAAgB,EAChBC,0BAAmC,KAAK;IAExC,8DAA8D;IAC9D,uGAAuG;IACvG,IAAIC,MAAMC,OAAO,CAACH,UAAU;QAC1B,OAAO,GAAGA,OAAO,CAAC,EAAE,CAAC,CAAC,EAAEA,OAAO,CAAC,EAAE,CAAC,CAAC,EAAEA,OAAO,CAAC,EAAE,EAAE;IACpD;IAEA,kEAAkE;IAClE,kFAAkF;IAClF,IAAIC,2BAA2BD,QAAQI,UAAU,CAACC,SAAAA,gBAAgB,GAAG;QACnE,OAAOA,SAAAA,gBAAgB;IACzB;IAEA,OAAOL;AACT","ignoreList":[0]}}, - {"offset": {"line": 2738, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/is-navigating-to-new-root-layout.ts"],"sourcesContent":["import type { FlightRouterState } from '../../../shared/lib/app-router-types'\n\nexport function isNavigatingToNewRootLayout(\n currentTree: FlightRouterState,\n nextTree: FlightRouterState\n): boolean {\n // Compare segments\n const currentTreeSegment = currentTree[0]\n const nextTreeSegment = nextTree[0]\n\n // If any segment is different before we find the root layout, the root layout has changed.\n // E.g. /same/(group1)/layout.js -> /same/(group2)/layout.js\n // First segment is 'same' for both, keep looking. (group1) changed to (group2) before the root layout was found, it must have changed.\n if (Array.isArray(currentTreeSegment) && Array.isArray(nextTreeSegment)) {\n // Compare dynamic param name and type but ignore the value, different values would not affect the current root layout\n // /[name] - /slug1 and /slug2, both values (slug1 & slug2) still has the same layout /[name]/layout.js\n if (\n currentTreeSegment[0] !== nextTreeSegment[0] ||\n currentTreeSegment[2] !== nextTreeSegment[2]\n ) {\n return true\n }\n } else if (currentTreeSegment !== nextTreeSegment) {\n return true\n }\n\n // Current tree root layout found\n if (currentTree[4]) {\n // If the next tree doesn't have the root layout flag, it must have changed.\n return !nextTree[4]\n }\n // Current tree didn't have its root layout here, must have changed.\n if (nextTree[4]) {\n return true\n }\n // We can't assume it's `parallelRoutes.children` here in case the root layout is `app/@something/layout.js`\n // But it's not possible to be more than one parallelRoutes before the root layout is found\n // TODO-APP: change to traverse all parallel routes\n const currentTreeChild = Object.values(currentTree[1])[0]\n const nextTreeChild = Object.values(nextTree[1])[0]\n if (!currentTreeChild || !nextTreeChild) return true\n return isNavigatingToNewRootLayout(currentTreeChild, nextTreeChild)\n}\n"],"names":["isNavigatingToNewRootLayout","currentTree","nextTree","currentTreeSegment","nextTreeSegment","Array","isArray","currentTreeChild","Object","values","nextTreeChild"],"mappings":";;;+BAEgBA,+BAAAA;;;eAAAA;;;AAAT,SAASA,4BACdC,WAA8B,EAC9BC,QAA2B;IAE3B,mBAAmB;IACnB,MAAMC,qBAAqBF,WAAW,CAAC,EAAE;IACzC,MAAMG,kBAAkBF,QAAQ,CAAC,EAAE;IAEnC,2FAA2F;IAC3F,4DAA4D;IAC5D,uIAAuI;IACvI,IAAIG,MAAMC,OAAO,CAACH,uBAAuBE,MAAMC,OAAO,CAACF,kBAAkB;QACvE,sHAAsH;QACtH,uGAAuG;QACvG,IACED,kBAAkB,CAAC,EAAE,KAAKC,eAAe,CAAC,EAAE,IAC5CD,kBAAkB,CAAC,EAAE,KAAKC,eAAe,CAAC,EAAE,EAC5C;YACA,OAAO;QACT;IACF,OAAO,IAAID,uBAAuBC,iBAAiB;QACjD,OAAO;IACT;IAEA,iCAAiC;IACjC,IAAIH,WAAW,CAAC,EAAE,EAAE;QAClB,4EAA4E;QAC5E,OAAO,CAACC,QAAQ,CAAC,EAAE;IACrB;IACA,oEAAoE;IACpE,IAAIA,QAAQ,CAAC,EAAE,EAAE;QACf,OAAO;IACT;IACA,4GAA4G;IAC5G,2FAA2F;IAC3F,mDAAmD;IACnD,MAAMK,mBAAmBC,OAAOC,MAAM,CAACR,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE;IACzD,MAAMS,gBAAgBF,OAAOC,MAAM,CAACP,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE;IACnD,IAAI,CAACK,oBAAoB,CAACG,eAAe,OAAO;IAChD,OAAOV,4BAA4BO,kBAAkBG;AACvD","ignoreList":[0]}}, - {"offset": {"line": 2791, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/ppr-navigations.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type {\n ChildSegmentMap,\n CacheNode,\n} from '../../../shared/lib/app-router-types'\nimport type {\n HeadData,\n LoadingModuleData,\n} from '../../../shared/lib/app-router-types'\nimport {\n DEFAULT_SEGMENT_KEY,\n NOT_FOUND_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport { matchSegment } from '../match-segments'\nimport { createHrefFromUrl } from './create-href-from-url'\nimport { createRouterCacheKey } from './create-router-cache-key'\nimport { fetchServerResponse } from './fetch-server-response'\nimport { dispatchAppRouterAction } from '../use-action-queue'\nimport {\n ACTION_SERVER_PATCH,\n type ServerPatchAction,\n} from './router-reducer-types'\nimport { isNavigatingToNewRootLayout } from './is-navigating-to-new-root-layout'\nimport { DYNAMIC_STALETIME_MS } from './reducers/navigate-reducer'\nimport {\n convertServerPatchToFullTree,\n type NavigationSeed,\n} from '../segment-cache/navigation'\n\n// This is yet another tree type that is used to track pending promises that\n// need to be fulfilled once the dynamic data is received. The terminal nodes of\n// this tree represent the new Cache Node trees that were created during this\n// request. We can't use the Cache Node tree or Route State tree directly\n// because those include reused nodes, too. This tree is discarded as soon as\n// the navigation response is received.\nexport type NavigationTask = {\n status: NavigationTaskStatus\n // The router state that corresponds to the tree that this Task represents.\n route: FlightRouterState\n // The CacheNode that corresponds to the tree that this Task represents.\n node: CacheNode\n // The tree sent to the server during the dynamic request. If all the segments\n // are static, then this will be null, and no server request is required.\n // Otherwise, this is the same as `route`, except with the `refetch` marker\n // set on the top-most segment that needs to be fetched.\n dynamicRequestTree: FlightRouterState | null\n // The URL that should be used to fetch the dynamic data. This is only set\n // when the segment cannot be refetched from the current route, because it's\n // part of a \"default\" parallel slot that was reused during a navigation.\n refreshUrl: string | null\n children: Map<string, NavigationTask> | null\n}\n\nexport const enum FreshnessPolicy {\n Default,\n Hydration,\n HistoryTraversal,\n RefreshAll,\n HMRRefresh,\n}\n\nconst enum NavigationTaskStatus {\n Pending,\n Fulfilled,\n Rejected,\n}\n\n/**\n * When a NavigationTask finishes, there may or may not be data still missing,\n * necessitating a retry.\n */\nconst enum NavigationTaskExitStatus {\n /**\n * No additional navigation is required.\n */\n Done = 0,\n /**\n * Some data failed to load, presumably due to a route tree mismatch. Perform\n * a soft retry to reload the entire tree.\n */\n SoftRetry = 1,\n /**\n * Some data failed to load in an unrecoverable way, e.g. in an inactive\n * parallel route. Fall back to a hard (MPA-style) retry.\n */\n HardRetry = 2,\n}\n\nexport type NavigationRequestAccumulation = {\n scrollableSegments: Array<FlightSegmentPath> | null\n separateRefreshUrls: Set<string> | null\n}\n\nconst noop = () => {}\n\nexport function createInitialCacheNodeForHydration(\n navigatedAt: number,\n initialTree: FlightRouterState,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData\n): CacheNode {\n // Create the initial cache node tree, using the data embedded into the\n // HTML document.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const task = createCacheNodeOnNavigation(\n navigatedAt,\n initialTree,\n undefined,\n FreshnessPolicy.Hydration,\n seedData,\n seedHead,\n null,\n null,\n false,\n null,\n null,\n false,\n accumulation\n )\n\n // NOTE: We intentionally don't check if any data needs to be fetched from the\n // server. We assume the initial hydration payload is sufficient to render\n // the page.\n //\n // The completeness of the initial data is an important property that we rely\n // on as a last-ditch mechanism for recovering the app; we must always be able\n // to reload a fresh HTML document to get to a consistent state.\n //\n // In the future, there may be cases where the server intentionally sends\n // partial data and expects the client to fill in the rest, in which case this\n // logic may change. (There already is a similar case where the server sends\n // _no_ hydration data in the HTML document at all, and the client fetches it\n // separately, but that's different because we still end up hydrating with a\n // complete tree.)\n\n return task.node\n}\n\n// Creates a new Cache Node tree (i.e. copy-on-write) that represents the\n// optimistic result of a navigation, using both the current Cache Node tree and\n// data that was prefetched prior to navigation.\n//\n// At the moment we call this function, we haven't yet received the navigation\n// response from the server. It could send back something completely different\n// from the tree that was prefetched — due to rewrites, default routes, parallel\n// routes, etc.\n//\n// But in most cases, it will return the same tree that we prefetched, just with\n// the dynamic holes filled in. So we optimistically assume this will happen,\n// and accept that the real result could be arbitrarily different.\n//\n// We'll reuse anything that was already in the previous tree, since that's what\n// the server does.\n//\n// New segments (ones that don't appear in the old tree) are assigned an\n// unresolved promise. The data for these promises will be fulfilled later, when\n// the navigation response is received.\n//\n// The tree can be rendered immediately after it is created (that's why this is\n// a synchronous function). Any new trees that do not have prefetch data will\n// suspend during rendering, until the dynamic data streams in.\n//\n// Returns a Task object, which contains both the updated Cache Node and a path\n// to the pending subtrees that need to be resolved by the navigation response.\n//\n// A return value of `null` means there were no changes, and the previous tree\n// can be reused without initiating a server request.\nexport function startPPRNavigation(\n navigatedAt: number,\n oldUrl: URL,\n oldCacheNode: CacheNode | null,\n oldRouterState: FlightRouterState,\n newRouterState: FlightRouterState,\n freshness: FreshnessPolicy,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n isSamePageNavigation: boolean,\n accumulation: NavigationRequestAccumulation\n): NavigationTask | null {\n const didFindRootLayout = false\n const parentNeedsDynamicRequest = false\n const parentRefreshUrl = null\n return updateCacheNodeOnNavigation(\n navigatedAt,\n oldUrl,\n oldCacheNode !== null ? oldCacheNode : undefined,\n oldRouterState,\n newRouterState,\n freshness,\n didFindRootLayout,\n seedData,\n seedHead,\n prefetchData,\n prefetchHead,\n isPrefetchHeadPartial,\n isSamePageNavigation,\n null,\n null,\n parentNeedsDynamicRequest,\n parentRefreshUrl,\n accumulation\n )\n}\n\nfunction updateCacheNodeOnNavigation(\n navigatedAt: number,\n oldUrl: URL,\n oldCacheNode: CacheNode | void,\n oldRouterState: FlightRouterState,\n newRouterState: FlightRouterState,\n freshness: FreshnessPolicy,\n didFindRootLayout: boolean,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n isSamePageNavigation: boolean,\n parentSegmentPath: FlightSegmentPath | null,\n parentParallelRouteKey: string | null,\n parentNeedsDynamicRequest: boolean,\n parentRefreshUrl: string | null,\n accumulation: NavigationRequestAccumulation\n): NavigationTask | null {\n // Check if this segment matches the one in the previous route.\n const oldSegment = oldRouterState[0]\n const newSegment = newRouterState[0]\n if (!matchSegment(newSegment, oldSegment)) {\n // This segment does not match the previous route. We're now entering the\n // new part of the target route. Switch to the \"create\" path.\n if (\n // Check if the route tree changed before we reached a layout. (The\n // highest-level layout in a route tree is referred to as the \"root\"\n // layout.) This could mean that we're navigating between two different\n // root layouts. When this happens, we perform a full-page (MPA-style)\n // navigation.\n //\n // However, the algorithm for deciding where to start rendering a route\n // (i.e. the one performed in order to reach this function) is stricter\n // than the one used to detect a change in the root layout. So just\n // because we're re-rendering a segment outside of the root layout does\n // not mean we should trigger a full-page navigation.\n //\n // Specifically, we handle dynamic parameters differently: two segments\n // are considered the same even if their parameter values are different.\n //\n // Refer to isNavigatingToNewRootLayout for details.\n //\n // Note that we only have to perform this extra traversal if we didn't\n // already discover a root layout in the part of the tree that is\n // unchanged. We also only need to compare the subtree that is not\n // shared. In the common case, this branch is skipped completely.\n (!didFindRootLayout &&\n isNavigatingToNewRootLayout(oldRouterState, newRouterState)) ||\n // The global Not Found route (app/global-not-found.tsx) is a special\n // case, because it acts like a root layout, but in the router tree, it\n // is rendered in the same position as app/layout.tsx.\n //\n // Any navigation to the global Not Found route should trigger a\n // full-page navigation.\n //\n // TODO: We should probably model this by changing the key of the root\n // segment when this happens. Then the root layout check would work\n // as expected, without a special case.\n newSegment === NOT_FOUND_SEGMENT_KEY\n ) {\n return null\n }\n if (parentSegmentPath === null || parentParallelRouteKey === null) {\n // The root should never mismatch. If it does, it suggests an internal\n // Next.js error, or a malformed server response. Trigger a full-\n // page navigation.\n return null\n }\n return createCacheNodeOnNavigation(\n navigatedAt,\n newRouterState,\n oldCacheNode,\n freshness,\n seedData,\n seedHead,\n prefetchData,\n prefetchHead,\n isPrefetchHeadPartial,\n parentSegmentPath,\n parentParallelRouteKey,\n parentNeedsDynamicRequest,\n accumulation\n )\n }\n\n // TODO: The segment paths are tracked so that LayoutRouter knows which\n // segments to scroll to after a navigation. But we should just mark this\n // information on the CacheNode directly. It used to be necessary to do this\n // separately because CacheNodes were created lazily during render, not when\n // rather than when creating the route tree.\n const segmentPath =\n parentParallelRouteKey !== null && parentSegmentPath !== null\n ? parentSegmentPath.concat([parentParallelRouteKey, newSegment])\n : // NOTE: The root segment is intentionally omitted from the segment path\n []\n\n const newRouterStateChildren = newRouterState[1]\n const oldRouterStateChildren = oldRouterState[1]\n const seedDataChildren = seedData !== null ? seedData[1] : null\n const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null\n\n // We're currently traversing the part of the tree that was also part of\n // the previous route. If we discover a root layout, then we don't need to\n // trigger an MPA navigation.\n const isRootLayout = newRouterState[4] === true\n const childDidFindRootLayout = didFindRootLayout || isRootLayout\n\n const oldParallelRoutes =\n oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined\n\n // Clone the current set of segment children, even if they aren't active in\n // the new tree.\n // TODO: We currently retain all the inactive segments indefinitely, until\n // there's an explicit refresh, or a parent layout is lazily refreshed. We\n // rely on this for popstate navigations, which update the Router State Tree\n // but do not eagerly perform a data fetch, because they expect the segment\n // data to already be in the Cache Node tree. For highly static sites that\n // are mostly read-only, this may happen only rarely, causing memory to\n // leak. We should figure out a better model for the lifetime of inactive\n // segments, so we can maintain instant back/forward navigations without\n // leaking memory indefinitely.\n let shouldDropSiblingCaches: boolean = false\n let shouldRefreshDynamicData: boolean = false\n switch (freshness) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n case FreshnessPolicy.Hydration: // <- shouldn't happen during client nav\n // We should never drop dynamic data in shared layouts, except during\n // a refresh.\n shouldDropSiblingCaches = false\n shouldRefreshDynamicData = false\n break\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n shouldDropSiblingCaches = true\n shouldRefreshDynamicData = true\n break\n default:\n freshness satisfies never\n break\n }\n const newParallelRoutes = new Map(\n shouldDropSiblingCaches ? undefined : oldParallelRoutes\n )\n\n // TODO: We're not consistent about how we do this check. Some places\n // check if the segment starts with PAGE_SEGMENT_KEY, but most seem to\n // check if there any any children, which is why I'm doing it here. We\n // should probably encode an empty children set as `null` though. Either\n // way, we should update all the checks to be consistent.\n const isLeafSegment = Object.keys(newRouterStateChildren).length === 0\n\n // Get the data for this segment. Since it was part of the previous route,\n // usually we just clone the data from the old CacheNode. However, during a\n // refresh or a revalidation, there won't be any existing CacheNode. So we\n // may need to consult the prefetch cache, like we would for a new segment.\n let newCacheNode: CacheNode\n let needsDynamicRequest: boolean\n if (\n oldCacheNode !== undefined &&\n !shouldRefreshDynamicData &&\n // During a same-page navigation, we always refetch the page segments\n !(isLeafSegment && isSamePageNavigation)\n ) {\n // Reuse the existing CacheNode\n const dropPrefetchRsc = false\n newCacheNode = reuseDynamicCacheNode(\n dropPrefetchRsc,\n oldCacheNode,\n newParallelRoutes\n )\n needsDynamicRequest = false\n } else if (seedData !== null && seedData[0] !== null) {\n // If this navigation was the result of an action, then check if the\n // server sent back data in the action response. We should favor using\n // that, rather than performing a separate request. This is both better\n // for performance and it's more likely to be consistent with any\n // writes that were just performed by the action, compared to a\n // separate request.\n const seedRsc = seedData[0]\n const seedLoading = seedData[2]\n const isSeedRscPartial = false\n const isSeedHeadPartial = seedHead === null\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = isLeafSegment && isSeedHeadPartial\n } else if (prefetchData !== null) {\n // Consult the prefetch cache.\n const prefetchRsc = prefetchData[0]\n const prefetchLoading = prefetchData[2]\n const isPrefetchRSCPartial = prefetchData[3]\n newCacheNode = readCacheNodeFromSeedData(\n prefetchRsc,\n prefetchLoading,\n isPrefetchRSCPartial,\n prefetchHead,\n isPrefetchHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest =\n isPrefetchRSCPartial || (isLeafSegment && isPrefetchHeadPartial)\n } else {\n // Spawn a request to fetch new data from the server.\n newCacheNode = spawnNewCacheNode(\n newParallelRoutes,\n isLeafSegment,\n navigatedAt,\n freshness\n )\n needsDynamicRequest = true\n }\n\n // During a refresh navigation, there's a special case that happens when\n // entering a \"default\" slot. The default slot may not be part of the\n // current route; it may have been reused from an older route. If so,\n // we need to fetch its data from the old route's URL rather than current\n // route's URL. Keep track of this as we traverse the tree.\n const href = newRouterState[2]\n const refreshUrl =\n typeof href === 'string' && newRouterState[3] === 'refresh'\n ? // This segment is not present in the current route. Track its\n // refresh URL as we continue traversing the tree.\n href\n : // Inherit the refresh URL from the parent.\n parentRefreshUrl\n\n // If this segment itself needs to fetch new data from the server, then by\n // definition it is being refreshed. Track its refresh URL so we know which\n // URL to request the data from.\n if (needsDynamicRequest && refreshUrl !== null) {\n accumulateRefreshUrl(accumulation, refreshUrl)\n }\n\n // As we diff the trees, we may sometimes modify (copy-on-write, not mutate)\n // the Route Tree that was returned by the server — for example, in the case\n // of default parallel routes, we preserve the currently active segment. To\n // avoid mutating the original tree, we clone the router state children along\n // the return path.\n let patchedRouterStateChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n let taskChildren = null\n\n // Most navigations require a request to fetch additional data from the\n // server, either because the data was not already prefetched, or because the\n // target route contains dynamic data that cannot be prefetched.\n //\n // However, if the target route is fully static, and it's already completely\n // loaded into the segment cache, then we can skip the server request.\n //\n // This starts off as `false`, and is set to `true` if any of the child\n // routes requires a dynamic request.\n let childNeedsDynamicRequest = false\n // As we traverse the children, we'll construct a FlightRouterState that can\n // be sent to the server to request the dynamic data. If it turns out that\n // nothing in the subtree is dynamic (i.e. childNeedsDynamicRequest is false\n // at the end), then this will be discarded.\n // TODO: We can probably optimize the format of this data structure to only\n // include paths that are dynamic. Instead of reusing the\n // FlightRouterState type.\n let dynamicRequestTreeChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n\n for (let parallelRouteKey in newRouterStateChildren) {\n let newRouterStateChild: FlightRouterState =\n newRouterStateChildren[parallelRouteKey]\n const oldRouterStateChild: FlightRouterState | void =\n oldRouterStateChildren[parallelRouteKey]\n if (oldRouterStateChild === undefined) {\n // This should never happen, but if it does, it suggests a malformed\n // server response. Trigger a full-page navigation.\n return null\n }\n const oldSegmentMapChild =\n oldParallelRoutes !== undefined\n ? oldParallelRoutes.get(parallelRouteKey)\n : undefined\n\n let seedDataChild: CacheNodeSeedData | void | null =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n let prefetchDataChild: CacheNodeSeedData | void | null =\n prefetchDataChildren !== null\n ? prefetchDataChildren[parallelRouteKey]\n : null\n\n let newSegmentChild = newRouterStateChild[0]\n let seedHeadChild = seedHead\n let prefetchHeadChild = prefetchHead\n let isPrefetchHeadPartialChild = isPrefetchHeadPartial\n if (\n // Skip this branch during a history traversal. We restore the tree that\n // was stashed in the history entry as-is.\n freshness !== FreshnessPolicy.HistoryTraversal &&\n newSegmentChild === DEFAULT_SEGMENT_KEY\n ) {\n // This is a \"default\" segment. These are never sent by the server during\n // a soft navigation; instead, the client reuses whatever segment was\n // already active in that slot on the previous route.\n newRouterStateChild = reuseActiveSegmentInDefaultSlot(\n oldUrl,\n oldRouterStateChild\n )\n newSegmentChild = newRouterStateChild[0]\n\n // Since we're switching to a different route tree, these are no\n // longer valid, because they correspond to the outer tree.\n seedDataChild = null\n seedHeadChild = null\n prefetchDataChild = null\n prefetchHeadChild = null\n isPrefetchHeadPartialChild = false\n }\n\n const newSegmentKeyChild = createRouterCacheKey(newSegmentChild)\n const oldCacheNodeChild =\n oldSegmentMapChild !== undefined\n ? oldSegmentMapChild.get(newSegmentKeyChild)\n : undefined\n\n const taskChild = updateCacheNodeOnNavigation(\n navigatedAt,\n oldUrl,\n oldCacheNodeChild,\n oldRouterStateChild,\n newRouterStateChild,\n freshness,\n childDidFindRootLayout,\n seedDataChild ?? null,\n seedHeadChild,\n prefetchDataChild ?? null,\n prefetchHeadChild,\n isPrefetchHeadPartialChild,\n isSamePageNavigation,\n segmentPath,\n parallelRouteKey,\n parentNeedsDynamicRequest || needsDynamicRequest,\n refreshUrl,\n accumulation\n )\n\n if (taskChild === null) {\n // One of the child tasks discovered a change to the root layout.\n // Immediately unwind from this recursive traversal. This will trigger a\n // full-page navigation.\n return null\n }\n\n // Recursively propagate up the child tasks.\n if (taskChildren === null) {\n taskChildren = new Map()\n }\n taskChildren.set(parallelRouteKey, taskChild)\n const newCacheNodeChild = taskChild.node\n if (newCacheNodeChild !== null) {\n const newSegmentMapChild: ChildSegmentMap = new Map(\n shouldDropSiblingCaches ? undefined : oldSegmentMapChild\n )\n newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild)\n newParallelRoutes.set(parallelRouteKey, newSegmentMapChild)\n }\n\n // The child tree's route state may be different from the prefetched\n // route sent by the server. We need to clone it as we traverse back up\n // the tree.\n const taskChildRoute = taskChild.route\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute\n\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree\n if (dynamicRequestTreeChild !== null) {\n // Something in the child tree is dynamic.\n childNeedsDynamicRequest = true\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute\n }\n }\n\n return {\n status: needsDynamicRequest\n ? NavigationTaskStatus.Pending\n : NavigationTaskStatus.Fulfilled,\n route: patchRouterStateWithNewChildren(\n newRouterState,\n patchedRouterStateChildren\n ),\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(\n newRouterState,\n dynamicRequestTreeChildren,\n needsDynamicRequest,\n childNeedsDynamicRequest,\n parentNeedsDynamicRequest\n ),\n refreshUrl,\n children: taskChildren,\n }\n}\n\nfunction createCacheNodeOnNavigation(\n navigatedAt: number,\n newRouterState: FlightRouterState,\n oldCacheNode: CacheNode | void,\n freshness: FreshnessPolicy,\n seedData: CacheNodeSeedData | null,\n seedHead: HeadData | null,\n prefetchData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n parentSegmentPath: FlightSegmentPath | null,\n parentParallelRouteKey: string | null,\n parentNeedsDynamicRequest: boolean,\n accumulation: NavigationRequestAccumulation\n): NavigationTask {\n // Same traversal as updateCacheNodeNavigation, but simpler. We switch to this\n // path once we reach the part of the tree that was not in the previous route.\n // We don't need to diff against the old tree, we just need to create a new\n // one. We also don't need to worry about any refresh-related logic.\n //\n // For the most part, this is a subset of updateCacheNodeOnNavigation, so any\n // change that happens in this function likely needs to be applied to that\n // one, too. However there are some places where the behavior intentionally\n // diverges, which is why we keep them separate.\n\n const newSegment = newRouterState[0]\n const segmentPath =\n parentParallelRouteKey !== null && parentSegmentPath !== null\n ? parentSegmentPath.concat([parentParallelRouteKey, newSegment])\n : // NOTE: The root segment is intentionally omitted from the segment path\n []\n\n const newRouterStateChildren = newRouterState[1]\n const prefetchDataChildren = prefetchData !== null ? prefetchData[1] : null\n const seedDataChildren = seedData !== null ? seedData[1] : null\n const oldParallelRoutes =\n oldCacheNode !== undefined ? oldCacheNode.parallelRoutes : undefined\n\n let shouldDropSiblingCaches: boolean = false\n let shouldRefreshDynamicData: boolean = false\n let dropPrefetchRsc: boolean = false\n switch (freshness) {\n case FreshnessPolicy.Default:\n // We should never drop dynamic data in sibling caches except during\n // a refresh.\n shouldDropSiblingCaches = false\n\n // Only reuse the dynamic data if experimental.staleTimes.dynamic config\n // is set, and the data is not stale. (This is not a recommended API with\n // Cache Components, but it's supported for backwards compatibility. Use\n // cacheLife instead.)\n //\n // DYNAMIC_STALETIME_MS defaults to 0, but it can be increased.\n shouldRefreshDynamicData =\n oldCacheNode === undefined ||\n navigatedAt - oldCacheNode.navigatedAt >= DYNAMIC_STALETIME_MS\n\n dropPrefetchRsc = false\n break\n case FreshnessPolicy.Hydration:\n // During hydration, we assume the data sent by the server is both\n // consistent and complete.\n shouldRefreshDynamicData = false\n shouldDropSiblingCaches = false\n dropPrefetchRsc = false\n break\n case FreshnessPolicy.HistoryTraversal:\n // During back/forward navigations, we reuse the dynamic data regardless\n // of how stale it may be.\n shouldRefreshDynamicData = false\n shouldRefreshDynamicData = false\n\n // Only show prefetched data if the dynamic data is still pending. This\n // avoids a flash back to the prefetch state in a case where it's highly\n // likely to have already streamed in.\n //\n // Tehnically, what we're actually checking is whether the dynamic network\n // response was received. But since it's a streaming response, this does\n // not mean that all the dynamic data has fully streamed in. It just means\n // that _some_ of the dynamic data was received. But as a heuristic, we\n // assume that the rest dynamic data will stream in quickly, so it's still\n // better to skip the prefetch state.\n if (oldCacheNode !== undefined) {\n const oldRsc = oldCacheNode.rsc\n const oldRscDidResolve =\n !isDeferredRsc(oldRsc) || oldRsc.status !== 'pending'\n dropPrefetchRsc = oldRscDidResolve\n } else {\n dropPrefetchRsc = false\n }\n break\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n // Drop all dynamic data.\n shouldRefreshDynamicData = true\n shouldDropSiblingCaches = true\n dropPrefetchRsc = false\n break\n default:\n freshness satisfies never\n break\n }\n\n const newParallelRoutes = new Map(\n shouldDropSiblingCaches ? undefined : oldParallelRoutes\n )\n const isLeafSegment = Object.keys(newRouterStateChildren).length === 0\n\n if (isLeafSegment) {\n // The segment path of every leaf segment (i.e. page) is collected into\n // a result array. This is used by the LayoutRouter to scroll to ensure that\n // new pages are visible after a navigation.\n //\n // This only happens for new pages, not for refreshed pages.\n //\n // TODO: We should use a string to represent the segment path instead of\n // an array. We already use a string representation for the path when\n // accessing the Segment Cache, so we can use the same one.\n if (accumulation.scrollableSegments === null) {\n accumulation.scrollableSegments = []\n }\n accumulation.scrollableSegments.push(segmentPath)\n }\n\n let newCacheNode: CacheNode\n let needsDynamicRequest: boolean\n if (!shouldRefreshDynamicData && oldCacheNode !== undefined) {\n // Reuse the existing CacheNode\n newCacheNode = reuseDynamicCacheNode(\n dropPrefetchRsc,\n oldCacheNode,\n newParallelRoutes\n )\n needsDynamicRequest = false\n } else if (seedData !== null && seedData[0] !== null) {\n // If this navigation was the result of an action, then check if the\n // server sent back data in the action response. We should favor using\n // that, rather than performing a separate request. This is both better\n // for performance and it's more likely to be consistent with any\n // writes that were just performed by the action, compared to a\n // separate request.\n const seedRsc = seedData[0]\n const seedLoading = seedData[2]\n const isSeedRscPartial = false\n const isSeedHeadPartial =\n seedHead === null && freshness !== FreshnessPolicy.Hydration\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = isLeafSegment && isSeedHeadPartial\n } else if (\n freshness === FreshnessPolicy.Hydration &&\n isLeafSegment &&\n seedHead !== null\n ) {\n // This is another weird case related to \"not found\" pages and hydration.\n // There will be a head sent by the server, but no page seed data.\n // TODO: We really should get rid of all these \"not found\" specific quirks\n // and make sure the tree is always consistent.\n const seedRsc = null\n const seedLoading = null\n const isSeedRscPartial = false\n const isSeedHeadPartial = false\n newCacheNode = readCacheNodeFromSeedData(\n seedRsc,\n seedLoading,\n isSeedRscPartial,\n seedHead,\n isSeedHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest = false\n } else if (freshness !== FreshnessPolicy.Hydration && prefetchData !== null) {\n // Consult the prefetch cache.\n const prefetchRsc = prefetchData[0]\n const prefetchLoading = prefetchData[2]\n const isPrefetchRSCPartial = prefetchData[3]\n newCacheNode = readCacheNodeFromSeedData(\n prefetchRsc,\n prefetchLoading,\n isPrefetchRSCPartial,\n prefetchHead,\n isPrefetchHeadPartial,\n isLeafSegment,\n newParallelRoutes,\n navigatedAt\n )\n needsDynamicRequest =\n isPrefetchRSCPartial || (isLeafSegment && isPrefetchHeadPartial)\n } else {\n // Spawn a request to fetch new data from the server.\n newCacheNode = spawnNewCacheNode(\n newParallelRoutes,\n isLeafSegment,\n navigatedAt,\n freshness\n )\n needsDynamicRequest = true\n }\n\n let patchedRouterStateChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n let taskChildren = null\n\n let childNeedsDynamicRequest = false\n let dynamicRequestTreeChildren: {\n [parallelRouteKey: string]: FlightRouterState\n } = {}\n\n for (let parallelRouteKey in newRouterStateChildren) {\n const newRouterStateChild: FlightRouterState =\n newRouterStateChildren[parallelRouteKey]\n const oldSegmentMapChild =\n oldParallelRoutes !== undefined\n ? oldParallelRoutes.get(parallelRouteKey)\n : undefined\n const seedDataChild: CacheNodeSeedData | void | null =\n seedDataChildren !== null ? seedDataChildren[parallelRouteKey] : null\n const prefetchDataChild: CacheNodeSeedData | void | null =\n prefetchDataChildren !== null\n ? prefetchDataChildren[parallelRouteKey]\n : null\n\n const newSegmentChild = newRouterStateChild[0]\n const newSegmentKeyChild = createRouterCacheKey(newSegmentChild)\n\n const oldCacheNodeChild =\n oldSegmentMapChild !== undefined\n ? oldSegmentMapChild.get(newSegmentKeyChild)\n : undefined\n\n const taskChild = createCacheNodeOnNavigation(\n navigatedAt,\n newRouterStateChild,\n oldCacheNodeChild,\n freshness,\n seedDataChild ?? null,\n seedHead,\n prefetchDataChild ?? null,\n prefetchHead,\n isPrefetchHeadPartial,\n segmentPath,\n parallelRouteKey,\n parentNeedsDynamicRequest || needsDynamicRequest,\n accumulation\n )\n\n if (taskChildren === null) {\n taskChildren = new Map()\n }\n taskChildren.set(parallelRouteKey, taskChild)\n const newCacheNodeChild = taskChild.node\n if (newCacheNodeChild !== null) {\n const newSegmentMapChild: ChildSegmentMap = new Map(\n shouldDropSiblingCaches ? undefined : oldSegmentMapChild\n )\n newSegmentMapChild.set(newSegmentKeyChild, newCacheNodeChild)\n newParallelRoutes.set(parallelRouteKey, newSegmentMapChild)\n }\n\n const taskChildRoute = taskChild.route\n patchedRouterStateChildren[parallelRouteKey] = taskChildRoute\n\n const dynamicRequestTreeChild = taskChild.dynamicRequestTree\n if (dynamicRequestTreeChild !== null) {\n childNeedsDynamicRequest = true\n dynamicRequestTreeChildren[parallelRouteKey] = dynamicRequestTreeChild\n } else {\n dynamicRequestTreeChildren[parallelRouteKey] = taskChildRoute\n }\n }\n\n return {\n status: needsDynamicRequest\n ? NavigationTaskStatus.Pending\n : NavigationTaskStatus.Fulfilled,\n route: patchRouterStateWithNewChildren(\n newRouterState,\n patchedRouterStateChildren\n ),\n node: newCacheNode,\n dynamicRequestTree: createDynamicRequestTree(\n newRouterState,\n dynamicRequestTreeChildren,\n needsDynamicRequest,\n childNeedsDynamicRequest,\n parentNeedsDynamicRequest\n ),\n // This route is not part of the current tree, so there's no reason to\n // track the refresh URL.\n refreshUrl: null,\n children: taskChildren,\n }\n}\n\nfunction patchRouterStateWithNewChildren(\n baseRouterState: FlightRouterState,\n newChildren: { [parallelRouteKey: string]: FlightRouterState }\n): FlightRouterState {\n const clone: FlightRouterState = [baseRouterState[0], newChildren]\n // Based on equivalent logic in apply-router-state-patch-to-tree, but should\n // confirm whether we need to copy all of these fields. Not sure the server\n // ever sends, e.g. the refetch marker.\n if (2 in baseRouterState) {\n clone[2] = baseRouterState[2]\n }\n if (3 in baseRouterState) {\n clone[3] = baseRouterState[3]\n }\n if (4 in baseRouterState) {\n clone[4] = baseRouterState[4]\n }\n return clone\n}\n\nfunction createDynamicRequestTree(\n newRouterState: FlightRouterState,\n dynamicRequestTreeChildren: Record<string, FlightRouterState>,\n needsDynamicRequest: boolean,\n childNeedsDynamicRequest: boolean,\n parentNeedsDynamicRequest: boolean\n): FlightRouterState | null {\n // Create a FlightRouterState that instructs the server how to render the\n // requested segment.\n //\n // Or, if neither this segment nor any of the children require a new data,\n // then we return `null` to skip the request.\n let dynamicRequestTree: FlightRouterState | null = null\n if (needsDynamicRequest) {\n dynamicRequestTree = patchRouterStateWithNewChildren(\n newRouterState,\n dynamicRequestTreeChildren\n )\n // The \"refetch\" marker is set on the top-most segment that requires new\n // data. We can omit it if a parent was already marked.\n if (!parentNeedsDynamicRequest) {\n dynamicRequestTree[3] = 'refetch'\n }\n } else if (childNeedsDynamicRequest) {\n // This segment does not request new data, but at least one of its\n // children does.\n dynamicRequestTree = patchRouterStateWithNewChildren(\n newRouterState,\n dynamicRequestTreeChildren\n )\n } else {\n dynamicRequestTree = null\n }\n return dynamicRequestTree\n}\n\nfunction accumulateRefreshUrl(\n accumulation: NavigationRequestAccumulation,\n refreshUrl: string\n) {\n // This is a refresh navigation, and we're inside a \"default\" slot that's\n // not part of the current route; it was reused from an older route. In\n // order to get fresh data for this reused route, we need to issue a\n // separate request using the old route's URL.\n //\n // Track these extra URLs in the accumulated result. Later, we'll construct\n // an appropriate request for each unique URL in the final set. The reason\n // we don't do it immediately here is so we can deduplicate multiple\n // instances of the same URL into a single request. See\n // listenForDynamicRequest for more details.\n const separateRefreshUrls = accumulation.separateRefreshUrls\n if (separateRefreshUrls === null) {\n accumulation.separateRefreshUrls = new Set([refreshUrl])\n } else {\n separateRefreshUrls.add(refreshUrl)\n }\n}\n\nfunction reuseActiveSegmentInDefaultSlot(\n oldUrl: URL,\n oldRouterState: FlightRouterState\n): FlightRouterState {\n // This is a \"default\" segment. These are never sent by the server during a\n // soft navigation; instead, the client reuses whatever segment was already\n // active in that slot on the previous route. This means if we later need to\n // refresh the segment, it will have to be refetched from the previous route's\n // URL. We store it in the Flight Router State.\n //\n // TODO: We also mark the segment with a \"refresh\" marker but I think we can\n // get rid of that eventually by making sure we only add URLs to page segments\n // that are reused. Then the presence of the URL alone is enough.\n let reusedRouterState\n\n const oldRefreshMarker = oldRouterState[3]\n if (oldRefreshMarker === 'refresh') {\n // This segment was already reused from an even older route. Keep its\n // existing URL and refresh marker.\n reusedRouterState = oldRouterState\n } else {\n // This segment was not previously reused, and it's not on the new route.\n // So it must have been delivered in the old route.\n reusedRouterState = patchRouterStateWithNewChildren(\n oldRouterState,\n oldRouterState[1]\n )\n reusedRouterState[2] = createHrefFromUrl(oldUrl)\n reusedRouterState[3] = 'refresh'\n }\n\n return reusedRouterState\n}\n\nfunction reuseDynamicCacheNode(\n dropPrefetchRsc: boolean,\n existingCacheNode: CacheNode,\n parallelRoutes: Map<string, ChildSegmentMap>\n): CacheNode {\n // Clone an existing CacheNode's data, with (possibly) new children.\n const cacheNode: CacheNode = {\n rsc: existingCacheNode.rsc,\n prefetchRsc: dropPrefetchRsc ? null : existingCacheNode.prefetchRsc,\n head: existingCacheNode.head,\n prefetchHead: dropPrefetchRsc ? null : existingCacheNode.prefetchHead,\n loading: existingCacheNode.loading,\n\n parallelRoutes,\n\n // Don't update the navigatedAt timestamp, since we're reusing\n // existing data.\n navigatedAt: existingCacheNode.navigatedAt,\n }\n return cacheNode\n}\n\nfunction readCacheNodeFromSeedData(\n seedRsc: React.ReactNode,\n seedLoading: LoadingModuleData | Promise<LoadingModuleData>,\n isSeedRscPartial: boolean,\n seedHead: HeadData | null,\n isSeedHeadPartial: boolean,\n isPageSegment: boolean,\n parallelRoutes: Map<string, ChildSegmentMap>,\n navigatedAt: number\n): CacheNode {\n // TODO: Currently this is threaded through the navigation logic using the\n // CacheNodeSeedData type, but in the future this will read directly from\n // the Segment Cache. See readRenderSnapshotFromCache.\n\n let rsc: React.ReactNode\n let prefetchRsc: React.ReactNode\n if (isSeedRscPartial) {\n // The prefetched data contains dynamic holes. Create a pending promise that\n // will be fulfilled when the dynamic data is received from the server.\n prefetchRsc = seedRsc\n rsc = createDeferredRsc()\n } else {\n // The prefetched data is complete. Use it directly.\n prefetchRsc = null\n rsc = seedRsc\n }\n\n // If this is a page segment, also read the head.\n let prefetchHead: HeadData | null\n let head: HeadData | null\n if (isPageSegment) {\n if (isSeedHeadPartial) {\n prefetchHead = seedHead\n head = createDeferredRsc()\n } else {\n prefetchHead = null\n head = seedHead\n }\n } else {\n prefetchHead = null\n head = null\n }\n\n const cacheNode: CacheNode = {\n rsc,\n prefetchRsc,\n head,\n prefetchHead,\n // TODO: Technically, a loading boundary could contain dynamic data. We\n // should have separate `loading` and `prefetchLoading` fields to handle\n // this, like we do for the segment data and head.\n loading: seedLoading,\n parallelRoutes,\n navigatedAt,\n }\n\n return cacheNode\n}\n\nfunction spawnNewCacheNode(\n parallelRoutes: Map<string, ChildSegmentMap>,\n isLeafSegment: boolean,\n navigatedAt: number,\n freshness: FreshnessPolicy\n): CacheNode {\n // We should never spawn network requests during hydration. We must treat the\n // initial payload as authoritative, because the initial page load is used\n // as a last-ditch mechanism for recovering the app.\n //\n // This is also an important safety check because if this leaks into the\n // server rendering path (which theoretically it never should because\n // the server payload should be consistent), the server would hang because\n // these promises would never resolve.\n //\n // TODO: There is an existing case where the global \"not found\" boundary\n // triggers this path. But it does render correctly despite that. That's an\n // unusual render path so it's not surprising, but we should look into\n // modeling it in a more consistent way. See also the /_notFound special\n // case in updateCacheNodeOnNavigation.\n const isHydration = freshness === FreshnessPolicy.Hydration\n\n const cacheNode: CacheNode = {\n rsc: !isHydration ? createDeferredRsc() : null,\n prefetchRsc: null,\n head: !isHydration && isLeafSegment ? createDeferredRsc() : null,\n prefetchHead: null,\n loading: !isHydration ? createDeferredRsc<LoadingModuleData>() : null,\n parallelRoutes,\n navigatedAt,\n }\n return cacheNode\n}\n\n// Represents whether the previuos navigation resulted in a route tree mismatch.\n// A mismatch results in a refresh of the page. If there are two successive\n// mismatches, we will fall back to an MPA navigation, to prevent a retry loop.\nlet previousNavigationDidMismatch = false\n\n// Writes a dynamic server response into the tree created by\n// updateCacheNodeOnNavigation. All pending promises that were spawned by the\n// navigation will be resolved, either with dynamic data from the server, or\n// `null` to indicate that the data is missing.\n//\n// A `null` value will trigger a lazy fetch during render, which will then patch\n// up the tree using the same mechanism as the non-PPR implementation\n// (serverPatchReducer).\n//\n// Usually, the server will respond with exactly the subset of data that we're\n// waiting for — everything below the nearest shared layout. But technically,\n// the server can return anything it wants.\n//\n// This does _not_ create a new tree; it modifies the existing one in place.\n// Which means it must follow the Suspense rules of cache safety.\nexport function spawnDynamicRequests(\n task: NavigationTask,\n primaryUrl: URL,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n accumulation: NavigationRequestAccumulation\n): void {\n const dynamicRequestTree = task.dynamicRequestTree\n if (dynamicRequestTree === null) {\n // This navigation was fully cached. There are no dynamic requests to spawn.\n previousNavigationDidMismatch = false\n return\n }\n\n // This is intentionally not an async function to discourage the caller from\n // awaiting the result. Any subsequent async operations spawned by this\n // function should result in a separate navigation task, rather than\n // block the original one.\n //\n // In this function we spawn (but do not await) all the network requests that\n // block the navigation, and collect the promises. The next function,\n // `finishNavigationTask`, can await the promises in any order without\n // accidentally introducing a network waterfall.\n const primaryRequestPromise = fetchMissingDynamicData(\n task,\n dynamicRequestTree,\n primaryUrl,\n nextUrl,\n freshnessPolicy\n )\n\n const separateRefreshUrls = accumulation.separateRefreshUrls\n let refreshRequestPromises: Array<\n ReturnType<typeof fetchMissingDynamicData>\n > | null = null\n if (separateRefreshUrls !== null) {\n // There are multiple URLs that we need to request the data from. This\n // happens when a \"default\" parallel route slot is present in the tree, and\n // its data cannot be fetched from the current route. We need to split the\n // combined dynamic request tree into separate requests per URL.\n\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n\n // Construct a request tree for each additional refresh URL. This will\n // prune away everything except the parts of the tree that match the\n // given refresh URL.\n refreshRequestPromises = []\n const canonicalUrl = createHrefFromUrl(primaryUrl)\n for (const refreshUrl of separateRefreshUrls) {\n if (refreshUrl === canonicalUrl) {\n // We already initiated a request for the this URL, above. Skip it.\n // TODO: This only happens because the main URL is not tracked as\n // part of the separateRefreshURLs set. There's probably a better way\n // to structure this so this case doesn't happen.\n continue\n }\n // TODO: Create a scoped dynamic request tree that omits anything that\n // is not relevant to the given URL. Without doing this, the server may\n // sometimes render more data than necessary; this is not a regression\n // compared to the pre-Segment Cache implementation, though, just an\n // optimization we can make in the future.\n // const scopedDynamicRequestTree = splitTaskByURL(task, refreshUrl)\n const scopedDynamicRequestTree = dynamicRequestTree\n if (scopedDynamicRequestTree !== null) {\n refreshRequestPromises.push(\n fetchMissingDynamicData(\n task,\n scopedDynamicRequestTree,\n new URL(refreshUrl, location.origin),\n // TODO: Just noticed that this should actually the Next-Url at the\n // time the refresh URL was set, not the current Next-Url. Need to\n // start tracking this alongside the refresh URL. In the meantime,\n // if a refresh fails due to a mismatch, it will trigger a\n // hard refresh.\n nextUrl,\n freshnessPolicy\n )\n )\n }\n }\n }\n\n // Further async operations are moved into this separate function to\n // discourage sequential network requests.\n const voidPromise = finishNavigationTask(\n task,\n nextUrl,\n primaryRequestPromise,\n refreshRequestPromises\n )\n // `finishNavigationTask` is responsible for error handling, so we can attach\n // noop callbacks to this promise.\n voidPromise.then(noop, noop)\n}\n\nasync function finishNavigationTask(\n task: NavigationTask,\n nextUrl: string | null,\n primaryRequestPromise: ReturnType<typeof fetchMissingDynamicData>,\n refreshRequestPromises: Array<\n ReturnType<typeof fetchMissingDynamicData>\n > | null\n): Promise<void> {\n // Wait for all the requests to finish, or for the first one to fail.\n let exitStatus = await waitForRequestsToFinish(\n primaryRequestPromise,\n refreshRequestPromises\n )\n\n // Once the all the requests have finished, check the tree for any remaining\n // pending tasks. If anything is still pending, it means the server response\n // does not match the client, and we must refresh to get back to a consistent\n // state. We can skip this step if we already detected a mismatch during the\n // first phase; it doesn't matter in that case because we're going to refresh\n // the whole tree regardless.\n if (exitStatus === NavigationTaskExitStatus.Done) {\n exitStatus = abortRemainingPendingTasks(task, null, null)\n }\n\n switch (exitStatus) {\n case NavigationTaskExitStatus.Done: {\n // The task has completely finished. There's no missing data. Exit.\n previousNavigationDidMismatch = false\n return\n }\n case NavigationTaskExitStatus.SoftRetry: {\n // Some data failed to finish loading. Trigger a soft retry.\n // TODO: As an extra precaution against soft retry loops, consider\n // tracking whether a navigation was itself triggered by a retry. If two\n // happen in a row, fall back to a hard retry.\n const isHardRetry = false\n const primaryRequestResult = await primaryRequestPromise\n dispatchRetryDueToTreeMismatch(\n isHardRetry,\n primaryRequestResult.url,\n nextUrl,\n primaryRequestResult.seed,\n task.route\n )\n return\n }\n case NavigationTaskExitStatus.HardRetry: {\n // Some data failed to finish loading in a non-recoverable way, such as a\n // network error. Trigger an MPA navigation.\n //\n // Hard navigating/refreshing is how we prevent an infinite retry loop\n // caused by a network error — when the network fails, we fall back to the\n // browser behavior for offline navigations. In the future, Next.js may\n // introduce its own custom handling of offline navigations, but that\n // doesn't exist yet.\n const isHardRetry = true\n const primaryRequestResult = await primaryRequestPromise\n dispatchRetryDueToTreeMismatch(\n isHardRetry,\n primaryRequestResult.url,\n nextUrl,\n primaryRequestResult.seed,\n task.route\n )\n return\n }\n default: {\n return exitStatus satisfies never\n }\n }\n}\n\nfunction waitForRequestsToFinish(\n primaryRequestPromise: ReturnType<typeof fetchMissingDynamicData>,\n refreshRequestPromises: Array<\n ReturnType<typeof fetchMissingDynamicData>\n > | null\n) {\n // Custom async combinator logic. This could be replaced by Promise.any but\n // we don't assume that's available.\n //\n // Each promise resolves once the server responsds and the data is written\n // into the CacheNode tree. Resolve the combined promise once all the\n // requests finish.\n //\n // Or, resolve as soon as one of the requests fails, without waiting for the\n // others to finish.\n return new Promise<NavigationTaskExitStatus>((resolve) => {\n const onFulfill = (result: { exitStatus: NavigationTaskExitStatus }) => {\n if (result.exitStatus === NavigationTaskExitStatus.Done) {\n remainingCount--\n if (remainingCount === 0) {\n // All the requests finished successfully.\n resolve(NavigationTaskExitStatus.Done)\n }\n } else {\n // One of the requests failed. Exit with a failing status.\n // NOTE: It's possible for one of the requests to fail with SoftRetry\n // and a later one to fail with HardRetry. In this case, we choose to\n // retry immediately, rather than delay the retry until all the requests\n // finish. If it fails again, we will hard retry on the next\n // attempt, anyway.\n resolve(result.exitStatus)\n }\n }\n // onReject shouldn't ever be called because fetchMissingDynamicData's\n // entire body is wrapped in a try/catch. This is just defensive.\n const onReject = () => resolve(NavigationTaskExitStatus.HardRetry)\n\n // Attach the listeners to the promises.\n let remainingCount = 1\n primaryRequestPromise.then(onFulfill, onReject)\n if (refreshRequestPromises !== null) {\n remainingCount += refreshRequestPromises.length\n refreshRequestPromises.forEach((refreshRequestPromise) =>\n refreshRequestPromise.then(onFulfill, onReject)\n )\n }\n })\n}\n\nfunction dispatchRetryDueToTreeMismatch(\n isHardRetry: boolean,\n retryUrl: URL,\n retryNextUrl: string | null,\n seed: NavigationSeed | null,\n baseTree: FlightRouterState\n) {\n // If this is the second time in a row that a navigation resulted in a\n // mismatch, fall back to a hard (MPA) refresh.\n isHardRetry = isHardRetry || previousNavigationDidMismatch\n previousNavigationDidMismatch = true\n const retryAction: ServerPatchAction = {\n type: ACTION_SERVER_PATCH,\n previousTree: baseTree,\n url: retryUrl,\n nextUrl: retryNextUrl,\n seed,\n mpa: isHardRetry,\n }\n dispatchAppRouterAction(retryAction)\n}\n\nasync function fetchMissingDynamicData(\n task: NavigationTask,\n dynamicRequestTree: FlightRouterState,\n url: URL,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy\n): Promise<{\n exitStatus: NavigationTaskExitStatus\n url: URL\n seed: NavigationSeed | null\n}> {\n try {\n const result = await fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n isHmrRefresh: freshnessPolicy === FreshnessPolicy.HMRRefresh,\n })\n if (typeof result === 'string') {\n // fetchServerResponse will return an href to indicate that the SPA\n // navigation failed. For example, if the server triggered a hard\n // redirect, or the fetch request errored. Initiate an MPA navigation\n // to the given href.\n return {\n exitStatus: NavigationTaskExitStatus.HardRetry,\n url: new URL(result, location.origin),\n seed: null,\n }\n }\n const seed = convertServerPatchToFullTree(\n task.route,\n result.flightData,\n result.renderedSearch\n )\n const didReceiveUnknownParallelRoute = writeDynamicDataIntoNavigationTask(\n task,\n seed.tree,\n seed.data,\n seed.head,\n result.debugInfo\n )\n return {\n exitStatus: didReceiveUnknownParallelRoute\n ? NavigationTaskExitStatus.SoftRetry\n : NavigationTaskExitStatus.Done,\n url: new URL(result.canonicalUrl, location.origin),\n seed,\n }\n } catch {\n // This shouldn't happen because fetchServerResponse's entire body is\n // wrapped in a try/catch. If it does, though, it implies the server failed\n // to respond with any tree at all. So we must fall back to a hard retry.\n return {\n exitStatus: NavigationTaskExitStatus.HardRetry,\n url: url,\n seed: null,\n }\n }\n}\n\nfunction writeDynamicDataIntoNavigationTask(\n task: NavigationTask,\n serverRouterState: FlightRouterState,\n dynamicData: CacheNodeSeedData | null,\n dynamicHead: HeadData,\n debugInfo: Array<any> | null\n): boolean {\n if (task.status === NavigationTaskStatus.Pending && dynamicData !== null) {\n task.status = NavigationTaskStatus.Fulfilled\n finishPendingCacheNode(task.node, dynamicData, dynamicHead, debugInfo)\n }\n\n const taskChildren = task.children\n const serverChildren = serverRouterState[1]\n const dynamicDataChildren = dynamicData !== null ? dynamicData[1] : null\n\n // Detect whether the server sends a parallel route slot that the client\n // doesn't know about.\n let didReceiveUnknownParallelRoute = false\n\n if (taskChildren !== null) {\n for (const parallelRouteKey in serverChildren) {\n const serverRouterStateChild: FlightRouterState =\n serverChildren[parallelRouteKey]\n const dynamicDataChild: CacheNodeSeedData | null | void =\n dynamicDataChildren !== null\n ? dynamicDataChildren[parallelRouteKey]\n : null\n\n const taskChild = taskChildren.get(parallelRouteKey)\n if (taskChild === undefined) {\n // The server sent a child segment that the client doesn't know about.\n //\n // When we receive an unknown parallel route, we must consider it a\n // mismatch. This is unlike the case where the segment itself\n // mismatches, because multiple routes can be active simultaneously.\n // But a given layout should never have a mismatching set of\n // child slots.\n //\n // Theoretically, this should only happen in development during an HMR\n // refresh, because the set of parallel routes for a layout does not\n // change over the lifetime of a build/deployment. In production, we\n // should have already mismatched on either the build id or the segment\n // path. But as an extra precaution, we validate in prod, too.\n didReceiveUnknownParallelRoute = true\n } else {\n const taskSegment = taskChild.route[0]\n if (\n matchSegment(serverRouterStateChild[0], taskSegment) &&\n dynamicDataChild !== null &&\n dynamicDataChild !== undefined\n ) {\n // Found a match for this task. Keep traversing down the task tree.\n const childDidReceiveUnknownParallelRoute =\n writeDynamicDataIntoNavigationTask(\n taskChild,\n serverRouterStateChild,\n dynamicDataChild,\n dynamicHead,\n debugInfo\n )\n if (childDidReceiveUnknownParallelRoute) {\n didReceiveUnknownParallelRoute = true\n }\n }\n }\n }\n }\n\n return didReceiveUnknownParallelRoute\n}\n\nfunction finishPendingCacheNode(\n cacheNode: CacheNode,\n dynamicData: CacheNodeSeedData,\n dynamicHead: HeadData,\n debugInfo: Array<any> | null\n): void {\n // Writes a dynamic response into an existing Cache Node tree. This does _not_\n // create a new tree, it updates the existing tree in-place. So it must follow\n // the Suspense rules of cache safety — it can resolve pending promises, but\n // it cannot overwrite existing data. It can add segments to the tree (because\n // a missing segment will cause the layout router to suspend).\n // but it cannot delete them.\n //\n // We must resolve every promise in the tree, or else it will suspend\n // indefinitely. If we did not receive data for a segment, we will resolve its\n // data promise to `null` to trigger a lazy fetch during render.\n\n // Use the dynamic data from the server to fulfill the deferred RSC promise\n // on the Cache Node.\n const rsc = cacheNode.rsc\n const dynamicSegmentData = dynamicData[0]\n\n if (dynamicSegmentData === null) {\n // This is an empty CacheNode; this particular server request did not\n // render this segment. There may be a separate pending request that will,\n // though, so we won't abort the task until all pending requests finish.\n return\n }\n\n if (rsc === null) {\n // This is a lazy cache node. We can overwrite it. This is only safe\n // because we know that the LayoutRouter suspends if `rsc` is `null`.\n cacheNode.rsc = dynamicSegmentData\n } else if (isDeferredRsc(rsc)) {\n // This is a deferred RSC promise. We can fulfill it with the data we just\n // received from the server. If it was already resolved by a different\n // navigation, then this does nothing because we can't overwrite data.\n rsc.resolve(dynamicSegmentData, debugInfo)\n } else {\n // This is not a deferred RSC promise, nor is it empty, so it must have\n // been populated by a different navigation. We must not overwrite it.\n }\n\n // If we navigated without a prefetch, then `loading` will be a deferred promise too.\n // Fulfill it using the dynamic response so that we can display the loading boundary.\n const loading = cacheNode.loading\n if (isDeferredRsc(loading)) {\n const dynamicLoading = dynamicData[2]\n loading.resolve(dynamicLoading, debugInfo)\n }\n\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved with the dynamic head from\n // the server.\n const head = cacheNode.head\n if (isDeferredRsc(head)) {\n head.resolve(dynamicHead, debugInfo)\n }\n}\n\nfunction abortRemainingPendingTasks(\n task: NavigationTask,\n error: any,\n debugInfo: Array<any> | null\n): NavigationTaskExitStatus {\n let exitStatus\n if (task.status === NavigationTaskStatus.Pending) {\n // The data for this segment is still missing.\n task.status = NavigationTaskStatus.Rejected\n abortPendingCacheNode(task.node, error, debugInfo)\n\n // If the server failed to fulfill the data for this segment, it implies\n // that the route tree received from the server mismatched the tree that\n // was previously prefetched.\n //\n // In an app with fully static routes and no proxy-driven redirects or\n // rewrites, this should never happen, because the route for a URL would\n // always be the same across multiple requests. So, this implies that some\n // runtime routing condition changed, likely in a proxy, without being\n // pushed to the client.\n //\n // When this happens, we treat this the same as a refresh(). The entire\n // tree will be re-rendered from the root.\n if (task.refreshUrl === null) {\n // Trigger a \"soft\" refresh. Essentially the same as calling `refresh()`\n // in a Server Action.\n exitStatus = NavigationTaskExitStatus.SoftRetry\n } else {\n // The mismatch was discovered inside an inactive parallel route. This\n // implies the inactive parallel route is no longer reachable at the URL\n // that originally rendered it. Fall back to an MPA refresh.\n // TODO: An alternative could be to trigger a soft refresh but to _not_\n // re-use the inactive parallel routes this time. Similar to what would\n // happen if were to do a hard refrehs, but without the HTML page.\n exitStatus = NavigationTaskExitStatus.HardRetry\n }\n } else {\n // This segment finished. (An error here is treated as Done because they are\n // surfaced to the application during render.)\n exitStatus = NavigationTaskExitStatus.Done\n }\n\n const taskChildren = task.children\n if (taskChildren !== null) {\n for (const [, taskChild] of taskChildren) {\n const childExitStatus = abortRemainingPendingTasks(\n taskChild,\n error,\n debugInfo\n )\n // Propagate the exit status up the tree. The statuses are ordered by\n // their precedence.\n if (childExitStatus > exitStatus) {\n exitStatus = childExitStatus\n }\n }\n }\n\n return exitStatus\n}\n\nfunction abortPendingCacheNode(\n cacheNode: CacheNode,\n error: any,\n debugInfo: Array<any> | null\n): void {\n const rsc = cacheNode.rsc\n if (isDeferredRsc(rsc)) {\n if (error === null) {\n // This will trigger a lazy fetch during render.\n rsc.resolve(null, debugInfo)\n } else {\n // This will trigger an error during rendering.\n rsc.reject(error, debugInfo)\n }\n }\n\n const loading = cacheNode.loading\n if (isDeferredRsc(loading)) {\n loading.resolve(null, debugInfo)\n }\n\n // Check if this is a leaf segment. If so, it will have a `head` property with\n // a pending promise that needs to be resolved. If an error was provided, we\n // will not resolve it with an error, since this is rendered at the root of\n // the app. We want the segment to error, not the entire app.\n const head = cacheNode.head\n if (isDeferredRsc(head)) {\n head.resolve(null, debugInfo)\n }\n}\n\nconst DEFERRED = Symbol()\n\ntype PendingDeferredRsc<T> = Promise<T> & {\n status: 'pending'\n resolve: (value: T, debugInfo: Array<any> | null) => void\n reject: (error: any, debugInfo: Array<any> | null) => void\n tag: Symbol\n _debugInfo: Array<any>\n}\n\ntype FulfilledDeferredRsc<T> = Promise<T> & {\n status: 'fulfilled'\n value: T\n resolve: (value: T, debugInfo: Array<any> | null) => void\n reject: (error: any, debugInfo: Array<any> | null) => void\n tag: Symbol\n _debugInfo: Array<any>\n}\n\ntype RejectedDeferredRsc<T> = Promise<T> & {\n status: 'rejected'\n reason: any\n resolve: (value: T, debugInfo: Array<any> | null) => void\n reject: (error: any, debugInfo: Array<any> | null) => void\n tag: Symbol\n _debugInfo: Array<any>\n}\n\ntype DeferredRsc<T extends React.ReactNode = React.ReactNode> =\n | PendingDeferredRsc<T>\n | FulfilledDeferredRsc<T>\n | RejectedDeferredRsc<T>\n\n// This type exists to distinguish a DeferredRsc from a Flight promise. It's a\n// compromise to avoid adding an extra field on every Cache Node, which would be\n// awkward because the pre-PPR parts of codebase would need to account for it,\n// too. We can remove it once type Cache Node type is more settled.\nexport function isDeferredRsc(value: any): value is DeferredRsc {\n return value && typeof value === 'object' && value.tag === DEFERRED\n}\n\nfunction createDeferredRsc<\n T extends React.ReactNode = React.ReactNode,\n>(): PendingDeferredRsc<T> {\n // Create an unresolved promise that represents data derived from a Flight\n // response. The promise will be resolved later as soon as we start receiving\n // data from the server, i.e. as soon as the Flight client decodes and returns\n // the top-level response object.\n\n // The `_debugInfo` field contains profiling information. Promises that are\n // created by Flight already have this info added by React; for any derived\n // promise created by the router, we need to transfer the Flight debug info\n // onto the derived promise.\n //\n // The debug info represents the latency between the start of the navigation\n // and the start of rendering. (It does not represent the time it takes for\n // whole stream to finish.)\n const debugInfo: Array<any> = []\n\n let resolve: any\n let reject: any\n const pendingRsc = new Promise<T>((res, rej) => {\n resolve = res\n reject = rej\n }) as PendingDeferredRsc<T>\n pendingRsc.status = 'pending'\n pendingRsc.resolve = (value: T, responseDebugInfo: Array<any> | null) => {\n if (pendingRsc.status === 'pending') {\n const fulfilledRsc: FulfilledDeferredRsc<T> = pendingRsc as any\n fulfilledRsc.status = 'fulfilled'\n fulfilledRsc.value = value\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo)\n }\n resolve(value)\n }\n }\n pendingRsc.reject = (error: any, responseDebugInfo: Array<any> | null) => {\n if (pendingRsc.status === 'pending') {\n const rejectedRsc: RejectedDeferredRsc<T> = pendingRsc as any\n rejectedRsc.status = 'rejected'\n rejectedRsc.reason = error\n if (responseDebugInfo !== null) {\n // Transfer the debug info to the derived promise.\n debugInfo.push.apply(debugInfo, responseDebugInfo)\n }\n reject(error)\n }\n }\n pendingRsc.tag = DEFERRED\n pendingRsc._debugInfo = debugInfo\n\n return pendingRsc\n}\n"],"names":["FreshnessPolicy","createInitialCacheNodeForHydration","isDeferredRsc","spawnDynamicRequests","startPPRNavigation","noop","navigatedAt","initialTree","seedData","seedHead","accumulation","scrollableSegments","separateRefreshUrls","task","createCacheNodeOnNavigation","undefined","node","oldUrl","oldCacheNode","oldRouterState","newRouterState","freshness","prefetchData","prefetchHead","isPrefetchHeadPartial","isSamePageNavigation","didFindRootLayout","parentNeedsDynamicRequest","parentRefreshUrl","updateCacheNodeOnNavigation","parentSegmentPath","parentParallelRouteKey","oldSegment","newSegment","matchSegment","isNavigatingToNewRootLayout","NOT_FOUND_SEGMENT_KEY","segmentPath","concat","newRouterStateChildren","oldRouterStateChildren","seedDataChildren","prefetchDataChildren","isRootLayout","childDidFindRootLayout","oldParallelRoutes","parallelRoutes","shouldDropSiblingCaches","shouldRefreshDynamicData","newParallelRoutes","Map","isLeafSegment","Object","keys","length","newCacheNode","needsDynamicRequest","dropPrefetchRsc","reuseDynamicCacheNode","seedRsc","seedLoading","isSeedRscPartial","isSeedHeadPartial","readCacheNodeFromSeedData","prefetchRsc","prefetchLoading","isPrefetchRSCPartial","spawnNewCacheNode","href","refreshUrl","accumulateRefreshUrl","patchedRouterStateChildren","taskChildren","childNeedsDynamicRequest","dynamicRequestTreeChildren","parallelRouteKey","newRouterStateChild","oldRouterStateChild","oldSegmentMapChild","get","seedDataChild","prefetchDataChild","newSegmentChild","seedHeadChild","prefetchHeadChild","isPrefetchHeadPartialChild","DEFAULT_SEGMENT_KEY","reuseActiveSegmentInDefaultSlot","newSegmentKeyChild","createRouterCacheKey","oldCacheNodeChild","taskChild","set","newCacheNodeChild","newSegmentMapChild","taskChildRoute","route","dynamicRequestTreeChild","dynamicRequestTree","status","patchRouterStateWithNewChildren","createDynamicRequestTree","children","DYNAMIC_STALETIME_MS","oldRsc","rsc","oldRscDidResolve","push","baseRouterState","newChildren","clone","Set","add","reusedRouterState","oldRefreshMarker","createHrefFromUrl","existingCacheNode","cacheNode","head","loading","isPageSegment","createDeferredRsc","isHydration","previousNavigationDidMismatch","primaryUrl","nextUrl","freshnessPolicy","primaryRequestPromise","fetchMissingDynamicData","refreshRequestPromises","canonicalUrl","scopedDynamicRequestTree","URL","location","origin","voidPromise","finishNavigationTask","then","exitStatus","waitForRequestsToFinish","abortRemainingPendingTasks","isHardRetry","primaryRequestResult","dispatchRetryDueToTreeMismatch","url","seed","Promise","resolve","onFulfill","result","remainingCount","onReject","forEach","refreshRequestPromise","retryUrl","retryNextUrl","baseTree","retryAction","type","ACTION_SERVER_PATCH","previousTree","mpa","dispatchAppRouterAction","fetchServerResponse","flightRouterState","isHmrRefresh","convertServerPatchToFullTree","flightData","renderedSearch","didReceiveUnknownParallelRoute","writeDynamicDataIntoNavigationTask","tree","data","debugInfo","serverRouterState","dynamicData","dynamicHead","finishPendingCacheNode","serverChildren","dynamicDataChildren","serverRouterStateChild","dynamicDataChild","taskSegment","childDidReceiveUnknownParallelRoute","dynamicSegmentData","dynamicLoading","error","abortPendingCacheNode","childExitStatus","reject","DEFERRED","Symbol","value","tag","pendingRsc","res","rej","responseDebugInfo","fulfilledRsc","apply","rejectedRsc","reason","_debugInfo"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3918, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/types.ts"],"sourcesContent":["/**\n * Shared types and constants for the Segment Cache.\n */\n\nexport const enum NavigationResultTag {\n MPA,\n Success,\n NoOp,\n Async,\n}\n\n/**\n * The priority of the prefetch task. Higher numbers are higher priority.\n */\nexport const enum PrefetchPriority {\n /**\n * Assigned to the most recently hovered/touched link. Special network\n * bandwidth is reserved for this task only. There's only ever one Intent-\n * priority task at a time; when a new Intent task is scheduled, the previous\n * one is bumped down to Default.\n */\n Intent = 2,\n /**\n * The default priority for prefetch tasks.\n */\n Default = 1,\n /**\n * Assigned to tasks when they spawn non-blocking background work, like\n * revalidating a partially cached entry to see if more data is available.\n */\n Background = 0,\n}\n\nexport const enum FetchStrategy {\n // Deliberately ordered so we can easily compare two segments\n // and determine if one segment is \"more specific\" than another\n // (i.e. if it's likely that it contains more data)\n LoadingBoundary = 0,\n PPR = 1,\n PPRRuntime = 2,\n Full = 3,\n}\n\n/**\n * A subset of fetch strategies used for prefetch tasks.\n * A prefetch task can't know if it should use `PPR` or `LoadingBoundary`\n * until we complete the initial tree prefetch request, so we use `PPR` to signal both cases\n * and adjust it based on the route when actually fetching.\n * */\nexport type PrefetchTaskFetchStrategy =\n | FetchStrategy.PPR\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full\n"],"names":["FetchStrategy","NavigationResultTag","PrefetchPriority"],"mappings":"AAAA;;CAEC;;;;;;;;;;;;;;;IA+BiBA,aAAa,EAAA;eAAbA;;IA7BAC,mBAAmB,EAAA;eAAnBA;;IAUAC,gBAAgB,EAAA;eAAhBA;;;AAVX,IAAWD,sBAAAA,WAAAA,GAAAA,SAAAA,mBAAAA;;;;;WAAAA;;AAUX,IAAWC,mBAAAA,WAAAA,GAAAA,SAAAA,gBAAAA;IAChB;;;;;GAKC,GAAA,gBAAA,CAAA,gBAAA,CAAA,SAAA,GAAA,EAAA,GAAA;IAED;;GAEC,GAAA,gBAAA,CAAA,gBAAA,CAAA,UAAA,GAAA,EAAA,GAAA;IAED;;;GAGC,GAAA,gBAAA,CAAA,gBAAA,CAAA,aAAA,GAAA,EAAA,GAAA;WAfeA;;AAmBX,IAAWF,gBAAAA,WAAAA,GAAAA,SAAAA,aAAAA;IAChB,6DAA6D;IAC7D,+DAA+D;IAC/D,mDAAmD;;;;;WAHnCA","ignoreList":[0]}}, - {"offset": {"line": 3989, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/lru.ts"],"sourcesContent":["import { deleteMapEntry } from './cache-map'\nimport type { UnknownMapEntry } from './cache-map'\n\n// We use an LRU for memory management. We must update this whenever we add or\n// remove a new cache entry, or when an entry changes size.\n\nlet head: UnknownMapEntry | null = null\nlet didScheduleCleanup: boolean = false\nlet lruSize: number = 0\n\n// TODO: I chose the max size somewhat arbitrarily. Consider setting this based\n// on navigator.deviceMemory, or some other heuristic. We should make this\n// customizable via the Next.js config, too.\nconst maxLruSize = 50 * 1024 * 1024 // 50 MB\n\nexport function lruPut(node: UnknownMapEntry) {\n if (head === node) {\n // Already at the head\n return\n }\n const prev = node.prev\n const next = node.next\n if (next === null || prev === null) {\n // This is an insertion\n lruSize += node.size\n // Whenever we add an entry, we need to check if we've exceeded the\n // max size. We don't evict entries immediately; they're evicted later in\n // an asynchronous task.\n ensureCleanupIsScheduled()\n } else {\n // This is a move. Remove from its current position.\n prev.next = next\n next.prev = prev\n }\n\n // Move to the front of the list\n if (head === null) {\n // This is the first entry\n node.prev = node\n node.next = node\n } else {\n // Add to the front of the list\n const tail = head.prev\n node.prev = tail\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n tail.next = node\n }\n node.next = head\n head.prev = node\n }\n head = node\n}\n\nexport function updateLruSize(node: UnknownMapEntry, newNodeSize: number) {\n // This is a separate function from `put` so that we can resize the entry\n // regardless of whether it's currently being tracked by the LRU.\n const prevNodeSize = node.size\n node.size = newNodeSize\n if (node.next === null) {\n // This entry is not currently being tracked by the LRU.\n return\n }\n // Update the total LRU size\n lruSize = lruSize - prevNodeSize + newNodeSize\n ensureCleanupIsScheduled()\n}\n\nexport function deleteFromLru(deleted: UnknownMapEntry) {\n const next = deleted.next\n const prev = deleted.prev\n if (next !== null && prev !== null) {\n lruSize -= deleted.size\n\n deleted.next = null\n deleted.prev = null\n\n // Remove from the list\n if (head === deleted) {\n // Update the head\n if (next === head) {\n // This was the last entry\n head = null\n } else {\n head = next\n prev.next = next\n next.prev = prev\n }\n } else {\n prev.next = next\n next.prev = prev\n }\n } else {\n // Already deleted\n }\n}\n\nfunction ensureCleanupIsScheduled() {\n if (didScheduleCleanup || lruSize <= maxLruSize) {\n return\n }\n didScheduleCleanup = true\n requestCleanupCallback(cleanup)\n}\n\nfunction cleanup() {\n didScheduleCleanup = false\n\n // Evict entries until we're at 90% capacity. We can assume this won't\n // infinite loop because even if `maxLruSize` were 0, eventually\n // `deleteFromLru` sets `head` to `null` when we run out entries.\n const ninetyPercentMax = maxLruSize * 0.9\n while (lruSize > ninetyPercentMax && head !== null) {\n const tail = head.prev\n // In practice, this is never null, but that isn't encoded in the type\n if (tail !== null) {\n // Delete the entry from the map. In turn, this will remove it from\n // the LRU.\n deleteMapEntry(tail)\n }\n }\n}\n\nconst requestCleanupCallback =\n typeof requestIdleCallback === 'function'\n ? requestIdleCallback\n : (cb: () => void) => setTimeout(cb, 0)\n"],"names":["deleteFromLru","lruPut","updateLruSize","head","didScheduleCleanup","lruSize","maxLruSize","node","prev","next","size","ensureCleanupIsScheduled","tail","newNodeSize","prevNodeSize","deleted","requestCleanupCallback","cleanup","ninetyPercentMax","deleteMapEntry","requestIdleCallback","cb","setTimeout"],"mappings":";;;;;;;;;;;;;;;IAoEgBA,aAAa,EAAA;eAAbA;;IArDAC,MAAM,EAAA;eAANA;;IAuCAC,aAAa,EAAA;eAAbA;;;0BAtDe;AAG/B,8EAA8E;AAC9E,2DAA2D;AAE3D,IAAIC,OAA+B;AACnC,IAAIC,qBAA8B;AAClC,IAAIC,UAAkB;AAEtB,+EAA+E;AAC/E,0EAA0E;AAC1E,4CAA4C;AAC5C,MAAMC,aAAa,KAAK,OAAO,KAAK,QAAQ;;AAErC,SAASL,OAAOM,IAAqB;IAC1C,IAAIJ,SAASI,MAAM;QACjB,sBAAsB;QACtB;IACF;IACA,MAAMC,OAAOD,KAAKC,IAAI;IACtB,MAAMC,OAAOF,KAAKE,IAAI;IACtB,IAAIA,SAAS,QAAQD,SAAS,MAAM;QAClC,uBAAuB;QACvBH,WAAWE,KAAKG,IAAI;QACpB,mEAAmE;QACnE,yEAAyE;QACzE,wBAAwB;QACxBC;IACF,OAAO;QACL,oDAAoD;QACpDH,KAAKC,IAAI,GAAGA;QACZA,KAAKD,IAAI,GAAGA;IACd;IAEA,gCAAgC;IAChC,IAAIL,SAAS,MAAM;QACjB,0BAA0B;QAC1BI,KAAKC,IAAI,GAAGD;QACZA,KAAKE,IAAI,GAAGF;IACd,OAAO;QACL,+BAA+B;QAC/B,MAAMK,OAAOT,KAAKK,IAAI;QACtBD,KAAKC,IAAI,GAAGI;QACZ,sEAAsE;QACtE,IAAIA,SAAS,MAAM;YACjBA,KAAKH,IAAI,GAAGF;QACd;QACAA,KAAKE,IAAI,GAAGN;QACZA,KAAKK,IAAI,GAAGD;IACd;IACAJ,OAAOI;AACT;AAEO,SAASL,cAAcK,IAAqB,EAAEM,WAAmB;IACtE,yEAAyE;IACzE,iEAAiE;IACjE,MAAMC,eAAeP,KAAKG,IAAI;IAC9BH,KAAKG,IAAI,GAAGG;IACZ,IAAIN,KAAKE,IAAI,KAAK,MAAM;QACtB,wDAAwD;QACxD;IACF;IACA,4BAA4B;IAC5BJ,UAAUA,UAAUS,eAAeD;IACnCF;AACF;AAEO,SAASX,cAAce,OAAwB;IACpD,MAAMN,OAAOM,QAAQN,IAAI;IACzB,MAAMD,OAAOO,QAAQP,IAAI;IACzB,IAAIC,SAAS,QAAQD,SAAS,MAAM;QAClCH,WAAWU,QAAQL,IAAI;QAEvBK,QAAQN,IAAI,GAAG;QACfM,QAAQP,IAAI,GAAG;QAEf,uBAAuB;QACvB,IAAIL,SAASY,SAAS;YACpB,kBAAkB;YAClB,IAAIN,SAASN,MAAM;gBACjB,0BAA0B;gBAC1BA,OAAO;YACT,OAAO;gBACLA,OAAOM;gBACPD,KAAKC,IAAI,GAAGA;gBACZA,KAAKD,IAAI,GAAGA;YACd;QACF,OAAO;YACLA,KAAKC,IAAI,GAAGA;YACZA,KAAKD,IAAI,GAAGA;QACd;IACF,OAAO;IACL,kBAAkB;IACpB;AACF;AAEA,SAASG;IACP,IAAIP,sBAAsBC,WAAWC,YAAY;QAC/C;IACF;IACAF,qBAAqB;IACrBY,uBAAuBC;AACzB;AAEA,SAASA;IACPb,qBAAqB;IAErB,sEAAsE;IACtE,gEAAgE;IAChE,iEAAiE;IACjE,MAAMc,mBAAmBZ,aAAa;IACtC,MAAOD,UAAUa,oBAAoBf,SAAS,KAAM;QAClD,MAAMS,OAAOT,KAAKK,IAAI;QACtB,sEAAsE;QACtE,IAAII,SAAS,MAAM;YACjB,mEAAmE;YACnE,WAAW;YACXO,CAAAA,GAAAA,UAAAA,cAAc,EAACP;QACjB;IACF;AACF;AAEA,MAAMI,yBACJ,OAAOI,wBAAwB,aAC3BA,sBACA,CAACC,KAAmBC,WAAWD,IAAI","ignoreList":[0]}}, - {"offset": {"line": 4136, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache-map.ts"],"sourcesContent":["import type { VaryPath } from './vary-path'\nimport { lruPut, updateLruSize, deleteFromLru } from './lru'\n\n/**\n * A specialized data type for storing multi-key cache entries.\n *\n * The basic structure is a map whose keys are tuples, called the keypath.\n * When querying the cache, keypaths are compared per-element.\n *\n * Example:\n * set(map, ['https://localhost', 'foo/bar/baz'], 'yay');\n * get(map, ['https://localhost', 'foo/bar/baz']) -> 'yay'\n *\n * NOTE: Array syntax is used in these examples for illustration purposes, but\n * in reality the paths are lists.\n * \n * The parts of the keypath represent the different inputs that contribute\n * to the entry value. To illustrate, if you were to use this data type to store\n * HTTP responses, the keypath would include the URL and everything listed by\n * the Vary header.\n * \n * See vary-path.ts for more details.\n *\n * The order of elements in a keypath must be consistent between lookups to\n * be considered the same, but besides that, the order of the keys is not\n * semantically meaningful.\n *\n * Keypaths may include a special kind of key called Fallback. When an entry is\n * stored with Fallback as part of its keypath, it means that the entry does not\n * vary by that key. When querying the cache, if an exact match is not found for\n * a keypath, the cache will check for a Fallback match instead. Each element of\n * the keypath may have a Fallback, so retrieval is an O(n ^ 2) operation, but\n * it's expected that keypaths are relatively short.\n *\n * Example:\n * set(cacheMap, ['store', 'product', 1], PRODUCT_PAGE_1);\n * set(cacheMap, ['store', 'product', Fallback], GENERIC_PRODUCT_PAGE);\n *\n * // Exact match\n * get(cacheMap, ['store', 'product', 1]) -> PRODUCT_PAGE_1\n *\n * // Fallback match\n * get(cacheMap, ['store', 'product', 2]) -> GENERIC_PRODUCT_PAGE\n *\n * Because we have the Fallback mechanism, we can impose a constraint that\n * regular JS maps do not have: a value cannot be stored at multiple keypaths\n * simultaneously. These cases should be expressed with Fallback keys instead.\n *\n * Additionally, because values only exist at a single keypath at a time, we\n * can optimize successive lookups by caching the internal map entry on the\n * value itself, using the `ref` field. This is especially useful because it\n * lets us skip the O(n ^ 2) lookup that occurs when Fallback entries\n * are present.\n *\n\n * How to decide if stuff belongs in here, or in cache.ts?\n * -------------------------------------------------------\n * \n * Anything to do with retrival, lifetimes, or eviction needs to go in this\n * module because it affects the fallback algorithm. For example, when\n * performing a lookup, if an entry is stale, it needs to be treated as\n * semantically equivalent to if the entry was not present at all.\n * \n * If there's logic that's not related to the fallback algorithm, though, we\n * should prefer to put it in cache.ts.\n */\n\n// The protocol that values must implement. In practice, the only two types that\n// we ever actually deal with in this module are RouteCacheEntry and\n// SegmentCacheEntry; this is just to keep track of the coupling so we don't\n// leak concerns between the modules unnecessarily.\nexport interface MapValue {\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\n/**\n * Represents a node in the cache map and LRU.\n * MapEntry<V> structurally satisfies this interface for any V extends MapValue.\n *\n * The LRU can contain entries of different value types\n * (e.g., both RouteCacheEntry and SegmentCacheEntry). This interface captures\n * the common structure needed for cache map and LRU operations without\n * requiring knowledge of the specific value type.\n */\nexport interface MapEntry<V extends MapValue> {\n // Cache map structure fields\n parent: MapEntry<V> | null\n key: unknown\n map: Map<unknown, MapEntry<V>> | null\n value: V | null\n\n // LRU linked list fields\n prev: MapEntry<V> | null\n next: MapEntry<V> | null\n size: number\n}\n\n/**\n * A looser type for MapEntry\n * This allows the LRU to work with entries of different\n * value types while still providing type safety.\n *\n * The `map` field lets Map<unknown, MapEntry<V>> be assignable to this\n * type since we're only reading from the map, not inserting into it.\n */\nexport type UnknownMapEntry = {\n parent: UnknownMapEntry | null\n key: unknown\n map: Pick<Map<unknown, UnknownMapEntry>, 'get' | 'delete' | 'size'> | null\n value: MapValue | null\n\n prev: UnknownMapEntry | null\n next: UnknownMapEntry | null\n size: number\n}\n\n// The CacheMap type is just the root entry of the map.\nexport type CacheMap<V extends MapValue> = MapEntry<V>\n\nexport type FallbackType = { __brand: 'Fallback' }\nexport const Fallback = {} as FallbackType\n\n// This is a special internal key that is used for \"revalidation\" entries. It's\n// an implementation detail that shouldn't leak outside of this module.\nconst Revalidation = {}\n\nexport function createCacheMap<V extends MapValue>(): CacheMap<V> {\n const cacheMap: MapEntry<V> = {\n parent: null,\n key: null,\n value: null,\n map: null,\n\n // LRU-related fields\n prev: null,\n next: null,\n size: 0,\n }\n return cacheMap\n}\n\nfunction getOrInitialize<V extends MapValue>(\n cacheMap: CacheMap<V>,\n keys: VaryPath,\n isRevalidation: boolean\n): MapEntry<V> {\n // Go through each level of keys until we find the entry that matches, or\n // create a new entry if one doesn't exist.\n //\n // This function will only return entries that match the keypath _exactly_.\n // Unlike getWithFallback, it will not access fallback entries unless it's\n // explicitly part of the keypath.\n let entry = cacheMap\n let remainingKeys: VaryPath | null = keys\n let key: unknown | null = null\n while (true) {\n const previousKey = key\n if (remainingKeys !== null) {\n key = remainingKeys.value\n remainingKeys = remainingKeys.parent\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath. The \"normal\" entry is its parent.\n\n // However, if the parent entry is currently empty, we don't need to store\n // this as a revalidation entry. Just insert the revalidation into the\n // normal slot.\n if (entry.value === null) {\n return entry\n }\n\n // Otheriwse, create a child entry.\n key = Revalidation\n } else {\n // There are no more keys. This is the terminal entry.\n break\n }\n\n let map = entry.map\n if (map !== null) {\n const existingEntry = map.get(key)\n if (existingEntry !== undefined) {\n // Found a match. Keep going.\n entry = existingEntry\n continue\n }\n } else {\n map = new Map()\n entry.map = map\n }\n // No entry exists yet at this level. Create a new one.\n const newEntry: MapEntry<V> = {\n parent: entry,\n key,\n value: null,\n map: null,\n\n // LRU-related fields\n prev: null,\n next: null,\n size: 0,\n }\n map.set(key, newEntry)\n entry = newEntry\n }\n\n return entry\n}\n\nexport function getFromCacheMap<V extends MapValue>(\n now: number,\n currentCacheVersion: number,\n rootEntry: CacheMap<V>,\n keys: VaryPath,\n isRevalidation: boolean\n): V | null {\n const entry = getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n rootEntry,\n keys,\n isRevalidation,\n 0\n )\n if (entry === null || entry.value === null) {\n return null\n }\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry)\n return entry.value\n}\n\nexport function isValueExpired(\n now: number,\n currentCacheVersion: number,\n value: MapValue\n): boolean {\n return value.staleAt <= now || value.version < currentCacheVersion\n}\n\nfunction lazilyEvictIfNeeded<V extends MapValue>(\n now: number,\n currentCacheVersion: number,\n entry: MapEntry<V>\n) {\n // We have a matching entry, but before we can return it, we need to check if\n // it's still fresh. Otherwise it should be treated the same as a cache miss.\n\n if (entry.value === null) {\n // This entry has no value, so there's nothing to evict.\n return entry\n }\n\n const value = entry.value\n if (isValueExpired(now, currentCacheVersion, value)) {\n // The value expired. Lazily evict it from the cache, and return null. This\n // is conceptually the same as a cache miss.\n deleteMapEntry(entry)\n return null\n }\n\n // The matched entry has not expired. Return it.\n return entry\n}\n\nfunction getEntryWithFallbackImpl<V extends MapValue>(\n now: number,\n currentCacheVersion: number,\n entry: MapEntry<V>,\n keys: VaryPath | null,\n isRevalidation: boolean,\n previousKey: unknown | null\n): MapEntry<V> | null {\n // This is similar to getExactEntry, but if an exact match is not found for\n // a key, it will return the fallback entry instead. This is recursive at\n // every level, e.g. an entry with keypath [a, Fallback, c, Fallback] is\n // valid match for [a, b, c, d].\n //\n // It will return the most specific match available.\n let key\n let remainingKeys: VaryPath | null\n if (keys !== null) {\n key = keys.value\n remainingKeys = keys.parent\n } else if (isRevalidation && previousKey !== Revalidation) {\n // During a revalidation, we append an internal \"Revalidation\" key to\n // the end of the keypath.\n key = Revalidation\n remainingKeys = null\n } else {\n // There are no more keys. This is the terminal entry.\n\n // TODO: When performing a lookup during a navigation, as opposed to a\n // prefetch, we may want to skip entries that are Pending if there's also\n // a Fulfilled fallback entry. Tricky to say, though, since if it's\n // already pending, it's likely to stream in soon. Maybe we could do this\n // just on slow connections and offline mode.\n\n return lazilyEvictIfNeeded(now, currentCacheVersion, entry)\n }\n const map = entry.map\n if (map !== null) {\n const existingEntry = map.get(key)\n if (existingEntry !== undefined) {\n // Found an exact match for this key. Keep searching.\n const result = getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n existingEntry,\n remainingKeys,\n isRevalidation,\n key\n )\n if (result !== null) {\n return result\n }\n }\n // No match found for this key. Check if there's a fallback.\n const fallbackEntry = map.get(Fallback)\n if (fallbackEntry !== undefined) {\n // Found a fallback for this key. Keep searching.\n return getEntryWithFallbackImpl(\n now,\n currentCacheVersion,\n fallbackEntry,\n remainingKeys,\n isRevalidation,\n key\n )\n }\n }\n return null\n}\n\nexport function setInCacheMap<V extends MapValue>(\n cacheMap: CacheMap<V>,\n keys: VaryPath,\n value: V,\n isRevalidation: boolean\n): void {\n // Add a value to the map at the given keypath. If the value is already\n // part of the map, it's removed from its previous keypath. (NOTE: This is\n // unlike a regular JS map, but the behavior is intentional.)\n const entry = getOrInitialize(cacheMap, keys, isRevalidation)\n setMapEntryValue(entry, value)\n\n // This is an LRU access. Move the entry to the front of the list.\n lruPut(entry)\n updateLruSize(entry, value.size)\n}\n\nfunction setMapEntryValue(entry: UnknownMapEntry, value: MapValue): void {\n if (entry.value !== null) {\n // There's already a value at the given keypath. Disconnect the old value\n // from the map. We're not calling `deleteMapEntry` here because the\n // entry itself is still in the map. We just want to overwrite its value.\n dropRef(entry.value)\n entry.value = null\n }\n\n // This value may already be in the map at a different keypath.\n // Grab a reference before we overwrite it.\n const oldEntry = value.ref\n\n entry.value = value\n value.ref = entry\n\n updateLruSize(entry, value.size)\n\n if (oldEntry !== null && oldEntry !== entry && oldEntry.value === value) {\n // This value is already in the map at a different keypath in the map.\n // Values only exist at a single keypath at a time. Remove it from the\n // previous keypath.\n //\n // Note that only the internal map entry is garbage collected; we don't\n // call `dropRef` here because it's still in the map, just\n // at a new keypath (the one we just set, above).\n deleteMapEntry(oldEntry)\n }\n}\n\nexport function deleteFromCacheMap(value: MapValue): void {\n const entry = value.ref\n if (entry === null) {\n // This value is not a member of any map.\n return\n }\n\n dropRef(value)\n deleteMapEntry(entry)\n}\n\nfunction dropRef(value: MapValue): void {\n // Drop the value from the map by setting its `ref` backpointer to\n // null. This is a separate operation from `deleteMapEntry` because when\n // re-keying a value we need to be able to delete the old, internal map\n // entry without garbage collecting the value itself.\n value.ref = null\n}\n\nexport function deleteMapEntry(entry: UnknownMapEntry): void {\n // Delete the entry from the cache.\n entry.value = null\n\n deleteFromLru(entry)\n\n // Check if we can garbage collect the entry.\n const map = entry.map\n if (map === null) {\n // Since this entry has no value, and also no child entries, we can\n // garbage collect it. Remove it from its parent, and keep garbage\n // collecting the parents until we reach a non-empty entry.\n let parent = entry.parent\n let key = entry.key\n while (parent !== null) {\n const parentMap = parent.map\n if (parentMap !== null) {\n parentMap.delete(key)\n if (parentMap.size === 0) {\n // We just removed the last entry in the parent map.\n parent.map = null\n if (parent.value === null) {\n // The parent node has no child entries, nor does it have a value\n // on itself. It can be garbage collected. Keep going.\n key = parent.key\n parent = parent.parent\n continue\n }\n }\n }\n // The parent is not empty. Stop garbage collecting.\n break\n }\n } else {\n // Check if there's a revalidating entry. If so, promote it to a\n // \"normal\" entry, since the normal one was just deleted.\n const revalidatingEntry = map.get(Revalidation)\n if (revalidatingEntry !== undefined && revalidatingEntry.value !== null) {\n setMapEntryValue(entry, revalidatingEntry.value)\n }\n }\n}\n\nexport function setSizeInCacheMap<V extends MapValue>(\n value: V,\n size: number\n): void {\n const entry = value.ref\n if (entry === null) {\n // This value is not a member of any map.\n return\n }\n // Except during initialization (when the size is set to 0), this is the only\n // place the `size` field should be updated, to ensure it's in sync with the\n // the LRU.\n value.size = size\n updateLruSize(entry, size)\n}\n"],"names":["Fallback","createCacheMap","deleteFromCacheMap","deleteMapEntry","getFromCacheMap","isValueExpired","setInCacheMap","setSizeInCacheMap","Revalidation","cacheMap","parent","key","value","map","prev","next","size","getOrInitialize","keys","isRevalidation","entry","remainingKeys","previousKey","existingEntry","get","undefined","Map","newEntry","set","now","currentCacheVersion","rootEntry","getEntryWithFallbackImpl","lruPut","staleAt","version","lazilyEvictIfNeeded","result","fallbackEntry","setMapEntryValue","updateLruSize","dropRef","oldEntry","ref","deleteFromLru","parentMap","delete","revalidatingEntry"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4443, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/vary-path.ts"],"sourcesContent":["import { FetchStrategy } from './types'\nimport type {\n NormalizedPathname,\n NormalizedSearch,\n NormalizedNextUrl,\n} from './cache-key'\nimport type { RouteTree } from './cache'\nimport { Fallback, type FallbackType } from './cache-map'\nimport { HEAD_REQUEST_KEY } from '../../../shared/lib/segment-cache/segment-value-encoding'\n\ntype Opaque<T, K> = T & { __brand: K }\n\n/**\n * A linked-list of all the params (or other param-like) inputs that a cache\n * entry may vary by. This is used by the CacheMap module to reuse cache entries\n * across different param values. If a param has a value of Fallback, it means\n * the cache entry is reusable for all possible values of that param. See\n * cache-map.ts for details.\n *\n * A segment's vary path is a pure function of a segment's position in a\n * particular route tree and the (post-rewrite) URL that is being queried. More\n * concretely, successive queries of the cache for the same segment always use\n * the same vary path.\n *\n * A route's vary path is simpler: it's comprised of the pathname, search\n * string, and Next-URL header.\n */\nexport type VaryPath = {\n value: string | null | FallbackType\n parent: VaryPath | null\n}\n\n// Because it's so important for vary paths to line up across cache accesses,\n// we use opaque type aliases to ensure these are only created within\n// this module.\n\n// requestKey -> searchParams -> nextUrl\nexport type RouteVaryPath = Opaque<\n {\n value: NormalizedPathname\n parent: {\n value: NormalizedSearch\n parent: {\n value: NormalizedNextUrl | null | FallbackType\n parent: null\n }\n }\n },\n 'RouteVaryPath'\n>\n\n// requestKey -> pathParams\nexport type LayoutVaryPath = Opaque<\n {\n value: string\n parent: PartialSegmentVaryPath | null\n },\n 'LayoutVaryPath'\n>\n\n// requestKey -> searchParams -> pathParams\nexport type PageVaryPath = Opaque<\n {\n value: string\n parent: {\n value: NormalizedSearch | FallbackType\n parent: PartialSegmentVaryPath | null\n }\n },\n 'PageVaryPath'\n>\n\nexport type SegmentVaryPath = LayoutVaryPath | PageVaryPath\n\n// Intermediate type used when building a vary path during a recursive traversal\n// of the route tree.\nexport type PartialSegmentVaryPath = Opaque<VaryPath, 'PartialSegmentVaryPath'>\n\nexport function getRouteVaryPath(\n pathname: NormalizedPathname,\n search: NormalizedSearch,\n nextUrl: NormalizedNextUrl | null\n): RouteVaryPath {\n // requestKey -> searchParams -> nextUrl\n const varyPath: VaryPath = {\n value: pathname,\n parent: {\n value: search,\n parent: {\n value: nextUrl,\n parent: null,\n },\n },\n }\n return varyPath as RouteVaryPath\n}\n\nexport function getFulfilledRouteVaryPath(\n pathname: NormalizedPathname,\n search: NormalizedSearch,\n nextUrl: NormalizedNextUrl | null,\n couldBeIntercepted: boolean\n): RouteVaryPath {\n // This is called when a route's data is fulfilled. The cache entry will be\n // re-keyed based on which inputs the response varies by.\n // requestKey -> searchParams -> nextUrl\n const varyPath: VaryPath = {\n value: pathname,\n parent: {\n value: search,\n parent: {\n value: couldBeIntercepted ? nextUrl : Fallback,\n parent: null,\n },\n },\n }\n return varyPath as RouteVaryPath\n}\n\nexport function appendLayoutVaryPath(\n parentPath: PartialSegmentVaryPath | null,\n cacheKey: string\n): PartialSegmentVaryPath {\n const varyPathPart: VaryPath = {\n value: cacheKey,\n parent: parentPath,\n }\n return varyPathPart as PartialSegmentVaryPath\n}\n\nexport function finalizeLayoutVaryPath(\n requestKey: string,\n varyPath: PartialSegmentVaryPath | null\n): LayoutVaryPath {\n const layoutVaryPath: VaryPath = {\n value: requestKey,\n parent: varyPath,\n }\n return layoutVaryPath as LayoutVaryPath\n}\n\nexport function finalizePageVaryPath(\n requestKey: string,\n renderedSearch: NormalizedSearch,\n varyPath: PartialSegmentVaryPath | null\n): PageVaryPath {\n // Unlike layouts, a page segment's vary path also includes the search string.\n // requestKey -> searchParams -> pathParams\n const pageVaryPath: VaryPath = {\n value: requestKey,\n parent: {\n value: renderedSearch,\n parent: varyPath,\n },\n }\n return pageVaryPath as PageVaryPath\n}\n\nexport function finalizeMetadataVaryPath(\n pageRequestKey: string,\n renderedSearch: NormalizedSearch,\n varyPath: PartialSegmentVaryPath | null\n): PageVaryPath {\n // The metadata \"segment\" is not a real segment because it doesn't exist in\n // the normal structure of the route tree, but in terms of caching, it\n // behaves like a page segment because it varies by all the same params as\n // a page.\n //\n // To keep the protocol for querying the server simple, the request key for\n // the metadata does not include any path information. It's unnecessary from\n // the server's perspective, because unlike page segments, there's only one\n // metadata response per URL, i.e. there's no need to distinguish multiple\n // parallel pages.\n //\n // However, this means the metadata request key is insufficient for\n // caching the the metadata in the client cache, because on the client we\n // use the request key to distinguish the metadata entry from all other\n // page's metadata entries.\n //\n // So instead we create a simulated request key based on the page segment.\n // Conceptually this is equivalent to the request key the server would have\n // assigned the metadata segment if it treated it as part of the actual\n // route structure.\n\n // If there are multiple parallel pages, we use whichever is the first one.\n // This is fine because the only difference between request keys for\n // different parallel pages are things like route groups and parallel\n // route slots. As long as it's always the same one, it doesn't matter.\n const pageVaryPath: VaryPath = {\n // Append the actual metadata request key to the page request key. Note\n // that we're not using a separate vary path part; it's unnecessary because\n // these are not conceptually separate inputs.\n value: pageRequestKey + HEAD_REQUEST_KEY,\n parent: {\n value: renderedSearch,\n parent: varyPath,\n },\n }\n return pageVaryPath as PageVaryPath\n}\n\nexport function getSegmentVaryPathForRequest(\n fetchStrategy: FetchStrategy,\n tree: RouteTree\n): SegmentVaryPath {\n // This is used for storing pending requests in the cache. We want to choose\n // the most generic vary path based on the strategy used to fetch it, i.e.\n // static/PPR versus runtime prefetching, so that it can be reused as much\n // as possible.\n //\n // We may be able to re-key the response to something even more generic once\n // we receive it — for example, if the server tells us that the response\n // doesn't vary on a particular param — but even before we send the request,\n // we know some params are reusable based on the fetch strategy alone. For\n // example, a static prefetch will never vary on search params.\n //\n // The original vary path with all the params filled in is stored on the\n // route tree object. We will clone this one to create a new vary path\n // where certain params are replaced with Fallback.\n //\n // This result of this function is not stored anywhere. It's only used to\n // access the cache a single time.\n //\n // TODO: Rather than create a new list object just to access the cache, the\n // plan is to add the concept of a \"vary mask\". This will represent all the\n // params that can be treated as Fallback. (Or perhaps the inverse.)\n const originalVaryPath = tree.varyPath\n\n // Only page segments (and the special \"metadata\" segment, which is treated\n // like a page segment for the purposes of caching) may contain search\n // params. There's no reason to include them in the vary path otherwise.\n if (tree.isPage) {\n // Only a runtime prefetch will include search params in the vary path.\n // Static prefetches never include search params, so they can be reused\n // across all possible search param values.\n const doesVaryOnSearchParams =\n fetchStrategy === FetchStrategy.Full ||\n fetchStrategy === FetchStrategy.PPRRuntime\n\n if (!doesVaryOnSearchParams) {\n // The response from the the server will not vary on search params. Clone\n // the end of the original vary path to replace the search params\n // with Fallback.\n //\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with Fallback\n const searchParamsVaryPath = (originalVaryPath as PageVaryPath).parent\n const pathParamsVaryPath = searchParamsVaryPath.parent\n const patchedVaryPath: VaryPath = {\n value: originalVaryPath.value,\n parent: {\n value: Fallback,\n parent: pathParamsVaryPath,\n },\n }\n return patchedVaryPath as SegmentVaryPath\n }\n }\n\n // The request does vary on search params. We don't need to modify anything.\n return originalVaryPath as SegmentVaryPath\n}\n\nexport function clonePageVaryPathWithNewSearchParams(\n originalVaryPath: PageVaryPath,\n newSearch: NormalizedSearch\n): PageVaryPath {\n // requestKey -> searchParams -> pathParams\n // ^ This part gets replaced with newSearch\n const searchParamsVaryPath = originalVaryPath.parent\n const clonedVaryPath: VaryPath = {\n value: originalVaryPath.value,\n parent: {\n value: newSearch,\n parent: searchParamsVaryPath.parent,\n },\n }\n return clonedVaryPath as PageVaryPath\n}\n"],"names":["appendLayoutVaryPath","clonePageVaryPathWithNewSearchParams","finalizeLayoutVaryPath","finalizeMetadataVaryPath","finalizePageVaryPath","getFulfilledRouteVaryPath","getRouteVaryPath","getSegmentVaryPathForRequest","pathname","search","nextUrl","varyPath","value","parent","couldBeIntercepted","Fallback","parentPath","cacheKey","varyPathPart","requestKey","layoutVaryPath","renderedSearch","pageVaryPath","pageRequestKey","HEAD_REQUEST_KEY","fetchStrategy","tree","originalVaryPath","isPage","doesVaryOnSearchParams","FetchStrategy","Full","PPRRuntime","searchParamsVaryPath","pathParamsVaryPath","patchedVaryPath","newSearch","clonedVaryPath"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 4661, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache-key.ts"],"sourcesContent":["// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque<K, T> = T & { __brand: K }\n\n// Only functions in this module should be allowed to create CacheKeys.\nexport type NormalizedPathname = Opaque<'NormalizedPathname', string>\nexport type NormalizedSearch = Opaque<'NormalizedSearch', string>\nexport type NormalizedNextUrl = Opaque<'NormalizedNextUrl', string>\n\nexport type RouteCacheKey = Opaque<\n 'RouteCacheKey',\n {\n pathname: NormalizedPathname\n search: NormalizedSearch\n nextUrl: NormalizedNextUrl | null\n\n // TODO: Eventually the dynamic params will be added here, too.\n }\n>\n\nexport function createCacheKey(\n originalHref: string,\n nextUrl: string | null\n): RouteCacheKey {\n const originalUrl = new URL(originalHref)\n const cacheKey = {\n pathname: originalUrl.pathname as NormalizedPathname,\n search: originalUrl.search as NormalizedSearch,\n nextUrl: nextUrl as NormalizedNextUrl | null,\n } as RouteCacheKey\n return cacheKey\n}\n"],"names":["createCacheKey","originalHref","nextUrl","originalUrl","URL","cacheKey","pathname","search"],"mappings":"AAAA,2DAA2D;;;;+BAmB3CA,kBAAAA;;;eAAAA;;;AAAT,SAASA,eACdC,YAAoB,EACpBC,OAAsB;IAEtB,MAAMC,cAAc,IAAIC,IAAIH;IAC5B,MAAMI,WAAW;QACfC,UAAUH,YAAYG,QAAQ;QAC9BC,QAAQJ,YAAYI,MAAM;QAC1BL,SAASA;IACX;IACA,OAAOG;AACT","ignoreList":[0]}}, - {"offset": {"line": 4691, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/scheduler.ts"],"sourcesContent":["import type {\n FlightRouterState,\n Segment as FlightRouterStateSegment,\n Segment,\n} from '../../../shared/lib/app-router-types'\nimport { HasLoadingBoundary } from '../../../shared/lib/app-router-types'\nimport { matchSegment } from '../match-segments'\nimport {\n readOrCreateRouteCacheEntry,\n readOrCreateSegmentCacheEntry,\n fetchRouteOnCacheMiss,\n fetchSegmentOnCacheMiss,\n EntryStatus,\n type FulfilledRouteCacheEntry,\n type RouteCacheEntry,\n type SegmentCacheEntry,\n type RouteTree,\n fetchSegmentPrefetchesUsingDynamicRequest,\n type PendingSegmentCacheEntry,\n convertRouteTreeToFlightRouterState,\n readOrCreateRevalidatingSegmentEntry,\n upsertSegmentEntry,\n type FulfilledSegmentCacheEntry,\n upgradeToPendingSegment,\n waitForSegmentCacheEntry,\n overwriteRevalidatingSegmentCacheEntry,\n canNewFetchStrategyProvideMoreContent,\n} from './cache'\nimport { getSegmentVaryPathForRequest, type SegmentVaryPath } from './vary-path'\nimport type { RouteCacheKey } from './cache-key'\nimport { createCacheKey } from './cache-key'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n PrefetchPriority,\n} from './types'\nimport { getCurrentCacheVersion } from './cache'\nimport {\n addSearchParamsIfPageSegment,\n PAGE_SEGMENT_KEY,\n} from '../../../shared/lib/segment'\nimport type { SegmentRequestKey } from '../../../shared/lib/segment-cache/segment-value-encoding'\n\nconst scheduleMicrotask =\n typeof queueMicrotask === 'function'\n ? queueMicrotask\n : (fn: () => unknown) =>\n Promise.resolve()\n .then(fn)\n .catch((error) =>\n setTimeout(() => {\n throw error\n })\n )\n\nexport type PrefetchTask = {\n key: RouteCacheKey\n\n /**\n * The FlightRouterState at the time the task was initiated. This is needed\n * when falling back to the non-PPR behavior, which only prefetches up to\n * the first loading boundary.\n */\n treeAtTimeOfPrefetch: FlightRouterState\n\n /**\n * The cache version at the time the task was initiated. This is used to\n * determine if the cache was invalidated since the task was initiated.\n */\n cacheVersion: number\n\n /**\n * Whether to prefetch dynamic data, in addition to static data. This is\n * used by `<Link prefetch={true}>`.\n *\n * Note that a task with `FetchStrategy.PPR` might need to use\n * `FetchStrategy.LoadingBoundary` instead if we find out that a route\n * does not support PPR after doing the initial route prefetch.\n */\n fetchStrategy: PrefetchTaskFetchStrategy\n\n /**\n * sortId is an incrementing counter\n *\n * Newer prefetches are prioritized over older ones, so that as new links\n * enter the viewport, they are not starved by older links that are no\n * longer relevant. In the future, we can add additional prioritization\n * heuristics, like removing prefetches once a link leaves the viewport.\n *\n * The sortId is assigned when the prefetch is initiated, and reassigned if\n * the same task is prefetched again (effectively bumping it to the top of\n * the queue).\n *\n * TODO: We can add additional fields here to indicate what kind of prefetch\n * it is. For example, was it initiated by a link? Or was it an imperative\n * call? If it was initiated by a link, we can remove it from the queue when\n * the link leaves the viewport, but if it was an imperative call, then we\n * should keep it in the queue until it's fulfilled.\n *\n * We can also add priority levels. For example, hovering over a link could\n * increase the priority of its prefetch.\n */\n sortId: number\n\n /**\n * The priority of the task. Like sortId, this affects the task's position in\n * the queue, so it must never be updated without resifting the heap.\n */\n priority: PrefetchPriority\n\n /**\n * The phase of the task. Tasks are split into multiple phases so that their\n * priority can be adjusted based on what kind of work they're doing.\n * Concretely, prefetching the route tree is higher priority than prefetching\n * segment data.\n */\n phase: PrefetchPhase\n\n /**\n * These fields are temporary state for tracking the currently running task.\n * They are reset after each iteration of the task queue.\n */\n hasBackgroundWork: boolean\n spawnedRuntimePrefetches: Set<SegmentRequestKey> | null\n\n /**\n * True if the prefetch was cancelled.\n */\n isCanceled: boolean\n\n /**\n * The callback passed to `router.prefetch`, if given.\n */\n onInvalidate: null | (() => void)\n\n /**\n * The index of the task in the heap's backing array. Used to efficiently\n * change the priority of a task by re-sifting it, which requires knowing\n * where it is in the array. This is only used internally by the heap\n * algorithm. The naive alternative is indexOf every time a task is queued,\n * which has O(n) complexity.\n *\n * We also use this field to check whether a task is currently in the queue.\n */\n _heapIndex: number\n}\n\nconst enum PrefetchTaskExitStatus {\n /**\n * The task yielded because there are too many requests in progress.\n */\n InProgress,\n\n /**\n * The task is blocked. It needs more data before it can proceed.\n *\n * Currently the only reason this happens is we're still waiting to receive a\n * route tree from the server, because we can't start prefetching the segments\n * until we know what to prefetch.\n */\n Blocked,\n\n /**\n * There's nothing left to prefetch.\n */\n Done,\n}\n\n/**\n * Prefetch tasks are processed in two phases: first the route tree is fetched,\n * then the segments. We use this to priortize tasks that have not yet fetched\n * the route tree.\n */\nconst enum PrefetchPhase {\n RouteTree = 1,\n Segments = 0,\n}\n\nexport type PrefetchSubtaskResult<T> = {\n /**\n * A promise that resolves when the network connection is closed.\n */\n closed: Promise<void>\n value: T\n}\n\nconst taskHeap: Array<PrefetchTask> = []\n\nlet inProgressRequests = 0\n\nlet sortIdCounter = 0\nlet didScheduleMicrotask = false\n\n// The most recently hovered (or touched, etc) link, i.e. the most recent task\n// scheduled at Intent priority. There's only ever a single task at Intent\n// priority at a time. We reserve special network bandwidth for this task only.\nlet mostRecentlyHoveredLink: PrefetchTask | null = null\n\n// CDN cache propagation delay after revalidation (in milliseconds)\nconst REVALIDATION_COOLDOWN_MS = 300\n\n// Timeout handle for the revalidation cooldown. When non-null, prefetch\n// requests are blocked to allow CDN cache propagation.\nlet revalidationCooldownTimeoutHandle: ReturnType<typeof setTimeout> | null =\n null\n\n/**\n * Called by the cache when revalidation occurs. Starts a cooldown period\n * during which prefetch requests are blocked to allow CDN cache propagation.\n */\nexport function startRevalidationCooldown(): void {\n // Clear any existing timeout in case multiple revalidations happen\n // in quick succession.\n if (revalidationCooldownTimeoutHandle !== null) {\n clearTimeout(revalidationCooldownTimeoutHandle)\n }\n\n // Schedule the cooldown to expire after the delay.\n revalidationCooldownTimeoutHandle = setTimeout(() => {\n revalidationCooldownTimeoutHandle = null\n // Retry the prefetch queue now that the cooldown has expired.\n ensureWorkIsScheduled()\n }, REVALIDATION_COOLDOWN_MS)\n}\n\nexport type IncludeDynamicData = null | 'full' | 'dynamic'\n\n/**\n * Initiates a prefetch task for the given URL. If a prefetch for the same URL\n * is already in progress, this will bump it to the top of the queue.\n *\n * This is not a user-facing function. By the time this is called, the href is\n * expected to be validated and normalized.\n *\n * @param key The RouteCacheKey to prefetch.\n * @param treeAtTimeOfPrefetch The app's current FlightRouterState\n * @param fetchStrategy Whether to prefetch dynamic data, in addition to\n * static data. This is used by `<Link prefetch={true}>`.\n */\nexport function schedulePrefetchTask(\n key: RouteCacheKey,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n priority: PrefetchPriority,\n onInvalidate: null | (() => void)\n): PrefetchTask {\n // Spawn a new prefetch task\n const task: PrefetchTask = {\n key,\n treeAtTimeOfPrefetch,\n cacheVersion: getCurrentCacheVersion(),\n priority,\n phase: PrefetchPhase.RouteTree,\n hasBackgroundWork: false,\n spawnedRuntimePrefetches: null,\n fetchStrategy,\n sortId: sortIdCounter++,\n isCanceled: false,\n onInvalidate,\n _heapIndex: -1,\n }\n\n trackMostRecentlyHoveredLink(task)\n\n heapPush(taskHeap, task)\n\n // Schedule an async task to process the queue.\n //\n // The main reason we process the queue in an async task is for batching.\n // It's common for a single JS task/event to trigger multiple prefetches.\n // By deferring to a microtask, we only process the queue once per JS task.\n // If they have different priorities, it also ensures they are processed in\n // the optimal order.\n ensureWorkIsScheduled()\n\n return task\n}\n\nexport function cancelPrefetchTask(task: PrefetchTask): void {\n // Remove the prefetch task from the queue. If the task already completed,\n // then this is a no-op.\n //\n // We must also explicitly mark the task as canceled so that a blocked task\n // does not get added back to the queue when it's pinged by the network.\n task.isCanceled = true\n heapDelete(taskHeap, task)\n}\n\nexport function reschedulePrefetchTask(\n task: PrefetchTask,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n priority: PrefetchPriority\n): void {\n // Bump the prefetch task to the top of the queue, as if it were a fresh\n // task. This is essentially the same as canceling the task and scheduling\n // a new one, except it reuses the original object.\n //\n // The primary use case is to increase the priority of a Link-initated\n // prefetch on hover.\n\n // Un-cancel the task, in case it was previously canceled.\n task.isCanceled = false\n task.phase = PrefetchPhase.RouteTree\n\n // Assign a new sort ID to move it ahead of all other tasks at the same\n // priority level. (Higher sort IDs are processed first.)\n task.sortId = sortIdCounter++\n task.priority =\n // If this task is the most recently hovered link, maintain its\n // Intent priority, even if the rescheduled priority is lower.\n task === mostRecentlyHoveredLink ? PrefetchPriority.Intent : priority\n\n task.treeAtTimeOfPrefetch = treeAtTimeOfPrefetch\n task.fetchStrategy = fetchStrategy\n\n trackMostRecentlyHoveredLink(task)\n\n if (task._heapIndex !== -1) {\n // The task is already in the queue.\n heapResift(taskHeap, task)\n } else {\n heapPush(taskHeap, task)\n }\n ensureWorkIsScheduled()\n}\n\nexport function isPrefetchTaskDirty(\n task: PrefetchTask,\n nextUrl: string | null,\n tree: FlightRouterState\n): boolean {\n // This is used to quickly bail out of a prefetch task if the result is\n // guaranteed to not have changed since the task was initiated. This is\n // strictly an optimization — theoretically, if it always returned true, no\n // behavior should change because a full prefetch task will effectively\n // perform the same checks.\n const currentCacheVersion = getCurrentCacheVersion()\n return (\n task.cacheVersion !== currentCacheVersion ||\n task.treeAtTimeOfPrefetch !== tree ||\n task.key.nextUrl !== nextUrl\n )\n}\n\nfunction trackMostRecentlyHoveredLink(task: PrefetchTask) {\n // Track the mostly recently hovered link, i.e. the most recently scheduled\n // task at Intent priority. There must only be one such task at a time.\n if (\n task.priority === PrefetchPriority.Intent &&\n task !== mostRecentlyHoveredLink\n ) {\n if (mostRecentlyHoveredLink !== null) {\n // Bump the previously hovered link's priority down to Default.\n if (mostRecentlyHoveredLink.priority !== PrefetchPriority.Background) {\n mostRecentlyHoveredLink.priority = PrefetchPriority.Default\n heapResift(taskHeap, mostRecentlyHoveredLink)\n }\n }\n mostRecentlyHoveredLink = task\n }\n}\n\nfunction ensureWorkIsScheduled() {\n if (didScheduleMicrotask) {\n // Already scheduled a task to process the queue\n return\n }\n didScheduleMicrotask = true\n scheduleMicrotask(processQueueInMicrotask)\n}\n\n/**\n * Checks if we've exceeded the maximum number of concurrent prefetch requests,\n * to avoid saturating the browser's internal network queue. This is a\n * cooperative limit — prefetch tasks should check this before issuing\n * new requests.\n *\n * Also checks if we're within the revalidation cooldown window, during which\n * prefetch requests are delayed to allow CDN cache propagation.\n */\nfunction hasNetworkBandwidth(task: PrefetchTask): boolean {\n // Check if we're within the revalidation cooldown window\n if (revalidationCooldownTimeoutHandle !== null) {\n // We're within the cooldown window. Return false to prevent prefetching.\n // When the cooldown expires, the timeout will call ensureWorkIsScheduled()\n // to retry the queue.\n return false\n }\n\n // TODO: Also check if there's an in-progress navigation. We should never\n // add prefetch requests to the network queue if an actual navigation is\n // taking place, to ensure there's sufficient bandwidth for render-blocking\n // data and resources.\n\n // TODO: Consider reserving some amount of bandwidth for static prefetches.\n\n if (task.priority === PrefetchPriority.Intent) {\n // The most recently hovered link is allowed to exceed the default limit.\n //\n // The goal is to always have enough bandwidth to start a new prefetch\n // request when hovering over a link.\n //\n // However, because we don't abort in-progress requests, it's still possible\n // we'll run out of bandwidth. When links are hovered in quick succession,\n // there could be multiple hover requests running simultaneously.\n return inProgressRequests < 12\n }\n\n // The default limit is lower than the limit for a hovered link.\n return inProgressRequests < 4\n}\n\nfunction spawnPrefetchSubtask<T>(\n prefetchSubtask: Promise<PrefetchSubtaskResult<T> | null>\n): Promise<T | null> {\n // When the scheduler spawns an async task, we don't await its result.\n // Instead, the async task writes its result directly into the cache, then\n // pings the scheduler to continue.\n //\n // We process server responses streamingly, so the prefetch subtask will\n // likely resolve before we're finished receiving all the data. The subtask\n // result includes a promise that resolves once the network connection is\n // closed. The scheduler uses this to control network bandwidth by tracking\n // and limiting the number of concurrent requests.\n inProgressRequests++\n return prefetchSubtask.then((result) => {\n if (result === null) {\n // The prefetch task errored before it could start processing the\n // network stream. Assume the connection is closed.\n onPrefetchConnectionClosed()\n return null\n }\n // Wait for the connection to close before freeing up more bandwidth.\n result.closed.then(onPrefetchConnectionClosed)\n return result.value\n })\n}\n\nfunction onPrefetchConnectionClosed(): void {\n inProgressRequests--\n\n // Notify the scheduler that we have more bandwidth, and can continue\n // processing tasks.\n ensureWorkIsScheduled()\n}\n\n/**\n * Notify the scheduler that we've received new data for an in-progress\n * prefetch. The corresponding task will be added back to the queue (unless the\n * task has been canceled in the meantime).\n */\nexport function pingPrefetchTask(task: PrefetchTask) {\n // \"Ping\" a prefetch that's already in progress to notify it of new data.\n if (\n // Check if prefetch was canceled.\n task.isCanceled ||\n // Check if prefetch is already queued.\n task._heapIndex !== -1\n ) {\n return\n }\n // Add the task back to the queue.\n heapPush(taskHeap, task)\n ensureWorkIsScheduled()\n}\n\nfunction processQueueInMicrotask() {\n didScheduleMicrotask = false\n\n // We aim to minimize how often we read the current time. Since nearly all\n // functions in the prefetch scheduler are synchronous, we can read the time\n // once and pass it as an argument wherever it's needed.\n const now = Date.now()\n\n // Process the task queue until we run out of network bandwidth.\n let task = heapPeek(taskHeap)\n while (task !== null && hasNetworkBandwidth(task)) {\n task.cacheVersion = getCurrentCacheVersion()\n\n const exitStatus = pingRoute(now, task)\n\n // These fields are only valid for a single attempt. Reset them after each\n // iteration of the task queue.\n const hasBackgroundWork = task.hasBackgroundWork\n task.hasBackgroundWork = false\n task.spawnedRuntimePrefetches = null\n\n switch (exitStatus) {\n case PrefetchTaskExitStatus.InProgress:\n // The task yielded because there are too many requests in progress.\n // Stop processing tasks until we have more bandwidth.\n return\n case PrefetchTaskExitStatus.Blocked:\n // The task is blocked. It needs more data before it can proceed.\n // Keep the task out of the queue until the server responds.\n heapPop(taskHeap)\n // Continue to the next task\n task = heapPeek(taskHeap)\n continue\n case PrefetchTaskExitStatus.Done:\n if (task.phase === PrefetchPhase.RouteTree) {\n // Finished prefetching the route tree. Proceed to prefetching\n // the segments.\n task.phase = PrefetchPhase.Segments\n heapResift(taskHeap, task)\n } else if (hasBackgroundWork) {\n // The task spawned additional background work. Reschedule the task\n // at background priority.\n task.priority = PrefetchPriority.Background\n heapResift(taskHeap, task)\n } else {\n // The prefetch is complete. Continue to the next task.\n heapPop(taskHeap)\n }\n task = heapPeek(taskHeap)\n continue\n default:\n exitStatus satisfies never\n }\n }\n}\n\n/**\n * Check this during a prefetch task to determine if background work can be\n * performed. If so, it evaluates to `true`. Otherwise, it returns `false`,\n * while also scheduling a background task to run later. Usage:\n *\n * @example\n * if (background(task)) {\n * // Perform background-pri work\n * }\n */\nfunction background(task: PrefetchTask): boolean {\n if (task.priority === PrefetchPriority.Background) {\n return true\n }\n task.hasBackgroundWork = true\n return false\n}\n\nfunction pingRoute(now: number, task: PrefetchTask): PrefetchTaskExitStatus {\n const key = task.key\n const route = readOrCreateRouteCacheEntry(now, task, key)\n const exitStatus = pingRootRouteTree(now, task, route)\n\n if (exitStatus !== PrefetchTaskExitStatus.InProgress && key.search !== '') {\n // If the URL has a non-empty search string, also prefetch the pathname\n // without the search string. We use the searchless route tree as a base for\n // optimistic routing; see requestOptimisticRouteCacheEntry for details.\n //\n // Note that we don't need to prefetch any of the segment data. Just the\n // route tree.\n //\n // TODO: This is a temporary solution; the plan is to replace this by adding\n // a wildcard lookup method to the TupleMap implementation. This is\n // non-trivial to implement because it needs to account for things like\n // fallback route entries, hence this temporary workaround.\n const url = new URL(key.pathname, location.origin)\n const keyWithoutSearch = createCacheKey(url.href, key.nextUrl)\n const routeWithoutSearch = readOrCreateRouteCacheEntry(\n now,\n task,\n keyWithoutSearch\n )\n switch (routeWithoutSearch.status) {\n case EntryStatus.Empty: {\n if (background(task)) {\n routeWithoutSearch.status = EntryStatus.Pending\n spawnPrefetchSubtask(\n fetchRouteOnCacheMiss(routeWithoutSearch, task, keyWithoutSearch)\n )\n }\n break\n }\n case EntryStatus.Pending:\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected: {\n // Either the route tree is already cached, or there's already a\n // request in progress. Since we don't need to fetch any segment data\n // for this route, there's nothing left to do.\n break\n }\n default:\n routeWithoutSearch satisfies never\n }\n }\n\n return exitStatus\n}\n\nfunction pingRootRouteTree(\n now: number,\n task: PrefetchTask,\n route: RouteCacheEntry\n): PrefetchTaskExitStatus {\n switch (route.status) {\n case EntryStatus.Empty: {\n // Route is not yet cached, and there's no request already in progress.\n // Spawn a task to request the route, load it into the cache, and ping\n // the task to continue.\n\n // TODO: There are multiple strategies in the <Link> API for prefetching\n // a route. Currently we've only implemented the main one: per-segment,\n // static-data only.\n //\n // There's also `<Link prefetch={true}>`\n // which prefetch both static *and* dynamic data.\n // Similarly, we need to fallback to the old, per-page\n // behavior if PPR is disabled for a route (via the incremental opt-in).\n //\n // Those cases will be handled here.\n spawnPrefetchSubtask(fetchRouteOnCacheMiss(route, task, task.key))\n\n // If the request takes longer than a minute, a subsequent request should\n // retry instead of waiting for this one. When the response is received,\n // this value will be replaced by a new value based on the stale time sent\n // from the server.\n // TODO: We should probably also manually abort the fetch task, to reclaim\n // server bandwidth.\n route.staleAt = now + 60 * 1000\n\n // Upgrade to Pending so we know there's already a request in progress\n route.status = EntryStatus.Pending\n\n // Intentional fallthrough to the Pending branch\n }\n case EntryStatus.Pending: {\n // Still pending. We can't start prefetching the segments until the route\n // tree has loaded. Add the task to the set of blocked tasks so that it\n // is notified when the route tree is ready.\n const blockedTasks = route.blockedTasks\n if (blockedTasks === null) {\n route.blockedTasks = new Set([task])\n } else {\n blockedTasks.add(task)\n }\n return PrefetchTaskExitStatus.Blocked\n }\n case EntryStatus.Rejected: {\n // Route tree failed to load. Treat as a 404.\n return PrefetchTaskExitStatus.Done\n }\n case EntryStatus.Fulfilled: {\n if (task.phase !== PrefetchPhase.Segments) {\n // Do not prefetch segment data until we've entered the segment phase.\n return PrefetchTaskExitStatus.Done\n }\n // Recursively fill in the segment tree.\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n const tree = route.tree\n\n // A task's fetch strategy gets set to `PPR` for any \"auto\" prefetch.\n // If it turned out that the route isn't PPR-enabled, we need to use `LoadingBoundary` instead.\n // We don't need to do this for runtime prefetches, because those are only available in\n // `cacheComponents`, where every route is PPR.\n const fetchStrategy =\n task.fetchStrategy === FetchStrategy.PPR\n ? route.isPPREnabled\n ? FetchStrategy.PPR\n : FetchStrategy.LoadingBoundary\n : task.fetchStrategy\n\n switch (fetchStrategy) {\n case FetchStrategy.PPR: {\n // For Cache Components pages, each segment may be prefetched\n // statically or using a runtime request, based on various\n // configurations and heuristics. We'll do this in two passes: first\n // traverse the tree and perform all the static prefetches.\n //\n // Then, if there are any segments that need a runtime request,\n // do another pass to perform a runtime prefetch.\n pingStaticHead(now, task, route)\n const exitStatus = pingSharedPartOfCacheComponentsTree(\n now,\n task,\n route,\n task.treeAtTimeOfPrefetch,\n tree\n )\n if (exitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n const spawnedRuntimePrefetches = task.spawnedRuntimePrefetches\n if (spawnedRuntimePrefetches !== null) {\n // During the first pass, we discovered segments that require a\n // runtime prefetch. Do a second pass to construct a request tree.\n const spawnedEntries = new Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n >()\n pingRuntimeHead(\n now,\n task,\n route,\n spawnedEntries,\n FetchStrategy.PPRRuntime\n )\n const requestTree = pingRuntimePrefetches(\n now,\n task,\n route,\n tree,\n spawnedRuntimePrefetches,\n spawnedEntries\n )\n let needsDynamicRequest = spawnedEntries.size > 0\n if (needsDynamicRequest) {\n // Perform a dynamic prefetch request and populate the cache with\n // the result.\n spawnPrefetchSubtask(\n fetchSegmentPrefetchesUsingDynamicRequest(\n task,\n route,\n FetchStrategy.PPRRuntime,\n requestTree,\n spawnedEntries\n )\n )\n }\n }\n return PrefetchTaskExitStatus.Done\n }\n case FetchStrategy.Full:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.LoadingBoundary: {\n // Prefetch multiple segments using a single dynamic request.\n // TODO: We can consolidate this branch with previous one by modeling\n // it as if the first segment in the new tree has runtime prefetching\n // enabled. Will do this as a follow-up refactor. Might want to remove\n // the special metatdata case below first. In the meantime, it's not\n // really that much duplication, just would be nice to remove one of\n // these codepaths.\n const spawnedEntries = new Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n >()\n pingRuntimeHead(now, task, route, spawnedEntries, fetchStrategy)\n const dynamicRequestTree = diffRouteTreeAgainstCurrent(\n now,\n task,\n route,\n task.treeAtTimeOfPrefetch,\n tree,\n spawnedEntries,\n fetchStrategy\n )\n let needsDynamicRequest = spawnedEntries.size > 0\n if (needsDynamicRequest) {\n spawnPrefetchSubtask(\n fetchSegmentPrefetchesUsingDynamicRequest(\n task,\n route,\n fetchStrategy,\n dynamicRequestTree,\n spawnedEntries\n )\n )\n }\n return PrefetchTaskExitStatus.Done\n }\n default:\n fetchStrategy satisfies never\n }\n break\n }\n default: {\n route satisfies never\n }\n }\n return PrefetchTaskExitStatus.Done\n}\n\nfunction pingStaticHead(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry\n): void {\n // The Head data for a page (metadata, viewport) is not really a route\n // segment, in the sense that it doesn't appear in the route tree. But we\n // store it in the cache as if it were, using a special key.\n pingStaticSegmentData(\n now,\n task,\n route,\n readOrCreateSegmentCacheEntry(\n now,\n FetchStrategy.PPR,\n route,\n route.metadata\n ),\n task.key,\n route.metadata\n )\n}\n\nfunction pingRuntimeHead(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n spawnedEntries: Map<SegmentRequestKey, PendingSegmentCacheEntry>,\n fetchStrategy:\n | FetchStrategy.Full\n | FetchStrategy.PPRRuntime\n | FetchStrategy.LoadingBoundary\n): void {\n pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n route.metadata,\n false,\n spawnedEntries,\n // When prefetching the head, there's no difference between Full\n // and LoadingBoundary\n fetchStrategy === FetchStrategy.LoadingBoundary\n ? FetchStrategy.Full\n : fetchStrategy\n )\n}\n\n// TODO: Rename dynamic -> runtime throughout this module\n\nfunction pingSharedPartOfCacheComponentsTree(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n oldTree: FlightRouterState,\n newTree: RouteTree\n): PrefetchTaskExitStatus {\n // When Cache Components is enabled (or PPR, or a fully static route when PPR\n // is disabled; those cases are treated equivalently to Cache Components), we\n // start by prefetching each segment individually. Once we reach the \"new\"\n // part of the tree — the part that doesn't exist on the current page — we\n // may choose to switch to a runtime prefetch instead, based on the\n // information sent by the server in the route tree.\n //\n // The traversal starts in the \"shared\" part of the tree. Once we reach the\n // \"new\" part of the tree, we switch to a different traversal,\n // pingNewPartOfCacheComponentsTree.\n\n // Prefetch this segment's static data.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n newTree\n )\n pingStaticSegmentData(now, task, route, segment, task.key, newTree)\n\n // Recursively ping the children.\n const oldTreeChildren = oldTree[1]\n const newTreeChildren = newTree.slots\n if (newTreeChildren !== null) {\n for (const parallelRouteKey in newTreeChildren) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n const newTreeChild = newTreeChildren[parallelRouteKey]\n const newTreeChildSegment = newTreeChild.segment\n const oldTreeChild: FlightRouterState | void =\n oldTreeChildren[parallelRouteKey]\n const oldTreeChildSegment: FlightRouterStateSegment | void =\n oldTreeChild?.[0]\n let childExitStatus\n if (\n oldTreeChildSegment !== undefined &&\n doesCurrentSegmentMatchCachedSegment(\n route,\n newTreeChildSegment,\n oldTreeChildSegment\n )\n ) {\n // We're still in the \"shared\" part of the tree.\n childExitStatus = pingSharedPartOfCacheComponentsTree(\n now,\n task,\n route,\n oldTreeChild,\n newTreeChild\n )\n } else {\n // We've entered the \"new\" part of the tree. Switch\n // traversal functions.\n childExitStatus = pingNewPartOfCacheComponentsTree(\n now,\n task,\n route,\n newTreeChild\n )\n }\n if (childExitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n }\n }\n\n return PrefetchTaskExitStatus.Done\n}\n\nfunction pingNewPartOfCacheComponentsTree(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): PrefetchTaskExitStatus.InProgress | PrefetchTaskExitStatus.Done {\n // We're now prefetching in the \"new\" part of the tree, the part that doesn't\n // exist on the current page. (In other words, we're deeper than the\n // shared layouts.) Segments in here default to being prefetched statically.\n // However, if the server instructs us to, we may switch to a runtime\n // prefetch instead. Traverse the tree and check at each segment.\n if (tree.hasRuntimePrefetch) {\n // This route has a runtime prefetch response. Since we're below the shared\n // layout, everything from this point should be prefetched using a single,\n // combined runtime request, rather than using per-segment static requests.\n // This is true even if some of the child segments are known to be fully\n // static — once we've decided to perform a runtime prefetch, we might as\n // well respond with the static segments in the same roundtrip. (That's how\n // regular navigations work, too.) We'll still skip over segments that are\n // already cached, though.\n //\n // It's the server's responsibility to set a reasonable value of\n // `hasRuntimePrefetch`. Currently it's user-defined, but eventually, the\n // server may send a value of `false` even if the user opts in, if it\n // determines during build that the route is always fully static. There are\n // more optimizations we can do once we implement fallback param\n // tracking, too.\n //\n // Use the task object to collect the segments that need a runtime prefetch.\n // This will signal to the outer task queue that a second traversal is\n // required to construct a request tree.\n if (task.spawnedRuntimePrefetches === null) {\n task.spawnedRuntimePrefetches = new Set([tree.requestKey])\n } else {\n task.spawnedRuntimePrefetches.add(tree.requestKey)\n }\n // Then exit the traversal without prefetching anything further.\n return PrefetchTaskExitStatus.Done\n }\n\n // This segment should not be runtime prefetched. Prefetch its static data.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n tree\n )\n pingStaticSegmentData(now, task, route, segment, task.key, tree)\n if (tree.slots !== null) {\n if (!hasNetworkBandwidth(task)) {\n // Stop prefetching segments until there's more bandwidth.\n return PrefetchTaskExitStatus.InProgress\n }\n // Recursively ping the children.\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n const childExitStatus = pingNewPartOfCacheComponentsTree(\n now,\n task,\n route,\n childTree\n )\n if (childExitStatus === PrefetchTaskExitStatus.InProgress) {\n // Child yielded without finishing.\n return PrefetchTaskExitStatus.InProgress\n }\n }\n }\n // This segment and all its children have finished prefetching.\n return PrefetchTaskExitStatus.Done\n}\n\nfunction diffRouteTreeAgainstCurrent(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n oldTree: FlightRouterState,\n newTree: RouteTree,\n spawnedEntries: Map<SegmentRequestKey, PendingSegmentCacheEntry>,\n fetchStrategy:\n | FetchStrategy.Full\n | FetchStrategy.PPRRuntime\n | FetchStrategy.LoadingBoundary\n): FlightRouterState {\n // This is a single recursive traversal that does multiple things:\n // - Finds the parts of the target route (newTree) that are not part of\n // of the current page (oldTree) by diffing them, using the same algorithm\n // as a real navigation.\n // - Constructs a request tree (FlightRouterState) that describes which\n // segments need to be prefetched and which ones are already cached.\n // - Creates a set of pending cache entries for the segments that need to\n // be prefetched, so that a subsequent prefetch task does not request the\n // same segments again.\n const oldTreeChildren = oldTree[1]\n const newTreeChildren = newTree.slots\n let requestTreeChildren: Record<string, FlightRouterState> = {}\n if (newTreeChildren !== null) {\n for (const parallelRouteKey in newTreeChildren) {\n const newTreeChild = newTreeChildren[parallelRouteKey]\n const newTreeChildSegment = newTreeChild.segment\n const oldTreeChild: FlightRouterState | void =\n oldTreeChildren[parallelRouteKey]\n const oldTreeChildSegment: FlightRouterStateSegment | void =\n oldTreeChild?.[0]\n if (\n oldTreeChildSegment !== undefined &&\n doesCurrentSegmentMatchCachedSegment(\n route,\n newTreeChildSegment,\n oldTreeChildSegment\n )\n ) {\n // This segment is already part of the current route. Keep traversing.\n const requestTreeChild = diffRouteTreeAgainstCurrent(\n now,\n task,\n route,\n oldTreeChild,\n newTreeChild,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n } else {\n // This segment is not part of the current route. We're entering a\n // part of the tree that we need to prefetch (unless everything is\n // already cached).\n switch (fetchStrategy) {\n case FetchStrategy.LoadingBoundary: {\n // When PPR is disabled, we can't prefetch per segment. We must\n // fallback to the old prefetch behavior and send a dynamic request.\n // Only routes that include a loading boundary can be prefetched in\n // this way.\n //\n // This is simlar to a \"full\" prefetch, but we're much more\n // conservative about which segments to include in the request.\n //\n // The server will only render up to the first loading boundary\n // inside new part of the tree. If there's no loading boundary\n // anywhere in the tree, the server will never return any data, so\n // we can skip the request.\n const subtreeHasLoadingBoundary =\n newTreeChild.hasLoadingBoundary !==\n HasLoadingBoundary.SubtreeHasNoLoadingBoundary\n const requestTreeChild = subtreeHasLoadingBoundary\n ? pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now,\n task,\n route,\n newTreeChild,\n null,\n spawnedEntries\n )\n : // There's no loading boundary within this tree. Bail out.\n convertRouteTreeToFlightRouterState(newTreeChild)\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n case FetchStrategy.PPRRuntime: {\n // This is a runtime prefetch. Fetch all cacheable data in the tree,\n // not just the static PPR shell.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n newTreeChild,\n false,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n case FetchStrategy.Full: {\n // This is a \"full\" prefetch. Fetch all the data in the tree, both\n // static and dynamic. We issue roughly the same request that we\n // would during a real navigation. The goal is that once the\n // navigation occurs, the router should not have to fetch any\n // additional data.\n //\n // Although the response will include dynamic data, opting into a\n // Full prefetch — via <Link prefetch={true}> — implicitly\n // instructs the cache to treat the response as \"static\", or non-\n // dynamic, since the whole point is to cache it for\n // future navigations.\n //\n // Construct a tree (currently a FlightRouterState) that represents\n // which segments need to be prefetched and which ones are already\n // cached. If the tree is empty, then we can exit. Otherwise, we'll\n // send the request tree to the server and use the response to\n // populate the segment cache.\n const requestTreeChild = pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n newTreeChild,\n false,\n spawnedEntries,\n fetchStrategy\n )\n requestTreeChildren[parallelRouteKey] = requestTreeChild\n break\n }\n default:\n fetchStrategy satisfies never\n }\n }\n }\n }\n const requestTree: FlightRouterState = [\n newTree.segment,\n requestTreeChildren,\n null,\n null,\n newTree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n refetchMarkerContext: 'refetch' | 'inside-shared-layout' | null,\n spawnedEntries: Map<SegmentRequestKey, PendingSegmentCacheEntry>\n): FlightRouterState {\n // This function is similar to pingRouteTreeAndIncludeDynamicData, except the\n // server is only going to return a minimal loading state — it will stop\n // rendering at the first loading boundary. Whereas a Full prefetch is\n // intentionally aggressive and tries to pretfetch all the data that will be\n // needed for a navigation, a LoadingBoundary prefetch is much more\n // conservative. For example, it will omit from the request tree any segment\n // that is already cached, regardles of whether it's partial or full. By\n // contrast, a Full prefetch will refetch partial segments.\n\n // \"inside-shared-layout\" tells the server where to start looking for a\n // loading boundary.\n let refetchMarker: 'refetch' | 'inside-shared-layout' | null =\n refetchMarkerContext === null ? 'inside-shared-layout' : null\n\n const segment = readOrCreateSegmentCacheEntry(\n now,\n task.fetchStrategy,\n route,\n tree\n )\n switch (segment.status) {\n case EntryStatus.Empty: {\n // This segment is not cached. Add a refetch marker so the server knows\n // to start rendering here.\n // TODO: Instead of a \"refetch\" marker, we could just omit this subtree's\n // FlightRouterState from the request tree. I think this would probably\n // already work even without any updates to the server. For consistency,\n // though, I'll send the full tree and we'll look into this later as part\n // of a larger redesign of the request protocol.\n\n // Add the pending cache entry to the result map.\n spawnedEntries.set(\n tree.requestKey,\n upgradeToPendingSegment(\n segment,\n // Set the fetch strategy to LoadingBoundary to indicate that the server\n // might not include it in the pending response. If another route is able\n // to issue a per-segment request, we'll do that in the background.\n FetchStrategy.LoadingBoundary\n )\n )\n if (refetchMarkerContext !== 'refetch') {\n refetchMarker = refetchMarkerContext = 'refetch'\n } else {\n // There's already a parent with a refetch marker, so we don't need\n // to add another one.\n }\n break\n }\n case EntryStatus.Fulfilled: {\n // The segment is already cached.\n const segmentHasLoadingBoundary =\n tree.hasLoadingBoundary === HasLoadingBoundary.SegmentHasLoadingBoundary\n if (segmentHasLoadingBoundary) {\n // This segment has a loading boundary, which means the server won't\n // render its children. So there's nothing left to prefetch along this\n // path. We can bail out.\n return convertRouteTreeToFlightRouterState(tree)\n }\n // NOTE: If the cached segment were fetched using PPR, then it might be\n // partial. We could get a more complete version of the segment by\n // including it in this non-PPR request.\n //\n // We're intentionally choosing not to, though, because it's generally\n // better to avoid doing a full prefetch whenever possible.\n break\n }\n case EntryStatus.Pending: {\n // There's another prefetch currently in progress. Don't add the refetch\n // marker yet, so the server knows it can skip rendering this segment.\n break\n }\n case EntryStatus.Rejected: {\n // The segment failed to load. We shouldn't issue another request until\n // the stale time has elapsed.\n break\n }\n default:\n segment satisfies never\n }\n const requestTreeChildren: Record<string, FlightRouterState> = {}\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] =\n pingPPRDisabledRouteTreeUpToLoadingBoundary(\n now,\n task,\n route,\n childTree,\n refetchMarkerContext,\n spawnedEntries\n )\n }\n }\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker,\n tree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingRouteTreeAndIncludeDynamicData(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n isInsideRefetchingParent: boolean,\n spawnedEntries: Map<SegmentRequestKey, PendingSegmentCacheEntry>,\n fetchStrategy: FetchStrategy.Full | FetchStrategy.PPRRuntime\n): FlightRouterState {\n // The tree we're constructing is the same shape as the tree we're navigating\n // to. But even though this is a \"new\" tree, some of the individual segments\n // may be cached as a result of other route prefetches.\n //\n // So we need to find the first uncached segment along each path add an\n // explicit \"refetch\" marker so the server knows where to start rendering.\n // Once the server starts rendering along a path, it keeps rendering the\n // entire subtree.\n const segment = readOrCreateSegmentCacheEntry(\n now,\n // Note that `fetchStrategy` might be different from `task.fetchStrategy`,\n // and we have to use the former here.\n // We can have a task with `FetchStrategy.PPR` where some of its segments are configured to\n // always use runtime prefetching (via `export const prefetch`), and those should check for\n // entries that include search params.\n fetchStrategy,\n route,\n tree\n )\n\n let spawnedSegment: PendingSegmentCacheEntry | null = null\n\n switch (segment.status) {\n case EntryStatus.Empty: {\n // This segment is not cached. Include it in the request.\n spawnedSegment = upgradeToPendingSegment(segment, fetchStrategy)\n break\n }\n case EntryStatus.Fulfilled: {\n // The segment is already cached.\n if (\n segment.isPartial &&\n canNewFetchStrategyProvideMoreContent(\n segment.fetchStrategy,\n fetchStrategy\n )\n ) {\n // The cached segment contains dynamic holes, and was prefetched using a less specific strategy than the current one.\n // This means we're in one of these cases:\n // - we have a static prefetch, and we're doing a runtime prefetch\n // - we have a static or runtime prefetch, and we're doing a Full prefetch (or a navigation).\n // In either case, we need to include it in the request to get a more specific (or full) version.\n spawnedSegment = pingFullSegmentRevalidation(\n now,\n route,\n tree,\n fetchStrategy\n )\n }\n break\n }\n case EntryStatus.Pending:\n case EntryStatus.Rejected: {\n // There's either another prefetch currently in progress, or the previous\n // attempt failed. If the new strategy can provide more content, fetch it again.\n if (\n canNewFetchStrategyProvideMoreContent(\n segment.fetchStrategy,\n fetchStrategy\n )\n ) {\n spawnedSegment = pingFullSegmentRevalidation(\n now,\n route,\n tree,\n fetchStrategy\n )\n }\n break\n }\n default:\n segment satisfies never\n }\n const requestTreeChildren: Record<string, FlightRouterState> = {}\n if (tree.slots !== null) {\n for (const parallelRouteKey in tree.slots) {\n const childTree = tree.slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] =\n pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n childTree,\n isInsideRefetchingParent || spawnedSegment !== null,\n spawnedEntries,\n fetchStrategy\n )\n }\n }\n\n if (spawnedSegment !== null) {\n // Add the pending entry to the result map.\n spawnedEntries.set(tree.requestKey, spawnedSegment)\n }\n\n // Don't bother to add a refetch marker if one is already present in a parent.\n const refetchMarker =\n !isInsideRefetchingParent && spawnedSegment !== null ? 'refetch' : null\n\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n refetchMarker,\n tree.isRootLayout,\n ]\n return requestTree\n}\n\nfunction pingRuntimePrefetches(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n spawnedRuntimePrefetches: Set<SegmentRequestKey>,\n spawnedEntries: Map<SegmentRequestKey, PendingSegmentCacheEntry>\n): FlightRouterState {\n // Construct a request tree (FlightRouterState) for a runtime prefetch. If\n // a segment is part of the runtime prefetch, the tree is constructed by\n // diffing against what's already in the prefetch cache. Otherwise, we send\n // a regular FlightRouterState with no special markers.\n //\n // See pingRouteTreeAndIncludeDynamicData for details.\n if (spawnedRuntimePrefetches.has(tree.requestKey)) {\n // This segment needs a runtime prefetch.\n return pingRouteTreeAndIncludeDynamicData(\n now,\n task,\n route,\n tree,\n false,\n spawnedEntries,\n FetchStrategy.PPRRuntime\n )\n }\n let requestTreeChildren: Record<string, FlightRouterState> = {}\n const slots = tree.slots\n if (slots !== null) {\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n requestTreeChildren[parallelRouteKey] = pingRuntimePrefetches(\n now,\n task,\n route,\n childTree,\n spawnedRuntimePrefetches,\n spawnedEntries\n )\n }\n }\n\n // This segment is not part of the runtime prefetch. Clone the base tree.\n const requestTree: FlightRouterState = [\n tree.segment,\n requestTreeChildren,\n null,\n null,\n ]\n return requestTree\n}\n\nfunction pingStaticSegmentData(\n now: number,\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n segment: SegmentCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): void {\n switch (segment.status) {\n case EntryStatus.Empty:\n // Upgrade to Pending so we know there's already a request in progress\n spawnPrefetchSubtask(\n fetchSegmentOnCacheMiss(\n route,\n upgradeToPendingSegment(segment, FetchStrategy.PPR),\n routeKey,\n tree\n )\n )\n break\n case EntryStatus.Pending: {\n // There's already a request in progress. Depending on what kind of\n // request it is, we may want to revalidate it.\n switch (segment.fetchStrategy) {\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n // There's already a request in progress. Don't do anything.\n break\n case FetchStrategy.LoadingBoundary:\n // There's a pending request, but because it's using the old\n // prefetching strategy, we can't be sure if it will be fulfilled by\n // the response — it might be inside the loading boundary. Perform\n // a revalidation, but because it's speculative, wait to do it at\n // background priority.\n if (background(task)) {\n // TODO: Instead of speculatively revalidating, consider including\n // `hasLoading` in the route tree prefetch response.\n pingPPRSegmentRevalidation(now, route, routeKey, tree)\n }\n break\n default:\n segment.fetchStrategy satisfies never\n }\n break\n }\n case EntryStatus.Rejected: {\n // The existing entry in the cache was rejected. Depending on how it\n // was originally fetched, we may or may not want to revalidate it.\n switch (segment.fetchStrategy) {\n case FetchStrategy.PPR:\n case FetchStrategy.PPRRuntime:\n case FetchStrategy.Full:\n // The previous attempt to fetch this entry failed. Don't attempt to\n // fetch it again until the entry expires.\n break\n case FetchStrategy.LoadingBoundary:\n // There's a rejected entry, but it was fetched using the loading\n // boundary strategy. So the reason it wasn't returned by the server\n // might just be because it was inside a loading boundary. Or because\n // there was a dynamic rewrite. Revalidate it using the per-\n // segment strategy.\n //\n // Because a rejected segment will definitely prevent the segment (and\n // all of its children) from rendering, we perform this revalidation\n // immediately instead of deferring it to a background task.\n pingPPRSegmentRevalidation(now, route, routeKey, tree)\n break\n default:\n segment.fetchStrategy satisfies never\n }\n break\n }\n case EntryStatus.Fulfilled:\n // Segment is already cached. There's nothing left to prefetch.\n break\n default:\n segment satisfies never\n }\n\n // Segments do not have dependent tasks, so once the prefetch is initiated,\n // there's nothing else for us to do (except write the server data into the\n // entry, which is handled by `fetchSegmentOnCacheMiss`).\n}\n\nfunction pingPPRSegmentRevalidation(\n now: number,\n route: FulfilledRouteCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): void {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(\n now,\n FetchStrategy.PPR,\n route,\n tree\n )\n switch (revalidatingSegment.status) {\n case EntryStatus.Empty:\n // Spawn a prefetch request and upsert the segment into the cache\n // upon completion.\n upsertSegmentOnCompletion(\n spawnPrefetchSubtask(\n fetchSegmentOnCacheMiss(\n route,\n upgradeToPendingSegment(revalidatingSegment, FetchStrategy.PPR),\n routeKey,\n tree\n )\n ),\n getSegmentVaryPathForRequest(FetchStrategy.PPR, tree)\n )\n break\n case EntryStatus.Pending:\n // There's already a revalidation in progress.\n break\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n break\n default:\n revalidatingSegment satisfies never\n }\n}\n\nfunction pingFullSegmentRevalidation(\n now: number,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n fetchStrategy: FetchStrategy.Full | FetchStrategy.PPRRuntime\n): PendingSegmentCacheEntry | null {\n const revalidatingSegment = readOrCreateRevalidatingSegmentEntry(\n now,\n fetchStrategy,\n route,\n tree\n )\n if (revalidatingSegment.status === EntryStatus.Empty) {\n // During a Full/PPRRuntime prefetch, a single dynamic request is made for all the\n // segments that we need. So we don't initiate a request here directly. By\n // returning a pending entry from this function, it signals to the caller\n // that this segment should be included in the request that's sent to\n // the server.\n const pendingSegment = upgradeToPendingSegment(\n revalidatingSegment,\n fetchStrategy\n )\n upsertSegmentOnCompletion(\n waitForSegmentCacheEntry(pendingSegment),\n getSegmentVaryPathForRequest(fetchStrategy, tree)\n )\n return pendingSegment\n } else {\n // There's already a revalidation in progress.\n const nonEmptyRevalidatingSegment = revalidatingSegment\n if (\n canNewFetchStrategyProvideMoreContent(\n nonEmptyRevalidatingSegment.fetchStrategy,\n fetchStrategy\n )\n ) {\n // The existing revalidation was fetched using a less specific strategy.\n // Reset it and start a new revalidation.\n const emptySegment = overwriteRevalidatingSegmentCacheEntry(\n fetchStrategy,\n route,\n tree\n )\n const pendingSegment = upgradeToPendingSegment(\n emptySegment,\n fetchStrategy\n )\n upsertSegmentOnCompletion(\n waitForSegmentCacheEntry(pendingSegment),\n getSegmentVaryPathForRequest(fetchStrategy, tree)\n )\n return pendingSegment\n }\n switch (nonEmptyRevalidatingSegment.status) {\n case EntryStatus.Pending:\n // There's already an in-progress prefetch that includes this segment.\n return null\n case EntryStatus.Fulfilled:\n case EntryStatus.Rejected:\n // A previous revalidation attempt finished, but we chose not to replace\n // the existing entry in the cache. Don't try again until or unless the\n // revalidation entry expires.\n return null\n default:\n nonEmptyRevalidatingSegment satisfies never\n return null\n }\n }\n}\n\nconst noop = () => {}\n\nfunction upsertSegmentOnCompletion(\n promise: Promise<FulfilledSegmentCacheEntry | null>,\n varyPath: SegmentVaryPath\n) {\n // Wait for a segment to finish loading, then upsert it into the cache\n promise.then((fulfilled) => {\n if (fulfilled !== null) {\n // Received new data. Attempt to replace the existing entry in the cache.\n upsertSegmentEntry(Date.now(), varyPath, fulfilled)\n }\n }, noop)\n}\n\nfunction doesCurrentSegmentMatchCachedSegment(\n route: FulfilledRouteCacheEntry,\n currentSegment: Segment,\n cachedSegment: Segment\n): boolean {\n if (cachedSegment === PAGE_SEGMENT_KEY) {\n // In the FlightRouterState stored by the router, the page segment has the\n // rendered search params appended to the name of the segment. In the\n // prefetch cache, however, this is stored separately. So, when comparing\n // the router's current FlightRouterState to the cached FlightRouterState,\n // we need to make sure we compare both parts of the segment.\n // TODO: This is not modeled clearly. We use the same type,\n // FlightRouterState, for both the CacheNode tree _and_ the prefetch cache\n // _and_ the server response format, when conceptually those are three\n // different things and treated in different ways. We should encode more of\n // this information into the type design so mistakes are less likely.\n return (\n currentSegment ===\n addSearchParamsIfPageSegment(\n PAGE_SEGMENT_KEY,\n Object.fromEntries(new URLSearchParams(route.renderedSearch))\n )\n )\n }\n // Non-page segments are compared using the same function as the server\n return matchSegment(cachedSegment, currentSegment)\n}\n\n// -----------------------------------------------------------------------------\n// The remainder of the module is a MinHeap implementation. Try not to put any\n// logic below here unless it's related to the heap algorithm. We can extract\n// this to a separate module if/when we need multiple kinds of heaps.\n// -----------------------------------------------------------------------------\n\nfunction compareQueuePriority(a: PrefetchTask, b: PrefetchTask) {\n // Since the queue is a MinHeap, this should return a positive number if b is\n // higher priority than a, and a negative number if a is higher priority\n // than b.\n\n // `priority` is an integer, where higher numbers are higher priority.\n const priorityDiff = b.priority - a.priority\n if (priorityDiff !== 0) {\n return priorityDiff\n }\n\n // If the priority is the same, check which phase the prefetch is in — is it\n // prefetching the route tree, or the segments? Route trees are prioritized.\n const phaseDiff = b.phase - a.phase\n if (phaseDiff !== 0) {\n return phaseDiff\n }\n\n // Finally, check the insertion order. `sortId` is an incrementing counter\n // assigned to prefetches. We want to process the newest prefetches first.\n return b.sortId - a.sortId\n}\n\nfunction heapPush(heap: Array<PrefetchTask>, node: PrefetchTask): void {\n const index = heap.length\n heap.push(node)\n node._heapIndex = index\n heapSiftUp(heap, node, index)\n}\n\nfunction heapPeek(heap: Array<PrefetchTask>): PrefetchTask | null {\n return heap.length === 0 ? null : heap[0]\n}\n\nfunction heapPop(heap: Array<PrefetchTask>): PrefetchTask | null {\n if (heap.length === 0) {\n return null\n }\n const first = heap[0]\n first._heapIndex = -1\n const last = heap.pop() as PrefetchTask\n if (last !== first) {\n heap[0] = last\n last._heapIndex = 0\n heapSiftDown(heap, last, 0)\n }\n return first\n}\n\nfunction heapDelete(heap: Array<PrefetchTask>, node: PrefetchTask): void {\n const index = node._heapIndex\n if (index !== -1) {\n node._heapIndex = -1\n if (heap.length !== 0) {\n const last = heap.pop() as PrefetchTask\n if (last !== node) {\n heap[index] = last\n last._heapIndex = index\n heapSiftDown(heap, last, index)\n }\n }\n }\n}\n\nfunction heapResift(heap: Array<PrefetchTask>, node: PrefetchTask): void {\n const index = node._heapIndex\n if (index !== -1) {\n if (index === 0) {\n heapSiftDown(heap, node, 0)\n } else {\n const parentIndex = (index - 1) >>> 1\n const parent = heap[parentIndex]\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Sift up.\n heapSiftUp(heap, node, index)\n } else {\n // The parent is smaller (or equal). Sift down.\n heapSiftDown(heap, node, index)\n }\n }\n }\n}\n\nfunction heapSiftUp(\n heap: Array<PrefetchTask>,\n node: PrefetchTask,\n i: number\n): void {\n let index = i\n while (index > 0) {\n const parentIndex = (index - 1) >>> 1\n const parent = heap[parentIndex]\n if (compareQueuePriority(parent, node) > 0) {\n // The parent is larger. Swap positions.\n heap[parentIndex] = node\n node._heapIndex = parentIndex\n heap[index] = parent\n parent._heapIndex = index\n\n index = parentIndex\n } else {\n // The parent is smaller. Exit.\n return\n }\n }\n}\n\nfunction heapSiftDown(\n heap: Array<PrefetchTask>,\n node: PrefetchTask,\n i: number\n): void {\n let index = i\n const length = heap.length\n const halfLength = length >>> 1\n while (index < halfLength) {\n const leftIndex = (index + 1) * 2 - 1\n const left = heap[leftIndex]\n const rightIndex = leftIndex + 1\n const right = heap[rightIndex]\n\n // If the left or right node is smaller, swap with the smaller of those.\n if (compareQueuePriority(left, node) < 0) {\n if (rightIndex < length && compareQueuePriority(right, left) < 0) {\n heap[index] = right\n right._heapIndex = index\n heap[rightIndex] = node\n node._heapIndex = rightIndex\n\n index = rightIndex\n } else {\n heap[index] = left\n left._heapIndex = index\n heap[leftIndex] = node\n node._heapIndex = leftIndex\n\n index = leftIndex\n }\n } else if (rightIndex < length && compareQueuePriority(right, node) < 0) {\n heap[index] = right\n right._heapIndex = index\n heap[rightIndex] = node\n node._heapIndex = rightIndex\n\n index = rightIndex\n } else {\n // Neither child is smaller. Exit.\n return\n }\n }\n}\n"],"names":["cancelPrefetchTask","isPrefetchTaskDirty","pingPrefetchTask","reschedulePrefetchTask","schedulePrefetchTask","startRevalidationCooldown","scheduleMicrotask","queueMicrotask","fn","Promise","resolve","then","catch","error","setTimeout","taskHeap","inProgressRequests","sortIdCounter","didScheduleMicrotask","mostRecentlyHoveredLink","REVALIDATION_COOLDOWN_MS","revalidationCooldownTimeoutHandle","clearTimeout","ensureWorkIsScheduled","key","treeAtTimeOfPrefetch","fetchStrategy","priority","onInvalidate","task","cacheVersion","getCurrentCacheVersion","phase","hasBackgroundWork","spawnedRuntimePrefetches","sortId","isCanceled","_heapIndex","trackMostRecentlyHoveredLink","heapPush","heapDelete","PrefetchPriority","Intent","heapResift","nextUrl","tree","currentCacheVersion","Background","Default","processQueueInMicrotask","hasNetworkBandwidth","spawnPrefetchSubtask","prefetchSubtask","result","onPrefetchConnectionClosed","closed","value","now","Date","heapPeek","exitStatus","pingRoute","heapPop","background","route","readOrCreateRouteCacheEntry","pingRootRouteTree","search","url","URL","pathname","location","origin","keyWithoutSearch","createCacheKey","href","routeWithoutSearch","status","EntryStatus","Empty","Pending","fetchRouteOnCacheMiss","Fulfilled","Rejected","staleAt","blockedTasks","Set","add","FetchStrategy","PPR","isPPREnabled","LoadingBoundary","pingStaticHead","pingSharedPartOfCacheComponentsTree","spawnedEntries","Map","pingRuntimeHead","PPRRuntime","requestTree","pingRuntimePrefetches","needsDynamicRequest","size","fetchSegmentPrefetchesUsingDynamicRequest","Full","dynamicRequestTree","diffRouteTreeAgainstCurrent","pingStaticSegmentData","readOrCreateSegmentCacheEntry","metadata","pingRouteTreeAndIncludeDynamicData","oldTree","newTree","segment","oldTreeChildren","newTreeChildren","slots","parallelRouteKey","newTreeChild","newTreeChildSegment","oldTreeChild","oldTreeChildSegment","childExitStatus","undefined","doesCurrentSegmentMatchCachedSegment","pingNewPartOfCacheComponentsTree","hasRuntimePrefetch","requestKey","childTree","requestTreeChildren","requestTreeChild","subtreeHasLoadingBoundary","hasLoadingBoundary","HasLoadingBoundary","SubtreeHasNoLoadingBoundary","pingPPRDisabledRouteTreeUpToLoadingBoundary","convertRouteTreeToFlightRouterState","isRootLayout","refetchMarkerContext","refetchMarker","set","upgradeToPendingSegment","segmentHasLoadingBoundary","SegmentHasLoadingBoundary","isInsideRefetchingParent","spawnedSegment","isPartial","canNewFetchStrategyProvideMoreContent","pingFullSegmentRevalidation","has","routeKey","fetchSegmentOnCacheMiss","pingPPRSegmentRevalidation","revalidatingSegment","readOrCreateRevalidatingSegmentEntry","upsertSegmentOnCompletion","getSegmentVaryPathForRequest","pendingSegment","waitForSegmentCacheEntry","nonEmptyRevalidatingSegment","emptySegment","overwriteRevalidatingSegmentCacheEntry","noop","promise","varyPath","fulfilled","upsertSegmentEntry","currentSegment","cachedSegment","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","Object","fromEntries","URLSearchParams","renderedSearch","matchSegment","compareQueuePriority","a","b","priorityDiff","phaseDiff","heap","node","index","length","push","heapSiftUp","first","last","pop","heapSiftDown","parentIndex","parent","i","halfLength","leftIndex","left","rightIndex","right"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 5838, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/normalize-trailing-slash.ts"],"sourcesContent":["import { removeTrailingSlash } from '../shared/lib/router/utils/remove-trailing-slash'\nimport { parsePath } from '../shared/lib/router/utils/parse-path'\n\n/**\n * Normalizes the trailing slash of a path according to the `trailingSlash` option\n * in `next.config.js`.\n */\nexport const normalizePathTrailingSlash = (path: string) => {\n if (!path.startsWith('/') || process.env.__NEXT_MANUAL_TRAILING_SLASH) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n if (process.env.__NEXT_TRAILING_SLASH) {\n if (/\\.[^/]+\\/?$/.test(pathname)) {\n return `${removeTrailingSlash(pathname)}${query}${hash}`\n } else if (pathname.endsWith('/')) {\n return `${pathname}${query}${hash}`\n } else {\n return `${pathname}/${query}${hash}`\n }\n }\n\n return `${removeTrailingSlash(pathname)}${query}${hash}`\n}\n"],"names":["normalizePathTrailingSlash","path","startsWith","process","env","__NEXT_MANUAL_TRAILING_SLASH","pathname","query","hash","parsePath","__NEXT_TRAILING_SLASH","test","removeTrailingSlash","endsWith"],"mappings":"AAQ+BG,QAAQC,GAAG,CAACC,4BAA4B;;;;;+BAD1DL,8BAAAA;;;eAAAA;;;qCAPuB;2BACV;AAMnB,MAAMA,6BAA6B,CAACC;IACzC,IAAI,CAACA,KAAKC,UAAU,CAAC,kDAAkD;QACrE,OAAOD;IACT;IAEA,MAAM,EAAEK,QAAQ,EAAEC,KAAK,EAAEC,IAAI,EAAE,GAAGC,CAAAA,GAAAA,WAAAA,SAAS,EAACR;IAC5C,IAAIE,QAAQC,GAAG,CAACM,qBAAqB,EAAE;;IAUvC,OAAO,GAAGE,CAAAA,GAAAA,qBAAAA,mBAAmB,EAACN,YAAYC,QAAQC,MAAM;AAC1D","ignoreList":[0]}}, - {"offset": {"line": 5871, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/add-base-path.ts"],"sourcesContent":["import { addPathPrefix } from '../shared/lib/router/utils/add-path-prefix'\nimport { normalizePathTrailingSlash } from './normalize-trailing-slash'\n\nconst basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || ''\n\nexport function addBasePath(path: string, required?: boolean): string {\n return normalizePathTrailingSlash(\n process.env.__NEXT_MANUAL_CLIENT_BASE_PATH && !required\n ? path\n : addPathPrefix(path, basePath)\n )\n}\n"],"names":["addBasePath","basePath","process","env","__NEXT_ROUTER_BASEPATH","path","required","normalizePathTrailingSlash","__NEXT_MANUAL_CLIENT_BASE_PATH","addPathPrefix"],"mappings":"AAGkBE,QAAQC,GAAG,CAACC,sBAAsB;;;;;+BAEpCJ,eAAAA;;;eAAAA;;;+BALc;wCACa;AAE3C,MAAMC,mDAA6D;AAE5D,SAASD,YAAYK,IAAY,EAAEC,QAAkB;IAC1D,OAAOC,CAAAA,GAAAA,wBAAAA,0BAA0B,EAC/BL,QAAQC,GAAG,CAACK,0BACRH,IADsC,IAAI,CAACC,iBAE3CG,CAAAA,GAAAA,eAAAA,aAAa,EAACJ,MAAMJ;AAE5B","ignoreList":[0]}}, - {"offset": {"line": 5899, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-utils.ts"],"sourcesContent":["import { isBot } from '../../shared/lib/router/utils/is-bot'\nimport { addBasePath } from '../add-base-path'\n\nexport function isExternalURL(url: URL) {\n return url.origin !== window.location.origin\n}\n\n/**\n * Given a link href, constructs the URL that should be prefetched. Returns null\n * in cases where prefetching should be disabled, like external URLs, or\n * during development.\n * @param href The href passed to <Link>, router.prefetch(), or similar\n * @returns A URL object to prefetch, or null if prefetching should be disabled\n */\nexport function createPrefetchURL(href: string): URL | null {\n // Don't prefetch for bots as they don't navigate.\n if (isBot(window.navigator.userAgent)) {\n return null\n }\n\n let url: URL\n try {\n url = new URL(addBasePath(href), window.location.href)\n } catch (_) {\n // TODO: Does this need to throw or can we just console.error instead? Does\n // anyone rely on this throwing? (Seems unlikely.)\n throw new Error(\n `Cannot prefetch '${href}' because it cannot be converted to a URL.`\n )\n }\n\n // Don't prefetch during development (improves compilation performance)\n if (process.env.NODE_ENV === 'development') {\n return null\n }\n\n // External urls can't be prefetched in the same way.\n if (isExternalURL(url)) {\n return null\n }\n\n return url\n}\n"],"names":["createPrefetchURL","isExternalURL","url","origin","window","location","href","isBot","navigator","userAgent","URL","addBasePath","_","Error","process","env","NODE_ENV"],"mappings":"AAgCMc,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;;;;;;;;;;;;IAlBfhB,iBAAiB,EAAA;eAAjBA;;IAXAC,aAAa,EAAA;eAAbA;;;uBAHM;6BACM;AAErB,SAASA,cAAcC,GAAQ;IACpC,OAAOA,IAAIC,MAAM,KAAKC,OAAOC,QAAQ,CAACF,MAAM;AAC9C;AASO,SAASH,kBAAkBM,IAAY;IAC5C,kDAAkD;IAClD,IAAIC,CAAAA,GAAAA,OAAAA,KAAK,EAACH,OAAOI,SAAS,CAACC,SAAS,GAAG;QACrC,OAAO;IACT;IAEA,IAAIP;IACJ,IAAI;QACFA,MAAM,IAAIQ,IAAIC,CAAAA,GAAAA,aAAAA,WAAW,EAACL,OAAOF,OAAOC,QAAQ,CAACC,IAAI;IACvD,EAAE,OAAOM,GAAG;QACV,2EAA2E;QAC3E,kDAAkD;QAClD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,iBAAiB,EAAEP,KAAK,0CAA0C,CAAC,GADhE,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,uEAAuE;IACvE,wCAA4C;QAC1C,OAAO;IACT;;;AAQF","ignoreList":[0]}}, - {"offset": {"line": 5962, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/links.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n PrefetchPriority,\n} from './segment-cache/types'\nimport { createCacheKey } from './segment-cache/cache-key'\nimport {\n type PrefetchTask,\n schedulePrefetchTask as scheduleSegmentPrefetchTask,\n cancelPrefetchTask,\n reschedulePrefetchTask,\n isPrefetchTaskDirty,\n} from './segment-cache/scheduler'\nimport { startTransition } from 'react'\n\ntype LinkElement = HTMLAnchorElement | SVGAElement\n\ntype Element = LinkElement | HTMLFormElement\n\n// Properties that are shared between Link and Form instances. We use the same\n// shape for both to prevent a polymorphic de-opt in the VM.\ntype LinkOrFormInstanceShared = {\n router: AppRouterInstance\n fetchStrategy: PrefetchTaskFetchStrategy\n\n isVisible: boolean\n\n // The most recently initiated prefetch task. It may or may not have\n // already completed. The same prefetch task object can be reused across\n // multiple prefetches of the same link.\n prefetchTask: PrefetchTask | null\n}\n\nexport type FormInstance = LinkOrFormInstanceShared & {\n prefetchHref: string\n setOptimisticLinkStatus: null\n}\n\ntype PrefetchableLinkInstance = LinkOrFormInstanceShared & {\n prefetchHref: string\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n}\n\ntype NonPrefetchableLinkInstance = LinkOrFormInstanceShared & {\n prefetchHref: null\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n}\n\ntype PrefetchableInstance = PrefetchableLinkInstance | FormInstance\n\nexport type LinkInstance =\n | PrefetchableLinkInstance\n | NonPrefetchableLinkInstance\n\n// Tracks the most recently navigated link instance. When null, indicates\n// the current navigation was not initiated by a link click.\nlet linkForMostRecentNavigation: LinkInstance | null = null\n\n// Status object indicating link is pending\nexport const PENDING_LINK_STATUS = { pending: true }\n\n// Status object indicating link is idle\nexport const IDLE_LINK_STATUS = { pending: false }\n\n// Updates the loading state when navigating between links\n// - Resets the previous link's loading state\n// - Sets the new link's loading state\n// - Updates tracking of current navigation\nexport function setLinkForCurrentNavigation(link: LinkInstance | null) {\n startTransition(() => {\n linkForMostRecentNavigation?.setOptimisticLinkStatus(IDLE_LINK_STATUS)\n link?.setOptimisticLinkStatus(PENDING_LINK_STATUS)\n linkForMostRecentNavigation = link\n })\n}\n\n// Unmounts the current link instance from navigation tracking\nexport function unmountLinkForCurrentNavigation(link: LinkInstance) {\n if (linkForMostRecentNavigation === link) {\n linkForMostRecentNavigation = null\n }\n}\n\n// Use a WeakMap to associate a Link instance with its DOM element. This is\n// used by the IntersectionObserver to track the link's visibility.\nconst prefetchable:\n | WeakMap<Element, PrefetchableInstance>\n | Map<Element, PrefetchableInstance> =\n typeof WeakMap === 'function' ? new WeakMap() : new Map()\n\n// A Set of the currently visible links. We re-prefetch visible links after a\n// cache invalidation, or when the current URL changes. It's a separate data\n// structure from the WeakMap above because only the visible links need to\n// be enumerated.\nconst prefetchableAndVisible: Set<PrefetchableInstance> = new Set()\n\n// A single IntersectionObserver instance shared by all <Link> components.\nconst observer: IntersectionObserver | null =\n typeof IntersectionObserver === 'function'\n ? new IntersectionObserver(handleIntersect, {\n rootMargin: '200px',\n })\n : null\n\nfunction observeVisibility(element: Element, instance: PrefetchableInstance) {\n const existingInstance = prefetchable.get(element)\n if (existingInstance !== undefined) {\n // This shouldn't happen because each <Link> component should have its own\n // anchor tag instance, but it's defensive coding to avoid a memory leak in\n // case there's a logical error somewhere else.\n unmountPrefetchableInstance(element)\n }\n // Only track prefetchable links that have a valid prefetch URL\n prefetchable.set(element, instance)\n if (observer !== null) {\n observer.observe(element)\n }\n}\n\nfunction coercePrefetchableUrl(href: string): URL | null {\n if (typeof window !== 'undefined') {\n const { createPrefetchURL } =\n require('./app-router-utils') as typeof import('./app-router-utils')\n\n try {\n return createPrefetchURL(href)\n } catch {\n // createPrefetchURL sometimes throws an error if an invalid URL is\n // provided, though I'm not sure if it's actually necessary.\n // TODO: Consider removing the throw from the inner function, or change it\n // to reportError. Or maybe the error isn't even necessary for automatic\n // prefetches, just navigations.\n const reportErrorFn =\n typeof reportError === 'function' ? reportError : console.error\n reportErrorFn(\n `Cannot prefetch '${href}' because it cannot be converted to a URL.`\n )\n return null\n }\n } else {\n return null\n }\n}\n\nexport function mountLinkInstance(\n element: LinkElement,\n href: string,\n router: AppRouterInstance,\n fetchStrategy: PrefetchTaskFetchStrategy,\n prefetchEnabled: boolean,\n setOptimisticLinkStatus: (status: { pending: boolean }) => void\n): LinkInstance {\n if (prefetchEnabled) {\n const prefetchURL = coercePrefetchableUrl(href)\n if (prefetchURL !== null) {\n const instance: PrefetchableLinkInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus,\n }\n // We only observe the link's visibility if it's prefetchable. For\n // example, this excludes links to external URLs.\n observeVisibility(element, instance)\n return instance\n }\n }\n // If the link is not prefetchable, we still create an instance so we can\n // track its optimistic state (i.e. useLinkStatus).\n const instance: NonPrefetchableLinkInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: null,\n setOptimisticLinkStatus,\n }\n return instance\n}\n\nexport function mountFormInstance(\n element: HTMLFormElement,\n href: string,\n router: AppRouterInstance,\n fetchStrategy: PrefetchTaskFetchStrategy\n): void {\n const prefetchURL = coercePrefetchableUrl(href)\n if (prefetchURL === null) {\n // This href is not prefetchable, so we don't track it.\n // TODO: We currently observe/unobserve a form every time its href changes.\n // For Links, this isn't a big deal because the href doesn't usually change,\n // but for forms it's extremely common. We should optimize this.\n return\n }\n const instance: FormInstance = {\n router,\n fetchStrategy,\n isVisible: false,\n prefetchTask: null,\n prefetchHref: prefetchURL.href,\n setOptimisticLinkStatus: null,\n }\n observeVisibility(element, instance)\n}\n\nexport function unmountPrefetchableInstance(element: Element) {\n const instance = prefetchable.get(element)\n if (instance !== undefined) {\n prefetchable.delete(element)\n prefetchableAndVisible.delete(instance)\n const prefetchTask = instance.prefetchTask\n if (prefetchTask !== null) {\n cancelPrefetchTask(prefetchTask)\n }\n }\n if (observer !== null) {\n observer.unobserve(element)\n }\n}\n\nfunction handleIntersect(entries: Array<IntersectionObserverEntry>) {\n for (const entry of entries) {\n // Some extremely old browsers or polyfills don't reliably support\n // isIntersecting so we check intersectionRatio instead. (Do we care? Not\n // really. But whatever this is fine.)\n const isVisible = entry.intersectionRatio > 0\n onLinkVisibilityChanged(entry.target as HTMLAnchorElement, isVisible)\n }\n}\n\nexport function onLinkVisibilityChanged(element: Element, isVisible: boolean) {\n if (process.env.NODE_ENV !== 'production') {\n // Prefetching on viewport is disabled in development for performance\n // reasons, because it requires compiling the target page.\n // TODO: Investigate re-enabling this.\n return\n }\n\n const instance = prefetchable.get(element)\n if (instance === undefined) {\n return\n }\n\n instance.isVisible = isVisible\n if (isVisible) {\n prefetchableAndVisible.add(instance)\n } else {\n prefetchableAndVisible.delete(instance)\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Default)\n}\n\nexport function onNavigationIntent(\n element: HTMLAnchorElement | SVGAElement,\n unstable_upgradeToDynamicPrefetch: boolean\n) {\n const instance = prefetchable.get(element)\n if (instance === undefined) {\n return\n }\n // Prefetch the link on hover/touchstart.\n if (instance !== undefined) {\n if (\n process.env.__NEXT_DYNAMIC_ON_HOVER &&\n unstable_upgradeToDynamicPrefetch\n ) {\n // Switch to a full prefetch\n instance.fetchStrategy = FetchStrategy.Full\n }\n rescheduleLinkPrefetch(instance, PrefetchPriority.Intent)\n }\n}\n\nfunction rescheduleLinkPrefetch(\n instance: PrefetchableInstance,\n priority: PrefetchPriority.Default | PrefetchPriority.Intent\n) {\n // Ensures that app-router-instance is not compiled in the server bundle\n if (typeof window !== 'undefined') {\n const existingPrefetchTask = instance.prefetchTask\n\n if (!instance.isVisible) {\n // Cancel any in-progress prefetch task. (If it already finished then this\n // is a no-op.)\n if (existingPrefetchTask !== null) {\n cancelPrefetchTask(existingPrefetchTask)\n }\n // We don't need to reset the prefetchTask to null upon cancellation; an\n // old task object can be rescheduled with reschedulePrefetchTask. This is a\n // micro-optimization but also makes the code simpler (don't need to\n // worry about whether an old task object is stale).\n return\n }\n\n const { getCurrentAppRouterState } =\n require('./app-router-instance') as typeof import('./app-router-instance')\n\n const appRouterState = getCurrentAppRouterState()\n if (appRouterState !== null) {\n const treeAtTimeOfPrefetch = appRouterState.tree\n if (existingPrefetchTask === null) {\n // Initiate a prefetch task.\n const nextUrl = appRouterState.nextUrl\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n instance.prefetchTask = scheduleSegmentPrefetchTask(\n cacheKey,\n treeAtTimeOfPrefetch,\n instance.fetchStrategy,\n priority,\n null\n )\n } else {\n // We already have an old task object that we can reschedule. This is\n // effectively the same as canceling the old task and creating a new one.\n reschedulePrefetchTask(\n existingPrefetchTask,\n treeAtTimeOfPrefetch,\n instance.fetchStrategy,\n priority\n )\n }\n }\n }\n}\n\nexport function pingVisibleLinks(\n nextUrl: string | null,\n tree: FlightRouterState\n) {\n // For each currently visible link, cancel the existing prefetch task (if it\n // exists) and schedule a new one. This is effectively the same as if all the\n // visible links left and then re-entered the viewport.\n //\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n for (const instance of prefetchableAndVisible) {\n const task = instance.prefetchTask\n if (task !== null && !isPrefetchTaskDirty(task, nextUrl, tree)) {\n // The cache has not been invalidated, and none of the inputs have\n // changed. Bail out.\n continue\n }\n // Something changed. Cancel the existing prefetch task and schedule a\n // new one.\n if (task !== null) {\n cancelPrefetchTask(task)\n }\n const cacheKey = createCacheKey(instance.prefetchHref, nextUrl)\n instance.prefetchTask = scheduleSegmentPrefetchTask(\n cacheKey,\n tree,\n instance.fetchStrategy,\n PrefetchPriority.Default,\n null\n )\n }\n}\n"],"names":["IDLE_LINK_STATUS","PENDING_LINK_STATUS","mountFormInstance","mountLinkInstance","onLinkVisibilityChanged","onNavigationIntent","pingVisibleLinks","setLinkForCurrentNavigation","unmountLinkForCurrentNavigation","unmountPrefetchableInstance","linkForMostRecentNavigation","pending","link","startTransition","setOptimisticLinkStatus","prefetchable","WeakMap","Map","prefetchableAndVisible","Set","observer","IntersectionObserver","handleIntersect","rootMargin","observeVisibility","element","instance","existingInstance","get","undefined","set","observe","coercePrefetchableUrl","href","window","createPrefetchURL","require","reportErrorFn","reportError","console","error","router","fetchStrategy","prefetchEnabled","prefetchURL","isVisible","prefetchTask","prefetchHref","delete","cancelPrefetchTask","unobserve","entries","entry","intersectionRatio","target","process","env","NODE_ENV","add","rescheduleLinkPrefetch","PrefetchPriority","Default","unstable_upgradeToDynamicPrefetch","__NEXT_DYNAMIC_ON_HOVER","FetchStrategy","Full","Intent","priority","existingPrefetchTask","getCurrentAppRouterState","appRouterState","treeAtTimeOfPrefetch","tree","nextUrl","cacheKey","createCacheKey","scheduleSegmentPrefetchTask","reschedulePrefetchTask","task","isPrefetchTaskDirty"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 6248, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/cache.ts"],"sourcesContent":["import type {\n TreePrefetch,\n RootTreePrefetch,\n SegmentPrefetch,\n} from '../../../server/app-render/collect-segment-data'\nimport type { LoadingModuleData } from '../../../shared/lib/app-router-types'\nimport type {\n CacheNodeSeedData,\n Segment as FlightRouterStateSegment,\n} from '../../../shared/lib/app-router-types'\nimport { HasLoadingBoundary } from '../../../shared/lib/app-router-types'\nimport {\n NEXT_DID_POSTPONE_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STALE_TIME_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n RSC_CONTENT_TYPE_HEADER,\n RSC_HEADER,\n} from '../app-router-headers'\nimport {\n createFetch,\n createFromNextReadableStream,\n type RSCResponse,\n type RequestHeaders,\n} from '../router-reducer/fetch-server-response'\nimport {\n pingPrefetchTask,\n isPrefetchTaskDirty,\n type PrefetchTask,\n type PrefetchSubtaskResult,\n startRevalidationCooldown,\n} from './scheduler'\nimport {\n type RouteVaryPath,\n type SegmentVaryPath,\n type PartialSegmentVaryPath,\n getRouteVaryPath,\n getFulfilledRouteVaryPath,\n getSegmentVaryPathForRequest,\n appendLayoutVaryPath,\n finalizeLayoutVaryPath,\n finalizePageVaryPath,\n clonePageVaryPathWithNewSearchParams,\n type PageVaryPath,\n finalizeMetadataVaryPath,\n} from './vary-path'\nimport { getAppBuildId } from '../../app-build-id'\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url'\nimport type { NormalizedSearch, RouteCacheKey } from './cache-key'\n// TODO: Rename this module to avoid confusion with other types of cache keys\nimport { createCacheKey as createPrefetchRequestKey } from './cache-key'\nimport {\n doesStaticSegmentAppearInURL,\n getCacheKeyForDynamicParam,\n getRenderedPathname,\n getRenderedSearch,\n parseDynamicParamFromURLPart,\n} from '../../route-params'\nimport {\n createCacheMap,\n getFromCacheMap,\n setInCacheMap,\n setSizeInCacheMap,\n deleteFromCacheMap,\n isValueExpired,\n type CacheMap,\n type UnknownMapEntry,\n} from './cache-map'\nimport {\n appendSegmentRequestKeyPart,\n convertSegmentPathToStaticExportFilename,\n createSegmentRequestKeyPart,\n HEAD_REQUEST_KEY,\n ROOT_SEGMENT_REQUEST_KEY,\n type SegmentRequestKey,\n} from '../../../shared/lib/segment-cache/segment-value-encoding'\nimport type {\n FlightRouterState,\n NavigationFlightResponse,\n} from '../../../shared/lib/app-router-types'\nimport {\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n} from '../../flight-data-helpers'\nimport { STATIC_STALETIME_MS } from '../router-reducer/reducers/navigate-reducer'\nimport { pingVisibleLinks } from '../links'\nimport { PAGE_SEGMENT_KEY } from '../../../shared/lib/segment'\nimport { FetchStrategy } from './types'\nimport { createPromiseWithResolvers } from '../../../shared/lib/promise-with-resolvers'\n\n/**\n * Ensures a minimum stale time of 30s to avoid issues where the server sends a too\n * short-lived stale time, which would prevent anything from being prefetched.\n */\nexport function getStaleTimeMs(staleTimeSeconds: number): number {\n return Math.max(staleTimeSeconds, 30) * 1000\n}\n\n// A note on async/await when working in the prefetch cache:\n//\n// Most async operations in the prefetch cache should *not* use async/await,\n// Instead, spawn a subtask that writes the results to a cache entry, and attach\n// a \"ping\" listener to notify the prefetch queue to try again.\n//\n// The reason is we need to be able to access the segment cache and traverse its\n// data structures synchronously. For example, if there's a synchronous update\n// we can take an immediate snapshot of the cache to produce something we can\n// render. Limiting the use of async/await also makes it easier to avoid race\n// conditions, which is especially important because is cache is mutable.\n//\n// Another reason is that while we're performing async work, it's possible for\n// existing entries to become stale, or for Link prefetches to be removed from\n// the queue. For optimal scheduling, we need to be able to \"cancel\" subtasks\n// that are no longer needed. So, when a segment is received from the server, we\n// restart from the root of the tree that's being prefetched, to confirm all the\n// parent segments are still cached. If the segment is no longer reachable from\n// the root, then it's effectively canceled. This is similar to the design of\n// Rust Futures, or React Suspense.\n\ntype RouteTreeShared = {\n requestKey: SegmentRequestKey\n // TODO: Remove the `segment` field, now that it can be reconstructed\n // from `param`.\n segment: FlightRouterStateSegment\n slots: null | {\n [parallelRouteKey: string]: RouteTree\n }\n isRootLayout: boolean\n\n // If this is a dynamic route, indicates whether there is a loading boundary\n // somewhere in the tree. If not, we can skip the prefetch for the data,\n // because we know it would be an empty response. (For a static/PPR route,\n // this value is disregarded, because in that model `loading.tsx` is treated\n // like any other Suspense boundary.)\n hasLoadingBoundary: HasLoadingBoundary\n\n // Indicates whether this route has a runtime prefetch that we can request.\n // This is determined by the server; it's not purely a user configuration\n // because the server may determine that a route is fully static and doesn't\n // need runtime prefetching regardless of the configuration.\n hasRuntimePrefetch: boolean\n}\n\ntype LayoutRouteTree = RouteTreeShared & {\n isPage: false\n varyPath: SegmentVaryPath\n}\n\ntype PageRouteTree = RouteTreeShared & {\n isPage: true\n varyPath: PageVaryPath\n}\n\nexport type RouteTree = LayoutRouteTree | PageRouteTree\n\ntype RouteCacheEntryShared = {\n // This is false only if we're certain the route cannot be intercepted. It's\n // true in all other cases, including on initialization when we haven't yet\n // received a response from the server.\n couldBeIntercepted: boolean\n\n // Map-related fields.\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\n/**\n * Tracks the status of a cache entry as it progresses from no data (Empty),\n * waiting for server data (Pending), and finished (either Fulfilled or\n * Rejected depending on the response from the server.\n */\nexport const enum EntryStatus {\n Empty = 0,\n Pending = 1,\n Fulfilled = 2,\n Rejected = 3,\n}\n\ntype PendingRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Empty | EntryStatus.Pending\n blockedTasks: Set<PrefetchTask> | null\n canonicalUrl: null\n renderedSearch: null\n tree: null\n metadata: null\n isPPREnabled: false\n}\n\ntype RejectedRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Rejected\n blockedTasks: Set<PrefetchTask> | null\n canonicalUrl: null\n renderedSearch: null\n tree: null\n metadata: null\n isPPREnabled: boolean\n}\n\nexport type FulfilledRouteCacheEntry = RouteCacheEntryShared & {\n status: EntryStatus.Fulfilled\n blockedTasks: null\n canonicalUrl: string\n renderedSearch: NormalizedSearch\n tree: RouteTree\n metadata: RouteTree\n isPPREnabled: boolean\n}\n\nexport type RouteCacheEntry =\n | PendingRouteCacheEntry\n | FulfilledRouteCacheEntry\n | RejectedRouteCacheEntry\n\ntype SegmentCacheEntryShared = {\n fetchStrategy: FetchStrategy\n\n // Map-related fields.\n ref: UnknownMapEntry | null\n size: number\n staleAt: number\n version: number\n}\n\nexport type EmptySegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Empty\n rsc: null\n loading: null\n isPartial: true\n promise: null\n}\n\nexport type PendingSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Pending\n rsc: null\n loading: null\n isPartial: boolean\n promise: null | PromiseWithResolvers<FulfilledSegmentCacheEntry | null>\n}\n\ntype RejectedSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Rejected\n rsc: null\n loading: null\n isPartial: true\n promise: null\n}\n\nexport type FulfilledSegmentCacheEntry = SegmentCacheEntryShared & {\n status: EntryStatus.Fulfilled\n rsc: React.ReactNode | null\n loading: LoadingModuleData | Promise<LoadingModuleData>\n isPartial: boolean\n promise: null\n}\n\nexport type SegmentCacheEntry =\n | EmptySegmentCacheEntry\n | PendingSegmentCacheEntry\n | RejectedSegmentCacheEntry\n | FulfilledSegmentCacheEntry\n\nexport type NonEmptySegmentCacheEntry = Exclude<\n SegmentCacheEntry,\n EmptySegmentCacheEntry\n>\n\nconst isOutputExportMode =\n process.env.NODE_ENV === 'production' &&\n process.env.__NEXT_CONFIG_OUTPUT === 'export'\n\nconst MetadataOnlyRequestTree: FlightRouterState = [\n '',\n {},\n null,\n 'metadata-only',\n]\n\nlet routeCacheMap: CacheMap<RouteCacheEntry> = createCacheMap()\nlet segmentCacheMap: CacheMap<SegmentCacheEntry> = createCacheMap()\n\n// All invalidation listeners for the whole cache are tracked in single set.\n// Since we don't yet support tag or path-based invalidation, there's no point\n// tracking them any more granularly than this. Once we add granular\n// invalidation, that may change, though generally the model is to just notify\n// the listeners and allow the caller to poll the prefetch cache with a new\n// prefetch task if desired.\nlet invalidationListeners: Set<PrefetchTask> | null = null\n\n// Incrementing counter used to track cache invalidations.\nlet currentCacheVersion = 0\n\nexport function getCurrentCacheVersion(): number {\n return currentCacheVersion\n}\n\n/**\n * Used to clear the client prefetch cache when a server action calls\n * revalidatePath or revalidateTag. Eventually we will support only clearing the\n * segments that were actually affected, but there's more work to be done on the\n * server before the client is able to do this correctly.\n */\nexport function revalidateEntireCache(\n nextUrl: string | null,\n tree: FlightRouterState\n) {\n // Increment the current cache version. This does not eagerly evict anything\n // from the cache, but because all the entries are versioned, and we check\n // the version when reading from the cache, this effectively causes all\n // entries to be evicted lazily. We do it lazily because in the future,\n // actions like revalidateTag or refresh will not evict the entire cache,\n // but rather some subset of the entries.\n currentCacheVersion++\n\n // Start a cooldown before re-prefetching to allow CDN cache propagation.\n startRevalidationCooldown()\n\n // Prefetch all the currently visible links again, to re-fill the cache.\n pingVisibleLinks(nextUrl, tree)\n\n // Similarly, notify all invalidation listeners (i.e. those passed to\n // `router.prefetch(onInvalidate)`), so they can trigger a new prefetch\n // if needed.\n pingInvalidationListeners(nextUrl, tree)\n}\n\nfunction attachInvalidationListener(task: PrefetchTask): void {\n // This function is called whenever a prefetch task reads a cache entry. If\n // the task has an onInvalidate function associated with it — i.e. the one\n // optionally passed to router.prefetch(onInvalidate) — then we attach that\n // listener to the every cache entry that the task reads. Then, if an entry\n // is invalidated, we call the function.\n if (task.onInvalidate !== null) {\n if (invalidationListeners === null) {\n invalidationListeners = new Set([task])\n } else {\n invalidationListeners.add(task)\n }\n }\n}\n\nfunction notifyInvalidationListener(task: PrefetchTask): void {\n const onInvalidate = task.onInvalidate\n if (onInvalidate !== null) {\n // Clear the callback from the task object to guarantee it's not called more\n // than once.\n task.onInvalidate = null\n\n // This is a user-space function, so we must wrap in try/catch.\n try {\n onInvalidate()\n } catch (error) {\n if (typeof reportError === 'function') {\n reportError(error)\n } else {\n console.error(error)\n }\n }\n }\n}\n\nexport function pingInvalidationListeners(\n nextUrl: string | null,\n tree: FlightRouterState\n): void {\n // The rough equivalent of pingVisibleLinks, but for onInvalidate callbacks.\n // This is called when the Next-Url or the base tree changes, since those\n // may affect the result of a prefetch task. It's also called after a\n // cache invalidation.\n if (invalidationListeners !== null) {\n const tasks = invalidationListeners\n invalidationListeners = null\n for (const task of tasks) {\n if (isPrefetchTaskDirty(task, nextUrl, tree)) {\n notifyInvalidationListener(task)\n }\n }\n }\n}\n\nexport function readRouteCacheEntry(\n now: number,\n key: RouteCacheKey\n): RouteCacheEntry | null {\n const varyPath: RouteVaryPath = getRouteVaryPath(\n key.pathname,\n key.search,\n key.nextUrl\n )\n const isRevalidation = false\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n routeCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nexport function readSegmentCacheEntry(\n now: number,\n varyPath: SegmentVaryPath\n): SegmentCacheEntry | null {\n const isRevalidation = false\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n segmentCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nfunction readRevalidatingSegmentCacheEntry(\n now: number,\n varyPath: SegmentVaryPath\n): SegmentCacheEntry | null {\n const isRevalidation = true\n return getFromCacheMap(\n now,\n getCurrentCacheVersion(),\n segmentCacheMap,\n varyPath,\n isRevalidation\n )\n}\n\nexport function waitForSegmentCacheEntry(\n pendingEntry: PendingSegmentCacheEntry\n): Promise<FulfilledSegmentCacheEntry | null> {\n // Because the entry is pending, there's already a in-progress request.\n // Attach a promise to the entry that will resolve when the server responds.\n let promiseWithResolvers = pendingEntry.promise\n if (promiseWithResolvers === null) {\n promiseWithResolvers = pendingEntry.promise =\n createPromiseWithResolvers<FulfilledSegmentCacheEntry | null>()\n } else {\n // There's already a promise we can use\n }\n return promiseWithResolvers.promise\n}\n\n/**\n * Checks if an entry for a route exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */\nexport function readOrCreateRouteCacheEntry(\n now: number,\n task: PrefetchTask,\n key: RouteCacheKey\n): RouteCacheEntry {\n attachInvalidationListener(task)\n\n const existingEntry = readRouteCacheEntry(now, key)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const pendingEntry: PendingRouteCacheEntry = {\n canonicalUrl: null,\n status: EntryStatus.Empty,\n blockedTasks: null,\n tree: null,\n metadata: null,\n // This is initialized to true because we don't know yet whether the route\n // could be intercepted. It's only set to false once we receive a response\n // from the server.\n couldBeIntercepted: true,\n // Similarly, we don't yet know if the route supports PPR.\n isPPREnabled: false,\n renderedSearch: null,\n\n // Map-related fields\n ref: null,\n size: 0,\n // Since this is an empty entry, there's no reason to ever evict it. It will\n // be updated when the data is populated.\n staleAt: Infinity,\n version: getCurrentCacheVersion(),\n }\n const varyPath: RouteVaryPath = getRouteVaryPath(\n key.pathname,\n key.search,\n key.nextUrl\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, varyPath, pendingEntry, isRevalidation)\n return pendingEntry\n}\n\nexport function requestOptimisticRouteCacheEntry(\n now: number,\n requestedUrl: URL,\n nextUrl: string | null\n): FulfilledRouteCacheEntry | null {\n // This function is called during a navigation when there was no matching\n // route tree in the prefetch cache. Before de-opting to a blocking,\n // unprefetched navigation, we will first attempt to construct an \"optimistic\"\n // route tree by checking the cache for similar routes.\n //\n // Check if there's a route with the same pathname, but with different\n // search params. We can then base our optimistic route tree on this entry.\n //\n // Conceptually, we are simulating what would happen if we did perform a\n // prefetch the requested URL, under the assumption that the server will\n // not redirect or rewrite the request in a different manner than the\n // base route tree. This assumption might not hold, in which case we'll have\n // to recover when we perform the dynamic navigation request. However, this\n // is what would happen if a route were dynamically rewritten/redirected\n // in between the prefetch and the navigation. So the logic needs to exist\n // to handle this case regardless.\n\n // Look for a route with the same pathname, but with an empty search string.\n // TODO: There's nothing inherently special about the empty search string;\n // it's chosen somewhat arbitrarily, with the rationale that it's the most\n // likely one to exist. But we should update this to match _any_ search\n // string. The plan is to generalize this logic alongside other improvements\n // related to \"fallback\" cache entries.\n const requestedSearch = requestedUrl.search as NormalizedSearch\n if (requestedSearch === '') {\n // The caller would have already checked if a route with an empty search\n // string is in the cache. So we can bail out here.\n return null\n }\n const urlWithoutSearchParams = new URL(requestedUrl)\n urlWithoutSearchParams.search = ''\n const routeWithNoSearchParams = readRouteCacheEntry(\n now,\n createPrefetchRequestKey(urlWithoutSearchParams.href, nextUrl)\n )\n\n if (\n routeWithNoSearchParams === null ||\n routeWithNoSearchParams.status !== EntryStatus.Fulfilled\n ) {\n // Bail out of constructing an optimistic route tree. This will result in\n // a blocking, unprefetched navigation.\n return null\n }\n\n // Now we have a base route tree we can \"patch\" with our optimistic values.\n\n // Optimistically assume that redirects for the requested pathname do\n // not vary on the search string. Therefore, if the base route was\n // redirected to a different search string, then the optimistic route\n // should be redirected to the same search string. Otherwise, we use\n // the requested search string.\n const canonicalUrlForRouteWithNoSearchParams = new URL(\n routeWithNoSearchParams.canonicalUrl,\n requestedUrl.origin\n )\n const optimisticCanonicalSearch =\n canonicalUrlForRouteWithNoSearchParams.search !== ''\n ? // Base route was redirected. Reuse the same redirected search string.\n canonicalUrlForRouteWithNoSearchParams.search\n : requestedSearch\n\n // Similarly, optimistically assume that rewrites for the requested\n // pathname do not vary on the search string. Therefore, if the base\n // route was rewritten to a different search string, then the optimistic\n // route should be rewritten to the same search string. Otherwise, we use\n // the requested search string.\n const optimisticRenderedSearch =\n routeWithNoSearchParams.renderedSearch !== ''\n ? // Base route was rewritten. Reuse the same rewritten search string.\n routeWithNoSearchParams.renderedSearch\n : requestedSearch\n\n const optimisticUrl = new URL(\n routeWithNoSearchParams.canonicalUrl,\n location.origin\n )\n optimisticUrl.search = optimisticCanonicalSearch\n const optimisticCanonicalUrl = createHrefFromUrl(optimisticUrl)\n\n const optimisticRouteTree = createOptimisticRouteTree(\n routeWithNoSearchParams.tree,\n optimisticRenderedSearch\n )\n const optimisticMetadataTree = createOptimisticRouteTree(\n routeWithNoSearchParams.metadata,\n optimisticRenderedSearch\n )\n\n // Clone the base route tree, and override the relevant fields with our\n // optimistic values.\n const optimisticEntry: FulfilledRouteCacheEntry = {\n canonicalUrl: optimisticCanonicalUrl,\n\n status: EntryStatus.Fulfilled,\n // This isn't cloned because it's instance-specific\n blockedTasks: null,\n tree: optimisticRouteTree,\n metadata: optimisticMetadataTree,\n couldBeIntercepted: routeWithNoSearchParams.couldBeIntercepted,\n isPPREnabled: routeWithNoSearchParams.isPPREnabled,\n\n // Override the rendered search with the optimistic value.\n renderedSearch: optimisticRenderedSearch,\n\n // Map-related fields\n ref: null,\n size: 0,\n staleAt: routeWithNoSearchParams.staleAt,\n version: routeWithNoSearchParams.version,\n }\n\n // Do not insert this entry into the cache. It only exists so we can\n // perform the current navigation. Just return it to the caller.\n return optimisticEntry\n}\n\nfunction createOptimisticRouteTree(\n tree: RouteTree,\n newRenderedSearch: NormalizedSearch\n): RouteTree {\n // Create a new route tree that identical to the original one except for\n // the rendered search string, which is contained in the vary path.\n\n let clonedSlots: Record<string, RouteTree> | null = null\n const originalSlots = tree.slots\n if (originalSlots !== null) {\n clonedSlots = {}\n for (const parallelRouteKey in originalSlots) {\n const childTree = originalSlots[parallelRouteKey]\n clonedSlots[parallelRouteKey] = createOptimisticRouteTree(\n childTree,\n newRenderedSearch\n )\n }\n }\n\n // We only need to clone the vary path if the route is a page.\n if (tree.isPage) {\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n varyPath: clonePageVaryPathWithNewSearchParams(\n tree.varyPath,\n newRenderedSearch\n ),\n isPage: true,\n slots: clonedSlots,\n isRootLayout: tree.isRootLayout,\n hasLoadingBoundary: tree.hasLoadingBoundary,\n hasRuntimePrefetch: tree.hasRuntimePrefetch,\n }\n }\n\n return {\n requestKey: tree.requestKey,\n segment: tree.segment,\n varyPath: tree.varyPath,\n isPage: false,\n slots: clonedSlots,\n isRootLayout: tree.isRootLayout,\n hasLoadingBoundary: tree.hasLoadingBoundary,\n hasRuntimePrefetch: tree.hasRuntimePrefetch,\n }\n}\n\n/**\n * Checks if an entry for a segment exists in the cache. If so, it returns the\n * entry, If not, it adds an empty entry to the cache and returns it.\n */\nexport function readOrCreateSegmentCacheEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): SegmentCacheEntry {\n const existingEntry = readSegmentCacheEntry(now, tree.varyPath)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = false\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function readOrCreateRevalidatingSegmentEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): SegmentCacheEntry {\n // This function is called when we've already confirmed that a particular\n // segment is cached, but we want to perform another request anyway in case it\n // returns more complete and/or fresher data than we already have. The logic\n // for deciding whether to replace the existing entry is handled elsewhere;\n // this function just handles retrieving a cache entry that we can use to\n // track the revalidation.\n //\n // The reason revalidations are stored in the cache is because we need to be\n // able to dedupe multiple revalidation requests. The reason they have to be\n // handled specially is because we shouldn't overwrite a \"normal\" entry if\n // one exists at the same keypath. So, for each internal cache location, there\n // is a special \"revalidation\" slot that is used solely for this purpose.\n //\n // You can think of it as if all the revalidation entries were stored in a\n // separate cache map from the canonical entries, and then transfered to the\n // canonical cache map once the request is complete — this isn't how it's\n // actually implemented, since it's more efficient to store them in the same\n // data structure as the normal entries, but that's how it's modeled\n // conceptually.\n\n // TODO: Once we implement Fallback behavior for params, where an entry is\n // re-keyed based on response information, we'll need to account for the\n // possibility that the keypath of the previous entry is more generic than\n // the keypath of the revalidating entry. In other words, the server could\n // return a less generic entry upon revalidation. For now, though, this isn't\n // a concern because the keypath is based solely on the prefetch strategy,\n // not on data contained in the response.\n const existingEntry = readRevalidatingSegmentCacheEntry(now, tree.varyPath)\n if (existingEntry !== null) {\n return existingEntry\n }\n // Create a pending entry and add it to the cache.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = true\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function overwriteRevalidatingSegmentCacheEntry(\n fetchStrategy: FetchStrategy,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n) {\n // This function is called when we've already decided to replace an existing\n // revalidation entry. Create a new entry and write it into the cache,\n // overwriting the previous value.\n const varyPathForRequest = getSegmentVaryPathForRequest(fetchStrategy, tree)\n const pendingEntry = createDetachedSegmentCacheEntry(route.staleAt)\n const isRevalidation = true\n setInCacheMap(\n segmentCacheMap,\n varyPathForRequest,\n pendingEntry,\n isRevalidation\n )\n return pendingEntry\n}\n\nexport function upsertSegmentEntry(\n now: number,\n varyPath: SegmentVaryPath,\n candidateEntry: SegmentCacheEntry\n): SegmentCacheEntry | null {\n // We have a new entry that has not yet been inserted into the cache. Before\n // we do so, we need to confirm whether it takes precedence over the existing\n // entry (if one exists).\n // TODO: We should not upsert an entry if its key was invalidated in the time\n // since the request was made. We can do that by passing the \"owner\" entry to\n // this function and confirming it's the same as `existingEntry`.\n\n if (isValueExpired(now, getCurrentCacheVersion(), candidateEntry)) {\n // The entry is expired. We cannot upsert it.\n return null\n }\n\n const existingEntry = readSegmentCacheEntry(now, varyPath)\n if (existingEntry !== null) {\n // Don't replace a more specific segment with a less-specific one. A case where this\n // might happen is if the existing segment was fetched via\n // `<Link prefetch={true}>`.\n if (\n // We fetched the new segment using a different, less specific fetch strategy\n // than the segment we already have in the cache, so it can't have more content.\n (candidateEntry.fetchStrategy !== existingEntry.fetchStrategy &&\n !canNewFetchStrategyProvideMoreContent(\n existingEntry.fetchStrategy,\n candidateEntry.fetchStrategy\n )) ||\n // The existing entry isn't partial, but the new one is.\n // (TODO: can this be true if `candidateEntry.fetchStrategy >= existingEntry.fetchStrategy`?)\n (!existingEntry.isPartial && candidateEntry.isPartial)\n ) {\n // We're going to leave revalidating entry in the cache so that it doesn't\n // get revalidated again unnecessarily. Downgrade the Fulfilled entry to\n // Rejected and null out the data so it can be garbage collected. We leave\n // `staleAt` intact to prevent subsequent revalidation attempts only until\n // the entry expires.\n const rejectedEntry: RejectedSegmentCacheEntry = candidateEntry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.loading = null\n rejectedEntry.rsc = null\n return null\n }\n\n // Evict the existing entry from the cache.\n deleteFromCacheMap(existingEntry)\n }\n\n const isRevalidation = false\n setInCacheMap(segmentCacheMap, varyPath, candidateEntry, isRevalidation)\n return candidateEntry\n}\n\nexport function createDetachedSegmentCacheEntry(\n staleAt: number\n): EmptySegmentCacheEntry {\n const emptyEntry: EmptySegmentCacheEntry = {\n status: EntryStatus.Empty,\n // Default to assuming the fetch strategy will be PPR. This will be updated\n // when a fetch is actually initiated.\n fetchStrategy: FetchStrategy.PPR,\n rsc: null,\n loading: null,\n isPartial: true,\n promise: null,\n\n // Map-related fields\n ref: null,\n size: 0,\n staleAt,\n version: 0,\n }\n return emptyEntry\n}\n\nexport function upgradeToPendingSegment(\n emptyEntry: EmptySegmentCacheEntry,\n fetchStrategy: FetchStrategy\n): PendingSegmentCacheEntry {\n const pendingEntry: PendingSegmentCacheEntry = emptyEntry as any\n pendingEntry.status = EntryStatus.Pending\n pendingEntry.fetchStrategy = fetchStrategy\n\n if (fetchStrategy === FetchStrategy.Full) {\n // We can assume the response will contain the full segment data. Set this\n // to false so we know it's OK to omit this segment from any navigation\n // requests that may happen while the data is still pending.\n pendingEntry.isPartial = false\n }\n\n // Set the version here, since this is right before the request is initiated.\n // The next time the global cache version is incremented, the entry will\n // effectively be evicted. This happens before initiating the request, rather\n // than when receiving the response, because it's guaranteed to happen\n // before the data is read on the server.\n pendingEntry.version = getCurrentCacheVersion()\n return pendingEntry\n}\n\nfunction pingBlockedTasks(entry: {\n blockedTasks: Set<PrefetchTask> | null\n}): void {\n const blockedTasks = entry.blockedTasks\n if (blockedTasks !== null) {\n for (const task of blockedTasks) {\n pingPrefetchTask(task)\n }\n entry.blockedTasks = null\n }\n}\n\nfunction fulfillRouteCacheEntry(\n entry: RouteCacheEntry,\n tree: RouteTree,\n metadataVaryPath: PageVaryPath,\n staleAt: number,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n renderedSearch: NormalizedSearch,\n isPPREnabled: boolean\n): FulfilledRouteCacheEntry {\n // The Head is not actually part of the route tree, but other than that, it's\n // fetched and cached like a segment. Some functions expect a RouteTree\n // object, so rather than fork the logic in all those places, we use this\n // \"fake\" one.\n const metadata: RouteTree = {\n requestKey: HEAD_REQUEST_KEY,\n segment: HEAD_REQUEST_KEY,\n varyPath: metadataVaryPath,\n // The metadata isn't really a \"page\" (though it isn't really a \"segment\"\n // either) but for the purposes of how this field is used, it behaves like\n // one. If this logic ever gets more complex we can change this to an enum.\n isPage: true,\n slots: null,\n isRootLayout: false,\n hasLoadingBoundary: HasLoadingBoundary.SubtreeHasNoLoadingBoundary,\n hasRuntimePrefetch: false,\n }\n const fulfilledEntry: FulfilledRouteCacheEntry = entry as any\n fulfilledEntry.status = EntryStatus.Fulfilled\n fulfilledEntry.tree = tree\n fulfilledEntry.metadata = metadata\n fulfilledEntry.staleAt = staleAt\n fulfilledEntry.couldBeIntercepted = couldBeIntercepted\n fulfilledEntry.canonicalUrl = canonicalUrl\n fulfilledEntry.renderedSearch = renderedSearch\n fulfilledEntry.isPPREnabled = isPPREnabled\n pingBlockedTasks(entry)\n return fulfilledEntry\n}\n\nfunction fulfillSegmentCacheEntry(\n segmentCacheEntry: PendingSegmentCacheEntry,\n rsc: React.ReactNode,\n loading: LoadingModuleData | Promise<LoadingModuleData>,\n staleAt: number,\n isPartial: boolean\n): FulfilledSegmentCacheEntry {\n const fulfilledEntry: FulfilledSegmentCacheEntry = segmentCacheEntry as any\n fulfilledEntry.status = EntryStatus.Fulfilled\n fulfilledEntry.rsc = rsc\n fulfilledEntry.loading = loading\n fulfilledEntry.staleAt = staleAt\n fulfilledEntry.isPartial = isPartial\n // Resolve any listeners that were waiting for this data.\n if (segmentCacheEntry.promise !== null) {\n segmentCacheEntry.promise.resolve(fulfilledEntry)\n // Free the promise for garbage collection.\n fulfilledEntry.promise = null\n }\n return fulfilledEntry\n}\n\nfunction rejectRouteCacheEntry(\n entry: PendingRouteCacheEntry,\n staleAt: number\n): void {\n const rejectedEntry: RejectedRouteCacheEntry = entry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.staleAt = staleAt\n pingBlockedTasks(entry)\n}\n\nfunction rejectSegmentCacheEntry(\n entry: PendingSegmentCacheEntry,\n staleAt: number\n): void {\n const rejectedEntry: RejectedSegmentCacheEntry = entry as any\n rejectedEntry.status = EntryStatus.Rejected\n rejectedEntry.staleAt = staleAt\n if (entry.promise !== null) {\n // NOTE: We don't currently propagate the reason the prefetch was canceled\n // but we could by accepting a `reason` argument.\n entry.promise.resolve(null)\n entry.promise = null\n }\n}\n\ntype RouteTreeAccumulator = {\n metadataVaryPath: PageVaryPath | null\n}\n\nfunction convertRootTreePrefetchToRouteTree(\n rootTree: RootTreePrefetch,\n renderedPathname: string,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n) {\n // Remove trailing and leading slashes\n const pathnameParts = renderedPathname.split('/').filter((p) => p !== '')\n const index = 0\n const rootSegment = ROOT_SEGMENT_REQUEST_KEY\n return convertTreePrefetchToRouteTree(\n rootTree.tree,\n rootSegment,\n null,\n ROOT_SEGMENT_REQUEST_KEY,\n pathnameParts,\n index,\n renderedSearch,\n acc\n )\n}\n\nfunction convertTreePrefetchToRouteTree(\n prefetch: TreePrefetch,\n segment: FlightRouterStateSegment,\n partialVaryPath: PartialSegmentVaryPath | null,\n requestKey: SegmentRequestKey,\n pathnameParts: Array<string>,\n pathnamePartsIndex: number,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n // Converts the route tree sent by the server into the format used by the\n // cache. The cached version of the tree includes additional fields, such as a\n // cache key for each segment. Since this is frequently accessed, we compute\n // it once instead of on every access. This same cache key is also used to\n // request the segment from the server.\n\n let slots: { [parallelRouteKey: string]: RouteTree } | null = null\n let isPage: boolean\n let varyPath: SegmentVaryPath\n const prefetchSlots = prefetch.slots\n if (prefetchSlots !== null) {\n isPage = false\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n\n slots = {}\n for (let parallelRouteKey in prefetchSlots) {\n const childPrefetch = prefetchSlots[parallelRouteKey]\n const childParamName = childPrefetch.name\n const childParamType = childPrefetch.paramType\n const childServerSentParamKey = childPrefetch.paramKey\n\n let childDoesAppearInURL: boolean\n let childSegment: FlightRouterStateSegment\n let childPartialVaryPath: PartialSegmentVaryPath | null\n if (childParamType !== null) {\n // This segment is parameterized. Get the param from the pathname.\n const childParamValue = parseDynamicParamFromURLPart(\n childParamType,\n pathnameParts,\n pathnamePartsIndex\n )\n\n // Assign a cache key to the segment, based on the param value. In the\n // pre-Segment Cache implementation, the server computes this and sends\n // it in the body of the response. In the Segment Cache implementation,\n // the server sends an empty string and we fill it in here.\n\n // TODO: We're intentionally not adding the search param to page\n // segments here; it's tracked separately and added back during a read.\n // This would clearer if we waited to construct the segment until it's\n // read from the cache, since that's effectively what we're\n // doing anyway.\n const childParamKey =\n // The server omits this field from the prefetch response when\n // cacheComponents is enabled.\n childServerSentParamKey !== null\n ? childServerSentParamKey\n : // If no param key was sent, use the value parsed on the client.\n getCacheKeyForDynamicParam(\n childParamValue,\n '' as NormalizedSearch\n )\n\n childPartialVaryPath = appendLayoutVaryPath(\n partialVaryPath,\n childParamKey\n )\n childSegment = [childParamName, childParamKey, childParamType]\n childDoesAppearInURL = true\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n childPartialVaryPath = partialVaryPath\n childSegment = childParamName\n childDoesAppearInURL = doesStaticSegmentAppearInURL(childParamName)\n }\n\n // Only increment the index if the segment appears in the URL. If it's a\n // \"virtual\" segment, like a route group, it remains the same.\n const childPathnamePartsIndex = childDoesAppearInURL\n ? pathnamePartsIndex + 1\n : pathnamePartsIndex\n\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment)\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n childRequestKeyPart\n )\n slots[parallelRouteKey] = convertTreePrefetchToRouteTree(\n childPrefetch,\n childSegment,\n childPartialVaryPath,\n childRequestKey,\n pathnameParts,\n childPathnamePartsIndex,\n renderedSearch,\n acc\n )\n }\n } else {\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true\n varyPath = finalizePageVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n }\n } else {\n // This is a layout segment.\n isPage = false\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n }\n }\n\n return {\n requestKey,\n segment,\n varyPath,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n isPage: isPage as boolean as any,\n slots,\n isRootLayout: prefetch.isRootLayout,\n // This field is only relevant to dynamic routes. For a PPR/static route,\n // there's always some partial loading state we can fetch.\n hasLoadingBoundary: HasLoadingBoundary.SegmentHasLoadingBoundary,\n hasRuntimePrefetch: prefetch.hasRuntimePrefetch,\n }\n}\n\nfunction convertRootFlightRouterStateToRouteTree(\n flightRouterState: FlightRouterState,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n return convertFlightRouterStateToRouteTree(\n flightRouterState,\n ROOT_SEGMENT_REQUEST_KEY,\n null,\n renderedSearch,\n acc\n )\n}\n\nfunction convertFlightRouterStateToRouteTree(\n flightRouterState: FlightRouterState,\n requestKey: SegmentRequestKey,\n parentPartialVaryPath: PartialSegmentVaryPath | null,\n renderedSearch: NormalizedSearch,\n acc: RouteTreeAccumulator\n): RouteTree {\n const originalSegment = flightRouterState[0]\n\n let segment: FlightRouterStateSegment\n let partialVaryPath: PartialSegmentVaryPath | null\n let isPage: boolean\n let varyPath: SegmentVaryPath\n if (Array.isArray(originalSegment)) {\n isPage = false\n const paramCacheKey = originalSegment[1]\n partialVaryPath = appendLayoutVaryPath(parentPartialVaryPath, paramCacheKey)\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n segment = originalSegment\n } else {\n // This segment does not have a param. Inherit the partial vary path of\n // the parent.\n partialVaryPath = parentPartialVaryPath\n if (requestKey.endsWith(PAGE_SEGMENT_KEY)) {\n // This is a page segment.\n isPage = true\n\n // The navigation implementation expects the search params to be included\n // in the segment. However, in the case of a static response, the search\n // params are omitted. So the client needs to add them back in when reading\n // from the Segment Cache.\n //\n // For consistency, we'll do this for dynamic responses, too.\n //\n // TODO: We should move search params out of FlightRouterState and handle\n // them entirely on the client, similar to our plan for dynamic params.\n segment = PAGE_SEGMENT_KEY\n varyPath = finalizePageVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n // The metadata \"segment\" is not part the route tree, but it has the same\n // conceptual params as a page segment. Write the vary path into the\n // accumulator object. If there are multiple parallel pages, we use the\n // first one. Which page we choose is arbitrary as long as it's\n // consistently the same one every time every time. See\n // finalizeMetadataVaryPath for more details.\n if (acc.metadataVaryPath === null) {\n acc.metadataVaryPath = finalizeMetadataVaryPath(\n requestKey,\n renderedSearch,\n partialVaryPath\n )\n }\n } else {\n // This is a layout segment.\n isPage = false\n segment = originalSegment\n varyPath = finalizeLayoutVaryPath(requestKey, partialVaryPath)\n }\n }\n\n let slots: { [parallelRouteKey: string]: RouteTree } | null = null\n\n const parallelRoutes = flightRouterState[1]\n for (let parallelRouteKey in parallelRoutes) {\n const childRouterState = parallelRoutes[parallelRouteKey]\n const childSegment = childRouterState[0]\n // TODO: Eventually, the param values will not be included in the response\n // from the server. We'll instead fill them in on the client by parsing\n // the URL. This is where we'll do that.\n const childRequestKeyPart = createSegmentRequestKeyPart(childSegment)\n const childRequestKey = appendSegmentRequestKeyPart(\n requestKey,\n parallelRouteKey,\n childRequestKeyPart\n )\n const childTree = convertFlightRouterStateToRouteTree(\n childRouterState,\n childRequestKey,\n partialVaryPath,\n renderedSearch,\n acc\n )\n if (slots === null) {\n slots = {\n [parallelRouteKey]: childTree,\n }\n } else {\n slots[parallelRouteKey] = childTree\n }\n }\n\n return {\n requestKey,\n segment,\n varyPath,\n // TODO: Cheating the type system here a bit because TypeScript can't tell\n // that the type of isPage and varyPath are consistent. The fix would be to\n // create separate constructors and call the appropriate one from each of\n // the branches above. Just seems a bit overkill only for one field so I'll\n // leave it as-is for now. If isPage were wrong it would break the behavior\n // and we'd catch it quickly, anyway.\n isPage: isPage as boolean as any,\n slots,\n isRootLayout: flightRouterState[4] === true,\n hasLoadingBoundary:\n flightRouterState[5] !== undefined\n ? flightRouterState[5]\n : HasLoadingBoundary.SubtreeHasNoLoadingBoundary,\n\n // Non-static tree responses are only used by apps that haven't adopted\n // Cache Components. So this is always false.\n hasRuntimePrefetch: false,\n }\n}\n\nexport function convertRouteTreeToFlightRouterState(\n routeTree: RouteTree\n): FlightRouterState {\n const parallelRoutes: Record<string, FlightRouterState> = {}\n if (routeTree.slots !== null) {\n for (const parallelRouteKey in routeTree.slots) {\n parallelRoutes[parallelRouteKey] = convertRouteTreeToFlightRouterState(\n routeTree.slots[parallelRouteKey]\n )\n }\n }\n const flightRouterState: FlightRouterState = [\n routeTree.segment,\n parallelRoutes,\n null,\n null,\n routeTree.isRootLayout,\n ]\n return flightRouterState\n}\n\nexport async function fetchRouteOnCacheMiss(\n entry: PendingRouteCacheEntry,\n task: PrefetchTask,\n key: RouteCacheKey\n): Promise<PrefetchSubtaskResult<null> | null> {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n const pathname = key.pathname\n const search = key.search\n const nextUrl = key.nextUrl\n const segmentPath = '/_tree' as SegmentRequestKey\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: segmentPath,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n\n try {\n const url = new URL(pathname + search, location.origin)\n let response\n let urlAfterRedirects\n if (isOutputExportMode) {\n // In output: \"export\" mode, we can't use headers to request a particular\n // segment. Instead, we encode the extra request information into the URL.\n // This is not part of the \"public\" interface of the app; it's an internal\n // Next.js implementation detail that the app developer should not need to\n // concern themselves with.\n //\n // For example, to request a segment:\n //\n // Path passed to <Link>: /path/to/page\n // Path passed to fetch: /path/to/page/__next-segments/_tree\n //\n // (This is not the exact protocol, just an illustration.)\n //\n // Before we do that, though, we need to account for redirects. Even in\n // output: \"export\" mode, a proxy might redirect the page to a different\n // location, but we shouldn't assume or expect that they also redirect all\n // the segment files, too.\n //\n // To check whether the page is redirected, previously we perform a range\n // request of 64 bytes of the HTML document to check if the target page\n // is part of this app (by checking if build id matches). Only if the target\n // page is part of this app do we determine the final canonical URL.\n //\n // However, as mentioned in https://github.com/vercel/next.js/pull/85903,\n // some popular static hosting providers (like Cloudflare Pages or Render.com)\n // do not support range requests, in the worst case, the entire HTML instead\n // of 64 bytes could be returned, which is wasteful.\n //\n // So instead, we drops the check for build id here, and simply perform\n // a HEAD request to rejects 1xx/4xx/5xx responses, and then determine the\n // final URL after redirects.\n //\n // NOTE: We could embed the route tree into the HTML document, to avoid\n // a second request. We're not doing that currently because it would make\n // the HTML document larger and affect normal page loads.\n const headResponse = await fetch(url, {\n method: 'HEAD',\n })\n if (headResponse.status < 200 || headResponse.status >= 400) {\n // The target page responded w/o a successful status code\n // Could be a WAF serving a 403, or a 5xx from a backend\n //\n // Note that we can't use headResponse.ok here, because\n // Response#ok returns `false` with 3xx responses.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n urlAfterRedirects = headResponse.redirected\n ? new URL(headResponse.url)\n : url\n\n response = await fetchPrefetchResponse(\n addSegmentPathToUrlInOutputExportMode(urlAfterRedirects, segmentPath),\n headers\n )\n } else {\n // \"Server\" mode. We can use request headers instead of the pathname.\n // TODO: The eventual plan is to get rid of our custom request headers and\n // encode everything into the URL, using a similar strategy to the\n // \"output: export\" block above.\n response = await fetchPrefetchResponse(url, headers)\n urlAfterRedirects =\n response !== null && response.redirected ? new URL(response.url) : url\n }\n\n if (\n !response ||\n !response.ok ||\n // 204 is a Cache miss. Though theoretically this shouldn't happen when\n // PPR is enabled, because we always respond to route tree requests, even\n // if it needs to be blockingly generated on demand.\n response.status === 204 ||\n !response.body\n ) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // TODO: The canonical URL is the href without the origin. I think\n // historically the reason for this is because the initial canonical URL\n // gets passed as a prop to the top-level React component, which means it\n // needs to be computed during SSR. If it were to include the origin, it\n // would need to always be same as location.origin on the client, to prevent\n // a hydration mismatch. To sidestep this complexity, we omit the origin.\n //\n // However, since this is neither a native URL object nor a fully qualified\n // URL string, we need to be careful about how we use it. To prevent subtle\n // mistakes, we should create a special type for it, instead of just string.\n // Or, we should just use a (readonly) URL object instead. The type of the\n // prop that we pass to seed the initial state does not need to be the same\n // type as the state itself.\n const canonicalUrl = createHrefFromUrl(urlAfterRedirects)\n\n // Check whether the response varies based on the Next-Url header.\n const varyHeader = response.headers.get('vary')\n const couldBeIntercepted =\n varyHeader !== null && varyHeader.includes(NEXT_URL)\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers<void>()\n\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route.\n const routeIsPPREnabled =\n response.headers.get(NEXT_DID_POSTPONE_HEADER) === '2' ||\n // In output: \"export\" mode, we can't rely on response headers. But if we\n // receive a well-formed response, we can assume it's a static response,\n // because all data is static in this mode.\n isOutputExportMode\n\n if (routeIsPPREnabled) {\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(entry, size)\n }\n )\n const serverData = await createFromNextReadableStream<RootTreePrefetch>(\n prefetchStream,\n headers\n )\n if (serverData.buildId !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n // Get the params that were used to render the target page. These may\n // be different from the params in the request URL, if the page\n // was rewritten.\n const renderedPathname = getRenderedPathname(response)\n const renderedSearch = getRenderedSearch(response)\n\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc: RouteTreeAccumulator = { metadataVaryPath: null }\n const routeTree = convertRootTreePrefetchToRouteTree(\n serverData,\n renderedPathname,\n renderedSearch,\n acc\n )\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n const staleTimeMs = getStaleTimeMs(serverData.staleTime)\n fulfillRouteCacheEntry(\n entry,\n routeTree,\n metadataVaryPath,\n Date.now() + staleTimeMs,\n couldBeIntercepted,\n canonicalUrl,\n renderedSearch,\n routeIsPPREnabled\n )\n } else {\n // PPR is not enabled for this route. The server responds with a\n // different format (FlightRouterState) that we need to convert.\n // TODO: We will unify the responses eventually. I'm keeping the types\n // separate for now because FlightRouterState has so many\n // overloaded concerns.\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(entry, size)\n }\n )\n const serverData =\n await createFromNextReadableStream<NavigationFlightResponse>(\n prefetchStream,\n headers\n )\n if (serverData.b !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n // TODO: We should cache the fact that this is an MPA navigation.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n\n writeDynamicTreeResponseIntoCache(\n Date.now(),\n task,\n // The non-PPR response format is what we'd get if we prefetched these segments\n // using the LoadingBoundary fetch strategy, so mark their cache entries accordingly.\n FetchStrategy.LoadingBoundary,\n response as RSCResponse<NavigationFlightResponse>,\n serverData,\n entry,\n couldBeIntercepted,\n canonicalUrl,\n routeIsPPREnabled\n )\n }\n\n if (!couldBeIntercepted) {\n // This route will never be intercepted. So we can use this entry for all\n // requests to this route, regardless of the Next-Url header. This works\n // because when reading the cache we always check for a valid\n // non-intercepted entry first.\n\n // Re-key the entry. The `set` implementation handles removing it from\n // its previous position in the cache. We don't need to do anything to\n // update the LRU, because the entry is already in it.\n // TODO: Treat this as an upsert — should check if an entry already\n // exists at the new keypath, and if so, whether we should keep that\n // one instead.\n const fulfilledVaryPath: RouteVaryPath = getFulfilledRouteVaryPath(\n pathname,\n search,\n nextUrl,\n couldBeIntercepted\n )\n const isRevalidation = false\n setInCacheMap(routeCacheMap, fulfilledVaryPath, entry, isRevalidation)\n }\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return { value: null, closed: closed.promise }\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectRouteCacheEntry(entry, Date.now() + 10 * 1000)\n return null\n }\n}\n\nexport async function fetchSegmentOnCacheMiss(\n route: FulfilledRouteCacheEntry,\n segmentCacheEntry: PendingSegmentCacheEntry,\n routeKey: RouteCacheKey,\n tree: RouteTree\n): Promise<PrefetchSubtaskResult<FulfilledSegmentCacheEntry> | null> {\n // This function is allowed to use async/await because it contains the actual\n // fetch that gets issued on a cache miss. Notice it writes the result to the\n // cache entry directly, rather than return data that is then written by\n // the caller.\n //\n // Segment fetches are non-blocking so we don't need to ping the scheduler\n // on completion.\n\n // Use the canonical URL to request the segment, not the original URL. These\n // are usually the same, but the canonical URL will be different if the route\n // tree response was redirected. To avoid an extra waterfall on every segment\n // request, we pass the redirected URL instead of the original one.\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = routeKey.nextUrl\n\n const requestKey = tree.requestKey\n const normalizedRequestKey =\n requestKey === ROOT_SEGMENT_REQUEST_KEY\n ? // The root segment is a special case. To simplify the server-side\n // handling of these requests, we encode the root segment path as\n // `_index` instead of as an empty string. This should be treated as\n // an implementation detail and not as a stable part of the protocol.\n // It just needs to match the equivalent logic that happens when\n // prerendering the responses. It should not leak outside of Next.js.\n ('/_index' as SegmentRequestKey)\n : requestKey\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_PREFETCH_HEADER]: '1',\n [NEXT_ROUTER_SEGMENT_PREFETCH_HEADER]: normalizedRequestKey,\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n\n const requestUrl = isOutputExportMode\n ? // In output: \"export\" mode, we need to add the segment path to the URL.\n addSegmentPathToUrlInOutputExportMode(url, normalizedRequestKey)\n : url\n try {\n const response = await fetchPrefetchResponse(requestUrl, headers)\n if (\n !response ||\n !response.ok ||\n response.status === 204 || // Cache miss\n // This checks whether the response was served from the per-segment cache,\n // rather than the old prefetching flow. If it fails, it implies that PPR\n // is disabled on this route. Theoretically this should never happen\n // because we only issue requests for segments once we've verified that\n // the route supports PPR.\n (response.headers.get(NEXT_DID_POSTPONE_HEADER) !== '2' &&\n // In output: \"export\" mode, we can't rely on response headers. But if\n // we receive a well-formed response, we can assume it's a static\n // response, because all data is static in this mode.\n !isOutputExportMode) ||\n !response.body\n ) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers<void>()\n\n // Wrap the original stream in a new stream that never closes. That way the\n // Flight client doesn't error if there's a hanging promise.\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(size) {\n setSizeInCacheMap(segmentCacheEntry, size)\n }\n )\n const serverData = await (createFromNextReadableStream(\n prefetchStream,\n headers\n ) as Promise<SegmentPrefetch>)\n if (serverData.buildId !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n return {\n value: fulfillSegmentCacheEntry(\n segmentCacheEntry,\n serverData.rsc,\n serverData.loading,\n // TODO: The server does not currently provide per-segment stale time.\n // So we use the stale time of the route.\n route.staleAt,\n serverData.isPartial\n ),\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n closed: closed.promise,\n }\n } catch (error) {\n // Either the connection itself failed, or something bad happened while\n // decoding the response.\n rejectSegmentCacheEntry(segmentCacheEntry, Date.now() + 10 * 1000)\n return null\n }\n}\n\nexport async function fetchSegmentPrefetchesUsingDynamicRequest(\n task: PrefetchTask,\n route: FulfilledRouteCacheEntry,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n dynamicRequestTree: FlightRouterState,\n spawnedEntries: Map<SegmentRequestKey, PendingSegmentCacheEntry>\n): Promise<PrefetchSubtaskResult<null> | null> {\n const key = task.key\n const url = new URL(route.canonicalUrl, location.origin)\n const nextUrl = key.nextUrl\n\n if (\n spawnedEntries.size === 1 &&\n spawnedEntries.has(route.metadata.requestKey)\n ) {\n // The only thing pending is the head. Instruct the server to\n // skip over everything else.\n dynamicRequestTree = MetadataOnlyRequestTree\n }\n\n const headers: RequestHeaders = {\n [RSC_HEADER]: '1',\n [NEXT_ROUTER_STATE_TREE_HEADER]:\n prepareFlightRouterStateForRequest(dynamicRequestTree),\n }\n if (nextUrl !== null) {\n headers[NEXT_URL] = nextUrl\n }\n switch (fetchStrategy) {\n case FetchStrategy.Full: {\n // We omit the prefetch header from a full prefetch because it's essentially\n // just a navigation request that happens ahead of time — it should include\n // all the same data in the response.\n break\n }\n case FetchStrategy.PPRRuntime: {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '2'\n break\n }\n case FetchStrategy.LoadingBoundary: {\n headers[NEXT_ROUTER_PREFETCH_HEADER] = '1'\n break\n }\n default: {\n fetchStrategy satisfies never\n }\n }\n\n try {\n const response = await fetchPrefetchResponse(url, headers)\n if (!response || !response.ok || !response.body) {\n // Server responded with an error, or with a miss. We should still cache\n // the response, but we can try again after 10 seconds.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n const renderedSearch = getRenderedSearch(response)\n if (renderedSearch !== route.renderedSearch) {\n // The search params that were used to render the target page are\n // different from the search params in the request URL. This only happens\n // when there's a dynamic rewrite in between the tree prefetch and the\n // data prefetch.\n // TODO: For now, since this is an edge case, we reject the prefetch, but\n // the proper way to handle this is to evict the stale route tree entry\n // then fill the cache with the new response.\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n\n // Track when the network connection closes.\n const closed = createPromiseWithResolvers<void>()\n\n let fulfilledEntries: Array<FulfilledSegmentCacheEntry> | null = null\n const prefetchStream = createPrefetchResponseStream(\n response.body,\n closed.resolve,\n function onResponseSizeUpdate(totalBytesReceivedSoFar) {\n // When processing a dynamic response, we don't know how large each\n // individual segment is, so approximate by assiging each segment\n // the average of the total response size.\n if (fulfilledEntries === null) {\n // Haven't received enough data yet to know which segments\n // were included.\n return\n }\n const averageSize = totalBytesReceivedSoFar / fulfilledEntries.length\n for (const entry of fulfilledEntries) {\n setSizeInCacheMap(entry, averageSize)\n }\n }\n )\n const serverData = await (createFromNextReadableStream(\n prefetchStream,\n headers\n ) as Promise<NavigationFlightResponse>)\n\n const isResponsePartial =\n fetchStrategy === FetchStrategy.PPRRuntime\n ? // A runtime prefetch may have holes.\n serverData.rp?.[0] === true\n : // Full and LoadingBoundary prefetches cannot have holes.\n // (even if we did set the prefetch header, we only use this codepath for non-PPR-enabled routes)\n false\n\n // Aside from writing the data into the cache, this function also returns\n // the entries that were fulfilled, so we can streamingly update their sizes\n // in the LRU as more data comes in.\n fulfilledEntries = writeDynamicRenderResponseIntoCache(\n Date.now(),\n task,\n fetchStrategy,\n response as RSCResponse<NavigationFlightResponse>,\n serverData,\n isResponsePartial,\n route,\n spawnedEntries\n )\n\n // Return a promise that resolves when the network connection closes, so\n // the scheduler can track the number of concurrent network connections.\n return { value: null, closed: closed.promise }\n } catch (error) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, Date.now() + 10 * 1000)\n return null\n }\n}\n\nfunction writeDynamicTreeResponseIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n response: RSCResponse<NavigationFlightResponse>,\n serverData: NavigationFlightResponse,\n entry: PendingRouteCacheEntry,\n couldBeIntercepted: boolean,\n canonicalUrl: string,\n routeIsPPREnabled: boolean\n) {\n // Get the URL that was used to render the target page. This may be different\n // from the URL in the request URL, if the page was rewritten.\n const renderedSearch = getRenderedSearch(response)\n\n const normalizedFlightDataResult = normalizeFlightData(serverData.f)\n if (\n // A string result means navigating to this route will result in an\n // MPA navigation.\n typeof normalizedFlightDataResult === 'string' ||\n normalizedFlightDataResult.length !== 1\n ) {\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n const flightData = normalizedFlightDataResult[0]\n if (!flightData.isRootRender) {\n // Unexpected response format.\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n\n const flightRouterState = flightData.tree\n // For runtime prefetches, stale time is in the payload at rp[1].\n // For other responses, fall back to the header.\n const staleTimeSeconds =\n typeof serverData.rp?.[1] === 'number'\n ? serverData.rp[1]\n : parseInt(response.headers.get(NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10)\n const staleTimeMs = !isNaN(staleTimeSeconds)\n ? getStaleTimeMs(staleTimeSeconds)\n : STATIC_STALETIME_MS\n\n // If the response contains dynamic holes, then we must conservatively assume\n // that any individual segment might contain dynamic holes, and also the\n // head. If it did not contain dynamic holes, then we can assume every segment\n // and the head is completely static.\n const isResponsePartial =\n response.headers.get(NEXT_DID_POSTPONE_HEADER) === '1'\n\n // Convert the server-sent data into the RouteTree format used by the\n // client cache.\n //\n // During this traversal, we accumulate additional data into this\n // \"accumulator\" object.\n const acc: RouteTreeAccumulator = { metadataVaryPath: null }\n const routeTree = convertRootFlightRouterStateToRouteTree(\n flightRouterState,\n renderedSearch,\n acc\n )\n const metadataVaryPath = acc.metadataVaryPath\n if (metadataVaryPath === null) {\n rejectRouteCacheEntry(entry, now + 10 * 1000)\n return\n }\n\n const fulfilledEntry = fulfillRouteCacheEntry(\n entry,\n routeTree,\n metadataVaryPath,\n now + staleTimeMs,\n couldBeIntercepted,\n canonicalUrl,\n renderedSearch,\n routeIsPPREnabled\n )\n\n // If the server sent segment data as part of the response, we should write\n // it into the cache to prevent a second, redundant prefetch request.\n //\n // TODO: When `clientSegmentCache` is enabled, the server does not include\n // segment data when responding to a route tree prefetch request. However,\n // when `clientSegmentCache` is set to \"client-only\", and PPR is enabled (or\n // the page is fully static), the normal check is bypassed and the server\n // responds with the full page. This is a temporary situation until we can\n // remove the \"client-only\" option. Then, we can delete this function call.\n writeDynamicRenderResponseIntoCache(\n now,\n task,\n fetchStrategy,\n response,\n serverData,\n isResponsePartial,\n fulfilledEntry,\n null\n )\n}\n\nfunction rejectSegmentEntriesIfStillPending(\n entries: Map<SegmentRequestKey, SegmentCacheEntry>,\n staleAt: number\n): Array<FulfilledSegmentCacheEntry> {\n const fulfilledEntries = []\n for (const entry of entries.values()) {\n if (entry.status === EntryStatus.Pending) {\n rejectSegmentCacheEntry(entry, staleAt)\n } else if (entry.status === EntryStatus.Fulfilled) {\n fulfilledEntries.push(entry)\n }\n }\n return fulfilledEntries\n}\n\nfunction writeDynamicRenderResponseIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n response: RSCResponse<NavigationFlightResponse>,\n serverData: NavigationFlightResponse,\n isResponsePartial: boolean,\n route: FulfilledRouteCacheEntry,\n spawnedEntries: Map<SegmentRequestKey, PendingSegmentCacheEntry> | null\n): Array<FulfilledSegmentCacheEntry> | null {\n if (serverData.b !== getAppBuildId()) {\n // The server build does not match the client. Treat as a 404. During\n // an actual navigation, the router will trigger an MPA navigation.\n // TODO: Consider moving the build ID to a response header so we can check\n // it before decoding the response, and so there's one way of checking\n // across all response types.\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000)\n }\n return null\n }\n\n const flightDatas = normalizeFlightData(serverData.f)\n if (typeof flightDatas === 'string') {\n // This means navigating to this route will result in an MPA navigation.\n // TODO: We should cache this, too, so that the MPA navigation is immediate.\n return null\n }\n\n // For runtime prefetches, stale time is in the payload at rp[1].\n // For other responses, fall back to the header.\n const staleTimeSeconds =\n typeof serverData.rp?.[1] === 'number'\n ? serverData.rp[1]\n : parseInt(response.headers.get(NEXT_ROUTER_STALE_TIME_HEADER) ?? '', 10)\n const staleTimeMs = !isNaN(staleTimeSeconds)\n ? getStaleTimeMs(staleTimeSeconds)\n : STATIC_STALETIME_MS\n const staleAt = now + staleTimeMs\n\n for (const flightData of flightDatas) {\n const seedData = flightData.seedData\n if (seedData !== null) {\n // The data sent by the server represents only a subtree of the app. We\n // need to find the part of the task tree that matches the response.\n //\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n const segmentPath = flightData.segmentPath\n let tree = route.tree\n for (let i = 0; i < segmentPath.length; i += 2) {\n const parallelRouteKey: string = segmentPath[i]\n if (tree?.slots?.[parallelRouteKey] !== undefined) {\n tree = tree.slots[parallelRouteKey]\n } else {\n if (spawnedEntries !== null) {\n rejectSegmentEntriesIfStillPending(spawnedEntries, now + 10 * 1000)\n }\n return null\n }\n }\n\n writeSeedDataIntoCache(\n now,\n task,\n fetchStrategy,\n route,\n tree,\n staleAt,\n seedData,\n isResponsePartial,\n spawnedEntries\n )\n }\n\n const head = flightData.head\n if (head !== null) {\n fulfillEntrySpawnedByRuntimePrefetch(\n now,\n fetchStrategy,\n route,\n head,\n null,\n flightData.isHeadPartial,\n staleAt,\n route.metadata,\n spawnedEntries\n )\n }\n }\n // Any entry that's still pending was intentionally not rendered by the\n // server, because it was inside the loading boundary. Mark them as rejected\n // so we know not to fetch them again.\n // TODO: If PPR is enabled on some routes but not others, then it's possible\n // that a different page is able to do a per-segment prefetch of one of the\n // segments we're marking as rejected here. We should mark on the segment\n // somehow that the reason for the rejection is because of a non-PPR prefetch.\n // That way a per-segment prefetch knows to disregard the rejection.\n if (spawnedEntries !== null) {\n const fulfilledEntries = rejectSegmentEntriesIfStillPending(\n spawnedEntries,\n now + 10 * 1000\n )\n return fulfilledEntries\n }\n return null\n}\n\nfunction writeSeedDataIntoCache(\n now: number,\n task: PrefetchTask,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree,\n staleAt: number,\n seedData: CacheNodeSeedData,\n isResponsePartial: boolean,\n entriesOwnedByCurrentTask: Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n > | null\n) {\n // This function is used to write the result of a runtime server request\n // (CacheNodeSeedData) into the prefetch cache.\n const rsc = seedData[0]\n const loading = seedData[2]\n const isPartial = rsc === null || isResponsePartial\n fulfillEntrySpawnedByRuntimePrefetch(\n now,\n fetchStrategy,\n route,\n rsc,\n loading,\n isPartial,\n staleAt,\n tree,\n entriesOwnedByCurrentTask\n )\n\n // Recursively write the child data into the cache.\n const slots = tree.slots\n if (slots !== null) {\n const seedDataChildren = seedData[1]\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n const childSeedData: CacheNodeSeedData | null | void =\n seedDataChildren[parallelRouteKey]\n if (childSeedData !== null && childSeedData !== undefined) {\n writeSeedDataIntoCache(\n now,\n task,\n fetchStrategy,\n route,\n childTree,\n staleAt,\n childSeedData,\n isResponsePartial,\n entriesOwnedByCurrentTask\n )\n }\n }\n }\n}\n\nfunction fulfillEntrySpawnedByRuntimePrefetch(\n now: number,\n fetchStrategy:\n | FetchStrategy.LoadingBoundary\n | FetchStrategy.PPRRuntime\n | FetchStrategy.Full,\n route: FulfilledRouteCacheEntry,\n rsc: React.ReactNode,\n loading: LoadingModuleData | Promise<LoadingModuleData>,\n isPartial: boolean,\n staleAt: number,\n tree: RouteTree,\n entriesOwnedByCurrentTask: Map<\n SegmentRequestKey,\n PendingSegmentCacheEntry\n > | null\n) {\n // We should only write into cache entries that are owned by us. Or create\n // a new one and write into that. We must never write over an entry that was\n // created by a different task, because that causes data races.\n const ownedEntry =\n entriesOwnedByCurrentTask !== null\n ? entriesOwnedByCurrentTask.get(tree.requestKey)\n : undefined\n if (ownedEntry !== undefined) {\n fulfillSegmentCacheEntry(ownedEntry, rsc, loading, staleAt, isPartial)\n } else {\n // There's no matching entry. Attempt to create a new one.\n const possiblyNewEntry = readOrCreateSegmentCacheEntry(\n now,\n fetchStrategy,\n route,\n tree\n )\n if (possiblyNewEntry.status === EntryStatus.Empty) {\n // Confirmed this is a new entry. We can fulfill it.\n const newEntry = possiblyNewEntry\n fulfillSegmentCacheEntry(\n upgradeToPendingSegment(newEntry, fetchStrategy),\n rsc,\n loading,\n staleAt,\n isPartial\n )\n } else {\n // There was already an entry in the cache. But we may be able to\n // replace it with the new one from the server.\n const newEntry = fulfillSegmentCacheEntry(\n upgradeToPendingSegment(\n createDetachedSegmentCacheEntry(staleAt),\n fetchStrategy\n ),\n rsc,\n loading,\n staleAt,\n isPartial\n )\n upsertSegmentEntry(\n now,\n getSegmentVaryPathForRequest(fetchStrategy, tree),\n newEntry\n )\n }\n }\n}\n\nasync function fetchPrefetchResponse<T>(\n url: URL,\n headers: RequestHeaders\n): Promise<RSCResponse<T> | null> {\n const fetchPriority = 'low'\n // When issuing a prefetch request, don't immediately decode the response; we\n // use the lower level `createFromResponse` API instead because we need to do\n // some extra processing of the response stream. See\n // `createPrefetchResponseStream` for more details.\n const shouldImmediatelyDecode = false\n const response = await createFetch<T>(\n url,\n headers,\n fetchPriority,\n shouldImmediatelyDecode\n )\n if (!response.ok) {\n return null\n }\n\n // Check the content type\n if (isOutputExportMode) {\n // In output: \"export\" mode, we relaxed about the content type, since it's\n // not Next.js that's serving the response. If the status is OK, assume the\n // response is valid. If it's not a valid response, the Flight client won't\n // be able to decode it, and we'll treat it as a miss.\n } else {\n const contentType = response.headers.get('content-type')\n const isFlightResponse =\n contentType && contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n if (!isFlightResponse) {\n return null\n }\n }\n return response\n}\n\nfunction createPrefetchResponseStream(\n originalFlightStream: ReadableStream<Uint8Array>,\n onStreamClose: () => void,\n onResponseSizeUpdate: (size: number) => void\n): ReadableStream<Uint8Array> {\n // When PPR is enabled, prefetch streams may contain references that never\n // resolve, because that's how we encode dynamic data access. In the decoded\n // object returned by the Flight client, these are reified into hanging\n // promises that suspend during render, which is effectively what we want.\n // The UI resolves when it switches to the dynamic data stream\n // (via useDeferredValue(dynamic, static)).\n //\n // However, the Flight implementation currently errors if the server closes\n // the response before all the references are resolved. As a cheat to work\n // around this, we wrap the original stream in a new stream that never closes,\n // and therefore doesn't error.\n //\n // While processing the original stream, we also incrementally update the size\n // of the cache entry in the LRU.\n let totalByteLength = 0\n const reader = originalFlightStream.getReader()\n return new ReadableStream({\n async pull(controller) {\n while (true) {\n const { done, value } = await reader.read()\n if (!done) {\n // Pass to the target stream and keep consuming the Flight response\n // from the server.\n controller.enqueue(value)\n\n // Incrementally update the size of the cache entry in the LRU.\n // NOTE: Since prefetch responses are delivered in a single chunk,\n // it's not really necessary to do this streamingly, but I'm doing it\n // anyway in case this changes in the future.\n totalByteLength += value.byteLength\n onResponseSizeUpdate(totalByteLength)\n continue\n }\n // The server stream has closed. Exit, but intentionally do not close\n // the target stream. We do notify the caller, though.\n onStreamClose()\n return\n }\n },\n })\n}\n\nfunction addSegmentPathToUrlInOutputExportMode(\n url: URL,\n segmentPath: SegmentRequestKey\n): URL {\n if (isOutputExportMode) {\n // In output: \"export\" mode, we cannot use a header to encode the segment\n // path. Instead, we append it to the end of the pathname.\n const staticUrl = new URL(url)\n const routeDir = staticUrl.pathname.endsWith('/')\n ? staticUrl.pathname.slice(0, -1)\n : staticUrl.pathname\n const staticExportFilename =\n convertSegmentPathToStaticExportFilename(segmentPath)\n staticUrl.pathname = `${routeDir}/${staticExportFilename}`\n return staticUrl\n }\n return url\n}\n\n/**\n * Checks whether the new fetch strategy is likely to provide more content than the old one.\n *\n * Generally, when an app uses dynamic data, a \"more specific\" fetch strategy is expected to provide more content:\n * - `LoadingBoundary` only provides static layouts\n * - `PPR` can provide shells for each segment (even for segments that use dynamic data)\n * - `PPRRuntime` can additionally include content that uses searchParams, params, or cookies\n * - `Full` includes all the content, even if it uses dynamic data\n *\n * However, it's possible that a more specific fetch strategy *won't* give us more content if:\n * - a segment is fully static\n * (then, `PPR`/`PPRRuntime`/`Full` will all yield equivalent results)\n * - providing searchParams/params/cookies doesn't reveal any more content, e.g. because of an `await connection()`\n * (then, `PPR` and `PPRRuntime` will yield equivalent results, only `Full` will give us more)\n * Because of this, when comparing two segments, we should also check if the existing segment is partial.\n * If it's not partial, then there's no need to prefetch it again, even using a \"more specific\" strategy.\n * There's currently no way to know if `PPRRuntime` will yield more data that `PPR`, so we have to assume it will.\n *\n * Also note that, in practice, we don't expect to be comparing `LoadingBoundary` to `PPR`/`PPRRuntime`,\n * because a non-PPR-enabled route wouldn't ever use the latter strategies. It might however use `Full`.\n */\nexport function canNewFetchStrategyProvideMoreContent(\n currentStrategy: FetchStrategy,\n newStrategy: FetchStrategy\n): boolean {\n return currentStrategy < newStrategy\n}\n"],"names":["EntryStatus","canNewFetchStrategyProvideMoreContent","convertRouteTreeToFlightRouterState","createDetachedSegmentCacheEntry","fetchRouteOnCacheMiss","fetchSegmentOnCacheMiss","fetchSegmentPrefetchesUsingDynamicRequest","getCurrentCacheVersion","getStaleTimeMs","overwriteRevalidatingSegmentCacheEntry","pingInvalidationListeners","readOrCreateRevalidatingSegmentEntry","readOrCreateRouteCacheEntry","readOrCreateSegmentCacheEntry","readRouteCacheEntry","readSegmentCacheEntry","requestOptimisticRouteCacheEntry","revalidateEntireCache","upgradeToPendingSegment","upsertSegmentEntry","waitForSegmentCacheEntry","staleTimeSeconds","Math","max","isOutputExportMode","process","env","NODE_ENV","__NEXT_CONFIG_OUTPUT","MetadataOnlyRequestTree","routeCacheMap","createCacheMap","segmentCacheMap","invalidationListeners","currentCacheVersion","nextUrl","tree","startRevalidationCooldown","pingVisibleLinks","attachInvalidationListener","task","onInvalidate","Set","add","notifyInvalidationListener","error","reportError","console","tasks","isPrefetchTaskDirty","now","key","varyPath","getRouteVaryPath","pathname","search","isRevalidation","getFromCacheMap","readRevalidatingSegmentCacheEntry","pendingEntry","promiseWithResolvers","promise","createPromiseWithResolvers","existingEntry","canonicalUrl","status","blockedTasks","metadata","couldBeIntercepted","isPPREnabled","renderedSearch","ref","size","staleAt","Infinity","version","setInCacheMap","requestedUrl","requestedSearch","urlWithoutSearchParams","URL","routeWithNoSearchParams","createPrefetchRequestKey","href","canonicalUrlForRouteWithNoSearchParams","origin","optimisticCanonicalSearch","optimisticRenderedSearch","optimisticUrl","location","optimisticCanonicalUrl","createHrefFromUrl","optimisticRouteTree","createOptimisticRouteTree","optimisticMetadataTree","optimisticEntry","newRenderedSearch","clonedSlots","originalSlots","slots","parallelRouteKey","childTree","isPage","requestKey","segment","clonePageVaryPathWithNewSearchParams","isRootLayout","hasLoadingBoundary","hasRuntimePrefetch","fetchStrategy","route","varyPathForRequest","getSegmentVaryPathForRequest","candidateEntry","isValueExpired","isPartial","rejectedEntry","loading","rsc","deleteFromCacheMap","emptyEntry","FetchStrategy","PPR","Full","pingBlockedTasks","entry","pingPrefetchTask","fulfillRouteCacheEntry","metadataVaryPath","HEAD_REQUEST_KEY","HasLoadingBoundary","SubtreeHasNoLoadingBoundary","fulfilledEntry","fulfillSegmentCacheEntry","segmentCacheEntry","resolve","rejectRouteCacheEntry","rejectSegmentCacheEntry","convertRootTreePrefetchToRouteTree","rootTree","renderedPathname","acc","pathnameParts","split","filter","p","index","rootSegment","ROOT_SEGMENT_REQUEST_KEY","convertTreePrefetchToRouteTree","prefetch","partialVaryPath","pathnamePartsIndex","prefetchSlots","finalizeLayoutVaryPath","childPrefetch","childParamName","name","childParamType","paramType","childServerSentParamKey","paramKey","childDoesAppearInURL","childSegment","childPartialVaryPath","childParamValue","parseDynamicParamFromURLPart","childParamKey","getCacheKeyForDynamicParam","appendLayoutVaryPath","doesStaticSegmentAppearInURL","childPathnamePartsIndex","childRequestKeyPart","createSegmentRequestKeyPart","childRequestKey","appendSegmentRequestKeyPart","endsWith","PAGE_SEGMENT_KEY","finalizePageVaryPath","finalizeMetadataVaryPath","SegmentHasLoadingBoundary","convertRootFlightRouterStateToRouteTree","flightRouterState","convertFlightRouterStateToRouteTree","parentPartialVaryPath","originalSegment","Array","isArray","paramCacheKey","parallelRoutes","childRouterState","undefined","routeTree","segmentPath","headers","RSC_HEADER","NEXT_ROUTER_PREFETCH_HEADER","NEXT_ROUTER_SEGMENT_PREFETCH_HEADER","NEXT_URL","url","response","urlAfterRedirects","headResponse","fetch","method","Date","redirected","fetchPrefetchResponse","addSegmentPathToUrlInOutputExportMode","ok","body","varyHeader","get","includes","closed","routeIsPPREnabled","NEXT_DID_POSTPONE_HEADER","prefetchStream","createPrefetchResponseStream","onResponseSizeUpdate","setSizeInCacheMap","serverData","createFromNextReadableStream","buildId","getAppBuildId","getRenderedPathname","getRenderedSearch","staleTimeMs","staleTime","b","writeDynamicTreeResponseIntoCache","LoadingBoundary","fulfilledVaryPath","getFulfilledRouteVaryPath","value","routeKey","normalizedRequestKey","requestUrl","dynamicRequestTree","spawnedEntries","has","NEXT_ROUTER_STATE_TREE_HEADER","prepareFlightRouterStateForRequest","PPRRuntime","rejectSegmentEntriesIfStillPending","fulfilledEntries","totalBytesReceivedSoFar","averageSize","length","isResponsePartial","rp","writeDynamicRenderResponseIntoCache","normalizedFlightDataResult","normalizeFlightData","f","flightData","isRootRender","parseInt","NEXT_ROUTER_STALE_TIME_HEADER","isNaN","STATIC_STALETIME_MS","entries","values","push","flightDatas","seedData","i","writeSeedDataIntoCache","head","fulfillEntrySpawnedByRuntimePrefetch","isHeadPartial","entriesOwnedByCurrentTask","seedDataChildren","childSeedData","ownedEntry","possiblyNewEntry","newEntry","fetchPriority","shouldImmediatelyDecode","createFetch","contentType","isFlightResponse","startsWith","RSC_CONTENT_TYPE_HEADER","originalFlightStream","onStreamClose","totalByteLength","reader","getReader","ReadableStream","pull","controller","done","read","enqueue","byteLength","staticUrl","routeDir","slice","staticExportFilename","convertSegmentPathToStaticExportFilename","currentStrategy","newStrategy"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 7622, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/navigation.ts"],"sourcesContent":["import type {\n CacheNodeSeedData,\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../shared/lib/app-router-types'\nimport type { CacheNode } from '../../../shared/lib/app-router-types'\nimport type {\n HeadData,\n LoadingModuleData,\n} from '../../../shared/lib/app-router-types'\nimport type { NormalizedFlightData } from '../../flight-data-helpers'\nimport { fetchServerResponse } from '../router-reducer/fetch-server-response'\nimport {\n startPPRNavigation,\n spawnDynamicRequests,\n FreshnessPolicy,\n type NavigationTask,\n type NavigationRequestAccumulation,\n} from '../router-reducer/ppr-navigations'\nimport { createHrefFromUrl } from '../router-reducer/create-href-from-url'\nimport {\n EntryStatus,\n readRouteCacheEntry,\n readSegmentCacheEntry,\n waitForSegmentCacheEntry,\n requestOptimisticRouteCacheEntry,\n type RouteTree,\n type FulfilledRouteCacheEntry,\n} from './cache'\nimport { createCacheKey } from './cache-key'\nimport { addSearchParamsIfPageSegment } from '../../../shared/lib/segment'\nimport { NavigationResultTag } from './types'\n\ntype MPANavigationResult = {\n tag: NavigationResultTag.MPA\n data: string\n}\n\ntype SuccessfulNavigationResult = {\n tag: NavigationResultTag.Success\n data: {\n flightRouterState: FlightRouterState\n cacheNode: CacheNode\n canonicalUrl: string\n renderedSearch: string\n scrollableSegments: Array<FlightSegmentPath> | null\n shouldScroll: boolean\n hash: string\n }\n}\n\ntype AsyncNavigationResult = {\n tag: NavigationResultTag.Async\n data: Promise<MPANavigationResult | SuccessfulNavigationResult>\n}\n\nexport type NavigationResult =\n | MPANavigationResult\n | SuccessfulNavigationResult\n | AsyncNavigationResult\n\n/**\n * Navigate to a new URL, using the Segment Cache to construct a response.\n *\n * To allow for synchronous navigations whenever possible, this is not an async\n * function. It returns a promise only if there's no matching prefetch in\n * the cache. Otherwise it returns an immediate result and uses Suspense/RSC to\n * stream in any missing data.\n */\nexport function navigate(\n url: URL,\n currentUrl: URL,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n nextUrl: string | null,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean,\n accumulation: { collectedDebugInfo?: Array<unknown> }\n): NavigationResult {\n const now = Date.now()\n const href = url.href\n\n // We special case navigations to the exact same URL as the current location.\n // It's a common UI pattern for apps to refresh when you click a link to the\n // current page. So when this happens, we refresh the dynamic data in the page\n // segments.\n //\n // Note that this does not apply if the any part of the hash or search query\n // has changed. This might feel a bit weird but it makes more sense when you\n // consider that the way to trigger this behavior is to click the same link\n // multiple times.\n //\n // TODO: We should probably refresh the *entire* route when this case occurs,\n // not just the page segments. Essentially treating it the same as a refresh()\n // triggered by an action, which is the more explicit way of modeling the UI\n // pattern described above.\n //\n // Also note that this only refreshes the dynamic data, not static/ cached\n // data. If the page segment is fully static and prefetched, the request is\n // skipped. (This is also how refresh() works.)\n const isSamePageNavigation = href === currentUrl.href\n\n const cacheKey = createCacheKey(href, nextUrl)\n const route = readRouteCacheEntry(now, cacheKey)\n if (route !== null && route.status === EntryStatus.Fulfilled) {\n // We have a matching prefetch.\n const snapshot = readRenderSnapshotFromCache(now, route, route.tree)\n const prefetchFlightRouterState = snapshot.flightRouterState\n const prefetchSeedData = snapshot.seedData\n const headSnapshot = readHeadSnapshotFromCache(now, route)\n const prefetchHead = headSnapshot.rsc\n const isPrefetchHeadPartial = headSnapshot.isPartial\n // TODO: The \"canonicalUrl\" stored in the cache doesn't include the hash,\n // because hash entries do not vary by hash fragment. However, the one\n // we set in the router state *does* include the hash, and it's used to\n // sync with the actual browser location. To make this less of a refactor\n // hazard, we should always track the hash separately from the rest of\n // the URL.\n const newCanonicalUrl = route.canonicalUrl + url.hash\n const renderedSearch = route.renderedSearch\n return navigateUsingPrefetchedRouteTree(\n now,\n url,\n currentUrl,\n nextUrl,\n isSamePageNavigation,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n newCanonicalUrl,\n renderedSearch,\n freshnessPolicy,\n shouldScroll\n )\n }\n\n // There was no matching route tree in the cache. Let's see if we can\n // construct an \"optimistic\" route tree.\n //\n // Do not construct an optimistic route tree if there was a cache hit, but\n // the entry has a rejected status, since it may have been rejected due to a\n // rewrite or redirect based on the search params.\n //\n // TODO: There are multiple reasons a prefetch might be rejected; we should\n // track them explicitly and choose what to do here based on that.\n if (route === null || route.status !== EntryStatus.Rejected) {\n const optimisticRoute = requestOptimisticRouteCacheEntry(now, url, nextUrl)\n if (optimisticRoute !== null) {\n // We have an optimistic route tree. Proceed with the normal flow.\n const snapshot = readRenderSnapshotFromCache(\n now,\n optimisticRoute,\n optimisticRoute.tree\n )\n const prefetchFlightRouterState = snapshot.flightRouterState\n const prefetchSeedData = snapshot.seedData\n const headSnapshot = readHeadSnapshotFromCache(now, optimisticRoute)\n const prefetchHead = headSnapshot.rsc\n const isPrefetchHeadPartial = headSnapshot.isPartial\n const newCanonicalUrl = optimisticRoute.canonicalUrl + url.hash\n const newRenderedSearch = optimisticRoute.renderedSearch\n return navigateUsingPrefetchedRouteTree(\n now,\n url,\n currentUrl,\n nextUrl,\n isSamePageNavigation,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n newCanonicalUrl,\n newRenderedSearch,\n freshnessPolicy,\n shouldScroll\n )\n }\n }\n\n // There's no matching prefetch for this route in the cache.\n let collectedDebugInfo = accumulation.collectedDebugInfo ?? []\n if (accumulation.collectedDebugInfo === undefined) {\n collectedDebugInfo = accumulation.collectedDebugInfo = []\n }\n return {\n tag: NavigationResultTag.Async,\n data: navigateDynamicallyWithNoPrefetch(\n now,\n url,\n currentUrl,\n nextUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n shouldScroll,\n collectedDebugInfo\n ),\n }\n}\n\nexport function navigateToSeededRoute(\n now: number,\n url: URL,\n canonicalUrl: string,\n navigationSeed: NavigationSeed,\n currentUrl: URL,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n nextUrl: string | null,\n shouldScroll: boolean\n): SuccessfulNavigationResult | MPANavigationResult {\n // A version of navigate() that accepts the target route tree as an argument\n // rather than reading it from the prefetch cache.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const isSamePageNavigation = url.href === currentUrl.href\n const task = startPPRNavigation(\n now,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n navigationSeed.tree,\n freshnessPolicy,\n navigationSeed.data,\n navigationSeed.head,\n null,\n null,\n false,\n isSamePageNavigation,\n accumulation\n )\n if (task !== null) {\n spawnDynamicRequests(task, url, nextUrl, freshnessPolicy, accumulation)\n return navigationTaskToResult(\n task,\n canonicalUrl,\n navigationSeed.renderedSearch,\n accumulation.scrollableSegments,\n shouldScroll,\n url.hash\n )\n }\n // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation.\n return {\n tag: NavigationResultTag.MPA,\n data: canonicalUrl,\n }\n}\n\nfunction navigateUsingPrefetchedRouteTree(\n now: number,\n url: URL,\n currentUrl: URL,\n nextUrl: string | null,\n isSamePageNavigation: boolean,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n prefetchFlightRouterState: FlightRouterState,\n prefetchSeedData: CacheNodeSeedData | null,\n prefetchHead: HeadData | null,\n isPrefetchHeadPartial: boolean,\n canonicalUrl: string,\n renderedSearch: string,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean\n): SuccessfulNavigationResult | MPANavigationResult {\n // Recursively construct a prefetch tree by reading from the Segment Cache. To\n // maintain compatibility, we output the same data structures as the old\n // prefetching implementation: FlightRouterState and CacheNodeSeedData.\n // TODO: Eventually updateCacheNodeOnNavigation (or the equivalent) should\n // read from the Segment Cache directly. It's only structured this way for now\n // so we can share code with the old prefetching implementation.\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const seedData = null\n const seedHead = null\n const task = startPPRNavigation(\n now,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n prefetchFlightRouterState,\n freshnessPolicy,\n seedData,\n seedHead,\n prefetchSeedData,\n prefetchHead,\n isPrefetchHeadPartial,\n isSamePageNavigation,\n accumulation\n )\n if (task !== null) {\n spawnDynamicRequests(task, url, nextUrl, freshnessPolicy, accumulation)\n return navigationTaskToResult(\n task,\n canonicalUrl,\n renderedSearch,\n accumulation.scrollableSegments,\n shouldScroll,\n url.hash\n )\n }\n // Could not perform a SPA navigation. Revert to a full-page (MPA) navigation.\n return {\n tag: NavigationResultTag.MPA,\n data: canonicalUrl,\n }\n}\n\nfunction navigationTaskToResult(\n task: NavigationTask,\n canonicalUrl: string,\n renderedSearch: string,\n scrollableSegments: Array<FlightSegmentPath> | null,\n shouldScroll: boolean,\n hash: string\n): SuccessfulNavigationResult | MPANavigationResult {\n return {\n tag: NavigationResultTag.Success,\n data: {\n flightRouterState: task.route,\n cacheNode: task.node,\n canonicalUrl,\n renderedSearch,\n scrollableSegments,\n shouldScroll,\n hash,\n },\n }\n}\n\nfunction readRenderSnapshotFromCache(\n now: number,\n route: FulfilledRouteCacheEntry,\n tree: RouteTree\n): { flightRouterState: FlightRouterState; seedData: CacheNodeSeedData } {\n let childRouterStates: { [parallelRouteKey: string]: FlightRouterState } = {}\n let childSeedDatas: {\n [parallelRouteKey: string]: CacheNodeSeedData | null\n } = {}\n const slots = tree.slots\n if (slots !== null) {\n for (const parallelRouteKey in slots) {\n const childTree = slots[parallelRouteKey]\n const childResult = readRenderSnapshotFromCache(now, route, childTree)\n childRouterStates[parallelRouteKey] = childResult.flightRouterState\n childSeedDatas[parallelRouteKey] = childResult.seedData\n }\n }\n\n let rsc: React.ReactNode | null = null\n let loading: LoadingModuleData | Promise<LoadingModuleData> = null\n let isPartial: boolean = true\n\n const segmentEntry = readSegmentCacheEntry(now, tree.varyPath)\n if (segmentEntry !== null) {\n switch (segmentEntry.status) {\n case EntryStatus.Fulfilled: {\n // Happy path: a cache hit\n rsc = segmentEntry.rsc\n loading = segmentEntry.loading\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Pending: {\n // We haven't received data for this segment yet, but there's already\n // an in-progress request. Since it's extremely likely to arrive\n // before the dynamic data response, we might as well use it.\n const promiseForFulfilledEntry = waitForSegmentCacheEntry(segmentEntry)\n rsc = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.rsc : null\n )\n loading = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.loading : null\n )\n // Because the request is still pending, we typically don't know yet\n // whether the response will be partial. We shouldn't skip this segment\n // during the dynamic navigation request. Otherwise, we might need to\n // do yet another request to fill in the remaining data, creating\n // a waterfall.\n //\n // The one exception is if this segment is being fetched with via\n // prefetch={true} (i.e. the \"force stale\" or \"full\" strategy). If so,\n // we can assume the response will be full. This field is set to `false`\n // for such segments.\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected:\n break\n default:\n segmentEntry satisfies never\n }\n }\n\n // The navigation implementation expects the search params to be\n // included in the segment. However, the Segment Cache tracks search\n // params separately from the rest of the segment key. So we need to\n // add them back here.\n //\n // See corresponding comment in convertFlightRouterStateToTree.\n //\n // TODO: What we should do instead is update the navigation diffing\n // logic to compare search params explicitly. This is a temporary\n // solution until more of the Segment Cache implementation has settled.\n const segment = addSearchParamsIfPageSegment(\n tree.segment,\n Object.fromEntries(new URLSearchParams(route.renderedSearch))\n )\n\n // We don't need this information in a render snapshot, so this can just be a placeholder.\n const hasRuntimePrefetch = false\n\n return {\n flightRouterState: [\n segment,\n childRouterStates,\n null,\n null,\n tree.isRootLayout,\n ],\n seedData: [rsc, childSeedDatas, loading, isPartial, hasRuntimePrefetch],\n }\n}\n\nfunction readHeadSnapshotFromCache(\n now: number,\n route: FulfilledRouteCacheEntry\n): { rsc: HeadData; isPartial: boolean } {\n // Same as readRenderSnapshotFromCache, but for the head\n let rsc: React.ReactNode | null = null\n let isPartial: boolean = true\n const segmentEntry = readSegmentCacheEntry(now, route.metadata.varyPath)\n if (segmentEntry !== null) {\n switch (segmentEntry.status) {\n case EntryStatus.Fulfilled: {\n rsc = segmentEntry.rsc\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Pending: {\n const promiseForFulfilledEntry = waitForSegmentCacheEntry(segmentEntry)\n rsc = promiseForFulfilledEntry.then((entry) =>\n entry !== null ? entry.rsc : null\n )\n isPartial = segmentEntry.isPartial\n break\n }\n case EntryStatus.Empty:\n case EntryStatus.Rejected:\n break\n default:\n segmentEntry satisfies never\n }\n }\n return { rsc, isPartial }\n}\n\n// Used to request all the dynamic data for a route, rather than just a subset,\n// e.g. during a refresh or a revalidation. Typically this gets constructed\n// during the normal flow when diffing the route tree, but for an unprefetched\n// navigation, where we don't know the structure of the target route, we use\n// this instead.\nconst DynamicRequestTreeForEntireRoute: FlightRouterState = [\n '',\n {},\n null,\n 'refetch',\n]\n\nasync function navigateDynamicallyWithNoPrefetch(\n now: number,\n url: URL,\n currentUrl: URL,\n nextUrl: string | null,\n currentCacheNode: CacheNode | null,\n currentFlightRouterState: FlightRouterState,\n freshnessPolicy: FreshnessPolicy,\n shouldScroll: boolean,\n collectedDebugInfo: Array<unknown>\n): Promise<MPANavigationResult | SuccessfulNavigationResult> {\n // Runs when a navigation happens but there's no cached prefetch we can use.\n // Don't bother to wait for a prefetch response; go straight to a full\n // navigation that contains both static and dynamic data in a single stream.\n // (This is unlike the old navigation implementation, which instead blocks\n // the dynamic request until a prefetch request is received.)\n //\n // To avoid duplication of logic, we're going to pretend that the tree\n // returned by the dynamic request is, in fact, a prefetch tree. Then we can\n // use the same server response to write the actual data into the CacheNode\n // tree. So it's the same flow as the \"happy path\" (prefetch, then\n // navigation), except we use a single server response for both stages.\n\n let dynamicRequestTree: FlightRouterState\n switch (freshnessPolicy) {\n case FreshnessPolicy.Default:\n case FreshnessPolicy.HistoryTraversal:\n dynamicRequestTree = currentFlightRouterState\n break\n case FreshnessPolicy.Hydration: // <- shouldn't happen during client nav\n case FreshnessPolicy.RefreshAll:\n case FreshnessPolicy.HMRRefresh:\n dynamicRequestTree = DynamicRequestTreeForEntireRoute\n break\n default:\n freshnessPolicy satisfies never\n dynamicRequestTree = currentFlightRouterState\n break\n }\n\n const promiseForDynamicServerResponse = fetchServerResponse(url, {\n flightRouterState: dynamicRequestTree,\n nextUrl,\n })\n const result = await promiseForDynamicServerResponse\n if (typeof result === 'string') {\n // This is an MPA navigation.\n const newUrl = result\n return {\n tag: NavigationResultTag.MPA,\n data: newUrl,\n }\n }\n\n const {\n flightData,\n canonicalUrl,\n renderedSearch,\n debugInfo: debugInfoFromResponse,\n } = result\n if (debugInfoFromResponse !== null) {\n collectedDebugInfo.push(...debugInfoFromResponse)\n }\n\n // Since the response format of dynamic requests and prefetches is slightly\n // different, we'll need to massage the data a bit. Create FlightRouterState\n // tree that simulates what we'd receive as the result of a prefetch.\n const navigationSeed = convertServerPatchToFullTree(\n currentFlightRouterState,\n flightData,\n renderedSearch\n )\n\n return navigateToSeededRoute(\n now,\n url,\n createHrefFromUrl(canonicalUrl),\n navigationSeed,\n currentUrl,\n currentCacheNode,\n currentFlightRouterState,\n freshnessPolicy,\n nextUrl,\n shouldScroll\n )\n}\n\nexport type NavigationSeed = {\n tree: FlightRouterState\n renderedSearch: string\n data: CacheNodeSeedData | null\n head: HeadData | null\n}\n\nexport function convertServerPatchToFullTree(\n currentTree: FlightRouterState,\n flightData: Array<NormalizedFlightData>,\n renderedSearch: string\n): NavigationSeed {\n // During a client navigation or prefetch, the server sends back only a patch\n // for the parts of the tree that have changed.\n //\n // This applies the patch to the base tree to create a full representation of\n // the resulting tree.\n //\n // The return type includes a full FlightRouterState tree and a full\n // CacheNodeSeedData tree. (Conceptually these are the same tree, and should\n // eventually be unified, but there's still lots of existing code that\n // operates on FlightRouterState trees alone without the CacheNodeSeedData.)\n //\n // TODO: This similar to what apply-router-state-patch-to-tree does. It\n // will eventually fully replace it. We should get rid of all the remaining\n // places where we iterate over the server patch format. This should also\n // eventually replace normalizeFlightData.\n\n let baseTree: FlightRouterState = currentTree\n let baseData: CacheNodeSeedData | null = null\n let head: HeadData | null = null\n for (const {\n segmentPath,\n tree: treePatch,\n seedData: dataPatch,\n head: headPatch,\n } of flightData) {\n const result = convertServerPatchToFullTreeImpl(\n baseTree,\n baseData,\n treePatch,\n dataPatch,\n segmentPath,\n 0\n )\n baseTree = result.tree\n baseData = result.data\n // This is the same for all patches per response, so just pick an\n // arbitrary one\n head = headPatch\n }\n\n return {\n tree: baseTree,\n data: baseData,\n renderedSearch,\n head,\n }\n}\n\nfunction convertServerPatchToFullTreeImpl(\n baseRouterState: FlightRouterState,\n baseData: CacheNodeSeedData | null,\n treePatch: FlightRouterState,\n dataPatch: CacheNodeSeedData | null,\n segmentPath: FlightSegmentPath,\n index: number\n): { tree: FlightRouterState; data: CacheNodeSeedData | null } {\n if (index === segmentPath.length) {\n // We reached the part of the tree that we need to patch.\n return {\n tree: treePatch,\n data: dataPatch,\n }\n }\n\n // segmentPath represents the parent path of subtree. It's a repeating\n // pattern of parallel route key and segment:\n //\n // [string, Segment, string, Segment, string, Segment, ...]\n //\n // This path tells us which part of the base tree to apply the tree patch.\n //\n // NOTE: We receive the FlightRouterState patch in the same request as the\n // seed data patch. Therefore we don't need to worry about diffing the segment\n // values; we can assume the server sent us a correct result.\n const updatedParallelRouteKey: string = segmentPath[index]\n // const segment: Segment = segmentPath[index + 1] <-- Not used, see note above\n\n const baseTreeChildren = baseRouterState[1]\n const baseSeedDataChildren = baseData !== null ? baseData[1] : null\n const newTreeChildren: Record<string, FlightRouterState> = {}\n const newSeedDataChildren: Record<string, CacheNodeSeedData | null> = {}\n for (const parallelRouteKey in baseTreeChildren) {\n const childBaseRouterState = baseTreeChildren[parallelRouteKey]\n const childBaseSeedData =\n baseSeedDataChildren !== null\n ? (baseSeedDataChildren[parallelRouteKey] ?? null)\n : null\n if (parallelRouteKey === updatedParallelRouteKey) {\n const result = convertServerPatchToFullTreeImpl(\n childBaseRouterState,\n childBaseSeedData,\n treePatch,\n dataPatch,\n segmentPath,\n // Advance the index by two and keep cloning until we reach\n // the end of the segment path.\n index + 2\n )\n\n newTreeChildren[parallelRouteKey] = result.tree\n newSeedDataChildren[parallelRouteKey] = result.data\n } else {\n // This child is not being patched. Copy it over as-is.\n newTreeChildren[parallelRouteKey] = childBaseRouterState\n newSeedDataChildren[parallelRouteKey] = childBaseSeedData\n }\n }\n\n let clonedTree: FlightRouterState\n let clonedSeedData: CacheNodeSeedData\n // Clone all the fields except the children.\n\n // Clone the FlightRouterState tree. Based on equivalent logic in\n // apply-router-state-patch-to-tree, but should confirm whether we need to\n // copy all of these fields. Not sure the server ever sends, e.g. the\n // refetch marker.\n clonedTree = [baseRouterState[0], newTreeChildren]\n if (2 in baseRouterState) {\n clonedTree[2] = baseRouterState[2]\n }\n if (3 in baseRouterState) {\n clonedTree[3] = baseRouterState[3]\n }\n if (4 in baseRouterState) {\n clonedTree[4] = baseRouterState[4]\n }\n\n // Clone the CacheNodeSeedData tree.\n const isEmptySeedDataPartial = true\n clonedSeedData = [\n null,\n newSeedDataChildren,\n null,\n isEmptySeedDataPartial,\n false,\n ]\n\n return {\n tree: clonedTree,\n data: clonedSeedData,\n }\n}\n"],"names":["convertServerPatchToFullTree","navigate","navigateToSeededRoute","url","currentUrl","currentCacheNode","currentFlightRouterState","nextUrl","freshnessPolicy","shouldScroll","accumulation","now","Date","href","isSamePageNavigation","cacheKey","createCacheKey","route","readRouteCacheEntry","status","EntryStatus","Fulfilled","snapshot","readRenderSnapshotFromCache","tree","prefetchFlightRouterState","flightRouterState","prefetchSeedData","seedData","headSnapshot","readHeadSnapshotFromCache","prefetchHead","rsc","isPrefetchHeadPartial","isPartial","newCanonicalUrl","canonicalUrl","hash","renderedSearch","navigateUsingPrefetchedRouteTree","Rejected","optimisticRoute","requestOptimisticRouteCacheEntry","newRenderedSearch","collectedDebugInfo","undefined","tag","NavigationResultTag","Async","data","navigateDynamicallyWithNoPrefetch","navigationSeed","scrollableSegments","separateRefreshUrls","task","startPPRNavigation","head","spawnDynamicRequests","navigationTaskToResult","MPA","seedHead","Success","cacheNode","node","childRouterStates","childSeedDatas","slots","parallelRouteKey","childTree","childResult","loading","segmentEntry","readSegmentCacheEntry","varyPath","Pending","promiseForFulfilledEntry","waitForSegmentCacheEntry","then","entry","Empty","segment","addSearchParamsIfPageSegment","Object","fromEntries","URLSearchParams","hasRuntimePrefetch","isRootLayout","metadata","DynamicRequestTreeForEntireRoute","dynamicRequestTree","FreshnessPolicy","Default","HistoryTraversal","Hydration","RefreshAll","HMRRefresh","promiseForDynamicServerResponse","fetchServerResponse","result","newUrl","flightData","debugInfo","debugInfoFromResponse","push","createHrefFromUrl","currentTree","baseTree","baseData","segmentPath","treePatch","dataPatch","headPatch","convertServerPatchToFullTreeImpl","baseRouterState","index","length","updatedParallelRouteKey","baseTreeChildren","baseSeedDataChildren","newTreeChildren","newSeedDataChildren","childBaseRouterState","childBaseSeedData","clonedTree","clonedSeedData","isEmptySeedDataPartial"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 8082, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/navigate-reducer.ts"],"sourcesContent":["import type {\n FlightRouterState,\n FlightSegmentPath,\n} from '../../../../shared/lib/app-router-types'\nimport { createHrefFromUrl } from '../create-href-from-url'\nimport type {\n Mutable,\n NavigateAction,\n ReadonlyReducerState,\n ReducerState,\n} from '../router-reducer-types'\nimport { handleMutable } from '../handle-mutable'\n\nimport {\n navigate as navigateUsingSegmentCache,\n type NavigationResult,\n} from '../../segment-cache/navigation'\nimport { NavigationResultTag } from '../../segment-cache/types'\nimport { getStaleTimeMs } from '../../segment-cache/cache'\nimport { FreshnessPolicy } from '../ppr-navigations'\n\n// These values are set by `define-env-plugin` (based on `nextConfig.experimental.staleTimes`)\n// and default to 5 minutes (static) / 0 seconds (dynamic)\nexport const DYNAMIC_STALETIME_MS =\n Number(process.env.__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME) * 1000\n\nexport const STATIC_STALETIME_MS = getStaleTimeMs(\n Number(process.env.__NEXT_CLIENT_ROUTER_STATIC_STALETIME)\n)\n\nexport function handleExternalUrl(\n state: ReadonlyReducerState,\n mutable: Mutable,\n url: string,\n pendingPush: boolean\n) {\n mutable.mpaNavigation = true\n mutable.canonicalUrl = url\n mutable.pendingPush = pendingPush\n mutable.scrollableSegments = undefined\n\n return handleMutable(state, mutable)\n}\n\nexport function generateSegmentsFromPatch(\n flightRouterPatch: FlightRouterState\n): FlightSegmentPath[] {\n const segments: FlightSegmentPath[] = []\n const [segment, parallelRoutes] = flightRouterPatch\n\n if (Object.keys(parallelRoutes).length === 0) {\n return [[segment]]\n }\n\n for (const [parallelRouteKey, parallelRoute] of Object.entries(\n parallelRoutes\n )) {\n for (const childSegment of generateSegmentsFromPatch(parallelRoute)) {\n // If the segment is empty, it means we are at the root of the tree\n if (segment === '') {\n segments.push([parallelRouteKey, ...childSegment])\n } else {\n segments.push([segment, parallelRouteKey, ...childSegment])\n }\n }\n }\n\n return segments\n}\n\nexport function handleNavigationResult(\n url: URL,\n state: ReadonlyReducerState,\n mutable: Mutable,\n pendingPush: boolean,\n result: NavigationResult\n): ReducerState {\n switch (result.tag) {\n case NavigationResultTag.MPA: {\n // Perform an MPA navigation.\n const newUrl = result.data\n return handleExternalUrl(state, mutable, newUrl, pendingPush)\n }\n case NavigationResultTag.Success: {\n // Received a new result.\n mutable.cache = result.data.cacheNode\n mutable.patchedTree = result.data.flightRouterState\n mutable.renderedSearch = result.data.renderedSearch\n mutable.canonicalUrl = result.data.canonicalUrl\n // TODO: During a refresh, we don't set the `scrollableSegments`. There's\n // some confusing and subtle logic in `handleMutable` that decides what\n // to do when `shouldScroll` is set but `scrollableSegments` is not. I'm\n // not convinced it's totally coherent but the tests assert on this\n // particular behavior so I've ported the logic as-is from the previous\n // router implementation, for now.\n mutable.scrollableSegments = result.data.scrollableSegments ?? undefined\n mutable.shouldScroll = result.data.shouldScroll\n mutable.hashFragment = result.data.hash\n\n // Check if the only thing that changed was the hash fragment.\n const oldUrl = new URL(state.canonicalUrl, url)\n const onlyHashChange =\n // We don't need to compare the origins, because client-driven\n // navigations are always same-origin.\n url.pathname === oldUrl.pathname &&\n url.search === oldUrl.search &&\n url.hash !== oldUrl.hash\n if (onlyHashChange) {\n // The only updated part of the URL is the hash.\n mutable.onlyHashChange = true\n mutable.shouldScroll = result.data.shouldScroll\n mutable.hashFragment = url.hash\n // Setting this to an empty array triggers a scroll for all new and\n // updated segments. See `ScrollAndFocusHandler` for more details.\n mutable.scrollableSegments = []\n }\n\n return handleMutable(state, mutable)\n }\n case NavigationResultTag.Async: {\n return result.data.then(\n (asyncResult) =>\n handleNavigationResult(url, state, mutable, pendingPush, asyncResult),\n // If the navigation failed, return the current state.\n // TODO: This matches the current behavior but we need to do something\n // better here if the network fails.\n () => {\n return state\n }\n )\n }\n default: {\n result satisfies never\n return state\n }\n }\n}\n\nexport function navigateReducer(\n state: ReadonlyReducerState,\n action: NavigateAction\n): ReducerState {\n const { url, isExternalUrl, navigateType, shouldScroll } = action\n const mutable: Mutable = {}\n const href = createHrefFromUrl(url)\n const pendingPush = navigateType === 'push'\n\n mutable.preserveCustomHistoryState = false\n mutable.pendingPush = pendingPush\n\n if (isExternalUrl) {\n return handleExternalUrl(state, mutable, url.toString(), pendingPush)\n }\n\n // Handles case where `<meta http-equiv=\"refresh\">` tag is present,\n // which will trigger an MPA navigation.\n if (document.getElementById('__next-page-redirect')) {\n return handleExternalUrl(state, mutable, href, pendingPush)\n }\n\n // Temporary glue code between the router reducer and the new navigation\n // implementation. Eventually we'll rewrite the router reducer to a\n // state machine.\n const currentUrl = new URL(state.canonicalUrl, location.origin)\n const result = navigateUsingSegmentCache(\n url,\n currentUrl,\n state.cache,\n state.tree,\n state.nextUrl,\n FreshnessPolicy.Default,\n shouldScroll,\n mutable\n )\n return handleNavigationResult(url, state, mutable, pendingPush, result)\n}\n"],"names":["DYNAMIC_STALETIME_MS","STATIC_STALETIME_MS","generateSegmentsFromPatch","handleExternalUrl","handleNavigationResult","navigateReducer","Number","process","env","__NEXT_CLIENT_ROUTER_DYNAMIC_STALETIME","getStaleTimeMs","__NEXT_CLIENT_ROUTER_STATIC_STALETIME","state","mutable","url","pendingPush","mpaNavigation","canonicalUrl","scrollableSegments","undefined","handleMutable","flightRouterPatch","segments","segment","parallelRoutes","Object","keys","length","parallelRouteKey","parallelRoute","entries","childSegment","push","result","tag","NavigationResultTag","MPA","newUrl","data","Success","cache","cacheNode","patchedTree","flightRouterState","renderedSearch","shouldScroll","hashFragment","hash","oldUrl","URL","onlyHashChange","pathname","search","Async","then","asyncResult","action","isExternalUrl","navigateType","href","createHrefFromUrl","preserveCustomHistoryState","toString","document","getElementById","currentUrl","location","origin","navigateUsingSegmentCache","tree","nextUrl","FreshnessPolicy","Default"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 8252, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/has-interception-route-in-current-tree.ts"],"sourcesContent":["import type { FlightRouterState } from '../../../../shared/lib/app-router-types'\nimport { isInterceptionRouteAppPath } from '../../../../shared/lib/router/utils/interception-routes'\n\nexport function hasInterceptionRouteInCurrentTree([\n segment,\n parallelRoutes,\n]: FlightRouterState): boolean {\n // If we have a dynamic segment, it's marked as an interception route by the presence of the `i` suffix.\n if (\n Array.isArray(segment) &&\n (segment[2] === 'di(..)(..)' ||\n segment[2] === 'ci(..)(..)' ||\n segment[2] === 'di(.)' ||\n segment[2] === 'ci(.)' ||\n segment[2] === 'di(..)' ||\n segment[2] === 'ci(..)' ||\n segment[2] === 'di(...)' ||\n segment[2] === 'ci(...)')\n ) {\n return true\n }\n\n // If segment is not an array, apply the existing string-based check\n if (typeof segment === 'string' && isInterceptionRouteAppPath(segment)) {\n return true\n }\n\n // Iterate through parallelRoutes if they exist\n if (parallelRoutes) {\n for (const key in parallelRoutes) {\n if (hasInterceptionRouteInCurrentTree(parallelRoutes[key])) {\n return true\n }\n }\n }\n\n return false\n}\n"],"names":["hasInterceptionRouteInCurrentTree","segment","parallelRoutes","Array","isArray","isInterceptionRouteAppPath","key"],"mappings":";;;+BAGgBA,qCAAAA;;;eAAAA;;;oCAF2B;AAEpC,SAASA,kCAAkC,CAChDC,SACAC,eACkB;IAClB,wGAAwG;IACxG,IACEC,MAAMC,OAAO,CAACH,YACbA,CAAAA,OAAO,CAAC,EAAE,KAAK,gBACdA,OAAO,CAAC,EAAE,KAAK,gBACfA,OAAO,CAAC,EAAE,KAAK,WACfA,OAAO,CAAC,EAAE,KAAK,WACfA,OAAO,CAAC,EAAE,KAAK,YACfA,OAAO,CAAC,EAAE,KAAK,YACfA,OAAO,CAAC,EAAE,KAAK,aACfA,OAAO,CAAC,EAAE,KAAK,SAAQ,GACzB;QACA,OAAO;IACT;IAEA,oEAAoE;IACpE,IAAI,OAAOA,YAAY,YAAYI,CAAAA,GAAAA,oBAAAA,0BAA0B,EAACJ,UAAU;QACtE,OAAO;IACT;IAEA,+CAA+C;IAC/C,IAAIC,gBAAgB;QAClB,IAAK,MAAMI,OAAOJ,eAAgB;YAChC,IAAIF,kCAAkCE,cAAc,CAACI,IAAI,GAAG;gBAC1D,OAAO;YACT;QACF;IACF;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 8292, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/refresh-reducer.ts"],"sourcesContent":["import type {\n Mutable,\n ReadonlyReducerState,\n ReducerState,\n} from '../router-reducer-types'\nimport { handleNavigationResult } from './navigate-reducer'\nimport { navigateToSeededRoute } from '../../segment-cache/navigation'\nimport { revalidateEntireCache } from '../../segment-cache/cache'\nimport { hasInterceptionRouteInCurrentTree } from './has-interception-route-in-current-tree'\nimport { FreshnessPolicy } from '../ppr-navigations'\n\nexport function refreshReducer(state: ReadonlyReducerState): ReducerState {\n // TODO: Currently, all refreshes purge the prefetch cache. In the future,\n // only client-side refreshes will have this behavior; the server-side\n // `refresh` should send new data without purging the prefetch cache.\n const currentNextUrl = state.nextUrl\n const currentRouterState = state.tree\n revalidateEntireCache(currentNextUrl, currentRouterState)\n return refreshDynamicData(state, FreshnessPolicy.RefreshAll)\n}\n\nexport function refreshDynamicData(\n state: ReadonlyReducerState,\n freshnessPolicy: FreshnessPolicy.RefreshAll | FreshnessPolicy.HMRRefresh\n): ReducerState {\n const currentNextUrl = state.nextUrl\n\n // We always send the last next-url, not the current when performing a dynamic\n // request. This is because we update the next-url after a navigation, but we\n // want the same interception route to be matched that used the last next-url.\n const nextUrlForRefresh = hasInterceptionRouteInCurrentTree(state.tree)\n ? state.previousNextUrl || currentNextUrl\n : null\n\n // A refresh is modeled as a navigation to the current URL, but where any\n // existing dynamic data (including in shared layouts) is re-fetched.\n const currentCanonicalUrl = state.canonicalUrl\n const currentUrl = new URL(currentCanonicalUrl, location.origin)\n const currentFlightRouterState = state.tree\n const shouldScroll = true\n\n const navigationSeed = {\n tree: state.tree,\n renderedSearch: state.renderedSearch,\n data: null,\n head: null,\n }\n\n const now = Date.now()\n const result = navigateToSeededRoute(\n now,\n currentUrl,\n currentCanonicalUrl,\n navigationSeed,\n currentUrl,\n state.cache,\n currentFlightRouterState,\n freshnessPolicy,\n nextUrlForRefresh,\n shouldScroll\n )\n\n const mutable: Mutable = {}\n mutable.preserveCustomHistoryState = false\n\n return handleNavigationResult(currentUrl, state, mutable, false, result)\n}\n"],"names":["refreshDynamicData","refreshReducer","state","currentNextUrl","nextUrl","currentRouterState","tree","revalidateEntireCache","FreshnessPolicy","RefreshAll","freshnessPolicy","nextUrlForRefresh","hasInterceptionRouteInCurrentTree","previousNextUrl","currentCanonicalUrl","canonicalUrl","currentUrl","URL","location","origin","currentFlightRouterState","shouldScroll","navigationSeed","renderedSearch","data","head","now","Date","result","navigateToSeededRoute","cache","mutable","preserveCustomHistoryState","handleNavigationResult"],"mappings":";;;;;;;;;;;;;;IAqBgBA,kBAAkB,EAAA;eAAlBA;;IAVAC,cAAc,EAAA;eAAdA;;;iCANuB;4BACD;uBACA;mDACY;gCAClB;AAEzB,SAASA,eAAeC,KAA2B;IACxD,0EAA0E;IAC1E,sEAAsE;IACtE,qEAAqE;IACrE,MAAMC,iBAAiBD,MAAME,OAAO;IACpC,MAAMC,qBAAqBH,MAAMI,IAAI;IACrCC,CAAAA,GAAAA,OAAAA,qBAAqB,EAACJ,gBAAgBE;IACtC,OAAOL,mBAAmBE,OAAOM,gBAAAA,eAAe,CAACC,UAAU;AAC7D;AAEO,SAAST,mBACdE,KAA2B,EAC3BQ,eAAwE;IAExE,MAAMP,iBAAiBD,MAAME,OAAO;IAEpC,8EAA8E;IAC9E,6EAA6E;IAC7E,8EAA8E;IAC9E,MAAMO,oBAAoBC,CAAAA,GAAAA,mCAAAA,iCAAiC,EAACV,MAAMI,IAAI,IAClEJ,MAAMW,eAAe,IAAIV,iBACzB;IAEJ,yEAAyE;IACzE,qEAAqE;IACrE,MAAMW,sBAAsBZ,MAAMa,YAAY;IAC9C,MAAMC,aAAa,IAAIC,IAAIH,qBAAqBI,SAASC,MAAM;IAC/D,MAAMC,2BAA2BlB,MAAMI,IAAI;IAC3C,MAAMe,eAAe;IAErB,MAAMC,iBAAiB;QACrBhB,MAAMJ,MAAMI,IAAI;QAChBiB,gBAAgBrB,MAAMqB,cAAc;QACpCC,MAAM;QACNC,MAAM;IACR;IAEA,MAAMC,MAAMC,KAAKD,GAAG;IACpB,MAAME,SAASC,CAAAA,GAAAA,YAAAA,qBAAqB,EAClCH,KACAV,YACAF,qBACAQ,gBACAN,YACAd,MAAM4B,KAAK,EACXV,0BACAV,iBACAC,mBACAU;IAGF,MAAMU,UAAmB,CAAC;IAC1BA,QAAQC,0BAA0B,GAAG;IAErC,OAAOC,CAAAA,GAAAA,iBAAAA,sBAAsB,EAACjB,YAAYd,OAAO6B,SAAS,OAAOH;AACnE","ignoreList":[0]}}, - {"offset": {"line": 8362, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/server-patch-reducer.ts"],"sourcesContent":["import { createHrefFromUrl } from '../create-href-from-url'\nimport type {\n ServerPatchAction,\n ReducerState,\n ReadonlyReducerState,\n Mutable,\n} from '../router-reducer-types'\nimport { handleExternalUrl, handleNavigationResult } from './navigate-reducer'\nimport { navigateToSeededRoute } from '../../segment-cache/navigation'\nimport { refreshReducer } from './refresh-reducer'\nimport { FreshnessPolicy } from '../ppr-navigations'\n\nexport function serverPatchReducer(\n state: ReadonlyReducerState,\n action: ServerPatchAction\n): ReducerState {\n const mutable: Mutable = {}\n mutable.preserveCustomHistoryState = false\n\n // A \"retry\" is a navigation that happens due to a route mismatch. It's\n // similar to a refresh, because we will omit any existing dynamic data on\n // the page. But we seed the retry navigation with the exact tree that the\n // server just responded with.\n const retryMpa = action.mpa\n const retryUrl = new URL(action.url, location.origin)\n const retrySeed = action.seed\n if (retryMpa || retrySeed === null) {\n // If the server did not send back data during the mismatch, fall back to\n // an MPA navigation.\n return handleExternalUrl(state, mutable, retryUrl.href, false)\n }\n const currentUrl = new URL(state.canonicalUrl, location.origin)\n if (action.previousTree !== state.tree) {\n // There was another, more recent navigation since the once that\n // mismatched. We can abort the retry, but we still need to refresh the\n // page to evict any stale dynamic data.\n return refreshReducer(state)\n }\n // There have been no new navigations since the mismatched one. Refresh,\n // using the tree we just received from the server.\n const retryCanonicalUrl = createHrefFromUrl(retryUrl)\n const retryNextUrl = action.nextUrl\n // A retry should not create a new history entry.\n const pendingPush = false\n const shouldScroll = true\n const now = Date.now()\n const result = navigateToSeededRoute(\n now,\n retryUrl,\n retryCanonicalUrl,\n retrySeed,\n currentUrl,\n state.cache,\n state.tree,\n FreshnessPolicy.RefreshAll,\n retryNextUrl,\n shouldScroll\n )\n return handleNavigationResult(retryUrl, state, mutable, pendingPush, result)\n}\n"],"names":["serverPatchReducer","state","action","mutable","preserveCustomHistoryState","retryMpa","mpa","retryUrl","URL","url","location","origin","retrySeed","seed","handleExternalUrl","href","currentUrl","canonicalUrl","previousTree","tree","refreshReducer","retryCanonicalUrl","createHrefFromUrl","retryNextUrl","nextUrl","pendingPush","shouldScroll","now","Date","result","navigateToSeededRoute","cache","FreshnessPolicy","RefreshAll","handleNavigationResult"],"mappings":";;;+BAYgBA,sBAAAA;;;eAAAA;;;mCAZkB;iCAOwB;4BACpB;gCACP;gCACC;AAEzB,SAASA,mBACdC,KAA2B,EAC3BC,MAAyB;IAEzB,MAAMC,UAAmB,CAAC;IAC1BA,QAAQC,0BAA0B,GAAG;IAErC,uEAAuE;IACvE,0EAA0E;IAC1E,0EAA0E;IAC1E,8BAA8B;IAC9B,MAAMC,WAAWH,OAAOI,GAAG;IAC3B,MAAMC,WAAW,IAAIC,IAAIN,OAAOO,GAAG,EAAEC,SAASC,MAAM;IACpD,MAAMC,YAAYV,OAAOW,IAAI;IAC7B,IAAIR,YAAYO,cAAc,MAAM;QAClC,yEAAyE;QACzE,qBAAqB;QACrB,OAAOE,CAAAA,GAAAA,iBAAAA,iBAAiB,EAACb,OAAOE,SAASI,SAASQ,IAAI,EAAE;IAC1D;IACA,MAAMC,aAAa,IAAIR,IAAIP,MAAMgB,YAAY,EAAEP,SAASC,MAAM;IAC9D,IAAIT,OAAOgB,YAAY,KAAKjB,MAAMkB,IAAI,EAAE;QACtC,gEAAgE;QAChE,uEAAuE;QACvE,wCAAwC;QACxC,OAAOC,CAAAA,GAAAA,gBAAAA,cAAc,EAACnB;IACxB;IACA,wEAAwE;IACxE,mDAAmD;IACnD,MAAMoB,oBAAoBC,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACf;IAC5C,MAAMgB,eAAerB,OAAOsB,OAAO;IACnC,iDAAiD;IACjD,MAAMC,cAAc;IACpB,MAAMC,eAAe;IACrB,MAAMC,MAAMC,KAAKD,GAAG;IACpB,MAAME,SAASC,CAAAA,GAAAA,YAAAA,qBAAqB,EAClCH,KACApB,UACAc,mBACAT,WACAI,YACAf,MAAM8B,KAAK,EACX9B,MAAMkB,IAAI,EACVa,gBAAAA,eAAe,CAACC,UAAU,EAC1BV,cACAG;IAEF,OAAOQ,CAAAA,GAAAA,iBAAAA,sBAAsB,EAAC3B,UAAUN,OAAOE,SAASsB,aAAaI;AACvE","ignoreList":[0]}}, - {"offset": {"line": 8420, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/restore-reducer.ts"],"sourcesContent":["import { createHrefFromUrl } from '../create-href-from-url'\nimport type {\n ReadonlyReducerState,\n ReducerState,\n RestoreAction,\n} from '../router-reducer-types'\nimport { extractPathFromFlightRouterState } from '../compute-changed-path'\nimport {\n FreshnessPolicy,\n spawnDynamicRequests,\n startPPRNavigation,\n type NavigationRequestAccumulation,\n} from '../ppr-navigations'\nimport type { FlightRouterState } from '../../../../shared/lib/app-router-types'\nimport { handleExternalUrl } from './navigate-reducer'\nimport type { Mutable } from '../router-reducer-types'\n\nexport function restoreReducer(\n state: ReadonlyReducerState,\n action: RestoreAction\n): ReducerState {\n // This action is used to restore the router state from the history state.\n // However, it's possible that the history state no longer contains the `FlightRouterState`.\n // We will copy over the internal state on pushState/replaceState events, but if a history entry\n // occurred before hydration, or if the user navigated to a hash using a regular anchor link,\n // the history state will not contain the `FlightRouterState`.\n // In this case, we'll continue to use the existing tree so the router doesn't get into an invalid state.\n let treeToRestore: FlightRouterState | undefined\n let renderedSearch: string | undefined\n const historyState = action.historyState\n if (historyState) {\n treeToRestore = historyState.tree\n renderedSearch = historyState.renderedSearch\n } else {\n treeToRestore = state.tree\n renderedSearch = state.renderedSearch\n }\n\n const currentUrl = new URL(state.canonicalUrl, location.origin)\n const restoredUrl = action.url\n const restoredCanonicalUrl = createHrefFromUrl(restoredUrl)\n const restoredNextUrl =\n extractPathFromFlightRouterState(treeToRestore) ?? restoredUrl.pathname\n\n const now = Date.now()\n const accumulation: NavigationRequestAccumulation = {\n scrollableSegments: null,\n separateRefreshUrls: null,\n }\n const task = startPPRNavigation(\n now,\n currentUrl,\n state.cache,\n state.tree,\n treeToRestore,\n FreshnessPolicy.HistoryTraversal,\n null,\n null,\n null,\n null,\n false,\n false,\n accumulation\n )\n\n if (task === null) {\n const mutable: Mutable = {\n preserveCustomHistoryState: true,\n }\n return handleExternalUrl(state, mutable, restoredCanonicalUrl, false)\n }\n\n spawnDynamicRequests(\n task,\n restoredUrl,\n restoredNextUrl,\n FreshnessPolicy.HistoryTraversal,\n accumulation\n )\n\n return {\n // Set canonical url\n canonicalUrl: restoredCanonicalUrl,\n renderedSearch,\n pushRef: {\n pendingPush: false,\n mpaNavigation: false,\n // Ensures that the custom history state that was set is preserved when applying this update.\n preserveCustomHistoryState: true,\n },\n focusAndScrollRef: state.focusAndScrollRef,\n cache: task.node,\n // Restore provided tree\n tree: treeToRestore,\n\n nextUrl: restoredNextUrl,\n // TODO: We need to restore previousNextUrl, too, which represents the\n // Next-Url that was used to fetch the data. Anywhere we fetch using the\n // canonical URL, there should be a corresponding Next-Url.\n previousNextUrl: null,\n debugInfo: null,\n }\n}\n"],"names":["restoreReducer","state","action","treeToRestore","renderedSearch","historyState","tree","currentUrl","URL","canonicalUrl","location","origin","restoredUrl","url","restoredCanonicalUrl","createHrefFromUrl","restoredNextUrl","extractPathFromFlightRouterState","pathname","now","Date","accumulation","scrollableSegments","separateRefreshUrls","task","startPPRNavigation","cache","FreshnessPolicy","HistoryTraversal","mutable","preserveCustomHistoryState","handleExternalUrl","spawnDynamicRequests","pushRef","pendingPush","mpaNavigation","focusAndScrollRef","node","nextUrl","previousNextUrl","debugInfo"],"mappings":";;;+BAiBgBA,kBAAAA;;;eAAAA;;;mCAjBkB;oCAMe;gCAM1C;iCAE2B;AAG3B,SAASA,eACdC,KAA2B,EAC3BC,MAAqB;IAErB,0EAA0E;IAC1E,4FAA4F;IAC5F,gGAAgG;IAChG,6FAA6F;IAC7F,8DAA8D;IAC9D,yGAAyG;IACzG,IAAIC;IACJ,IAAIC;IACJ,MAAMC,eAAeH,OAAOG,YAAY;IACxC,IAAIA,cAAc;QAChBF,gBAAgBE,aAAaC,IAAI;QACjCF,iBAAiBC,aAAaD,cAAc;IAC9C,OAAO;QACLD,gBAAgBF,MAAMK,IAAI;QAC1BF,iBAAiBH,MAAMG,cAAc;IACvC;IAEA,MAAMG,aAAa,IAAIC,IAAIP,MAAMQ,YAAY,EAAEC,SAASC,MAAM;IAC9D,MAAMC,cAAcV,OAAOW,GAAG;IAC9B,MAAMC,uBAAuBC,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACH;IAC/C,MAAMI,kBACJC,CAAAA,GAAAA,oBAAAA,gCAAgC,EAACd,kBAAkBS,YAAYM,QAAQ;IAEzE,MAAMC,MAAMC,KAAKD,GAAG;IACpB,MAAME,eAA8C;QAClDC,oBAAoB;QACpBC,qBAAqB;IACvB;IACA,MAAMC,OAAOC,CAAAA,GAAAA,gBAAAA,kBAAkB,EAC7BN,KACAZ,YACAN,MAAMyB,KAAK,EACXzB,MAAMK,IAAI,EACVH,eACAwB,gBAAAA,eAAe,CAACC,gBAAgB,EAChC,MACA,MACA,MACA,MACA,OACA,OACAP;IAGF,IAAIG,SAAS,MAAM;QACjB,MAAMK,UAAmB;YACvBC,4BAA4B;QAC9B;QACA,OAAOC,CAAAA,GAAAA,iBAAAA,iBAAiB,EAAC9B,OAAO4B,SAASf,sBAAsB;IACjE;IAEAkB,CAAAA,GAAAA,gBAAAA,oBAAoB,EAClBR,MACAZ,aACAI,iBACAW,gBAAAA,eAAe,CAACC,gBAAgB,EAChCP;IAGF,OAAO;QACL,oBAAoB;QACpBZ,cAAcK;QACdV;QACA6B,SAAS;YACPC,aAAa;YACbC,eAAe;YACf,6FAA6F;YAC7FL,4BAA4B;QAC9B;QACAM,mBAAmBnC,MAAMmC,iBAAiB;QAC1CV,OAAOF,KAAKa,IAAI;QAChB,wBAAwB;QACxB/B,MAAMH;QAENmC,SAAStB;QACT,sEAAsE;QACtE,wEAAwE;QACxE,2DAA2D;QAC3DuB,iBAAiB;QACjBC,WAAW;IACb;AACF","ignoreList":[0]}}, - {"offset": {"line": 8500, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/hmr-refresh-reducer.ts"],"sourcesContent":["import type {\n ReadonlyReducerState,\n ReducerState,\n} from '../router-reducer-types'\nimport { refreshDynamicData } from './refresh-reducer'\nimport { FreshnessPolicy } from '../ppr-navigations'\n\nexport function hmrRefreshReducer(state: ReadonlyReducerState): ReducerState {\n return refreshDynamicData(state, FreshnessPolicy.HMRRefresh)\n}\n"],"names":["hmrRefreshReducer","state","refreshDynamicData","FreshnessPolicy","HMRRefresh"],"mappings":";;;+BAOgBA,qBAAAA;;;eAAAA;;;gCAHmB;gCACH;AAEzB,SAASA,kBAAkBC,KAA2B;IAC3D,OAAOC,CAAAA,GAAAA,gBAAAA,kBAAkB,EAACD,OAAOE,gBAAAA,eAAe,CAACC,UAAU;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 8525, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unrecognized-action-error.ts"],"sourcesContent":["export class UnrecognizedActionError extends Error {\n constructor(...args: ConstructorParameters<typeof Error>) {\n super(...args)\n this.name = 'UnrecognizedActionError'\n }\n}\n\n/**\n * Check whether a server action call failed because the server action was not recognized by the server.\n * This can happen if the client and the server are not from the same deployment.\n *\n * Example usage:\n * ```ts\n * try {\n * await myServerAction();\n * } catch (err) {\n * if (unstable_isUnrecognizedActionError(err)) {\n * // The client is from a different deployment than the server.\n * // Reloading the page will fix this mismatch.\n * window.alert(\"Please refresh the page and try again\");\n * return;\n * }\n * }\n * ```\n * */\nexport function unstable_isUnrecognizedActionError(\n error: unknown\n): error is UnrecognizedActionError {\n return !!(\n error &&\n typeof error === 'object' &&\n error instanceof UnrecognizedActionError\n )\n}\n"],"names":["UnrecognizedActionError","unstable_isUnrecognizedActionError","Error","constructor","args","name","error"],"mappings":";;;;;;;;;;;;;;IAAaA,uBAAuB,EAAA;eAAvBA;;IAyBGC,kCAAkC,EAAA;eAAlCA;;;AAzBT,MAAMD,gCAAgCE;IAC3CC,YAAY,GAAGC,IAAyC,CAAE;QACxD,KAAK,IAAIA;QACT,IAAI,CAACC,IAAI,GAAG;IACd;AACF;AAoBO,SAASJ,mCACdK,KAAc;IAEd,OAAO,CAAC,CACNA,CAAAA,SACA,OAAOA,UAAU,YACjBA,iBAAiBN,uBAAsB;AAE3C","ignoreList":[0]}}, - {"offset": {"line": 8566, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/assign-location.ts"],"sourcesContent":["import { addBasePath } from './add-base-path'\n\n/**\n * Function to correctly assign location to URL\n *\n * The method will add basePath, and will also correctly add location (including if it is a relative path)\n * @param location Location that should be added to the url\n * @param url Base URL to which the location should be assigned\n */\nexport function assignLocation(location: string, url: URL): URL {\n if (location.startsWith('.')) {\n const urlBase = url.origin + url.pathname\n return new URL(\n // In order for a relative path to be added to the current url correctly, the current url must end with a slash\n // new URL('./relative', 'https://example.com/subdir').href -> 'https://example.com/relative'\n // new URL('./relative', 'https://example.com/subdir/').href -> 'https://example.com/subdir/relative'\n (urlBase.endsWith('/') ? urlBase : urlBase + '/') + location\n )\n }\n\n return new URL(addBasePath(location), url.href)\n}\n"],"names":["assignLocation","location","url","startsWith","urlBase","origin","pathname","URL","endsWith","addBasePath","href"],"mappings":";;;+BASgBA,kBAAAA;;;eAAAA;;;6BATY;AASrB,SAASA,eAAeC,QAAgB,EAAEC,GAAQ;IACvD,IAAID,SAASE,UAAU,CAAC,MAAM;QAC5B,MAAMC,UAAUF,IAAIG,MAAM,GAAGH,IAAII,QAAQ;QACzC,OAAO,IAAIC,IACT,AAGA,AAFA,6FAA6F,kBADkB;QAE/G,qGAAqG;QACpGH,CAAAA,QAAQI,QAAQ,CAAC,OAAOJ,UAAUA,UAAU,GAAE,IAAKH;IAExD;IAEA,OAAO,IAAIM,IAAIE,CAAAA,GAAAA,aAAAA,WAAW,EAACR,WAAWC,IAAIQ,IAAI;AAChD","ignoreList":[0]}}, - {"offset": {"line": 8596, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect.ts"],"sourcesContent":["import { RedirectStatusCode } from './redirect-status-code'\nimport {\n RedirectType,\n type RedirectError,\n isRedirectError,\n REDIRECT_ERROR_CODE,\n} from './redirect-error'\n\nconst actionAsyncStorage =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/action-async-storage.external') as typeof import('../../server/app-render/action-async-storage.external')\n ).actionAsyncStorage\n : undefined\n\nexport function getRedirectError(\n url: string,\n type: RedirectType,\n statusCode: RedirectStatusCode = RedirectStatusCode.TemporaryRedirect\n): RedirectError {\n const error = new Error(REDIRECT_ERROR_CODE) as RedirectError\n error.digest = `${REDIRECT_ERROR_CODE};${type};${url};${statusCode};`\n return error\n}\n\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 307/303 to the caller.\n * - In a Server Action, type defaults to 'push' and 'replace' elsewhere.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */\nexport function redirect(\n /** The URL to redirect to */\n url: string,\n type?: RedirectType\n): never {\n type ??= actionAsyncStorage?.getStore()?.isAction\n ? RedirectType.push\n : RedirectType.replace\n\n throw getRedirectError(url, type, RedirectStatusCode.TemporaryRedirect)\n}\n\n/**\n * This function allows you to redirect the user to another URL. It can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * - In a Server Component, this will insert a meta tag to redirect the user to the target page.\n * - In a Route Handler or Server Action, it will serve a 308/303 to the caller.\n *\n * Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)\n */\nexport function permanentRedirect(\n /** The URL to redirect to */\n url: string,\n type: RedirectType = RedirectType.replace\n): never {\n throw getRedirectError(url, type, RedirectStatusCode.PermanentRedirect)\n}\n\n/**\n * Returns the encoded URL from the error if it's a RedirectError, null\n * otherwise. Note that this does not validate the URL returned.\n *\n * @param error the error that may be a redirect error\n * @return the url if the error was a redirect error\n */\nexport function getURLFromRedirectError(error: RedirectError): string\nexport function getURLFromRedirectError(error: unknown): string | null {\n if (!isRedirectError(error)) return null\n\n // Slices off the beginning of the digest that contains the code and the\n // separating ';'.\n return error.digest.split(';').slice(2, -2).join(';')\n}\n\nexport function getRedirectTypeFromError(error: RedirectError): RedirectType {\n if (!isRedirectError(error)) {\n throw new Error('Not a redirect error')\n }\n\n return error.digest.split(';', 2)[1] as RedirectType\n}\n\nexport function getRedirectStatusCodeFromError(error: RedirectError): number {\n if (!isRedirectError(error)) {\n throw new Error('Not a redirect error')\n }\n\n return Number(error.digest.split(';').at(-2))\n}\n"],"names":["getRedirectError","getRedirectStatusCodeFromError","getRedirectTypeFromError","getURLFromRedirectError","permanentRedirect","redirect","actionAsyncStorage","window","require","undefined","url","type","statusCode","RedirectStatusCode","TemporaryRedirect","error","Error","REDIRECT_ERROR_CODE","digest","getStore","isAction","RedirectType","push","replace","PermanentRedirect","isRedirectError","split","slice","join","Number","at"],"mappings":";;;;;;;;;;;;;;;;;;IAegBA,gBAAgB,EAAA;eAAhBA;;IA6EAC,8BAA8B,EAAA;eAA9BA;;IARAC,wBAAwB,EAAA;eAAxBA;;IARAC,uBAAuB,EAAA;eAAvBA;;IAhBAC,iBAAiB,EAAA;eAAjBA;;IAvBAC,QAAQ,EAAA;eAARA;;;oCArCmB;+BAM5B;AAEP,MAAMC,qBACJ,OAAOC,WAAW,cAEZC,QAAQ,iIACRF,kBAAkB,GACpBG;AAEC,SAAST,iBACdU,GAAW,EACXC,IAAkB,EAClBC,aAAiCC,oBAAAA,kBAAkB,CAACC,iBAAiB;IAErE,MAAMC,QAAQ,OAAA,cAA8B,CAA9B,IAAIC,MAAMC,eAAAA,mBAAmB,GAA7B,qBAAA;eAAA;oBAAA;sBAAA;IAA6B;IAC3CF,MAAMG,MAAM,GAAG,GAAGD,eAAAA,mBAAmB,CAAC,CAAC,EAAEN,KAAK,CAAC,EAAED,IAAI,CAAC,EAAEE,WAAW,CAAC,CAAC;IACrE,OAAOG;AACT;AAcO,SAASV,SACd,2BAA2B,GAC3BK,GAAW,EACXC,IAAmB;IAEnBA,SAASL,oBAAoBa,YAAYC,WACrCC,eAAAA,YAAY,CAACC,IAAI,GACjBD,eAAAA,YAAY,CAACE,OAAO;IAExB,MAAMvB,iBAAiBU,KAAKC,MAAME,oBAAAA,kBAAkB,CAACC,iBAAiB;AACxE;AAaO,SAASV,kBACd,2BAA2B,GAC3BM,GAAW,EACXC,OAAqBU,eAAAA,YAAY,CAACE,OAAO;IAEzC,MAAMvB,iBAAiBU,KAAKC,MAAME,oBAAAA,kBAAkB,CAACW,iBAAiB;AACxE;AAUO,SAASrB,wBAAwBY,KAAc;IACpD,IAAI,CAACU,CAAAA,GAAAA,eAAAA,eAAe,EAACV,QAAQ,OAAO;IAEpC,wEAAwE;IACxE,kBAAkB;IAClB,OAAOA,MAAMG,MAAM,CAACQ,KAAK,CAAC,KAAKC,KAAK,CAAC,GAAG,CAAC,GAAGC,IAAI,CAAC;AACnD;AAEO,SAAS1B,yBAAyBa,KAAoB;IAC3D,IAAI,CAACU,CAAAA,GAAAA,eAAAA,eAAe,EAACV,QAAQ;QAC3B,MAAM,OAAA,cAAiC,CAAjC,IAAIC,MAAM,yBAAV,qBAAA;mBAAA;wBAAA;0BAAA;QAAgC;IACxC;IAEA,OAAOD,MAAMG,MAAM,CAACQ,KAAK,CAAC,KAAK,EAAE,CAAC,EAAE;AACtC;AAEO,SAASzB,+BAA+Bc,KAAoB;IACjE,IAAI,CAACU,CAAAA,GAAAA,eAAAA,eAAe,EAACV,QAAQ;QAC3B,MAAM,OAAA,cAAiC,CAAjC,IAAIC,MAAM,yBAAV,qBAAA;mBAAA;wBAAA;0BAAA;QAAgC;IACxC;IAEA,OAAOa,OAAOd,MAAMG,MAAM,CAACQ,KAAK,CAAC,KAAKI,EAAE,CAAC,CAAC;AAC5C","ignoreList":[0]}}, - {"offset": {"line": 8689, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/has-base-path.ts"],"sourcesContent":["import { pathHasPrefix } from '../shared/lib/router/utils/path-has-prefix'\n\nconst basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || ''\n\nexport function hasBasePath(path: string): boolean {\n return pathHasPrefix(path, basePath)\n}\n"],"names":["hasBasePath","basePath","process","env","__NEXT_ROUTER_BASEPATH","path","pathHasPrefix"],"mappings":"AAEkBE,QAAQC,GAAG,CAACC,sBAAsB;;;;;+BAEpCJ,eAAAA;;;eAAAA;;;+BAJc;AAE9B,MAAMC,mDAA6D;AAE5D,SAASD,YAAYK,IAAY;IACtC,OAAOC,CAAAA,GAAAA,eAAAA,aAAa,EAACD,MAAMJ;AAC7B","ignoreList":[0]}}, - {"offset": {"line": 8716, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/remove-base-path.ts"],"sourcesContent":["import { hasBasePath } from './has-base-path'\n\nconst basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || ''\n\nexport function removeBasePath(path: string): string {\n if (process.env.__NEXT_MANUAL_CLIENT_BASE_PATH) {\n if (!hasBasePath(path)) {\n return path\n }\n }\n\n // Can't trim the basePath if it has zero length!\n if (basePath.length === 0) return path\n\n path = path.slice(basePath.length)\n if (!path.startsWith('/')) path = `/${path}`\n return path\n}\n"],"names":["removeBasePath","basePath","process","env","__NEXT_ROUTER_BASEPATH","path","__NEXT_MANUAL_CLIENT_BASE_PATH","hasBasePath","length","slice","startsWith"],"mappings":"AAEkBE,QAAQC,GAAG,CAACC,sBAAsB;;;;;+BAEpCJ,kBAAAA;;;eAAAA;;;6BAJY;AAE5B,MAAMC,mDAA6D;AAE5D,SAASD,eAAeK,IAAY;IACzC,IAAIH,QAAQC,GAAG,CAACG,8BAA8B,EAAE;;IAMhD,iDAAiD;IACjD,IAAIL,SAASO,MAAM,KAAK,GAAG,OAAOH;IAElCA,OAAOA,KAAKI,KAAK,CAACR,SAASO,MAAM;IACjC,IAAI,CAACH,KAAKK,UAAU,CAAC,MAAML,OAAO,CAAC,CAAC,EAAEA,MAAM;IAC5C,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 8749, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/server-action-reducer.ts"],"sourcesContent":["import type {\n ActionFlightResponse,\n ActionResult,\n} from '../../../../shared/lib/app-router-types'\nimport { callServer } from '../../../app-call-server'\nimport { findSourceMapURL } from '../../../app-find-source-map-url'\nimport {\n ACTION_HEADER,\n NEXT_ACTION_NOT_FOUND_HEADER,\n NEXT_IS_PRERENDER_HEADER,\n NEXT_HTML_REQUEST_ID_HEADER,\n NEXT_ROUTER_STATE_TREE_HEADER,\n NEXT_URL,\n RSC_CONTENT_TYPE_HEADER,\n NEXT_REQUEST_ID_HEADER,\n} from '../../app-router-headers'\nimport { UnrecognizedActionError } from '../../unrecognized-action-error'\n\n// TODO: Explicitly import from client.browser\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport {\n createFromFetch as createFromFetchBrowser,\n createTemporaryReferenceSet,\n encodeReply,\n} from 'react-server-dom-webpack/client'\n\nimport type {\n ReadonlyReducerState,\n ReducerState,\n ServerActionAction,\n ServerActionMutable,\n} from '../router-reducer-types'\nimport { assignLocation } from '../../../assign-location'\nimport { createHrefFromUrl } from '../create-href-from-url'\nimport { handleExternalUrl, handleNavigationResult } from './navigate-reducer'\nimport { hasInterceptionRouteInCurrentTree } from './has-interception-route-in-current-tree'\nimport {\n normalizeFlightData,\n prepareFlightRouterStateForRequest,\n type NormalizedFlightData,\n} from '../../../flight-data-helpers'\nimport { getRedirectError } from '../../redirect'\nimport { RedirectType } from '../../redirect-error'\nimport { removeBasePath } from '../../../remove-base-path'\nimport { hasBasePath } from '../../../has-base-path'\nimport {\n extractInfoFromServerReferenceId,\n omitUnusedArgs,\n} from '../../../../shared/lib/server-reference-info'\nimport { revalidateEntireCache } from '../../segment-cache/cache'\nimport { getDeploymentId } from '../../../../shared/lib/deployment-id'\nimport {\n navigateToSeededRoute,\n navigate as navigateUsingSegmentCache,\n} from '../../segment-cache/navigation'\nimport type { NormalizedSearch } from '../../segment-cache/cache-key'\nimport {\n ActionDidNotRevalidate,\n ActionDidRevalidateDynamicOnly,\n ActionDidRevalidateStaticAndDynamic,\n type ActionRevalidationKind,\n} from '../../../../shared/lib/action-revalidation-kind'\nimport { isExternalURL } from '../../app-router-utils'\nimport { FreshnessPolicy } from '../ppr-navigations'\n\nconst createFromFetch =\n createFromFetchBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromFetch']\n\nlet createDebugChannel:\n | typeof import('../../../dev/debug-channel').createDebugChannel\n | undefined\n\nif (\n process.env.NODE_ENV !== 'production' &&\n process.env.__NEXT_REACT_DEBUG_CHANNEL\n) {\n createDebugChannel = (\n require('../../../dev/debug-channel') as typeof import('../../../dev/debug-channel')\n ).createDebugChannel\n}\n\n// TODO: Refactor to be a discriminated union. Or just get rid of it;\n// fetchServerAction only has one caller, no reason this intermediate type has\n// to exist.\ntype FetchServerActionResult = {\n redirectLocation: URL | undefined\n redirectType: RedirectType | undefined\n revalidationKind: ActionRevalidationKind\n actionResult: ActionResult | undefined\n actionFlightData: NormalizedFlightData[] | string | undefined\n actionFlightDataRenderedSearch: NormalizedSearch | undefined\n actionFlightDataCouldBeIntercepted: boolean | undefined\n isPrerender: boolean\n}\n\nasync function fetchServerAction(\n state: ReadonlyReducerState,\n nextUrl: ReadonlyReducerState['nextUrl'],\n { actionId, actionArgs }: ServerActionAction\n): Promise<FetchServerActionResult> {\n const temporaryReferences = createTemporaryReferenceSet()\n const info = extractInfoFromServerReferenceId(actionId)\n\n // TODO: Currently, we're only omitting unused args for the experimental \"use\n // cache\" functions. Once the server reference info byte feature is stable, we\n // should apply this to server actions as well.\n const usedArgs =\n info.type === 'use-cache' ? omitUnusedArgs(actionArgs, info) : actionArgs\n\n const body = await encodeReply(usedArgs, { temporaryReferences })\n\n const headers: Record<string, string> = {\n Accept: RSC_CONTENT_TYPE_HEADER,\n [ACTION_HEADER]: actionId,\n [NEXT_ROUTER_STATE_TREE_HEADER]: prepareFlightRouterStateForRequest(\n state.tree\n ),\n }\n\n const deploymentId = getDeploymentId()\n if (deploymentId) {\n headers['x-deployment-id'] = deploymentId\n }\n\n if (nextUrl) {\n headers[NEXT_URL] = nextUrl\n }\n\n if (process.env.NODE_ENV !== 'production') {\n if (self.__next_r) {\n headers[NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r\n }\n\n // Create a new request ID for the server action request. The server uses\n // this to tag debug information sent via WebSocket to the client, which\n // then routes those chunks to the debug channel associated with this ID.\n headers[NEXT_REQUEST_ID_HEADER] = crypto\n .getRandomValues(new Uint32Array(1))[0]\n .toString(16)\n }\n\n const res = await fetch(state.canonicalUrl, { method: 'POST', headers, body })\n\n // Handle server actions that the server didn't recognize.\n const unrecognizedActionHeader = res.headers.get(NEXT_ACTION_NOT_FOUND_HEADER)\n if (unrecognizedActionHeader === '1') {\n throw new UnrecognizedActionError(\n `Server Action \"${actionId}\" was not found on the server. \\nRead more: https://nextjs.org/docs/messages/failed-to-find-server-action`\n )\n }\n\n const redirectHeader = res.headers.get('x-action-redirect')\n const [location, _redirectType] = redirectHeader?.split(';') || []\n let redirectType: RedirectType | undefined\n switch (_redirectType) {\n case 'push':\n redirectType = RedirectType.push\n break\n case 'replace':\n redirectType = RedirectType.replace\n break\n default:\n redirectType = undefined\n }\n\n const isPrerender = !!res.headers.get(NEXT_IS_PRERENDER_HEADER)\n\n let revalidationKind: ActionRevalidationKind = ActionDidNotRevalidate\n try {\n const revalidationHeader = res.headers.get('x-action-revalidated')\n if (revalidationHeader) {\n const parsedKind = JSON.parse(revalidationHeader)\n if (\n parsedKind === ActionDidRevalidateStaticAndDynamic ||\n parsedKind === ActionDidRevalidateDynamicOnly\n ) {\n revalidationKind = parsedKind\n }\n }\n } catch {}\n\n const redirectLocation = location\n ? assignLocation(\n location,\n new URL(state.canonicalUrl, window.location.href)\n )\n : undefined\n\n const contentType = res.headers.get('content-type')\n const isRscResponse = !!(\n contentType && contentType.startsWith(RSC_CONTENT_TYPE_HEADER)\n )\n\n // Handle invalid server action responses.\n // A valid response must have `content-type: text/x-component`, unless it's an external redirect.\n // (external redirects have an 'x-action-redirect' header, but the body is an empty 'text/plain')\n if (!isRscResponse && !redirectLocation) {\n // The server can respond with a text/plain error message, but we'll fallback to something generic\n // if there isn't one.\n const message =\n res.status >= 400 && contentType === 'text/plain'\n ? await res.text()\n : 'An unexpected response was received from the server.'\n\n throw new Error(message)\n }\n\n let actionResult: FetchServerActionResult['actionResult']\n let actionFlightData: FetchServerActionResult['actionFlightData']\n let actionFlightDataRenderedSearch: FetchServerActionResult['actionFlightDataRenderedSearch']\n let actionFlightDataCouldBeIntercepted: FetchServerActionResult['actionFlightDataCouldBeIntercepted']\n\n if (isRscResponse) {\n const response: ActionFlightResponse = await createFromFetch(\n Promise.resolve(res),\n {\n callServer,\n findSourceMapURL,\n temporaryReferences,\n debugChannel: createDebugChannel && createDebugChannel(headers),\n }\n )\n\n // An internal redirect can send an RSC response, but does not have a useful `actionResult`.\n actionResult = redirectLocation ? undefined : response.a\n const maybeFlightData = normalizeFlightData(response.f)\n if (maybeFlightData !== '') {\n actionFlightData = maybeFlightData\n actionFlightDataRenderedSearch = response.q as NormalizedSearch\n actionFlightDataCouldBeIntercepted = response.i\n }\n } else {\n // An external redirect doesn't contain RSC data.\n actionResult = undefined\n actionFlightData = undefined\n actionFlightDataRenderedSearch = undefined\n actionFlightDataCouldBeIntercepted = undefined\n }\n\n return {\n actionResult,\n actionFlightData,\n actionFlightDataRenderedSearch,\n actionFlightDataCouldBeIntercepted,\n redirectLocation,\n redirectType,\n revalidationKind,\n isPrerender,\n }\n}\n\n/*\n * This reducer is responsible for calling the server action and processing any side-effects from the server action.\n * It does not mutate the state by itself but rather delegates to other reducers to do the actual mutation.\n */\nexport function serverActionReducer(\n state: ReadonlyReducerState,\n action: ServerActionAction\n): ReducerState {\n const { resolve, reject } = action\n const mutable: ServerActionMutable = {}\n\n mutable.preserveCustomHistoryState = false\n\n // only pass along the `nextUrl` param (used for interception routes) if the current route was intercepted.\n // If the route has been intercepted, the action should be as well.\n // Otherwise the server action might be intercepted with the wrong action id\n // (ie, one that corresponds with the intercepted route)\n const nextUrl =\n // We always send the last next-url, not the current when\n // performing a dynamic request. This is because we update\n // the next-url after a navigation, but we want the same\n // interception route to be matched that used the last\n // next-url.\n (state.previousNextUrl || state.nextUrl) &&\n hasInterceptionRouteInCurrentTree(state.tree)\n ? state.previousNextUrl || state.nextUrl\n : null\n\n return fetchServerAction(state, nextUrl, action).then(\n async ({\n revalidationKind,\n actionResult,\n actionFlightData: flightData,\n actionFlightDataRenderedSearch: flightDataRenderedSearch,\n actionFlightDataCouldBeIntercepted: flightDataCouldBeIntercepted,\n redirectLocation,\n redirectType,\n }) => {\n if (revalidationKind !== ActionDidNotRevalidate) {\n // Store whether this action triggered any revalidation\n // The action queue will use this information to potentially\n // trigger a refresh action if the action was discarded\n // (ie, due to a navigation, before the action completed)\n action.didRevalidate = true\n\n // If there was a revalidation, evict the entire prefetch cache.\n // TODO: Evict only segments with matching tags and/or paths.\n if (revalidationKind === ActionDidRevalidateStaticAndDynamic) {\n revalidateEntireCache(nextUrl, state.tree)\n }\n }\n\n const pendingPush = redirectType !== RedirectType.replace\n state.pushRef.pendingPush = pendingPush\n mutable.pendingPush = pendingPush\n\n if (redirectLocation !== undefined) {\n // If the action triggered a redirect, the action promise will be rejected with\n // a redirect so that it's handled by RedirectBoundary as we won't have a valid\n // action result to resolve the promise with. This will effectively reset the state of\n // the component that called the action as the error boundary will remount the tree.\n // The status code doesn't matter here as the action handler will have already sent\n // a response with the correct status code.\n const resolvedRedirectType = redirectType || RedirectType.push\n\n if (isExternalURL(redirectLocation)) {\n // External redirect. Triggers an MPA navigation.\n const redirectHref = redirectLocation.href\n const redirectError = createRedirectErrorForAction(\n redirectHref,\n resolvedRedirectType\n )\n reject(redirectError)\n return handleExternalUrl(state, mutable, redirectHref, pendingPush)\n } else {\n // Internal redirect. Triggers an SPA navigation.\n const redirectWithBasepath = createHrefFromUrl(\n redirectLocation,\n false\n )\n const redirectHref = hasBasePath(redirectWithBasepath)\n ? removeBasePath(redirectWithBasepath)\n : redirectWithBasepath\n const redirectError = createRedirectErrorForAction(\n redirectHref,\n resolvedRedirectType\n )\n reject(redirectError)\n }\n } else {\n // If there's no redirect, resolve the action with the result.\n resolve(actionResult)\n }\n\n // Check if we can bail out without updating any state.\n if (\n // Did the action trigger a redirect?\n redirectLocation === undefined &&\n // Did the action revalidate any data?\n revalidationKind === ActionDidNotRevalidate &&\n // Did the server render new data?\n flightData === undefined\n ) {\n // The action did not trigger any revalidations or redirects. No\n // navigation is required.\n return state\n }\n\n if (flightData === undefined && redirectLocation !== undefined) {\n // The server redirected, but did not send any Flight data. This implies\n // an external redirect.\n // TODO: We should refactor the action response type to be more explicit\n // about the various response types.\n return handleExternalUrl(\n state,\n mutable,\n redirectLocation.href,\n pendingPush\n )\n }\n\n if (typeof flightData === 'string') {\n // If the flight data is just a string, something earlier in the\n // response handling triggered an external redirect.\n return handleExternalUrl(state, mutable, flightData, pendingPush)\n }\n\n // The action triggered a navigation — either a redirect, a revalidation,\n // or both.\n\n // If there was no redirect, then the target URL is the same as the\n // current URL.\n const currentUrl = new URL(state.canonicalUrl, location.origin)\n const redirectUrl =\n redirectLocation !== undefined ? redirectLocation : currentUrl\n const currentFlightRouterState = state.tree\n const shouldScroll = true\n\n // If the action triggered a revalidation of the cache, we should also\n // refresh all the dynamic data.\n const freshnessPolicy =\n revalidationKind === ActionDidNotRevalidate\n ? FreshnessPolicy.Default\n : FreshnessPolicy.RefreshAll\n\n // The server may have sent back new data. If so, we will perform a\n // \"seeded\" navigation that uses the data from the response.\n if (flightData !== undefined) {\n const normalizedFlightData = flightData[0]\n if (\n normalizedFlightData !== undefined &&\n // TODO: Currently the server always renders from the root in\n // response to a Server Action. In the case of a normal redirect\n // with no revalidation, it should skip over the shared layouts.\n normalizedFlightData.isRootRender &&\n flightDataRenderedSearch !== undefined &&\n flightDataCouldBeIntercepted !== undefined\n ) {\n // The server sent back new route data as part of the response. We\n // will use this to render the new page. If this happens to be only a\n // subset of the data needed to render the new page, we'll initiate a\n // new fetch, like we would for a normal navigation.\n const redirectCanonicalUrl = createHrefFromUrl(redirectUrl)\n const navigationSeed = {\n tree: normalizedFlightData.tree,\n renderedSearch: flightDataRenderedSearch,\n data: normalizedFlightData.seedData,\n head: normalizedFlightData.head,\n }\n const now = Date.now()\n const result = navigateToSeededRoute(\n now,\n redirectUrl,\n redirectCanonicalUrl,\n navigationSeed,\n currentUrl,\n state.cache,\n currentFlightRouterState,\n freshnessPolicy,\n nextUrl,\n shouldScroll\n )\n return handleNavigationResult(\n redirectUrl,\n state,\n mutable,\n pendingPush,\n result\n )\n }\n }\n\n // The server did not send back new data. We'll perform a regular, non-\n // seeded navigation — effectively the same as <Link> or router.push().\n const result = navigateUsingSegmentCache(\n redirectUrl,\n currentUrl,\n state.cache,\n currentFlightRouterState,\n nextUrl,\n freshnessPolicy,\n shouldScroll,\n mutable\n )\n return handleNavigationResult(\n redirectUrl,\n state,\n mutable,\n pendingPush,\n result\n )\n },\n (e: any) => {\n // When the server action is rejected we don't update the state and instead call the reject handler of the promise.\n reject(e)\n\n return state\n }\n )\n}\n\nfunction createRedirectErrorForAction(\n redirectHref: string,\n resolvedRedirectType: RedirectType\n) {\n const redirectError = getRedirectError(redirectHref, resolvedRedirectType)\n // We mark the error as handled because we don't want the redirect to be tried later by\n // the RedirectBoundary, in case the user goes back and `Activity` triggers the redirect\n // again, as it's run within an effect.\n // We don't actually need the RedirectBoundary to do a router.push because we already\n // have all the necessary RSC data to render the new page within a single roundtrip.\n ;(redirectError as any).handled = true\n return redirectError\n}\n"],"names":["serverActionReducer","createFromFetch","createFromFetchBrowser","createDebugChannel","process","env","NODE_ENV","__NEXT_REACT_DEBUG_CHANNEL","require","fetchServerAction","state","nextUrl","actionId","actionArgs","temporaryReferences","createTemporaryReferenceSet","info","extractInfoFromServerReferenceId","usedArgs","type","omitUnusedArgs","body","encodeReply","headers","Accept","RSC_CONTENT_TYPE_HEADER","ACTION_HEADER","NEXT_ROUTER_STATE_TREE_HEADER","prepareFlightRouterStateForRequest","tree","deploymentId","getDeploymentId","NEXT_URL","self","__next_r","NEXT_HTML_REQUEST_ID_HEADER","NEXT_REQUEST_ID_HEADER","crypto","getRandomValues","Uint32Array","toString","res","fetch","canonicalUrl","method","unrecognizedActionHeader","get","NEXT_ACTION_NOT_FOUND_HEADER","UnrecognizedActionError","redirectHeader","location","_redirectType","split","redirectType","RedirectType","push","replace","undefined","isPrerender","NEXT_IS_PRERENDER_HEADER","revalidationKind","ActionDidNotRevalidate","revalidationHeader","parsedKind","JSON","parse","ActionDidRevalidateStaticAndDynamic","ActionDidRevalidateDynamicOnly","redirectLocation","assignLocation","URL","window","href","contentType","isRscResponse","startsWith","message","status","text","Error","actionResult","actionFlightData","actionFlightDataRenderedSearch","actionFlightDataCouldBeIntercepted","response","Promise","resolve","callServer","findSourceMapURL","debugChannel","a","maybeFlightData","normalizeFlightData","f","q","i","action","reject","mutable","preserveCustomHistoryState","previousNextUrl","hasInterceptionRouteInCurrentTree","then","flightData","flightDataRenderedSearch","flightDataCouldBeIntercepted","didRevalidate","revalidateEntireCache","pendingPush","pushRef","resolvedRedirectType","isExternalURL","redirectHref","redirectError","createRedirectErrorForAction","handleExternalUrl","redirectWithBasepath","createHrefFromUrl","hasBasePath","removeBasePath","currentUrl","origin","redirectUrl","currentFlightRouterState","shouldScroll","freshnessPolicy","FreshnessPolicy","Default","RefreshAll","normalizedFlightData","isRootRender","redirectCanonicalUrl","navigationSeed","renderedSearch","data","seedData","head","now","Date","result","navigateToSeededRoute","cache","handleNavigationResult","navigateUsingSegmentCache","e","getRedirectError","handled"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9042, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/router-reducer.ts"],"sourcesContent":["import {\n ACTION_NAVIGATE,\n ACTION_SERVER_PATCH,\n ACTION_RESTORE,\n ACTION_REFRESH,\n ACTION_HMR_REFRESH,\n ACTION_SERVER_ACTION,\n} from './router-reducer-types'\nimport type {\n ReducerActions,\n ReducerState,\n ReadonlyReducerState,\n} from './router-reducer-types'\nimport { navigateReducer } from './reducers/navigate-reducer'\nimport { serverPatchReducer } from './reducers/server-patch-reducer'\nimport { restoreReducer } from './reducers/restore-reducer'\nimport { refreshReducer } from './reducers/refresh-reducer'\nimport { hmrRefreshReducer } from './reducers/hmr-refresh-reducer'\nimport { serverActionReducer } from './reducers/server-action-reducer'\n\n/**\n * Reducer that handles the app-router state updates.\n */\nfunction clientReducer(\n state: ReadonlyReducerState,\n action: ReducerActions\n): ReducerState {\n switch (action.type) {\n case ACTION_NAVIGATE: {\n return navigateReducer(state, action)\n }\n case ACTION_SERVER_PATCH: {\n return serverPatchReducer(state, action)\n }\n case ACTION_RESTORE: {\n return restoreReducer(state, action)\n }\n case ACTION_REFRESH: {\n return refreshReducer(state)\n }\n case ACTION_HMR_REFRESH: {\n return hmrRefreshReducer(state)\n }\n case ACTION_SERVER_ACTION: {\n return serverActionReducer(state, action)\n }\n // This case should never be hit as dispatch is strongly typed.\n default:\n throw new Error('Unknown action')\n }\n}\n\nfunction serverReducer(\n state: ReadonlyReducerState,\n _action: ReducerActions\n): ReducerState {\n return state\n}\n\n// we don't run the client reducer on the server, so we use a noop function for better tree shaking\nexport const reducer =\n typeof window === 'undefined' ? serverReducer : clientReducer\n"],"names":["reducer","clientReducer","state","action","type","ACTION_NAVIGATE","navigateReducer","ACTION_SERVER_PATCH","serverPatchReducer","ACTION_RESTORE","restoreReducer","ACTION_REFRESH","refreshReducer","ACTION_HMR_REFRESH","hmrRefreshReducer","ACTION_SERVER_ACTION","serverActionReducer","Error","serverReducer","_action","window"],"mappings":";;;+BA4DaA,WAAAA;;;eAAAA;;;oCArDN;iCAMyB;oCACG;gCACJ;gCACA;mCACG;qCACE;AAEpC;;CAEC,GACD,SAASC,cACPC,KAA2B,EAC3BC,MAAsB;IAEtB,OAAQA,OAAOC,IAAI;QACjB,KAAKC,oBAAAA,eAAe;YAAE;gBACpB,OAAOC,CAAAA,GAAAA,iBAAAA,eAAe,EAACJ,OAAOC;YAChC;QACA,KAAKI,oBAAAA,mBAAmB;YAAE;gBACxB,OAAOC,CAAAA,GAAAA,oBAAAA,kBAAkB,EAACN,OAAOC;YACnC;QACA,KAAKM,oBAAAA,cAAc;YAAE;gBACnB,OAAOC,CAAAA,GAAAA,gBAAAA,cAAc,EAACR,OAAOC;YAC/B;QACA,KAAKQ,oBAAAA,cAAc;YAAE;gBACnB,OAAOC,CAAAA,GAAAA,gBAAAA,cAAc,EAACV;YACxB;QACA,KAAKW,oBAAAA,kBAAkB;YAAE;gBACvB,OAAOC,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACZ;YAC3B;QACA,KAAKa,oBAAAA,oBAAoB;YAAE;gBACzB,OAAOC,CAAAA,GAAAA,qBAAAA,mBAAmB,EAACd,OAAOC;YACpC;QACA,+DAA+D;QAC/D;YACE,MAAM,OAAA,cAA2B,CAA3B,IAAIc,MAAM,mBAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAA0B;IACpC;AACF;AAEA,SAASC,cACPhB,KAA2B,EAC3BiB,OAAuB;IAEvB,OAAOjB;AACT;AAGO,MAAMF,UACX,OAAOoB,WAAW,cAAcF,gBAAgBjB","ignoreList":[0]}}, - {"offset": {"line": 9110, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/segment-cache/prefetch.ts"],"sourcesContent":["import type { FlightRouterState } from '../../../shared/lib/app-router-types'\nimport { createPrefetchURL } from '../app-router-utils'\nimport { createCacheKey } from './cache-key'\nimport { schedulePrefetchTask } from './scheduler'\nimport { PrefetchPriority, type PrefetchTaskFetchStrategy } from './types'\n\n/**\n * Entrypoint for prefetching a URL into the Segment Cache.\n * @param href - The URL to prefetch. Typically this will come from a <Link>,\n * or router.prefetch. It must be validated before we attempt to prefetch it.\n * @param nextUrl - A special header used by the server for interception routes.\n * Roughly corresponds to the current URL.\n * @param treeAtTimeOfPrefetch - The FlightRouterState at the time the prefetch\n * was requested. This is only used when PPR is disabled.\n * @param fetchStrategy - Whether to prefetch dynamic data, in addition to\n * static data. This is used by `<Link prefetch={true}>`.\n * @param onInvalidate - A callback that will be called when the prefetch cache\n * When called, it signals to the listener that the data associated with the\n * prefetch may have been invalidated from the cache. This is not a live\n * subscription — it's called at most once per `prefetch` call. The only\n * supported use case is to trigger a new prefetch inside the listener, if\n * desired. It also may be called even in cases where the associated data is\n * still cached. Prefetching is a poll-based (pull) operation, not an event-\n * based (push) one. Rather than subscribe to specific cache entries, you\n * occasionally poll the prefetch cache to check if anything is missing.\n */\nexport function prefetch(\n href: string,\n nextUrl: string | null,\n treeAtTimeOfPrefetch: FlightRouterState,\n fetchStrategy: PrefetchTaskFetchStrategy,\n onInvalidate: null | (() => void)\n) {\n const url = createPrefetchURL(href)\n if (url === null) {\n // This href should not be prefetched.\n return\n }\n const cacheKey = createCacheKey(url.href, nextUrl)\n schedulePrefetchTask(\n cacheKey,\n treeAtTimeOfPrefetch,\n fetchStrategy,\n PrefetchPriority.Default,\n onInvalidate\n )\n}\n"],"names":["prefetch","href","nextUrl","treeAtTimeOfPrefetch","fetchStrategy","onInvalidate","url","createPrefetchURL","cacheKey","createCacheKey","schedulePrefetchTask","PrefetchPriority","Default"],"mappings":";;;+BA0BgBA,YAAAA;;;eAAAA;;;gCAzBkB;0BACH;2BACM;uBAC4B;AAsB1D,SAASA,SACdC,IAAY,EACZC,OAAsB,EACtBC,oBAAuC,EACvCC,aAAwC,EACxCC,YAAiC;IAEjC,MAAMC,MAAMC,CAAAA,GAAAA,gBAAAA,iBAAiB,EAACN;IAC9B,IAAIK,QAAQ,MAAM;QAChB,sCAAsC;QACtC;IACF;IACA,MAAME,WAAWC,CAAAA,GAAAA,UAAAA,cAAc,EAACH,IAAIL,IAAI,EAAEC;IAC1CQ,CAAAA,GAAAA,WAAAA,oBAAoB,EAClBF,UACAL,sBACAC,eACAO,OAAAA,gBAAgB,CAACC,OAAO,EACxBP;AAEJ","ignoreList":[0]}}, - {"offset": {"line": 9143, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-instance.ts"],"sourcesContent":["import {\n type AppRouterState,\n type ReducerActions,\n type ReducerState,\n ACTION_REFRESH,\n ACTION_SERVER_ACTION,\n ACTION_NAVIGATE,\n ACTION_RESTORE,\n type NavigateAction,\n ACTION_HMR_REFRESH,\n PrefetchKind,\n type AppHistoryState,\n} from './router-reducer/router-reducer-types'\nimport { reducer } from './router-reducer/router-reducer'\nimport { startTransition } from 'react'\nimport { isThenable } from '../../shared/lib/is-thenable'\nimport {\n FetchStrategy,\n type PrefetchTaskFetchStrategy,\n} from './segment-cache/types'\nimport { prefetch as prefetchWithSegmentCache } from './segment-cache/prefetch'\nimport { dispatchAppRouterAction } from './use-action-queue'\nimport { addBasePath } from '../add-base-path'\nimport { isExternalURL } from './app-router-utils'\nimport type {\n AppRouterInstance,\n NavigateOptions,\n PrefetchOptions,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport { setLinkForCurrentNavigation, type LinkInstance } from './links'\nimport type { ClientInstrumentationHooks } from '../app-index'\nimport type { GlobalErrorComponent } from './builtin/global-error'\n\nexport type DispatchStatePromise = React.Dispatch<ReducerState>\n\nexport type AppRouterActionQueue = {\n state: AppRouterState\n dispatch: (payload: ReducerActions, setState: DispatchStatePromise) => void\n action: (state: AppRouterState, action: ReducerActions) => ReducerState\n\n onRouterTransitionStart:\n | ((url: string, type: 'push' | 'replace' | 'traverse') => void)\n | null\n\n pending: ActionQueueNode | null\n needsRefresh?: boolean\n last: ActionQueueNode | null\n}\n\nexport type GlobalErrorState = [\n GlobalError: GlobalErrorComponent,\n styles: React.ReactNode,\n]\n\nexport type ActionQueueNode = {\n payload: ReducerActions\n next: ActionQueueNode | null\n resolve: (value: ReducerState) => void\n reject: (err: Error) => void\n discarded?: boolean\n}\n\nfunction runRemainingActions(\n actionQueue: AppRouterActionQueue,\n setState: DispatchStatePromise\n) {\n if (actionQueue.pending !== null) {\n actionQueue.pending = actionQueue.pending.next\n if (actionQueue.pending !== null) {\n runAction({\n actionQueue,\n action: actionQueue.pending,\n setState,\n })\n }\n } else {\n // Check for refresh when pending is already null\n // This handles the case where a discarded server action completes\n // after the navigation has already finished and the queue is empty\n if (actionQueue.needsRefresh) {\n actionQueue.needsRefresh = false\n actionQueue.dispatch({ type: ACTION_REFRESH }, setState)\n }\n }\n}\n\nasync function runAction({\n actionQueue,\n action,\n setState,\n}: {\n actionQueue: AppRouterActionQueue\n action: ActionQueueNode\n setState: DispatchStatePromise\n}) {\n const prevState = actionQueue.state\n\n actionQueue.pending = action\n\n const payload = action.payload\n const actionResult = actionQueue.action(prevState, payload)\n\n function handleResult(nextState: AppRouterState) {\n // if we discarded this action, the state should also be discarded\n if (action.discarded) {\n // Check if the discarded server action revalidated data\n if (\n action.payload.type === ACTION_SERVER_ACTION &&\n action.payload.didRevalidate\n ) {\n // The server action was discarded but it revalidated data,\n // mark that we need to refresh after all actions complete\n actionQueue.needsRefresh = true\n }\n // Still need to run remaining actions even for discarded actions\n // to potentially trigger the refresh\n runRemainingActions(actionQueue, setState)\n return\n }\n\n actionQueue.state = nextState\n\n runRemainingActions(actionQueue, setState)\n action.resolve(nextState)\n }\n\n // if the action is a promise, set up a callback to resolve it\n if (isThenable(actionResult)) {\n actionResult.then(handleResult, (err) => {\n runRemainingActions(actionQueue, setState)\n action.reject(err)\n })\n } else {\n handleResult(actionResult)\n }\n}\n\nfunction dispatchAction(\n actionQueue: AppRouterActionQueue,\n payload: ReducerActions,\n setState: DispatchStatePromise\n) {\n let resolvers: {\n resolve: (value: ReducerState) => void\n reject: (reason: any) => void\n } = { resolve: setState, reject: () => {} }\n\n // most of the action types are async with the exception of restore\n // it's important that restore is handled quickly since it's fired on the popstate event\n // and we don't want to add any delay on a back/forward nav\n // this only creates a promise for the async actions\n if (payload.type !== ACTION_RESTORE) {\n // Create the promise and assign the resolvers to the object.\n const deferredPromise = new Promise<AppRouterState>((resolve, reject) => {\n resolvers = { resolve, reject }\n })\n\n startTransition(() => {\n // we immediately notify React of the pending promise -- the resolver is attached to the action node\n // and will be called when the associated action promise resolves\n setState(deferredPromise)\n })\n }\n\n const newAction: ActionQueueNode = {\n payload,\n next: null,\n resolve: resolvers.resolve,\n reject: resolvers.reject,\n }\n\n // Check if the queue is empty\n if (actionQueue.pending === null) {\n // The queue is empty, so add the action and start it immediately\n // Mark this action as the last in the queue\n actionQueue.last = newAction\n\n runAction({\n actionQueue,\n action: newAction,\n setState,\n })\n } else if (\n payload.type === ACTION_NAVIGATE ||\n payload.type === ACTION_RESTORE\n ) {\n // Navigations (including back/forward) take priority over any pending actions.\n // Mark the pending action as discarded (so the state is never applied) and start the navigation action immediately.\n actionQueue.pending.discarded = true\n\n // The rest of the current queue should still execute after this navigation.\n // (Note that it can't contain any earlier navigations, because we always put those into `actionQueue.pending` by calling `runAction`)\n newAction.next = actionQueue.pending.next\n\n runAction({\n actionQueue,\n action: newAction,\n setState,\n })\n } else {\n // The queue is not empty, so add the action to the end of the queue\n // It will be started by runRemainingActions after the previous action finishes\n if (actionQueue.last !== null) {\n actionQueue.last.next = newAction\n }\n actionQueue.last = newAction\n }\n}\n\nlet globalActionQueue: AppRouterActionQueue | null = null\n\nexport function createMutableActionQueue(\n initialState: AppRouterState,\n instrumentationHooks: ClientInstrumentationHooks | null\n): AppRouterActionQueue {\n const actionQueue: AppRouterActionQueue = {\n state: initialState,\n dispatch: (payload: ReducerActions, setState: DispatchStatePromise) =>\n dispatchAction(actionQueue, payload, setState),\n action: async (state: AppRouterState, action: ReducerActions) => {\n const result = reducer(state, action)\n return result\n },\n pending: null,\n last: null,\n onRouterTransitionStart:\n instrumentationHooks !== null &&\n typeof instrumentationHooks.onRouterTransitionStart === 'function'\n ? // This profiling hook will be called at the start of every navigation.\n instrumentationHooks.onRouterTransitionStart\n : null,\n }\n\n if (typeof window !== 'undefined') {\n // The action queue is lazily created on hydration, but after that point\n // it doesn't change. So we can store it in a global rather than pass\n // it around everywhere via props/context.\n if (globalActionQueue !== null) {\n throw new Error(\n 'Internal Next.js Error: createMutableActionQueue was called more ' +\n 'than once'\n )\n }\n globalActionQueue = actionQueue\n }\n\n return actionQueue\n}\n\nexport function getCurrentAppRouterState(): AppRouterState | null {\n return globalActionQueue !== null ? globalActionQueue.state : null\n}\n\nfunction getAppRouterActionQueue(): AppRouterActionQueue {\n if (globalActionQueue === null) {\n throw new Error(\n 'Internal Next.js error: Router action dispatched before initialization.'\n )\n }\n return globalActionQueue\n}\n\nfunction getProfilingHookForOnNavigationStart() {\n if (globalActionQueue !== null) {\n return globalActionQueue.onRouterTransitionStart\n }\n return null\n}\n\nexport function dispatchNavigateAction(\n href: string,\n navigateType: NavigateAction['navigateType'],\n shouldScroll: boolean,\n linkInstanceRef: LinkInstance | null\n): void {\n // TODO: This stuff could just go into the reducer. Leaving as-is for now\n // since we're about to rewrite all the router reducer stuff anyway.\n const url = new URL(addBasePath(href), location.href)\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n window.next.__pendingUrl = url\n }\n\n setLinkForCurrentNavigation(linkInstanceRef)\n\n const onRouterTransitionStart = getProfilingHookForOnNavigationStart()\n if (onRouterTransitionStart !== null) {\n onRouterTransitionStart(href, navigateType)\n }\n\n dispatchAppRouterAction({\n type: ACTION_NAVIGATE,\n url,\n isExternalUrl: isExternalURL(url),\n locationSearch: location.search,\n shouldScroll,\n navigateType,\n })\n}\n\nexport function dispatchTraverseAction(\n href: string,\n historyState: AppHistoryState | undefined\n) {\n const onRouterTransitionStart = getProfilingHookForOnNavigationStart()\n if (onRouterTransitionStart !== null) {\n onRouterTransitionStart(href, 'traverse')\n }\n dispatchAppRouterAction({\n type: ACTION_RESTORE,\n url: new URL(href),\n historyState,\n })\n}\n\n/**\n * The app router that is exposed through `useRouter`. These are public API\n * methods. Internal Next.js code should call the lower level methods directly\n * (although there's lots of existing code that doesn't do that).\n */\nexport const publicAppRouterInstance: AppRouterInstance = {\n back: () => window.history.back(),\n forward: () => window.history.forward(),\n prefetch:\n // Unlike the old implementation, the Segment Cache doesn't store its\n // data in the router reducer state; it writes into a global mutable\n // cache. So we don't need to dispatch an action.\n (href: string, options?: PrefetchOptions) => {\n const actionQueue = getAppRouterActionQueue()\n const prefetchKind = options?.kind ?? PrefetchKind.AUTO\n\n // We don't currently offer a way to issue a runtime prefetch via `router.prefetch()`.\n // This will be possible when we update its API to not take a PrefetchKind.\n let fetchStrategy: PrefetchTaskFetchStrategy\n switch (prefetchKind) {\n case PrefetchKind.AUTO: {\n // We default to PPR. We'll discover whether or not the route supports it with the initial prefetch.\n fetchStrategy = FetchStrategy.PPR\n break\n }\n case PrefetchKind.FULL: {\n fetchStrategy = FetchStrategy.Full\n break\n }\n default: {\n prefetchKind satisfies never\n // Despite typescript thinking that this can't happen,\n // we might get an unexpected value from user code.\n // We don't know what they want, but we know they want a prefetch,\n // so use the default.\n fetchStrategy = FetchStrategy.PPR\n }\n }\n\n prefetchWithSegmentCache(\n href,\n actionQueue.state.nextUrl,\n actionQueue.state.tree,\n fetchStrategy,\n options?.onInvalidate ?? null\n )\n },\n replace: (href: string, options?: NavigateOptions) => {\n startTransition(() => {\n dispatchNavigateAction(href, 'replace', options?.scroll ?? true, null)\n })\n },\n push: (href: string, options?: NavigateOptions) => {\n startTransition(() => {\n dispatchNavigateAction(href, 'push', options?.scroll ?? true, null)\n })\n },\n refresh: () => {\n startTransition(() => {\n dispatchAppRouterAction({\n type: ACTION_REFRESH,\n })\n })\n },\n hmrRefresh: () => {\n if (process.env.NODE_ENV !== 'development') {\n throw new Error(\n 'hmrRefresh can only be used in development mode. Please use refresh instead.'\n )\n } else {\n startTransition(() => {\n dispatchAppRouterAction({\n type: ACTION_HMR_REFRESH,\n })\n })\n }\n },\n}\n\n// Exists for debugging purposes. Don't use in application code.\nif (typeof window !== 'undefined' && window.next) {\n window.next.router = publicAppRouterInstance\n}\n"],"names":["createMutableActionQueue","dispatchNavigateAction","dispatchTraverseAction","getCurrentAppRouterState","publicAppRouterInstance","runRemainingActions","actionQueue","setState","pending","next","runAction","action","needsRefresh","dispatch","type","ACTION_REFRESH","prevState","state","payload","actionResult","handleResult","nextState","discarded","ACTION_SERVER_ACTION","didRevalidate","resolve","isThenable","then","err","reject","dispatchAction","resolvers","ACTION_RESTORE","deferredPromise","Promise","startTransition","newAction","last","ACTION_NAVIGATE","globalActionQueue","initialState","instrumentationHooks","result","reducer","onRouterTransitionStart","window","Error","getAppRouterActionQueue","getProfilingHookForOnNavigationStart","href","navigateType","shouldScroll","linkInstanceRef","url","URL","addBasePath","location","process","env","__NEXT_APP_NAV_FAIL_HANDLING","__pendingUrl","setLinkForCurrentNavigation","dispatchAppRouterAction","isExternalUrl","isExternalURL","locationSearch","search","historyState","back","history","forward","prefetch","options","prefetchKind","kind","PrefetchKind","AUTO","fetchStrategy","FetchStrategy","PPR","FULL","Full","prefetchWithSegmentCache","nextUrl","tree","onInvalidate","replace","scroll","push","refresh","hmrRefresh","NODE_ENV","ACTION_HMR_REFRESH","router"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 9460, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router-announcer.tsx"],"sourcesContent":["import { useEffect, useRef, useState } from 'react'\nimport { createPortal } from 'react-dom'\nimport type { FlightRouterState } from '../../shared/lib/app-router-types'\n\nconst ANNOUNCER_TYPE = 'next-route-announcer'\nconst ANNOUNCER_ID = '__next-route-announcer__'\n\nfunction getAnnouncerNode() {\n const existingAnnouncer = document.getElementsByName(ANNOUNCER_TYPE)[0]\n if (existingAnnouncer?.shadowRoot?.childNodes[0]) {\n return existingAnnouncer.shadowRoot.childNodes[0] as HTMLElement\n } else {\n const container = document.createElement(ANNOUNCER_TYPE)\n container.style.cssText = 'position:absolute'\n const announcer = document.createElement('div')\n announcer.ariaLive = 'assertive'\n announcer.id = ANNOUNCER_ID\n announcer.role = 'alert'\n announcer.style.cssText =\n 'position:absolute;border:0;height:1px;margin:-1px;padding:0;width:1px;clip:rect(0 0 0 0);overflow:hidden;white-space:nowrap;word-wrap:normal'\n\n // Use shadow DOM here to avoid any potential CSS bleed\n const shadow = container.attachShadow({ mode: 'open' })\n shadow.appendChild(announcer)\n document.body.appendChild(container)\n return announcer\n }\n}\n\nexport function AppRouterAnnouncer({ tree }: { tree: FlightRouterState }) {\n const [portalNode, setPortalNode] = useState<HTMLElement | null>(null)\n\n useEffect(() => {\n const announcer = getAnnouncerNode()\n setPortalNode(announcer)\n return () => {\n const container = document.getElementsByTagName(ANNOUNCER_TYPE)[0]\n if (container?.isConnected) {\n document.body.removeChild(container)\n }\n }\n }, [])\n\n const [routeAnnouncement, setRouteAnnouncement] = useState('')\n const previousTitle = useRef<string | undefined>(undefined)\n\n useEffect(() => {\n let currentTitle = ''\n if (document.title) {\n currentTitle = document.title\n } else {\n const pageHeader = document.querySelector('h1')\n if (pageHeader) {\n currentTitle = pageHeader.innerText || pageHeader.textContent || ''\n }\n }\n\n // Only announce the title change, but not for the first load because screen\n // readers do that automatically.\n if (\n previousTitle.current !== undefined &&\n previousTitle.current !== currentTitle\n ) {\n setRouteAnnouncement(currentTitle)\n }\n previousTitle.current = currentTitle\n }, [tree])\n\n return portalNode ? createPortal(routeAnnouncement, portalNode) : null\n}\n"],"names":["AppRouterAnnouncer","ANNOUNCER_TYPE","ANNOUNCER_ID","getAnnouncerNode","existingAnnouncer","document","getElementsByName","shadowRoot","childNodes","container","createElement","style","cssText","announcer","ariaLive","id","role","shadow","attachShadow","mode","appendChild","body","tree","portalNode","setPortalNode","useState","useEffect","getElementsByTagName","isConnected","removeChild","routeAnnouncement","setRouteAnnouncement","previousTitle","useRef","undefined","currentTitle","title","pageHeader","querySelector","innerText","textContent","current","createPortal"],"mappings":";;;+BA6BgBA,sBAAAA;;;eAAAA;;;uBA7B4B;0BACf;AAG7B,MAAMC,iBAAiB;AACvB,MAAMC,eAAe;AAErB,SAASC;IACP,MAAMC,oBAAoBC,SAASC,iBAAiB,CAACL,eAAe,CAAC,EAAE;IACvE,IAAIG,mBAAmBG,YAAYC,UAAU,CAAC,EAAE,EAAE;QAChD,OAAOJ,kBAAkBG,UAAU,CAACC,UAAU,CAAC,EAAE;IACnD,OAAO;QACL,MAAMC,YAAYJ,SAASK,aAAa,CAACT;QACzCQ,UAAUE,KAAK,CAACC,OAAO,GAAG;QAC1B,MAAMC,YAAYR,SAASK,aAAa,CAAC;QACzCG,UAAUC,QAAQ,GAAG;QACrBD,UAAUE,EAAE,GAAGb;QACfW,UAAUG,IAAI,GAAG;QACjBH,UAAUF,KAAK,CAACC,OAAO,GACrB;QAEF,uDAAuD;QACvD,MAAMK,SAASR,UAAUS,YAAY,CAAC;YAAEC,MAAM;QAAO;QACrDF,OAAOG,WAAW,CAACP;QACnBR,SAASgB,IAAI,CAACD,WAAW,CAACX;QAC1B,OAAOI;IACT;AACF;AAEO,SAASb,mBAAmB,EAAEsB,IAAI,EAA+B;IACtE,MAAM,CAACC,YAAYC,cAAc,GAAGC,CAAAA,GAAAA,OAAAA,QAAQ,EAAqB;IAEjEC,CAAAA,GAAAA,OAAAA,SAAS,EAAC;QACR,MAAMb,YAAYV;QAClBqB,cAAcX;QACd,OAAO;YACL,MAAMJ,YAAYJ,SAASsB,oBAAoB,CAAC1B,eAAe,CAAC,EAAE;YAClE,IAAIQ,WAAWmB,aAAa;gBAC1BvB,SAASgB,IAAI,CAACQ,WAAW,CAACpB;YAC5B;QACF;IACF,GAAG,EAAE;IAEL,MAAM,CAACqB,mBAAmBC,qBAAqB,GAAGN,CAAAA,GAAAA,OAAAA,QAAQ,EAAC;IAC3D,MAAMO,gBAAgBC,CAAAA,GAAAA,OAAAA,MAAM,EAAqBC;IAEjDR,CAAAA,GAAAA,OAAAA,SAAS,EAAC;QACR,IAAIS,eAAe;QACnB,IAAI9B,SAAS+B,KAAK,EAAE;YAClBD,eAAe9B,SAAS+B,KAAK;QAC/B,OAAO;YACL,MAAMC,aAAahC,SAASiC,aAAa,CAAC;YAC1C,IAAID,YAAY;gBACdF,eAAeE,WAAWE,SAAS,IAAIF,WAAWG,WAAW,IAAI;YACnE;QACF;QAEA,4EAA4E;QAC5E,iCAAiC;QACjC,IACER,cAAcS,OAAO,KAAKP,aAC1BF,cAAcS,OAAO,KAAKN,cAC1B;YACAJ,qBAAqBI;QACvB;QACAH,cAAcS,OAAO,GAAGN;IAC1B,GAAG;QAACb;KAAK;IAET,OAAOC,aAAAA,WAAAA,GAAamB,CAAAA,GAAAA,UAAAA,YAAY,EAACZ,mBAAmBP,cAAc;AACpE","ignoreList":[0]}}, - {"offset": {"line": 9540, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/forbidden.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n// TODO: Add `forbidden` docs\n/**\n * @experimental\n * This function allows you to render the [forbidden.js file](https://nextjs.org/docs/app/api-reference/file-conventions/forbidden)\n * within a route segment as well as inject a tag.\n *\n * `forbidden()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n * Read more: [Next.js Docs: `forbidden`](https://nextjs.org/docs/app/api-reference/functions/forbidden)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};403`\n\nexport function forbidden(): never {\n if (!process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS) {\n throw new Error(\n `\\`forbidden()\\` is experimental and only allowed to be enabled when \\`experimental.authInterrupts\\` is enabled.`\n )\n }\n\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n throw error\n}\n"],"names":["forbidden","DIGEST","HTTP_ERROR_FALLBACK_ERROR_CODE","process","env","__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS","Error","error","digest"],"mappings":"AAsBOG,QAAQC,GAAG,CAACC,mCAAmC;;;;;+BADtCL,aAAAA;;;eAAAA;;;oCAlBT;AAEP,6BAA6B;AAC7B;;;;;;;;;;;CAWC,GAED,MAAMC,SAAS,GAAGC,oBAAAA,8BAA8B,CAAC,IAAI,CAAC;AAE/C,SAASF;IACd,IAAI,oCAAkD;QACpD,MAAM,OAAA,cAEL,CAFK,IAAIM,MACR,CAAC,+GAA+G,CAAC,GAD7G,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,MAAMC,QAAQ,OAAA,cAAiB,CAAjB,IAAID,MAAML,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BM,MAAkCC,MAAM,GAAGP;IAC7C,MAAMM;AACR","ignoreList":[0]}}, - {"offset": {"line": 9592, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unauthorized.ts"],"sourcesContent":["import {\n HTTP_ERROR_FALLBACK_ERROR_CODE,\n type HTTPAccessFallbackError,\n} from './http-access-fallback/http-access-fallback'\n\n// TODO: Add `unauthorized` docs\n/**\n * @experimental\n * This function allows you to render the [unauthorized.js file](https://nextjs.org/docs/app/api-reference/file-conventions/unauthorized)\n * within a route segment as well as inject a tag.\n *\n * `unauthorized()` can be used in\n * [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),\n * [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and\n * [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).\n *\n *\n * Read more: [Next.js Docs: `unauthorized`](https://nextjs.org/docs/app/api-reference/functions/unauthorized)\n */\n\nconst DIGEST = `${HTTP_ERROR_FALLBACK_ERROR_CODE};401`\n\nexport function unauthorized(): never {\n if (!process.env.__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS) {\n throw new Error(\n `\\`unauthorized()\\` is experimental and only allowed to be used when \\`experimental.authInterrupts\\` is enabled.`\n )\n }\n\n const error = new Error(DIGEST) as HTTPAccessFallbackError\n ;(error as HTTPAccessFallbackError).digest = DIGEST\n throw error\n}\n"],"names":["unauthorized","DIGEST","HTTP_ERROR_FALLBACK_ERROR_CODE","process","env","__NEXT_EXPERIMENTAL_AUTH_INTERRUPTS","Error","error","digest"],"mappings":"AAuBOG,QAAQC,GAAG,CAACC,mCAAmC;;;;;+BADtCL,gBAAAA;;;eAAAA;;;oCAnBT;AAEP,gCAAgC;AAChC;;;;;;;;;;;;CAYC,GAED,MAAMC,SAAS,GAAGC,oBAAAA,8BAA8B,CAAC,IAAI,CAAC;AAE/C,SAASF;IACd,IAAI,oCAAkD;QACpD,MAAM,OAAA,cAEL,CAFK,IAAIM,MACR,CAAC,+GAA+G,CAAC,GAD7G,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,MAAMC,QAAQ,OAAA,cAAiB,CAAjB,IAAID,MAAML,SAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAgB;IAC5BM,MAAkCC,MAAM,GAAGP;IAC7C,MAAMM;AACR","ignoreList":[0]}}, - {"offset": {"line": 9645, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unstable-rethrow.browser.ts"],"sourcesContent":["import { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { isNextRouterError } from './is-next-router-error'\n\nexport function unstable_rethrow(error: unknown): void {\n if (isNextRouterError(error) || isBailoutToCSRError(error)) {\n throw error\n }\n\n if (error instanceof Error && 'cause' in error) {\n unstable_rethrow(error.cause)\n }\n}\n"],"names":["unstable_rethrow","error","isNextRouterError","isBailoutToCSRError","Error","cause"],"mappings":";;;+BAGgBA,oBAAAA;;;eAAAA;;;8BAHoB;mCACF;AAE3B,SAASA,iBAAiBC,KAAc;IAC7C,IAAIC,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACD,UAAUE,CAAAA,GAAAA,cAAAA,mBAAmB,EAACF,QAAQ;QAC1D,MAAMA;IACR;IAEA,IAAIA,iBAAiBG,SAAS,WAAWH,OAAO;QAC9CD,iBAAiBC,MAAMI,KAAK;IAC9B;AACF","ignoreList":[0]}}, - {"offset": {"line": 9675, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/hooks-server-context.ts"],"sourcesContent":["const DYNAMIC_ERROR_CODE = 'DYNAMIC_SERVER_USAGE'\n\nexport class DynamicServerError extends Error {\n digest: typeof DYNAMIC_ERROR_CODE = DYNAMIC_ERROR_CODE\n\n constructor(public readonly description: string) {\n super(`Dynamic server usage: ${description}`)\n }\n}\n\nexport function isDynamicServerError(err: unknown): err is DynamicServerError {\n if (\n typeof err !== 'object' ||\n err === null ||\n !('digest' in err) ||\n typeof err.digest !== 'string'\n ) {\n return false\n }\n\n return err.digest === DYNAMIC_ERROR_CODE\n}\n"],"names":["DynamicServerError","isDynamicServerError","DYNAMIC_ERROR_CODE","Error","constructor","description","digest","err"],"mappings":";;;;;;;;;;;;;;IAEaA,kBAAkB,EAAA;eAAlBA;;IAQGC,oBAAoB,EAAA;eAApBA;;;AAVhB,MAAMC,qBAAqB;AAEpB,MAAMF,2BAA2BG;IAGtCC,YAA4BC,WAAmB,CAAE;QAC/C,KAAK,CAAC,CAAC,sBAAsB,EAAEA,aAAa,GAAA,IAAA,CADlBA,WAAAA,GAAAA,aAAAA,IAAAA,CAF5BC,MAAAA,GAAoCJ;IAIpC;AACF;AAEO,SAASD,qBAAqBM,GAAY;IAC/C,IACE,OAAOA,QAAQ,YACfA,QAAQ,QACR,CAAE,CAAA,YAAYA,GAAE,KAChB,OAAOA,IAAID,MAAM,KAAK,UACtB;QACA,OAAO;IACT;IAEA,OAAOC,IAAID,MAAM,KAAKJ;AACxB","ignoreList":[0]}}, - {"offset": {"line": 9719, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/static-generation-bailout.ts"],"sourcesContent":["const NEXT_STATIC_GEN_BAILOUT = 'NEXT_STATIC_GEN_BAILOUT'\n\nexport class StaticGenBailoutError extends Error {\n public readonly code = NEXT_STATIC_GEN_BAILOUT\n}\n\nexport function isStaticGenBailoutError(\n error: unknown\n): error is StaticGenBailoutError {\n if (typeof error !== 'object' || error === null || !('code' in error)) {\n return false\n }\n\n return error.code === NEXT_STATIC_GEN_BAILOUT\n}\n"],"names":["StaticGenBailoutError","isStaticGenBailoutError","NEXT_STATIC_GEN_BAILOUT","Error","code","error"],"mappings":";;;;;;;;;;;;;;IAEaA,qBAAqB,EAAA;eAArBA;;IAIGC,uBAAuB,EAAA;eAAvBA;;;AANhB,MAAMC,0BAA0B;AAEzB,MAAMF,8BAA8BG;;QAApC,KAAA,IAAA,OAAA,IAAA,CACWC,IAAAA,GAAOF;;AACzB;AAEO,SAASD,wBACdI,KAAc;IAEd,IAAI,OAAOA,UAAU,YAAYA,UAAU,QAAQ,CAAE,CAAA,UAAUA,KAAI,GAAI;QACrE,OAAO;IACT;IAEA,OAAOA,MAAMD,IAAI,KAAKF;AACxB","ignoreList":[0]}}, - {"offset": {"line": 9763, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unstable-rethrow.server.ts"],"sourcesContent":["import { isHangingPromiseRejectionError } from '../../server/dynamic-rendering-utils'\nimport { isPostpone } from '../../server/lib/router-utils/is-postpone'\nimport { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { isNextRouterError } from './is-next-router-error'\nimport {\n isDynamicPostpone,\n isPrerenderInterruptedError,\n} from '../../server/app-render/dynamic-rendering'\nimport { isDynamicServerError } from './hooks-server-context'\n\nexport function unstable_rethrow(error: unknown): void {\n if (\n isNextRouterError(error) ||\n isBailoutToCSRError(error) ||\n isDynamicServerError(error) ||\n isDynamicPostpone(error) ||\n isPostpone(error) ||\n isHangingPromiseRejectionError(error) ||\n isPrerenderInterruptedError(error)\n ) {\n throw error\n }\n\n if (error instanceof Error && 'cause' in error) {\n unstable_rethrow(error.cause)\n }\n}\n"],"names":["unstable_rethrow","error","isNextRouterError","isBailoutToCSRError","isDynamicServerError","isDynamicPostpone","isPostpone","isHangingPromiseRejectionError","isPrerenderInterruptedError","Error","cause"],"mappings":";;;+BAUgBA,oBAAAA;;;eAAAA;;;uCAV+B;4BACpB;8BACS;mCACF;kCAI3B;oCAC8B;AAE9B,SAASA,iBAAiBC,KAAc;IAC7C,IACEC,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACD,UAClBE,CAAAA,GAAAA,cAAAA,mBAAmB,EAACF,UACpBG,CAAAA,GAAAA,oBAAAA,oBAAoB,EAACH,UACrBI,CAAAA,GAAAA,kBAAAA,iBAAiB,EAACJ,UAClBK,CAAAA,GAAAA,YAAAA,UAAU,EAACL,UACXM,CAAAA,GAAAA,uBAAAA,8BAA8B,EAACN,UAC/BO,CAAAA,GAAAA,kBAAAA,2BAA2B,EAACP,QAC5B;QACA,MAAMA;IACR;IAEA,IAAIA,iBAAiBQ,SAAS,WAAWR,OAAO;QAC9CD,iBAAiBC,MAAMS,KAAK;IAC9B;AACF","ignoreList":[0]}}, - {"offset": {"line": 9797, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unstable-rethrow.ts"],"sourcesContent":["/**\n * This function should be used to rethrow internal Next.js errors so that they can be handled by the framework.\n * When wrapping an API that uses errors to interrupt control flow, you should use this function before you do any error handling.\n * This function will rethrow the error if it is a Next.js error so it can be handled, otherwise it will do nothing.\n *\n * Read more: [Next.js Docs: `unstable_rethrow`](https://nextjs.org/docs/app/api-reference/functions/unstable_rethrow)\n */\nexport const unstable_rethrow =\n typeof window === 'undefined'\n ? (\n require('./unstable-rethrow.server') as typeof import('./unstable-rethrow.server')\n ).unstable_rethrow\n : (\n require('./unstable-rethrow.browser') as typeof import('./unstable-rethrow.browser')\n ).unstable_rethrow\n"],"names":["unstable_rethrow","window","require"],"mappings":"AAAA;;;;;;CAMC;;;+BACYA,oBAAAA;;;eAAAA;;;AAAN,MAAMA,mBACX,OAAOC,WAAW,cAEZC,QAAQ,2HACRF,gBAAgB,GAEhBE,QAAQ,4HACRF,gBAAgB","ignoreList":[0]}}, - {"offset": {"line": 9824, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation.react-server.ts"],"sourcesContent":["import { ReadonlyURLSearchParams } from './readonly-url-search-params'\n\nexport function unstable_isUnrecognizedActionError(): boolean {\n throw new Error(\n '`unstable_isUnrecognizedActionError` can only be used on the client.'\n )\n}\n\nexport { redirect, permanentRedirect } from './redirect'\nexport { RedirectType } from './redirect-error'\nexport { notFound } from './not-found'\nexport { forbidden } from './forbidden'\nexport { unauthorized } from './unauthorized'\nexport { unstable_rethrow } from './unstable-rethrow'\nexport { ReadonlyURLSearchParams }\n"],"names":["ReadonlyURLSearchParams","RedirectType","forbidden","notFound","permanentRedirect","redirect","unauthorized","unstable_isUnrecognizedActionError","unstable_rethrow","Error"],"mappings":";;;;;;;;;;;;;;;;;;;;;IAcSA,uBAAuB,EAAA;eAAvBA,yBAAAA,uBAAuB;;IALvBC,YAAY,EAAA;eAAZA,eAAAA,YAAY;;IAEZC,SAAS,EAAA;eAATA,WAAAA,SAAS;;IADTC,QAAQ,EAAA;eAARA,UAAAA,QAAQ;;IAFEC,iBAAiB,EAAA;eAAjBA,UAAAA,iBAAiB;;IAA3BC,QAAQ,EAAA;eAARA,UAAAA,QAAQ;;IAIRC,YAAY,EAAA;eAAZA,cAAAA,YAAY;;IAVLC,kCAAkC,EAAA;eAAlCA;;IAWPC,gBAAgB,EAAA;eAAhBA,iBAAAA,gBAAgB;;;yCAbe;0BAQI;+BACf;0BACJ;2BACC;8BACG;iCACI;AAX1B,SAASD;IACd,MAAM,OAAA,cAEL,CAFK,IAAIE,MACR,yEADI,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF","ignoreList":[0]}}, - {"offset": {"line": 9898, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation.ts"],"sourcesContent":["import type { Params } from '../../server/request/params'\n\nimport React, { useContext, useMemo, use } from 'react'\nimport {\n AppRouterContext,\n LayoutRouterContext,\n type AppRouterInstance,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport {\n SearchParamsContext,\n PathnameContext,\n PathParamsContext,\n NavigationPromisesContext,\n ReadonlyURLSearchParams,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport {\n computeSelectedLayoutSegment,\n getSelectedLayoutSegmentPath,\n} from '../../shared/lib/segment'\n\nconst useDynamicRouteParams =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/dynamic-rendering') as typeof import('../../server/app-render/dynamic-rendering')\n ).useDynamicRouteParams\n : undefined\n\nconst useDynamicSearchParams =\n typeof window === 'undefined'\n ? (\n require('../../server/app-render/dynamic-rendering') as typeof import('../../server/app-render/dynamic-rendering')\n ).useDynamicSearchParams\n : undefined\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you *read* the current URL's search parameters.\n *\n * Learn more about [`URLSearchParams` on MDN](https://developer.mozilla.org/docs/Web/API/URLSearchParams)\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useSearchParams } from 'next/navigation'\n *\n * export default function Page() {\n * const searchParams = useSearchParams()\n * searchParams.get('foo') // returns 'bar' when ?foo=bar\n * // ...\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSearchParams`](https://nextjs.org/docs/app/api-reference/functions/use-search-params)\n */\n// Client components API\nexport function useSearchParams(): ReadonlyURLSearchParams {\n useDynamicSearchParams?.('useSearchParams()')\n\n const searchParams = useContext(SearchParamsContext)\n\n // In the case where this is `null`, the compat types added in\n // `next-env.d.ts` will add a new overload that changes the return type to\n // include `null`.\n const readonlySearchParams = useMemo((): ReadonlyURLSearchParams => {\n if (!searchParams) {\n // When the router is not ready in pages, we won't have the search params\n // available.\n return null!\n }\n\n return new ReadonlyURLSearchParams(searchParams)\n }, [searchParams])\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.searchParams)\n }\n }\n\n return readonlySearchParams\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the current URL's pathname.\n *\n * @example\n * ```ts\n * \"use client\"\n * import { usePathname } from 'next/navigation'\n *\n * export default function Page() {\n * const pathname = usePathname() // returns \"/dashboard\" on /dashboard?foo=bar\n * // ...\n * }\n * ```\n *\n * Read more: [Next.js Docs: `usePathname`](https://nextjs.org/docs/app/api-reference/functions/use-pathname)\n */\n// Client components API\nexport function usePathname(): string {\n useDynamicRouteParams?.('usePathname()')\n\n // In the case where this is `null`, the compat types added in `next-env.d.ts`\n // will add a new overload that changes the return type to include `null`.\n const pathname = useContext(PathnameContext) as string\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.pathname)\n }\n }\n\n return pathname\n}\n\n// Client components API\nexport {\n ServerInsertedHTMLContext,\n useServerInsertedHTML,\n} from '../../shared/lib/server-inserted-html.shared-runtime'\n\n/**\n *\n * This hook allows you to programmatically change routes inside [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components).\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useRouter } from 'next/navigation'\n *\n * export default function Page() {\n * const router = useRouter()\n * // ...\n * router.push('/dashboard') // Navigate to /dashboard\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useRouter`](https://nextjs.org/docs/app/api-reference/functions/use-router)\n */\n// Client components API\nexport function useRouter(): AppRouterInstance {\n const router = useContext(AppRouterContext)\n if (router === null) {\n throw new Error('invariant expected app router to be mounted')\n }\n\n return router\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read a route's dynamic params filled in by the current URL.\n *\n * @example\n * ```ts\n * \"use client\"\n * import { useParams } from 'next/navigation'\n *\n * export default function Page() {\n * // on /dashboard/[team] where pathname is /dashboard/nextjs\n * const { team } = useParams() // team === \"nextjs\"\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useParams`](https://nextjs.org/docs/app/api-reference/functions/use-params)\n */\n// Client components API\nexport function useParams<T extends Params = Params>(): T {\n useDynamicRouteParams?.('useParams()')\n\n const params = useContext(PathParamsContext) as T\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n return use(navigationPromises.params) as T\n }\n }\n\n return params\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the active route segments **below** the Layout it is called from.\n *\n * @example\n * ```ts\n * 'use client'\n *\n * import { useSelectedLayoutSegments } from 'next/navigation'\n *\n * export default function ExampleClientComponent() {\n * const segments = useSelectedLayoutSegments()\n *\n * return (\n * <ul>\n * {segments.map((segment, index) => (\n * <li key={index}>{segment}</li>\n * ))}\n * </ul>\n * )\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSelectedLayoutSegments`](https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segments)\n */\n// Client components API\nexport function useSelectedLayoutSegments(\n parallelRouteKey: string = 'children'\n): string[] {\n useDynamicRouteParams?.('useSelectedLayoutSegments()')\n\n const context = useContext(LayoutRouterContext)\n // @ts-expect-error This only happens in `pages`. Type is overwritten in navigation.d.ts\n if (!context) return null\n\n // Instrument with Suspense DevTools (dev-only)\n if (process.env.NODE_ENV !== 'production' && 'use' in React) {\n const navigationPromises = use(NavigationPromisesContext)\n if (navigationPromises) {\n const promise =\n navigationPromises.selectedLayoutSegmentsPromises?.get(parallelRouteKey)\n if (promise) {\n // We should always have a promise here, but if we don't, it's not worth erroring over.\n // We just won't be able to instrument it, but can still provide the value.\n return use(promise)\n }\n }\n }\n\n return getSelectedLayoutSegmentPath(context.parentTree, parallelRouteKey)\n}\n\n/**\n * A [Client Component](https://nextjs.org/docs/app/building-your-application/rendering/client-components) hook\n * that lets you read the active route segment **one level below** the Layout it is called from.\n *\n * @example\n * ```ts\n * 'use client'\n * import { useSelectedLayoutSegment } from 'next/navigation'\n *\n * export default function ExampleClientComponent() {\n * const segment = useSelectedLayoutSegment()\n *\n * return <p>Active segment: {segment}</p>\n * }\n * ```\n *\n * Read more: [Next.js Docs: `useSelectedLayoutSegment`](https://nextjs.org/docs/app/api-reference/functions/use-selected-layout-segment)\n */\n// Client components API\nexport function useSelectedLayoutSegment(\n parallelRouteKey: string = 'children'\n): string | null {\n useDynamicRouteParams?.('useSelectedLayoutSegment()')\n const navigationPromises = useContext(NavigationPromisesContext)\n const selectedLayoutSegments = useSelectedLayoutSegments(parallelRouteKey)\n\n // Instrument with Suspense DevTools (dev-only)\n if (\n process.env.NODE_ENV !== 'production' &&\n navigationPromises &&\n 'use' in React\n ) {\n const promise =\n navigationPromises.selectedLayoutSegmentPromises?.get(parallelRouteKey)\n if (promise) {\n // We should always have a promise here, but if we don't, it's not worth erroring over.\n // We just won't be able to instrument it, but can still provide the value.\n return use(promise)\n }\n }\n\n return computeSelectedLayoutSegment(selectedLayoutSegments, parallelRouteKey)\n}\n\nexport { unstable_isUnrecognizedActionError } from './unrecognized-action-error'\n\n// Shared components APIs\nexport {\n // We need the same class that was used to instantiate the context value\n // Otherwise instanceof checks will fail in usercode\n ReadonlyURLSearchParams,\n}\nexport {\n notFound,\n forbidden,\n unauthorized,\n redirect,\n permanentRedirect,\n RedirectType,\n unstable_rethrow,\n} from './navigation.react-server'\n"],"names":["ReadonlyURLSearchParams","RedirectType","ServerInsertedHTMLContext","forbidden","notFound","permanentRedirect","redirect","unauthorized","unstable_isUnrecognizedActionError","unstable_rethrow","useParams","usePathname","useRouter","useSearchParams","useSelectedLayoutSegment","useSelectedLayoutSegments","useServerInsertedHTML","useDynamicRouteParams","window","require","undefined","useDynamicSearchParams","searchParams","useContext","SearchParamsContext","readonlySearchParams","useMemo","process","env","NODE_ENV","React","navigationPromises","use","NavigationPromisesContext","pathname","PathnameContext","router","AppRouterContext","Error","params","PathParamsContext","parallelRouteKey","context","LayoutRouterContext","promise","selectedLayoutSegmentsPromises","get","getSelectedLayoutSegmentPath","parentTree","selectedLayoutSegments","selectedLayoutSegmentPromises","computeSelectedLayoutSegment"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 10100, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/redirect-boundary.tsx"],"sourcesContent":["'use client'\nimport React, { useEffect } from 'react'\nimport type { AppRouterInstance } from '../../shared/lib/app-router-context.shared-runtime'\nimport { useRouter } from './navigation'\nimport { getRedirectTypeFromError, getURLFromRedirectError } from './redirect'\nimport { RedirectType, isRedirectError } from './redirect-error'\n\ninterface RedirectBoundaryProps {\n router: AppRouterInstance\n children: React.ReactNode\n}\n\nfunction HandleRedirect({\n redirect,\n reset,\n redirectType,\n}: {\n redirect: string\n redirectType: RedirectType\n reset: () => void\n}) {\n const router = useRouter()\n\n useEffect(() => {\n React.startTransition(() => {\n if (redirectType === RedirectType.push) {\n router.push(redirect, {})\n } else {\n router.replace(redirect, {})\n }\n reset()\n })\n }, [redirect, redirectType, reset, router])\n\n return null\n}\n\nexport class RedirectErrorBoundary extends React.Component<\n RedirectBoundaryProps,\n { redirect: string | null; redirectType: RedirectType | null }\n> {\n constructor(props: RedirectBoundaryProps) {\n super(props)\n this.state = { redirect: null, redirectType: null }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isRedirectError(error)) {\n const url = getURLFromRedirectError(error)\n const redirectType = getRedirectTypeFromError(error)\n if ('handled' in error) {\n // The redirect was already handled. We'll still catch the redirect error\n // so that we can remount the subtree, but we don't actually need to trigger the\n // router.push.\n return { redirect: null, redirectType: null }\n }\n\n return { redirect: url, redirectType }\n }\n // Re-throw if error is not for redirect\n throw error\n }\n\n // Explicit type is needed to avoid the generated `.d.ts` having a wide return type that could be specific to the `@types/react` version.\n render(): React.ReactNode {\n const { redirect, redirectType } = this.state\n if (redirect !== null && redirectType !== null) {\n return (\n <HandleRedirect\n redirect={redirect}\n redirectType={redirectType}\n reset={() => this.setState({ redirect: null })}\n />\n )\n }\n\n return this.props.children\n }\n}\n\nexport function RedirectBoundary({ children }: { children: React.ReactNode }) {\n const router = useRouter()\n return (\n <RedirectErrorBoundary router={router}>{children}</RedirectErrorBoundary>\n )\n}\n"],"names":["RedirectBoundary","RedirectErrorBoundary","HandleRedirect","redirect","reset","redirectType","router","useRouter","useEffect","React","startTransition","RedirectType","push","replace","Component","constructor","props","state","getDerivedStateFromError","error","isRedirectError","url","getURLFromRedirectError","getRedirectTypeFromError","render","setState","children"],"mappings":";;;;;;;;;;;;;;IAgFgBA,gBAAgB,EAAA;eAAhBA;;IA3CHC,qBAAqB,EAAA;eAArBA;;;;;iEApCoB;4BAEP;0BACwC;+BACpB;AAO9C,SAASC,eAAe,EACtBC,QAAQ,EACRC,KAAK,EACLC,YAAY,EAKb;IACC,MAAMC,SAASC,CAAAA,GAAAA,YAAAA,SAAS;IAExBC,CAAAA,GAAAA,OAAAA,SAAS,EAAC;QACRC,OAAAA,OAAK,CAACC,eAAe,CAAC;YACpB,IAAIL,iBAAiBM,eAAAA,YAAY,CAACC,IAAI,EAAE;gBACtCN,OAAOM,IAAI,CAACT,UAAU,CAAC;YACzB,OAAO;gBACLG,OAAOO,OAAO,CAACV,UAAU,CAAC;YAC5B;YACAC;QACF;IACF,GAAG;QAACD;QAAUE;QAAcD;QAAOE;KAAO;IAE1C,OAAO;AACT;AAEO,MAAML,8BAA8BQ,OAAAA,OAAK,CAACK,SAAS;IAIxDC,YAAYC,KAA4B,CAAE;QACxC,KAAK,CAACA;QACN,IAAI,CAACC,KAAK,GAAG;YAAEd,UAAU;YAAME,cAAc;QAAK;IACpD;IAEA,OAAOa,yBAAyBC,KAAU,EAAE;QAC1C,IAAIC,CAAAA,GAAAA,eAAAA,eAAe,EAACD,QAAQ;YAC1B,MAAME,MAAMC,CAAAA,GAAAA,UAAAA,uBAAuB,EAACH;YACpC,MAAMd,eAAekB,CAAAA,GAAAA,UAAAA,wBAAwB,EAACJ;YAC9C,IAAI,aAAaA,OAAO;gBACtB,yEAAyE;gBACzE,gFAAgF;gBAChF,eAAe;gBACf,OAAO;oBAAEhB,UAAU;oBAAME,cAAc;gBAAK;YAC9C;YAEA,OAAO;gBAAEF,UAAUkB;gBAAKhB;YAAa;QACvC;QACA,wCAAwC;QACxC,MAAMc;IACR;IAEA,yIAAyI;IACzIK,SAA0B;QACxB,MAAM,EAAErB,QAAQ,EAAEE,YAAY,EAAE,GAAG,IAAI,CAACY,KAAK;QAC7C,IAAId,aAAa,QAAQE,iBAAiB,MAAM;YAC9C,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACH,gBAAAA;gBACCC,UAAUA;gBACVE,cAAcA;gBACdD,OAAO,IAAM,IAAI,CAACqB,QAAQ,CAAC;wBAAEtB,UAAU;oBAAK;;QAGlD;QAEA,OAAO,IAAI,CAACa,KAAK,CAACU,QAAQ;IAC5B;AACF;AAEO,SAAS1B,iBAAiB,EAAE0B,QAAQ,EAAiC;IAC1E,MAAMpB,SAASC,CAAAA,GAAAA,YAAAA,SAAS;IACxB,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACN,uBAAAA;QAAsBK,QAAQA;kBAASoB;;AAE5C","ignoreList":[0]}}, - {"offset": {"line": 10208, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/reducers/find-head-in-cache.ts"],"sourcesContent":["import type {\n FlightRouterState,\n CacheNode,\n} from '../../../../shared/lib/app-router-types'\nimport { DEFAULT_SEGMENT_KEY } from '../../../../shared/lib/segment'\nimport { createRouterCacheKey } from '../create-router-cache-key'\n\nexport function findHeadInCache(\n cache: CacheNode,\n parallelRoutes: FlightRouterState[1]\n): [CacheNode, string, string] | null {\n return findHeadInCacheImpl(cache, parallelRoutes, '', '')\n}\n\nfunction findHeadInCacheImpl(\n cache: CacheNode,\n parallelRoutes: FlightRouterState[1],\n keyPrefix: string,\n keyPrefixWithoutSearchParams: string\n): [CacheNode, string, string] | null {\n const isLastItem = Object.keys(parallelRoutes).length === 0\n if (isLastItem) {\n // Returns the entire Cache Node of the segment whose head we will render.\n return [cache, keyPrefix, keyPrefixWithoutSearchParams]\n }\n\n // First try the 'children' parallel route if it exists\n // when starting from the \"root\", this corresponds with the main page component\n const parallelRoutesKeys = Object.keys(parallelRoutes).filter(\n (key) => key !== 'children'\n )\n\n // if we are at the root, we need to check the children slot first\n if ('children' in parallelRoutes) {\n parallelRoutesKeys.unshift('children')\n }\n\n for (const key of parallelRoutesKeys) {\n const [segment, childParallelRoutes] = parallelRoutes[key]\n // If the parallel is not matched and using the default segment,\n // skip searching the head from it.\n if (segment === DEFAULT_SEGMENT_KEY) {\n continue\n }\n const childSegmentMap = cache.parallelRoutes.get(key)\n if (!childSegmentMap) {\n continue\n }\n\n const cacheKey = createRouterCacheKey(segment)\n const cacheKeyWithoutSearchParams = createRouterCacheKey(segment, true)\n\n const cacheNode = childSegmentMap.get(cacheKey)\n if (!cacheNode) {\n continue\n }\n\n const item = findHeadInCacheImpl(\n cacheNode,\n childParallelRoutes,\n keyPrefix + '/' + cacheKey,\n keyPrefix + '/' + cacheKeyWithoutSearchParams\n )\n\n if (item) {\n return item\n }\n }\n\n return null\n}\n"],"names":["findHeadInCache","cache","parallelRoutes","findHeadInCacheImpl","keyPrefix","keyPrefixWithoutSearchParams","isLastItem","Object","keys","length","parallelRoutesKeys","filter","key","unshift","segment","childParallelRoutes","DEFAULT_SEGMENT_KEY","childSegmentMap","get","cacheKey","createRouterCacheKey","cacheKeyWithoutSearchParams","cacheNode","item"],"mappings":";;;+BAOgBA,mBAAAA;;;eAAAA;;;yBAHoB;sCACC;AAE9B,SAASA,gBACdC,KAAgB,EAChBC,cAAoC;IAEpC,OAAOC,oBAAoBF,OAAOC,gBAAgB,IAAI;AACxD;AAEA,SAASC,oBACPF,KAAgB,EAChBC,cAAoC,EACpCE,SAAiB,EACjBC,4BAAoC;IAEpC,MAAMC,aAAaC,OAAOC,IAAI,CAACN,gBAAgBO,MAAM,KAAK;IAC1D,IAAIH,YAAY;QACd,0EAA0E;QAC1E,OAAO;YAACL;YAAOG;YAAWC;SAA6B;IACzD;IAEA,uDAAuD;IACvD,+EAA+E;IAC/E,MAAMK,qBAAqBH,OAAOC,IAAI,CAACN,gBAAgBS,MAAM,CAC3D,CAACC,MAAQA,QAAQ;IAGnB,kEAAkE;IAClE,IAAI,cAAcV,gBAAgB;QAChCQ,mBAAmBG,OAAO,CAAC;IAC7B;IAEA,KAAK,MAAMD,OAAOF,mBAAoB;QACpC,MAAM,CAACI,SAASC,oBAAoB,GAAGb,cAAc,CAACU,IAAI;QAC1D,gEAAgE;QAChE,mCAAmC;QACnC,IAAIE,YAAYE,SAAAA,mBAAmB,EAAE;YACnC;QACF;QACA,MAAMC,kBAAkBhB,MAAMC,cAAc,CAACgB,GAAG,CAACN;QACjD,IAAI,CAACK,iBAAiB;YACpB;QACF;QAEA,MAAME,WAAWC,CAAAA,GAAAA,sBAAAA,oBAAoB,EAACN;QACtC,MAAMO,8BAA8BD,CAAAA,GAAAA,sBAAAA,oBAAoB,EAACN,SAAS;QAElE,MAAMQ,YAAYL,gBAAgBC,GAAG,CAACC;QACtC,IAAI,CAACG,WAAW;YACd;QACF;QAEA,MAAMC,OAAOpB,oBACXmB,WACAP,qBACAX,YAAY,MAAMe,UAClBf,YAAY,MAAMiB;QAGpB,IAAIE,MAAM;YACR,OAAOA;QACT;IACF;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 10274, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/unresolved-thenable.ts"],"sourcesContent":["/**\n * Create a \"Thenable\" that does not resolve. This is used to suspend indefinitely when data is not available yet.\n */\nexport const unresolvedThenable = {\n then: () => {},\n} as PromiseLike<void>\n"],"names":["unresolvedThenable","then"],"mappings":"AAAA;;CAEC;;;+BACYA,sBAAAA;;;eAAAA;;;AAAN,MAAMA,qBAAqB;IAChCC,MAAM,KAAO;AACf","ignoreList":[0]}}, - {"offset": {"line": 10299, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/errors/graceful-degrade-boundary.tsx"],"sourcesContent":["'use client'\n\nimport { Component, createRef, type ReactNode } from 'react'\n\ninterface ErrorBoundaryProps {\n children: ReactNode\n}\n\ninterface ErrorBoundaryState {\n hasError: boolean\n}\n\nfunction getDomNodeAttributes(node: HTMLElement): Record<string, string> {\n const result: Record<string, string> = {}\n for (let i = 0; i < node.attributes.length; i++) {\n const attr = node.attributes[i]\n result[attr.name] = attr.value\n }\n return result\n}\n\nexport class GracefulDegradeBoundary extends Component<\n ErrorBoundaryProps,\n ErrorBoundaryState\n> {\n private rootHtml: string\n private htmlAttributes: Record<string, string>\n private htmlRef: React.RefObject<HTMLHtmlElement | null>\n\n constructor(props: ErrorBoundaryProps) {\n super(props)\n this.state = { hasError: false }\n this.rootHtml = ''\n this.htmlAttributes = {}\n this.htmlRef = createRef<HTMLHtmlElement>()\n }\n\n static getDerivedStateFromError(_: unknown): ErrorBoundaryState {\n return { hasError: true }\n }\n\n componentDidMount() {\n const htmlNode = this.htmlRef.current\n if (this.state.hasError && htmlNode) {\n // Reapply the cached HTML attributes to the root element\n Object.entries(this.htmlAttributes).forEach(([key, value]) => {\n htmlNode.setAttribute(key, value)\n })\n }\n }\n\n render() {\n const { hasError } = this.state\n // Cache the root HTML content on the first render\n if (typeof window !== 'undefined' && !this.rootHtml) {\n this.rootHtml = document.documentElement.innerHTML\n this.htmlAttributes = getDomNodeAttributes(document.documentElement)\n }\n\n if (hasError) {\n // Render the current HTML content without hydration\n return (\n <html\n ref={this.htmlRef}\n suppressHydrationWarning\n dangerouslySetInnerHTML={{\n __html: this.rootHtml,\n }}\n />\n )\n }\n\n return this.props.children\n }\n}\n\nexport default GracefulDegradeBoundary\n"],"names":["GracefulDegradeBoundary","getDomNodeAttributes","node","result","i","attributes","length","attr","name","value","Component","constructor","props","state","hasError","rootHtml","htmlAttributes","htmlRef","createRef","getDerivedStateFromError","_","componentDidMount","htmlNode","current","Object","entries","forEach","key","setAttribute","render","window","document","documentElement","innerHTML","html","ref","suppressHydrationWarning","dangerouslySetInnerHTML","__html","children"],"mappings":";;;;;;;;;;;;;;IAqBaA,uBAAuB,EAAA;eAAvBA;;IAuDb,OAAsC,EAAA;eAAtC;;;;uBA1EqD;AAUrD,SAASC,qBAAqBC,IAAiB;IAC7C,MAAMC,SAAiC,CAAC;IACxC,IAAK,IAAIC,IAAI,GAAGA,IAAIF,KAAKG,UAAU,CAACC,MAAM,EAAEF,IAAK;QAC/C,MAAMG,OAAOL,KAAKG,UAAU,CAACD,EAAE;QAC/BD,MAAM,CAACI,KAAKC,IAAI,CAAC,GAAGD,KAAKE,KAAK;IAChC;IACA,OAAON;AACT;AAEO,MAAMH,gCAAgCU,OAAAA,SAAS;IAQpDC,YAAYC,KAAyB,CAAE;QACrC,KAAK,CAACA;QACN,IAAI,CAACC,KAAK,GAAG;YAAEC,UAAU;QAAM;QAC/B,IAAI,CAACC,QAAQ,GAAG;QAChB,IAAI,CAACC,cAAc,GAAG,CAAC;QACvB,IAAI,CAACC,OAAO,GAAA,WAAA,GAAGC,CAAAA,GAAAA,OAAAA,SAAS;IAC1B;IAEA,OAAOC,yBAAyBC,CAAU,EAAsB;QAC9D,OAAO;YAAEN,UAAU;QAAK;IAC1B;IAEAO,oBAAoB;QAClB,MAAMC,WAAW,IAAI,CAACL,OAAO,CAACM,OAAO;QACrC,IAAI,IAAI,CAACV,KAAK,CAACC,QAAQ,IAAIQ,UAAU;YACnC,yDAAyD;YACzDE,OAAOC,OAAO,CAAC,IAAI,CAACT,cAAc,EAAEU,OAAO,CAAC,CAAC,CAACC,KAAKlB,MAAM;gBACvDa,SAASM,YAAY,CAACD,KAAKlB;YAC7B;QACF;IACF;IAEAoB,SAAS;QACP,MAAM,EAAEf,QAAQ,EAAE,GAAG,IAAI,CAACD,KAAK;QAC/B,kDAAkD;QAClD,IAAI,OAAOiB,WAAW,eAAe,CAAC,IAAI,CAACf,QAAQ,EAAE;YACnD,IAAI,CAACA,QAAQ,GAAGgB,SAASC,eAAe,CAACC,SAAS;YAClD,IAAI,CAACjB,cAAc,GAAGf,qBAAqB8B,SAASC,eAAe;QACrE;QAEA,IAAIlB,UAAU;YACZ,oDAAoD;YACpD,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACoB,QAAAA;gBACCC,KAAK,IAAI,CAAClB,OAAO;gBACjBmB,wBAAwB,EAAA;gBACxBC,yBAAyB;oBACvBC,QAAQ,IAAI,CAACvB,QAAQ;gBACvB;;QAGN;QAEA,OAAO,IAAI,CAACH,KAAK,CAAC2B,QAAQ;IAC5B;AACF;MAEA,WAAevC","ignoreList":[0]}}, - {"offset": {"line": 10386, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/errors/root-error-boundary.tsx"],"sourcesContent":["'use client'\n\nimport React, { type JSX } from 'react'\nimport GracefulDegradeBoundary from './graceful-degrade-boundary'\nimport { ErrorBoundary, type ErrorBoundaryProps } from '../error-boundary'\nimport { isBot } from '../../../shared/lib/router/utils/is-bot'\n\nconst isBotUserAgent =\n typeof window !== 'undefined' && isBot(window.navigator.userAgent)\n\nexport default function RootErrorBoundary({\n children,\n errorComponent,\n errorStyles,\n errorScripts,\n}: ErrorBoundaryProps & { children: React.ReactNode }): JSX.Element {\n if (isBotUserAgent) {\n // Preserve existing DOM/HTML for bots to avoid replacing content with an error UI\n // and to keep the original SSR output intact.\n return <GracefulDegradeBoundary>{children}</GracefulDegradeBoundary>\n }\n\n return (\n <ErrorBoundary\n errorComponent={errorComponent}\n errorStyles={errorStyles}\n errorScripts={errorScripts}\n >\n {children}\n </ErrorBoundary>\n )\n}\n"],"names":["RootErrorBoundary","isBotUserAgent","window","isBot","navigator","userAgent","children","errorComponent","errorStyles","errorScripts","GracefulDegradeBoundary","ErrorBoundary"],"mappings":";;;+BAUA,WAAA;;;eAAwBA;;;;;gEARQ;kFACI;+BACmB;uBACjC;AAEtB,MAAMC,iBACJ,OAAOC,WAAW,eAAeC,CAAAA,GAAAA,OAAAA,KAAK,EAACD,OAAOE,SAAS,CAACC,SAAS;AAEpD,SAASL,kBAAkB,EACxCM,QAAQ,EACRC,cAAc,EACdC,WAAW,EACXC,YAAY,EACuC;IACnD,IAAIR,gBAAgB;QAClB,kFAAkF;QAClF,8CAA8C;QAC9C,OAAA,WAAA,GAAO,CAAA,GAAA,YAAA,GAAA,EAACS,yBAAAA,OAAuB,EAAA;sBAAEJ;;IACnC;IAEA,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACK,eAAAA,aAAa,EAAA;QACZJ,gBAAgBA;QAChBC,aAAaA;QACbC,cAAcA;kBAEbH;;AAGP","ignoreList":[0]}}, - {"offset": {"line": 10428, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/navigation-devtools.ts"],"sourcesContent":["import type { FlightRouterState } from '../../shared/lib/app-router-types'\nimport type { Params } from '../../server/request/params'\nimport {\n createDevToolsInstrumentedPromise,\n ReadonlyURLSearchParams,\n type InstrumentedPromise,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport {\n computeSelectedLayoutSegment,\n getSelectedLayoutSegmentPath,\n} from '../../shared/lib/segment'\n\n/**\n * Promises are cached by tree to ensure stability across suspense retries.\n */\ntype LayoutSegmentPromisesCache = {\n selectedLayoutSegmentPromises: Map<string, InstrumentedPromise<string | null>>\n selectedLayoutSegmentsPromises: Map<string, InstrumentedPromise<string[]>>\n}\n\nconst layoutSegmentPromisesCache = new WeakMap<\n FlightRouterState,\n LayoutSegmentPromisesCache\n>()\n\n/**\n * Creates instrumented promises for layout segment hooks at a given tree level.\n * This is dev-only code for React Suspense DevTools instrumentation.\n */\nfunction createLayoutSegmentPromises(\n tree: FlightRouterState\n): LayoutSegmentPromisesCache | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n // Check if we already have cached promises for this tree\n const cached = layoutSegmentPromisesCache.get(tree)\n if (cached) {\n return cached\n }\n\n // Create new promises and cache them\n const segmentPromises = new Map<string, InstrumentedPromise<string | null>>()\n const segmentsPromises = new Map<string, InstrumentedPromise<string[]>>()\n\n const parallelRoutes = tree[1]\n for (const parallelRouteKey of Object.keys(parallelRoutes)) {\n const segments = getSelectedLayoutSegmentPath(tree, parallelRouteKey)\n\n // Use the shared logic to compute the segment value\n const segment = computeSelectedLayoutSegment(segments, parallelRouteKey)\n\n segmentPromises.set(\n parallelRouteKey,\n createDevToolsInstrumentedPromise('useSelectedLayoutSegment', segment)\n )\n segmentsPromises.set(\n parallelRouteKey,\n createDevToolsInstrumentedPromise('useSelectedLayoutSegments', segments)\n )\n }\n\n const result: LayoutSegmentPromisesCache = {\n selectedLayoutSegmentPromises: segmentPromises,\n selectedLayoutSegmentsPromises: segmentsPromises,\n }\n\n // Cache the result for future renders\n layoutSegmentPromisesCache.set(tree, result)\n\n return result\n}\n\nconst rootNavigationPromisesCache = new WeakMap<\n FlightRouterState,\n Map<string, NavigationPromises>\n>()\n\n/**\n * Creates instrumented navigation promises for the root app-router.\n */\nexport function createRootNavigationPromises(\n tree: FlightRouterState,\n pathname: string,\n searchParams: URLSearchParams,\n pathParams: Params\n): NavigationPromises | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n // Create stable cache keys from the values\n const searchParamsString = searchParams.toString()\n const pathParamsString = JSON.stringify(pathParams)\n const cacheKey = `${pathname}:${searchParamsString}:${pathParamsString}`\n\n // Get or create the cache for this tree\n let treeCache = rootNavigationPromisesCache.get(tree)\n if (!treeCache) {\n treeCache = new Map<string, NavigationPromises>()\n rootNavigationPromisesCache.set(tree, treeCache)\n }\n\n // Check if we have cached promises for this combination\n const cached = treeCache.get(cacheKey)\n if (cached) {\n return cached\n }\n\n const readonlySearchParams = new ReadonlyURLSearchParams(searchParams)\n\n const layoutSegmentPromises = createLayoutSegmentPromises(tree)\n\n const promises: NavigationPromises = {\n pathname: createDevToolsInstrumentedPromise('usePathname', pathname),\n searchParams: createDevToolsInstrumentedPromise(\n 'useSearchParams',\n readonlySearchParams\n ),\n params: createDevToolsInstrumentedPromise('useParams', pathParams),\n ...layoutSegmentPromises,\n }\n\n treeCache.set(cacheKey, promises)\n\n return promises\n}\n\nconst nestedLayoutPromisesCache = new WeakMap<\n FlightRouterState,\n Map<NavigationPromises | null, NavigationPromises>\n>()\n\n/**\n * Creates merged navigation promises for nested layouts.\n * Merges parent promises with layout-specific segment promises.\n */\nexport function createNestedLayoutNavigationPromises(\n tree: FlightRouterState,\n parentNavPromises: NavigationPromises | null\n): NavigationPromises | null {\n if (process.env.NODE_ENV === 'production') {\n return null\n }\n\n const parallelRoutes = tree[1]\n const parallelRouteKeys = Object.keys(parallelRoutes)\n\n // Only create promises if there are parallel routes at this level\n if (parallelRouteKeys.length === 0) {\n return null\n }\n\n // Get or create the cache for this tree\n let treeCache = nestedLayoutPromisesCache.get(tree)\n if (!treeCache) {\n treeCache = new Map<NavigationPromises | null, NavigationPromises>()\n nestedLayoutPromisesCache.set(tree, treeCache)\n }\n\n // Check if we have cached promises for this parent combination\n const cached = treeCache.get(parentNavPromises)\n if (cached) {\n return cached\n }\n\n // Create merged promises\n const layoutSegmentPromises = createLayoutSegmentPromises(tree)\n const promises: NavigationPromises = {\n ...parentNavPromises!,\n ...layoutSegmentPromises,\n }\n\n treeCache.set(parentNavPromises, promises)\n\n return promises\n}\n"],"names":["createNestedLayoutNavigationPromises","createRootNavigationPromises","layoutSegmentPromisesCache","WeakMap","createLayoutSegmentPromises","tree","process","env","NODE_ENV","cached","get","segmentPromises","Map","segmentsPromises","parallelRoutes","parallelRouteKey","Object","keys","segments","getSelectedLayoutSegmentPath","segment","computeSelectedLayoutSegment","set","createDevToolsInstrumentedPromise","result","selectedLayoutSegmentPromises","selectedLayoutSegmentsPromises","rootNavigationPromisesCache","pathname","searchParams","pathParams","searchParamsString","toString","pathParamsString","JSON","stringify","cacheKey","treeCache","readonlySearchParams","ReadonlyURLSearchParams","layoutSegmentPromises","promises","params","nestedLayoutPromisesCache","parentNavPromises","parallelRouteKeys","length"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 10555, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/http-access-fallback/error-boundary.tsx"],"sourcesContent":["'use client'\n\n/**\n * HTTPAccessFallbackBoundary is a boundary that catches errors and renders a\n * fallback component for HTTP errors.\n *\n * It receives the status code, and determine if it should render fallbacks for few HTTP 4xx errors.\n *\n * e.g. 404\n * 404 represents not found, and the fallback component pair contains the component and its styles.\n *\n */\n\nimport React, { useContext } from 'react'\nimport { useUntrackedPathname } from '../navigation-untracked'\nimport {\n HTTPAccessErrorStatus,\n getAccessFallbackHTTPStatus,\n getAccessFallbackErrorTypeByStatus,\n isHTTPAccessFallbackError,\n} from './http-access-fallback'\nimport { warnOnce } from '../../../shared/lib/utils/warn-once'\nimport { MissingSlotContext } from '../../../shared/lib/app-router-context.shared-runtime'\n\ninterface HTTPAccessFallbackBoundaryProps {\n notFound?: React.ReactNode\n forbidden?: React.ReactNode\n unauthorized?: React.ReactNode\n // TODO: Make this required once `React.createElement` understands that positional args go into children\n children?: React.ReactNode\n missingSlots?: Set<string>\n}\n\ninterface HTTPAccessFallbackErrorBoundaryProps\n extends HTTPAccessFallbackBoundaryProps {\n pathname: string | null\n missingSlots?: Set<string>\n}\n\ninterface HTTPAccessBoundaryState {\n triggeredStatus: number | undefined\n previousPathname: string | null\n}\n\nclass HTTPAccessFallbackErrorBoundary extends React.Component<\n HTTPAccessFallbackErrorBoundaryProps,\n HTTPAccessBoundaryState\n> {\n constructor(props: HTTPAccessFallbackErrorBoundaryProps) {\n super(props)\n this.state = {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n\n componentDidCatch(): void {\n if (\n process.env.NODE_ENV === 'development' &&\n this.props.missingSlots &&\n this.props.missingSlots.size > 0 &&\n // A missing children slot is the typical not-found case, so no need to warn\n !this.props.missingSlots.has('children')\n ) {\n let warningMessage =\n 'No default component was found for a parallel route rendered on this page. Falling back to nearest NotFound boundary.\\n' +\n 'Learn more: https://nextjs.org/docs/app/building-your-application/routing/parallel-routes#defaultjs\\n\\n'\n\n const formattedSlots = Array.from(this.props.missingSlots)\n .sort((a, b) => a.localeCompare(b))\n .map((slot) => `@${slot}`)\n .join(', ')\n\n warningMessage += 'Missing slots: ' + formattedSlots\n\n warnOnce(warningMessage)\n }\n }\n\n static getDerivedStateFromError(error: any) {\n if (isHTTPAccessFallbackError(error)) {\n const httpStatus = getAccessFallbackHTTPStatus(error)\n return {\n triggeredStatus: httpStatus,\n }\n }\n // Re-throw if error is not for 404\n throw error\n }\n\n static getDerivedStateFromProps(\n props: HTTPAccessFallbackErrorBoundaryProps,\n state: HTTPAccessBoundaryState\n ): HTTPAccessBoundaryState | null {\n /**\n * Handles reset of the error boundary when a navigation happens.\n * Ensures the error boundary does not stay enabled when navigating to a new page.\n * Approach of setState in render is safe as it checks the previous pathname and then overrides\n * it as outlined in https://react.dev/reference/react/useState#storing-information-from-previous-renders\n */\n if (props.pathname !== state.previousPathname && state.triggeredStatus) {\n return {\n triggeredStatus: undefined,\n previousPathname: props.pathname,\n }\n }\n return {\n triggeredStatus: state.triggeredStatus,\n previousPathname: props.pathname,\n }\n }\n\n render() {\n const { notFound, forbidden, unauthorized, children } = this.props\n const { triggeredStatus } = this.state\n const errorComponents = {\n [HTTPAccessErrorStatus.NOT_FOUND]: notFound,\n [HTTPAccessErrorStatus.FORBIDDEN]: forbidden,\n [HTTPAccessErrorStatus.UNAUTHORIZED]: unauthorized,\n }\n\n if (triggeredStatus) {\n const isNotFound =\n triggeredStatus === HTTPAccessErrorStatus.NOT_FOUND && notFound\n const isForbidden =\n triggeredStatus === HTTPAccessErrorStatus.FORBIDDEN && forbidden\n const isUnauthorized =\n triggeredStatus === HTTPAccessErrorStatus.UNAUTHORIZED && unauthorized\n\n // If there's no matched boundary in this layer, keep throwing the error by rendering the children\n if (!(isNotFound || isForbidden || isUnauthorized)) {\n return children\n }\n\n return (\n <>\n <meta name=\"robots\" content=\"noindex\" />\n {process.env.NODE_ENV === 'development' && (\n <meta\n name=\"boundary-next-error\"\n content={getAccessFallbackErrorTypeByStatus(triggeredStatus)}\n />\n )}\n {errorComponents[triggeredStatus]}\n </>\n )\n }\n\n return children\n }\n}\n\nexport function HTTPAccessFallbackBoundary({\n notFound,\n forbidden,\n unauthorized,\n children,\n}: HTTPAccessFallbackBoundaryProps) {\n // When we're rendering the missing params shell, this will return null. This\n // is because we won't be rendering any not found boundaries or error\n // boundaries for the missing params shell. When this runs on the client\n // (where these error can occur), we will get the correct pathname.\n const pathname = useUntrackedPathname()\n const missingSlots = useContext(MissingSlotContext)\n const hasErrorFallback = !!(notFound || forbidden || unauthorized)\n\n if (hasErrorFallback) {\n return (\n <HTTPAccessFallbackErrorBoundary\n pathname={pathname}\n notFound={notFound}\n forbidden={forbidden}\n unauthorized={unauthorized}\n missingSlots={missingSlots}\n >\n {children}\n </HTTPAccessFallbackErrorBoundary>\n )\n }\n\n return <>{children}</>\n}\n"],"names":["HTTPAccessFallbackBoundary","HTTPAccessFallbackErrorBoundary","React","Component","constructor","props","state","triggeredStatus","undefined","previousPathname","pathname","componentDidCatch","process","env","NODE_ENV","missingSlots","size","has","warningMessage","formattedSlots","Array","from","sort","a","b","localeCompare","map","slot","join","warnOnce","getDerivedStateFromError","error","isHTTPAccessFallbackError","httpStatus","getAccessFallbackHTTPStatus","getDerivedStateFromProps","render","notFound","forbidden","unauthorized","children","errorComponents","HTTPAccessErrorStatus","NOT_FOUND","FORBIDDEN","UNAUTHORIZED","isNotFound","isForbidden","isUnauthorized","meta","name","content","getAccessFallbackErrorTypeByStatus","useUntrackedPathname","useContext","MissingSlotContext","hasErrorFallback"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 10684, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/dev-root-http-access-fallback-boundary.tsx"],"sourcesContent":["'use client'\n\nimport React from 'react'\nimport { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary'\n\n// TODO: error on using forbidden and unauthorized in root layout\nexport function bailOnRootNotFound() {\n throw new Error('notFound() is not allowed to use in root layout')\n}\n\nfunction NotAllowedRootHTTPFallbackError() {\n bailOnRootNotFound()\n return null\n}\n\nexport function DevRootHTTPAccessFallbackBoundary({\n children,\n}: {\n children: React.ReactNode\n}) {\n return (\n <HTTPAccessFallbackBoundary notFound={<NotAllowedRootHTTPFallbackError />}>\n {children}\n </HTTPAccessFallbackBoundary>\n )\n}\n"],"names":["DevRootHTTPAccessFallbackBoundary","bailOnRootNotFound","Error","NotAllowedRootHTTPFallbackError","children","HTTPAccessFallbackBoundary","notFound"],"mappings":";;;;;;;;;;;;;;IAegBA,iCAAiC,EAAA;eAAjCA;;IATAC,kBAAkB,EAAA;eAAlBA;;;;;gEAJE;+BACyB;AAGpC,SAASA;IACd,MAAM,OAAA,cAA4D,CAA5D,IAAIC,MAAM,oDAAV,qBAAA;eAAA;oBAAA;sBAAA;IAA2D;AACnE;AAEA,SAASC;IACPF;IACA,OAAO;AACT;AAEO,SAASD,kCAAkC,EAChDI,QAAQ,EAGT;IACC,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACC,eAAAA,0BAA0B,EAAA;QAACC,UAAAA,WAAAA,GAAU,CAAA,GAAA,YAAA,GAAA,EAACH,iCAAAA,CAAAA;kBACpCC;;AAGP","ignoreList":[0]}}, - {"offset": {"line": 10737, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/dev/hot-reloader/shared.ts"],"sourcesContent":["import type { HmrMessageSentToBrowser } from '../../../server/dev/hot-reloader-types'\n\nexport const REACT_REFRESH_FULL_RELOAD =\n '[Fast Refresh] performing full reload\\n\\n' +\n \"Fast Refresh will perform a full reload when you edit a file that's imported by modules outside of the React rendering tree.\\n\" +\n 'You might have a file which exports a React component but also exports a value that is imported by a non-React component file.\\n' +\n 'Consider migrating the non-React component export to a separate file and importing it into both files.\\n\\n' +\n 'It is also possible the parent component of the component you edited is a class component, which disables Fast Refresh.\\n' +\n 'Fast Refresh requires at least one parent function component in your React tree.'\n\nexport const REACT_REFRESH_FULL_RELOAD_FROM_ERROR =\n '[Fast Refresh] performing full reload because your application had an unrecoverable error'\n\nexport function reportInvalidHmrMessage(\n message: HmrMessageSentToBrowser | MessageEvent<unknown>,\n err: unknown\n) {\n console.warn(\n '[HMR] Invalid message: ' +\n JSON.stringify(message) +\n '\\n' +\n ((err instanceof Error && err?.stack) || '')\n )\n}\n"],"names":["REACT_REFRESH_FULL_RELOAD","REACT_REFRESH_FULL_RELOAD_FROM_ERROR","reportInvalidHmrMessage","message","err","console","warn","JSON","stringify","Error","stack"],"mappings":";;;;;;;;;;;;;;;IAEaA,yBAAyB,EAAA;eAAzBA;;IAQAC,oCAAoC,EAAA;eAApCA;;IAGGC,uBAAuB,EAAA;eAAvBA;;;AAXT,MAAMF,4BACX,8CACA,mIACA,qIACA,+GACA,8HACA;AAEK,MAAMC,uCACX;AAEK,SAASC,wBACdC,OAAwD,EACxDC,GAAY;IAEZC,QAAQC,IAAI,CACV,4BACEC,KAAKC,SAAS,CAACL,WACf,OACC,CAACC,eAAeK,SAASL,KAAKM,SAAU,EAAC;AAEhD","ignoreList":[0]}}, - {"offset": {"line": 10778, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/dev/hot-reloader/get-socket-url.ts"],"sourcesContent":["import { normalizedAssetPrefix } from '../../../shared/lib/normalized-asset-prefix'\n\nfunction getSocketProtocol(assetPrefix: string): string {\n let protocol = window.location.protocol\n\n try {\n // assetPrefix is a url\n protocol = new URL(assetPrefix).protocol\n } catch {}\n\n return protocol === 'http:' ? 'ws:' : 'wss:'\n}\n\nexport function getSocketUrl(assetPrefix: string | undefined): string {\n const prefix = normalizedAssetPrefix(assetPrefix)\n const protocol = getSocketProtocol(assetPrefix || '')\n\n if (URL.canParse(prefix)) {\n // since normalized asset prefix is ensured to be a URL format,\n // we can safely replace the protocol\n return prefix.replace(/^http/, 'ws')\n }\n\n const { hostname, port } = window.location\n return `${protocol}//${hostname}${port ? `:${port}` : ''}${prefix}`\n}\n"],"names":["getSocketUrl","getSocketProtocol","assetPrefix","protocol","window","location","URL","prefix","normalizedAssetPrefix","canParse","replace","hostname","port"],"mappings":";;;+BAagBA,gBAAAA;;;eAAAA;;;uCAbsB;AAEtC,SAASC,kBAAkBC,WAAmB;IAC5C,IAAIC,WAAWC,OAAOC,QAAQ,CAACF,QAAQ;IAEvC,IAAI;QACF,uBAAuB;QACvBA,WAAW,IAAIG,IAAIJ,aAAaC,QAAQ;IAC1C,EAAE,OAAM,CAAC;IAET,OAAOA,aAAa,UAAU,QAAQ;AACxC;AAEO,SAASH,aAAaE,WAA+B;IAC1D,MAAMK,SAASC,CAAAA,GAAAA,uBAAAA,qBAAqB,EAACN;IACrC,MAAMC,WAAWF,kBAAkBC,eAAe;IAElD,IAAII,IAAIG,QAAQ,CAACF,SAAS;QACxB,+DAA+D;QAC/D,qCAAqC;QACrC,OAAOA,OAAOG,OAAO,CAAC,SAAS;IACjC;IAEA,MAAM,EAAEC,QAAQ,EAAEC,IAAI,EAAE,GAAGR,OAAOC,QAAQ;IAC1C,OAAO,GAAGF,SAAS,EAAE,EAAEQ,WAAWC,OAAO,CAAC,CAAC,EAAEA,MAAM,GAAG,KAAKL,QAAQ;AACrE","ignoreList":[0]}}, - {"offset": {"line": 10818, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/dev/hot-reloader/app/web-socket.ts"],"sourcesContent":["import { useContext, useEffect } from 'react'\nimport { GlobalLayoutRouterContext } from '../../../../shared/lib/app-router-context.shared-runtime'\nimport { getSocketUrl } from '../get-socket-url'\nimport {\n HMR_MESSAGE_SENT_TO_BROWSER,\n type HmrMessageSentToBrowser,\n type TurbopackMessageSentToBrowser,\n} from '../../../../server/dev/hot-reloader-types'\nimport { reportInvalidHmrMessage } from '../shared'\nimport {\n performFullReload,\n processMessage,\n type StaticIndicatorState,\n} from './hot-reloader-app'\nimport { logQueue } from '../../../../next-devtools/userspace/app/forward-logs'\nimport { InvariantError } from '../../../../shared/lib/invariant-error'\nimport { WEB_SOCKET_MAX_RECONNECTIONS } from '../../../../lib/constants'\n\nlet reconnections = 0\nlet reloading = false\nlet serverSessionId: number | null = null\nlet mostRecentCompilationHash: string | null = null\n\nexport function createWebSocket(\n assetPrefix: string,\n staticIndicatorState: StaticIndicatorState\n) {\n if (!self.__next_r) {\n throw new InvariantError(\n `Expected a request ID to be defined for the document via self.__next_r.`\n )\n }\n\n let webSocket: WebSocket\n let timer: ReturnType<typeof setTimeout>\n\n const sendMessage = (data: string) => {\n if (webSocket && webSocket.readyState === webSocket.OPEN) {\n webSocket.send(data)\n }\n }\n\n const processTurbopackMessage = createProcessTurbopackMessage(sendMessage)\n\n function init() {\n if (webSocket) {\n webSocket.close()\n }\n\n const newWebSocket = new window.WebSocket(\n `${getSocketUrl(assetPrefix)}/_next/webpack-hmr?id=${self.__next_r}`\n )\n\n newWebSocket.binaryType = 'arraybuffer'\n\n function handleOnline() {\n logQueue.onSocketReady(newWebSocket)\n\n reconnections = 0\n window.console.log('[HMR] connected')\n }\n\n function handleMessage(event: MessageEvent) {\n // While the page is reloading, don't respond to any more messages.\n if (reloading) {\n return\n }\n\n try {\n const message: HmrMessageSentToBrowser =\n event.data instanceof ArrayBuffer\n ? parseBinaryMessage(event.data)\n : JSON.parse(event.data)\n\n // Check for server restart in Turbopack mode\n if (message.type === HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED) {\n if (\n serverSessionId !== null &&\n serverSessionId !== message.data.sessionId\n ) {\n // Either the server's session id has changed and it's a new server, or\n // it's been too long since we disconnected and we should reload the page.\n window.location.reload()\n reloading = true\n return\n }\n serverSessionId = message.data.sessionId\n }\n\n // Track webpack compilation hash for server restart detection\n if (\n message.type === HMR_MESSAGE_SENT_TO_BROWSER.SYNC &&\n 'hash' in message\n ) {\n // If we had previously reconnected and the hash changed, the server may have restarted\n if (\n mostRecentCompilationHash !== null &&\n mostRecentCompilationHash !== message.hash\n ) {\n window.location.reload()\n reloading = true\n return\n }\n mostRecentCompilationHash = message.hash\n }\n\n processMessage(\n message,\n sendMessage,\n processTurbopackMessage,\n staticIndicatorState\n )\n } catch (err: unknown) {\n reportInvalidHmrMessage(event, err)\n }\n }\n\n function handleDisconnect() {\n newWebSocket.onerror = null\n newWebSocket.onclose = null\n newWebSocket.close()\n reconnections++\n\n // After 25 reconnects we'll want to reload the page as it indicates the dev server is no longer running.\n if (reconnections > WEB_SOCKET_MAX_RECONNECTIONS) {\n reloading = true\n window.location.reload()\n return\n }\n\n clearTimeout(timer)\n // Try again after 5 seconds\n timer = setTimeout(init, reconnections > 5 ? 5000 : 1000)\n }\n\n newWebSocket.onopen = handleOnline\n newWebSocket.onerror = handleDisconnect\n newWebSocket.onclose = handleDisconnect\n newWebSocket.onmessage = handleMessage\n\n webSocket = newWebSocket\n return newWebSocket\n }\n\n return init()\n}\n\nexport function createProcessTurbopackMessage(\n sendMessage: (data: string) => void\n): (msg: TurbopackMessageSentToBrowser) => void {\n if (!process.env.TURBOPACK) {\n return () => {}\n }\n\n let queue: TurbopackMessageSentToBrowser[] = []\n let callback: ((msg: TurbopackMessageSentToBrowser) => void) | undefined\n\n const processTurbopackMessage = (msg: TurbopackMessageSentToBrowser) => {\n if (callback) {\n callback(msg)\n } else {\n queue.push(msg)\n }\n }\n\n import(\n // @ts-expect-error requires \"moduleResolution\": \"node16\" in tsconfig.json and not .ts extension\n '@vercel/turbopack-ecmascript-runtime/browser/dev/hmr-client/hmr-client.ts'\n ).then(({ connect }) => {\n connect({\n addMessageListener(cb: (msg: TurbopackMessageSentToBrowser) => void) {\n callback = cb\n\n // Replay all Turbopack messages before we were able to establish the HMR client.\n for (const msg of queue) {\n cb(msg)\n }\n queue.length = 0\n },\n sendMessage,\n onUpdateError: (err: unknown) => performFullReload(err, sendMessage),\n })\n })\n\n return processTurbopackMessage\n}\n\nexport function useWebSocketPing(webSocket: WebSocket | undefined) {\n const { tree } = useContext(GlobalLayoutRouterContext)\n\n useEffect(() => {\n if (!webSocket) {\n throw new InvariantError('Expected webSocket to be defined in dev mode.')\n }\n\n // Never send pings when using Turbopack as it's not used.\n // Pings were originally used to keep track of active routes in on-demand-entries with webpack.\n if (process.env.TURBOPACK) {\n return\n }\n\n // Taken from on-demand-entries-client.js\n const interval = setInterval(() => {\n if (webSocket.readyState === webSocket.OPEN) {\n webSocket.send(\n JSON.stringify({\n event: 'ping',\n tree,\n appDirRoute: true,\n })\n )\n }\n }, 2500)\n return () => clearInterval(interval)\n }, [tree, webSocket])\n}\n\nconst textDecoder = new TextDecoder()\n\nfunction parseBinaryMessage(data: ArrayBuffer): HmrMessageSentToBrowser {\n assertByteLength(data, 1)\n const view = new DataView(data)\n const messageType = view.getUint8(0)\n\n switch (messageType) {\n case HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER: {\n const serializedErrors = new Uint8Array(data, 1)\n\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER,\n serializedErrors,\n }\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK: {\n assertByteLength(data, 2)\n const requestIdLength = view.getUint8(1)\n assertByteLength(data, 2 + requestIdLength)\n\n const requestId = textDecoder.decode(\n new Uint8Array(data, 2, requestIdLength)\n )\n\n const chunk =\n data.byteLength > 2 + requestIdLength\n ? new Uint8Array(data, 2 + requestIdLength)\n : null\n\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK,\n requestId,\n chunk,\n }\n }\n default: {\n throw new InvariantError(\n `Invalid binary HMR message of type ${messageType}`\n )\n }\n }\n}\n\nfunction assertByteLength(data: ArrayBuffer, expectedLength: number) {\n if (data.byteLength < expectedLength) {\n throw new InvariantError(\n `Invalid binary HMR message: insufficient data (expected ${expectedLength} bytes, got ${data.byteLength})`\n )\n }\n}\n"],"names":["createProcessTurbopackMessage","createWebSocket","useWebSocketPing","reconnections","reloading","serverSessionId","mostRecentCompilationHash","assetPrefix","staticIndicatorState","self","__next_r","InvariantError","webSocket","timer","sendMessage","data","readyState","OPEN","send","processTurbopackMessage","init","close","newWebSocket","window","WebSocket","getSocketUrl","binaryType","handleOnline","logQueue","onSocketReady","console","log","handleMessage","event","message","ArrayBuffer","parseBinaryMessage","JSON","parse","type","HMR_MESSAGE_SENT_TO_BROWSER","TURBOPACK_CONNECTED","sessionId","location","reload","SYNC","hash","processMessage","err","reportInvalidHmrMessage","handleDisconnect","onerror","onclose","WEB_SOCKET_MAX_RECONNECTIONS","clearTimeout","setTimeout","onopen","onmessage","process","env","TURBOPACK","queue","callback","msg","push","then","connect","addMessageListener","cb","length","onUpdateError","performFullReload","tree","useContext","GlobalLayoutRouterContext","useEffect","interval","setInterval","stringify","appDirRoute","clearInterval","textDecoder","TextDecoder","assertByteLength","view","DataView","messageType","getUint8","ERRORS_TO_SHOW_IN_BROWSER","serializedErrors","Uint8Array","REACT_DEBUG_CHUNK","requestIdLength","requestId","decode","chunk","byteLength","expectedLength"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 11051, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/dev/report-hmr-latency.ts"],"sourcesContent":["declare global {\n interface Window {\n __NEXT_HMR_LATENCY_CB: ((latencyMs: number) => void) | undefined\n }\n}\n\n/**\n * Logs information about a completed HMR to the console, the server (via a\n * `client-hmr-latency` event), and to `self.__NEXT_HMR_LATENCY_CB` (a debugging\n * hook).\n *\n * @param hasUpdate Set this to `false` to avoid reporting the HMR event via a\n * `client-hmr-latency` event or to `self.__NEXT_HMR_LATENCY_CB`. Used by\n * turbopack when we must report a message to the browser console (because we\n * already logged a \"rebuilding\" message), but it's not a real HMR, so we\n * don't want to impact our telemetry.\n */\nexport default function reportHmrLatency(\n sendMessage: (message: string) => void,\n updatedModules: ReadonlyArray<string | number>,\n startMsSinceEpoch: number,\n endMsSinceEpoch: number,\n hasUpdate: boolean = true\n) {\n const latencyMs = endMsSinceEpoch - startMsSinceEpoch\n console.log(`[Fast Refresh] done in ${latencyMs}ms`)\n if (!hasUpdate) {\n return\n }\n sendMessage(\n JSON.stringify({\n event: 'client-hmr-latency',\n id: window.__nextDevClientId,\n startTime: startMsSinceEpoch,\n endTime: endMsSinceEpoch,\n page: window.location.pathname,\n updatedModules,\n // Whether the page (tab) was hidden at the time the event occurred.\n // This can impact the accuracy of the event's timing.\n isPageHidden: document.visibilityState === 'hidden',\n })\n )\n if (self.__NEXT_HMR_LATENCY_CB) {\n self.__NEXT_HMR_LATENCY_CB(latencyMs)\n }\n}\n"],"names":["reportHmrLatency","sendMessage","updatedModules","startMsSinceEpoch","endMsSinceEpoch","hasUpdate","latencyMs","console","log","JSON","stringify","event","id","window","__nextDevClientId","startTime","endTime","page","location","pathname","isPageHidden","document","visibilityState","self","__NEXT_HMR_LATENCY_CB"],"mappings":";;;+BAMA;;;;;;;;;;CAUC,GACD,WAAA;;;eAAwBA;;;AAAT,SAASA,iBACtBC,WAAsC,EACtCC,cAA8C,EAC9CC,iBAAyB,EACzBC,eAAuB,EACvBC,YAAqB,IAAI;IAEzB,MAAMC,YAAYF,kBAAkBD;IACpCI,QAAQC,GAAG,CAAC,CAAC,uBAAuB,EAAEF,UAAU,EAAE,CAAC;IACnD,IAAI,CAACD,WAAW;QACd;IACF;IACAJ,YACEQ,KAAKC,SAAS,CAAC;QACbC,OAAO;QACPC,IAAIC,OAAOC,iBAAiB;QAC5BC,WAAWZ;QACXa,SAASZ;QACTa,MAAMJ,OAAOK,QAAQ,CAACC,QAAQ;QAC9BjB;QACA,oEAAoE;QACpE,sDAAsD;QACtDkB,cAAcC,SAASC,eAAe,KAAK;IAC7C;IAEF,IAAIC,KAAKC,qBAAqB,EAAE;QAC9BD,KAAKC,qBAAqB,CAAClB;IAC7B;AACF","ignoreList":[0]}}, - {"offset": {"line": 11102, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/dev/hot-reloader/turbopack-hot-reloader-common.ts"],"sourcesContent":["import type { TurbopackMessage } from '../../../server/dev/hot-reloader-types'\nimport type { Update as TurbopackUpdate } from '../../../build/swc/types'\n\ndeclare global {\n interface Window {\n __NEXT_HMR_TURBOPACK_REPORT_NOISY_NOOP_EVENTS: boolean | undefined\n }\n}\n\n// How long to wait before reporting the HMR start, used to suppress irrelevant\n// `BUILDING` events. Does not impact reported latency.\nconst TURBOPACK_HMR_START_DELAY_MS = 100\n\ninterface HmrUpdate {\n hasUpdates: boolean\n updatedModules: Set<string>\n startMsSinceEpoch: number\n endMsSinceEpoch: number\n}\n\nexport class TurbopackHmr {\n #updatedModules: Set<string>\n #startMsSinceEpoch: number | undefined\n #lastUpdateMsSinceEpoch: number | undefined\n #deferredReportHmrStartId: ReturnType<typeof setTimeout> | undefined\n #reportedHmrStart: boolean\n\n constructor() {\n this.#updatedModules = new Set()\n this.#reportedHmrStart = false\n }\n\n // HACK: Turbopack tends to generate a lot of irrelevant \"BUILDING\" actions,\n // as it reports *any* compilation, including fully no-op/cached compilations\n // and those unrelated to HMR. Fixing this would require significant\n // architectural changes.\n //\n // Work around this by deferring any \"rebuilding\" message by 100ms. If we get\n // a BUILT event within that threshold and nothing has changed, just suppress\n // the message entirely.\n #runDeferredReportHmrStart() {\n if (this.#deferredReportHmrStartId != null) {\n console.log('[Fast Refresh] rebuilding')\n this.#reportedHmrStart = true\n this.#cancelDeferredReportHmrStart()\n }\n }\n\n #cancelDeferredReportHmrStart() {\n clearTimeout(this.#deferredReportHmrStartId)\n this.#deferredReportHmrStartId = undefined\n }\n\n onBuilding() {\n this.#lastUpdateMsSinceEpoch = undefined\n this.#cancelDeferredReportHmrStart()\n this.#startMsSinceEpoch = Date.now()\n\n // report the HMR start after a short delay\n this.#deferredReportHmrStartId = setTimeout(\n () => this.#runDeferredReportHmrStart(),\n // debugging feature: don't defer/suppress noisy no-op HMR update messages\n self.__NEXT_HMR_TURBOPACK_REPORT_NOISY_NOOP_EVENTS\n ? 0\n : TURBOPACK_HMR_START_DELAY_MS\n )\n }\n\n /** Helper for other `onEvent` methods. */\n #onUpdate() {\n this.#runDeferredReportHmrStart()\n this.#lastUpdateMsSinceEpoch = Date.now()\n }\n\n onTurbopackMessage(msg: TurbopackMessage) {\n this.#onUpdate()\n const updatedModules = extractModulesFromTurbopackMessage(msg.data)\n for (const module of updatedModules) {\n this.#updatedModules.add(module)\n }\n }\n\n onServerComponentChanges() {\n this.#onUpdate()\n }\n\n onReloadPage() {\n this.#onUpdate()\n }\n\n onPageAddRemove() {\n this.#onUpdate()\n }\n\n /**\n * @returns `null` if the caller should ignore the update entirely. Returns an\n * object with `hasUpdates: false` if the caller should report the end of\n * the HMR in the browser console, but the HMR was a no-op.\n */\n onBuilt(): HmrUpdate | null {\n // Check that we got *any* `TurbopackMessage`, even if\n // `updatedModules` is empty (not everything gets recorded there).\n //\n // There's also a case where `onBuilt` gets called before `onBuilding`,\n // which can happen during initial page load. Ignore that too!\n const hasUpdates =\n this.#lastUpdateMsSinceEpoch != null && this.#startMsSinceEpoch != null\n if (!hasUpdates && !this.#reportedHmrStart) {\n // suppress the update entirely\n this.#cancelDeferredReportHmrStart()\n return null\n }\n this.#runDeferredReportHmrStart()\n\n const result = {\n hasUpdates,\n updatedModules: this.#updatedModules,\n startMsSinceEpoch: this.#startMsSinceEpoch!,\n endMsSinceEpoch: this.#lastUpdateMsSinceEpoch ?? Date.now(),\n }\n this.#updatedModules = new Set()\n this.#reportedHmrStart = false\n return result\n }\n}\n\nfunction extractModulesFromTurbopackMessage(\n data: TurbopackUpdate | TurbopackUpdate[]\n): Set<string> {\n const updatedModules: Set<string> = new Set()\n\n const updates = Array.isArray(data) ? data : [data]\n for (const update of updates) {\n // TODO this won't capture changes to CSS since they don't result in a \"merged\" update\n if (\n update.type !== 'partial' ||\n update.instruction.type !== 'ChunkListUpdate' ||\n update.instruction.merged === undefined\n ) {\n continue\n }\n\n for (const mergedUpdate of update.instruction.merged) {\n for (const name of Object.keys(mergedUpdate.entries)) {\n const res = /(.*)\\s+[([].*/.exec(name)\n if (res === null) {\n continue\n }\n\n updatedModules.add(res[1])\n }\n }\n }\n\n return updatedModules\n}\n"],"names":["TurbopackHmr","TURBOPACK_HMR_START_DELAY_MS","constructor","Set","console","log","clearTimeout","undefined","onBuilding","Date","now","setTimeout","self","__NEXT_HMR_TURBOPACK_REPORT_NOISY_NOOP_EVENTS","onTurbopackMessage","msg","updatedModules","extractModulesFromTurbopackMessage","data","module","add","onServerComponentChanges","onReloadPage","onPageAddRemove","onBuilt","hasUpdates","result","startMsSinceEpoch","endMsSinceEpoch","updates","Array","isArray","update","type","instruction","merged","mergedUpdate","name","Object","keys","entries","res","exec"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 11231, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/dev/debug-channel.ts"],"sourcesContent":["import { NEXT_REQUEST_ID_HEADER } from '../components/app-router-headers'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nexport interface DebugChannelReadableWriterPair {\n readonly readable: ReadableStream<Uint8Array>\n readonly writer: WritableStreamDefaultWriter<Uint8Array>\n}\n\nconst pairs = new Map<string, DebugChannelReadableWriterPair>()\n\nexport function getOrCreateDebugChannelReadableWriterPair(\n requestId: string\n): DebugChannelReadableWriterPair {\n let pair = pairs.get(requestId)\n\n if (!pair) {\n const { readable, writable } = new TransformStream<Uint8Array, Uint8Array>()\n pair = { readable, writer: writable.getWriter() }\n pairs.set(requestId, pair)\n pair.writer.closed.finally(() => pairs.delete(requestId))\n }\n\n return pair\n}\n\nexport function createDebugChannel(\n requestHeaders: Record<string, string> | undefined\n): {\n writable?: WritableStream\n readable?: ReadableStream\n} {\n let requestId: string | undefined\n\n if (requestHeaders) {\n requestId = requestHeaders[NEXT_REQUEST_ID_HEADER] ?? undefined\n\n if (!requestId) {\n throw new InvariantError(\n `Expected a ${JSON.stringify(NEXT_REQUEST_ID_HEADER)} request header.`\n )\n }\n } else {\n requestId = self.__next_r\n\n if (!requestId) {\n throw new InvariantError(\n `Expected a request ID to be defined for the document via self.__next_r.`\n )\n }\n }\n\n const { readable } = getOrCreateDebugChannelReadableWriterPair(requestId)\n\n return { readable }\n}\n"],"names":["createDebugChannel","getOrCreateDebugChannelReadableWriterPair","pairs","Map","requestId","pair","get","readable","writable","TransformStream","writer","getWriter","set","closed","finally","delete","requestHeaders","NEXT_REQUEST_ID_HEADER","undefined","InvariantError","JSON","stringify","self","__next_r"],"mappings":";;;;;;;;;;;;;;IAyBgBA,kBAAkB,EAAA;eAAlBA;;IAfAC,yCAAyC,EAAA;eAAzCA;;;kCAVuB;gCACR;AAO/B,MAAMC,QAAQ,IAAIC;AAEX,SAASF,0CACdG,SAAiB;IAEjB,IAAIC,OAAOH,MAAMI,GAAG,CAACF;IAErB,IAAI,CAACC,MAAM;QACT,MAAM,EAAEE,QAAQ,EAAEC,QAAQ,EAAE,GAAG,IAAIC;QACnCJ,OAAO;YAAEE;YAAUG,QAAQF,SAASG,SAAS;QAAG;QAChDT,MAAMU,GAAG,CAACR,WAAWC;QACrBA,KAAKK,MAAM,CAACG,MAAM,CAACC,OAAO,CAAC,IAAMZ,MAAMa,MAAM,CAACX;IAChD;IAEA,OAAOC;AACT;AAEO,SAASL,mBACdgB,cAAkD;IAKlD,IAAIZ;IAEJ,IAAIY,gBAAgB;QAClBZ,YAAYY,cAAc,CAACC,kBAAAA,sBAAsB,CAAC,IAAIC;QAEtD,IAAI,CAACd,WAAW;YACd,MAAM,OAAA,cAEL,CAFK,IAAIe,gBAAAA,cAAc,CACtB,CAAC,WAAW,EAAEC,KAAKC,SAAS,CAACJ,kBAAAA,sBAAsB,EAAE,gBAAgB,CAAC,GADlE,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;IACF,OAAO;QACLb,YAAYkB,KAAKC,QAAQ;QAEzB,IAAI,CAACnB,WAAW;YACd,MAAM,OAAA,cAEL,CAFK,IAAIe,gBAAAA,cAAc,CACtB,CAAC,uEAAuE,CAAC,GADrE,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF;IACF;IAEA,MAAM,EAAEZ,QAAQ,EAAE,GAAGN,0CAA0CG;IAE/D,OAAO;QAAEG;IAAS;AACpB","ignoreList":[0]}}, - {"offset": {"line": 11305, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/dev/hot-reloader/app/hot-reloader-app.tsx"],"sourcesContent":["/// <reference types=\"webpack/module.d.ts\" />\n\nimport type { ReactNode } from 'react'\nimport { useEffect, startTransition } from 'react'\nimport stripAnsi from 'next/dist/compiled/strip-ansi'\nimport formatWebpackMessages from '../../../../shared/lib/format-webpack-messages'\nimport {\n REACT_REFRESH_FULL_RELOAD,\n REACT_REFRESH_FULL_RELOAD_FROM_ERROR,\n} from '../shared'\nimport {\n dispatcher,\n getSerializedOverlayState,\n getSegmentTrieData,\n} from 'next/dist/compiled/next-devtools'\nimport { ReplaySsrOnlyErrors } from '../../../../next-devtools/userspace/app/errors/replay-ssr-only-errors'\nimport { AppDevOverlayErrorBoundary } from '../../../../next-devtools/userspace/app/app-dev-overlay-error-boundary'\nimport { useErrorHandler } from '../../../../next-devtools/userspace/app/errors/use-error-handler'\nimport { RuntimeErrorHandler } from '../../runtime-error-handler'\nimport { useWebSocketPing } from './web-socket'\nimport {\n HMR_MESSAGE_SENT_TO_BROWSER,\n HMR_MESSAGE_SENT_TO_SERVER,\n} from '../../../../server/dev/hot-reloader-types'\nimport type {\n HmrMessageSentToBrowser,\n TurbopackMessageSentToBrowser,\n} from '../../../../server/dev/hot-reloader-types'\nimport type { McpErrorStateResponse } from '../../../../shared/lib/mcp-error-types'\nimport type { McpPageMetadataResponse } from '../../../../shared/lib/mcp-page-metadata-types'\nimport { useUntrackedPathname } from '../../../components/navigation-untracked'\nimport reportHmrLatency from '../../report-hmr-latency'\nimport { TurbopackHmr } from '../turbopack-hot-reloader-common'\nimport { NEXT_HMR_REFRESH_HASH_COOKIE } from '../../../components/app-router-headers'\nimport {\n publicAppRouterInstance,\n type GlobalErrorState,\n} from '../../../components/app-router-instance'\nimport { InvariantError } from '../../../../shared/lib/invariant-error'\nimport { getOrCreateDebugChannelReadableWriterPair } from '../../debug-channel'\n// TODO: Explicitly import from client.browser (doesn't work with Webpack).\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport { createFromReadableStream as createFromReadableStreamBrowser } from 'react-server-dom-webpack/client'\nimport { findSourceMapURL } from '../../../app-find-source-map-url'\n\nexport interface StaticIndicatorState {\n pathname: string | null\n appIsrManifest: Record<string, boolean> | null\n}\n\nconst createFromReadableStream =\n createFromReadableStreamBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromReadableStream']\n\nlet mostRecentCompilationHash: any = null\nlet __nextDevClientId = Math.round(Math.random() * 100 + Date.now())\nlet reloading = false\nlet webpackStartMsSinceEpoch: number | null = null\nconst turbopackHmr: TurbopackHmr | null = process.env.TURBOPACK\n ? new TurbopackHmr()\n : null\n\nlet pendingHotUpdateWebpack = Promise.resolve()\nlet resolvePendingHotUpdateWebpack: () => void = () => {}\nfunction setPendingHotUpdateWebpack() {\n pendingHotUpdateWebpack = new Promise((resolve) => {\n resolvePendingHotUpdateWebpack = () => {\n resolve()\n }\n })\n}\n\nexport function waitForWebpackRuntimeHotUpdate() {\n return pendingHotUpdateWebpack\n}\n\n// There is a newer version of the code available.\nfunction handleAvailableHash(hash: string) {\n // Update last known compilation hash.\n mostRecentCompilationHash = hash\n}\n\n/**\n * Is there a newer version of this code available?\n * For webpack: Check if the hash changed compared to __webpack_hash__\n * For Turbopack: Always true because it doesn't have __webpack_hash__\n */\nfunction isUpdateAvailable() {\n if (process.env.TURBOPACK) {\n return true\n }\n\n /* globals __webpack_hash__ */\n // __webpack_hash__ is the hash of the current compilation.\n // It's a global variable injected by Webpack.\n return mostRecentCompilationHash !== __webpack_hash__\n}\n\n// Webpack disallows updates in other states.\nfunction canApplyUpdates() {\n return module.hot.status() === 'idle'\n}\nfunction afterApplyUpdates(fn: any) {\n if (canApplyUpdates()) {\n fn()\n } else {\n function handler(status: any) {\n if (status === 'idle') {\n module.hot.removeStatusHandler(handler)\n fn()\n }\n }\n module.hot.addStatusHandler(handler)\n }\n}\n\nexport function performFullReload(\n err: any,\n sendMessage: (data: string) => void\n) {\n const stackTrace =\n err &&\n ((err.stack && err.stack.split('\\n').slice(0, 5).join('\\n')) ||\n err.message ||\n err + '')\n\n sendMessage(\n JSON.stringify({\n event: 'client-full-reload',\n stackTrace,\n hadRuntimeError: !!RuntimeErrorHandler.hadRuntimeError,\n dependencyChain: err ? err.dependencyChain : undefined,\n })\n )\n\n if (reloading) return\n reloading = true\n window.location.reload()\n}\n\n// Attempt to update code on the fly, fall back to a hard reload.\nfunction tryApplyUpdatesWebpack(sendMessage: (message: string) => void) {\n if (!isUpdateAvailable() || !canApplyUpdates()) {\n resolvePendingHotUpdateWebpack()\n dispatcher.onBuildOk()\n reportHmrLatency(sendMessage, [], webpackStartMsSinceEpoch!, Date.now())\n return\n }\n\n function handleApplyUpdates(\n err: any,\n updatedModules: (string | number)[] | null\n ) {\n if (err || RuntimeErrorHandler.hadRuntimeError || updatedModules == null) {\n if (err) {\n console.warn(REACT_REFRESH_FULL_RELOAD)\n } else if (RuntimeErrorHandler.hadRuntimeError) {\n console.warn(REACT_REFRESH_FULL_RELOAD_FROM_ERROR)\n }\n performFullReload(err, sendMessage)\n return\n }\n\n dispatcher.onBuildOk()\n\n if (isUpdateAvailable()) {\n // While we were updating, there was a new update! Do it again.\n tryApplyUpdatesWebpack(sendMessage)\n return\n }\n\n dispatcher.onRefresh()\n resolvePendingHotUpdateWebpack()\n reportHmrLatency(\n sendMessage,\n updatedModules,\n webpackStartMsSinceEpoch!,\n Date.now()\n )\n\n if (process.env.__NEXT_TEST_MODE) {\n afterApplyUpdates(() => {\n if (self.__NEXT_HMR_CB) {\n self.__NEXT_HMR_CB()\n self.__NEXT_HMR_CB = null\n }\n })\n }\n }\n\n // https://webpack.js.org/api/hot-module-replacement/#check\n module.hot\n .check(/* autoApply */ false)\n .then((updatedModules: (string | number)[] | null) => {\n if (updatedModules == null) {\n return null\n }\n\n // We should always handle an update, even if updatedModules is empty (but\n // non-null) for any reason. That's what webpack would normally do:\n // https://github.com/webpack/webpack/blob/3aa6b6bc3a64/lib/hmr/HotModuleReplacement.runtime.js#L296-L298\n dispatcher.onBeforeRefresh()\n // https://webpack.js.org/api/hot-module-replacement/#apply\n return module.hot.apply()\n })\n .then(\n (updatedModules: (string | number)[] | null) => {\n handleApplyUpdates(null, updatedModules)\n },\n (err: any) => {\n handleApplyUpdates(err, null)\n }\n )\n}\n\n/** Handles messages from the server for the App Router. */\nexport function processMessage(\n message: HmrMessageSentToBrowser,\n sendMessage: (message: string) => void,\n processTurbopackMessage: (msg: TurbopackMessageSentToBrowser) => void,\n staticIndicatorState: StaticIndicatorState\n) {\n function handleErrors(errors: ReadonlyArray<unknown>) {\n // \"Massage\" webpack messages.\n const formatted = formatWebpackMessages({\n errors: errors,\n warnings: [],\n })\n\n // Only show the first error.\n dispatcher.onBuildError(formatted.errors[0])\n\n // Also log them to the console.\n for (let i = 0; i < formatted.errors.length; i++) {\n console.error(stripAnsi(formatted.errors[i]))\n }\n\n // Do not attempt to reload now.\n // We will reload on next success instead.\n if (process.env.__NEXT_TEST_MODE) {\n if (self.__NEXT_HMR_CB) {\n self.__NEXT_HMR_CB(formatted.errors[0])\n self.__NEXT_HMR_CB = null\n }\n }\n }\n\n function handleHotUpdate() {\n if (process.env.TURBOPACK) {\n const hmrUpdate = turbopackHmr!.onBuilt()\n if (hmrUpdate != null) {\n reportHmrLatency(\n sendMessage,\n [...hmrUpdate.updatedModules],\n hmrUpdate.startMsSinceEpoch,\n hmrUpdate.endMsSinceEpoch,\n // suppress the `client-hmr-latency` event if the update was a no-op:\n hmrUpdate.hasUpdates\n )\n }\n dispatcher.onBuildOk()\n } else {\n tryApplyUpdatesWebpack(sendMessage)\n }\n }\n\n switch (message.type) {\n case HMR_MESSAGE_SENT_TO_BROWSER.ISR_MANIFEST: {\n if (process.env.__NEXT_DEV_INDICATOR) {\n staticIndicatorState.appIsrManifest = message.data\n\n // Handle the initial static indicator status on receiving the ISR\n // manifest. Navigation is handled in an effect inside HotReload for\n // pathname changes as we'll receive the updated manifest before\n // usePathname triggers for a new value.\n\n const isStatic = staticIndicatorState.pathname\n ? message.data[staticIndicatorState.pathname]\n : undefined\n\n dispatcher.onStaticIndicator(\n isStatic === undefined ? 'pending' : isStatic ? 'static' : 'dynamic'\n )\n }\n break\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.BUILDING: {\n dispatcher.buildingIndicatorShow()\n\n if (process.env.TURBOPACK) {\n turbopackHmr!.onBuilding()\n } else {\n webpackStartMsSinceEpoch = Date.now()\n setPendingHotUpdateWebpack()\n console.log('[Fast Refresh] rebuilding')\n }\n break\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.BUILT:\n case HMR_MESSAGE_SENT_TO_BROWSER.SYNC: {\n dispatcher.buildingIndicatorHide()\n\n if (message.hash) {\n handleAvailableHash(message.hash)\n }\n\n const { errors, warnings } = message\n\n // Is undefined when it's a 'built' event\n if ('versionInfo' in message)\n dispatcher.onVersionInfo(message.versionInfo)\n if ('debug' in message && message.debug)\n dispatcher.onDebugInfo(message.debug)\n if ('devIndicator' in message)\n dispatcher.onDevIndicator(message.devIndicator)\n if ('devToolsConfig' in message)\n dispatcher.onDevToolsConfig(message.devToolsConfig)\n\n const hasErrors = Boolean(errors && errors.length)\n // Compilation with errors (e.g. syntax error or missing modules).\n if (hasErrors) {\n sendMessage(\n JSON.stringify({\n event: 'client-error',\n errorCount: errors.length,\n clientId: __nextDevClientId,\n })\n )\n\n handleErrors(errors)\n return\n }\n\n const hasWarnings = Boolean(warnings && warnings.length)\n if (hasWarnings) {\n sendMessage(\n JSON.stringify({\n event: 'client-warning',\n warningCount: warnings.length,\n clientId: __nextDevClientId,\n })\n )\n\n // Print warnings to the console.\n const formattedMessages = formatWebpackMessages({\n warnings: warnings,\n errors: [],\n })\n\n for (let i = 0; i < formattedMessages.warnings.length; i++) {\n if (i === 5) {\n console.warn(\n 'There were more warnings in other files.\\n' +\n 'You can find a complete log in the terminal.'\n )\n break\n }\n console.warn(stripAnsi(formattedMessages.warnings[i]))\n }\n\n // No early return here as we need to apply modules in the same way between warnings only and compiles without warnings\n }\n\n sendMessage(\n JSON.stringify({\n event: 'client-success',\n clientId: __nextDevClientId,\n })\n )\n\n if (message.type === HMR_MESSAGE_SENT_TO_BROWSER.BUILT) {\n handleHotUpdate()\n }\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED: {\n processTurbopackMessage({\n type: HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED,\n data: {\n sessionId: message.data.sessionId,\n },\n })\n break\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_MESSAGE: {\n turbopackHmr!.onTurbopackMessage(message)\n dispatcher.onBeforeRefresh()\n processTurbopackMessage({\n type: HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_MESSAGE,\n data: message.data,\n })\n if (RuntimeErrorHandler.hadRuntimeError) {\n console.warn(REACT_REFRESH_FULL_RELOAD_FROM_ERROR)\n performFullReload(null, sendMessage)\n }\n dispatcher.onRefresh()\n break\n }\n // TODO-APP: make server component change more granular\n case HMR_MESSAGE_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES: {\n turbopackHmr?.onServerComponentChanges()\n sendMessage(\n JSON.stringify({\n event: 'server-component-reload-page',\n clientId: __nextDevClientId,\n hash: message.hash,\n })\n )\n\n // Store the latest hash in a session cookie so that it's sent back to the\n // server with any subsequent requests.\n document.cookie = `${NEXT_HMR_REFRESH_HASH_COOKIE}=${message.hash};path=/`\n\n if (\n RuntimeErrorHandler.hadRuntimeError ||\n document.documentElement.id === '__next_error__'\n ) {\n if (reloading) return\n reloading = true\n return window.location.reload()\n }\n\n startTransition(() => {\n publicAppRouterInstance.hmrRefresh()\n dispatcher.onRefresh()\n })\n\n if (process.env.__NEXT_TEST_MODE) {\n if (self.__NEXT_HMR_CB) {\n self.__NEXT_HMR_CB()\n self.__NEXT_HMR_CB = null\n }\n }\n\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE: {\n turbopackHmr?.onReloadPage()\n sendMessage(\n JSON.stringify({\n event: 'client-reload-page',\n clientId: __nextDevClientId,\n })\n )\n if (reloading) return\n reloading = true\n return window.location.reload()\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.ADDED_PAGE:\n case HMR_MESSAGE_SENT_TO_BROWSER.REMOVED_PAGE: {\n turbopackHmr?.onPageAddRemove()\n // TODO-APP: potentially only refresh if the currently viewed page was added/removed.\n return publicAppRouterInstance.hmrRefresh()\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ERROR: {\n const { errorJSON } = message\n if (errorJSON) {\n const errorObject = JSON.parse(errorJSON)\n const error = new Error(errorObject.message)\n error.stack = errorObject.stack\n handleErrors([error])\n }\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.DEV_PAGES_MANIFEST_UPDATE: {\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.DEVTOOLS_CONFIG: {\n dispatcher.onDevToolsConfig(message.data)\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK: {\n const { requestId, chunk } = message\n const { writer } = getOrCreateDebugChannelReadableWriterPair(requestId)\n\n if (chunk) {\n writer.ready.then(() => writer.write(chunk)).catch(console.error)\n } else {\n // A null chunk signals that no more chunks will be sent, which allows\n // us to close the writer.\n // TODO: Revisit this cleanup logic when we integrate the return channel\n // that keeps the connection open to be able to lazily retrieve debug\n // objects.\n writer.ready.then(() => writer.close()).catch(console.error)\n }\n\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.REQUEST_CURRENT_ERROR_STATE: {\n const errorState = getSerializedOverlayState()\n const response: McpErrorStateResponse = {\n event: HMR_MESSAGE_SENT_TO_SERVER.MCP_ERROR_STATE_RESPONSE,\n requestId: message.requestId,\n errorState,\n url: window.location.href,\n }\n sendMessage(JSON.stringify(response))\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.REQUEST_PAGE_METADATA: {\n const segmentTrieData = getSegmentTrieData()\n const response: McpPageMetadataResponse = {\n event: HMR_MESSAGE_SENT_TO_SERVER.MCP_PAGE_METADATA_RESPONSE,\n requestId: message.requestId,\n segmentTrieData,\n url: window.location.href,\n }\n sendMessage(JSON.stringify(response))\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.CACHE_INDICATOR: {\n dispatcher.onCacheIndicator(message.state)\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER: {\n createFromReadableStream<Error[]>(\n new ReadableStream({\n start(controller) {\n controller.enqueue(message.serializedErrors)\n controller.close()\n },\n }),\n { findSourceMapURL }\n ).then(\n (errors) => {\n for (const error of errors) {\n console.error(error)\n }\n },\n (err) => {\n console.error(\n new Error('Failed to deserialize errors.', { cause: err })\n )\n }\n )\n return\n }\n case HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES:\n case HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES:\n case HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ONLY_CHANGES:\n // These action types are handled in src/client/page-bootstrap.ts\n break\n default: {\n message satisfies never\n }\n }\n}\n\nexport default function HotReload({\n children,\n globalError,\n webSocket,\n staticIndicatorState,\n}: {\n children: ReactNode\n globalError: GlobalErrorState\n webSocket: WebSocket | undefined\n staticIndicatorState: StaticIndicatorState | undefined\n}) {\n useErrorHandler(dispatcher.onUnhandledError, dispatcher.onUnhandledRejection)\n useWebSocketPing(webSocket)\n\n // We don't want access of the pathname for the dev tools to trigger a dynamic\n // access (as the dev overlay will never be present in production).\n const pathname = useUntrackedPathname()\n\n if (process.env.__NEXT_DEV_INDICATOR) {\n // this conditional is only for dead-code elimination which\n // isn't a runtime conditional only build-time so ignore hooks rule\n // eslint-disable-next-line react-hooks/rules-of-hooks\n useEffect(() => {\n if (!staticIndicatorState) {\n throw new InvariantError(\n 'Expected staticIndicatorState to be defined in dev mode.'\n )\n }\n\n staticIndicatorState.pathname = pathname\n\n if (staticIndicatorState.appIsrManifest) {\n const isStatic = pathname\n ? staticIndicatorState.appIsrManifest[pathname]\n : undefined\n\n dispatcher.onStaticIndicator(\n isStatic === undefined ? 'pending' : isStatic ? 'static' : 'dynamic'\n )\n }\n }, [pathname, staticIndicatorState])\n }\n\n return (\n <AppDevOverlayErrorBoundary globalError={globalError}>\n <ReplaySsrOnlyErrors onBlockingError={dispatcher.openErrorOverlay} />\n {children}\n </AppDevOverlayErrorBoundary>\n )\n}\n"],"names":["HotReload","performFullReload","processMessage","waitForWebpackRuntimeHotUpdate","createFromReadableStream","createFromReadableStreamBrowser","mostRecentCompilationHash","__nextDevClientId","Math","round","random","Date","now","reloading","webpackStartMsSinceEpoch","turbopackHmr","process","env","TURBOPACK","TurbopackHmr","pendingHotUpdateWebpack","Promise","resolve","resolvePendingHotUpdateWebpack","setPendingHotUpdateWebpack","handleAvailableHash","hash","isUpdateAvailable","__webpack_hash__","canApplyUpdates","module","hot","status","afterApplyUpdates","fn","handler","removeStatusHandler","addStatusHandler","err","sendMessage","stackTrace","stack","split","slice","join","message","JSON","stringify","event","hadRuntimeError","RuntimeErrorHandler","dependencyChain","undefined","window","location","reload","tryApplyUpdatesWebpack","dispatcher","onBuildOk","reportHmrLatency","handleApplyUpdates","updatedModules","console","warn","REACT_REFRESH_FULL_RELOAD","REACT_REFRESH_FULL_RELOAD_FROM_ERROR","onRefresh","__NEXT_TEST_MODE","self","__NEXT_HMR_CB","check","then","onBeforeRefresh","apply","processTurbopackMessage","staticIndicatorState","handleErrors","errors","formatted","formatWebpackMessages","warnings","onBuildError","i","length","error","stripAnsi","handleHotUpdate","hmrUpdate","onBuilt","startMsSinceEpoch","endMsSinceEpoch","hasUpdates","type","HMR_MESSAGE_SENT_TO_BROWSER","ISR_MANIFEST","__NEXT_DEV_INDICATOR","appIsrManifest","data","isStatic","pathname","onStaticIndicator","BUILDING","buildingIndicatorShow","onBuilding","log","BUILT","SYNC","buildingIndicatorHide","onVersionInfo","versionInfo","debug","onDebugInfo","onDevIndicator","devIndicator","onDevToolsConfig","devToolsConfig","hasErrors","Boolean","errorCount","clientId","hasWarnings","warningCount","formattedMessages","TURBOPACK_CONNECTED","sessionId","TURBOPACK_MESSAGE","onTurbopackMessage","SERVER_COMPONENT_CHANGES","onServerComponentChanges","document","cookie","NEXT_HMR_REFRESH_HASH_COOKIE","documentElement","id","startTransition","publicAppRouterInstance","hmrRefresh","RELOAD_PAGE","onReloadPage","ADDED_PAGE","REMOVED_PAGE","onPageAddRemove","SERVER_ERROR","errorJSON","errorObject","parse","Error","DEV_PAGES_MANIFEST_UPDATE","DEVTOOLS_CONFIG","REACT_DEBUG_CHUNK","requestId","chunk","writer","getOrCreateDebugChannelReadableWriterPair","ready","write","catch","close","REQUEST_CURRENT_ERROR_STATE","errorState","getSerializedOverlayState","response","HMR_MESSAGE_SENT_TO_SERVER","MCP_ERROR_STATE_RESPONSE","url","href","REQUEST_PAGE_METADATA","segmentTrieData","getSegmentTrieData","MCP_PAGE_METADATA_RESPONSE","CACHE_INDICATOR","onCacheIndicator","state","ERRORS_TO_SHOW_IN_BROWSER","ReadableStream","start","controller","enqueue","serializedErrors","findSourceMapURL","cause","MIDDLEWARE_CHANGES","CLIENT_CHANGES","SERVER_ONLY_CHANGES","children","globalError","webSocket","useErrorHandler","onUnhandledError","onUnhandledRejection","useWebSocketPing","useUntrackedPathname","useEffect","InvariantError","AppDevOverlayErrorBoundary","ReplaySsrOnlyErrors","onBlockingError","openErrorOverlay"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 11798, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/app-router.tsx"],"sourcesContent":["import React, {\n useEffect,\n useMemo,\n startTransition,\n useInsertionEffect,\n useDeferredValue,\n} from 'react'\nimport {\n AppRouterContext,\n LayoutRouterContext,\n GlobalLayoutRouterContext,\n} from '../../shared/lib/app-router-context.shared-runtime'\nimport type { CacheNode } from '../../shared/lib/app-router-types'\nimport { ACTION_RESTORE } from './router-reducer/router-reducer-types'\nimport type {\n AppHistoryState,\n AppRouterState,\n} from './router-reducer/router-reducer-types'\nimport { createHrefFromUrl } from './router-reducer/create-href-from-url'\nimport {\n SearchParamsContext,\n PathnameContext,\n PathParamsContext,\n NavigationPromisesContext,\n type NavigationPromises,\n} from '../../shared/lib/hooks-client-context.shared-runtime'\nimport { dispatchAppRouterAction, useActionQueue } from './use-action-queue'\nimport { AppRouterAnnouncer } from './app-router-announcer'\nimport { RedirectBoundary } from './redirect-boundary'\nimport { findHeadInCache } from './router-reducer/reducers/find-head-in-cache'\nimport { unresolvedThenable } from './unresolved-thenable'\nimport { removeBasePath } from '../remove-base-path'\nimport { hasBasePath } from '../has-base-path'\nimport { getSelectedParams } from './router-reducer/compute-changed-path'\nimport { useNavFailureHandler } from './nav-failure-handler'\nimport {\n dispatchTraverseAction,\n publicAppRouterInstance,\n type AppRouterActionQueue,\n type GlobalErrorState,\n} from './app-router-instance'\nimport { getRedirectTypeFromError, getURLFromRedirectError } from './redirect'\nimport { isRedirectError, RedirectType } from './redirect-error'\nimport { pingVisibleLinks } from './links'\nimport RootErrorBoundary from './errors/root-error-boundary'\nimport DefaultGlobalError from './builtin/global-error'\nimport { RootLayoutBoundary } from '../../lib/framework/boundary-components'\nimport type { StaticIndicatorState } from '../dev/hot-reloader/app/hot-reloader-app'\nimport { getDeploymentIdQueryOrEmptyString } from '../../shared/lib/deployment-id'\n\nconst globalMutable: {\n pendingMpaPath?: string\n} = {}\n\nfunction HistoryUpdater({\n appRouterState,\n}: {\n appRouterState: AppRouterState\n}) {\n useInsertionEffect(() => {\n if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {\n // clear pending URL as navigation is no longer\n // in flight\n window.next.__pendingUrl = undefined\n }\n\n const { tree, pushRef, canonicalUrl, renderedSearch } = appRouterState\n\n const appHistoryState: AppHistoryState = {\n tree,\n renderedSearch,\n }\n\n // TODO: Use Navigation API if available\n const historyState = {\n ...(pushRef.preserveCustomHistoryState ? window.history.state : {}),\n // Identifier is shortened intentionally.\n // __NA is used to identify if the history entry can be handled by the app-router.\n // __N is used to identify if the history entry can be handled by the old router.\n __NA: true,\n __PRIVATE_NEXTJS_INTERNALS_TREE: appHistoryState,\n }\n if (\n pushRef.pendingPush &&\n // Skip pushing an additional history entry if the canonicalUrl is the same as the current url.\n // This mirrors the browser behavior for normal navigation.\n createHrefFromUrl(new URL(window.location.href)) !== canonicalUrl\n ) {\n // This intentionally mutates React state, pushRef is overwritten to ensure additional push/replace calls do not trigger an additional history entry.\n pushRef.pendingPush = false\n window.history.pushState(historyState, '', canonicalUrl)\n } else {\n window.history.replaceState(historyState, '', canonicalUrl)\n }\n }, [appRouterState])\n\n useEffect(() => {\n // The Next-Url and the base tree may affect the result of a prefetch\n // task. Re-prefetch all visible links with the updated values. In most\n // cases, this will not result in any new network requests, only if\n // the prefetch result actually varies on one of these inputs.\n pingVisibleLinks(appRouterState.nextUrl, appRouterState.tree)\n }, [appRouterState.nextUrl, appRouterState.tree])\n\n return null\n}\n\nfunction copyNextJsInternalHistoryState(data: any) {\n if (data == null) data = {}\n const currentState = window.history.state\n const __NA = currentState?.__NA\n if (__NA) {\n data.__NA = __NA\n }\n const __PRIVATE_NEXTJS_INTERNALS_TREE =\n currentState?.__PRIVATE_NEXTJS_INTERNALS_TREE\n if (__PRIVATE_NEXTJS_INTERNALS_TREE) {\n data.__PRIVATE_NEXTJS_INTERNALS_TREE = __PRIVATE_NEXTJS_INTERNALS_TREE\n }\n\n return data\n}\n\nfunction Head({\n headCacheNode,\n}: {\n headCacheNode: CacheNode | null\n}): React.ReactNode {\n // If this segment has a `prefetchHead`, it's the statically prefetched data.\n // We should use that on initial render instead of `head`. Then we'll switch\n // to `head` when the dynamic response streams in.\n const head = headCacheNode !== null ? headCacheNode.head : null\n const prefetchHead =\n headCacheNode !== null ? headCacheNode.prefetchHead : null\n\n // If no prefetch data is available, then we go straight to rendering `head`.\n const resolvedPrefetchRsc = prefetchHead !== null ? prefetchHead : head\n\n // We use `useDeferredValue` to handle switching between the prefetched and\n // final values. The second argument is returned on initial render, then it\n // re-renders with the first argument.\n return useDeferredValue(head, resolvedPrefetchRsc)\n}\n\n/**\n * The global router that wraps the application components.\n */\nfunction Router({\n actionQueue,\n globalError,\n webSocket,\n staticIndicatorState,\n}: {\n actionQueue: AppRouterActionQueue\n globalError: GlobalErrorState\n webSocket: WebSocket | undefined\n staticIndicatorState: StaticIndicatorState | undefined\n}) {\n const state = useActionQueue(actionQueue)\n const { canonicalUrl } = state\n // Add memoized pathname/query for useSearchParams and usePathname.\n const { searchParams, pathname } = useMemo(() => {\n const url = new URL(\n canonicalUrl,\n typeof window === 'undefined' ? 'http://n' : window.location.href\n )\n\n return {\n // This is turned into a readonly class in `useSearchParams`\n searchParams: url.searchParams,\n pathname: hasBasePath(url.pathname)\n ? removeBasePath(url.pathname)\n : url.pathname,\n }\n }, [canonicalUrl])\n\n if (process.env.NODE_ENV !== 'production') {\n const { cache, tree } = state\n\n // This hook is in a conditional but that is ok because `process.env.NODE_ENV` never changes\n // eslint-disable-next-line react-hooks/rules-of-hooks\n useEffect(() => {\n // Add `window.nd` for debugging purposes.\n // This is not meant for use in applications as concurrent rendering will affect the cache/tree/router.\n // @ts-ignore this is for debugging\n window.nd = {\n router: publicAppRouterInstance,\n cache,\n tree,\n }\n }, [cache, tree])\n }\n\n useEffect(() => {\n // If the app is restored from bfcache, it's possible that\n // pushRef.mpaNavigation is true, which would mean that any re-render of this component\n // would trigger the mpa navigation logic again from the lines below.\n // This will restore the router to the initial state in the event that the app is restored from bfcache.\n function handlePageShow(event: PageTransitionEvent) {\n if (\n !event.persisted ||\n !window.history.state?.__PRIVATE_NEXTJS_INTERNALS_TREE\n ) {\n return\n }\n\n // Clear the pendingMpaPath value so that a subsequent MPA navigation to the same URL can be triggered.\n // This is necessary because if the browser restored from bfcache, the pendingMpaPath would still be set to the value\n // of the last MPA navigation.\n globalMutable.pendingMpaPath = undefined\n\n dispatchAppRouterAction({\n type: ACTION_RESTORE,\n url: new URL(window.location.href),\n historyState: window.history.state.__PRIVATE_NEXTJS_INTERNALS_TREE,\n })\n }\n\n window.addEventListener('pageshow', handlePageShow)\n\n return () => {\n window.removeEventListener('pageshow', handlePageShow)\n }\n }, [])\n\n useEffect(() => {\n // Ensure that any redirect errors that bubble up outside of the RedirectBoundary\n // are caught and handled by the router.\n function handleUnhandledRedirect(\n event: ErrorEvent | PromiseRejectionEvent\n ) {\n const error = 'reason' in event ? event.reason : event.error\n if (isRedirectError(error)) {\n event.preventDefault()\n const url = getURLFromRedirectError(error)\n const redirectType = getRedirectTypeFromError(error)\n // TODO: This should access the router methods directly, rather than\n // go through the public interface.\n if (redirectType === RedirectType.push) {\n publicAppRouterInstance.push(url, {})\n } else {\n publicAppRouterInstance.replace(url, {})\n }\n }\n }\n window.addEventListener('error', handleUnhandledRedirect)\n window.addEventListener('unhandledrejection', handleUnhandledRedirect)\n\n return () => {\n window.removeEventListener('error', handleUnhandledRedirect)\n window.removeEventListener('unhandledrejection', handleUnhandledRedirect)\n }\n }, [])\n\n // When mpaNavigation flag is set do a hard navigation to the new url.\n // Infinitely suspend because we don't actually want to rerender any child\n // components with the new URL and any entangled state updates shouldn't\n // commit either (eg: useTransition isPending should stay true until the page\n // unloads).\n //\n // This is a side effect in render. Don't try this at home, kids. It's\n // probably safe because we know this is a singleton component and it's never\n // in <Offscreen>. At least I hope so. (It will run twice in dev strict mode,\n // but that's... fine?)\n const { pushRef } = state\n if (pushRef.mpaNavigation) {\n // if there's a re-render, we don't want to trigger another redirect if one is already in flight to the same URL\n if (globalMutable.pendingMpaPath !== canonicalUrl) {\n const location = window.location\n if (pushRef.pendingPush) {\n location.assign(canonicalUrl)\n } else {\n location.replace(canonicalUrl)\n }\n\n globalMutable.pendingMpaPath = canonicalUrl\n }\n // TODO-APP: Should we listen to navigateerror here to catch failed\n // navigations somehow? And should we call window.stop() if a SPA navigation\n // should interrupt an MPA one?\n // NOTE: This is intentionally using `throw` instead of `use` because we're\n // inside an externally mutable condition (pushRef.mpaNavigation), which\n // violates the rules of hooks.\n throw unresolvedThenable\n }\n\n useEffect(() => {\n const originalPushState = window.history.pushState.bind(window.history)\n const originalReplaceState = window.history.replaceState.bind(\n window.history\n )\n\n // Ensure the canonical URL in the Next.js Router is updated when the URL is changed so that `usePathname` and `useSearchParams` hold the pushed values.\n const applyUrlFromHistoryPushReplace = (\n url: string | URL | null | undefined\n ) => {\n const href = window.location.href\n const appHistoryState: AppHistoryState | undefined =\n window.history.state?.__PRIVATE_NEXTJS_INTERNALS_TREE\n\n startTransition(() => {\n dispatchAppRouterAction({\n type: ACTION_RESTORE,\n url: new URL(url ?? href, href),\n historyState: appHistoryState,\n })\n })\n }\n\n /**\n * Patch pushState to ensure external changes to the history are reflected in the Next.js Router.\n * Ensures Next.js internal history state is copied to the new history entry.\n * Ensures usePathname and useSearchParams hold the newly provided url.\n */\n window.history.pushState = function pushState(\n data: any,\n _unused: string,\n url?: string | URL | null\n ): void {\n // TODO: Warn when Navigation API is available (navigation.navigate() should be used)\n // Avoid a loop when Next.js internals trigger pushState/replaceState\n if (data?.__NA || data?._N) {\n return originalPushState(data, _unused, url)\n }\n\n data = copyNextJsInternalHistoryState(data)\n\n if (url) {\n applyUrlFromHistoryPushReplace(url)\n }\n\n return originalPushState(data, _unused, url)\n }\n\n /**\n * Patch replaceState to ensure external changes to the history are reflected in the Next.js Router.\n * Ensures Next.js internal history state is copied to the new history entry.\n * Ensures usePathname and useSearchParams hold the newly provided url.\n */\n window.history.replaceState = function replaceState(\n data: any,\n _unused: string,\n url?: string | URL | null\n ): void {\n // TODO: Warn when Navigation API is available (navigation.navigate() should be used)\n // Avoid a loop when Next.js internals trigger pushState/replaceState\n if (data?.__NA || data?._N) {\n return originalReplaceState(data, _unused, url)\n }\n data = copyNextJsInternalHistoryState(data)\n\n if (url) {\n applyUrlFromHistoryPushReplace(url)\n }\n return originalReplaceState(data, _unused, url)\n }\n\n /**\n * Handle popstate event, this is used to handle back/forward in the browser.\n * By default dispatches ACTION_RESTORE, however if the history entry was not pushed/replaced by app-router it will reload the page.\n * That case can happen when the old router injected the history entry.\n */\n const onPopState = (event: PopStateEvent) => {\n if (!event.state) {\n // TODO-APP: this case only happens when pushState/replaceState was called outside of Next.js. It should probably reload the page in this case.\n return\n }\n\n // This case happens when the history entry was pushed by the `pages` router.\n if (!event.state.__NA) {\n window.location.reload()\n return\n }\n\n // TODO-APP: Ideally the back button should not use startTransition as it should apply the updates synchronously\n // Without startTransition works if the cache is there for this path\n startTransition(() => {\n dispatchTraverseAction(\n window.location.href,\n event.state.__PRIVATE_NEXTJS_INTERNALS_TREE\n )\n })\n }\n\n // Register popstate event to call onPopstate.\n window.addEventListener('popstate', onPopState)\n return () => {\n window.history.pushState = originalPushState\n window.history.replaceState = originalReplaceState\n window.removeEventListener('popstate', onPopState)\n }\n }, [])\n\n const { cache, tree, nextUrl, focusAndScrollRef, previousNextUrl } = state\n\n const matchingHead = useMemo(() => {\n return findHeadInCache(cache, tree[1])\n }, [cache, tree])\n\n // Add memoized pathParams for useParams.\n const pathParams = useMemo(() => {\n return getSelectedParams(tree)\n }, [tree])\n\n // Create instrumented promises for navigation hooks (dev-only)\n // These are specially instrumented promises to show in the Suspense DevTools\n // Promises are cached outside of render to survive suspense retries.\n let instrumentedNavigationPromises: NavigationPromises | null = null\n if (process.env.NODE_ENV !== 'production') {\n const { createRootNavigationPromises } =\n require('./navigation-devtools') as typeof import('./navigation-devtools')\n\n instrumentedNavigationPromises = createRootNavigationPromises(\n tree,\n pathname,\n searchParams,\n pathParams\n )\n }\n\n const layoutRouterContext = useMemo(() => {\n return {\n parentTree: tree,\n parentCacheNode: cache,\n parentSegmentPath: null,\n parentParams: {},\n // This is the <Activity> \"name\" that shows up in the Suspense DevTools.\n // It represents the root of the app.\n debugNameContext: '/',\n // Root node always has `url`\n // Provided in AppTreeContext to ensure it can be overwritten in layout-router\n url: canonicalUrl,\n // Root segment is always active\n isActive: true,\n }\n }, [tree, cache, canonicalUrl])\n\n const globalLayoutRouterContext = useMemo(() => {\n return {\n tree,\n focusAndScrollRef,\n nextUrl,\n previousNextUrl,\n }\n }, [tree, focusAndScrollRef, nextUrl, previousNextUrl])\n\n let head\n if (matchingHead !== null) {\n // The head is wrapped in an extra component so we can use\n // `useDeferredValue` to swap between the prefetched and final versions of\n // the head. (This is what LayoutRouter does for segment data, too.)\n //\n // The `key` is used to remount the component whenever the head moves to\n // a different segment.\n const [headCacheNode, headKey, headKeyWithoutSearchParams] = matchingHead\n\n head = (\n <Head\n key={\n // Necessary for PPR: omit search params from the key to match prerendered keys\n typeof window === 'undefined' ? headKeyWithoutSearchParams : headKey\n }\n headCacheNode={headCacheNode}\n />\n )\n } else {\n head = null\n }\n\n let content = (\n <RedirectBoundary>\n {head}\n {/* RootLayoutBoundary enables detection of Suspense boundaries around the root layout.\n When users wrap their layout in <Suspense>, this creates the component stack pattern\n \"Suspense -> RootLayoutBoundary\" which dynamic-rendering.ts uses to allow dynamic rendering. */}\n <RootLayoutBoundary>{cache.rsc}</RootLayoutBoundary>\n <AppRouterAnnouncer tree={tree} />\n </RedirectBoundary>\n )\n\n if (process.env.NODE_ENV !== 'production') {\n // In development, we apply few error boundaries and hot-reloader:\n // - DevRootHTTPAccessFallbackBoundary: avoid using navigation API like notFound() in root layout\n // - HotReloader:\n // - hot-reload the app when the code changes\n // - render dev overlay\n // - catch runtime errors and display global-error when necessary\n if (typeof window !== 'undefined') {\n const { DevRootHTTPAccessFallbackBoundary } =\n require('./dev-root-http-access-fallback-boundary') as typeof import('./dev-root-http-access-fallback-boundary')\n content = (\n <DevRootHTTPAccessFallbackBoundary>\n {content}\n </DevRootHTTPAccessFallbackBoundary>\n )\n }\n const HotReloader: typeof import('../dev/hot-reloader/app/hot-reloader-app').default =\n (\n require('../dev/hot-reloader/app/hot-reloader-app') as typeof import('../dev/hot-reloader/app/hot-reloader-app')\n ).default\n\n content = (\n <HotReloader\n globalError={globalError}\n webSocket={webSocket}\n staticIndicatorState={staticIndicatorState}\n >\n {content}\n </HotReloader>\n )\n } else {\n content = (\n <RootErrorBoundary\n errorComponent={globalError[0]}\n errorStyles={globalError[1]}\n >\n {content}\n </RootErrorBoundary>\n )\n }\n\n return (\n <>\n <HistoryUpdater appRouterState={state} />\n <RuntimeStyles />\n <NavigationPromisesContext.Provider\n value={instrumentedNavigationPromises}\n >\n <PathParamsContext.Provider value={pathParams}>\n <PathnameContext.Provider value={pathname}>\n <SearchParamsContext.Provider value={searchParams}>\n <GlobalLayoutRouterContext.Provider\n value={globalLayoutRouterContext}\n >\n {/* TODO: We should be able to remove this context. useRouter\n should import from app-router-instance instead. It's only\n necessary because useRouter is shared between Pages and\n App Router. We should fork that module, then remove this\n context provider. */}\n <AppRouterContext.Provider value={publicAppRouterInstance}>\n <LayoutRouterContext.Provider value={layoutRouterContext}>\n {content}\n </LayoutRouterContext.Provider>\n </AppRouterContext.Provider>\n </GlobalLayoutRouterContext.Provider>\n </SearchParamsContext.Provider>\n </PathnameContext.Provider>\n </PathParamsContext.Provider>\n </NavigationPromisesContext.Provider>\n </>\n )\n}\n\nexport default function AppRouter({\n actionQueue,\n globalErrorState,\n webSocket,\n staticIndicatorState,\n}: {\n actionQueue: AppRouterActionQueue\n globalErrorState: GlobalErrorState\n webSocket?: WebSocket\n staticIndicatorState?: StaticIndicatorState\n}) {\n useNavFailureHandler()\n\n const router = (\n <Router\n actionQueue={actionQueue}\n globalError={globalErrorState}\n webSocket={webSocket}\n staticIndicatorState={staticIndicatorState}\n />\n )\n\n // At the very top level, use the default GlobalError component as the final fallback.\n // When the app router itself fails, which means the framework itself fails, we show the default error.\n return (\n <RootErrorBoundary errorComponent={DefaultGlobalError}>\n {router}\n </RootErrorBoundary>\n )\n}\n\nconst runtimeStyles = new Set<string>()\nlet runtimeStyleChanged = new Set<() => void>()\n\nglobalThis._N_E_STYLE_LOAD = function (href: string) {\n let len = runtimeStyles.size\n runtimeStyles.add(href)\n if (runtimeStyles.size !== len) {\n runtimeStyleChanged.forEach((cb) => cb())\n }\n // TODO figure out how to get a promise here\n // But maybe it's not necessary as react would block rendering until it's loaded\n return Promise.resolve()\n}\n\nfunction RuntimeStyles() {\n const [, forceUpdate] = React.useState(0)\n const renderedStylesSize = runtimeStyles.size\n useEffect(() => {\n const changed = () => forceUpdate((c) => c + 1)\n runtimeStyleChanged.add(changed)\n if (renderedStylesSize !== runtimeStyles.size) {\n changed()\n }\n return () => {\n runtimeStyleChanged.delete(changed)\n }\n }, [renderedStylesSize, forceUpdate])\n\n const dplId = getDeploymentIdQueryOrEmptyString()\n return [...runtimeStyles].map((href, i) => (\n <link\n key={i}\n rel=\"stylesheet\"\n href={`${href}${dplId}`}\n // @ts-ignore\n precedence=\"next\"\n // TODO figure out crossOrigin and nonce\n // crossOrigin={TODO}\n // nonce={TODO}\n />\n ))\n}\n"],"names":["AppRouter","globalMutable","HistoryUpdater","appRouterState","useInsertionEffect","process","env","__NEXT_APP_NAV_FAIL_HANDLING","window","next","__pendingUrl","undefined","tree","pushRef","canonicalUrl","renderedSearch","appHistoryState","historyState","preserveCustomHistoryState","history","state","__NA","__PRIVATE_NEXTJS_INTERNALS_TREE","pendingPush","createHrefFromUrl","URL","location","href","pushState","replaceState","useEffect","pingVisibleLinks","nextUrl","copyNextJsInternalHistoryState","data","currentState","Head","headCacheNode","head","prefetchHead","resolvedPrefetchRsc","useDeferredValue","Router","actionQueue","globalError","webSocket","staticIndicatorState","useActionQueue","searchParams","pathname","useMemo","url","hasBasePath","removeBasePath","NODE_ENV","cache","nd","router","publicAppRouterInstance","handlePageShow","event","persisted","pendingMpaPath","dispatchAppRouterAction","type","ACTION_RESTORE","addEventListener","removeEventListener","handleUnhandledRedirect","error","reason","isRedirectError","preventDefault","getURLFromRedirectError","redirectType","getRedirectTypeFromError","RedirectType","push","replace","mpaNavigation","assign","unresolvedThenable","originalPushState","bind","originalReplaceState","applyUrlFromHistoryPushReplace","startTransition","_unused","_N","onPopState","reload","dispatchTraverseAction","focusAndScrollRef","previousNextUrl","matchingHead","findHeadInCache","pathParams","getSelectedParams","instrumentedNavigationPromises","createRootNavigationPromises","require","layoutRouterContext","parentTree","parentCacheNode","parentSegmentPath","parentParams","debugNameContext","isActive","globalLayoutRouterContext","headKey","headKeyWithoutSearchParams","content","RedirectBoundary","RootLayoutBoundary","rsc","AppRouterAnnouncer","DevRootHTTPAccessFallbackBoundary","HotReloader","default","RootErrorBoundary","errorComponent","errorStyles","RuntimeStyles","NavigationPromisesContext","Provider","value","PathParamsContext","PathnameContext","SearchParamsContext","GlobalLayoutRouterContext","AppRouterContext","LayoutRouterContext","globalErrorState","useNavFailureHandler","DefaultGlobalError","runtimeStyles","Set","runtimeStyleChanged","globalThis","_N_E_STYLE_LOAD","len","size","add","forEach","cb","Promise","resolve","forceUpdate","React","useState","renderedStylesSize","changed","c","delete","dplId","getDeploymentIdQueryOrEmptyString","map","i","link","rel","precedence"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 12288, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/components/router-reducer/create-initial-router-state.ts"],"sourcesContent":["import type { FlightDataPath } from '../../../shared/lib/app-router-types'\n\nimport { createHrefFromUrl } from './create-href-from-url'\nimport { extractPathFromFlightRouterState } from './compute-changed-path'\n\nimport type { AppRouterState } from './router-reducer-types'\nimport { getFlightDataPartsFromPath } from '../../flight-data-helpers'\nimport { createInitialCacheNodeForHydration } from './ppr-navigations'\n\nexport interface InitialRouterStateParameters {\n navigatedAt: number\n initialCanonicalUrlParts: string[]\n initialRenderedSearch: string\n initialFlightData: FlightDataPath[]\n location: Location | null\n}\n\nexport function createInitialRouterState({\n navigatedAt,\n initialFlightData,\n initialCanonicalUrlParts,\n initialRenderedSearch,\n location,\n}: InitialRouterStateParameters): AppRouterState {\n // When initialized on the server, the canonical URL is provided as an array of parts.\n // This is to ensure that when the RSC payload streamed to the client, crawlers don't interpret it\n // as a URL that should be crawled.\n const initialCanonicalUrl = initialCanonicalUrlParts.join('/')\n\n const normalizedFlightData = getFlightDataPartsFromPath(initialFlightData[0])\n const {\n tree: initialTree,\n seedData: initialSeedData,\n head: initialHead,\n } = normalizedFlightData\n // For the SSR render, seed data should always be available (we only send back a `null` response\n // in the case of a `loading` segment, pre-PPR.)\n\n const canonicalUrl =\n // location.href is read as the initial value for canonicalUrl in the browser\n // This is safe to do as canonicalUrl can't be rendered, it's only used to control the history updates in the useEffect further down in this file.\n location\n ? // window.location does not have the same type as URL but has all the fields createHrefFromUrl needs.\n createHrefFromUrl(location)\n : initialCanonicalUrl\n\n const initialState = {\n tree: initialTree,\n cache: createInitialCacheNodeForHydration(\n navigatedAt,\n initialTree,\n initialSeedData,\n initialHead\n ),\n pushRef: {\n pendingPush: false,\n mpaNavigation: false,\n // First render needs to preserve the previous window.history.state\n // to avoid it being overwritten on navigation back/forward with MPA Navigation.\n preserveCustomHistoryState: true,\n },\n focusAndScrollRef: {\n apply: false,\n onlyHashChange: false,\n hashFragment: null,\n segmentPaths: [],\n },\n canonicalUrl,\n renderedSearch: initialRenderedSearch,\n nextUrl:\n // the || operator is intentional, the pathname can be an empty string\n (extractPathFromFlightRouterState(initialTree) || location?.pathname) ??\n null,\n previousNextUrl: null,\n debugInfo: null,\n }\n\n return initialState\n}\n"],"names":["createInitialRouterState","navigatedAt","initialFlightData","initialCanonicalUrlParts","initialRenderedSearch","location","initialCanonicalUrl","join","normalizedFlightData","getFlightDataPartsFromPath","tree","initialTree","seedData","initialSeedData","head","initialHead","canonicalUrl","createHrefFromUrl","initialState","cache","createInitialCacheNodeForHydration","pushRef","pendingPush","mpaNavigation","preserveCustomHistoryState","focusAndScrollRef","apply","onlyHashChange","hashFragment","segmentPaths","renderedSearch","nextUrl","extractPathFromFlightRouterState","pathname","previousNextUrl","debugInfo"],"mappings":";;;+BAiBgBA,4BAAAA;;;eAAAA;;;mCAfkB;oCACe;mCAGN;gCACQ;AAU5C,SAASA,yBAAyB,EACvCC,WAAW,EACXC,iBAAiB,EACjBC,wBAAwB,EACxBC,qBAAqB,EACrBC,QAAQ,EACqB;IAC7B,sFAAsF;IACtF,kGAAkG;IAClG,mCAAmC;IACnC,MAAMC,sBAAsBH,yBAAyBI,IAAI,CAAC;IAE1D,MAAMC,uBAAuBC,CAAAA,GAAAA,mBAAAA,0BAA0B,EAACP,iBAAiB,CAAC,EAAE;IAC5E,MAAM,EACJQ,MAAMC,WAAW,EACjBC,UAAUC,eAAe,EACzBC,MAAMC,WAAW,EAClB,GAAGP;IACJ,gGAAgG;IAChG,gDAAgD;IAEhD,MAAMQ,eACJ,AACA,6EAD6E,qEACqE;IAClJX,WAEIY,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACZ,YAClBC;IAEN,MAAMY,eAAe;QACnBR,MAAMC;QACNQ,OAAOC,CAAAA,GAAAA,gBAAAA,kCAAkC,EACvCnB,aACAU,aACAE,iBACAE;QAEFM,SAAS;YACPC,aAAa;YACbC,eAAe;YACf,mEAAmE;YACnE,gFAAgF;YAChFC,4BAA4B;QAC9B;QACAC,mBAAmB;YACjBC,OAAO;YACPC,gBAAgB;YAChBC,cAAc;YACdC,cAAc,EAAE;QAClB;QACAb;QACAc,gBAAgB1B;QAChB2B,SAEE,AADA,AACCC,CAAAA,CAAAA,GAAAA,oBAAAA,gCAAgC,EAACrB,WADoC,KACpBN,UAAU4B,QAAO,KACnE;QACFC,iBAAiB;QACjBC,WAAW;IACb;IAEA,OAAOjB;AACT","ignoreList":[0]}}, - {"offset": {"line": 12347, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-link-gc.ts"],"sourcesContent":["export function linkGc() {\n // TODO-APP: Remove this logic when Float has GC built-in in development.\n if (process.env.NODE_ENV !== 'production') {\n const callback = (mutationList: MutationRecord[]) => {\n for (const mutation of mutationList) {\n if (mutation.type === 'childList') {\n for (const node of mutation.addedNodes) {\n if (\n 'tagName' in node &&\n (node as HTMLLinkElement).tagName === 'LINK'\n ) {\n const link = node as HTMLLinkElement\n if (link.dataset.precedence?.startsWith('next')) {\n const href = link.getAttribute('href')\n if (href) {\n const [resource, version] = href.split('?v=', 2)\n if (version) {\n const currentOrigin = window.location.origin\n const allLinks = [\n ...document.querySelectorAll(\n 'link[href^=\"' + resource + '\"]'\n ),\n // It's possible that the resource is a full URL or only pathname,\n // so we need to remove the alternative href as well.\n ...document.querySelectorAll(\n 'link[href^=\"' +\n (resource.startsWith(currentOrigin)\n ? resource.slice(currentOrigin.length)\n : currentOrigin + resource) +\n '\"]'\n ),\n ] as HTMLLinkElement[]\n\n for (const otherLink of allLinks) {\n if (otherLink.dataset.precedence?.startsWith('next')) {\n const otherHref = otherLink.getAttribute('href')\n if (otherHref) {\n const [, otherVersion] = otherHref.split('?v=', 2)\n if (!otherVersion || +otherVersion < +version) {\n // Delay the removal of the stylesheet to avoid FOUC\n // caused by `@font-face` rules, as they seem to be\n // a couple of ticks delayed between the old and new\n // styles being swapped even if the font is cached.\n setTimeout(() => {\n otherLink.remove()\n }, 5)\n const preloadLink = document.querySelector(\n `link[rel=\"preload\"][as=\"style\"][href=\"${otherHref}\"]`\n )\n if (preloadLink) {\n preloadLink.remove()\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n\n // Create an observer instance linked to the callback function\n const observer = new MutationObserver(callback)\n observer.observe(document.head, {\n childList: true,\n })\n }\n}\n"],"names":["linkGc","process","env","NODE_ENV","callback","mutationList","mutation","type","node","addedNodes","tagName","link","dataset","precedence","startsWith","href","getAttribute","resource","version","split","currentOrigin","window","location","origin","allLinks","document","querySelectorAll","slice","length","otherLink","otherHref","otherVersion","setTimeout","remove","preloadLink","querySelector","observer","MutationObserver","observe","head","childList"],"mappings":"AAEMC,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BAFfH,UAAAA;;;eAAAA;;;AAAT,SAASA;IACd,yEAAyE;IACzE,wCAA2C;QACzC,MAAMI,WAAW,CAACC;YAChB,KAAK,MAAMC,YAAYD,aAAc;gBACnC,IAAIC,SAASC,IAAI,KAAK,aAAa;oBACjC,KAAK,MAAMC,QAAQF,SAASG,UAAU,CAAE;wBACtC,IACE,aAAaD,QACZA,KAAyBE,OAAO,KAAK,QACtC;4BACA,MAAMC,OAAOH;4BACb,IAAIG,KAAKC,OAAO,CAACC,UAAU,EAAEC,WAAW,SAAS;gCAC/C,MAAMC,OAAOJ,KAAKK,YAAY,CAAC;gCAC/B,IAAID,MAAM;oCACR,MAAM,CAACE,UAAUC,QAAQ,GAAGH,KAAKI,KAAK,CAAC,OAAO;oCAC9C,IAAID,SAAS;wCACX,MAAME,gBAAgBC,OAAOC,QAAQ,CAACC,MAAM;wCAC5C,MAAMC,WAAW;+CACZC,SAASC,gBAAgB,CAC1B,iBAAiBT,WAAW;4CAE9B,kEAAkE;4CAClE,qDAAqD;+CAClDQ,SAASC,gBAAgB,CAC1B,iBACGT,CAAAA,SAASH,UAAU,CAACM,iBACjBH,SAASU,KAAK,CAACP,cAAcQ,MAAM,IACnCR,gBAAgBH,QAAO,IAC3B;yCAEL;wCAED,KAAK,MAAMY,aAAaL,SAAU;4CAChC,IAAIK,UAAUjB,OAAO,CAACC,UAAU,EAAEC,WAAW,SAAS;gDACpD,MAAMgB,YAAYD,UAAUb,YAAY,CAAC;gDACzC,IAAIc,WAAW;oDACb,MAAM,GAAGC,aAAa,GAAGD,UAAUX,KAAK,CAAC,OAAO;oDAChD,IAAI,CAACY,gBAAgB,CAACA,eAAe,CAACb,SAAS;wDAC7C,oDAAoD;wDACpD,mDAAmD;wDACnD,oDAAoD;wDACpD,mDAAmD;wDACnDc,WAAW;4DACTH,UAAUI,MAAM;wDAClB,GAAG;wDACH,MAAMC,cAAcT,SAASU,aAAa,CACxC,CAAC,sCAAsC,EAAEL,UAAU,EAAE,CAAC;wDAExD,IAAII,aAAa;4DACfA,YAAYD,MAAM;wDACpB;oDACF;gDACF;4CACF;wCACF;oCACF;gCACF;4BACF;wBACF;oBACF;gBACF;YACF;QACF;QAEA,8DAA8D;QAC9D,MAAMG,WAAW,IAAIC,iBAAiBjC;QACtCgC,SAASE,OAAO,CAACb,SAASc,IAAI,EAAE;YAC9BC,WAAW;QACb;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 12426, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-index.tsx"],"sourcesContent":["import './app-globals'\nimport ReactDOMClient from 'react-dom/client'\nimport React from 'react'\n// TODO: Explicitly import from client.browser\n// eslint-disable-next-line import/no-extraneous-dependencies\nimport {\n createFromReadableStream as createFromReadableStreamBrowser,\n createFromFetch as createFromFetchBrowser,\n} from 'react-server-dom-webpack/client'\nimport { HeadManagerContext } from '../shared/lib/head-manager-context.shared-runtime'\nimport { onRecoverableError } from './react-client-callbacks/on-recoverable-error'\nimport {\n onCaughtError,\n onUncaughtError,\n} from './react-client-callbacks/error-boundary-callbacks'\nimport { callServer } from './app-call-server'\nimport { findSourceMapURL } from './app-find-source-map-url'\nimport {\n type AppRouterActionQueue,\n createMutableActionQueue,\n} from './components/app-router-instance'\nimport AppRouter from './components/app-router'\nimport type { InitialRSCPayload } from '../shared/lib/app-router-types'\nimport { createInitialRouterState } from './components/router-reducer/create-initial-router-state'\nimport { MissingSlotContext } from '../shared/lib/app-router-context.shared-runtime'\nimport { setAppBuildId } from './app-build-id'\nimport type { StaticIndicatorState } from './dev/hot-reloader/app/hot-reloader-app'\nimport { createInitialRSCPayloadFromFallbackPrerender } from './flight-data-helpers'\n\n/// <reference types=\"react-dom/experimental\" />\n\nconst createFromReadableStream =\n createFromReadableStreamBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromReadableStream']\nconst createFromFetch =\n createFromFetchBrowser as (typeof import('react-server-dom-webpack/client.browser'))['createFromFetch']\n\nconst appElement: HTMLElement | Document = document\n\nconst encoder = new TextEncoder()\n\nlet initialServerDataBuffer: (string | Uint8Array)[] | undefined = undefined\nlet initialServerDataWriter: ReadableStreamDefaultController | undefined =\n undefined\nlet initialServerDataLoaded = false\nlet initialServerDataFlushed = false\n\nlet initialFormStateData: null | any = null\n\ntype FlightSegment =\n | [isBootStrap: 0]\n | [isNotBootstrap: 1, responsePartial: string]\n | [isFormState: 2, formState: any]\n | [isBinary: 3, responseBase64Partial: string]\n\ntype NextFlight = Omit<Array<FlightSegment>, 'push'> & {\n push: (seg: FlightSegment) => void\n}\n\ndeclare global {\n // If you're working in a browser environment\n interface Window {\n /**\n * request ID, dev-only\n */\n __next_r?: string\n __next_f: NextFlight\n }\n}\n\nfunction nextServerDataCallback(seg: FlightSegment): void {\n if (seg[0] === 0) {\n initialServerDataBuffer = []\n } else if (seg[0] === 1) {\n if (!initialServerDataBuffer)\n throw new Error('Unexpected server data: missing bootstrap script.')\n\n if (initialServerDataWriter) {\n initialServerDataWriter.enqueue(encoder.encode(seg[1]))\n } else {\n initialServerDataBuffer.push(seg[1])\n }\n } else if (seg[0] === 2) {\n initialFormStateData = seg[1]\n } else if (seg[0] === 3) {\n if (!initialServerDataBuffer)\n throw new Error('Unexpected server data: missing bootstrap script.')\n\n // Decode the base64 string back to binary data.\n const binaryString = atob(seg[1])\n const decodedChunk = new Uint8Array(binaryString.length)\n for (var i = 0; i < binaryString.length; i++) {\n decodedChunk[i] = binaryString.charCodeAt(i)\n }\n\n if (initialServerDataWriter) {\n initialServerDataWriter.enqueue(decodedChunk)\n } else {\n initialServerDataBuffer.push(decodedChunk)\n }\n }\n}\n\nfunction isStreamErrorOrUnfinished(ctr: ReadableStreamDefaultController) {\n // If `desiredSize` is null, it means the stream is closed or errored. If it is lower than 0, the stream is still unfinished.\n return ctr.desiredSize === null || ctr.desiredSize < 0\n}\n\n// There might be race conditions between `nextServerDataRegisterWriter` and\n// `DOMContentLoaded`. The former will be called when React starts to hydrate\n// the root, the latter will be called when the DOM is fully loaded.\n// For streaming, the former is called first due to partial hydration.\n// For non-streaming, the latter can be called first.\n// Hence, we use two variables `initialServerDataLoaded` and\n// `initialServerDataFlushed` to make sure the writer will be closed and\n// `initialServerDataBuffer` will be cleared in the right time.\nfunction nextServerDataRegisterWriter(ctr: ReadableStreamDefaultController) {\n if (initialServerDataBuffer) {\n initialServerDataBuffer.forEach((val) => {\n ctr.enqueue(typeof val === 'string' ? encoder.encode(val) : val)\n })\n if (initialServerDataLoaded && !initialServerDataFlushed) {\n if (isStreamErrorOrUnfinished(ctr)) {\n ctr.error(\n new Error(\n 'The connection to the page was unexpectedly closed, possibly due to the stop button being clicked, loss of Wi-Fi, or an unstable internet connection.'\n )\n )\n } else {\n ctr.close()\n }\n initialServerDataFlushed = true\n initialServerDataBuffer = undefined\n }\n }\n\n initialServerDataWriter = ctr\n}\n\n// When `DOMContentLoaded`, we can close all pending writers to finish hydration.\nconst DOMContentLoaded = function () {\n if (initialServerDataWriter && !initialServerDataFlushed) {\n initialServerDataWriter.close()\n initialServerDataFlushed = true\n initialServerDataBuffer = undefined\n }\n initialServerDataLoaded = true\n}\n\n// It's possible that the DOM is already loaded.\nif (document.readyState === 'loading') {\n document.addEventListener('DOMContentLoaded', DOMContentLoaded, false)\n} else {\n // Delayed in marco task to ensure it's executed later than hydration\n setTimeout(DOMContentLoaded)\n}\n\nconst nextServerDataLoadingGlobal = (self.__next_f = self.__next_f || [])\n\n// Consume all buffered chunks and clear the global data array right after to release memory.\n// Otherwise it will be retained indefinitely.\nnextServerDataLoadingGlobal.forEach(nextServerDataCallback)\nnextServerDataLoadingGlobal.length = 0\n\n// Patch its push method so subsequent chunks are handled (but not actually pushed to the array).\nnextServerDataLoadingGlobal.push = nextServerDataCallback\n\nconst readable = new ReadableStream({\n start(controller) {\n nextServerDataRegisterWriter(controller)\n },\n})\nif (process.env.NODE_ENV !== 'production') {\n // @ts-expect-error\n readable.name = 'hydration'\n}\n\nlet debugChannel:\n | { readable?: ReadableStream; writable?: WritableStream }\n | undefined\n\nif (\n process.env.NODE_ENV !== 'production' &&\n process.env.__NEXT_REACT_DEBUG_CHANNEL &&\n typeof window !== 'undefined'\n) {\n const { createDebugChannel } =\n require('./dev/debug-channel') as typeof import('./dev/debug-channel')\n\n debugChannel = createDebugChannel(undefined)\n}\n\nconst clientResumeFetch: Promise<Response> | undefined =\n // @ts-expect-error\n window.__NEXT_CLIENT_RESUME\n\nlet initialServerResponse: Promise<InitialRSCPayload>\nif (clientResumeFetch) {\n initialServerResponse = Promise.resolve(\n createFromFetch<InitialRSCPayload>(clientResumeFetch, {\n callServer,\n findSourceMapURL,\n debugChannel,\n })\n ).then(async (fallbackInitialRSCPayload) =>\n createInitialRSCPayloadFromFallbackPrerender(\n await clientResumeFetch,\n fallbackInitialRSCPayload\n )\n )\n} else {\n initialServerResponse = createFromReadableStream<InitialRSCPayload>(\n readable,\n {\n callServer,\n findSourceMapURL,\n debugChannel,\n startTime: 0,\n }\n )\n}\n\nfunction ServerRoot({\n initialRSCPayload,\n actionQueue,\n webSocket,\n staticIndicatorState,\n}: {\n initialRSCPayload: InitialRSCPayload\n actionQueue: AppRouterActionQueue\n webSocket: WebSocket | undefined\n staticIndicatorState: StaticIndicatorState | undefined\n}): React.ReactNode {\n const router = (\n <AppRouter\n actionQueue={actionQueue}\n globalErrorState={initialRSCPayload.G}\n webSocket={webSocket}\n staticIndicatorState={staticIndicatorState}\n />\n )\n\n if (process.env.NODE_ENV === 'development' && initialRSCPayload.m) {\n // We provide missing slot information in a context provider only during development\n // as we log some additional information about the missing slots in the console.\n return (\n <MissingSlotContext value={initialRSCPayload.m}>\n {router}\n </MissingSlotContext>\n )\n }\n\n return router\n}\n\nconst StrictModeIfEnabled = process.env.__NEXT_STRICT_MODE_APP\n ? React.StrictMode\n : React.Fragment\n\nfunction Root({ children }: React.PropsWithChildren<{}>) {\n if (process.env.__NEXT_TEST_MODE) {\n // eslint-disable-next-line react-hooks/rules-of-hooks\n React.useEffect(() => {\n window.__NEXT_HYDRATED = true\n window.__NEXT_HYDRATED_AT = performance.now()\n window.__NEXT_HYDRATED_CB?.()\n }, [])\n }\n\n return children\n}\n\nconst enableTransitionIndicator = process.env.__NEXT_TRANSITION_INDICATOR\n\nfunction noDefaultTransitionIndicator() {\n return () => {}\n}\n\nconst reactRootOptions: ReactDOMClient.RootOptions = {\n onDefaultTransitionIndicator: enableTransitionIndicator\n ? // TODO: Compose default with user-configureable (e.g. nprogress)\n undefined\n : noDefaultTransitionIndicator,\n onRecoverableError,\n onCaughtError,\n onUncaughtError,\n}\n\nexport type ClientInstrumentationHooks = {\n onRouterTransitionStart?: (\n url: string,\n navigationType: 'push' | 'replace' | 'traverse'\n ) => void\n}\n\nexport async function hydrate(\n instrumentationHooks: ClientInstrumentationHooks | null,\n assetPrefix: string\n) {\n let staticIndicatorState: StaticIndicatorState | undefined\n let webSocket: WebSocket | undefined\n\n if (process.env.NODE_ENV !== 'production') {\n const { createWebSocket } =\n require('./dev/hot-reloader/app/web-socket') as typeof import('./dev/hot-reloader/app/web-socket')\n\n staticIndicatorState = { pathname: null, appIsrManifest: null }\n webSocket = createWebSocket(assetPrefix, staticIndicatorState)\n }\n const initialRSCPayload = await initialServerResponse\n // setAppBuildId should be called only once, during JS initialization\n // and before any components have hydrated.\n setAppBuildId(initialRSCPayload.b)\n\n const initialTimestamp = Date.now()\n const actionQueue: AppRouterActionQueue = createMutableActionQueue(\n createInitialRouterState({\n navigatedAt: initialTimestamp,\n initialFlightData: initialRSCPayload.f,\n initialCanonicalUrlParts: initialRSCPayload.c,\n initialRenderedSearch: initialRSCPayload.q,\n location: window.location,\n }),\n instrumentationHooks\n )\n\n const reactEl = (\n <StrictModeIfEnabled>\n <HeadManagerContext.Provider value={{ appDir: true }}>\n <Root>\n <ServerRoot\n initialRSCPayload={initialRSCPayload}\n actionQueue={actionQueue}\n webSocket={webSocket}\n staticIndicatorState={staticIndicatorState}\n />\n </Root>\n </HeadManagerContext.Provider>\n </StrictModeIfEnabled>\n )\n\n if (document.documentElement.id === '__next_error__') {\n let element = reactEl\n // Server rendering failed, fall back to client-side rendering\n if (process.env.NODE_ENV !== 'production') {\n const { RootLevelDevOverlayElement } =\n require('../next-devtools/userspace/app/client-entry') as typeof import('../next-devtools/userspace/app/client-entry')\n\n // Note this won't cause hydration mismatch because we are doing CSR w/o hydration\n element = (\n <RootLevelDevOverlayElement>{element}</RootLevelDevOverlayElement>\n )\n }\n\n ReactDOMClient.createRoot(appElement, reactRootOptions).render(element)\n } else {\n React.startTransition(() => {\n ReactDOMClient.hydrateRoot(appElement, reactEl, {\n ...reactRootOptions,\n formState: initialFormStateData,\n })\n })\n }\n\n // TODO-APP: Remove this logic when Float has GC built-in in development.\n if (process.env.NODE_ENV !== 'production') {\n const { linkGc } =\n require('./app-link-gc') as typeof import('./app-link-gc')\n linkGc()\n }\n}\n"],"names":["hydrate","createFromReadableStream","createFromReadableStreamBrowser","createFromFetch","createFromFetchBrowser","appElement","document","encoder","TextEncoder","initialServerDataBuffer","undefined","initialServerDataWriter","initialServerDataLoaded","initialServerDataFlushed","initialFormStateData","nextServerDataCallback","seg","Error","enqueue","encode","push","binaryString","atob","decodedChunk","Uint8Array","length","i","charCodeAt","isStreamErrorOrUnfinished","ctr","desiredSize","nextServerDataRegisterWriter","forEach","val","error","close","DOMContentLoaded","readyState","addEventListener","setTimeout","nextServerDataLoadingGlobal","self","__next_f","readable","ReadableStream","start","controller","process","env","NODE_ENV","name","debugChannel","__NEXT_REACT_DEBUG_CHANNEL","window","createDebugChannel","require","clientResumeFetch","__NEXT_CLIENT_RESUME","initialServerResponse","Promise","resolve","callServer","findSourceMapURL","then","fallbackInitialRSCPayload","createInitialRSCPayloadFromFallbackPrerender","startTime","ServerRoot","initialRSCPayload","actionQueue","webSocket","staticIndicatorState","router","AppRouter","globalErrorState","G","m","MissingSlotContext","value","StrictModeIfEnabled","__NEXT_STRICT_MODE_APP","React","StrictMode","Fragment","Root","children","__NEXT_TEST_MODE","useEffect","__NEXT_HYDRATED","__NEXT_HYDRATED_AT","performance","now","__NEXT_HYDRATED_CB","enableTransitionIndicator","__NEXT_TRANSITION_INDICATOR","noDefaultTransitionIndicator","reactRootOptions","onDefaultTransitionIndicator","onRecoverableError","onCaughtError","onUncaughtError","instrumentationHooks","assetPrefix","createWebSocket","pathname","appIsrManifest","setAppBuildId","b","initialTimestamp","Date","createMutableActionQueue","createInitialRouterState","navigatedAt","initialFlightData","f","initialCanonicalUrlParts","c","initialRenderedSearch","q","location","reactEl","HeadManagerContext","Provider","appDir","documentElement","id","element","RootLevelDevOverlayElement","ReactDOMClient","createRoot","render","startTransition","hydrateRoot","formState","linkGc"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 12690, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/client/app-next-turbopack.ts"],"sourcesContent":["import { appBootstrap } from './app-bootstrap'\nimport { isRecoverableError } from './react-client-callbacks/on-recoverable-error'\n\nwindow.next.turbopack = true\n;(self as any).__webpack_hash__ = ''\n\n// eslint-disable-next-line @next/internal/typechecked-require\nconst instrumentationHooks = require('../lib/require-instrumentation-client')\n\nappBootstrap((assetPrefix) => {\n const { hydrate } = require('./app-index') as typeof import('./app-index')\n try {\n hydrate(instrumentationHooks, assetPrefix)\n } finally {\n if (process.env.NODE_ENV !== 'production') {\n const enableCacheIndicator = process.env.__NEXT_CACHE_COMPONENTS\n const { getOwnerStack } =\n require('../next-devtools/userspace/app/errors/stitched-error') as typeof import('../next-devtools/userspace/app/errors/stitched-error')\n const { renderAppDevOverlay } =\n require('next/dist/compiled/next-devtools') as typeof import('next/dist/compiled/next-devtools')\n renderAppDevOverlay(\n getOwnerStack,\n isRecoverableError,\n enableCacheIndicator\n )\n }\n }\n})\n"],"names":["window","next","turbopack","self","__webpack_hash__","instrumentationHooks","require","appBootstrap","assetPrefix","hydrate","process","env","NODE_ENV","enableCacheIndicator","__NEXT_CACHE_COMPONENTS","getOwnerStack","renderAppDevOverlay","isRecoverableError"],"mappings":"AAcQU,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;8BAdJ;oCACM;AAEnCZ,OAAOC,IAAI,CAACC,SAAS,GAAG;AACtBC,KAAaC,gBAAgB,GAAG;AAElC,8DAA8D;AAC9D,MAAMC,uBAAuBC,QAAQ;AAErCC,CAAAA,GAAAA,cAAAA,YAAY,EAAC,CAACC;IACZ,MAAM,EAAEC,OAAO,EAAE,GAAGH,QAAQ;IAC5B,IAAI;QACFG,QAAQJ,sBAAsBG;IAChC,SAAU;QACR,wCAA2C;YACzC,MAAMK,uBAAuBH,QAAQC,GAAG,CAACG,uBAAuB;YAChE,MAAM,EAAEC,aAAa,EAAE,GACrBT,QAAQ;YACV,MAAM,EAAEU,mBAAmB,EAAE,GAC3BV,QAAQ;YACVU,oBACED,eACAE,oBAAAA,kBAAkB,EAClBJ;QAEJ;IACF;AACF","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js deleted file mode 100644 index 368e25f..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js +++ /dev/null @@ -1,7 +0,0 @@ -(globalThis.TURBOPACK_CHUNK_LISTS || (globalThis.TURBOPACK_CHUNK_LISTS = [])).push({ - script: typeof document === "object" ? document.currentScript : undefined, - chunks: [ - "static/chunks/node_modules_next_dist_be32b49c._.js" -], - source: "dynamic" -}); diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js deleted file mode 100644 index 79c1413..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js +++ /dev/null @@ -1,2916 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/next/dist/compiled/process/browser.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(function() { - var e = { - 229: function(e) { - var t = e.exports = {}; - var r; - var n; - function defaultSetTimout() { - throw new Error("setTimeout has not been defined"); - } - function defaultClearTimeout() { - throw new Error("clearTimeout has not been defined"); - } - (function() { - try { - if (typeof setTimeout === "function") { - r = setTimeout; - } else { - r = defaultSetTimout; - } - } catch (e) { - r = defaultSetTimout; - } - try { - if (typeof clearTimeout === "function") { - n = clearTimeout; - } else { - n = defaultClearTimeout; - } - } catch (e) { - n = defaultClearTimeout; - } - })(); - function runTimeout(e) { - if (r === setTimeout) { - return setTimeout(e, 0); - } - if ((r === defaultSetTimout || !r) && setTimeout) { - r = setTimeout; - return setTimeout(e, 0); - } - try { - return r(e, 0); - } catch (t) { - try { - return r.call(null, e, 0); - } catch (t) { - return r.call(this, e, 0); - } - } - } - function runClearTimeout(e) { - if (n === clearTimeout) { - return clearTimeout(e); - } - if ((n === defaultClearTimeout || !n) && clearTimeout) { - n = clearTimeout; - return clearTimeout(e); - } - try { - return n(e); - } catch (t) { - try { - return n.call(null, e); - } catch (t) { - return n.call(this, e); - } - } - } - var i = []; - var o = false; - var u; - var a = -1; - function cleanUpNextTick() { - if (!o || !u) { - return; - } - o = false; - if (u.length) { - i = u.concat(i); - } else { - a = -1; - } - if (i.length) { - drainQueue(); - } - } - function drainQueue() { - if (o) { - return; - } - var e = runTimeout(cleanUpNextTick); - o = true; - var t = i.length; - while(t){ - u = i; - i = []; - while(++a < t){ - if (u) { - u[a].run(); - } - } - a = -1; - t = i.length; - } - u = null; - o = false; - runClearTimeout(e); - } - t.nextTick = function(e) { - var t = new Array(arguments.length - 1); - if (arguments.length > 1) { - for(var r = 1; r < arguments.length; r++){ - t[r - 1] = arguments[r]; - } - } - i.push(new Item(e, t)); - if (i.length === 1 && !o) { - runTimeout(drainQueue); - } - }; - function Item(e, t) { - this.fun = e; - this.array = t; - } - Item.prototype.run = function() { - this.fun.apply(null, this.array); - }; - t.title = "browser"; - t.browser = true; - t.env = {}; - t.argv = []; - t.version = ""; - t.versions = {}; - function noop() {} - t.on = noop; - t.addListener = noop; - t.once = noop; - t.off = noop; - t.removeListener = noop; - t.removeAllListeners = noop; - t.emit = noop; - t.prependListener = noop; - t.prependOnceListener = noop; - t.listeners = function(e) { - return []; - }; - t.binding = function(e) { - throw new Error("process.binding is not supported"); - }; - t.cwd = function() { - return "/"; - }; - t.chdir = function(e) { - throw new Error("process.chdir is not supported"); - }; - t.umask = function() { - return 0; - }; - } - }; - var t = {}; - function __nccwpck_require__(r) { - var n = t[r]; - if (n !== undefined) { - return n.exports; - } - var i = t[r] = { - exports: {} - }; - var o = true; - try { - e[r](i, i.exports, __nccwpck_require__); - o = false; - } finally{ - if (o) delete t[r]; - } - return i.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/process") + "/"; - var r = __nccwpck_require__(229); - module.exports = r; -})(); -}), -"[project]/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * @license React - * react-refresh-runtime.development.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ 'use strict'; -if ("TURBOPACK compile-time truthy", 1) { - (function() { - 'use strict'; - // ATTENTION - var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref'); - var REACT_MEMO_TYPE = Symbol.for('react.memo'); - var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map; // We never remove these associations. - // It's OK to reference families, but use WeakMap/Set for types. - var allFamiliesByID = new Map(); - var allFamiliesByType = new PossiblyWeakMap(); - var allSignaturesByType = new PossiblyWeakMap(); // This WeakMap is read by React, so we only put families - // that have actually been edited here. This keeps checks fast. - // $FlowIssue - var updatedFamiliesByType = new PossiblyWeakMap(); // This is cleared on every performReactRefresh() call. - // It is an array of [Family, NextType] tuples. - var pendingUpdates = []; // This is injected by the renderer via DevTools global hook. - var helpersByRendererID = new Map(); - var helpersByRoot = new Map(); // We keep track of mounted roots so we can schedule updates. - var mountedRoots = new Set(); // If a root captures an error, we remember it so we can retry on edit. - var failedRoots = new Set(); // In environments that support WeakMap, we also remember the last element for every root. - // It needs to be weak because we do this even for roots that failed to mount. - // If there is no WeakMap, we won't attempt to do retrying. - // $FlowIssue - var rootElements = typeof WeakMap === 'function' ? new WeakMap() : null; - var isPerformingRefresh = false; - function computeFullKey(signature) { - if (signature.fullKey !== null) { - return signature.fullKey; - } - var fullKey = signature.ownKey; - var hooks; - try { - hooks = signature.getCustomHooks(); - } catch (err) { - // This can happen in an edge case, e.g. if expression like Foo.useSomething - // depends on Foo which is lazily initialized during rendering. - // In that case just assume we'll have to remount. - signature.forceReset = true; - signature.fullKey = fullKey; - return fullKey; - } - for(var i = 0; i < hooks.length; i++){ - var hook = hooks[i]; - if (typeof hook !== 'function') { - // Something's wrong. Assume we need to remount. - signature.forceReset = true; - signature.fullKey = fullKey; - return fullKey; - } - var nestedHookSignature = allSignaturesByType.get(hook); - if (nestedHookSignature === undefined) { - continue; - } - var nestedHookKey = computeFullKey(nestedHookSignature); - if (nestedHookSignature.forceReset) { - signature.forceReset = true; - } - fullKey += '\n---\n' + nestedHookKey; - } - signature.fullKey = fullKey; - return fullKey; - } - function haveEqualSignatures(prevType, nextType) { - var prevSignature = allSignaturesByType.get(prevType); - var nextSignature = allSignaturesByType.get(nextType); - if (prevSignature === undefined && nextSignature === undefined) { - return true; - } - if (prevSignature === undefined || nextSignature === undefined) { - return false; - } - if (computeFullKey(prevSignature) !== computeFullKey(nextSignature)) { - return false; - } - if (nextSignature.forceReset) { - return false; - } - return true; - } - function isReactClass(type) { - return type.prototype && type.prototype.isReactComponent; - } - function canPreserveStateBetween(prevType, nextType) { - if (isReactClass(prevType) || isReactClass(nextType)) { - return false; - } - if (haveEqualSignatures(prevType, nextType)) { - return true; - } - return false; - } - function resolveFamily(type) { - // Only check updated types to keep lookups fast. - return updatedFamiliesByType.get(type); - } // If we didn't care about IE11, we could use new Map/Set(iterable). - function cloneMap(map) { - var clone = new Map(); - map.forEach(function(value, key) { - clone.set(key, value); - }); - return clone; - } - function cloneSet(set) { - var clone = new Set(); - set.forEach(function(value) { - clone.add(value); - }); - return clone; - } // This is a safety mechanism to protect against rogue getters and Proxies. - function getProperty(object, property) { - try { - return object[property]; - } catch (err) { - // Intentionally ignore. - return undefined; - } - } - function performReactRefresh() { - if (pendingUpdates.length === 0) { - return null; - } - if (isPerformingRefresh) { - return null; - } - isPerformingRefresh = true; - try { - var staleFamilies = new Set(); - var updatedFamilies = new Set(); - var updates = pendingUpdates; - pendingUpdates = []; - updates.forEach(function(_ref) { - var family = _ref[0], nextType = _ref[1]; - // Now that we got a real edit, we can create associations - // that will be read by the React reconciler. - var prevType = family.current; - updatedFamiliesByType.set(prevType, family); - updatedFamiliesByType.set(nextType, family); - family.current = nextType; // Determine whether this should be a re-render or a re-mount. - if (canPreserveStateBetween(prevType, nextType)) { - updatedFamilies.add(family); - } else { - staleFamilies.add(family); - } - }); // TODO: rename these fields to something more meaningful. - var update = { - updatedFamilies: updatedFamilies, - // Families that will re-render preserving state - staleFamilies: staleFamilies // Families that will be remounted - }; - helpersByRendererID.forEach(function(helpers) { - // Even if there are no roots, set the handler on first update. - // This ensures that if *new* roots are mounted, they'll use the resolve handler. - helpers.setRefreshHandler(resolveFamily); - }); - var didError = false; - var firstError = null; // We snapshot maps and sets that are mutated during commits. - // If we don't do this, there is a risk they will be mutated while - // we iterate over them. For example, trying to recover a failed root - // may cause another root to be added to the failed list -- an infinite loop. - var failedRootsSnapshot = cloneSet(failedRoots); - var mountedRootsSnapshot = cloneSet(mountedRoots); - var helpersByRootSnapshot = cloneMap(helpersByRoot); - failedRootsSnapshot.forEach(function(root) { - var helpers = helpersByRootSnapshot.get(root); - if (helpers === undefined) { - throw new Error('Could not find helpers for a root. This is a bug in React Refresh.'); - } - if (!failedRoots.has(root)) {} - if (rootElements === null) { - return; - } - if (!rootElements.has(root)) { - return; - } - var element = rootElements.get(root); - try { - helpers.scheduleRoot(root, element); - } catch (err) { - if (!didError) { - didError = true; - firstError = err; - } // Keep trying other roots. - } - }); - mountedRootsSnapshot.forEach(function(root) { - var helpers = helpersByRootSnapshot.get(root); - if (helpers === undefined) { - throw new Error('Could not find helpers for a root. This is a bug in React Refresh.'); - } - if (!mountedRoots.has(root)) {} - try { - helpers.scheduleRefresh(root, update); - } catch (err) { - if (!didError) { - didError = true; - firstError = err; - } // Keep trying other roots. - } - }); - if (didError) { - throw firstError; - } - return update; - } finally{ - isPerformingRefresh = false; - } - } - function register(type, id) { - { - if (type === null) { - return; - } - if (typeof type !== 'function' && typeof type !== 'object') { - return; - } // This can happen in an edge case, e.g. if we register - // return value of a HOC but it returns a cached component. - // Ignore anything but the first registration for each type. - if (allFamiliesByType.has(type)) { - return; - } // Create family or remember to update it. - // None of this bookkeeping affects reconciliation - // until the first performReactRefresh() call above. - var family = allFamiliesByID.get(id); - if (family === undefined) { - family = { - current: type - }; - allFamiliesByID.set(id, family); - } else { - pendingUpdates.push([ - family, - type - ]); - } - allFamiliesByType.set(type, family); // Visit inner types because we might not have registered them. - if (typeof type === 'object' && type !== null) { - switch(getProperty(type, '$$typeof')){ - case REACT_FORWARD_REF_TYPE: - register(type.render, id + '$render'); - break; - case REACT_MEMO_TYPE: - register(type.type, id + '$type'); - break; - } - } - } - } - function setSignature(type, key) { - var forceReset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; - var getCustomHooks = arguments.length > 3 ? arguments[3] : undefined; - { - if (!allSignaturesByType.has(type)) { - allSignaturesByType.set(type, { - forceReset: forceReset, - ownKey: key, - fullKey: null, - getCustomHooks: getCustomHooks || function() { - return []; - } - }); - } // Visit inner types because we might not have signed them. - if (typeof type === 'object' && type !== null) { - switch(getProperty(type, '$$typeof')){ - case REACT_FORWARD_REF_TYPE: - setSignature(type.render, key, forceReset, getCustomHooks); - break; - case REACT_MEMO_TYPE: - setSignature(type.type, key, forceReset, getCustomHooks); - break; - } - } - } - } // This is lazily called during first render for a type. - // It captures Hook list at that time so inline requires don't break comparisons. - function collectCustomHooksForSignature(type) { - { - var signature = allSignaturesByType.get(type); - if (signature !== undefined) { - computeFullKey(signature); - } - } - } - function getFamilyByID(id) { - { - return allFamiliesByID.get(id); - } - } - function getFamilyByType(type) { - { - return allFamiliesByType.get(type); - } - } - function findAffectedHostInstances(families) { - { - var affectedInstances = new Set(); - mountedRoots.forEach(function(root) { - var helpers = helpersByRoot.get(root); - if (helpers === undefined) { - throw new Error('Could not find helpers for a root. This is a bug in React Refresh.'); - } - var instancesForRoot = helpers.findHostInstancesForRefresh(root, families); - instancesForRoot.forEach(function(inst) { - affectedInstances.add(inst); - }); - }); - return affectedInstances; - } - } - function injectIntoGlobalHook(globalObject) { - { - // For React Native, the global hook will be set up by require('react-devtools-core'). - // That code will run before us. So we need to monkeypatch functions on existing hook. - // For React Web, the global hook will be set up by the extension. - // This will also run before us. - var hook = globalObject.__REACT_DEVTOOLS_GLOBAL_HOOK__; - if (hook === undefined) { - // However, if there is no DevTools extension, we'll need to set up the global hook ourselves. - // Note that in this case it's important that renderer code runs *after* this method call. - // Otherwise, the renderer will think that there is no global hook, and won't do the injection. - var nextID = 0; - globalObject.__REACT_DEVTOOLS_GLOBAL_HOOK__ = hook = { - renderers: new Map(), - supportsFiber: true, - inject: function(injected) { - return nextID++; - }, - onScheduleFiberRoot: function(id, root, children) {}, - onCommitFiberRoot: function(id, root, maybePriorityLevel, didError) {}, - onCommitFiberUnmount: function() {} - }; - } - if (hook.isDisabled) { - // This isn't a real property on the hook, but it can be set to opt out - // of DevTools integration and associated warnings and logs. - // Using console['warn'] to evade Babel and ESLint - console['warn']('Something has shimmed the React DevTools global hook (__REACT_DEVTOOLS_GLOBAL_HOOK__). ' + 'Fast Refresh is not compatible with this shim and will be disabled.'); - return; - } // Here, we just want to get a reference to scheduleRefresh. - var oldInject = hook.inject; - hook.inject = function(injected) { - var id = oldInject.apply(this, arguments); - if (typeof injected.scheduleRefresh === 'function' && typeof injected.setRefreshHandler === 'function') { - // This version supports React Refresh. - helpersByRendererID.set(id, injected); - } - return id; - }; // Do the same for any already injected roots. - // This is useful if ReactDOM has already been initialized. - // https://github.com/facebook/react/issues/17626 - hook.renderers.forEach(function(injected, id) { - if (typeof injected.scheduleRefresh === 'function' && typeof injected.setRefreshHandler === 'function') { - // This version supports React Refresh. - helpersByRendererID.set(id, injected); - } - }); // We also want to track currently mounted roots. - var oldOnCommitFiberRoot = hook.onCommitFiberRoot; - var oldOnScheduleFiberRoot = hook.onScheduleFiberRoot || function() {}; - hook.onScheduleFiberRoot = function(id, root, children) { - if (!isPerformingRefresh) { - // If it was intentionally scheduled, don't attempt to restore. - // This includes intentionally scheduled unmounts. - failedRoots.delete(root); - if (rootElements !== null) { - rootElements.set(root, children); - } - } - return oldOnScheduleFiberRoot.apply(this, arguments); - }; - hook.onCommitFiberRoot = function(id, root, maybePriorityLevel, didError) { - var helpers = helpersByRendererID.get(id); - if (helpers !== undefined) { - helpersByRoot.set(root, helpers); - var current = root.current; - var alternate = current.alternate; // We need to determine whether this root has just (un)mounted. - // This logic is copy-pasted from similar logic in the DevTools backend. - // If this breaks with some refactoring, you'll want to update DevTools too. - if (alternate !== null) { - var wasMounted = alternate.memoizedState != null && alternate.memoizedState.element != null && mountedRoots.has(root); - var isMounted = current.memoizedState != null && current.memoizedState.element != null; - if (!wasMounted && isMounted) { - // Mount a new root. - mountedRoots.add(root); - failedRoots.delete(root); - } else if (wasMounted && isMounted) ; - else if (wasMounted && !isMounted) { - // Unmount an existing root. - mountedRoots.delete(root); - if (didError) { - // We'll remount it on future edits. - failedRoots.add(root); - } else { - helpersByRoot.delete(root); - } - } else if (!wasMounted && !isMounted) { - if (didError) { - // We'll remount it on future edits. - failedRoots.add(root); - } - } - } else { - // Mount a new root. - mountedRoots.add(root); - } - } // Always call the decorated DevTools hook. - return oldOnCommitFiberRoot.apply(this, arguments); - }; - } - } - function hasUnrecoverableErrors() { - // TODO: delete this after removing dependency in RN. - return false; - } // Exposed for testing. - function _getMountedRootCount() { - { - return mountedRoots.size; - } - } // This is a wrapper over more primitive functions for setting signature. - // Signatures let us decide whether the Hook order has changed on refresh. - // - // This function is intended to be used as a transform target, e.g.: - // var _s = createSignatureFunctionForTransform() - // - // function Hello() { - // const [foo, setFoo] = useState(0); - // const value = useCustomHook(); - // _s(); /* Call without arguments triggers collecting the custom Hook list. - // * This doesn't happen during the module evaluation because we - // * don't want to change the module order with inline requires. - // * Next calls are noops. */ - // return <h1>Hi</h1>; - // } - // - // /* Call with arguments attaches the signature to the type: */ - // _s( - // Hello, - // 'useState{[foo, setFoo]}(0)', - // () => [useCustomHook], /* Lazy to avoid triggering inline requires */ - // ); - function createSignatureFunctionForTransform() { - { - var savedType; - var hasCustomHooks; - var didCollectHooks = false; - return function(type, key, forceReset, getCustomHooks) { - if (typeof key === 'string') { - // We're in the initial phase that associates signatures - // with the functions. Note this may be called multiple times - // in HOC chains like _s(hoc1(_s(hoc2(_s(actualFunction))))). - if (!savedType) { - // We're in the innermost call, so this is the actual type. - savedType = type; - hasCustomHooks = typeof getCustomHooks === 'function'; - } // Set the signature for all types (even wrappers!) in case - // they have no signatures of their own. This is to prevent - // problems like https://github.com/facebook/react/issues/20417. - if (type != null && (typeof type === 'function' || typeof type === 'object')) { - setSignature(type, key, forceReset, getCustomHooks); - } - return type; - } else { - // We're in the _s() call without arguments, which means - // this is the time to collect custom Hook signatures. - // Only do this once. This path is hot and runs *inside* every render! - if (!didCollectHooks && hasCustomHooks) { - didCollectHooks = true; - collectCustomHooksForSignature(savedType); - } - } - }; - } - } - function isLikelyComponentType(type) { - { - switch(typeof type){ - case 'function': - { - // First, deal with classes. - if (type.prototype != null) { - if (type.prototype.isReactComponent) { - // React class. - return true; - } - var ownNames = Object.getOwnPropertyNames(type.prototype); - if (ownNames.length > 1 || ownNames[0] !== 'constructor') { - // This looks like a class. - return false; - } // eslint-disable-next-line no-proto - if (type.prototype.__proto__ !== Object.prototype) { - // It has a superclass. - return false; - } // Pass through. - // This looks like a regular function with empty prototype. - } // For plain functions and arrows, use name as a heuristic. - var name = type.name || type.displayName; - return typeof name === 'string' && /^[A-Z]/.test(name); - } - case 'object': - { - if (type != null) { - switch(getProperty(type, '$$typeof')){ - case REACT_FORWARD_REF_TYPE: - case REACT_MEMO_TYPE: - // Definitely React components. - return true; - default: - return false; - } - } - return false; - } - default: - { - return false; - } - } - } - } - exports._getMountedRootCount = _getMountedRootCount; - exports.collectCustomHooksForSignature = collectCustomHooksForSignature; - exports.createSignatureFunctionForTransform = createSignatureFunctionForTransform; - exports.findAffectedHostInstances = findAffectedHostInstances; - exports.getFamilyByID = getFamilyByID; - exports.getFamilyByType = getFamilyByType; - exports.hasUnrecoverableErrors = hasUnrecoverableErrors; - exports.injectIntoGlobalHook = injectIntoGlobalHook; - exports.isLikelyComponentType = isLikelyComponentType; - exports.performReactRefresh = performReactRefresh; - exports.register = register; - exports.setSignature = setSignature; - })(); -} -}), -"[project]/node_modules/next/dist/compiled/react-refresh/runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use strict'; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js [app-client] (ecmascript)"); -} -}), -"[project]/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * MIT License - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ var __importDefault = /*TURBOPACK member replacement*/ __turbopack_context__.e && /*TURBOPACK member replacement*/ __turbopack_context__.e.__importDefault || function(mod) { - return mod && mod.__esModule ? mod : { - "default": mod - }; -}; -Object.defineProperty(exports, "__esModule", { - value: true -}); -// This file is copied from the Metro JavaScript bundler, with minor tweaks for -// webpack 4 compatibility. -// -// https://github.com/facebook/metro/blob/d6b9685c730d0d63577db40f41369157f28dfa3a/packages/metro/src/lib/polyfills/require.js -const runtime_1 = __importDefault(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-refresh/runtime.js [app-client] (ecmascript)")); -function isSafeExport(key) { - return key === '__esModule' || key === '__N_SSG' || key === '__N_SSP' || // TODO: remove this key from page config instead of allow listing it - key === 'config'; -} -function registerExportsForReactRefresh(moduleExports, moduleID) { - runtime_1.default.register(moduleExports, moduleID + ' %exports%'); - if (moduleExports == null || typeof moduleExports !== 'object') { - // Exit if we can't iterate over exports. - // (This is important for legacy environments.) - return; - } - for(var key in moduleExports){ - if (isSafeExport(key)) { - continue; - } - try { - var exportValue = moduleExports[key]; - } catch (_a) { - continue; - } - var typeID = moduleID + ' %exports% ' + key; - runtime_1.default.register(exportValue, typeID); - } -} -function getRefreshBoundarySignature(moduleExports) { - var signature = []; - signature.push(runtime_1.default.getFamilyByType(moduleExports)); - if (moduleExports == null || typeof moduleExports !== 'object') { - // Exit if we can't iterate over exports. - // (This is important for legacy environments.) - return signature; - } - for(var key in moduleExports){ - if (isSafeExport(key)) { - continue; - } - try { - var exportValue = moduleExports[key]; - } catch (_a) { - continue; - } - signature.push(key); - signature.push(runtime_1.default.getFamilyByType(exportValue)); - } - return signature; -} -function isReactRefreshBoundary(moduleExports) { - if (runtime_1.default.isLikelyComponentType(moduleExports)) { - return true; - } - if (moduleExports == null || typeof moduleExports !== 'object') { - // Exit if we can't iterate over exports. - return false; - } - var hasExports = false; - var areAllExportsComponents = true; - for(var key in moduleExports){ - hasExports = true; - if (isSafeExport(key)) { - continue; - } - try { - var exportValue = moduleExports[key]; - } catch (_a) { - // This might fail due to circular dependencies - return false; - } - if (!runtime_1.default.isLikelyComponentType(exportValue)) { - areAllExportsComponents = false; - } - } - return hasExports && areAllExportsComponents; -} -function shouldInvalidateReactRefreshBoundary(prevSignature, nextSignature) { - if (prevSignature.length !== nextSignature.length) { - return true; - } - for(var i = 0; i < nextSignature.length; i++){ - if (prevSignature[i] !== nextSignature[i]) { - return true; - } - } - return false; -} -var isUpdateScheduled = false; -// This function aggregates updates from multiple modules into a single React Refresh call. -function scheduleUpdate() { - if (isUpdateScheduled) { - return; - } - isUpdateScheduled = true; - function canApplyUpdate(status) { - return status === 'idle'; - } - function applyUpdate() { - isUpdateScheduled = false; - try { - runtime_1.default.performReactRefresh(); - } catch (err) { - console.warn('Warning: Failed to re-render. We will retry on the next Fast Refresh event.\n' + err); - } - } - if (canApplyUpdate(module.hot.status())) { - // Apply update on the next tick. - Promise.resolve().then(()=>{ - applyUpdate(); - }); - return; - } - const statusHandler = (status)=>{ - if (canApplyUpdate(status)) { - module.hot.removeStatusHandler(statusHandler); - applyUpdate(); - } - }; - // Apply update once the HMR runtime's status is idle. - module.hot.addStatusHandler(statusHandler); -} -// Needs to be compatible with IE11 -exports.default = { - registerExportsForReactRefresh: registerExportsForReactRefresh, - isReactRefreshBoundary: isReactRefreshBoundary, - shouldInvalidateReactRefreshBoundary: shouldInvalidateReactRefreshBoundary, - getRefreshBoundarySignature: getRefreshBoundarySignature, - scheduleUpdate: scheduleUpdate -}; //# sourceMappingURL=helpers.js.map -}), -"[project]/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __importDefault = /*TURBOPACK member replacement*/ __turbopack_context__.e && /*TURBOPACK member replacement*/ __turbopack_context__.e.__importDefault || function(mod) { - return mod && mod.__esModule ? mod : { - "default": mod - }; -}; -Object.defineProperty(exports, "__esModule", { - value: true -}); -const runtime_1 = __importDefault(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-refresh/runtime.js [app-client] (ecmascript)")); -const helpers_1 = __importDefault(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js [app-client] (ecmascript)")); -// Hook into ReactDOM initialization -runtime_1.default.injectIntoGlobalHook(self); -// Register global helpers -self.$RefreshHelpers$ = helpers_1.default; -// Register a helper for module execution interception -self.$RefreshInterceptModuleExecution$ = function(webpackModuleId) { - var prevRefreshReg = self.$RefreshReg$; - var prevRefreshSig = self.$RefreshSig$; - self.$RefreshReg$ = function(type, id) { - runtime_1.default.register(type, webpackModuleId + ' ' + id); - }; - self.$RefreshSig$ = runtime_1.default.createSignatureFunctionForTransform; - // Modeled after `useEffect` cleanup pattern: - // https://react.dev/learn/synchronizing-with-effects#step-3-add-cleanup-if-needed - return function() { - self.$RefreshReg$ = prevRefreshReg; - self.$RefreshSig$ = prevRefreshSig; - }; -}; //# sourceMappingURL=runtime.js.map -}), -"[project]/node_modules/next/dist/compiled/react/cjs/react.development.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * @license React - * react.development.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ "use strict"; -"production" !== ("TURBOPACK compile-time value", "development") && function() { - function defineDeprecationWarning(methodName, info) { - Object.defineProperty(Component.prototype, methodName, { - get: function() { - console.warn("%s(...) is deprecated in plain JavaScript React classes. %s", info[0], info[1]); - } - }); - } - function getIteratorFn(maybeIterable) { - if (null === maybeIterable || "object" !== typeof maybeIterable) return null; - maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; - return "function" === typeof maybeIterable ? maybeIterable : null; - } - function warnNoop(publicInstance, callerName) { - publicInstance = (publicInstance = publicInstance.constructor) && (publicInstance.displayName || publicInstance.name) || "ReactClass"; - var warningKey = publicInstance + "." + callerName; - didWarnStateUpdateForUnmountedComponent[warningKey] || (console.error("Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.", callerName, publicInstance), didWarnStateUpdateForUnmountedComponent[warningKey] = !0); - } - function Component(props, context, updater) { - this.props = props; - this.context = context; - this.refs = emptyObject; - this.updater = updater || ReactNoopUpdateQueue; - } - function ComponentDummy() {} - function PureComponent(props, context, updater) { - this.props = props; - this.context = context; - this.refs = emptyObject; - this.updater = updater || ReactNoopUpdateQueue; - } - function noop() {} - function testStringCoercion(value) { - return "" + value; - } - function checkKeyStringCoercion(value) { - try { - testStringCoercion(value); - var JSCompiler_inline_result = !1; - } catch (e) { - JSCompiler_inline_result = !0; - } - if (JSCompiler_inline_result) { - JSCompiler_inline_result = console; - var JSCompiler_temp_const = JSCompiler_inline_result.error; - var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object"; - JSCompiler_temp_const.call(JSCompiler_inline_result, "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", JSCompiler_inline_result$jscomp$0); - return testStringCoercion(value); - } - } - function getComponentNameFromType(type) { - if (null == type) return null; - if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null; - if ("string" === typeof type) return type; - switch(type){ - case REACT_FRAGMENT_TYPE: - return "Fragment"; - case REACT_PROFILER_TYPE: - return "Profiler"; - case REACT_STRICT_MODE_TYPE: - return "StrictMode"; - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_ACTIVITY_TYPE: - return "Activity"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof){ - case REACT_PORTAL_TYPE: - return "Portal"; - case REACT_CONTEXT_TYPE: - return type.displayName || "Context"; - case REACT_CONSUMER_TYPE: - return (type._context.displayName || "Context") + ".Consumer"; - case REACT_FORWARD_REF_TYPE: - var innerType = type.render; - type = type.displayName; - type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"); - return type; - case REACT_MEMO_TYPE: - return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo"; - case REACT_LAZY_TYPE: - innerType = type._payload; - type = type._init; - try { - return getComponentNameFromType(type(innerType)); - } catch (x) {} - } - return null; - } - function getTaskName(type) { - if (type === REACT_FRAGMENT_TYPE) return "<>"; - if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE) return "<...>"; - try { - var name = getComponentNameFromType(type); - return name ? "<" + name + ">" : "<...>"; - } catch (x) { - return "<...>"; - } - } - function getOwner() { - var dispatcher = ReactSharedInternals.A; - return null === dispatcher ? null : dispatcher.getOwner(); - } - function UnknownOwner() { - return Error("react-stack-top-frame"); - } - function hasValidKey(config) { - if (hasOwnProperty.call(config, "key")) { - var getter = Object.getOwnPropertyDescriptor(config, "key").get; - if (getter && getter.isReactWarning) return !1; - } - return void 0 !== config.key; - } - function defineKeyPropWarningGetter(props, displayName) { - function warnAboutAccessingKey() { - specialPropKeyWarningShown || (specialPropKeyWarningShown = !0, console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", displayName)); - } - warnAboutAccessingKey.isReactWarning = !0; - Object.defineProperty(props, "key", { - get: warnAboutAccessingKey, - configurable: !0 - }); - } - function elementRefGetterWithDeprecationWarning() { - var componentName = getComponentNameFromType(this.type); - didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = !0, console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")); - componentName = this.props.ref; - return void 0 !== componentName ? componentName : null; - } - function ReactElement(type, key, props, owner, debugStack, debugTask) { - var refProp = props.ref; - type = { - $$typeof: REACT_ELEMENT_TYPE, - type: type, - key: key, - props: props, - _owner: owner - }; - null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", { - enumerable: !1, - get: elementRefGetterWithDeprecationWarning - }) : Object.defineProperty(type, "ref", { - enumerable: !1, - value: null - }); - type._store = {}; - Object.defineProperty(type._store, "validated", { - configurable: !1, - enumerable: !1, - writable: !0, - value: 0 - }); - Object.defineProperty(type, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: null - }); - Object.defineProperty(type, "_debugStack", { - configurable: !1, - enumerable: !1, - writable: !0, - value: debugStack - }); - Object.defineProperty(type, "_debugTask", { - configurable: !1, - enumerable: !1, - writable: !0, - value: debugTask - }); - Object.freeze && (Object.freeze(type.props), Object.freeze(type)); - return type; - } - function cloneAndReplaceKey(oldElement, newKey) { - newKey = ReactElement(oldElement.type, newKey, oldElement.props, oldElement._owner, oldElement._debugStack, oldElement._debugTask); - oldElement._store && (newKey._store.validated = oldElement._store.validated); - return newKey; - } - function validateChildKeys(node) { - isValidElement(node) ? node._store && (node._store.validated = 1) : "object" === typeof node && null !== node && node.$$typeof === REACT_LAZY_TYPE && ("fulfilled" === node._payload.status ? isValidElement(node._payload.value) && node._payload.value._store && (node._payload.value._store.validated = 1) : node._store && (node._store.validated = 1)); - } - function isValidElement(object) { - return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE; - } - function escape(key) { - var escaperLookup = { - "=": "=0", - ":": "=2" - }; - return "$" + key.replace(/[=:]/g, function(match) { - return escaperLookup[match]; - }); - } - function getElementKey(element, index) { - return "object" === typeof element && null !== element && null != element.key ? (checkKeyStringCoercion(element.key), escape("" + element.key)) : index.toString(36); - } - function resolveThenable(thenable) { - switch(thenable.status){ - case "fulfilled": - return thenable.value; - case "rejected": - throw thenable.reason; - default: - switch("string" === typeof thenable.status ? thenable.then(noop, noop) : (thenable.status = "pending", thenable.then(function(fulfilledValue) { - "pending" === thenable.status && (thenable.status = "fulfilled", thenable.value = fulfilledValue); - }, function(error) { - "pending" === thenable.status && (thenable.status = "rejected", thenable.reason = error); - })), thenable.status){ - case "fulfilled": - return thenable.value; - case "rejected": - throw thenable.reason; - } - } - throw thenable; - } - function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) { - var type = typeof children; - if ("undefined" === type || "boolean" === type) children = null; - var invokeCallback = !1; - if (null === children) invokeCallback = !0; - else switch(type){ - case "bigint": - case "string": - case "number": - invokeCallback = !0; - break; - case "object": - switch(children.$$typeof){ - case REACT_ELEMENT_TYPE: - case REACT_PORTAL_TYPE: - invokeCallback = !0; - break; - case REACT_LAZY_TYPE: - return invokeCallback = children._init, mapIntoArray(invokeCallback(children._payload), array, escapedPrefix, nameSoFar, callback); - } - } - if (invokeCallback) { - invokeCallback = children; - callback = callback(invokeCallback); - var childKey = "" === nameSoFar ? "." + getElementKey(invokeCallback, 0) : nameSoFar; - isArrayImpl(callback) ? (escapedPrefix = "", null != childKey && (escapedPrefix = childKey.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), mapIntoArray(callback, array, escapedPrefix, "", function(c) { - return c; - })) : null != callback && (isValidElement(callback) && (null != callback.key && (invokeCallback && invokeCallback.key === callback.key || checkKeyStringCoercion(callback.key)), escapedPrefix = cloneAndReplaceKey(callback, escapedPrefix + (null == callback.key || invokeCallback && invokeCallback.key === callback.key ? "" : ("" + callback.key).replace(userProvidedKeyEscapeRegex, "$&/") + "/") + childKey), "" !== nameSoFar && null != invokeCallback && isValidElement(invokeCallback) && null == invokeCallback.key && invokeCallback._store && !invokeCallback._store.validated && (escapedPrefix._store.validated = 2), callback = escapedPrefix), array.push(callback)); - return 1; - } - invokeCallback = 0; - childKey = "" === nameSoFar ? "." : nameSoFar + ":"; - if (isArrayImpl(children)) for(var i = 0; i < children.length; i++)nameSoFar = children[i], type = childKey + getElementKey(nameSoFar, i), invokeCallback += mapIntoArray(nameSoFar, array, escapedPrefix, type, callback); - else if (i = getIteratorFn(children), "function" === typeof i) for(i === children.entries && (didWarnAboutMaps || console.warn("Using Maps as children is not supported. Use an array of keyed ReactElements instead."), didWarnAboutMaps = !0), children = i.call(children), i = 0; !(nameSoFar = children.next()).done;)nameSoFar = nameSoFar.value, type = childKey + getElementKey(nameSoFar, i++), invokeCallback += mapIntoArray(nameSoFar, array, escapedPrefix, type, callback); - else if ("object" === type) { - if ("function" === typeof children.then) return mapIntoArray(resolveThenable(children), array, escapedPrefix, nameSoFar, callback); - array = String(children); - throw Error("Objects are not valid as a React child (found: " + ("[object Object]" === array ? "object with keys {" + Object.keys(children).join(", ") + "}" : array) + "). If you meant to render a collection of children, use an array instead."); - } - return invokeCallback; - } - function mapChildren(children, func, context) { - if (null == children) return children; - var result = [], count = 0; - mapIntoArray(children, result, "", "", function(child) { - return func.call(context, child, count++); - }); - return result; - } - function lazyInitializer(payload) { - if (-1 === payload._status) { - var resolveDebugValue = null, rejectDebugValue = null, ioInfo = payload._ioInfo; - null != ioInfo && (ioInfo.start = ioInfo.end = performance.now(), ioInfo.value = new Promise(function(resolve, reject) { - resolveDebugValue = resolve; - rejectDebugValue = reject; - })); - ioInfo = payload._result; - var thenable = ioInfo(); - thenable.then(function(moduleObject) { - if (0 === payload._status || -1 === payload._status) { - payload._status = 1; - payload._result = moduleObject; - var _ioInfo = payload._ioInfo; - if (null != _ioInfo) { - _ioInfo.end = performance.now(); - var debugValue = null == moduleObject ? void 0 : moduleObject.default; - resolveDebugValue(debugValue); - _ioInfo.value.status = "fulfilled"; - _ioInfo.value.value = debugValue; - } - void 0 === thenable.status && (thenable.status = "fulfilled", thenable.value = moduleObject); - } - }, function(error) { - if (0 === payload._status || -1 === payload._status) { - payload._status = 2; - payload._result = error; - var _ioInfo2 = payload._ioInfo; - null != _ioInfo2 && (_ioInfo2.end = performance.now(), _ioInfo2.value.then(noop, noop), rejectDebugValue(error), _ioInfo2.value.status = "rejected", _ioInfo2.value.reason = error); - void 0 === thenable.status && (thenable.status = "rejected", thenable.reason = error); - } - }); - ioInfo = payload._ioInfo; - if (null != ioInfo) { - var displayName = thenable.displayName; - "string" === typeof displayName && (ioInfo.name = displayName); - } - -1 === payload._status && (payload._status = 0, payload._result = thenable); - } - if (1 === payload._status) return ioInfo = payload._result, void 0 === ioInfo && console.error("lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?", ioInfo), "default" in ioInfo || console.error("lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))", ioInfo), ioInfo.default; - throw payload._result; - } - function resolveDispatcher() { - var dispatcher = ReactSharedInternals.H; - null === dispatcher && console.error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."); - return dispatcher; - } - function releaseAsyncTransition() { - ReactSharedInternals.asyncTransitions--; - } - function startTransition(scope) { - var prevTransition = ReactSharedInternals.T, currentTransition = {}; - currentTransition.types = null !== prevTransition ? prevTransition.types : null; - currentTransition._updatedFibers = new Set(); - ReactSharedInternals.T = currentTransition; - try { - var returnValue = scope(), onStartTransitionFinish = ReactSharedInternals.S; - null !== onStartTransitionFinish && onStartTransitionFinish(currentTransition, returnValue); - "object" === typeof returnValue && null !== returnValue && "function" === typeof returnValue.then && (ReactSharedInternals.asyncTransitions++, returnValue.then(releaseAsyncTransition, releaseAsyncTransition), returnValue.then(noop, reportGlobalError)); - } catch (error) { - reportGlobalError(error); - } finally{ - null === prevTransition && currentTransition._updatedFibers && (scope = currentTransition._updatedFibers.size, currentTransition._updatedFibers.clear(), 10 < scope && console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.")), null !== prevTransition && null !== currentTransition.types && (null !== prevTransition.types && prevTransition.types !== currentTransition.types && console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."), prevTransition.types = currentTransition.types), ReactSharedInternals.T = prevTransition; - } - } - function addTransitionType(type) { - var transition = ReactSharedInternals.T; - if (null !== transition) { - var transitionTypes = transition.types; - null === transitionTypes ? transition.types = [ - type - ] : -1 === transitionTypes.indexOf(type) && transitionTypes.push(type); - } else 0 === ReactSharedInternals.asyncTransitions && console.error("addTransitionType can only be called inside a `startTransition()` callback. It must be associated with a specific Transition."), startTransition(addTransitionType.bind(null, type)); - } - function enqueueTask(task) { - if (null === enqueueTaskImpl) try { - var requireString = ("require" + Math.random()).slice(0, 7); - enqueueTaskImpl = (module && module[requireString]).call(module, "timers").setImmediate; - } catch (_err) { - enqueueTaskImpl = function(callback) { - !1 === didWarnAboutMessageChannel && (didWarnAboutMessageChannel = !0, "undefined" === typeof MessageChannel && console.error("This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning.")); - var channel = new MessageChannel(); - channel.port1.onmessage = callback; - channel.port2.postMessage(void 0); - }; - } - return enqueueTaskImpl(task); - } - function aggregateErrors(errors) { - return 1 < errors.length && "function" === typeof AggregateError ? new AggregateError(errors) : errors[0]; - } - function popActScope(prevActQueue, prevActScopeDepth) { - prevActScopeDepth !== actScopeDepth - 1 && console.error("You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "); - actScopeDepth = prevActScopeDepth; - } - function recursivelyFlushAsyncActWork(returnValue, resolve, reject) { - var queue = ReactSharedInternals.actQueue; - if (null !== queue) if (0 !== queue.length) try { - flushActQueue(queue); - enqueueTask(function() { - return recursivelyFlushAsyncActWork(returnValue, resolve, reject); - }); - return; - } catch (error) { - ReactSharedInternals.thrownErrors.push(error); - } - else ReactSharedInternals.actQueue = null; - 0 < ReactSharedInternals.thrownErrors.length ? (queue = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, reject(queue)) : resolve(returnValue); - } - function flushActQueue(queue) { - if (!isFlushing) { - isFlushing = !0; - var i = 0; - try { - for(; i < queue.length; i++){ - var callback = queue[i]; - do { - ReactSharedInternals.didUsePromise = !1; - var continuation = callback(!1); - if (null !== continuation) { - if (ReactSharedInternals.didUsePromise) { - queue[i] = callback; - queue.splice(0, i); - return; - } - callback = continuation; - } else break; - }while (1) - } - queue.length = 0; - } catch (error) { - queue.splice(0, i + 1), ReactSharedInternals.thrownErrors.push(error); - } finally{ - isFlushing = !1; - } - } - } - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()); - var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator, didWarnStateUpdateForUnmountedComponent = {}, ReactNoopUpdateQueue = { - isMounted: function() { - return !1; - }, - enqueueForceUpdate: function(publicInstance) { - warnNoop(publicInstance, "forceUpdate"); - }, - enqueueReplaceState: function(publicInstance) { - warnNoop(publicInstance, "replaceState"); - }, - enqueueSetState: function(publicInstance) { - warnNoop(publicInstance, "setState"); - } - }, assign = Object.assign, emptyObject = {}; - Object.freeze(emptyObject); - Component.prototype.isReactComponent = {}; - Component.prototype.setState = function(partialState, callback) { - if ("object" !== typeof partialState && "function" !== typeof partialState && null != partialState) throw Error("takes an object of state variables to update or a function which returns an object of state variables."); - this.updater.enqueueSetState(this, partialState, callback, "setState"); - }; - Component.prototype.forceUpdate = function(callback) { - this.updater.enqueueForceUpdate(this, callback, "forceUpdate"); - }; - var deprecatedAPIs = { - isMounted: [ - "isMounted", - "Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks." - ], - replaceState: [ - "replaceState", - "Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)." - ] - }; - for(fnName in deprecatedAPIs)deprecatedAPIs.hasOwnProperty(fnName) && defineDeprecationWarning(fnName, deprecatedAPIs[fnName]); - ComponentDummy.prototype = Component.prototype; - deprecatedAPIs = PureComponent.prototype = new ComponentDummy(); - deprecatedAPIs.constructor = PureComponent; - assign(deprecatedAPIs, Component.prototype); - deprecatedAPIs.isPureReactComponent = !0; - var isArrayImpl = Array.isArray, REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = { - H: null, - A: null, - T: null, - S: null, - actQueue: null, - asyncTransitions: 0, - isBatchingLegacy: !1, - didScheduleLegacyUpdate: !1, - didUsePromise: !1, - thrownErrors: [], - getCurrentStack: null, - recentlyCreatedOwnerStacks: 0 - }, hasOwnProperty = Object.prototype.hasOwnProperty, createTask = console.createTask ? console.createTask : function() { - return null; - }; - deprecatedAPIs = { - react_stack_bottom_frame: function(callStackForError) { - return callStackForError(); - } - }; - var specialPropKeyWarningShown, didWarnAboutOldJSXRuntime; - var didWarnAboutElementRef = {}; - var unknownOwnerDebugStack = deprecatedAPIs.react_stack_bottom_frame.bind(deprecatedAPIs, UnknownOwner)(); - var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner)); - var didWarnAboutMaps = !1, userProvidedKeyEscapeRegex = /\/+/g, reportGlobalError = "function" === typeof reportError ? reportError : function(error) { - if ("object" === typeof window && "function" === typeof window.ErrorEvent) { - var event = new window.ErrorEvent("error", { - bubbles: !0, - cancelable: !0, - message: "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error), - error: error - }); - if (!window.dispatchEvent(event)) return; - } else if ("object" === typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"] && "function" === typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"].emit) { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"].emit("uncaughtException", error); - return; - } - console.error(error); - }, didWarnAboutMessageChannel = !1, enqueueTaskImpl = null, actScopeDepth = 0, didWarnNoAwaitAct = !1, isFlushing = !1, queueSeveralMicrotasks = "function" === typeof queueMicrotask ? function(callback) { - queueMicrotask(function() { - return queueMicrotask(callback); - }); - } : enqueueTask; - deprecatedAPIs = Object.freeze({ - __proto__: null, - c: function(size) { - return resolveDispatcher().useMemoCache(size); - } - }); - var fnName = { - map: mapChildren, - forEach: function(children, forEachFunc, forEachContext) { - mapChildren(children, function() { - forEachFunc.apply(this, arguments); - }, forEachContext); - }, - count: function(children) { - var n = 0; - mapChildren(children, function() { - n++; - }); - return n; - }, - toArray: function(children) { - return mapChildren(children, function(child) { - return child; - }) || []; - }, - only: function(children) { - if (!isValidElement(children)) throw Error("React.Children.only expected to receive a single React element child."); - return children; - } - }; - exports.Activity = REACT_ACTIVITY_TYPE; - exports.Children = fnName; - exports.Component = Component; - exports.Fragment = REACT_FRAGMENT_TYPE; - exports.Profiler = REACT_PROFILER_TYPE; - exports.PureComponent = PureComponent; - exports.StrictMode = REACT_STRICT_MODE_TYPE; - exports.Suspense = REACT_SUSPENSE_TYPE; - exports.ViewTransition = REACT_VIEW_TRANSITION_TYPE; - exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactSharedInternals; - exports.__COMPILER_RUNTIME = deprecatedAPIs; - exports.act = function(callback) { - var prevActQueue = ReactSharedInternals.actQueue, prevActScopeDepth = actScopeDepth; - actScopeDepth++; - var queue = ReactSharedInternals.actQueue = null !== prevActQueue ? prevActQueue : [], didAwaitActCall = !1; - try { - var result = callback(); - } catch (error) { - ReactSharedInternals.thrownErrors.push(error); - } - if (0 < ReactSharedInternals.thrownErrors.length) throw popActScope(prevActQueue, prevActScopeDepth), callback = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, callback; - if (null !== result && "object" === typeof result && "function" === typeof result.then) { - var thenable = result; - queueSeveralMicrotasks(function() { - didAwaitActCall || didWarnNoAwaitAct || (didWarnNoAwaitAct = !0, console.error("You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);")); - }); - return { - then: function(resolve, reject) { - didAwaitActCall = !0; - thenable.then(function(returnValue) { - popActScope(prevActQueue, prevActScopeDepth); - if (0 === prevActScopeDepth) { - try { - flushActQueue(queue), enqueueTask(function() { - return recursivelyFlushAsyncActWork(returnValue, resolve, reject); - }); - } catch (error$0) { - ReactSharedInternals.thrownErrors.push(error$0); - } - if (0 < ReactSharedInternals.thrownErrors.length) { - var _thrownError = aggregateErrors(ReactSharedInternals.thrownErrors); - ReactSharedInternals.thrownErrors.length = 0; - reject(_thrownError); - } - } else resolve(returnValue); - }, function(error) { - popActScope(prevActQueue, prevActScopeDepth); - 0 < ReactSharedInternals.thrownErrors.length ? (error = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, reject(error)) : reject(error); - }); - } - }; - } - var returnValue$jscomp$0 = result; - popActScope(prevActQueue, prevActScopeDepth); - 0 === prevActScopeDepth && (flushActQueue(queue), 0 !== queue.length && queueSeveralMicrotasks(function() { - didAwaitActCall || didWarnNoAwaitAct || (didWarnNoAwaitAct = !0, console.error("A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)")); - }), ReactSharedInternals.actQueue = null); - if (0 < ReactSharedInternals.thrownErrors.length) throw callback = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, callback; - return { - then: function(resolve, reject) { - didAwaitActCall = !0; - 0 === prevActScopeDepth ? (ReactSharedInternals.actQueue = queue, enqueueTask(function() { - return recursivelyFlushAsyncActWork(returnValue$jscomp$0, resolve, reject); - })) : resolve(returnValue$jscomp$0); - } - }; - }; - exports.addTransitionType = addTransitionType; - exports.cache = function(fn) { - return function() { - return fn.apply(null, arguments); - }; - }; - exports.cacheSignal = function() { - return null; - }; - exports.captureOwnerStack = function() { - var getCurrentStack = ReactSharedInternals.getCurrentStack; - return null === getCurrentStack ? null : getCurrentStack(); - }; - exports.cloneElement = function(element, config, children) { - if (null === element || void 0 === element) throw Error("The argument must be a React element, but you passed " + element + "."); - var props = assign({}, element.props), key = element.key, owner = element._owner; - if (null != config) { - var JSCompiler_inline_result; - a: { - if (hasOwnProperty.call(config, "ref") && (JSCompiler_inline_result = Object.getOwnPropertyDescriptor(config, "ref").get) && JSCompiler_inline_result.isReactWarning) { - JSCompiler_inline_result = !1; - break a; - } - JSCompiler_inline_result = void 0 !== config.ref; - } - JSCompiler_inline_result && (owner = getOwner()); - hasValidKey(config) && (checkKeyStringCoercion(config.key), key = "" + config.key); - for(propName in config)!hasOwnProperty.call(config, propName) || "key" === propName || "__self" === propName || "__source" === propName || "ref" === propName && void 0 === config.ref || (props[propName] = config[propName]); - } - var propName = arguments.length - 2; - if (1 === propName) props.children = children; - else if (1 < propName) { - JSCompiler_inline_result = Array(propName); - for(var i = 0; i < propName; i++)JSCompiler_inline_result[i] = arguments[i + 2]; - props.children = JSCompiler_inline_result; - } - props = ReactElement(element.type, key, props, owner, element._debugStack, element._debugTask); - for(key = 2; key < arguments.length; key++)validateChildKeys(arguments[key]); - return props; - }; - exports.createContext = function(defaultValue) { - defaultValue = { - $$typeof: REACT_CONTEXT_TYPE, - _currentValue: defaultValue, - _currentValue2: defaultValue, - _threadCount: 0, - Provider: null, - Consumer: null - }; - defaultValue.Provider = defaultValue; - defaultValue.Consumer = { - $$typeof: REACT_CONSUMER_TYPE, - _context: defaultValue - }; - defaultValue._currentRenderer = null; - defaultValue._currentRenderer2 = null; - return defaultValue; - }; - exports.createElement = function(type, config, children) { - for(var i = 2; i < arguments.length; i++)validateChildKeys(arguments[i]); - var propName; - i = {}; - var key = null; - if (null != config) for(propName in didWarnAboutOldJSXRuntime || !("__self" in config) || "key" in config || (didWarnAboutOldJSXRuntime = !0, console.warn("Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform")), hasValidKey(config) && (checkKeyStringCoercion(config.key), key = "" + config.key), config)hasOwnProperty.call(config, propName) && "key" !== propName && "__self" !== propName && "__source" !== propName && (i[propName] = config[propName]); - var childrenLength = arguments.length - 2; - if (1 === childrenLength) i.children = children; - else if (1 < childrenLength) { - for(var childArray = Array(childrenLength), _i = 0; _i < childrenLength; _i++)childArray[_i] = arguments[_i + 2]; - Object.freeze && Object.freeze(childArray); - i.children = childArray; - } - if (type && type.defaultProps) for(propName in childrenLength = type.defaultProps, childrenLength)void 0 === i[propName] && (i[propName] = childrenLength[propName]); - key && defineKeyPropWarningGetter(i, "function" === typeof type ? type.displayName || type.name || "Unknown" : type); - (propName = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++) ? (childArray = Error.stackTraceLimit, Error.stackTraceLimit = 10, childrenLength = Error("react-stack-top-frame"), Error.stackTraceLimit = childArray) : childrenLength = unknownOwnerDebugStack; - return ReactElement(type, key, i, getOwner(), childrenLength, propName ? createTask(getTaskName(type)) : unknownOwnerDebugTask); - }; - exports.createRef = function() { - var refObject = { - current: null - }; - Object.seal(refObject); - return refObject; - }; - exports.forwardRef = function(render) { - null != render && render.$$typeof === REACT_MEMO_TYPE ? console.error("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).") : "function" !== typeof render ? console.error("forwardRef requires a render function but was given %s.", null === render ? "null" : typeof render) : 0 !== render.length && 2 !== render.length && console.error("forwardRef render functions accept exactly two parameters: props and ref. %s", 1 === render.length ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined."); - null != render && null != render.defaultProps && console.error("forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?"); - var elementType = { - $$typeof: REACT_FORWARD_REF_TYPE, - render: render - }, ownName; - Object.defineProperty(elementType, "displayName", { - enumerable: !1, - configurable: !0, - get: function() { - return ownName; - }, - set: function(name) { - ownName = name; - render.name || render.displayName || (Object.defineProperty(render, "name", { - value: name - }), render.displayName = name); - } - }); - return elementType; - }; - exports.isValidElement = isValidElement; - exports.lazy = function(ctor) { - ctor = { - _status: -1, - _result: ctor - }; - var lazyType = { - $$typeof: REACT_LAZY_TYPE, - _payload: ctor, - _init: lazyInitializer - }, ioInfo = { - name: "lazy", - start: -1, - end: -1, - value: null, - owner: null, - debugStack: Error("react-stack-top-frame"), - debugTask: console.createTask ? console.createTask("lazy()") : null - }; - ctor._ioInfo = ioInfo; - lazyType._debugInfo = [ - { - awaited: ioInfo - } - ]; - return lazyType; - }; - exports.memo = function(type, compare) { - null == type && console.error("memo: The first argument must be a component. Instead received: %s", null === type ? "null" : typeof type); - compare = { - $$typeof: REACT_MEMO_TYPE, - type: type, - compare: void 0 === compare ? null : compare - }; - var ownName; - Object.defineProperty(compare, "displayName", { - enumerable: !1, - configurable: !0, - get: function() { - return ownName; - }, - set: function(name) { - ownName = name; - type.name || type.displayName || (Object.defineProperty(type, "name", { - value: name - }), type.displayName = name); - } - }); - return compare; - }; - exports.startTransition = startTransition; - exports.unstable_useCacheRefresh = function() { - return resolveDispatcher().useCacheRefresh(); - }; - exports.use = function(usable) { - return resolveDispatcher().use(usable); - }; - exports.useActionState = function(action, initialState, permalink) { - return resolveDispatcher().useActionState(action, initialState, permalink); - }; - exports.useCallback = function(callback, deps) { - return resolveDispatcher().useCallback(callback, deps); - }; - exports.useContext = function(Context) { - var dispatcher = resolveDispatcher(); - Context.$$typeof === REACT_CONSUMER_TYPE && console.error("Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?"); - return dispatcher.useContext(Context); - }; - exports.useDebugValue = function(value, formatterFn) { - return resolveDispatcher().useDebugValue(value, formatterFn); - }; - exports.useDeferredValue = function(value, initialValue) { - return resolveDispatcher().useDeferredValue(value, initialValue); - }; - exports.useEffect = function(create, deps) { - null == create && console.warn("React Hook useEffect requires an effect callback. Did you forget to pass a callback to the hook?"); - return resolveDispatcher().useEffect(create, deps); - }; - exports.useEffectEvent = function(callback) { - return resolveDispatcher().useEffectEvent(callback); - }; - exports.useId = function() { - return resolveDispatcher().useId(); - }; - exports.useImperativeHandle = function(ref, create, deps) { - return resolveDispatcher().useImperativeHandle(ref, create, deps); - }; - exports.useInsertionEffect = function(create, deps) { - null == create && console.warn("React Hook useInsertionEffect requires an effect callback. Did you forget to pass a callback to the hook?"); - return resolveDispatcher().useInsertionEffect(create, deps); - }; - exports.useLayoutEffect = function(create, deps) { - null == create && console.warn("React Hook useLayoutEffect requires an effect callback. Did you forget to pass a callback to the hook?"); - return resolveDispatcher().useLayoutEffect(create, deps); - }; - exports.useMemo = function(create, deps) { - return resolveDispatcher().useMemo(create, deps); - }; - exports.useOptimistic = function(passthrough, reducer) { - return resolveDispatcher().useOptimistic(passthrough, reducer); - }; - exports.useReducer = function(reducer, initialArg, init) { - return resolveDispatcher().useReducer(reducer, initialArg, init); - }; - exports.useRef = function(initialValue) { - return resolveDispatcher().useRef(initialValue); - }; - exports.useState = function(initialState) { - return resolveDispatcher().useState(initialState); - }; - exports.useSyncExternalStore = function(subscribe, getSnapshot, getServerSnapshot) { - return resolveDispatcher().useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); - }; - exports.useTransition = function() { - return resolveDispatcher().useTransition(); - }; - exports.version = "19.3.0-canary-f93b9fd4-20251217"; - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error()); -}(); -}), -"[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use strict'; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/cjs/react.development.js [app-client] (ecmascript)"); -} -}), -"[project]/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * @license React - * react-jsx-runtime.development.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ "use strict"; -"production" !== ("TURBOPACK compile-time value", "development") && function() { - function getComponentNameFromType(type) { - if (null == type) return null; - if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null; - if ("string" === typeof type) return type; - switch(type){ - case REACT_FRAGMENT_TYPE: - return "Fragment"; - case REACT_PROFILER_TYPE: - return "Profiler"; - case REACT_STRICT_MODE_TYPE: - return "StrictMode"; - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_ACTIVITY_TYPE: - return "Activity"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof){ - case REACT_PORTAL_TYPE: - return "Portal"; - case REACT_CONTEXT_TYPE: - return type.displayName || "Context"; - case REACT_CONSUMER_TYPE: - return (type._context.displayName || "Context") + ".Consumer"; - case REACT_FORWARD_REF_TYPE: - var innerType = type.render; - type = type.displayName; - type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"); - return type; - case REACT_MEMO_TYPE: - return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo"; - case REACT_LAZY_TYPE: - innerType = type._payload; - type = type._init; - try { - return getComponentNameFromType(type(innerType)); - } catch (x) {} - } - return null; - } - function testStringCoercion(value) { - return "" + value; - } - function checkKeyStringCoercion(value) { - try { - testStringCoercion(value); - var JSCompiler_inline_result = !1; - } catch (e) { - JSCompiler_inline_result = !0; - } - if (JSCompiler_inline_result) { - JSCompiler_inline_result = console; - var JSCompiler_temp_const = JSCompiler_inline_result.error; - var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object"; - JSCompiler_temp_const.call(JSCompiler_inline_result, "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", JSCompiler_inline_result$jscomp$0); - return testStringCoercion(value); - } - } - function getTaskName(type) { - if (type === REACT_FRAGMENT_TYPE) return "<>"; - if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE) return "<...>"; - try { - var name = getComponentNameFromType(type); - return name ? "<" + name + ">" : "<...>"; - } catch (x) { - return "<...>"; - } - } - function getOwner() { - var dispatcher = ReactSharedInternals.A; - return null === dispatcher ? null : dispatcher.getOwner(); - } - function UnknownOwner() { - return Error("react-stack-top-frame"); - } - function hasValidKey(config) { - if (hasOwnProperty.call(config, "key")) { - var getter = Object.getOwnPropertyDescriptor(config, "key").get; - if (getter && getter.isReactWarning) return !1; - } - return void 0 !== config.key; - } - function defineKeyPropWarningGetter(props, displayName) { - function warnAboutAccessingKey() { - specialPropKeyWarningShown || (specialPropKeyWarningShown = !0, console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", displayName)); - } - warnAboutAccessingKey.isReactWarning = !0; - Object.defineProperty(props, "key", { - get: warnAboutAccessingKey, - configurable: !0 - }); - } - function elementRefGetterWithDeprecationWarning() { - var componentName = getComponentNameFromType(this.type); - didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = !0, console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")); - componentName = this.props.ref; - return void 0 !== componentName ? componentName : null; - } - function ReactElement(type, key, props, owner, debugStack, debugTask) { - var refProp = props.ref; - type = { - $$typeof: REACT_ELEMENT_TYPE, - type: type, - key: key, - props: props, - _owner: owner - }; - null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", { - enumerable: !1, - get: elementRefGetterWithDeprecationWarning - }) : Object.defineProperty(type, "ref", { - enumerable: !1, - value: null - }); - type._store = {}; - Object.defineProperty(type._store, "validated", { - configurable: !1, - enumerable: !1, - writable: !0, - value: 0 - }); - Object.defineProperty(type, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: null - }); - Object.defineProperty(type, "_debugStack", { - configurable: !1, - enumerable: !1, - writable: !0, - value: debugStack - }); - Object.defineProperty(type, "_debugTask", { - configurable: !1, - enumerable: !1, - writable: !0, - value: debugTask - }); - Object.freeze && (Object.freeze(type.props), Object.freeze(type)); - return type; - } - function jsxDEVImpl(type, config, maybeKey, isStaticChildren, debugStack, debugTask) { - var children = config.children; - if (void 0 !== children) if (isStaticChildren) if (isArrayImpl(children)) { - for(isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++)validateChildKeys(children[isStaticChildren]); - Object.freeze && Object.freeze(children); - } else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."); - else validateChildKeys(children); - if (hasOwnProperty.call(config, "key")) { - children = getComponentNameFromType(type); - var keys = Object.keys(config).filter(function(k) { - return "key" !== k; - }); - isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}"; - didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error('A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />', isStaticChildren, children, keys, children), didWarnAboutKeySpread[children + isStaticChildren] = !0); - } - children = null; - void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey); - hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key); - if ("key" in config) { - maybeKey = {}; - for(var propName in config)"key" !== propName && (maybeKey[propName] = config[propName]); - } else maybeKey = config; - children && defineKeyPropWarningGetter(maybeKey, "function" === typeof type ? type.displayName || type.name || "Unknown" : type); - return ReactElement(type, children, maybeKey, getOwner(), debugStack, debugTask); - } - function validateChildKeys(node) { - isValidElement(node) ? node._store && (node._store.validated = 1) : "object" === typeof node && null !== node && node.$$typeof === REACT_LAZY_TYPE && ("fulfilled" === node._payload.status ? isValidElement(node._payload.value) && node._payload.value._store && (node._payload.value._store.validated = 1) : node._store && (node._store.validated = 1)); - } - function isValidElement(object) { - return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE; - } - var React = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() { - return null; - }; - React = { - react_stack_bottom_frame: function(callStackForError) { - return callStackForError(); - } - }; - var specialPropKeyWarningShown; - var didWarnAboutElementRef = {}; - var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(React, UnknownOwner)(); - var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner)); - var didWarnAboutKeySpread = {}; - exports.Fragment = REACT_FRAGMENT_TYPE; - exports.jsx = function(type, config, maybeKey) { - var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++; - if (trackActualOwner) { - var previousStackTraceLimit = Error.stackTraceLimit; - Error.stackTraceLimit = 10; - var debugStackDEV = Error("react-stack-top-frame"); - Error.stackTraceLimit = previousStackTraceLimit; - } else debugStackDEV = unknownOwnerDebugStack; - return jsxDEVImpl(type, config, maybeKey, !1, debugStackDEV, trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask); - }; - exports.jsxs = function(type, config, maybeKey) { - var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++; - if (trackActualOwner) { - var previousStackTraceLimit = Error.stackTraceLimit; - Error.stackTraceLimit = 10; - var debugStackDEV = Error("react-stack-top-frame"); - Error.stackTraceLimit = previousStackTraceLimit; - } else debugStackDEV = unknownOwnerDebugStack; - return jsxDEVImpl(type, config, maybeKey, !0, debugStackDEV, trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask); - }; -}(); -}), -"[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use strict'; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js [app-client] (ecmascript)"); -} -}), -"[project]/node_modules/next/dist/compiled/safe-stable-stringify/index.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(function() { - "use strict"; - var e = { - 879: function(e, t) { - const { hasOwnProperty: n } = Object.prototype; - const r = configure(); - r.configure = configure; - r.stringify = r; - r.default = r; - t.stringify = r; - t.configure = configure; - e.exports = r; - const i = /[\u0000-\u001f\u0022\u005c\ud800-\udfff]/; - function strEscape(e) { - if (e.length < 5e3 && !i.test(e)) { - return `"${e}"`; - } - return JSON.stringify(e); - } - function sort(e, t) { - if (e.length > 200 || t) { - return e.sort(t); - } - for(let t = 1; t < e.length; t++){ - const n = e[t]; - let r = t; - while(r !== 0 && e[r - 1] > n){ - e[r] = e[r - 1]; - r--; - } - e[r] = n; - } - return e; - } - const f = Object.getOwnPropertyDescriptor(Object.getPrototypeOf(Object.getPrototypeOf(new Int8Array)), Symbol.toStringTag).get; - function isTypedArrayWithEntries(e) { - return f.call(e) !== undefined && e.length !== 0; - } - function stringifyTypedArray(e, t, n) { - if (e.length < n) { - n = e.length; - } - const r = t === "," ? "" : " "; - let i = `"0":${r}${e[0]}`; - for(let f = 1; f < n; f++){ - i += `${t}"${f}":${r}${e[f]}`; - } - return i; - } - function getCircularValueOption(e) { - if (n.call(e, "circularValue")) { - const t = e.circularValue; - if (typeof t === "string") { - return `"${t}"`; - } - if (t == null) { - return t; - } - if (t === Error || t === TypeError) { - return { - toString () { - throw new TypeError("Converting circular structure to JSON"); - } - }; - } - throw new TypeError('The "circularValue" argument must be of type string or the value null or undefined'); - } - return '"[Circular]"'; - } - function getDeterministicOption(e) { - let t; - if (n.call(e, "deterministic")) { - t = e.deterministic; - if (typeof t !== "boolean" && typeof t !== "function") { - throw new TypeError('The "deterministic" argument must be of type boolean or comparator function'); - } - } - return t === undefined ? true : t; - } - function getBooleanOption(e, t) { - let r; - if (n.call(e, t)) { - r = e[t]; - if (typeof r !== "boolean") { - throw new TypeError(`The "${t}" argument must be of type boolean`); - } - } - return r === undefined ? true : r; - } - function getPositiveIntegerOption(e, t) { - let r; - if (n.call(e, t)) { - r = e[t]; - if (typeof r !== "number") { - throw new TypeError(`The "${t}" argument must be of type number`); - } - if (!Number.isInteger(r)) { - throw new TypeError(`The "${t}" argument must be an integer`); - } - if (r < 1) { - throw new RangeError(`The "${t}" argument must be >= 1`); - } - } - return r === undefined ? Infinity : r; - } - function getItemCount(e) { - if (e === 1) { - return "1 item"; - } - return `${e} items`; - } - function getUniqueReplacerSet(e) { - const t = new Set; - for (const n of e){ - if (typeof n === "string" || typeof n === "number") { - t.add(String(n)); - } - } - return t; - } - function getStrictOption(e) { - if (n.call(e, "strict")) { - const t = e.strict; - if (typeof t !== "boolean") { - throw new TypeError('The "strict" argument must be of type boolean'); - } - if (t) { - return (e)=>{ - let t = `Object can not safely be stringified. Received type ${typeof e}`; - if (typeof e !== "function") t += ` (${e.toString()})`; - throw new Error(t); - }; - } - } - } - function configure(e) { - e = { - ...e - }; - const t = getStrictOption(e); - if (t) { - if (e.bigint === undefined) { - e.bigint = false; - } - if (!("circularValue" in e)) { - e.circularValue = Error; - } - } - const n = getCircularValueOption(e); - const r = getBooleanOption(e, "bigint"); - const i = getDeterministicOption(e); - const f = typeof i === "function" ? i : undefined; - const u = getPositiveIntegerOption(e, "maximumDepth"); - const o = getPositiveIntegerOption(e, "maximumBreadth"); - function stringifyFnReplacer(e, s, l, c, a, g) { - let p = s[e]; - if (typeof p === "object" && p !== null && typeof p.toJSON === "function") { - p = p.toJSON(e); - } - p = c.call(s, e, p); - switch(typeof p){ - case "string": - return strEscape(p); - case "object": - { - if (p === null) { - return "null"; - } - if (l.indexOf(p) !== -1) { - return n; - } - let e = ""; - let t = ","; - const r = g; - if (Array.isArray(p)) { - if (p.length === 0) { - return "[]"; - } - if (u < l.length + 1) { - return '"[Array]"'; - } - l.push(p); - if (a !== "") { - g += a; - e += `\n${g}`; - t = `,\n${g}`; - } - const n = Math.min(p.length, o); - let i = 0; - for(; i < n - 1; i++){ - const n = stringifyFnReplacer(String(i), p, l, c, a, g); - e += n !== undefined ? n : "null"; - e += t; - } - const f = stringifyFnReplacer(String(i), p, l, c, a, g); - e += f !== undefined ? f : "null"; - if (p.length - 1 > o) { - const n = p.length - o - 1; - e += `${t}"... ${getItemCount(n)} not stringified"`; - } - if (a !== "") { - e += `\n${r}`; - } - l.pop(); - return `[${e}]`; - } - let s = Object.keys(p); - const y = s.length; - if (y === 0) { - return "{}"; - } - if (u < l.length + 1) { - return '"[Object]"'; - } - let d = ""; - let h = ""; - if (a !== "") { - g += a; - t = `,\n${g}`; - d = " "; - } - const $ = Math.min(y, o); - if (i && !isTypedArrayWithEntries(p)) { - s = sort(s, f); - } - l.push(p); - for(let n = 0; n < $; n++){ - const r = s[n]; - const i = stringifyFnReplacer(r, p, l, c, a, g); - if (i !== undefined) { - e += `${h}${strEscape(r)}:${d}${i}`; - h = t; - } - } - if (y > o) { - const n = y - o; - e += `${h}"...":${d}"${getItemCount(n)} not stringified"`; - h = t; - } - if (a !== "" && h.length > 1) { - e = `\n${g}${e}\n${r}`; - } - l.pop(); - return `{${e}}`; - } - case "number": - return isFinite(p) ? String(p) : t ? t(p) : "null"; - case "boolean": - return p === true ? "true" : "false"; - case "undefined": - return undefined; - case "bigint": - if (r) { - return String(p); - } - default: - return t ? t(p) : undefined; - } - } - function stringifyArrayReplacer(e, i, f, s, l, c) { - if (typeof i === "object" && i !== null && typeof i.toJSON === "function") { - i = i.toJSON(e); - } - switch(typeof i){ - case "string": - return strEscape(i); - case "object": - { - if (i === null) { - return "null"; - } - if (f.indexOf(i) !== -1) { - return n; - } - const e = c; - let t = ""; - let r = ","; - if (Array.isArray(i)) { - if (i.length === 0) { - return "[]"; - } - if (u < f.length + 1) { - return '"[Array]"'; - } - f.push(i); - if (l !== "") { - c += l; - t += `\n${c}`; - r = `,\n${c}`; - } - const n = Math.min(i.length, o); - let a = 0; - for(; a < n - 1; a++){ - const e = stringifyArrayReplacer(String(a), i[a], f, s, l, c); - t += e !== undefined ? e : "null"; - t += r; - } - const g = stringifyArrayReplacer(String(a), i[a], f, s, l, c); - t += g !== undefined ? g : "null"; - if (i.length - 1 > o) { - const e = i.length - o - 1; - t += `${r}"... ${getItemCount(e)} not stringified"`; - } - if (l !== "") { - t += `\n${e}`; - } - f.pop(); - return `[${t}]`; - } - f.push(i); - let a = ""; - if (l !== "") { - c += l; - r = `,\n${c}`; - a = " "; - } - let g = ""; - for (const e of s){ - const n = stringifyArrayReplacer(e, i[e], f, s, l, c); - if (n !== undefined) { - t += `${g}${strEscape(e)}:${a}${n}`; - g = r; - } - } - if (l !== "" && g.length > 1) { - t = `\n${c}${t}\n${e}`; - } - f.pop(); - return `{${t}}`; - } - case "number": - return isFinite(i) ? String(i) : t ? t(i) : "null"; - case "boolean": - return i === true ? "true" : "false"; - case "undefined": - return undefined; - case "bigint": - if (r) { - return String(i); - } - default: - return t ? t(i) : undefined; - } - } - function stringifyIndent(e, s, l, c, a) { - switch(typeof s){ - case "string": - return strEscape(s); - case "object": - { - if (s === null) { - return "null"; - } - if (typeof s.toJSON === "function") { - s = s.toJSON(e); - if (typeof s !== "object") { - return stringifyIndent(e, s, l, c, a); - } - if (s === null) { - return "null"; - } - } - if (l.indexOf(s) !== -1) { - return n; - } - const t = a; - if (Array.isArray(s)) { - if (s.length === 0) { - return "[]"; - } - if (u < l.length + 1) { - return '"[Array]"'; - } - l.push(s); - a += c; - let e = `\n${a}`; - const n = `,\n${a}`; - const r = Math.min(s.length, o); - let i = 0; - for(; i < r - 1; i++){ - const t = stringifyIndent(String(i), s[i], l, c, a); - e += t !== undefined ? t : "null"; - e += n; - } - const f = stringifyIndent(String(i), s[i], l, c, a); - e += f !== undefined ? f : "null"; - if (s.length - 1 > o) { - const t = s.length - o - 1; - e += `${n}"... ${getItemCount(t)} not stringified"`; - } - e += `\n${t}`; - l.pop(); - return `[${e}]`; - } - let r = Object.keys(s); - const g = r.length; - if (g === 0) { - return "{}"; - } - if (u < l.length + 1) { - return '"[Object]"'; - } - a += c; - const p = `,\n${a}`; - let y = ""; - let d = ""; - let h = Math.min(g, o); - if (isTypedArrayWithEntries(s)) { - y += stringifyTypedArray(s, p, o); - r = r.slice(s.length); - h -= s.length; - d = p; - } - if (i) { - r = sort(r, f); - } - l.push(s); - for(let e = 0; e < h; e++){ - const t = r[e]; - const n = stringifyIndent(t, s[t], l, c, a); - if (n !== undefined) { - y += `${d}${strEscape(t)}: ${n}`; - d = p; - } - } - if (g > o) { - const e = g - o; - y += `${d}"...": "${getItemCount(e)} not stringified"`; - d = p; - } - if (d !== "") { - y = `\n${a}${y}\n${t}`; - } - l.pop(); - return `{${y}}`; - } - case "number": - return isFinite(s) ? String(s) : t ? t(s) : "null"; - case "boolean": - return s === true ? "true" : "false"; - case "undefined": - return undefined; - case "bigint": - if (r) { - return String(s); - } - default: - return t ? t(s) : undefined; - } - } - function stringifySimple(e, s, l) { - switch(typeof s){ - case "string": - return strEscape(s); - case "object": - { - if (s === null) { - return "null"; - } - if (typeof s.toJSON === "function") { - s = s.toJSON(e); - if (typeof s !== "object") { - return stringifySimple(e, s, l); - } - if (s === null) { - return "null"; - } - } - if (l.indexOf(s) !== -1) { - return n; - } - let t = ""; - const r = s.length !== undefined; - if (r && Array.isArray(s)) { - if (s.length === 0) { - return "[]"; - } - if (u < l.length + 1) { - return '"[Array]"'; - } - l.push(s); - const e = Math.min(s.length, o); - let n = 0; - for(; n < e - 1; n++){ - const e = stringifySimple(String(n), s[n], l); - t += e !== undefined ? e : "null"; - t += ","; - } - const r = stringifySimple(String(n), s[n], l); - t += r !== undefined ? r : "null"; - if (s.length - 1 > o) { - const e = s.length - o - 1; - t += `,"... ${getItemCount(e)} not stringified"`; - } - l.pop(); - return `[${t}]`; - } - let c = Object.keys(s); - const a = c.length; - if (a === 0) { - return "{}"; - } - if (u < l.length + 1) { - return '"[Object]"'; - } - let g = ""; - let p = Math.min(a, o); - if (r && isTypedArrayWithEntries(s)) { - t += stringifyTypedArray(s, ",", o); - c = c.slice(s.length); - p -= s.length; - g = ","; - } - if (i) { - c = sort(c, f); - } - l.push(s); - for(let e = 0; e < p; e++){ - const n = c[e]; - const r = stringifySimple(n, s[n], l); - if (r !== undefined) { - t += `${g}${strEscape(n)}:${r}`; - g = ","; - } - } - if (a > o) { - const e = a - o; - t += `${g}"...":"${getItemCount(e)} not stringified"`; - } - l.pop(); - return `{${t}}`; - } - case "number": - return isFinite(s) ? String(s) : t ? t(s) : "null"; - case "boolean": - return s === true ? "true" : "false"; - case "undefined": - return undefined; - case "bigint": - if (r) { - return String(s); - } - default: - return t ? t(s) : undefined; - } - } - function stringify(e, t, n) { - if (arguments.length > 1) { - let r = ""; - if (typeof n === "number") { - r = " ".repeat(Math.min(n, 10)); - } else if (typeof n === "string") { - r = n.slice(0, 10); - } - if (t != null) { - if (typeof t === "function") { - return stringifyFnReplacer("", { - "": e - }, [], t, r, ""); - } - if (Array.isArray(t)) { - return stringifyArrayReplacer("", e, [], getUniqueReplacerSet(t), r, ""); - } - } - if (r.length !== 0) { - return stringifyIndent("", e, [], r, ""); - } - } - return stringifySimple("", e, []); - } - return stringify; - } - } - }; - var t = {}; - function __nccwpck_require__(n) { - var r = t[n]; - if (r !== undefined) { - return r.exports; - } - var i = t[n] = { - exports: {} - }; - var f = true; - try { - e[n](i, i.exports, __nccwpck_require__); - f = false; - } finally{ - if (f) delete t[n]; - } - return i.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/safe-stable-stringify") + "/"; - var n = __nccwpck_require__(879); - module.exports = n; -})(); -}), -"[project]/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * @license React - * scheduler.development.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ "use strict"; -"production" !== ("TURBOPACK compile-time value", "development") && function() { - function performWorkUntilDeadline() { - needsPaint = !1; - if (isMessageLoopRunning) { - var currentTime = exports.unstable_now(); - startTime = currentTime; - var hasMoreWork = !0; - try { - a: { - isHostCallbackScheduled = !1; - isHostTimeoutScheduled && (isHostTimeoutScheduled = !1, localClearTimeout(taskTimeoutID), taskTimeoutID = -1); - isPerformingWork = !0; - var previousPriorityLevel = currentPriorityLevel; - try { - b: { - advanceTimers(currentTime); - for(currentTask = peek(taskQueue); null !== currentTask && !(currentTask.expirationTime > currentTime && shouldYieldToHost());){ - var callback = currentTask.callback; - if ("function" === typeof callback) { - currentTask.callback = null; - currentPriorityLevel = currentTask.priorityLevel; - var continuationCallback = callback(currentTask.expirationTime <= currentTime); - currentTime = exports.unstable_now(); - if ("function" === typeof continuationCallback) { - currentTask.callback = continuationCallback; - advanceTimers(currentTime); - hasMoreWork = !0; - break b; - } - currentTask === peek(taskQueue) && pop(taskQueue); - advanceTimers(currentTime); - } else pop(taskQueue); - currentTask = peek(taskQueue); - } - if (null !== currentTask) hasMoreWork = !0; - else { - var firstTimer = peek(timerQueue); - null !== firstTimer && requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime); - hasMoreWork = !1; - } - } - break a; - } finally{ - currentTask = null, currentPriorityLevel = previousPriorityLevel, isPerformingWork = !1; - } - hasMoreWork = void 0; - } - } finally{ - hasMoreWork ? schedulePerformWorkUntilDeadline() : isMessageLoopRunning = !1; - } - } - } - function push(heap, node) { - var index = heap.length; - heap.push(node); - a: for(; 0 < index;){ - var parentIndex = index - 1 >>> 1, parent = heap[parentIndex]; - if (0 < compare(parent, node)) heap[parentIndex] = node, heap[index] = parent, index = parentIndex; - else break a; - } - } - function peek(heap) { - return 0 === heap.length ? null : heap[0]; - } - function pop(heap) { - if (0 === heap.length) return null; - var first = heap[0], last = heap.pop(); - if (last !== first) { - heap[0] = last; - a: for(var index = 0, length = heap.length, halfLength = length >>> 1; index < halfLength;){ - var leftIndex = 2 * (index + 1) - 1, left = heap[leftIndex], rightIndex = leftIndex + 1, right = heap[rightIndex]; - if (0 > compare(left, last)) rightIndex < length && 0 > compare(right, left) ? (heap[index] = right, heap[rightIndex] = last, index = rightIndex) : (heap[index] = left, heap[leftIndex] = last, index = leftIndex); - else if (rightIndex < length && 0 > compare(right, last)) heap[index] = right, heap[rightIndex] = last, index = rightIndex; - else break a; - } - } - return first; - } - function compare(a, b) { - var diff = a.sortIndex - b.sortIndex; - return 0 !== diff ? diff : a.id - b.id; - } - function advanceTimers(currentTime) { - for(var timer = peek(timerQueue); null !== timer;){ - if (null === timer.callback) pop(timerQueue); - else if (timer.startTime <= currentTime) pop(timerQueue), timer.sortIndex = timer.expirationTime, push(taskQueue, timer); - else break; - timer = peek(timerQueue); - } - } - function handleTimeout(currentTime) { - isHostTimeoutScheduled = !1; - advanceTimers(currentTime); - if (!isHostCallbackScheduled) if (null !== peek(taskQueue)) isHostCallbackScheduled = !0, isMessageLoopRunning || (isMessageLoopRunning = !0, schedulePerformWorkUntilDeadline()); - else { - var firstTimer = peek(timerQueue); - null !== firstTimer && requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime); - } - } - function shouldYieldToHost() { - return needsPaint ? !0 : exports.unstable_now() - startTime < frameInterval ? !1 : !0; - } - function requestHostTimeout(callback, ms) { - taskTimeoutID = localSetTimeout(function() { - callback(exports.unstable_now()); - }, ms); - } - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()); - exports.unstable_now = void 0; - if ("object" === typeof performance && "function" === typeof performance.now) { - var localPerformance = performance; - exports.unstable_now = function() { - return localPerformance.now(); - }; - } else { - var localDate = Date, initialTime = localDate.now(); - exports.unstable_now = function() { - return localDate.now() - initialTime; - }; - } - var taskQueue = [], timerQueue = [], taskIdCounter = 1, currentTask = null, currentPriorityLevel = 3, isPerformingWork = !1, isHostCallbackScheduled = !1, isHostTimeoutScheduled = !1, needsPaint = !1, localSetTimeout = "function" === typeof setTimeout ? setTimeout : null, localClearTimeout = "function" === typeof clearTimeout ? clearTimeout : null, localSetImmediate = "undefined" !== typeof setImmediate ? setImmediate : null, isMessageLoopRunning = !1, taskTimeoutID = -1, frameInterval = 5, startTime = -1; - if ("function" === typeof localSetImmediate) var schedulePerformWorkUntilDeadline = function() { - localSetImmediate(performWorkUntilDeadline); - }; - else if ("undefined" !== typeof MessageChannel) { - var channel = new MessageChannel(), port = channel.port2; - channel.port1.onmessage = performWorkUntilDeadline; - schedulePerformWorkUntilDeadline = function() { - port.postMessage(null); - }; - } else schedulePerformWorkUntilDeadline = function() { - localSetTimeout(performWorkUntilDeadline, 0); - }; - exports.unstable_IdlePriority = 5; - exports.unstable_ImmediatePriority = 1; - exports.unstable_LowPriority = 4; - exports.unstable_NormalPriority = 3; - exports.unstable_Profiling = null; - exports.unstable_UserBlockingPriority = 2; - exports.unstable_cancelCallback = function(task) { - task.callback = null; - }; - exports.unstable_forceFrameRate = function(fps) { - 0 > fps || 125 < fps ? console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported") : frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5; - }; - exports.unstable_getCurrentPriorityLevel = function() { - return currentPriorityLevel; - }; - exports.unstable_next = function(eventHandler) { - switch(currentPriorityLevel){ - case 1: - case 2: - case 3: - var priorityLevel = 3; - break; - default: - priorityLevel = currentPriorityLevel; - } - var previousPriorityLevel = currentPriorityLevel; - currentPriorityLevel = priorityLevel; - try { - return eventHandler(); - } finally{ - currentPriorityLevel = previousPriorityLevel; - } - }; - exports.unstable_requestPaint = function() { - needsPaint = !0; - }; - exports.unstable_runWithPriority = function(priorityLevel, eventHandler) { - switch(priorityLevel){ - case 1: - case 2: - case 3: - case 4: - case 5: - break; - default: - priorityLevel = 3; - } - var previousPriorityLevel = currentPriorityLevel; - currentPriorityLevel = priorityLevel; - try { - return eventHandler(); - } finally{ - currentPriorityLevel = previousPriorityLevel; - } - }; - exports.unstable_scheduleCallback = function(priorityLevel, callback, options) { - var currentTime = exports.unstable_now(); - "object" === typeof options && null !== options ? (options = options.delay, options = "number" === typeof options && 0 < options ? currentTime + options : currentTime) : options = currentTime; - switch(priorityLevel){ - case 1: - var timeout = -1; - break; - case 2: - timeout = 250; - break; - case 5: - timeout = 1073741823; - break; - case 4: - timeout = 1e4; - break; - default: - timeout = 5e3; - } - timeout = options + timeout; - priorityLevel = { - id: taskIdCounter++, - callback: callback, - priorityLevel: priorityLevel, - startTime: options, - expirationTime: timeout, - sortIndex: -1 - }; - options > currentTime ? (priorityLevel.sortIndex = options, push(timerQueue, priorityLevel), null === peek(taskQueue) && priorityLevel === peek(timerQueue) && (isHostTimeoutScheduled ? (localClearTimeout(taskTimeoutID), taskTimeoutID = -1) : isHostTimeoutScheduled = !0, requestHostTimeout(handleTimeout, options - currentTime))) : (priorityLevel.sortIndex = timeout, push(taskQueue, priorityLevel), isHostCallbackScheduled || isPerformingWork || (isHostCallbackScheduled = !0, isMessageLoopRunning || (isMessageLoopRunning = !0, schedulePerformWorkUntilDeadline()))); - return priorityLevel; - }; - exports.unstable_shouldYield = shouldYieldToHost; - exports.unstable_wrapCallback = function(callback) { - var parentPriorityLevel = currentPriorityLevel; - return function() { - var previousPriorityLevel = currentPriorityLevel; - currentPriorityLevel = parentPriorityLevel; - try { - return callback.apply(this, arguments); - } finally{ - currentPriorityLevel = previousPriorityLevel; - } - }; - }; - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error()); -}(); -}), -"[project]/node_modules/next/dist/compiled/scheduler/index.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use strict'; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js [app-client] (ecmascript)"); -} -}), -"[project]/node_modules/next/dist/compiled/strip-ansi/index.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { - -(()=>{ - "use strict"; - var e = { - 511: (e)=>{ - e.exports = ({ onlyFirst: e = false } = {})=>{ - const r = [ - "[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)", - "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))" - ].join("|"); - return new RegExp(r, e ? undefined : "g"); - }; - }, - 532: (e, r, _)=>{ - const t = _(511); - e.exports = (e)=>typeof e === "string" ? e.replace(t(), "") : e; - } - }; - var r = {}; - function __nccwpck_require__(_) { - var t = r[_]; - if (t !== undefined) { - return t.exports; - } - var a = r[_] = { - exports: {} - }; - var n = true; - try { - e[_](a, a.exports, __nccwpck_require__); - n = false; - } finally{ - if (n) delete r[_]; - } - return a.exports; - } - if (typeof __nccwpck_require__ !== "undefined") __nccwpck_require__.ab = ("TURBOPACK compile-time value", "/ROOT/node_modules/next/dist/compiled/strip-ansi") + "/"; - var _ = __nccwpck_require__(532); - module.exports = _; -})(); -}), -]); - -//# sourceMappingURL=node_modules_next_dist_compiled_a0e4c7b4._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js.map deleted file mode 100644 index 8a84034..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js.map +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 3, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/process/browser.js"],"sourcesContent":["(function(){var e={229:function(e){var t=e.exports={};var r;var n;function defaultSetTimout(){throw new Error(\"setTimeout has not been defined\")}function defaultClearTimeout(){throw new Error(\"clearTimeout has not been defined\")}(function(){try{if(typeof setTimeout===\"function\"){r=setTimeout}else{r=defaultSetTimout}}catch(e){r=defaultSetTimout}try{if(typeof clearTimeout===\"function\"){n=clearTimeout}else{n=defaultClearTimeout}}catch(e){n=defaultClearTimeout}})();function runTimeout(e){if(r===setTimeout){return setTimeout(e,0)}if((r===defaultSetTimout||!r)&&setTimeout){r=setTimeout;return setTimeout(e,0)}try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}function runClearTimeout(e){if(n===clearTimeout){return clearTimeout(e)}if((n===defaultClearTimeout||!n)&&clearTimeout){n=clearTimeout;return clearTimeout(e)}try{return n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}var i=[];var o=false;var u;var a=-1;function cleanUpNextTick(){if(!o||!u){return}o=false;if(u.length){i=u.concat(i)}else{a=-1}if(i.length){drainQueue()}}function drainQueue(){if(o){return}var e=runTimeout(cleanUpNextTick);o=true;var t=i.length;while(t){u=i;i=[];while(++a<t){if(u){u[a].run()}}a=-1;t=i.length}u=null;o=false;runClearTimeout(e)}t.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1){for(var r=1;r<arguments.length;r++){t[r-1]=arguments[r]}}i.push(new Item(e,t));if(i.length===1&&!o){runTimeout(drainQueue)}};function Item(e,t){this.fun=e;this.array=t}Item.prototype.run=function(){this.fun.apply(null,this.array)};t.title=\"browser\";t.browser=true;t.env={};t.argv=[];t.version=\"\";t.versions={};function noop(){}t.on=noop;t.addListener=noop;t.once=noop;t.off=noop;t.removeListener=noop;t.removeAllListeners=noop;t.emit=noop;t.prependListener=noop;t.prependOnceListener=noop;t.listeners=function(e){return[]};t.binding=function(e){throw new Error(\"process.binding is not supported\")};t.cwd=function(){return\"/\"};t.chdir=function(e){throw new Error(\"process.chdir is not supported\")};t.umask=function(){return 0}}};var t={};function __nccwpck_require__(r){var n=t[r];if(n!==undefined){return n.exports}var i=t[r]={exports:{}};var o=true;try{e[r](i,i.exports,__nccwpck_require__);o=false}finally{if(o)delete t[r]}return i.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var r=__nccwpck_require__(229);module.exports=r})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 189, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js"],"sourcesContent":["/**\n * @license React\n * react-refresh-runtime.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n'use strict';\n\n// ATTENTION\nvar REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');\nvar REACT_MEMO_TYPE = Symbol.for('react.memo');\n\nvar PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map; // We never remove these associations.\n// It's OK to reference families, but use WeakMap/Set for types.\n\nvar allFamiliesByID = new Map();\nvar allFamiliesByType = new PossiblyWeakMap();\nvar allSignaturesByType = new PossiblyWeakMap(); // This WeakMap is read by React, so we only put families\n// that have actually been edited here. This keeps checks fast.\n// $FlowIssue\n\nvar updatedFamiliesByType = new PossiblyWeakMap(); // This is cleared on every performReactRefresh() call.\n// It is an array of [Family, NextType] tuples.\n\nvar pendingUpdates = []; // This is injected by the renderer via DevTools global hook.\n\nvar helpersByRendererID = new Map();\nvar helpersByRoot = new Map(); // We keep track of mounted roots so we can schedule updates.\n\nvar mountedRoots = new Set(); // If a root captures an error, we remember it so we can retry on edit.\n\nvar failedRoots = new Set(); // In environments that support WeakMap, we also remember the last element for every root.\n// It needs to be weak because we do this even for roots that failed to mount.\n// If there is no WeakMap, we won't attempt to do retrying.\n// $FlowIssue\n\nvar rootElements = // $FlowIssue\ntypeof WeakMap === 'function' ? new WeakMap() : null;\nvar isPerformingRefresh = false;\n\nfunction computeFullKey(signature) {\n if (signature.fullKey !== null) {\n return signature.fullKey;\n }\n\n var fullKey = signature.ownKey;\n var hooks;\n\n try {\n hooks = signature.getCustomHooks();\n } catch (err) {\n // This can happen in an edge case, e.g. if expression like Foo.useSomething\n // depends on Foo which is lazily initialized during rendering.\n // In that case just assume we'll have to remount.\n signature.forceReset = true;\n signature.fullKey = fullKey;\n return fullKey;\n }\n\n for (var i = 0; i < hooks.length; i++) {\n var hook = hooks[i];\n\n if (typeof hook !== 'function') {\n // Something's wrong. Assume we need to remount.\n signature.forceReset = true;\n signature.fullKey = fullKey;\n return fullKey;\n }\n\n var nestedHookSignature = allSignaturesByType.get(hook);\n\n if (nestedHookSignature === undefined) {\n // No signature means Hook wasn't in the source code, e.g. in a library.\n // We'll skip it because we can assume it won't change during this session.\n continue;\n }\n\n var nestedHookKey = computeFullKey(nestedHookSignature);\n\n if (nestedHookSignature.forceReset) {\n signature.forceReset = true;\n }\n\n fullKey += '\\n---\\n' + nestedHookKey;\n }\n\n signature.fullKey = fullKey;\n return fullKey;\n}\n\nfunction haveEqualSignatures(prevType, nextType) {\n var prevSignature = allSignaturesByType.get(prevType);\n var nextSignature = allSignaturesByType.get(nextType);\n\n if (prevSignature === undefined && nextSignature === undefined) {\n return true;\n }\n\n if (prevSignature === undefined || nextSignature === undefined) {\n return false;\n }\n\n if (computeFullKey(prevSignature) !== computeFullKey(nextSignature)) {\n return false;\n }\n\n if (nextSignature.forceReset) {\n return false;\n }\n\n return true;\n}\n\nfunction isReactClass(type) {\n return type.prototype && type.prototype.isReactComponent;\n}\n\nfunction canPreserveStateBetween(prevType, nextType) {\n if (isReactClass(prevType) || isReactClass(nextType)) {\n return false;\n }\n\n if (haveEqualSignatures(prevType, nextType)) {\n return true;\n }\n\n return false;\n}\n\nfunction resolveFamily(type) {\n // Only check updated types to keep lookups fast.\n return updatedFamiliesByType.get(type);\n} // If we didn't care about IE11, we could use new Map/Set(iterable).\n\n\nfunction cloneMap(map) {\n var clone = new Map();\n map.forEach(function (value, key) {\n clone.set(key, value);\n });\n return clone;\n}\n\nfunction cloneSet(set) {\n var clone = new Set();\n set.forEach(function (value) {\n clone.add(value);\n });\n return clone;\n} // This is a safety mechanism to protect against rogue getters and Proxies.\n\n\nfunction getProperty(object, property) {\n try {\n return object[property];\n } catch (err) {\n // Intentionally ignore.\n return undefined;\n }\n}\n\nfunction performReactRefresh() {\n\n if (pendingUpdates.length === 0) {\n return null;\n }\n\n if (isPerformingRefresh) {\n return null;\n }\n\n isPerformingRefresh = true;\n\n try {\n var staleFamilies = new Set();\n var updatedFamilies = new Set();\n var updates = pendingUpdates;\n pendingUpdates = [];\n updates.forEach(function (_ref) {\n var family = _ref[0],\n nextType = _ref[1];\n // Now that we got a real edit, we can create associations\n // that will be read by the React reconciler.\n var prevType = family.current;\n updatedFamiliesByType.set(prevType, family);\n updatedFamiliesByType.set(nextType, family);\n family.current = nextType; // Determine whether this should be a re-render or a re-mount.\n\n if (canPreserveStateBetween(prevType, nextType)) {\n updatedFamilies.add(family);\n } else {\n staleFamilies.add(family);\n }\n }); // TODO: rename these fields to something more meaningful.\n\n var update = {\n updatedFamilies: updatedFamilies,\n // Families that will re-render preserving state\n staleFamilies: staleFamilies // Families that will be remounted\n\n };\n helpersByRendererID.forEach(function (helpers) {\n // Even if there are no roots, set the handler on first update.\n // This ensures that if *new* roots are mounted, they'll use the resolve handler.\n helpers.setRefreshHandler(resolveFamily);\n });\n var didError = false;\n var firstError = null; // We snapshot maps and sets that are mutated during commits.\n // If we don't do this, there is a risk they will be mutated while\n // we iterate over them. For example, trying to recover a failed root\n // may cause another root to be added to the failed list -- an infinite loop.\n\n var failedRootsSnapshot = cloneSet(failedRoots);\n var mountedRootsSnapshot = cloneSet(mountedRoots);\n var helpersByRootSnapshot = cloneMap(helpersByRoot);\n failedRootsSnapshot.forEach(function (root) {\n var helpers = helpersByRootSnapshot.get(root);\n\n if (helpers === undefined) {\n throw new Error('Could not find helpers for a root. This is a bug in React Refresh.');\n }\n\n if (!failedRoots.has(root)) {// No longer failed.\n }\n\n if (rootElements === null) {\n return;\n }\n\n if (!rootElements.has(root)) {\n return;\n }\n\n var element = rootElements.get(root);\n\n try {\n helpers.scheduleRoot(root, element);\n } catch (err) {\n if (!didError) {\n didError = true;\n firstError = err;\n } // Keep trying other roots.\n\n }\n });\n mountedRootsSnapshot.forEach(function (root) {\n var helpers = helpersByRootSnapshot.get(root);\n\n if (helpers === undefined) {\n throw new Error('Could not find helpers for a root. This is a bug in React Refresh.');\n }\n\n if (!mountedRoots.has(root)) {// No longer mounted.\n }\n\n try {\n helpers.scheduleRefresh(root, update);\n } catch (err) {\n if (!didError) {\n didError = true;\n firstError = err;\n } // Keep trying other roots.\n\n }\n });\n\n if (didError) {\n throw firstError;\n }\n\n return update;\n } finally {\n isPerformingRefresh = false;\n }\n}\nfunction register(type, id) {\n {\n if (type === null) {\n return;\n }\n\n if (typeof type !== 'function' && typeof type !== 'object') {\n return;\n } // This can happen in an edge case, e.g. if we register\n // return value of a HOC but it returns a cached component.\n // Ignore anything but the first registration for each type.\n\n\n if (allFamiliesByType.has(type)) {\n return;\n } // Create family or remember to update it.\n // None of this bookkeeping affects reconciliation\n // until the first performReactRefresh() call above.\n\n\n var family = allFamiliesByID.get(id);\n\n if (family === undefined) {\n family = {\n current: type\n };\n allFamiliesByID.set(id, family);\n } else {\n pendingUpdates.push([family, type]);\n }\n\n allFamiliesByType.set(type, family); // Visit inner types because we might not have registered them.\n\n if (typeof type === 'object' && type !== null) {\n switch (getProperty(type, '$$typeof')) {\n case REACT_FORWARD_REF_TYPE:\n register(type.render, id + '$render');\n break;\n\n case REACT_MEMO_TYPE:\n register(type.type, id + '$type');\n break;\n }\n }\n }\n}\nfunction setSignature(type, key) {\n var forceReset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var getCustomHooks = arguments.length > 3 ? arguments[3] : undefined;\n\n {\n if (!allSignaturesByType.has(type)) {\n allSignaturesByType.set(type, {\n forceReset: forceReset,\n ownKey: key,\n fullKey: null,\n getCustomHooks: getCustomHooks || function () {\n return [];\n }\n });\n } // Visit inner types because we might not have signed them.\n\n\n if (typeof type === 'object' && type !== null) {\n switch (getProperty(type, '$$typeof')) {\n case REACT_FORWARD_REF_TYPE:\n setSignature(type.render, key, forceReset, getCustomHooks);\n break;\n\n case REACT_MEMO_TYPE:\n setSignature(type.type, key, forceReset, getCustomHooks);\n break;\n }\n }\n }\n} // This is lazily called during first render for a type.\n// It captures Hook list at that time so inline requires don't break comparisons.\n\nfunction collectCustomHooksForSignature(type) {\n {\n var signature = allSignaturesByType.get(type);\n\n if (signature !== undefined) {\n computeFullKey(signature);\n }\n }\n}\nfunction getFamilyByID(id) {\n {\n return allFamiliesByID.get(id);\n }\n}\nfunction getFamilyByType(type) {\n {\n return allFamiliesByType.get(type);\n }\n}\nfunction findAffectedHostInstances(families) {\n {\n var affectedInstances = new Set();\n mountedRoots.forEach(function (root) {\n var helpers = helpersByRoot.get(root);\n\n if (helpers === undefined) {\n throw new Error('Could not find helpers for a root. This is a bug in React Refresh.');\n }\n\n var instancesForRoot = helpers.findHostInstancesForRefresh(root, families);\n instancesForRoot.forEach(function (inst) {\n affectedInstances.add(inst);\n });\n });\n return affectedInstances;\n }\n}\nfunction injectIntoGlobalHook(globalObject) {\n {\n // For React Native, the global hook will be set up by require('react-devtools-core').\n // That code will run before us. So we need to monkeypatch functions on existing hook.\n // For React Web, the global hook will be set up by the extension.\n // This will also run before us.\n var hook = globalObject.__REACT_DEVTOOLS_GLOBAL_HOOK__;\n\n if (hook === undefined) {\n // However, if there is no DevTools extension, we'll need to set up the global hook ourselves.\n // Note that in this case it's important that renderer code runs *after* this method call.\n // Otherwise, the renderer will think that there is no global hook, and won't do the injection.\n var nextID = 0;\n globalObject.__REACT_DEVTOOLS_GLOBAL_HOOK__ = hook = {\n renderers: new Map(),\n supportsFiber: true,\n inject: function (injected) {\n return nextID++;\n },\n onScheduleFiberRoot: function (id, root, children) {},\n onCommitFiberRoot: function (id, root, maybePriorityLevel, didError) {},\n onCommitFiberUnmount: function () {}\n };\n }\n\n if (hook.isDisabled) {\n // This isn't a real property on the hook, but it can be set to opt out\n // of DevTools integration and associated warnings and logs.\n // Using console['warn'] to evade Babel and ESLint\n console['warn']('Something has shimmed the React DevTools global hook (__REACT_DEVTOOLS_GLOBAL_HOOK__). ' + 'Fast Refresh is not compatible with this shim and will be disabled.');\n return;\n } // Here, we just want to get a reference to scheduleRefresh.\n\n\n var oldInject = hook.inject;\n\n hook.inject = function (injected) {\n var id = oldInject.apply(this, arguments);\n\n if (typeof injected.scheduleRefresh === 'function' && typeof injected.setRefreshHandler === 'function') {\n // This version supports React Refresh.\n helpersByRendererID.set(id, injected);\n }\n\n return id;\n }; // Do the same for any already injected roots.\n // This is useful if ReactDOM has already been initialized.\n // https://github.com/facebook/react/issues/17626\n\n\n hook.renderers.forEach(function (injected, id) {\n if (typeof injected.scheduleRefresh === 'function' && typeof injected.setRefreshHandler === 'function') {\n // This version supports React Refresh.\n helpersByRendererID.set(id, injected);\n }\n }); // We also want to track currently mounted roots.\n\n var oldOnCommitFiberRoot = hook.onCommitFiberRoot;\n\n var oldOnScheduleFiberRoot = hook.onScheduleFiberRoot || function () {};\n\n hook.onScheduleFiberRoot = function (id, root, children) {\n if (!isPerformingRefresh) {\n // If it was intentionally scheduled, don't attempt to restore.\n // This includes intentionally scheduled unmounts.\n failedRoots.delete(root);\n\n if (rootElements !== null) {\n rootElements.set(root, children);\n }\n }\n\n return oldOnScheduleFiberRoot.apply(this, arguments);\n };\n\n hook.onCommitFiberRoot = function (id, root, maybePriorityLevel, didError) {\n var helpers = helpersByRendererID.get(id);\n\n if (helpers !== undefined) {\n helpersByRoot.set(root, helpers);\n var current = root.current;\n var alternate = current.alternate; // We need to determine whether this root has just (un)mounted.\n // This logic is copy-pasted from similar logic in the DevTools backend.\n // If this breaks with some refactoring, you'll want to update DevTools too.\n\n if (alternate !== null) {\n var wasMounted = alternate.memoizedState != null && alternate.memoizedState.element != null && mountedRoots.has(root);\n var isMounted = current.memoizedState != null && current.memoizedState.element != null;\n\n if (!wasMounted && isMounted) {\n // Mount a new root.\n mountedRoots.add(root);\n failedRoots.delete(root);\n } else if (wasMounted && isMounted) ; else if (wasMounted && !isMounted) {\n // Unmount an existing root.\n mountedRoots.delete(root);\n\n if (didError) {\n // We'll remount it on future edits.\n failedRoots.add(root);\n } else {\n helpersByRoot.delete(root);\n }\n } else if (!wasMounted && !isMounted) {\n if (didError) {\n // We'll remount it on future edits.\n failedRoots.add(root);\n }\n }\n } else {\n // Mount a new root.\n mountedRoots.add(root);\n }\n } // Always call the decorated DevTools hook.\n\n\n return oldOnCommitFiberRoot.apply(this, arguments);\n };\n }\n}\nfunction hasUnrecoverableErrors() {\n // TODO: delete this after removing dependency in RN.\n return false;\n} // Exposed for testing.\n\nfunction _getMountedRootCount() {\n {\n return mountedRoots.size;\n }\n} // This is a wrapper over more primitive functions for setting signature.\n// Signatures let us decide whether the Hook order has changed on refresh.\n//\n// This function is intended to be used as a transform target, e.g.:\n// var _s = createSignatureFunctionForTransform()\n//\n// function Hello() {\n// const [foo, setFoo] = useState(0);\n// const value = useCustomHook();\n// _s(); /* Call without arguments triggers collecting the custom Hook list.\n// * This doesn't happen during the module evaluation because we\n// * don't want to change the module order with inline requires.\n// * Next calls are noops. */\n// return <h1>Hi</h1>;\n// }\n//\n// /* Call with arguments attaches the signature to the type: */\n// _s(\n// Hello,\n// 'useState{[foo, setFoo]}(0)',\n// () => [useCustomHook], /* Lazy to avoid triggering inline requires */\n// );\n\nfunction createSignatureFunctionForTransform() {\n {\n var savedType;\n var hasCustomHooks;\n var didCollectHooks = false;\n return function (type, key, forceReset, getCustomHooks) {\n if (typeof key === 'string') {\n // We're in the initial phase that associates signatures\n // with the functions. Note this may be called multiple times\n // in HOC chains like _s(hoc1(_s(hoc2(_s(actualFunction))))).\n if (!savedType) {\n // We're in the innermost call, so this is the actual type.\n savedType = type;\n hasCustomHooks = typeof getCustomHooks === 'function';\n } // Set the signature for all types (even wrappers!) in case\n // they have no signatures of their own. This is to prevent\n // problems like https://github.com/facebook/react/issues/20417.\n\n\n if (type != null && (typeof type === 'function' || typeof type === 'object')) {\n setSignature(type, key, forceReset, getCustomHooks);\n }\n\n return type;\n } else {\n // We're in the _s() call without arguments, which means\n // this is the time to collect custom Hook signatures.\n // Only do this once. This path is hot and runs *inside* every render!\n if (!didCollectHooks && hasCustomHooks) {\n didCollectHooks = true;\n collectCustomHooksForSignature(savedType);\n }\n }\n };\n }\n}\nfunction isLikelyComponentType(type) {\n {\n switch (typeof type) {\n case 'function':\n {\n // First, deal with classes.\n if (type.prototype != null) {\n if (type.prototype.isReactComponent) {\n // React class.\n return true;\n }\n\n var ownNames = Object.getOwnPropertyNames(type.prototype);\n\n if (ownNames.length > 1 || ownNames[0] !== 'constructor') {\n // This looks like a class.\n return false;\n } // eslint-disable-next-line no-proto\n\n\n if (type.prototype.__proto__ !== Object.prototype) {\n // It has a superclass.\n return false;\n } // Pass through.\n // This looks like a regular function with empty prototype.\n\n } // For plain functions and arrows, use name as a heuristic.\n\n\n var name = type.name || type.displayName;\n return typeof name === 'string' && /^[A-Z]/.test(name);\n }\n\n case 'object':\n {\n if (type != null) {\n switch (getProperty(type, '$$typeof')) {\n case REACT_FORWARD_REF_TYPE:\n case REACT_MEMO_TYPE:\n // Definitely React components.\n return true;\n\n default:\n return false;\n }\n }\n\n return false;\n }\n\n default:\n {\n return false;\n }\n }\n }\n}\n\nexports._getMountedRootCount = _getMountedRootCount;\nexports.collectCustomHooksForSignature = collectCustomHooksForSignature;\nexports.createSignatureFunctionForTransform = createSignatureFunctionForTransform;\nexports.findAffectedHostInstances = findAffectedHostInstances;\nexports.getFamilyByID = getFamilyByID;\nexports.getFamilyByType = getFamilyByType;\nexports.hasUnrecoverableErrors = hasUnrecoverableErrors;\nexports.injectIntoGlobalHook = injectIntoGlobalHook;\nexports.isLikelyComponentType = isLikelyComponentType;\nexports.performReactRefresh = performReactRefresh;\nexports.register = register;\nexports.setSignature = setSignature;\n })();\n}\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 734, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-refresh-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-refresh-runtime.development.js');\n}\n"],"names":[],"mappings":"AAEI;AAFJ;AAEA;;KAEO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 745, "column": 0}, "map": {"version":3,"file":"turbopack:///[project]/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/%40next/react-refresh-utils/internal/helpers.ts"],"sourcesContent":["unable to read source [project]/node_modules/next/dist/compiled/@next/react-refresh-utils/internal/helpers.ts"],"names":[],"mappings":"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"}}, - {"offset": {"line": 910, "column": 0}, "map": {"version":3,"file":"turbopack:///[project]/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/%40next/react-refresh-utils/runtime.ts"],"sourcesContent":["unable to read source [project]/node_modules/next/dist/compiled/@next/react-refresh-utils/runtime.ts"],"names":[],"mappings":";;;;;;;;AAAA,MAAA,YAAA,kDAAkD;AAClD,MAAA,YAAA,+CAA+C;AAW/C,oCAAoC;AACpC,UAAA,OAAc,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAA;AAEzC,0BAA0B;AAC1B,IAAI,CAAC,gBAAgB,GAAG,UAAA,OAAc,CAAA;AAEtC,sDAAsD;AACtD,IAAI,CAAC,iCAAiC,GAAG,SAAU,eAAe;IAChE,IAAI,cAAc,GAAG,IAAI,CAAC,YAAY,CAAA;IACtC,IAAI,cAAc,GAAG,IAAI,CAAC,YAAY,CAAA;IAEtC,IAAI,CAAC,YAAY,GAAG,SAAU,IAAI,EAAE,EAAE;QACpC,UAAA,OAAc,CAAC,QAAQ,CAAC,IAAI,EAAE,eAAe,GAAG,GAAG,GAAG,EAAE,CAAC,CAAA;IAC3D,CAAC,CAAA;IACD,IAAI,CAAC,YAAY,GAAG,UAAA,OAAc,CAAC,mCAAmC,CAAA;IAEtE,6CAA6C;IAC7C,kFAAkF;IAClF,OAAO;QACL,IAAI,CAAC,YAAY,GAAG,cAAc,CAAA;QAClC,IAAI,CAAC,YAAY,GAAG,cAAc,CAAA;IACpC,CAAC,CAAA;AACH,CAAC,CAAA"}}, - {"offset": {"line": 943, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js"],"sourcesContent":["/**\n * @license React\n * react.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function defineDeprecationWarning(methodName, info) {\n Object.defineProperty(Component.prototype, methodName, {\n get: function () {\n console.warn(\n \"%s(...) is deprecated in plain JavaScript React classes. %s\",\n info[0],\n info[1]\n );\n }\n });\n }\n function getIteratorFn(maybeIterable) {\n if (null === maybeIterable || \"object\" !== typeof maybeIterable)\n return null;\n maybeIterable =\n (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||\n maybeIterable[\"@@iterator\"];\n return \"function\" === typeof maybeIterable ? maybeIterable : null;\n }\n function warnNoop(publicInstance, callerName) {\n publicInstance =\n ((publicInstance = publicInstance.constructor) &&\n (publicInstance.displayName || publicInstance.name)) ||\n \"ReactClass\";\n var warningKey = publicInstance + \".\" + callerName;\n didWarnStateUpdateForUnmountedComponent[warningKey] ||\n (console.error(\n \"Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.\",\n callerName,\n publicInstance\n ),\n (didWarnStateUpdateForUnmountedComponent[warningKey] = !0));\n }\n function Component(props, context, updater) {\n this.props = props;\n this.context = context;\n this.refs = emptyObject;\n this.updater = updater || ReactNoopUpdateQueue;\n }\n function ComponentDummy() {}\n function PureComponent(props, context, updater) {\n this.props = props;\n this.context = context;\n this.refs = emptyObject;\n this.updater = updater || ReactNoopUpdateQueue;\n }\n function noop() {}\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkKeyStringCoercion(value) {\n try {\n testStringCoercion(value);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n if (JSCompiler_inline_result) {\n JSCompiler_inline_result = console;\n var JSCompiler_temp_const = JSCompiler_inline_result.error;\n var JSCompiler_inline_result$jscomp$0 =\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\";\n JSCompiler_temp_const.call(\n JSCompiler_inline_result,\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n JSCompiler_inline_result$jscomp$0\n );\n return testStringCoercion(value);\n }\n }\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function getOwner() {\n var dispatcher = ReactSharedInternals.A;\n return null === dispatcher ? null : dispatcher.getOwner();\n }\n function UnknownOwner() {\n return Error(\"react-stack-top-frame\");\n }\n function hasValidKey(config) {\n if (hasOwnProperty.call(config, \"key\")) {\n var getter = Object.getOwnPropertyDescriptor(config, \"key\").get;\n if (getter && getter.isReactWarning) return !1;\n }\n return void 0 !== config.key;\n }\n function defineKeyPropWarningGetter(props, displayName) {\n function warnAboutAccessingKey() {\n specialPropKeyWarningShown ||\n ((specialPropKeyWarningShown = !0),\n console.error(\n \"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)\",\n displayName\n ));\n }\n warnAboutAccessingKey.isReactWarning = !0;\n Object.defineProperty(props, \"key\", {\n get: warnAboutAccessingKey,\n configurable: !0\n });\n }\n function elementRefGetterWithDeprecationWarning() {\n var componentName = getComponentNameFromType(this.type);\n didWarnAboutElementRef[componentName] ||\n ((didWarnAboutElementRef[componentName] = !0),\n console.error(\n \"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.\"\n ));\n componentName = this.props.ref;\n return void 0 !== componentName ? componentName : null;\n }\n function ReactElement(type, key, props, owner, debugStack, debugTask) {\n var refProp = props.ref;\n type = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n props: props,\n _owner: owner\n };\n null !== (void 0 !== refProp ? refProp : null)\n ? Object.defineProperty(type, \"ref\", {\n enumerable: !1,\n get: elementRefGetterWithDeprecationWarning\n })\n : Object.defineProperty(type, \"ref\", { enumerable: !1, value: null });\n type._store = {};\n Object.defineProperty(type._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: 0\n });\n Object.defineProperty(type, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(type, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugStack\n });\n Object.defineProperty(type, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugTask\n });\n Object.freeze && (Object.freeze(type.props), Object.freeze(type));\n return type;\n }\n function cloneAndReplaceKey(oldElement, newKey) {\n newKey = ReactElement(\n oldElement.type,\n newKey,\n oldElement.props,\n oldElement._owner,\n oldElement._debugStack,\n oldElement._debugTask\n );\n oldElement._store &&\n (newKey._store.validated = oldElement._store.validated);\n return newKey;\n }\n function validateChildKeys(node) {\n isValidElement(node)\n ? node._store && (node._store.validated = 1)\n : \"object\" === typeof node &&\n null !== node &&\n node.$$typeof === REACT_LAZY_TYPE &&\n (\"fulfilled\" === node._payload.status\n ? isValidElement(node._payload.value) &&\n node._payload.value._store &&\n (node._payload.value._store.validated = 1)\n : node._store && (node._store.validated = 1));\n }\n function isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n }\n function escape(key) {\n var escaperLookup = { \"=\": \"=0\", \":\": \"=2\" };\n return (\n \"$\" +\n key.replace(/[=:]/g, function (match) {\n return escaperLookup[match];\n })\n );\n }\n function getElementKey(element, index) {\n return \"object\" === typeof element &&\n null !== element &&\n null != element.key\n ? (checkKeyStringCoercion(element.key), escape(\"\" + element.key))\n : index.toString(36);\n }\n function resolveThenable(thenable) {\n switch (thenable.status) {\n case \"fulfilled\":\n return thenable.value;\n case \"rejected\":\n throw thenable.reason;\n default:\n switch (\n (\"string\" === typeof thenable.status\n ? thenable.then(noop, noop)\n : ((thenable.status = \"pending\"),\n thenable.then(\n function (fulfilledValue) {\n \"pending\" === thenable.status &&\n ((thenable.status = \"fulfilled\"),\n (thenable.value = fulfilledValue));\n },\n function (error) {\n \"pending\" === thenable.status &&\n ((thenable.status = \"rejected\"),\n (thenable.reason = error));\n }\n )),\n thenable.status)\n ) {\n case \"fulfilled\":\n return thenable.value;\n case \"rejected\":\n throw thenable.reason;\n }\n }\n throw thenable;\n }\n function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {\n var type = typeof children;\n if (\"undefined\" === type || \"boolean\" === type) children = null;\n var invokeCallback = !1;\n if (null === children) invokeCallback = !0;\n else\n switch (type) {\n case \"bigint\":\n case \"string\":\n case \"number\":\n invokeCallback = !0;\n break;\n case \"object\":\n switch (children.$$typeof) {\n case REACT_ELEMENT_TYPE:\n case REACT_PORTAL_TYPE:\n invokeCallback = !0;\n break;\n case REACT_LAZY_TYPE:\n return (\n (invokeCallback = children._init),\n mapIntoArray(\n invokeCallback(children._payload),\n array,\n escapedPrefix,\n nameSoFar,\n callback\n )\n );\n }\n }\n if (invokeCallback) {\n invokeCallback = children;\n callback = callback(invokeCallback);\n var childKey =\n \"\" === nameSoFar ? \".\" + getElementKey(invokeCallback, 0) : nameSoFar;\n isArrayImpl(callback)\n ? ((escapedPrefix = \"\"),\n null != childKey &&\n (escapedPrefix =\n childKey.replace(userProvidedKeyEscapeRegex, \"$&/\") + \"/\"),\n mapIntoArray(callback, array, escapedPrefix, \"\", function (c) {\n return c;\n }))\n : null != callback &&\n (isValidElement(callback) &&\n (null != callback.key &&\n ((invokeCallback && invokeCallback.key === callback.key) ||\n checkKeyStringCoercion(callback.key)),\n (escapedPrefix = cloneAndReplaceKey(\n callback,\n escapedPrefix +\n (null == callback.key ||\n (invokeCallback && invokeCallback.key === callback.key)\n ? \"\"\n : (\"\" + callback.key).replace(\n userProvidedKeyEscapeRegex,\n \"$&/\"\n ) + \"/\") +\n childKey\n )),\n \"\" !== nameSoFar &&\n null != invokeCallback &&\n isValidElement(invokeCallback) &&\n null == invokeCallback.key &&\n invokeCallback._store &&\n !invokeCallback._store.validated &&\n (escapedPrefix._store.validated = 2),\n (callback = escapedPrefix)),\n array.push(callback));\n return 1;\n }\n invokeCallback = 0;\n childKey = \"\" === nameSoFar ? \".\" : nameSoFar + \":\";\n if (isArrayImpl(children))\n for (var i = 0; i < children.length; i++)\n (nameSoFar = children[i]),\n (type = childKey + getElementKey(nameSoFar, i)),\n (invokeCallback += mapIntoArray(\n nameSoFar,\n array,\n escapedPrefix,\n type,\n callback\n ));\n else if (((i = getIteratorFn(children)), \"function\" === typeof i))\n for (\n i === children.entries &&\n (didWarnAboutMaps ||\n console.warn(\n \"Using Maps as children is not supported. Use an array of keyed ReactElements instead.\"\n ),\n (didWarnAboutMaps = !0)),\n children = i.call(children),\n i = 0;\n !(nameSoFar = children.next()).done;\n\n )\n (nameSoFar = nameSoFar.value),\n (type = childKey + getElementKey(nameSoFar, i++)),\n (invokeCallback += mapIntoArray(\n nameSoFar,\n array,\n escapedPrefix,\n type,\n callback\n ));\n else if (\"object\" === type) {\n if (\"function\" === typeof children.then)\n return mapIntoArray(\n resolveThenable(children),\n array,\n escapedPrefix,\n nameSoFar,\n callback\n );\n array = String(children);\n throw Error(\n \"Objects are not valid as a React child (found: \" +\n (\"[object Object]\" === array\n ? \"object with keys {\" + Object.keys(children).join(\", \") + \"}\"\n : array) +\n \"). If you meant to render a collection of children, use an array instead.\"\n );\n }\n return invokeCallback;\n }\n function mapChildren(children, func, context) {\n if (null == children) return children;\n var result = [],\n count = 0;\n mapIntoArray(children, result, \"\", \"\", function (child) {\n return func.call(context, child, count++);\n });\n return result;\n }\n function lazyInitializer(payload) {\n if (-1 === payload._status) {\n var resolveDebugValue = null,\n rejectDebugValue = null,\n ioInfo = payload._ioInfo;\n null != ioInfo &&\n ((ioInfo.start = ioInfo.end = performance.now()),\n (ioInfo.value = new Promise(function (resolve, reject) {\n resolveDebugValue = resolve;\n rejectDebugValue = reject;\n })));\n ioInfo = payload._result;\n var thenable = ioInfo();\n thenable.then(\n function (moduleObject) {\n if (0 === payload._status || -1 === payload._status) {\n payload._status = 1;\n payload._result = moduleObject;\n var _ioInfo = payload._ioInfo;\n if (null != _ioInfo) {\n _ioInfo.end = performance.now();\n var debugValue =\n null == moduleObject ? void 0 : moduleObject.default;\n resolveDebugValue(debugValue);\n _ioInfo.value.status = \"fulfilled\";\n _ioInfo.value.value = debugValue;\n }\n void 0 === thenable.status &&\n ((thenable.status = \"fulfilled\"),\n (thenable.value = moduleObject));\n }\n },\n function (error) {\n if (0 === payload._status || -1 === payload._status) {\n payload._status = 2;\n payload._result = error;\n var _ioInfo2 = payload._ioInfo;\n null != _ioInfo2 &&\n ((_ioInfo2.end = performance.now()),\n _ioInfo2.value.then(noop, noop),\n rejectDebugValue(error),\n (_ioInfo2.value.status = \"rejected\"),\n (_ioInfo2.value.reason = error));\n void 0 === thenable.status &&\n ((thenable.status = \"rejected\"), (thenable.reason = error));\n }\n }\n );\n ioInfo = payload._ioInfo;\n if (null != ioInfo) {\n var displayName = thenable.displayName;\n \"string\" === typeof displayName && (ioInfo.name = displayName);\n }\n -1 === payload._status &&\n ((payload._status = 0), (payload._result = thenable));\n }\n if (1 === payload._status)\n return (\n (ioInfo = payload._result),\n void 0 === ioInfo &&\n console.error(\n \"lazy: Expected the result of a dynamic import() call. Instead received: %s\\n\\nYour code should look like: \\n const MyComponent = lazy(() => import('./MyComponent'))\\n\\nDid you accidentally put curly braces around the import?\",\n ioInfo\n ),\n \"default\" in ioInfo ||\n console.error(\n \"lazy: Expected the result of a dynamic import() call. Instead received: %s\\n\\nYour code should look like: \\n const MyComponent = lazy(() => import('./MyComponent'))\",\n ioInfo\n ),\n ioInfo.default\n );\n throw payload._result;\n }\n function resolveDispatcher() {\n var dispatcher = ReactSharedInternals.H;\n null === dispatcher &&\n console.error(\n \"Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\\n1. You might have mismatching versions of React and the renderer (such as React DOM)\\n2. You might be breaking the Rules of Hooks\\n3. You might have more than one copy of React in the same app\\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.\"\n );\n return dispatcher;\n }\n function releaseAsyncTransition() {\n ReactSharedInternals.asyncTransitions--;\n }\n function startTransition(scope) {\n var prevTransition = ReactSharedInternals.T,\n currentTransition = {};\n currentTransition.types =\n null !== prevTransition ? prevTransition.types : null;\n currentTransition._updatedFibers = new Set();\n ReactSharedInternals.T = currentTransition;\n try {\n var returnValue = scope(),\n onStartTransitionFinish = ReactSharedInternals.S;\n null !== onStartTransitionFinish &&\n onStartTransitionFinish(currentTransition, returnValue);\n \"object\" === typeof returnValue &&\n null !== returnValue &&\n \"function\" === typeof returnValue.then &&\n (ReactSharedInternals.asyncTransitions++,\n returnValue.then(releaseAsyncTransition, releaseAsyncTransition),\n returnValue.then(noop, reportGlobalError));\n } catch (error) {\n reportGlobalError(error);\n } finally {\n null === prevTransition &&\n currentTransition._updatedFibers &&\n ((scope = currentTransition._updatedFibers.size),\n currentTransition._updatedFibers.clear(),\n 10 < scope &&\n console.warn(\n \"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.\"\n )),\n null !== prevTransition &&\n null !== currentTransition.types &&\n (null !== prevTransition.types &&\n prevTransition.types !== currentTransition.types &&\n console.error(\n \"We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React.\"\n ),\n (prevTransition.types = currentTransition.types)),\n (ReactSharedInternals.T = prevTransition);\n }\n }\n function addTransitionType(type) {\n var transition = ReactSharedInternals.T;\n if (null !== transition) {\n var transitionTypes = transition.types;\n null === transitionTypes\n ? (transition.types = [type])\n : -1 === transitionTypes.indexOf(type) && transitionTypes.push(type);\n } else\n 0 === ReactSharedInternals.asyncTransitions &&\n console.error(\n \"addTransitionType can only be called inside a `startTransition()` callback. It must be associated with a specific Transition.\"\n ),\n startTransition(addTransitionType.bind(null, type));\n }\n function enqueueTask(task) {\n if (null === enqueueTaskImpl)\n try {\n var requireString = (\"require\" + Math.random()).slice(0, 7);\n enqueueTaskImpl = (module && module[requireString]).call(\n module,\n \"timers\"\n ).setImmediate;\n } catch (_err) {\n enqueueTaskImpl = function (callback) {\n !1 === didWarnAboutMessageChannel &&\n ((didWarnAboutMessageChannel = !0),\n \"undefined\" === typeof MessageChannel &&\n console.error(\n \"This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning.\"\n ));\n var channel = new MessageChannel();\n channel.port1.onmessage = callback;\n channel.port2.postMessage(void 0);\n };\n }\n return enqueueTaskImpl(task);\n }\n function aggregateErrors(errors) {\n return 1 < errors.length && \"function\" === typeof AggregateError\n ? new AggregateError(errors)\n : errors[0];\n }\n function popActScope(prevActQueue, prevActScopeDepth) {\n prevActScopeDepth !== actScopeDepth - 1 &&\n console.error(\n \"You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. \"\n );\n actScopeDepth = prevActScopeDepth;\n }\n function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {\n var queue = ReactSharedInternals.actQueue;\n if (null !== queue)\n if (0 !== queue.length)\n try {\n flushActQueue(queue);\n enqueueTask(function () {\n return recursivelyFlushAsyncActWork(returnValue, resolve, reject);\n });\n return;\n } catch (error) {\n ReactSharedInternals.thrownErrors.push(error);\n }\n else ReactSharedInternals.actQueue = null;\n 0 < ReactSharedInternals.thrownErrors.length\n ? ((queue = aggregateErrors(ReactSharedInternals.thrownErrors)),\n (ReactSharedInternals.thrownErrors.length = 0),\n reject(queue))\n : resolve(returnValue);\n }\n function flushActQueue(queue) {\n if (!isFlushing) {\n isFlushing = !0;\n var i = 0;\n try {\n for (; i < queue.length; i++) {\n var callback = queue[i];\n do {\n ReactSharedInternals.didUsePromise = !1;\n var continuation = callback(!1);\n if (null !== continuation) {\n if (ReactSharedInternals.didUsePromise) {\n queue[i] = callback;\n queue.splice(0, i);\n return;\n }\n callback = continuation;\n } else break;\n } while (1);\n }\n queue.length = 0;\n } catch (error) {\n queue.splice(0, i + 1), ReactSharedInternals.thrownErrors.push(error);\n } finally {\n isFlushing = !1;\n }\n }\n }\n \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&\n \"function\" ===\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());\n var REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_VIEW_TRANSITION_TYPE = Symbol.for(\"react.view_transition\"),\n MAYBE_ITERATOR_SYMBOL = Symbol.iterator,\n didWarnStateUpdateForUnmountedComponent = {},\n ReactNoopUpdateQueue = {\n isMounted: function () {\n return !1;\n },\n enqueueForceUpdate: function (publicInstance) {\n warnNoop(publicInstance, \"forceUpdate\");\n },\n enqueueReplaceState: function (publicInstance) {\n warnNoop(publicInstance, \"replaceState\");\n },\n enqueueSetState: function (publicInstance) {\n warnNoop(publicInstance, \"setState\");\n }\n },\n assign = Object.assign,\n emptyObject = {};\n Object.freeze(emptyObject);\n Component.prototype.isReactComponent = {};\n Component.prototype.setState = function (partialState, callback) {\n if (\n \"object\" !== typeof partialState &&\n \"function\" !== typeof partialState &&\n null != partialState\n )\n throw Error(\n \"takes an object of state variables to update or a function which returns an object of state variables.\"\n );\n this.updater.enqueueSetState(this, partialState, callback, \"setState\");\n };\n Component.prototype.forceUpdate = function (callback) {\n this.updater.enqueueForceUpdate(this, callback, \"forceUpdate\");\n };\n var deprecatedAPIs = {\n isMounted: [\n \"isMounted\",\n \"Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks.\"\n ],\n replaceState: [\n \"replaceState\",\n \"Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236).\"\n ]\n };\n for (fnName in deprecatedAPIs)\n deprecatedAPIs.hasOwnProperty(fnName) &&\n defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);\n ComponentDummy.prototype = Component.prototype;\n deprecatedAPIs = PureComponent.prototype = new ComponentDummy();\n deprecatedAPIs.constructor = PureComponent;\n assign(deprecatedAPIs, Component.prototype);\n deprecatedAPIs.isPureReactComponent = !0;\n var isArrayImpl = Array.isArray,\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n ReactSharedInternals = {\n H: null,\n A: null,\n T: null,\n S: null,\n actQueue: null,\n asyncTransitions: 0,\n isBatchingLegacy: !1,\n didScheduleLegacyUpdate: !1,\n didUsePromise: !1,\n thrownErrors: [],\n getCurrentStack: null,\n recentlyCreatedOwnerStacks: 0\n },\n hasOwnProperty = Object.prototype.hasOwnProperty,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n };\n deprecatedAPIs = {\n react_stack_bottom_frame: function (callStackForError) {\n return callStackForError();\n }\n };\n var specialPropKeyWarningShown, didWarnAboutOldJSXRuntime;\n var didWarnAboutElementRef = {};\n var unknownOwnerDebugStack = deprecatedAPIs.react_stack_bottom_frame.bind(\n deprecatedAPIs,\n UnknownOwner\n )();\n var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));\n var didWarnAboutMaps = !1,\n userProvidedKeyEscapeRegex = /\\/+/g,\n reportGlobalError =\n \"function\" === typeof reportError\n ? reportError\n : function (error) {\n if (\n \"object\" === typeof window &&\n \"function\" === typeof window.ErrorEvent\n ) {\n var event = new window.ErrorEvent(\"error\", {\n bubbles: !0,\n cancelable: !0,\n message:\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error),\n error: error\n });\n if (!window.dispatchEvent(event)) return;\n } else if (\n \"object\" === typeof process &&\n \"function\" === typeof process.emit\n ) {\n process.emit(\"uncaughtException\", error);\n return;\n }\n console.error(error);\n },\n didWarnAboutMessageChannel = !1,\n enqueueTaskImpl = null,\n actScopeDepth = 0,\n didWarnNoAwaitAct = !1,\n isFlushing = !1,\n queueSeveralMicrotasks =\n \"function\" === typeof queueMicrotask\n ? function (callback) {\n queueMicrotask(function () {\n return queueMicrotask(callback);\n });\n }\n : enqueueTask;\n deprecatedAPIs = Object.freeze({\n __proto__: null,\n c: function (size) {\n return resolveDispatcher().useMemoCache(size);\n }\n });\n var fnName = {\n map: mapChildren,\n forEach: function (children, forEachFunc, forEachContext) {\n mapChildren(\n children,\n function () {\n forEachFunc.apply(this, arguments);\n },\n forEachContext\n );\n },\n count: function (children) {\n var n = 0;\n mapChildren(children, function () {\n n++;\n });\n return n;\n },\n toArray: function (children) {\n return (\n mapChildren(children, function (child) {\n return child;\n }) || []\n );\n },\n only: function (children) {\n if (!isValidElement(children))\n throw Error(\n \"React.Children.only expected to receive a single React element child.\"\n );\n return children;\n }\n };\n exports.Activity = REACT_ACTIVITY_TYPE;\n exports.Children = fnName;\n exports.Component = Component;\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.Profiler = REACT_PROFILER_TYPE;\n exports.PureComponent = PureComponent;\n exports.StrictMode = REACT_STRICT_MODE_TYPE;\n exports.Suspense = REACT_SUSPENSE_TYPE;\n exports.ViewTransition = REACT_VIEW_TRANSITION_TYPE;\n exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =\n ReactSharedInternals;\n exports.__COMPILER_RUNTIME = deprecatedAPIs;\n exports.act = function (callback) {\n var prevActQueue = ReactSharedInternals.actQueue,\n prevActScopeDepth = actScopeDepth;\n actScopeDepth++;\n var queue = (ReactSharedInternals.actQueue =\n null !== prevActQueue ? prevActQueue : []),\n didAwaitActCall = !1;\n try {\n var result = callback();\n } catch (error) {\n ReactSharedInternals.thrownErrors.push(error);\n }\n if (0 < ReactSharedInternals.thrownErrors.length)\n throw (\n (popActScope(prevActQueue, prevActScopeDepth),\n (callback = aggregateErrors(ReactSharedInternals.thrownErrors)),\n (ReactSharedInternals.thrownErrors.length = 0),\n callback)\n );\n if (\n null !== result &&\n \"object\" === typeof result &&\n \"function\" === typeof result.then\n ) {\n var thenable = result;\n queueSeveralMicrotasks(function () {\n didAwaitActCall ||\n didWarnNoAwaitAct ||\n ((didWarnNoAwaitAct = !0),\n console.error(\n \"You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);\"\n ));\n });\n return {\n then: function (resolve, reject) {\n didAwaitActCall = !0;\n thenable.then(\n function (returnValue) {\n popActScope(prevActQueue, prevActScopeDepth);\n if (0 === prevActScopeDepth) {\n try {\n flushActQueue(queue),\n enqueueTask(function () {\n return recursivelyFlushAsyncActWork(\n returnValue,\n resolve,\n reject\n );\n });\n } catch (error$0) {\n ReactSharedInternals.thrownErrors.push(error$0);\n }\n if (0 < ReactSharedInternals.thrownErrors.length) {\n var _thrownError = aggregateErrors(\n ReactSharedInternals.thrownErrors\n );\n ReactSharedInternals.thrownErrors.length = 0;\n reject(_thrownError);\n }\n } else resolve(returnValue);\n },\n function (error) {\n popActScope(prevActQueue, prevActScopeDepth);\n 0 < ReactSharedInternals.thrownErrors.length\n ? ((error = aggregateErrors(\n ReactSharedInternals.thrownErrors\n )),\n (ReactSharedInternals.thrownErrors.length = 0),\n reject(error))\n : reject(error);\n }\n );\n }\n };\n }\n var returnValue$jscomp$0 = result;\n popActScope(prevActQueue, prevActScopeDepth);\n 0 === prevActScopeDepth &&\n (flushActQueue(queue),\n 0 !== queue.length &&\n queueSeveralMicrotasks(function () {\n didAwaitActCall ||\n didWarnNoAwaitAct ||\n ((didWarnNoAwaitAct = !0),\n console.error(\n \"A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\\n\\nawait act(() => ...)\"\n ));\n }),\n (ReactSharedInternals.actQueue = null));\n if (0 < ReactSharedInternals.thrownErrors.length)\n throw (\n ((callback = aggregateErrors(ReactSharedInternals.thrownErrors)),\n (ReactSharedInternals.thrownErrors.length = 0),\n callback)\n );\n return {\n then: function (resolve, reject) {\n didAwaitActCall = !0;\n 0 === prevActScopeDepth\n ? ((ReactSharedInternals.actQueue = queue),\n enqueueTask(function () {\n return recursivelyFlushAsyncActWork(\n returnValue$jscomp$0,\n resolve,\n reject\n );\n }))\n : resolve(returnValue$jscomp$0);\n }\n };\n };\n exports.addTransitionType = addTransitionType;\n exports.cache = function (fn) {\n return function () {\n return fn.apply(null, arguments);\n };\n };\n exports.cacheSignal = function () {\n return null;\n };\n exports.captureOwnerStack = function () {\n var getCurrentStack = ReactSharedInternals.getCurrentStack;\n return null === getCurrentStack ? null : getCurrentStack();\n };\n exports.cloneElement = function (element, config, children) {\n if (null === element || void 0 === element)\n throw Error(\n \"The argument must be a React element, but you passed \" +\n element +\n \".\"\n );\n var props = assign({}, element.props),\n key = element.key,\n owner = element._owner;\n if (null != config) {\n var JSCompiler_inline_result;\n a: {\n if (\n hasOwnProperty.call(config, \"ref\") &&\n (JSCompiler_inline_result = Object.getOwnPropertyDescriptor(\n config,\n \"ref\"\n ).get) &&\n JSCompiler_inline_result.isReactWarning\n ) {\n JSCompiler_inline_result = !1;\n break a;\n }\n JSCompiler_inline_result = void 0 !== config.ref;\n }\n JSCompiler_inline_result && (owner = getOwner());\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (key = \"\" + config.key));\n for (propName in config)\n !hasOwnProperty.call(config, propName) ||\n \"key\" === propName ||\n \"__self\" === propName ||\n \"__source\" === propName ||\n (\"ref\" === propName && void 0 === config.ref) ||\n (props[propName] = config[propName]);\n }\n var propName = arguments.length - 2;\n if (1 === propName) props.children = children;\n else if (1 < propName) {\n JSCompiler_inline_result = Array(propName);\n for (var i = 0; i < propName; i++)\n JSCompiler_inline_result[i] = arguments[i + 2];\n props.children = JSCompiler_inline_result;\n }\n props = ReactElement(\n element.type,\n key,\n props,\n owner,\n element._debugStack,\n element._debugTask\n );\n for (key = 2; key < arguments.length; key++)\n validateChildKeys(arguments[key]);\n return props;\n };\n exports.createContext = function (defaultValue) {\n defaultValue = {\n $$typeof: REACT_CONTEXT_TYPE,\n _currentValue: defaultValue,\n _currentValue2: defaultValue,\n _threadCount: 0,\n Provider: null,\n Consumer: null\n };\n defaultValue.Provider = defaultValue;\n defaultValue.Consumer = {\n $$typeof: REACT_CONSUMER_TYPE,\n _context: defaultValue\n };\n defaultValue._currentRenderer = null;\n defaultValue._currentRenderer2 = null;\n return defaultValue;\n };\n exports.createElement = function (type, config, children) {\n for (var i = 2; i < arguments.length; i++)\n validateChildKeys(arguments[i]);\n var propName;\n i = {};\n var key = null;\n if (null != config)\n for (propName in (didWarnAboutOldJSXRuntime ||\n !(\"__self\" in config) ||\n \"key\" in config ||\n ((didWarnAboutOldJSXRuntime = !0),\n console.warn(\n \"Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform\"\n )),\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (key = \"\" + config.key)),\n config))\n hasOwnProperty.call(config, propName) &&\n \"key\" !== propName &&\n \"__self\" !== propName &&\n \"__source\" !== propName &&\n (i[propName] = config[propName]);\n var childrenLength = arguments.length - 2;\n if (1 === childrenLength) i.children = children;\n else if (1 < childrenLength) {\n for (\n var childArray = Array(childrenLength), _i = 0;\n _i < childrenLength;\n _i++\n )\n childArray[_i] = arguments[_i + 2];\n Object.freeze && Object.freeze(childArray);\n i.children = childArray;\n }\n if (type && type.defaultProps)\n for (propName in ((childrenLength = type.defaultProps), childrenLength))\n void 0 === i[propName] && (i[propName] = childrenLength[propName]);\n key &&\n defineKeyPropWarningGetter(\n i,\n \"function\" === typeof type\n ? type.displayName || type.name || \"Unknown\"\n : type\n );\n (propName = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++)\n ? ((childArray = Error.stackTraceLimit),\n (Error.stackTraceLimit = 10),\n (childrenLength = Error(\"react-stack-top-frame\")),\n (Error.stackTraceLimit = childArray))\n : (childrenLength = unknownOwnerDebugStack);\n return ReactElement(\n type,\n key,\n i,\n getOwner(),\n childrenLength,\n propName ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n exports.createRef = function () {\n var refObject = { current: null };\n Object.seal(refObject);\n return refObject;\n };\n exports.forwardRef = function (render) {\n null != render && render.$$typeof === REACT_MEMO_TYPE\n ? console.error(\n \"forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).\"\n )\n : \"function\" !== typeof render\n ? console.error(\n \"forwardRef requires a render function but was given %s.\",\n null === render ? \"null\" : typeof render\n )\n : 0 !== render.length &&\n 2 !== render.length &&\n console.error(\n \"forwardRef render functions accept exactly two parameters: props and ref. %s\",\n 1 === render.length\n ? \"Did you forget to use the ref parameter?\"\n : \"Any additional parameter will be undefined.\"\n );\n null != render &&\n null != render.defaultProps &&\n console.error(\n \"forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?\"\n );\n var elementType = { $$typeof: REACT_FORWARD_REF_TYPE, render: render },\n ownName;\n Object.defineProperty(elementType, \"displayName\", {\n enumerable: !1,\n configurable: !0,\n get: function () {\n return ownName;\n },\n set: function (name) {\n ownName = name;\n render.name ||\n render.displayName ||\n (Object.defineProperty(render, \"name\", { value: name }),\n (render.displayName = name));\n }\n });\n return elementType;\n };\n exports.isValidElement = isValidElement;\n exports.lazy = function (ctor) {\n ctor = { _status: -1, _result: ctor };\n var lazyType = {\n $$typeof: REACT_LAZY_TYPE,\n _payload: ctor,\n _init: lazyInitializer\n },\n ioInfo = {\n name: \"lazy\",\n start: -1,\n end: -1,\n value: null,\n owner: null,\n debugStack: Error(\"react-stack-top-frame\"),\n debugTask: console.createTask ? console.createTask(\"lazy()\") : null\n };\n ctor._ioInfo = ioInfo;\n lazyType._debugInfo = [{ awaited: ioInfo }];\n return lazyType;\n };\n exports.memo = function (type, compare) {\n null == type &&\n console.error(\n \"memo: The first argument must be a component. Instead received: %s\",\n null === type ? \"null\" : typeof type\n );\n compare = {\n $$typeof: REACT_MEMO_TYPE,\n type: type,\n compare: void 0 === compare ? null : compare\n };\n var ownName;\n Object.defineProperty(compare, \"displayName\", {\n enumerable: !1,\n configurable: !0,\n get: function () {\n return ownName;\n },\n set: function (name) {\n ownName = name;\n type.name ||\n type.displayName ||\n (Object.defineProperty(type, \"name\", { value: name }),\n (type.displayName = name));\n }\n });\n return compare;\n };\n exports.startTransition = startTransition;\n exports.unstable_useCacheRefresh = function () {\n return resolveDispatcher().useCacheRefresh();\n };\n exports.use = function (usable) {\n return resolveDispatcher().use(usable);\n };\n exports.useActionState = function (action, initialState, permalink) {\n return resolveDispatcher().useActionState(\n action,\n initialState,\n permalink\n );\n };\n exports.useCallback = function (callback, deps) {\n return resolveDispatcher().useCallback(callback, deps);\n };\n exports.useContext = function (Context) {\n var dispatcher = resolveDispatcher();\n Context.$$typeof === REACT_CONSUMER_TYPE &&\n console.error(\n \"Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?\"\n );\n return dispatcher.useContext(Context);\n };\n exports.useDebugValue = function (value, formatterFn) {\n return resolveDispatcher().useDebugValue(value, formatterFn);\n };\n exports.useDeferredValue = function (value, initialValue) {\n return resolveDispatcher().useDeferredValue(value, initialValue);\n };\n exports.useEffect = function (create, deps) {\n null == create &&\n console.warn(\n \"React Hook useEffect requires an effect callback. Did you forget to pass a callback to the hook?\"\n );\n return resolveDispatcher().useEffect(create, deps);\n };\n exports.useEffectEvent = function (callback) {\n return resolveDispatcher().useEffectEvent(callback);\n };\n exports.useId = function () {\n return resolveDispatcher().useId();\n };\n exports.useImperativeHandle = function (ref, create, deps) {\n return resolveDispatcher().useImperativeHandle(ref, create, deps);\n };\n exports.useInsertionEffect = function (create, deps) {\n null == create &&\n console.warn(\n \"React Hook useInsertionEffect requires an effect callback. Did you forget to pass a callback to the hook?\"\n );\n return resolveDispatcher().useInsertionEffect(create, deps);\n };\n exports.useLayoutEffect = function (create, deps) {\n null == create &&\n console.warn(\n \"React Hook useLayoutEffect requires an effect callback. Did you forget to pass a callback to the hook?\"\n );\n return resolveDispatcher().useLayoutEffect(create, deps);\n };\n exports.useMemo = function (create, deps) {\n return resolveDispatcher().useMemo(create, deps);\n };\n exports.useOptimistic = function (passthrough, reducer) {\n return resolveDispatcher().useOptimistic(passthrough, reducer);\n };\n exports.useReducer = function (reducer, initialArg, init) {\n return resolveDispatcher().useReducer(reducer, initialArg, init);\n };\n exports.useRef = function (initialValue) {\n return resolveDispatcher().useRef(initialValue);\n };\n exports.useState = function (initialState) {\n return resolveDispatcher().useState(initialState);\n };\n exports.useSyncExternalStore = function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n return resolveDispatcher().useSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n };\n exports.useTransition = function () {\n return resolveDispatcher().useTransition();\n };\n exports.version = \"19.3.0-canary-f93b9fd4-20251217\";\n \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&\n \"function\" ===\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());\n })();\n"],"names":[],"mappings":"AAWiB;AAXjB;;;;;;;;CAQC,GAED;AACA,oEACE,AAAC;IACC,SAAS,yBAAyB,UAAU,EAAE,IAAI;QAChD,OAAO,cAAc,CAAC,UAAU,SAAS,EAAE,YAAY;YACrD,KAAK;gBACH,QAAQ,IAAI,CACV,+DACA,IAAI,CAAC,EAAE,EACP,IAAI,CAAC,EAAE;YAEX;QACF;IACF;IACA,SAAS,cAAc,aAAa;QAClC,IAAI,SAAS,iBAAiB,aAAa,OAAO,eAChD,OAAO;QACT,gBACE,AAAC,yBAAyB,aAAa,CAAC,sBAAsB,IAC9D,aAAa,CAAC,aAAa;QAC7B,OAAO,eAAe,OAAO,gBAAgB,gBAAgB;IAC/D;IACA,SAAS,SAAS,cAAc,EAAE,UAAU;QAC1C,iBACE,AAAC,CAAC,iBAAiB,eAAe,WAAW,KAC3C,CAAC,eAAe,WAAW,IAAI,eAAe,IAAI,KACpD;QACF,IAAI,aAAa,iBAAiB,MAAM;QACxC,uCAAuC,CAAC,WAAW,IACjD,CAAC,QAAQ,KAAK,CACZ,yPACA,YACA,iBAED,uCAAuC,CAAC,WAAW,GAAG,CAAC,CAAE;IAC9D;IACA,SAAS,UAAU,KAAK,EAAE,OAAO,EAAE,OAAO;QACxC,IAAI,CAAC,KAAK,GAAG;QACb,IAAI,CAAC,OAAO,GAAG;QACf,IAAI,CAAC,IAAI,GAAG;QACZ,IAAI,CAAC,OAAO,GAAG,WAAW;IAC5B;IACA,SAAS,kBAAkB;IAC3B,SAAS,cAAc,KAAK,EAAE,OAAO,EAAE,OAAO;QAC5C,IAAI,CAAC,KAAK,GAAG;QACb,IAAI,CAAC,OAAO,GAAG;QACf,IAAI,CAAC,IAAI,GAAG;QACZ,IAAI,CAAC,OAAO,GAAG,WAAW;IAC5B;IACA,SAAS,QAAQ;IACjB,SAAS,mBAAmB,KAAK;QAC/B,OAAO,KAAK;IACd;IACA,SAAS,uBAAuB,KAAK;QACnC,IAAI;YACF,mBAAmB;YACnB,IAAI,2BAA2B,CAAC;QAClC,EAAE,OAAO,GAAG;YACV,2BAA2B,CAAC;QAC9B;QACA,IAAI,0BAA0B;YAC5B,2BAA2B;YAC3B,IAAI,wBAAwB,yBAAyB,KAAK;YAC1D,IAAI,oCACF,AAAC,eAAe,OAAO,UACrB,OAAO,WAAW,IAClB,KAAK,CAAC,OAAO,WAAW,CAAC,IAC3B,MAAM,WAAW,CAAC,IAAI,IACtB;YACF,sBAAsB,IAAI,CACxB,0BACA,4GACA;YAEF,OAAO,mBAAmB;QAC5B;IACF;IACA,SAAS,yBAAyB,IAAI;QACpC,IAAI,QAAQ,MAAM,OAAO;QACzB,IAAI,eAAe,OAAO,MACxB,OAAO,KAAK,QAAQ,KAAK,yBACrB,OACA,KAAK,WAAW,IAAI,KAAK,IAAI,IAAI;QACvC,IAAI,aAAa,OAAO,MAAM,OAAO;QACrC,OAAQ;YACN,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;QACX;QACA,IAAI,aAAa,OAAO,MACtB,OACG,aAAa,OAAO,KAAK,GAAG,IAC3B,QAAQ,KAAK,CACX,sHAEJ,KAAK,QAAQ;YAEb,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO,KAAK,WAAW,IAAI;YAC7B,KAAK;gBACH,OAAO,CAAC,KAAK,QAAQ,CAAC,WAAW,IAAI,SAAS,IAAI;YACpD,KAAK;gBACH,IAAI,YAAY,KAAK,MAAM;gBAC3B,OAAO,KAAK,WAAW;gBACvB,QACE,CAAC,AAAC,OAAO,UAAU,WAAW,IAAI,UAAU,IAAI,IAAI,IACnD,OAAO,OAAO,OAAO,gBAAgB,OAAO,MAAM,YAAa;gBAClE,OAAO;YACT,KAAK;gBACH,OACE,AAAC,YAAY,KAAK,WAAW,IAAI,MACjC,SAAS,YACL,YACA,yBAAyB,KAAK,IAAI,KAAK;YAE/C,KAAK;gBACH,YAAY,KAAK,QAAQ;gBACzB,OAAO,KAAK,KAAK;gBACjB,IAAI;oBACF,OAAO,yBAAyB,KAAK;gBACvC,EAAE,OAAO,GAAG,CAAC;QACjB;QACF,OAAO;IACT;IACA,SAAS,YAAY,IAAI;QACvB,IAAI,SAAS,qBAAqB,OAAO;QACzC,IACE,aAAa,OAAO,QACpB,SAAS,QACT,KAAK,QAAQ,KAAK,iBAElB,OAAO;QACT,IAAI;YACF,IAAI,OAAO,yBAAyB;YACpC,OAAO,OAAO,MAAM,OAAO,MAAM;QACnC,EAAE,OAAO,GAAG;YACV,OAAO;QACT;IACF;IACA,SAAS;QACP,IAAI,aAAa,qBAAqB,CAAC;QACvC,OAAO,SAAS,aAAa,OAAO,WAAW,QAAQ;IACzD;IACA,SAAS;QACP,OAAO,MAAM;IACf;IACA,SAAS,YAAY,MAAM;QACzB,IAAI,eAAe,IAAI,CAAC,QAAQ,QAAQ;YACtC,IAAI,SAAS,OAAO,wBAAwB,CAAC,QAAQ,OAAO,GAAG;YAC/D,IAAI,UAAU,OAAO,cAAc,EAAE,OAAO,CAAC;QAC/C;QACA,OAAO,KAAK,MAAM,OAAO,GAAG;IAC9B;IACA,SAAS,2BAA2B,KAAK,EAAE,WAAW;QACpD,SAAS;YACP,8BACE,CAAC,AAAC,6BAA6B,CAAC,GAChC,QAAQ,KAAK,CACX,2OACA,YACD;QACL;QACA,sBAAsB,cAAc,GAAG,CAAC;QACxC,OAAO,cAAc,CAAC,OAAO,OAAO;YAClC,KAAK;YACL,cAAc,CAAC;QACjB;IACF;IACA,SAAS;QACP,IAAI,gBAAgB,yBAAyB,IAAI,CAAC,IAAI;QACtD,sBAAsB,CAAC,cAAc,IACnC,CAAC,AAAC,sBAAsB,CAAC,cAAc,GAAG,CAAC,GAC3C,QAAQ,KAAK,CACX,8IACD;QACH,gBAAgB,IAAI,CAAC,KAAK,CAAC,GAAG;QAC9B,OAAO,KAAK,MAAM,gBAAgB,gBAAgB;IACpD;IACA,SAAS,aAAa,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,SAAS;QAClE,IAAI,UAAU,MAAM,GAAG;QACvB,OAAO;YACL,UAAU;YACV,MAAM;YACN,KAAK;YACL,OAAO;YACP,QAAQ;QACV;QACA,SAAS,CAAC,KAAK,MAAM,UAAU,UAAU,IAAI,IACzC,OAAO,cAAc,CAAC,MAAM,OAAO;YACjC,YAAY,CAAC;YACb,KAAK;QACP,KACA,OAAO,cAAc,CAAC,MAAM,OAAO;YAAE,YAAY,CAAC;YAAG,OAAO;QAAK;QACrE,KAAK,MAAM,GAAG,CAAC;QACf,OAAO,cAAc,CAAC,KAAK,MAAM,EAAE,aAAa;YAC9C,cAAc,CAAC;YACf,YAAY,CAAC;YACb,UAAU,CAAC;YACX,OAAO;QACT;QACA,OAAO,cAAc,CAAC,MAAM,cAAc;YACxC,cAAc,CAAC;YACf,YAAY,CAAC;YACb,UAAU,CAAC;YACX,OAAO;QACT;QACA,OAAO,cAAc,CAAC,MAAM,eAAe;YACzC,cAAc,CAAC;YACf,YAAY,CAAC;YACb,UAAU,CAAC;YACX,OAAO;QACT;QACA,OAAO,cAAc,CAAC,MAAM,cAAc;YACxC,cAAc,CAAC;YACf,YAAY,CAAC;YACb,UAAU,CAAC;YACX,OAAO;QACT;QACA,OAAO,MAAM,IAAI,CAAC,OAAO,MAAM,CAAC,KAAK,KAAK,GAAG,OAAO,MAAM,CAAC,KAAK;QAChE,OAAO;IACT;IACA,SAAS,mBAAmB,UAAU,EAAE,MAAM;QAC5C,SAAS,aACP,WAAW,IAAI,EACf,QACA,WAAW,KAAK,EAChB,WAAW,MAAM,EACjB,WAAW,WAAW,EACtB,WAAW,UAAU;QAEvB,WAAW,MAAM,IACf,CAAC,OAAO,MAAM,CAAC,SAAS,GAAG,WAAW,MAAM,CAAC,SAAS;QACxD,OAAO;IACT;IACA,SAAS,kBAAkB,IAAI;QAC7B,eAAe,QACX,KAAK,MAAM,IAAI,CAAC,KAAK,MAAM,CAAC,SAAS,GAAG,CAAC,IACzC,aAAa,OAAO,QACpB,SAAS,QACT,KAAK,QAAQ,KAAK,mBAClB,CAAC,gBAAgB,KAAK,QAAQ,CAAC,MAAM,GACjC,eAAe,KAAK,QAAQ,CAAC,KAAK,KAClC,KAAK,QAAQ,CAAC,KAAK,CAAC,MAAM,IAC1B,CAAC,KAAK,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC,IACzC,KAAK,MAAM,IAAI,CAAC,KAAK,MAAM,CAAC,SAAS,GAAG,CAAC,CAAC;IACpD;IACA,SAAS,eAAe,MAAM;QAC5B,OACE,aAAa,OAAO,UACpB,SAAS,UACT,OAAO,QAAQ,KAAK;IAExB;IACA,SAAS,OAAO,GAAG;QACjB,IAAI,gBAAgB;YAAE,KAAK;YAAM,KAAK;QAAK;QAC3C,OACE,MACA,IAAI,OAAO,CAAC,SAAS,SAAU,KAAK;YAClC,OAAO,aAAa,CAAC,MAAM;QAC7B;IAEJ;IACA,SAAS,cAAc,OAAO,EAAE,KAAK;QACnC,OAAO,aAAa,OAAO,WACzB,SAAS,WACT,QAAQ,QAAQ,GAAG,GACjB,CAAC,uBAAuB,QAAQ,GAAG,GAAG,OAAO,KAAK,QAAQ,GAAG,CAAC,IAC9D,MAAM,QAAQ,CAAC;IACrB;IACA,SAAS,gBAAgB,QAAQ;QAC/B,OAAQ,SAAS,MAAM;YACrB,KAAK;gBACH,OAAO,SAAS,KAAK;YACvB,KAAK;gBACH,MAAM,SAAS,MAAM;YACvB;gBACE,OACG,aAAa,OAAO,SAAS,MAAM,GAChC,SAAS,IAAI,CAAC,MAAM,QACpB,CAAC,AAAC,SAAS,MAAM,GAAG,WACpB,SAAS,IAAI,CACX,SAAU,cAAc;oBACtB,cAAc,SAAS,MAAM,IAC3B,CAAC,AAAC,SAAS,MAAM,GAAG,aACnB,SAAS,KAAK,GAAG,cAAe;gBACrC,GACA,SAAU,KAAK;oBACb,cAAc,SAAS,MAAM,IAC3B,CAAC,AAAC,SAAS,MAAM,GAAG,YACnB,SAAS,MAAM,GAAG,KAAM;gBAC7B,EACD,GACL,SAAS,MAAM;oBAEf,KAAK;wBACH,OAAO,SAAS,KAAK;oBACvB,KAAK;wBACH,MAAM,SAAS,MAAM;gBACzB;QACJ;QACA,MAAM;IACR;IACA,SAAS,aAAa,QAAQ,EAAE,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,QAAQ;QACvE,IAAI,OAAO,OAAO;QAClB,IAAI,gBAAgB,QAAQ,cAAc,MAAM,WAAW;QAC3D,IAAI,iBAAiB,CAAC;QACtB,IAAI,SAAS,UAAU,iBAAiB,CAAC;aAEvC,OAAQ;YACN,KAAK;YACL,KAAK;YACL,KAAK;gBACH,iBAAiB,CAAC;gBAClB;YACF,KAAK;gBACH,OAAQ,SAAS,QAAQ;oBACvB,KAAK;oBACL,KAAK;wBACH,iBAAiB,CAAC;wBAClB;oBACF,KAAK;wBACH,OACE,AAAC,iBAAiB,SAAS,KAAK,EAChC,aACE,eAAe,SAAS,QAAQ,GAChC,OACA,eACA,WACA;gBAGR;QACJ;QACF,IAAI,gBAAgB;YAClB,iBAAiB;YACjB,WAAW,SAAS;YACpB,IAAI,WACF,OAAO,YAAY,MAAM,cAAc,gBAAgB,KAAK;YAC9D,YAAY,YACR,CAAC,AAAC,gBAAgB,IAClB,QAAQ,YACN,CAAC,gBACC,SAAS,OAAO,CAAC,4BAA4B,SAAS,GAAG,GAC7D,aAAa,UAAU,OAAO,eAAe,IAAI,SAAU,CAAC;gBAC1D,OAAO;YACT,EAAE,IACF,QAAQ,YACR,CAAC,eAAe,aACd,CAAC,QAAQ,SAAS,GAAG,IACnB,CAAC,AAAC,kBAAkB,eAAe,GAAG,KAAK,SAAS,GAAG,IACrD,uBAAuB,SAAS,GAAG,CAAC,GACvC,gBAAgB,mBACf,UACA,gBACE,CAAC,QAAQ,SAAS,GAAG,IACpB,kBAAkB,eAAe,GAAG,KAAK,SAAS,GAAG,GAClD,KACA,CAAC,KAAK,SAAS,GAAG,EAAE,OAAO,CACzB,4BACA,SACE,GAAG,IACX,WAEJ,OAAO,aACL,QAAQ,kBACR,eAAe,mBACf,QAAQ,eAAe,GAAG,IAC1B,eAAe,MAAM,IACrB,CAAC,eAAe,MAAM,CAAC,SAAS,IAChC,CAAC,cAAc,MAAM,CAAC,SAAS,GAAG,CAAC,GACpC,WAAW,aAAc,GAC5B,MAAM,IAAI,CAAC,SAAS;YACxB,OAAO;QACT;QACA,iBAAiB;QACjB,WAAW,OAAO,YAAY,MAAM,YAAY;QAChD,IAAI,YAAY,WACd,IAAK,IAAI,IAAI,GAAG,IAAI,SAAS,MAAM,EAAE,IACnC,AAAC,YAAY,QAAQ,CAAC,EAAE,EACrB,OAAO,WAAW,cAAc,WAAW,IAC3C,kBAAkB,aACjB,WACA,OACA,eACA,MACA;aAEH,IAAK,AAAC,IAAI,cAAc,WAAY,eAAe,OAAO,GAC7D,IACE,MAAM,SAAS,OAAO,IACpB,CAAC,oBACC,QAAQ,IAAI,CACV,0FAEH,mBAAmB,CAAC,CAAE,GACvB,WAAW,EAAE,IAAI,CAAC,WAClB,IAAI,GACN,CAAC,CAAC,YAAY,SAAS,IAAI,EAAE,EAAE,IAAI,EAGnC,AAAC,YAAY,UAAU,KAAK,EACzB,OAAO,WAAW,cAAc,WAAW,MAC3C,kBAAkB,aACjB,WACA,OACA,eACA,MACA;aAEH,IAAI,aAAa,MAAM;YAC1B,IAAI,eAAe,OAAO,SAAS,IAAI,EACrC,OAAO,aACL,gBAAgB,WAChB,OACA,eACA,WACA;YAEJ,QAAQ,OAAO;YACf,MAAM,MACJ,oDACE,CAAC,sBAAsB,QACnB,uBAAuB,OAAO,IAAI,CAAC,UAAU,IAAI,CAAC,QAAQ,MAC1D,KAAK,IACT;QAEN;QACA,OAAO;IACT;IACA,SAAS,YAAY,QAAQ,EAAE,IAAI,EAAE,OAAO;QAC1C,IAAI,QAAQ,UAAU,OAAO;QAC7B,IAAI,SAAS,EAAE,EACb,QAAQ;QACV,aAAa,UAAU,QAAQ,IAAI,IAAI,SAAU,KAAK;YACpD,OAAO,KAAK,IAAI,CAAC,SAAS,OAAO;QACnC;QACA,OAAO;IACT;IACA,SAAS,gBAAgB,OAAO;QAC9B,IAAI,CAAC,MAAM,QAAQ,OAAO,EAAE;YAC1B,IAAI,oBAAoB,MACtB,mBAAmB,MACnB,SAAS,QAAQ,OAAO;YAC1B,QAAQ,UACN,CAAC,AAAC,OAAO,KAAK,GAAG,OAAO,GAAG,GAAG,YAAY,GAAG,IAC5C,OAAO,KAAK,GAAG,IAAI,QAAQ,SAAU,OAAO,EAAE,MAAM;gBACnD,oBAAoB;gBACpB,mBAAmB;YACrB,EAAG;YACL,SAAS,QAAQ,OAAO;YACxB,IAAI,WAAW;YACf,SAAS,IAAI,CACX,SAAU,YAAY;gBACpB,IAAI,MAAM,QAAQ,OAAO,IAAI,CAAC,MAAM,QAAQ,OAAO,EAAE;oBACnD,QAAQ,OAAO,GAAG;oBAClB,QAAQ,OAAO,GAAG;oBAClB,IAAI,UAAU,QAAQ,OAAO;oBAC7B,IAAI,QAAQ,SAAS;wBACnB,QAAQ,GAAG,GAAG,YAAY,GAAG;wBAC7B,IAAI,aACF,QAAQ,eAAe,KAAK,IAAI,aAAa,OAAO;wBACtD,kBAAkB;wBAClB,QAAQ,KAAK,CAAC,MAAM,GAAG;wBACvB,QAAQ,KAAK,CAAC,KAAK,GAAG;oBACxB;oBACA,KAAK,MAAM,SAAS,MAAM,IACxB,CAAC,AAAC,SAAS,MAAM,GAAG,aACnB,SAAS,KAAK,GAAG,YAAa;gBACnC;YACF,GACA,SAAU,KAAK;gBACb,IAAI,MAAM,QAAQ,OAAO,IAAI,CAAC,MAAM,QAAQ,OAAO,EAAE;oBACnD,QAAQ,OAAO,GAAG;oBAClB,QAAQ,OAAO,GAAG;oBAClB,IAAI,WAAW,QAAQ,OAAO;oBAC9B,QAAQ,YACN,CAAC,AAAC,SAAS,GAAG,GAAG,YAAY,GAAG,IAChC,SAAS,KAAK,CAAC,IAAI,CAAC,MAAM,OAC1B,iBAAiB,QAChB,SAAS,KAAK,CAAC,MAAM,GAAG,YACxB,SAAS,KAAK,CAAC,MAAM,GAAG,KAAM;oBACjC,KAAK,MAAM,SAAS,MAAM,IACxB,CAAC,AAAC,SAAS,MAAM,GAAG,YAAc,SAAS,MAAM,GAAG,KAAM;gBAC9D;YACF;YAEF,SAAS,QAAQ,OAAO;YACxB,IAAI,QAAQ,QAAQ;gBAClB,IAAI,cAAc,SAAS,WAAW;gBACtC,aAAa,OAAO,eAAe,CAAC,OAAO,IAAI,GAAG,WAAW;YAC/D;YACA,CAAC,MAAM,QAAQ,OAAO,IACpB,CAAC,AAAC,QAAQ,OAAO,GAAG,GAAK,QAAQ,OAAO,GAAG,QAAS;QACxD;QACA,IAAI,MAAM,QAAQ,OAAO,EACvB,OACE,AAAC,SAAS,QAAQ,OAAO,EACzB,KAAK,MAAM,UACT,QAAQ,KAAK,CACX,qOACA,SAEJ,aAAa,UACX,QAAQ,KAAK,CACX,yKACA,SAEJ,OAAO,OAAO;QAElB,MAAM,QAAQ,OAAO;IACvB;IACA,SAAS;QACP,IAAI,aAAa,qBAAqB,CAAC;QACvC,SAAS,cACP,QAAQ,KAAK,CACX;QAEJ,OAAO;IACT;IACA,SAAS;QACP,qBAAqB,gBAAgB;IACvC;IACA,SAAS,gBAAgB,KAAK;QAC5B,IAAI,iBAAiB,qBAAqB,CAAC,EACzC,oBAAoB,CAAC;QACvB,kBAAkB,KAAK,GACrB,SAAS,iBAAiB,eAAe,KAAK,GAAG;QACnD,kBAAkB,cAAc,GAAG,IAAI;QACvC,qBAAqB,CAAC,GAAG;QACzB,IAAI;YACF,IAAI,cAAc,SAChB,0BAA0B,qBAAqB,CAAC;YAClD,SAAS,2BACP,wBAAwB,mBAAmB;YAC7C,aAAa,OAAO,eAClB,SAAS,eACT,eAAe,OAAO,YAAY,IAAI,IACtC,CAAC,qBAAqB,gBAAgB,IACtC,YAAY,IAAI,CAAC,wBAAwB,yBACzC,YAAY,IAAI,CAAC,MAAM,kBAAkB;QAC7C,EAAE,OAAO,OAAO;YACd,kBAAkB;QACpB,SAAU;YACR,SAAS,kBACP,kBAAkB,cAAc,IAChC,CAAC,AAAC,QAAQ,kBAAkB,cAAc,CAAC,IAAI,EAC/C,kBAAkB,cAAc,CAAC,KAAK,IACtC,KAAK,SACH,QAAQ,IAAI,CACV,sMACD,GACH,SAAS,kBACP,SAAS,kBAAkB,KAAK,IAChC,CAAC,SAAS,eAAe,KAAK,IAC5B,eAAe,KAAK,KAAK,kBAAkB,KAAK,IAChD,QAAQ,KAAK,CACX,yKAEH,eAAe,KAAK,GAAG,kBAAkB,KAAK,AAAC,GACjD,qBAAqB,CAAC,GAAG;QAC9B;IACF;IACA,SAAS,kBAAkB,IAAI;QAC7B,IAAI,aAAa,qBAAqB,CAAC;QACvC,IAAI,SAAS,YAAY;YACvB,IAAI,kBAAkB,WAAW,KAAK;YACtC,SAAS,kBACJ,WAAW,KAAK,GAAG;gBAAC;aAAK,GAC1B,CAAC,MAAM,gBAAgB,OAAO,CAAC,SAAS,gBAAgB,IAAI,CAAC;QACnE,OACE,MAAM,qBAAqB,gBAAgB,IACzC,QAAQ,KAAK,CACX,kIAEF,gBAAgB,kBAAkB,IAAI,CAAC,MAAM;IACnD;IACA,SAAS,YAAY,IAAI;QACvB,IAAI,SAAS,iBACX,IAAI;YACF,IAAI,gBAAgB,CAAC,YAAY,KAAK,MAAM,EAAE,EAAE,KAAK,CAAC,GAAG;YACzD,kBAAkB,CAAC,UAAU,MAAM,CAAC,cAAc,EAAE,IAAI,CACtD,QACA,UACA,YAAY;QAChB,EAAE,OAAO,MAAM;YACb,kBAAkB,SAAU,QAAQ;gBAClC,CAAC,MAAM,8BACL,CAAC,AAAC,6BAA6B,CAAC,GAChC,gBAAgB,OAAO,kBACrB,QAAQ,KAAK,CACX,2NACD;gBACL,IAAI,UAAU,IAAI;gBAClB,QAAQ,KAAK,CAAC,SAAS,GAAG;gBAC1B,QAAQ,KAAK,CAAC,WAAW,CAAC,KAAK;YACjC;QACF;QACF,OAAO,gBAAgB;IACzB;IACA,SAAS,gBAAgB,MAAM;QAC7B,OAAO,IAAI,OAAO,MAAM,IAAI,eAAe,OAAO,iBAC9C,IAAI,eAAe,UACnB,MAAM,CAAC,EAAE;IACf;IACA,SAAS,YAAY,YAAY,EAAE,iBAAiB;QAClD,sBAAsB,gBAAgB,KACpC,QAAQ,KAAK,CACX;QAEJ,gBAAgB;IAClB;IACA,SAAS,6BAA6B,WAAW,EAAE,OAAO,EAAE,MAAM;QAChE,IAAI,QAAQ,qBAAqB,QAAQ;QACzC,IAAI,SAAS,OACX,IAAI,MAAM,MAAM,MAAM,EACpB,IAAI;YACF,cAAc;YACd,YAAY;gBACV,OAAO,6BAA6B,aAAa,SAAS;YAC5D;YACA;QACF,EAAE,OAAO,OAAO;YACd,qBAAqB,YAAY,CAAC,IAAI,CAAC;QACzC;aACG,qBAAqB,QAAQ,GAAG;QACvC,IAAI,qBAAqB,YAAY,CAAC,MAAM,GACxC,CAAC,AAAC,QAAQ,gBAAgB,qBAAqB,YAAY,GAC1D,qBAAqB,YAAY,CAAC,MAAM,GAAG,GAC5C,OAAO,MAAM,IACb,QAAQ;IACd;IACA,SAAS,cAAc,KAAK;QAC1B,IAAI,CAAC,YAAY;YACf,aAAa,CAAC;YACd,IAAI,IAAI;YACR,IAAI;gBACF,MAAO,IAAI,MAAM,MAAM,EAAE,IAAK;oBAC5B,IAAI,WAAW,KAAK,CAAC,EAAE;oBACvB,GAAG;wBACD,qBAAqB,aAAa,GAAG,CAAC;wBACtC,IAAI,eAAe,SAAS,CAAC;wBAC7B,IAAI,SAAS,cAAc;4BACzB,IAAI,qBAAqB,aAAa,EAAE;gCACtC,KAAK,CAAC,EAAE,GAAG;gCACX,MAAM,MAAM,CAAC,GAAG;gCAChB;4BACF;4BACA,WAAW;wBACb,OAAO;oBACT,QAAS,EAAG;gBACd;gBACA,MAAM,MAAM,GAAG;YACjB,EAAE,OAAO,OAAO;gBACd,MAAM,MAAM,CAAC,GAAG,IAAI,IAAI,qBAAqB,YAAY,CAAC,IAAI,CAAC;YACjE,SAAU;gBACR,aAAa,CAAC;YAChB;QACF;IACF;IACA,gBAAgB,OAAO,kCACrB,eACE,OAAO,+BAA+B,2BAA2B,IACnE,+BAA+B,2BAA2B,CAAC;IAC7D,IAAI,qBAAqB,OAAO,GAAG,CAAC,+BAClC,oBAAoB,OAAO,GAAG,CAAC,iBAC/B,sBAAsB,OAAO,GAAG,CAAC,mBACjC,yBAAyB,OAAO,GAAG,CAAC,sBACpC,sBAAsB,OAAO,GAAG,CAAC,mBACjC,sBAAsB,OAAO,GAAG,CAAC,mBACjC,qBAAqB,OAAO,GAAG,CAAC,kBAChC,yBAAyB,OAAO,GAAG,CAAC,sBACpC,sBAAsB,OAAO,GAAG,CAAC,mBACjC,2BAA2B,OAAO,GAAG,CAAC,wBACtC,kBAAkB,OAAO,GAAG,CAAC,eAC7B,kBAAkB,OAAO,GAAG,CAAC,eAC7B,sBAAsB,OAAO,GAAG,CAAC,mBACjC,6BAA6B,OAAO,GAAG,CAAC,0BACxC,wBAAwB,OAAO,QAAQ,EACvC,0CAA0C,CAAC,GAC3C,uBAAuB;QACrB,WAAW;YACT,OAAO,CAAC;QACV;QACA,oBAAoB,SAAU,cAAc;YAC1C,SAAS,gBAAgB;QAC3B;QACA,qBAAqB,SAAU,cAAc;YAC3C,SAAS,gBAAgB;QAC3B;QACA,iBAAiB,SAAU,cAAc;YACvC,SAAS,gBAAgB;QAC3B;IACF,GACA,SAAS,OAAO,MAAM,EACtB,cAAc,CAAC;IACjB,OAAO,MAAM,CAAC;IACd,UAAU,SAAS,CAAC,gBAAgB,GAAG,CAAC;IACxC,UAAU,SAAS,CAAC,QAAQ,GAAG,SAAU,YAAY,EAAE,QAAQ;QAC7D,IACE,aAAa,OAAO,gBACpB,eAAe,OAAO,gBACtB,QAAQ,cAER,MAAM,MACJ;QAEJ,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,IAAI,EAAE,cAAc,UAAU;IAC7D;IACA,UAAU,SAAS,CAAC,WAAW,GAAG,SAAU,QAAQ;QAClD,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC,IAAI,EAAE,UAAU;IAClD;IACA,IAAI,iBAAiB;QACnB,WAAW;YACT;YACA;SACD;QACD,cAAc;YACZ;YACA;SACD;IACH;IACA,IAAK,UAAU,eACb,eAAe,cAAc,CAAC,WAC5B,yBAAyB,QAAQ,cAAc,CAAC,OAAO;IAC3D,eAAe,SAAS,GAAG,UAAU,SAAS;IAC9C,iBAAiB,cAAc,SAAS,GAAG,IAAI;IAC/C,eAAe,WAAW,GAAG;IAC7B,OAAO,gBAAgB,UAAU,SAAS;IAC1C,eAAe,oBAAoB,GAAG,CAAC;IACvC,IAAI,cAAc,MAAM,OAAO,EAC7B,yBAAyB,OAAO,GAAG,CAAC,2BACpC,uBAAuB;QACrB,GAAG;QACH,GAAG;QACH,GAAG;QACH,GAAG;QACH,UAAU;QACV,kBAAkB;QAClB,kBAAkB,CAAC;QACnB,yBAAyB,CAAC;QAC1B,eAAe,CAAC;QAChB,cAAc,EAAE;QAChB,iBAAiB;QACjB,4BAA4B;IAC9B,GACA,iBAAiB,OAAO,SAAS,CAAC,cAAc,EAChD,aAAa,QAAQ,UAAU,GAC3B,QAAQ,UAAU,GAClB;QACE,OAAO;IACT;IACN,iBAAiB;QACf,0BAA0B,SAAU,iBAAiB;YACnD,OAAO;QACT;IACF;IACA,IAAI,4BAA4B;IAChC,IAAI,yBAAyB,CAAC;IAC9B,IAAI,yBAAyB,eAAe,wBAAwB,CAAC,IAAI,CACvE,gBACA;IAEF,IAAI,wBAAwB,WAAW,YAAY;IACnD,IAAI,mBAAmB,CAAC,GACtB,6BAA6B,QAC7B,oBACE,eAAe,OAAO,cAClB,cACA,SAAU,KAAK;QACb,IACE,aAAa,OAAO,UACpB,eAAe,OAAO,OAAO,UAAU,EACvC;YACA,IAAI,QAAQ,IAAI,OAAO,UAAU,CAAC,SAAS;gBACzC,SAAS,CAAC;gBACV,YAAY,CAAC;gBACb,SACE,aAAa,OAAO,SACpB,SAAS,SACT,aAAa,OAAO,MAAM,OAAO,GAC7B,OAAO,MAAM,OAAO,IACpB,OAAO;gBACb,OAAO;YACT;YACA,IAAI,CAAC,OAAO,aAAa,CAAC,QAAQ;QACpC,OAAO,IACL,aAAa,OAAO,2KAAO,IAC3B,eAAe,OAAO,2KAAO,CAAC,IAAI,EAClC;YACA,2KAAO,CAAC,IAAI,CAAC,qBAAqB;YAClC;QACF;QACA,QAAQ,KAAK,CAAC;IAChB,GACN,6BAA6B,CAAC,GAC9B,kBAAkB,MAClB,gBAAgB,GAChB,oBAAoB,CAAC,GACrB,aAAa,CAAC,GACd,yBACE,eAAe,OAAO,iBAClB,SAAU,QAAQ;QAChB,eAAe;YACb,OAAO,eAAe;QACxB;IACF,IACA;IACR,iBAAiB,OAAO,MAAM,CAAC;QAC7B,WAAW;QACX,GAAG,SAAU,IAAI;YACf,OAAO,oBAAoB,YAAY,CAAC;QAC1C;IACF;IACA,IAAI,SAAS;QACX,KAAK;QACL,SAAS,SAAU,QAAQ,EAAE,WAAW,EAAE,cAAc;YACtD,YACE,UACA;gBACE,YAAY,KAAK,CAAC,IAAI,EAAE;YAC1B,GACA;QAEJ;QACA,OAAO,SAAU,QAAQ;YACvB,IAAI,IAAI;YACR,YAAY,UAAU;gBACpB;YACF;YACA,OAAO;QACT;QACA,SAAS,SAAU,QAAQ;YACzB,OACE,YAAY,UAAU,SAAU,KAAK;gBACnC,OAAO;YACT,MAAM,EAAE;QAEZ;QACA,MAAM,SAAU,QAAQ;YACtB,IAAI,CAAC,eAAe,WAClB,MAAM,MACJ;YAEJ,OAAO;QACT;IACF;IACA,QAAQ,QAAQ,GAAG;IACnB,QAAQ,QAAQ,GAAG;IACnB,QAAQ,SAAS,GAAG;IACpB,QAAQ,QAAQ,GAAG;IACnB,QAAQ,QAAQ,GAAG;IACnB,QAAQ,aAAa,GAAG;IACxB,QAAQ,UAAU,GAAG;IACrB,QAAQ,QAAQ,GAAG;IACnB,QAAQ,cAAc,GAAG;IACzB,QAAQ,+DAA+D,GACrE;IACF,QAAQ,kBAAkB,GAAG;IAC7B,QAAQ,GAAG,GAAG,SAAU,QAAQ;QAC9B,IAAI,eAAe,qBAAqB,QAAQ,EAC9C,oBAAoB;QACtB;QACA,IAAI,QAAS,qBAAqB,QAAQ,GACtC,SAAS,eAAe,eAAe,EAAE,EAC3C,kBAAkB,CAAC;QACrB,IAAI;YACF,IAAI,SAAS;QACf,EAAE,OAAO,OAAO;YACd,qBAAqB,YAAY,CAAC,IAAI,CAAC;QACzC;QACA,IAAI,IAAI,qBAAqB,YAAY,CAAC,MAAM,EAC9C,MACG,YAAY,cAAc,oBAC1B,WAAW,gBAAgB,qBAAqB,YAAY,GAC5D,qBAAqB,YAAY,CAAC,MAAM,GAAG,GAC5C;QAEJ,IACE,SAAS,UACT,aAAa,OAAO,UACpB,eAAe,OAAO,OAAO,IAAI,EACjC;YACA,IAAI,WAAW;YACf,uBAAuB;gBACrB,mBACE,qBACA,CAAC,AAAC,oBAAoB,CAAC,GACvB,QAAQ,KAAK,CACX,oMACD;YACL;YACA,OAAO;gBACL,MAAM,SAAU,OAAO,EAAE,MAAM;oBAC7B,kBAAkB,CAAC;oBACnB,SAAS,IAAI,CACX,SAAU,WAAW;wBACnB,YAAY,cAAc;wBAC1B,IAAI,MAAM,mBAAmB;4BAC3B,IAAI;gCACF,cAAc,QACZ,YAAY;oCACV,OAAO,6BACL,aACA,SACA;gCAEJ;4BACJ,EAAE,OAAO,SAAS;gCAChB,qBAAqB,YAAY,CAAC,IAAI,CAAC;4BACzC;4BACA,IAAI,IAAI,qBAAqB,YAAY,CAAC,MAAM,EAAE;gCAChD,IAAI,eAAe,gBACjB,qBAAqB,YAAY;gCAEnC,qBAAqB,YAAY,CAAC,MAAM,GAAG;gCAC3C,OAAO;4BACT;wBACF,OAAO,QAAQ;oBACjB,GACA,SAAU,KAAK;wBACb,YAAY,cAAc;wBAC1B,IAAI,qBAAqB,YAAY,CAAC,MAAM,GACxC,CAAC,AAAC,QAAQ,gBACR,qBAAqB,YAAY,GAElC,qBAAqB,YAAY,CAAC,MAAM,GAAG,GAC5C,OAAO,MAAM,IACb,OAAO;oBACb;gBAEJ;YACF;QACF;QACA,IAAI,uBAAuB;QAC3B,YAAY,cAAc;QAC1B,MAAM,qBACJ,CAAC,cAAc,QACf,MAAM,MAAM,MAAM,IAChB,uBAAuB;YACrB,mBACE,qBACA,CAAC,AAAC,oBAAoB,CAAC,GACvB,QAAQ,KAAK,CACX,sMACD;QACL,IACD,qBAAqB,QAAQ,GAAG,IAAK;QACxC,IAAI,IAAI,qBAAqB,YAAY,CAAC,MAAM,EAC9C,MACG,AAAC,WAAW,gBAAgB,qBAAqB,YAAY,GAC7D,qBAAqB,YAAY,CAAC,MAAM,GAAG,GAC5C;QAEJ,OAAO;YACL,MAAM,SAAU,OAAO,EAAE,MAAM;gBAC7B,kBAAkB,CAAC;gBACnB,MAAM,oBACF,CAAC,AAAC,qBAAqB,QAAQ,GAAG,OAClC,YAAY;oBACV,OAAO,6BACL,sBACA,SACA;gBAEJ,EAAE,IACF,QAAQ;YACd;QACF;IACF;IACA,QAAQ,iBAAiB,GAAG;IAC5B,QAAQ,KAAK,GAAG,SAAU,EAAE;QAC1B,OAAO;YACL,OAAO,GAAG,KAAK,CAAC,MAAM;QACxB;IACF;IACA,QAAQ,WAAW,GAAG;QACpB,OAAO;IACT;IACA,QAAQ,iBAAiB,GAAG;QAC1B,IAAI,kBAAkB,qBAAqB,eAAe;QAC1D,OAAO,SAAS,kBAAkB,OAAO;IAC3C;IACA,QAAQ,YAAY,GAAG,SAAU,OAAO,EAAE,MAAM,EAAE,QAAQ;QACxD,IAAI,SAAS,WAAW,KAAK,MAAM,SACjC,MAAM,MACJ,0DACE,UACA;QAEN,IAAI,QAAQ,OAAO,CAAC,GAAG,QAAQ,KAAK,GAClC,MAAM,QAAQ,GAAG,EACjB,QAAQ,QAAQ,MAAM;QACxB,IAAI,QAAQ,QAAQ;YAClB,IAAI;YACJ,GAAG;gBACD,IACE,eAAe,IAAI,CAAC,QAAQ,UAC5B,CAAC,2BAA2B,OAAO,wBAAwB,CACzD,QACA,OACA,GAAG,KACL,yBAAyB,cAAc,EACvC;oBACA,2BAA2B,CAAC;oBAC5B,MAAM;gBACR;gBACA,2BAA2B,KAAK,MAAM,OAAO,GAAG;YAClD;YACA,4BAA4B,CAAC,QAAQ,UAAU;YAC/C,YAAY,WACV,CAAC,uBAAuB,OAAO,GAAG,GAAI,MAAM,KAAK,OAAO,GAAG,AAAC;YAC9D,IAAK,YAAY,OACf,CAAC,eAAe,IAAI,CAAC,QAAQ,aAC3B,UAAU,YACV,aAAa,YACb,eAAe,YACd,UAAU,YAAY,KAAK,MAAM,OAAO,GAAG,IAC5C,CAAC,KAAK,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS;QACzC;QACA,IAAI,WAAW,UAAU,MAAM,GAAG;QAClC,IAAI,MAAM,UAAU,MAAM,QAAQ,GAAG;aAChC,IAAI,IAAI,UAAU;YACrB,2BAA2B,MAAM;YACjC,IAAK,IAAI,IAAI,GAAG,IAAI,UAAU,IAC5B,wBAAwB,CAAC,EAAE,GAAG,SAAS,CAAC,IAAI,EAAE;YAChD,MAAM,QAAQ,GAAG;QACnB;QACA,QAAQ,aACN,QAAQ,IAAI,EACZ,KACA,OACA,OACA,QAAQ,WAAW,EACnB,QAAQ,UAAU;QAEpB,IAAK,MAAM,GAAG,MAAM,UAAU,MAAM,EAAE,MACpC,kBAAkB,SAAS,CAAC,IAAI;QAClC,OAAO;IACT;IACA,QAAQ,aAAa,GAAG,SAAU,YAAY;QAC5C,eAAe;YACb,UAAU;YACV,eAAe;YACf,gBAAgB;YAChB,cAAc;YACd,UAAU;YACV,UAAU;QACZ;QACA,aAAa,QAAQ,GAAG;QACxB,aAAa,QAAQ,GAAG;YACtB,UAAU;YACV,UAAU;QACZ;QACA,aAAa,gBAAgB,GAAG;QAChC,aAAa,iBAAiB,GAAG;QACjC,OAAO;IACT;IACA,QAAQ,aAAa,GAAG,SAAU,IAAI,EAAE,MAAM,EAAE,QAAQ;QACtD,IAAK,IAAI,IAAI,GAAG,IAAI,UAAU,MAAM,EAAE,IACpC,kBAAkB,SAAS,CAAC,EAAE;QAChC,IAAI;QACJ,IAAI,CAAC;QACL,IAAI,MAAM;QACV,IAAI,QAAQ,QACV,IAAK,YAAa,6BAChB,CAAC,CAAC,YAAY,MAAM,KACpB,SAAS,UACT,CAAC,AAAC,4BAA4B,CAAC,GAC/B,QAAQ,IAAI,CACV,gLACD,GACH,YAAY,WACV,CAAC,uBAAuB,OAAO,GAAG,GAAI,MAAM,KAAK,OAAO,GAAG,AAAC,GAC9D,OACE,eAAe,IAAI,CAAC,QAAQ,aAC1B,UAAU,YACV,aAAa,YACb,eAAe,YACf,CAAC,CAAC,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS;QACrC,IAAI,iBAAiB,UAAU,MAAM,GAAG;QACxC,IAAI,MAAM,gBAAgB,EAAE,QAAQ,GAAG;aAClC,IAAI,IAAI,gBAAgB;YAC3B,IACE,IAAI,aAAa,MAAM,iBAAiB,KAAK,GAC7C,KAAK,gBACL,KAEA,UAAU,CAAC,GAAG,GAAG,SAAS,CAAC,KAAK,EAAE;YACpC,OAAO,MAAM,IAAI,OAAO,MAAM,CAAC;YAC/B,EAAE,QAAQ,GAAG;QACf;QACA,IAAI,QAAQ,KAAK,YAAY,EAC3B,IAAK,YAAa,AAAC,iBAAiB,KAAK,YAAY,EAAG,eACtD,KAAK,MAAM,CAAC,CAAC,SAAS,IAAI,CAAC,CAAC,CAAC,SAAS,GAAG,cAAc,CAAC,SAAS;QACrE,OACE,2BACE,GACA,eAAe,OAAO,OAClB,KAAK,WAAW,IAAI,KAAK,IAAI,IAAI,YACjC;QAER,CAAC,WAAW,MAAM,qBAAqB,0BAA0B,EAAE,IAC/D,CAAC,AAAC,aAAa,MAAM,eAAe,EACnC,MAAM,eAAe,GAAG,IACxB,iBAAiB,MAAM,0BACvB,MAAM,eAAe,GAAG,UAAW,IACnC,iBAAiB;QACtB,OAAO,aACL,MACA,KACA,GACA,YACA,gBACA,WAAW,WAAW,YAAY,SAAS;IAE/C;IACA,QAAQ,SAAS,GAAG;QAClB,IAAI,YAAY;YAAE,SAAS;QAAK;QAChC,OAAO,IAAI,CAAC;QACZ,OAAO;IACT;IACA,QAAQ,UAAU,GAAG,SAAU,MAAM;QACnC,QAAQ,UAAU,OAAO,QAAQ,KAAK,kBAClC,QAAQ,KAAK,CACX,yIAEF,eAAe,OAAO,SACpB,QAAQ,KAAK,CACX,2DACA,SAAS,SAAS,SAAS,OAAO,UAEpC,MAAM,OAAO,MAAM,IACnB,MAAM,OAAO,MAAM,IACnB,QAAQ,KAAK,CACX,gFACA,MAAM,OAAO,MAAM,GACf,6CACA;QAEZ,QAAQ,UACN,QAAQ,OAAO,YAAY,IAC3B,QAAQ,KAAK,CACX;QAEJ,IAAI,cAAc;YAAE,UAAU;YAAwB,QAAQ;QAAO,GACnE;QACF,OAAO,cAAc,CAAC,aAAa,eAAe;YAChD,YAAY,CAAC;YACb,cAAc,CAAC;YACf,KAAK;gBACH,OAAO;YACT;YACA,KAAK,SAAU,IAAI;gBACjB,UAAU;gBACV,OAAO,IAAI,IACT,OAAO,WAAW,IAClB,CAAC,OAAO,cAAc,CAAC,QAAQ,QAAQ;oBAAE,OAAO;gBAAK,IACpD,OAAO,WAAW,GAAG,IAAK;YAC/B;QACF;QACA,OAAO;IACT;IACA,QAAQ,cAAc,GAAG;IACzB,QAAQ,IAAI,GAAG,SAAU,IAAI;QAC3B,OAAO;YAAE,SAAS,CAAC;YAAG,SAAS;QAAK;QACpC,IAAI,WAAW;YACX,UAAU;YACV,UAAU;YACV,OAAO;QACT,GACA,SAAS;YACP,MAAM;YACN,OAAO,CAAC;YACR,KAAK,CAAC;YACN,OAAO;YACP,OAAO;YACP,YAAY,MAAM;YAClB,WAAW,QAAQ,UAAU,GAAG,QAAQ,UAAU,CAAC,YAAY;QACjE;QACF,KAAK,OAAO,GAAG;QACf,SAAS,UAAU,GAAG;YAAC;gBAAE,SAAS;YAAO;SAAE;QAC3C,OAAO;IACT;IACA,QAAQ,IAAI,GAAG,SAAU,IAAI,EAAE,OAAO;QACpC,QAAQ,QACN,QAAQ,KAAK,CACX,sEACA,SAAS,OAAO,SAAS,OAAO;QAEpC,UAAU;YACR,UAAU;YACV,MAAM;YACN,SAAS,KAAK,MAAM,UAAU,OAAO;QACvC;QACA,IAAI;QACJ,OAAO,cAAc,CAAC,SAAS,eAAe;YAC5C,YAAY,CAAC;YACb,cAAc,CAAC;YACf,KAAK;gBACH,OAAO;YACT;YACA,KAAK,SAAU,IAAI;gBACjB,UAAU;gBACV,KAAK,IAAI,IACP,KAAK,WAAW,IAChB,CAAC,OAAO,cAAc,CAAC,MAAM,QAAQ;oBAAE,OAAO;gBAAK,IAClD,KAAK,WAAW,GAAG,IAAK;YAC7B;QACF;QACA,OAAO;IACT;IACA,QAAQ,eAAe,GAAG;IAC1B,QAAQ,wBAAwB,GAAG;QACjC,OAAO,oBAAoB,eAAe;IAC5C;IACA,QAAQ,GAAG,GAAG,SAAU,MAAM;QAC5B,OAAO,oBAAoB,GAAG,CAAC;IACjC;IACA,QAAQ,cAAc,GAAG,SAAU,MAAM,EAAE,YAAY,EAAE,SAAS;QAChE,OAAO,oBAAoB,cAAc,CACvC,QACA,cACA;IAEJ;IACA,QAAQ,WAAW,GAAG,SAAU,QAAQ,EAAE,IAAI;QAC5C,OAAO,oBAAoB,WAAW,CAAC,UAAU;IACnD;IACA,QAAQ,UAAU,GAAG,SAAU,OAAO;QACpC,IAAI,aAAa;QACjB,QAAQ,QAAQ,KAAK,uBACnB,QAAQ,KAAK,CACX;QAEJ,OAAO,WAAW,UAAU,CAAC;IAC/B;IACA,QAAQ,aAAa,GAAG,SAAU,KAAK,EAAE,WAAW;QAClD,OAAO,oBAAoB,aAAa,CAAC,OAAO;IAClD;IACA,QAAQ,gBAAgB,GAAG,SAAU,KAAK,EAAE,YAAY;QACtD,OAAO,oBAAoB,gBAAgB,CAAC,OAAO;IACrD;IACA,QAAQ,SAAS,GAAG,SAAU,MAAM,EAAE,IAAI;QACxC,QAAQ,UACN,QAAQ,IAAI,CACV;QAEJ,OAAO,oBAAoB,SAAS,CAAC,QAAQ;IAC/C;IACA,QAAQ,cAAc,GAAG,SAAU,QAAQ;QACzC,OAAO,oBAAoB,cAAc,CAAC;IAC5C;IACA,QAAQ,KAAK,GAAG;QACd,OAAO,oBAAoB,KAAK;IAClC;IACA,QAAQ,mBAAmB,GAAG,SAAU,GAAG,EAAE,MAAM,EAAE,IAAI;QACvD,OAAO,oBAAoB,mBAAmB,CAAC,KAAK,QAAQ;IAC9D;IACA,QAAQ,kBAAkB,GAAG,SAAU,MAAM,EAAE,IAAI;QACjD,QAAQ,UACN,QAAQ,IAAI,CACV;QAEJ,OAAO,oBAAoB,kBAAkB,CAAC,QAAQ;IACxD;IACA,QAAQ,eAAe,GAAG,SAAU,MAAM,EAAE,IAAI;QAC9C,QAAQ,UACN,QAAQ,IAAI,CACV;QAEJ,OAAO,oBAAoB,eAAe,CAAC,QAAQ;IACrD;IACA,QAAQ,OAAO,GAAG,SAAU,MAAM,EAAE,IAAI;QACtC,OAAO,oBAAoB,OAAO,CAAC,QAAQ;IAC7C;IACA,QAAQ,aAAa,GAAG,SAAU,WAAW,EAAE,OAAO;QACpD,OAAO,oBAAoB,aAAa,CAAC,aAAa;IACxD;IACA,QAAQ,UAAU,GAAG,SAAU,OAAO,EAAE,UAAU,EAAE,IAAI;QACtD,OAAO,oBAAoB,UAAU,CAAC,SAAS,YAAY;IAC7D;IACA,QAAQ,MAAM,GAAG,SAAU,YAAY;QACrC,OAAO,oBAAoB,MAAM,CAAC;IACpC;IACA,QAAQ,QAAQ,GAAG,SAAU,YAAY;QACvC,OAAO,oBAAoB,QAAQ,CAAC;IACtC;IACA,QAAQ,oBAAoB,GAAG,SAC7B,SAAS,EACT,WAAW,EACX,iBAAiB;QAEjB,OAAO,oBAAoB,oBAAoB,CAC7C,WACA,aACA;IAEJ;IACA,QAAQ,aAAa,GAAG;QACtB,OAAO,oBAAoB,aAAa;IAC1C;IACA,QAAQ,OAAO,GAAG;IAClB,gBAAgB,OAAO,kCACrB,eACE,OAAO,+BAA+B,0BAA0B,IAClE,+BAA+B,0BAA0B,CAAC;AAC9D","ignoreList":[0]}}, - {"offset": {"line": 1768, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react/index.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react.production.js');\n} else {\n module.exports = require('./cjs/react.development.js');\n}\n"],"names":[],"mappings":"AAEI;AAFJ;AAEA;;KAEO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 1779, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkKeyStringCoercion(value) {\n try {\n testStringCoercion(value);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n if (JSCompiler_inline_result) {\n JSCompiler_inline_result = console;\n var JSCompiler_temp_const = JSCompiler_inline_result.error;\n var JSCompiler_inline_result$jscomp$0 =\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\";\n JSCompiler_temp_const.call(\n JSCompiler_inline_result,\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n JSCompiler_inline_result$jscomp$0\n );\n return testStringCoercion(value);\n }\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function getOwner() {\n var dispatcher = ReactSharedInternals.A;\n return null === dispatcher ? null : dispatcher.getOwner();\n }\n function UnknownOwner() {\n return Error(\"react-stack-top-frame\");\n }\n function hasValidKey(config) {\n if (hasOwnProperty.call(config, \"key\")) {\n var getter = Object.getOwnPropertyDescriptor(config, \"key\").get;\n if (getter && getter.isReactWarning) return !1;\n }\n return void 0 !== config.key;\n }\n function defineKeyPropWarningGetter(props, displayName) {\n function warnAboutAccessingKey() {\n specialPropKeyWarningShown ||\n ((specialPropKeyWarningShown = !0),\n console.error(\n \"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)\",\n displayName\n ));\n }\n warnAboutAccessingKey.isReactWarning = !0;\n Object.defineProperty(props, \"key\", {\n get: warnAboutAccessingKey,\n configurable: !0\n });\n }\n function elementRefGetterWithDeprecationWarning() {\n var componentName = getComponentNameFromType(this.type);\n didWarnAboutElementRef[componentName] ||\n ((didWarnAboutElementRef[componentName] = !0),\n console.error(\n \"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.\"\n ));\n componentName = this.props.ref;\n return void 0 !== componentName ? componentName : null;\n }\n function ReactElement(type, key, props, owner, debugStack, debugTask) {\n var refProp = props.ref;\n type = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n props: props,\n _owner: owner\n };\n null !== (void 0 !== refProp ? refProp : null)\n ? Object.defineProperty(type, \"ref\", {\n enumerable: !1,\n get: elementRefGetterWithDeprecationWarning\n })\n : Object.defineProperty(type, \"ref\", { enumerable: !1, value: null });\n type._store = {};\n Object.defineProperty(type._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: 0\n });\n Object.defineProperty(type, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(type, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugStack\n });\n Object.defineProperty(type, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugTask\n });\n Object.freeze && (Object.freeze(type.props), Object.freeze(type));\n return type;\n }\n function jsxDEVImpl(\n type,\n config,\n maybeKey,\n isStaticChildren,\n debugStack,\n debugTask\n ) {\n var children = config.children;\n if (void 0 !== children)\n if (isStaticChildren)\n if (isArrayImpl(children)) {\n for (\n isStaticChildren = 0;\n isStaticChildren < children.length;\n isStaticChildren++\n )\n validateChildKeys(children[isStaticChildren]);\n Object.freeze && Object.freeze(children);\n } else\n console.error(\n \"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\"\n );\n else validateChildKeys(children);\n if (hasOwnProperty.call(config, \"key\")) {\n children = getComponentNameFromType(type);\n var keys = Object.keys(config).filter(function (k) {\n return \"key\" !== k;\n });\n isStaticChildren =\n 0 < keys.length\n ? \"{key: someKey, \" + keys.join(\": ..., \") + \": ...}\"\n : \"{key: someKey}\";\n didWarnAboutKeySpread[children + isStaticChildren] ||\n ((keys =\n 0 < keys.length ? \"{\" + keys.join(\": ..., \") + \": ...}\" : \"{}\"),\n console.error(\n 'A props object containing a \"key\" prop is being spread into JSX:\\n let props = %s;\\n <%s {...props} />\\nReact keys must be passed directly to JSX without using spread:\\n let props = %s;\\n <%s key={someKey} {...props} />',\n isStaticChildren,\n children,\n keys,\n children\n ),\n (didWarnAboutKeySpread[children + isStaticChildren] = !0));\n }\n children = null;\n void 0 !== maybeKey &&\n (checkKeyStringCoercion(maybeKey), (children = \"\" + maybeKey));\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (children = \"\" + config.key));\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n children &&\n defineKeyPropWarningGetter(\n maybeKey,\n \"function\" === typeof type\n ? type.displayName || type.name || \"Unknown\"\n : type\n );\n return ReactElement(\n type,\n children,\n maybeKey,\n getOwner(),\n debugStack,\n debugTask\n );\n }\n function validateChildKeys(node) {\n isValidElement(node)\n ? node._store && (node._store.validated = 1)\n : \"object\" === typeof node &&\n null !== node &&\n node.$$typeof === REACT_LAZY_TYPE &&\n (\"fulfilled\" === node._payload.status\n ? isValidElement(node._payload.value) &&\n node._payload.value._store &&\n (node._payload.value._store.validated = 1)\n : node._store && (node._store.validated = 1));\n }\n function isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n }\n var React = require(\"next/dist/compiled/react\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_VIEW_TRANSITION_TYPE = Symbol.for(\"react.view_transition\"),\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n isArrayImpl = Array.isArray,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n };\n React = {\n react_stack_bottom_frame: function (callStackForError) {\n return callStackForError();\n }\n };\n var specialPropKeyWarningShown;\n var didWarnAboutElementRef = {};\n var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(\n React,\n UnknownOwner\n )();\n var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));\n var didWarnAboutKeySpread = {};\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.jsx = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n if (trackActualOwner) {\n var previousStackTraceLimit = Error.stackTraceLimit;\n Error.stackTraceLimit = 10;\n var debugStackDEV = Error(\"react-stack-top-frame\");\n Error.stackTraceLimit = previousStackTraceLimit;\n } else debugStackDEV = unknownOwnerDebugStack;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !1,\n debugStackDEV,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n exports.jsxs = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n if (trackActualOwner) {\n var previousStackTraceLimit = Error.stackTraceLimit;\n Error.stackTraceLimit = 10;\n var debugStackDEV = Error(\"react-stack-top-frame\");\n Error.stackTraceLimit = previousStackTraceLimit;\n } else debugStackDEV = unknownOwnerDebugStack;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !0,\n debugStackDEV,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n })();\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2005, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n"],"names":[],"mappings":"AAEI;AAFJ;AAEA;;KAEO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 2015, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/safe-stable-stringify/index.js"],"sourcesContent":["(function(){\"use strict\";var e={879:function(e,t){const{hasOwnProperty:n}=Object.prototype;const r=configure();r.configure=configure;r.stringify=r;r.default=r;t.stringify=r;t.configure=configure;e.exports=r;const i=/[\\u0000-\\u001f\\u0022\\u005c\\ud800-\\udfff]/;function strEscape(e){if(e.length<5e3&&!i.test(e)){return`\"${e}\"`}return JSON.stringify(e)}function sort(e,t){if(e.length>200||t){return e.sort(t)}for(let t=1;t<e.length;t++){const n=e[t];let r=t;while(r!==0&&e[r-1]>n){e[r]=e[r-1];r--}e[r]=n}return e}const f=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(Object.getPrototypeOf(new Int8Array)),Symbol.toStringTag).get;function isTypedArrayWithEntries(e){return f.call(e)!==undefined&&e.length!==0}function stringifyTypedArray(e,t,n){if(e.length<n){n=e.length}const r=t===\",\"?\"\":\" \";let i=`\"0\":${r}${e[0]}`;for(let f=1;f<n;f++){i+=`${t}\"${f}\":${r}${e[f]}`}return i}function getCircularValueOption(e){if(n.call(e,\"circularValue\")){const t=e.circularValue;if(typeof t===\"string\"){return`\"${t}\"`}if(t==null){return t}if(t===Error||t===TypeError){return{toString(){throw new TypeError(\"Converting circular structure to JSON\")}}}throw new TypeError('The \"circularValue\" argument must be of type string or the value null or undefined')}return'\"[Circular]\"'}function getDeterministicOption(e){let t;if(n.call(e,\"deterministic\")){t=e.deterministic;if(typeof t!==\"boolean\"&&typeof t!==\"function\"){throw new TypeError('The \"deterministic\" argument must be of type boolean or comparator function')}}return t===undefined?true:t}function getBooleanOption(e,t){let r;if(n.call(e,t)){r=e[t];if(typeof r!==\"boolean\"){throw new TypeError(`The \"${t}\" argument must be of type boolean`)}}return r===undefined?true:r}function getPositiveIntegerOption(e,t){let r;if(n.call(e,t)){r=e[t];if(typeof r!==\"number\"){throw new TypeError(`The \"${t}\" argument must be of type number`)}if(!Number.isInteger(r)){throw new TypeError(`The \"${t}\" argument must be an integer`)}if(r<1){throw new RangeError(`The \"${t}\" argument must be >= 1`)}}return r===undefined?Infinity:r}function getItemCount(e){if(e===1){return\"1 item\"}return`${e} items`}function getUniqueReplacerSet(e){const t=new Set;for(const n of e){if(typeof n===\"string\"||typeof n===\"number\"){t.add(String(n))}}return t}function getStrictOption(e){if(n.call(e,\"strict\")){const t=e.strict;if(typeof t!==\"boolean\"){throw new TypeError('The \"strict\" argument must be of type boolean')}if(t){return e=>{let t=`Object can not safely be stringified. Received type ${typeof e}`;if(typeof e!==\"function\")t+=` (${e.toString()})`;throw new Error(t)}}}}function configure(e){e={...e};const t=getStrictOption(e);if(t){if(e.bigint===undefined){e.bigint=false}if(!(\"circularValue\"in e)){e.circularValue=Error}}const n=getCircularValueOption(e);const r=getBooleanOption(e,\"bigint\");const i=getDeterministicOption(e);const f=typeof i===\"function\"?i:undefined;const u=getPositiveIntegerOption(e,\"maximumDepth\");const o=getPositiveIntegerOption(e,\"maximumBreadth\");function stringifyFnReplacer(e,s,l,c,a,g){let p=s[e];if(typeof p===\"object\"&&p!==null&&typeof p.toJSON===\"function\"){p=p.toJSON(e)}p=c.call(s,e,p);switch(typeof p){case\"string\":return strEscape(p);case\"object\":{if(p===null){return\"null\"}if(l.indexOf(p)!==-1){return n}let e=\"\";let t=\",\";const r=g;if(Array.isArray(p)){if(p.length===0){return\"[]\"}if(u<l.length+1){return'\"[Array]\"'}l.push(p);if(a!==\"\"){g+=a;e+=`\\n${g}`;t=`,\\n${g}`}const n=Math.min(p.length,o);let i=0;for(;i<n-1;i++){const n=stringifyFnReplacer(String(i),p,l,c,a,g);e+=n!==undefined?n:\"null\";e+=t}const f=stringifyFnReplacer(String(i),p,l,c,a,g);e+=f!==undefined?f:\"null\";if(p.length-1>o){const n=p.length-o-1;e+=`${t}\"... ${getItemCount(n)} not stringified\"`}if(a!==\"\"){e+=`\\n${r}`}l.pop();return`[${e}]`}let s=Object.keys(p);const y=s.length;if(y===0){return\"{}\"}if(u<l.length+1){return'\"[Object]\"'}let d=\"\";let h=\"\";if(a!==\"\"){g+=a;t=`,\\n${g}`;d=\" \"}const $=Math.min(y,o);if(i&&!isTypedArrayWithEntries(p)){s=sort(s,f)}l.push(p);for(let n=0;n<$;n++){const r=s[n];const i=stringifyFnReplacer(r,p,l,c,a,g);if(i!==undefined){e+=`${h}${strEscape(r)}:${d}${i}`;h=t}}if(y>o){const n=y-o;e+=`${h}\"...\":${d}\"${getItemCount(n)} not stringified\"`;h=t}if(a!==\"\"&&h.length>1){e=`\\n${g}${e}\\n${r}`}l.pop();return`{${e}}`}case\"number\":return isFinite(p)?String(p):t?t(p):\"null\";case\"boolean\":return p===true?\"true\":\"false\";case\"undefined\":return undefined;case\"bigint\":if(r){return String(p)}default:return t?t(p):undefined}}function stringifyArrayReplacer(e,i,f,s,l,c){if(typeof i===\"object\"&&i!==null&&typeof i.toJSON===\"function\"){i=i.toJSON(e)}switch(typeof i){case\"string\":return strEscape(i);case\"object\":{if(i===null){return\"null\"}if(f.indexOf(i)!==-1){return n}const e=c;let t=\"\";let r=\",\";if(Array.isArray(i)){if(i.length===0){return\"[]\"}if(u<f.length+1){return'\"[Array]\"'}f.push(i);if(l!==\"\"){c+=l;t+=`\\n${c}`;r=`,\\n${c}`}const n=Math.min(i.length,o);let a=0;for(;a<n-1;a++){const e=stringifyArrayReplacer(String(a),i[a],f,s,l,c);t+=e!==undefined?e:\"null\";t+=r}const g=stringifyArrayReplacer(String(a),i[a],f,s,l,c);t+=g!==undefined?g:\"null\";if(i.length-1>o){const e=i.length-o-1;t+=`${r}\"... ${getItemCount(e)} not stringified\"`}if(l!==\"\"){t+=`\\n${e}`}f.pop();return`[${t}]`}f.push(i);let a=\"\";if(l!==\"\"){c+=l;r=`,\\n${c}`;a=\" \"}let g=\"\";for(const e of s){const n=stringifyArrayReplacer(e,i[e],f,s,l,c);if(n!==undefined){t+=`${g}${strEscape(e)}:${a}${n}`;g=r}}if(l!==\"\"&&g.length>1){t=`\\n${c}${t}\\n${e}`}f.pop();return`{${t}}`}case\"number\":return isFinite(i)?String(i):t?t(i):\"null\";case\"boolean\":return i===true?\"true\":\"false\";case\"undefined\":return undefined;case\"bigint\":if(r){return String(i)}default:return t?t(i):undefined}}function stringifyIndent(e,s,l,c,a){switch(typeof s){case\"string\":return strEscape(s);case\"object\":{if(s===null){return\"null\"}if(typeof s.toJSON===\"function\"){s=s.toJSON(e);if(typeof s!==\"object\"){return stringifyIndent(e,s,l,c,a)}if(s===null){return\"null\"}}if(l.indexOf(s)!==-1){return n}const t=a;if(Array.isArray(s)){if(s.length===0){return\"[]\"}if(u<l.length+1){return'\"[Array]\"'}l.push(s);a+=c;let e=`\\n${a}`;const n=`,\\n${a}`;const r=Math.min(s.length,o);let i=0;for(;i<r-1;i++){const t=stringifyIndent(String(i),s[i],l,c,a);e+=t!==undefined?t:\"null\";e+=n}const f=stringifyIndent(String(i),s[i],l,c,a);e+=f!==undefined?f:\"null\";if(s.length-1>o){const t=s.length-o-1;e+=`${n}\"... ${getItemCount(t)} not stringified\"`}e+=`\\n${t}`;l.pop();return`[${e}]`}let r=Object.keys(s);const g=r.length;if(g===0){return\"{}\"}if(u<l.length+1){return'\"[Object]\"'}a+=c;const p=`,\\n${a}`;let y=\"\";let d=\"\";let h=Math.min(g,o);if(isTypedArrayWithEntries(s)){y+=stringifyTypedArray(s,p,o);r=r.slice(s.length);h-=s.length;d=p}if(i){r=sort(r,f)}l.push(s);for(let e=0;e<h;e++){const t=r[e];const n=stringifyIndent(t,s[t],l,c,a);if(n!==undefined){y+=`${d}${strEscape(t)}: ${n}`;d=p}}if(g>o){const e=g-o;y+=`${d}\"...\": \"${getItemCount(e)} not stringified\"`;d=p}if(d!==\"\"){y=`\\n${a}${y}\\n${t}`}l.pop();return`{${y}}`}case\"number\":return isFinite(s)?String(s):t?t(s):\"null\";case\"boolean\":return s===true?\"true\":\"false\";case\"undefined\":return undefined;case\"bigint\":if(r){return String(s)}default:return t?t(s):undefined}}function stringifySimple(e,s,l){switch(typeof s){case\"string\":return strEscape(s);case\"object\":{if(s===null){return\"null\"}if(typeof s.toJSON===\"function\"){s=s.toJSON(e);if(typeof s!==\"object\"){return stringifySimple(e,s,l)}if(s===null){return\"null\"}}if(l.indexOf(s)!==-1){return n}let t=\"\";const r=s.length!==undefined;if(r&&Array.isArray(s)){if(s.length===0){return\"[]\"}if(u<l.length+1){return'\"[Array]\"'}l.push(s);const e=Math.min(s.length,o);let n=0;for(;n<e-1;n++){const e=stringifySimple(String(n),s[n],l);t+=e!==undefined?e:\"null\";t+=\",\"}const r=stringifySimple(String(n),s[n],l);t+=r!==undefined?r:\"null\";if(s.length-1>o){const e=s.length-o-1;t+=`,\"... ${getItemCount(e)} not stringified\"`}l.pop();return`[${t}]`}let c=Object.keys(s);const a=c.length;if(a===0){return\"{}\"}if(u<l.length+1){return'\"[Object]\"'}let g=\"\";let p=Math.min(a,o);if(r&&isTypedArrayWithEntries(s)){t+=stringifyTypedArray(s,\",\",o);c=c.slice(s.length);p-=s.length;g=\",\"}if(i){c=sort(c,f)}l.push(s);for(let e=0;e<p;e++){const n=c[e];const r=stringifySimple(n,s[n],l);if(r!==undefined){t+=`${g}${strEscape(n)}:${r}`;g=\",\"}}if(a>o){const e=a-o;t+=`${g}\"...\":\"${getItemCount(e)} not stringified\"`}l.pop();return`{${t}}`}case\"number\":return isFinite(s)?String(s):t?t(s):\"null\";case\"boolean\":return s===true?\"true\":\"false\";case\"undefined\":return undefined;case\"bigint\":if(r){return String(s)}default:return t?t(s):undefined}}function stringify(e,t,n){if(arguments.length>1){let r=\"\";if(typeof n===\"number\"){r=\" \".repeat(Math.min(n,10))}else if(typeof n===\"string\"){r=n.slice(0,10)}if(t!=null){if(typeof t===\"function\"){return stringifyFnReplacer(\"\",{\"\":e},[],t,r,\"\")}if(Array.isArray(t)){return stringifyArrayReplacer(\"\",e,[],getUniqueReplacerSet(t),r,\"\")}}if(r.length!==0){return stringifyIndent(\"\",e,[],r,\"\")}}return stringifySimple(\"\",e,[])}return stringify}}};var t={};function __nccwpck_require__(n){var r=t[n];if(r!==undefined){return r.exports}var i=t[n]={exports:{}};var f=true;try{e[n](i,i.exports,__nccwpck_require__);f=false}finally{if(f)delete t[n]}return i.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var n=__nccwpck_require__(879);module.exports=n})();"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2615, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js"],"sourcesContent":["/**\n * @license React\n * scheduler.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function performWorkUntilDeadline() {\n needsPaint = !1;\n if (isMessageLoopRunning) {\n var currentTime = exports.unstable_now();\n startTime = currentTime;\n var hasMoreWork = !0;\n try {\n a: {\n isHostCallbackScheduled = !1;\n isHostTimeoutScheduled &&\n ((isHostTimeoutScheduled = !1),\n localClearTimeout(taskTimeoutID),\n (taskTimeoutID = -1));\n isPerformingWork = !0;\n var previousPriorityLevel = currentPriorityLevel;\n try {\n b: {\n advanceTimers(currentTime);\n for (\n currentTask = peek(taskQueue);\n null !== currentTask &&\n !(\n currentTask.expirationTime > currentTime &&\n shouldYieldToHost()\n );\n\n ) {\n var callback = currentTask.callback;\n if (\"function\" === typeof callback) {\n currentTask.callback = null;\n currentPriorityLevel = currentTask.priorityLevel;\n var continuationCallback = callback(\n currentTask.expirationTime <= currentTime\n );\n currentTime = exports.unstable_now();\n if (\"function\" === typeof continuationCallback) {\n currentTask.callback = continuationCallback;\n advanceTimers(currentTime);\n hasMoreWork = !0;\n break b;\n }\n currentTask === peek(taskQueue) && pop(taskQueue);\n advanceTimers(currentTime);\n } else pop(taskQueue);\n currentTask = peek(taskQueue);\n }\n if (null !== currentTask) hasMoreWork = !0;\n else {\n var firstTimer = peek(timerQueue);\n null !== firstTimer &&\n requestHostTimeout(\n handleTimeout,\n firstTimer.startTime - currentTime\n );\n hasMoreWork = !1;\n }\n }\n break a;\n } finally {\n (currentTask = null),\n (currentPriorityLevel = previousPriorityLevel),\n (isPerformingWork = !1);\n }\n hasMoreWork = void 0;\n }\n } finally {\n hasMoreWork\n ? schedulePerformWorkUntilDeadline()\n : (isMessageLoopRunning = !1);\n }\n }\n }\n function push(heap, node) {\n var index = heap.length;\n heap.push(node);\n a: for (; 0 < index; ) {\n var parentIndex = (index - 1) >>> 1,\n parent = heap[parentIndex];\n if (0 < compare(parent, node))\n (heap[parentIndex] = node),\n (heap[index] = parent),\n (index = parentIndex);\n else break a;\n }\n }\n function peek(heap) {\n return 0 === heap.length ? null : heap[0];\n }\n function pop(heap) {\n if (0 === heap.length) return null;\n var first = heap[0],\n last = heap.pop();\n if (last !== first) {\n heap[0] = last;\n a: for (\n var index = 0, length = heap.length, halfLength = length >>> 1;\n index < halfLength;\n\n ) {\n var leftIndex = 2 * (index + 1) - 1,\n left = heap[leftIndex],\n rightIndex = leftIndex + 1,\n right = heap[rightIndex];\n if (0 > compare(left, last))\n rightIndex < length && 0 > compare(right, left)\n ? ((heap[index] = right),\n (heap[rightIndex] = last),\n (index = rightIndex))\n : ((heap[index] = left),\n (heap[leftIndex] = last),\n (index = leftIndex));\n else if (rightIndex < length && 0 > compare(right, last))\n (heap[index] = right),\n (heap[rightIndex] = last),\n (index = rightIndex);\n else break a;\n }\n }\n return first;\n }\n function compare(a, b) {\n var diff = a.sortIndex - b.sortIndex;\n return 0 !== diff ? diff : a.id - b.id;\n }\n function advanceTimers(currentTime) {\n for (var timer = peek(timerQueue); null !== timer; ) {\n if (null === timer.callback) pop(timerQueue);\n else if (timer.startTime <= currentTime)\n pop(timerQueue),\n (timer.sortIndex = timer.expirationTime),\n push(taskQueue, timer);\n else break;\n timer = peek(timerQueue);\n }\n }\n function handleTimeout(currentTime) {\n isHostTimeoutScheduled = !1;\n advanceTimers(currentTime);\n if (!isHostCallbackScheduled)\n if (null !== peek(taskQueue))\n (isHostCallbackScheduled = !0),\n isMessageLoopRunning ||\n ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline());\n else {\n var firstTimer = peek(timerQueue);\n null !== firstTimer &&\n requestHostTimeout(\n handleTimeout,\n firstTimer.startTime - currentTime\n );\n }\n }\n function shouldYieldToHost() {\n return needsPaint\n ? !0\n : exports.unstable_now() - startTime < frameInterval\n ? !1\n : !0;\n }\n function requestHostTimeout(callback, ms) {\n taskTimeoutID = localSetTimeout(function () {\n callback(exports.unstable_now());\n }, ms);\n }\n \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&\n \"function\" ===\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());\n exports.unstable_now = void 0;\n if (\n \"object\" === typeof performance &&\n \"function\" === typeof performance.now\n ) {\n var localPerformance = performance;\n exports.unstable_now = function () {\n return localPerformance.now();\n };\n } else {\n var localDate = Date,\n initialTime = localDate.now();\n exports.unstable_now = function () {\n return localDate.now() - initialTime;\n };\n }\n var taskQueue = [],\n timerQueue = [],\n taskIdCounter = 1,\n currentTask = null,\n currentPriorityLevel = 3,\n isPerformingWork = !1,\n isHostCallbackScheduled = !1,\n isHostTimeoutScheduled = !1,\n needsPaint = !1,\n localSetTimeout = \"function\" === typeof setTimeout ? setTimeout : null,\n localClearTimeout =\n \"function\" === typeof clearTimeout ? clearTimeout : null,\n localSetImmediate =\n \"undefined\" !== typeof setImmediate ? setImmediate : null,\n isMessageLoopRunning = !1,\n taskTimeoutID = -1,\n frameInterval = 5,\n startTime = -1;\n if (\"function\" === typeof localSetImmediate)\n var schedulePerformWorkUntilDeadline = function () {\n localSetImmediate(performWorkUntilDeadline);\n };\n else if (\"undefined\" !== typeof MessageChannel) {\n var channel = new MessageChannel(),\n port = channel.port2;\n channel.port1.onmessage = performWorkUntilDeadline;\n schedulePerformWorkUntilDeadline = function () {\n port.postMessage(null);\n };\n } else\n schedulePerformWorkUntilDeadline = function () {\n localSetTimeout(performWorkUntilDeadline, 0);\n };\n exports.unstable_IdlePriority = 5;\n exports.unstable_ImmediatePriority = 1;\n exports.unstable_LowPriority = 4;\n exports.unstable_NormalPriority = 3;\n exports.unstable_Profiling = null;\n exports.unstable_UserBlockingPriority = 2;\n exports.unstable_cancelCallback = function (task) {\n task.callback = null;\n };\n exports.unstable_forceFrameRate = function (fps) {\n 0 > fps || 125 < fps\n ? console.error(\n \"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"\n )\n : (frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5);\n };\n exports.unstable_getCurrentPriorityLevel = function () {\n return currentPriorityLevel;\n };\n exports.unstable_next = function (eventHandler) {\n switch (currentPriorityLevel) {\n case 1:\n case 2:\n case 3:\n var priorityLevel = 3;\n break;\n default:\n priorityLevel = currentPriorityLevel;\n }\n var previousPriorityLevel = currentPriorityLevel;\n currentPriorityLevel = priorityLevel;\n try {\n return eventHandler();\n } finally {\n currentPriorityLevel = previousPriorityLevel;\n }\n };\n exports.unstable_requestPaint = function () {\n needsPaint = !0;\n };\n exports.unstable_runWithPriority = function (priorityLevel, eventHandler) {\n switch (priorityLevel) {\n case 1:\n case 2:\n case 3:\n case 4:\n case 5:\n break;\n default:\n priorityLevel = 3;\n }\n var previousPriorityLevel = currentPriorityLevel;\n currentPriorityLevel = priorityLevel;\n try {\n return eventHandler();\n } finally {\n currentPriorityLevel = previousPriorityLevel;\n }\n };\n exports.unstable_scheduleCallback = function (\n priorityLevel,\n callback,\n options\n ) {\n var currentTime = exports.unstable_now();\n \"object\" === typeof options && null !== options\n ? ((options = options.delay),\n (options =\n \"number\" === typeof options && 0 < options\n ? currentTime + options\n : currentTime))\n : (options = currentTime);\n switch (priorityLevel) {\n case 1:\n var timeout = -1;\n break;\n case 2:\n timeout = 250;\n break;\n case 5:\n timeout = 1073741823;\n break;\n case 4:\n timeout = 1e4;\n break;\n default:\n timeout = 5e3;\n }\n timeout = options + timeout;\n priorityLevel = {\n id: taskIdCounter++,\n callback: callback,\n priorityLevel: priorityLevel,\n startTime: options,\n expirationTime: timeout,\n sortIndex: -1\n };\n options > currentTime\n ? ((priorityLevel.sortIndex = options),\n push(timerQueue, priorityLevel),\n null === peek(taskQueue) &&\n priorityLevel === peek(timerQueue) &&\n (isHostTimeoutScheduled\n ? (localClearTimeout(taskTimeoutID), (taskTimeoutID = -1))\n : (isHostTimeoutScheduled = !0),\n requestHostTimeout(handleTimeout, options - currentTime)))\n : ((priorityLevel.sortIndex = timeout),\n push(taskQueue, priorityLevel),\n isHostCallbackScheduled ||\n isPerformingWork ||\n ((isHostCallbackScheduled = !0),\n isMessageLoopRunning ||\n ((isMessageLoopRunning = !0),\n schedulePerformWorkUntilDeadline())));\n return priorityLevel;\n };\n exports.unstable_shouldYield = shouldYieldToHost;\n exports.unstable_wrapCallback = function (callback) {\n var parentPriorityLevel = currentPriorityLevel;\n return function () {\n var previousPriorityLevel = currentPriorityLevel;\n currentPriorityLevel = parentPriorityLevel;\n try {\n return callback.apply(this, arguments);\n } finally {\n currentPriorityLevel = previousPriorityLevel;\n }\n };\n };\n \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&\n \"function\" ===\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());\n })();\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2863, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/scheduler/index.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/scheduler.production.js');\n} else {\n module.exports = require('./cjs/scheduler.development.js');\n}\n"],"names":[],"mappings":"AAEI;AAFJ;AAEA;;KAEO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 2873, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/strip-ansi/index.js"],"sourcesContent":["(()=>{\"use strict\";var e={511:e=>{e.exports=({onlyFirst:e=false}={})=>{const r=[\"[\\\\u001B\\\\u009B][[\\\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]+)*|[a-zA-Z\\\\d]+(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]*)*)?\\\\u0007)\",\"(?:(?:\\\\d{1,4}(?:;\\\\d{0,4})*)?[\\\\dA-PR-TZcf-ntqry=><~]))\"].join(\"|\");return new RegExp(r,e?undefined:\"g\")}},532:(e,r,_)=>{const t=_(511);e.exports=e=>typeof e===\"string\"?e.replace(t(),\"\"):e}};var r={};function __nccwpck_require__(_){var t=r[_];if(t!==undefined){return t.exports}var a=r[_]={exports:{}};var n=true;try{e[_](a,a.exports,__nccwpck_require__);n=false}finally{if(n)delete r[_]}return a.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var _=__nccwpck_require__(532);module.exports=_})();"],"names":[],"mappings":"AAAA,CAAC;IAAK;IAAa,IAAI,IAAE;QAAC,KAAI,CAAA;YAAI,EAAE,OAAO,GAAC,CAAC,EAAC,WAAU,IAAE,KAAK,EAAC,GAAC,CAAC,CAAC;gBAAI,MAAM,IAAE;oBAAC;oBAA+H;iBAA2D,CAAC,IAAI,CAAC;gBAAK,OAAO,IAAI,OAAO,GAAE,IAAE,YAAU;YAAI;QAAC;QAAE,KAAI,CAAC,GAAE,GAAE;YAAK,MAAM,IAAE,EAAE;YAAK,EAAE,OAAO,GAAC,CAAA,IAAG,OAAO,MAAI,WAAS,EAAE,OAAO,CAAC,KAAI,MAAI;QAAC;IAAC;IAAE,IAAI,IAAE,CAAC;IAAE,SAAS,oBAAoB,CAAC;QAAE,IAAI,IAAE,CAAC,CAAC,EAAE;QAAC,IAAG,MAAI,WAAU;YAAC,OAAO,EAAE,OAAO;QAAA;QAAC,IAAI,IAAE,CAAC,CAAC,EAAE,GAAC;YAAC,SAAQ,CAAC;QAAC;QAAE,IAAI,IAAE;QAAK,IAAG;YAAC,CAAC,CAAC,EAAE,CAAC,GAAE,EAAE,OAAO,EAAC;YAAqB,IAAE;QAAK,SAAQ;YAAC,IAAG,GAAE,OAAO,CAAC,CAAC,EAAE;QAAA;QAAC,OAAO,EAAE,OAAO;IAAA;IAAC,IAAG,OAAO,wBAAsB,aAAY,oBAAoB,EAAE,GAAC,uFAAU;IAAI,IAAI,IAAE,oBAAoB;IAAK,OAAO,OAAO,GAAC;AAAC,CAAC","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js deleted file mode 100644 index faf4365..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js +++ /dev/null @@ -1,1661 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/next/dist/compiled/next-devtools/index.js (raw)", ((__turbopack_context__, module, exports) => { - -var process = {env: -{"__NEXT_DEV_INDICATOR":true,"__NEXT_DEV_INDICATOR_POSITION":"bottom-left","__NEXT_ROUTER_BASEPATH":"","__NEXT_TELEMETRY_DISABLED":false,"__NEXT_BUNDLER":"Turbopack","__NEXT_BUNDLER_HAS_PERSISTENT_CACHE":true,"TURBOPACK":true,"__NEXT_CACHE_COMPONENTS":false,"__NEXT_DIST_DIR":"/home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/.next/dev"} -}; -(function(){ -var __webpack_modules__={"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`[data-nextjs-toast] { - &[data-hidden='true'] { - display: none; - } -} - -.dev-tools-indicator-menu { - display: flex; - flex-direction: column; - align-items: flex-start; - background: var(--color-background-100); - border: 1px solid var(--color-gray-alpha-400); - background-clip: padding-box; - box-shadow: var(--shadow-menu); - border-radius: var(--rounded-xl); - position: absolute; - font-family: var(--font-stack-sans); - z-index: 3; - overflow: hidden; - opacity: 0; - outline: 0; - min-width: 248px; - transition: opacity var(--animate-out-duration-ms) - var(--animate-out-timing-function); - - &[data-rendered='true'] { - opacity: 1; - scale: 1; - } -} - -.dev-tools-indicator-inner { - padding: 6px; - width: 100%; -} - -.dev-tools-indicator-item { - display: flex; - align-items: center; - padding: 8px 6px; - height: var(--size-36); - border-radius: 6px; - text-decoration: none !important; - user-select: none; - white-space: nowrap; - - svg { - width: var(--size-16); - height: var(--size-16); - } - - &:focus-visible { - outline: 0; - } -} - -.dev-tools-indicator-footer { - background: var(--color-background-200); - padding: 6px; - border-top: 1px solid var(--color-gray-400); - width: 100%; -} - -.dev-tools-indicator-item[data-selected='true'] { - cursor: pointer; - background-color: var(--color-gray-200); -} - -.dev-tools-indicator-label { - font-size: var(--size-14); - line-height: var(--size-20); - color: var(--color-gray-1000); -} - -.dev-tools-indicator-value { - font-size: var(--size-14); - line-height: var(--size-20); - color: var(--color-gray-900); - margin-left: auto; -} - -.dev-tools-indicator-issue-count { - --color-primary: var(--color-gray-800); - --color-secondary: var(--color-gray-100); - display: flex; - flex-direction: row; - align-items: center; - justify-content: center; - gap: 8px; - min-width: var(--size-40); - height: var(--size-24); - background: var(--color-background-100); - border: 1px solid var(--color-gray-alpha-400); - background-clip: padding-box; - box-shadow: var(--shadow-small); - padding: 2px; - color: var(--color-gray-1000); - border-radius: 128px; - font-weight: 500; - font-size: var(--size-13); - font-variant-numeric: tabular-nums; - - &[data-has-issues='true'] { - --color-primary: var(--color-red-800); - --color-secondary: var(--color-red-100); - } - - .dev-tools-indicator-issue-count-indicator { - width: var(--size-8); - height: var(--size-8); - background: var(--color-primary); - box-shadow: 0 0 0 2px var(--color-secondary); - border-radius: 50%; - } -} - -.dev-tools-indicator-shortcut { - display: flex; - gap: 4px; - - kbd { - width: var(--size-20); - height: var(--size-20); - display: flex; - justify-content: center; - align-items: center; - border-radius: var(--rounded-md); - border: 1px solid var(--color-gray-400); - font-family: var(--font-stack-sans); - background: var(--color-background-100); - color: var(--color-gray-1000); - text-align: center; - font-size: var(--size-12); - line-height: var(--size-16); - } -} - -.dev-tools-grabbing { - cursor: grabbing; - - > * { - pointer-events: none; - } -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/devtools-panel/resize/resize-handle.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`.resize-container { - position: absolute; - /* todo: better z index */ - z-index: 10; - /* todo: is this needed */ - background: transparent; -} - -.resize-line { - position: absolute; - /* todo smarter z index */ - z-index: -1; - pointer-events: none; - /* a normal exit animation curve- at this point the exit animation is */ - /* immediately responsive so we don't need a bespoke curve */ - transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); - /* todo: better var? */ - border: 1px solid var(--color-gray-400); -} - -/* start really fast because we start super hidden initially behind the panel, otherwise feels like an unintended animation delay */ -.resize-container:hover ~ .resize-line { - transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 0.9); -} - -.resize-container.right, -.resize-container.left { - top: 0; - height: 100%; - width: 22px; - cursor: ew-resize; -} - -/* todo: don't hard code all these values/use vars */ - -.resize-container.bottom, -.resize-container.top { - left: 0; - width: 100%; - height: 22px; - cursor: ns-resize; -} - -.resize-container.top { - top: -7px; -} -.resize-container.bottom { - bottom: -7px; -} -.resize-container.left { - left: -7px; -} -.resize-container.right { - right: -7px; -} - -.resize-container.top-left, -.resize-container.top-right, -.resize-container.bottom-left, -.resize-container.bottom-right { - width: 26px; - height: 26px; - z-index: 15; -} - -.resize-container.top-left { - top: -5px; - left: -5px; - cursor: nwse-resize; -} -.resize-container.top-right { - top: -5px; - right: -5px; - cursor: nesw-resize; -} -.resize-container.bottom-left { - bottom: -5px; - left: -5px; - cursor: nesw-resize; -} -.resize-container.bottom-right { - bottom: -5px; - right: -5px; - cursor: nwse-resize; -} - -.resize-line.top, -.resize-line.bottom { - height: 18px; - width: 100%; - background-color: var(--color-background-200); -} - -.resize-line.left, -.resize-line.right { - width: 18px; - height: 100%; - background-color: var(--color-background-200); -} - -.resize-line.top { - top: -7px; - left: calc(-1 * var(--border-left, 2px)); - width: calc(100% + var(--border-horizontal, 4px)); - border-radius: var(--rounded-lg) var(--rounded-lg) 0 0; - transform: translateY(18px); -} - -.resize-line.bottom { - bottom: -7px; - left: calc(-1 * var(--border-left, 2px)); - width: calc(100% + var(--border-horizontal, 4px)); - border-radius: 0 0 var(--rounded-lg) var(--rounded-lg); - transform: translateY(-18px); -} - -.resize-line.left { - top: calc(-1 * var(--border-top, 2px)); - left: -7px; - height: calc(100% + var(--border-vertical, 4px)); - border-radius: var(--rounded-lg) 0 0 var(--rounded-lg); - transform: translateX(18px); -} - -.resize-line.right { - top: calc(-1 * var(--border-top, 2px)); - right: -7px; - height: calc(100% + var(--border-vertical, 4px)); - border-radius: 0 var(--rounded-lg) var(--rounded-lg) 0; - transform: translateX(-18px); -} - -.resize-container.right:hover ~ .resize-line.right, -.resize-container.left:hover ~ .resize-line.left, -.resize-line.right.dragging, -.resize-line.left.dragging { - transform: translateX(0); -} - -.resize-container.bottom:hover ~ .resize-line.bottom, -.resize-container.top:hover ~ .resize-line.top, -.resize-line.bottom.dragging, -.resize-line.top.dragging { - transform: translateY(0); -} - -/* make sure that we don't show multiple handles at once - * we should only ever show the currently resizing handle - * regardless of hover state - */ -.resize-container.no-hover.right:hover ~ .resize-line.right { - transform: translateX(-20px); -} -.resize-container.no-hover.left:hover ~ .resize-line.left { - transform: translateX(20px); -} -.resize-container.no-hover.bottom:hover ~ .resize-line.bottom { - transform: translateY(-20px); -} -.resize-container.no-hover.top:hover ~ .resize-line.top { - transform: translateY(20px); -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/overview/segment-boundary-trigger.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`.segment-boundary-trigger { - display: flex; - align-items: center; - gap: 4px; - padding: 4px 6px; - line-height: 16px; - font-weight: 500; - color: var(--color-gray-1000); - border-radius: 999px; - border: none; - font-size: var(--size-12); - cursor: pointer; - transition: background-color 0.15s ease; -} - -.segment-boundary-trigger-text { - font-size: var(--size-12); - font-weight: 500; - user-select: none; - display: inline-flex; - align-items: center; - justify-content: center; -} - -.segment-boundary-trigger-text .plus-icon { - transition: transform 0.25s ease; -} - -.segment-boundary-trigger-text:hover .plus-icon { - color: var(--color-gray-800); -} - -.segment-boundary-trigger svg { - width: 14px; - height: 14px; - flex-shrink: 0; - vertical-align: middle; -} - -.segment-boundary-trigger:hover svg { - color: var(--color-gray-700); -} - -.segment-boundary-trigger[disabled] svg, -.segment-boundary-trigger[disabled]:hover svg { - color: var(--color-gray-400); - cursor: not-allowed; -} - -.segment-boundary-dropdown { - padding: 8px; - background: var(--color-background-100); - border: 1px solid var(--color-gray-400); - border-radius: 16px; - min-width: 120px; - user-select: none; - cursor: default; - box-shadow: 0px 4px 8px -4px - color-mix(in srgb, var(--color-gray-900) 4%, transparent); -} - -.segment-boundary-dropdown-positioner { - z-index: var(--top-z-index); -} - -.segment-boundary-dropdown-item { - display: flex; - align-items: center; - padding: 8px; - line-height: 20px; - font-size: 14px; - border-radius: 6px; - color: var(--color-gray-1000); - cursor: pointer; - min-width: 220px; - border: none; - background: none; - width: 100%; -} - -.segment-boundary-dropdown-item[data-disabled] { - color: var(--color-gray-400); - cursor: not-allowed; -} - -.segment-boundary-dropdown-item svg { - margin-right: 12px; - color: currentColor; -} - -.segment-boundary-dropdown-item:hover { - background: var(--color-gray-200); -} - -.segment-boundary-dropdown-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; -} - -.segment-boundary-dropdown-item:last-child { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; -} - -.segment-boundary-group-label { - padding: 8px; - font-size: 13px; - line-height: 16px; - font-weight: 400; - color: var(--color-gray-900); -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/overview/segment-explorer.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`.segment-explorer-content { - font-size: var(--size-14); - padding: 0 8px; - width: 100%; - height: 100%; -} - -.segment-explorer-page-route-bar { - display: flex; - align-items: center; - padding: 14px 16px; - background-color: var(--color-background-200); - gap: 12px; -} - -.segment-explorer-page-route-bar-path { - font-size: var(--size-14); - font-weight: 500; - color: var(--color-gray-1000); - font-family: var(--font-mono); - white-space: nowrap; - line-height: 20px; -} - -.segment-explorer-item { - margin: 4px 0; - border-radius: 6px; -} - -.segment-explorer-item:nth-child(even) { - background-color: var(--color-background-200); -} -.segment-explorer-item-row { - display: flex; - flex-direction: column; - padding-top: 10px; - padding-bottom: 10px; - padding-right: 4px; -} -.segment-explorer-item-row-main { - display: flex; - align-items: center; - white-space: pre; - color: var(--color-gray-1000); -} - -.segment-explorer-children--intended { - padding-left: 16px; -} - -.segment-explorer-filename { - display: inline-flex; - width: 100%; - align-items: center; -} - -.segment-explorer-filename select { - margin-left: auto; -} -.segment-explorer-filename--path { - margin-right: 8px; -} -.segment-explorer-filename--path small { - display: inline-block; - width: 0; - opacity: 0; -} -.segment-explorer-filename--name { - color: var(--color-gray-800); -} - -.segment-explorer-files { - display: inline-flex; - gap: 8px; - margin-left: auto; -} - -.segment-explorer-files + .segment-boundary-trigger { - margin-left: 8px; -} - -.segment-explorer-file-label { - display: inline-flex; - align-items: center; - justify-content: center; - padding: 0 6px; - height: 20px; - border-radius: 16px; - line-height: 16px; - font-size: var(--size-12); - font-weight: 500; - background-color: var(--color-gray-300); - color: var(--color-gray-1000); -} -.segment-explorer-file-label-text { - display: inline-flex; - align-items: center; -} - -.segment-explorer-file-label--overridden { - background-color: var(--color-amber-300); - color: var(--color-amber-900); -} - -.segment-explorer-file-label .code-icon { - opacity: 0; - margin-left: 0; - width: 0; - transition: all 0.15s ease-in-out; -} -.segment-explorer-file-label:hover .code-icon { - opacity: 1; - width: 12px; - margin-left: 4px; -} - -.segment-explorer-file-label:hover { - filter: brightness(0.95); -} - -.segment-explorer-file-label--builtin { - background-color: transparent; - color: var(--color-gray-900); - border: 1px dashed var(--color-gray-500); - height: 24px; - cursor: default; -} -.segment-explorer-file-label--builtin svg { - margin-left: 4px; - margin-right: -4px; -} - -/* Footer styles */ -.segment-explorer-footer { - padding: 8px; - border-top: 1px solid var(--color-gray-400); - user-select: none; -} - -.segment-explorer-footer-button { - display: flex; - align-items: center; - justify-content: center; - gap: 8px; - width: 100%; - padding: 6px; - background: var(--color-background-100); - border: 1px solid var(--color-gray-400); - border-radius: 6px; - color: var(--color-gray-1000); - font-size: var(--size-14); - font-weight: 500; - cursor: pointer; - transition: background-color 0.15s ease; -} - -.segment-explorer-footer-button:hover:not(:disabled) { - background: var(--color-gray-200); -} - -.segment-explorer-footer-button--disabled { - cursor: not-allowed; -} - -.segment-explorer-footer-text { - text-align: center; -} - -.segment-explorer-footer-badge { - display: inline-flex; - align-items: center; - justify-content: center; - min-width: 20px; - height: 20px; - padding: 0 6px; - background: var(--color-amber-300); - color: var(--color-amber-900); - border-radius: 10px; - font-size: var(--size-12); - font-weight: 600; - line-height: 1; -} - -.segment-explorer-file-label-tooltip--sm { - white-space: nowrap; -} - -.segment-explorer-file-label-tooltip--lg { - min-width: 200px; -} - -.segment-explorer-suggestions { - display: inline-flex; - gap: 8px; -} - -.segment-explorer-suggestions-tooltip { - width: 200px; -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/toast/style.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`.nextjs-toast { - position: fixed; - z-index: var(--top-z-index); - max-width: 420px; - box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.25); -} - -.nextjs-toast-errors-parent { - padding: 16px; - border-radius: var(--rounded-4xl); - font-weight: 500; - color: var(--color-ansi-bright-white); - background-color: var(--color-ansi-red); -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/tooltip/tooltip.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`.tooltip-wrapper { - position: relative; - display: inline-block; - line-height: 1; -} - -.tooltip { - position: relative; - padding: 6px 12px; - border-radius: 8px; - font-size: 14px; - line-height: 1.4; - pointer-events: none; - color: var(--color-gray-100); - background-color: var(--color-gray-1000); -} - -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-style: solid; - border-width: var(--arrow-size, 6px); - border-color: transparent; -} - -.tooltip-arrow--top { - border-width: var(--arrow-size, 6px) var(--arrow-size, 6px) 0 - var(--arrow-size, 6px); - border-top-color: var(--color-gray-1000); - bottom: 0; - transform: translateY(100%); -} - -.tooltip-arrow--bottom { - border-width: 0 var(--arrow-size, 6px) var(--arrow-size, 6px) - var(--arrow-size, 6px); - border-bottom-color: var(--color-gray-1000); - top: 0; - transform: translateY(-100%); -} - -.tooltip-arrow--left { - border-width: var(--arrow-size, 6px) 0 var(--arrow-size, 6px) - var(--arrow-size, 6px); - border-left-color: var(--color-gray-1000); - right: 0; - transform: translateX(100%); -} - -.tooltip-arrow--right { - border-width: var(--arrow-size, 6px) var(--arrow-size, 6px) - var(--arrow-size, 6px) 0; - border-right-color: var(--color-gray-1000); - left: 0; - transform: translateX(-100%); -} - -.tooltip-positioner { - z-index: var(--top-z-index); -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/global.css"(e,t,n){"use strict";n.d(t,{A:()=>f});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a),l=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/normalize.css"),s=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/styles/default-theme.css"),c=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/styles/dark-theme.css"),u=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/styles/colors.css"),d=i()(o());d.i(l.A),d.i(s.A),d.i(c.A),d.i(u.A),d.push([e.id,`/* devtool global css variables */ -:host { - /* variables */ - --top-z-index: 2147483647; -} - -/* global styles */ -* { - -webkit-font-smoothing: antialiased; -} - -/* global reset for draggable content scrollbar styles */ -[data-nextjs-scrollable-content], -[data-nextjs-scrollable-content] * { - &::-webkit-scrollbar { - width: 6px; - height: 6px; - border-radius: 0 0 1rem 1rem; - margin-bottom: 1rem; - } - - &::-webkit-scrollbar-button { - display: none; - } - - &::-webkit-scrollbar-track { - border-radius: 0 0 1rem 1rem; - background-color: var(--color-background-100); - } - - &::-webkit-scrollbar-thumb { - border-radius: 1rem; - background-color: var(--color-gray-500); - } -} - -/* Place overflow: hidden on this so we can break out from [data-nextjs-dialog] */ -[data-nextjs-scrollable-content] { - overflow: hidden; - border-radius: inherit; -} -`,""]);let f=d},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/menu/panel-router.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`/* Panel content padding styles */ -.panel-content { - padding: 16px; - padding-top: 8px; - overflow: hidden; -} - -/* User preferences wrapper styles */ -.user-preferences-wrapper { - padding: 20px; - padding-top: 8px; - overflow: hidden; -} - -/* Panel route base styles */ -.panel-route { - opacity: var(--panel-opacity); - transition: var(--panel-transition); -} - -.turbopack-upgrade-link { - text-decoration: underline; - font-weight: 500; -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/normalize.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`:host { - all: initial; - - /* the direction property is not reset by 'all' */ - direction: ltr; -} - -/*! - * Bootstrap Reboot v4.4.1 (https://getbootstrap.com/) - * Copyright 2011-2019 The Bootstrap Authors - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) - */ -*, -*::before, -*::after { - box-sizing: border-box; -} - -:host { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -article, -aside, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section { - display: block; -} - -:host { - margin: 0; - font-family: - -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', - Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', - 'Segoe UI Symbol', 'Noto Color Emoji'; - font-size: 16px; - font-weight: 400; - line-height: 1.5; - color: var(--color-font); - text-align: left; -} - -:host:not(button) { - background-color: #fff; -} - -[tabindex='-1']:focus:not(:focus-visible) { - outline: 0 !important; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: 8px; -} - -p { - margin-top: 0; - margin-bottom: 16px; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - -webkit-text-decoration-skip-ink: none; - text-decoration-skip-ink: none; -} - -address { - margin-bottom: 16px; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 16px; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: 8px; - margin-left: 0; -} - -blockquote { - margin: 0 0 16px; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; -} - -a:hover { - color: #0056b3; - text-decoration: underline; -} - -a:not([href]) { - color: inherit; - text-decoration: none; -} - -a:not([href]):hover { - color: inherit; - text-decoration: none; -} - -pre, -code, -kbd, -samp { - font-family: - SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', - monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 16px; - overflow: auto; -} - -figure { - margin: 0 0 16px; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg { - overflow: hidden; - vertical-align: middle; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 12px; - padding-bottom: 12px; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; -} - -label { - display: inline-block; - margin-bottom: 8px; -} - -button { - border-radius: 0; - border: 0; - padding: 0; - margin: 0; - background: none; - appearance: none; - -webkit-appearance: none; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -button:focus:not(:focus-visible) { - outline: none; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -select { - word-wrap: normal; -} - -button, -[type='button'], -[type='reset'], -[type='submit'] { - -webkit-appearance: button; -} - -button:not(:disabled), -[type='button']:not(:disabled), -[type='reset']:not(:disabled), -[type='submit']:not(:disabled) { - cursor: pointer; -} - -button::-moz-focus-inner, -[type='button']::-moz-focus-inner, -[type='reset']::-moz-focus-inner, -[type='submit']::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type='radio'], -input[type='checkbox'] { - box-sizing: border-box; - padding: 0; -} - -input[type='date'], -input[type='time'], -input[type='datetime-local'], -input[type='month'] { - -webkit-appearance: listbox; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: 8px; - font-size: 24px; - line-height: inherit; - color: inherit; - white-space: normal; -} - -progress { - vertical-align: baseline; -} - -[type='number']::-webkit-inner-spin-button, -[type='number']::-webkit-outer-spin-button { - height: auto; -} - -[type='search'] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type='search']::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/panel/dynamic-panel.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`/* Panel container base styles with dynamic positioning and sizing */ -.dynamic-panel-container { - position: fixed; - z-index: 2147483646; - outline: none; - top: var(--panel-top, auto); - bottom: var(--panel-bottom, auto); - left: var(--panel-left, auto); - right: var(--panel-right, auto); - width: var(--panel-width); - height: var(--panel-height); - min-width: var(--panel-min-width); - min-height: var(--panel-min-height); - max-width: var(--panel-max-width); - max-height: var(--panel-max-height); -} - -/* Panel content container styles */ -.panel-content-container { - position: relative; - width: 100%; - height: 100%; - border: 1px solid var(--color-gray-alpha-400); - border-radius: var(--rounded-xl); - background: var(--color-background-100); - display: flex; - flex-direction: column; -} - -/* Draggable content area styles */ -.draggable-content { - flex: 1; - overflow: auto; -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/styles/colors.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`:host { - /* - * CAUTION: THIS IS A WORKAROUND! - * For now, we use @babel/code-frame to parse the code frame which does not support option to change the color. - * x-ref: https://github.com/babel/babel/blob/efa52324ff835b794c48080f14877b6caf32cd15/packages/babel-code-frame/src/defs.ts#L40-L54 - * So, we do a workaround mapping to change the color matching the theme. - * - * For example, in @babel/code-frame, the "keyword" is mapped to ANSI "cyan". - * We want the "keyword" to use the "syntax-keyword" color in the theme. - * So, we map the "cyan" to the "syntax-keyword" in the theme. - */ - /* cyan: keyword */ - --color-ansi-cyan: var(--color-syntax-keyword); - /* yellow: capitalized, jsxIdentifier, punctuation */ - --color-ansi-yellow: var(--color-syntax-function); - /* magenta: number, regex */ - --color-ansi-magenta: var(--color-syntax-keyword); - /* green: string */ - --color-ansi-green: var(--color-syntax-string); - /* gray (bright black): comment, gutter */ - --color-ansi-bright-black: var(--color-syntax-comment); - - /* Ansi - Temporary */ - --color-ansi-selection: var(--color-gray-alpha-300); - --color-ansi-bg: var(--color-background-200); - --color-ansi-fg: var(--color-gray-1000); - - --color-ansi-white: var(--color-gray-700); - --color-ansi-black: var(--color-gray-200); - --color-ansi-blue: var(--color-blue-700); - --color-ansi-red: var(--color-red-700); - --color-ansi-bright-white: var(--color-gray-1000); - --color-ansi-bright-blue: var(--color-blue-800); - --color-ansi-bright-cyan: var(--color-blue-800); - --color-ansi-bright-green: var(--color-green-800); - --color-ansi-bright-magenta: var(--color-blue-800); - --color-ansi-bright-red: var(--color-red-800); - --color-ansi-bright-yellow: var(--color-amber-900); - - /* Background Light */ - --color-background-100: #ffffff; - --color-background-200: #fafafa; - - /* Syntax Light */ - --color-syntax-comment: #545454; - --color-syntax-constant: #171717; - --color-syntax-function: #0054ad; - --color-syntax-keyword: #a51850; - --color-syntax-link: #066056; - --color-syntax-parameter: #8f3e00; - --color-syntax-punctuation: #171717; - --color-syntax-string: #036157; - --color-syntax-string-expression: #066056; - - /* Gray Scale Light */ - --color-gray-100: #f2f2f2; - --color-gray-200: #ebebeb; - --color-gray-300: #e6e6e6; - --color-gray-400: #eaeaea; - --color-gray-500: #c9c9c9; - --color-gray-600: #a8a8a8; - --color-gray-700: #8f8f8f; - --color-gray-800: #7d7d7d; - --color-gray-900: #666666; - --color-gray-1000: #171717; - - /* Gray Alpha Scale Light */ - --color-gray-alpha-100: rgba(0, 0, 0, 0.05); - --color-gray-alpha-200: rgba(0, 0, 0, 0.081); - --color-gray-alpha-300: rgba(0, 0, 0, 0.1); - --color-gray-alpha-400: rgba(0, 0, 0, 0.08); - --color-gray-alpha-500: rgba(0, 0, 0, 0.21); - --color-gray-alpha-600: rgba(0, 0, 0, 0.34); - --color-gray-alpha-700: rgba(0, 0, 0, 0.44); - --color-gray-alpha-800: rgba(0, 0, 0, 0.51); - --color-gray-alpha-900: rgba(0, 0, 0, 0.605); - --color-gray-alpha-1000: rgba(0, 0, 0, 0.91); - - /* Blue Scale Light */ - --color-blue-100: #f0f7ff; - --color-blue-200: #edf6ff; - --color-blue-300: #e1f0ff; - --color-blue-400: #cde7ff; - --color-blue-500: #99ceff; - --color-blue-600: #52aeff; - --color-blue-700: #0070f3; - --color-blue-800: #0060d1; - --color-blue-900: #0067d6; - --color-blue-1000: #0025ad; - - /* Red Scale Light */ - --color-red-100: #fff0f0; - --color-red-200: #ffebeb; - --color-red-300: #ffe5e5; - --color-red-400: #fdd8d8; - --color-red-500: #f8baba; - --color-red-600: #f87274; - --color-red-700: #e5484d; - --color-red-800: #da3036; - --color-red-900: #ca2a30; - --color-red-1000: #381316; - - /* Amber Scale Light */ - --color-amber-100: #fff6e5; - --color-amber-200: #fff4d5; - --color-amber-300: #fef0cd; - --color-amber-400: #ffddbf; - --color-amber-500: #ffc96b; - --color-amber-600: #f5b047; - --color-amber-700: #ffb224; - --color-amber-800: #ff990a; - --color-amber-900: #a35200; - --color-amber-1000: #4e2009; - - /* Green Scale Light */ - --color-green-100: #effbef; - --color-green-200: #eafaea; - --color-green-300: #dcf6dc; - --color-green-400: #c8f1c9; - --color-green-500: #99e59f; - --color-green-600: #6cda76; - --color-green-700: #46a758; - --color-green-800: #388e4a; - --color-green-900: #297c3b; - --color-green-1000: #18311e; - - /* Turbopack Light - Temporary */ - --color-turbopack-text-red: #ff1e56; - --color-turbopack-text-blue: #0096ff; - --color-turbopack-border-red: #f0adbe; - --color-turbopack-border-blue: #adccea; - --color-turbopack-background-red: #fff7f9; - --color-turbopack-background-blue: #f6fbff; -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/styles/dark-theme.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`:host(.dark) { - --color-font: white; - --color-backdrop: rgba(0, 0, 0, 0.8); - --color-border-shadow: rgba(255, 255, 255, 0.145); - - --color-title-color: #fafafa; - --color-stack-notes: #a9a9a9; - - /* Background Dark */ - --color-background-100: #0a0a0a; - --color-background-200: #000000; - - /* Syntax Dark */ - --color-syntax-comment: #a0a0a0; - --color-syntax-constant: #ededed; - --color-syntax-function: #52a9ff; - --color-syntax-keyword: #f76e99; - --color-syntax-link: #0ac5b2; - --color-syntax-parameter: #f1a10d; - --color-syntax-punctuation: #ededed; - --color-syntax-string: #0ac5b2; - --color-syntax-string-expression: #0ac5b2; - - /* Gray Scale Dark */ - --color-gray-100: #1a1a1a; - --color-gray-200: #1f1f1f; - --color-gray-300: #292929; - --color-gray-400: #2e2e2e; - --color-gray-500: #454545; - --color-gray-600: #878787; - --color-gray-700: #8f8f8f; - --color-gray-800: #7d7d7d; - --color-gray-900: #a0a0a0; - --color-gray-1000: #ededed; - - /* Gray Alpha Scale Dark */ - --color-gray-alpha-100: rgba(255, 255, 255, 0.066); - --color-gray-alpha-200: rgba(255, 255, 255, 0.087); - --color-gray-alpha-300: rgba(255, 255, 255, 0.125); - --color-gray-alpha-400: rgba(255, 255, 255, 0.145); - --color-gray-alpha-500: rgba(255, 255, 255, 0.239); - --color-gray-alpha-600: rgba(255, 255, 255, 0.506); - --color-gray-alpha-700: rgba(255, 255, 255, 0.54); - --color-gray-alpha-800: rgba(255, 255, 255, 0.47); - --color-gray-alpha-900: rgba(255, 255, 255, 0.61); - --color-gray-alpha-1000: rgba(255, 255, 255, 0.923); - - /* Blue Scale Dark */ - --color-blue-100: #0f1b2d; - --color-blue-200: #10243e; - --color-blue-300: #0f3058; - --color-blue-400: #0d3868; - --color-blue-500: #0a4481; - --color-blue-600: #0091ff; - --color-blue-700: #0070f3; - --color-blue-800: #0060d1; - --color-blue-900: #52a9ff; - --color-blue-1000: #eaf6ff; - - /* Red Scale Dark */ - --color-red-100: #2a1314; - --color-red-200: #3d1719; - --color-red-300: #551a1e; - --color-red-400: #671e22; - --color-red-500: #822025; - --color-red-600: #e5484d; - --color-red-700: #e5484d; - --color-red-800: #da3036; - --color-red-900: #ff6369; - --color-red-1000: #ffecee; - - /* Amber Scale Dark */ - --color-amber-100: #271700; - --color-amber-200: #341c00; - --color-amber-300: #4a2900; - --color-amber-400: #573300; - --color-amber-500: #693f05; - --color-amber-600: #e79c13; - --color-amber-700: #ffb224; - --color-amber-800: #ff990a; - --color-amber-900: #f1a10d; - --color-amber-1000: #fef3dd; - - /* Green Scale Dark */ - --color-green-100: #0b2211; - --color-green-200: #0f2c17; - --color-green-300: #11351b; - --color-green-400: #0c461b; - --color-green-500: #126427; - --color-green-600: #1a9338; - --color-green-700: #46a758; - --color-green-800: #388e4a; - --color-green-900: #63c174; - --color-green-1000: #e5fbeb; - - /* Turbopack Dark - Temporary */ - --color-turbopack-text-red: #ff6d92; - --color-turbopack-text-blue: #45b2ff; - --color-turbopack-border-red: #6e293b; - --color-turbopack-border-blue: #284f80; - --color-turbopack-background-red: #250d12; - --color-turbopack-background-blue: #0a1723; -} - -@media (prefers-color-scheme: dark) { - :host(:not(.light)) { - --color-font: white; - --color-backdrop: rgba(0, 0, 0, 0.8); - --color-border-shadow: rgba(255, 255, 255, 0.145); - - --color-title-color: #fafafa; - --color-stack-notes: #a9a9a9; - - /* Background Dark */ - --color-background-100: #0a0a0a; - --color-background-200: #000000; - - /* Syntax Dark */ - --color-syntax-comment: #a0a0a0; - --color-syntax-constant: #ededed; - --color-syntax-function: #52a9ff; - --color-syntax-keyword: #f76e99; - --color-syntax-link: #0ac5b2; - --color-syntax-parameter: #f1a10d; - --color-syntax-punctuation: #ededed; - --color-syntax-string: #0ac5b2; - --color-syntax-string-expression: #0ac5b2; - - /* Gray Scale Dark */ - --color-gray-100: #1a1a1a; - --color-gray-200: #1f1f1f; - --color-gray-300: #292929; - --color-gray-400: #2e2e2e; - --color-gray-500: #454545; - --color-gray-600: #878787; - --color-gray-700: #8f8f8f; - --color-gray-800: #7d7d7d; - --color-gray-900: #a0a0a0; - --color-gray-1000: #ededed; - - /* Gray Alpha Scale Dark */ - --color-gray-alpha-100: rgba(255, 255, 255, 0.066); - --color-gray-alpha-200: rgba(255, 255, 255, 0.087); - --color-gray-alpha-300: rgba(255, 255, 255, 0.125); - --color-gray-alpha-400: rgba(255, 255, 255, 0.145); - --color-gray-alpha-500: rgba(255, 255, 255, 0.239); - --color-gray-alpha-600: rgba(255, 255, 255, 0.506); - --color-gray-alpha-700: rgba(255, 255, 255, 0.54); - --color-gray-alpha-800: rgba(255, 255, 255, 0.47); - --color-gray-alpha-900: rgba(255, 255, 255, 0.61); - --color-gray-alpha-1000: rgba(255, 255, 255, 0.923); - - /* Blue Scale Dark */ - --color-blue-100: #0f1b2d; - --color-blue-200: #10243e; - --color-blue-300: #0f3058; - --color-blue-400: #0d3868; - --color-blue-500: #0a4481; - --color-blue-600: #0091ff; - --color-blue-700: #0070f3; - --color-blue-800: #0060d1; - --color-blue-900: #52a9ff; - --color-blue-1000: #eaf6ff; - - /* Red Scale Dark */ - --color-red-100: #2a1314; - --color-red-200: #3d1719; - --color-red-300: #551a1e; - --color-red-400: #671e22; - --color-red-500: #822025; - --color-red-600: #e5484d; - --color-red-700: #e5484d; - --color-red-800: #da3036; - --color-red-900: #ff6369; - --color-red-1000: #ffecee; - - /* Amber Scale Dark */ - --color-amber-100: #271700; - --color-amber-200: #341c00; - --color-amber-300: #4a2900; - --color-amber-400: #573300; - --color-amber-500: #693f05; - --color-amber-600: #e79c13; - --color-amber-700: #ffb224; - --color-amber-800: #ff990a; - --color-amber-900: #f1a10d; - --color-amber-1000: #fef3dd; - - /* Green Scale Dark */ - --color-green-100: #0b2211; - --color-green-200: #0f2c17; - --color-green-300: #11351b; - --color-green-400: #0c461b; - --color-green-500: #126427; - --color-green-600: #1a9338; - --color-green-700: #46a758; - --color-green-800: #388e4a; - --color-green-900: #63c174; - --color-green-1000: #e5fbeb; - - /* Turbopack Dark - Temporary */ - --color-turbopack-text-red: #ff6d92; - --color-turbopack-text-blue: #45b2ff; - --color-turbopack-border-red: #6e293b; - --color-turbopack-border-blue: #284f80; - --color-turbopack-background-red: #250d12; - --color-turbopack-background-blue: #0a1723; - } -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/styles/default-theme.css"(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"),o=n.n(r),a=n("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"),i=n.n(a)()(o());i.push([e.id,`:host { - /* - * Although the style applied to the shadow host is isolated, - * the element that attached the shadow host (i.e. "nextjs-portal") - * is still affected by the parent's style (e.g. "body"). This may - * occur style conflicts like "display: flex", with other children - * elements therefore give the shadow host an absolute position. - */ - position: absolute; - - --color-font: #757575; - --color-backdrop: rgba(250, 250, 250, 0.8); - --color-border-shadow: rgba(0, 0, 0, 0.145); - - --color-title-color: #1f1f1f; - --color-stack-notes: #777; - - --color-accents-1: #808080; - --color-accents-2: #222222; - --color-accents-3: #404040; - - --font-stack-monospace: - '__nextjs-Geist Mono', 'Geist Mono', 'SFMono-Regular', Consolas, - 'Liberation Mono', Menlo, Courier, monospace; - --font-stack-sans: - '__nextjs-Geist', 'Geist', -apple-system, 'Source Sans Pro', sans-serif; - - font-family: var(--font-stack-sans); - font-variant-ligatures: none; - - /* TODO: Remove replaced ones. */ - --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); - --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); - --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); - --shadow-lg: - 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); - --shadow-xl: - 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); - --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25); - --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); - --shadow-none: 0 0 #0000; - - --shadow-small: 0px 2px 2px rgba(0, 0, 0, 0.04); - --shadow-menu: - 0px 1px 1px rgba(0, 0, 0, 0.02), 0px 4px 8px -4px rgba(0, 0, 0, 0.04), - 0px 16px 24px -8px rgba(0, 0, 0, 0.06); - - --focus-color: var(--color-blue-800); - --focus-ring: 2px solid var(--focus-color); - - --timing-swift: cubic-bezier(0.23, 0.88, 0.26, 0.92); - --timing-overlay: cubic-bezier(0.175, 0.885, 0.32, 1.1); - /* prettier-ignore */ - --timing-bounce: linear(0 0%, 0.005871 1%, 0.022058 2%, 0.046612 3%, 0.077823 4%, 0.114199 5%, 0.154441 6%, 0.197431 7.000000000000001%, 0.242208 8%, 0.287959 9%, 0.333995 10%, 0.379743 11%, 0.424732 12%, 0.46858 13%, 0.510982 14.000000000000002%, 0.551702 15%, 0.590564 16%, 0.627445 17%, 0.662261 18%, 0.694971 19%, 0.725561 20%, 0.754047 21%, 0.780462 22%, 0.804861 23%, 0.82731 24%, 0.847888 25%, 0.866679 26%, 0.883775 27%, 0.899272 28.000000000000004%, 0.913267 28.999999999999996%, 0.925856 30%, 0.937137 31%, 0.947205 32%, 0.956153 33%, 0.96407 34%, 0.971043 35%, 0.977153 36%, 0.982479 37%, 0.987094 38%, 0.991066 39%, 0.994462 40%, 0.997339 41%, 0.999755 42%, 1.001761 43%, 1.003404 44%, 1.004727 45%, 1.00577 46%, 1.006569 47%, 1.007157 48%, 1.007563 49%, 1.007813 50%, 1.007931 51%, 1.007939 52%, 1.007855 53%, 1.007697 54%, 1.007477 55.00000000000001%, 1.00721 56.00000000000001%, 1.006907 56.99999999999999%, 1.006576 57.99999999999999%, 1.006228 59%, 1.005868 60%, 1.005503 61%, 1.005137 62%, 1.004776 63%, 1.004422 64%, 1.004078 65%, 1.003746 66%, 1.003429 67%, 1.003127 68%, 1.00284 69%, 1.002571 70%, 1.002318 71%, 1.002082 72%, 1.001863 73%, 1.00166 74%, 1.001473 75%, 1.001301 76%, 1.001143 77%, 1.001 78%, 1.000869 79%, 1.000752 80%, 1.000645 81%, 1.00055 82%, 1.000464 83%, 1.000388 84%, 1.000321 85%, 1.000261 86%, 1.000209 87%, 1.000163 88%, 1.000123 89%, 1.000088 90%); - - --rounded-none: 0px; - --rounded-sm: 2px; - --rounded-md: 4px; - --rounded-md-2: 6px; - --rounded-lg: 8px; - --rounded-xl: 12px; - --rounded-2xl: 16px; - --rounded-3xl: 24px; - --rounded-4xl: 32px; - --rounded-full: 9999px; - - /* - This value gets set from the Dev Tools preferences, - and we use the following --size-* variables to - scale the relevant elements. - - The reason why we don't rely on rem values is because - if an app sets their root font size to something tiny, - it feels unexpected to have the app root size leak - into a Next.js surface. - - https://github.com/vercel/next.js/discussions/76812 - */ - --nextjs-dev-tools-scale: 1; - --size-1: calc(1px / var(--nextjs-dev-tools-scale)); - --size-2: calc(2px / var(--nextjs-dev-tools-scale)); - --size-3: calc(3px / var(--nextjs-dev-tools-scale)); - --size-4: calc(4px / var(--nextjs-dev-tools-scale)); - --size-5: calc(5px / var(--nextjs-dev-tools-scale)); - --size-6: calc(6px / var(--nextjs-dev-tools-scale)); - --size-7: calc(7px / var(--nextjs-dev-tools-scale)); - --size-8: calc(8px / var(--nextjs-dev-tools-scale)); - --size-9: calc(9px / var(--nextjs-dev-tools-scale)); - --size-10: calc(10px / var(--nextjs-dev-tools-scale)); - --size-11: calc(11px / var(--nextjs-dev-tools-scale)); - --size-12: calc(12px / var(--nextjs-dev-tools-scale)); - --size-13: calc(13px / var(--nextjs-dev-tools-scale)); - --size-14: calc(14px / var(--nextjs-dev-tools-scale)); - --size-15: calc(15px / var(--nextjs-dev-tools-scale)); - --size-16: calc(16px / var(--nextjs-dev-tools-scale)); - --size-17: calc(17px / var(--nextjs-dev-tools-scale)); - --size-18: calc(18px / var(--nextjs-dev-tools-scale)); - --size-20: calc(20px / var(--nextjs-dev-tools-scale)); - --size-22: calc(22px / var(--nextjs-dev-tools-scale)); - --size-24: calc(24px / var(--nextjs-dev-tools-scale)); - --size-26: calc(26px / var(--nextjs-dev-tools-scale)); - --size-28: calc(28px / var(--nextjs-dev-tools-scale)); - --size-30: calc(30px / var(--nextjs-dev-tools-scale)); - --size-32: calc(32px / var(--nextjs-dev-tools-scale)); - --size-34: calc(34px / var(--nextjs-dev-tools-scale)); - --size-36: calc(36px / var(--nextjs-dev-tools-scale)); - --size-38: calc(38px / var(--nextjs-dev-tools-scale)); - --size-40: calc(40px / var(--nextjs-dev-tools-scale)); - --size-42: calc(42px / var(--nextjs-dev-tools-scale)); - --size-44: calc(44px / var(--nextjs-dev-tools-scale)); - --size-46: calc(46px / var(--nextjs-dev-tools-scale)); - --size-48: calc(48px / var(--nextjs-dev-tools-scale)); - - @media print { - display: none; - } -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-bottom: 8px; - font-weight: 500; - line-height: 1.5; -} - -a { - color: var(--color-blue-900); - &:hover { - color: var(--color-blue-900); - } - &:focus-visible { - outline: var(--focus-ring); - } -} -`,""]);let l=i},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js"(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var n="",r=void 0!==t[5];return t[4]&&(n+="@supports (".concat(t[4],") {")),t[2]&&(n+="@media ".concat(t[2]," {")),r&&(n+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),n+=e(t),r&&(n+="}"),t[2]&&(n+="}"),t[4]&&(n+="}"),n}).join("")},t.i=function(e,n,r,o,a){"string"==typeof e&&(e=[[null,e,void 0]]);var i={};if(r)for(var l=0;l<this.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var c=0;c<e.length;c++){var u=[].concat(e[c]);r&&i[u[0]]||(void 0!==a&&(void 0===u[5]||(u[1]="@layer".concat(u[5].length>0?" ".concat(u[5]):""," {").concat(u[1],"}")),u[5]=a),n&&(u[2]&&(u[1]="@media ".concat(u[2]," {").concat(u[1],"}")),u[2]=n),o&&(u[4]?(u[1]="@supports (".concat(u[4],") {").concat(u[1],"}"),u[4]=o):u[4]="".concat(o)),t.push(u))}},t}},"../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js"(e){"use strict";e.exports=function(e){return e[1]}},"../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"(e){"use strict";var t=[];function n(e){for(var n=-1,r=0;r<t.length;r++)if(t[r].identifier===e){n=r;break}return n}function r(e,r){for(var o={},a=[],i=0;i<e.length;i++){var l=e[i],s=r.base?l[0]+r.base:l[0],c=o[s]||0,u="".concat(s," ").concat(c);o[s]=c+1;var d=n(u),f={css:l[1],media:l[2],sourceMap:l[3],supports:l[4],layer:l[5]};if(-1!==d)t[d].references++,t[d].updater(f);else{var p=function(e,t){var n=t.domAPI(t);return n.update(e),function(t){t?(t.css!==e.css||t.media!==e.media||t.sourceMap!==e.sourceMap||t.supports!==e.supports||t.layer!==e.layer)&&n.update(e=t):n.remove()}}(f,r);r.byIndex=i,t.splice(i,0,{identifier:u,updater:p,references:1})}a.push(u)}return a}e.exports=function(e,o){var a=r(e=e||[],o=o||{});return function(e){e=e||[];for(var i=0;i<a.length;i++){var l=n(a[i]);t[l].references--}for(var s=r(e,o),c=0;c<a.length;c++){var u=n(a[c]);0===t[u].references&&(t[u].updater(),t.splice(u,1))}a=s}}},"../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js"(e){"use strict";e.exports=function(e){var t=document.createElement("style");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},"../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"(e,t,n){"use strict";e.exports=function(e){var t=n.nc;t&&e.setAttribute("nonce",t)}},"../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js"(e){"use strict";e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){var r,o,a;r="",n.supports&&(r+="@supports (".concat(n.supports,") {")),n.media&&(r+="@media ".concat(n.media," {")),(o=void 0!==n.layer)&&(r+="@layer".concat(n.layer.length>0?" ".concat(n.layer):""," {")),r+=n.css,o&&(r+="}"),n.media&&(r+="}"),n.supports&&(r+="}"),(a=n.sourceMap)&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(a))))," */")),e.styleTagTransform(r,t,e.options)},remove:function(){var e;null===(e=t).parentNode||e.parentNode.removeChild(e)}}}},"../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js"(e){"use strict";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},"./dist/compiled/anser/index.js"(e){(()=>{"use strict";var t={211:e=>{var t=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),n=[[{color:"0, 0, 0",class:"ansi-black"},{color:"187, 0, 0",class:"ansi-red"},{color:"0, 187, 0",class:"ansi-green"},{color:"187, 187, 0",class:"ansi-yellow"},{color:"0, 0, 187",class:"ansi-blue"},{color:"187, 0, 187",class:"ansi-magenta"},{color:"0, 187, 187",class:"ansi-cyan"},{color:"255,255,255",class:"ansi-white"}],[{color:"85, 85, 85",class:"ansi-bright-black"},{color:"255, 85, 85",class:"ansi-bright-red"},{color:"0, 255, 0",class:"ansi-bright-green"},{color:"255, 255, 85",class:"ansi-bright-yellow"},{color:"85, 85, 255",class:"ansi-bright-blue"},{color:"255, 85, 255",class:"ansi-bright-magenta"},{color:"85, 255, 255",class:"ansi-bright-cyan"},{color:"255, 255, 255",class:"ansi-bright-white"}]];e.exports=function(){function e(){if(!(this instanceof e))throw TypeError("Cannot call a class as a function");this.fg=this.bg=this.fg_truecolor=this.bg_truecolor=null,this.bright=0}return t(e,null,[{key:"escapeForHtml",value:function(t){return(new e).escapeForHtml(t)}},{key:"linkify",value:function(t){return(new e).linkify(t)}},{key:"ansiToHtml",value:function(t,n){return(new e).ansiToHtml(t,n)}},{key:"ansiToJson",value:function(t,n){return(new e).ansiToJson(t,n)}},{key:"ansiToText",value:function(t){return(new e).ansiToText(t)}}]),t(e,[{key:"setupPalette",value:function(){this.PALETTE_COLORS=[];for(var e=0;e<2;++e)for(var t=0;t<8;++t)this.PALETTE_COLORS.push(n[e][t].color);for(var r=[0,95,135,175,215,255],o=function(e,t,n){return r[e]+", "+r[t]+", "+r[n]},a=0;a<6;++a)for(var i=0;i<6;++i)for(var l=0;l<6;++l)this.PALETTE_COLORS.push(o(a,i,l));for(var s=8,c=0;c<24;++c,s+=10)this.PALETTE_COLORS.push(o(s,s,s))}},{key:"escapeForHtml",value:function(e){return e.replace(/[&<>]/gm,function(e){return"&"==e?"&":"<"==e?"<":">"==e?">":""})}},{key:"linkify",value:function(e){return e.replace(/(https?:\/\/[^\s]+)/gm,function(e){return'<a href="'+e+'">'+e+"</a>"})}},{key:"ansiToHtml",value:function(e,t){return this.process(e,t,!0)}},{key:"ansiToJson",value:function(e,t){return(t=t||{}).json=!0,t.clearLine=!1,this.process(e,t,!0)}},{key:"ansiToText",value:function(e){return this.process(e,{},!1)}},{key:"process",value:function(e,t,n){var r=this,o=e.split(/\033\[/),a=o.shift();null==t&&(t={}),t.clearLine=/\r/.test(e);var i=o.map(function(e){return r.processChunk(e,t,n)});if(t&&t.json){var l=this.processChunkJson("");return l.content=a,l.clearLine=t.clearLine,i.unshift(l),t.remove_empty&&(i=i.filter(function(e){return!e.isEmpty()})),i}return i.unshift(a),i.join("")}},{key:"processChunkJson",value:function(e,t,r){var o=(t=void 0===t?{}:t).use_classes=void 0!==t.use_classes&&t.use_classes,a=t.key=o?"class":"color",i={content:e,fg:null,bg:null,fg_truecolor:null,bg_truecolor:null,clearLine:t.clearLine,decoration:null,was_processed:!1,isEmpty:function(){return!i.content}},l=e.match(/^([!\x3c-\x3f]*)([\d;]*)([\x20-\x2c]*[\x40-\x7e])([\s\S]*)/m);if(!l)return i;i.content=l[4];var s=l[2].split(";");if(""!==l[1]||"m"!==l[3]||!r)return i;for(this.decoration=null;s.length>0;){var c=parseInt(s.shift());if(isNaN(c)||0===c)this.fg=this.bg=this.decoration=null;else if(1===c)this.decoration="bold";else if(2===c)this.decoration="dim";else if(3==c)this.decoration="italic";else if(4==c)this.decoration="underline";else if(5==c)this.decoration="blink";else if(7===c)this.decoration="reverse";else if(8===c)this.decoration="hidden";else if(9===c)this.decoration="strikethrough";else if(39==c)this.fg=null;else if(49==c)this.bg=null;else if(c>=30&&c<38)this.fg=n[0][c%10][a];else if(c>=90&&c<98)this.fg=n[1][c%10][a];else if(c>=40&&c<48)this.bg=n[0][c%10][a];else if(c>=100&&c<108)this.bg=n[1][c%10][a];else if(38===c||48===c){var u=38===c;if(s.length>=1){var d=s.shift();if("5"===d&&s.length>=1){var f=parseInt(s.shift());if(f>=0&&f<=255)if(o){var p=f>=16?"ansi-palette-"+f:n[+(f>7)][f%8].class;u?this.fg=p:this.bg=p}else this.PALETTE_COLORS||this.setupPalette(),u?this.fg=this.PALETTE_COLORS[f]:this.bg=this.PALETTE_COLORS[f]}else if("2"===d&&s.length>=3){var h=parseInt(s.shift()),m=parseInt(s.shift()),g=parseInt(s.shift());if(h>=0&&h<=255&&m>=0&&m<=255&&g>=0&&g<=255){var y=h+", "+m+", "+g;o?u?(this.fg="ansi-truecolor",this.fg_truecolor=y):(this.bg="ansi-truecolor",this.bg_truecolor=y):u?this.fg=y:this.bg=y}}}}}return null===this.fg&&null===this.bg&&null===this.decoration||(i.fg=this.fg,i.bg=this.bg,i.fg_truecolor=this.fg_truecolor,i.bg_truecolor=this.bg_truecolor,i.decoration=this.decoration,i.was_processed=!0),i}},{key:"processChunk",value:function(e,t,n){var r=this;t=t||{};var o=this.processChunkJson(e,t,n);if(t.json)return o;if(o.isEmpty())return"";if(!o.was_processed)return o.content;var a=t.use_classes,i=[],l=[],s={},c=function(e){var t=[],n=void 0;for(n in e)e.hasOwnProperty(n)&&t.push("data-"+n+'="'+r.escapeForHtml(e[n])+'"');return t.length>0?" "+t.join(" "):""};return(o.fg&&(a?(l.push(o.fg+"-fg"),null!==o.fg_truecolor&&(s["ansi-truecolor-fg"]=o.fg_truecolor,o.fg_truecolor=null)):i.push("color:rgb("+o.fg+")")),o.bg&&(a?(l.push(o.bg+"-bg"),null!==o.bg_truecolor&&(s["ansi-truecolor-bg"]=o.bg_truecolor,o.bg_truecolor=null)):i.push("background-color:rgb("+o.bg+")")),o.decoration&&(a?l.push("ansi-"+o.decoration):"bold"===o.decoration?i.push("font-weight:bold"):"dim"===o.decoration?i.push("opacity:0.5"):"italic"===o.decoration?i.push("font-style:italic"):"reverse"===o.decoration?i.push("filter:invert(100%)"):"hidden"===o.decoration?i.push("visibility:hidden"):"strikethrough"===o.decoration?i.push("text-decoration:line-through"):i.push("text-decoration:"+o.decoration)),a)?'<span class="'+l.join(" ")+'"'+c(s)+">"+o.content+"</span>":'<span style="'+i.join(";")+'"'+c(s)+">"+o.content+"</span>"}}]),e}()}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var a=n[e]={exports:{}},i=!0;try{t[e](a,a.exports,r),i=!1}finally{i&&delete n[e]}return a.exports}r.ab="//",e.exports=r(211)})()},"./dist/compiled/react-dom/cjs/react-dom-client.production.js"(e,t,n){"use strict";var r,o=n("./dist/compiled/scheduler/index.js"),a=n("./dist/compiled/react/index.js"),i=n("./dist/compiled/react-dom/index.js");function l(e){var t="https://react.dev/errors/"+e;if(1<arguments.length){t+="?args[]="+encodeURIComponent(arguments[1]);for(var n=2;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n])}return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function s(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do 0!=(4098&(t=e).flags)&&(n=t.return),e=t.return;while(e)}return 3===t.tag?n:null}function c(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function u(e){if(31===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function d(e){if(s(e)!==e)throw Error(l(188))}function f(e,t,n,r,o,a){for(;null!==e;){if(5===e.tag&&n(e,r,o,a)||(22!==e.tag||null===e.memoizedState)&&(t||5!==e.tag)&&f(e.child,t,n,r,o,a))return!0;e=e.sibling}return!1}function p(e){for(e=e.return;null!==e;){if(3===e.tag||5===e.tag)return e;e=e.return}return null}function h(e){switch(e.tag){case 5:return e.stateNode;case 3:return e.stateNode.containerInfo;default:throw Error(l(559))}}var m=null,g=null;function y(e){return m=e,!0}function v(e,t,n){return e===n||e===t&&(m=e,!0)}function b(e,t,n){return e===n?(g=e,!1):e===t&&(null!==g&&(m=e),!0)}function x(e){if(null===e)return null;do e=null===e?null:e.return;while(e&&5!==e.tag&&27!==e.tag&&3!==e.tag);return e||null}function w(e,t,n){for(var r=0,o=e;o;o=n(o))r++;o=0;for(var a=t;a;a=n(a))o++;for(;0<r-o;)e=n(e),r--;for(;0<o-r;)t=n(t),o--;for(;r--;){if(e===t||null!==t&&e===t.alternate)return e;e=n(e),t=n(t)}return null}var _=Object.assign,j=Symbol.for("react.element"),k=Symbol.for("react.transitional.element"),S=Symbol.for("react.portal"),O=Symbol.for("react.fragment"),C=Symbol.for("react.strict_mode"),P=Symbol.for("react.profiler"),E=Symbol.for("react.consumer"),T=Symbol.for("react.context"),N=Symbol.for("react.forward_ref"),I=Symbol.for("react.suspense"),L=Symbol.for("react.suspense_list"),A=Symbol.for("react.memo"),z=Symbol.for("react.lazy");Symbol.for("react.scope");var R=Symbol.for("react.activity"),D=Symbol.for("react.legacy_hidden");Symbol.for("react.tracing_marker");var M=Symbol.for("react.memo_cache_sentinel"),Z=Symbol.for("react.view_transition"),U=Symbol.iterator;function F(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=U&&e[U]||e["@@iterator"])?e:null}var H=Symbol.for("react.client.reference"),V=Array.isArray,B=a.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,$=i.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,q={pending:!1,data:null,method:null,action:null},W=[],K=-1;function Y(e){return{current:e}}function X(e){0>K||(e.current=W[K],W[K]=null,K--)}function G(e,t){W[++K]=e.current,e.current=t}var Q=Y(null),J=Y(null),ee=Y(null),et=Y(null);function en(e,t){switch(G(ee,t),G(J,e),G(Q,null),t.nodeType){case 9:case 11:e=(e=t.documentElement)&&(e=e.namespaceURI)?uu(e):0;break;default:if(e=t.tagName,t=t.namespaceURI)e=ud(t=uu(t),e);else switch(e){case"svg":e=1;break;case"math":e=2;break;default:e=0}}X(Q),G(Q,e)}function er(){X(Q),X(J),X(ee)}function eo(e){var t=e.memoizedState;null!==t&&(db._currentValue=t.memoizedState,G(et,e));var n=ud(t=Q.current,e.type);t!==n&&(G(J,e),G(Q,n))}function ea(e){J.current===e&&(X(Q),X(J)),et.current===e&&(X(et),db._currentValue=q)}function ei(e){if(void 0===tX)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);tX=t&&t[1]||"",tG=-1<e.stack.indexOf("\n at")?" (<anonymous>)":-1<e.stack.indexOf("@")?"@unknown:0:0":""}return"\n"+tX+e+tG}var el=!1;function es(e,t){if(!e||el)return"";el=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var r={DetermineComponentFrameRoot:function(){try{if(t){var n=function(){throw Error()};if(Object.defineProperty(n.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(n,[])}catch(e){var r=e}Reflect.construct(e,[],n)}else{try{n.call()}catch(e){r=e}e.call(n.prototype)}}else{try{throw Error()}catch(e){r=e}(n=e())&&"function"==typeof n.catch&&n.catch(function(){})}}catch(e){if(e&&r&&"string"==typeof e.stack)return[e.stack,r.stack]}return[null,null]}};r.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var o=Object.getOwnPropertyDescriptor(r.DetermineComponentFrameRoot,"name");o&&o.configurable&&Object.defineProperty(r.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var a=r.DetermineComponentFrameRoot(),i=a[0],l=a[1];if(i&&l){var s=i.split("\n"),c=l.split("\n");for(o=r=0;r<s.length&&!s[r].includes("DetermineComponentFrameRoot");)r++;for(;o<c.length&&!c[o].includes("DetermineComponentFrameRoot");)o++;if(r===s.length||o===c.length)for(r=s.length-1,o=c.length-1;1<=r&&0<=o&&s[r]!==c[o];)o--;for(;1<=r&&0<=o;r--,o--)if(s[r]!==c[o]){if(1!==r||1!==o)do if(r--,o--,0>o||s[r]!==c[o]){var u="\n"+s[r].replace(" at new "," at ");return e.displayName&&u.includes("<anonymous>")&&(u=u.replace("<anonymous>",e.displayName)),u}while(1<=r&&0<=o);break}}}finally{el=!1,Error.prepareStackTrace=n}return(n=e?e.displayName||e.name:"")?ei(n):""}function ec(e){try{var t="",n=null;do t+=function(e,t){switch(e.tag){case 26:case 27:case 5:return ei(e.type);case 16:return ei("Lazy");case 13:return e.child!==t&&null!==t?ei("Suspense Fallback"):ei("Suspense");case 19:return ei("SuspenseList");case 0:case 15:return es(e.type,!1);case 11:return es(e.type.render,!1);case 1:return es(e.type,!0);case 31:return ei("Activity");case 30:return ei("ViewTransition");default:return""}}(e,n),n=e,e=e.return;while(e);return t}catch(e){return"\nError generating stack: "+e.message+"\n"+e.stack}}var eu=Object.prototype.hasOwnProperty,ed=o.unstable_scheduleCallback,ef=o.unstable_cancelCallback,ep=o.unstable_shouldYield,eh=o.unstable_requestPaint,em=o.unstable_now,eg=o.unstable_getCurrentPriorityLevel,ey=o.unstable_ImmediatePriority,ev=o.unstable_UserBlockingPriority,eb=o.unstable_NormalPriority,ex=o.unstable_LowPriority,ew=o.unstable_IdlePriority,e_=o.log,ej=o.unstable_setDisableYieldValue,ek=null,eS=null;function eO(e){if("function"==typeof e_&&ej(e),eS&&"function"==typeof eS.setStrictMode)try{eS.setStrictMode(ek,e)}catch(e){}}var eC=Math.clz32?Math.clz32:function(e){return 0==(e>>>=0)?32:31-(eP(e)/eE|0)|0},eP=Math.log,eE=Math.LN2,eT=256,eN=262144,eI=4194304;function eL(e){var t=42&e;if(0!==t)return t;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return 261888&e;case 262144:case 524288:case 1048576:case 2097152:return 3932160&e;case 4194304:case 8388608:case 0x1000000:case 0x2000000:return 0x3c00000&e;case 0x4000000:return 0x4000000;case 0x8000000:return 0x8000000;case 0x10000000:return 0x10000000;case 0x20000000:return 0x20000000;case 0x40000000:return 0;default:return e}}function eA(e,t,n){var r=e.pendingLanes;if(0===r)return 0;var o=0,a=e.suspendedLanes,i=e.pingedLanes;e=e.warmLanes;var l=0x7ffffff&r;return 0!==l?0!=(r=l&~a)?o=eL(r):0!=(i&=l)?o=eL(i):n||0!=(n=l&~e)&&(o=eL(n)):0!=(l=r&~a)?o=eL(l):0!==i?o=eL(i):n||0!=(n=r&~e)&&(o=eL(n)),0===o?0:0!==t&&t!==o&&0==(t&a)&&((a=o&-o)>=(n=t&-t)||32===a&&0!=(4194048&n))?t:o}function ez(e,t){return 0==(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)}function eR(){var e=eI;return 0==(0x3c00000&(eI<<=1))&&(eI=4194304),e}function eD(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function eM(e,t){e.pendingLanes|=t,0x10000000!==t&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function eZ(e,t,n){e.pendingLanes|=t,e.suspendedLanes&=~t;var r=31-eC(t);e.entangledLanes|=t,e.entanglements[r]=0x40000000|e.entanglements[r]|261930&n}function eU(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-eC(n),o=1<<r;o&t|e[r]&t&&(e[r]|=t),n&=~o}}function eF(e,t){var n=t&-t;return 0!=((n=0!=(42&n)?1:eH(n))&(e.suspendedLanes|t))?0:n}function eH(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 0x1000000:case 0x2000000:e=128;break;case 0x10000000:e=0x8000000;break;default:e=0}return e}function eV(e){return 2<(e&=-e)?8<e?0!=(0x7ffffff&e)?32:0x10000000:8:2}function eB(){var e=$.p;return 0!==e?e:void 0===(e=window.event)?32:dL(e.type)}function e$(e,t){var n=$.p;try{return $.p=e,t()}finally{$.p=n}}var eq=Math.random().toString(36).slice(2),eW="__reactFiber$"+eq,eK="__reactProps$"+eq,eY="__reactContainer$"+eq,eX="__reactEvents$"+eq,eG="__reactListeners$"+eq,eQ="__reactHandles$"+eq,eJ="__reactResources$"+eq,e0="__reactMarker$"+eq;function e1(e){delete e[eW],delete e[eK],delete e[eX],delete e[eG],delete e[eQ]}function e2(e){var t;if(t=e[eW])return t;for(var n=e.parentNode;n;){if(t=n[eY]||n[eW]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=uY(e);null!==e;){if(n=e[eW])return n;e=uY(e)}return t}n=(e=n).parentNode}return null}function e3(e){if(e=e[eW]||e[eY]){var t=e.tag;if(5===t||6===t||13===t||31===t||26===t||27===t||3===t)return e}return null}function e4(e){var t=e.tag;if(5===t||26===t||27===t||6===t)return e.stateNode;throw Error(l(33))}function e5(e){var t=e[eJ];return t||(t=e[eJ]={hoistableStyles:new Map,hoistableScripts:new Map}),t}function e6(e){e[e0]=!0}var e9=new Set,e8={};function e7(e,t){te(e,t),te(e+"Capture",t)}function te(e,t){for(e8[e]=t,e=0;e<t.length;e++)e9.add(t[e])}var tt=RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),tn={},tr={},to=!1;function ta(){var e=to;return to=!1,e}function ti(e,t,n){if(eu.call(tr,t)||!eu.call(tn,t)&&(tt.test(t)?tr[t]=!0:(tn[t]=!0,!1)))if(null===n)e.removeAttribute(t);else{switch(typeof n){case"undefined":case"function":case"symbol":e.removeAttribute(t);return;case"boolean":var r=t.toLowerCase().slice(0,5);if("data-"!==r&&"aria-"!==r)return void e.removeAttribute(t)}e.setAttribute(t,""+n)}}function tl(e,t,n){if(null===n)e.removeAttribute(t);else{switch(typeof n){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(t);return}e.setAttribute(t,""+n)}}function ts(e,t,n,r){if(null===r)e.removeAttribute(n);else{switch(typeof r){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(n);return}e.setAttributeNS(t,n,""+r)}}function tc(e){switch(typeof e){case"bigint":case"boolean":case"number":case"string":case"undefined":case"object":return e;default:return""}}function tu(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function td(e){if(!e._valueTracker){var t=tu(e)?"checked":"value";e._valueTracker=function(e,t,n){var r=Object.getOwnPropertyDescriptor(e.constructor.prototype,t);if(!e.hasOwnProperty(t)&&void 0!==r&&"function"==typeof r.get&&"function"==typeof r.set){var o=r.get,a=r.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(e){n=""+e,a.call(this,e)}}),Object.defineProperty(e,t,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(e){n=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e,t,""+e[t])}}function tf(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=tu(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function tp(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}var th=/[\n"\\]/g;function tm(e){return e.replace(th,function(e){return"\\"+e.charCodeAt(0).toString(16)+" "})}function tg(e,t,n,r,o,a,i,l){e.name="",null!=i&&"function"!=typeof i&&"symbol"!=typeof i&&"boolean"!=typeof i?e.type=i:e.removeAttribute("type"),null!=t?"number"===i?(0===t&&""===e.value||e.value!=t)&&(e.value=""+tc(t)):e.value!==""+tc(t)&&(e.value=""+tc(t)):"submit"!==i&&"reset"!==i||e.removeAttribute("value"),null!=t?tv(e,i,tc(t)):null!=n?tv(e,i,tc(n)):null!=r&&e.removeAttribute("value"),null==o&&null!=a&&(e.defaultChecked=!!a),null!=o&&(e.checked=o&&"function"!=typeof o&&"symbol"!=typeof o),null!=l&&"function"!=typeof l&&"symbol"!=typeof l&&"boolean"!=typeof l?e.name=""+tc(l):e.removeAttribute("name")}function ty(e,t,n,r,o,a,i,l){if(null!=a&&"function"!=typeof a&&"symbol"!=typeof a&&"boolean"!=typeof a&&(e.type=a),null!=t||null!=n){if(("submit"===a||"reset"===a)&&null==t)return void td(e);n=null!=n?""+tc(n):"",t=null!=t?""+tc(t):n,l||t===e.value||(e.value=t),e.defaultValue=t}r="function"!=typeof(r=null!=r?r:o)&&"symbol"!=typeof r&&!!r,e.checked=l?e.checked:!!r,e.defaultChecked=!!r,null!=i&&"function"!=typeof i&&"symbol"!=typeof i&&"boolean"!=typeof i&&(e.name=i),td(e)}function tv(e,t,n){"number"===t&&tp(e.ownerDocument)===e||e.defaultValue===""+n||(e.defaultValue=""+n)}function tb(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o<n.length;o++)t["$"+n[o]]=!0;for(n=0;n<e.length;n++)o=t.hasOwnProperty("$"+e[n].value),e[n].selected!==o&&(e[n].selected=o),o&&r&&(e[n].defaultSelected=!0)}else{for(o=0,n=""+tc(n),t=null;o<e.length;o++){if(e[o].value===n){e[o].selected=!0,r&&(e[o].defaultSelected=!0);return}null!==t||e[o].disabled||(t=e[o])}null!==t&&(t.selected=!0)}}function tx(e,t,n){if(null!=t&&((t=""+tc(t))!==e.value&&(e.value=t),null==n)){e.defaultValue!==t&&(e.defaultValue=t);return}e.defaultValue=null!=n?""+tc(n):""}function tw(e,t,n,r){if(null==t){if(null!=r){if(null!=n)throw Error(l(92));if(V(r)){if(1<r.length)throw Error(l(93));r=r[0]}n=r}null==n&&(n=""),t=n}e.defaultValue=n=tc(t),(r=e.textContent)===n&&""!==r&&null!==r&&(e.value=r),td(e)}function t_(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType){n.nodeValue=t;return}}e.textContent=t}var tj=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function tk(e,t,n){var r=0===t.indexOf("--");null==n||"boolean"==typeof n||""===n?r?e.setProperty(t,""):"float"===t?e.cssFloat="":e[t]="":r?e.setProperty(t,n):"number"!=typeof n||0===n||tj.has(t)?"float"===t?e.cssFloat=n:e[t]=(""+n).trim():e[t]=n+"px"}function tS(e,t,n){if(null!=t&&"object"!=typeof t)throw Error(l(62));if(e=e.style,null!=n){for(var r in n)!n.hasOwnProperty(r)||null!=t&&t.hasOwnProperty(r)||(0===r.indexOf("--")?e.setProperty(r,""):"float"===r?e.cssFloat="":e[r]="",to=!0);for(var o in t)r=t[o],t.hasOwnProperty(o)&&n[o]!==r&&(tk(e,o,r),to=!0)}else for(var a in t)t.hasOwnProperty(a)&&tk(e,a,t[a])}function tO(e){if(-1===e.indexOf("-"))return!1;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var tC=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),tP=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function tE(e){return tP.test(""+e)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":e}function tT(){}var tN=null;function tI(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var tL=null,tA=null;function tz(e){var t=e3(e);if(t&&(e=t.stateNode)){var n=e[eK]||null;switch(e=t.stateNode,t.type){case"input":if(tg(e,n.value,n.defaultValue,n.defaultValue,n.checked,n.defaultChecked,n.type,n.name),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll('input[name="'+tm(""+t)+'"][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var o=r[eK]||null;if(!o)throw Error(l(90));tg(r,o.value,o.defaultValue,o.defaultValue,o.checked,o.defaultChecked,o.type,o.name)}}for(t=0;t<n.length;t++)(r=n[t]).form===e.form&&tf(r)}break;case"textarea":tx(e,n.value,n.defaultValue);break;case"select":null!=(t=n.value)&&tb(e,!!n.multiple,t,!1)}}}var tR=!1;function tD(e,t,n){if(tR)return e(t,n);tR=!0;try{return e(t)}finally{if(tR=!1,(null!==tL||null!==tA)&&(cn(),tL&&(t=tL,e=tA,tA=tL=null,tz(t),e)))for(t=0;t<e.length;t++)tz(e[t])}}function tM(e,t){var n=e.stateNode;if(null===n)return null;var r=n[eK]||null;if(null===r)return null;switch(n=r[t],t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r="button"!==(e=e.type)&&"input"!==e&&"select"!==e&&"textarea"!==e),e=!r;break;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(l(231,t,typeof n));return n}var tZ="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement,tU=!1;if(tZ)try{var tF={};Object.defineProperty(tF,"passive",{get:function(){tU=!0}}),window.addEventListener("test",tF,tF),window.removeEventListener("test",tF,tF)}catch(e){tU=!1}var tH=null,tV=null,tB=null;function t$(){if(tB)return tB;var e,t,n=tV,r=n.length,o="value"in tH?tH.value:tH.textContent,a=o.length;for(e=0;e<r&&n[e]===o[e];e++);var i=r-e;for(t=1;t<=i&&n[r-t]===o[a-t];t++);return tB=o.slice(e,1<t?1-t:void 0)}function tq(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function tW(){return!0}function tK(){return!1}function tY(e){function t(t,n,r,o,a){for(var i in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=o,this.target=a,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(o):o[i]);return this.isDefaultPrevented=(null!=o.defaultPrevented?o.defaultPrevented:!1===o.returnValue)?tW:tK,this.isPropagationStopped=tK,this}return _(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=tW)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=tW)},persist:function(){},isPersistent:tW}),t}var tX,tG,tQ,tJ,t0,t1={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},t2=tY(t1),t3=_({},t1,{view:0,detail:0}),t4=tY(t3),t5=_({},t3,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:ni,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==t0&&(t0&&"mousemove"===e.type?(tQ=e.screenX-t0.screenX,tJ=e.screenY-t0.screenY):tJ=tQ=0,t0=e),tQ)},movementY:function(e){return"movementY"in e?e.movementY:tJ}}),t6=tY(t5),t9=tY(_({},t5,{dataTransfer:0})),t8=tY(_({},t3,{relatedTarget:0})),t7=tY(_({},t1,{animationName:0,elapsedTime:0,pseudoElement:0})),ne=tY(_({},t1,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}})),nt=tY(_({},t1,{data:0})),nn={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},nr={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},no={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function na(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=no[e])&&!!t[e]}function ni(){return na}var nl=tY(_({},t3,{key:function(e){if(e.key){var t=nn[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=tq(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?nr[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:ni,charCode:function(e){return"keypress"===e.type?tq(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?tq(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}})),ns=tY(_({},t5,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),nc=tY(_({},t3,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:ni})),nu=tY(_({},t1,{propertyName:0,elapsedTime:0,pseudoElement:0})),nd=tY(_({},t5,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0})),nf=tY(_({},t1,{newState:0,oldState:0})),np=[9,13,27,32],nh=tZ&&"CompositionEvent"in window,nm=null;tZ&&"documentMode"in document&&(nm=document.documentMode);var ng=tZ&&"TextEvent"in window&&!nm,ny=tZ&&(!nh||nm&&8<nm&&11>=nm),nv=!1;function nb(e,t){switch(e){case"keyup":return -1!==np.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function nx(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var nw=!1,n_={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function nj(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!n_[e.type]:"textarea"===t}function nk(e,t,n,r){tL?tA?tA.push(r):tA=[r]:tL=r,0<(t=c6(t,"onChange")).length&&(n=new t2("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var nS=null,nO=null;function nC(e){cQ(e,0)}function nP(e){if(tf(e4(e)))return e}function nE(e,t){if("change"===e)return t}var nT=!1;if(tZ){if(tZ){var nN="oninput"in document;if(!nN){var nI=document.createElement("div");nI.setAttribute("oninput","return;"),nN="function"==typeof nI.oninput}r=nN}else r=!1;nT=r&&(!document.documentMode||9<document.documentMode)}function nL(){nS&&(nS.detachEvent("onpropertychange",nA),nO=nS=null)}function nA(e){if("value"===e.propertyName&&nP(nO)){var t=[];nk(t,nO,e,tI(e)),tD(nC,t)}}function nz(e,t,n){"focusin"===e?(nL(),nS=t,nO=n,nS.attachEvent("onpropertychange",nA)):"focusout"===e&&nL()}function nR(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return nP(nO)}function nD(e,t){if("click"===e)return nP(t)}function nM(e,t){if("input"===e||"change"===e)return nP(t)}var nZ="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t};function nU(e,t){if(nZ(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var o=n[r];if(!eu.call(t,o)||!nZ(e[o],t[o]))return!1}return!0}function nF(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function nH(e,t){var n,r=nF(e);for(e=0;r;){if(3===r.nodeType){if(n=e+r.textContent.length,e<=t&&n>=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=nF(r)}}function nV(e){e=null!=e&&null!=e.ownerDocument&&null!=e.ownerDocument.defaultView?e.ownerDocument.defaultView:window;for(var t=tp(e.document);t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(n)e=t.contentWindow;else break;t=tp(e.document)}return t}function nB(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var n$=tZ&&"documentMode"in document&&11>=document.documentMode,nq=null,nW=null,nK=null,nY=!1;function nX(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;nY||null==nq||nq!==tp(r)||(r="selectionStart"in(r=nq)&&nB(r)?{start:r.selectionStart,end:r.selectionEnd}:{anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},nK&&nU(nK,r)||(nK=r,0<(r=c6(nW,"onSelect")).length&&(t=new t2("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=nq)))}function nG(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var nQ={animationend:nG("Animation","AnimationEnd"),animationiteration:nG("Animation","AnimationIteration"),animationstart:nG("Animation","AnimationStart"),transitionrun:nG("Transition","TransitionRun"),transitionstart:nG("Transition","TransitionStart"),transitioncancel:nG("Transition","TransitionCancel"),transitionend:nG("Transition","TransitionEnd")},nJ={},n0={};function n1(e){if(nJ[e])return nJ[e];if(!nQ[e])return e;var t,n=nQ[e];for(t in n)if(n.hasOwnProperty(t)&&t in n0)return nJ[e]=n[t];return e}tZ&&(n0=document.createElement("div").style,"AnimationEvent"in window||(delete nQ.animationend.animation,delete nQ.animationiteration.animation,delete nQ.animationstart.animation),"TransitionEvent"in window||delete nQ.transitionend.transition);var n2=n1("animationend"),n3=n1("animationiteration"),n4=n1("animationstart"),n5=n1("transitionrun"),n6=n1("transitionstart"),n9=n1("transitioncancel"),n8=n1("transitionend"),n7=new Map,re="abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function rt(e,t){n7.set(e,t),e7(t,[e])}re.push("scrollEnd");var rn=0;function rr(e,t){return null!=e.name&&"auto"!==e.name?e.name:null!==t.autoName?t.autoName:t.autoName=e="_"+(e=sK.identifierPrefix)+"t_"+(rn++).toString(32)+"_"}function ro(e){if(null==e||"string"==typeof e)return e;var t=null,n=s2;if(null!==n)for(var r=0;r<n.length;r++){var o=e[n[r]];if(null!=o){if("none"===o)return"none";t=null==t?o:t+" "+o}}return null==t?e.default:t}function ra(e,t){return e=ro(e),null==(t=ro(t))?"auto"===e?null:e:"auto"===t?null:t}var ri="function"==typeof reportError?reportError:function(e){if("object"==typeof window&&"function"==typeof window.ErrorEvent){var t=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:"object"==typeof e&&null!==e&&"string"==typeof e.message?String(e.message):String(e),error:e});if(!window.dispatchEvent(t))return}else if("object"==typeof process&&"function"==typeof process.emit)return void process.emit("uncaughtException",e);console.error(e)},rl=[],rs=0,rc=0;function ru(){for(var e=rs,t=rc=rs=0;t<e;){var n=rl[t];rl[t++]=null;var r=rl[t];rl[t++]=null;var o=rl[t];rl[t++]=null;var a=rl[t];if(rl[t++]=null,null!==r&&null!==o){var i=r.pending;null===i?o.next=o:(o.next=i.next,i.next=o),r.pending=o}0!==a&&rh(n,o,a)}}function rd(e,t,n,r){rl[rs++]=e,rl[rs++]=t,rl[rs++]=n,rl[rs++]=r,rc|=r,e.lanes|=r,null!==(e=e.alternate)&&(e.lanes|=r)}function rf(e,t,n,r){return rd(e,t,n,r),rm(e)}function rp(e,t){return rd(e,null,null,t),rm(e)}function rh(e,t,n){e.lanes|=n;var r=e.alternate;null!==r&&(r.lanes|=n);for(var o=!1,a=e.return;null!==a;)a.childLanes|=n,null!==(r=a.alternate)&&(r.childLanes|=n),22===a.tag&&(null===(e=a.stateNode)||1&e._visibility||(o=!0)),e=a,a=a.return;return 3===e.tag?(a=e.stateNode,o&&null!==t&&(o=31-eC(n),null===(r=(e=a.hiddenUpdates)[o])?e[o]=[t]:r.push(t),t.lane=0x20000000|n),a):null}function rm(e){if(50<s3)throw s3=0,s4=null,Error(l(185));for(var t=e.return;null!==t;)t=(e=t).return;return 3===e.tag?e.stateNode:null}var rg={};function ry(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function rv(e,t,n,r){return new ry(e,t,n,r)}function rb(e){return!(!(e=e.prototype)||!e.isReactComponent)}function rx(e,t){var n=e.alternate;return null===n?((n=rv(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=0x7e00000&e.flags,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n.refCleanup=e.refCleanup,n}function rw(e,t){e.flags&=0x7e00002;var n=e.alternate;return null===n?(e.childLanes=0,e.lanes=t,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null):(e.childLanes=n.childLanes,e.lanes=n.lanes,e.child=n.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=n.memoizedProps,e.memoizedState=n.memoizedState,e.updateQueue=n.updateQueue,e.type=n.type,e.dependencies=null===(t=n.dependencies)?null:{lanes:t.lanes,firstContext:t.firstContext}),e}function r_(e,t,n,r,o,a){var i=0;if(r=e,"function"==typeof e)rb(e)&&(i=1);else if("string"==typeof e)i=!function(e,t,n){if(1===n||null!=t.itemProp)return!1;switch(e){case"meta":case"title":return!0;case"style":if("string"!=typeof t.precedence||"string"!=typeof t.href||""===t.href)break;return!0;case"link":if("string"!=typeof t.rel||"string"!=typeof t.href||""===t.href||t.onLoad||t.onError)break;if("stylesheet"===t.rel)return e=t.disabled,"string"==typeof t.precedence&&null==e;return!0;case"script":if(t.async&&"function"!=typeof t.async&&"symbol"!=typeof t.async&&!t.onLoad&&!t.onError&&t.src&&"string"==typeof t.src)return!0}return!1}(e,n,Q.current)?"html"===e||"head"===e||"body"===e?27:5:26;else e:switch(e){case R:return(e=rv(31,n,t,o)).elementType=R,e.lanes=a,e;case O:return rj(n.children,o,a,t);case C:i=8,o|=24;break;case P:return(e=rv(12,n,t,2|o)).elementType=P,e.lanes=a,e;case I:return(e=rv(13,n,t,o)).elementType=I,e.lanes=a,e;case L:return(e=rv(19,n,t,o)).elementType=L,e.lanes=a,e;case D:case Z:return(e=rv(30,n,t,e=32|o)).elementType=Z,e.lanes=a,e.stateNode={autoName:null,paired:null,clones:null,ref:null},e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case T:i=10;break e;case E:i=9;break e;case N:i=11;break e;case A:i=14;break e;case z:i=16,r=null;break e}i=29,n=Error(l(130,null===e?"null":typeof e,"")),r=null}return(t=rv(i,n,t,o)).elementType=e,t.type=r,t.lanes=a,t}function rj(e,t,n,r){return(e=rv(7,e,r,t)).lanes=n,e}function rk(e,t,n){return(e=rv(6,e,null,t)).lanes=n,e}function rS(e){var t=rv(18,null,null,0);return t.stateNode=e,t}function rO(e,t,n){return(t=rv(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}var rC=new WeakMap;function rP(e,t){if("object"==typeof e&&null!==e){var n=rC.get(e);return void 0!==n?n:(t={value:e,source:t,stack:ec(t)},rC.set(e,t),t)}return{value:e,source:t,stack:ec(t)}}var rE=[],rT=0,rN=null,rI=0,rL=[],rA=0,rz=null,rR=1,rD="";function rM(e,t){rE[rT++]=rI,rE[rT++]=rN,rN=e,rI=t}function rZ(e,t,n){rL[rA++]=rR,rL[rA++]=rD,rL[rA++]=rz,rz=e;var r=rR;e=rD;var o=32-eC(r)-1;r&=~(1<<o),n+=1;var a=32-eC(t)+o;if(30<a){var i=o-o%5;a=(r&(1<<i)-1).toString(32),r>>=i,o-=i,rR=1<<32-eC(t)+o|n<<o|r,rD=a+e}else rR=1<<a|n<<o|r,rD=e}function rU(e){null!==e.return&&(rM(e,1),rZ(e,1,0))}function rF(e){for(;e===rN;)rN=rE[--rT],rE[rT]=null,rI=rE[--rT],rE[rT]=null;for(;e===rz;)rz=rL[--rA],rL[rA]=null,rD=rL[--rA],rL[rA]=null,rR=rL[--rA],rL[rA]=null}function rH(e,t){rL[rA++]=rR,rL[rA++]=rD,rL[rA++]=rz,rR=t.id,rD=t.overflow,rz=e}var rV=null,rB=null,r$=!1,rq=null,rW=!1,rK=Error(l(519));function rY(e){var t=Error(l(418,1<arguments.length&&void 0!==arguments[1]&&arguments[1]?"text":"HTML",""));throw r1(rP(t,e)),rK}function rX(e){var t=e.stateNode,n=e.type,r=e.memoizedProps;switch(t[eW]=e,t[eK]=r,n){case"dialog":cJ("cancel",t),cJ("close",t);break;case"iframe":case"object":case"embed":cJ("load",t);break;case"video":case"audio":for(n=0;n<cX.length;n++)cJ(cX[n],t);break;case"source":cJ("error",t);break;case"img":case"image":case"link":cJ("error",t),cJ("load",t);break;case"details":cJ("toggle",t);break;case"input":cJ("invalid",t),ty(t,r.value,r.defaultValue,r.checked,r.defaultChecked,r.type,r.name,!0);break;case"select":cJ("invalid",t);break;case"textarea":cJ("invalid",t),tw(t,r.value,r.defaultValue,r.children)}"string"!=typeof(n=r.children)&&"number"!=typeof n&&"bigint"!=typeof n||t.textContent===""+n||!0===r.suppressHydrationWarning||un(t.textContent,n)?(null!=r.popover&&(cJ("beforetoggle",t),cJ("toggle",t)),null!=r.onScroll&&cJ("scroll",t),null!=r.onScrollEnd&&cJ("scrollend",t),null!=r.onClick&&(t.onclick=tT),t=!0):t=!1,t||rY(e,!0)}function rG(e){for(rV=e.return;rV;)switch(rV.tag){case 5:case 31:case 13:rW=!1;return;case 27:case 3:rW=!0;return;default:rV=rV.return}}function rQ(e){if(e!==rV)return!1;if(!r$)return rG(e),r$=!0,!1;var t,n=e.tag;if((t=3!==n&&27!==n)&&((t=5===n)&&(t="form"===(t=e.type)||"button"===t||uf(e.type,e.memoizedProps)),t=!t),t&&rB&&rY(e),rG(e),13===n){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(l(317));rB=uK(e)}else if(31===n){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(l(317));rB=uK(e)}else 27===n?(n=rB,ub(e.type)?(e=uW,uW=null,rB=e):rB=n):rB=rV?uq(e.stateNode.nextSibling):null;return!0}function rJ(){rB=rV=null,r$=!1}function r0(){var e=rq;return null!==e&&(null===sU?sU=e:sU.push.apply(sU,e),rq=null),e}function r1(e){null===rq?rq=[e]:rq.push(e)}var r2=Y(null),r3=null,r4=null;function r5(e,t,n){G(r2,t._currentValue),t._currentValue=n}function r6(e){e._currentValue=r2.current,X(r2)}function r9(e,t,n){for(;null!==e;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,null!==r&&(r.childLanes|=t)):null!==r&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function r8(e,t,n,r){var o=e.child;for(null!==o&&(o.return=e);null!==o;){var a=o.dependencies;if(null!==a){var i=o.child;a=a.firstContext;e:for(;null!==a;){var s=a;a=o;for(var c=0;c<t.length;c++)if(s.context===t[c]){a.lanes|=n,null!==(s=a.alternate)&&(s.lanes|=n),r9(a.return,n,e),r||(i=null);break e}a=s.next}}else if(18===o.tag){if(null===(i=o.return))throw Error(l(341));i.lanes|=n,null!==(a=i.alternate)&&(a.lanes|=n),r9(i,n,e),i=null}else i=o.child;if(null!==i)i.return=o;else for(i=o;null!==i;){if(i===e){i=null;break}if(null!==(o=i.sibling)){o.return=i.return,i=o;break}i=i.return}o=i}}function r7(e,t,n,r){e=null;for(var o=t,a=!1;null!==o;){if(!a){if(0!=(524288&o.flags))a=!0;else if(0!=(262144&o.flags))break}if(10===o.tag){var i=o.alternate;if(null===i)throw Error(l(387));if(null!==(i=i.memoizedProps)){var s=o.type;nZ(o.pendingProps.value,i.value)||(null!==e?e.push(s):e=[s])}}else if(o===et.current){if(null===(i=o.alternate))throw Error(l(387));i.memoizedState.memoizedState!==o.memoizedState.memoizedState&&(null!==e?e.push(db):e=[db])}o=o.return}null!==e&&r8(t,e,n,r),t.flags|=262144}function oe(e){for(e=e.firstContext;null!==e;){if(!nZ(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function ot(e){r3=e,r4=null,null!==(e=e.dependencies)&&(e.firstContext=null)}function on(e){return oo(r3,e)}function or(e,t){return null===r3&&ot(e),oo(e,t)}function oo(e,t){var n=t._currentValue;if(t={context:t,memoizedValue:n,next:null},null===r4){if(null===e)throw Error(l(308));r4=t,e.dependencies={lanes:0,firstContext:t},e.flags|=524288}else r4=r4.next=t;return n}var oa="undefined"!=typeof AbortController?AbortController:function(){var e=[],t=this.signal={aborted:!1,addEventListener:function(t,n){e.push(n)}};this.abort=function(){t.aborted=!0,e.forEach(function(e){return e()})}},oi=o.unstable_scheduleCallback,ol=o.unstable_NormalPriority,os={$$typeof:T,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function oc(){return{controller:new oa,data:new Map,refCount:0}}function ou(e){e.refCount--,0===e.refCount&&oi(ol,function(){e.controller.abort()})}function od(e,t){if(0!=(4194048&e.pendingLanes)){var n=e.transitionTypes;for(null===n&&(n=e.transitionTypes=[]),e=0;e<t.length;e++){var r=t[e];-1===n.indexOf(r)&&n.push(r)}}}var of=null,op=null,oh=0,om=0,og=null;function oy(){if(0==--oh&&(of=null,null!==op)){null!==og&&(og.status="fulfilled");var e=op;op=null,om=0,og=null;for(var t=0;t<e.length;t++)(0,e[t])()}}var ov=B.S;B.S=function(e,t){if(sV=em(),"object"==typeof t&&null!==t&&"function"==typeof t.then&&function(e,t){if(null===op){var n=op=[];oh=0,om=c$(),og={status:"pending",value:void 0,then:function(e){n.push(e)}}}oh++,t.then(oy,oy)}(0,t),null!==of)for(var n=cI;null!==n;)od(n,of),n=n.next;if(null!==(n=e.types)){for(var r=cI;null!==r;)od(r,n),r=r.next;if(0!==om){null===(r=of)&&(r=of=[]);for(var o=0;o<n.length;o++){var a=n[o];-1===r.indexOf(a)&&r.push(a)}}}null!==ov&&ov(e,t)};var ob=Y(null);function ox(){var e=ob.current;return null!==e?e:sk.pooledCache}function ow(e,t){null===t?G(ob,ob.current):G(ob,t.pool)}function o_(){var e=ox();return null===e?null:{parent:os._currentValue,pool:e}}var oj=Error(l(460)),ok=Error(l(474)),oS=Error(l(542)),oO={then:function(){}};function oC(e){return"fulfilled"===(e=e.status)||"rejected"===e}function oP(e,t,n){switch(void 0===(n=e[n])?e.push(t):n!==t&&(t.then(tT,tT),t=n),t.status){case"fulfilled":return t.value;case"rejected":throw oI(e=t.reason),e;default:if("string"==typeof t.status)t.then(tT,tT);else{if(null!==(e=sk)&&100<e.shellSuspendCounter)throw Error(l(482));(e=t).status="pending",e.then(function(e){if("pending"===t.status){var n=t;n.status="fulfilled",n.value=e}},function(e){if("pending"===t.status){var n=t;n.status="rejected",n.reason=e}})}switch(t.status){case"fulfilled":return t.value;case"rejected":throw oI(e=t.reason),e}throw oT=t,oj}}function oE(e){try{return(0,e._init)(e._payload)}catch(e){if(null!==e&&"object"==typeof e&&"function"==typeof e.then)throw oT=e,oj;throw e}}var oT=null;function oN(){if(null===oT)throw Error(l(459));var e=oT;return oT=null,e}function oI(e){if(e===oj||e===oS)throw Error(l(483))}var oL=null,oA=0;function oz(e){var t=oA;return oA+=1,null===oL&&(oL=[]),oP(oL,e,t)}function oR(e,t){e.ref=void 0!==(t=t.props.ref)?t:null}function oD(e,t){if(t.$$typeof===j)throw Error(l(525));throw Error(l(31,"[object Object]"===(e=Object.prototype.toString.call(t))?"object with keys {"+Object.keys(t).join(", ")+"}":e))}function oM(e){function t(t,n){if(e){var r=t.deletions;null===r?(t.deletions=[n],t.flags|=16):r.push(n)}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function r(e){for(var t=new Map;null!==e;)null===e.key?t.set(e.index,e):t.set(e.key,e),e=e.sibling;return t}function o(e,t){return(e=rx(e,t)).index=0,e.sibling=null,e}function a(t,n,r){return(t.index=r,e)?null!==(r=t.alternate)?(r=r.index)<n?(t.flags|=0x8000002,n):r:(t.flags|=0x8000002,n):(t.flags|=1048576,n)}function i(t){return e&&null===t.alternate&&(t.flags|=0x8000002),t}function s(e,t,n,r){return null===t||6!==t.tag?(t=rk(n,e.mode,r)).return=e:(t=o(t,n)).return=e,t}function c(e,t,n,r){var a=n.type;return a===O?(oR(e=d(e,t,n.props.children,r,n.key),n),e):(null!==t&&(t.elementType===a||"object"==typeof a&&null!==a&&a.$$typeof===z&&oE(a)===t.type)?oR(t=o(t,n.props),n):oR(t=r_(n.type,n.key,n.props,null,e.mode,r),n),t.return=e,t)}function u(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?(t=rO(n,e.mode,r)).return=e:(t=o(t,n.children||[])).return=e,t}function d(e,t,n,r,a){return null===t||7!==t.tag?(t=rj(n,e.mode,r,a)).return=e:(t=o(t,n)).return=e,t}function f(e,t,n){if("string"==typeof t&&""!==t||"number"==typeof t||"bigint"==typeof t)return(t=rk(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case k:return oR(n=r_(t.type,t.key,t.props,null,e.mode,n),t),n.return=e,n;case S:return(t=rO(t,e.mode,n)).return=e,t;case z:return f(e,t=oE(t),n)}if(V(t)||F(t))return(t=rj(t,e.mode,n,null)).return=e,t;if("function"==typeof t.then)return f(e,oz(t),n);if(t.$$typeof===T)return f(e,or(e,t),n);oD(e,t)}return null}function p(e,t,n,r){var o=null!==t?t.key:null;if("string"==typeof n&&""!==n||"number"==typeof n||"bigint"==typeof n)return null!==o?null:s(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case k:return n.key===o?c(e,t,n,r):null;case S:return n.key===o?u(e,t,n,r):null;case z:return p(e,t,n=oE(n),r)}if(V(n)||F(n))return null!==o?null:d(e,t,n,r,null);if("function"==typeof n.then)return p(e,t,oz(n),r);if(n.$$typeof===T)return p(e,t,or(e,n),r);oD(e,n)}return null}function h(e,t,n,r,o){if("string"==typeof r&&""!==r||"number"==typeof r||"bigint"==typeof r)return s(t,e=e.get(n)||null,""+r,o);if("object"==typeof r&&null!==r){switch(r.$$typeof){case k:return c(t,e=e.get(null===r.key?n:r.key)||null,r,o);case S:return u(t,e=e.get(null===r.key?n:r.key)||null,r,o);case z:return h(e,t,n,r=oE(r),o)}if(V(r)||F(r))return d(t,e=e.get(n)||null,r,o,null);if("function"==typeof r.then)return h(e,t,n,oz(r),o);if(r.$$typeof===T)return h(e,t,n,or(t,r),o);oD(t,r)}return null}return function(s,c,u,d){try{oA=0;var m=function s(c,u,d,m){if("object"==typeof d&&null!==d&&d.type===O&&null===d.key&&void 0===d.props.ref&&(d=d.props.children),"object"==typeof d&&null!==d){switch(d.$$typeof){case k:e:{for(var g=d.key;null!==u;){if(u.key===g){if((g=d.type)===O){if(7===u.tag){n(c,u.sibling),oR(m=o(u,d.props.children),d),m.return=c,c=m;break e}}else if(u.elementType===g||"object"==typeof g&&null!==g&&g.$$typeof===z&&oE(g)===u.type){n(c,u.sibling),oR(m=o(u,d.props),d),m.return=c,c=m;break e}n(c,u);break}t(c,u),u=u.sibling}d.type===O?oR(m=rj(d.props.children,c.mode,m,d.key),d):oR(m=r_(d.type,d.key,d.props,null,c.mode,m),d),m.return=c,c=m}return i(c);case S:e:{for(g=d.key;null!==u;){if(u.key===g)if(4===u.tag&&u.stateNode.containerInfo===d.containerInfo&&u.stateNode.implementation===d.implementation){n(c,u.sibling),(m=o(u,d.children||[])).return=c,c=m;break e}else{n(c,u);break}t(c,u),u=u.sibling}(m=rO(d,c.mode,m)).return=c,c=m}return i(c);case z:return s(c,u,d=oE(d),m)}if(V(d))return function(o,i,l,s){for(var c=null,u=null,d=i,m=i=0,g=null;null!==d&&m<l.length;m++){d.index>m?(g=d,d=null):g=d.sibling;var y=p(o,d,l[m],s);if(null===y){null===d&&(d=g);break}e&&d&&null===y.alternate&&t(o,d),i=a(y,i,m),null===u?c=y:u.sibling=y,u=y,d=g}if(m===l.length)return n(o,d),r$&&rM(o,m),c;if(null===d){for(;m<l.length;m++)null!==(d=f(o,l[m],s))&&(i=a(d,i,m),null===u?c=d:u.sibling=d,u=d);return r$&&rM(o,m),c}for(d=r(d);m<l.length;m++)null!==(g=h(d,o,m,l[m],s))&&(e&&null!==(y=g.alternate)&&d.delete(null===y.key?m:y.key),i=a(g,i,m),null===u?c=g:u.sibling=g,u=g);return e&&d.forEach(function(e){return t(o,e)}),r$&&rM(o,m),c}(c,u,d,m);if(F(d)){if("function"!=typeof(g=F(d)))throw Error(l(150));return function(o,i,s,c){if(null==s)throw Error(l(151));for(var u=null,d=null,m=i,g=i=0,y=null,v=s.next();null!==m&&!v.done;g++,v=s.next()){m.index>g?(y=m,m=null):y=m.sibling;var b=p(o,m,v.value,c);if(null===b){null===m&&(m=y);break}e&&m&&null===b.alternate&&t(o,m),i=a(b,i,g),null===d?u=b:d.sibling=b,d=b,m=y}if(v.done)return n(o,m),r$&&rM(o,g),u;if(null===m){for(;!v.done;g++,v=s.next())null!==(v=f(o,v.value,c))&&(i=a(v,i,g),null===d?u=v:d.sibling=v,d=v);return r$&&rM(o,g),u}for(m=r(m);!v.done;g++,v=s.next())null!==(v=h(m,o,g,v.value,c))&&(e&&null!==(y=v.alternate)&&m.delete(null===y.key?g:y.key),i=a(v,i,g),null===d?u=v:d.sibling=v,d=v);return e&&m.forEach(function(e){return t(o,e)}),r$&&rM(o,g),u}(c,u,d=g.call(d),m)}if("function"==typeof d.then)return s(c,u,oz(d),m);if(d.$$typeof===T)return s(c,u,or(c,d),m);oD(c,d)}return"string"==typeof d&&""!==d||"number"==typeof d||"bigint"==typeof d?(d=""+d,null!==u&&6===u.tag?(n(c,u.sibling),(m=o(u,d)).return=c):(n(c,u),(m=rk(d,c.mode,m)).return=c),i(c=m)):n(c,u)}(s,c,u,d);return oL=null,m}catch(e){if(e===oj||e===oS)throw e;var g=rv(29,e,null,s.mode);return g.lanes=d,g.return=s,g}finally{}}}var oZ=oM(!0),oU=oM(!1),oF=!1;function oH(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function oV(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function oB(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function o$(e,t,n){var r=e.updateQueue;if(null===r)return null;if(r=r.shared,0!=(2&sj)){var o=r.pending;return null===o?t.next=t:(t.next=o.next,o.next=t),r.pending=t,t=rm(e),rh(e,null,n),t}return rd(e,r,t,n),rm(e)}function oq(e,t,n){if(null!==(t=t.updateQueue)&&(t=t.shared,0!=(4194048&n))){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,eU(e,n)}}function oW(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var o=null,a=null;if(null!==(n=n.firstBaseUpdate)){do{var i={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};null===a?o=a=i:a=a.next=i,n=n.next}while(null!==n);null===a?o=a=t:a=a.next=t}else o=a=t;n={baseState:r.baseState,firstBaseUpdate:o,lastBaseUpdate:a,shared:r.shared,callbacks:r.callbacks},e.updateQueue=n;return}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}var oK=!1;function oY(){if(oK){var e=og;if(null!==e)throw e}}function oX(e,t,n,r){oK=!1;var o=e.updateQueue;oF=!1;var a=o.firstBaseUpdate,i=o.lastBaseUpdate,l=o.shared.pending;if(null!==l){o.shared.pending=null;var s=l,c=s.next;s.next=null,null===i?a=c:i.next=c,i=s;var u=e.alternate;null!==u&&(l=(u=u.updateQueue).lastBaseUpdate)!==i&&(null===l?u.firstBaseUpdate=c:l.next=c,u.lastBaseUpdate=s)}if(null!==a){var d=o.baseState;for(i=0,u=c=s=null,l=a;;){var f=-0x20000001&l.lane,p=f!==l.lane;if(p?(sO&f)===f:(r&f)===f){0!==f&&f===om&&(oK=!0),null!==u&&(u=u.next={lane:0,tag:l.tag,payload:l.payload,callback:null,next:null});e:{var h=e,m=l;switch(f=t,m.tag){case 1:if("function"==typeof(h=m.payload)){d=h.call(n,d,f);break e}d=h;break e;case 3:h.flags=-65537&h.flags|128;case 0:if(null==(f="function"==typeof(h=m.payload)?h.call(n,d,f):h))break e;d=_({},d,f);break e;case 2:oF=!0}}null!==(f=l.callback)&&(e.flags|=64,p&&(e.flags|=8192),null===(p=o.callbacks)?o.callbacks=[f]:p.push(f))}else p={lane:f,tag:l.tag,payload:l.payload,callback:l.callback,next:null},null===u?(c=u=p,s=d):u=u.next=p,i|=f;if(null===(l=l.next))if(null===(l=o.shared.pending))break;else l=(p=l).next,p.next=null,o.lastBaseUpdate=p,o.shared.pending=null}null===u&&(s=d),o.baseState=s,o.firstBaseUpdate=c,o.lastBaseUpdate=u,null===a&&(o.shared.lanes=0),sA|=i,e.lanes=i,e.memoizedState=d}}function oG(e,t){if("function"!=typeof e)throw Error(l(191,e));e.call(t)}function oQ(e,t){var n=e.callbacks;if(null!==n)for(e.callbacks=null,e=0;e<n.length;e++)oG(n[e],t)}var oJ=Y(null),o0=Y(0);function o1(e,t){G(o0,e=sI),G(oJ,t),sI=e|t.baseLanes}function o2(){G(o0,sI),G(oJ,oJ.current)}function o3(){sI=o0.current,X(oJ),X(o0)}var o4=Y(null),o5=null;function o6(e){var t=e.alternate;G(at,1&at.current),G(o4,e),null===o5&&(null===t||null!==oJ.current?o5=e:null!==t.memoizedState&&(o5=e))}function o9(e){G(at,at.current),G(o4,e),null===o5&&(o5=e)}function o8(e){22===e.tag?(G(at,at.current),G(o4,e),null===o5&&(o5=e)):o7()}function o7(){G(at,at.current),G(o4,o4.current)}function ae(e){X(o4),o5===e&&(o5=null),X(at)}var at=Y(0);function an(e,t){G(o4,o4.current),G(at,t)}function ar(e){X(at),X(o4),o5===e&&(o5=null)}function ao(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||uB(n)||u$(n)))return t}else if(19===t.tag&&"independent"!==t.memoizedProps.revealOrder){if(0!=(128&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var aa=0,ai=null,al=null,as=null,ac=!1,au=!1,ad=!1,af=0,ap=0,ah=null,am=0;function ag(){throw Error(l(321))}function ay(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!nZ(e[n],t[n]))return!1;return!0}function av(e,t,n,r,o,a){return aa=a,ai=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,B.H=null===e||null===e.memoizedState?iO:iC,ad=!1,a=n(r,o),ad=!1,au&&(a=ax(t,n,r,o)),ab(e),a}function ab(e){B.H=iS;var t=null!==al&&null!==al.next;if(aa=0,as=al=ai=null,ac=!1,ap=0,ah=null,t)throw Error(l(300));null===e||iV||null!==(e=e.dependencies)&&oe(e)&&(iV=!0)}function ax(e,t,n,r){ai=e;var o=0;do{if(au&&(ah=null),ap=0,au=!1,25<=o)throw Error(l(301));if(o+=1,as=al=null,null!=e.updateQueue){var a=e.updateQueue;a.lastEffect=null,a.events=null,a.stores=null,null!=a.memoCache&&(a.memoCache.index=0)}B.H=iP,a=t(n,r)}while(au);return a}function aw(){var e=B.H,t=e.useState()[0];return t="function"==typeof t.then?aP(t):t,e=e.useState()[0],(null!==al?al.memoizedState:null)!==e&&(ai.flags|=1024),t}function a_(){var e=0!==af;return af=0,e}function aj(e,t,n){t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~n}function ak(e){if(ac){for(e=e.memoizedState;null!==e;){var t=e.queue;null!==t&&(t.pending=null),e=e.next}ac=!1}aa=0,as=al=ai=null,au=!1,ap=af=0,ah=null}function aS(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===as?ai.memoizedState=as=e:as=as.next=e,as}function aO(){if(null===al){var e=ai.alternate;e=null!==e?e.memoizedState:null}else e=al.next;var t=null===as?ai.memoizedState:as.next;if(null!==t)as=t,al=e;else{if(null===e){if(null===ai.alternate)throw Error(l(467));throw Error(l(310))}e={memoizedState:(al=e).memoizedState,baseState:al.baseState,baseQueue:al.baseQueue,queue:al.queue,next:null},null===as?ai.memoizedState=as=e:as=as.next=e}return as}function aC(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function aP(e){var t=ap;return ap+=1,null===ah&&(ah=[]),e=oP(ah,e,t),t=ai,null===(null===as?t.memoizedState:as.next)&&(B.H=null===(t=t.alternate)||null===t.memoizedState?iO:iC),e}function aE(e){if(null!==e&&"object"==typeof e){if("function"==typeof e.then)return aP(e);if(e.$$typeof===T)return on(e)}throw Error(l(438,String(e)))}function aT(e){var t=null,n=ai.updateQueue;if(null!==n&&(t=n.memoCache),null==t){var r=ai.alternate;null!==r&&null!==(r=r.updateQueue)&&null!=(r=r.memoCache)&&(t={data:r.data.map(function(e){return e.slice()}),index:0})}if(null==t&&(t={data:[],index:0}),null===n&&(n=aC(),ai.updateQueue=n),n.memoCache=t,void 0===(n=t.data[t.index]))for(n=t.data[t.index]=Array(e),r=0;r<e;r++)n[r]=M;return t.index++,n}function aN(e,t){return"function"==typeof t?t(e):t}function aI(e){return aL(aO(),al,e)}function aL(e,t,n){var r=e.queue;if(null===r)throw Error(l(311));r.lastRenderedReducer=n;var o=e.baseQueue,a=r.pending;if(null!==a){if(null!==o){var i=o.next;o.next=a.next,a.next=i}t.baseQueue=o=a,r.pending=null}if(a=e.baseState,null===o)e.memoizedState=a;else{t=o.next;var s=i=null,c=null,u=t,d=!1;do{var f=-0x20000001&u.lane;if(f!==u.lane?(sO&f)===f:(aa&f)===f){var p=u.revertLane;if(0===p)null!==c&&(c=c.next={lane:0,revertLane:0,gesture:null,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null}),f===om&&(d=!0);else if((aa&p)===p){u=u.next,p===om&&(d=!0);continue}else f={lane:0,revertLane:u.revertLane,gesture:null,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null},null===c?(s=c=f,i=a):c=c.next=f,ai.lanes|=p,sA|=p;f=u.action,ad&&n(a,f),a=u.hasEagerState?u.eagerState:n(a,f)}else p={lane:f,revertLane:u.revertLane,gesture:u.gesture,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null},null===c?(s=c=p,i=a):c=c.next=p,ai.lanes|=f,sA|=f;u=u.next}while(null!==u&&u!==t);if(null===c?i=a:c.next=s,!nZ(a,e.memoizedState)&&(iV=!0,d&&null!==(n=og)))throw n;e.memoizedState=a,e.baseState=i,e.baseQueue=c,r.lastRenderedState=a}return null===o&&(r.lanes=0),[e.memoizedState,r.dispatch]}function aA(e){var t=aO(),n=t.queue;if(null===n)throw Error(l(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,a=t.memoizedState;if(null!==o){n.pending=null;var i=o=o.next;do a=e(a,i.action),i=i.next;while(i!==o);nZ(a,t.memoizedState)||(iV=!0),t.memoizedState=a,null===t.baseQueue&&(t.baseState=a),n.lastRenderedState=a}return[a,r]}function az(e,t,n){var r=ai,o=aO(),a=r$;if(a){if(void 0===n)throw Error(l(407));n=n()}else n=t();var i=!nZ((al||o).memoizedState,n);if(i&&(o.memoizedState=n,iV=!0),o=o.queue,a6(aM.bind(null,r,o,e),[e]),o.getSnapshot!==t||i||null!==as&&1&as.memoizedState.tag){if(r.flags|=2048,a1(9,{destroy:void 0},aD.bind(null,r,o,n,t),null),null===sk)throw Error(l(349));a||0!=(127&aa)||aR(r,t,n)}return n}function aR(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},null===(t=ai.updateQueue)?(t=aC(),ai.updateQueue=t,t.stores=[e]):null===(n=t.stores)?t.stores=[e]:n.push(e)}function aD(e,t,n,r){t.value=n,t.getSnapshot=r,aZ(t)&&aU(e)}function aM(e,t,n){return n(function(){aZ(t)&&aU(e)})}function aZ(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!nZ(e,n)}catch(e){return!0}}function aU(e){var t=rp(e,2);null!==t&&s8(t,e,2)}function aF(e){var t=aS();if("function"==typeof e){var n=e;if(e=n(),ad){eO(!0);try{n()}finally{eO(!1)}}}return t.memoizedState=t.baseState=e,t.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:aN,lastRenderedState:e},t}function aH(e,t,n,r){return e.baseState=n,aL(e,al,"function"==typeof r?r:aN)}function aV(e,t,n,r,o){if(i_(e))throw Error(l(485));if(null!==(e=t.action)){var a={payload:o,action:e,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(e){a.listeners.push(e)}};null!==B.T?n(!0):a.isTransition=!1,r(a),null===(n=t.pending)?(a.next=t.pending=a,aB(t,a)):(a.next=n.next,t.pending=n.next=a)}}function aB(e,t){var n=t.action,r=t.payload,o=e.state;if(t.isTransition){var a=B.T,i={};i.types=null!==a?a.types:null,B.T=i;try{var l=n(o,r),s=B.S;null!==s&&s(i,l),a$(e,t,l)}catch(n){aW(e,t,n)}finally{null!==a&&null!==i.types&&(a.types=i.types),B.T=a}}else try{a=n(o,r),a$(e,t,a)}catch(n){aW(e,t,n)}}function a$(e,t,n){null!==n&&"object"==typeof n&&"function"==typeof n.then?n.then(function(n){aq(e,t,n)},function(n){return aW(e,t,n)}):aq(e,t,n)}function aq(e,t,n){t.status="fulfilled",t.value=n,aK(t),e.state=n,null!==(t=e.pending)&&((n=t.next)===t?e.pending=null:(n=n.next,t.next=n,aB(e,n)))}function aW(e,t,n){var r=e.pending;if(e.pending=null,null!==r){r=r.next;do t.status="rejected",t.reason=n,aK(t),t=t.next;while(t!==r)}e.action=null}function aK(e){e=e.listeners;for(var t=0;t<e.length;t++)(0,e[t])()}function aY(e,t){return t}function aX(e,t){if(r$){var n=sk.formState;if(null!==n){e:{var r=ai;if(r$){if(rB){t:{for(var o=rB,a=rW;8!==o.nodeType;)if(!a||null===(o=uq(o.nextSibling))){o=null;break t}o="F!"===(a=o.data)||"F"===a?o:null}if(o){rB=uq(o.nextSibling),r="F!"===o.data;break e}}rY(r)}r=!1}r&&(t=n[0])}}return(n=aS()).memoizedState=n.baseState=t,r={pending:null,lanes:0,dispatch:null,lastRenderedReducer:aY,lastRenderedState:t},n.queue=r,n=ib.bind(null,ai,r),r.dispatch=n,r=aF(!1),a=iw.bind(null,ai,!1,r.queue),r=aS(),o={state:t,dispatch:null,action:e,pending:null},r.queue=o,n=aV.bind(null,ai,o,a,n),o.dispatch=n,r.memoizedState=e,[t,n,!1]}function aG(e){return aQ(aO(),al,e)}function aQ(e,t,n){if(t=aL(e,t,aY)[0],e=aI(aN)[0],"object"==typeof t&&null!==t&&"function"==typeof t.then)try{var r=aP(t)}catch(e){if(e===oj)throw oS;throw e}else r=t;var o=(t=aO()).queue,a=o.dispatch;return n!==t.memoizedState&&(ai.flags|=2048,a1(9,{destroy:void 0},aJ.bind(null,o,n),null)),[r,a,e]}function aJ(e,t){e.action=t}function a0(e){var t=aO(),n=al;if(null!==n)return aQ(t,n,e);aO(),t=t.memoizedState;var r=(n=aO()).queue.dispatch;return n.memoizedState=e,[t,r,!1]}function a1(e,t,n,r){return e={tag:e,create:n,deps:r,inst:t,next:null},null===(t=ai.updateQueue)&&(t=aC(),ai.updateQueue=t),null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function a2(){return aO().memoizedState}function a3(e,t,n,r){var o=aS();ai.flags|=e,o.memoizedState=a1(1|t,{destroy:void 0},n,void 0===r?null:r)}function a4(e,t,n,r){var o=aO();r=void 0===r?null:r;var a=o.memoizedState.inst;null!==al&&null!==r&&ay(r,al.memoizedState.deps)?o.memoizedState=a1(t,a,n,r):(ai.flags|=e,o.memoizedState=a1(1|t,a,n,r))}function a5(e,t){a3(8390656,8,e,t)}function a6(e,t){a4(2048,8,e,t)}function a9(e){var t=aO().memoizedState,n={ref:t,nextImpl:e};ai.flags|=4;var r=ai.updateQueue;if(null===r)r=aC(),ai.updateQueue=r,r.events=[n];else{var o=r.events;null===o?r.events=[n]:o.push(n)}return function(){if(0!=(2&sj))throw Error(l(440));return t.impl.apply(void 0,arguments)}}function a8(e,t){return a4(4,2,e,t)}function a7(e,t){return a4(4,4,e,t)}function ie(e,t){if("function"==typeof t){var n=t(e=e());return function(){"function"==typeof n?n():t(null)}}if(null!=t)return t.current=e=e(),function(){t.current=null}}function it(e,t,n){n=null!=n?n.concat([e]):null,a4(4,4,ie.bind(null,t,e),n)}function ir(){}function io(e,t){var n=aO();t=void 0===t?null:t;var r=n.memoizedState;return null!==t&&ay(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function ia(e,t){var n=aO();t=void 0===t?null:t;var r=n.memoizedState;if(null!==t&&ay(t,r[1]))return r[0];if(r=e(),ad){eO(!0);try{e()}finally{eO(!1)}}return n.memoizedState=[r,t],r}function ii(e,t,n){return void 0===n||0!=(0x40000000&aa)&&0==(261930&sO)?e.memoizedState=t:(e.memoizedState=n,e=s6(),ai.lanes|=e,sA|=e,n)}function il(e,t,n,r){return nZ(n,t)?n:null!==oJ.current?(nZ(e=ii(e,n,r),t)||(iV=!0),e):0==(42&aa)||0!=(0x40000000&aa)&&0==(261930&sO)?(iV=!0,e.memoizedState=n):(e=s6(),ai.lanes|=e,sA|=e,t)}function is(e,t,n,r,o){var a=$.p;$.p=0!==a&&8>a?a:8;var i=B.T,l={};l.types=null!==i?i.types:null,B.T=l,iw(e,!1,t,n);try{var s=o(),c=B.S;if(null!==c&&c(l,s),null!==s&&"object"==typeof s&&"function"==typeof s.then){var u,d,f=(u=[],d={status:"pending",value:null,reason:null,then:function(e){u.push(e)}},s.then(function(){d.status="fulfilled",d.value=r;for(var e=0;e<u.length;e++)(0,u[e])(r)},function(e){for(d.status="rejected",d.reason=e,e=0;e<u.length;e++)(0,u[e])(void 0)}),d);ix(e,t,f,s5(e))}else ix(e,t,r,s5(e))}catch(n){ix(e,t,{then:function(){},status:"rejected",reason:n},s5())}finally{$.p=a,null!==i&&null!==l.types&&(i.types=l.types),B.T=i}}function ic(){}function iu(e,t,n,r){if(5!==e.tag)throw Error(l(476));var o=id(e).queue;is(e,o,t,q,null===n?ic:function(){return ip(e),n(r)})}function id(e){var t=e.memoizedState;if(null!==t)return t;var n={};return(t={memoizedState:q,baseState:q,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:aN,lastRenderedState:q},next:null}).next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:aN,lastRenderedState:n},next:null},e.memoizedState=t,null!==(e=e.alternate)&&(e.memoizedState=t),t}function ip(e){var t=id(e);null===t.next&&(t=e.alternate.memoizedState),ix(e,t.next.queue,{},s5())}function ih(){return on(db)}function im(){return aO().memoizedState}function ig(){return aO().memoizedState}function iy(e){for(var t=e.return;null!==t;){switch(t.tag){case 24:case 3:var n=s5(),r=o$(t,e=oB(n),n);null!==r&&(s8(r,t,n),oq(r,t,n)),t={cache:oc()},e.payload=t;return}t=t.return}}function iv(e,t,n){var r=s5();n={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},i_(e)?ij(t,n):null!==(n=rf(e,t,n,r))&&(s8(n,e,r),ik(n,t,r))}function ib(e,t,n){ix(e,t,n,s5())}function ix(e,t,n,r){var o={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(i_(e))ij(t,o);else{var a=e.alternate;if(0===e.lanes&&(null===a||0===a.lanes)&&null!==(a=t.lastRenderedReducer))try{var i=t.lastRenderedState,l=a(i,n);if(o.hasEagerState=!0,o.eagerState=l,nZ(l,i))return rd(e,t,o,0),null===sk&&ru(),!1}catch(e){}finally{}if(null!==(n=rf(e,t,o,r)))return s8(n,e,r),ik(n,t,r),!0}return!1}function iw(e,t,n,r){if(r={lane:2,revertLane:c$(),gesture:null,action:r,hasEagerState:!1,eagerState:null,next:null},i_(e)){if(t)throw Error(l(479))}else null!==(t=rf(e,n,r,2))&&s8(t,e,2)}function i_(e){var t=e.alternate;return e===ai||null!==t&&t===ai}function ij(e,t){au=ac=!0;var n=e.pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function ik(e,t,n){if(0!=(4194048&n)){var r=t.lanes;r&=e.pendingLanes,t.lanes=n|=r,eU(e,n)}}var iS={readContext:on,use:aE,useCallback:ag,useContext:ag,useEffect:ag,useImperativeHandle:ag,useLayoutEffect:ag,useInsertionEffect:ag,useMemo:ag,useReducer:ag,useRef:ag,useState:ag,useDebugValue:ag,useDeferredValue:ag,useTransition:ag,useSyncExternalStore:ag,useId:ag,useHostTransitionStatus:ag,useFormState:ag,useActionState:ag,useOptimistic:ag,useMemoCache:ag,useCacheRefresh:ag};iS.useEffectEvent=ag;var iO={readContext:on,use:aE,useCallback:function(e,t){return aS().memoizedState=[e,void 0===t?null:t],e},useContext:on,useEffect:a5,useImperativeHandle:function(e,t,n){n=null!=n?n.concat([e]):null,a3(4194308,4,ie.bind(null,t,e),n)},useLayoutEffect:function(e,t){return a3(4194308,4,e,t)},useInsertionEffect:function(e,t){a3(4,2,e,t)},useMemo:function(e,t){var n=aS();t=void 0===t?null:t;var r=e();if(ad){eO(!0);try{e()}finally{eO(!1)}}return n.memoizedState=[r,t],r},useReducer:function(e,t,n){var r=aS();if(void 0!==n){var o=n(t);if(ad){eO(!0);try{n(t)}finally{eO(!1)}}}else o=t;return r.memoizedState=r.baseState=o,r.queue=e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:o},e=e.dispatch=iv.bind(null,ai,e),[r.memoizedState,e]},useRef:function(e){return aS().memoizedState={current:e}},useState:function(e){var t=(e=aF(e)).queue,n=ib.bind(null,ai,t);return t.dispatch=n,[e.memoizedState,n]},useDebugValue:ir,useDeferredValue:function(e,t){return ii(aS(),e,t)},useTransition:function(){var e=aF(!1);return e=is.bind(null,ai,e.queue,!0,!1),aS().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,t,n){var r=ai,o=aS();if(r$){if(void 0===n)throw Error(l(407));n=n()}else{if(n=t(),null===sk)throw Error(l(349));0!=(127&sO)||aR(r,t,n)}o.memoizedState=n;var a={value:n,getSnapshot:t};return o.queue=a,a5(aM.bind(null,r,a,e),[e]),r.flags|=2048,a1(9,{destroy:void 0},aD.bind(null,r,a,n,t),null),n},useId:function(){var e=aS(),t=sk.identifierPrefix;if(r$){var n=rD,r=rR;t="_"+t+"R_"+(n=(r&~(1<<32-eC(r)-1)).toString(32)+n),0<(n=af++)&&(t+="H"+n.toString(32)),t+="_"}else t="_"+t+"r_"+(n=am++).toString(32)+"_";return e.memoizedState=t},useHostTransitionStatus:ih,useFormState:aX,useActionState:aX,useOptimistic:function(e){var t=aS();t.memoizedState=t.baseState=e;var n={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return t.queue=n,t=iw.bind(null,ai,!0,n),n.dispatch=t,[e,t]},useMemoCache:aT,useCacheRefresh:function(){return aS().memoizedState=iy.bind(null,ai)},useEffectEvent:function(e){var t=aS(),n={impl:e};return t.memoizedState=n,function(){if(0!=(2&sj))throw Error(l(440));return n.impl.apply(void 0,arguments)}}},iC={readContext:on,use:aE,useCallback:io,useContext:on,useEffect:a6,useImperativeHandle:it,useInsertionEffect:a8,useLayoutEffect:a7,useMemo:ia,useReducer:aI,useRef:a2,useState:function(){return aI(aN)},useDebugValue:ir,useDeferredValue:function(e,t){return il(aO(),al.memoizedState,e,t)},useTransition:function(){var e=aI(aN)[0],t=aO().memoizedState;return["boolean"==typeof e?e:aP(e),t]},useSyncExternalStore:az,useId:im,useHostTransitionStatus:ih,useFormState:aG,useActionState:aG,useOptimistic:function(e,t){return aH(aO(),al,e,t)},useMemoCache:aT,useCacheRefresh:ig};iC.useEffectEvent=a9;var iP={readContext:on,use:aE,useCallback:io,useContext:on,useEffect:a6,useImperativeHandle:it,useInsertionEffect:a8,useLayoutEffect:a7,useMemo:ia,useReducer:aA,useRef:a2,useState:function(){return aA(aN)},useDebugValue:ir,useDeferredValue:function(e,t){var n=aO();return null===al?ii(n,e,t):il(n,al.memoizedState,e,t)},useTransition:function(){var e=aA(aN)[0],t=aO().memoizedState;return["boolean"==typeof e?e:aP(e),t]},useSyncExternalStore:az,useId:im,useHostTransitionStatus:ih,useFormState:a0,useActionState:a0,useOptimistic:function(e,t){var n=aO();return null!==al?aH(n,al,e,t):(n.baseState=e,[e,n.queue.dispatch])},useMemoCache:aT,useCacheRefresh:ig};function iE(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:_({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}iP.useEffectEvent=a9;var iT={enqueueSetState:function(e,t,n){e=e._reactInternals;var r=s5(),o=oB(r);o.payload=t,null!=n&&(o.callback=n),null!==(t=o$(e,o,r))&&(s8(t,e,r),oq(t,e,r))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=s5(),o=oB(r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),null!==(t=o$(e,o,r))&&(s8(t,e,r),oq(t,e,r))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=s5(),r=oB(n);r.tag=2,null!=t&&(r.callback=t),null!==(t=o$(e,r,n))&&(s8(t,e,n),oq(t,e,n))}};function iN(e,t,n,r,o,a,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,a,i):!t.prototype||!t.prototype.isPureReactComponent||!nU(n,r)||!nU(o,a)}function iI(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&iT.enqueueReplaceState(t,t.state,null)}function iL(e,t){var n=t;if("ref"in t)for(var r in n={},t)"ref"!==r&&(n[r]=t[r]);if(e=e.defaultProps)for(var o in n===t&&(n=_({},n)),e)void 0===n[o]&&(n[o]=e[o]);return n}function iA(e){ri(e)}function iz(e){console.error(e)}function iR(e){ri(e)}function iD(e,t){try{(0,e.onUncaughtError)(t.value,{componentStack:t.stack})}catch(e){setTimeout(function(){throw e})}}function iM(e,t,n){try{(0,e.onCaughtError)(n.value,{componentStack:n.stack,errorBoundary:1===t.tag?t.stateNode:null})}catch(e){setTimeout(function(){throw e})}}function iZ(e,t,n){return(n=oB(n)).tag=3,n.payload={element:null},n.callback=function(){iD(e,t)},n}function iU(e){return(e=oB(e)).tag=3,e}function iF(e,t,n,r){var o=n.type.getDerivedStateFromError;if("function"==typeof o){var a=r.value;e.payload=function(){return o(a)},e.callback=function(){iM(t,n,r)}}var i=n.stateNode;null!==i&&"function"==typeof i.componentDidCatch&&(e.callback=function(){iM(t,n,r),"function"!=typeof o&&(null===sq?sq=new Set([this]):sq.add(this));var e=r.stack;this.componentDidCatch(r.value,{componentStack:null!==e?e:""})})}var iH=Error(l(461)),iV=!1;function iB(e,t,n,r){t.child=null===e?oU(t,null,n,r):oZ(t,e.child,n,r)}function i$(e,t,n,r,o){n=n.render;var a=t.ref;if("ref"in r){var i={};for(var l in r)"ref"!==l&&(i[l]=r[l])}else i=r;return(ot(t),r=av(e,t,n,i,a,o),l=a_(),null===e||iV)?(r$&&l&&rU(t),t.flags|=1,iB(e,t,r,o),t.child):(aj(e,t,o),li(e,t,o))}function iq(e,t,n,r,o){if(null===e){var a=n.type;return"function"!=typeof a||rb(a)||void 0!==a.defaultProps||null!==n.compare?((e=r_(n.type,null,r,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=a,iW(e,t,a,r,o))}if(a=e.child,!ll(e,o)){var i=a.memoizedProps;if((n=null!==(n=n.compare)?n:nU)(i,r)&&e.ref===t.ref)return li(e,t,o)}return t.flags|=1,(e=rx(a,r)).ref=t.ref,e.return=t,t.child=e}function iW(e,t,n,r,o){if(null!==e){var a=e.memoizedProps;if(nU(a,r)&&e.ref===t.ref)if(iV=!1,t.pendingProps=r=a,!ll(e,o))return t.lanes=e.lanes,li(e,t,o);else 0!=(131072&e.flags)&&(iV=!0)}return i0(e,t,n,r,o)}function iK(e,t,n,r){var o=r.children,a=null!==e?e.memoizedState:null;if(null===e&&null===t.stateNode&&(t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),"hidden"===r.mode){if(0!=(128&t.flags)){if(a=null!==a?a.baseLanes|n:n,null!==e){for(o=0,r=t.child=e.child;null!==r;)o=o|r.lanes|r.childLanes,r=r.sibling;r=o&~a}else r=0,t.child=null;return iX(e,t,a,n,r)}if(0==(0x20000000&n))return r=t.lanes=0x20000000,iX(e,t,null!==a?a.baseLanes|n:n,n,r);t.memoizedState={baseLanes:0,cachePool:null},null!==e&&ow(t,null!==a?a.cachePool:null),null!==a?o1(t,a):o2(),o8(t)}else null!==a?(ow(t,a.cachePool),o1(t,a),o7(),t.memoizedState=null):(null!==e&&ow(t,null),o2(),o7());return iB(e,t,o,n),t.child}function iY(e,t){return null!==e&&22===e.tag||null!==t.stateNode||(t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),t.sibling}function iX(e,t,n,r,o){var a=ox();return t.memoizedState={baseLanes:n,cachePool:a=null===a?null:{parent:os._currentValue,pool:a}},null!==e&&ow(t,null),o2(),o8(t),null!==e&&r7(e,t,r,!0),t.childLanes=o,null}function iG(e,t){return(t=i7({mode:t.mode,children:t.children},e.mode)).ref=e.ref,e.child=t,t.return=e,t}function iQ(e,t,n){return oZ(t,e.child,null,n),e=iG(t,t.pendingProps),e.flags|=2,ae(t),t.memoizedState=null,e}function iJ(e,t){var n=t.ref;if(null===n)null!==e&&null!==e.ref&&(t.flags|=4194816);else{if("function"!=typeof n&&"object"!=typeof n)throw Error(l(284));(null===e||e.ref!==n)&&(t.flags|=4194816)}}function i0(e,t,n,r,o){return(ot(t),n=av(e,t,n,r,void 0,o),r=a_(),null===e||iV)?(r$&&r&&rU(t),t.flags|=1,iB(e,t,n,o),t.child):(aj(e,t,o),li(e,t,o))}function i1(e,t,n,r,o,a){return(ot(t),t.updateQueue=null,n=ax(t,r,n,o),ab(e),r=a_(),null===e||iV)?(r$&&r&&rU(t),t.flags|=1,iB(e,t,n,a),t.child):(aj(e,t,a),li(e,t,a))}function i2(e,t,n,r,o){if(ot(t),null===t.stateNode){var a=rg,i=n.contextType;"object"==typeof i&&null!==i&&(a=on(i)),t.memoizedState=null!==(a=new n(r,a)).state&&void 0!==a.state?a.state:null,a.updater=iT,t.stateNode=a,a._reactInternals=t,(a=t.stateNode).props=r,a.state=t.memoizedState,a.refs={},oH(t),i=n.contextType,a.context="object"==typeof i&&null!==i?on(i):rg,a.state=t.memoizedState,"function"==typeof(i=n.getDerivedStateFromProps)&&(iE(t,n,i,r),a.state=t.memoizedState),"function"==typeof n.getDerivedStateFromProps||"function"==typeof a.getSnapshotBeforeUpdate||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||(i=a.state,"function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount(),i!==a.state&&iT.enqueueReplaceState(a,a.state,null),oX(t,r,a,o),oY(),a.state=t.memoizedState),"function"==typeof a.componentDidMount&&(t.flags|=4194308),r=!0}else if(null===e){a=t.stateNode;var l=t.memoizedProps,s=iL(n,l);a.props=s;var c=a.context,u=n.contextType;i=rg,"object"==typeof u&&null!==u&&(i=on(u));var d=n.getDerivedStateFromProps;u="function"==typeof d||"function"==typeof a.getSnapshotBeforeUpdate,l=t.pendingProps!==l,u||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(l||c!==i)&&iI(t,a,r,i),oF=!1;var f=t.memoizedState;a.state=f,oX(t,r,a,o),oY(),c=t.memoizedState,l||f!==c||oF?("function"==typeof d&&(iE(t,n,d,r),c=t.memoizedState),(s=oF||iN(t,n,s,r,f,c,i))?(u||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||("function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount()),"function"==typeof a.componentDidMount&&(t.flags|=4194308)):("function"==typeof a.componentDidMount&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=c),a.props=r,a.state=c,a.context=i,r=s):("function"==typeof a.componentDidMount&&(t.flags|=4194308),r=!1)}else{a=t.stateNode,oV(e,t),u=iL(n,i=t.memoizedProps),a.props=u,d=t.pendingProps,f=a.context,c=n.contextType,s=rg,"object"==typeof c&&null!==c&&(s=on(c)),(c="function"==typeof(l=n.getDerivedStateFromProps)||"function"==typeof a.getSnapshotBeforeUpdate)||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(i!==d||f!==s)&&iI(t,a,r,s),oF=!1,f=t.memoizedState,a.state=f,oX(t,r,a,o),oY();var p=t.memoizedState;i!==d||f!==p||oF||null!==e&&null!==e.dependencies&&oe(e.dependencies)?("function"==typeof l&&(iE(t,n,l,r),p=t.memoizedState),(u=oF||iN(t,n,u,r,f,p,s)||null!==e&&null!==e.dependencies&&oe(e.dependencies))?(c||"function"!=typeof a.UNSAFE_componentWillUpdate&&"function"!=typeof a.componentWillUpdate||("function"==typeof a.componentWillUpdate&&a.componentWillUpdate(r,p,s),"function"==typeof a.UNSAFE_componentWillUpdate&&a.UNSAFE_componentWillUpdate(r,p,s)),"function"==typeof a.componentDidUpdate&&(t.flags|=4),"function"==typeof a.getSnapshotBeforeUpdate&&(t.flags|=1024)):("function"!=typeof a.componentDidUpdate||i===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),"function"!=typeof a.getSnapshotBeforeUpdate||i===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=p),a.props=r,a.state=p,a.context=s,r=u):("function"!=typeof a.componentDidUpdate||i===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),"function"!=typeof a.getSnapshotBeforeUpdate||i===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),r=!1)}return a=r,iJ(e,t),r=0!=(128&t.flags),a||r?(a=t.stateNode,n=r&&"function"!=typeof n.getDerivedStateFromError?null:a.render(),t.flags|=1,null!==e&&r?(t.child=oZ(t,e.child,null,o),t.child=oZ(t,null,n,o)):iB(e,t,n,o),t.memoizedState=a.state,e=t.child):e=li(e,t,o),e}function i3(e,t,n,r){return rJ(),t.flags|=256,iB(e,t,n,r),t.child}var i4={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function i5(e){return{baseLanes:e,cachePool:o_()}}function i6(e,t,n){return e=null!==e?e.childLanes&~n:0,t&&(e|=sD),e}function i9(e,t,n){var r,o=t.pendingProps,a=!1,i=0!=(128&t.flags);if((r=i)||(r=(null===e||null!==e.memoizedState)&&0!=(2&at.current)),r&&(a=!0,t.flags&=-129),r=0!=(32&t.flags),t.flags&=-33,null===e){if(r$){if(a?o6(t):o7(),(e=rB)?null!==(e=null!==(e=uV(e,rW))&&"&"!==e.data?e:null)&&(t.memoizedState={dehydrated:e,treeContext:null!==rz?{id:rR,overflow:rD}:null,retryLane:0x20000000,hydrationErrors:null},(n=rS(e)).return=t,t.child=n,rV=t,rB=null):e=null,null===e)throw rY(t);return u$(e)?t.lanes=32:t.lanes=0x20000000,null}var s=o.children;return(o=o.fallback,a)?(o7(),s=i7({mode:"hidden",children:s},a=t.mode),o=rj(o,a,n,null),s.return=t,o.return=t,s.sibling=o,t.child=s,(o=t.child).memoizedState=i5(n),o.childLanes=i6(e,r,n),t.memoizedState=i4,iY(null,o)):(o6(t),i8(t,s))}var c=e.memoizedState;if(null!==c&&null!==(s=c.dehydrated)){if(i)256&t.flags?(o6(t),t.flags&=-257,t=le(e,t,n)):null!==t.memoizedState?(o7(),t.child=e.child,t.flags|=128,t=null):(o7(),s=o.fallback,a=t.mode,o=i7({mode:"visible",children:o.children},a),s=rj(s,a,n,null),s.flags|=2,o.return=t,s.return=t,o.sibling=s,t.child=o,oZ(t,e.child,null,n),(o=t.child).memoizedState=i5(n),o.childLanes=i6(e,r,n),t.memoizedState=i4,t=iY(null,o));else if(o6(t),u$(s)){if(r=s.nextSibling&&s.nextSibling.dataset)var u=r.dgst;r=u,(o=Error(l(419))).stack="",o.digest=r,r1({value:o,source:null,stack:null}),t=le(e,t,n)}else if(iV||r7(e,t,n,!1),r=0!=(n&e.childLanes),iV||r){if(null!==(r=sk)&&0!==(o=eF(r,n))&&o!==c.retryLane)throw c.retryLane=o,rp(e,o),s8(r,e,o),iH;uB(s)||cc(),t=le(e,t,n)}else uB(s)?(t.flags|=192,t.child=e.child,t=null):(e=c.treeContext,rB=uq(s.nextSibling),rV=t,r$=!0,rq=null,rW=!1,null!==e&&rH(t,e),t=i8(t,o.children),t.flags|=4096);return t}return a?(o7(),s=o.fallback,a=t.mode,u=(c=e.child).sibling,(o=rx(c,{mode:"hidden",children:o.children})).subtreeFlags=0x7e00000&c.subtreeFlags,null!==u?s=rx(u,s):(s=rj(s,a,n,null),s.flags|=2),s.return=t,o.return=t,o.sibling=s,t.child=o,iY(null,o),o=t.child,null===(s=e.child.memoizedState)?s=i5(n):(null!==(a=s.cachePool)?(c=os._currentValue,a=a.parent!==c?{parent:c,pool:c}:a):a=o_(),s={baseLanes:s.baseLanes|n,cachePool:a}),o.memoizedState=s,o.childLanes=i6(e,r,n),t.memoizedState=i4,iY(e.child,o)):(o6(t),e=(n=e.child).sibling,(n=rx(n,{mode:"visible",children:o.children})).return=t,n.sibling=null,null!==e&&(null===(r=t.deletions)?(t.deletions=[e],t.flags|=16):r.push(e)),t.child=n,t.memoizedState=null,n)}function i8(e,t){return(t=i7({mode:"visible",children:t},e.mode)).return=e,e.child=t}function i7(e,t){return(e=rv(22,e,null,t)).lanes=0,e}function le(e,t,n){return oZ(t,e.child,null,n),e=i8(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function lt(e,t,n){e.lanes|=t;var r=e.alternate;null!==r&&(r.lanes|=t),r9(e.return,t,n)}function ln(e){for(var t=null;null!==e;){var n=e.alternate;null!==n&&null===ao(n)&&(t=e),e=e.sibling}return t}function lr(e,t,n,r,o,a){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:o,treeForkCount:a}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=r,i.tail=n,i.tailMode=o,i.treeForkCount=a)}function lo(e){var t=e.child;for(e.child=null;null!==t;){var n=t.sibling;t.sibling=e.child,e.child=t,t=n}}function la(e,t,n){var r=t.pendingProps,o=r.revealOrder,a=r.tail;r=r.children;var i=at.current;if(128&t.flags)return an(t,i),null;var l=0!=(2&i);if(l?(i=1&i|2,t.flags|=128):i&=1,an(t,i),"backwards"===o&&null!==e?(lo(e),iB(e,t,r,n),lo(e)):iB(e,t,r,n),r=r$?rI:0,!l&&null!==e&&0!=(128&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&<(e,n,t);else if(19===e.tag)lt(e,n,t);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(o){case"backwards":null===(n=ln(t.child))?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null,lo(t)),lr(t,!0,o,null,a,r);break;case"unstable_legacy-backwards":for(n=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===ao(e)){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}lr(t,!0,n,null,a,r);break;case"together":lr(t,!1,null,null,void 0,r);break;case"independent":t.memoizedState=null;break;default:null===(n=ln(t.child))?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),lr(t,!1,o,n,a,r)}return t.child}function li(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),sA|=t.lanes,0==(n&t.childLanes)){if(null===e)return null;else if(r7(e,t,n,!1),0==(n&t.childLanes))return null}if(null!==e&&t.child!==e.child)throw Error(l(153));if(null!==t.child){for(n=rx(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=rx(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function ll(e,t){return 0!=(e.lanes&t)||!!(null!==(e=e.dependencies)&&oe(e))}function ls(e,t,n){if(null!==e)if(e.memoizedProps!==t.pendingProps)iV=!0;else{if(!ll(e,n)&&0==(128&t.flags))return iV=!1,function(e,t,n){switch(t.tag){case 3:en(t,t.stateNode.containerInfo),r5(t,os,e.memoizedState.cache),rJ();break;case 27:case 5:eo(t);break;case 4:en(t,t.stateNode.containerInfo);break;case 10:r5(t,t.type,t.memoizedProps.value);break;case 31:if(null!==t.memoizedState)return t.flags|=128,o9(t),null;break;case 13:var r=t.memoizedState;if(null!==r){if(null!==r.dehydrated)return o6(t),t.flags|=128,null;if(0!=(n&t.child.childLanes))return i9(e,t,n);return o6(t),null!==(e=li(e,t,n))?e.sibling:null}o6(t);break;case 19:if(128&t.flags)return la(e,t,n);var o=0!=(128&e.flags);if((r=0!=(n&t.childLanes))||(r7(e,t,n,!1),r=0!=(n&t.childLanes)),o){if(r)return la(e,t,n);t.flags|=128}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),an(t,at.current),!r)return null;break;case 22:return t.lanes=0,iK(e,t,n,t.pendingProps);case 24:r5(t,os,e.memoizedState.cache)}return li(e,t,n)}(e,t,n);iV=0!=(131072&e.flags)}else iV=!1,r$&&0!=(1048576&t.flags)&&rZ(t,rI,t.index);switch(t.lanes=0,t.tag){case 16:e:{var r=t.pendingProps;if(e=oE(t.elementType),t.type=e,"function"==typeof e)rb(e)?(r=iL(e,r),t.tag=1,t=i2(null,t,e,r,n)):(t.tag=0,t=i0(null,t,e,r,n));else{if(null!=e){var o=e.$$typeof;if(o===N){t.tag=11,t=i$(null,t,e,r,n);break e}if(o===A){t.tag=14,t=iq(null,t,e,r,n);break e}}throw Error(l(306,t=function e(t){if(null==t)return null;if("function"==typeof t)return t.$$typeof===H?null:t.displayName||t.name||null;if("string"==typeof t)return t;switch(t){case O:return"Fragment";case P:return"Profiler";case C:return"StrictMode";case I:return"Suspense";case L:return"SuspenseList";case R:return"Activity";case Z:return"ViewTransition"}if("object"==typeof t)switch(t.$$typeof){case S:return"Portal";case T:return t.displayName||"Context";case E:return(t._context.displayName||"Context")+".Consumer";case N:var n=t.render;return(t=t.displayName)||(t=""!==(t=n.displayName||n.name||"")?"ForwardRef("+t+")":"ForwardRef"),t;case A:return null!==(n=t.displayName||null)?n:e(t.type)||"Memo";case z:n=t._payload,t=t._init;try{return e(t(n))}catch(e){}}return null}(e)||e,""))}}return t;case 0:return i0(e,t,t.type,t.pendingProps,n);case 1:return o=iL(r=t.type,t.pendingProps),i2(e,t,r,o,n);case 3:e:{if(en(t,t.stateNode.containerInfo),null===e)throw Error(l(387));r=t.pendingProps;var a=t.memoizedState;o=a.element,oV(e,t),oX(t,r,null,n);var i=t.memoizedState;if(r5(t,os,r=i.cache),r!==a.cache&&r8(t,[os],n,!0),oY(),r=i.element,a.isDehydrated)if(a={element:r,isDehydrated:!1,cache:i.cache},t.updateQueue.baseState=a,t.memoizedState=a,256&t.flags){t=i3(e,t,r,n);break e}else if(r!==o){r1(o=rP(Error(l(424)),t)),t=i3(e,t,r,n);break e}else for(rB=uq((e=9===(e=t.stateNode.containerInfo).nodeType?e.body:"HTML"===e.nodeName?e.ownerDocument.body:e).firstChild),rV=t,r$=!0,rq=null,rW=!0,n=oU(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|4096,n=n.sibling;else{if(rJ(),r===o){t=li(e,t,n);break e}iB(e,t,r,n)}t=t.child}return t;case 26:return iJ(e,t),null===e?(n=u4(t.type,null,t.pendingProps,null))?t.memoizedState=n:r$||(n=t.type,e=t.pendingProps,(r=uc(ee.current).createElement(n))[eW]=t,r[eK]=e,ua(r,n,e),e6(r),t.stateNode=r):t.memoizedState=u4(t.type,e.memoizedProps,t.pendingProps,e.memoizedState),null;case 27:return eo(t),null===e&&r$&&(r=t.stateNode=uX(t.type,t.pendingProps,ee.current),rV=t,rW=!0,o=rB,ub(t.type)?(uW=o,rB=uq(r.firstChild)):rB=o),iB(e,t,t.pendingProps.children,n),iJ(e,t),null===e&&(t.flags|=4194304),t.child;case 5:return null===e&&r$&&((o=r=rB)&&(null!==(r=function(e,t,n,r){for(;1===e.nodeType;){if(e.nodeName.toLowerCase()!==t.toLowerCase()){if(!r&&("INPUT"!==e.nodeName||"hidden"!==e.type))break}else if(r){if(!e[e0])switch(t){case"meta":if(!e.hasAttribute("itemprop"))break;return e;case"link":if("stylesheet"===(o=e.getAttribute("rel"))&&e.hasAttribute("data-precedence")||o!==n.rel||e.getAttribute("href")!==(null==n.href||""===n.href?null:n.href)||e.getAttribute("crossorigin")!==(null==n.crossOrigin?null:n.crossOrigin)||e.getAttribute("title")!==(null==n.title?null:n.title))break;return e;case"style":if(e.hasAttribute("data-precedence"))break;return e;case"script":if(((o=e.getAttribute("src"))!==(null==n.src?null:n.src)||e.getAttribute("type")!==(null==n.type?null:n.type)||e.getAttribute("crossorigin")!==(null==n.crossOrigin?null:n.crossOrigin))&&o&&e.hasAttribute("async")&&!e.hasAttribute("itemprop"))break;return e;default:return e}}else{if("input"!==t||"hidden"!==e.type)return e;var o=null==n.name?null:""+n.name;if("hidden"===n.type&&e.getAttribute("name")===o)return e}if(null===(e=uq(e.nextSibling)))break}return null}(r,t.type,t.pendingProps,rW))?(t.stateNode=r,rV=t,rB=uq(r.firstChild),rW=!1,o=!0):o=!1),o||rY(t)),eo(t),o=t.type,a=t.pendingProps,i=null!==e?e.memoizedProps:null,r=a.children,uf(o,a)?r=null:null!==i&&uf(o,i)&&(t.flags|=32),null!==t.memoizedState&&(db._currentValue=o=av(e,t,aw,null,null,n)),iJ(e,t),iB(e,t,r,n),t.child;case 6:return null===e&&r$&&((e=n=rB)&&(null!==(n=function(e,t,n){if(""===t)return null;for(;3!==e.nodeType;)if((1!==e.nodeType||"INPUT"!==e.nodeName||"hidden"!==e.type)&&!n||null===(e=uq(e.nextSibling)))return null;return e}(n,t.pendingProps,rW))?(t.stateNode=n,rV=t,rB=null,e=!0):e=!1),e||rY(t)),null;case 13:return i9(e,t,n);case 4:return en(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=oZ(t,null,r,n):iB(e,t,r,n),t.child;case 11:return i$(e,t,t.type,t.pendingProps,n);case 7:return r=t.pendingProps,iJ(e,t),iB(e,t,r,n),t.child;case 8:case 12:return iB(e,t,t.pendingProps.children,n),t.child;case 10:return r=t.pendingProps,r5(t,t.type,r.value),iB(e,t,r.children,n),t.child;case 9:return o=t.type._context,r=t.pendingProps.children,ot(t),r=r(o=on(o)),t.flags|=1,iB(e,t,r,n),t.child;case 14:return iq(e,t,t.type,t.pendingProps,n);case 15:return iW(e,t,t.type,t.pendingProps,n);case 19:return la(e,t,n);case 31:var s=e,c=t,u=n,d=c.pendingProps,f=0!=(128&c.flags);if(c.flags&=-129,null===s){if(r$){if("hidden"===d.mode)return s=iG(c,d),c.lanes=0x20000000,iY(null,s);if(o9(c),(s=rB)?null!==(s=null!==(s=uV(s,rW))&&"&"===s.data?s:null)&&(c.memoizedState={dehydrated:s,treeContext:null!==rz?{id:rR,overflow:rD}:null,retryLane:0x20000000,hydrationErrors:null},(u=rS(s)).return=c,c.child=u,rV=c,rB=null):s=null,null===s)throw rY(c);return c.lanes=0x20000000,null}return iG(c,d)}var p=s.memoizedState;if(null!==p){var h=p.dehydrated;if(o9(c),f)if(256&c.flags)c.flags&=-257,c=iQ(s,c,u);else if(null!==c.memoizedState)c.child=s.child,c.flags|=128,c=null;else throw Error(l(558));else if(iV||r7(s,c,u,!1),f=0!=(u&s.childLanes),iV||f){if(null!==(d=sk)&&0!==(h=eF(d,u))&&h!==p.retryLane)throw p.retryLane=h,rp(s,h),s8(d,s,h),iH;cc(),c=iQ(s,c,u)}else s=p.treeContext,rB=uq(h.nextSibling),rV=c,r$=!0,rq=null,rW=!1,null!==s&&rH(c,s),c=iG(c,d),c.flags|=4096;return c}return(s=rx(s.child,{mode:d.mode,children:d.children})).ref=c.ref,c.child=s,s.return=c,s;case 22:return iK(e,t,n,t.pendingProps);case 24:return ot(t),r=on(os),null===e?(null===(o=ox())&&(o=sk,a=oc(),o.pooledCache=a,a.refCount++,null!==a&&(o.pooledCacheLanes|=n),o=a),t.memoizedState={parent:r,cache:o},oH(t),r5(t,os,o)):(0!=(e.lanes&n)&&(oV(e,t),oX(t,null,null,n),oY()),o=e.memoizedState,a=t.memoizedState,o.parent!==r?(o={parent:r,cache:r},t.memoizedState=o,0===t.lanes&&(t.memoizedState=t.updateQueue.baseState=o),r5(t,os,r)):(r5(t,os,r=a.cache),r!==o.cache&&r8(t,[os],n,!0))),iB(e,t,t.pendingProps.children,n),t.child;case 30:return null!=(r=t.pendingProps).name&&"auto"!==r.name?t.flags|=null===e?0x1202000:0x1200000:r$&&rU(t),null!==e&&e.memoizedProps.name!==r.name?t.flags|=4194816:iJ(e,t),iB(e,t,r.children,n),t.child;case 29:throw t.pendingProps}throw Error(l(156,t.tag))}function lc(e){e.flags|=4}function lu(e,t,n,r,o){var a;if((a=0!=(32&e.mode))&&(a=null===n?ds(t,r):ds(t,r)&&(r.src!==n.src||r.srcSet!==n.srcSet)),a){if(e.flags|=0x1000000,(0x13ffff40&o)===o)if(e.stateNode.complete)e.flags|=8192;else if(ci())e.flags|=8192;else throw oT=oO,ok}else e.flags&=-0x1000001}function ld(e,t){if("stylesheet"!==t.type||0!=(4&t.state.loading))e.flags&=-0x1000001;else if(e.flags|=0x1000000,!dc(t))if(ci())e.flags|=8192;else throw oT=oO,ok}function lf(e,t){null!==t&&(e.flags|=4),16384&e.flags&&(t=22!==e.tag?eR():0x20000000,e.lanes|=t,sM|=t)}function lp(e,t){if(!r$)switch(e.tailMode){case"visible":break;case"collapsed":for(var n=e.tail,r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null;break;default:for(n=null,t=e.tail;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null}}function lh(e){var t=null!==e.alternate&&e.alternate.child===e.child,n=0,r=0;if(t)for(var o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=0x7e00000&o.subtreeFlags,r|=0x7e00000&o.flags,o.return=e,o=o.sibling;else for(o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=o.subtreeFlags,r|=o.flags,o.return=e,o=o.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function lm(e,t){switch(rF(t),t.tag){case 3:r6(os),er();break;case 26:case 27:case 5:ea(t);break;case 4:er();break;case 31:null!==t.memoizedState&&ae(t);break;case 13:ae(t);break;case 19:ar(t);break;case 10:r6(t.type);break;case 22:case 23:ae(t),o3(),null!==e&&X(ob);break;case 24:r6(os)}}function lg(e,t){try{var n=t.updateQueue,r=null!==n?n.lastEffect:null;if(null!==r){var o=r.next;n=o;do{if((n.tag&e)===e){r=void 0;var a=n.create;n.inst.destroy=r=a()}n=n.next}while(n!==o)}}catch(e){cO(t,t.return,e)}}function ly(e,t,n){try{var r=t.updateQueue,o=null!==r?r.lastEffect:null;if(null!==o){var a=o.next;r=a;do{if((r.tag&e)===e){var i=r.inst,l=i.destroy;if(void 0!==l){i.destroy=void 0,o=t;try{l()}catch(e){cO(o,n,e)}}}r=r.next}while(r!==a)}}catch(e){cO(t,t.return,e)}}function lv(e){var t=e.updateQueue;if(null!==t){var n=e.stateNode;try{oQ(t,n)}catch(t){cO(e,e.return,t)}}}function lb(e,t,n){n.props=iL(e.type,e.memoizedProps),n.state=e.memoizedState;try{n.componentWillUnmount()}catch(n){cO(e,t,n)}}function lx(e,t){try{var n=e.ref;if(null!==n){switch(e.tag){case 26:case 27:case 5:var r=e.stateNode;break;case 30:var o=e.stateNode,a=rr(e.memoizedProps,o);(null===o.ref||o.ref.name!==a)&&(o.ref=uE(a)),r=o.ref;break;case 7:null===e.stateNode&&(e.stateNode=new uT(e)),r=e.stateNode;break;default:r=e.stateNode}"function"==typeof n?e.refCleanup=n(r):n.current=r}}catch(n){cO(e,t,n)}}function lw(e,t){var n=e.ref,r=e.refCleanup;if(null!==n)if("function"==typeof r)try{r()}catch(n){cO(e,t,n)}finally{e.refCleanup=null,null!=(e=e.alternate)&&(e.refCleanup=null)}else if("function"==typeof n)try{n(null)}catch(n){cO(e,t,n)}else n.current=null}function l_(e){var t=e.type,n=e.memoizedProps,r=e.stateNode;try{switch(t){case"button":case"input":case"select":case"textarea":n.autoFocus&&r.focus();break;case"img":n.src?r.src=n.src:n.srcSet&&(r.srcset=n.srcSet)}}catch(t){cO(e,e.return,t)}}function lj(e,t,n){try{var r=e.stateNode;(function(e,t,n,r){switch(t){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var o=null,a=null,i=null,s=null,c=null,u=null,d=null;for(h in n){var f=n[h];if(n.hasOwnProperty(h)&&null!=f)switch(h){case"checked":case"value":break;case"defaultValue":c=f;default:r.hasOwnProperty(h)||ur(e,t,h,null,r,f)}}for(var p in r){var h=r[p];if(f=n[p],r.hasOwnProperty(p)&&(null!=h||null!=f))switch(p){case"type":h!==f&&(to=!0),a=h;break;case"name":h!==f&&(to=!0),o=h;break;case"checked":h!==f&&(to=!0),u=h;break;case"defaultChecked":h!==f&&(to=!0),d=h;break;case"value":h!==f&&(to=!0),i=h;break;case"defaultValue":h!==f&&(to=!0),s=h;break;case"children":case"dangerouslySetInnerHTML":if(null!=h)throw Error(l(137,t));break;default:h!==f&&ur(e,t,p,h,r,f)}}tg(e,i,s,c,u,d,a,o);return;case"select":for(a in h=i=s=p=null,n)if(c=n[a],n.hasOwnProperty(a)&&null!=c)switch(a){case"value":break;case"multiple":h=c;default:r.hasOwnProperty(a)||ur(e,t,a,null,r,c)}for(o in r)if(a=r[o],c=n[o],r.hasOwnProperty(o)&&(null!=a||null!=c))switch(o){case"value":a!==c&&(to=!0),p=a;break;case"defaultValue":a!==c&&(to=!0),s=a;break;case"multiple":a!==c&&(to=!0),i=a;default:a!==c&&ur(e,t,o,a,r,c)}t=s,n=i,r=h,null!=p?tb(e,!!n,p,!1):!!r!=!!n&&(null!=t?tb(e,!!n,t,!0):tb(e,!!n,n?[]:"",!1));return;case"textarea":for(s in h=p=null,n)if(o=n[s],n.hasOwnProperty(s)&&null!=o&&!r.hasOwnProperty(s))switch(s){case"value":case"children":break;default:ur(e,t,s,null,r,o)}for(i in r)if(o=r[i],a=n[i],r.hasOwnProperty(i)&&(null!=o||null!=a))switch(i){case"value":o!==a&&(to=!0),p=o;break;case"defaultValue":o!==a&&(to=!0),h=o;break;case"children":break;case"dangerouslySetInnerHTML":if(null!=o)throw Error(l(91));break;default:o!==a&&ur(e,t,i,o,r,a)}tx(e,p,h);return;case"option":for(var m in n)p=n[m],n.hasOwnProperty(m)&&null!=p&&!r.hasOwnProperty(m)&&("selected"===m?e.selected=!1:ur(e,t,m,null,r,p));for(c in r)p=r[c],h=n[c],r.hasOwnProperty(c)&&p!==h&&(null!=p||null!=h)&&("selected"===c?(p!==h&&(to=!0),e.selected=p&&"function"!=typeof p&&"symbol"!=typeof p):ur(e,t,c,p,r,h));return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var g in n)p=n[g],n.hasOwnProperty(g)&&null!=p&&!r.hasOwnProperty(g)&&ur(e,t,g,null,r,p);for(u in r)if(p=r[u],h=n[u],r.hasOwnProperty(u)&&p!==h&&(null!=p||null!=h))switch(u){case"children":case"dangerouslySetInnerHTML":if(null!=p)throw Error(l(137,t));break;default:ur(e,t,u,p,r,h)}return;default:if(tO(t)){for(var y in n)p=n[y],n.hasOwnProperty(y)&&void 0!==p&&!r.hasOwnProperty(y)&&uo(e,t,y,void 0,r,p);for(d in r)p=r[d],h=n[d],r.hasOwnProperty(d)&&p!==h&&(void 0!==p||void 0!==h)&&uo(e,t,d,p,r,h);return}}for(var v in n)p=n[v],n.hasOwnProperty(v)&&null!=p&&!r.hasOwnProperty(v)&&ur(e,t,v,null,r,p);for(f in r)p=r[f],h=n[f],r.hasOwnProperty(f)&&p!==h&&(null!=p||null!=h)&&ur(e,t,f,p,r,h)})(r,e.type,n,t),r[eK]=t}catch(t){cO(e,e.return,t)}}function lk(e,t){if(5===e.tag&&null===e.alternate&&null!==t)for(var n=0;n<t.length;n++)uF(e.stateNode,t[n])}function lS(e){for(var t=e.return;null!==t;){if(lC(t)){var n=e.stateNode,r=t.stateNode._eventListeners;if(null!==r)for(var o=0;o<r.length;o++){var a=r[o];n.removeEventListener(a.type,a.listener,a.optionsOrUseCapture)}}if(lO(t))break;t=t.return}}function lO(e){return 5===e.tag||3===e.tag||26===e.tag||27===e.tag&&ub(e.type)||4===e.tag}function lC(e){return e&&7===e.tag&&null!==e.stateNode}function lP(e){e:for(;;){for(;null===e.sibling;){if(null===e.return||lO(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;5!==e.tag&&6!==e.tag&&18!==e.tag;){if(27===e.tag&&ub(e.type)||2&e.flags||null===e.child||4===e.tag)continue e;e.child.return=e,e=e.child}if(!(2&e.flags))return e.stateNode}}function lE(e,t,n,r){var o=e.tag;if(5===o||6===o)o=e.stateNode,t?n.insertBefore(o,t):n.appendChild(o),lk(e,r),to=!0;else if(4!==o&&(27===o&&ub(e.type)&&(n=e.stateNode),null!==(e=e.child)))for(lE(e,t,n,r),e=e.sibling;null!==e;)lE(e,t,n,r),e=e.sibling}function lT(e){var t=e.stateNode,n=e.memoizedProps;try{for(var r=e.type,o=t.attributes;o.length;)t.removeAttributeNode(o[0]);ua(t,r,n),t[eW]=e,t[eK]=n}catch(t){cO(e,e.return,t)}}var lN=!1,lI=null;function lL(e){(30===e.tag||0!=(0x2000000&e.subtreeFlags))&&(lN=!0)}var lA=null;function lz(){var e=lA;return lA=null,e}var lR=0;function lD(e,t,n,r,o){return lR=0,function e(t,n,r,o,a){for(var i=!1;null!==t;){if(5===t.tag){var l=t.stateNode;if(null!==o){var s=uS(l);o.push(s),s.view&&(i=!0)}else i||uS(l).view&&(i=!0);lN=!0,u_(l,0===lR?n:n+"_"+lR,r),lR++}else(22!==t.tag||null===t.memoizedState)&&(30===t.tag&&a||e(t.child,n,r,o,a)&&(i=!0));t=t.sibling}return i}(e.child,t,n,r,o)}function lM(e,t){for(;null!==e;)5===e.tag?uj(e.stateNode,e.memoizedProps):(22!==e.tag||null===e.memoizedState)&&(30===e.tag&&t||lM(e.child,t)),e=e.sibling}function lZ(e){if(0!=(0x1200000&e.subtreeFlags))for(e=e.child;null!==e;){if((22!==e.tag||null===e.memoizedState)&&(lZ(e),30===e.tag&&0!=(0x1200000&e.flags)&&e.stateNode.paired)){var t=e.memoizedProps;if(null==t.name||"auto"===t.name)throw Error(l(544));var n=t.name;"none"!==(t=ra(t.default,t.share))&&(lD(e,n,t,null,!1)||lM(e.child,!1))}e=e.sibling}}function lU(e,t){if(30===e.tag){var n=e.stateNode,r=e.memoizedProps,o=rr(r,n),a=ra(r.default,n.paired?r.share:r.enter);"none"!==a?lD(e,o,a,null,!1)?(lZ(e),n.paired||t||s9(e,r.onEnter)):lM(e.child,!1):lZ(e)}else if(0!=(0x2000000&e.subtreeFlags))for(e=e.child;null!==e;)lU(e,t),e=e.sibling;else lZ(e)}function lF(e){if(null!==lI&&0!==lI.size){var t=lI;if(0!=(0x1200000&e.subtreeFlags))for(e=e.child;null!==e;){if(22!==e.tag||null===e.memoizedState){if(30===e.tag&&0!=(0x1200000&e.flags)){var n=e.memoizedProps,r=n.name;if(null!=r&&"auto"!==r){var o=t.get(r);if(void 0!==o){var a=ra(n.default,n.share);if("none"!==a&&(lD(e,r,a,null,!1)?(o.paired=a=e.stateNode,a.paired=o,s9(e,n.onShare)):lM(e.child,!1)),t.delete(r),0===t.size)break}}}lF(e)}e=e.sibling}}}function lH(e){if(30===e.tag){var t=e.memoizedProps,n=rr(t,e.stateNode),r=null!==lI?lI.get(n):void 0,o=ra(t.default,void 0!==r?t.share:t.exit);"none"!==o&&(lD(e,n,o,null,!1)?void 0!==r?(r.paired=o=e.stateNode,o.paired=r,lI.delete(n),s9(e,t.onShare)):s9(e,t.onExit):lM(e.child,!1)),null!==lI&&lF(e)}else if(0!=(0x2000000&e.subtreeFlags))for(e=e.child;null!==e;)lH(e),e=e.sibling;else null!==lI&&lF(e)}function lV(e){if(0!=(0x1200000&e.subtreeFlags))for(e=e.child;null!==e;){if(22!==e.tag||null===e.memoizedState){if(30===e.tag&&0!=(0x1200000&e.flags)){var t=e.stateNode;null!==t.paired&&(t.paired=null,lM(e.child,!1))}lV(e)}e=e.sibling}}function lB(e){if(30===e.tag)e.stateNode.paired=null,lM(e.child,!1),lV(e);else if(0!=(0x2000000&e.subtreeFlags))for(e=e.child;null!==e;)lB(e),e=e.sibling;else lV(e)}function l$(e,t,n,r,o,a,i){for(var l=!1;null!==t;){if(5===t.tag){var s=t.stateNode;if(null!==a&&lR<a.length){var c,u=a[lR],d=uS(s);if((u.view||d.view)&&(l=!0),c=0==(4&e.flags))if(d.clip)c=!0;else{c=u.rect;var f=d.rect;c=c.y!==f.y||c.x!==f.x||c.height!==f.height||c.width!==f.width}c&&(e.flags|=4),d.abs?d=!u.abs:(u=u.rect,d=d.rect,d=u.height!==d.height||u.width!==d.width),d&&(e.flags|=32)}else e.flags|=32;0!=(4&e.flags)&&u_(s,0===lR?n:n+"_"+lR,o),l&&0!=(4&e.flags)||(null===lA&&(lA=[]),lA.push(s,r,t.memoizedProps)),lR++}else(22!==t.tag||null===t.memoizedState)&&(30===t.tag&&i?e.flags|=32&t.flags:l$(e,t.child,n,r,o,a,i)&&(l=!0));t=t.sibling}return l}var lq=!1,lW=!1,lK=!1,lY=!1,lX="function"==typeof WeakSet?WeakSet:Set,lG=null,lQ=!1,lJ=!1,l0=!1,l1=!1;function l2(e){for(;null!==lG;){var t=lG,n=e,r=t.alternate,o=t.flags;switch(t.tag){case 0:case 11:case 15:if(0!=(4&o)&&null!==(r=null!==(r=t.updateQueue)?r.events:null))for(n=0;n<r.length;n++)(o=r[n]).ref.impl=o.nextImpl;break;case 1:if(0!=(1024&o)&&null!==r){n=void 0,o=r.memoizedProps,r=r.memoizedState;var a=t.stateNode;try{var i=iL(t.type,o);n=a.getSnapshotBeforeUpdate(i,r),a.__reactInternalSnapshotBeforeUpdate=n}catch(e){cO(t,t.return,e)}}break;case 3:if(0!=(1024&o)){if(9===(n=(r=t.stateNode.containerInfo).nodeType))uH(r);else if(1===n)switch(r.nodeName){case"HEAD":case"HTML":case"BODY":uH(r);break;default:r.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;case 30:n&&null!==r&&(n=rr(r.memoizedProps,r.stateNode),"none"!==(o=ra((o=t.memoizedProps).default,o.update))&&lD(r,n,o,r.memoizedState=[],!0));break;default:if(0!=(1024&o))throw Error(l(163))}if(null!==(r=t.sibling)){r.return=t.return,lG=r;break}lG=t.return}}function l3(e,t,n){var r=n.flags;switch(n.tag){case 0:case 11:case 15:ss(e,n),4&r&&lg(5,n);break;case 1:if(ss(e,n),4&r)if(e=n.stateNode,null===t)try{e.componentDidMount()}catch(e){cO(n,n.return,e)}else{var o=iL(n.type,t.memoizedProps);t=t.memoizedState;try{e.componentDidUpdate(o,t,e.__reactInternalSnapshotBeforeUpdate)}catch(e){cO(n,n.return,e)}}64&r&&lv(n),512&r&&lx(n,n.return);break;case 3:if(ss(e,n),64&r&&null!==(e=n.updateQueue)){if(t=null,null!==n.child)switch(n.child.tag){case 27:case 5:case 1:t=n.child.stateNode}try{oQ(e,t)}catch(e){cO(n,n.return,e)}}break;case 27:null===t&&4&r&&lT(n);case 26:case 5:ss(e,n),null===t&&4&r&&l_(n),512&r&&lx(n,n.return);break;case 12:ss(e,n);break;case 31:ss(e,n),4&r&&l7(e,n);break;case 13:ss(e,n),4&r&&se(e,n),64&r&&null!==(e=n.memoizedState)&&null!==(e=e.dehydrated)&&function(e,t){var n=e.ownerDocument;if("$~"===e.data)e._reactRetry=t;else if("$?"!==e.data||"loading"!==n.readyState)t();else{var r=function(){t(),n.removeEventListener("DOMContentLoaded",r)};n.addEventListener("DOMContentLoaded",r),e._reactRetry=r}}(e,n=cT.bind(null,n));break;case 22:if(!(r=null!==n.memoizedState||lq)){t=null!==t&&null!==t.memoizedState||lW,o=lq;var a=lW;lq=r,(lW=t)&&!a?function e(t,n,r){for(r=r&&0!=(8772&n.subtreeFlags),n=n.child;null!==n;){var o=n.alternate,a=t,i=n,l=i.flags;switch(i.tag){case 0:case 11:case 15:e(a,i,r),lg(4,i);break;case 1:if(e(a,i,r),"function"==typeof(a=(o=i).stateNode).componentDidMount)try{a.componentDidMount()}catch(e){cO(o,o.return,e)}if(null!==(a=(o=i).updateQueue)){var s=o.stateNode;try{var c=a.shared.hiddenCallbacks;if(null!==c)for(a.shared.hiddenCallbacks=null,a=0;a<c.length;a++)oG(c[a],s)}catch(e){cO(o,o.return,e)}}r&&64&l&&lv(i),lx(i,i.return);break;case 27:lT(i);case 26:case 5:if(5===i.tag){s=i;for(var u=s.return;null!==u&&(lC(u)&&uF(s.stateNode,u.stateNode),!lO(u));)u=u.return}e(a,i,r),r&&null===o&&4&l&&l_(i),lx(i,i.return);break;case 12:e(a,i,r);break;case 31:e(a,i,r),r&&4&l&&l7(a,i);break;case 13:e(a,i,r),r&&4&l&&se(a,i);break;case 22:null===i.memoizedState&&e(a,i,r),lx(i,i.return);break;case 30:e(a,i,r),lx(i,i.return);break;case 7:lx(i,i.return);default:e(a,i,r)}n=n.sibling}}(e,n,0!=(8772&n.subtreeFlags)):ss(e,n),lq=o,lW=a}break;case 30:ss(e,n),512&r&&lx(n,n.return);break;case 7:512&r&&lx(n,n.return);default:ss(e,n)}}function l4(e,t){for(e=e.child;null!==e;)(function e(t,n){switch(t.tag){case 5:case 26:try{var r=t.stateNode;if(n){var o=r.style;"function"==typeof o.setProperty?o.setProperty("display","none","important"):o.display="none"}else{var a=t.stateNode,i=t.memoizedProps.style,l=null!=i&&i.hasOwnProperty("display")?i.display:null;a.style.display=null==l||"boolean"==typeof l?"":(""+l).trim()}}catch(e){cO(t,t.return,e)}!function t(n,r){if(0x4000000&n.subtreeFlags)for(n=n.child;null!==n;){e:{var o=n;switch(o.tag){case 4:e(o,r);break e;case 22:null===o.memoizedState&&t(o,r);break e;default:t(o,r)}}n=n.sibling}}(t,n);break;case 6:try{t.stateNode.nodeValue=n?"":t.memoizedProps,to=!0}catch(e){cO(t,t.return,e)}break;case 18:try{var s=t.stateNode;n?uw(s,!0):uw(t.stateNode,!1)}catch(e){cO(t,t.return,e)}break;case 22:case 23:null===t.memoizedState&&l4(t,n);break;default:l4(t,n)}})(e,t),e=e.sibling}var l5=null,l6=!1;function l9(e,t,n){for(n=n.child;null!==n;)l8(e,t,n),n=n.sibling}function l8(e,t,n){if(eS&&"function"==typeof eS.onCommitFiberUnmount)try{eS.onCommitFiberUnmount(ek,n)}catch(e){}switch(n.tag){case 26:lW||lw(n,t),l9(e,t,n),n.memoizedState?n.memoizedState.count--:n.stateNode&&(n=n.stateNode).parentNode.removeChild(n);break;case 27:lW||lw(n,t);var r=l5,o=l6;ub(n.type)&&(l5=n.stateNode,l6=!1),l9(e,t,n),uG(n.stateNode),l5=r,l6=o;break;case 5:lW||lw(n,t),5===n.tag&&lS(n);case 6:if(r=l5,o=l6,l5=null,l9(e,t,n),l5=r,l6=o,null!==l5)if(l6)try{(9===l5.nodeType?l5.body:"HTML"===l5.nodeName?l5.ownerDocument.body:l5).removeChild(n.stateNode),to=!0}catch(e){cO(n,t,e)}else try{l5.removeChild(n.stateNode),to=!0}catch(e){cO(n,t,e)}break;case 18:null!==l5&&(l6?(ux(9===(e=l5).nodeType?e.body:"HTML"===e.nodeName?e.ownerDocument.body:e,n.stateNode),dG(e)):ux(l5,n.stateNode));break;case 4:r=l5,o=l6,l5=n.stateNode.containerInfo,l6=!0,l9(e,t,n),l5=r,l6=o;break;case 0:case 11:case 14:case 15:ly(2,n,t),lW||ly(4,n,t),l9(e,t,n);break;case 1:lW||(lw(n,t),"function"==typeof(r=n.stateNode).componentWillUnmount&&lb(n,t,r)),l9(e,t,n);break;case 21:default:l9(e,t,n);break;case 22:lW=(r=lW)||null!==n.memoizedState,l9(e,t,n),lW=r;break;case 30:lw(n,t),l9(e,t,n);break;case 7:lW||lw(n,t),l9(e,t,n)}}function l7(e,t){if(null===t.memoizedState&&null!==(e=t.alternate)&&null!==(e=e.memoizedState)){e=e.dehydrated;try{dG(e)}catch(e){cO(t,t.return,e)}}}function se(e,t){if(null===t.memoizedState&&null!==(e=t.alternate)&&null!==(e=e.memoizedState)&&null!==(e=e.dehydrated))try{dG(e)}catch(e){cO(t,t.return,e)}}function st(e,t){var n=function(e){switch(e.tag){case 31:case 13:case 19:var t=e.stateNode;return null===t&&(t=e.stateNode=new lX),t;case 22:return null===(t=(e=e.stateNode)._retryCache)&&(t=e._retryCache=new lX),t;default:throw Error(l(435,e.tag))}}(e);t.forEach(function(t){if(!n.has(t)){n.add(t);var r=cN.bind(null,e,t);t.then(r,r)}})}function sn(e,t,n){var r=t.deletions;if(null!==r)for(var o=0;o<r.length;o++){var a=r[o],i=e,s=t,c=s;e:for(;null!==c;){switch(c.tag){case 27:if(ub(c.type)){l5=c.stateNode,l6=!1;break e}break;case 5:l5=c.stateNode,l6=!1;break e;case 3:case 4:l5=c.stateNode.containerInfo,l6=!0;break e}c=c.return}if(null===l5)throw Error(l(160));l8(i,s,a),l5=null,l6=!1,null!==(i=a.alternate)&&(i.return=null),a.return=null}if(13886&t.subtreeFlags)for(t=t.child;null!==t;)so(t,e,n),t=t.sibling}var sr=null;function so(e,t,n){var r=e.alternate,o=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:sn(t,e,n),sa(e),4&o&&(ly(3,e,e.return),lg(3,e),ly(5,e,e.return));break;case 1:sn(t,e,n),sa(e),512&o&&(lW||null===r||lw(r,r.return)),64&o&&lq&&null!==(e=e.updateQueue)&&null!==(r=e.callbacks)&&(t=e.shared.hiddenCallbacks,e.shared.hiddenCallbacks=null===t?r:t.concat(r));break;case 26:var a=sr;if(sn(t,e,n),sa(e),512&o&&(lW||null===r||lw(r,r.return)),4&o)if(n=null!==r?r.memoizedState:null,t=e.memoizedState,null===r)if(null===t)if(null===e.stateNode){e:{r=e.type,t=e.memoizedProps,n=a.ownerDocument||a;t:switch(r){case"title":(!(o=n.getElementsByTagName("title")[0])||o[e0]||o[eW]||"http://www.w3.org/2000/svg"===o.namespaceURI||o.hasAttribute("itemprop"))&&(o=n.createElement(r),n.head.insertBefore(o,n.querySelector("head > title"))),ua(o,r,t),o[eW]=e,e6(o),r=o;break e;case"link":if(a=di("link","href",n).get(r+(t.href||""))){for(var i=0;i<a.length;i++)if((o=a[i]).getAttribute("href")===(null==t.href||""===t.href?null:t.href)&&o.getAttribute("rel")===(null==t.rel?null:t.rel)&&o.getAttribute("title")===(null==t.title?null:t.title)&&o.getAttribute("crossorigin")===(null==t.crossOrigin?null:t.crossOrigin)){a.splice(i,1);break t}}ua(o=n.createElement(r),r,t),n.head.appendChild(o);break;case"meta":if(a=di("meta","content",n).get(r+(t.content||""))){for(i=0;i<a.length;i++)if((o=a[i]).getAttribute("content")===(null==t.content?null:""+t.content)&&o.getAttribute("name")===(null==t.name?null:t.name)&&o.getAttribute("property")===(null==t.property?null:t.property)&&o.getAttribute("http-equiv")===(null==t.httpEquiv?null:t.httpEquiv)&&o.getAttribute("charset")===(null==t.charSet?null:t.charSet)){a.splice(i,1);break t}}ua(o=n.createElement(r),r,t),n.head.appendChild(o);break;default:throw Error(l(468,r))}o[eW]=e,e6(o),r=o}e.stateNode=r}else dl(a,e.type,e.stateNode);else e.stateNode=de(a,t,e.memoizedProps);else n!==t?(null===n?null!==r.stateNode&&(r=r.stateNode).parentNode.removeChild(r):n.count--,null===t?dl(a,e.type,e.stateNode):de(a,t,e.memoizedProps)):null===t&&null!==e.stateNode&&lj(e,e.memoizedProps,r.memoizedProps);break;case 27:sn(t,e,n),sa(e),512&o&&(lW||null===r||lw(r,r.return)),null!==r&&4&o&&lj(e,e.memoizedProps,r.memoizedProps);break;case 5:if(a=lK,lK=!1,sn(t,e,n),lK=a,sa(e),512&o&&(lW||null===r||lw(r,r.return)),32&e.flags){t=e.stateNode;try{t_(t,""),to=!0}catch(t){cO(e,e.return,t)}}4&o&&null!=e.stateNode&&(t=e.memoizedProps,lj(e,t,null!==r?r.memoizedProps:t)),1024&o&&(lY=!0);break;case 6:if(sn(t,e,n),sa(e),4&o){if(null===e.stateNode)throw Error(l(162));r=e.memoizedProps,t=e.stateNode;try{t.nodeValue=r,to=!0}catch(t){cO(e,e.return,t)}}break;case 3:if(to=!1,da=null,a=sr,sr=u0(t.containerInfo),sn(t,e,n),sr=a,sa(e),4&o&&null!==r&&r.memoizedState.isDehydrated)try{dG(t.containerInfo)}catch(t){cO(e,e.return,t)}lY&&(lY=!1,function e(t){if(1024&t.subtreeFlags)for(t=t.child;null!==t;){var n=t;e(n),5===n.tag&&1024&n.flags&&n.stateNode.reset(),t=t.sibling}}(e)),to=!1;break;case 4:r=lK,lK=lq,o=ta(),a=sr,sr=u0(e.stateNode.containerInfo),sn(t,e,n),sa(e),sr=a,to&&lJ&&(l0=!0),to=o,lK=r;break;case 12:sn(t,e,n),sa(e);break;case 31:case 19:sn(t,e,n),sa(e),4&o&&null!==(r=e.updateQueue)&&(e.updateQueue=null,st(e,r));break;case 13:sn(t,e,n),sa(e),8192&e.child.flags&&null!==e.memoizedState!=(null!==r&&null!==r.memoizedState)&&(sH=em()),4&o&&null!==(r=e.updateQueue)&&(e.updateQueue=null,st(e,r));break;case 22:a=null!==e.memoizedState,i=null!==r&&null!==r.memoizedState;var s=lq,c=lW,u=lK;lq=s||a,lK=u||a,lW=c||i,sn(t,e,n),lW=c,lK=u,lq=s,sa(e),8192&o&&((t=e.stateNode)._visibility=a?-2&t._visibility:1|t._visibility,a&&(null===r||i||lq||lW||function e(t){for(t=t.child;null!==t;){var n=t;switch(n.tag){case 0:case 11:case 14:case 15:ly(4,n,n.return),e(n);break;case 1:lw(n,n.return);var r=n.stateNode;"function"==typeof r.componentWillUnmount&&lb(n,n.return,r),e(n);break;case 27:uG(n.stateNode);case 26:case 5:lw(n,n.return),5===n.tag&&lS(n),e(n);break;case 22:null===n.memoizedState&&e(n);break;case 30:lw(n,n.return),e(n);break;case 7:lw(n,n.return);default:e(n)}t=t.sibling}}(e)),!a&&lK||l4(e,a)),4&o&&null!==(r=e.updateQueue)&&null!==(t=r.retryQueue)&&(r.retryQueue=null,st(e,t));break;case 30:512&o&&(lW||null===r||lw(r,r.return)),o=ta(),a=lJ,i=(0x13ffff00&n)===n,s=e.memoizedProps,lJ=i&&"none"!==ra(s.default,s.update),sn(t,e,n),sa(e),i&&null!==r&&to&&(e.flags|=4),lJ=a,to=o;break;case 21:break;case 7:r&&null!==r.stateNode&&(r.stateNode._fragmentFiber=e);default:sn(t,e,n),sa(e)}}function sa(e){var t=e.flags;if(2&t){try{for(var n,r=null,o=e.return;null!==o;){if(lC(o)){var a=o.stateNode;null===r?r=[a]:r.push(a)}if(lO(o)){n=o;break}o=o.return}if(null==n)throw Error(l(160));switch(n.tag){case 27:var i=n.stateNode,s=lP(e);lE(e,s,i,r);break;case 5:var c=n.stateNode;32&n.flags&&(t_(c,""),n.flags&=-33);var u=lP(e);lE(e,u,c,r);break;case 3:case 4:var d=n.stateNode.containerInfo,f=lP(e);!function e(t,n,r,o){var a=t.tag;if(5===a||6===a)a=t.stateNode,n?(9===r.nodeType?r.body:"HTML"===r.nodeName?r.ownerDocument.body:r).insertBefore(a,n):((n=9===r.nodeType?r.body:"HTML"===r.nodeName?r.ownerDocument.body:r).appendChild(a),null!=(r=r._reactRootContainer)||null!==n.onclick||(n.onclick=tT)),lk(t,o),to=!0;else if(4!==a&&(27===a&&ub(t.type)&&(r=t.stateNode,n=null),null!==(t=t.child)))for(e(t,n,r,o),t=t.sibling;null!==t;)e(t,n,r,o),t=t.sibling}(e,f,d,r);break;default:throw Error(l(161))}}catch(t){cO(e,e.return,t)}e.flags&=-3}4096&t&&(e.flags&=-4097)}function si(e,t){if(9270&t.subtreeFlags)for(t=t.child;null!==t;)sl(t,e),t=t.sibling;else!function e(t,n){for(t=t.child;null!==t;){if(30===t.tag){var r=t.memoizedProps,o=t.stateNode,a=rr(r,o),i=ra(r.default,r.update);if(n)var l=null===(o=o.clones)?null:o.map(uO);else l=t.memoizedState,t.memoizedState=null;o=t;var s=t.child;lR=0,a=l$(o,s,a,a,i,l,!1),0!=(4&t.flags)&&a&&(n||s9(t,r.onUpdate))}else 0!=(0x2000000&t.subtreeFlags)&&e(t,n);t=t.sibling}}(t,!1)}function sl(e,t){var n=e.alternate;if(null===n)lU(e,!1);else switch(e.tag){case 3:if(l1=lQ=!1,lz(),si(t,e),!lQ&&!l0){if(null!==(e=lA))for(var r=0;r<e.length;r+=3){n=e[r];var o=e[r+1];uj(n,e[r+2]),null!==(n=n.ownerDocument.documentElement)&&n.animate({opacity:[0,0],pointerEvents:["none","none"]},{duration:0,fill:"forwards",pseudoElement:"::view-transition-group("+o+")"})}null!==(e=9===(e=t.containerInfo).nodeType?e.documentElement:e.ownerDocument.documentElement)&&""===e.style.viewTransitionName&&(e.style.viewTransitionName="none",e.animate({opacity:[0,0],pointerEvents:["none","none"]},{duration:0,fill:"forwards",pseudoElement:"::view-transition-group(root)"}),e.animate({width:[0,0],height:[0,0]},{duration:0,fill:"forwards",pseudoElement:"::view-transition"})),l1=!0}lA=null;break;case 5:default:si(t,e);break;case 4:r=lQ,lQ=!1,si(t,e),lQ&&(l0=!0),lQ=r;break;case 22:null===e.memoizedState&&(null!==n.memoizedState?lU(e,!1):si(t,e));break;case 30:r=lQ,o=lz(),lQ=!1,si(t,e),lQ&&(e.flags|=4);var a=e.memoizedProps,i=e.stateNode;t=rr(a,i),i=rr(n.memoizedProps,i);var l=ra(a.default,a.update);"none"===l?t=!1:(a=n.memoizedState,n.memoizedState=null,n=e.child,lR=0,t=l$(e,n,t,i,l,a,!0),lR!==(null===a?0:a.length)&&(e.flags|=32)),0!=(4&e.flags)&&t?(s9(e,e.memoizedProps.onUpdate),lA=o):null!==o&&(o.push.apply(o,lA),lA=o),lQ=0!=(32&e.flags)||r}}function ss(e,t){if(8772&t.subtreeFlags)for(t=t.child;null!==t;)l3(e,t.alternate,t),t=t.sibling}function sc(e,t){var n=null;null!==e&&null!==e.memoizedState&&null!==e.memoizedState.cachePool&&(n=e.memoizedState.cachePool.pool),e=null,null!==t.memoizedState&&null!==t.memoizedState.cachePool&&(e=t.memoizedState.cachePool.pool),e!==n&&(null!=e&&e.refCount++,null!=n&&ou(n))}function su(e,t){e=null,null!==t.alternate&&(e=t.alternate.memoizedState.cache),(t=t.memoizedState.cache)!==e&&(t.refCount++,null!=e&&ou(e))}function sd(e,t,n,r){var o=(0x13ffff00&n)===n;if(t.subtreeFlags&(o?10262:10256))for(t=t.child;null!==t;)sf(e,t,n,r),t=t.sibling;else o&&function e(t){for(t=t.child;null!==t;)30===t.tag?lM(t.child,!1):0!=(0x2000000&t.subtreeFlags)&&e(t),t=t.sibling}(t)}function sf(e,t,n,r){var o=(0x13ffff00&n)===n;o&&null===t.alternate&&null!==t.return&&null!==t.return.alternate&&lB(t);var a=t.flags;switch(t.tag){case 0:case 11:case 15:sd(e,t,n,r),2048&a&&lg(9,t);break;case 1:case 31:case 13:default:sd(e,t,n,r);break;case 3:sd(e,t,n,r),o&&l1&&("root"===(e=9===(e=e.containerInfo).nodeType?e.body:"HTML"===e.nodeName?e.ownerDocument.body:e).style.viewTransitionName&&(e.style.viewTransitionName=""),null!==(e=e.ownerDocument.documentElement)&&"none"===e.style.viewTransitionName&&(e.style.viewTransitionName="")),2048&a&&(a=null,null!==t.alternate&&(a=t.alternate.memoizedState.cache),(t=t.memoizedState.cache)!==a&&(t.refCount++,null!=a&&ou(a)));break;case 12:if(2048&a){sd(e,t,n,r),a=t.stateNode;try{var i=t.memoizedProps,l=i.id,s=i.onPostCommit;"function"==typeof s&&s(l,null===t.alternate?"mount":"update",a.passiveEffectDuration,-0)}catch(e){cO(t,t.return,e)}}else sd(e,t,n,r);break;case 23:break;case 22:i=t.stateNode,l=t.alternate,null!==t.memoizedState?(o&&null!==l&&null===l.memoizedState&&lB(l),2&i._visibility?sd(e,t,n,r):sp(e,t)):(o&&null!==l&&null!==l.memoizedState&&lB(t),2&i._visibility?sd(e,t,n,r):(i._visibility|=2,function e(t,n,r,o,a){for(a=a&&0!=(10256&n.subtreeFlags),n=n.child;null!==n;){var i=n,l=i.flags;switch(i.tag){case 0:case 11:case 15:e(t,i,r,o,a),lg(8,i);break;case 23:break;case 22:var s=i.stateNode;null!==i.memoizedState?2&s._visibility?e(t,i,r,o,a):sp(t,i):(s._visibility|=2,e(t,i,r,o,a)),a&&2048&l&&sc(i.alternate,i);break;case 24:e(t,i,r,o,a),a&&2048&l&&su(i.alternate,i);break;default:e(t,i,r,o,a)}n=n.sibling}}(e,t,n,r,0!=(10256&t.subtreeFlags)))),2048&a&&sc(l,t);break;case 24:sd(e,t,n,r),2048&a&&su(t.alternate,t);break;case 30:o&&null!==(a=t.alternate)&&(lM(a.child,!0),lM(t.child,!0)),sd(e,t,n,r)}}function sp(e,t){if(10256&t.subtreeFlags)for(t=t.child;null!==t;){var n=t,r=n.flags;switch(n.tag){case 22:sp(e,n),2048&r&&sc(n.alternate,n);break;case 24:sp(e,n),2048&r&&su(n.alternate,n);break;default:sp(e,n)}t=t.sibling}}var sh=8192;function sm(e,t,n){if(e.subtreeFlags&sh)for(e=e.child;null!==e;)sg(e,t,n),e=e.sibling}function sg(e,t,n){switch(e.tag){case 26:sm(e,t,n),e.flags&sh&&(null!==e.memoizedState?function(e,t,n,r){if("stylesheet"===n.type&&("string"!=typeof r.media||!1!==matchMedia(r.media).matches)&&0==(4&n.state.loading)){if(null===n.instance){var o=u5(r.href),a=t.querySelector(u6(o));if(a){null!==(t=a._p)&&"object"==typeof t&&"function"==typeof t.then&&(e.count++,e=dh.bind(e),t.then(e,e)),n.state.loading|=4,n.instance=a,e6(a);return}a=t.ownerDocument||t,r=u9(r),(o=uQ.get(o))&&dn(r,o),e6(a=a.createElement("link"));var i=a;i._p=new Promise(function(e,t){i.onload=e,i.onerror=t}),ua(a,"link",r),n.instance=a}null===e.stylesheets&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&0==(3&n.state.loading)&&(e.count++,n=dh.bind(e),t.addEventListener("load",n),t.addEventListener("error",n))}}(n,sr,e.memoizedState,e.memoizedProps):(e=e.stateNode,(0x13ffff40&t)===t&&dd(n,e)));break;case 5:sm(e,t,n),e.flags&sh&&(e=e.stateNode,(0x13ffff40&t)===t&&dd(n,e));break;case 3:case 4:var r=sr;sr=u0(e.stateNode.containerInfo),sm(e,t,n),sr=r;break;case 22:null===e.memoizedState&&(null!==(r=e.alternate)&&null!==r.memoizedState?(r=sh,sh=0x1000000,sm(e,t,n),sh=r):sm(e,t,n));break;case 30:if(0!=(e.flags&sh)&&null!=(r=e.memoizedProps.name)&&"auto"!==r){var o=e.stateNode;o.paired=null,null===lI&&(lI=new Map),lI.set(r,o)}sm(e,t,n);break;default:sm(e,t,n)}}function sy(e){var t=e.alternate;if(null!==t&&null!==(e=t.child)){t.child=null;do t=e.sibling,e.sibling=null,e=t;while(null!==e)}}function sv(e){var t=e.deletions;if(0!=(16&e.flags)){if(null!==t)for(var n=0;n<t.length;n++){var r=t[n];lG=r,sx(r,e)}sy(e)}if(10256&e.subtreeFlags)for(e=e.child;null!==e;)sb(e),e=e.sibling}function sb(e){switch(e.tag){case 0:case 11:case 15:sv(e),2048&e.flags&&ly(9,e,e.return);break;case 3:case 12:default:sv(e);break;case 22:var t=e.stateNode;null!==e.memoizedState&&2&t._visibility&&(null===e.return||13!==e.return.tag)?(t._visibility&=-3,function e(t){var n=t.deletions;if(0!=(16&t.flags)){if(null!==n)for(var r=0;r<n.length;r++){var o=n[r];lG=o,sx(o,t)}sy(t)}for(t=t.child;null!==t;){switch((n=t).tag){case 0:case 11:case 15:ly(8,n,n.return),e(n);break;case 22:2&(r=n.stateNode)._visibility&&(r._visibility&=-3,e(n));break;default:e(n)}t=t.sibling}}(e)):sv(e)}}function sx(e,t){for(;null!==lG;){var n=lG;switch(n.tag){case 0:case 11:case 15:ly(8,n,t);break;case 23:case 22:if(null!==n.memoizedState&&null!==n.memoizedState.cachePool){var r=n.memoizedState.cachePool.pool;null!=r&&r.refCount++}break;case 24:ou(n.memoizedState.cache)}if(null!==(r=n.child))r.return=n,lG=r;else for(n=e;null!==lG;){var o=(r=lG).sibling,a=r.return;if(!function e(t){var n=t.alternate;null!==n&&(t.alternate=null,e(n)),t.child=null,t.deletions=null,t.sibling=null,5===t.tag&&null!==(n=t.stateNode)&&e1(n),t.stateNode=null,t.return=null,t.dependencies=null,t.memoizedProps=null,t.memoizedState=null,t.pendingProps=null,t.stateNode=null,t.updateQueue=null}(r),r===n){lG=null;break}if(null!==o){o.return=a,lG=o;break}lG=a}}}var sw={getCacheForType:function(e){var t=on(os),n=t.data.get(e);return void 0===n&&(n=e(),t.data.set(e,n)),n},cacheSignal:function(){return on(os).controller.signal}},s_="function"==typeof WeakMap?WeakMap:Map,sj=0,sk=null,sS=null,sO=0,sC=0,sP=null,sE=!1,sT=!1,sN=!1,sI=0,sL=0,sA=0,sz=0,sR=0,sD=0,sM=0,sZ=null,sU=null,sF=!1,sH=0,sV=0,sB=1/0,s$=null,sq=null,sW=0,sK=null,sY=null,sX=0,sG=0,sQ=null,sJ=null,s0=null,s1=null,s2=null,s3=0,s4=null;function s5(){return 0!=(2&sj)&&0!==sO?sO&-sO:null!==B.T?c$():eB()}function s6(){if(0===sD)if(0==(0x20000000&sO)||r$){var e=eN;0==(3932160&(eN<<=1))&&(eN=262144),sD=e}else sD=0x20000000;return null!==(e=o4.current)&&(e.flags|=32),sD}function s9(e,t){if(null!=t){var n=e.stateNode,r=n.ref;null===r&&(r=n.ref=uE(rr(e.memoizedProps,n))),null===s1&&(s1=[]),s1.push(t.bind(null,r))}}function s8(e,t,n){(e===sk&&(2===sC||9===sC)||null!==e.cancelPendingCommit)&&(co(e,0),ct(e,sO,sD,!1)),eM(e,n),(0==(2&sj)||e!==sk)&&(e===sk&&(0==(2&sj)&&(sz|=n),4===sL&&ct(e,sO,sD,!1)),cM(e))}function s7(e,t,n){if(0!=(6&sj))throw Error(l(327));for(var r=!n&&0==(127&t)&&0==(t&e.expiredLanes)||ez(e,t),o=r?function(e,t){var n=sj;sj|=2;var r=cl(),o=cs();sk!==e||sO!==t?(s$=null,sB=em()+500,co(e,t)):sT=ez(e,t);e:for(;;)try{if(0!==sC&&null!==sS){t=sS;var a=sP;t:switch(sC){case 1:sC=0,sP=null,cp(e,t,a,1);break;case 2:case 9:if(oC(a)){sC=0,sP=null,cf(t);break}t=function(){2!==sC&&9!==sC||sk!==e||(sC=7),cM(e)},a.then(t,t);break e;case 3:sC=7;break e;case 4:sC=5;break e;case 7:oC(a)?(sC=0,sP=null,cf(t)):(sC=0,sP=null,cp(e,t,a,7));break;case 5:var i=null;switch(sS.tag){case 26:i=sS.memoizedState;case 5:case 27:var s=sS;if(i?dc(i):s.stateNode.complete){sC=0,sP=null;var c=s.sibling;if(null!==c)sS=c;else{var u=s.return;null!==u?(sS=u,ch(u)):sS=null}break t}}sC=0,sP=null,cp(e,t,a,5);break;case 6:sC=0,sP=null,cp(e,t,a,6);break;case 8:cr(),sL=6;break e;default:throw Error(l(462))}}for(;null!==sS&&!ep();)cd(sS);break}catch(t){ca(e,t)}return(r4=r3=null,B.H=r,B.A=o,sj=n,null!==sS)?0:(sk=null,sO=0,ru(),sL)}(e,t):cu(e,t,!0),a=r;;){if(0===o)sT&&!r&&ct(e,t,0,!1);else{if(n=e.current.alternate,a&&!function(e){for(var t=e;;){var n=t.tag;if((0===n||11===n||15===n)&&16384&t.flags&&null!==(n=t.updateQueue)&&null!==(n=n.stores))for(var r=0;r<n.length;r++){var o=n[r],a=o.getSnapshot;o=o.value;try{if(!nZ(a(),o))return!1}catch(e){return!1}}if(n=t.child,16384&t.subtreeFlags&&null!==n)n.return=t,t=n;else{if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}(n)){o=cu(e,t,!1),a=!1;continue}if(2===o){if(a=t,e.errorRecoveryDisabledLanes&a)var i=0;else i=0!=(i=-0x20000001&e.pendingLanes)?i:0x20000000&i?0x20000000:0;if(0!==i){t=i;e:{o=sZ;var s=e.current.memoizedState.isDehydrated;if(s&&(co(e,i).flags|=256),2!==(i=cu(e,i,!1))){if(sN&&!s){e.errorRecoveryDisabledLanes|=a,sz|=a,o=4;break e}a=sU,sU=o,null!==a&&(null===sU?sU=a:sU.push.apply(sU,a))}o=i}if(a=!1,2!==o)continue}}if(1===o){co(e,0),ct(e,t,0,!0);break}e:{switch(r=e,a=o){case 0:case 1:throw Error(l(345));case 4:if((4194048&t)!==t&&(0x3c00000&t)!==t)break;case 6:ct(r,t,sD,!sE);break e;case 2:sU=null;break;case 3:case 5:break;default:throw Error(l(329))}if((0x3c00000&t)===t&&10<(o=sH+300-em())){if(ct(r,t,sD,!sE),0!==eA(r,0,!0))break e;sX=t,r.timeoutHandle=uh(ce.bind(null,r,n,sU,s$,sF,t,sD,sz,sM,sE,a,"Throttled",-0,0),o);break e}ce(r,n,sU,s$,sF,t,sD,sz,sM,sE,a,null,-0,0)}}break}cM(e)}function ce(e,t,n,r,o,a,i,l,s,c,u,d,f,p){e.timeoutHandle=-1;var h,m,g=t.subtreeFlags,y=(0x13ffff00&a)===a;if(d=null,(y||8192&g||0x1002000==(0x1002000&g))&&(lI=null,sg(t,a,d={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:tT}),y&&(g=d,null!=(y=(9===(y=e.containerInfo).nodeType?y:y.ownerDocument).__reactViewTransition)&&(g.count++,g.waitingForViewTransition=!0,g=dh.bind(g),y.finished.then(g,g))),null!==(h=d,m=g=(0x3c00000&a)===a?sH-em():(4194048&a)===a?sV-em():0,h.stylesheets&&0===h.count&&dy(h,h.stylesheets),g=0<h.count||0<h.imgCount?function(e){var t=setTimeout(function(){if(h.stylesheets&&dy(h,h.stylesheets),h.unsuspend){var e=h.unsuspend;h.unsuspend=null,e()}},6e4+m);0<h.imgBytes&&0===df&&(df=62500*function(){if("function"==typeof performance.getEntriesByType){for(var e=0,t=0,n=performance.getEntriesByType("resource"),r=0;r<n.length;r++){var o=n[r],a=o.transferSize,i=o.initiatorType,l=o.duration;if(a&&l&&ui(i)){for(i=0,l=o.responseEnd,r+=1;r<n.length;r++){var s=n[r],c=s.startTime;if(c>l)break;var u=s.transferSize,d=s.initiatorType;u&&ui(d)&&(i+=u*((s=s.responseEnd)<l?1:(l-c)/(s-c)))}if(--r,t+=8*(a+i)/(o.duration/1e3),10<++e)break}}if(0<e)return t/e/1e6}return navigator.connection&&"number"==typeof(e=navigator.connection.downlink)?e:5}());var n=setTimeout(function(){if(h.waitingForImages=!1,0===h.count&&(h.stylesheets&&dy(h,h.stylesheets),h.unsuspend)){var e=h.unsuspend;h.unsuspend=null,e()}},(h.imgBytes>df?50:800)+m);return h.unsuspend=e,function(){h.unsuspend=null,clearTimeout(t),clearTimeout(n)}}:null))){sX=a,e.cancelPendingCommit=g(cg.bind(null,e,t,a,n,r,o,i,l,s,u,d,null,f,p)),ct(e,a,i,!c);return}cg(e,t,a,n,r,o,i,l,s,u,d)}function ct(e,t,n,r){t&=~sR,t&=~sz,e.suspendedLanes|=t,e.pingedLanes&=~t,r&&(e.warmLanes|=t),r=e.expirationTimes;for(var o=t;0<o;){var a=31-eC(o),i=1<<a;r[a]=-1,o&=~i}0!==n&&eZ(e,n,t)}function cn(){return 0!=(6&sj)||(cZ(0,!1),!1)}function cr(){if(null!==sS){if(0===sC)var e=sS.return;else e=sS,r4=r3=null,ak(e),oL=null,oA=0,e=sS;for(;null!==e;)lm(e.alternate,e),e=e.return;sS=null}}function co(e,t){var n=e.timeoutHandle;-1!==n&&(e.timeoutHandle=-1,um(n)),null!==(n=e.cancelPendingCommit)&&(e.cancelPendingCommit=null,n()),sX=0,cr(),sk=e,sS=n=rx(e.current,null),sO=t,sC=0,sP=null,sE=!1,sT=ez(e,t),sN=!1,sM=sD=sR=sz=sA=sL=0,sU=sZ=null,sF=!1,0!=(8&t)&&(t|=32&t);var r=e.entangledLanes;if(0!==r)for(e=e.entanglements,r&=t;0<r;){var o=31-eC(r),a=1<<o;t|=e[o],r&=~a}return sI=t,ru(),n}function ca(e,t){ai=null,B.H=iS,t===oj||t===oS?(t=oN(),sC=3):t===ok?(t=oN(),sC=4):sC=t===iH?8:null!==t&&"object"==typeof t&&"function"==typeof t.then?6:1,sP=t,null===sS&&(sL=1,iD(e,rP(t,e.current)))}function ci(){var e=o4.current;return null===e||((4194048&sO)===sO?null===o5:((0x3c00000&sO)===sO||0!=(0x20000000&sO))&&e===o5)}function cl(){var e=B.H;return B.H=iS,null===e?iS:e}function cs(){var e=B.A;return B.A=sw,e}function cc(){sL=4,sE||(4194048&sO)!==sO&&null!==o4.current||(sT=!0),0==(0x7ffffff&sA)&&0==(0x7ffffff&sz)||null===sk||ct(sk,sO,sD,!1)}function cu(e,t,n){var r=sj;sj|=2;var o=cl(),a=cs();(sk!==e||sO!==t)&&(s$=null,co(e,t)),t=!1;var i=sL;e:for(;;)try{if(0!==sC&&null!==sS){var l=sS,s=sP;switch(sC){case 8:cr(),i=6;break e;case 3:case 2:case 9:case 6:null===o4.current&&(t=!0);var c=sC;if(sC=0,sP=null,cp(e,l,s,c),n&&sT){i=0;break e}break;default:c=sC,sC=0,sP=null,cp(e,l,s,c)}}(function(){for(;null!==sS;)cd(sS)})(),i=sL;break}catch(t){ca(e,t)}return t&&e.shellSuspendCounter++,r4=r3=null,sj=r,B.H=o,B.A=a,null===sS&&(sk=null,sO=0,ru()),i}function cd(e){var t=ls(e.alternate,e,sI);e.memoizedProps=e.pendingProps,null===t?ch(e):sS=t}function cf(e){var t=e,n=t.alternate;switch(t.tag){case 15:case 0:t=i1(n,t,t.pendingProps,t.type,void 0,sO);break;case 11:t=i1(n,t,t.pendingProps,t.type.render,t.ref,sO);break;case 5:ak(t);default:lm(n,t),t=ls(n,t=sS=rw(t,sI),sI)}e.memoizedProps=e.pendingProps,null===t?ch(e):sS=t}function cp(e,t,n,r){r4=r3=null,ak(t),oL=null,oA=0;var o=t.return;try{if(function(e,t,n,r,o){if(n.flags|=32768,null!==r&&"object"==typeof r&&"function"==typeof r.then){if(null!==(t=n.alternate)&&r7(t,n,o,!0),null!==(n=o4.current)){switch(n.tag){case 31:case 13:case 19:return null===o5?cc():null===n.alternate&&0===sL&&(sL=3),n.flags&=-257,n.flags|=65536,n.lanes=o,r===oO?n.flags|=16384:(null===(t=n.updateQueue)?n.updateQueue=new Set([r]):t.add(r),cC(e,r,o)),!1;case 22:return n.flags|=65536,r===oO?n.flags|=16384:(null===(t=n.updateQueue)?(t={transitions:null,markerInstances:null,retryQueue:new Set([r])},n.updateQueue=t):null===(n=t.retryQueue)?t.retryQueue=new Set([r]):n.add(r),cC(e,r,o)),!1}throw Error(l(435,n.tag))}return cC(e,r,o),cc(),!1}if(r$)return null!==(t=o4.current)?(0==(65536&t.flags)&&(t.flags|=256),t.flags|=65536,t.lanes=o,r!==rK&&r1(rP(e=Error(l(422),{cause:r}),n))):(r!==rK&&r1(rP(t=Error(l(423),{cause:r}),n)),e=e.current.alternate,e.flags|=65536,o&=-o,e.lanes|=o,r=rP(r,n),o=iZ(e.stateNode,r,o),oW(e,o),4!==sL&&(sL=2)),!1;var a=Error(l(520),{cause:r});if(a=rP(a,n),null===sZ?sZ=[a]:sZ.push(a),4!==sL&&(sL=2),null===t)return!0;r=rP(r,n),n=t;do{switch(n.tag){case 3:return n.flags|=65536,e=o&-o,n.lanes|=e,e=iZ(n.stateNode,r,e),oW(n,e),!1;case 1:if(t=n.type,a=n.stateNode,0==(128&n.flags)&&("function"==typeof t.getDerivedStateFromError||null!==a&&"function"==typeof a.componentDidCatch&&(null===sq||!sq.has(a))))return n.flags|=65536,o&=-o,n.lanes|=o,iF(o=iU(o),e,n,r),oW(n,o),!1;break;case 22:if(null!==n.memoizedState)return n.flags|=65536,!1}n=n.return}while(null!==n);return!1}(e,o,t,n,sO)){sL=1,iD(e,rP(n,e.current)),sS=null;return}}catch(t){if(null!==o)throw sS=o,t;sL=1,iD(e,rP(n,e.current)),sS=null;return}32768&t.flags?(r$||1===r?e=!0:sT||0!=(0x20000000&sO)?e=!1:(sE=e=!0,(2===r||9===r||3===r||6===r)&&null!==(r=o4.current)&&13===r.tag&&(r.flags|=16384)),cm(t,e)):ch(t)}function ch(e){var t=e;do{if(0!=(32768&t.flags))return void cm(t,sE);e=t.return;var n=function(e,t,n){var r=t.pendingProps;switch(rF(t),t.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:case 1:return lh(t),null;case 3:return n=t.stateNode,r=null,null!==e&&(r=e.memoizedState.cache),t.memoizedState.cache!==r&&(t.flags|=2048),r6(os),er(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),(null===e||null===e.child)&&(rQ(t)?lc(t):null===e||e.memoizedState.isDehydrated&&0==(256&t.flags)||(t.flags|=1024,r0())),lh(t),null;case 26:var o=t.type,a=t.memoizedState;return null===e?(lc(t),null!==a?(lh(t),ld(t,a)):(lh(t),lu(t,o,null,r,n))):a?a!==e.memoizedState?(lc(t),lh(t),ld(t,a)):(lh(t),t.flags&=-0x1000001):((e=e.memoizedProps)!==r&&lc(t),lh(t),lu(t,o,e,r,n)),null;case 27:if(ea(t),n=ee.current,o=t.type,null!==e&&null!=t.stateNode)e.memoizedProps!==r&&lc(t);else{if(!r){if(null===t.stateNode)throw Error(l(166));return lh(t),t.subtreeFlags&=-0x2000001,null}e=Q.current,rQ(t)?rX(t,e):(t.stateNode=e=uX(o,r,n),lc(t))}return lh(t),t.subtreeFlags&=-0x2000001,null;case 5:if(ea(t),o=t.type,null!==e&&null!=t.stateNode)e.memoizedProps!==r&&lc(t);else{if(!r){if(null===t.stateNode)throw Error(l(166));return lh(t),t.subtreeFlags&=-0x2000001,null}if(a=Q.current,rQ(t))rX(t,a);else{var i=uc(ee.current);switch(a){case 1:a=i.createElementNS("http://www.w3.org/2000/svg",o);break;case 2:a=i.createElementNS("http://www.w3.org/1998/Math/MathML",o);break;default:switch(o){case"svg":a=i.createElementNS("http://www.w3.org/2000/svg",o);break;case"math":a=i.createElementNS("http://www.w3.org/1998/Math/MathML",o);break;case"script":(a=i.createElement("div")).innerHTML="<script><\/script>",a=a.removeChild(a.firstChild);break;case"select":a="string"==typeof r.is?i.createElement("select",{is:r.is}):i.createElement("select"),r.multiple?a.multiple=!0:r.size&&(a.size=r.size);break;default:a="string"==typeof r.is?i.createElement(o,{is:r.is}):i.createElement(o)}}a[eW]=t,a[eK]=r;e:for(i=t.child;null!==i;){if(5===i.tag||6===i.tag)a.appendChild(i.stateNode);else if(4!==i.tag&&27!==i.tag&&null!==i.child){i.child.return=i,i=i.child;continue}if(i===t)break;for(;null===i.sibling;){if(null===i.return||i.return===t)break e;i=i.return}i.sibling.return=i.return,i=i.sibling}switch(t.stateNode=a,ua(a,o,r),o){case"button":case"input":case"select":case"textarea":r=!!r.autoFocus;break;case"img":r=!0;break;default:r=!1}r&&lc(t)}}return lh(t),t.subtreeFlags&=-0x2000001,lu(t,t.type,null===e?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&null!=t.stateNode)e.memoizedProps!==r&&lc(t);else{if("string"!=typeof r&&null===t.stateNode)throw Error(l(166));if(e=ee.current,rQ(t)){if(e=t.stateNode,n=t.memoizedProps,r=null,null!==(o=rV))switch(o.tag){case 27:case 5:r=o.memoizedProps}e[eW]=t,(e=!!(e.nodeValue===n||null!==r&&!0===r.suppressHydrationWarning||un(e.nodeValue,n)))||rY(t,!0)}else(e=uc(e).createTextNode(r))[eW]=t,t.stateNode=e}return lh(t),null;case 31:if(n=t.memoizedState,null===e||null!==e.memoizedState){if(r=rQ(t),null!==n){if(null===e){if(!r)throw Error(l(318));if(!(e=null!==(e=t.memoizedState)?e.dehydrated:null))throw Error(l(557));e[eW]=t}else rJ(),0==(128&t.flags)&&(t.memoizedState=null),t.flags|=4;lh(t),e=!1}else n=r0(),null!==e&&null!==e.memoizedState&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e){if(256&t.flags)return ae(t),t;return ae(t),null}if(0!=(128&t.flags))throw Error(l(558))}return lh(t),null;case 13:if(r=t.memoizedState,null===e||null!==e.memoizedState&&null!==e.memoizedState.dehydrated){if(o=rQ(t),null!==r&&null!==r.dehydrated){if(null===e){if(!o)throw Error(l(318));if(!(o=null!==(o=t.memoizedState)?o.dehydrated:null))throw Error(l(317));o[eW]=t}else rJ(),0==(128&t.flags)&&(t.memoizedState=null),t.flags|=4;lh(t),o=!1}else o=r0(),null!==e&&null!==e.memoizedState&&(e.memoizedState.hydrationErrors=o),o=!0;if(!o){if(256&t.flags)return ae(t),t;return ae(t),null}}if(ae(t),0!=(128&t.flags))return t.lanes=n,t;return n=null!==r,e=null!==e&&null!==e.memoizedState,n&&(r=t.child,o=null,null!==r.alternate&&null!==r.alternate.memoizedState&&null!==r.alternate.memoizedState.cachePool&&(o=r.alternate.memoizedState.cachePool.pool),a=null,null!==r.memoizedState&&null!==r.memoizedState.cachePool&&(a=r.memoizedState.cachePool.pool),a!==o&&(r.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),lf(t,t.updateQueue),lh(t),null;case 4:return er(),null===e&&c2(t.stateNode.containerInfo),t.flags|=0x4000000,lh(t),null;case 10:return r6(t.type),lh(t),null;case 19:if(ar(t),null===(r=t.memoizedState))return lh(t),null;if(o=0!=(128&t.flags),null===(a=r.rendering))if(o)lp(r,!1);else{if(0!==sL||null!==e&&0!=(128&e.flags))for(e=t.child;null!==e;){if(null!==(a=ao(e))){for(t.flags|=128,lp(r,!1),t.updateQueue=e=a.updateQueue,lf(t,e),t.subtreeFlags=0,e=n,n=t.child;null!==n;)rw(n,e),n=n.sibling;return an(t,1&at.current|2),r$&&rM(t,r.treeForkCount),t.child}e=e.sibling}null!==r.tail&&em()>sB&&(t.flags|=128,o=!0,lp(r,!1),t.lanes=4194304)}else{if(!o)if(null!==(e=ao(a))){if(t.flags|=128,o=!0,t.updateQueue=e=e.updateQueue,lf(t,e),lp(r,!0),null===r.tail&&"collapsed"!==r.tailMode&&"visible"!==r.tailMode&&!a.alternate&&!r$)return lh(t),null}else 2*em()-r.renderingStartTime>sB&&0x20000000!==n&&(t.flags|=128,o=!0,lp(r,!1),t.lanes=4194304);r.isBackwards?(a.sibling=t.child,t.child=a):(null!==(e=r.last)?e.sibling=a:t.child=a,r.last=a)}if(null!==r.tail){e=r.tail;e:{for(n=e;null!==n;){if(null!==n.alternate){n=!1;break e}n=n.sibling}n=!0}return r.rendering=e,r.tail=e.sibling,r.renderingStartTime=em(),e.sibling=null,a=at.current,a=o?1&a|2:1&a,"visible"===r.tailMode||"collapsed"===r.tailMode||!n||r$?an(t,a):(n=a,G(o4,t),G(at,n),null===o5&&(o5=t)),r$&&rM(t,r.treeForkCount),e}return lh(t),null;case 22:case 23:return ae(t),o3(),r=null!==t.memoizedState,null!==e?null!==e.memoizedState!==r&&(t.flags|=8192):r&&(t.flags|=8192),r?0!=(0x20000000&n)&&0==(128&t.flags)&&(lh(t),6&t.subtreeFlags&&(t.flags|=8192)):lh(t),null!==(n=t.updateQueue)&&lf(t,n.retryQueue),n=null,null!==e&&null!==e.memoizedState&&null!==e.memoizedState.cachePool&&(n=e.memoizedState.cachePool.pool),r=null,null!==t.memoizedState&&null!==t.memoizedState.cachePool&&(r=t.memoizedState.cachePool.pool),r!==n&&(t.flags|=2048),null!==e&&X(ob),null;case 24:return n=null,null!==e&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),r6(os),lh(t),null;case 25:return null;case 30:return t.flags|=0x2000000,lh(t),null}throw Error(l(156,t.tag))}(t.alternate,t,sI);if(null!==n){sS=n;return}if(null!==(t=t.sibling)){sS=t;return}sS=t=e}while(null!==t);0===sL&&(sL=5)}function cm(e,t){do{var n=function(e,t){switch(rF(t),t.tag){case 1:return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 3:return r6(os),er(),0!=(65536&(e=t.flags))&&0==(128&e)?(t.flags=-65537&e|128,t):null;case 26:case 27:case 5:return ea(t),null;case 31:if(null!==t.memoizedState){if(ae(t),null===t.alternate)throw Error(l(340));rJ()}return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 13:if(ae(t),null!==(e=t.memoizedState)&&null!==e.dehydrated){if(null===t.alternate)throw Error(l(340));rJ()}return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 19:return ar(t),65536&(e=t.flags)?(t.flags=-65537&e|128,null!==(e=t.memoizedState)&&(e.rendering=null,e.tail=null),t.flags|=4,t):null;case 4:return er(),null;case 10:return r6(t.type),null;case 22:case 23:return ae(t),o3(),null!==e&&X(ob),65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 24:return r6(os),null;default:return null}}(e.alternate,e);if(null!==n){n.flags&=32767,sS=n;return}if(null!==(n=e.return)&&(n.flags|=32768,n.subtreeFlags=0,n.deletions=null),!t&&null!==(e=e.sibling)){sS=e;return}sS=e=n}while(null!==e);sL=6,sS=null}function cg(e,t,n,r,o,a,i,s,c,u,d){e.cancelPendingCommit=null;do cj();while(0!==sW);if(0!=(6&sj))throw Error(l(327));if(null!==t){var f;if(t===e.current)throw Error(l(177));if(!function(e,t,n,r,o,a){var i=e.pendingLanes;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=n,e.entangledLanes&=n,e.errorRecoveryDisabledLanes&=n,e.shellSuspendCounter=0;var l=e.entanglements,s=e.expirationTimes,c=e.hiddenUpdates;for(n=i&~n;0<n;){var u=31-eC(n),d=1<<u;l[u]=0,s[u]=-1;var f=c[u];if(null!==f)for(c[u]=null,u=0;u<f.length;u++){var p=f[u];null!==p&&(p.lane&=-0x20000001)}n&=~d}0!==r&&eZ(e,r,0),0!==a&&0===o&&0!==e.tag&&(e.suspendedLanes|=a&~(i&~t))}(e,n,a=t.lanes|t.childLanes|rc,i,s,c),e===sk&&(sS=sk=null,sO=0),sY=t,sK=e,sX=n,sG=a,sQ=o,sJ=r,s1=null,(0x13ffff00&n)===n?(f=e.transitionTypes,e.transitionTypes=null,s2=f,r=10262):(s2=null,r=10256),0!=(t.subtreeFlags&r)||0!=(t.flags&r)?(e.callbackNode=null,e.callbackPriority=0,ed(eb,function(){return ck(),null})):(e.callbackNode=null,e.callbackPriority=0),lN=!1,r=0!=(13878&t.flags),0!=(13878&t.subtreeFlags)||r){r=B.T,B.T=null,o=$.p,$.p=2,i=sj,sj|=4;try{!function(e,t,n){if(e=e.containerInfo,ul=dO,nB(e=nV(e))){if("selectionStart"in e)var r={start:e.selectionStart,end:e.selectionEnd};else e:{var o=(r=(r=e.ownerDocument)&&r.defaultView||window).getSelection&&r.getSelection();if(o&&0!==o.rangeCount){r=o.anchorNode;var a,i=o.anchorOffset,l=o.focusNode;o=o.focusOffset;try{r.nodeType,l.nodeType}catch(e){r=null;break e}var s=0,c=-1,u=-1,d=0,f=0,p=e,h=null;t:for(;;){for(;p!==r||0!==i&&3!==p.nodeType||(c=s+i),p!==l||0!==o&&3!==p.nodeType||(u=s+o),3===p.nodeType&&(s+=p.nodeValue.length),null!==(a=p.firstChild);)h=p,p=a;for(;;){if(p===e)break t;if(h===r&&++d===i&&(c=s),h===l&&++f===o&&(u=s),null!==(a=p.nextSibling))break;h=(p=h).parentNode}p=a}r=-1===c||-1===u?null:{start:c,end:u}}else r=null}r=r||{start:0,end:0}}else r=null;for(us={focusedElem:e,selectionRange:r},dO=!1,n=(0x13ffff00&n)===n,lG=t,t=n?9270:1028;null!==lG;){if(e=lG,n&&null!==(r=e.deletions))for(i=0;i<r.length;i++)n&&lH(r[i]);if(null===e.alternate&&0!=(2&e.flags))n&&lL(e),l2(n);else{if(22===e.tag){if(r=e.alternate,null!==e.memoizedState){null!==r&&null===r.memoizedState&&n&&lH(r),l2(n);continue}else if(null!==r&&null!==r.memoizedState){n&&lL(e),l2(n);continue}}r=e.child,0!=(e.subtreeFlags&t)&&null!==r?(r.return=e,lG=r):(n&&function e(t){for(t=t.child;null!==t;){if(30===t.tag){var n=t.memoizedProps,r=rr(n,t.stateNode);n=ra(n.default,n.update),t.flags&=-5,"none"!==n&&lD(t,r,n,t.memoizedState=[],!1)}else 0!=(0x2000000&t.subtreeFlags)&&e(t);t=t.sibling}}(e),l2(n))}}lI=null}(e,t,n)}finally{sj=i,$.p=o,B.T=r}}sW=1,(t=lN)?s0=function(e,t,n,r,o,a,i,l,s){var c=9===t.nodeType?t:t.ownerDocument;try{var u=c.startViewTransition({update:function(){var t=c.defaultView,n=t.navigation&&t.navigation.transition,i=c.fonts.status;r();var l=[];if("loaded"===i&&(c.documentElement.clientHeight,"loading"===c.fonts.status&&l.push(c.fonts.ready)),i=l.length,null!==e)for(var s=e.suspenseyImages,u=0,d=0;d<s.length;d++){var f=s[d];if(!f.complete){var p=f.getBoundingClientRect();if(0<p.bottom&&0<p.right&&p.top<t.innerHeight&&p.left<t.innerWidth){if((u+=du(f))>df){l.length=i;break}f=new Promise(uC.bind(f)),l.push(f)}}}return 0<l.length?(t=Promise.race([Promise.all(l),new Promise(function(e){return setTimeout(e,500)})]).then(o,o),(n?Promise.allSettled([n.finished,t]):t).then(a,a)):(o(),n)?n.finished.then(a,a):void a()},types:n});c.__reactViewTransition=u;var d=[];return u.ready.then(function(){for(var e=c.documentElement.getAnimations({subtree:!0}),t=0;t<e.length;t++){var n=e[t],r=n.effect,o=r.pseudoElement;if(null!=o&&o.startsWith("::view-transition")){d.push(n),n=r.getKeyframes();for(var a=o=void 0,l=!0,s=0;s<n.length;s++){var u=n[s],f=u.width;if(void 0===o)o=f;else if(o!==f){l=!1;break}if(f=u.height,void 0===a)a=f;else if(a!==f){l=!1;break}delete u.width,delete u.height,"none"===u.transform&&delete u.transform}l&&void 0!==o&&void 0!==a&&(r.setKeyframes(n),(l=getComputedStyle(r.target,r.pseudoElement)).width!==o||l.height!==a)&&((l=n[0]).width=o,l.height=a,(l=n[n.length-1]).width=o,l.height=a,r.setKeyframes(n))}}i()},function(e){c.__reactViewTransition===u&&(c.__reactViewTransition=null);try{"object"==typeof e&&null!==e&&"InvalidStateError"===e.name&&("View transition was skipped because document visibility state is hidden."===e.message||"Skipping view transition because document visibility state has become hidden."===e.message||"Skipping view transition because viewport size changed."===e.message||"Transition was aborted because of invalid state"===e.message)&&(e=null),null!==e&&s(e)}finally{r(),o(),i()}}),u.finished.finally(function(){for(var e=0;e<d.length;e++)d[e].cancel();c.__reactViewTransition===u&&(c.__reactViewTransition=null),l()}),u}catch(e){return r(),o(),i(),null}}(d,e.containerInfo,s2,cb,cx,cv,cw,ck,cy,null,null):(cb(),cx(),cw())}}function cy(e){0!==sW&&(0,sK.onRecoverableError)(e,{componentStack:null})}function cv(){3===sW&&(sW=0,sl(sY,sK),sW=4)}function cb(){if(1===sW){sW=0;var e=sK,t=sY,n=sX,r=0!=(13878&t.flags);if(0!=(13878&t.subtreeFlags)||r){r=B.T,B.T=null;var o=$.p;$.p=2;var a=sj;sj|=4;try{lJ=l0=!1,so(t,e,n),n=us;var i=nV(e.containerInfo),l=n.focusedElem,s=n.selectionRange;if(i!==l&&l&&l.ownerDocument&&function e(t,n){return!!t&&!!n&&(t===n||(!t||3!==t.nodeType)&&(n&&3===n.nodeType?e(t,n.parentNode):"contains"in t?t.contains(n):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(n))))}(l.ownerDocument.documentElement,l)){if(null!==s&&nB(l)){var c=s.start,u=s.end;if(void 0===u&&(u=c),"selectionStart"in l)l.selectionStart=c,l.selectionEnd=Math.min(u,l.value.length);else{var d=l.ownerDocument||document,f=d&&d.defaultView||window;if(f.getSelection){var p=f.getSelection(),h=l.textContent.length,m=Math.min(s.start,h),g=void 0===s.end?m:Math.min(s.end,h);!p.extend&&m>g&&(i=g,g=m,m=i);var y=nH(l,m),v=nH(l,g);if(y&&v&&(1!==p.rangeCount||p.anchorNode!==y.node||p.anchorOffset!==y.offset||p.focusNode!==v.node||p.focusOffset!==v.offset)){var b=d.createRange();b.setStart(y.node,y.offset),p.removeAllRanges(),m>g?(p.addRange(b),p.extend(v.node,v.offset)):(b.setEnd(v.node,v.offset),p.addRange(b))}}}}for(d=[],p=l;p=p.parentNode;)1===p.nodeType&&d.push({element:p,left:p.scrollLeft,top:p.scrollTop});for("function"==typeof l.focus&&l.focus(),l=0;l<d.length;l++){var x=d[l];x.element.scrollLeft=x.left,x.element.scrollTop=x.top}}dO=!!ul,us=ul=null}finally{sj=a,$.p=o,B.T=r}}e.current=t,sW=2}}function cx(){if(2===sW){sW=0;var e=sK,t=sY,n=0!=(8772&t.flags);if(0!=(8772&t.subtreeFlags)||n){n=B.T,B.T=null;var r=$.p;$.p=2;var o=sj;sj|=4;try{l3(e,t.alternate,t)}finally{sj=o,$.p=r,B.T=n}}sW=3}}function cw(){if(4===sW||3===sW){sW=0,s0=null,eh();var e=sK,t=sY,n=sX,r=sJ,o=(0x13ffff00&n)===n?10262:10256;if(0!=(t.subtreeFlags&o)||0!=(t.flags&o)?sW=5:(sW=0,sY=sK=null,c_(e,e.pendingLanes)),0===(o=e.pendingLanes)&&(sq=null),eV(n),t=t.stateNode,eS&&"function"==typeof eS.onCommitFiberRoot)try{eS.onCommitFiberRoot(ek,t,void 0,128==(128&t.current.flags))}catch(e){}if(null!==r){t=B.T,o=$.p,$.p=2,B.T=null;try{for(var a=e.onRecoverableError,i=0;i<r.length;i++){var l=r[i];a(l.value,{componentStack:l.stack})}}finally{B.T=t,$.p=o}}if(r=s1,a=s2,s2=null,null!==r)for(s1=null,null===a&&(a=[]),l=0;l<r.length;l++)(0,r[l])(a);0!=(3&sX)&&cj(),cM(e),o=e.pendingLanes,0!=(261930&n)&&0!=(42&o)?e===s4?s3++:(s3=0,s4=e):s3=0,cZ(0,!1)}}function c_(e,t){0==(e.pooledCacheLanes&=t)&&null!=(t=e.pooledCache)&&(e.pooledCache=null,ou(t))}function cj(){return null!==s0&&(s0.skipTransition(),s0=null),cb(),cx(),cw(),ck()}function ck(){if(5!==sW)return!1;var e=sK,t=sG;sG=0;var n=eV(sX),r=B.T,o=$.p;try{$.p=32>n?32:n,B.T=null,n=sQ,sQ=null;var a=sK,i=sX;if(sW=0,sY=sK=null,sX=0,0!=(6&sj))throw Error(l(331));var s=sj;if(sj|=4,sb(a.current),sf(a,a.current,i,n),sj=s,cZ(0,!1),eS&&"function"==typeof eS.onPostCommitFiberRoot)try{eS.onPostCommitFiberRoot(ek,a)}catch(e){}return!0}finally{$.p=o,B.T=r,c_(e,t)}}function cS(e,t,n){t=rP(n,t),t=iZ(e.stateNode,t,2),null!==(e=o$(e,t,2))&&(eM(e,2),cM(e))}function cO(e,t,n){if(3===e.tag)cS(e,e,n);else for(;null!==t;){if(3===t.tag){cS(t,e,n);break}if(1===t.tag){var r=t.stateNode;if("function"==typeof t.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===sq||!sq.has(r))){e=rP(n,e),null!==(r=o$(t,n=iU(2),2))&&(iF(n,r,t,e),eM(r,2),cM(r));break}}t=t.return}}function cC(e,t,n){var r=e.pingCache;if(null===r){r=e.pingCache=new s_;var o=new Set;r.set(t,o)}else void 0===(o=r.get(t))&&(o=new Set,r.set(t,o));o.has(n)||(sN=!0,o.add(n),e=cP.bind(null,e,t,n),t.then(e,e))}function cP(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,sk===e&&(sO&n)===n&&(4===sL||3===sL&&(0x3c00000&sO)===sO&&300>em()-sH?0==(2&sj)&&co(e,0):sR|=n,sM===sO&&(sM=0)),cM(e)}function cE(e,t){0===t&&(t=eR()),null!==(e=rp(e,t))&&(eM(e,t),cM(e))}function cT(e){var t=e.memoizedState,n=0;null!==t&&(n=t.retryLane),cE(e,n)}function cN(e,t){var n=0;switch(e.tag){case 31:case 13:var r=e.stateNode,o=e.memoizedState;null!==o&&(n=o.retryLane);break;case 19:r=e.stateNode;break;case 22:r=e.stateNode._retryCache;break;default:throw Error(l(314))}null!==r&&r.delete(t),cE(e,n)}var cI=null,cL=null,cA=!1,cz=!1,cR=!1,cD=0;function cM(e){e!==cL&&null===e.next&&(null===cL?cI=cL=e:cL=cL.next=e),cz=!0,cA||(cA=!0,uy(function(){0!=(6&sj)?ed(ey,cU):cF()}))}function cZ(e,t){if(!cR&&cz){cR=!0;do for(var n=!1,r=cI;null!==r;){if(!t)if(0!==e){var o=r.pendingLanes;if(0===o)var a=0;else{var i=r.suspendedLanes,l=r.pingedLanes;a=0xc000095&(a=(1<<31-eC(42|e)+1)-1&(o&~(i&~l)))?0xc000095&a|1:a?2|a:0}0!==a&&(n=!0,cB(r,a))}else a=sO,0==(3&(a=eA(r,r===sk?a:0,null!==r.cancelPendingCommit||-1!==r.timeoutHandle)))||ez(r,a)||(n=!0,cB(r,a));r=r.next}while(n);cR=!1}}function cU(){cF()}function cF(){cz=cA=!1;var e,t=0;0===cD||((e=window.event)&&"popstate"===e.type?e===up||(up=e,0):(up=null,1))||(t=cD);for(var n=em(),r=null,o=cI;null!==o;){var a=o.next,i=cH(o,n);0===i?(o.next=null,null===r?cI=a:r.next=a,null===a&&(cL=r)):(r=o,(0!==t||0!=(3&i))&&(cz=!0)),o=a}0!==sW&&5!==sW||cZ(t,!1),0!==cD&&(cD=0)}function cH(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,a=-0x3c00001&e.pendingLanes;0<a;){var i=31-eC(a),l=1<<i,s=o[i];-1===s?(0==(l&n)||0!=(l&r))&&(o[i]=function(e,t){switch(e){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;default:return -1}}(l,t)):s<=t&&(e.expiredLanes|=l),a&=~l}if(t=sk,n=sO,n=eA(e,e===t?n:0,null!==e.cancelPendingCommit||-1!==e.timeoutHandle),r=e.callbackNode,0===n||e===t&&(2===sC||9===sC)||null!==e.cancelPendingCommit)return null!==r&&null!==r&&ef(r),e.callbackNode=null,e.callbackPriority=0;if(0==(3&n)||ez(e,n)){if((t=n&-n)===e.callbackPriority)return t;switch(null!==r&&ef(r),eV(n)){case 2:case 8:n=ev;break;case 32:default:n=eb;break;case 0x10000000:n=ew}return n=ed(n,r=cV.bind(null,e)),e.callbackPriority=t,e.callbackNode=n,t}return null!==r&&null!==r&&ef(r),e.callbackPriority=2,e.callbackNode=null,2}function cV(e,t){if(0!==sW&&5!==sW)return e.callbackNode=null,e.callbackPriority=0,null;var n=e.callbackNode;if(cj()&&e.callbackNode!==n)return null;var r=sO;return 0===(r=eA(e,e===sk?r:0,null!==e.cancelPendingCommit||-1!==e.timeoutHandle))?null:(s7(e,r,t),cH(e,em()),null!=e.callbackNode&&e.callbackNode===n?cV.bind(null,e):null)}function cB(e,t){if(cj())return null;s7(e,t,!0)}function c$(){if(0===cD){var e=om;0===e&&(e=eT,0==(261888&(eT<<=1))&&(eT=256)),cD=e}return cD}function cq(e){return null==e||"symbol"==typeof e||"boolean"==typeof e?null:"function"==typeof e?e:tE(""+e)}function cW(e,t){var n=t.ownerDocument.createElement("input");return n.name=t.name,n.value=t.value,e.id&&n.setAttribute("form",e.id),t.parentNode.insertBefore(n,t),e=new FormData(e),n.parentNode.removeChild(n),e}for(var cK=0;cK<re.length;cK++){var cY=re[cK];rt(cY.toLowerCase(),"on"+(cY[0].toUpperCase()+cY.slice(1)))}rt(n2,"onAnimationEnd"),rt(n3,"onAnimationIteration"),rt(n4,"onAnimationStart"),rt("dblclick","onDoubleClick"),rt("focusin","onFocus"),rt("focusout","onBlur"),rt(n5,"onTransitionRun"),rt(n6,"onTransitionStart"),rt(n9,"onTransitionCancel"),rt(n8,"onTransitionEnd"),te("onMouseEnter",["mouseout","mouseover"]),te("onMouseLeave",["mouseout","mouseover"]),te("onPointerEnter",["pointerout","pointerover"]),te("onPointerLeave",["pointerout","pointerover"]),e7("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),e7("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),e7("onBeforeInput",["compositionend","keypress","textInput","paste"]),e7("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),e7("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),e7("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var cX="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),cG=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(cX));function cQ(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var r=e[n],o=r.event;r=r.listeners;e:{var a=void 0;if(t)for(var i=r.length-1;0<=i;i--){var l=r[i],s=l.instance,c=l.currentTarget;if(l=l.listener,s!==a&&o.isPropagationStopped())break e;a=l,o.currentTarget=c;try{a(o)}catch(e){ri(e)}o.currentTarget=null,a=s}else for(i=0;i<r.length;i++){if(s=(l=r[i]).instance,c=l.currentTarget,l=l.listener,s!==a&&o.isPropagationStopped())break e;a=l,o.currentTarget=c;try{a(o)}catch(e){ri(e)}o.currentTarget=null,a=s}}}}function cJ(e,t){var n=t[eX];void 0===n&&(n=t[eX]=new Set);var r=e+"__bubble";n.has(r)||(c3(t,e,2,!1),n.add(r))}function c0(e,t,n){var r=0;t&&(r|=4),c3(n,e,r,t)}var c1="_reactListening"+Math.random().toString(36).slice(2);function c2(e){if(!e[c1]){e[c1]=!0,e9.forEach(function(t){"selectionchange"!==t&&(cG.has(t)||c0(t,!1,e),c0(t,!0,e))});var t=9===e.nodeType?e:e.ownerDocument;null===t||t[c1]||(t[c1]=!0,c0("selectionchange",!1,t))}}function c3(e,t,n,r){switch(dL(t)){case 2:var o=dC;break;case 8:o=dP;break;default:o=dE}n=o.bind(null,t,n,e),o=void 0,tU&&("touchstart"===t||"touchmove"===t||"wheel"===t)&&(o=!0),r?void 0!==o?e.addEventListener(t,n,{capture:!0,passive:o}):e.addEventListener(t,n,!0):void 0!==o?e.addEventListener(t,n,{passive:o}):e.addEventListener(t,n,!1)}function c4(e,t,n,r,o){var a=r;if(0==(1&t)&&0==(2&t)&&null!==r)e:for(;;){if(null===r)return;var i=r.tag;if(3===i||4===i){var l=r.stateNode.containerInfo;if(l===o)break;if(4===i)for(i=r.return;null!==i;){var c=i.tag;if((3===c||4===c)&&i.stateNode.containerInfo===o)return;i=i.return}for(;null!==l;){if(null===(i=e2(l)))return;if(5===(c=i.tag)||6===c||26===c||27===c){r=a=i;continue e}l=l.parentNode}}r=r.return}tD(function(){var r=a,o=tI(n),i=[];e:{var l=n7.get(e);if(void 0!==l){var c=t2,u=e;switch(e){case"keypress":if(0===tq(n))break e;case"keydown":case"keyup":c=nl;break;case"focusin":u="focus",c=t8;break;case"focusout":u="blur",c=t8;break;case"beforeblur":case"afterblur":c=t8;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":c=t6;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":c=t9;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":c=nc;break;case n2:case n3:case n4:c=t7;break;case n8:c=nu;break;case"scroll":case"scrollend":c=t4;break;case"wheel":c=nd;break;case"copy":case"cut":case"paste":c=ne;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":c=ns;break;case"toggle":case"beforetoggle":c=nf}var d=0!=(4&t),f=!d&&("scroll"===e||"scrollend"===e),p=d?null!==l?l+"Capture":null:l;d=[];for(var h,m=r;null!==m;){var g=m;if(h=g.stateNode,5!==(g=g.tag)&&26!==g&&27!==g||null===h||null===p||null!=(g=tM(m,p))&&d.push(c5(m,g,h)),f)break;m=m.return}0<d.length&&(l=new c(l,u,null,n,o),i.push({event:l,listeners:d}))}}if(0==(7&t)){c="mouseover"===e||"pointerover"===e,l="mouseout"===e||"pointerout"===e,!(c&&n!==tN&&(u=n.relatedTarget||n.fromElement)&&(e2(u)||u[eY]))&&(l||c)&&(u=o.window===o?o:(c=o.ownerDocument)?c.defaultView||c.parentWindow:window,l?(c=n.relatedTarget||n.toElement,l=r,null!==(c=c?e2(c):null)&&(f=s(c),d=c.tag,c!==f||5!==d&&27!==d&&6!==d)&&(c=null)):(l=null,c=r),l!==c&&(d=t6,g="onMouseLeave",p="onMouseEnter",m="mouse",("pointerout"===e||"pointerover"===e)&&(d=ns,g="onPointerLeave",p="onPointerEnter",m="pointer"),f=null==l?u:e4(l),h=null==c?u:e4(c),(u=new d(g,m+"leave",l,n,o)).target=f,u.relatedTarget=h,g=null,e2(o)===r&&((d=new d(p,m+"enter",c,n,o)).target=h,d.relatedTarget=f,g=d),f=g,d=l&&c?w(l,c,c9):null,null!==l&&c8(i,u,l,d,!1),null!==c&&null!==f&&c8(i,f,c,d,!0)));e:{if("select"===(c=(l=r?e4(r):window).nodeName&&l.nodeName.toLowerCase())||"input"===c&&"file"===l.type)var y,v=nE;else if(nj(l))if(nT)v=nM;else{v=nR;var b=nz}else(c=l.nodeName)&&"input"===c.toLowerCase()&&("checkbox"===l.type||"radio"===l.type)?v=nD:r&&tO(r.elementType)&&(v=nE);if(v&&(v=v(e,r))){nk(i,v,n,o);break e}b&&b(e,l,r),"focusout"===e&&r&&"number"===l.type&&null!=r.memoizedProps.value&&tv(l,"number",l.value)}switch(b=r?e4(r):window,e){case"focusin":(nj(b)||"true"===b.contentEditable)&&(nq=b,nW=r,nK=null);break;case"focusout":nK=nW=nq=null;break;case"mousedown":nY=!0;break;case"contextmenu":case"mouseup":case"dragend":nY=!1,nX(i,n,o);break;case"selectionchange":if(n$)break;case"keydown":case"keyup":nX(i,n,o)}if(nh)t:{switch(e){case"compositionstart":var x="onCompositionStart";break t;case"compositionend":x="onCompositionEnd";break t;case"compositionupdate":x="onCompositionUpdate";break t}x=void 0}else nw?nb(e,n)&&(x="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(x="onCompositionStart");x&&(ny&&"ko"!==n.locale&&(nw||"onCompositionStart"!==x?"onCompositionEnd"===x&&nw&&(y=t$()):(tV="value"in(tH=o)?tH.value:tH.textContent,nw=!0)),0<(b=c6(r,x)).length&&(x=new nt(x,e,null,n,o),i.push({event:x,listeners:b}),y?x.data=y:null!==(y=nx(n))&&(x.data=y))),(y=ng?function(e,t){switch(e){case"compositionend":return nx(t);case"keypress":if(32!==t.which)return null;return nv=!0," ";case"textInput":return" "===(e=t.data)&&nv?null:e;default:return null}}(e,n):function(e,t){if(nw)return"compositionend"===e||!nh&&nb(e,t)?(e=t$(),tB=tV=tH=null,nw=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return ny&&"ko"!==t.locale?null:t.data}}(e,n))&&0<(x=c6(r,"onBeforeInput")).length&&(b=new nt("onBeforeInput","beforeinput",null,n,o),i.push({event:b,listeners:x}),b.data=y);var _=e;if("submit"===_&&r&&r.stateNode===o){var j=cq((o[eK]||null).action),k=n.submitter;k&&null!==(_=(_=k[eK]||null)?cq(_.formAction):k.getAttribute("formAction"))&&(j=_,k=null);var S=new t2("action","action",null,n,o);i.push({event:S,listeners:[{instance:null,listener:function(){if(n.defaultPrevented){if(0!==cD){var e=k?cW(o,k):new FormData(o);iu(r,{pending:!0,data:e,method:o.method,action:j},null,e)}}else"function"==typeof j&&(S.preventDefault(),iu(r,{pending:!0,data:e=k?cW(o,k):new FormData(o),method:o.method,action:j},j,e))},currentTarget:o}]})}}cQ(i,t)})}function c5(e,t,n){return{instance:e,listener:t,currentTarget:n}}function c6(e,t){for(var n=t+"Capture",r=[];null!==e;){var o=e,a=o.stateNode;if(5!==(o=o.tag)&&26!==o&&27!==o||null===a||(null!=(o=tM(e,n))&&r.unshift(c5(e,o,a)),null!=(o=tM(e,t))&&r.push(c5(e,o,a))),3===e.tag)return r;e=e.return}return[]}function c9(e){if(null===e)return null;do e=e.return;while(e&&5!==e.tag&&27!==e.tag);return e||null}function c8(e,t,n,r,o){for(var a=t._reactName,i=[];null!==n&&n!==r;){var l=n,s=l.alternate,c=l.stateNode;if(l=l.tag,null!==s&&s===r)break;5!==l&&26!==l&&27!==l||null===c||(s=c,o?null!=(c=tM(n,a))&&i.unshift(c5(n,c,s)):o||null!=(c=tM(n,a))&&i.push(c5(n,c,s))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}var c7=/\r\n?/g,ue=/\u0000|\uFFFD/g;function ut(e){return("string"==typeof e?e:""+e).replace(c7,"\n").replace(ue,"")}function un(e,t){return t=ut(t),ut(e)===t}function ur(e,t,n,r,o,a){switch(n){case"children":if("string"==typeof r)"body"===t||"textarea"===t&&""===r||t_(e,r);else{if("number"!=typeof r&&"bigint"!=typeof r)return;"body"!==t&&t_(e,""+r)}break;case"className":tl(e,"class",r);break;case"tabIndex":tl(e,"tabindex",r);break;case"dir":case"role":case"viewBox":case"width":case"height":tl(e,n,r);break;case"style":tS(e,r,a);return;case"data":if("object"!==t){tl(e,"data",r);break}case"src":case"href":if(""===r&&("a"!==t||"href"!==n)||null==r||"function"==typeof r||"symbol"==typeof r||"boolean"==typeof r){e.removeAttribute(n);break}r=tE(""+r),e.setAttribute(n,r);break;case"action":case"formAction":if("function"==typeof r){e.setAttribute(n,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}if("function"==typeof a&&("formAction"===n?("input"!==t&&ur(e,t,"name",o.name,o,null),ur(e,t,"formEncType",o.formEncType,o,null),ur(e,t,"formMethod",o.formMethod,o,null),ur(e,t,"formTarget",o.formTarget,o,null)):(ur(e,t,"encType",o.encType,o,null),ur(e,t,"method",o.method,o,null),ur(e,t,"target",o.target,o,null))),null==r||"symbol"==typeof r||"boolean"==typeof r){e.removeAttribute(n);break}r=tE(""+r),e.setAttribute(n,r);break;case"onClick":null!=r&&(e.onclick=tT);return;case"onScroll":null!=r&&cJ("scroll",e);return;case"onScrollEnd":null!=r&&cJ("scrollend",e);return;case"dangerouslySetInnerHTML":if(null!=r){if("object"!=typeof r||!("__html"in r))throw Error(l(61));if(null!=(n=r.__html)){if(null!=o.children)throw Error(l(60));e.innerHTML=n}}break;case"multiple":e.multiple=r&&"function"!=typeof r&&"symbol"!=typeof r;break;case"muted":e.muted=r&&"function"!=typeof r&&"symbol"!=typeof r;break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":case"autoFocus":break;case"xlinkHref":if(null==r||"function"==typeof r||"boolean"==typeof r||"symbol"==typeof r){e.removeAttribute("xlink:href");break}n=tE(""+r),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",n);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":null!=r&&"function"!=typeof r&&"symbol"!=typeof r?e.setAttribute(n,""+r):e.removeAttribute(n);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":r&&"function"!=typeof r&&"symbol"!=typeof r?e.setAttribute(n,""):e.removeAttribute(n);break;case"capture":case"download":!0===r?e.setAttribute(n,""):!1!==r&&null!=r&&"function"!=typeof r&&"symbol"!=typeof r?e.setAttribute(n,r):e.removeAttribute(n);break;case"cols":case"rows":case"size":case"span":null!=r&&"function"!=typeof r&&"symbol"!=typeof r&&!isNaN(r)&&1<=r?e.setAttribute(n,r):e.removeAttribute(n);break;case"rowSpan":case"start":null==r||"function"==typeof r||"symbol"==typeof r||isNaN(r)?e.removeAttribute(n):e.setAttribute(n,r);break;case"popover":cJ("beforetoggle",e),cJ("toggle",e),ti(e,"popover",r);break;case"xlinkActuate":ts(e,"http://www.w3.org/1999/xlink","xlink:actuate",r);break;case"xlinkArcrole":ts(e,"http://www.w3.org/1999/xlink","xlink:arcrole",r);break;case"xlinkRole":ts(e,"http://www.w3.org/1999/xlink","xlink:role",r);break;case"xlinkShow":ts(e,"http://www.w3.org/1999/xlink","xlink:show",r);break;case"xlinkTitle":ts(e,"http://www.w3.org/1999/xlink","xlink:title",r);break;case"xlinkType":ts(e,"http://www.w3.org/1999/xlink","xlink:type",r);break;case"xmlBase":ts(e,"http://www.w3.org/XML/1998/namespace","xml:base",r);break;case"xmlLang":ts(e,"http://www.w3.org/XML/1998/namespace","xml:lang",r);break;case"xmlSpace":ts(e,"http://www.w3.org/XML/1998/namespace","xml:space",r);break;case"is":ti(e,"is",r);break;case"innerText":case"textContent":return;default:if(2<n.length&&("o"===n[0]||"O"===n[0])&&("n"===n[1]||"N"===n[1]))return;ti(e,n=tC.get(n)||n,r)}to=!0}function uo(e,t,n,r,o,a){switch(n){case"style":tS(e,r,a);return;case"dangerouslySetInnerHTML":if(null!=r){if("object"!=typeof r||!("__html"in r))throw Error(l(61));if(null!=(n=r.__html)){if(null!=o.children)throw Error(l(60));e.innerHTML=n}}break;case"children":if("string"==typeof r)t_(e,r);else{if("number"!=typeof r&&"bigint"!=typeof r)return;t_(e,""+r)}break;case"onScroll":null!=r&&cJ("scroll",e);return;case"onScrollEnd":null!=r&&cJ("scrollend",e);return;case"onClick":null!=r&&(e.onclick=tT);return;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":case"innerText":case"textContent":return;default:if(!e8.hasOwnProperty(n))e:{if("o"===n[0]&&"n"===n[1]&&(o=n.endsWith("Capture"),t=n.slice(2,o?n.length-7:void 0),"function"==typeof(a=null!=(a=e[eK]||null)?a[n]:null)&&e.removeEventListener(t,a,o),"function"==typeof r)){"function"!=typeof a&&null!==a&&(n in e?e[n]=null:e.hasAttribute(n)&&e.removeAttribute(n)),e.addEventListener(t,r,o);break e}to=!0,n in e?e[n]=r:!0===r?e.setAttribute(n,""):ti(e,n,r)}return}to=!0}function ua(e,t,n){switch(t){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":cJ("error",e),cJ("load",e);var r,o=!1,a=!1;for(r in n)if(n.hasOwnProperty(r)){var i=n[r];if(null!=i)switch(r){case"src":o=!0;break;case"srcSet":a=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(l(137,t));default:ur(e,t,r,i,n,null)}}a&&ur(e,t,"srcSet",n.srcSet,n,null),o&&ur(e,t,"src",n.src,n,null);return;case"input":cJ("invalid",e);var s=r=i=a=null,c=null,u=null;for(o in n)if(n.hasOwnProperty(o)){var d=n[o];if(null!=d)switch(o){case"name":a=d;break;case"type":i=d;break;case"checked":c=d;break;case"defaultChecked":u=d;break;case"value":r=d;break;case"defaultValue":s=d;break;case"children":case"dangerouslySetInnerHTML":if(null!=d)throw Error(l(137,t));break;default:ur(e,t,o,d,n,null)}}ty(e,r,s,c,u,i,a,!1);return;case"select":for(a in cJ("invalid",e),o=i=r=null,n)if(n.hasOwnProperty(a)&&null!=(s=n[a]))switch(a){case"value":r=s;break;case"defaultValue":i=s;break;case"multiple":o=s;default:ur(e,t,a,s,n,null)}t=r,n=i,e.multiple=!!o,null!=t?tb(e,!!o,t,!1):null!=n&&tb(e,!!o,n,!0);return;case"textarea":for(i in cJ("invalid",e),r=a=o=null,n)if(n.hasOwnProperty(i)&&null!=(s=n[i]))switch(i){case"value":o=s;break;case"defaultValue":a=s;break;case"children":r=s;break;case"dangerouslySetInnerHTML":if(null!=s)throw Error(l(91));break;default:ur(e,t,i,s,n,null)}tw(e,o,a,r);return;case"option":for(c in n)n.hasOwnProperty(c)&&null!=(o=n[c])&&("selected"===c?e.selected=o&&"function"!=typeof o&&"symbol"!=typeof o:ur(e,t,c,o,n,null));return;case"dialog":cJ("beforetoggle",e),cJ("toggle",e),cJ("cancel",e),cJ("close",e);break;case"iframe":case"object":cJ("load",e);break;case"video":case"audio":for(o=0;o<cX.length;o++)cJ(cX[o],e);break;case"image":cJ("error",e),cJ("load",e);break;case"details":cJ("toggle",e);break;case"embed":case"source":case"link":cJ("error",e),cJ("load",e);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(u in n)if(n.hasOwnProperty(u)&&null!=(o=n[u]))switch(u){case"children":case"dangerouslySetInnerHTML":throw Error(l(137,t));default:ur(e,t,u,o,n,null)}return;default:if(tO(t)){for(d in n)n.hasOwnProperty(d)&&void 0!==(o=n[d])&&uo(e,t,d,o,n,void 0);return}}for(s in n)n.hasOwnProperty(s)&&null!=(o=n[s])&&ur(e,t,s,o,n,null)}function ui(e){switch(e){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}var ul=null,us=null;function uc(e){return 9===e.nodeType?e:e.ownerDocument}function uu(e){switch(e){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function ud(e,t){if(0===e)switch(t){case"svg":return 1;case"math":return 2;default:return 0}return 1===e&&"foreignObject"===t?0:e}function uf(e,t){return"textarea"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"bigint"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var up=null,uh="function"==typeof setTimeout?setTimeout:void 0,um="function"==typeof clearTimeout?clearTimeout:void 0,ug="function"==typeof Promise?Promise:void 0,uy="function"==typeof queueMicrotask?queueMicrotask:void 0!==ug?function(e){return ug.resolve(null).then(e).catch(uv)}:uh;function uv(e){setTimeout(function(){throw e})}function ub(e){return"head"===e}function ux(e,t){var n=t,r=0;do{var o=n.nextSibling;if(e.removeChild(n),o&&8===o.nodeType)if("/$"===(n=o.data)||"/&"===n){if(0===r){e.removeChild(o),dG(t);return}r--}else if("$"===n||"$?"===n||"$~"===n||"$!"===n||"&"===n)r++;else if("html"===n)uG(e.ownerDocument.documentElement);else if("head"===n){uG(n=e.ownerDocument.head);for(var a=n.firstChild;a;){var i=a.nextSibling,l=a.nodeName;a[e0]||"SCRIPT"===l||"STYLE"===l||"LINK"===l&&"stylesheet"===a.rel.toLowerCase()||n.removeChild(a),a=i}}else"body"===n&&uG(e.ownerDocument.body);n=o}while(n);dG(t)}function uw(e,t){var n=e;e=0;do{var r=n.nextSibling;if(1===n.nodeType?t?(n._stashedDisplay=n.style.display,n.style.display="none"):(n.style.display=n._stashedDisplay||"",""===n.getAttribute("style")&&n.removeAttribute("style")):3===n.nodeType&&(t?(n._stashedText=n.nodeValue,n.nodeValue=""):n.nodeValue=n._stashedText||""),r&&8===r.nodeType)if("/$"===(n=r.data))if(0===e)break;else e--;else"$"!==n&&"$?"!==n&&"$~"!==n&&"$!"!==n||e++;n=r}while(n)}function u_(e,t,n){if(t=CSS.escape(t)!==t?"r-"+btoa(t).replace(/=/g,""):t,e.style.viewTransitionName=t,null!=n&&(e.style.viewTransitionClass=n),"inline"===(n=getComputedStyle(e)).display){if(1===(t=e.getClientRects()).length)var r=1;else for(var o=r=0;o<t.length;o++){var a=t[o];0<a.width&&0<a.height&&r++}1===r&&((e=e.style).display=1===t.length?"inline-block":"block",e.marginTop="-"+n.paddingTop,e.marginBottom="-"+n.paddingBottom)}}function uj(e,t){e=e.style;var n=null!=(t=t.style)?t.hasOwnProperty("viewTransitionName")?t.viewTransitionName:t.hasOwnProperty("view-transition-name")?t["view-transition-name"]:null:null;e.viewTransitionName=null==n||"boolean"==typeof n?"":(""+n).trim(),n=null!=t?t.hasOwnProperty("viewTransitionClass")?t.viewTransitionClass:t.hasOwnProperty("view-transition-class")?t["view-transition-class"]:null:null,e.viewTransitionClass=null==n||"boolean"==typeof n?"":(""+n).trim(),"inline-block"===e.display&&(null==t?e.display=e.margin="":(n=t.display,e.display=null==n||"boolean"==typeof n?"":n,null!=(n=t.margin)?e.margin=n:(n=t.hasOwnProperty("marginTop")?t.marginTop:t["margin-top"],e.marginTop=null==n||"boolean"==typeof n?"":n,t=t.hasOwnProperty("marginBottom")?t.marginBottom:t["margin-bottom"],e.marginBottom=null==t||"boolean"==typeof t?"":t)))}function uk(e,t,n){return n=n.ownerDocument.defaultView,{rect:e,abs:"absolute"===t.position||"fixed"===t.position,clip:"none"!==t.clipPath||"visible"!==t.overflow||"none"!==t.filter||"none"!==t.mask||"none"!==t.mask||"0px"!==t.borderRadius,view:0<=e.bottom&&0<=e.right&&e.top<=n.innerHeight&&e.left<=n.innerWidth}}function uS(e){return uk(e.getBoundingClientRect(),getComputedStyle(e),e)}function uO(e){var t=e.getBoundingClientRect();return uk(t=new DOMRect(t.x+2e4,t.y+2e4,t.width,t.height),getComputedStyle(e),e)}function uC(e){this.addEventListener("load",e),this.addEventListener("error",e)}function uP(e,t){this._scope=document.documentElement,this._selector="::view-transition-"+e+"("+t+")"}function uE(e){return{name:e,group:new uP("group",e),imagePair:new uP("image-pair",e),old:new uP("old",e),new:new uP("new",e)}}function uT(e){this._fragmentFiber=e,this._observers=this._eventListeners=null}function uN(e,t,n,r){return h(e).addEventListener(t,n,r),!1}function uI(e,t,n,r){return h(e).removeEventListener(t,n,r),!1}function uL(e){return null==e?"0":"boolean"==typeof e?"c="+(e?"1":"0"):"c="+(e.capture?"1":"0")+"&o="+(e.once?"1":"0")+"&p="+(e.passive?"1":"0")}function uA(e,t,n,r){for(var o=0;o<e.length;o++){var a=e[o];if(a.type===t&&a.listener===n&&uL(a.optionsOrUseCapture)===uL(r))return o}return -1}function uz(e,t){var n=e=h(e),r=t;function o(){a=!0}var a=!1;try{n.addEventListener("focus",o),(n.focus||HTMLElement.prototype.focus).call(n,r)}finally{n.removeEventListener("focus",o)}return a}function uR(e,t){return t.push(e),!1}function uD(e){return(e=h(e))===e.ownerDocument.activeElement&&(e.blur(),!0)}function uM(e,t){return e=h(e),t.observe(e),!1}function uZ(e,t){return e=h(e),t.unobserve(e),!1}function uU(e,t){return e=h(e),t.push.apply(t,e.getClientRects()),!1}function uF(e,t){var n=t._eventListeners;if(null!==n)for(var r=0;r<n.length;r++){var o=n[r];e.addEventListener(o.type,o.listener,o.optionsOrUseCapture)}null!==t._observers&&t._observers.forEach(function(t){t.observe(e)})}function uH(e){var t=e.firstChild;for(t&&10===t.nodeType&&(t=t.nextSibling);t;){var n=t;switch(t=t.nextSibling,n.nodeName){case"HTML":case"HEAD":case"BODY":uH(n),e1(n);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if("stylesheet"===n.rel.toLowerCase())continue}e.removeChild(n)}}function uV(e,t){for(;8!==e.nodeType;)if((1!==e.nodeType||"INPUT"!==e.nodeName||"hidden"!==e.type)&&!t||null===(e=uq(e.nextSibling)))return null;return e}function uB(e){return"$?"===e.data||"$~"===e.data}function u$(e){return"$!"===e.data||"$?"===e.data&&"loading"!==e.ownerDocument.readyState}function uq(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break;if(8===t){if("$"===(t=e.data)||"$!"===t||"$?"===t||"$~"===t||"&"===t||"F!"===t||"F"===t)break;if("/$"===t||"/&"===t)return null}}return e}uP.prototype.animate=function(e,t){return(t="number"==typeof t?{duration:t}:_({},t)).pseudoElement=this._selector,this._scope.animate(e,t)},uP.prototype.getAnimations=function(){for(var e=this._scope,t=this._selector,n=e.getAnimations({subtree:!0}),r=[],o=0;o<n.length;o++){var a=n[o].effect;null!==a&&a.target===e&&a.pseudoElement===t&&r.push(n[o])}return r},uP.prototype.getComputedStyle=function(){return getComputedStyle(this._scope,this._selector)},uT.prototype.addEventListener=function(e,t,n){null===this._eventListeners&&(this._eventListeners=[]);var r=this._eventListeners;-1===uA(r,e,t,n)&&(r.push({type:e,listener:t,optionsOrUseCapture:n}),f(this._fragmentFiber.child,!1,uN,e,t,n)),this._eventListeners=r},uT.prototype.removeEventListener=function(e,t,n){var r=this._eventListeners;null!=r&&0<r.length&&(f(this._fragmentFiber.child,!1,uI,e,t,n),e=uA(r,e,t,n),null!==this._eventListeners&&this._eventListeners.splice(e,1))},uT.prototype.dispatchEvent=function(e){var t=p(this._fragmentFiber);if(null===t)return!0;t=h(t);var n=this._eventListeners;if(null!==n&&0<n.length||!e.bubbles){var r=document.createTextNode("");if(n)for(var o=0;o<n.length;o++){var a=n[o];r.addEventListener(a.type,a.listener,a.optionsOrUseCapture)}if(t.appendChild(r),e=r.dispatchEvent(e),n)for(o=0;o<n.length;o++)a=n[o],r.removeEventListener(a.type,a.listener,a.optionsOrUseCapture);return t.removeChild(r),e}return t.dispatchEvent(e)},uT.prototype.focus=function(e){f(this._fragmentFiber.child,!0,uz,e,void 0,void 0)},uT.prototype.focusLast=function(e){var t=[];f(this._fragmentFiber.child,!0,uR,t,void 0,void 0);for(var n=t.length-1;0<=n&&!uz(t[n],e);n--);},uT.prototype.blur=function(){f(this._fragmentFiber.child,!1,uD,void 0,void 0,void 0)},uT.prototype.observeUsing=function(e){null===this._observers&&(this._observers=new Set),this._observers.add(e),f(this._fragmentFiber.child,!1,uM,e,void 0,void 0)},uT.prototype.unobserveUsing=function(e){var t=this._observers;null!==t&&t.has(e)&&(t.delete(e),f(this._fragmentFiber.child,!1,uZ,e,void 0,void 0))},uT.prototype.getClientRects=function(){var e=[];return f(this._fragmentFiber.child,!1,uU,e,void 0,void 0),e},uT.prototype.getRootNode=function(e){var t=p(this._fragmentFiber);return null===t?this:h(t).getRootNode(e)},uT.prototype.compareDocumentPosition=function(e){var t=p(this._fragmentFiber);if(null===t)return Node.DOCUMENT_POSITION_DISCONNECTED;var n=[];f(this._fragmentFiber.child,!1,uR,n,void 0,void 0);var r=h(t);if(0===n.length){n=this._fragmentFiber;var o=r.compareDocumentPosition(e);return t=o,r===e?t=Node.DOCUMENT_POSITION_CONTAINS:o&Node.DOCUMENT_POSITION_CONTAINED_BY&&(f(n.sibling,!1,y),n=m,m=null,t=null===n?Node.DOCUMENT_POSITION_PRECEDING:0===(e=h(n).compareDocumentPosition(e))||e&Node.DOCUMENT_POSITION_FOLLOWING?Node.DOCUMENT_POSITION_FOLLOWING:Node.DOCUMENT_POSITION_PRECEDING),t|Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC}t=h(n[0]),o=h(n[n.length-1]);for(var a=h(n[0]),i=!1,l=this._fragmentFiber.return;null!==l&&(4===l.tag&&(i=!0),3!==l.tag&&5!==l.tag);)l=l.return;if(null==(a=i?a.parentElement:r))return Node.DOCUMENT_POSITION_DISCONNECTED;r=a.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY,a=a.compareDocumentPosition(o)&Node.DOCUMENT_POSITION_CONTAINED_BY,i=t.compareDocumentPosition(e);var s=o.compareDocumentPosition(e);return l=i&Node.DOCUMENT_POSITION_CONTAINED_BY||s&Node.DOCUMENT_POSITION_CONTAINED_BY,s=r&&a&&i&Node.DOCUMENT_POSITION_FOLLOWING&&s&Node.DOCUMENT_POSITION_PRECEDING,(t=r&&t===e||a&&o===e||l||s?Node.DOCUMENT_POSITION_CONTAINED_BY:(r||t!==e)&&(a||o!==e)?i:Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC)&Node.DOCUMENT_POSITION_DISCONNECTED||t&Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC||function(e,t,n,r,o){var a=e2(o);if(e&Node.DOCUMENT_POSITION_CONTAINED_BY){if(n=!!a)e:{for(;null!==a;){if(7===a.tag&&(a===t||a.alternate===t)){n=!0;break e}a=a.return}n=!1}return n}if(e&Node.DOCUMENT_POSITION_CONTAINS){if(null===a)return a=o.ownerDocument,o===a||o===a.body;e:{for(a=t,t=p(t);null!==a;){if((5===a.tag||3===a.tag)&&(a===t||a.alternate===t)){a=!0;break e}a=a.return}a=!1}return a}return e&Node.DOCUMENT_POSITION_PRECEDING?((t=!!a)&&!(t=a===n)&&(null===(t=w(n,a,x))?t=!1:(f(t,!0,v,a,n),a=m,m=null,t=null!==a)),t):!!(e&Node.DOCUMENT_POSITION_FOLLOWING)&&((t=!!a)&&!(t=a===r)&&(null===(t=w(r,a,x))?t=!1:(f(t,!0,b,a,r),a=m,g=m=null,t=null!==a)),t)}(t,this._fragmentFiber,n[0],n[n.length-1],e)?t:Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC},uT.prototype.scrollIntoView=function(e){if("object"==typeof e)throw Error(l(566));var t=[];f(this._fragmentFiber.child,!1,uR,t,void 0,void 0);var n=!1!==e;if(0===t.length){t=this._fragmentFiber;var r=[null,null],o=p(t);null!==o&&function e(t,n,r){for(var o=3<arguments.length&&void 0!==arguments[3]&&arguments[3];null!==r;){if(r===n)if(o=!0,!r.sibling)return!0;else r=r.sibling;if(5===r.tag){if(o)return t[1]=r,!0;t[0]=r}else if((22!==r.tag||null===r.memoizedState)&&e(t,n,r.child,o))return!0;r=r.sibling}return!1}(r,t,o.child),null!==(n=n?r[1]||r[0]||p(this._fragmentFiber):r[0]||r[1])&&h(n).scrollIntoView(e)}else for(r=n?t.length-1:0;r!==(n?-1:t.length);)h(t[r]).scrollIntoView(e),r+=n?-1:1};var uW=null;function uK(e){e=e.nextSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n||"/&"===n){if(0===t)return uq(e.nextSibling);t--}else"$"!==n&&"$!"!==n&&"$?"!==n&&"$~"!==n&&"&"!==n||t++}e=e.nextSibling}return null}function uY(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n||"$~"===n||"&"===n){if(0===t)return e;t--}else"/$"!==n&&"/&"!==n||t++}e=e.previousSibling}return null}function uX(e,t,n){switch(t=uc(n),e){case"html":if(!(e=t.documentElement))throw Error(l(452));return e;case"head":if(!(e=t.head))throw Error(l(453));return e;case"body":if(!(e=t.body))throw Error(l(454));return e;default:throw Error(l(451))}}function uG(e){for(var t=e.attributes;t.length;)e.removeAttributeNode(t[0]);e1(e)}var uQ=new Map,uJ=new Set;function u0(e){return"function"==typeof e.getRootNode?e.getRootNode():9===e.nodeType?e:e.ownerDocument}var u1=$.d;$.d={f:function(){var e=u1.f(),t=cn();return e||t},r:function(e){var t=e3(e);null!==t&&5===t.tag&&"form"===t.type?ip(t):u1.r(e)},D:function(e){u1.D(e),u3("dns-prefetch",e,null)},C:function(e,t){u1.C(e,t),u3("preconnect",e,t)},L:function(e,t,n){if(u1.L(e,t,n),u2&&e&&t){var r='link[rel="preload"][as="'+tm(t)+'"]';"image"===t&&n&&n.imageSrcSet?(r+='[imagesrcset="'+tm(n.imageSrcSet)+'"]',"string"==typeof n.imageSizes&&(r+='[imagesizes="'+tm(n.imageSizes)+'"]')):r+='[href="'+tm(e)+'"]';var o=r;switch(t){case"style":o=u5(e);break;case"script":o=u8(e)}uQ.has(o)||(e=_({rel:"preload",href:"image"===t&&n&&n.imageSrcSet?void 0:e,as:t},n),uQ.set(o,e),null!==u2.querySelector(r)||"style"===t&&u2.querySelector(u6(o))||"script"===t&&u2.querySelector(u7(o))||(ua(t=u2.createElement("link"),"link",e),e6(t),u2.head.appendChild(t)))}},m:function(e,t){if(u1.m(e,t),u2&&e){var n=t&&"string"==typeof t.as?t.as:"script",r='link[rel="modulepreload"][as="'+tm(n)+'"][href="'+tm(e)+'"]',o=r;switch(n){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":o=u8(e)}if(!uQ.has(o)&&(e=_({rel:"modulepreload",href:e},t),uQ.set(o,e),null===u2.querySelector(r))){switch(n){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(u2.querySelector(u7(o)))return}ua(n=u2.createElement("link"),"link",e),e6(n),u2.head.appendChild(n)}}},X:function(e,t){if(u1.X(e,t),u2&&e){var n=e5(u2).hoistableScripts,r=u8(e),o=n.get(r);o||((o=u2.querySelector(u7(r)))||(e=_({src:e,async:!0},t),(t=uQ.get(r))&&dr(e,t),e6(o=u2.createElement("script")),ua(o,"link",e),u2.head.appendChild(o)),o={type:"script",instance:o,count:1,state:null},n.set(r,o))}},S:function(e,t,n){if(u1.S(e,t,n),u2&&e){var r=e5(u2).hoistableStyles,o=u5(e);t=t||"default";var a=r.get(o);if(!a){var i={loading:0,preload:null};if(a=u2.querySelector(u6(o)))i.loading=5;else{e=_({rel:"stylesheet",href:e,"data-precedence":t},n),(n=uQ.get(o))&&dn(e,n);var l=a=u2.createElement("link");e6(l),ua(l,"link",e),l._p=new Promise(function(e,t){l.onload=e,l.onerror=t}),l.addEventListener("load",function(){i.loading|=1}),l.addEventListener("error",function(){i.loading|=2}),i.loading|=4,dt(a,t,u2)}a={type:"stylesheet",instance:a,count:1,state:i},r.set(o,a)}}},M:function(e,t){if(u1.M(e,t),u2&&e){var n=e5(u2).hoistableScripts,r=u8(e),o=n.get(r);o||((o=u2.querySelector(u7(r)))||(e=_({src:e,async:!0,type:"module"},t),(t=uQ.get(r))&&dr(e,t),e6(o=u2.createElement("script")),ua(o,"link",e),u2.head.appendChild(o)),o={type:"script",instance:o,count:1,state:null},n.set(r,o))}}};var u2="undefined"==typeof document?null:document;function u3(e,t,n){if(u2&&"string"==typeof t&&t){var r=tm(t);r='link[rel="'+e+'"][href="'+r+'"]',"string"==typeof n&&(r+='[crossorigin="'+n+'"]'),uJ.has(r)||(uJ.add(r),e={rel:e,crossOrigin:n,href:t},null===u2.querySelector(r)&&(ua(t=u2.createElement("link"),"link",e),e6(t),u2.head.appendChild(t)))}}function u4(e,t,n,r){var o=(o=ee.current)?u0(o):null;if(!o)throw Error(l(446));switch(e){case"meta":case"title":return null;case"style":return"string"==typeof n.precedence&&"string"==typeof n.href?(t=u5(n.href),(r=(n=e5(o).hoistableStyles).get(t))||(r={type:"style",instance:null,count:0,state:null},n.set(t,r)),r):{type:"void",instance:null,count:0,state:null};case"link":if("stylesheet"===n.rel&&"string"==typeof n.href&&"string"==typeof n.precedence){e=u5(n.href);var a,i,s,c,u=e5(o).hoistableStyles,d=u.get(e);if(d||(o=o.ownerDocument||o,d={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},u.set(e,d),(u=o.querySelector(u6(e)))&&!u._p&&(d.instance=u,d.state.loading=5),uQ.has(e)||(n={rel:"preload",as:"style",href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy},uQ.set(e,n),u||(a=o,i=e,s=n,c=d.state,a.querySelector('link[rel="preload"][as="style"]['+i+"]")?c.loading=1:(c.preload=i=a.createElement("link"),i.addEventListener("load",function(){return c.loading|=1}),i.addEventListener("error",function(){return c.loading|=2}),ua(i,"link",s),e6(i),a.head.appendChild(i))))),t&&null===r)throw Error(l(528,""));return d}if(t&&null!==r)throw Error(l(529,""));return null;case"script":return t=n.async,"string"==typeof(n=n.src)&&t&&"function"!=typeof t&&"symbol"!=typeof t?(t=u8(n),(r=(n=e5(o).hoistableScripts).get(t))||(r={type:"script",instance:null,count:0,state:null},n.set(t,r)),r):{type:"void",instance:null,count:0,state:null};default:throw Error(l(444,e))}}function u5(e){return'href="'+tm(e)+'"'}function u6(e){return'link[rel="stylesheet"]['+e+"]"}function u9(e){return _({},e,{"data-precedence":e.precedence,precedence:null})}function u8(e){return'[src="'+tm(e)+'"]'}function u7(e){return"script[async]"+e}function de(e,t,n){if(t.count++,null===t.instance)switch(t.type){case"style":var r=e.querySelector('style[data-href~="'+tm(n.href)+'"]');if(r)return t.instance=r,e6(r),r;var o=_({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return e6(r=(e.ownerDocument||e).createElement("style")),ua(r,"style",o),dt(r,n.precedence,e),t.instance=r;case"stylesheet":o=u5(n.href);var a=e.querySelector(u6(o));if(a)return t.state.loading|=4,t.instance=a,e6(a),a;r=u9(n),(o=uQ.get(o))&&dn(r,o),e6(a=(e.ownerDocument||e).createElement("link"));var i=a;return i._p=new Promise(function(e,t){i.onload=e,i.onerror=t}),ua(a,"link",r),t.state.loading|=4,dt(a,n.precedence,e),t.instance=a;case"script":if(a=u8(n.src),o=e.querySelector(u7(a)))return t.instance=o,e6(o),o;return r=n,(o=uQ.get(a))&&dr(r=_({},n),o),e6(o=(e=e.ownerDocument||e).createElement("script")),ua(o,"link",r),e.head.appendChild(o),t.instance=o;case"void":return null;default:throw Error(l(443,t.type))}return"stylesheet"===t.type&&0==(4&t.state.loading)&&(r=t.instance,t.state.loading|=4,dt(r,n.precedence,e)),t.instance}function dt(e,t,n){for(var r=n.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),o=r.length?r[r.length-1]:null,a=o,i=0;i<r.length;i++){var l=r[i];if(l.dataset.precedence===t)a=l;else if(a!==o)break}a?a.parentNode.insertBefore(e,a.nextSibling):(t=9===n.nodeType?n.head:n).insertBefore(e,t.firstChild)}function dn(e,t){null==e.crossOrigin&&(e.crossOrigin=t.crossOrigin),null==e.referrerPolicy&&(e.referrerPolicy=t.referrerPolicy),null==e.title&&(e.title=t.title)}function dr(e,t){null==e.crossOrigin&&(e.crossOrigin=t.crossOrigin),null==e.referrerPolicy&&(e.referrerPolicy=t.referrerPolicy),null==e.integrity&&(e.integrity=t.integrity)}var da=null;function di(e,t,n){if(null===da){var r=new Map,o=da=new Map;o.set(n,r)}else(r=(o=da).get(n))||(r=new Map,o.set(n,r));if(r.has(e))return r;for(r.set(e,null),n=n.getElementsByTagName(e),o=0;o<n.length;o++){var a=n[o];if(!(a[e0]||a[eW]||"link"===e&&"stylesheet"===a.getAttribute("rel"))&&"http://www.w3.org/2000/svg"!==a.namespaceURI){var i=a.getAttribute(t)||"";i=e+i;var l=r.get(i);l?l.push(a):r.set(i,[a])}}return r}function dl(e,t,n){(e=e.ownerDocument||e).head.insertBefore(n,"title"===t?e.querySelector("head > title"):null)}function ds(e,t){return"img"===e&&null!=t.src&&""!==t.src&&null==t.onLoad&&"lazy"!==t.loading}function dc(e){return"stylesheet"!==e.type||0!=(3&e.state.loading)}function du(e){return(e.width||100)*(e.height||100)*("number"==typeof devicePixelRatio?devicePixelRatio:1)*.25}function dd(e,t){"function"==typeof t.decode&&(e.imgCount++,t.complete||(e.imgBytes+=du(t),e.suspenseyImages.push(t)),e=dm.bind(e),t.decode().then(e,e))}var df=0;function dp(e){if(0===e.count&&(0===e.imgCount||!e.waitingForImages)){if(e.stylesheets)dy(e,e.stylesheets);else if(e.unsuspend){var t=e.unsuspend;e.unsuspend=null,t()}}}function dh(){this.count--,dp(this)}function dm(){this.imgCount--,dp(this)}var dg=null;function dy(e,t){e.stylesheets=null,null!==e.unsuspend&&(e.count++,dg=new Map,t.forEach(dv,e),dg=null,dh.call(e))}function dv(e,t){if(!(4&t.state.loading)){var n=dg.get(e);if(n)var r=n.get(null);else{n=new Map,dg.set(e,n);for(var o=e.querySelectorAll("link[data-precedence],style[data-precedence]"),a=0;a<o.length;a++){var i=o[a];("LINK"===i.nodeName||"not all"!==i.getAttribute("media"))&&(n.set(i.dataset.precedence,i),r=i)}r&&n.set(null,r)}i=(o=t.instance).getAttribute("data-precedence"),(a=n.get(i)||r)===r&&n.set(null,o),n.set(i,o),this.count++,r=dh.bind(this),o.addEventListener("load",r),o.addEventListener("error",r),a?a.parentNode.insertBefore(o,a.nextSibling):(e=9===e.nodeType?e.head:e).insertBefore(o,e.firstChild),t.state.loading|=4}}var db={$$typeof:T,Provider:null,Consumer:null,_currentValue:q,_currentValue2:q,_threadCount:0};function dx(e,t,n,r,o,a,i,l,s){this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=eD(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=eD(0),this.hiddenUpdates=eD(null),this.identifierPrefix=r,this.onUncaughtError=o,this.onCaughtError=a,this.onRecoverableError=i,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=s,this.transitionTypes=null,this.incompleteTransitions=new Map}function dw(e,t,n,r,o,a){o=o?rg:rg,null===r.context?r.context=o:r.pendingContext=o,(r=oB(t)).payload={element:n},null!==(a=void 0===a?null:a)&&(r.callback=a),null!==(n=o$(e,r,t))&&(s8(n,e,t),oq(n,e,t))}function d_(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function dj(e,t){d_(e,t),(e=e.alternate)&&d_(e,t)}function dk(e){if(13===e.tag||31===e.tag){var t=rp(e,0x4000000);null!==t&&s8(t,e,0x4000000),dj(e,0x4000000)}}function dS(e){if(13===e.tag||31===e.tag){var t=s5(),n=rp(e,t=eH(t));null!==n&&s8(n,e,t),dj(e,t)}}var dO=!0;function dC(e,t,n,r){var o=B.T;B.T=null;var a=$.p;try{$.p=2,dE(e,t,n,r)}finally{$.p=a,B.T=o}}function dP(e,t,n,r){var o=B.T;B.T=null;var a=$.p;try{$.p=8,dE(e,t,n,r)}finally{$.p=a,B.T=o}}function dE(e,t,n,r){if(dO){var o=dT(r);if(null===o)c4(e,t,r,dN,n),dH(e,r);else if(function(e,t,n,r,o){switch(t){case"focusin":return dz=dV(dz,e,t,n,r,o),!0;case"dragenter":return dR=dV(dR,e,t,n,r,o),!0;case"mouseover":return dD=dV(dD,e,t,n,r,o),!0;case"pointerover":var a=o.pointerId;return dM.set(a,dV(dM.get(a)||null,e,t,n,r,o)),!0;case"gotpointercapture":return a=o.pointerId,dZ.set(a,dV(dZ.get(a)||null,e,t,n,r,o)),!0}return!1}(o,e,t,n,r))r.stopPropagation();else if(dH(e,r),4&t&&-1<dF.indexOf(e)){for(;null!==o;){var a=e3(o);if(null!==a)switch(a.tag){case 3:if((a=a.stateNode).current.memoizedState.isDehydrated){var i=eL(a.pendingLanes);if(0!==i){var l=a;for(l.pendingLanes|=2,l.entangledLanes|=2;i;){var s=1<<31-eC(i);l.entanglements[1]|=s,i&=~s}cM(a),0==(6&sj)&&(sB=em()+500,cZ(0,!1))}}break;case 31:case 13:null!==(l=rp(a,2))&&s8(l,a,2),cn(),dj(a,2)}if(null===(a=dT(r))&&c4(e,t,r,dN,n),a===o)break;o=a}null!==o&&r.stopPropagation()}else c4(e,t,r,null,n)}}function dT(e){return dI(e=tI(e))}var dN=null;function dI(e){if(dN=null,null!==(e=e2(e))){var t=s(e);if(null===t)e=null;else{var n=t.tag;if(13===n){if(null!==(e=c(t)))return e;e=null}else if(31===n){if(null!==(e=u(t)))return e;e=null}else if(3===n){if(t.stateNode.current.memoizedState.isDehydrated)return 3===t.tag?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null)}}return dN=e,null}function dL(e){switch(e){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 2;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"resize":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(eg()){case ey:return 2;case ev:return 8;case eb:case ex:return 32;case ew:return 0x10000000;default:return 32}default:return 32}}var dA=!1,dz=null,dR=null,dD=null,dM=new Map,dZ=new Map,dU=[],dF="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" ");function dH(e,t){switch(e){case"focusin":case"focusout":dz=null;break;case"dragenter":case"dragleave":dR=null;break;case"mouseover":case"mouseout":dD=null;break;case"pointerover":case"pointerout":dM.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":dZ.delete(t.pointerId)}}function dV(e,t,n,r,o,a){return null===e||e.nativeEvent!==a?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:a,targetContainers:[o]},null!==t&&null!==(t=e3(t))&&dk(t)):(e.eventSystemFlags|=r,t=e.targetContainers,null!==o&&-1===t.indexOf(o)&&t.push(o)),e}function dB(e){var t=e2(e.target);if(null!==t){var n=s(t);if(null!==n){if(13===(t=n.tag)){if(null!==(t=c(n))){e.blockedOn=t,e$(e.priority,function(){dS(n)});return}}else if(31===t){if(null!==(t=u(n))){e.blockedOn=t,e$(e.priority,function(){dS(n)});return}}else if(3===t&&n.stateNode.current.memoizedState.isDehydrated){e.blockedOn=3===n.tag?n.stateNode.containerInfo:null;return}}}e.blockedOn=null}function d$(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=dT(e.nativeEvent);if(null!==n)return null!==(t=e3(n))&&dk(t),e.blockedOn=n,!1;var r=new(n=e.nativeEvent).constructor(n.type,n);tN=r,n.target.dispatchEvent(r),tN=null,t.shift()}return!0}function dq(e,t,n){d$(e)&&n.delete(t)}function dW(){dA=!1,null!==dz&&d$(dz)&&(dz=null),null!==dR&&d$(dR)&&(dR=null),null!==dD&&d$(dD)&&(dD=null),dM.forEach(dq),dZ.forEach(dq)}function dK(e,t){e.blockedOn===t&&(e.blockedOn=null,dA||(dA=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,dW)))}var dY=null;function dX(e){dY!==e&&(dY=e,o.unstable_scheduleCallback(o.unstable_NormalPriority,function(){dY===e&&(dY=null);for(var t=0;t<e.length;t+=3){var n=e[t],r=e[t+1],o=e[t+2];if("function"!=typeof r)if(null===dI(r||n))continue;else break;var a=e3(n);null!==a&&(e.splice(t,3),t-=3,iu(a,{pending:!0,data:o,method:n.method,action:r},r,o))}}))}function dG(e){function t(t){return dK(t,e)}null!==dz&&dK(dz,e),null!==dR&&dK(dR,e),null!==dD&&dK(dD,e),dM.forEach(t),dZ.forEach(t);for(var n=0;n<dU.length;n++){var r=dU[n];r.blockedOn===e&&(r.blockedOn=null)}for(;0<dU.length&&null===(n=dU[0]).blockedOn;)dB(n),null===n.blockedOn&&dU.shift();if(null!=(n=(e.ownerDocument||e).$$reactFormReplay))for(r=0;r<n.length;r+=3){var o=n[r],a=n[r+1],i=o[eK]||null;if("function"==typeof a)i||dX(n);else if(i){var l=null;if(a&&a.hasAttribute("formAction")){if(o=a,i=a[eK]||null)l=i.formAction;else if(null!==dI(o))continue}else l=i.action;"function"==typeof l?n[r+1]=l:(n.splice(r,3),r-=3),dX(n)}}}function dQ(){function e(e){e.canIntercept&&"react-transition"===e.info&&e.intercept({handler:function(){return new Promise(function(e){return o=e})},focusReset:"manual",scroll:"manual"})}function t(){null!==o&&(o(),o=null),r||setTimeout(n,20)}function n(){if(!r&&!navigation.transition){var e=navigation.currentEntry;e&&null!=e.url&&navigation.navigate(e.url,{state:e.getState(),info:"react-transition",history:"replace"})}}if("object"==typeof navigation){var r=!1,o=null;return navigation.addEventListener("navigate",e),navigation.addEventListener("navigatesuccess",t),navigation.addEventListener("navigateerror",t),setTimeout(n,100),function(){r=!0,navigation.removeEventListener("navigate",e),navigation.removeEventListener("navigatesuccess",t),navigation.removeEventListener("navigateerror",t),null!==o&&(o(),o=null)}}}function dJ(e){this._internalRoot=e}function d0(e){this._internalRoot=e}d0.prototype.render=dJ.prototype.render=function(e){var t=this._internalRoot;if(null===t)throw Error(l(409));dw(t.current,s5(),e,t,null,null)},d0.prototype.unmount=dJ.prototype.unmount=function(){var e=this._internalRoot;if(null!==e){this._internalRoot=null;var t=e.containerInfo;dw(e.current,2,null,e,null,null),cn(),t[eY]=null}},d0.prototype.unstable_scheduleHydration=function(e){if(e){var t=eB();e={blockedOn:null,target:e,priority:t};for(var n=0;n<dU.length&&0!==t&&t<dU[n].priority;n++);dU.splice(n,0,e),0===n&&dB(e)}};var d1=a.version;if("19.3.0-canary-f93b9fd4-20251217"!==d1)throw Error(l(527,d1,"19.3.0-canary-f93b9fd4-20251217"));if($.findDOMNode=function(e){var t=e._reactInternals;if(void 0===t){if("function"==typeof e.render)throw Error(l(188));throw Error(l(268,e=Object.keys(e).join(",")))}return null===(e=null!==(e=function(e){var t=e.alternate;if(!t){if(null===(t=s(e)))throw Error(l(188));return t!==e?null:e}for(var n=e,r=t;;){var o=n.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(r=o.return)){n=r;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===n)return d(o),e;if(a===r)return d(o),t;a=a.sibling}throw Error(l(188))}if(n.return!==r.return)n=o,r=a;else{for(var i=!1,c=o.child;c;){if(c===n){i=!0,n=o,r=a;break}if(c===r){i=!0,r=o,n=a;break}c=c.sibling}if(!i){for(c=a.child;c;){if(c===n){i=!0,n=a,r=o;break}if(c===r){i=!0,r=a,n=o;break}c=c.sibling}if(!i)throw Error(l(189))}}if(n.alternate!==r)throw Error(l(190))}if(3!==n.tag)throw Error(l(188));return n.stateNode.current===n?e:t}(t))?function e(t){var n=t.tag;if(5===n||26===n||27===n||6===n)return t;for(t=t.child;null!==t;){if(null!==(n=e(t)))return n;t=t.sibling}return null}(e):null)?null:e.stateNode},"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var d2=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!d2.isDisabled&&d2.supportsFiber)try{ek=d2.inject({bundleType:0,version:"19.3.0-canary-f93b9fd4-20251217",rendererPackageName:"react-dom",currentDispatcherRef:B,reconcilerVersion:"19.3.0-canary-f93b9fd4-20251217"}),eS=d2}catch(e){}}t.createRoot=function(e,t){if(!(n=e)||1!==n.nodeType&&9!==n.nodeType&&11!==n.nodeType)throw Error(l(299));var n,r,o,a,i,s,c,u,d=!1,f="",p=iA,h=iz,m=iR;return null!=t&&(!0===t.unstable_strictMode&&(d=!0),void 0!==t.identifierPrefix&&(f=t.identifierPrefix),void 0!==t.onUncaughtError&&(p=t.onUncaughtError),void 0!==t.onCaughtError&&(h=t.onCaughtError),void 0!==t.onRecoverableError&&(m=t.onRecoverableError)),r=e,o=1,a=!1,i=null,s=0,c=d,u=null,r=new dx(r,o,a,f,p,h,m,dQ,null),o=1,!0===c&&(o|=24),c=rv(3,null,null,o),r.current=c,c.stateNode=r,o=oc(),o.refCount++,r.pooledCache=o,o.refCount++,c.memoizedState={element:null,isDehydrated:a,cache:o},oH(c),t=r,e[eY]=t.current,c2(e),new dJ(t)}},"./dist/compiled/react-dom/cjs/react-dom.production.js"(e,t,n){"use strict";var r=n("./dist/compiled/react/index.js");function o(e){var t="https://react.dev/errors/"+e;if(1<arguments.length){t+="?args[]="+encodeURIComponent(arguments[1]);for(var n=2;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n])}return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function a(){}var i={d:{f:a,r:function(){throw Error(o(522))},D:a,C:a,L:a,m:a,X:a,S:a,M:a},p:0,findDOMNode:null},l=Symbol.for("react.portal"),s=Symbol.for("react.optimistic_key"),c=r.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;function u(e,t){return"font"===e?"":"string"==typeof t?"use-credentials"===t?t:"":void 0}t.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=i,t.createPortal=function(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!t||1!==t.nodeType&&9!==t.nodeType&&11!==t.nodeType)throw Error(o(299));return function(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:l,key:null==r?null:r===s?s:""+r,children:e,containerInfo:t,implementation:n}}(e,t,null,n)},t.flushSync=function(e){var t=c.T,n=i.p;try{if(c.T=null,i.p=2,e)return e()}finally{c.T=t,i.p=n,i.d.f()}},t.preconnect=function(e,t){"string"==typeof e&&(t=t?"string"==typeof(t=t.crossOrigin)?"use-credentials"===t?t:"":void 0:null,i.d.C(e,t))},t.prefetchDNS=function(e){"string"==typeof e&&i.d.D(e)},t.preinit=function(e,t){if("string"==typeof e&&t&&"string"==typeof t.as){var n=t.as,r=u(n,t.crossOrigin),o="string"==typeof t.integrity?t.integrity:void 0,a="string"==typeof t.fetchPriority?t.fetchPriority:void 0;"style"===n?i.d.S(e,"string"==typeof t.precedence?t.precedence:void 0,{crossOrigin:r,integrity:o,fetchPriority:a}):"script"===n&&i.d.X(e,{crossOrigin:r,integrity:o,fetchPriority:a,nonce:"string"==typeof t.nonce?t.nonce:void 0})}},t.preinitModule=function(e,t){if("string"==typeof e)if("object"==typeof t&&null!==t){if(null==t.as||"script"===t.as){var n=u(t.as,t.crossOrigin);i.d.M(e,{crossOrigin:n,integrity:"string"==typeof t.integrity?t.integrity:void 0,nonce:"string"==typeof t.nonce?t.nonce:void 0})}}else null==t&&i.d.M(e)},t.preload=function(e,t){if("string"==typeof e&&"object"==typeof t&&null!==t&&"string"==typeof t.as){var n=t.as,r=u(n,t.crossOrigin);i.d.L(e,n,{crossOrigin:r,integrity:"string"==typeof t.integrity?t.integrity:void 0,nonce:"string"==typeof t.nonce?t.nonce:void 0,type:"string"==typeof t.type?t.type:void 0,fetchPriority:"string"==typeof t.fetchPriority?t.fetchPriority:void 0,referrerPolicy:"string"==typeof t.referrerPolicy?t.referrerPolicy:void 0,imageSrcSet:"string"==typeof t.imageSrcSet?t.imageSrcSet:void 0,imageSizes:"string"==typeof t.imageSizes?t.imageSizes:void 0,media:"string"==typeof t.media?t.media:void 0})}},t.preloadModule=function(e,t){if("string"==typeof e)if(t){var n=u(t.as,t.crossOrigin);i.d.m(e,{as:"string"==typeof t.as&&"script"!==t.as?t.as:void 0,crossOrigin:n,integrity:"string"==typeof t.integrity?t.integrity:void 0})}else i.d.m(e)},t.requestFormReset=function(e){i.d.r(e)},t.unstable_batchedUpdates=function(e,t){return e(t)},t.useFormState=function(e,t,n){return c.H.useFormState(e,t,n)},t.useFormStatus=function(){return c.H.useHostTransitionStatus()},t.version="19.3.0-canary-f93b9fd4-20251217"},"./dist/compiled/react-dom/client.js"(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n("./dist/compiled/react-dom/cjs/react-dom-client.production.js")},"./dist/compiled/react-dom/index.js"(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n("./dist/compiled/react-dom/cjs/react-dom.production.js")},"./dist/compiled/react/cjs/react-compiler-runtime.production.js"(e,t,n){"use strict";var r=n("./dist/compiled/react/index.js").__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;t.c=function(e){return r.H.useMemoCache(e)}},"./dist/compiled/react/cjs/react-jsx-runtime.production.js"(e,t){"use strict";var n=Symbol.for("react.transitional.element");function r(e,t,r){var o=null;if(void 0!==r&&(o=""+r),void 0!==t.key&&(o=""+t.key),"key"in t)for(var a in r={},t)"key"!==a&&(r[a]=t[a]);else r=t;return{$$typeof:n,type:e,key:o,ref:void 0!==(t=r.ref)?t:null,props:r}}t.Fragment=Symbol.for("react.fragment"),t.jsx=r,t.jsxs=r},"./dist/compiled/react/cjs/react.production.js"(e,t){"use strict";var n=Symbol.for("react.transitional.element"),r=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),l=Symbol.for("react.consumer"),s=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),d=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),p=Symbol.for("react.activity"),h=Symbol.for("react.view_transition"),m=Symbol.iterator,g={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},y=Object.assign,v={};function b(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||g}function x(){}function w(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||g}b.prototype.isReactComponent={},b.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},b.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},x.prototype=b.prototype;var _=w.prototype=new x;_.constructor=w,y(_,b.prototype),_.isPureReactComponent=!0;var j=Array.isArray;function k(){}var S={H:null,A:null,T:null,S:null},O=Object.prototype.hasOwnProperty;function C(e,t,r){var o=r.ref;return{$$typeof:n,type:e,key:t,ref:void 0!==o?o:null,props:r}}function P(e){return"object"==typeof e&&null!==e&&e.$$typeof===n}var E=/\/+/g;function T(e,t){var n,r;return"object"==typeof e&&null!==e&&null!=e.key?(n=""+e.key,r={"=":"=0",":":"=2"},"$"+n.replace(/[=:]/g,function(e){return r[e]})):t.toString(36)}function N(e,t,o){if(null==e)return e;var a=[],i=0;return!function e(t,o,a,i,l){var s,c,u,d=typeof t;("undefined"===d||"boolean"===d)&&(t=null);var p=!1;if(null===t)p=!0;else switch(d){case"bigint":case"string":case"number":p=!0;break;case"object":switch(t.$$typeof){case n:case r:p=!0;break;case f:return e((p=t._init)(t._payload),o,a,i,l)}}if(p)return l=l(t),p=""===i?"."+T(t,0):i,j(l)?(a="",null!=p&&(a=p.replace(E,"$&/")+"/"),e(l,o,a,"",function(e){return e})):null!=l&&(P(l)&&(s=l,c=a+(null==l.key||t&&t.key===l.key?"":(""+l.key).replace(E,"$&/")+"/")+p,l=C(s.type,c,s.props)),o.push(l)),1;p=0;var h=""===i?".":i+":";if(j(t))for(var g=0;g<t.length;g++)d=h+T(i=t[g],g),p+=e(i,o,a,d,l);else if("function"==typeof(g=null===(u=t)||"object"!=typeof u?null:"function"==typeof(u=m&&u[m]||u["@@iterator"])?u:null))for(t=g.call(t),g=0;!(i=t.next()).done;)d=h+T(i=i.value,g++),p+=e(i,o,a,d,l);else if("object"===d){if("function"==typeof t.then)return e(function(e){switch(e.status){case"fulfilled":return e.value;case"rejected":throw e.reason;default:switch("string"==typeof e.status?e.then(k,k):(e.status="pending",e.then(function(t){"pending"===e.status&&(e.status="fulfilled",e.value=t)},function(t){"pending"===e.status&&(e.status="rejected",e.reason=t)})),e.status){case"fulfilled":return e.value;case"rejected":throw e.reason}}throw e}(t),o,a,i,l);throw Error("Objects are not valid as a React child (found: "+("[object Object]"===(o=String(t))?"object with keys {"+Object.keys(t).join(", ")+"}":o)+"). If you meant to render a collection of children, use an array instead.")}return p}(e,a,"","",function(e){return t.call(o,e,i++)}),a}function I(e){if(-1===e._status){var t=e._result;(t=t()).then(function(t){(0===e._status||-1===e._status)&&(e._status=1,e._result=t)},function(t){(0===e._status||-1===e._status)&&(e._status=2,e._result=t)}),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var L="function"==typeof reportError?reportError:function(e){if("object"==typeof window&&"function"==typeof window.ErrorEvent){var t=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:"object"==typeof e&&null!==e&&"string"==typeof e.message?String(e.message):String(e),error:e});if(!window.dispatchEvent(t))return}else if("object"==typeof process&&"function"==typeof process.emit)return void process.emit("uncaughtException",e);console.error(e)};function A(e){var t=S.T,n={};n.types=null!==t?t.types:null,S.T=n;try{var r=e(),o=S.S;null!==o&&o(n,r),"object"==typeof r&&null!==r&&"function"==typeof r.then&&r.then(k,L)}catch(e){L(e)}finally{null!==t&&null!==n.types&&(t.types=n.types),S.T=t}}function z(e){var t=S.T;if(null!==t){var n=t.types;null===n?t.types=[e]:-1===n.indexOf(e)&&n.push(e)}else A(z.bind(null,e))}t.Activity=p,t.Children={map:N,forEach:function(e,t,n){N(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return N(e,function(){t++}),t},toArray:function(e){return N(e,function(e){return e})||[]},only:function(e){if(!P(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},t.Component=b,t.Fragment=o,t.Profiler=i,t.PureComponent=w,t.StrictMode=a,t.Suspense=u,t.ViewTransition=h,t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=S,t.__COMPILER_RUNTIME={__proto__:null,c:function(e){return S.H.useMemoCache(e)}},t.addTransitionType=z,t.cache=function(e){return function(){return e.apply(null,arguments)}},t.cacheSignal=function(){return null},t.cloneElement=function(e,t,n){if(null==e)throw Error("The argument must be a React element, but you passed "+e+".");var r=y({},e.props),o=e.key;if(null!=t)for(a in void 0!==t.key&&(o=""+t.key),t)O.call(t,a)&&"key"!==a&&"__self"!==a&&"__source"!==a&&("ref"!==a||void 0!==t.ref)&&(r[a]=t[a]);var a=arguments.length-2;if(1===a)r.children=n;else if(1<a){for(var i=Array(a),l=0;l<a;l++)i[l]=arguments[l+2];r.children=i}return C(e.type,o,r)},t.createContext=function(e){return(e={$$typeof:s,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider=e,e.Consumer={$$typeof:l,_context:e},e},t.createElement=function(e,t,n){var r,o={},a=null;if(null!=t)for(r in void 0!==t.key&&(a=""+t.key),t)O.call(t,r)&&"key"!==r&&"__self"!==r&&"__source"!==r&&(o[r]=t[r]);var i=arguments.length-2;if(1===i)o.children=n;else if(1<i){for(var l=Array(i),s=0;s<i;s++)l[s]=arguments[s+2];o.children=l}if(e&&e.defaultProps)for(r in i=e.defaultProps)void 0===o[r]&&(o[r]=i[r]);return C(e,a,o)},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:c,render:e}},t.isValidElement=P,t.lazy=function(e){return{$$typeof:f,_payload:{_status:-1,_result:e},_init:I}},t.memo=function(e,t){return{$$typeof:d,type:e,compare:void 0===t?null:t}},t.startTransition=A,t.unstable_useCacheRefresh=function(){return S.H.useCacheRefresh()},t.use=function(e){return S.H.use(e)},t.useActionState=function(e,t,n){return S.H.useActionState(e,t,n)},t.useCallback=function(e,t){return S.H.useCallback(e,t)},t.useContext=function(e){return S.H.useContext(e)},t.useDebugValue=function(){},t.useDeferredValue=function(e,t){return S.H.useDeferredValue(e,t)},t.useEffect=function(e,t){return S.H.useEffect(e,t)},t.useEffectEvent=function(e){return S.H.useEffectEvent(e)},t.useId=function(){return S.H.useId()},t.useImperativeHandle=function(e,t,n){return S.H.useImperativeHandle(e,t,n)},t.useInsertionEffect=function(e,t){return S.H.useInsertionEffect(e,t)},t.useLayoutEffect=function(e,t){return S.H.useLayoutEffect(e,t)},t.useMemo=function(e,t){return S.H.useMemo(e,t)},t.useOptimistic=function(e,t){return S.H.useOptimistic(e,t)},t.useReducer=function(e,t,n){return S.H.useReducer(e,t,n)},t.useRef=function(e){return S.H.useRef(e)},t.useState=function(e){return S.H.useState(e)},t.useSyncExternalStore=function(e,t,n){return S.H.useSyncExternalStore(e,t,n)},t.useTransition=function(){return S.H.useTransition()},t.version="19.3.0-canary-f93b9fd4-20251217"},"./dist/compiled/react/compiler-runtime.js"(e,t,n){"use strict";e.exports=n("./dist/compiled/react/cjs/react-compiler-runtime.production.js")},"./dist/compiled/react/index.js"(e,t,n){"use strict";e.exports=n("./dist/compiled/react/cjs/react.production.js")},"./dist/compiled/react/jsx-runtime.js"(e,t,n){"use strict";e.exports=n("./dist/compiled/react/cjs/react-jsx-runtime.production.js")},"./dist/compiled/scheduler/cjs/scheduler.production.js"(e,t){"use strict";function n(e,t){var n=e.length;for(e.push(t);0<n;){var r=n-1>>>1,o=e[r];if(0<a(o,t))e[r]=t,e[n]=o,n=r;else break}}function r(e){return 0===e.length?null:e[0]}function o(e){if(0===e.length)return null;var t=e[0],n=e.pop();if(n!==t){e[0]=n;for(var r=0,o=e.length,i=o>>>1;r<i;){var l=2*(r+1)-1,s=e[l],c=l+1,u=e[c];if(0>a(s,n))c<o&&0>a(u,s)?(e[r]=u,e[c]=n,r=c):(e[r]=s,e[l]=n,r=l);else if(c<o&&0>a(u,n))e[r]=u,e[c]=n,r=c;else break}}return t}function a(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}if(t.unstable_now=void 0,"object"==typeof performance&&"function"==typeof performance.now){var i,l=performance;t.unstable_now=function(){return l.now()}}else{var s=Date,c=s.now();t.unstable_now=function(){return s.now()-c}}var u=[],d=[],f=1,p=null,h=3,m=!1,g=!1,y=!1,v=!1,b="function"==typeof setTimeout?setTimeout:null,x="function"==typeof clearTimeout?clearTimeout:null,w="undefined"!=typeof setImmediate?setImmediate:null;function _(e){for(var t=r(d);null!==t;){if(null===t.callback)o(d);else if(t.startTime<=e)o(d),t.sortIndex=t.expirationTime,n(u,t);else break;t=r(d)}}function j(e){if(y=!1,_(e),!g)if(null!==r(u))g=!0,k||(k=!0,i());else{var t=r(d);null!==t&&I(j,t.startTime-e)}}var k=!1,S=-1,O=5,C=-1;function P(){return!!v||!(t.unstable_now()-C<O)}function E(){if(v=!1,k){var e=t.unstable_now();C=e;var n=!0;try{e:{g=!1,y&&(y=!1,x(S),S=-1),m=!0;var a=h;try{t:{for(_(e),p=r(u);null!==p&&!(p.expirationTime>e&&P());){var l=p.callback;if("function"==typeof l){p.callback=null,h=p.priorityLevel;var s=l(p.expirationTime<=e);if(e=t.unstable_now(),"function"==typeof s){p.callback=s,_(e),n=!0;break t}p===r(u)&&o(u),_(e)}else o(u);p=r(u)}if(null!==p)n=!0;else{var c=r(d);null!==c&&I(j,c.startTime-e),n=!1}}break e}finally{p=null,h=a,m=!1}}}finally{n?i():k=!1}}}if("function"==typeof w)i=function(){w(E)};else if("undefined"!=typeof MessageChannel){var T=new MessageChannel,N=T.port2;T.port1.onmessage=E,i=function(){N.postMessage(null)}}else i=function(){b(E,0)};function I(e,n){S=b(function(){e(t.unstable_now())},n)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):O=0<e?Math.floor(1e3/e):5},t.unstable_getCurrentPriorityLevel=function(){return h},t.unstable_next=function(e){switch(h){case 1:case 2:case 3:var t=3;break;default:t=h}var n=h;h=t;try{return e()}finally{h=n}},t.unstable_requestPaint=function(){v=!0},t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=h;h=e;try{return t()}finally{h=n}},t.unstable_scheduleCallback=function(e,o,a){var l=t.unstable_now();switch(a="object"==typeof a&&null!==a&&"number"==typeof(a=a.delay)&&0<a?l+a:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=0x3fffffff;break;case 4:s=1e4;break;default:s=5e3}return s=a+s,e={id:f++,callback:o,priorityLevel:e,startTime:a,expirationTime:s,sortIndex:-1},a>l?(e.sortIndex=a,n(d,e),null===r(u)&&e===r(d)&&(y?(x(S),S=-1):y=!0,I(j,a-l))):(e.sortIndex=s,n(u,e),g||m||(g=!0,k||(k=!0,i()))),e},t.unstable_shouldYield=P,t.unstable_wrapCallback=function(e){var t=h;return function(){var n=h;h=t;try{return e.apply(this,arguments)}finally{h=n}}}},"./dist/compiled/scheduler/index.js"(e,t,n){"use strict";e.exports=n("./dist/compiled/scheduler/cjs/scheduler.production.js")},"./dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js"(e){(()=>{"use strict";"undefined"!=typeof __nccwpck_require__&&(__nccwpck_require__.ab="//");var t,n,r,o,a,i,l,s,c={};Object.defineProperty(c,"__esModule",{value:!0}),t="<unknown>",n=/^\s*at (.*?) ?\(((?:file|https?|blob|chrome-extension|native|eval|webpack|webpack-internal|rsc|about|turbopack|<anonymous>|\/|[a-z]:\\|\\\\).*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,r=/\((\S*)(?::(\d+))(?::(\d+))\)/,o=/^\s*at (?:((?:\[object object\])?.+) )?\(?((?:file|ms-appx|https?|webpack|webpack-internal|rsc|about|turbopack|blob):.*?):(\d+)(?::(\d+))?\)?\s*$/i,a=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)((?:file|https?|blob|chrome|webpack|webpack-internal|rsc|about|turbopack|resource|\[native).*?|[^@]*bundle)(?::(\d+))?(?::(\d+))?\s*$/i,i=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,l=/^\s*(?:([^@]*)(?:\((.*?)\))?@)?(\S.*?):(\d+)(?::(\d+))?\s*$/i,s=/^\s*at (?:((?:\[object object\])?[^\\/]+(?: \[as \S+\])?) )?\(?(.*?):(\d+)(?::(\d+))?\)?\s*$/i,c.parse=function(e){return e.split("\n").reduce(function(e,c){var u,d,f,p,h,m,g=function(e){var o=n.exec(e);if(!o)return null;var a=o[2]&&0===o[2].indexOf("native"),i=o[2]&&0===o[2].indexOf("eval"),l=r.exec(o[2]);return i&&null!=l&&(o[2]=l[1],o[3]=l[2],o[4]=l[3]),{file:a?null:o[2],methodName:o[1]||t,arguments:a?[o[2]]:[],lineNumber:o[3]?+o[3]:null,column:o[4]?+o[4]:null}}(c)||(u=c,(d=o.exec(u))?{file:d[2],methodName:d[1]||t,arguments:[],lineNumber:+d[3],column:d[4]?+d[4]:null}:null)||function(e){var n=a.exec(e);if(!n)return null;var r=n[3]&&n[3].indexOf(" > eval")>-1,o=i.exec(n[3]);return r&&null!=o&&(n[3]=o[1],n[4]=o[2],n[5]=null),{file:n[3],methodName:n[1]||t,arguments:n[2]?n[2].split(","):[],lineNumber:n[4]?+n[4]:null,column:n[5]?+n[5]:null}}(c)||(f=c,(p=s.exec(f))?{file:p[2],methodName:p[1]||t,arguments:[],lineNumber:+p[3],column:p[4]?+p[4]:null}:null)||(h=c,(m=l.exec(h))?{file:m[3],methodName:m[1]||t,arguments:[],lineNumber:+m[4],column:m[5]?+m[5]:null}:null);return g&&e.push(g),e},[])},e.exports=c})()},"./dist/compiled/strip-ansi/index.js"(e){(()=>{"use strict";var t={511:e=>{e.exports=({onlyFirst:e=!1}={})=>RegExp("[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))",e?void 0:"g")},532:(e,t,n)=>{let r=n(511);e.exports=e=>"string"==typeof e?e.replace(r(),""):e}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var a=n[e]={exports:{}},i=!0;try{t[e](a,a.exports,r),i=!1}finally{i&&delete n[e]}return a.exports}r.ab="//",e.exports=r(532)})()},"./src/build/webpack/loaders/devtool/devtool-style-inject.js"(e){function t(){let e=window._nextjsDevtoolsStyleCache;if(e.cachedShadowRoot)return e.cachedShadowRoot;let t=document.querySelector("nextjs-portal"),n=t?.shadowRoot||null;return n&&(e.cachedShadowRoot=n),n}function n(e,t){let n=window._nextjsDevtoolsStyleCache;n.lastInsertedElement?n.lastInsertedElement.nextSibling?t.insertBefore(e,n.lastInsertedElement.nextSibling):t.appendChild(e):t.insertBefore(e,t.firstChild),n.lastInsertedElement=e}function r(){let e=window._nextjsDevtoolsStyleCache,r=t();r&&(e.pendingElements.forEach(e=>{n(e,r)}),e.pendingElements=[])}"undefined"!=typeof window&&(window._nextjsDevtoolsStyleCache=window._nextjsDevtoolsStyleCache||{pendingElements:[],isObserving:!1,lastInsertedElement:null,cachedShadowRoot:null}),e.exports=function(e){e.setAttribute("data-nextjs-dev-tool-style","true");let o=t();o?n(e,o):(window._nextjsDevtoolsStyleCache.pendingElements.push(e),function(){let e=window._nextjsDevtoolsStyleCache;if(e.isObserving)return;if(e.isObserving=!0,t())return r();let n=new MutationObserver(o=>{if(0!==o.length){for(let a of o)if(0!==a.addedNodes.length)for(let o of a.addedNodes){if(o.nodeType!==Node.ELEMENT_NODE)continue;let a=null;if("SCRIPT"===o.tagName&&o.getAttribute("data-nextjs-dev-overlay")?a=o.firstChild:"NEXTJS-PORTAL"===o.tagName&&(a=o),a){let o=()=>{t()?(r(),n.disconnect(),e.isObserving=!1):setTimeout(o,20)};o();return}}}});n.observe(document.body,{childList:!0,subtree:!0})}())}},"./dist/compiled/zod/index.cjs"(e){(()=>{"use strict";var t={629:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);(!o||("get"in o?!t.__esModule:o.writable||o.configurable))&&(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),a=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t},i=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),t.z=void 0;let l=a(n(923));t.z=l,i(n(923),t),t.default=l},348:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ZodError=t.quotelessJson=t.ZodIssueCode=void 0;let r=n(709);t.ZodIssueCode=r.util.arrayToEnum(["invalid_type","invalid_literal","custom","invalid_union","invalid_union_discriminator","invalid_enum_value","unrecognized_keys","invalid_arguments","invalid_return_type","invalid_date","invalid_string","too_small","too_big","invalid_intersection_types","not_multiple_of","not_finite"]),t.quotelessJson=e=>JSON.stringify(e,null,2).replace(/"([^"]+)":/g,"$1:");class o extends Error{get errors(){return this.issues}constructor(e){super(),this.issues=[],this.addIssue=e=>{this.issues=[...this.issues,e]},this.addIssues=(e=[])=>{this.issues=[...this.issues,...e]};const t=new.target.prototype;Object.setPrototypeOf?Object.setPrototypeOf(this,t):this.__proto__=t,this.name="ZodError",this.issues=e}format(e){let t=e||function(e){return e.message},n={_errors:[]},r=e=>{for(let o of e.issues)if("invalid_union"===o.code)o.unionErrors.map(r);else if("invalid_return_type"===o.code)r(o.returnTypeError);else if("invalid_arguments"===o.code)r(o.argumentsError);else if(0===o.path.length)n._errors.push(t(o));else{let e=n,r=0;for(;r<o.path.length;){let n=o.path[r];r===o.path.length-1?(e[n]=e[n]||{_errors:[]},e[n]._errors.push(t(o))):e[n]=e[n]||{_errors:[]},e=e[n],r++}}};return r(this),n}static assert(e){if(!(e instanceof o))throw Error(`Not a ZodError: ${e}`)}toString(){return this.message}get message(){return JSON.stringify(this.issues,r.util.jsonStringifyReplacer,2)}get isEmpty(){return 0===this.issues.length}flatten(e=e=>e.message){let t={},n=[];for(let r of this.issues)if(r.path.length>0){let n=r.path[0];t[n]=t[n]||[],t[n].push(e(r))}else n.push(e(r));return{formErrors:n,fieldErrors:t}}get formErrors(){return this.flatten()}}t.ZodError=o,o.create=e=>new o(e)},61:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.defaultErrorMap=void 0,t.setErrorMap=function(e){a=e},t.getErrorMap=function(){return a};let o=r(n(871));t.defaultErrorMap=o.default;let a=o.default},923:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);(!o||("get"in o?!t.__esModule:o.writable||o.configurable))&&(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(61),t),o(n(818),t),o(n(515),t),o(n(709),t),o(n(155),t),o(n(348),t)},538:(e,t)=>{var n,r;Object.defineProperty(t,"__esModule",{value:!0}),t.errorUtil=void 0,(r=n||(t.errorUtil=n={})).errToObj=e=>"string"==typeof e?{message:e}:e||{},r.toString=e=>"string"==typeof e?e:e?.message},818:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.isAsync=t.isValid=t.isDirty=t.isAborted=t.OK=t.DIRTY=t.INVALID=t.ParseStatus=t.EMPTY_PATH=t.makeIssue=void 0,t.addIssueToContext=function(e,n){let r=(0,o.getErrorMap)(),i=(0,t.makeIssue)({issueData:n,data:e.data,path:e.path,errorMaps:[e.common.contextualErrorMap,e.schemaErrorMap,r,r===a.default?void 0:a.default].filter(e=>!!e)});e.common.issues.push(i)};let o=n(61),a=r(n(871));t.makeIssue=e=>{let{data:t,path:n,errorMaps:r,issueData:o}=e,a=[...n,...o.path||[]],i={...o,path:a};if(void 0!==o.message)return{...o,path:a,message:o.message};let l="";for(let e of r.filter(e=>!!e).slice().reverse())l=e(i,{data:t,defaultError:l}).message;return{...o,path:a,message:l}},t.EMPTY_PATH=[];class i{constructor(){this.value="valid"}dirty(){"valid"===this.value&&(this.value="dirty")}abort(){"aborted"!==this.value&&(this.value="aborted")}static mergeArray(e,n){let r=[];for(let o of n){if("aborted"===o.status)return t.INVALID;"dirty"===o.status&&e.dirty(),r.push(o.value)}return{status:e.value,value:r}}static async mergeObjectAsync(e,t){let n=[];for(let e of t){let t=await e.key,r=await e.value;n.push({key:t,value:r})}return i.mergeObjectSync(e,n)}static mergeObjectSync(e,n){let r={};for(let o of n){let{key:n,value:a}=o;if("aborted"===n.status||"aborted"===a.status)return t.INVALID;"dirty"===n.status&&e.dirty(),"dirty"===a.status&&e.dirty(),"__proto__"!==n.value&&(void 0!==a.value||o.alwaysSet)&&(r[n.value]=a.value)}return{status:e.value,value:r}}}t.ParseStatus=i,t.INVALID=Object.freeze({status:"aborted"}),t.DIRTY=e=>({status:"dirty",value:e}),t.OK=e=>({status:"valid",value:e}),t.isAborted=e=>"aborted"===e.status,t.isDirty=e=>"dirty"===e.status,t.isValid=e=>"valid"===e.status,t.isAsync=e=>"undefined"!=typeof Promise&&e instanceof Promise},515:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},709:(e,t)=>{var n,r,o;Object.defineProperty(t,"__esModule",{value:!0}),t.getParsedType=t.ZodParsedType=t.objectUtil=t.util=void 0,(o=n||(t.util=n={})).assertEqual=e=>{},o.assertIs=function(e){},o.assertNever=function(e){throw Error()},o.arrayToEnum=e=>{let t={};for(let n of e)t[n]=n;return t},o.getValidEnumValues=e=>{let t=o.objectKeys(e).filter(t=>"number"!=typeof e[e[t]]),n={};for(let r of t)n[r]=e[r];return o.objectValues(n)},o.objectValues=e=>o.objectKeys(e).map(function(t){return e[t]}),o.objectKeys="function"==typeof Object.keys?e=>Object.keys(e):e=>{let t=[];for(let n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.push(n);return t},o.find=(e,t)=>{for(let n of e)if(t(n))return n},o.isInteger="function"==typeof Number.isInteger?e=>Number.isInteger(e):e=>"number"==typeof e&&Number.isFinite(e)&&Math.floor(e)===e,o.joinValues=function(e,t=" | "){return e.map(e=>"string"==typeof e?`'${e}'`:e).join(t)},o.jsonStringifyReplacer=(e,t)=>"bigint"==typeof t?t.toString():t,(r||(t.objectUtil=r={})).mergeShapes=(e,t)=>({...e,...t}),t.ZodParsedType=n.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),t.getParsedType=e=>{switch(typeof e){case"undefined":return t.ZodParsedType.undefined;case"string":return t.ZodParsedType.string;case"number":return Number.isNaN(e)?t.ZodParsedType.nan:t.ZodParsedType.number;case"boolean":return t.ZodParsedType.boolean;case"function":return t.ZodParsedType.function;case"bigint":return t.ZodParsedType.bigint;case"symbol":return t.ZodParsedType.symbol;case"object":if(Array.isArray(e))return t.ZodParsedType.array;if(null===e)return t.ZodParsedType.null;if(e.then&&"function"==typeof e.then&&e.catch&&"function"==typeof e.catch)return t.ZodParsedType.promise;if("undefined"!=typeof Map&&e instanceof Map)return t.ZodParsedType.map;if("undefined"!=typeof Set&&e instanceof Set)return t.ZodParsedType.set;if("undefined"!=typeof Date&&e instanceof Date)return t.ZodParsedType.date;return t.ZodParsedType.object;default:return t.ZodParsedType.unknown}}},871:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0});let r=n(348),o=n(709);t.default=(e,t)=>{let n;switch(e.code){case r.ZodIssueCode.invalid_type:n=e.received===o.ZodParsedType.undefined?"Required":`Expected ${e.expected}, received ${e.received}`;break;case r.ZodIssueCode.invalid_literal:n=`Invalid literal value, expected ${JSON.stringify(e.expected,o.util.jsonStringifyReplacer)}`;break;case r.ZodIssueCode.unrecognized_keys:n=`Unrecognized key(s) in object: ${o.util.joinValues(e.keys,", ")}`;break;case r.ZodIssueCode.invalid_union:n="Invalid input";break;case r.ZodIssueCode.invalid_union_discriminator:n=`Invalid discriminator value. Expected ${o.util.joinValues(e.options)}`;break;case r.ZodIssueCode.invalid_enum_value:n=`Invalid enum value. Expected ${o.util.joinValues(e.options)}, received '${e.received}'`;break;case r.ZodIssueCode.invalid_arguments:n="Invalid function arguments";break;case r.ZodIssueCode.invalid_return_type:n="Invalid function return type";break;case r.ZodIssueCode.invalid_date:n="Invalid date";break;case r.ZodIssueCode.invalid_string:"object"==typeof e.validation?"includes"in e.validation?(n=`Invalid input: must include "${e.validation.includes}"`,"number"==typeof e.validation.position&&(n=`${n} at one or more positions greater than or equal to ${e.validation.position}`)):"startsWith"in e.validation?n=`Invalid input: must start with "${e.validation.startsWith}"`:"endsWith"in e.validation?n=`Invalid input: must end with "${e.validation.endsWith}"`:o.util.assertNever(e.validation):n="regex"!==e.validation?`Invalid ${e.validation}`:"Invalid";break;case r.ZodIssueCode.too_small:n="array"===e.type?`Array must contain ${e.exact?"exactly":e.inclusive?"at least":"more than"} ${e.minimum} element(s)`:"string"===e.type?`String must contain ${e.exact?"exactly":e.inclusive?"at least":"over"} ${e.minimum} character(s)`:"number"===e.type||"bigint"===e.type?`Number must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${e.minimum}`:"date"===e.type?`Date must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${new Date(Number(e.minimum))}`:"Invalid input";break;case r.ZodIssueCode.too_big:n="array"===e.type?`Array must contain ${e.exact?"exactly":e.inclusive?"at most":"less than"} ${e.maximum} element(s)`:"string"===e.type?`String must contain ${e.exact?"exactly":e.inclusive?"at most":"under"} ${e.maximum} character(s)`:"number"===e.type?`Number must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:"bigint"===e.type?`BigInt must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:"date"===e.type?`Date must be ${e.exact?"exactly":e.inclusive?"smaller than or equal to":"smaller than"} ${new Date(Number(e.maximum))}`:"Invalid input";break;case r.ZodIssueCode.custom:n="Invalid input";break;case r.ZodIssueCode.invalid_intersection_types:n="Intersection results could not be merged";break;case r.ZodIssueCode.not_multiple_of:n=`Number must be a multiple of ${e.multipleOf}`;break;case r.ZodIssueCode.not_finite:n="Number must be finite";break;default:n=t.defaultError,o.util.assertNever(e)}return{message:n}}},155:(e,t,n)=>{var r,o;let a;Object.defineProperty(t,"__esModule",{value:!0}),t.discriminatedUnion=t.date=t.boolean=t.bigint=t.array=t.any=t.coerce=t.ZodFirstPartyTypeKind=t.late=t.ZodSchema=t.Schema=t.ZodReadonly=t.ZodPipeline=t.ZodBranded=t.BRAND=t.ZodNaN=t.ZodCatch=t.ZodDefault=t.ZodNullable=t.ZodOptional=t.ZodTransformer=t.ZodEffects=t.ZodPromise=t.ZodNativeEnum=t.ZodEnum=t.ZodLiteral=t.ZodLazy=t.ZodFunction=t.ZodSet=t.ZodMap=t.ZodRecord=t.ZodTuple=t.ZodIntersection=t.ZodDiscriminatedUnion=t.ZodUnion=t.ZodObject=t.ZodArray=t.ZodVoid=t.ZodNever=t.ZodUnknown=t.ZodAny=t.ZodNull=t.ZodUndefined=t.ZodSymbol=t.ZodDate=t.ZodBoolean=t.ZodBigInt=t.ZodNumber=t.ZodString=t.ZodType=void 0,t.NEVER=t.void=t.unknown=t.union=t.undefined=t.tuple=t.transformer=t.symbol=t.string=t.strictObject=t.set=t.record=t.promise=t.preprocess=t.pipeline=t.ostring=t.optional=t.onumber=t.oboolean=t.object=t.number=t.nullable=t.null=t.never=t.nativeEnum=t.nan=t.map=t.literal=t.lazy=t.intersection=t.instanceof=t.function=t.enum=t.effect=void 0,t.datetimeRegex=I,t.custom=ev;let i=n(348),l=n(61),s=n(538),c=n(818),u=n(709);class d{constructor(e,t,n,r){this._cachedPath=[],this.parent=e,this.data=t,this._path=n,this._key=r}get path(){return this._cachedPath.length||(Array.isArray(this._key)?this._cachedPath.push(...this._path,...this._key):this._cachedPath.push(...this._path,this._key)),this._cachedPath}}let f=(e,t)=>{if((0,c.isValid)(t))return{success:!0,data:t.value};if(!e.common.issues.length)throw Error("Validation failed but no issues detected.");return{success:!1,get error(){if(this._error)return this._error;let t=new i.ZodError(e.common.issues);return this._error=t,this._error}}};function p(e){if(!e)return{};let{errorMap:t,invalid_type_error:n,required_error:r,description:o}=e;if(t&&(n||r))throw Error('Can\'t use "invalid_type_error" or "required_error" in conjunction with custom error map.');return t?{errorMap:t,description:o}:{errorMap:(t,o)=>{let{message:a}=e;return"invalid_enum_value"===t.code?{message:a??o.defaultError}:void 0===o.data?{message:a??r??o.defaultError}:"invalid_type"!==t.code?{message:o.defaultError}:{message:a??n??o.defaultError}},description:o}}class h{get description(){return this._def.description}_getType(e){return(0,u.getParsedType)(e.data)}_getOrReturnCtx(e,t){return t||{common:e.parent.common,data:e.data,parsedType:(0,u.getParsedType)(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}_processInputParams(e){return{status:new c.ParseStatus,ctx:{common:e.parent.common,data:e.data,parsedType:(0,u.getParsedType)(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){let t=this._parse(e);if((0,c.isAsync)(t))throw Error("Synchronous parse encountered promise.");return t}_parseAsync(e){return Promise.resolve(this._parse(e))}parse(e,t){let n=this.safeParse(e,t);if(n.success)return n.data;throw n.error}safeParse(e,t){let n={common:{issues:[],async:t?.async??!1,contextualErrorMap:t?.errorMap},path:t?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:(0,u.getParsedType)(e)},r=this._parseSync({data:e,path:n.path,parent:n});return f(n,r)}"~validate"(e){let t={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:(0,u.getParsedType)(e)};if(!this["~standard"].async)try{let n=this._parseSync({data:e,path:[],parent:t});return(0,c.isValid)(n)?{value:n.value}:{issues:t.common.issues}}catch(e){e?.message?.toLowerCase()?.includes("encountered")&&(this["~standard"].async=!0),t.common={issues:[],async:!0}}return this._parseAsync({data:e,path:[],parent:t}).then(e=>(0,c.isValid)(e)?{value:e.value}:{issues:t.common.issues})}async parseAsync(e,t){let n=await this.safeParseAsync(e,t);if(n.success)return n.data;throw n.error}async safeParseAsync(e,t){let n={common:{issues:[],contextualErrorMap:t?.errorMap,async:!0},path:t?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:(0,u.getParsedType)(e)},r=this._parse({data:e,path:n.path,parent:n});return f(n,await ((0,c.isAsync)(r)?r:Promise.resolve(r)))}refine(e,t){return this._refinement((n,r)=>{let o=e(n),a=()=>r.addIssue({code:i.ZodIssueCode.custom,..."string"==typeof t||void 0===t?{message:t}:"function"==typeof t?t(n):t});return"undefined"!=typeof Promise&&o instanceof Promise?o.then(e=>!!e||(a(),!1)):!!o||(a(),!1)})}refinement(e,t){return this._refinement((n,r)=>!!e(n)||(r.addIssue("function"==typeof t?t(n,r):t),!1))}_refinement(e){return new es({schema:this,typeName:r.ZodEffects,effect:{type:"refinement",refinement:e}})}superRefine(e){return this._refinement(e)}constructor(e){this.spa=this.safeParseAsync,this._def=e,this.parse=this.parse.bind(this),this.safeParse=this.safeParse.bind(this),this.parseAsync=this.parseAsync.bind(this),this.safeParseAsync=this.safeParseAsync.bind(this),this.spa=this.spa.bind(this),this.refine=this.refine.bind(this),this.refinement=this.refinement.bind(this),this.superRefine=this.superRefine.bind(this),this.optional=this.optional.bind(this),this.nullable=this.nullable.bind(this),this.nullish=this.nullish.bind(this),this.array=this.array.bind(this),this.promise=this.promise.bind(this),this.or=this.or.bind(this),this.and=this.and.bind(this),this.transform=this.transform.bind(this),this.brand=this.brand.bind(this),this.default=this.default.bind(this),this.catch=this.catch.bind(this),this.describe=this.describe.bind(this),this.pipe=this.pipe.bind(this),this.readonly=this.readonly.bind(this),this.isNullable=this.isNullable.bind(this),this.isOptional=this.isOptional.bind(this),this["~standard"]={version:1,vendor:"zod",validate:e=>this["~validate"](e)}}optional(){return ec.create(this,this._def)}nullable(){return eu.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return $.create(this)}promise(){return el.create(this,this._def)}or(e){return W.create([this,e],this._def)}and(e){return X.create(this,e,this._def)}transform(e){return new es({...p(this._def),schema:this,typeName:r.ZodEffects,effect:{type:"transform",transform:e}})}default(e){return new ed({...p(this._def),innerType:this,defaultValue:"function"==typeof e?e:()=>e,typeName:r.ZodDefault})}brand(){return new eh({typeName:r.ZodBranded,type:this,...p(this._def)})}catch(e){return new ef({...p(this._def),innerType:this,catchValue:"function"==typeof e?e:()=>e,typeName:r.ZodCatch})}describe(e){return new this.constructor({...this._def,description:e})}pipe(e){return em.create(this,e)}readonly(){return eg.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}}t.ZodType=h,t.Schema=h,t.ZodSchema=h;let m=/^c[^\s-]{8,}$/i,g=/^[0-9a-z]+$/,y=/^[0-9A-HJKMNP-TV-Z]{26}$/i,v=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i,b=/^[a-z0-9_-]{21}$/i,x=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,w=/^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/,_=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,j=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,k=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,S=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,O=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,C=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,P=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,E="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",T=RegExp(`^${E}$`);function N(e){let t="[0-5]\\d";e.precision?t=`${t}\\.\\d{${e.precision}}`:null==e.precision&&(t=`${t}(\\.\\d+)?`);let n=e.precision?"+":"?";return`([01]\\d|2[0-3]):[0-5]\\d(:${t})${n}`}function I(e){let t=`${E}T${N(e)}`,n=[];return n.push(e.local?"Z?":"Z"),e.offset&&n.push("([+-]\\d{2}:?\\d{2})"),t=`${t}(${n.join("|")})`,RegExp(`^${t}$`)}class L extends h{_parse(e){var t,n,r,o;let l;if(this._def.coerce&&(e.data=String(e.data)),this._getType(e)!==u.ZodParsedType.string){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.string,received:t.parsedType}),c.INVALID}let s=new c.ParseStatus;for(let d of this._def.checks)if("min"===d.kind)e.data.length<d.value&&(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.too_small,minimum:d.value,type:"string",inclusive:!0,exact:!1,message:d.message}),s.dirty());else if("max"===d.kind)e.data.length>d.value&&(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.too_big,maximum:d.value,type:"string",inclusive:!0,exact:!1,message:d.message}),s.dirty());else if("length"===d.kind){let t=e.data.length>d.value,n=e.data.length<d.value;(t||n)&&(l=this._getOrReturnCtx(e,l),t?(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.too_big,maximum:d.value,type:"string",inclusive:!0,exact:!0,message:d.message}):n&&(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.too_small,minimum:d.value,type:"string",inclusive:!0,exact:!0,message:d.message}),s.dirty())}else if("email"===d.kind)_.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"email",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty());else if("emoji"===d.kind)a||(a=RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),a.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"emoji",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty());else if("uuid"===d.kind)v.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"uuid",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty());else if("nanoid"===d.kind)b.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"nanoid",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty());else if("cuid"===d.kind)m.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"cuid",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty());else if("cuid2"===d.kind)g.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"cuid2",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty());else if("ulid"===d.kind)y.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"ulid",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty());else if("url"===d.kind)try{new URL(e.data)}catch{l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"url",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty()}else"regex"===d.kind?(d.regex.lastIndex=0,d.regex.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"regex",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty())):"trim"===d.kind?e.data=e.data.trim():"includes"===d.kind?e.data.includes(d.value,d.position)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.invalid_string,validation:{includes:d.value,position:d.position},message:d.message}),s.dirty()):"toLowerCase"===d.kind?e.data=e.data.toLowerCase():"toUpperCase"===d.kind?e.data=e.data.toUpperCase():"startsWith"===d.kind?e.data.startsWith(d.value)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.invalid_string,validation:{startsWith:d.value},message:d.message}),s.dirty()):"endsWith"===d.kind?e.data.endsWith(d.value)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.invalid_string,validation:{endsWith:d.value},message:d.message}),s.dirty()):"datetime"===d.kind?I(d).test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.invalid_string,validation:"datetime",message:d.message}),s.dirty()):"date"===d.kind?T.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.invalid_string,validation:"date",message:d.message}),s.dirty()):"time"===d.kind?RegExp(`^${N(d)}$`).test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{code:i.ZodIssueCode.invalid_string,validation:"time",message:d.message}),s.dirty()):"duration"===d.kind?w.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"duration",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty()):"ip"===d.kind?(t=e.data,!(("v4"===(n=d.version)||!n)&&j.test(t)||("v6"===n||!n)&&S.test(t))&&1&&(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"ip",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty())):"jwt"===d.kind?!function(e,t){if(!x.test(e))return!1;try{let[n]=e.split(".");if(!n)return!1;let r=n.replace(/-/g,"+").replace(/_/g,"/").padEnd(n.length+(4-n.length%4)%4,"="),o=JSON.parse(atob(r));if("object"!=typeof o||null===o||"typ"in o&&o?.typ!=="JWT"||!o.alg||t&&o.alg!==t)return!1;return!0}catch{return!1}}(e.data,d.alg)&&(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"jwt",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty()):"cidr"===d.kind?(r=e.data,!(("v4"===(o=d.version)||!o)&&k.test(r)||("v6"===o||!o)&&O.test(r))&&1&&(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"cidr",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty())):"base64"===d.kind?C.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"base64",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty()):"base64url"===d.kind?P.test(e.data)||(l=this._getOrReturnCtx(e,l),(0,c.addIssueToContext)(l,{validation:"base64url",code:i.ZodIssueCode.invalid_string,message:d.message}),s.dirty()):u.util.assertNever(d);return{status:s.value,value:e.data}}_regex(e,t,n){return this.refinement(t=>e.test(t),{validation:t,code:i.ZodIssueCode.invalid_string,...s.errorUtil.errToObj(n)})}_addCheck(e){return new L({...this._def,checks:[...this._def.checks,e]})}email(e){return this._addCheck({kind:"email",...s.errorUtil.errToObj(e)})}url(e){return this._addCheck({kind:"url",...s.errorUtil.errToObj(e)})}emoji(e){return this._addCheck({kind:"emoji",...s.errorUtil.errToObj(e)})}uuid(e){return this._addCheck({kind:"uuid",...s.errorUtil.errToObj(e)})}nanoid(e){return this._addCheck({kind:"nanoid",...s.errorUtil.errToObj(e)})}cuid(e){return this._addCheck({kind:"cuid",...s.errorUtil.errToObj(e)})}cuid2(e){return this._addCheck({kind:"cuid2",...s.errorUtil.errToObj(e)})}ulid(e){return this._addCheck({kind:"ulid",...s.errorUtil.errToObj(e)})}base64(e){return this._addCheck({kind:"base64",...s.errorUtil.errToObj(e)})}base64url(e){return this._addCheck({kind:"base64url",...s.errorUtil.errToObj(e)})}jwt(e){return this._addCheck({kind:"jwt",...s.errorUtil.errToObj(e)})}ip(e){return this._addCheck({kind:"ip",...s.errorUtil.errToObj(e)})}cidr(e){return this._addCheck({kind:"cidr",...s.errorUtil.errToObj(e)})}datetime(e){return"string"==typeof e?this._addCheck({kind:"datetime",precision:null,offset:!1,local:!1,message:e}):this._addCheck({kind:"datetime",precision:void 0===e?.precision?null:e?.precision,offset:e?.offset??!1,local:e?.local??!1,...s.errorUtil.errToObj(e?.message)})}date(e){return this._addCheck({kind:"date",message:e})}time(e){return"string"==typeof e?this._addCheck({kind:"time",precision:null,message:e}):this._addCheck({kind:"time",precision:void 0===e?.precision?null:e?.precision,...s.errorUtil.errToObj(e?.message)})}duration(e){return this._addCheck({kind:"duration",...s.errorUtil.errToObj(e)})}regex(e,t){return this._addCheck({kind:"regex",regex:e,...s.errorUtil.errToObj(t)})}includes(e,t){return this._addCheck({kind:"includes",value:e,position:t?.position,...s.errorUtil.errToObj(t?.message)})}startsWith(e,t){return this._addCheck({kind:"startsWith",value:e,...s.errorUtil.errToObj(t)})}endsWith(e,t){return this._addCheck({kind:"endsWith",value:e,...s.errorUtil.errToObj(t)})}min(e,t){return this._addCheck({kind:"min",value:e,...s.errorUtil.errToObj(t)})}max(e,t){return this._addCheck({kind:"max",value:e,...s.errorUtil.errToObj(t)})}length(e,t){return this._addCheck({kind:"length",value:e,...s.errorUtil.errToObj(t)})}nonempty(e){return this.min(1,s.errorUtil.errToObj(e))}trim(){return new L({...this._def,checks:[...this._def.checks,{kind:"trim"}]})}toLowerCase(){return new L({...this._def,checks:[...this._def.checks,{kind:"toLowerCase"}]})}toUpperCase(){return new L({...this._def,checks:[...this._def.checks,{kind:"toUpperCase"}]})}get isDatetime(){return!!this._def.checks.find(e=>"datetime"===e.kind)}get isDate(){return!!this._def.checks.find(e=>"date"===e.kind)}get isTime(){return!!this._def.checks.find(e=>"time"===e.kind)}get isDuration(){return!!this._def.checks.find(e=>"duration"===e.kind)}get isEmail(){return!!this._def.checks.find(e=>"email"===e.kind)}get isURL(){return!!this._def.checks.find(e=>"url"===e.kind)}get isEmoji(){return!!this._def.checks.find(e=>"emoji"===e.kind)}get isUUID(){return!!this._def.checks.find(e=>"uuid"===e.kind)}get isNANOID(){return!!this._def.checks.find(e=>"nanoid"===e.kind)}get isCUID(){return!!this._def.checks.find(e=>"cuid"===e.kind)}get isCUID2(){return!!this._def.checks.find(e=>"cuid2"===e.kind)}get isULID(){return!!this._def.checks.find(e=>"ulid"===e.kind)}get isIP(){return!!this._def.checks.find(e=>"ip"===e.kind)}get isCIDR(){return!!this._def.checks.find(e=>"cidr"===e.kind)}get isBase64(){return!!this._def.checks.find(e=>"base64"===e.kind)}get isBase64url(){return!!this._def.checks.find(e=>"base64url"===e.kind)}get minLength(){let e=null;for(let t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxLength(){let e=null;for(let t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}}t.ZodString=L,L.create=e=>new L({checks:[],typeName:r.ZodString,coerce:e?.coerce??!1,...p(e)});class A extends h{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte,this.step=this.multipleOf}_parse(e){let t;if(this._def.coerce&&(e.data=Number(e.data)),this._getType(e)!==u.ZodParsedType.number){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.number,received:t.parsedType}),c.INVALID}let n=new c.ParseStatus;for(let r of this._def.checks)"int"===r.kind?u.util.isInteger(e.data)||(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:"integer",received:"float",message:r.message}),n.dirty()):"min"===r.kind?(r.inclusive?e.data<r.value:e.data<=r.value)&&(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.too_small,minimum:r.value,type:"number",inclusive:r.inclusive,exact:!1,message:r.message}),n.dirty()):"max"===r.kind?(r.inclusive?e.data>r.value:e.data>=r.value)&&(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.too_big,maximum:r.value,type:"number",inclusive:r.inclusive,exact:!1,message:r.message}),n.dirty()):"multipleOf"===r.kind?0!==function(e,t){let n=(e.toString().split(".")[1]||"").length,r=(t.toString().split(".")[1]||"").length,o=n>r?n:r;return Number.parseInt(e.toFixed(o).replace(".",""))%Number.parseInt(t.toFixed(o).replace(".",""))/10**o}(e.data,r.value)&&(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.not_multiple_of,multipleOf:r.value,message:r.message}),n.dirty()):"finite"===r.kind?Number.isFinite(e.data)||(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.not_finite,message:r.message}),n.dirty()):u.util.assertNever(r);return{status:n.value,value:e.data}}gte(e,t){return this.setLimit("min",e,!0,s.errorUtil.toString(t))}gt(e,t){return this.setLimit("min",e,!1,s.errorUtil.toString(t))}lte(e,t){return this.setLimit("max",e,!0,s.errorUtil.toString(t))}lt(e,t){return this.setLimit("max",e,!1,s.errorUtil.toString(t))}setLimit(e,t,n,r){return new A({...this._def,checks:[...this._def.checks,{kind:e,value:t,inclusive:n,message:s.errorUtil.toString(r)}]})}_addCheck(e){return new A({...this._def,checks:[...this._def.checks,e]})}int(e){return this._addCheck({kind:"int",message:s.errorUtil.toString(e)})}positive(e){return this._addCheck({kind:"min",value:0,inclusive:!1,message:s.errorUtil.toString(e)})}negative(e){return this._addCheck({kind:"max",value:0,inclusive:!1,message:s.errorUtil.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:0,inclusive:!0,message:s.errorUtil.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:0,inclusive:!0,message:s.errorUtil.toString(e)})}multipleOf(e,t){return this._addCheck({kind:"multipleOf",value:e,message:s.errorUtil.toString(t)})}finite(e){return this._addCheck({kind:"finite",message:s.errorUtil.toString(e)})}safe(e){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:s.errorUtil.toString(e)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:s.errorUtil.toString(e)})}get minValue(){let e=null;for(let t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxValue(){let e=null;for(let t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}get isInt(){return!!this._def.checks.find(e=>"int"===e.kind||"multipleOf"===e.kind&&u.util.isInteger(e.value))}get isFinite(){let e=null,t=null;for(let n of this._def.checks)if("finite"===n.kind||"int"===n.kind||"multipleOf"===n.kind)return!0;else"min"===n.kind?(null===t||n.value>t)&&(t=n.value):"max"===n.kind&&(null===e||n.value<e)&&(e=n.value);return Number.isFinite(t)&&Number.isFinite(e)}}t.ZodNumber=A,A.create=e=>new A({checks:[],typeName:r.ZodNumber,coerce:e?.coerce||!1,...p(e)});class z extends h{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte}_parse(e){let t;if(this._def.coerce)try{e.data=BigInt(e.data)}catch{return this._getInvalidInput(e)}if(this._getType(e)!==u.ZodParsedType.bigint)return this._getInvalidInput(e);let n=new c.ParseStatus;for(let r of this._def.checks)"min"===r.kind?(r.inclusive?e.data<r.value:e.data<=r.value)&&(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.too_small,type:"bigint",minimum:r.value,inclusive:r.inclusive,message:r.message}),n.dirty()):"max"===r.kind?(r.inclusive?e.data>r.value:e.data>=r.value)&&(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.too_big,type:"bigint",maximum:r.value,inclusive:r.inclusive,message:r.message}),n.dirty()):"multipleOf"===r.kind?e.data%r.value!==BigInt(0)&&(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.not_multiple_of,multipleOf:r.value,message:r.message}),n.dirty()):u.util.assertNever(r);return{status:n.value,value:e.data}}_getInvalidInput(e){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.bigint,received:t.parsedType}),c.INVALID}gte(e,t){return this.setLimit("min",e,!0,s.errorUtil.toString(t))}gt(e,t){return this.setLimit("min",e,!1,s.errorUtil.toString(t))}lte(e,t){return this.setLimit("max",e,!0,s.errorUtil.toString(t))}lt(e,t){return this.setLimit("max",e,!1,s.errorUtil.toString(t))}setLimit(e,t,n,r){return new z({...this._def,checks:[...this._def.checks,{kind:e,value:t,inclusive:n,message:s.errorUtil.toString(r)}]})}_addCheck(e){return new z({...this._def,checks:[...this._def.checks,e]})}positive(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!1,message:s.errorUtil.toString(e)})}negative(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:s.errorUtil.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:s.errorUtil.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:s.errorUtil.toString(e)})}multipleOf(e,t){return this._addCheck({kind:"multipleOf",value:e,message:s.errorUtil.toString(t)})}get minValue(){let e=null;for(let t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxValue(){let e=null;for(let t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}}t.ZodBigInt=z,z.create=e=>new z({checks:[],typeName:r.ZodBigInt,coerce:e?.coerce??!1,...p(e)});class R extends h{_parse(e){if(this._def.coerce&&(e.data=!!e.data),this._getType(e)!==u.ZodParsedType.boolean){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.boolean,received:t.parsedType}),c.INVALID}return(0,c.OK)(e.data)}}t.ZodBoolean=R,R.create=e=>new R({typeName:r.ZodBoolean,coerce:e?.coerce||!1,...p(e)});class D extends h{_parse(e){let t;if(this._def.coerce&&(e.data=new Date(e.data)),this._getType(e)!==u.ZodParsedType.date){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.date,received:t.parsedType}),c.INVALID}if(Number.isNaN(e.data.getTime())){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_date}),c.INVALID}let n=new c.ParseStatus;for(let r of this._def.checks)"min"===r.kind?e.data.getTime()<r.value&&(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.too_small,message:r.message,inclusive:!0,exact:!1,minimum:r.value,type:"date"}),n.dirty()):"max"===r.kind?e.data.getTime()>r.value&&(t=this._getOrReturnCtx(e,t),(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.too_big,message:r.message,inclusive:!0,exact:!1,maximum:r.value,type:"date"}),n.dirty()):u.util.assertNever(r);return{status:n.value,value:new Date(e.data.getTime())}}_addCheck(e){return new D({...this._def,checks:[...this._def.checks,e]})}min(e,t){return this._addCheck({kind:"min",value:e.getTime(),message:s.errorUtil.toString(t)})}max(e,t){return this._addCheck({kind:"max",value:e.getTime(),message:s.errorUtil.toString(t)})}get minDate(){let e=null;for(let t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return null!=e?new Date(e):null}get maxDate(){let e=null;for(let t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return null!=e?new Date(e):null}}t.ZodDate=D,D.create=e=>new D({checks:[],coerce:e?.coerce||!1,typeName:r.ZodDate,...p(e)});class M extends h{_parse(e){if(this._getType(e)!==u.ZodParsedType.symbol){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.symbol,received:t.parsedType}),c.INVALID}return(0,c.OK)(e.data)}}t.ZodSymbol=M,M.create=e=>new M({typeName:r.ZodSymbol,...p(e)});class Z extends h{_parse(e){if(this._getType(e)!==u.ZodParsedType.undefined){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.undefined,received:t.parsedType}),c.INVALID}return(0,c.OK)(e.data)}}t.ZodUndefined=Z,Z.create=e=>new Z({typeName:r.ZodUndefined,...p(e)});class U extends h{_parse(e){if(this._getType(e)!==u.ZodParsedType.null){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.null,received:t.parsedType}),c.INVALID}return(0,c.OK)(e.data)}}t.ZodNull=U,U.create=e=>new U({typeName:r.ZodNull,...p(e)});class F extends h{constructor(){super(...arguments),this._any=!0}_parse(e){return(0,c.OK)(e.data)}}t.ZodAny=F,F.create=e=>new F({typeName:r.ZodAny,...p(e)});class H extends h{constructor(){super(...arguments),this._unknown=!0}_parse(e){return(0,c.OK)(e.data)}}t.ZodUnknown=H,H.create=e=>new H({typeName:r.ZodUnknown,...p(e)});class V extends h{_parse(e){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.never,received:t.parsedType}),c.INVALID}}t.ZodNever=V,V.create=e=>new V({typeName:r.ZodNever,...p(e)});class B extends h{_parse(e){if(this._getType(e)!==u.ZodParsedType.undefined){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.void,received:t.parsedType}),c.INVALID}return(0,c.OK)(e.data)}}t.ZodVoid=B,B.create=e=>new B({typeName:r.ZodVoid,...p(e)});class $ extends h{_parse(e){let{ctx:t,status:n}=this._processInputParams(e),r=this._def;if(t.parsedType!==u.ZodParsedType.array)return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.array,received:t.parsedType}),c.INVALID;if(null!==r.exactLength){let e=t.data.length>r.exactLength.value,o=t.data.length<r.exactLength.value;(e||o)&&((0,c.addIssueToContext)(t,{code:e?i.ZodIssueCode.too_big:i.ZodIssueCode.too_small,minimum:o?r.exactLength.value:void 0,maximum:e?r.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:r.exactLength.message}),n.dirty())}if(null!==r.minLength&&t.data.length<r.minLength.value&&((0,c.addIssueToContext)(t,{code:i.ZodIssueCode.too_small,minimum:r.minLength.value,type:"array",inclusive:!0,exact:!1,message:r.minLength.message}),n.dirty()),null!==r.maxLength&&t.data.length>r.maxLength.value&&((0,c.addIssueToContext)(t,{code:i.ZodIssueCode.too_big,maximum:r.maxLength.value,type:"array",inclusive:!0,exact:!1,message:r.maxLength.message}),n.dirty()),t.common.async)return Promise.all([...t.data].map((e,n)=>r.type._parseAsync(new d(t,e,t.path,n)))).then(e=>c.ParseStatus.mergeArray(n,e));let o=[...t.data].map((e,n)=>r.type._parseSync(new d(t,e,t.path,n)));return c.ParseStatus.mergeArray(n,o)}get element(){return this._def.type}min(e,t){return new $({...this._def,minLength:{value:e,message:s.errorUtil.toString(t)}})}max(e,t){return new $({...this._def,maxLength:{value:e,message:s.errorUtil.toString(t)}})}length(e,t){return new $({...this._def,exactLength:{value:e,message:s.errorUtil.toString(t)}})}nonempty(e){return this.min(1,e)}}t.ZodArray=$,$.create=(e,t)=>new $({type:e,minLength:null,maxLength:null,exactLength:null,typeName:r.ZodArray,...p(t)});class q extends h{constructor(){super(...arguments),this._cached=null,this.nonstrict=this.passthrough,this.augment=this.extend}_getCached(){if(null!==this._cached)return this._cached;let e=this._def.shape(),t=u.util.objectKeys(e);return this._cached={shape:e,keys:t},this._cached}_parse(e){if(this._getType(e)!==u.ZodParsedType.object){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.object,received:t.parsedType}),c.INVALID}let{status:t,ctx:n}=this._processInputParams(e),{shape:r,keys:o}=this._getCached(),a=[];if(!(this._def.catchall instanceof V&&"strip"===this._def.unknownKeys))for(let e in n.data)o.includes(e)||a.push(e);let l=[];for(let e of o){let t=r[e],o=n.data[e];l.push({key:{status:"valid",value:e},value:t._parse(new d(n,o,n.path,e)),alwaysSet:e in n.data})}if(this._def.catchall instanceof V){let e=this._def.unknownKeys;if("passthrough"===e)for(let e of a)l.push({key:{status:"valid",value:e},value:{status:"valid",value:n.data[e]}});else if("strict"===e)a.length>0&&((0,c.addIssueToContext)(n,{code:i.ZodIssueCode.unrecognized_keys,keys:a}),t.dirty());else if("strip"===e);else throw Error("Internal ZodObject error: invalid unknownKeys value.")}else{let e=this._def.catchall;for(let t of a){let r=n.data[t];l.push({key:{status:"valid",value:t},value:e._parse(new d(n,r,n.path,t)),alwaysSet:t in n.data})}}return n.common.async?Promise.resolve().then(async()=>{let e=[];for(let t of l){let n=await t.key,r=await t.value;e.push({key:n,value:r,alwaysSet:t.alwaysSet})}return e}).then(e=>c.ParseStatus.mergeObjectSync(t,e)):c.ParseStatus.mergeObjectSync(t,l)}get shape(){return this._def.shape()}strict(e){return s.errorUtil.errToObj,new q({...this._def,unknownKeys:"strict",...void 0!==e?{errorMap:(t,n)=>{let r=this._def.errorMap?.(t,n).message??n.defaultError;return"unrecognized_keys"===t.code?{message:s.errorUtil.errToObj(e).message??r}:{message:r}}}:{}})}strip(){return new q({...this._def,unknownKeys:"strip"})}passthrough(){return new q({...this._def,unknownKeys:"passthrough"})}extend(e){return new q({...this._def,shape:()=>({...this._def.shape(),...e})})}merge(e){return new q({unknownKeys:e._def.unknownKeys,catchall:e._def.catchall,shape:()=>({...this._def.shape(),...e._def.shape()}),typeName:r.ZodObject})}setKey(e,t){return this.augment({[e]:t})}catchall(e){return new q({...this._def,catchall:e})}pick(e){let t={};for(let n of u.util.objectKeys(e))e[n]&&this.shape[n]&&(t[n]=this.shape[n]);return new q({...this._def,shape:()=>t})}omit(e){let t={};for(let n of u.util.objectKeys(this.shape))e[n]||(t[n]=this.shape[n]);return new q({...this._def,shape:()=>t})}deepPartial(){return function e(t){if(t instanceof q){let n={};for(let r in t.shape){let o=t.shape[r];n[r]=ec.create(e(o))}return new q({...t._def,shape:()=>n})}if(t instanceof $)return new $({...t._def,type:e(t.element)});if(t instanceof ec)return ec.create(e(t.unwrap()));if(t instanceof eu)return eu.create(e(t.unwrap()));if(t instanceof G)return G.create(t.items.map(t=>e(t)));else return t}(this)}partial(e){let t={};for(let n of u.util.objectKeys(this.shape)){let r=this.shape[n];e&&!e[n]?t[n]=r:t[n]=r.optional()}return new q({...this._def,shape:()=>t})}required(e){let t={};for(let n of u.util.objectKeys(this.shape))if(e&&!e[n])t[n]=this.shape[n];else{let e=this.shape[n];for(;e instanceof ec;)e=e._def.innerType;t[n]=e}return new q({...this._def,shape:()=>t})}keyof(){return eo(u.util.objectKeys(this.shape))}}t.ZodObject=q,q.create=(e,t)=>new q({shape:()=>e,unknownKeys:"strip",catchall:V.create(),typeName:r.ZodObject,...p(t)}),q.strictCreate=(e,t)=>new q({shape:()=>e,unknownKeys:"strict",catchall:V.create(),typeName:r.ZodObject,...p(t)}),q.lazycreate=(e,t)=>new q({shape:e,unknownKeys:"strip",catchall:V.create(),typeName:r.ZodObject,...p(t)});class W extends h{_parse(e){let{ctx:t}=this._processInputParams(e),n=this._def.options;if(t.common.async)return Promise.all(n.map(async e=>{let n={...t,common:{...t.common,issues:[]},parent:null};return{result:await e._parseAsync({data:t.data,path:t.path,parent:n}),ctx:n}})).then(function(e){for(let t of e)if("valid"===t.result.status)return t.result;for(let n of e)if("dirty"===n.result.status)return t.common.issues.push(...n.ctx.common.issues),n.result;let n=e.map(e=>new i.ZodError(e.ctx.common.issues));return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_union,unionErrors:n}),c.INVALID});{let e,r=[];for(let o of n){let n={...t,common:{...t.common,issues:[]},parent:null},a=o._parseSync({data:t.data,path:t.path,parent:n});if("valid"===a.status)return a;"dirty"!==a.status||e||(e={result:a,ctx:n}),n.common.issues.length&&r.push(n.common.issues)}if(e)return t.common.issues.push(...e.ctx.common.issues),e.result;let o=r.map(e=>new i.ZodError(e));return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_union,unionErrors:o}),c.INVALID}}get options(){return this._def.options}}t.ZodUnion=W,W.create=(e,t)=>new W({options:e,typeName:r.ZodUnion,...p(t)});let K=e=>{if(e instanceof en)return K(e.schema);if(e instanceof es)return K(e.innerType());if(e instanceof er)return[e.value];if(e instanceof ea)return e.options;if(e instanceof ei)return u.util.objectValues(e.enum);else if(e instanceof ed)return K(e._def.innerType);else if(e instanceof Z)return[void 0];else if(e instanceof U)return[null];else if(e instanceof ec)return[void 0,...K(e.unwrap())];else if(e instanceof eu)return[null,...K(e.unwrap())];else if(e instanceof eh)return K(e.unwrap());else if(e instanceof eg)return K(e.unwrap());else if(e instanceof ef)return K(e._def.innerType);else return[]};class Y extends h{_parse(e){let{ctx:t}=this._processInputParams(e);if(t.parsedType!==u.ZodParsedType.object)return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.object,received:t.parsedType}),c.INVALID;let n=this.discriminator,r=t.data[n],o=this.optionsMap.get(r);return o?t.common.async?o._parseAsync({data:t.data,path:t.path,parent:t}):o._parseSync({data:t.data,path:t.path,parent:t}):((0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[n]}),c.INVALID)}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(e,t,n){let o=new Map;for(let n of t){let t=K(n.shape[e]);if(!t.length)throw Error(`A discriminator value for key \`${e}\` could not be extracted from all schema options`);for(let r of t){if(o.has(r))throw Error(`Discriminator property ${String(e)} has duplicate value ${String(r)}`);o.set(r,n)}}return new Y({typeName:r.ZodDiscriminatedUnion,discriminator:e,options:t,optionsMap:o,...p(n)})}}t.ZodDiscriminatedUnion=Y;class X extends h{_parse(e){let{status:t,ctx:n}=this._processInputParams(e),r=(e,r)=>{if((0,c.isAborted)(e)||(0,c.isAborted)(r))return c.INVALID;let o=function e(t,n){let r=(0,u.getParsedType)(t),o=(0,u.getParsedType)(n);if(t===n)return{valid:!0,data:t};if(r===u.ZodParsedType.object&&o===u.ZodParsedType.object){let r=u.util.objectKeys(n),o=u.util.objectKeys(t).filter(e=>-1!==r.indexOf(e)),a={...t,...n};for(let r of o){let o=e(t[r],n[r]);if(!o.valid)return{valid:!1};a[r]=o.data}return{valid:!0,data:a}}if(r===u.ZodParsedType.array&&o===u.ZodParsedType.array){if(t.length!==n.length)return{valid:!1};let r=[];for(let o=0;o<t.length;o++){let a=e(t[o],n[o]);if(!a.valid)return{valid:!1};r.push(a.data)}return{valid:!0,data:r}}if(r===u.ZodParsedType.date&&o===u.ZodParsedType.date&&+t==+n)return{valid:!0,data:t};return{valid:!1}}(e.value,r.value);return o.valid?(((0,c.isDirty)(e)||(0,c.isDirty)(r))&&t.dirty(),{status:t.value,value:o.data}):((0,c.addIssueToContext)(n,{code:i.ZodIssueCode.invalid_intersection_types}),c.INVALID)};return n.common.async?Promise.all([this._def.left._parseAsync({data:n.data,path:n.path,parent:n}),this._def.right._parseAsync({data:n.data,path:n.path,parent:n})]).then(([e,t])=>r(e,t)):r(this._def.left._parseSync({data:n.data,path:n.path,parent:n}),this._def.right._parseSync({data:n.data,path:n.path,parent:n}))}}t.ZodIntersection=X,X.create=(e,t,n)=>new X({left:e,right:t,typeName:r.ZodIntersection,...p(n)});class G extends h{_parse(e){let{status:t,ctx:n}=this._processInputParams(e);if(n.parsedType!==u.ZodParsedType.array)return(0,c.addIssueToContext)(n,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.array,received:n.parsedType}),c.INVALID;if(n.data.length<this._def.items.length)return(0,c.addIssueToContext)(n,{code:i.ZodIssueCode.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),c.INVALID;!this._def.rest&&n.data.length>this._def.items.length&&((0,c.addIssueToContext)(n,{code:i.ZodIssueCode.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),t.dirty());let r=[...n.data].map((e,t)=>{let r=this._def.items[t]||this._def.rest;return r?r._parse(new d(n,e,n.path,t)):null}).filter(e=>!!e);return n.common.async?Promise.all(r).then(e=>c.ParseStatus.mergeArray(t,e)):c.ParseStatus.mergeArray(t,r)}get items(){return this._def.items}rest(e){return new G({...this._def,rest:e})}}t.ZodTuple=G,G.create=(e,t)=>{if(!Array.isArray(e))throw Error("You must pass an array of schemas to z.tuple([ ... ])");return new G({items:e,typeName:r.ZodTuple,rest:null,...p(t)})};class Q extends h{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){let{status:t,ctx:n}=this._processInputParams(e);if(n.parsedType!==u.ZodParsedType.object)return(0,c.addIssueToContext)(n,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.object,received:n.parsedType}),c.INVALID;let r=[],o=this._def.keyType,a=this._def.valueType;for(let e in n.data)r.push({key:o._parse(new d(n,e,n.path,e)),value:a._parse(new d(n,n.data[e],n.path,e)),alwaysSet:e in n.data});return n.common.async?c.ParseStatus.mergeObjectAsync(t,r):c.ParseStatus.mergeObjectSync(t,r)}get element(){return this._def.valueType}static create(e,t,n){return new Q(t instanceof h?{keyType:e,valueType:t,typeName:r.ZodRecord,...p(n)}:{keyType:L.create(),valueType:e,typeName:r.ZodRecord,...p(t)})}}t.ZodRecord=Q;class J extends h{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){let{status:t,ctx:n}=this._processInputParams(e);if(n.parsedType!==u.ZodParsedType.map)return(0,c.addIssueToContext)(n,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.map,received:n.parsedType}),c.INVALID;let r=this._def.keyType,o=this._def.valueType,a=[...n.data.entries()].map(([e,t],a)=>({key:r._parse(new d(n,e,n.path,[a,"key"])),value:o._parse(new d(n,t,n.path,[a,"value"]))}));if(n.common.async){let e=new Map;return Promise.resolve().then(async()=>{for(let n of a){let r=await n.key,o=await n.value;if("aborted"===r.status||"aborted"===o.status)return c.INVALID;("dirty"===r.status||"dirty"===o.status)&&t.dirty(),e.set(r.value,o.value)}return{status:t.value,value:e}})}{let e=new Map;for(let n of a){let r=n.key,o=n.value;if("aborted"===r.status||"aborted"===o.status)return c.INVALID;("dirty"===r.status||"dirty"===o.status)&&t.dirty(),e.set(r.value,o.value)}return{status:t.value,value:e}}}}t.ZodMap=J,J.create=(e,t,n)=>new J({valueType:t,keyType:e,typeName:r.ZodMap,...p(n)});class ee extends h{_parse(e){let{status:t,ctx:n}=this._processInputParams(e);if(n.parsedType!==u.ZodParsedType.set)return(0,c.addIssueToContext)(n,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.set,received:n.parsedType}),c.INVALID;let r=this._def;null!==r.minSize&&n.data.size<r.minSize.value&&((0,c.addIssueToContext)(n,{code:i.ZodIssueCode.too_small,minimum:r.minSize.value,type:"set",inclusive:!0,exact:!1,message:r.minSize.message}),t.dirty()),null!==r.maxSize&&n.data.size>r.maxSize.value&&((0,c.addIssueToContext)(n,{code:i.ZodIssueCode.too_big,maximum:r.maxSize.value,type:"set",inclusive:!0,exact:!1,message:r.maxSize.message}),t.dirty());let o=this._def.valueType;function a(e){let n=new Set;for(let r of e){if("aborted"===r.status)return c.INVALID;"dirty"===r.status&&t.dirty(),n.add(r.value)}return{status:t.value,value:n}}let l=[...n.data.values()].map((e,t)=>o._parse(new d(n,e,n.path,t)));return n.common.async?Promise.all(l).then(e=>a(e)):a(l)}min(e,t){return new ee({...this._def,minSize:{value:e,message:s.errorUtil.toString(t)}})}max(e,t){return new ee({...this._def,maxSize:{value:e,message:s.errorUtil.toString(t)}})}size(e,t){return this.min(e,t).max(e,t)}nonempty(e){return this.min(1,e)}}t.ZodSet=ee,ee.create=(e,t)=>new ee({valueType:e,minSize:null,maxSize:null,typeName:r.ZodSet,...p(t)});class et extends h{constructor(){super(...arguments),this.validate=this.implement}_parse(e){let{ctx:t}=this._processInputParams(e);if(t.parsedType!==u.ZodParsedType.function)return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.function,received:t.parsedType}),c.INVALID;function n(e,n){return(0,c.makeIssue)({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,(0,l.getErrorMap)(),l.defaultErrorMap].filter(e=>!!e),issueData:{code:i.ZodIssueCode.invalid_arguments,argumentsError:n}})}function r(e,n){return(0,c.makeIssue)({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,(0,l.getErrorMap)(),l.defaultErrorMap].filter(e=>!!e),issueData:{code:i.ZodIssueCode.invalid_return_type,returnTypeError:n}})}let o={errorMap:t.common.contextualErrorMap},a=t.data;if(this._def.returns instanceof el){let e=this;return(0,c.OK)(async function(...t){let l=new i.ZodError([]),s=await e._def.args.parseAsync(t,o).catch(e=>{throw l.addIssue(n(t,e)),l}),c=await Reflect.apply(a,this,s);return await e._def.returns._def.type.parseAsync(c,o).catch(e=>{throw l.addIssue(r(c,e)),l})})}{let e=this;return(0,c.OK)(function(...t){let l=e._def.args.safeParse(t,o);if(!l.success)throw new i.ZodError([n(t,l.error)]);let s=Reflect.apply(a,this,l.data),c=e._def.returns.safeParse(s,o);if(!c.success)throw new i.ZodError([r(s,c.error)]);return c.data})}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...e){return new et({...this._def,args:G.create(e).rest(H.create())})}returns(e){return new et({...this._def,returns:e})}implement(e){return this.parse(e)}strictImplement(e){return this.parse(e)}static create(e,t,n){return new et({args:e||G.create([]).rest(H.create()),returns:t||H.create(),typeName:r.ZodFunction,...p(n)})}}t.ZodFunction=et;class en extends h{get schema(){return this._def.getter()}_parse(e){let{ctx:t}=this._processInputParams(e);return this._def.getter()._parse({data:t.data,path:t.path,parent:t})}}t.ZodLazy=en,en.create=(e,t)=>new en({getter:e,typeName:r.ZodLazy,...p(t)});class er extends h{_parse(e){if(e.data!==this._def.value){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{received:t.data,code:i.ZodIssueCode.invalid_literal,expected:this._def.value}),c.INVALID}return{status:"valid",value:e.data}}get value(){return this._def.value}}function eo(e,t){return new ea({values:e,typeName:r.ZodEnum,...p(t)})}t.ZodLiteral=er,er.create=(e,t)=>new er({value:e,typeName:r.ZodLiteral,...p(t)});class ea extends h{_parse(e){if("string"!=typeof e.data){let t=this._getOrReturnCtx(e),n=this._def.values;return(0,c.addIssueToContext)(t,{expected:u.util.joinValues(n),received:t.parsedType,code:i.ZodIssueCode.invalid_type}),c.INVALID}if(this._cache||(this._cache=new Set(this._def.values)),!this._cache.has(e.data)){let t=this._getOrReturnCtx(e),n=this._def.values;return(0,c.addIssueToContext)(t,{received:t.data,code:i.ZodIssueCode.invalid_enum_value,options:n}),c.INVALID}return(0,c.OK)(e.data)}get options(){return this._def.values}get enum(){let e={};for(let t of this._def.values)e[t]=t;return e}get Values(){let e={};for(let t of this._def.values)e[t]=t;return e}get Enum(){let e={};for(let t of this._def.values)e[t]=t;return e}extract(e,t=this._def){return ea.create(e,{...this._def,...t})}exclude(e,t=this._def){return ea.create(this.options.filter(t=>!e.includes(t)),{...this._def,...t})}}t.ZodEnum=ea,ea.create=eo;class ei extends h{_parse(e){let t=u.util.getValidEnumValues(this._def.values),n=this._getOrReturnCtx(e);if(n.parsedType!==u.ZodParsedType.string&&n.parsedType!==u.ZodParsedType.number){let e=u.util.objectValues(t);return(0,c.addIssueToContext)(n,{expected:u.util.joinValues(e),received:n.parsedType,code:i.ZodIssueCode.invalid_type}),c.INVALID}if(this._cache||(this._cache=new Set(u.util.getValidEnumValues(this._def.values))),!this._cache.has(e.data)){let e=u.util.objectValues(t);return(0,c.addIssueToContext)(n,{received:n.data,code:i.ZodIssueCode.invalid_enum_value,options:e}),c.INVALID}return(0,c.OK)(e.data)}get enum(){return this._def.values}}t.ZodNativeEnum=ei,ei.create=(e,t)=>new ei({values:e,typeName:r.ZodNativeEnum,...p(t)});class el extends h{unwrap(){return this._def.type}_parse(e){let{ctx:t}=this._processInputParams(e);if(t.parsedType!==u.ZodParsedType.promise&&!1===t.common.async)return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.promise,received:t.parsedType}),c.INVALID;let n=t.parsedType===u.ZodParsedType.promise?t.data:Promise.resolve(t.data);return(0,c.OK)(n.then(e=>this._def.type.parseAsync(e,{path:t.path,errorMap:t.common.contextualErrorMap})))}}t.ZodPromise=el,el.create=(e,t)=>new el({type:e,typeName:r.ZodPromise,...p(t)});class es extends h{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===r.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(e){let{status:t,ctx:n}=this._processInputParams(e),r=this._def.effect||null,o={addIssue:e=>{(0,c.addIssueToContext)(n,e),e.fatal?t.abort():t.dirty()},get path(){return n.path}};if(o.addIssue=o.addIssue.bind(o),"preprocess"===r.type){let e=r.transform(n.data,o);if(n.common.async)return Promise.resolve(e).then(async e=>{if("aborted"===t.value)return c.INVALID;let r=await this._def.schema._parseAsync({data:e,path:n.path,parent:n});return"aborted"===r.status?c.INVALID:"dirty"===r.status||"dirty"===t.value?(0,c.DIRTY)(r.value):r});{if("aborted"===t.value)return c.INVALID;let r=this._def.schema._parseSync({data:e,path:n.path,parent:n});return"aborted"===r.status?c.INVALID:"dirty"===r.status||"dirty"===t.value?(0,c.DIRTY)(r.value):r}}if("refinement"===r.type){let e=e=>{let t=r.refinement(e,o);if(n.common.async)return Promise.resolve(t);if(t instanceof Promise)throw Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");return e};if(!1!==n.common.async)return this._def.schema._parseAsync({data:n.data,path:n.path,parent:n}).then(n=>"aborted"===n.status?c.INVALID:("dirty"===n.status&&t.dirty(),e(n.value).then(()=>({status:t.value,value:n.value}))));{let r=this._def.schema._parseSync({data:n.data,path:n.path,parent:n});return"aborted"===r.status?c.INVALID:("dirty"===r.status&&t.dirty(),e(r.value),{status:t.value,value:r.value})}}if("transform"===r.type)if(!1!==n.common.async)return this._def.schema._parseAsync({data:n.data,path:n.path,parent:n}).then(e=>(0,c.isValid)(e)?Promise.resolve(r.transform(e.value,o)).then(e=>({status:t.value,value:e})):c.INVALID);else{let e=this._def.schema._parseSync({data:n.data,path:n.path,parent:n});if(!(0,c.isValid)(e))return c.INVALID;let a=r.transform(e.value,o);if(a instanceof Promise)throw Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:t.value,value:a}}u.util.assertNever(r)}}t.ZodEffects=es,t.ZodTransformer=es,es.create=(e,t,n)=>new es({schema:e,typeName:r.ZodEffects,effect:t,...p(n)}),es.createWithPreprocess=(e,t,n)=>new es({schema:t,effect:{type:"preprocess",transform:e},typeName:r.ZodEffects,...p(n)});class ec extends h{_parse(e){return this._getType(e)===u.ZodParsedType.undefined?(0,c.OK)(void 0):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}}t.ZodOptional=ec,ec.create=(e,t)=>new ec({innerType:e,typeName:r.ZodOptional,...p(t)});class eu extends h{_parse(e){return this._getType(e)===u.ZodParsedType.null?(0,c.OK)(null):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}}t.ZodNullable=eu,eu.create=(e,t)=>new eu({innerType:e,typeName:r.ZodNullable,...p(t)});class ed extends h{_parse(e){let{ctx:t}=this._processInputParams(e),n=t.data;return t.parsedType===u.ZodParsedType.undefined&&(n=this._def.defaultValue()),this._def.innerType._parse({data:n,path:t.path,parent:t})}removeDefault(){return this._def.innerType}}t.ZodDefault=ed,ed.create=(e,t)=>new ed({innerType:e,typeName:r.ZodDefault,defaultValue:"function"==typeof t.default?t.default:()=>t.default,...p(t)});class ef extends h{_parse(e){let{ctx:t}=this._processInputParams(e),n={...t,common:{...t.common,issues:[]}},r=this._def.innerType._parse({data:n.data,path:n.path,parent:{...n}});return(0,c.isAsync)(r)?r.then(e=>({status:"valid",value:"valid"===e.status?e.value:this._def.catchValue({get error(){return new i.ZodError(n.common.issues)},input:n.data})})):{status:"valid",value:"valid"===r.status?r.value:this._def.catchValue({get error(){return new i.ZodError(n.common.issues)},input:n.data})}}removeCatch(){return this._def.innerType}}t.ZodCatch=ef,ef.create=(e,t)=>new ef({innerType:e,typeName:r.ZodCatch,catchValue:"function"==typeof t.catch?t.catch:()=>t.catch,...p(t)});class ep extends h{_parse(e){if(this._getType(e)!==u.ZodParsedType.nan){let t=this._getOrReturnCtx(e);return(0,c.addIssueToContext)(t,{code:i.ZodIssueCode.invalid_type,expected:u.ZodParsedType.nan,received:t.parsedType}),c.INVALID}return{status:"valid",value:e.data}}}t.ZodNaN=ep,ep.create=e=>new ep({typeName:r.ZodNaN,...p(e)}),t.BRAND=Symbol("zod_brand");class eh extends h{_parse(e){let{ctx:t}=this._processInputParams(e),n=t.data;return this._def.type._parse({data:n,path:t.path,parent:t})}unwrap(){return this._def.type}}t.ZodBranded=eh;class em extends h{_parse(e){let{status:t,ctx:n}=this._processInputParams(e);if(n.common.async)return(async()=>{let e=await this._def.in._parseAsync({data:n.data,path:n.path,parent:n});return"aborted"===e.status?c.INVALID:"dirty"===e.status?(t.dirty(),(0,c.DIRTY)(e.value)):this._def.out._parseAsync({data:e.value,path:n.path,parent:n})})();{let e=this._def.in._parseSync({data:n.data,path:n.path,parent:n});return"aborted"===e.status?c.INVALID:"dirty"===e.status?(t.dirty(),{status:"dirty",value:e.value}):this._def.out._parseSync({data:e.value,path:n.path,parent:n})}}static create(e,t){return new em({in:e,out:t,typeName:r.ZodPipeline})}}t.ZodPipeline=em;class eg extends h{_parse(e){let t=this._def.innerType._parse(e),n=e=>((0,c.isValid)(e)&&(e.value=Object.freeze(e.value)),e);return(0,c.isAsync)(t)?t.then(e=>n(e)):n(t)}unwrap(){return this._def.innerType}}function ey(e,t){let n="function"==typeof e?e(t):"string"==typeof e?{message:e}:e;return"string"==typeof n?{message:n}:n}function ev(e,t={},n){return e?F.create().superRefine((r,o)=>{let a=e(r);if(a instanceof Promise)return a.then(e=>{if(!e){let e=ey(t,r),a=e.fatal??n??!0;o.addIssue({code:"custom",...e,fatal:a})}});if(!a){let e=ey(t,r),a=e.fatal??n??!0;o.addIssue({code:"custom",...e,fatal:a})}}):F.create()}t.ZodReadonly=eg,eg.create=(e,t)=>new eg({innerType:e,typeName:r.ZodReadonly,...p(t)}),t.late={object:q.lazycreate},(o=r||(t.ZodFirstPartyTypeKind=r={})).ZodString="ZodString",o.ZodNumber="ZodNumber",o.ZodNaN="ZodNaN",o.ZodBigInt="ZodBigInt",o.ZodBoolean="ZodBoolean",o.ZodDate="ZodDate",o.ZodSymbol="ZodSymbol",o.ZodUndefined="ZodUndefined",o.ZodNull="ZodNull",o.ZodAny="ZodAny",o.ZodUnknown="ZodUnknown",o.ZodNever="ZodNever",o.ZodVoid="ZodVoid",o.ZodArray="ZodArray",o.ZodObject="ZodObject",o.ZodUnion="ZodUnion",o.ZodDiscriminatedUnion="ZodDiscriminatedUnion",o.ZodIntersection="ZodIntersection",o.ZodTuple="ZodTuple",o.ZodRecord="ZodRecord",o.ZodMap="ZodMap",o.ZodSet="ZodSet",o.ZodFunction="ZodFunction",o.ZodLazy="ZodLazy",o.ZodLiteral="ZodLiteral",o.ZodEnum="ZodEnum",o.ZodEffects="ZodEffects",o.ZodNativeEnum="ZodNativeEnum",o.ZodOptional="ZodOptional",o.ZodNullable="ZodNullable",o.ZodDefault="ZodDefault",o.ZodCatch="ZodCatch",o.ZodPromise="ZodPromise",o.ZodBranded="ZodBranded",o.ZodPipeline="ZodPipeline",o.ZodReadonly="ZodReadonly",t.instanceof=(e,t={message:`Input not instance of ${e.name}`})=>ev(t=>t instanceof e,t);let eb=L.create;t.string=eb;let ex=A.create;t.number=ex,t.nan=ep.create,t.bigint=z.create;let ew=R.create;t.boolean=ew,t.date=D.create,t.symbol=M.create,t.undefined=Z.create,t.null=U.create,t.any=F.create,t.unknown=H.create,t.never=V.create,t.void=B.create,t.array=$.create,t.object=q.create,t.strictObject=q.strictCreate,t.union=W.create,t.discriminatedUnion=Y.create,t.intersection=X.create,t.tuple=G.create,t.record=Q.create,t.map=J.create,t.set=ee.create,t.function=et.create,t.lazy=en.create,t.literal=er.create,t.enum=ea.create,t.nativeEnum=ei.create,t.promise=el.create;let e_=es.create;t.effect=e_,t.transformer=e_,t.optional=ec.create,t.nullable=eu.create,t.preprocess=es.createWithPreprocess,t.pipeline=em.create,t.ostring=()=>eb().optional(),t.onumber=()=>ex().optional(),t.oboolean=()=>ew().optional(),t.coerce={string:e=>L.create({...e,coerce:!0}),number:e=>A.create({...e,coerce:!0}),boolean:e=>R.create({...e,coerce:!0}),bigint:e=>z.create({...e,coerce:!0}),date:e=>D.create({...e,coerce:!0})},t.NEVER=c.INVALID}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var a=n[e]={exports:{}},i=!0;try{t[e].call(a.exports,a,a.exports,r),i=!1}finally{i&&delete n[e]}return a.exports}r.ab="//",e.exports=r(629)})()}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={id:e,exports:{}};return __webpack_modules__[e](n,n.exports,__webpack_require__),n.exports}__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t},(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(n,r){if(1&r&&(n=this(n)),8&r||"object"==typeof n&&n&&(4&r&&n.__esModule||16&r&&"function"==typeof n.then))return n;var o=Object.create(null);__webpack_require__.r(o);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&r&&n;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>n[e]});return a.default=()=>n,__webpack_require__.d(o,a),o}})(),__webpack_require__.d=(e,t)=>{for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),__webpack_require__.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},__webpack_require__.nc=void 0;var __webpack_exports__={};for(var __rspack_i in(()=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{DevOverlayContext:()=>dx,dispatcher:()=>dv,renderPagesDevOverlay:()=>dO,getSerializedOverlayState:()=>dm,useDevOverlayContext:()=>dw,renderAppDevOverlay:()=>dS,getSegmentTrieData:()=>dg});var e,t,n,r,o,a,i,l,s,c=__webpack_require__("../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),u=__webpack_require__.n(c),d=__webpack_require__("../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js"),f=__webpack_require__.n(d),p=__webpack_require__("./src/build/webpack/loaders/devtool/devtool-style-inject.js"),h=__webpack_require__.n(p),m=__webpack_require__("../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js"),g=__webpack_require__.n(m),y=__webpack_require__("../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js"),v=__webpack_require__.n(y),b=__webpack_require__("../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js"),x=__webpack_require__.n(b),w=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/global.css"),_={};_.styleTagTransform=x(),_.setAttributes=g(),_.insert=h(),_.domAPI=f(),_.insertStyleElement=v(),u()(w.A,_),w.A&&w.A.locals&&w.A.locals;var j=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/toast/style.css"),k={};k.styleTagTransform=x(),k.setAttributes=g(),k.insert=h(),k.domAPI=f(),k.insertStyleElement=v(),u()(j.A,k),j.A&&j.A.locals&&j.A.locals;var S=__webpack_require__("./dist/compiled/react/jsx-runtime.js"),O=__webpack_require__("./dist/compiled/react/compiler-runtime.js"),C=__webpack_require__("./dist/compiled/react/index.js"),P=__webpack_require__.t(C,2),E=__webpack_require__("./dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js"),T=/\/_next(\/static\/.+)/,N=Symbol.for("next.console.error.digest");function I(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function L(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){I(e,t,n[t])})}return e}function A(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}var z={Small:16/14,Medium:1,Large:16/18},R="cache-indicator",D="static-indicator",M="build-ok",Z="build-error",U="before-fast-refresh",F="fast-refresh",H="version-info",V="unhandled-error",B="unhandled-rejection",$="debug-info",q="dev-indicator",W="dev-indicator-disable",K="error-overlay-open",Y="error-overlay-close",X="error-overlay-toggle",G="building-indicator-show",Q="building-indicator-hide",J="rendering-indicator-show",ee="rendering-indicator-hide",et="devtools-position",en="devtools-panel-position",er="devtools-scale",eo="devtools-config",ea="__nextjs-dev-tools-panel-position",ei="__nextjs-dev-tools-panel-size",el="__nextjs-dev-tools-shared-panel-size",es="__nextjs-dev-tools-shared-panel-location",ec="segment-explorer-update-route-state",eu=/\s+(at Object\.react_stack_bottom_frame.*)|(react_stack_bottom_frame@.*)|(at react-stack-bottom-frame.*)|(react-stack-bottom-frame@.*)/;function ed(e){return null==e?void 0:e.split(eu)[0]}var ef=(null==(a=process.env.__NEXT_DEV_INDICATOR)?void 0:a.toString())==="false",ep=null!=(i=process.env.__NEXT_DEV_INDICATOR_POSITION)?i:"bottom-left",eh={nextId:1,buildError:null,errors:[],notFound:!1,renderingIndicator:!1,cacheIndicator:"disabled",staticIndicator:"disabled",showIndicator:!1,disableDevIndicator:!1,buildingIndicator:!1,refreshState:{type:"idle"},versionInfo:{installed:"0.0.0",staleness:"unknown"},debugInfo:{devtoolsFrontendUrl:void 0},devToolsPosition:ep,devToolsPanelPosition:I({},es,ep),devToolsPanelSize:{},scale:z.Medium,page:"",theme:"system",hideShortcut:null},em=__webpack_require__("./dist/compiled/react-dom/client.js");function eg(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=e.length-1;return(e.slice(0,o).reduce(function(e,t,r){return e+t+n[r]},"")+e[o]).replace(/\/\*[\s\S]*?\*\//g,"").replace(/\s+/g," ").replace(/\s*([:;,{}])\s*/g,"$1").replace(/;+}/g,"}").trim()}function ey(){var e,t,n=(e=["\n /* latin-ext */\n @font-face {\n font-family: '__nextjs-Geist';\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n src: url(/__nextjs_font/geist-latin-ext.woff2) format('woff2');\n unicode-range:\n U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,\n U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,\n U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n }\n /* latin-ext */\n @font-face {\n font-family: '__nextjs-Geist Mono';\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n src: url(/__nextjs_font/geist-mono-latin-ext.woff2) format('woff2');\n unicode-range:\n U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,\n U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,\n U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n }\n /* latin */\n @font-face {\n font-family: '__nextjs-Geist';\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n src: url(/__nextjs_font/geist-latin.woff2) format('woff2');\n unicode-range:\n U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,\n U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,\n U+2212, U+2215, U+FEFF, U+FFFD;\n }\n /* latin */\n @font-face {\n font-family: '__nextjs-Geist Mono';\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n src: url(/__nextjs_font/geist-mono-latin.woff2) format('woff2');\n unicode-range:\n U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,\n U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,\n U+2212, U+2215, U+FEFF, U+FFFD;\n }\n "],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return ey=function(){return n},n}var ev=function(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=[],t[0]=e):e=t[0],(0,C.useInsertionEffect)(eb,e),null};function eb(){var e=document.createElement("style");return e.textContent=eg(ey()),document.head.appendChild(e),function(){document.head.removeChild(e)}}var ex=__webpack_require__("./dist/compiled/react-dom/index.js");function ew(e){var t,n=(0,O.c)(3),r=e.children,o=dw().shadowRoot;return n[0]!==r||n[1]!==o?(t=(0,ex.createPortal)(r,o),n[0]=r,n[1]=o,n[2]=t):t=n[2],t}function e_(e){if(""===e.trim())throw Error("can't decode empty hex");var t=parseInt(e,16);if(isNaN(t))throw Error("invalid hex: `".concat(e,"`"));return String.fromCodePoint(t)}var ej=/^__TURBOPACK__([a-zA-Z0-9_$]+)__$/,ek=/__TURBOPACK__[a-zA-Z0-9_$]+__/g;function eS(e){return e.replace(/\[project\]/g,".").replace(/\s\[([^\]]*)\]/g,"").replace(/\s\(([^)]*)\)/g,"").replace(/\s<([^>]*)>/g,"").trim()}function eO(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var eC=/https?:\/\/[^\s/$.?#].[^\s)'"]*/i,eP=function(e){var t,n=(0,O.c)(7),r=e.text,o=e.matcher;if(n[0]!==o||n[1]!==r){var a,i,l=function(e){for(var t=e.replace(RegExp("\\(0\\s*,\\s*(__TURBOPACK__[a-zA-Z0-9_$]+__\\.[\\p{ID_Start}_$][\\p{ID_Continue}$]*)\\)","u"),"$1"),n=[],r=0,o=RegExp(ek.source,"g"),a=o.exec(t);null!==a;a=o.exec(t)){var i=a.index,l=o.lastIndex,s=a[0];if(i>r){var c=t.substring(r,i);n.push(["raw",c])}try{var u=function(e){var t=e.match(ej);if(!t)return e;for(var n=t[1],r="",o=0,a="",i=0;i<n.length;i++){var l=n[i];if(0===o)"_"===l?o=1:"$"===l?o=2:r+=l;else if(1===o)"_"===l?(r+=" ",o=0):"$"===l?(r+="_",o=2):(r+=l,o=0);else if(2===o)if(2===a.length&&(r+=e_(a),a=""),"_"===l){if(""!==a)throw Error("invalid hex: `".concat(a,"`"));o=3}else if("$"===l){if(""!==a)throw Error("invalid hex: `".concat(a,"`"));o=0}else a+=l;else if(3===o)if("_"===l)throw Error("invalid hex: `".concat(a+l,"`"));else"$"===l?(r+=e_(a),a="",o=0):a+=l}return r}(s);if(u!==s){var d=u.match(/^imported module (.+)$/);if(d){var f=d[1],p=eS(f);n.push(["deobfuscated","{imported module ".concat(p,"}")])}else{var h=eS(u);n.push(["deobfuscated","{".concat(h,"}")])}}else n.push(["raw",s])}catch(e){n.push(["deobfuscated","{".concat(s," (decoding failed: ").concat(e,")}")])}r=l}if(r<t.length){var m=t.substring(r);n.push(["raw",m])}return n}(r);n[3]!==o?(i=function(e,t){var n,r=function(e){if(Array.isArray(e))return e}(n=e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(n,2)||function(e,t){if(e){if("string"==typeof e)return eO(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return eO(e,2)}}(n,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),a=r[0],i=r[1];if("raw"===a)return i.split(/(\s+|https?:\/\/[^\s/$.?#].[^\s)'"]*)/).map(function(e,n){if(!eC.test(e))return(0,S.jsx)(C.Fragment,{children:e},"text-".concat(t,"-").concat(n));var r=eC.exec(e)[0],a=null;return"function"==typeof o&&null===(a=o(r))?(0,S.jsx)(C.Fragment,{children:e},"link-".concat(t,"-").concat(n)):(0,S.jsx)(C.Fragment,{children:(0,S.jsx)("a",{href:r,target:"_blank",rel:"noreferrer noopener",className:a||void 0,children:e})},"link-".concat(t,"-").concat(n))});if("deobfuscated"===a)return(0,S.jsx)("i",{children:i},"ident-".concat(t));throw Error("Unknown text part type: ".concat(a))},n[3]=o,n[4]=i):i=n[4],a=l.map(i),n[0]=o,n[1]=r,n[2]=a}else a=n[2];return n[5]!==a?(t=(0,S.jsx)(S.Fragment,{children:a}),n[5]=a,n[6]=t):t=n[6],t},eE=[/^webpack-internal:\/\/\/(\([\w-]+\)\/)?/,/^(webpack:\/\/\/|webpack:\/\/(_N_E\/)?)(\([\w-]+\)\/)?/];function eT(e){var t=!0,n=!1,r=void 0;try{for(var o,a=eE[Symbol.iterator]();!(t=(o=a.next()).done);t=!0){var i=o.value;if(i.test(e))return!0;e=e.replace(i,"")}}catch(e){n=!0,r=e}finally{try{t||null==a.return||a.return()}finally{if(n)throw r}}return!1}function eN(e){var t=!0,n=!1,r=void 0;try{for(var o,a=eE[Symbol.iterator]();!(t=(o=a.next()).done);t=!0){var i=o.value;e=e.replace(i,"")}}catch(e){n=!0,r=e}finally{try{t||null==a.return||a.return()}finally{if(n)throw r}}return e}function eI(e,t,n,r,o,a,i){try{var l=e[a](i),s=l.value}catch(e){n(e);return}l.done?t(s):Promise.resolve(s).then(r,o)}function eL(e){return function(){var t=this,n=arguments;return new Promise(function(r,o){var a=e.apply(t,n);function i(e){eI(a,r,o,i,l,"next",e)}function l(e){eI(a,r,o,i,l,"throw",e)}i(void 0)})}}function eA(e,t){var n,r,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},i=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return i.next=l(0),i.throw=l(1),i.return=l(2),"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function l(l){return function(s){var c=[l,s];if(n)throw TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(a=0)),a;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return a.label++,{value:c[1],done:!1};case 5:a.label++,r=c[1],c=[0];continue;case 7:c=a.ops.pop(),a.trys.pop();continue;default:if(!(o=(o=a.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){a=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){a.label=c[1];break}if(6===c[0]&&a.label<o[1]){a.label=o[1],o=c;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(c);break}o[2]&&a.ops.pop(),a.trys.pop();continue}c=t.call(e,a)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}function ez(e,t){var n;return"file://"===e.file||(null==(n=e.file)?void 0:n.match(/https?:\/\//))?Promise.resolve({error:!1,reason:null,external:!0,sourceStackFrame:e,originalStackFrame:null,originalCodeFrame:null,ignored:!0}):eL(function(){var n,r;return eA(this,function(o){if("rejected"===t.status)throw Error(t.reason);return[2,{error:!1,reason:null,external:!1,sourceStackFrame:e,originalStackFrame:(r=t.value).originalStackFrame,originalCodeFrame:r.originalCodeFrame||null,ignored:(null==(n=r.originalStackFrame)?void 0:n.ignored)||!1}]})})().catch(function(t){var n,r;return{error:!0,reason:null!=(r=null!=(n=null==t?void 0:t.message)?n:null==t?void 0:t.toString())?r:"Unknown Error",external:!1,sourceStackFrame:e,originalStackFrame:null,originalCodeFrame:null,ignored:!1}})}function eR(e,t,n){return eL(function(){var r,o,a,i;return eA(this,function(l){switch(l.label){case 0:r={frames:e,isServer:"server"===t,isEdgeServer:"edge-server"===t,isAppDirectory:n},o=void 0,a=void 0,l.label=1;case 1:return l.trys.push([1,3,,4]),[4,fetch("/__nextjs_original-stack-frames",{method:"POST",body:JSON.stringify(r)})];case 2:return o=l.sent(),[3,4];case 3:return a=l.sent()+"",[3,4];case 4:if(!(o&&o.ok&&204!==o.status))return[3,6];return[4,o.json()];case 5:return i=l.sent(),[2,Promise.all(e.map(function(e,t){return ez(e,i[t])}))];case 6:if(!o)return[3,8];return[4,o.text()];case 7:a=l.sent(),l.label=8;case 8:return[2,Promise.all(e.map(function(e){return ez(e,{status:"rejected",reason:"Failed to fetch the original stack frames ".concat(a?": ".concat(a):"")})}))]}})})()}function eD(e){if(!e.file)return"";var t=eT(e.file),n="";if(t)n=eN(e.file);else try{var r,o=new URL(e.file),a="";(null==(r=globalThis.location)?void 0:r.origin)!==o.origin&&("null"===o.origin?a+=o.protocol:a+=o.origin),a+=o.pathname,n=eN(a)}catch(t){n=eN(e.file)}return!eT(e.file)&&null!=e.line1&&n&&"<anonymous>"!==e.file&&(null!=e.column1?n+=" (".concat(e.line1,":").concat(e.column1,")"):n+=" (".concat(e.line1,")")),n}function eM(e){var t,n,r=(0,O.c)(6);r[0]!==e?(t=void 0===e?{}:e,r[0]=e,r[1]=t):t=r[1];var o=t.file,a=t.line1,i=t.column1;return r[2]!==i||r[3]!==o||r[4]!==a?(n=function(){if(null!=o&&null!=a&&null!=i){var e=new URLSearchParams;e.append("file",o),e.append("line1",String(a)),e.append("column1",String(i)),self.fetch("".concat(process.env.__NEXT_ROUTER_BASEPATH||"","/__nextjs_launch-editor?").concat(e.toString())).then(eZ,function(e){console.error('Failed to open file "'.concat(o," (").concat(a,":").concat(i,')" in your editor. Cause:'),e)})}},r[2]=i,r[3]=o,r[4]=a,r[5]=n):n=r[5],n}function eZ(){}function eU(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function eF(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function eH(e){var t,n,r=(0,O.c)(3);return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",fill:"currentColor",d:"M11.5 9.75V11.25C11.5 11.3881 11.3881 11.5 11.25 11.5H4.75C4.61193 11.5 4.5 11.3881 4.5 11.25L4.5 4.75C4.5 4.61193 4.61193 4.5 4.75 4.5H6.25H7V3H6.25H4.75C3.7835 3 3 3.7835 3 4.75V11.25C3 12.2165 3.7835 13 4.75 13H11.25C12.2165 13 13 12.2165 13 11.25V9.75V9H11.5V9.75ZM8.5 3H9.25H12.2495C12.6637 3 12.9995 3.33579 12.9995 3.75V6.75V7.5H11.4995V6.75V5.56066L8.53033 8.52978L8 9.06011L6.93934 7.99945L7.46967 7.46912L10.4388 4.5H9.25H8.5V3Z"}),r[0]=t):t=r[0],r[1]!==e?(n=(0,S.jsx)("svg",eF(eU({xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},e),{children:t})),r[1]=e,r[2]=n):n=r[2],n}function eV(e){var t,n,r=(0,O.c)(3);return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.55846 2H7.44148L1.88975 13.5H14.1102L8.55846 2ZM9.90929 1.34788C9.65902 0.829456 9.13413 0.5 8.55846 0.5H7.44148C6.86581 0.5 6.34092 0.829454 6.09065 1.34787L0.192608 13.5653C-0.127943 14.2293 0.355835 15 1.09316 15H14.9068C15.6441 15 16.1279 14.2293 15.8073 13.5653L9.90929 1.34788ZM8.74997 4.75V5.5V8V8.75H7.24997V8V5.5V4.75H8.74997ZM7.99997 12C8.55226 12 8.99997 11.5523 8.99997 11C8.99997 10.4477 8.55226 10 7.99997 10C7.44769 10 6.99997 10.4477 6.99997 11C6.99997 11.5523 7.44769 12 7.99997 12Z",fill:"currentColor"}),r[0]=t):t=r[0],r[1]!==e?(n=(0,S.jsx)("svg",eF(eU({xmlns:"http://www.w3.org/2000/svg",height:"16",strokeLinejoin:"round",viewBox:"-4 -4 24 24",width:"16"},e),{children:t})),r[1]=e,r[2]=n):n=r[2],n}function eB(e){var t,n,r,o,a,i,l=(0,O.c)(6),s=e.lang;if(!s)return l[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)(eK,{}),l[0]=t):t=l[0],t;switch(s.toLowerCase()){case"jsx":case"tsx":return l[1]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsx)(eY,{}),l[1]=n):n=l[1],n;case"ts":case"typescript":return l[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)(eW,{}),l[2]=r):r=l[2],r;case"javascript":case"js":case"mjs":return l[3]===Symbol.for("react.memo_cache_sentinel")?(o=(0,S.jsx)(eq,{}),l[3]=o):o=l[3],o;case"json":return l[4]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsx)(e$,{}),l[4]=a):a=l[4],a;default:return l[5]===Symbol.for("react.memo_cache_sentinel")?(i=(0,S.jsx)(eK,{}),l[5]=i):i=l[5],i}}function e$(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{clipRule:"evenodd",fillRule:"evenodd",height:"16",viewBox:"0 0 1321.45 1333.33",width:"16",children:(0,S.jsx)("path",{d:"M221.37 618.44h757.94V405.15H755.14c-23.5 0-56.32-12.74-71.82-28.24-15.5-15.5-25-43.47-25-66.97V82.89H88.39c-1.99 0-3.49 1-4.49 2-1.5 1-2 2.5-2 4.5v1155.04c0 1.5 1 3.5 2 4.5 1 1.49 3 1.99 4.49 1.99H972.8c2 0 1.89-.99 2.89-1.99 1.5-1 3.61-3 3.61-4.5v-121.09H221.36c-44.96 0-82-36.9-82-81.99V700.44c0-45.1 36.9-82 82-82zm126.51 117.47h75.24v146.61c0 30.79-2.44 54.23-7.33 70.31-4.92 16.03-14.8 29.67-29.65 40.85-14.86 11.12-33.91 16.72-57.05 16.72-24.53 0-43.51-3.71-56.94-11.06-13.5-7.36-23.89-18.1-31.23-32.3-7.35-14.14-11.69-31.67-12.99-52.53l71.5-10.81c.11 11.81 1.07 20.61 2.81 26.33 1.76 5.78 4.75 10.37 9 13.95 2.87 2.33 6.94 3.46 12.25 3.46 8.4 0 14.58-3.46 18.53-10.37 3.9-6.92 5.87-18.6 5.87-35V735.92zm112.77 180.67l71.17-4.97c1.54 12.81 4.69 22.62 9.44 29.28 7.74 10.88 18.74 16.34 33.09 16.34 10.68 0 18.93-2.76 24.68-8.36 5.81-5.58 8.7-12.07 8.7-19.41 0-6.97-2.71-13.26-8.2-18.79-5.47-5.53-18.23-10.68-38.28-15.65-32.89-8.17-56.27-19.1-70.26-32.74-14.12-13.57-21.18-30.92-21.18-52.03 0-13.83 3.61-26.89 10.85-39.21 7.22-12.38 18.07-22.06 32.59-29.09 14.52-7.04 34.4-10.56 59.65-10.56 31 0 54.62 6.41 70.88 19.29 16.28 12.81 25.92 33.24 29.04 61.27l-70.5 4.65c-1.87-12.25-5.81-21.17-11.81-26.7-6.05-5.6-14.35-8.36-24.9-8.36-8.71 0-15.31 2.07-19.73 6.16-4.4 4.09-6.59 9.12-6.59 15.02 0 4.27 1.81 8.11 5.37 11.57 3.45 3.59 11.8 6.85 25.02 9.93 32.75 7.86 56.2 15.84 70.31 23.87 14.18 8.05 24.52 17.98 30.96 29.92 6.44 11.88 9.66 25.2 9.66 39.96 0 17.29-4.3 33.24-12.88 47.89-8.63 14.58-20.61 25.7-36.08 33.24-15.41 7.54-34.85 11.31-58.33 11.31-41.24 0-69.81-8.86-85.68-26.52-15.88-17.65-24.85-40.09-26.96-67.3zm248.74-45.5c0-44.05 11.02-78.36 33.09-102.87 22.09-24.57 52.82-36.82 92.24-36.82 40.38 0 71.5 12.07 93.34 36.13 21.86 24.13 32.77 57.94 32.77 101.37 0 31.54-4.75 57.36-14.3 77.54-9.54 20.18-23.37 35.89-41.4 47.13-18.07 11.24-40.55 16.84-67.48 16.84-27.33 0-49.99-4.83-67.94-14.52-17.92-9.74-32.49-25.07-43.62-46.06-11.13-20.92-16.72-47.19-16.72-78.74zm74.89.19c0 27.21 4.57 46.81 13.68 58.68 9.13 11.88 21.57 17.85 37.26 17.85 16.1 0 28.65-5.84 37.45-17.47 8.87-11.68 13.28-32.54 13.28-62.77 0-25.39-4.63-43.92-13.84-55.61-9.26-11.76-21.75-17.6-37.56-17.6-15.13 0-27.34 5.97-36.49 17.85-9.21 11.88-13.78 31.61-13.78 59.07zm209.08-135.36h69.99l90.98 149.05V735.91h70.83v269.96h-70.83l-90.48-148.24v148.24h-70.49V735.91zm67.71-117.47h178.37c45.1 0 82 37.04 82 82v340.91c0 44.96-37.03 81.99-82 81.99h-178.37v147c0 17.5-6.99 32.99-18.5 44.5-11.5 11.49-27 18.5-44.5 18.5H62.97c-17.5 0-32.99-7-44.5-18.5-11.49-11.5-18.5-27-18.5-44.5V63.49c0-17.5 7-33 18.5-44.5S45.97.49 62.97.49H700.1c1.5-.5 3-.5 4.5-.5 7 0 14 3 19 7.49h1c1 .5 1.5 1 2.5 2l325.46 329.47c5.5 5.5 9.5 13 9.5 21.5 0 2.5-.5 4.5-1 7v250.98zM732.61 303.47V96.99l232.48 235.47H761.6c-7.99 0-14.99-3.5-20.5-8.49-4.99-5-8.49-12.5-8.49-20.5z",fill:"currentColor"})}),t[0]=e):e=t[0],e}function eq(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{height:"16",viewBox:"0 0 50 50",width:"16",xmlns:"http://www.w3.org/2000/svg",children:(0,S.jsx)("path",{d:"M 43.335938 4 L 6.667969 4 C 5.195313 4 4 5.195313 4 6.667969 L 4 43.332031 C 4 44.804688 5.195313 46 6.667969 46 L 43.332031 46 C 44.804688 46 46 44.804688 46 43.335938 L 46 6.667969 C 46 5.195313 44.804688 4 43.335938 4 Z M 27 36.183594 C 27 40.179688 24.65625 42 21.234375 42 C 18.140625 42 15.910156 39.925781 15 38 L 18.144531 36.097656 C 18.75 37.171875 19.671875 38 21 38 C 22.269531 38 23 37.503906 23 35.574219 L 23 23 L 27 23 Z M 35.675781 42 C 32.132813 42 30.121094 40.214844 29 38 L 32 36 C 32.816406 37.335938 33.707031 38.613281 35.589844 38.613281 C 37.171875 38.613281 38 37.824219 38 36.730469 C 38 35.425781 37.140625 34.960938 35.402344 34.199219 L 34.449219 33.789063 C 31.695313 32.617188 29.863281 31.148438 29.863281 28.039063 C 29.863281 25.179688 32.046875 23 35.453125 23 C 37.878906 23 39.621094 23.84375 40.878906 26.054688 L 37.910156 27.964844 C 37.253906 26.789063 36.550781 26.328125 35.453125 26.328125 C 34.335938 26.328125 33.628906 27.039063 33.628906 27.964844 C 33.628906 29.109375 34.335938 29.570313 35.972656 30.28125 L 36.925781 30.691406 C 40.171875 32.078125 42 33.496094 42 36.683594 C 42 40.117188 39.300781 42 35.675781 42 Z",fill:"currentColor"})}),t[0]=e):e=t[0],e}function eW(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsxs)("svg",{fill:"none",height:"14",viewBox:"0 0 512 512",width:"14",xmlns:"http://www.w3.org/2000/svg",children:[(0,S.jsx)("rect",{fill:"currentColor",height:"512",rx:"50",width:"512"}),(0,S.jsx)("rect",{fill:"currentColor",height:"512",rx:"50",width:"512"}),(0,S.jsx)("path",{clipRule:"evenodd",d:"m316.939 407.424v50.061c8.138 4.172 17.763 7.3 28.875 9.386s22.823 3.129 35.135 3.129c11.999 0 23.397-1.147 34.196-3.442 10.799-2.294 20.268-6.075 28.406-11.342 8.138-5.266 14.581-12.15 19.328-20.65s7.121-19.007 7.121-31.522c0-9.074-1.356-17.026-4.069-23.857s-6.625-12.906-11.738-18.225c-5.112-5.319-11.242-10.091-18.389-14.315s-15.207-8.213-24.18-11.967c-6.573-2.712-12.468-5.345-17.685-7.9-5.217-2.556-9.651-5.163-13.303-7.822-3.652-2.66-6.469-5.476-8.451-8.448-1.982-2.973-2.974-6.336-2.974-10.091 0-3.441.887-6.544 2.661-9.308s4.278-5.136 7.512-7.118c3.235-1.981 7.199-3.52 11.894-4.615 4.696-1.095 9.912-1.642 15.651-1.642 4.173 0 8.581.313 13.224.938 4.643.626 9.312 1.591 14.008 2.894 4.695 1.304 9.259 2.947 13.694 4.928 4.434 1.982 8.529 4.276 12.285 6.884v-46.776c-7.616-2.92-15.937-5.084-24.962-6.492s-19.381-2.112-31.066-2.112c-11.895 0-23.163 1.278-33.805 3.833s-20.006 6.544-28.093 11.967c-8.086 5.424-14.476 12.333-19.171 20.729-4.695 8.395-7.043 18.433-7.043 30.114 0 14.914 4.304 27.638 12.912 38.172 8.607 10.533 21.675 19.45 39.204 26.751 6.886 2.816 13.303 5.579 19.25 8.291s11.086 5.528 15.415 8.448c4.33 2.92 7.747 6.101 10.252 9.543 2.504 3.441 3.756 7.352 3.756 11.733 0 3.233-.783 6.231-2.348 8.995s-3.939 5.162-7.121 7.196-7.147 3.624-11.894 4.771c-4.748 1.148-10.303 1.721-16.668 1.721-10.851 0-21.597-1.903-32.24-5.71-10.642-3.806-20.502-9.516-29.579-17.13zm-84.159-123.342h64.22v-41.082h-179v41.082h63.906v182.918h50.874z",fill:"var(--color-background-100)",fillRule:"evenodd"})]}),t[0]=e):e=t[0],e}function eK(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{width:"16",height:"17",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.5 7v7a2.5 2.5 0 0 1-2.5 2.5H4A2.5 2.5 0 0 1 1.5 14V.5h7.586a1 1 0 0 1 .707.293l4.414 4.414a1 1 0 0 1 .293.707V7zM13 7v7a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2h5v5h5zM9.5 2.621V5.5h2.879L9.5 2.621z",fill:"currentColor"})}),t[0]=e):e=t[0],e}function eY(){var e,t,n=(0,O.c)(2);return n[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("g",{clipPath:"url(#file_react_clip0_872_3183)",children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 1.93782C4.70129 1.82161 4.99472 1.7858 5.41315 1.91053C5.83298 2.03567 6.33139 2.31073 6.87627 2.73948C7.01136 2.84578 7.14803 2.96052 7.28573 3.08331C6.86217 3.53446 6.44239 4.04358 6.03752 4.60092C5.35243 4.67288 4.70164 4.78186 4.09916 4.92309C4.06167 4.74244 4.03064 4.56671 4.00612 4.39656C3.90725 3.71031 3.91825 3.14114 4.01979 2.71499C4.12099 2.29025 4.29871 2.05404 4.5 1.93782ZM7.49466 1.95361C7.66225 2.08548 7.83092 2.22804 7.99999 2.38067C8.16906 2.22804 8.33773 2.08548 8.50532 1.95361C9.10921 1.47842 9.71982 1.12549 10.3012 0.952202C10.8839 0.778496 11.4838 0.7738 12 1.0718C12.5161 1.3698 12.812 1.89169 12.953 2.48322C13.0936 3.07333 13.0932 3.77858 12.9836 4.53917C12.9532 4.75024 12.9141 4.9676 12.8665 5.19034C13.0832 5.26044 13.291 5.33524 13.489 5.41444C14.2025 5.69983 14.8134 6.05217 15.2542 6.46899C15.696 6.8868 16 7.404 16 8C16 8.596 15.696 9.11319 15.2542 9.53101C14.8134 9.94783 14.2025 10.3002 13.489 10.5856C13.291 10.6648 13.0832 10.7396 12.8665 10.8097C12.9141 11.0324 12.9532 11.2498 12.9837 11.4608C13.0932 12.2214 13.0936 12.9267 12.953 13.5168C12.812 14.1083 12.5161 14.6302 12 14.9282C11.4839 15.2262 10.8839 15.2215 10.3012 15.0478C9.71984 14.8745 9.10923 14.5216 8.50534 14.0464C8.33775 13.9145 8.16906 13.7719 7.99999 13.6193C7.83091 13.7719 7.66223 13.9145 7.49464 14.0464C6.89075 14.5216 6.28014 14.8745 5.69879 15.0478C5.11605 15.2215 4.51613 15.2262 3.99998 14.9282C3.48383 14.6302 3.18794 14.1083 3.047 13.5168C2.9064 12.9267 2.90674 12.2214 3.01632 11.4608C3.04673 11.2498 3.08586 11.0324 3.13351 10.8097C2.91679 10.7395 2.709 10.6648 2.511 10.5856C1.79752 10.3002 1.18658 9.94783 0.745833 9.53101C0.304028 9.11319 0 8.596 0 8C0 7.404 0.304028 6.8868 0.745833 6.46899C1.18658 6.05217 1.79752 5.69983 2.511 5.41444C2.709 5.33524 2.9168 5.26044 3.13352 5.19034C3.08587 4.9676 3.04675 4.75024 3.01634 4.53917C2.90676 3.77858 2.90642 3.07332 3.04702 2.48321C3.18796 1.89169 3.48385 1.3698 4 1.0718C4.51615 0.773798 5.11607 0.778495 5.69881 0.952201C6.28016 1.12549 6.89077 1.47841 7.49466 1.95361ZM7.36747 4.51025C7.57735 4.25194 7.78881 4.00927 7.99999 3.78356C8.21117 4.00927 8.42263 4.25194 8.63251 4.51025C8.42369 4.50346 8.21274 4.5 8 4.5C7.78725 4.5 7.5763 4.50345 7.36747 4.51025ZM8.71425 3.08331C9.13781 3.53447 9.55759 4.04358 9.96246 4.60092C10.6475 4.67288 11.2983 4.78186 11.9008 4.92309C11.9383 4.74244 11.9693 4.56671 11.9939 4.39657C12.0927 3.71031 12.0817 3.14114 11.9802 2.71499C11.879 2.29025 11.7013 2.05404 11.5 1.93782C11.2987 1.82161 11.0053 1.7858 10.5868 1.91053C10.167 2.03568 9.66859 2.31073 9.12371 2.73948C8.98862 2.84578 8.85196 2.96052 8.71425 3.08331ZM8 5.5C8.48433 5.5 8.95638 5.51885 9.41188 5.55456C9.67056 5.93118 9.9229 6.33056 10.1651 6.75C10.4072 7.16944 10.6269 7.58766 10.8237 7.99998C10.6269 8.41232 10.4072 8.83055 10.165 9.25C9.92288 9.66944 9.67053 10.0688 9.41185 10.4454C8.95636 10.4812 8.48432 10.5 8 10.5C7.51567 10.5 7.04363 10.4812 6.58813 10.4454C6.32945 10.0688 6.0771 9.66944 5.83494 9.25C5.59277 8.83055 5.37306 8.41232 5.17624 7.99998C5.37306 7.58765 5.59275 7.16944 5.83492 6.75C6.07708 6.33056 6.32942 5.93118 6.5881 5.55456C7.04361 5.51884 7.51566 5.5 8 5.5ZM11.0311 6.25C11.1375 6.43423 11.2399 6.61864 11.3385 6.80287C11.4572 6.49197 11.5616 6.18752 11.6515 5.89178C11.3505 5.82175 11.0346 5.75996 10.706 5.70736C10.8163 5.8848 10.9247 6.06576 11.0311 6.25ZM11.0311 9.75C11.1374 9.56576 11.2399 9.38133 11.3385 9.19709C11.4572 9.50801 11.5617 9.81246 11.6515 10.1082C11.3505 10.1782 11.0346 10.24 10.7059 10.2926C10.8162 10.1152 10.9247 9.93424 11.0311 9.75ZM11.9249 7.99998C12.2051 8.62927 12.4362 9.24738 12.6151 9.83977C12.7903 9.78191 12.958 9.72092 13.1176 9.65708C13.7614 9.39958 14.2488 9.10547 14.5671 8.80446C14.8843 8.50445 15 8.23243 15 8C15 7.76757 14.8843 7.49555 14.5671 7.19554C14.2488 6.89453 13.7614 6.60042 13.1176 6.34292C12.958 6.27907 12.7903 6.21808 12.6151 6.16022C12.4362 6.7526 12.2051 7.37069 11.9249 7.99998ZM9.96244 11.3991C10.6475 11.3271 11.2983 11.2181 11.9008 11.0769C11.9383 11.2576 11.9694 11.4333 11.9939 11.6034C12.0928 12.2897 12.0817 12.8589 11.9802 13.285C11.879 13.7098 11.7013 13.946 11.5 14.0622C11.2987 14.1784 11.0053 14.2142 10.5868 14.0895C10.167 13.9643 9.66861 13.6893 9.12373 13.2605C8.98863 13.1542 8.85196 13.0395 8.71424 12.9167C9.1378 12.4655 9.55758 11.9564 9.96244 11.3991ZM8.63249 11.4898C8.42262 11.7481 8.21116 11.9907 7.99999 12.2164C7.78881 11.9907 7.57737 11.7481 7.36749 11.4897C7.57631 11.4965 7.78726 11.5 8 11.5C8.21273 11.5 8.42367 11.4965 8.63249 11.4898ZM4.96891 9.75C5.07528 9.93424 5.18375 10.1152 5.29404 10.2926C4.9654 10.24 4.64951 10.1782 4.34844 10.1082C4.43833 9.81246 4.54276 9.508 4.66152 9.19708C4.76005 9.38133 4.86254 9.56575 4.96891 9.75ZM6.03754 11.3991C5.35244 11.3271 4.70163 11.2181 4.09914 11.0769C4.06165 11.2576 4.03062 11.4333 4.0061 11.6034C3.90723 12.2897 3.91823 12.8589 4.01977 13.285C4.12097 13.7098 4.29869 13.946 4.49998 14.0622C4.70127 14.1784 4.9947 14.2142 5.41313 14.0895C5.83296 13.9643 6.33137 13.6893 6.87625 13.2605C7.01135 13.1542 7.14802 13.0395 7.28573 12.9167C6.86217 12.4655 6.4424 11.9564 6.03754 11.3991ZM4.07507 7.99998C3.79484 8.62927 3.56381 9.24737 3.38489 9.83977C3.20969 9.78191 3.042 9.72092 2.88239 9.65708C2.23864 9.39958 1.75123 9.10547 1.43294 8.80446C1.11571 8.50445 1 8.23243 1 8C1 7.76757 1.11571 7.49555 1.43294 7.19554C1.75123 6.89453 2.23864 6.60042 2.88239 6.34292C3.042 6.27907 3.2097 6.21808 3.3849 6.16022C3.56383 6.75261 3.79484 7.37069 4.07507 7.99998ZM4.66152 6.80287C4.54277 6.49197 4.43835 6.18752 4.34846 5.89178C4.64952 5.82175 4.96539 5.75996 5.29402 5.70736C5.18373 5.8848 5.07526 6.06576 4.96889 6.25C4.86253 6.43423 4.76005 6.61864 4.66152 6.80287ZM9.25 8C9.25 8.69036 8.69036 9.25 8 9.25C7.30964 9.25 6.75 8.69036 6.75 8C6.75 7.30965 7.30964 6.75 8 6.75C8.69036 6.75 9.25 7.30965 9.25 8Z",fill:"currentColor"})}),n[0]=e):e=n[0],n[1]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsxs)("svg",{height:"16",strokeLinejoin:"round",viewBox:"0 0 16 16",width:"16",children:[e,(0,S.jsx)("defs",{children:(0,S.jsx)("clipPath",{id:"file_react_clip0_872_3183",children:(0,S.jsx)("rect",{width:"16",height:"16",fill:"white"})})})]}),n[1]=t):t=n[1],t}var eX=__webpack_require__("./dist/compiled/anser/index.js"),eG=__webpack_require__.n(eX),eQ=__webpack_require__("./dist/compiled/strip-ansi/index.js"),eJ=__webpack_require__.n(eQ);function e0(e){var t=e.split(/\r?\n/g),n=t.map(function(e){return null===/^>? +\d+ +\| [ ]+/.exec(eJ()(e))?null:/^>? +\d+ +\| ( *)/.exec(eJ()(e))}).filter(Boolean).map(function(e){return e.pop()}).reduce(function(e,t){return isNaN(e)?t.length:Math.min(e,t.length)},NaN);return n>1?t.map(function(e,t){return~(t=e.indexOf("|"))?e.substring(0,t)+e.substring(t).replace("^\\ {".concat(n,"}"),""):e}).join("\n"):t.join("\n")}function e1(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function e2(e){var t,n,r,o=e.stackFrame,a=e.codeFrame,i=(0,C.useMemo)(function(){return(function(e){var t=eG().ansiToJson(e,{json:!0,use_classes:!0,remove_empty:!0}),n=[],r=[],o=!0,a=!1,i=void 0;try{for(var l,s=t[Symbol.iterator]();!(o=(l=s.next()).done);o=!0){var c=l.value;if("string"==typeof c.content&&c.content.includes("\n"))for(var u=c.content.split("\n"),d=0;d<u.length;d++){var f=u[d];f&&r.push(function(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},c),{content:f})),d<u.length-1&&(n.push(r),r=[])}else r.push(c)}}catch(e){a=!0,i=e}finally{try{o||null==s.return||s.return()}finally{if(a)throw i}}return r.length>0&&n.push(r),n})(e0(a)).map(function(e){var t,n,r,a,i,l,s,c,u;return{line:e,parsedLine:(t=e,n=o,((null==(r=t[0])?void 0:r.content)===">"||(null==(a=t[0])?void 0:a.content)===" ")&&(s=null==(l=t[1])||null==(u=l.content)||null==(c=u.replace("|",""))?void 0:c.trim()),{lineNumber:s,isErroredLine:s===(null==(i=n.line1)?void 0:i.toString())})}})},[a,o]),l=eM({file:o.file,line1:null!=(n=o.line1)?n:1,column1:null!=(r=o.column1)?r:1}),s=null==o||null==(t=o.file)?void 0:t.split(".").pop();return(0,S.jsxs)("div",{"data-nextjs-codeframe":!0,children:[(0,S.jsx)("div",{className:"code-frame-header",children:(0,S.jsxs)("p",{className:"code-frame-link",children:[(0,S.jsx)("span",{className:"code-frame-icon",children:(0,S.jsx)(eB,{lang:s})}),(0,S.jsxs)("span",{"data-text":!0,children:[eD(o)," @"," ",(0,S.jsx)(eP,{text:o.methodName})]}),(0,S.jsx)("button",{"aria-label":"Open in editor","data-with-open-in-editor-link-source-file":!0,onClick:l,children:(0,S.jsx)("span",{className:"code-frame-icon","data-icon":"right",children:(0,S.jsx)(eH,{width:16,height:16})})})]})}),(0,S.jsx)("pre",{className:"code-frame-pre",children:(0,S.jsx)("div",{className:"code-frame-lines",children:i.map(function(e,t){var n,r,o=e.line,a=e.parsedLine,i=a.lineNumber,l=a.isErroredLine,s={};return i&&(s["data-nextjs-codeframe-line"]=i),l&&(s["data-nextjs-codeframe-line--errored"]=!0),(0,S.jsx)("div",(n=e1({},s),r=r={children:o.map(function(e,t){return(0,S.jsx)("span",{style:e1({color:e.fg?"var(--color-".concat(e.fg,")"):void 0},"bold"===e.decoration?{fontWeight:500}:"italic"===e.decoration?{fontStyle:"italic"}:void 0),children:e.content},"frame-".concat(t))})},Object.getOwnPropertyDescriptors?Object.defineProperties(n,Object.getOwnPropertyDescriptors(r)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(r)).forEach(function(e){Object.defineProperty(n,e,Object.getOwnPropertyDescriptor(r,e))}),n),"line-".concat(t))})})})]})}var e3=function(e){var t,n,r,o,a,i,l=(0,O.c)(8);return(l[0]!==e?(a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["children","className"]),r=e.children,o=e.className,l[0]=e,l[1]=r,l[2]=o,l[3]=a):(r=l[1],o=l[2],a=l[3]),l[4]!==r||l[5]!==o||l[6]!==a)?(i=(0,S.jsx)("div",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"data-nextjs-dialog-body":!0,className:o},a),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),l[4]=r,l[5]=o,l[6]=a,l[7]=i):i=l[7],i},e4=function(e){var t,n,r,o,a,i,l=(0,O.c)(8);return(l[0]!==e?(a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["children","className"]),r=e.children,o=e.className,l[0]=e,l[1]=r,l[2]=o,l[3]=a):(r=l[1],o=l[2],a=l[3]),l[4]!==r||l[5]!==o||l[6]!==a)?(i=(0,S.jsx)("div",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"data-nextjs-dialog-content":!0,className:o},a),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),l[4]=r,l[5]=o,l[6]=a,l[7]=i):i=l[7],i};function e5(){var e,t,n=(e=["\n [data-nextjs-dialog-root] {\n --next-dialog-radius: var(--rounded-xl);\n --next-dialog-max-width: 960px;\n --next-dialog-row-padding: 16px;\n --next-dialog-padding: 12px;\n --next-dialog-notch-height: 42px;\n --next-dialog-border-width: 1px;\n\n display: flex;\n flex-direction: column;\n width: 100%;\n max-height: calc(100% - 56px);\n max-width: var(--next-dialog-max-width);\n margin-right: auto;\n margin-left: auto;\n scale: 0.97;\n opacity: 0;\n transition-property: scale, opacity;\n transition-duration: var(--transition-duration);\n transition-timing-function: var(--timing-overlay);\n\n &[data-rendered='true'] {\n opacity: 1;\n scale: 1;\n }\n\n [data-nextjs-scroll-fader][data-side='top'] {\n left: 1px;\n top: calc(\n var(--next-dialog-notch-height) + var(--next-dialog-border-width)\n );\n width: calc(100% - var(--next-dialog-padding));\n opacity: 0;\n }\n }\n\n [data-nextjs-dialog] {\n outline: 0;\n }\n\n [data-nextjs-dialog-backdrop] {\n opacity: 0;\n transition: opacity var(--transition-duration) var(--timing-overlay);\n }\n\n [data-nextjs-dialog-overlay] {\n margin: 8px;\n }\n\n [data-nextjs-dialog-overlay][data-rendered='true']\n [data-nextjs-dialog-backdrop] {\n opacity: 1;\n }\n\n [data-nextjs-dialog-content] {\n border: none;\n margin: 0;\n display: flex;\n flex-direction: column;\n position: relative;\n padding: var(--next-dialog-padding);\n }\n\n [data-nextjs-dialog-content] > [data-nextjs-dialog-header] {\n flex-shrink: 0;\n margin-bottom: 8px;\n }\n\n [data-nextjs-dialog-content] > [data-nextjs-dialog-body] {\n position: relative;\n flex: 1 1 auto;\n }\n\n @media (max-height: 812px) {\n [data-nextjs-dialog-overlay] {\n max-height: calc(100% - 15px);\n }\n }\n\n @media (min-width: 576px) {\n [data-nextjs-dialog-root] {\n --next-dialog-max-width: 540px;\n }\n }\n\n @media (min-width: 768px) {\n [data-nextjs-dialog-root] {\n --next-dialog-max-width: 720px;\n }\n }\n\n @media (min-width: 992px) {\n [data-nextjs-dialog-root] {\n --next-dialog-max-width: 960px;\n }\n }\n"],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return e5=function(){return n},n}var e6=eg(e5());function e9(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter(Boolean).join(" ")}function e8(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function e7(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function te(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function tt(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return e8(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return e8(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function tn(e,t){return"reset"===t.type?{state:"initial"}:"copied"===t.type?{state:"success"}:"copying"===t.type?{state:"pending"}:"error"===t.type?{state:"error",error:t.error}:e}function tr(e){return{state:"error",error:e}}function to(){return{state:"success"}}var ta="function"==typeof C.useActionState?function(e){var t,n,r,o,a,i=(0,O.c)(8);i[0]!==e?(t=function(t,n){return"reset"===n?{state:"initial"}:"copy"===n?navigator.clipboard?navigator.clipboard.writeText(e).then(to,tr):{state:"error",error:"Copy to clipboard is not supported in this browser"}:t},i[0]=e,i[1]=t):t=i[1],i[2]===Symbol.for("react.memo_cache_sentinel")?(n={state:"initial"},i[2]=n):n=i[2];var l=tt(C.useActionState(t,n),3),s=l[0],c=l[1],u=l[2];i[3]===Symbol.for("react.memo_cache_sentinel")?(r=function(){C.startTransition(function(){c("copy")})},i[3]=r):r=i[3];var d=r;i[4]===Symbol.for("react.memo_cache_sentinel")?(o=function(){c("reset")},i[4]=o):o=i[4];var f=o;return i[5]!==s||i[6]!==u?(a=[s,d,f,u],i[5]=s,i[6]=u,i[7]=a):a=i[7],a}:function(e){var t,n,r,o,a,i,l,s=(0,O.c)(14);s[0]===Symbol.for("react.memo_cache_sentinel")?(t={state:"initial"},s[0]=t):t=s[0];var c=tt(C.useReducer(tn,t),2),u=c[0],d=c[1];return s[1]!==e||s[2]!==u.state?(s[6]!==e?(a=function(){r||(navigator.clipboard?(d({type:"copying"}),navigator.clipboard.writeText(e).then(function(){d({type:"copied"})},function(e){d({type:"error",error:e})})):d({type:"error",error:"Copy to clipboard is not supported in this browser"}))},s[6]=e,s[7]=a):a=s[7],n=a,s[8]===Symbol.for("react.memo_cache_sentinel")?(i=function(){d({type:"reset"})},s[8]=i):i=s[8],o=i,r="pending"===u.state,s[1]=e,s[2]=u.state,s[3]=n,s[4]=r,s[5]=o):(n=s[3],r=s[4],o=s[5]),s[9]!==n||s[10]!==u||s[11]!==r||s[12]!==o?(l=[u,n,o,r],s[9]=n,s[10]=u,s[11]=r,s[12]=o,s[13]=l):l=s[13],l};function ti(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y=(0,O.c)(38);y[0]!==e?(i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["content","getContent","actionLabel","successLabel","icon","disabled"]),n=e.content,o=e.getContent,t=e.actionLabel,l=e.successLabel,a=e.icon,r=e.disabled,y[0]=e,y[1]=t,y[2]=n,y[3]=r,y[4]=o,y[5]=a,y[6]=i,y[7]=l):(t=y[1],n=y[2],r=y[3],o=y[4],a=y[5],i=y[6],l=y[7]),y[8]!==n||y[9]!==o?(s=n||(o?o():""),y[8]=n,y[9]=o,y[10]=s):s=y[10];var v=tt(ta(s),4),b=v[0],x=v[1],w=v[2],_=v[3],j="error"===b.state?b.error:null;y[11]!==j?(c=function(){null!==j&&console.warn(j)},u=[j],y[11]=j,y[12]=c,y[13]=u):(c=y[12],u=y[13]),C.useEffect(c,u),y[14]!==b.state||y[15]!==w?(d=function(){if("success"===b.state){var e=setTimeout(function(){w()},2e3);return function(){clearTimeout(e)}}},y[14]=b.state,y[15]=w,y[16]=d):d=y[16],y[17]!==b.state||y[18]!==_||y[19]!==w?(f=[_,b.state,w],y[17]=b.state,y[18]=_,y[19]=w,y[20]=f):f=y[20],C.useEffect(d,f);var k=!navigator.clipboard||_||r||!!j,P="success"===b.state?l:t;y[21]!==b.state||y[22]!==a?(p="success"===b.state?(0,S.jsx)(ts,{}):a||(0,S.jsx)(tl,{width:14,height:14,className:"error-overlay-toolbar-button-icon"}),y[21]=b.state,y[22]=a,y[23]=p):p=y[23];var E=p,T="nextjs-data-copy-button--".concat(b.state);y[24]!==e.className||y[25]!==T?(h=e9(e.className,"nextjs-data-copy-button",T),y[24]=e.className,y[25]=T,y[26]=h):h=y[26],y[27]!==x||y[28]!==k?(m=function(){k||x()},y[27]=x,y[28]=k,y[29]=m):m=y[29];var N="error"===b.state?" ".concat(b.error):null;return y[30]!==k||y[31]!==P||y[32]!==E||y[33]!==i||y[34]!==h||y[35]!==m||y[36]!==N?(g=(0,S.jsxs)("button",te(e7({},i),{type:"button",title:P,"aria-label":P,"aria-disabled":k,disabled:k,"data-nextjs-copy-button":!0,className:h,onClick:m,children:[E,N]})),y[30]=k,y[31]=P,y[32]=E,y[33]=i,y[34]=h,y[35]=m,y[36]=N,y[37]=g):g=y[37],g}function tl(e){var t,n,r=(0,O.c)(3);return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.406.438c-.845 0-1.531.685-1.531 1.53v6.563c0 .846.686 1.531 1.531 1.531H3.937V8.75H2.406a.219.219 0 0 1-.219-.219V1.97c0-.121.098-.219.22-.219h4.812c.12 0 .218.098.218.219v.656H8.75v-.656c0-.846-.686-1.532-1.531-1.532H2.406zm4.375 3.5c-.845 0-1.531.685-1.531 1.53v6.563c0 .846.686 1.531 1.531 1.531h4.813c.845 0 1.531-.685 1.531-1.53V5.468c0-.846-.686-1.532-1.531-1.532H6.78zm-.218 1.53c0-.12.097-.218.218-.218h4.813c.12 0 .219.098.219.219v6.562c0 .121-.098.219-.22.219H6.782a.219.219 0 0 1-.218-.219V5.47z",fill:"currentColor"}),r[0]=t):t=r[0],r[1]!==e?(n=(0,S.jsx)("svg",te(e7({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),{children:t})),r[1]=e,r[2]=n):n=r[2],n}function ts(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{height:"16",xlinkTitle:"copied",viewBox:"0 0 16 16",width:"16",stroke:"currentColor",fill:"currentColor",children:(0,S.jsx)("path",{d:"M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"})}),t[0]=e):e=t[0],e}function tc(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function tu(e,t,n,r,o,a,i){try{var l=e[a](i),s=l.value}catch(e){n(e);return}l.done?t(s):Promise.resolve(s).then(r,o)}function td(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function tf(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function tp(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h=(0,O.c)(14);return h[0]===Symbol.for("react.memo_cache_sentinel")?(t={maskType:"luminance"},h[0]=t):t=h[0],h[1]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsx)("mask",{id:"nodejs_icon_mask_a",style:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"14",height:"14",children:(0,S.jsx)("path",{d:"M6.67.089 1.205 3.256a.663.663 0 0 0-.33.573v6.339c0 .237.126.455.33.574l5.466 3.17a.66.66 0 0 0 .66 0l5.465-3.17a.664.664 0 0 0 .329-.574V3.829a.663.663 0 0 0-.33-.573L7.33.089a.663.663 0 0 0-.661 0",fill:"#fff"})}),h[1]=n):n=h[1],h[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("g",{mask:"url(#nodejs_icon_mask_a)",children:(0,S.jsx)("path",{d:"M18.648 2.717 3.248-4.86-4.648 11.31l15.4 7.58 7.896-16.174z",fill:"url(#nodejs_icon_linear_gradient_b)"})}),h[2]=r):r=h[2],h[3]===Symbol.for("react.memo_cache_sentinel")?(o={maskType:"luminance"},h[3]=o):o=h[3],h[4]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsx)("mask",{id:"nodejs_icon_mask_c",style:o,maskUnits:"userSpaceOnUse",x:"1",y:"0",width:"12",height:"14",children:(0,S.jsx)("path",{d:"M1.01 10.57a.663.663 0 0 0 .195.17l4.688 2.72.781.45a.66.66 0 0 0 .51.063l5.764-10.597a.653.653 0 0 0-.153-.122L9.216 1.18 7.325.087a.688.688 0 0 0-.171-.07L1.01 10.57z",fill:"#fff"})}),h[4]=a):a=h[4],h[5]===Symbol.for("react.memo_cache_sentinel")?(i=(0,S.jsx)("g",{mask:"url(#nodejs_icon_mask_c)",children:(0,S.jsx)("path",{d:"M-5.647 4.958 5.226 19.734l14.38-10.667L8.734-5.71-5.647 4.958z",fill:"url(#nodejs_icon_linear_gradient_d)"})}),h[5]=i):i=h[5],h[6]===Symbol.for("react.memo_cache_sentinel")?(l={maskType:"luminance"},h[6]=l):l=h[6],h[7]===Symbol.for("react.memo_cache_sentinel")?(s=(0,S.jsx)("mask",{id:"nodejs_icon_mask_e",style:l,maskUnits:"userSpaceOnUse",x:"1",y:"0",width:"13",height:"14",children:(0,S.jsx)("path",{d:"M6.934.004A.665.665 0 0 0 6.67.09L1.22 3.247l5.877 10.746a.655.655 0 0 0 .235-.08l5.465-3.17a.665.665 0 0 0 .319-.453L7.126.015a.684.684 0 0 0-.189-.01",fill:"#fff"})}),h[7]=s):s=h[7],h[8]===Symbol.for("react.memo_cache_sentinel")?(c=(0,S.jsxs)("g",{children:[s,(0,S.jsx)("g",{mask:"url(#nodejs_icon_mask_e)",children:(0,S.jsx)("path",{d:"M1.22.002v13.992h11.894V.002H1.22z",fill:"url(#nodejs_icon_linear_gradient_f)"})})]}),h[8]=c):c=h[8],h[9]===Symbol.for("react.memo_cache_sentinel")?(u=(0,S.jsxs)("linearGradient",{id:"nodejs_icon_linear_gradient_b",x1:"10.943",y1:"-1.084",x2:"2.997",y2:"15.062",gradientUnits:"userSpaceOnUse",children:[(0,S.jsx)("stop",{offset:".3",stopColor:"#3E863D"}),(0,S.jsx)("stop",{offset:".5",stopColor:"#55934F"}),(0,S.jsx)("stop",{offset:".8",stopColor:"#5AAD45"})]}),h[9]=u):u=h[9],h[10]===Symbol.for("react.memo_cache_sentinel")?(d=(0,S.jsxs)("linearGradient",{id:"nodejs_icon_linear_gradient_d",x1:"-.145",y1:"12.431",x2:"14.277",y2:"1.818",gradientUnits:"userSpaceOnUse",children:[(0,S.jsx)("stop",{offset:".57",stopColor:"#3E863D"}),(0,S.jsx)("stop",{offset:".72",stopColor:"#619857"}),(0,S.jsx)("stop",{offset:"1",stopColor:"#76AC64"})]}),h[10]=d):d=h[10],h[11]===Symbol.for("react.memo_cache_sentinel")?(f=(0,S.jsxs)("defs",{children:[u,d,(0,S.jsxs)("linearGradient",{id:"nodejs_icon_linear_gradient_f",x1:"1.225",y1:"6.998",x2:"13.116",y2:"6.998",gradientUnits:"userSpaceOnUse",children:[(0,S.jsx)("stop",{offset:".16",stopColor:"#6BBF47"}),(0,S.jsx)("stop",{offset:".38",stopColor:"#79B461"}),(0,S.jsx)("stop",{offset:".47",stopColor:"#75AC64"}),(0,S.jsx)("stop",{offset:".7",stopColor:"#659E5A"}),(0,S.jsx)("stop",{offset:".9",stopColor:"#3E863D"})]})]}),h[11]=f):f=h[11],h[12]!==e?(p=(0,S.jsxs)("svg",tf(td({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),{children:[n,r,a,i,c,f]})),h[12]=e,h[13]=p):p=h[13],p}function th(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h=(0,O.c)(14);return h[0]===Symbol.for("react.memo_cache_sentinel")?(t={maskType:"luminance"},h[0]=t):t=h[0],h[1]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsx)("mask",{id:"nodejs_icon_mask_a",style:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"14",height:"14",children:(0,S.jsx)("path",{d:"M6.67.089 1.205 3.256a.663.663 0 0 0-.33.573v6.339c0 .237.126.455.33.574l5.466 3.17a.66.66 0 0 0 .66 0l5.465-3.17a.664.664 0 0 0 .329-.574V3.829a.663.663 0 0 0-.33-.573L7.33.089a.663.663 0 0 0-.661 0",fill:"#fff"})}),h[1]=n):n=h[1],h[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("g",{mask:"url(#nodejs_icon_mask_a)",children:(0,S.jsx)("path",{d:"M18.648 2.717 3.248-4.86-4.646 11.31l15.399 7.58 7.896-16.174z",fill:"url(#nodejs_icon_linear_gradient_b)"})}),h[2]=r):r=h[2],h[3]===Symbol.for("react.memo_cache_sentinel")?(o={maskType:"luminance"},h[3]=o):o=h[3],h[4]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsx)("mask",{id:"nodejs_icon_mask_c",style:o,maskUnits:"userSpaceOnUse",x:"1",y:"0",width:"12",height:"15",children:(0,S.jsx)("path",{d:"M1.01 10.571a.66.66 0 0 0 .195.172l4.688 2.718.781.451a.66.66 0 0 0 .51.063l5.764-10.597a.653.653 0 0 0-.153-.122L9.216 1.181 7.325.09a.688.688 0 0 0-.171-.07L1.01 10.572z",fill:"#fff"})}),h[4]=a):a=h[4],h[5]===Symbol.for("react.memo_cache_sentinel")?(i=(0,S.jsx)("g",{mask:"url(#nodejs_icon_mask_c)",children:(0,S.jsx)("path",{d:"M-5.647 4.96 5.226 19.736 19.606 9.07 8.734-5.707-5.647 4.96z",fill:"url(#nodejs_icon_linear_gradient_d)"})}),h[5]=i):i=h[5],h[6]===Symbol.for("react.memo_cache_sentinel")?(l={maskType:"luminance"},h[6]=l):l=h[6],h[7]===Symbol.for("react.memo_cache_sentinel")?(s=(0,S.jsx)("mask",{id:"nodejs_icon_mask_e",style:l,maskUnits:"userSpaceOnUse",x:"1",y:"0",width:"13",height:"14",children:(0,S.jsx)("path",{d:"M6.935.003a.665.665 0 0 0-.264.085l-5.45 3.158 5.877 10.747a.653.653 0 0 0 .235-.082l5.465-3.17a.665.665 0 0 0 .319-.452L7.127.014a.684.684 0 0 0-.189-.01",fill:"#fff"})}),h[7]=s):s=h[7],h[8]===Symbol.for("react.memo_cache_sentinel")?(c=(0,S.jsxs)("g",{children:[s,(0,S.jsx)("g",{mask:"url(#nodejs_icon_mask_e)",children:(0,S.jsx)("path",{d:"M1.222.001v13.992h11.893V0H1.222z",fill:"url(#nodejs_icon_linear_gradient_f)"})})]}),h[8]=c):c=h[8],h[9]===Symbol.for("react.memo_cache_sentinel")?(u=(0,S.jsxs)("linearGradient",{id:"nodejs_icon_linear_gradient_b",x1:"10.944",y1:"-1.084",x2:"2.997",y2:"15.062",gradientUnits:"userSpaceOnUse",children:[(0,S.jsx)("stop",{offset:".3",stopColor:"#676767"}),(0,S.jsx)("stop",{offset:".5",stopColor:"#858585"}),(0,S.jsx)("stop",{offset:".8",stopColor:"#989A98"})]}),h[9]=u):u=h[9],h[10]===Symbol.for("react.memo_cache_sentinel")?(d=(0,S.jsxs)("linearGradient",{id:"nodejs_icon_linear_gradient_d",x1:"-.145",y1:"12.433",x2:"14.277",y2:"1.819",gradientUnits:"userSpaceOnUse",children:[(0,S.jsx)("stop",{offset:".57",stopColor:"#747474"}),(0,S.jsx)("stop",{offset:".72",stopColor:"#707070"}),(0,S.jsx)("stop",{offset:"1",stopColor:"#929292"})]}),h[10]=d):d=h[10],h[11]===Symbol.for("react.memo_cache_sentinel")?(f=(0,S.jsxs)("defs",{children:[u,d,(0,S.jsxs)("linearGradient",{id:"nodejs_icon_linear_gradient_f",x1:"1.226",y1:"6.997",x2:"13.117",y2:"6.997",gradientUnits:"userSpaceOnUse",children:[(0,S.jsx)("stop",{offset:".16",stopColor:"#878787"}),(0,S.jsx)("stop",{offset:".38",stopColor:"#A9A9A9"}),(0,S.jsx)("stop",{offset:".47",stopColor:"#A5A5A5"}),(0,S.jsx)("stop",{offset:".7",stopColor:"#8F8F8F"}),(0,S.jsx)("stop",{offset:".9",stopColor:"#626262"})]})]}),h[11]=f):f=h[11],h[12]!==e?(p=(0,S.jsxs)("svg",tf(td({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),{children:[n,r,a,i,c,f]})),h[12]=e,h[13]=p):p=h[13],p}function tm(e){var t,n=e.defaultDevtoolsFrontendUrl,r=(t=(0,C.useActionState)(function(){var e;return(e=function(){var e,t,n,r;return function(e,t){var n,r,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},i=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return i.next=l(0),i.throw=l(1),i.return=l(2),"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function l(l){return function(s){var c=[l,s];if(n)throw TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(a=0)),a;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return a.label++,{value:c[1],done:!1};case 5:a.label++,r=c[1],c=[0];continue;case 7:c=a.ops.pop(),a.trys.pop();continue;default:if(!(o=(o=a.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){a=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){a.label=c[1];break}if(6===c[0]&&a.label<o[1]){a.label=o[1],o=c;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(c);break}o[2]&&a.ops.pop(),a.trys.pop();continue}c=t.call(e,a)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}(this,function(o){switch(o.label){case 0:return o.trys.push([0,5,,6]),[4,fetch("/__nextjs_attach-nodejs-inspector",{method:"POST"})];case 1:if((e=o.sent()).ok)return[3,3];return t=Error.bind,r=(n="".concat(e.status," ").concat(e.statusText,": ")).concat,[4,e.text()];case 2:throw new(t.apply(Error,[void 0,r.apply(n,[o.sent()])]));case 3:return[4,e.json()];case 4:return[2,{status:"fulfilled",value:o.sent()}];case 5:return[2,{status:"rejected",reason:Error("Failed to attach Node.js inspector: "+String(o.sent()))}];case 6:return[2]}})},function(){var t=this,n=arguments;return new Promise(function(r,o){var a=e.apply(t,n);function i(e){tu(a,r,o,i,l,"next",e)}function l(e){tu(a,r,o,i,l,"throw",e)}i(void 0)})})()},{status:"fulfilled",value:n}),function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),3!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,3)||function(e,t){if(e){if("string"==typeof e)return tc(e,3);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return tc(e,3)}}(t,3)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=r[0],a=r[1],i=r[2],l="fulfilled"===o.status?o.value:void 0;(0,C.useEffect)(function(){"rejected"===o.status&&console.error(o.reason)},[o]);var s=C.startTransition.bind(null,a);return void 0===l?(0,S.jsx)("button",{className:"nodejs-inspector-button","data-pending":i,onClick:i?void 0:s,title:"rejected"===o.status?"Retry attaching Node.js inspector":"Attach Node.js inspector",children:(0,S.jsx)(th,{className:"error-overlay-toolbar-button-icon",width:14,height:14})}):(0,S.jsx)(ti,{"data-nextjs-data-runtime-error-copy-devtools-url":!0,className:"nodejs-inspector-button",actionLabel:"Copy DevTools URL for Chrome",successLabel:"Copied",content:l,icon:(0,S.jsx)(tp,{className:"error-overlay-toolbar-button-icon",width:14,height:14})})}function tg(e){var t,n=(0,O.c)(3),r=e.error,o=e.generateErrorInfo,a=!r;return n[0]!==o||n[1]!==a?(t=(0,S.jsx)(ti,{"data-nextjs-data-runtime-error-copy-stack":!0,className:"copy-error-button",actionLabel:"Copy Error Info",successLabel:"Error Info Copied",getContent:o,disabled:a}),n[0]=o,n[1]=a,n[2]=t):t=n[2],t}function ty(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function tv(e){if(Array.isArray(e))return e}function tb(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function tx(e,t){return tv(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||t_(e,t)||tb()}function tw(e){return tv(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||t_(e)||tb()}function t_(e,t){if(e){if("string"==typeof e)return ty(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ty(e,t)}}var tj="https://react.dev/link/hydration-mismatch",tk="https://nextjs.org/docs/messages/react-hydration-error",tS=[/^In HTML, (.+?) cannot be a child of <(.+?)>\.(.*)\nThis will cause a hydration error\.(.*)/,/^In HTML, (.+?) cannot be a descendant of <(.+?)>\.\nThis will cause a hydration error\.(.*)/,/^In HTML, text nodes cannot be a child of <(.+?)>\.\nThis will cause a hydration error\./,/^In HTML, whitespace text nodes cannot be a child of <(.+?)>\. Make sure you don't have any extra whitespace between tags on each line of your source code\.\nThis will cause a hydration error\./];function tO(e){return tS.some(function(t){return t.test(e)})}var tC=["https://nextjs.org","https://react.dev"];function tP(e){return tC.some(function(t){return e.startsWith(t)})}function tE(e){var t,n,r,o,a=(0,O.c)(6),i=e.errorMessage;a[0]!==i?(t=function(e){var t,n,r,o=(t=e,n=tP,r=Array.from(t.matchAll(/https?:\/\/[^\s/$.?#].[^\s)'"]*/gi),function(e){return e[0]}),n?r.filter(function(e){return n(e)}):r);if(0===o.length)return null;var a=o[0];return a===tj?tk:a}(i),a[0]=i,a[1]=t):t=a[1];var l=t;return l?(a[3]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)(tT,{className:"error-overlay-toolbar-button-icon",width:14,height:14}),a[3]=r):r=a[3],a[4]!==l?(o=(0,S.jsx)("a",{title:"Go to related documentation","aria-label":"Go to related documentation",className:"docs-link-button",href:l,target:"_blank",rel:"noopener noreferrer",children:r}),a[4]=l,a[5]=o):o=a[5],o):(a[2]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsx)("button",{title:"No related documentation found","aria-label":"No related documentation found",className:"docs-link-button",disabled:!0,children:(0,S.jsx)(tT,{className:"error-overlay-toolbar-button-icon",width:14,height:14})}),a[2]=n):n=a[2],n)}function tT(e){var t,n,r,o,a=(0,O.c)(3);return(a[0]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 .875h4.375C5.448.875 6.401 1.39 7 2.187A3.276 3.276 0 0 1 9.625.875H14v11.156H9.4c-.522 0-1.023.208-1.392.577l-.544.543h-.928l-.544-.543c-.369-.37-.87-.577-1.392-.577H0V.875zm6.344 3.281a1.969 1.969 0 0 0-1.969-1.968H1.312v8.53H4.6c.622 0 1.225.177 1.744.502V4.156zm1.312 7.064V4.156c0-1.087.882-1.968 1.969-1.968h3.063v8.53H9.4c-.622 0-1.225.177-1.744.502z",fill:"currentColor"}),a[0]=r):r=a[0],a[1]!==e)?(o=(0,S.jsx)("svg",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),a[1]=e,a[2]=o):o=a[2],o}function tN(e){var t,n,r,o,a=(0,O.c)(13),i=e.error,l=e.debugInfo,s=e.feedbackButton,c=e.generateErrorInfo;a[0]!==i||a[1]!==c?(t=(0,S.jsx)(tg,{error:i,generateErrorInfo:c}),a[0]=i,a[1]=c,a[2]=t):t=a[2],a[3]!==i.message?(n=(0,S.jsx)(tE,{errorMessage:i.message}),a[3]=i.message,a[4]=n):n=a[4];var u=null==l?void 0:l.devtoolsFrontendUrl,d=null==l?void 0:l.devtoolsFrontendUrl;return a[5]!==u||a[6]!==d?(r=(0,S.jsx)(tm,{defaultDevtoolsFrontendUrl:d},u),a[5]=u,a[6]=d,a[7]=r):r=a[7],a[8]!==s||a[9]!==t||a[10]!==n||a[11]!==r?(o=(0,S.jsxs)("span",{className:"error-overlay-toolbar",children:[s,t,n,r]}),a[8]=s,a[9]=t,a[10]=n,a[11]=r,a[12]=o):o=a[12],o}function tI(e){var t,n,r,o,a=(0,O.c)(3);return(a[0]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("g",{id:"thumb-up-16",children:(0,S.jsx)("path",{id:"Union",fillRule:"evenodd",clipRule:"evenodd",d:"M6.89531 2.23959C6.72984 2.1214 6.5 2.23968 6.5 2.44303V5.24989C6.5 6.21639 5.7165 6.99989 4.75 6.99989H2.5V13.4999H12.1884C12.762 13.4999 13.262 13.1095 13.4011 12.5531L14.4011 8.55306C14.5984 7.76412 14.0017 6.99989 13.1884 6.99989H9.25H8.5V6.24989V3.51446C8.5 3.43372 8.46101 3.35795 8.39531 3.31102L6.89531 2.23959ZM5 2.44303C5 1.01963 6.6089 0.191656 7.76717 1.01899L9.26717 2.09042C9.72706 2.41892 10 2.94929 10 3.51446V5.49989H13.1884C14.9775 5.49989 16.2903 7.18121 15.8563 8.91686L14.8563 12.9169C14.5503 14.1411 13.4503 14.9999 12.1884 14.9999H1.75H1V14.2499V6.24989V5.49989H1.75H4.75C4.88807 5.49989 5 5.38796 5 5.24989V2.44303Z",fill:"currentColor"})}),a[0]=r):r=a[0],a[1]!==e)?(o=(0,S.jsx)("svg",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:"thumbs-up-icon"},e),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),a[1]=e,a[2]=o):o=a[2],o}function tL(e){var t,n,r,o,a=(0,O.c)(3);return(a[0]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.89531 12.7603C5.72984 12.8785 5.5 12.7602 5.5 12.5569V9.75C5.5 8.7835 4.7165 8 3.75 8H1.5V1.5H11.1884C11.762 1.5 12.262 1.89037 12.4011 2.44683L13.4011 6.44683C13.5984 7.23576 13.0017 8 12.1884 8H8.25H7.5V8.75V11.4854C7.5 11.5662 7.46101 11.6419 7.39531 11.6889L5.89531 12.7603ZM4 12.5569C4 13.9803 5.6089 14.8082 6.76717 13.9809L8.26717 12.9095C8.72706 12.581 9 12.0506 9 11.4854V9.5H12.1884C13.9775 9.5 15.2903 7.81868 14.8563 6.08303L13.8563 2.08303C13.5503 0.858816 12.4503 0 11.1884 0H0.75H0V0.75V8.75V9.5H0.75H3.75C3.88807 9.5 4 9.61193 4 9.75V12.5569Z",fill:"currentColor"}),a[0]=r):r=a[0],a[1]!==e)?(o=(0,S.jsx)("svg",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:"thumbs-down-icon"},e),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),a[1]=e,a[2]=o):o=a[2],o}function tA(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function tz(e,t,n,r,o,a,i){try{var l=e[a](i),s=l.value}catch(e){n(e);return}l.done?t(s):Promise.resolve(s).then(r,o)}function tR(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function tD(e){var t,n=e.errorCode,r=e.className,o=(t=(0,C.useState)({}),function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||function(e,t){if(e){if("string"==typeof e)return tA(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return tA(e,2)}}(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=o[0],i=o[1],l=a[n],s=process.env.__NEXT_TELEMETRY_DISABLED,c=(0,C.useCallback)(function(e){var t;return(t=function(){return function(e,t){var n,r,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},i=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return i.next=l(0),i.throw=l(1),i.return=l(2),"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function l(l){return function(s){var c=[l,s];if(n)throw TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(a=0)),a;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return a.label++,{value:c[1],done:!1};case 5:a.label++,r=c[1],c=[0];continue;case 7:c=a.ops.pop(),a.trys.pop();continue;default:if(!(o=(o=a.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){a=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){a.label=c[1];break}if(6===c[0]&&a.label<o[1]){a.label=o[1],o=c;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(c);break}o[2]&&a.ops.pop(),a.trys.pop();continue}c=t.call(e,a)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}(this,function(t){switch(t.label){case 0:i(function(t){var r,o;return r=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){tR(e,t,n[t])})}return e}({},t),o=null!=(o=tR({},n,e))?o:{},Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(o)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(o)).forEach(function(e){Object.defineProperty(r,e,Object.getOwnPropertyDescriptor(o,e))}),r}),t.label=1;case 1:return t.trys.push([1,3,,4]),[4,fetch("".concat(process.env.__NEXT_ROUTER_BASEPATH||"","/__nextjs_error_feedback?").concat(new URLSearchParams({errorCode:n,wasHelpful:e.toString()})))];case 2:return t.sent().ok||console.error("Failed to record feedback on the server."),[3,4];case 3:return console.error("Failed to record feedback:",t.sent()),[3,4];case 4:return[2]}})},function(){var e=this,n=arguments;return new Promise(function(r,o){var a=t.apply(e,n);function i(e){tz(a,r,o,i,l,"next",e)}function l(e){tz(a,r,o,i,l,"throw",e)}i(void 0)})})()},[n]);return(0,S.jsx)("div",{className:e9("error-feedback",r),role:"region","aria-label":"Error feedback",children:void 0!==l?(0,S.jsx)("p",{className:"error-feedback-thanks",role:"status","aria-live":"polite",children:"Thanks for your feedback!"}):(0,S.jsxs)(S.Fragment,{children:[(0,S.jsx)("p",{children:(0,S.jsx)("a",{href:"https://nextjs.org/telemetry#error-feedback",rel:"noopener noreferrer",target:"_blank",children:"Was this helpful?"})}),(0,S.jsx)("button",{"aria-disabled":s?"true":void 0,"aria-label":"Mark as helpful",onClick:s?void 0:function(){return c(!0)},className:e9("feedback-button",!0===l&&"voted"),title:s?"Feedback disabled due to setting NEXT_TELEMETRY_DISABLED":void 0,type:"button",children:(0,S.jsx)(tI,{"aria-hidden":"true"})}),(0,S.jsx)("button",{"aria-disabled":s?"true":void 0,"aria-label":"Mark as not helpful",onClick:s?void 0:function(){return c(!1)},className:e9("feedback-button",!1===l&&"voted"),title:s?"Feedback disabled due to setting NEXT_TELEMETRY_DISABLED":void 0,type:"button",children:(0,S.jsx)(tL,{"aria-hidden":"true",style:{translate:"1px 1px"}})})]})})}function tM(e){var t,n,r=(0,O.c)(4),o=e.errorCode;return r[0]!==o?(t=o?(0,S.jsx)(tD,{className:"error-feedback",errorCode:o}):null,r[0]=o,r[1]=t):t=r[1],r[2]!==t?(n=(0,S.jsx)("footer",{"data-nextjs-error-overlay-footer":!0,className:"error-overlay-footer",children:t}),r[2]=t,r[3]=n):n=r[3],n}var tZ="\n .error-overlay-footer {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n\n gap: 8px;\n padding: 12px;\n background: var(--color-background-200);\n border-top: 1px solid var(--color-gray-400);\n }\n\n .error-feedback {\n margin-left: auto;\n\n p {\n font-size: var(--size-14);\n font-weight: 500;\n margin: 0;\n }\n }\n\n ".concat("\n .error-feedback {\n display: flex;\n align-items: center;\n gap: 8px;\n white-space: nowrap;\n color: var(--color-gray-900);\n }\n\n .error-feedback-thanks {\n height: var(--size-24);\n display: flex;\n align-items: center;\n padding-right: 4px; /* To match the 4px inner padding of the thumbs up and down icons */\n }\n\n .feedback-button {\n background: none;\n border: none;\n border-radius: var(--rounded-md);\n width: var(--size-24);\n height: var(--size-24);\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n\n &:focus {\n outline: var(--focus-ring);\n }\n\n &:hover {\n background: var(--color-gray-alpha-100);\n }\n\n &:active {\n background: var(--color-gray-alpha-200);\n }\n }\n\n .feedback-button[aria-disabled='true'] {\n opacity: 0.7;\n cursor: not-allowed;\n }\n\n .feedback-button.voted {\n background: var(--color-gray-alpha-200);\n }\n\n .thumbs-up-icon,\n .thumbs-down-icon {\n color: var(--color-gray-900);\n width: var(--size-16);\n height: var(--size-16);\n }\n","\n");function tU(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function tF(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return tU(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return tU(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function tH(e){var t,n,r,o,a,i=(0,O.c)(12),l=e.errorMessage,s=e.errorType,c=tF((0,C.useState)(!1),2),u=c[0],d=c[1],f=tF((0,C.useState)(!1),2),p=f[0],h=f[1],m=(0,C.useRef)(null);i[0]===Symbol.for("react.memo_cache_sentinel")?(t=function(){m.current&&h(m.current.scrollHeight>200)},i[0]=t):t=i[0],i[1]!==l?(n=[l],i[1]=l,i[2]=n):n=i[2],(0,C.useLayoutEffect)(t,n);var g=p&&"Blocking Route"!==s,y="nextjs__container_errors_desc ".concat(g&&!u?"truncated":"");return i[3]!==l||i[4]!==y?(r=(0,S.jsx)("div",{ref:m,id:"nextjs__container_errors_desc",className:y,children:l}),i[3]=l,i[4]=y,i[5]=r):r=i[5],i[6]!==u||i[7]!==g?(o=g&&!u&&(0,S.jsxs)(S.Fragment,{children:[(0,S.jsx)("div",{className:"nextjs__container_errors_gradient_overlay"}),(0,S.jsx)("button",{onClick:function(){return d(!0)},className:"nextjs__container_errors_expand_button","aria-expanded":u,"aria-controls":"nextjs__container_errors_desc",children:"Show More"})]}),i[6]=u,i[7]=g,i[8]=o):o=i[8],i[9]!==r||i[10]!==o?(a=(0,S.jsxs)("div",{className:"nextjs__container_errors_wrapper",children:[r,o]}),i[9]=r,i[10]=o,i[11]=a):a=i[11],a}function tV(e){var t,n=(0,O.c)(3),r=e.errorType,o="nextjs__container_errors_label ".concat("Blocking Route"===r||"Ambiguous Metadata"===r?"nextjs__container_errors_label_blocking_page":"");return n[0]!==r||n[1]!==o?(t=(0,S.jsx)("span",{id:"nextjs__container_errors_label",className:o,children:r}),n[0]=r,n[1]=o,n[2]=t):t=n[2],t}function tB(e){var t,n,r=(0,O.c)(4),o=e.title,a=e.className;return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.24996 12.0608L8.71963 11.5304L5.89641 8.70722C5.50588 8.3167 5.50588 7.68353 5.89641 7.29301L8.71963 4.46978L9.24996 3.93945L10.3106 5.00011L9.78029 5.53044L7.31062 8.00011L9.78029 10.4698L10.3106 11.0001L9.24996 12.0608Z",fill:"currentColor"}),r[0]=t):t=r[0],r[1]!==a||r[2]!==o?(n=(0,S.jsx)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-label":o,className:a,children:t}),r[1]=a,r[2]=o,r[3]=n):n=r[3],n}function t$(e){var t,n,r=(0,O.c)(4),o=e.title,a=e.className;return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.75011 3.93945L7.28044 4.46978L10.1037 7.29301C10.4942 7.68353 10.4942 8.3167 10.1037 8.70722L7.28044 11.5304L6.75011 12.0608L5.68945 11.0001L6.21978 10.4698L8.68945 8.00011L6.21978 5.53044L5.68945 5.00011L6.75011 3.93945Z",fill:"currentColor"}),r[0]=t):t=r[0],r[1]!==a||r[2]!==o?(n=(0,S.jsx)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:a,"aria-label":o,children:t}),r[1]=a,r[2]=o,r[3]=n):n=r[3],n}function tq(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function tW(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y=(0,O.c)(40),v=e.runtimeErrors,b=e.activeIdx,x=e.onActiveIndexChange;y[0]!==b||y[1]!==x?(n=function(){return(0,C.startTransition)(function(){b>0&&x(Math.max(0,b-1))})},y[0]=b,y[1]=x,y[2]=n):n=y[2];var w=n;y[3]!==b||y[4]!==x||y[5]!==v.length?(r=function(){return(0,C.startTransition)(function(){b<v.length-1&&x(Math.max(0,Math.min(v.length-1,b+1)))})},y[3]=b,y[4]=x,y[5]=v.length,y[6]=r):r=y[6];var _=r,j=(0,C.useRef)(null),k=(0,C.useRef)(null),P=(t=(0,C.useState)(null),function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||function(e,t){if(e){if("string"==typeof e)return tq(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return tq(e,2)}}(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),E=P[0],T=P[1];y[7]===Symbol.for("react.memo_cache_sentinel")?(o=function(e){T(e)},y[7]=o):o=y[7];var N=o;y[8]!==_||y[9]!==w||y[10]!==E?(a=function(){if(null!=E){var e=E.getRootNode(),t=self.document,n=function(e){"ArrowLeft"===e.key?(e.preventDefault(),e.stopPropagation(),w&&w()):"ArrowRight"===e.key&&(e.preventDefault(),e.stopPropagation(),_&&_())};return e.addEventListener("keydown",n),e!==t&&t.addEventListener("keydown",n),function(){e.removeEventListener("keydown",n),e!==t&&t.removeEventListener("keydown",n)}}},i=[E,_,w],y[8]=_,y[9]=w,y[10]=E,y[11]=a,y[12]=i):(a=y[11],i=y[12]),(0,C.useEffect)(a,i),y[13]!==b||y[14]!==E||y[15]!==v.length?(l=function(){if(null!=E){var e,t,n=E.getRootNode();if(e=n,null!=(t=ShadowRoot)&&"undefined"!=typeof Symbol&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t){var r=n.activeElement;0===b?j.current&&r===j.current&&j.current.blur():b===v.length-1&&k.current&&r===k.current&&k.current.blur()}}},s=[E,b,v.length],y[13]=b,y[14]=E,y[15]=v.length,y[16]=l,y[17]=s):(l=y[16],s=y[17]),(0,C.useEffect)(l,s);var I=0===b,L=0===b;y[18]===Symbol.for("react.memo_cache_sentinel")?(c=(0,S.jsx)(tB,{title:"previous",className:"error-overlay-pagination-button-icon"}),y[18]=c):c=y[18],y[19]!==w||y[20]!==I||y[21]!==L?(u=(0,S.jsx)("button",{ref:j,type:"button",disabled:I,"aria-disabled":L,onClick:w,"data-nextjs-dialog-error-previous":!0,className:"error-overlay-pagination-button",children:c}),y[19]=w,y[20]=I,y[21]=L,y[22]=u):u=y[22];var A=b+1;y[23]!==b||y[24]!==A?(d=(0,S.jsxs)("span",{"data-nextjs-dialog-error-index":b,children:[A,"/"]}),y[23]=b,y[24]=A,y[25]=d):d=y[25];var z=v.length||1;y[26]!==z?(f=(0,S.jsx)("span",{"data-nextjs-dialog-header-total-count":!0,children:z}),y[26]=z,y[27]=f):f=y[27],y[28]!==d||y[29]!==f?(p=(0,S.jsxs)("div",{className:"error-overlay-pagination-count",children:[d,f]}),y[28]=d,y[29]=f,y[30]=p):p=y[30];var R=b>=v.length-1,D=b>=v.length-1;return y[31]===Symbol.for("react.memo_cache_sentinel")?(h=(0,S.jsx)(t$,{title:"next",className:"error-overlay-pagination-button-icon"}),y[31]=h):h=y[31],y[32]!==_||y[33]!==R||y[34]!==D?(m=(0,S.jsx)("button",{ref:k,type:"button",disabled:R,"aria-disabled":D,onClick:_,"data-nextjs-dialog-error-next":!0,className:"error-overlay-pagination-button",children:h}),y[32]=_,y[33]=R,y[34]=D,y[35]=m):m=y[35],y[36]!==u||y[37]!==p||y[38]!==m?(g=(0,S.jsxs)("nav",{className:"error-overlay-pagination dialog-exclude-closing-from-outside-click",ref:N,children:[u,p,m]}),y[36]=u,y[37]=p,y[38]=m,y[39]=g):g=y[39],g}function tK(e){var t,n,r,o,a=(0,O.c)(3);return(a[0]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("circle",{cx:"7",cy:"7",r:"5.5",strokeWidth:"3"}),a[0]=r):r=a[0],a[1]!==e)?(o=(0,S.jsx)("svg",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),a[1]=e,a[2]=o):o=a[2],o}function tY(e){var t,n,r,o,a,i=(0,O.c)(31),l=e.versionInfo,s=e.bundlerName,c=l.staleness;if(i[0]!==s||i[1]!==c||i[2]!==l){v=Symbol.for("react.early_return_sentinel");n:{var u=function(e){var t=e.installed,n=e.staleness,r=e.expected,o="",a="",i="",l="Next.js ".concat(t);switch(n){case"newer-than-npm":case"fresh":o=l,a="Latest available version is detected (".concat(t,")."),i="fresh";break;case"stale-patch":case"stale-minor":o="".concat(l," (stale)"),a="There is a newer version (".concat(r,") available, upgrade recommended! "),i="stale";break;case"stale-major":o="".concat(l," (outdated)"),a="An outdated version detected (latest is ".concat(r,"), upgrade is highly recommended!"),i="outdated";break;case"stale-prerelease":o="".concat(l," (stale)"),a="There is a newer canary version (".concat(r,") available, please upgrade! "),i="stale";break;case"unknown":o="".concat(l," (unknown)"),a="No Next.js version data was found.",i="unknown"}return{text:o,indicatorClass:i,title:a}}(l),d=u.text,f=u.indicatorClass,p=u.title;if(b=d,x=p,m="Turbopack"===s,c.startsWith("stale")){var h,m,g,y,v,b,x,w,_,j=m&&"turbopack-text";i[10]!==j?(w=e9(j),i[10]=j,i[11]=w):w=i[11],i[12]!==s||i[13]!==w?(_=(0,S.jsx)("span",{className:w,children:s}),i[12]=s,i[13]=w,i[14]=_):_=i[14],v=(0,S.jsxs)("a",{className:"nextjs-container-build-error-version-status dialog-exclude-closing-from-outside-click",target:"_blank",rel:"noopener noreferrer",href:"https://nextjs.org/docs/messages/version-staleness",children:[(0,S.jsx)(tK,{className:e9("version-staleness-indicator",f)}),(0,S.jsx)("span",{"data-nextjs-version-checker":!0,title:x,children:b}),_]});break n}y="nextjs-container-build-error-version-status dialog-exclude-closing-from-outside-click",h=tK,g=e9("version-staleness-indicator",f)}i[0]=s,i[1]=c,i[2]=l,i[3]=h,i[4]=m,i[5]=g,i[6]=y,i[7]=v,i[8]=b,i[9]=x}else h=i[3],m=i[4],g=i[5],y=i[6],v=i[7],b=i[8],x=i[9];if(v!==Symbol.for("react.early_return_sentinel"))return v;i[15]!==h||i[16]!==g?(t=(0,S.jsx)(h,{className:g}),i[15]=h,i[16]=g,i[17]=t):t=i[17],i[18]!==b||i[19]!==x?(n=(0,S.jsx)("span",{"data-nextjs-version-checker":!0,title:x,children:b}),i[18]=b,i[19]=x,i[20]=n):n=i[20];var k=m&&"turbopack-text";return i[21]!==k?(r=e9(k),i[21]=k,i[22]=r):r=i[22],i[23]!==s||i[24]!==r?(o=(0,S.jsx)("span",{className:r,children:s}),i[23]=s,i[24]=r,i[25]=o):o=i[25],i[26]!==y||i[27]!==t||i[28]!==n||i[29]!==o?(a=(0,S.jsxs)("span",{className:y,children:[t,n,o]}),i[26]=y,i[27]=t,i[28]=n,i[29]=o,i[30]=a):a=i[30],a}function tX(e){var t,n,r,o,a=(0,O.c)(11),i=e.runtimeErrors,l=e.activeIdx,s=e.setActiveIndex,c=e.versionInfo,u=process.env.__NEXT_BUNDLER||"Turbopack";a[0]!==i?(t=null!=i?i:[],a[0]=i,a[1]=t):t=a[1];var d=null!=l?l:0,f=null!=s?s:tG;return a[2]!==t||a[3]!==d||a[4]!==f?(n=(0,S.jsx)(tQ,{side:"left",children:(0,S.jsx)(tW,{runtimeErrors:t,activeIdx:d,onActiveIndexChange:f})}),a[2]=t,a[3]=d,a[4]=f,a[5]=n):n=a[5],a[6]!==c?(r=c&&(0,S.jsx)(tQ,{side:"right",children:(0,S.jsx)(tY,{versionInfo:c,bundlerName:u})}),a[6]=c,a[7]=r):r=a[7],a[8]!==n||a[9]!==r?(o=(0,S.jsxs)("div",{"data-nextjs-error-overlay-nav":!0,children:[n,r]}),a[8]=n,a[9]=r,a[10]=o):o=a[10],o}function tG(){}function tQ(e){var t,n,r=(0,O.c)(4),o=e.children,a=e.side,i=void 0===a?"left":a;return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)(tJ,{}),r[0]=t):t=r[0],r[1]!==o||r[2]!==i?(n=(0,S.jsxs)("div",{className:"error-overlay-notch","data-side":i,children:[o,t]}),r[1]=o,r[2]=i,r[3]=n):n=r[3],n}function tJ(){var e,t,n,r=(0,O.c)(3);return r[0]===Symbol.for("react.memo_cache_sentinel")?(e={maskType:"alpha"},r[0]=e):e=r[0],r[1]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsxs)("mask",{id:"error_overlay_nav_mask0_2667_14687",style:e,maskUnits:"userSpaceOnUse",x:"0",y:"-1",width:"60",height:"43",children:[(0,S.jsxs)("mask",{id:"error_overlay_nav_path_1_outside_1_2667_14687",maskUnits:"userSpaceOnUse",x:"0",y:"-1",width:"60",height:"43",fill:"black",children:[(0,S.jsx)("rect",{fill:"white",y:"-1",width:"60",height:"43"}),(0,S.jsx)("path",{d:"M1 0L8.0783 0C15.772 0 22.7836 4.41324 26.111 11.3501L34.8889 29.6498C38.2164 36.5868 45.228 41 52.9217 41H60H1L1 0Z"})]}),(0,S.jsx)("path",{d:"M1 0L8.0783 0C15.772 0 22.7836 4.41324 26.111 11.3501L34.8889 29.6498C38.2164 36.5868 45.228 41 52.9217 41H60H1L1 0Z",fill:"white"}),(0,S.jsx)("path",{d:"M1 0V-1H0V0L1 0ZM1 41H0V42H1V41ZM34.8889 29.6498L33.9873 30.0823L34.8889 29.6498ZM26.111 11.3501L27.0127 10.9177L26.111 11.3501ZM1 1H8.0783V-1H1V1ZM60 40H1V42H60V40ZM2 41V0L0 0L0 41H2ZM25.2094 11.7826L33.9873 30.0823L35.7906 29.2174L27.0127 10.9177L25.2094 11.7826ZM52.9217 42H60V40H52.9217V42ZM33.9873 30.0823C37.4811 37.3661 44.8433 42 52.9217 42V40C45.6127 40 38.9517 35.8074 35.7906 29.2174L33.9873 30.0823ZM8.0783 1C15.3873 1 22.0483 5.19257 25.2094 11.7826L27.0127 10.9177C23.5188 3.6339 16.1567 -1 8.0783 -1V1Z",fill:"black",mask:"url(#error_overlay_nav_path_1_outside_1_2667_14687)"})]}),r[1]=t):t=r[1],r[2]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsxs)("svg",{width:"60",height:"42",viewBox:"0 0 60 42",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:"error-overlay-notch-tail",preserveAspectRatio:"none",children:[t,(0,S.jsxs)("g",{mask:"url(#error_overlay_nav_mask0_2667_14687)",children:[(0,S.jsxs)("mask",{id:"error_overlay_nav_path_3_outside_2_2667_14687",maskUnits:"userSpaceOnUse",x:"-1",y:"0.0244141",width:"60",height:"43",fill:"black",children:[(0,S.jsx)("rect",{fill:"white",x:"-1",y:"0.0244141",width:"60",height:"43"}),(0,S.jsx)("path",{d:"M0 1.02441H7.0783C14.772 1.02441 21.7836 5.43765 25.111 12.3746L33.8889 30.6743C37.2164 37.6112 44.228 42.0244 51.9217 42.0244H59H0L0 1.02441Z"})]}),(0,S.jsx)("path",{d:"M0 1.02441H7.0783C14.772 1.02441 21.7836 5.43765 25.111 12.3746L33.8889 30.6743C37.2164 37.6112 44.228 42.0244 51.9217 42.0244H59H0L0 1.02441Z",fill:"var(--background-color)"}),(0,S.jsx)("path",{d:"M0 1.02441L0 0.0244141H-1V1.02441H0ZM0 42.0244H-1V43.0244H0L0 42.0244ZM33.8889 30.6743L32.9873 31.1068L33.8889 30.6743ZM25.111 12.3746L26.0127 11.9421L25.111 12.3746ZM0 2.02441H7.0783V0.0244141H0L0 2.02441ZM59 41.0244H0L0 43.0244H59V41.0244ZM1 42.0244L1 1.02441H-1L-1 42.0244H1ZM24.2094 12.8071L32.9873 31.1068L34.7906 30.2418L26.0127 11.9421L24.2094 12.8071ZM51.9217 43.0244H59V41.0244H51.9217V43.0244ZM32.9873 31.1068C36.4811 38.3905 43.8433 43.0244 51.9217 43.0244V41.0244C44.6127 41.0244 37.9517 36.8318 34.7906 30.2418L32.9873 31.1068ZM7.0783 2.02441C14.3873 2.02441 21.0483 6.21699 24.2094 12.8071L26.0127 11.9421C22.5188 4.65831 15.1567 0.0244141 7.0783 0.0244141V2.02441Z",fill:"var(--stroke-color)",mask:"url(#error_overlay_nav_path_3_outside_2_2667_14687)"})]})]}),r[2]=n):n=r[2],n}function t0(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var t1=["[data-next-mark]","[data-issues-open]","#nextjs-dev-tools-menu","[data-nextjs-error-overlay-nav]","[data-info-popover]","[data-nextjs-devtools-panel-overlay]","[data-nextjs-devtools-panel-footer]","[data-nextjs-error-overlay-footer]"],t2=function(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y,v,b,x,w,_,j=(0,O.c)(23);j[0]!==e?(m=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["children","className","onClose","aria-labelledby","aria-describedby"]),f=e.children,p=e.className,h=e.onClose,d=e["aria-labelledby"],u=e["aria-describedby"],j[0]=e,j[1]=u,j[2]=d,j[3]=f,j[4]=p,j[5]=h,j[6]=m):(u=j[1],d=j[2],f=j[3],p=j[4],h=j[5],m=j[6]);var k=C.useRef(null),P=(t=C.useState("undefined"!=typeof document&&document.hasFocus()?"dialog":void 0),function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||function(e,t){if(e){if("string"==typeof e)return t0(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return t0(e,2)}}(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),E=P[0],T=P[1];return(j[7]!==h?(g=function(e){return e.preventDefault(),null==h?void 0:h()},j[7]=h,j[8]=g):g=j[8],n=k,r=t1,o=g,(l=(0,O.c)(5))[0]!==r||l[1]!==n||l[2]!==o?(a=function(){var e=n&&"current"in n?n.current:n;if(null!=e&&null!=o){var t=function(t){!e||e.contains(t.target)||r.some(function(e){return t.target.closest(e)})||o(t)},a=e.getRootNode();return a.addEventListener("mouseup",t),a.addEventListener("touchend",t,{passive:!1}),function(){a.removeEventListener("mouseup",t),a.removeEventListener("touchend",t)}}},i=[o,n,r],l[0]=r,l[1]=n,l[2]=o,l[3]=a,l[4]=i):(a=l[3],i=l[4]),C.useEffect(a,i),j[9]===Symbol.for("react.memo_cache_sentinel")?(y=function(){if(null!=k.current){var e=function(){T(document.hasFocus()?"dialog":void 0)};return window.addEventListener("focus",e),window.addEventListener("blur",e),function(){window.removeEventListener("focus",e),window.removeEventListener("blur",e)}}},v=[],j[9]=y,j[10]=v):(y=j[9],v=j[10]),C.useEffect(y,v),j[11]===Symbol.for("react.memo_cache_sentinel")?(b=function(){var e,t,n=k.current,r=null==n?void 0:n.getRootNode(),o=(e=r,null!=(t=ShadowRoot)&&"undefined"!=typeof Symbol&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t)?null==r?void 0:r.activeElement:null;return null==n||n.focus(),function(){null==n||n.blur(),null==o||o.focus()}},x=[],j[11]=b,j[12]=x):(b=j[11],x=j[12]),C.useEffect(b,x),j[13]!==h?(w=function(e){"Escape"===e.key&&(null==h||h())},j[13]=h,j[14]=w):w=j[14],j[15]!==u||j[16]!==d||j[17]!==f||j[18]!==p||j[19]!==m||j[20]!==E||j[21]!==w)?(_=(0,S.jsx)("div",(s=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({ref:k,tabIndex:-1,"data-nextjs-dialog":!0,"data-nextjs-scrollable-content":!0,role:E,"aria-labelledby":d,"aria-describedby":u,"aria-modal":"true",className:p,onKeyDown:w},m),c=c={children:f},Object.getOwnPropertyDescriptors?Object.defineProperties(s,Object.getOwnPropertyDescriptors(c)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(c)).forEach(function(e){Object.defineProperty(s,e,Object.getOwnPropertyDescriptor(c,e))}),s)),j[15]=u,j[16]=d,j[17]=f,j[18]=p,j[19]=m,j[20]=E,j[21]=w,j[22]=_):_=j[22],_};function t3(e){var t,n,r,o,a,i,l,s,c=(0,O.c)(12);return(c[0]!==e?(i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["children","onClose","footer"]),r=e.children,a=e.onClose,o=e.footer,c[0]=e,c[1]=r,c[2]=o,c[3]=a,c[4]=i):(r=c[1],o=c[2],a=c[3],i=c[4]),c[5]!==r||c[6]!==a||c[7]!==i)?(l=(0,S.jsx)(t2,(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"aria-labelledby":"nextjs__container_errors_label","aria-describedby":"nextjs__container_errors_desc",className:"error-overlay-dialog-scroll",onClose:a},i),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),c[5]=r,c[6]=a,c[7]=i,c[8]=l):l=c[8],c[9]!==o||c[10]!==l?(s=(0,S.jsxs)("div",{className:"error-overlay-dialog-container",children:[l,o]}),c[9]=o,c[10]=l,c[11]=s):s=c[11],s}function t4(e){var t,n,r,o=(0,O.c)(2);return o[0]!==e?(r=(0,S.jsx)("div",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"data-nextjs-dialog-header":!0},e),n=n={children:e.children},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),o[0]=e,o[1]=r):r=o[1],r}function t5(e){var t,n=(0,O.c)(2),r=e.children;return n[0]!==r?(t=(0,S.jsx)(t4,{className:"nextjs-container-errors-header",children:r}),n[0]=r,n[1]=t):t=n[1],t}function t6(e){var t,n=(0,O.c)(2),r=e.children;return n[0]!==r?(t=(0,S.jsx)(e3,{className:"nextjs-container-errors-body",children:r}),n[0]=r,n[1]=t):t=n[1],t}var t9=0,t8=function(e){var t,n,r,o,a,i,l,s=(0,O.c)(9);return(s[0]!==e?(a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["className","children"]),o=e.className,r=e.children,s[0]=e,s[1]=r,s[2]=o,s[3]=a):(r=s[1],o=s[2],a=s[3]),s[4]===Symbol.for("react.memo_cache_sentinel")?(i=[],s[4]=i):i=s[4],C.useEffect(ne,i),s[5]!==r||s[6]!==o||s[7]!==a)?(l=(0,S.jsx)("div",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"data-nextjs-dialog-overlay":!0,className:o},a),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),s[5]=r,s[6]=o,s[7]=a,s[8]=l):l=s[8],l};function t7(){setTimeout(function(){0!==t9&&0==--t9&&(void 0!==l&&(document.body.style.paddingRight=l,l=void 0),void 0!==s&&(document.body.style.overflow=s,s=void 0))})}function ne(){return setTimeout(function(){if(!(t9++>0)){var e=window.innerWidth-document.documentElement.clientWidth;e>0&&(l=document.body.style.paddingRight,document.body.style.paddingRight="".concat(e,"px")),s=document.body.style.overflow,document.body.style.overflow="hidden"}}),t7}function nt(){var e,t,n=(e=["\n [data-nextjs-dialog-overlay] {\n padding: initial;\n top: 10vh;\n }\n"],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return nt=function(){return n},n}function nn(e){var t,n,r,o,a,i=(0,O.c)(6);return(i[0]!==e?(o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["children"]),r=e.children,i[0]=e,i[1]=r,i[2]=o):(r=i[1],o=i[2]),i[3]!==r||i[4]!==o)?(a=(0,S.jsx)(t8,(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},o),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),i[3]=r,i[4]=o,i[5]=a):a=i[5],a}var nr=eg(nt());function no(e){var t,n,r,o=(0,O.c)(4),a=Math.min(e.errorCount-e.activeIdx-1,2);return o[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("div",{className:"error-overlay-bottom-stack-layer error-overlay-bottom-stack-layer-1",children:"1"}),n=(0,S.jsx)("div",{className:"error-overlay-bottom-stack-layer error-overlay-bottom-stack-layer-2",children:"2"}),o[0]=t,o[1]=n):(t=o[0],n=o[1]),o[2]!==a?(r=(0,S.jsx)("div",{"aria-hidden":!0,className:"error-overlay-bottom-stack",children:(0,S.jsxs)("div",{className:"error-overlay-bottom-stack-stack","data-stack-count":a,children:[t,n]})}),o[2]=a,o[3]=r):r=o[3],r}function na(e){var t,n=(0,O.c)(2),r=e.environmentName;return n[0]!==r?(t=(0,S.jsx)("span",{"data-nextjs-environment-name-label":!0,children:r}),n[0]=r,n[1]=t):t=n[1],t}function ni(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function nl(e){var t,n,r=null==e?void 0:e.getRootNode();return(t=r,null!=(n=ShadowRoot)&&"undefined"!=typeof Symbol&&n[Symbol.hasInstance]?!!n[Symbol.hasInstance](t):t instanceof n)?null==r?void 0:r.activeElement:null}function ns(e,t,n,r,o){var a,i,l=(0,O.c)(7);l[0]!==n||l[1]!==r||l[2]!==o||l[3]!==e||l[4]!==t?(a=function(){if(n){var a,i=o||(null==(a=e.current)?void 0:a.ownerDocument),l=function(n){var o,a,i=n.target;!(e.current&&e.current.contains(i))&&(null!=(o=e.current)&&o.getBoundingClientRect()&&n.clientX>=e.current.getBoundingClientRect().left-10&&n.clientX<=e.current.getBoundingClientRect().right+10&&n.clientY>=e.current.getBoundingClientRect().top-10&&n.clientY<=e.current.getBoundingClientRect().bottom+10||null!=(a=t.current)&&a.getBoundingClientRect()&&n.clientX>=t.current.getBoundingClientRect().left-10&&n.clientX<=t.current.getBoundingClientRect().right+10&&n.clientY>=t.current.getBoundingClientRect().top-10&&n.clientY<=t.current.getBoundingClientRect().bottom+10||r("outside"))},s=function(e){"Escape"===e.key&&r("escape")};return null==i||i.addEventListener("mousedown",l),null==i||i.addEventListener("keydown",s),function(){null==i||i.removeEventListener("mousedown",l),null==i||i.removeEventListener("keydown",s)}}},i=[n,r,o,e,t],l[0]=n,l[1]=r,l[2]=o,l[3]=e,l[4]=t,l[5]=a,l[6]=i):(a=l[5],i=l[6]),(0,C.useEffect)(a,i)}var nc="cubic-bezier(0.175, 0.885, 0.32, 1.1)",nu=(0,C.forwardRef)(function(e,t){var n,r,o=(0,O.c)(9),a=e.stop,i=e.blur,l=e.side,s=e.style,c=e.height,u="".concat(c,"px");o[0]!==i||o[1]!==a||o[2]!==s||o[3]!==u?(n=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"--stop":a,"--blur":i,"--height":u},s),o[0]=i,o[1]=a,o[2]=s,o[3]=u,o[4]=n):n=o[4];var d=n;return o[5]!==t||o[6]!==l||o[7]!==d?(r=(0,S.jsx)("div",{ref:t,"aria-hidden":!0,"data-nextjs-scroll-fader":!0,className:"nextjs-scroll-fader","data-side":l,style:d}),o[5]=t,o[6]=l,o[7]=d,o[8]=r):r=o[8],r});function nd(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function nf(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return nd(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nd(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var np=(0,C.forwardRef)(function(e,t){var n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y,v,b,x,w,_=(0,O.c)(13);_[0]!==e?(v=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["children","measure"]),g=e.children,y=e.measure,_[0]=e,_[1]=g,_[2]=y,_[3]=v):(g=_[1],y=_[2],v=_[3]);var j=nf((0,C.useState)(null),2),k=j[0],P=j[1],E=nf((n=k,r=y,l=(0,O.c)(7),c=(s=nf((0,C.useState)(0),2))[0],u=s[1],f=(d=nf((0,C.useState)(!0),2))[0],p=d[1],l[0]!==n||l[1]!==r?(o=function(){if(r&&n){var e,t=new ResizeObserver(function(t){var n=nf(t,1)[0].contentRect;clearTimeout(e),e=window.setTimeout(function(){p(!1)},100),u(n.height)});return t.observe(n),function(){return t.disconnect()}}},a=[r,n],l[0]=n,l[1]=r,l[2]=o,l[3]=a):(o=l[2],a=l[3]),(0,C.useEffect)(o,a),l[4]!==c||l[5]!==f?(i=[c,f],l[4]=c,l[5]=f,l[6]=i):i=l[6],i),2),T=E[0],N=E[1]?"auto":T;return(_[4]!==N?(b={height:N,transition:"height 250ms var(--timing-swift)"},_[4]=N,_[5]=b):b=_[5],_[6]!==g?(x=(0,S.jsx)("div",{ref:P,children:g}),_[6]=g,_[7]=x):x=_[7],_[8]!==v||_[9]!==t||_[10]!==b||_[11]!==x)?(w=(0,S.jsx)("div",(h=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},v),m=m={ref:t,style:b,children:x},Object.getOwnPropertyDescriptors?Object.defineProperties(h,Object.getOwnPropertyDescriptors(m)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(m)).forEach(function(e){Object.defineProperty(h,e,Object.getOwnPropertyDescriptor(m,e))}),h)),_[8]=v,_[9]=t,_[10]=b,_[11]=x,_[12]=w):w=_[12],w});function nh(e){var t,n,r,o=(0,O.c)(6);o[0]!==e?(n=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["fixed"]),t=e.fixed,o[0]=e,o[1]=t,o[2]=n):(t=o[1],n=o[2]);var a=!!t||void 0;return o[3]!==n||o[4]!==a?(r=(0,S.jsx)("div",function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"data-nextjs-dialog-backdrop":!0,"data-nextjs-dialog-backdrop-fixed":a},n)),o[3]=n,o[4]=a,o[5]=r):r=o[5],r}function nm(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function ng(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function ny(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function nv(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return nm(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nm(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function nb(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y,v,b,x,w,_,j,k,P,E,T,N,I,L=(0,O.c)(66),A=e.errorMessage,z=e.errorType,R=e.children,D=e.errorCode,M=e.errorCount,Z=e.error,U=e.debugInfo,F=e.isBuildError,H=e.onClose,V=e.versionInfo,B=e.runtimeErrors,$=e.activeIdx,q=e.setActiveIndex,W=e.isTurbopack,K=e.dialogResizerRef,Y=e.generateErrorInfo,X=e.rendered,G=e.transitionDurationMs,Q=void 0===X||X,J="".concat(G,"ms");L[0]!==J?(s={"--transition-duration":J},L[0]=J,L[1]=s):s=L[1];var ee=s;L[2]!==Q||L[3]!==ee?(c={"data-rendered":Q,style:ee},L[2]=Q,L[3]=ee,L[4]=c):c=L[4];var et=c,en=nv(C.useState(!!G),2),er=en[0],eo=en[1],ea=C.useRef(null),ei=!!D,el=C.useRef(null);t=el,n=Q,void 0!==(i=(0,O.c)(11))[0]?(r=function(e){null==e||e.focus()},i[0]=void 0,i[1]=r):r=i[1],l=(0,C.useEffectEvent)(r),i[2]!==n||i[3]!==l||i[4]!==t||null!==i[5]?(o=function(){var e=null,r=function(t){if("Tab"===t.key&&null!==e){var n,r,o=(r=(n=e.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])'))?[n[0],n[n.length-1]]:[],function(e){if(Array.isArray(e))return e}(r)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(r,2)||function(e,t){if(e){if("string"==typeof e)return ni(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ni(e,2)}}(r,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=o[0],i=o[1],l=nl(e);t.shiftKey?l===a&&(null==i||i.focus(),t.preventDefault()):l===i&&(null==a||a.focus(),t.preventDefault())}},o=setTimeout(function(){if(e=t.current,n)l(e),null==e||e.addEventListener("keydown",r);else nl(e)});return function(){clearTimeout(o),null==e||e.removeEventListener("keydown",r)}},i[2]=n,i[3]=l,i[4]=t,i[5]=null,i[6]=o):o=i[6],i[7]!==n||i[8]!==t||null!==i[9]?(a=[n,t,null],i[7]=n,i[8]=t,i[9]=null,i[10]=a):a=i[10],(0,C.useEffect)(o,a),L[5]===Symbol.for("react.memo_cache_sentinel")?(u=function(e){if(ea.current){var t,n,r=(t=e.currentTarget.scrollTop/17,Math.min(Math.max(t,(n=nv([0,1],2))[0]),n[1]));ea.current.style.opacity=String(r)}},L[5]=u):u=L[5];var es=u;L[6]===Symbol.for("react.memo_cache_sentinel")?(d=function(e){var t=e.propertyName,n=e.target;"scale"===t&&n===el.current&&eo(!1)},L[6]=d):d=L[6];var ec=d;L[7]!==F?(f=(0,S.jsx)(nh,{fixed:F}),L[7]=F,L[8]=f):f=L[8],L[9]!==$||L[10]!==W||L[11]!==B||L[12]!==q||L[13]!==V?(p=(0,S.jsx)(tX,{runtimeErrors:B,activeIdx:$,setActiveIndex:q,versionInfo:V,isTurbopack:W}),L[9]=$,L[10]=W,L[11]=B,L[12]=q,L[13]=V,L[14]=p):p=L[14],L[15]!==D||L[16]!==ei?(h=ei&&(0,S.jsx)(tM,{errorCode:D}),L[15]=D,L[16]=ei,L[17]=h):h=L[17];var eu=!er;L[18]!==z?(m=(0,S.jsx)(tV,{errorType:z}),L[18]=z,L[19]=m):m=L[19],L[20]!==Z.environmentName?(g=Z.environmentName&&(0,S.jsx)(na,{environmentName:Z.environmentName}),L[20]=Z.environmentName,L[21]=g):g=L[21],L[22]!==m||L[23]!==g?(y=(0,S.jsxs)("span",{"data-nextjs-error-label-group":!0,children:[m,g]}),L[22]=m,L[23]=g,L[24]=y):y=L[24],L[25]!==U||L[26]!==Z||L[27]!==Y?(v=(0,S.jsx)(tN,{error:Z,debugInfo:U,generateErrorInfo:Y}),L[25]=U,L[26]=Z,L[27]=Y,L[28]=v):v=L[28],L[29]!==D||L[30]!==y||L[31]!==v?(b=(0,S.jsxs)("div",{className:"nextjs__container_errors__error_title","data-nextjs-error-code":D,children:[y,v]}),L[29]=D,L[30]=y,L[31]=v,L[32]=b):b=L[32],L[33]!==A||L[34]!==z?(x=(0,S.jsx)(tH,{errorMessage:A,errorType:z}),L[33]=A,L[34]=z,L[35]=x):x=L[35],L[36]!==b||L[37]!==x?(w=(0,S.jsxs)(t5,{children:[b,x]}),L[36]=b,L[37]=x,L[38]=w):w=L[38],L[39]!==R?(_=(0,S.jsx)(t6,{children:R}),L[39]=R,L[40]=_):_=L[40],L[41]!==w||L[42]!==_?(j=(0,S.jsxs)(e4,{children:[w,_]}),L[41]=w,L[42]=_,L[43]=j):j=L[43],L[44]!==K||L[45]!==eu||L[46]!==j?(k=(0,S.jsx)(np,{ref:K,measure:eu,"data-nextjs-dialog-sizer":!0,children:j}),L[44]=K,L[45]=eu,L[46]=j,L[47]=k):k=L[47];var ed=null!=$?$:0;return L[48]!==M||L[49]!==ed?(P=(0,S.jsx)(no,{errorCount:M,activeIdx:ed}),L[48]=M,L[49]=ed,L[50]=P):P=L[50],L[51]!==ei||L[52]!==H||L[53]!==h||L[54]!==k||L[55]!==P?(E=(0,S.jsxs)(t3,{onClose:H,"data-has-footer":ei,onScroll:es,footer:h,children:[k,P]}),L[51]=ei,L[52]=H,L[53]=h,L[54]=k,L[55]=P,L[56]=E):E=L[56],L[57]===Symbol.for("react.memo_cache_sentinel")?(T=(0,S.jsx)(nu,{ref:ea,side:"top",stop:"50%",blur:"4px",height:48}),L[57]=T):T=L[57],L[58]!==et||L[59]!==E||L[60]!==p?(N=(0,S.jsxs)("div",ny(ng({"data-nextjs-dialog-root":!0,onTransitionEnd:ec,ref:el},et),{children:[p,E,T]})),L[58]=et,L[59]=E,L[60]=p,L[61]=N):N=L[61],L[62]!==et||L[63]!==N||L[64]!==f?(I=(0,S.jsxs)(nn,ny(ng({},et),{children:[f,N]})),L[62]=et,L[63]=N,L[64]=f,L[65]=I):I=L[65],I}var nx="\n ".concat(nr,"\n ").concat("\n .error-overlay-dialog-container {\n display: flex;\n flex-direction: column;\n background: var(--color-background-100);\n background-clip: padding-box;\n border: var(--next-dialog-border-width) solid var(--color-gray-400);\n border-radius: 0 0 var(--next-dialog-radius) var(--next-dialog-radius);\n box-shadow: var(--shadow-menu);\n position: relative;\n overflow: hidden;\n }\n\n .error-overlay-dialog-scroll {\n overflow-y: auto;\n height: 100%;\n }\n","\n ").concat("\n .nextjs-container-errors-header {\n position: relative;\n }\n .nextjs-container-errors-header > h1 {\n font-size: var(--size-20);\n line-height: var(--size-24);\n font-weight: bold;\n margin: calc(16px * 1.5) 0;\n color: var(--color-title-h1);\n }\n .nextjs-container-errors-header small {\n font-size: var(--size-14);\n color: var(--color-accents-1);\n margin-left: 16px;\n }\n .nextjs-container-errors-header small > span {\n font-family: var(--font-stack-monospace);\n }\n .nextjs-container-errors-header > div > small {\n margin: 0;\n margin-top: 4px;\n }\n .nextjs-container-errors-header > p > a {\n color: inherit;\n font-weight: bold;\n }\n .nextjs-container-errors-header\n > .nextjs-container-build-error-version-status {\n position: absolute;\n top: 16px;\n right: 16px;\n }\n","\n ").concat("","\n\n ").concat("\n [data-nextjs-error-overlay-nav] {\n --stroke-color: var(--color-gray-400);\n --background-color: var(--color-background-100);\n display: flex;\n justify-content: space-between;\n align-items: center;\n\n width: 100%;\n\n position: relative;\n z-index: 2;\n outline: none;\n translate: var(--next-dialog-border-width) var(--next-dialog-border-width);\n max-width: var(--next-dialog-max-width);\n\n .error-overlay-notch {\n translate: calc(var(--next-dialog-border-width) * -1);\n width: auto;\n height: var(--next-dialog-notch-height);\n padding: 12px;\n background: var(--background-color);\n border: var(--next-dialog-border-width) solid var(--stroke-color);\n border-bottom: none;\n position: relative;\n\n &[data-side='left'] {\n padding-right: 0;\n border-radius: var(--next-dialog-radius) 0 0 0;\n\n .error-overlay-notch-tail {\n right: -54px;\n }\n\n > *:not(.error-overlay-notch-tail) {\n margin-right: -10px;\n }\n }\n\n &[data-side='right'] {\n padding-left: 0;\n border-radius: 0 var(--next-dialog-radius) 0 0;\n\n .error-overlay-notch-tail {\n left: -54px;\n transform: rotateY(180deg);\n }\n\n > *:not(.error-overlay-notch-tail) {\n margin-left: -12px;\n }\n }\n\n .error-overlay-notch-tail {\n position: absolute;\n top: calc(var(--next-dialog-border-width) * -1);\n pointer-events: none;\n z-index: -1;\n height: calc(100% + var(--next-dialog-border-width));\n }\n }\n }\n\n @media (max-width: 600px) {\n [data-nextjs-error-overlay-nav] {\n background: var(--background-color);\n border-radius: var(--next-dialog-radius) var(--next-dialog-radius) 0 0;\n border: var(--next-dialog-border-width) solid var(--stroke-color);\n border-bottom: none;\n overflow: hidden;\n translate: 0 var(--next-dialog-border-width);\n \n .error-overlay-notch {\n border-radius: 0;\n border: 0;\n\n &[data-side=\"left\"], &[data-side=\"right\"] {\n border-radius: 0;\n }\n\n .error-overlay-notch-tail {\n display: none;\n }\n }\n }\n }\n","\n ").concat("\n .nextjs__container_errors_label {\n padding: 2px 6px;\n margin: 0;\n border-radius: var(--rounded-md-2);\n background: var(--color-red-100);\n font-weight: 600;\n font-size: var(--size-12);\n color: var(--color-red-900);\n font-family: var(--font-stack-monospace);\n line-height: var(--size-20);\n }\n\n .nextjs__container_errors_label_blocking_page {\n background: var(--color-blue-100);\n color: var(--color-blue-900);\n }\n","\n ").concat("\n .nextjs__container_errors_wrapper {\n position: relative;\n }\n\n .nextjs__container_errors_desc {\n margin: 0;\n margin-left: 4px;\n color: var(--color-red-900);\n font-weight: 500;\n font-size: var(--size-16);\n letter-spacing: -0.32px;\n line-height: var(--size-24);\n overflow-wrap: break-word;\n white-space: pre-wrap;\n }\n\n .nextjs__container_errors_desc.truncated {\n max-height: 200px;\n overflow: hidden;\n }\n\n .nextjs__container_errors_gradient_overlay {\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n height: 85px;\n background: linear-gradient(\n 180deg,\n rgba(250, 250, 250, 0) 0%,\n var(--color-background-100) 100%\n );\n }\n\n .nextjs__container_errors_expand_button {\n position: absolute;\n bottom: 10px;\n left: 50%;\n transform: translateX(-50%);\n display: flex;\n align-items: center;\n padding: 6px 8px;\n background: var(--color-background-100);\n border: 1px solid var(--color-gray-alpha-400);\n border-radius: 999px;\n box-shadow:\n 0px 2px 2px var(--color-gray-alpha-100),\n 0px 8px 8px -8px var(--color-gray-alpha-100);\n font-size: var(--size-13);\n cursor: pointer;\n color: var(--color-gray-900);\n font-weight: 500;\n transition: background-color 0.2s ease;\n }\n\n .nextjs__container_errors_expand_button:hover {\n background: var(--color-gray-100);\n }\n","\n ").concat("\n .error-overlay-toolbar {\n display: flex;\n gap: 6px;\n }\n\n .nodejs-inspector-button,\n .copy-error-button,\n .docs-link-button {\n display: flex;\n justify-content: center;\n align-items: center;\n\n width: var(--size-28);\n height: var(--size-28);\n background: var(--color-background-100);\n background-clip: padding-box;\n border: 1px solid var(--color-gray-alpha-400);\n box-shadow: var(--shadow-small);\n border-radius: var(--rounded-full);\n\n svg {\n width: var(--size-14);\n height: var(--size-14);\n }\n\n &:focus {\n outline: var(--focus-ring);\n }\n\n &:not(:disabled):hover {\n background: var(--color-gray-alpha-100);\n }\n\n &:not(:disabled):active {\n background: var(--color-gray-alpha-200);\n }\n\n &:disabled {\n background-color: var(--color-gray-100);\n cursor: not-allowed;\n }\n }\n\n .nodejs-inspector-button[data-pending='true'] {\n cursor: wait;\n }\n\n .error-overlay-toolbar-button-icon {\n color: var(--color-gray-900);\n }\n","\n\n [data-nextjs-error-label-group] {\n display: flex;\n align-items: center;\n gap: 8px;\n }\n");function nw(){var e,t,n=(e=["\n [data-nextjs-dialog-overlay] {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n /* secondary z-index, -1 than toast z-index */\n z-index: 2147483646;\n\n display: flex;\n align-content: center;\n align-items: center;\n flex-direction: column;\n padding: 10vh 15px 0;\n }\n\n @media (max-height: 812px) {\n [data-nextjs-dialog-overlay] {\n padding: 15px 15px 0;\n }\n }\n\n [data-nextjs-dialog-backdrop] {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: var(--color-backdrop);\n backdrop-filter: blur(10px);\n pointer-events: all;\n z-index: -1;\n }\n\n [data-nextjs-dialog-backdrop-fixed] {\n cursor: not-allowed;\n -webkit-backdrop-filter: blur(8px);\n backdrop-filter: blur(8px);\n }\n"],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return nw=function(){return n},n}var n_=eg(nw());function nj(e){var t,n,r,o,a,i=(0,O.c)(9),l=e.file,s=e.location,c=null!=(t=null==s?void 0:s.line)?t:1,u=null!=(n=null==s?void 0:s.column)?n:1;i[0]!==l||i[1]!==c||i[2]!==u?(r={file:l,line1:c,column1:u},i[0]=l,i[1]=c,i[2]=u,i[3]=r):r=i[3];var d=eM(r),f=s?":".concat(s.line,":").concat(s.column):null;return i[4]===Symbol.for("react.memo_cache_sentinel")?(o=(0,S.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[(0,S.jsx)("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),(0,S.jsx)("polyline",{points:"15 3 21 3 21 9"}),(0,S.jsx)("line",{x1:"10",y1:"14",x2:"21",y2:"3"})]}),i[4]=o):o=i[4],i[5]!==l||i[6]!==d||i[7]!==f?(a=(0,S.jsxs)("div",{"data-with-open-in-editor-link":!0,"data-with-open-in-editor-link-import-trace":!0,role:"link",onClick:d,title:"Click to open in your editor",children:[l,f,o]}),i[5]=l,i[6]=d,i[7]=f,i[8]=a):a=i[8],a}function nk(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var nS=function(e){var t,n,r,o,a,i,l,s,c,u,d=e.content,f=C.useMemo(function(){var e,t,n;return t=function(e){var t,n=e.shift();if(!n)return null;var r=(t=n.split(":",3),function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),3!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,3)||function(e,t){if(e){if("string"==typeof e)return nk(e,3);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nk(e,3)}}(t,3)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=r[0],a=r[1],i=r[2],l=Number(a),s=Number(i),c=!Number.isNaN(l)&&!Number.isNaN(s);return{fileName:c?o:n,location:c?{line1:l,column1:s}:void 0}}(e=d.split("\n")),n=function(e){if(e.some(function(e){return/ReactServerComponentsError:/.test(e)})||e.some(function(e){return/Import trace for requested module:/.test(e)})){for(var t=[];/.+\..+/.test(e[e.length-1])&&!e[e.length-1].includes(":");){var n=e.pop().trim();t.unshift(n)}return t}return[]}(e),{file:t,source:e.join("\n"),importTraceFiles:n}},[d]),p=f.file,h=f.source,m=f.importTraceFiles,g=C.useMemo(function(){return eG().ansiToJson(h,{json:!0,use_classes:!0,remove_empty:!0})},[h]),y=eM({file:null==p?void 0:p.fileName,line1:null!=(i=null==p||null==(t=p.location)?void 0:t.line1)?i:1,column1:null!=(l=null==p||null==(n=p.location)?void 0:n.column1)?l:1}),v={file:null!=(s=null==p?void 0:p.fileName)?s:null,methodName:"",arguments:[],line1:null!=(c=null==p||null==(r=p.location)?void 0:r.line1)?c:null,column1:null!=(u=null==p||null==(o=p.location)?void 0:o.column1)?u:null},b=null==v||null==(a=v.file)?void 0:a.split(".").pop();return(0,S.jsxs)("div",{"data-nextjs-codeframe":!0,children:[(0,S.jsx)("div",{className:"code-frame-header",children:(0,S.jsxs)("div",{className:"code-frame-link",children:[(0,S.jsx)("span",{className:"code-frame-icon",children:(0,S.jsx)(eB,{lang:b})}),(0,S.jsx)("span",{"data-text":!0,children:eD(v)}),(0,S.jsx)("button",{"aria-label":"Open in editor","data-with-open-in-editor-link-source-file":!0,onClick:y,children:(0,S.jsx)("span",{className:"code-frame-icon","data-icon":"right",children:(0,S.jsx)(eH,{width:16,height:16})})})]})}),(0,S.jsx)("pre",{className:"code-frame-pre",children:(0,S.jsxs)("div",{className:"code-frame-lines",children:[g.map(function(e,t){return(0,S.jsx)("span",{style:function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({color:e.fg?"var(--color-".concat(e.fg,")"):void 0},"bold"===e.decoration?{fontWeight:500}:"italic"===e.decoration?{fontStyle:"italic"}:void 0),children:(0,S.jsx)(eP,{text:e.content})},"terminal-entry-".concat(t))}),m.map(function(e){return(0,S.jsx)(nj,{isSourceFile:!1,file:e},e)})]})})]})},nO=function(e){var t=e.split("\n");return eJ()(t[1]||"").replace(/^Error: /,"")},nC=function(e){var t,n,r,o,a,i,l,s,c,u=(0,O.c)(19);u[0]!==e?(o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["message"]),r=e.message,u[0]=e,u[1]=r,u[2]=o):(r=u[1],o=u[2]),u[3]!==r?(a=Error(r),u[3]=r,u[4]=a):a=u[4];var d=a;u[5]!==r?(i=nO(r)||"Failed to compile",u[5]=r,u[6]=i):i=u[6];var f=i;u[7]!==f||u[8]!==r||u[9]!==o.versionInfo.installed?(l=function(){var e=[];if(e.push("## Error Type\nBuild Error"),f&&e.push("## Error Message\n".concat(f)),r){var t=eJ()(r);e.push("## Build Output\n".concat(t))}return"".concat(e.join("\n\n"),"\n\nNext.js version: ").concat(o.versionInfo.installed," (").concat(process.env.__NEXT_BUNDLER,")\n")},u[7]=f,u[8]=r,u[9]=o.versionInfo.installed,u[10]=l):l=u[10];var p=l;return(u[11]!==r?(s=(0,S.jsx)(nS,{content:r}),u[11]=r,u[12]=s):s=u[12],u[13]!==d||u[14]!==f||u[15]!==p||u[16]!==o||u[17]!==s)?(c=(0,S.jsx)(nb,(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({errorType:"Build Error",errorMessage:f,onClose:nP,error:d,generateErrorInfo:p},o),n=n={children:s},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),u[13]=d,u[14]=f,u[15]=p,u[16]=o,u[17]=s,u[18]=c):c=u[18],c};function nP(){}var nE=function(e){var t,n,r,o,a,i,l,s,c,u,d,f=(0,O.c)(26),p=e.frame,h=null!=(t=p.originalStackFrame)?t:p.sourceStackFrame,m=!!p.originalCodeFrame;f[0]!==h||f[1]!==m?(n=m?{file:h.file,line1:null!=(r=h.line1)?r:1,column1:null!=(o=h.column1)?o:1}:void 0,f[0]=h,f[1]=m,f[2]=n):n=f[2];var g=eM(n);f[3]!==h?(a=eD(h),f[3]=h,f[4]=a):a=f[4];var y=a;if(!y)return null;var v=!m;return f[5]!==h.methodName?(i=(0,S.jsx)(eP,{text:h.methodName}),f[5]=h.methodName,f[6]=i):i=f[6],f[7]!==h.methodName||f[8]!==m||f[9]!==g?(l=m&&(0,S.jsx)("button",{onClick:g,className:"open-in-editor-button","aria-label":"Open ".concat(h.methodName," in editor"),children:(0,S.jsx)(eH,{width:16,height:16})}),f[7]=h.methodName,f[8]=m,f[9]=g,f[10]=l):l=f[10],f[11]!==p.error||f[12]!==p.reason?(s=p.error?(0,S.jsx)("button",{className:"source-mapping-error-button",onClick:function(){return console.error(p.reason)},title:"Sourcemapping failed. Click to log cause of error.",children:(0,S.jsx)(eV,{width:16,height:16})}):null,f[11]=p.error,f[12]=p.reason,f[13]=s):s=f[13],f[14]!==i||f[15]!==l||f[16]!==s?(c=(0,S.jsxs)("div",{className:"call-stack-frame-method-name",children:[i,l,s]}),f[14]=i,f[15]=l,f[16]=s,f[17]=c):c=f[17],f[18]!==y||f[19]!==m?(u=(0,S.jsx)("span",{className:"call-stack-frame-file-source","data-has-source":m,children:y}),f[18]=y,f[19]=m,f[20]=u):u=f[20],f[21]!==p.ignored||f[22]!==v||f[23]!==c||f[24]!==u?(d=(0,S.jsxs)("div",{"data-nextjs-call-stack-frame":!0,"data-nextjs-call-stack-frame-no-source":v,"data-nextjs-call-stack-frame-ignored":p.ignored,children:[c,u]}),f[21]=p.ignored,f[22]=v,f[23]=c,f[24]=u,f[25]=d):d=f[25],d};function nT(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.70722 2.39641C8.3167 2.00588 7.68353 2.00588 7.29301 2.39641L4.46978 5.21963L3.93945 5.74996L5.00011 6.81062L5.53044 6.28029L8.00011 3.81062L10.4698 6.28029L11.0001 6.81062L12.0608 5.74996L11.5304 5.21963L8.70722 2.39641ZM5.53044 9.71963L5.00011 9.1893L3.93945 10.25L4.46978 10.7803L7.29301 13.6035C7.68353 13.994 8.3167 13.994 8.70722 13.6035L11.5304 10.7803L12.0608 10.25L11.0001 9.1893L10.4698 9.71963L8.00011 12.1893L5.53044 9.71963Z",fill:"currentColor"})}),t[0]=e):e=t[0],e}function nN(){var e,t,n=(e=["\n [data-nextjs-call-stack-container] {\n position: relative;\n margin-top: 8px;\n }\n\n [data-nextjs-call-stack-header] {\n display: flex;\n justify-content: space-between;\n align-items: center;\n min-height: var(--size-28);\n padding: 8px 8px 12px 4px;\n width: 100%;\n }\n\n [data-nextjs-call-stack-title] {\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: 8px;\n\n margin: 0;\n\n color: var(--color-gray-1000);\n font-size: var(--size-16);\n font-weight: 500;\n }\n\n [data-nextjs-call-stack-count] {\n display: flex;\n justify-content: center;\n align-items: center;\n\n width: var(--size-20);\n height: var(--size-20);\n gap: 4px;\n\n color: var(--color-gray-1000);\n text-align: center;\n font-size: var(--size-11);\n font-weight: 500;\n line-height: var(--size-16);\n\n border-radius: var(--rounded-full);\n background: var(--color-gray-300);\n }\n\n [data-nextjs-call-stack-ignored-list-toggle-button] {\n all: unset;\n display: flex;\n align-items: center;\n gap: 6px;\n color: var(--color-gray-900);\n font-size: var(--size-14);\n line-height: var(--size-20);\n border-radius: 6px;\n padding: 4px 6px;\n margin-right: -6px;\n transition: background 150ms ease;\n\n &:hover {\n background: var(--color-gray-100);\n }\n\n &:focus {\n outline: var(--focus-ring);\n }\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n }\n"],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return nN=function(){return n},n}function nI(e){var t,n,r,o,a,i,l=(0,O.c)(17),s=e.frames,c=e.isIgnoreListOpen,u=e.ignoredFramesTally,d=e.onToggleIgnoreList;return l[0]!==s.length?(t=(0,S.jsxs)("p",{"data-nextjs-call-stack-title":!0,children:["Call Stack ",(0,S.jsx)("span",{"data-nextjs-call-stack-count":!0,children:s.length})]}),l[0]=s.length,l[1]=t):t=l[1],l[2]!==u||l[3]!==c||l[4]!==d?(n=u>0&&(0,S.jsxs)("button",{"data-nextjs-call-stack-ignored-list-toggle-button":c,onClick:d,children:["".concat(c?"Hide":"Show"," ").concat(u," ignore-listed frame(s)"),(0,S.jsx)(nT,{})]}),l[2]=u,l[3]=c,l[4]=d,l[5]=n):n=l[5],l[6]!==t||l[7]!==n?(r=(0,S.jsxs)("div",{"data-nextjs-call-stack-header":!0,children:[t,n]}),l[6]=t,l[7]=n,l[8]=r):r=l[8],l[9]!==s||l[10]!==c?(l[12]!==c?(a=function(e,t){return!e.ignored||c?(0,S.jsx)(nE,{frame:e},t):null},l[12]=c,l[13]=a):a=l[13],o=s.map(a),l[9]=s,l[10]=c,l[11]=o):o=l[11],l[14]!==r||l[15]!==o?(i=(0,S.jsxs)("div",{"data-nextjs-call-stack-container":!0,children:[r,o]}),l[14]=r,l[15]=o,l[16]=i):i=l[16],i}var nL=eg(nN());function nA(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function nz(e){var t,n=e.frames,r=e.dialogResizerRef,o=(0,C.useRef)(NaN),a=(t=(0,C.useState)(!1),function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||function(e,t){if(e){if("string"==typeof e)return nA(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nA(e,2)}}(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),i=a[0],l=a[1],s=(0,C.useMemo)(function(){return n.reduce(function(e,t){return e+ +!!t.ignored},0)},[n]);return(0,S.jsx)(nI,{frames:n,isIgnoreListOpen:i,onToggleIgnoreList:function(){var e=null==r?void 0:r.current;if(e){var t=e.getBoundingClientRect().height;o.current||(o.current=t),i?(e.style.height="".concat(o.current,"px"),e.addEventListener("transitionend",function t(){e.removeEventListener("transitionend",t),l(!1)})):l(!0)}},ignoredFramesTally:s})}function nR(e){var t,n,r,o,a,i,l=(0,O.c)(8);l[0]!==e?(r=void 0===e?{}:e,l[0]=e,l[1]=r):r=l[1];var s=r.collapsed;return(l[2]!==s?(o="boolean"==typeof s?{style:{transform:s?void 0:"rotate(90deg)"}}:{},l[2]=s,l[3]=o):o=l[3],l[4]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsx)("path",{style:{fill:"var(--color-font)"},fillRule:"evenodd",d:"m6.75 3.94.53.53 2.824 2.823a1 1 0 0 1 0 1.414L7.28 11.53l-.53.53L5.69 11l.53-.53L8.69 8 6.22 5.53 5.69 5l1.06-1.06Z",clipRule:"evenodd"}),l[4]=a):a=l[4],l[5]!==s||l[6]!==o)?(i=(0,S.jsx)("svg",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"data-nextjs-call-stack-chevron-icon":!0,"data-collapsed":s,width:"16",height:"16",fill:"none"},o),n=n={children:a},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),l[5]=s,l[6]=o,l[7]=i):i=l[7],i}function nD(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function nM(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return nD(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nD(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function nZ(e){var t,n,r,o,a,i,l=(0,O.c)(15),s=e.reactOutputComponentDiff,c=nM((0,C.useState)(!0),2),u=c[0],d=c[1];l[0]!==s?(t=[],s.split("\n").forEach(function(e,n){var r,o,a="+"===e[0]||"-"===e[0],i=">"===e[0],l=a||i,s=l?e[0]:"",c=l?e.indexOf(s):-1,u=nM(l?[e.slice(0,c),e.slice(c+1)]:[e,""],2),d=u[0],f=u[1];a?t.push((0,S.jsx)("span",{"data-nextjs-container-errors-pseudo-html-line":!0,"data-nextjs-container-errors-pseudo-html--diff":"+"===s?"add":"remove",children:(0,S.jsxs)("span",{children:[d,(0,S.jsx)("span",{"data-nextjs-container-errors-pseudo-html-line-sign":!0,children:s}),f,"\n"]})},"comp-diff"+n)):t.push((0,S.jsxs)("span",(r=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({"data-nextjs-container-errors-pseudo-html-line":!0},i?{"data-nextjs-container-errors-pseudo-html--diff":"error"}:void 0),o=o={children:[d,(0,S.jsx)("span",{"data-nextjs-container-errors-pseudo-html-line-sign":!0,children:s}),f,"\n"]},Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(o)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(o)).forEach(function(e){Object.defineProperty(r,e,Object.getOwnPropertyDescriptor(o,e))}),r),"comp-diff"+n))}),l[0]=s,l[1]=t):t=l[1];var f=t,p=!u;return l[2]!==u?(n=function(){return d(!u)},r=(0,S.jsx)(nR,{collapsed:u}),l[2]=u,l[3]=n,l[4]=r):(n=l[3],r=l[4]),l[5]!==p||l[6]!==n||l[7]!==r?(o=(0,S.jsx)("button",{"aria-expanded":p,"aria-label":"complete Component Stack","data-nextjs-container-errors-pseudo-html-collapse-button":!0,onClick:n,children:r}),l[5]=p,l[6]=n,l[7]=r,l[8]=o):o=l[8],l[9]!==f?(a=(0,S.jsx)("pre",{className:"nextjs__container_errors__component-stack",children:(0,S.jsx)("code",{children:f})}),l[9]=f,l[10]=a):a=l[10],l[11]!==u||l[12]!==o||l[13]!==a?(i=(0,S.jsxs)("div",{"data-nextjs-container-errors-pseudo-html":!0,"data-nextjs-container-errors-pseudo-html-collapse":u,children:[o,a]}),l[11]=u,l[12]=o,l[13]=a,l[14]=i):i=l[14],i}var nU=Symbol.for("NextjsError");function nF(e){return e[nU]||null}function nH(e,t,n,r,o,a,i){try{var l=e[a](i),s=l.value}catch(e){n(e);return}l.done?t(s):Promise.resolve(s).then(r,o)}function nV(e){return function(){var t=this,n=arguments;return new Promise(function(r,o){var a=e.apply(t,n);function i(e){nH(a,r,o,i,l,"next",e)}function l(e){nH(a,r,o,i,l,"throw",e)}i(void 0)})}}function nB(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function n$(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function nq(e,t){var n,r,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},i=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return i.next=l(0),i.throw=l(1),i.return=l(2),"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function l(l){return function(s){var c=[l,s];if(n)throw TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(a=0)),a;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return a.label++,{value:c[1],done:!1};case 5:a.label++,r=c[1],c=[0];continue;case 7:c=a.ops.pop(),a.trys.pop();continue;default:if(!(o=(o=a.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){a=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){a.label=c[1];break}if(6===c[0]&&a.label<o[1]){a.label=o[1],o=c;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(c);break}o[2]&&a.ops.pop(),a.trys.pop();continue}c=t.call(e,a)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}var nW=function(e){if(!e)return[];var t=e.frames;if("function"!=typeof t)throw Error("Invariant: frames must be a function when the React version has React.use. This is a bug in Next.js.");return C.use(t())};function nK(e){var t,n,r,o,a=(0,O.c)(8),i=e.error,l=e.dialogResizerRef,s=nW(i),c=s.findIndex(nY),u=null!=(t=s[c])?t:null;return a[0]!==u?(n=u&&(0,S.jsx)(e2,{stackFrame:u.originalStackFrame,codeFrame:u.originalCodeFrame}),a[0]=u,a[1]=n):n=a[1],a[2]!==l||a[3]!==s?(r=s.length>0&&(0,S.jsx)(nz,{dialogResizerRef:l,frames:s}),a[2]=l,a[3]=s,a[4]=r):r=a[4],a[5]!==n||a[6]!==r?(o=(0,S.jsxs)(S.Fragment,{children:[n,r]}),a[5]=n,a[6]=r,a[7]=o):o=a[7],o}function nY(e){return!e.ignored&&!!e.originalCodeFrame&&!!e.originalStackFrame}var nX="\n ".concat("\n [data-nextjs-container-errors-pseudo-html] {\n padding: 8px 0;\n margin: 8px 0;\n border: 1px solid var(--color-gray-400);\n background: var(--color-background-200);\n color: var(--color-syntax-constant);\n font-family: var(--font-stack-monospace);\n font-size: var(--size-12);\n line-height: 1.33em; /* 16px in 12px font size */\n border-radius: var(--rounded-md-2);\n }\n [data-nextjs-container-errors-pseudo-html-line] {\n display: inline-block;\n width: 100%;\n padding-left: 40px;\n line-height: calc(5 / 3);\n }\n [data-nextjs-container-errors-pseudo-html--diff='error'] {\n background: var(--color-amber-100);\n box-shadow: 2px 0 0 0 var(--color-amber-900) inset;\n font-weight: bold;\n }\n [data-nextjs-container-errors-pseudo-html-collapse-button] {\n all: unset;\n margin-left: 12px;\n &:focus {\n outline: none;\n }\n }\n [data-nextjs-container-errors-pseudo-html--diff='add'] {\n background: var(--color-green-300);\n }\n [data-nextjs-container-errors-pseudo-html-line-sign] {\n margin-left: calc(24px * -1);\n margin-right: 24px;\n }\n [data-nextjs-container-errors-pseudo-html--diff='add']\n [data-nextjs-container-errors-pseudo-html-line-sign] {\n color: var(--color-green-900);\n }\n [data-nextjs-container-errors-pseudo-html--diff='remove'] {\n background: var(--color-red-300);\n }\n [data-nextjs-container-errors-pseudo-html--diff='remove']\n [data-nextjs-container-errors-pseudo-html-line-sign] {\n color: var(--color-red-900);\n margin-left: calc(24px * -1);\n margin-right: 24px;\n }\n [data-nextjs-container-errors-pseudo-html--diff='error']\n [data-nextjs-container-errors-pseudo-html-line-sign] {\n color: var(--color-amber-900);\n }\n \n [data-nextjs-container-errors-pseudo-html--hint] {\n display: inline-block;\n font-size: 0;\n height: 0;\n }\n [data-nextjs-container-errors-pseudo-html--tag-adjacent='false'] {\n color: var(--color-accents-1);\n }\n .nextjs__container_errors__component-stack {\n margin: 0;\n }\n [data-nextjs-container-errors-pseudo-html-collapse='true']\n .nextjs__container_errors__component-stack\n code {\n max-height: 120px;\n mask-image: linear-gradient(to bottom,rgba(0,0,0,0) 0%,black 10%);\n padding-bottom: 40px;\n }\n .nextjs__container_errors__component-stack code {\n display: block;\n width: 100%;\n white-space: pre-wrap;\n scroll-snap-type: y mandatory;\n overflow-y: hidden;\n }\n [data-nextjs-container-errors-pseudo-html--diff] {\n scroll-snap-align: center;\n }\n .error-overlay-hydration-error-diff-plus-icon {\n color: var(--color-green-900);\n }\n .error-overlay-hydration-error-diff-minus-icon {\n color: var(--color-red-900);\n }\n","\n");function nG(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}function nQ(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function nJ(e){return e.startsWith("https://nextjs.org")?"nextjs-link":e.startsWith("https://")||e.startsWith("http://")?"external-link":null}function n0(e){var t,n=(0,O.c)(2),r=e.message;return n[0]!==r?(t=(0,S.jsx)(eP,{text:r,matcher:nJ}),n[0]=r,n[1]=t):t=n[1],t}function n1(e){var t,n,r=(0,O.c)(5),o=e.error,a="environmentName"in o?o.environmentName:"",i=a?"[ ".concat(a," ] "):"",l=o.message;return l.startsWith(i)&&(r[0]!==i.length||r[1]!==l?(t=l.slice(i.length),r[0]=i.length,r[1]=l,r[2]=t):t=r[2],l=t),r[3]!==l?(n=(0,S.jsx)(S.Fragment,{children:(0,S.jsx)(eP,{text:l,matcher:nJ})}),r[3]=l,r[4]=n):n=r[4],n}function n2(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y,v,b,x,w=(0,O.c)(20);return"navigation"===e.variant?(w[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsxs)("h3",{className:"nextjs__blocking_page_load_error_description_title",children:["Data that blocks navigation was accessed inside"," ",(0,S.jsx)("code",{children:"generateMetadata()"})," in an otherwise prerenderable page"]}),w[0]=t):t=w[0],w[1]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsx)("code",{children:"fetch(...)"}),w[1]=n):n=w[1],w[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsxs)("p",{children:["When Document metadata is the only part of a page that cannot be prerendered Next.js expects you to either make it prerenderable or make some other part of the page non-prerenderable to avoid unintentional partially dynamic pages. Uncached data such as"," ",n,", cached data with a low expire time, or"," ",(0,S.jsx)("code",{children:"connection()"})," are all examples of data that only resolve on navigation."]}),o=(0,S.jsx)("h4",{children:"To fix this:"}),w[2]=r,w[3]=o):(r=w[2],o=w[3]),w[4]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsxs)("strong",{children:["Move the asynchronous await into a Cache Component (",(0,S.jsx)("code",{children:'"use cache"'}),")"]}),w[4]=a):a=w[4],w[5]===Symbol.for("react.memo_cache_sentinel")?(i=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[a,". This allows Next.js to statically prerender"," ",(0,S.jsx)("code",{children:"generateMetadata()"})," as part of the HTML document, so it's instantly visible to the user."]}),l=(0,S.jsx)("h4",{className:"nextjs__blocking_page_load_error_fix_option_separator",children:"or"}),w[5]=i,w[6]=l):(i=w[5],l=w[6]),w[7]===Symbol.for("react.memo_cache_sentinel")?(s=(0,S.jsx)("code",{children:"connection()"}),w[7]=s):s=w[7],w[8]===Symbol.for("react.memo_cache_sentinel")?(c=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["add ",s," inside a ",(0,S.jsx)("code",{children:"<Suspense>"})]})," ","somewhere in a Page or Layout. This tells Next.js that the page is intended to have some non-prerenderable parts."]}),w[8]=c):c=w[8],w[9]===Symbol.for("react.memo_cache_sentinel")?(u=(0,S.jsxs)("div",{className:"nextjs__blocking_page_load_error_description",children:[t,r,o,i,l,c,(0,S.jsxs)("p",{children:["Learn more:"," ",(0,S.jsx)("a",{href:"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata",children:"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata"})]})]}),w[9]=u):u=w[9],u):(w[10]===Symbol.for("react.memo_cache_sentinel")?(d=(0,S.jsxs)("h3",{className:"nextjs__blocking_page_load_error_description_title",children:["Runtime data was accessed inside ",(0,S.jsx)("code",{children:"generateMetadata()"})," or file-based metadata"]}),f=(0,S.jsx)("p",{children:"When Document metadata is the only part of a page that cannot be prerendered Next.js expects you to either make it prerenderable or make some other part of the page non-prerenderable to avoid unintentional partially dynamic pages."}),p=(0,S.jsx)("h4",{children:"To fix this:"}),w[10]=d,w[11]=f,w[12]=p):(d=w[10],f=w[11],p=w[12]),w[13]===Symbol.for("react.memo_cache_sentinel")?(h=(0,S.jsxs)("strong",{children:["Remove the Runtime data access from ",(0,S.jsx)("code",{children:"generateMetadata()"})]}),w[13]=h):h=w[13],w[14]===Symbol.for("react.memo_cache_sentinel")?(m=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[h,". This allows Next.js to statically prerender"," ",(0,S.jsx)("code",{children:"generateMetadata()"})," as part of the HTML document, so it's instantly visible to the user."]}),g=(0,S.jsx)("h4",{className:"nextjs__blocking_page_load_error_fix_option_separator",children:"or"}),w[14]=m,w[15]=g):(m=w[14],g=w[15]),w[16]===Symbol.for("react.memo_cache_sentinel")?(y=(0,S.jsx)("code",{children:"connection()"}),w[16]=y):y=w[16],w[17]===Symbol.for("react.memo_cache_sentinel")?(v=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["add ",y," inside a ",(0,S.jsx)("code",{children:"<Suspense>"})]})," ","somewhere in a Page or Layout. This tells Next.js that the page is intended to have some non-prerenderable parts."]}),b=(0,S.jsx)("p",{children:"Note that if you are using file-based metadata, such as icons, inside a route with dynamic params then the only recourse is to make some other part of the page non-prerenderable."}),w[17]=v,w[18]=b):(v=w[17],b=w[18]),w[19]===Symbol.for("react.memo_cache_sentinel")?(x=(0,S.jsxs)("div",{className:"nextjs__blocking_page_load_error_description",children:[d,f,p,m,g,v,b,(0,S.jsxs)("p",{children:["Learn more:"," ",(0,S.jsx)("a",{href:"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata",children:"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata"})]})]}),w[19]=x):x=w[19],x)}function n3(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y,v,b,x,w,_,j,k,C,P,E,T,N,I,L,A,z,R,D,M,Z,U,F,H,V,B,$,q,W,K,Y,X,G,Q,J,ee,et,en,er,eo,ea,ei,el,es,ec,eu,ed=(0,O.c)(62),ef=e.variant,ep=e.refinement;return"generateViewport"===ep?"navigation"===ef?(ed[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsxs)("h3",{className:"nextjs__blocking_page_load_error_description_title",children:["Data that blocks navigation was accessed inside"," ",(0,S.jsx)("code",{children:"generateViewport()"})]}),ed[0]=t):t=ed[0],ed[1]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsx)("code",{children:"fetch(...)"}),ed[1]=n):n=ed[1],ed[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsxs)("p",{children:["Viewport metadata needs to be available on page load so accessing data that waits for a user navigation while producing it prevents Next.js from prerendering an initial UI. Uncached data such as"," ",n,", cached data with a low expire time, or"," ",(0,S.jsx)("code",{children:"connection()"})," are all examples of data that only resolve on navigation."]}),o=(0,S.jsx)("h4",{children:"To fix this:"}),ed[2]=r,ed[3]=o):(r=ed[2],o=ed[3]),ed[4]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsxs)("strong",{children:["Move the asynchronous await into a Cache Component (",(0,S.jsx)("code",{children:'"use cache"'}),")"]}),ed[4]=a):a=ed[4],ed[5]===Symbol.for("react.memo_cache_sentinel")?(i=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[a,". This allows Next.js to statically prerender"," ",(0,S.jsx)("code",{children:"generateViewport()"})," as part of the HTML document, so it's instantly visible to the user."]}),l=(0,S.jsx)("h4",{className:"nextjs__blocking_page_load_error_fix_option_separator",children:"or"}),ed[5]=i,ed[6]=l):(i=ed[5],l=ed[6]),ed[7]===Symbol.for("react.memo_cache_sentinel")?(s=(0,S.jsx)("code",{children:"<Suspense>"}),ed[7]=s):s=ed[7],ed[8]===Symbol.for("react.memo_cache_sentinel")?(c=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["Put a ",s," around your document"," ",(0,S.jsx)("code",{children:"<body>"}),"."]}),"This indicate to Next.js that you are opting into allowing blocking navigations for any page."]}),ed[8]=c):c=ed[8],ed[9]===Symbol.for("react.memo_cache_sentinel")?(u=(0,S.jsxs)("div",{className:"nextjs__blocking_page_load_error_description",children:[t,r,o,i,l,c,(0,S.jsxs)("p",{children:["Learn more:"," ",(0,S.jsx)("a",{href:"https://nextjs.org/docs/messages/next-prerender-dynamic-viewport",children:"https://nextjs.org/docs/messages/next-prerender-dynamic-viewport"})]})]}),ed[9]=u):u=ed[9],u):(ed[10]===Symbol.for("react.memo_cache_sentinel")?(d=(0,S.jsxs)("h3",{className:"nextjs__blocking_page_load_error_description_title",children:["Runtime data was accessed inside ",(0,S.jsx)("code",{children:"generateViewport()"})]}),ed[10]=d):d=ed[10],ed[11]===Symbol.for("react.memo_cache_sentinel")?(f=(0,S.jsx)("code",{children:"cookies()"}),ed[11]=f):f=ed[11],ed[12]===Symbol.for("react.memo_cache_sentinel")?(p=(0,S.jsx)("code",{children:"headers()"}),ed[12]=p):p=ed[12],ed[13]===Symbol.for("react.memo_cache_sentinel")?(h=(0,S.jsxs)("p",{children:["Viewport metadata needs to be available on page load so accessing data that comes from a user Request while producing it prevents Next.js from prerendering an initial UI.",f,", ",p,", and"," ",(0,S.jsx)("code",{children:"searchParams"}),", are examples of Runtime data that can only come from a user request."]}),m=(0,S.jsx)("h4",{children:"To fix this:"}),ed[13]=h,ed[14]=m):(h=ed[13],m=ed[14]),ed[15]===Symbol.for("react.memo_cache_sentinel")?(g=(0,S.jsx)("strong",{children:"Remove the Runtime data requirement"}),ed[15]=g):g=ed[15],ed[16]===Symbol.for("react.memo_cache_sentinel")?(y=(0,S.jsx)("code",{children:"generateViewport"}),ed[16]=y):y=ed[16],ed[17]===Symbol.for("react.memo_cache_sentinel")?(v=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[g," from"," ",y,". This allows Next.js to statically prerender ",(0,S.jsx)("code",{children:"generateViewport()"})," as part of the HTML document, so it's instantly visible to the user."]}),b=(0,S.jsx)("h4",{className:"nextjs__blocking_page_load_error_fix_option_separator",children:"or"}),ed[17]=v,ed[18]=b):(v=ed[17],b=ed[18]),ed[19]===Symbol.for("react.memo_cache_sentinel")?(x=(0,S.jsx)("code",{children:"<Suspense>"}),ed[19]=x):x=ed[19],ed[20]===Symbol.for("react.memo_cache_sentinel")?(w=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["Put a ",x," around your document"," ",(0,S.jsx)("code",{children:"<body>"}),"."]}),"This indicate to Next.js that you are opting into allowing blocking navigations for any page."]}),_=(0,S.jsx)("code",{children:"params"}),ed[20]=w,ed[21]=_):(w=ed[20],_=ed[21]),ed[22]===Symbol.for("react.memo_cache_sentinel")?(j=(0,S.jsxs)("p",{children:[_," are usually considered Runtime data but if all params are provided a value using ",(0,S.jsx)("code",{children:"generateStaticParams"})," ","they can be statically prerendered."]}),ed[22]=j):j=ed[22],ed[23]===Symbol.for("react.memo_cache_sentinel")?(k=(0,S.jsxs)("div",{className:"nextjs__blocking_page_load_error_description",children:[d,h,m,v,b,w,j,(0,S.jsxs)("p",{children:["Learn more:"," ",(0,S.jsx)("a",{href:"https://nextjs.org/docs/messages/next-prerender-dynamic-viewport",children:"https://nextjs.org/docs/messages/next-prerender-dynamic-viewport"})]})]}),ed[23]=k):k=ed[23],k):"generateMetadata"===ep?"navigation"===ef?(ed[24]===Symbol.for("react.memo_cache_sentinel")?(C=(0,S.jsxs)("h3",{className:"nextjs__blocking_page_load_error_description_title",children:["Data that blocks navigation was accessed inside"," ",(0,S.jsx)("code",{children:"generateMetadata()"})," in an otherwise prerenderable page"]}),ed[24]=C):C=ed[24],ed[25]===Symbol.for("react.memo_cache_sentinel")?(P=(0,S.jsx)("code",{children:"fetch(...)"}),ed[25]=P):P=ed[25],ed[26]===Symbol.for("react.memo_cache_sentinel")?(E=(0,S.jsxs)("p",{children:["When Document metadata is the only part of a page that cannot be prerendered Next.js expects you to either make it prerenderable or make some other part of the page non-prerenderable to avoid unintentional partially dynamic pages. Uncached data such as"," ",P,", cached data with a low expire time, or"," ",(0,S.jsx)("code",{children:"connection()"})," are all examples of data that only resolve on navigation."]}),T=(0,S.jsx)("h4",{children:"To fix this:"}),ed[26]=E,ed[27]=T):(E=ed[26],T=ed[27]),ed[28]===Symbol.for("react.memo_cache_sentinel")?(N=(0,S.jsxs)("strong",{children:["Move the asynchronous await into a Cache Component (",(0,S.jsx)("code",{children:'"use cache"'}),")"]}),ed[28]=N):N=ed[28],ed[29]===Symbol.for("react.memo_cache_sentinel")?(I=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[N,". This allows Next.js to statically prerender"," ",(0,S.jsx)("code",{children:"generateMetadata()"})," as part of the HTML document, so it's instantly visible to the user."]}),L=(0,S.jsx)("h4",{className:"nextjs__blocking_page_load_error_fix_option_separator",children:"or"}),ed[29]=I,ed[30]=L):(I=ed[29],L=ed[30]),ed[31]===Symbol.for("react.memo_cache_sentinel")?(A=(0,S.jsx)("code",{children:"connection()"}),ed[31]=A):A=ed[31],ed[32]===Symbol.for("react.memo_cache_sentinel")?(z=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["add ",A," inside a ",(0,S.jsx)("code",{children:"<Suspense>"})]})," ","somewhere in a Page or Layout. This tells Next.js that the page is intended to have some non-prerenderable parts."]}),ed[32]=z):z=ed[32],ed[33]===Symbol.for("react.memo_cache_sentinel")?(R=(0,S.jsxs)("div",{className:"nextjs__blocking_page_load_error_description",children:[C,E,T,I,L,z,(0,S.jsxs)("p",{children:["Learn more:"," ",(0,S.jsx)("a",{href:"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata",children:"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata"})]})]}),ed[33]=R):R=ed[33],R):(ed[34]===Symbol.for("react.memo_cache_sentinel")?(D=(0,S.jsxs)("h3",{className:"nextjs__blocking_page_load_error_description_title",children:["Runtime data was accessed inside ",(0,S.jsx)("code",{children:"generateMetadata()"})," or file-based metadata"]}),M=(0,S.jsx)("p",{children:"When Document metadata is the only part of a page that cannot be prerendered Next.js expects you to either make it prerenderable or make some other part of the page non-prerenderable to avoid unintentional partially dynamic pages."}),Z=(0,S.jsx)("h4",{children:"To fix this:"}),ed[34]=D,ed[35]=M,ed[36]=Z):(D=ed[34],M=ed[35],Z=ed[36]),ed[37]===Symbol.for("react.memo_cache_sentinel")?(U=(0,S.jsxs)("strong",{children:["Remove the Runtime data access from"," ",(0,S.jsx)("code",{children:"generateMetadata()"})]}),ed[37]=U):U=ed[37],ed[38]===Symbol.for("react.memo_cache_sentinel")?(F=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[U,". This allows Next.js to statically prerender"," ",(0,S.jsx)("code",{children:"generateMetadata()"})," as part of the HTML document, so it's instantly visible to the user."]}),H=(0,S.jsx)("h4",{className:"nextjs__blocking_page_load_error_fix_option_separator",children:"or"}),ed[38]=F,ed[39]=H):(F=ed[38],H=ed[39]),ed[40]===Symbol.for("react.memo_cache_sentinel")?(V=(0,S.jsx)("code",{children:"connection()"}),ed[40]=V):V=ed[40],ed[41]===Symbol.for("react.memo_cache_sentinel")?(B=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["add ",V," inside a ",(0,S.jsx)("code",{children:"<Suspense>"})]})," ","somewhere in a Page or Layout. This tells Next.js that the page is intended to have some non-prerenderable parts."]}),$=(0,S.jsx)("p",{children:"Note that if you are using file-based metadata, such as icons, inside a route with dynamic params then the only recourse is to make some other part of the page non-prerenderable."}),ed[41]=B,ed[42]=$):(B=ed[41],$=ed[42]),ed[43]===Symbol.for("react.memo_cache_sentinel")?(q=(0,S.jsxs)("div",{className:"nextjs__blocking_page_load_error_description",children:[D,M,Z,F,H,B,$,(0,S.jsxs)("p",{children:["Learn more:"," ",(0,S.jsx)("a",{href:"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata",children:"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata"})]})]}),ed[43]=q):q=ed[43],q):"runtime"===ef?(ed[44]===Symbol.for("react.memo_cache_sentinel")?(W=(0,S.jsxs)("h3",{className:"nextjs__blocking_page_load_error_description_title",children:["Runtime data was accessed outside of ","<Suspense>"]}),ed[44]=W):W=ed[44],ed[45]===Symbol.for("react.memo_cache_sentinel")?(K=(0,S.jsx)("code",{children:"cookies()"}),ed[45]=K):K=ed[45],ed[46]===Symbol.for("react.memo_cache_sentinel")?(Y=(0,S.jsx)("code",{children:"headers()"}),ed[46]=Y):Y=ed[46],ed[47]===Symbol.for("react.memo_cache_sentinel")?(X=(0,S.jsxs)("p",{children:["This delays the entire page from rendering, resulting in a slow user experience. Next.js uses this error to ensure your app loads instantly on every navigation. ",K,", ",Y,", and ",(0,S.jsx)("code",{children:"searchParams"}),", are examples of Runtime data that can only come from a user request."]}),G=(0,S.jsx)("h4",{children:"To fix this:"}),ed[47]=X,ed[48]=G):(X=ed[47],G=ed[48]),ed[49]===Symbol.for("react.memo_cache_sentinel")?(Q=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["Provide a fallback UI using ","<Suspense>"]})," around this component."]}),J=(0,S.jsx)("h4",{className:"nextjs__blocking_page_load_error_fix_option_separator",children:"or"}),ed[49]=Q,ed[50]=J):(Q=ed[49],J=ed[50]),ed[51]===Symbol.for("react.memo_cache_sentinel")?(ee=(0,S.jsx)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:(0,S.jsxs)("strong",{children:["Move the Runtime data access into a deeper component wrapped in"," ","<Suspense>","."]})}),et=(0,S.jsx)("p",{children:"In either case this allows Next.js to stream its contents to the user when they request the page, while still providing an initial UI that is prerendered and prefetchable for instant navigations."}),ed[51]=ee,ed[52]=et):(ee=ed[51],et=ed[52]),ed[53]===Symbol.for("react.memo_cache_sentinel")?(en=(0,S.jsxs)("div",{className:"nextjs__blocking_page_load_error_description",children:[W,X,G,Q,J,ee,et,(0,S.jsxs)("p",{children:["Learn more:"," ",(0,S.jsx)("a",{href:"https://nextjs.org/docs/messages/blocking-route",children:"https://nextjs.org/docs/messages/blocking-route"})]})]}),ed[53]=en):en=ed[53],en):(ed[54]===Symbol.for("react.memo_cache_sentinel")?(er=(0,S.jsxs)("h3",{className:"nextjs__blocking_page_load_error_description_title",children:["Data that blocks navigation was accessed outside of ","<Suspense>"]}),ed[54]=er):er=ed[54],ed[55]===Symbol.for("react.memo_cache_sentinel")?(eo=(0,S.jsx)("code",{children:"fetch(...)"}),ed[55]=eo):eo=ed[55],ed[56]===Symbol.for("react.memo_cache_sentinel")?(ea=(0,S.jsxs)("p",{children:["This delays the entire page from rendering, resulting in a slow user experience. Next.js uses this error to ensure your app loads instantly on every navigation. Uncached data such as ",eo,", cached data with a low expire time, or ",(0,S.jsx)("code",{children:"connection()"})," are all examples of data that only resolve on navigation."]}),ei=(0,S.jsx)("h4",{children:"To fix this, you can either:"}),ed[56]=ea,ed[57]=ei):(ea=ed[56],ei=ed[57]),ed[58]===Symbol.for("react.memo_cache_sentinel")?(el=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["Provide a fallback UI using ","<Suspense>"]})," around this component. This allows Next.js to stream its contents to the user as soon as it's ready, without blocking the rest of the app."]}),es=(0,S.jsx)("h4",{className:"nextjs__blocking_page_load_error_fix_option_separator",children:"or"}),ed[58]=el,ed[59]=es):(el=ed[58],es=ed[59]),ed[60]===Symbol.for("react.memo_cache_sentinel")?(ec=(0,S.jsxs)("p",{className:"nextjs__blocking_page_load_error_fix_option",children:[(0,S.jsxs)("strong",{children:["Move the asynchronous await into a Cache Component (",(0,S.jsx)("code",{children:'"use cache"'}),")"]}),". This allows Next.js to statically prerender the component as part of the HTML document, so it's instantly visible to the user."]}),ed[60]=ec):ec=ed[60],ed[61]===Symbol.for("react.memo_cache_sentinel")?(eu=(0,S.jsxs)("div",{className:"nextjs__blocking_page_load_error_description",children:[er,ea,ei,el,es,ec,(0,S.jsxs)("p",{children:["Learn more:"," ",(0,S.jsx)("a",{href:"https://nextjs.org/docs/messages/blocking-route",children:"https://nextjs.org/docs/messages/blocking-route"})]})]}),ed[61]=eu):eu=ed[61],eu)}var n4={type:"empty"};function n5(e){var t,n,r,o=e.getSquashedHydrationErrorDetails,a=e.runtimeErrors,i=e.debugInfo,l=e.onClose,s=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["getSquashedHydrationErrorDetails","runtimeErrors","debugInfo","onClose"]),c=(0,C.useRef)(null),u=function(e){var t,n,r,o,a,i,l,s,c,u,d=(0,O.c)(16),f=e.runtimeErrors,p=e.getSquashedHydrationErrorDetails,h=(o=(0,C.useState)(0),function(e){if(Array.isArray(e))return e}(o)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(o,2)||function(e,t){if(e){if("string"==typeof e)return nQ(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nQ(e,2)}}(o,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),m=h[0],g=h[1],y=0===f.length,v=null!=(i=f[m])?i:null,b=function(e,t){var n=(0,O.c)(5);n:{if(void 0===e){o=n4;break n}n[0]!==e||n[1]!==t?(a=function(e,t){var n,r,o,a=t(e);if(null!==a)return{type:"hydration",warning:null!=(r=a.warning)?r:null,notes:null,reactOutputComponentDiff:null!=(o=a.reactOutputComponentDiff)?o:null};if(!(tO((n=e).message)||/Hydration failed because the server rendered (text|HTML) didn't match the client\./.test(n.message)||/A tree hydrated but some attributes of the server rendered HTML didn't match the client properties./.test(n.message)))return null;var i=function(e){var t=e.message;if(tO(t)){var n=tx(t.split("\n\n"),2),r=n[0],o=n[1],a=(void 0===o?"":o).trim();return{message:""===a?t.trim():r.trim(),diff:a,notes:null}}var i=tx(t.split("".concat(tj)),2),l=i[0],s=i[1],c=l.trim();if(void 0!==s&&s.length>1){var u=[];s.split("\n").forEach(function(e){""!==e.trim()&&(e.trim().startsWith("at ")||u.push(e))});var d=tw(c.split("\n\n")),f=d[0],p=d.slice(1);return{message:f,diff:u.join("\n"),notes:p.join("\n\n")||null}}var h=tw(c.split("\n\n"));return{message:h[0],diff:null,notes:h.slice(1).join("\n\n")}}(e),l=i.message,s=i.notes,c=i.diff;return null===l?null:{type:"hydration",warning:l,notes:s,reactOutputComponentDiff:c}}(e,t),n[0]=e,n[1]=t,n[2]=a):a=n[2];var r,o,a,i,l=a;if(l){o=l;break n}n[3]!==e?(i=(r=e).message.includes("/blocking-route")?{type:"blocking-route",variant:r.message.includes("cookies()")?"runtime":"navigation",refinement:""}:r.message.includes("/next-prerender-dynamic-metadata")?{type:"dynamic-metadata",variant:r.message.includes("cookies()")?"runtime":"navigation"}:r.message.includes("/next-prerender-dynamic-viewport")?{type:"blocking-route",variant:r.message.includes("cookies()")?"runtime":"navigation",refinement:"generateViewport"}:null,n[3]=e,n[4]=i):i=n[4];var s=i;if(s){o=s;break n}o=n4}return o}(null==v?void 0:v.error,p);if(y||!v)return d[0]!==m||d[1]!==y?(l={isLoading:y,activeIdx:m,setActiveIndex:g,activeError:null,errorDetails:null,errorCode:null,errorType:null},d[0]=m,d[1]=y,d[2]=l):l=d[2],l;var x=v.error;d[3]!==x?(s=(void 0===(a=x)?"undefined":nG(a))==="object"&&null!==a&&"__NEXT_ERROR_CODE"in a&&"string"==typeof a.__NEXT_ERROR_CODE?a.__NEXT_ERROR_CODE:(void 0===a?"undefined":nG(a))==="object"&&null!==a&&"digest"in a&&"string"==typeof a.digest?a.digest.split("@").find(function(e){return e.startsWith("E")}):void 0,d[3]=x,d[4]=s):s=d[4];var w=s;d[5]!==v.type||d[6]!==x||d[7]!==b?(t=x,n=v.type,c="blocking-route"===(r=b).type?"Blocking Route":"dynamic-metadata"===r.type?"Ambiguous Metadata":"recoverable"===n?"Recoverable ".concat(t.name):"console"===n?"Console ".concat(t.name):"Runtime ".concat(t.name),d[5]=v.type,d[6]=x,d[7]=b,d[8]=c):c=d[8];var _=c;return d[9]!==v||d[10]!==m||d[11]!==w||d[12]!==b||d[13]!==_||d[14]!==y?(u={isLoading:y,activeIdx:m,setActiveIndex:g,activeError:v,errorDetails:b,errorCode:w,errorType:_},d[9]=v,d[10]=m,d[11]=w,d[12]=b,d[13]=_,d[14]=y,d[15]=u):u=d[15],u}({runtimeErrors:a,getSquashedHydrationErrorDetails:o}),d=u.isLoading,f=u.errorCode,p=u.errorType,h=u.activeIdx,m=u.errorDetails,g=u.activeError,y=u.setActiveIndex,v=nW(g),b=(0,C.useMemo)(function(){var e,t=v.findIndex(function(e){return!e.ignored&&!!e.originalCodeFrame&&!!e.originalStackFrame});return null!=(e=v[t])?e:null},[v]),x=(0,C.useCallback)(function(){if(!g)return"";var e=[];p&&e.push("## Error Type\n".concat(p));var t=g.error,n=t.message;if("environmentName"in t&&t.environmentName){var r="[ ".concat(t.environmentName," ] ");n.startsWith(r)&&(n=n.slice(r.length))}if(n&&e.push("## Error Message\n".concat(n)),v.length>0){var o=v.filter(function(e){return!e.ignored});if(o.length>0){var a=o.map(function(e){if(e.originalStackFrame){var t=e.originalStackFrame,n=t.methodName,r=t.file,o=t.line1,a=t.column1;return" at ".concat(n," (").concat(r,":").concat(o,":").concat(a,")")}if(e.sourceStackFrame){var i=e.sourceStackFrame,l=i.methodName,s=i.file,c=i.line1,u=i.column1;return" at ".concat(l," (").concat(s,":").concat(c,":").concat(u,")")}return""}).filter(Boolean);a.length>0&&e.push("\n".concat(a.join("\n")))}}if(null==b?void 0:b.originalCodeFrame){var i=eJ()(e0(b.originalCodeFrame));e.push("## Code Frame\n".concat(i))}return"".concat(e.join("\n\n"),"\n\nNext.js version: ").concat(s.versionInfo.installed," (").concat(process.env.__NEXT_BUNDLER,")\n")},[g,p,b,v,s.versionInfo]);if(d)return(0,S.jsx)(t8,{children:(0,S.jsx)(nh,{})});if(!g)return null;var w=g.error,_=["server","edge-server"].includes(nF(w)||""),j=null,k=null;switch(m.type){case"hydration":r=m.warning?(0,S.jsx)(n0,{message:m.warning}):(0,S.jsx)(n1,{error:w}),j=(0,S.jsxs)("div",{className:"error-overlay-notes-container",children:[m.notes?(0,S.jsx)(S.Fragment,{children:(0,S.jsx)("p",{id:"nextjs__container_errors__notes",className:"nextjs__container_errors__notes",children:m.notes})}):null,m.warning?(0,S.jsx)("p",{id:"nextjs__container_errors__link",className:"nextjs__container_errors__link",children:(0,S.jsx)(eP,{text:"See more info here: ".concat(tk)})}):null]}),m.reactOutputComponentDiff&&(k=(0,S.jsx)(nZ,{reactOutputComponentDiff:m.reactOutputComponentDiff||""}));break;case"blocking-route":r=(0,S.jsx)(n3,{variant:m.variant,refinement:m.refinement});break;case"dynamic-metadata":r=(0,S.jsx)(n2,{variant:m.variant});break;case"empty":r=(0,S.jsx)(n1,{error:w})}return(0,S.jsxs)(nb,(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({errorCode:f,errorType:p,errorMessage:r,onClose:_?void 0:l,debugInfo:i,error:w,runtimeErrors:a,activeIdx:h,setActiveIndex:y,dialogResizerRef:c,generateErrorInfo:x},s),n=n={children:[j,k,(0,S.jsx)(C.Suspense,{fallback:(0,S.jsx)("div",{"data-nextjs-error-suspended":!0}),children:(0,S.jsx)(nK,{error:g,dialogResizerRef:c},g.id.toString())})]},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t))}function n6(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",children:(0,S.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"m.191 2.063.56.498 13.5 12 .561.498.997-1.121-.56-.498-1.81-1.608 2.88-3.342v-.98l-3.204-3.72C10.645.923 6.365.686 3.594 3.08L1.748 1.44 1.188.94.19 2.063ZM14.761 8l-2.442 2.836-1.65-1.466a3.001 3.001 0 0 0-4.342-3.86l-1.6-1.422a5.253 5.253 0 0 1 7.251.682L14.76 8ZM7.526 6.576l1.942 1.727a1.499 1.499 0 0 0-1.942-1.727Zm-7.845.935 1.722-2 1.137.979L1.24 8l2.782 3.23A5.25 5.25 0 0 0 9.9 12.703l.54 1.4a6.751 6.751 0 0 1-7.555-1.892L-.318 8.49v-.98Z",clipRule:"evenodd"})}),t[0]=e):e=t[0],e}function n9(){var e,t,n=(0,O.c)(2);return n[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("g",{clipPath:"url(#light_icon_clip_path)",children:(0,S.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.75.75V0h-1.5v2h1.5V.75ZM3.26 4.32l-.53-.53-.354-.353-.53-.53 1.06-1.061.53.53.354.354.53.53-1.06 1.06Zm8.42-1.06.53-.53.353-.354.53-.53 1.061 1.06-.53.53-.354.354-.53.53-1.06-1.06ZM8 11.25a3.25 3.25 0 1 0 0-6.5 3.25 3.25 0 0 0 0 6.5Zm0 1.5a4.75 4.75 0 1 0 0-9.5 4.75 4.75 0 0 0 0 9.5Zm6-5.5h2v1.5h-2v-1.5Zm-13.25 0H0v1.5h2v-1.5H.75Zm1.62 5.32-.53.53 1.06 1.06.53-.53.354-.353.53-.53-1.06-1.061-.53.53-.354.354Zm10.2 1.06.53.53 1.06-1.06-.53-.53-.354-.354-.53-.53-1.06 1.06.53.53.353.354ZM8.75 14v2h-1.5v-2h1.5Z",clipRule:"evenodd"})}),n[0]=e):e=n[0],n[1]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"20",height:"16",viewBox:"0 0 16 16",fill:"none",children:[e,(0,S.jsx)("defs",{children:(0,S.jsx)("clipPath",{id:"light_icon_clip_path",children:(0,S.jsx)("path",{fill:"currentColor",d:"M0 0h16v16H0z"})})})]}),n[1]=t):t=n[1],t}function n8(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{"data-testid":"geist-icon",height:"16",strokeLinejoin:"round",viewBox:"0 0 16 16",width:"16",children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 8.00005C1.5 5.53089 2.99198 3.40932 5.12349 2.48889C4.88136 3.19858 4.75 3.95936 4.75 4.7501C4.75 8.61609 7.88401 11.7501 11.75 11.7501C11.8995 11.7501 12.048 11.7454 12.1953 11.7361C11.0955 13.1164 9.40047 14.0001 7.5 14.0001C4.18629 14.0001 1.5 11.3138 1.5 8.00005ZM6.41706 0.577759C2.78784 1.1031 0 4.22536 0 8.00005C0 12.1422 3.35786 15.5001 7.5 15.5001C10.5798 15.5001 13.2244 13.6438 14.3792 10.9921L13.4588 9.9797C12.9218 10.155 12.3478 10.2501 11.75 10.2501C8.71243 10.2501 6.25 7.78767 6.25 4.7501C6.25 3.63431 6.58146 2.59823 7.15111 1.73217L6.41706 0.577759ZM13.25 1V1.75V2.75L14.25 2.75H15V4.25H14.25H13.25V5.25V6H11.75V5.25V4.25H10.75L10 4.25V2.75H10.75L11.75 2.75V1.75V1H13.25Z",fill:"currentColor"})}),t[0]=e):e=t[0],e}function n7(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{width:"16",height:"16",strokeLinejoin:"round",children:(0,S.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v8.5a1 1 0 0 1-1 1H8.75v3h1.75V16h-5v-1.5h1.75v-3H1a1 1 0 0 1-1-1V2Zm1.5.5V10h13V2.5h-13Z",clipRule:"evenodd"})}),t[0]=e):e=t[0],e}function re(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function rt(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||rr(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function rn(e){return function(e){if(Array.isArray(e))return re(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||rr(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function rr(e,t){if(e){if("string"==typeof e)return re(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return re(e,t)}}function ro(){var e,t,n=(e=["\n .shortcut-recorder {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 8px;\n position: relative;\n font-family: var(--font-stack-sans);\n\n .shortcut-recorder-button {\n display: flex;\n align-items: center;\n gap: 4px;\n background: transparent;\n border: 1px dashed var(--color-gray-500);\n border-radius: var(--rounded-lg);\n padding: 6px 8px;\n font-weight: 400;\n font-size: var(--size-14);\n color: var(--color-gray-1000);\n transition: border-color 150ms var(--timing-swift);\n\n &[data-has-shortcut='true'] {\n border: 1px solid var(--color-gray-alpha-400);\n\n &:hover {\n border-color: var(--color-gray-500);\n }\n }\n\n &:hover {\n border-color: var(--color-gray-600);\n }\n\n &::placeholder {\n color: var(--color-gray-900);\n }\n\n &[data-pristine='false']::placeholder {\n color: transparent;\n }\n\n &:focus-visible {\n outline: var(--focus-ring);\n outline-offset: -1px;\n }\n }\n\n kbd {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n font-family: var(--font-stack-sans);\n background: var(--color-gray-200);\n min-width: 20px;\n height: 20px;\n font-size: 14px;\n border-radius: 4px;\n color: var(--color-gray-1000);\n\n &[data-symbol='false'] {\n padding: 0 4px;\n }\n }\n\n .shortcut-recorder-clear-button {\n cursor: pointer;\n color: var(--color-gray-1000);\n width: 20px;\n height: 20px;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 4px;\n transition: background 150ms var(--timing-swift);\n\n &:hover {\n background: var(--color-gray-300);\n }\n\n &:focus-visible {\n outline: var(--focus-ring);\n }\n\n svg {\n width: 14px;\n height: 14px;\n }\n }\n }\n\n .shortcut-recorder-keys {\n pointer-events: none;\n user-select: none;\n display: flex;\n align-items: center;\n gap: 2px;\n }\n\n .shortcut-recorder-tooltip {\n --gap: 8px;\n --background: var(--color-gray-1000);\n background: var(--background);\n color: var(--color-background-100);\n font-size: var(--size-14);\n padding: 4px 8px;\n border-radius: 8px;\n position: absolute;\n bottom: calc(100% + var(--gap));\n text-align: center;\n opacity: 0;\n scale: 0.96;\n white-space: nowrap;\n user-select: none;\n transition:\n opacity 150ms var(--timing-swift),\n scale 150ms var(--timing-swift);\n\n &[data-show='true'] {\n opacity: 1;\n scale: 1;\n }\n\n svg {\n position: absolute;\n transform: translateX(-50%);\n bottom: -6px;\n left: 50%;\n }\n\n .shortcut-recorder-status {\n display: flex;\n align-items: center;\n gap: 6px;\n }\n\n .shortcut-recorder-status-icon {\n width: 7px;\n height: 7px;\n border-radius: 50%;\n flex-shrink: 0;\n background: var(--color-red-700);\n\n &[data-success='true'] {\n background: var(--color-green-700);\n }\n }\n }\n"],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return ro=function(){return n},n}var ra=["Meta","Control","Ctrl","Alt","Option","Shift"];function ri(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h=(0,O.c)(33),m=e.value,g=e.onChange,y=rt((0,C.useState)(!0),2),v=y[0],b=y[1],x=rt((0,C.useState)(!1),2),w=x[0],_=x[1];h[0]!==m?(t=null!=m?m:[],h[0]=m,h[1]=t):t=h[1];var j=rt((0,C.useState)(t),2),k=j[0],P=j[1],E=rt((0,C.useState)(!1),2),T=E[0],N=E[1],I=(0,C.useRef)(null),L=(0,C.useRef)(null),A=!!m||k.length>0;h[2]!==g||h[3]!==v||h[4]!==w?(n=function(e){if(e.target===L.current&&"Tab"!==e.key){I.current&&clearTimeout(I.current),w||_(!0),v&&(P([]),b(!1));var t=function(e){I.current=window.setTimeout(function(){N(!0),g(e.join("+")),I.current=window.setTimeout(function(){_(!1)},1e3)},180)};e.preventDefault(),e.stopPropagation(),P(function(n){if(n.includes(e.code)||n.includes(e.key))return n;if(!ra.includes(e.key)){var r=n.findIndex(rc);if(-1!==r){var o=rn(n);return o[r]=e.code,t(o),o}var a=rn(n).concat([e.code]);return t(a),a}for(var i=rn(n),l=ra.indexOf(e.key),s=0,c=0;c<i.length;c++)if(ra.includes(i[c])){if(l<ra.indexOf(i[c])){s=c;break}s=c+1}else break;return i.splice(s,0,e.key),t(i),i})}},h[2]=g,h[3]=v,h[4]=w,h[5]=n):n=h[5];var z=n;h[6]!==g?(r=function(){var e;null==(e=L.current)||e.focus(),P([]),N(!1),setTimeout(function(){_(!0)}),g(null)},h[6]=g,h[7]=r):r=h[7];var R=r;h[8]===Symbol.for("react.memo_cache_sentinel")?(o=function(){N(!1),_(!1),b(!0)},h[8]=o):o=h[8];var D=o;h[9]===Symbol.for("react.memo_cache_sentinel")?(a=function(){var e;I.current&&clearTimeout(I.current),_(!0),null==(e=L.current)||e.focus()},h[9]=a):a=h[9];var M=a;h[10]!==A||h[11]!==k?(i=A?(0,S.jsx)("div",{className:"shortcut-recorder-keys",children:k.map(rs)}):"Record Shortcut",h[10]=A,h[11]=k,h[12]=i):i=h[12],h[13]!==R||h[14]!==A?(l=A&&(0,S.jsx)("div",{className:"shortcut-recorder-clear-button",role:"button",onClick:R,onFocus:rl,onKeyDown:function(e){("Enter"===e.key||" "===e.key)&&(R(),e.stopPropagation())},"aria-label":"Clear shortcut",tabIndex:0,children:(0,S.jsx)(rp,{})}),h[13]=R,h[14]=A,h[15]=l):l=h[15],h[16]!==z||h[17]!==A||h[18]!==i||h[19]!==l?(s=(0,S.jsxs)("button",{className:"shortcut-recorder-button",ref:L,onClick:M,onFocus:M,onBlur:D,onKeyDown:z,"data-has-shortcut":A,"data-shortcut-recorder":"true",children:[i,l]}),h[16]=z,h[17]=A,h[18]=i,h[19]=l,h[20]=s):s=h[20],h[21]!==T?(c=(0,S.jsx)("div",{className:"shortcut-recorder-status-icon","data-success":T}),h[21]=T,h[22]=c):c=h[22];var Z=T?"Shortcut set":"Recording";return h[23]!==Z||h[24]!==c?(u=(0,S.jsxs)("div",{className:"shortcut-recorder-status",children:[c,Z]}),h[23]=Z,h[24]=c,h[25]=u):u=h[25],h[26]===Symbol.for("react.memo_cache_sentinel")?(d=(0,S.jsx)(ru,{}),h[26]=d):d=h[26],h[27]!==w||h[28]!==u?(f=(0,S.jsxs)("div",{className:"shortcut-recorder-tooltip","data-show":w,children:[u,d]}),h[27]=w,h[28]=u,h[29]=f):f=h[29],h[30]!==f||h[31]!==s?(p=(0,S.jsxs)("div",{className:"shortcut-recorder",children:[s,f]}),h[30]=f,h[31]=s,h[32]=p):p=h[32],p}function rl(e){return e.stopPropagation()}function rs(e){return(0,S.jsx)(rd,{children:e},e)}function rc(e){return!ra.includes(e)}function ru(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{fill:"none",height:"6",viewBox:"0 0 14 6",width:"14",xmlns:"http://www.w3.org/2000/svg",children:(0,S.jsx)("path",{d:"M13.8284 0H0.17157C0.702003 0 1.21071 0.210714 1.58578 0.585787L5.58578 4.58579C6.36683 5.36684 7.63316 5.36683 8.41421 4.58579L12.4142 0.585786C12.7893 0.210714 13.298 0 13.8284 0Z",fill:"var(--background)"})}),t[0]=e):e=t[0],e}function rd(e){var t,n,r,o,a=(0,O.c)(9),i=e.children;a[0]!==i?(t=function(e){switch(e){case"Meta":return(0,S.jsx)(rf,{});case"Alt":case"Option":return"⌥";case"Control":case"Ctrl":return"Ctrl";case"Shift":return"⇧";case"Enter":return"⏎";case"Escape":case"Esc":return"Esc";case" ":case"Space":case"Spacebar":return"Space";case"ArrowUp":return"↑";case"ArrowDown":return"↓";case"ArrowLeft":return"←";case"ArrowRight":return"→";case"Tab":return"Tab";case"Backspace":return"⌫";case"Delete":return"⌦";default:if(1===i.length)return i.toUpperCase();return i}},a[0]=i,a[1]=t):t=a[1];var l=t;if(a[2]!==i||a[3]!==l){var s=l(i);n="string"==typeof s&&1===s.length,r=function(e){if("string"!=typeof e)return e;var t={Minus:"-",Equal:"=",BracketLeft:"[",BracketRight:"]",Backslash:"\\",Semicolon:";",Quote:"'",Comma:",",Period:".",Backquote:"`",Space:" ",Slash:"/",IntlBackslash:"\\"};return t[e]?t[e]:/^Key([A-Z])$/.test(e)?e.replace(/^Key/,""):/^Digit([0-9])$/.test(e)?e.replace(/^Digit/,""):/^Numpad([0-9])$/.test(e)?e.replace(/^Numpad/,""):"NumpadAdd"===e?"+":"NumpadSubtract"===e?"-":"NumpadMultiply"===e?"*":"NumpadDivide"===e?"/":"NumpadDecimal"===e?".":"NumpadEnter"===e?"Enter":e}(s),a[2]=i,a[3]=l,a[4]=n,a[5]=r}else n=a[4],r=a[5];return a[6]!==n||a[7]!==r?(o=(0,S.jsx)("kbd",{"data-symbol":n,children:r}),a[6]=n,a[7]=r,a[8]=o):o=a[8],o}function rf(){var e,t=(0,O.c)(1),n=rm(/^Mac/)||rm(/^iPhone/)||rm(/^iPad/)||rm(/^Mac/)&&navigator.maxTouchPoints>1?"⌘":"Ctrl";return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("span",{style:{minWidth:"1em",display:"inline-block"},children:n}),t[0]=e):e=t[0],e}function rp(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{height:"16",strokeLinejoin:"round",viewBox:"0 0 16 16",width:"16",children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.4697 13.5303L13 14.0607L14.0607 13L13.5303 12.4697L9.06065 7.99999L13.5303 3.53032L14.0607 2.99999L13 1.93933L12.4697 2.46966L7.99999 6.93933L3.53032 2.46966L2.99999 1.93933L1.93933 2.99999L2.46966 3.53032L6.93933 7.99999L2.46966 12.4697L1.93933 13L2.99999 14.0607L3.53032 13.5303L7.99999 9.06065L12.4697 13.5303Z",fill:"currentColor"})}),t[0]=e):e=t[0],e}var rh=eg(ro());function rm(e){return null!=window.navigator?e.test(window.navigator.platform):void 0}function rg(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function ry(e,t,n,r,o,a,i){try{var l=e[a](i),s=l.value}catch(e){n(e);return}l.done?t(s):Promise.resolve(s).then(r,o)}var rv=__webpack_require__("./dist/compiled/zod/index.cjs"),rb=rv.z.object({theme:rv.z.enum(["light","dark","system"]).optional(),disableDevIndicator:rv.z.boolean().optional(),devToolsPosition:rv.z.enum(["top-left","top-right","bottom-left","bottom-right"]).optional(),devToolsPanelPosition:rv.z.record(rv.z.string(),rv.z.enum(["top-left","top-right","bottom-left","bottom-right"])).optional(),devToolsPanelSize:rv.z.record(rv.z.string(),rv.z.object({width:rv.z.number(),height:rv.z.number()})).optional(),scale:rv.z.number().optional(),hideShortcut:rv.z.string().nullable().optional()});function rx(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}var rw={},r_=null;function rj(){if(0!==Object.keys(rw).length){var e=JSON.stringify(rw);rw={},fetch("/__nextjs_devtools_config",{method:"POST",headers:{"Content-Type":"application/json"},body:e,keepalive:!0}).catch(function(t){console.warn("[Next.js DevTools] Failed to save config:",{data:e,error:t})})}}function rk(e){var t=rb.safeParse(e);t.success?(rw=function e(t,n){if(!n||(void 0===n?"undefined":rx(n))!=="object"||Array.isArray(n)||!t||(void 0===t?"undefined":rx(t))!=="object"||Array.isArray(t))return n;var r=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},t);for(var o in n){var a=n[o],i=t[o];void 0!==a&&(a&&(void 0===a?"undefined":rx(a))==="object"&&!Array.isArray(a)&&i&&(void 0===i?"undefined":rx(i))==="object"&&!Array.isArray(i)?r[o]=e(i,a):r[o]=a)}return r}(rw,e),r_&&clearTimeout(r_),r_=setTimeout(rj,120)):console.warn("[Next.js DevTools] Invalid config patch:",t.error.message)}function rS(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function rO(){var e,t,n=(e=["\n .preferences-container {\n width: 100%;\n }\n\n @media (min-width: 576px) {\n .preferences-container {\n width: 480px;\n }\n }\n\n .preference-section:first-child {\n padding-top: 0;\n }\n\n .preference-section {\n padding: 12px 0;\n border-bottom: 1px solid var(--color-gray-400);\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: 24px;\n }\n\n .preference-section:last-child {\n border-bottom: none;\n }\n\n .preference-header {\n margin-bottom: 0;\n flex: 1;\n }\n\n .preference-header label {\n font-size: var(--size-14);\n font-weight: 500;\n color: var(--color-gray-1000);\n margin: 0;\n }\n\n .preference-description {\n color: var(--color-gray-900);\n font-size: var(--size-14);\n margin: 0;\n }\n\n .select-button,\n .action-button {\n display: flex;\n align-items: center;\n gap: 8px;\n background: var(--color-background-100);\n border: 1px solid var(--color-gray-400);\n border-radius: var(--rounded-lg);\n font-weight: 400;\n font-size: var(--size-14);\n color: var(--color-gray-1000);\n padding: 6px 8px;\n transition: border-color 150ms var(--timing-swift);\n\n &:hover {\n border-color: var(--color-gray-500);\n }\n\n svg {\n width: 14px;\n height: 14px;\n overflow: visible;\n }\n }\n\n .select-button {\n &:focus-within {\n outline: var(--focus-ring);\n outline-offset: -1px;\n }\n\n select {\n all: unset;\n }\n\n option {\n color: var(--color-gray-1000);\n background: var(--color-background-100);\n }\n }\n\n .preference-section button:disabled {\n opacity: 0.6;\n cursor: not-allowed;\n }\n\n :global(.icon) {\n width: 18px;\n height: 18px;\n color: #666;\n }\n"],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return rO=function(){return n},n}function rC(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y,v,b,x,w,_,j,k,P,E,T,N,I,L,A,R,D,M,Z,U,F,H,V,B=(0,O.c)(61),$=e.theme,q=e.hide,W=e.hideShortcut,K=e.setHideShortcut,Y=e.scale,X=e.setPosition,G=e.setScale,Q=e.position,J=(r=(t=(0,C.useState)(!1),n=function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||function(e,t){if(e){if("string"==typeof e)return rg(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return rg(e,2)}}(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],o=n[1],{restartServer:function(e){var t,n=e.invalidateFileSystemCache;return(t=function(){var e,t,r,a,i,l;return function(e,t){var n,r,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},i=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return i.next=l(0),i.throw=l(1),i.return=l(2),"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function l(l){return function(s){var c=[l,s];if(n)throw TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(a=0)),a;)try{if(n=1,r&&(o=2&c[0]?r.return:c[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,c[1])).done)return o;switch(r=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return a.label++,{value:c[1],done:!1};case 5:a.label++,r=c[1],c=[0];continue;case 7:c=a.ops.pop(),a.trys.pop();continue;default:if(!(o=(o=a.trys).length>0&&o[o.length-1])&&(6===c[0]||2===c[0])){a=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){a.label=c[1];break}if(6===c[0]&&a.label<o[1]){a.label=o[1],o=c;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(c);break}o[2]&&a.ops.pop(),a.trys.pop();continue}c=t.call(e,a)}catch(e){c=[6,e],r=0}finally{n=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}}(this,function(s){switch(s.label){case 0:o(!0),e=n?"/__nextjs_restart_dev?invalidateFileSystemCache=1":"/__nextjs_restart_dev",t=!1,s.label=1;case 1:return s.trys.push([1,11,12,13]),[4,fetch("/__nextjs_server_status").then(function(e){return e.json()}).then(function(e){return e.executionId}).catch(function(e){return console.log("[Next.js DevTools] Failed to fetch server status while restarting dev server.",e),null})];case 2:if(!(r=s.sent()))return console.log("[Next.js DevTools] Failed to get the current server execution ID while restarting dev server."),[2];return[4,fetch(e,{method:"POST"})];case 3:if(!(a=s.sent()).ok)return console.log("[Next.js DevTools] Failed to fetch restart server endpoint. Status:",a.status),[2];i=0,s.label=4;case 4:if(!(i<10))return[3,10];return[4,new Promise(function(e){return setTimeout(e,1e3)})];case 5:s.sent(),s.label=6;case 6:return s.trys.push([6,8,,9]),[4,fetch("/__nextjs_server_status").then(function(e){return e.json()}).then(function(e){return e.executionId})];case 7:if(l=s.sent(),r!==l)return t=!0,window.location.reload(),[2];return[3,9];case 8:return s.sent(),[3,9];case 9:return i++,[3,4];case 10:return console.log("[Next.js DevTools] Failed to restart server. Exhausted all polling attempts."),[2];case 11:return console.log("[Next.js DevTools] Failed to restart server.",s.sent()),[2];case 12:return t||o(!1),[7];case 13:return[2]}})},function(){var e=this,n=arguments;return new Promise(function(r,o){var a=t.apply(e,n);function i(e){ry(a,r,o,i,l,"next",e)}function l(e){ry(a,r,o,i,l,"throw",e)}i(void 0)})})()},isPending:r}),ee=J.restartServer,et=J.isPending,en=dw().shadowRoot;B[0]!==en.host?(a=function(e){var t=en.host;if("system"===e.target.value){t.classList.remove("dark"),t.classList.remove("light"),rk({theme:"system"});return}"dark"===e.target.value?(t.classList.add("dark"),t.classList.remove("light"),rk({theme:"dark"})):(t.classList.remove("dark"),t.classList.add("light"),rk({theme:"light"}))},B[0]=en.host,B[1]=a):a=B[1];var er=a;B[2]!==X?(i=function(e){X(e.target.value),rk({devToolsPosition:e.target.value})},B[2]=X,B[3]=i):i=B[3];var eo=i;B[4]!==G?(l=function(e){var t=Number(e.target.value);G(t),rk({scale:t})},B[4]=G,B[5]=l):l=B[5];var ea=l;return B[6]===Symbol.for("react.memo_cache_sentinel")?(s=(0,S.jsxs)("div",{className:"preference-header",children:[(0,S.jsx)("label",{htmlFor:"theme",children:"Theme"}),(0,S.jsx)("p",{className:"preference-description",children:"Select your theme preference."})]}),B[6]=s):s=B[6],B[7]!==$?(c=(0,S.jsx)(rT,{theme:$}),B[7]=$,B[8]=c):c=B[8],B[9]===Symbol.for("react.memo_cache_sentinel")?(u=(0,S.jsx)("option",{value:"system",children:"System"}),d=(0,S.jsx)("option",{value:"light",children:"Light"}),f=(0,S.jsx)("option",{value:"dark",children:"Dark"}),B[9]=u,B[10]=d,B[11]=f):(u=B[9],d=B[10],f=B[11]),B[12]!==er||B[13]!==c||B[14]!==$?(p=(0,S.jsxs)("div",{className:"preference-section",children:[s,(0,S.jsxs)(rE,{id:"theme",name:"theme",prefix:c,value:$,onChange:er,children:[u,d,f]})]}),B[12]=er,B[13]=c,B[14]=$,B[15]=p):p=B[15],B[16]===Symbol.for("react.memo_cache_sentinel")?(h=(0,S.jsxs)("div",{className:"preference-header",children:[(0,S.jsx)("label",{htmlFor:"position",children:"Position"}),(0,S.jsx)("p",{className:"preference-description",children:"Adjust the placement of your dev tools."})]}),B[16]=h):h=B[16],B[17]===Symbol.for("react.memo_cache_sentinel")?(m=(0,S.jsx)("option",{value:"bottom-left",children:"Bottom Left"}),g=(0,S.jsx)("option",{value:"bottom-right",children:"Bottom Right"}),y=(0,S.jsx)("option",{value:"top-left",children:"Top Left"}),v=(0,S.jsx)("option",{value:"top-right",children:"Top Right"}),B[17]=m,B[18]=g,B[19]=y,B[20]=v):(m=B[17],g=B[18],y=B[19],v=B[20]),B[21]!==eo||B[22]!==Q?(b=(0,S.jsxs)("div",{className:"preference-section",children:[h,(0,S.jsxs)(rE,{id:"position",name:"position",value:Q,onChange:eo,children:[m,g,y,v]})]}),B[21]=eo,B[22]=Q,B[23]=b):b=B[23],B[24]===Symbol.for("react.memo_cache_sentinel")?(x=(0,S.jsxs)("div",{className:"preference-header",children:[(0,S.jsx)("label",{htmlFor:"size",children:"Size"}),(0,S.jsx)("p",{className:"preference-description",children:"Adjust the size of your dev tools."})]}),B[24]=x):x=B[24],B[25]===Symbol.for("react.memo_cache_sentinel")?(w=Object.entries(z).map(rP),B[25]=w):w=B[25],B[26]!==ea||B[27]!==Y?(_=(0,S.jsxs)("div",{className:"preference-section",children:[x,(0,S.jsx)(rE,{id:"size",name:"size",value:Y,onChange:ea,children:w})]}),B[26]=ea,B[27]=Y,B[28]=_):_=B[28],B[29]===Symbol.for("react.memo_cache_sentinel")?(j=(0,S.jsxs)("div",{className:"preference-header",children:[(0,S.jsx)("label",{id:"hide-dev-tools",children:"Hide Dev Tools for this session"}),(0,S.jsx)("p",{className:"preference-description",children:"Hide Dev Tools until you restart your dev server, or 1 day."})]}),B[29]=j):j=B[29],B[30]===Symbol.for("react.memo_cache_sentinel")?(k=(0,S.jsx)(n6,{}),P=(0,S.jsx)("span",{children:"Hide"}),B[30]=k,B[31]=P):(k=B[30],P=B[31]),B[32]!==q?(E=(0,S.jsxs)("div",{className:"preference-section",children:[j,(0,S.jsx)("div",{className:"preference-control",children:(0,S.jsxs)("button",{"aria-describedby":"hide-dev-tools",name:"hide-dev-tools","data-hide-dev-tools":!0,className:"action-button",onClick:q,children:[k,P]})})]}),B[32]=q,B[33]=E):E=B[33],B[34]===Symbol.for("react.memo_cache_sentinel")?(T=(0,S.jsxs)("div",{className:"preference-header",children:[(0,S.jsx)("label",{id:"hide-dev-tools",children:"Hide Dev Tools shortcut"}),(0,S.jsx)("p",{className:"preference-description",children:"Set a custom keyboard shortcut to toggle visibility."})]}),B[34]=T):T=B[34],B[35]!==W?(N=null!=(I=null==W?void 0:W.split("+"))?I:null,B[35]=W,B[36]=N):N=B[36],B[37]!==K||B[38]!==N?(L=(0,S.jsxs)("div",{className:"preference-section",children:[T,(0,S.jsx)("div",{className:"preference-control",children:(0,S.jsx)(ri,{value:N,onChange:K})})]}),B[37]=K,B[38]=N,B[39]=L):L=B[39],B[40]===Symbol.for("react.memo_cache_sentinel")?(A=(0,S.jsx)("label",{children:"Disable Dev Tools for this project"}),B[40]=A):A=B[40],B[41]===Symbol.for("react.memo_cache_sentinel")?(R=(0,S.jsx)("code",{className:"dev-tools-info-code",children:"devIndicators: false"}),B[41]=R):R=B[41],B[42]===Symbol.for("react.memo_cache_sentinel")?(D=(0,S.jsx)("div",{className:"preference-section",children:(0,S.jsxs)("div",{className:"preference-header",children:[A,(0,S.jsxs)("p",{className:"preference-description",children:["To disable this UI completely, set"," ",R," in your ",(0,S.jsx)("code",{className:"dev-tools-info-code",children:"next.config"})," file."]})]})}),B[42]=D):D=B[42],B[43]===Symbol.for("react.memo_cache_sentinel")?(M=(0,S.jsxs)("div",{className:"preference-header",children:[(0,S.jsx)("label",{id:"restart-dev-server",children:"Restart Dev Server"}),(0,S.jsx)("p",{className:"preference-description",children:"Restarts the development server without needing to leave the browser."})]}),B[43]=M):M=B[43],B[44]!==ee?(Z=function(){return ee({invalidateFileSystemCache:!1})},B[44]=ee,B[45]=Z):Z=B[45],B[46]===Symbol.for("react.memo_cache_sentinel")?(U=(0,S.jsx)("span",{children:"Restart"}),B[46]=U):U=B[46],B[47]!==et||B[48]!==Z?(F=(0,S.jsxs)("div",{className:"preference-section",children:[M,(0,S.jsx)("div",{className:"preference-control",children:(0,S.jsx)("button",{"aria-describedby":"restart-dev-server",title:"Restarts the development server without needing to leave the browser.",name:"restart-dev-server","data-restart-dev-server":!0,className:"action-button",onClick:Z,disabled:et,children:U})})]}),B[47]=et,B[48]=Z,B[49]=F):F=B[49],B[50]!==et||B[51]!==ee?(H=process.env.__NEXT_BUNDLER_HAS_PERSISTENT_CACHE?(0,S.jsxs)("div",{className:"preference-section",children:[(0,S.jsxs)("div",{className:"preference-header",children:[(0,S.jsx)("label",{id:"reset-bundler-cache",children:"Reset Bundler Cache"}),(0,S.jsx)("p",{className:"preference-description",children:"Clears the bundler cache and restarts the dev server. Helpful if you are seeing stale errors or changes are not appearing."})]}),(0,S.jsx)("div",{className:"preference-control",children:(0,S.jsx)("button",{"aria-describedby":"reset-bundler-cache",title:"Clears the bundler cache and restarts the dev server. Helpful if you are seeing stale errors or changes are not appearing.",name:"reset-bundler-cache","data-reset-bundler-cache":!0,className:"action-button",onClick:function(){return ee({invalidateFileSystemCache:!0})},disabled:et,children:(0,S.jsx)("span",{children:"Reset Cache"})})})]}):null,B[50]=et,B[51]=ee,B[52]=H):H=B[52],B[53]!==p||B[54]!==b||B[55]!==_||B[56]!==E||B[57]!==L||B[58]!==F||B[59]!==H?(V=(0,S.jsxs)("div",{className:"preferences-container",children:[p,b,_,E,L,D,F,H]}),B[53]=p,B[54]=b,B[55]=_,B[56]=E,B[57]=L,B[58]=F,B[59]=H,B[60]=V):V=B[60],V}function rP(e){var t,n=function(e){if(Array.isArray(e))return e}(t=e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||function(e,t){if(e){if("string"==typeof e)return rS(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return rS(e,2)}}(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),r=n[0],o=n[1];return(0,S.jsx)("option",{value:o,children:r},r)}function rE(e){var t,n,r,o,a,i,l,s,c=(0,O.c)(11);return(c[0]!==e?(a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["children","prefix"]),r=e.children,o=e.prefix,c[0]=e,c[1]=r,c[2]=o,c[3]=a):(r=c[1],o=c[2],a=c[3]),c[4]!==r||c[5]!==a)?(i=(0,S.jsx)("select",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},a),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),c[4]=r,c[5]=a,c[6]=i):i=c[6],c[7]===Symbol.for("react.memo_cache_sentinel")?(l=(0,S.jsx)(rI,{}),c[7]=l):l=c[7],c[8]!==o||c[9]!==i?(s=(0,S.jsxs)("div",{className:"select-button",children:[o,i,l]}),c[8]=o,c[9]=i,c[10]=s):s=c[10],s}function rT(e){var t,n,r,o=(0,O.c)(3);switch(e.theme){case"system":return o[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)(n7,{}),o[0]=t):t=o[0],t;case"dark":return o[1]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsx)(n8,{}),o[1]=n):n=o[1],n;case"light":return o[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)(n9,{}),o[2]=r):r=o[2],r;default:return null}}var rN=eg(rO());function rI(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{width:"16",height:"16",viewBox:"0 0 16 16","aria-hidden":!0,children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.0607 5.49999L13.5303 6.03032L8.7071 10.8535C8.31658 11.2441 7.68341 11.2441 7.29289 10.8535L2.46966 6.03032L1.93933 5.49999L2.99999 4.43933L3.53032 4.96966L7.99999 9.43933L12.4697 4.96966L13 4.43933L14.0607 5.49999Z",fill:"currentColor"})}),t[0]=e):e=t[0],e}function rL(){var e,t,n=(e=["\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n "],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return rL=function(){return n},n}function rA(){return(0,S.jsx)("style",{children:eg(rL(),"\n .nextjs-data-copy-button {\n color: inherit;\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n }\n .nextjs-data-copy-button:disabled {\n background-color: var(--color-gray-100);\n cursor: not-allowed;\n }\n .nextjs-data-copy-button--initial:hover:not(:disabled) {\n cursor: pointer;\n }\n .nextjs-data-copy-button--error:not(:disabled),\n .nextjs-data-copy-button--error:hover:not(:disabled) {\n color: var(--color-ansi-red);\n }\n .nextjs-data-copy-button--success:not(:disabled) {\n color: var(--color-ansi-green);\n }\n",'\n [data-nextjs-call-stack-frame-no-source] {\n padding: 6px 8px;\n margin-bottom: 4px;\n\n border-radius: var(--rounded-lg);\n }\n\n [data-nextjs-call-stack-frame-no-source]:last-child {\n margin-bottom: 0;\n }\n\n [data-nextjs-call-stack-frame-ignored="true"] {\n opacity: 0.6;\n }\n\n [data-nextjs-call-stack-frame] {\n user-select: text;\n display: block;\n box-sizing: border-box;\n\n user-select: text;\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n\n padding: 6px 8px;\n\n border-radius: var(--rounded-lg);\n }\n\n .call-stack-frame-method-name {\n display: flex;\n align-items: center;\n gap: 4px;\n\n margin-bottom: 4px;\n font-family: var(--font-stack-monospace);\n\n color: var(--color-gray-1000);\n font-size: var(--size-14);\n font-weight: 500;\n line-height: var(--size-20);\n\n svg {\n width: var(--size-16px);\n height: var(--size-16px);\n }\n }\n\n .open-in-editor-button, .source-mapping-error-button {\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--rounded-full);\n padding: 4px;\n color: var(--color-font);\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n\n &:focus-visible {\n outline: var(--focus-ring);\n outline-offset: -2px;\n }\n\n &:hover {\n background: var(--color-gray-100);\n }\n }\n\n .call-stack-frame-file-source {\n color: var(--color-gray-900);\n font-size: var(--size-14);\n line-height: var(--size-20);\n }\n',nL,"\n [data-nextjs-environment-name-label] {\n padding: 2px 6px;\n margin: 0;\n border-radius: var(--rounded-md-2);\n background: var(--color-gray-100);\n font-weight: 600;\n font-size: var(--size-12);\n color: var(--color-gray-900);\n font-family: var(--font-stack-monospace);\n line-height: var(--size-20);\n }\n",n_,e6,nx,tZ,"\n .error-overlay-bottom-stack-layer {\n width: 100%;\n height: var(--stack-layer-height);\n position: relative;\n border: 1px solid var(--color-gray-400);\n border-radius: var(--rounded-xl);\n background: var(--color-background-200);\n transition:\n translate 350ms var(--timing-swift),\n box-shadow 350ms var(--timing-swift);\n }\n\n .error-overlay-bottom-stack-layer-1 {\n width: calc(100% - var(--size-24));\n }\n\n .error-overlay-bottom-stack-layer-2 {\n width: calc(100% - var(--size-48));\n z-index: -1;\n }\n\n .error-overlay-bottom-stack {\n width: 100%;\n position: absolute;\n bottom: -1px;\n height: 0;\n overflow: visible;\n }\n\n .error-overlay-bottom-stack-stack {\n --stack-layer-height: 44px;\n --stack-layer-height-half: calc(var(--stack-layer-height) / 2);\n --stack-layer-trim: 13px;\n --shadow: 0px 0.925px 0.925px 0px rgba(0, 0, 0, 0.02),\n 0px 3.7px 7.4px -3.7px rgba(0, 0, 0, 0.04),\n 0px 14.8px 22.2px -7.4px rgba(0, 0, 0, 0.06);\n\n display: grid;\n place-items: center center;\n width: 100%;\n position: fixed;\n height: 0;\n overflow: visible;\n z-index: -1;\n max-width: var(--next-dialog-max-width);\n\n .error-overlay-bottom-stack-layer {\n grid-area: 1 / 1;\n /* Hide */\n translate: 0 calc(var(--stack-layer-height) * -1);\n }\n\n &[data-stack-count='1'],\n &[data-stack-count='2'] {\n .error-overlay-bottom-stack-layer-1 {\n translate: 0\n calc(var(--stack-layer-height-half) * -1 - var(--stack-layer-trim));\n }\n }\n\n &[data-stack-count='2'] {\n .error-overlay-bottom-stack-layer-2 {\n translate: 0 calc(var(--stack-layer-trim) * -1 * 2);\n }\n }\n\n /* Only the bottom stack should have the shadow */\n &[data-stack-count='1'] .error-overlay-bottom-stack-layer-1 {\n box-shadow: var(--shadow);\n }\n\n &[data-stack-count='2'] {\n .error-overlay-bottom-stack-layer-2 {\n box-shadow: var(--shadow);\n }\n }\n }\n","\n .error-overlay-pagination {\n -webkit-font-smoothing: antialiased;\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 8px;\n width: fit-content;\n }\n\n .error-overlay-pagination-count {\n color: var(--color-gray-900);\n text-align: center;\n font-size: var(--size-14);\n font-weight: 500;\n line-height: var(--size-16);\n font-variant-numeric: tabular-nums;\n }\n\n .error-overlay-pagination-button {\n display: flex;\n justify-content: center;\n align-items: center;\n\n width: var(--size-24);\n height: var(--size-24);\n background: var(--color-gray-300);\n flex-shrink: 0;\n\n border: none;\n border-radius: var(--rounded-full);\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n\n &:focus-visible {\n outline: var(--focus-ring);\n }\n\n &:not(:disabled):active {\n background: var(--color-gray-500);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n }\n\n .error-overlay-pagination-button-icon {\n color: var(--color-gray-1000);\n }\n",'\n [data-nextjs-codeframe] {\n --code-frame-padding: 12px;\n --code-frame-line-height: var(--size-16);\n background-color: var(--color-background-200);\n color: var(--color-gray-1000);\n text-overflow: ellipsis;\n border: 1px solid var(--color-gray-400);\n border-radius: 8px;\n font-family: var(--font-stack-monospace);\n font-size: var(--size-12);\n line-height: var(--code-frame-line-height);\n margin: 8px 0;\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n }\n\n .code-frame-link,\n .code-frame-pre {\n padding: var(--code-frame-padding);\n }\n\n .code-frame-link svg {\n flex-shrink: 0;\n }\n\n .code-frame-lines {\n min-width: max-content;\n }\n\n .code-frame-link [data-text] {\n text-align: left;\n margin: auto 6px;\n }\n\n .code-frame-header {\n width: 100%;\n transition: background 100ms ease-out;\n border-radius: 8px 8px 0 0;\n border-bottom: 1px solid var(--color-gray-400);\n }\n\n [data-with-open-in-editor-link-source-file] {\n padding: 4px;\n margin: -4px 0 -4px auto;\n border-radius: var(--rounded-full);\n margin-left: auto;\n\n &:focus-visible {\n outline: var(--focus-ring);\n outline-offset: -2px;\n }\n\n &:hover {\n background: var(--color-gray-100);\n }\n }\n\n [data-nextjs-codeframe]::selection,\n [data-nextjs-codeframe] *::selection {\n background-color: var(--color-ansi-selection);\n }\n\n [data-nextjs-codeframe] *:not(a) {\n color: inherit;\n background-color: transparent;\n font-family: var(--font-stack-monospace);\n }\n\n [data-nextjs-codeframe-line][data-nextjs-codeframe-line--errored="true"] {\n position: relative;\n isolation: isolate;\n\n > span { \n position: relative;\n z-index: 1;\n }\n\n &::after {\n content: "";\n width: calc(100% + var(--code-frame-padding) * 2);\n height: var(--code-frame-line-height);\n left: calc(-1 * var(--code-frame-padding));\n background: var(--color-red-200);\n box-shadow: 2px 0 0 0 var(--color-red-900) inset;\n position: absolute;\n }\n }\n\n\n [data-nextjs-codeframe] > * {\n margin: 0;\n }\n\n .code-frame-link {\n display: flex;\n margin: 0;\n outline: 0;\n }\n .code-frame-link [data-icon=\'right\'] {\n margin-left: auto;\n }\n\n [data-nextjs-codeframe] div > pre {\n overflow: hidden;\n display: inline-block;\n }\n\n [data-nextjs-codeframe] svg {\n color: var(--color-gray-900);\n }\n',"\n [data-nextjs-terminal]::selection,\n [data-nextjs-terminal] *::selection {\n background-color: var(--color-ansi-selection);\n }\n\n [data-nextjs-terminal] * {\n color: inherit;\n background-color: transparent;\n font-family: var(--font-stack-monospace);\n }\n\n [data-nextjs-terminal] > div > p {\n display: flex;\n align-items: center;\n justify-content: space-between;\n cursor: pointer;\n margin: 0;\n }\n [data-nextjs-terminal] > div > p:hover {\n text-decoration: underline dotted;\n }\n [data-nextjs-terminal] div > pre {\n overflow: hidden;\n display: inline-block;\n }\n","\n [data-with-open-in-editor-link] svg {\n width: auto;\n height: var(--size-14);\n margin-left: 8px;\n }\n [data-with-open-in-editor-link] {\n cursor: pointer;\n }\n [data-with-open-in-editor-link]:hover {\n text-decoration: underline dotted;\n }\n [data-with-open-in-editor-link-import-trace] {\n margin-left: 16px;\n }\n","","\n .nextjs-error-with-static {\n bottom: calc(16px * 4.5);\n }\n p.nextjs__container_errors__link {\n font-size: var(--size-14);\n }\n p.nextjs__container_errors__notes {\n color: var(--color-stack-notes);\n font-size: var(--size-14);\n line-height: 1.5;\n }\n .nextjs-container-errors-body > h2:not(:first-child) {\n margin-top: calc(16px + 8px);\n }\n .nextjs-container-errors-body > h2 {\n color: var(--color-title-color);\n margin-bottom: 8px;\n font-size: var(--size-20);\n }\n .nextjs-toast-errors-parent {\n cursor: pointer;\n transition: transform 0.2s ease;\n }\n .nextjs-toast-errors-parent:hover {\n transform: scale(1.1);\n }\n .nextjs-toast-errors {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n }\n .nextjs-toast-errors > svg {\n margin-right: 8px;\n }\n .nextjs-toast-hide-button {\n margin-left: 24px;\n border: none;\n background: none;\n color: var(--color-ansi-bright-white);\n padding: 0;\n transition: opacity 0.25s ease;\n opacity: 0.7;\n }\n .nextjs-toast-hide-button:hover {\n opacity: 1;\n }\n .nextjs__container_errors__error_title {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-bottom: 14px;\n }\n .error-overlay-notes-container {\n margin: 8px 2px;\n }\n .error-overlay-notes-container p {\n white-space: pre-wrap;\n }\n .nextjs__blocking_page_load_error_description {\n color: var(--color-stack-notes);\n }\n .nextjs__blocking_page_load_error_description_title {\n color: var(--color-title-color);\n }\n .nextjs__blocking_page_load_error_fix_option {\n background-color: var(--color-background-200);\n padding: 14px;\n border-radius: var(--rounded-md-2);\n border: 1px solid var(--color-gray-alpha-400);\n }\n .external-link, .external-link:hover {\n color:inherit;\n }\n",nX,"\n .nextjs-container-build-error-version-status {\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 4px;\n\n height: var(--size-26);\n padding: 6px 8px 6px 6px;\n background: var(--color-background-100);\n background-clip: padding-box;\n border: 1px solid var(--color-gray-alpha-400);\n box-shadow: var(--shadow-small);\n border-radius: var(--rounded-full);\n\n color: var(--color-gray-900);\n font-size: var(--size-12);\n font-weight: 500;\n line-height: var(--size-16);\n }\n\n a.nextjs-container-build-error-version-status {\n text-decoration: none;\n color: var(--color-gray-900);\n\n &:hover {\n background: var(--color-gray-100);\n }\n\n &:focus {\n outline: var(--focus-ring);\n }\n }\n\n .version-staleness-indicator.fresh {\n fill: var(--color-green-800);\n stroke: var(--color-green-300);\n }\n .version-staleness-indicator.stale {\n fill: var(--color-amber-800);\n stroke: var(--color-amber-300);\n }\n .version-staleness-indicator.outdated {\n fill: var(--color-red-800);\n stroke: var(--color-red-300);\n }\n .version-staleness-indicator.unknown {\n fill: var(--color-gray-800);\n stroke: var(--color-gray-300);\n }\n\n .nextjs-container-build-error-version-status > .turbopack-text {\n background: linear-gradient(\n to right,\n var(--color-turbopack-text-red) 0%,\n var(--color-turbopack-text-blue) 100%\n );\n background-clip: text;\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n }\n",rN,'\n .nextjs-scroll-fader {\n --blur: 1px;\n --stop: 25%;\n --height: 150px;\n --color-bg: var(--color-background-100);\n position: absolute;\n pointer-events: none;\n user-select: none;\n width: 100%;\n height: var(--height);\n left: 0;\n backdrop-filter: blur(var(--blur));\n\n &[data-side="top"] {\n top: 0;\n background: linear-gradient(to top, transparent, var(--color-bg));\n mask-image: linear-gradient(to bottom, var(--color-bg) var(--stop), transparent);\n }\n }\n',rh)})}function rz(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function rR(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return rz(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return rz(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function rD(e,t){var n,r,o,a,i=(0,O.c)(10),l=void 0!==e&&e;i[0]!==t?(n=void 0===t?{}:t,i[0]=t,i[1]=n):n=i[1];var s=n,c=rR((0,C.useState)(l),2),u=c[0],d=c[1],f=rR((0,C.useState)(!1),2),p=f[0],h=f[1],m=s.enterDelay,g=s.exitDelay,y=void 0===m?1:m,v=void 0===g?0:g;return i[2]!==l||i[3]!==y||i[4]!==v?(r=function(){var e,t;return l?(d(!0),y<=0?h(!0):e=setTimeout(function(){h(!0)},y)):(h(!1),v<=0?d(!1):t=setTimeout(function(){d(!1)},v)),function(){clearTimeout(e),clearTimeout(t)}},o=[l,y,v],i[2]=l,i[3]=y,i[4]=v,i[5]=r,i[6]=o):(r=i[5],o=i[6]),(0,C.useEffect)(r,o),i[7]!==u||i[8]!==p?(a={mounted:u,rendered:p},i[7]=u,i[8]=p,i[9]=a):a=i[9],a}function rM(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function rZ(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function rU(e){var t,n,r,o,a,i,l,s=(0,O.c)(18),c=e.state,u=e.dispatch,d=e.getSquashedHydrationErrorDetails,f=e.runtimeErrors,p=e.errorCount,h=!!process.env.TURBOPACK;s[0]===Symbol.for("react.memo_cache_sentinel")?(t={exitDelay:200},s[0]=t):t=s[0];var m=rD(c.isErrorOverlayOpen,t),g=m.mounted,y=m.rendered;s[1]!==p||s[2]!==y||s[3]!==c.versionInfo?(n={rendered:y,transitionDurationMs:200,isTurbopack:h,versionInfo:c.versionInfo,errorCount:p},s[1]=p,s[2]=y,s[3]=c.versionInfo,s[4]=n):n=s[4];var v=n;return null!==c.buildError?(s[5]!==v||s[6]!==c.buildError?(r=(0,S.jsx)(nC,rZ(rM({},v),{message:c.buildError,rendered:!0})),s[5]=v,s[6]=c.buildError,s[7]=r):r=s[7],r):f.length?g?(s[10]!==u?(i=function(){u({type:Y})},s[10]=u,s[11]=i):i=s[11],s[12]!==v||s[13]!==d||s[14]!==f||s[15]!==c.debugInfo||s[16]!==i?(l=(0,S.jsx)(n5,rZ(rM({},v),{debugInfo:c.debugInfo,getSquashedHydrationErrorDetails:d,runtimeErrors:f,onClose:i})),s[12]=v,s[13]=d,s[14]=f,s[15]=c.debugInfo,s[16]=i,s[17]=l):l=s[17],l):(s[9]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsx)(C.Suspense,{}),s[9]=a):a=s[9],a):(s[8]===Symbol.for("react.memo_cache_sentinel")?(o=(0,S.jsx)(C.Suspense,{}),s[8]=o):o=s[8],o)}function rF(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function rH(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rV(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){rH(e,t,n[t])})}return e}function rB(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return rF(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return rF(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var r$=function(e){var t,n,r=(0,O.c)(4);return e.state.buildError?(r[0]!==e?(t=(0,S.jsx)(rW,rV({},e)),r[0]=e,r[1]=t):t=r[1],t):(r[2]!==e?(n=(0,S.jsx)(rq,rV({},e)),r[2]=e,r[3]=n):n=r[3],n)},rq=function(e){var t=e.children,n=e.state,r=e.isAppDir,o=n.errors,a=rB((0,C.useState)({}),2),i=a[0],l=a[1],s=rB((0,C.useMemo)(function(){for(var e=[],t=null,n=0;n<o.length;++n){var r=o[n],a=r.id;if(a in i){e.push(i[a]);continue}t=r;break}return[e,t]},[o,i]),2),c=s[0],u=s[1];return(0,C.useEffect)(function(){if(null!=u){var e,t,n=!0;return(e=u,t=r,nV(function(){var n,r,o;return nq(this,function(a){switch(a.label){case 0:var i,l;return n={id:e.id,runtime:!0,error:e.error,type:e.type},[2,n$(nB({},n),{frames:(l=(i=function(){return nV(function(){return nq(this,function(n){switch(n.label){case 0:return[4,eR(e.frames,nF(e.error),t)];case 1:return[2,n.sent()]}})})()})(),function(){return l})})];case 1:return r=[nB({},n)],o={},[4,eR(e.frames,nF(e.error),t)];case 2:return[2,n$.apply(void 0,r.concat([(o.frames=a.sent(),o)]))];case 3:return[2]}})})()).then(function(e){n&&l(function(t){var n,r;return n=rV({},t),r=null!=(r=rH({},e.id,e))?r:{},Object.getOwnPropertyDescriptors?Object.defineProperties(n,Object.getOwnPropertyDescriptors(r)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(r)).forEach(function(e){Object.defineProperty(n,e,Object.getOwnPropertyDescriptor(r,e))}),n})}),function(){n=!1}}},[u,r]),t({runtimeErrors:c,totalErrorCount:o.length})},rW=function(e){return(0,e.children)({runtimeErrors:[],totalErrorCount:1})};function rK(){var e,t,n=(0,O.c)(4),r=dw(),o=r.shadowRoot,a=r.state;return n[0]!==o||n[1]!==a.scale?(e=function(){(null==o?void 0:o.host)&&o.host.style.setProperty("--nextjs-dev-tools-scale",String(a.scale||1))},t=[o,a.scale],n[0]=o,n[1]=a.scale,n[2]=e,n[3]=t):(e=n[2],t=n[3]),(0,C.useLayoutEffect)(e,t),null}var rY=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.css"),rX={};function rG(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function rQ(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function rJ(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return rQ(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return rQ(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function r0(e){var t,n,r,o,a=(0,O.c)(3);return(a[0]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.08889 11.8384L2.62486 12.3024L1.69678 11.3744L2.16082 10.9103L6.07178 6.99937L2.16082 3.08841L1.69678 2.62437L2.62486 1.69629L3.08889 2.16033L6.99986 6.07129L10.9108 2.16033L11.3749 1.69629L12.3029 2.62437L11.8389 3.08841L7.92793 6.99937L11.8389 10.9103L12.3029 11.3744L11.3749 12.3024L10.9108 11.8384L6.99986 7.92744L3.08889 11.8384Z",fill:"currentColor"}),a[0]=r):r=a[0],a[1]!==e)?(o=(0,S.jsx)("svg",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({width:"12",height:"12",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),a[1]=e,a[2]=o):o=a[2],o}function r1(e){var t,n,r,o,a=(0,O.c)(3);return(a[0]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.98071 1.125L1.125 3.98071L1.125 8.01929L3.98071 10.875H8.01929L10.875 8.01929V3.98071L8.01929 1.125H3.98071ZM3.82538 0C3.62647 0 3.4357 0.0790176 3.29505 0.21967L0.21967 3.29505C0.0790176 3.4357 0 3.62647 0 3.82538V8.17462C0 8.37353 0.0790178 8.5643 0.21967 8.70495L3.29505 11.7803C3.4357 11.921 3.62647 12 3.82538 12H8.17462C8.37353 12 8.5643 11.921 8.70495 11.7803L11.7803 8.70495C11.921 8.5643 12 8.37353 12 8.17462V3.82538C12 3.62647 11.921 3.4357 11.7803 3.29505L8.70495 0.21967C8.5643 0.0790177 8.37353 0 8.17462 0H3.82538ZM6.5625 2.8125V3.375V6V6.5625H5.4375V6V3.375V2.8125H6.5625ZM6 9C6.41421 9 6.75 8.66421 6.75 8.25C6.75 7.83579 6.41421 7.5 6 7.5C5.58579 7.5 5.25 7.83579 5.25 8.25C5.25 8.66421 5.58579 9 6 9Z",fill:"currentColor"}),a[0]=r):r=a[0],a[1]!==e)?(o=(0,S.jsx)("svg",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),n=n={children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),a[1]=e,a[2]=o):o=a[2],o}rX.styleTagTransform=x(),rX.setAttributes=g(),rX.insert=h(),rX.domAPI=f(),rX.insertStyleElement=v(),u()(rY.A,rX),rY.A&&rY.A.locals&&rY.A.locals;var r2=(0,C.createContext)(null),r3=function(){return(0,C.useContext)(r2)};function r4(e){return oS+36/e.scale+9}function r5(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r6(){var e,t,n=(e=["\n [data-indicator-status] {\n --padding-left: 8px;\n display: flex;\n gap: 6px;\n align-items: center;\n padding-left: 12px;\n padding-right: 8px;\n height: var(--size-32);\n margin-right: 2px;\n border-radius: var(--rounded-full);\n transition: background var(--duration-short) ease;\n color: white;\n font-size: var(--size-13);\n font-weight: 500;\n white-space: nowrap;\n border: none;\n background: transparent;\n cursor: pointer;\n outline: none;\n }\n\n [data-indicator-status]:focus-visible {\n outline: 2px solid var(--color-blue-800, #3b82f6);\n outline-offset: 3px;\n }\n\n [data-status-dot] {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n }\n\n [data-status-text-animation] {\n display: inline-flex;\n align-items: center;\n position: relative;\n overflow: hidden;\n height: 100%;\n\n > * {\n white-space: nowrap;\n line-height: 1;\n }\n\n [data-status-text-enter] {\n animation: slotMachineEnter 150ms cubic-bezier(0, 0, 0.2, 1)\n forwards;\n }\n }\n\n [data-status-ellipsis] {\n display: inline-flex;\n margin-left: 2px;\n }\n\n [data-status-ellipsis] span {\n animation: ellipsisFade 1.2s infinite;\n margin: 0 1px;\n }\n\n [data-status-ellipsis] span:nth-child(2) {\n animation-delay: 0.2s;\n }\n\n [data-status-ellipsis] span:nth-child(3) {\n animation-delay: 0.4s;\n }\n\n @keyframes ellipsisFade {\n 0%,\n 60%,\n 100% {\n opacity: 0.2;\n }\n 30% {\n opacity: 1;\n }\n }\n\n @keyframes slotMachineEnter {\n 0% {\n transform: translateY(0.8em);\n opacity: 0;\n }\n 50% {\n opacity: 0.8;\n }\n 100% {\n transform: translateY(0);\n opacity: 1;\n }\n }\n "],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return r6=function(){return n},n}var r9=((e={}).None="none",e.Rendering="rendering",e.Compiling="compiling",e.Prerendering="prerendering",e.CacheBypassing="cache-bypassing",e);function r8(e){var t,n,r,o,a,i,l,s,c=(0,O.c)(13),u=e.status,d=e.onClick;c[0]===Symbol.for("react.memo_cache_sentinel")?(r5(n={},"none",""),r5(n,"cache-bypassing","Cache disabled"),r5(n,"prerendering","Prerendering"),r5(n,"compiling","Compiling"),r5(n,"rendering","Rendering"),t=n,c[0]=t):t=c[0];var f=t;c[1]===Symbol.for("react.memo_cache_sentinel")?(r5(o={},"none",""),r5(o,"cache-bypassing",""),r5(o,"prerendering","#f5a623"),r5(o,"compiling","#f5a623"),r5(o,"rendering","#50e3c2"),r=o,c[1]=r):r=c[1];var p=r;if("none"===u)return null;c[2]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsx)("style",{children:eg(r6())}),c[2]=a):a=c[2],c[3]!==u?(i=p[u]&&(0,S.jsx)("div",{"data-status-dot":!0,style:{backgroundColor:p[u]}}),c[3]=u,c[4]=i):i=c[4];var h="cache-bypassing"!==u,m=f[u];return c[5]!==u||c[6]!==h||c[7]!==m?(l=(0,S.jsx)(r7,{statusKey:u,showEllipsis:h,children:m},u),c[5]=u,c[6]=h,c[7]=m,c[8]=l):l=c[8],c[9]!==d||c[10]!==i||c[11]!==l?(s=(0,S.jsxs)(S.Fragment,{children:[a,(0,S.jsxs)("button",{"data-indicator-status":!0,"data-nextjs-dev-tools-button":!0,onClick:d,"aria-label":"Open Next.js Dev Tools",children:[i,l]})]}),c[9]=d,c[10]=i,c[11]=l,c[12]=s):s=c[12],s}function r7(e){var t,n,r=(0,O.c)(5),o=e.children,a=e.showEllipsis,i=void 0===a||a;return r[0]!==i?(t=i&&(0,S.jsxs)("span",{"data-status-ellipsis":!0,children:[(0,S.jsx)("span",{children:"."}),(0,S.jsx)("span",{children:"."}),(0,S.jsx)("span",{children:"."})]}),r[0]=i,r[1]=t):t=r[1],r[2]!==t||r[3]!==o?(n=(0,S.jsx)("div",{"data-status-text-animation":!0,children:(0,S.jsxs)("div",{"data-status-text-enter":!0,children:[o,t]})}),r[2]=t,r[3]=o,r[4]=n):n=r[4],n}function oe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function ot(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function on(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function or(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function oo(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return oe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oe(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function oa(){var e,t,n=(e=["\n [data-next-badge-root] {\n --timing: cubic-bezier(0.23, 0.88, 0.26, 0.92);\n --duration-long: 250ms;\n --color-outer-border: #171717;\n --color-inner-border: hsla(0, 0%, 100%, 0.14);\n --color-hover-alpha-subtle: hsla(0, 0%, 100%, 0.13);\n --color-hover-alpha-error: hsla(0, 0%, 100%, 0.2);\n --color-hover-alpha-error-2: hsla(0, 0%, 100%, 0.25);\n --mark-size: calc(var(--size) - var(--size-2) * 2);\n\n --focus-color: var(--color-blue-800);\n --focus-ring: 2px solid var(--focus-color);\n\n &:has([data-next-badge][data-error='true']) {\n --focus-color: #fff;\n }\n }\n\n [data-disabled-icon] {\n display: flex;\n align-items: center;\n justify-content: center;\n padding-right: 4px;\n }\n\n [data-next-badge] {\n width: var(--size);\n height: var(--size);\n display: flex;\n align-items: center;\n position: relative;\n background: rgba(0, 0, 0, 0.8);\n box-shadow:\n 0 0 0 1px var(--color-outer-border),\n inset 0 0 0 1px var(--color-inner-border),\n 0px 16px 32px -8px rgba(0, 0, 0, 0.24);\n backdrop-filter: blur(48px);\n border-radius: var(--rounded-full);\n user-select: none;\n cursor: pointer;\n scale: 1;\n overflow: hidden;\n will-change: scale, box-shadow, width, background;\n transition:\n scale var(--duration-short) var(--timing),\n width var(--duration-long) var(--timing),\n box-shadow var(--duration-long) var(--timing),\n background var(--duration-short) ease;\n\n &:active[data-error='false'] {\n scale: 0.95;\n }\n\n &[data-animate='true']:not(:hover) {\n scale: 1.02;\n }\n\n &[data-error='false']:has([data-next-mark]:focus-visible) {\n outline: var(--focus-ring);\n outline-offset: 3px;\n }\n\n &[data-error='true'] {\n background: #ca2a30;\n --color-inner-border: #e5484d;\n\n [data-next-mark] {\n background: var(--color-hover-alpha-error);\n outline-offset: 0px;\n\n &:focus-visible {\n outline: var(--focus-ring);\n outline-offset: -1px;\n }\n\n &:hover {\n background: var(--color-hover-alpha-error-2);\n }\n }\n }\n\n &[data-cache-bypassing='true']:not([data-error='true']) {\n background: rgba(217, 119, 6, 0.95);\n --color-inner-border: rgba(245, 158, 11, 0.9);\n\n [data-issues-open] {\n color: white;\n }\n }\n\n &[data-error-expanded='false'][data-error='true'] ~ [data-dot] {\n scale: 1;\n }\n\n > div {\n display: flex;\n }\n }\n\n [data-issues-collapse]:focus-visible {\n outline: var(--focus-ring);\n }\n\n [data-issues]:has([data-issues-open]:focus-visible) {\n outline: var(--focus-ring);\n outline-offset: -1px;\n }\n\n [data-dot] {\n content: '';\n width: var(--size-8);\n height: var(--size-8);\n background: #fff;\n box-shadow: 0 0 0 1px var(--color-outer-border);\n border-radius: 50%;\n position: absolute;\n top: 2px;\n right: 0px;\n scale: 0;\n pointer-events: none;\n transition: scale 200ms var(--timing);\n transition-delay: var(--duration-short);\n }\n\n [data-issues] {\n --padding-left: 8px;\n display: flex;\n gap: 2px;\n align-items: center;\n padding-left: 8px;\n padding-right: 8px;\n height: var(--size-32);\n margin-right: 2px;\n border-radius: var(--rounded-full);\n transition: background var(--duration-short) ease;\n\n &:has([data-issues-open]:hover) {\n background: var(--color-hover-alpha-error);\n }\n\n &:has([data-issues-collapse]) {\n padding-right: calc(var(--padding-left) / 2);\n }\n\n [data-cross] {\n translate: 0px -1px;\n }\n }\n\n [data-issues-open] {\n font-size: var(--size-13);\n color: white;\n width: fit-content;\n height: 100%;\n display: flex;\n gap: 2px;\n align-items: center;\n margin: 0;\n line-height: var(--size-36);\n font-weight: 500;\n z-index: 2;\n white-space: nowrap;\n\n &:focus-visible {\n outline: 0;\n }\n }\n\n [data-issues-collapse] {\n width: var(--size-24);\n height: var(--size-24);\n border-radius: var(--rounded-full);\n transition: background var(--duration-short) ease;\n\n &:hover {\n background: var(--color-hover-alpha-error);\n }\n }\n\n [data-cross] {\n color: #fff;\n width: var(--size-12);\n height: var(--size-12);\n }\n\n [data-next-mark] {\n width: var(--mark-size);\n height: var(--mark-size);\n margin: 0 2px;\n display: flex;\n align-items: center;\n border-radius: var(--rounded-full);\n transition: background var(--duration-long) var(--timing);\n\n &:focus-visible {\n outline: 0;\n }\n\n &:hover {\n background: var(--color-hover-alpha-subtle);\n }\n\n svg {\n flex-shrink: 0;\n width: var(--size-40);\n height: var(--size-40);\n }\n }\n\n [data-issues-count-animation] {\n display: grid;\n place-items: center center;\n font-variant-numeric: tabular-nums;\n\n &[data-animate='false'] {\n [data-issues-count-exit],\n [data-issues-count-enter] {\n animation-duration: 0ms;\n }\n }\n\n > * {\n grid-area: 1 / 1;\n }\n\n [data-issues-count-exit] {\n animation: fadeOut 300ms var(--timing) forwards;\n }\n\n [data-issues-count-enter] {\n animation: fadeIn 300ms var(--timing) forwards;\n }\n }\n\n [data-issues-count-plural] {\n display: inline-block;\n &[data-animate='true'] {\n animation: fadeIn 300ms var(--timing) forwards;\n }\n }\n\n .paused {\n stroke-dashoffset: 0;\n }\n\n @keyframes fadeIn {\n 0% {\n opacity: 0;\n filter: blur(2px);\n transform: translateY(8px);\n }\n 100% {\n opacity: 1;\n filter: blur(0px);\n transform: translateY(0);\n }\n }\n\n @keyframes fadeOut {\n 0% {\n opacity: 1;\n filter: blur(0px);\n transform: translateY(0);\n }\n 100% {\n opacity: 0;\n transform: translateY(-12px);\n filter: blur(2px);\n }\n }\n\n @media (prefers-reduced-motion) {\n [data-issues-count-exit],\n [data-issues-count-enter],\n [data-issues-count-plural] {\n animation-duration: 0ms !important;\n }\n }\n "],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return oa=function(){return n},n}function oi(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y,v,b,x,w,_,j,k,P,E,T,N,I,L,A,z,R,D=(0,O.c)(54);D[0]!==e?(w=or(e,["onTriggerClick"]),_=e.onTriggerClick,D[0]=e,D[1]=w,D[2]=_):(w=D[1],_=D[2]);var M=dw(),Z=M.state,U=M.dispatch,F=da().totalErrorCount,H=36/Z.scale,V=r3(),B=V.panel,$=V.triggerRef,q=V.setPanel,W="panel-selector"===B,X=F>0,G=oo((0,C.useState)(X),2),Q=G[0],J=G[1],ee=oo((0,C.useState)(X),2),et=ee[0],en=ee[1];et!==X&&(en(X),J(X));var er=oo((0,C.useState)(!1),2),eo=er[0],ea=er[1],ei=(t=F,o=(0,O.c)(4),a=150,i=(0,C.useRef)(null),c=(l=(0,C.useState)(!1),s=function(e){if(Array.isArray(e))return e}(l)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(l,2)||function(e,t){if(e){if("string"==typeof e)return rG(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return rG(e,2)}}(l,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0],u=s[1],o[0]!==a||o[1]!==t?(n=function(){if(t>0){var e=i.current?Date.now()-i.current:-1;if(i.current=Date.now(),!(e<=a)){u(!0);var n=window.setTimeout(function(){u(!1)},a);return function(){clearTimeout(n)}}}},r=[t,a],o[0]=a,o[1]=t,o[2]=n,o[3]=r):(n=o[2],r=o[3]),(0,C.useEffect)(n,r),c),el="filling"===Z.cacheIndicator,es="bypass"===Z.cacheIndicator,ec=Z.buildingIndicator||Z.renderingIndicator||el;D[3]===Symbol.for("react.memo_cache_sentinel")?(j={enterDelay:400,exitDelay:500},D[3]=j):j=D[3];var eu=rD(ec,j).rendered,ed=(0,C.useRef)(null),ef=(d=ed,h=(0,O.c)(3),g=(m=rJ((0,C.useState)(0),2))[0],y=m[1],h[0]!==d?(f=function(){var e=d.current;if(e){var t=new ResizeObserver(function(e){y(rJ(e,1)[0].contentRect.width)});return t.observe(e),function(){return t.disconnect()}}},p=[d],h[0]=d,h[1]=f,h[2]=p):(f=h[1],p=h[2]),(0,C.useEffect)(f,p),g);D[4]!==Z.buildingIndicator||D[5]!==Z.cacheIndicator||D[6]!==Z.renderingIndicator?(v=Z.buildingIndicator,b=Z.renderingIndicator,x=Z.cacheIndicator,k=v?"compiling":"filling"===x?"prerendering":b?"rendering":"none",D[4]=Z.buildingIndicator,D[5]=Z.cacheIndicator,D[6]=Z.renderingIndicator,D[7]=k):k=D[7];var ep=k,eh=eu?ep:r9.None,em=Q||es||eu||Z.disableDevIndicator,ey=0===ef?"auto":ef,ev="".concat(H,"px"),eb=Z.disableDevIndicator&&(!X||eo)?"none":"block";D[8]!==ev||D[9]!==eb?(P={"--size":ev,"--duration-short":"".concat(150,"ms"),display:eb},D[8]=ev,D[9]=eb,D[10]=P):P=D[10];var ex=P;D[11]===Symbol.for("react.memo_cache_sentinel")?(E=(0,S.jsx)("style",{children:eg(oa())}),D[11]=E):E=D[11];var ew=X||es?r9.None:ep;return D[12]!==ey?(T={width:ey},D[12]=ey,D[13]=T):T=D[13],D[14]!==w||D[15]!==X||D[16]!==es||D[17]!==W||D[18]!==_||D[19]!==eu||D[20]!==Z.disableDevIndicator||D[21]!==$?(N=!Z.disableDevIndicator&&(0,S.jsx)("button",on(ot({id:"next-logo",ref:$,"data-next-mark":!0,onClick:_,disabled:Z.disableDevIndicator,"aria-haspopup":"menu","aria-expanded":W,"aria-controls":"nextjs-dev-tools-menu","aria-label":"".concat(W?"Close":"Open"," Next.js Dev Tools"),"data-nextjs-dev-tools-button":!0,style:{display:!eu||X||es?"flex":"none"}},w),{children:(0,S.jsx)(oc,{})})),D[14]=w,D[15]=X,D[16]=es,D[17]=W,D[18]=_,D[19]=eu,D[20]=Z.disableDevIndicator,D[21]=$,D[22]=N):N=D[22],D[23]!==U||D[24]!==eh||D[25]!==X||D[26]!==es||D[27]!==Q||D[28]!==em||D[29]!==ei||D[30]!==_||D[31]!==q||D[32]!==eu||D[33]!==Z.buildError||D[34]!==Z.disableDevIndicator||D[35]!==Z.isErrorOverlayOpen||D[36]!==F||D[37]!==$?(I=em&&(0,S.jsxs)(S.Fragment,{children:[(Q||Z.disableDevIndicator)&&(0,S.jsxs)("div",{"data-issues":!0,children:[(0,S.jsxs)("button",{"data-issues-open":!0,"aria-label":"Open issues overlay",onClick:function(){Z.isErrorOverlayOpen?U({type:Y}):(U({type:K}),q(null))},children:[Z.disableDevIndicator&&(0,S.jsx)("div",{"data-disabled-icon":!0,children:(0,S.jsx)(r1,{})}),(0,S.jsx)(ol,{animate:ei,"data-issues-count-animation":!0,children:F},F)," ",(0,S.jsxs)("div",{children:["Issue",F>1&&(0,S.jsx)("span",{"aria-hidden":!0,"data-issues-count-plural":!0,"data-animate":ei&&2===F,children:"s"})]})]}),!Z.buildError&&(0,S.jsx)("button",{"data-issues-collapse":!0,"aria-label":"Collapse issues badge",onClick:function(){var e;Z.disableDevIndicator?ea(!0):J(!1),null==(e=$.current)||e.focus()},children:(0,S.jsx)(r0,{"data-cross":!0})})]}),es&&!X&&!Z.disableDevIndicator&&(0,S.jsx)(os,{onTriggerClick:_,triggerRef:$}),eu&&!X&&!es&&!Z.disableDevIndicator&&(0,S.jsx)(r8,{status:eh,onClick:_})]}),D[23]=U,D[24]=eh,D[25]=X,D[26]=es,D[27]=Q,D[28]=em,D[29]=ei,D[30]=_,D[31]=q,D[32]=eu,D[33]=Z.buildError,D[34]=Z.disableDevIndicator,D[35]=Z.isErrorOverlayOpen,D[36]=F,D[37]=$,D[38]=I):I=D[38],D[39]!==N||D[40]!==I?(L=(0,S.jsxs)("div",{ref:ed,children:[N,I]}),D[39]=N,D[40]=I,D[41]=L):L=D[41],D[42]!==X||D[43]!==es||D[44]!==em||D[45]!==ei||D[46]!==L||D[47]!==ew||D[48]!==T?(A=(0,S.jsx)("div",{"data-next-badge":!0,"data-error":X,"data-error-expanded":em,"data-status":ew,"data-cache-bypassing":es,"data-animate":ei,style:T,children:L}),D[42]=X,D[43]=es,D[44]=em,D[45]=ei,D[46]=L,D[47]=ew,D[48]=T,D[49]=A):A=D[49],D[50]===Symbol.for("react.memo_cache_sentinel")?(z=(0,S.jsx)("div",{"aria-hidden":!0,"data-dot":!0}),D[50]=z):z=D[50],D[51]!==A||D[52]!==ex?(R=(0,S.jsxs)("div",{"data-next-badge-root":!0,style:ex,children:[E,A,z]}),D[51]=A,D[52]=ex,D[53]=R):R=D[53],R}function ol(e){var t,n,r,o,a,i,l=(0,O.c)(13);l[0]!==e?(n=or(e,["children","animate"]),t=e.children,r=e.animate,l[0]=e,l[1]=t,l[2]=n,l[3]=r):(t=l[1],n=l[2],r=l[3]);var s=void 0===r||r,c=t-1;return l[4]!==c?(o=(0,S.jsx)("div",{"aria-hidden":!0,"data-issues-count-exit":!0,children:c}),l[4]=c,l[5]=o):o=l[5],l[6]!==t?(a=(0,S.jsx)("div",{"data-issues-count":!0,"data-issues-count-enter":!0,children:t}),l[6]=t,l[7]=a):a=l[7],l[8]!==s||l[9]!==n||l[10]!==o||l[11]!==a?(i=(0,S.jsxs)("div",on(ot({},n),{"data-animate":s,children:[o,a]})),l[8]=s,l[9]=n,l[10]=o,l[11]=a,l[12]=i):i=l[12],i}function os(e){var t,n,r,o,a,i=(0,O.c)(10),l=e.onTriggerClick,s=e.triggerRef,c=oo((0,C.useState)(!1),2),u=c[0],d=c[1];return u?null:(i[0]!==l?(t=(0,S.jsx)("button",{"data-issues-open":!0,"data-nextjs-dev-tools-button":!0,"aria-label":"Open Next.js Dev Tools",onClick:l,children:"Cache disabled"}),i[0]=l,i[1]=t):t=i[1],i[2]!==s?(n=function(){var e;d(!0),null==(e=s.current)||e.focus()},i[2]=s,i[3]=n):n=i[3],i[4]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)(r0,{"data-cross":!0}),i[4]=r):r=i[4],i[5]!==n?(o=(0,S.jsx)("button",{"data-issues-collapse":!0,"aria-label":"Collapse cache bypass badge",onClick:n,children:r}),i[5]=n,i[6]=o):o=i[6],i[7]!==t||i[8]!==o?(a=(0,S.jsxs)("div",{"data-issues":!0,"data-cache-bypass-badge":!0,children:[t,o]}),i[7]=t,i[8]=o,i[9]=a):a=i[9],a)}function oc(){var e,t,n,r,o=(0,O.c)(4);return o[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsxs)("g",{transform:"translate(8.5, 13)",children:[(0,S.jsx)("path",{className:"paused",d:"M13.3 15.2 L2.34 1 V12.6",fill:"none",stroke:"url(#next_logo_paint0_linear_1357_10853)",strokeWidth:"1.86",mask:"url(#next_logo_mask0)",strokeDasharray:"29.6",strokeDashoffset:"29.6"}),(0,S.jsx)("path",{className:"paused",d:"M11.825 1.5 V13.1",strokeWidth:"1.86",stroke:"url(#next_logo_paint1_linear_1357_10853)",strokeDasharray:"11.6",strokeDashoffset:"11.6"})]}),o[0]=e):e=o[0],o[1]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsxs)("linearGradient",{id:"next_logo_paint0_linear_1357_10853",x1:"9.95555",y1:"11.1226",x2:"15.4778",y2:"17.9671",gradientUnits:"userSpaceOnUse",children:[(0,S.jsx)("stop",{stopColor:"white"}),(0,S.jsx)("stop",{offset:"0.604072",stopColor:"white",stopOpacity:"0"}),(0,S.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0"})]}),o[1]=t):t=o[1],o[2]===Symbol.for("react.memo_cache_sentinel")?(n=(0,S.jsxs)("linearGradient",{id:"next_logo_paint1_linear_1357_10853",x1:"11.8222",y1:"1.40039",x2:"11.791",y2:"9.62542",gradientUnits:"userSpaceOnUse",children:[(0,S.jsx)("stop",{stopColor:"white"}),(0,S.jsx)("stop",{offset:"1",stopColor:"white",stopOpacity:"0"})]}),o[2]=n):n=o[2],o[3]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsxs)("svg",{width:"40",height:"40",viewBox:"0 0 40 40",fill:"none",children:[e,(0,S.jsxs)("defs",{children:[t,n,(0,S.jsxs)("mask",{id:"next_logo_mask0",children:[(0,S.jsx)("rect",{width:"100%",height:"100%",fill:"white"}),(0,S.jsx)("rect",{width:"5",height:"1.5",fill:"black"})]})]})]}),o[3]=r):r=o[3],r}var ou=C.forwardRef(function(e,t){var n,r,o,a,i,l,s,c,u,d=(0,O.c)(15);return(d[0]!==e?(l=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["onClick","children","className"]),i=e.onClick,o=e.children,a=e.className,d[0]=e,d[1]=o,d[2]=a,d[3]=i,d[4]=l):(o=d[1],a=d[2],i=d[3],l=d[4]),d[5]!==i?(s=function(e){return e.target.closest("a")||e.preventDefault(),null==i?void 0:i()},d[5]=i,d[6]=s):s=d[6],d[7]!==a?(c=e9("nextjs-toast",a),d[7]=a,d[8]=c):c=d[8],d[9]!==o||d[10]!==l||d[11]!==t||d[12]!==s||d[13]!==c)?(u=(0,S.jsx)("div",(n=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},l),r=r={ref:t,onClick:s,className:c,children:o},Object.getOwnPropertyDescriptors?Object.defineProperties(n,Object.getOwnPropertyDescriptors(r)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(r)).forEach(function(e){Object.defineProperty(n,e,Object.getOwnPropertyDescriptor(r,e))}),n)),d[9]=o,d[10]=l,d[11]=t,d[12]=s,d[13]=c,d[14]=u):u=d[14],u});function od(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}var of=(0,C.createContext)(null);function op(e){var t=e.children,n=e.disabled,r=void 0!==n&&n,o=(0,C.useRef)(new Set),a=(0,C.useCallback)(function(e){o.current.add(e)},[]),i=(0,C.useCallback)(function(e){o.current.delete(e)},[]),l=(0,C.useMemo)(function(){return{register:a,unregister:i,handles:o.current,disabled:r}},[a,i,r]);return(0,S.jsx)(of.Provider,{value:l,children:t})}function oh(){return(0,C.useContext)(of)}function om(e){var t,n,r,o,a,i,l,s,c,u,d,f=(0,O.c)(19);f[0]!==e?(o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["children","ref"]),r=e.children,a=e.ref,f[0]=e,f[1]=r,f[2]=o,f[3]=a):(r=f[1],o=f[2],a=f[3]);var p=(0,C.useRef)(null),h=oh();f[4]!==a?(i=function(e){if(p.current=null!=e?e:null,"function"==typeof a)a(e);else{var t;a&&(void 0===a?"undefined":(t=a)&&"undefined"!=typeof Symbol&&t.constructor===Symbol?"symbol":typeof t)=="object"&&(a.current=e)}},f[4]=a,f[5]=i):i=f[5];var m=i;f[6]!==h?(l=function(){if(h&&p.current&&!h.disabled){var e=p.current;return h.register(e),function(){return h.unregister(e)}}},s=[h],f[6]=h,f[7]=l,f[8]=s):(l=f[7],s=f[8]),(0,C.useEffect)(l,s);var g=(null==h?void 0:h.disabled)?"default":"grab";return(f[9]!==o.style?(c=o.style||{},f[9]=o.style,f[10]=c):c=f[10],f[11]!==g||f[12]!==c?(u=od({cursor:g},c),f[11]=g,f[12]=c,f[13]=u):u=f[13],f[14]!==r||f[15]!==o||f[16]!==m||f[17]!==u)?(d=(0,S.jsx)("div",(t=od({ref:m},o),n=n={style:u,children:r},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),f[14]=r,f[15]=o,f[16]=m,f[17]=u,f[18]=d):d=f[18],d}function og(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function oy(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function ov(e){return function(e){if(Array.isArray(e))return og(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||ob(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ob(e,t){if(e){if("string"==typeof e)return og(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return og(e,t)}}function ox(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h=(0,O.c)(15);h[0]!==e?(u=oy(e,["children","padding","position","setPosition","onDragStart","dragHandleSelector","disableDrag","avoidZone"]),a=e.children,c=e.padding,i=e.position,d=e.setPosition,s=e.onDragStart,l=e.dragHandleSelector,f=e.disableDrag,o=e.avoidZone,h[0]=e,h[1]=o,h[2]=a,h[3]=i,h[4]=l,h[5]=s,h[6]=c,h[7]=u,h[8]=d,h[9]=f):(o=h[1],a=h[2],i=h[3],l=h[4],s=h[5],c=h[6],u=h[7],d=h[8],f=h[9]);var m=function(e){var t=(0,C.useRef)(null),n=(0,C.useRef)({state:"idle"}),r=(0,C.useRef)(null),o=(0,C.useRef)({x:0,y:0}),a=(0,C.useRef)({x:0,y:0}),i=(0,C.useRef)(0),l=(0,C.useRef)([]),s=(0,C.useCallback)(function(){var e,o,a;"drag"===n.current.state&&(null==(a=t.current)||a.releasePointerCapture(n.current.pointerId)),n.current="drag"===n.current.state?{state:"drag-end"}:{state:"idle"},null!==r.current&&(r.current(),r.current=null),l.current=[],null==(e=t.current)||e.classList.remove("dev-tools-grabbing"),null==(o=t.current)||o.style.removeProperty("-webkit-user-select"),document.body.style.removeProperty("user-select"),document.body.style.removeProperty("-webkit-user-select")},[]);function c(e){t.current&&(a.current=e,t.current.style.translate="".concat(e.x,"px ").concat(e.y,"px"))}function u(n){var r=t.current;null!==r&&(r.style.transition="translate 491.22ms var(--timing-bounce)",r.addEventListener("transitionend",function t(o){if("translate"===o.propertyName){var i;null==(i=e.onAnimationEnd)||i.call(e,n),a.current={x:0,y:0},r.style.transition="",r.removeEventListener("transitionend",t)}}),c(n.translation))}function d(e){if("drag-end"===n.current.state){var r;e.preventDefault(),e.stopPropagation(),n.current={state:"idle"},null==(r=t.current)||r.removeEventListener("click",d)}}function f(r){if("press"===n.current.state){var s,u,d,f,p,h=r.clientX-o.current.x,m=r.clientY-o.current.y;Math.sqrt(h*h+m*m)>=e.threshold&&(n.current={state:"drag",pointerId:r.pointerId},null==(u=t.current)||u.setPointerCapture(r.pointerId),null==(d=t.current)||d.classList.add("dev-tools-grabbing"),null==(f=t.current)||f.style.setProperty("-webkit-user-select","none"),document.body.style.userSelect="none",document.body.style.webkitUserSelect="none",null==(p=e.onDragStart)||p.call(e))}if("drag"===n.current.state){var g={x:r.clientX,y:r.clientY},y=g.x-o.current.x,v=g.y-o.current.y;o.current=g,c({x:a.current.x+y,y:a.current.y+v});var b=Date.now();b-i.current>=10&&(l.current=ov(l.current.slice(-5)).concat([{position:g,timestamp:b}])),i.current=b,null==(s=e.onDrag)||s.call(e,a.current)}}function p(){var t,n=function(e){if(e.length<2)return{x:0,y:0};var t=e[0],n=e[e.length-1],r=n.timestamp-t.timestamp;return 0===r?{x:0,y:0}:{x:1e3*((n.position.x-t.position.x)/r),y:1e3*((n.position.y-t.position.y)/r)}}(l.current);s(),null==(t=e.onDragEnd)||t.call(e,a.current,n)}return(0,C.useLayoutEffect)(function(){e.disabled&&s()},[s,e.disabled]),e.disabled?{ref:t,animate:u}:{ref:t,onPointerDown:function(a){var i;0!==a.button||function(n){if(!n||!t.current)return!0;if(e.handles&&e.handles.size>0){for(var r=n;r&&r!==t.current;){if(e.handles.has(r))return!0;r=r.parentElement}return!1}return!e.dragHandleSelector||null!==n.closest(e.dragHandleSelector)}(a.target)&&(o.current={x:a.clientX,y:a.clientY},n.current={state:"press"},window.addEventListener("pointermove",f),window.addEventListener("pointerup",p),null!==r.current&&(r.current(),r.current=null),r.current=function(){window.removeEventListener("pointermove",f),window.removeEventListener("pointerup",p)},null==(i=t.current)||i.addEventListener("click",d))},animate:u}}({disabled:void 0!==f&&f,handles:null==(r=oh())?void 0:r.handles,threshold:5,onDragStart:s,onDragEnd:function(e,t){var n,r,a,l,s,u,d,f,p,h,m,v,b,x,w,_,j,k;if(0===Math.sqrt(e.x*e.x+e.y*e.y)){null==(n=g.current)||n.style.removeProperty("translate");return}y((b=(r={x:e.x+o_(t.x),y:e.y+o_(t.y)}).x,x=r.y,_=Object.entries(w=(s=2*c,u=(null==(a=g.current)?void 0:a.offsetWidth)||0,d=(null==(l=g.current)?void 0:l.offsetHeight)||0,f=window.innerWidth-document.documentElement.clientWidth,h=(p=function(e){var t=e.includes("right"),n=e.includes("bottom"),r=t?window.innerWidth-f-s-u:0,a=n?window.innerHeight-s-d:0;if(o&&o.corner===e){var i=o.square+o.padding;n?a-=i:a+=i}return{x:r,y:a}})(i),{"top-left":(m=function(e){return{x:e.x-h.x,y:e.y-h.y}})(p("top-left")),"top-right":m(p("top-right")),"bottom-left":m(p("bottom-left")),"bottom-right":m(p("bottom-right"))})).map(function(e){var t,n=function(e){if(Array.isArray(e))return e}(t=e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||ob(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),r=n[0],o=n[1];return{key:r,distance:Math.sqrt(Math.pow(b-o.x,2)+Math.pow(x-o.y,2))}}),j=(v=Math).min.apply(v,ov(_.map(ow))),(k=_.find(function(e){return e.distance===j}))?{translation:w[k.key],corner:k.key}:{corner:i,translation:w[i]}))},onAnimationEnd:function(e){var t=e.corner;setTimeout(function(){var e;null==(e=g.current)||e.style.removeProperty("translate"),d(t)})},dragHandleSelector:l}),g=m.ref,y=m.animate,v=oy(m,["ref","animate"]);return h[10]!==a||h[11]!==v||h[12]!==u||h[13]!==g?(p=(0,S.jsx)("div",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},u,v),n=n={ref:g,children:a},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),h[10]=a,h[11]=v,h[12]=u,h[13]=g,h[14]=p):p=h[14],p}function ow(e){return e.distance}function o_(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.999;return e/1e3*t/(1-t)}function oj(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function ok(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var oS=20;function oO(){var e,t,n,r,o,a,i,l,s=(0,O.c)(20),c=dw(),u=c.state,d=c.dispatch,f=r3(),p=f.panel,h=f.setPanel,m=f.setSelectedIndex,g=oC();s[0]!==u.devToolsPosition?(t=u.devToolsPosition.split("-",2),s[0]=u.devToolsPosition,s[1]=t):t=s[1];var y=function(e){if(Array.isArray(e))return e}(e=t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,2)||function(e,t){if(e){if("string"==typeof e)return oj(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oj(e,2)}}(e,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),v=y[0],b=y[1];s[2]!==b||s[3]!==v?(ok(r={"--animate-out-duration-ms":"".concat(200,"ms"),"--animate-out-timing-function":nc,boxShadow:"none"},v,"".concat(oS,"px")),ok(r,b,"".concat(oS,"px")),n=r,s[2]=b,s[3]=v,s[4]=n):n=s[4];var x=n,w=null!==p;return s[5]!==d||s[6]!==g?(o=function(e){d({type:et,devToolsPosition:e}),rk({devToolsPosition:e}),g(e)},s[5]=d,s[6]=g,s[7]=o):o=s[7],s[8]!==p||s[9]!==h||s[10]!==m?(a=(0,S.jsx)(oi,{onTriggerClick:function(){var e="panel-selector"===p?null:"panel-selector";if(h(e),!e)return void m(-1)}}),s[8]=p,s[9]=h,s[10]=m,s[11]=a):a=s[11],s[12]!==u.devToolsPosition||s[13]!==w||s[14]!==o||s[15]!==a?(i=(0,S.jsx)(ox,{disableDrag:w,padding:oS,position:u.devToolsPosition,setPosition:o,children:a}),s[12]=u.devToolsPosition,s[13]=w,s[14]=o,s[15]=a,s[16]=i):i=s[16],s[17]!==x||s[18]!==i?(l=(0,S.jsx)(ou,{id:"devtools-indicator","data-nextjs-toast":!0,style:x,children:i}),s[17]=x,s[18]=i,s[19]=l):l=s[19],l}var oC=function(){var e,t=(0,O.c)(3),n=dw(),r=n.state,o=n.dispatch;return t[0]!==o||t[1]!==r.devToolsPanelPosition?(e=function(e){o({type:en,devToolsPanelPosition:e,key:es});var t=Object.keys(r.devToolsPanelPosition).filter(oP),n=ok({},es,e);t.forEach(function(t){o({type:en,devToolsPanelPosition:e,key:t}),n[t]=e}),rk({devToolsPanelPosition:n})},t[0]=o,t[1]=r.devToolsPanelPosition,t[2]=e):e=t[2],e};function oP(e){return e.startsWith(ea)}function oE(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function oT(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function oN(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){oT(e,t,n[t])})}return e}function oI(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function oL(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return oE(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oE(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var oA=(0,C.createContext)({});function oz(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h=(0,O.c)(37);h[0]!==e?(a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,["index","label","value","onClick","href"]),n=e.index,r=e.label,i=e.value,o=e.onClick,t=e.href,h[0]=e,h[1]=t,h[2]=n,h[3]=r,h[4]=o,h[5]=a,h[6]=i):(t=h[1],n=h[2],r=h[3],o=h[4],a=h[5],i=h[6]);var m="function"==typeof o||"string"==typeof t,g=(0,C.useContext)(oA),y=g.closeMenu,v=g.selectedIndex,b=g.setSelectedIndex,x=v===n;h[7]!==y||h[8]!==t||h[9]!==m||h[10]!==o?(l=function(){m&&(null==o||o(),null==y||y(),t&&window.open(t,"_blank","noopener, noreferrer"))},h[7]=y,h[8]=t,h[9]=m,h[10]=o,h[11]=l):l=h[11];var w=l;h[12]!==n||h[13]!==m||h[14]!==v||h[15]!==b?(s=function(){m&&void 0!==n&&v!==n&&b(n)},h[12]=n,h[13]=m,h[14]=v,h[15]=b,h[16]=s):s=h[16],h[17]!==b?(c=function(){return b(-1)},h[17]=b,h[18]=c):c=h[18],h[19]!==w?(u=function(e){("Enter"===e.key||" "===e.key)&&w()},h[19]=w,h[20]=u):u=h[20];var _=m?"menuitem":void 0,j=x?0:-1;return h[21]!==r?(d=(0,S.jsx)("span",{className:"dev-tools-indicator-label",children:r}),h[21]=r,h[22]=d):d=h[22],h[23]!==i?(f=(0,S.jsx)("span",{className:"dev-tools-indicator-value",children:i}),h[23]=i,h[24]=f):f=h[24],h[25]!==w||h[26]!==n||h[27]!==a||h[28]!==x||h[29]!==s||h[30]!==c||h[31]!==u||h[32]!==_||h[33]!==j||h[34]!==d||h[35]!==f?(p=(0,S.jsxs)("div",oI(oN({className:"dev-tools-indicator-item","data-index":n,"data-selected":x,onClick:w,onMouseMove:s,onMouseLeave:c,onKeyDown:u,role:_,tabIndex:j},a),{children:[d,f]})),h[25]=w,h[26]=n,h[27]=a,h[28]=x,h[29]=s,h[30]=c,h[31]=u,h[32]=_,h[33]=j,h[34]=d,h[35]=f,h[36]=p):p=h[36],p}var oR=function(e){var t,n=e.closeOnClickOutside,r=void 0===n||n,o=e.items,a=dw().state,i=r3(),l=i.setPanel,s=i.triggerRef,c=i.setSelectedIndex,u=i.selectedIndex,d=u9().mounted,f=oL(a.devToolsPosition.split("-",2),2),p=f[0],h=f[1],m=(0,C.useRef)(null);ns(m,s,r&&d,function(e){switch(e){case"escape":l(null),c(-1);return;case"outside":if(!r)return;l(null),c(-1);return;default:return null}});var g=(0,C.useEffectEvent)(function(){oU({index:-1===u?"first":u,menuRef:m,setSelectedIndex:c})});(0,C.useLayoutEffect)(function(){var e;null==(e=m.current)||e.focus(),g()},[]);var y=r4(a),v=oL(a.devToolsPosition.split("-",2),2),b=v[0],x=v[1],w=p===b&&h===x?y:oS,_=(oT(t={},p,"".concat(w,"px")),oT(t,h,"".concat(oS,"px")),oT(t,"top"===p?"bottom":"top","auto"),oT(t,"left"===h?"right":"left","auto"),t),j=o.filter(function(e){return!!e}),k=j.filter(function(e){return!e.footer}),O=j.filter(function(e){return e.footer});return(0,S.jsx)("div",{ref:m,onKeyDown:function(e){e.preventDefault();var t=j.filter(function(e){return e.onClick}).length;switch(e.key){case"ArrowDown":oU({index:u>=t-1?0:u+1,menuRef:m,setSelectedIndex:c});break;case"ArrowUp":oU({index:u<=0?t-1:u-1,menuRef:m,setSelectedIndex:c});break;case"Home":oU({index:"first",menuRef:m,setSelectedIndex:c});break;case"End":oU({index:"last",menuRef:m,setSelectedIndex:c});break;case"n":e.ctrlKey&&oU({index:u>=t-1?0:u+1,menuRef:m,setSelectedIndex:c});break;case"p":e.ctrlKey&&oU({index:u<=0?t-1:u-1,menuRef:m,setSelectedIndex:c})}},id:"nextjs-dev-tools-menu",role:"menu",dir:"ltr","aria-orientation":"vertical","aria-label":"Next.js Dev Tools Items",tabIndex:-1,style:oN({outline:0,WebkitFontSmoothing:"antialiased",display:"flex",flexDirection:"column",alignItems:"flex-start",background:"var(--color-background-100)",backgroundClip:"padding-box",boxShadow:"var(--shadow-menu)",borderRadius:"var(--rounded-xl)",position:"fixed",fontFamily:"var(--font-stack-sans)",zIndex:"var(--top-z-index)",overflow:"hidden",opacity:1,minWidth:"248px",transition:"opacity var(--animate-out-duration-ms) var(--animate-out-timing-function)",border:"1px solid var(--color-gray-alpha-400)"},_),children:(0,S.jsxs)(oA,{value:{selectedIndex:u,setSelectedIndex:c},children:[(0,S.jsx)("div",{style:{padding:"6px",width:"100%"},children:k.map(function(e,t){return(0,S.jsx)(oz,oN({title:e.title,label:e.label,value:e.value,onClick:e.onClick,index:e.onClick?oD(k,t):void 0},e.attributes),e.label)})}),(0,S.jsx)("div",{className:"dev-tools-indicator-footer",children:O.map(function(e,t){var n;return(0,S.jsx)(oz,oI(oN({title:e.title,label:e.label,value:e.value,onClick:e.onClick},e.attributes),{index:e.onClick?oD(O,t)+(n=k).filter(function(e){return e.onClick}).length:void 0}),e.label)})})]})})};function oD(e,t){for(var n=0,r=0;r<=t&&r<e.length;r++)if(e[r].onClick){if(r===t)return n;n++}return n}function oM(e){var t,n,r=(0,O.c)(4),o=e.children,a=o>0;return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("span",{className:"dev-tools-indicator-issue-count-indicator"}),r[0]=t):t=r[0],r[1]!==o||r[2]!==a?(n=(0,S.jsxs)("span",{className:"dev-tools-indicator-issue-count","data-has-issues":a,children:[t,o]}),r[1]=o,r[2]=a,r[3]=n):n=r[3],n}function oZ(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",children:(0,S.jsx)("path",{fill:"#666",fillRule:"evenodd",clipRule:"evenodd",d:"M5.50011 1.93945L6.03044 2.46978L10.8537 7.293C11.2442 7.68353 11.2442 8.31669 10.8537 8.70722L6.03044 13.5304L5.50011 14.0608L4.43945 13.0001L4.96978 12.4698L9.43945 8.00011L4.96978 3.53044L4.43945 3.00011L5.50011 1.93945Z"})}),t[0]=e):e=t[0],e}function oU(e){var t,n=e.index,r=e.menuRef,o=e.setSelectedIndex;if("first"===n)return void setTimeout(function(){var e,t=null==(e=r.current)?void 0:e.querySelectorAll('[role="menuitem"]');t&&oU({index:Number(t[0].getAttribute("data-index")),menuRef:r,setSelectedIndex:o})});if("last"===n)return void setTimeout(function(){var e,t=null==(e=r.current)?void 0:e.querySelectorAll('[role="menuitem"]');t&&oU({index:t.length-1,menuRef:r,setSelectedIndex:o})});var a=null==(t=r.current)?void 0:t.querySelector('[data-index="'.concat(n,'"]'));a&&(o(n),null==a||a.focus())}function oF(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var oH=(0,C.createContext)(null),oV=function(e){var t=.95*window.innerWidth,n=.95*window.innerHeight;return{width:Math.min(t,Math.max(e.minWidth,e.width)),height:Math.min(n,Math.max(e.minHeight,e.height))}},oB=function(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m=(0,O.c)(34),g=e.value,y=e.children,v=null!=(o=g.minWidth)?o:100,b=null!=(a=g.minHeight)?a:80,x=g.maxWidth,w=g.maxHeight,_=(t=(0,C.useState)(null),function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||function(e,t){if(e){if("string"==typeof e)return oF(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oF(e,2)}}(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),j=_[0],k=_[1],P=null!=(i=g.storageKey)?i:el,E=g.resizeRef;m[0]!==j||m[1]!==b||m[2]!==v||m[3]!==E||m[4]!==P||m[5]!==g.devToolsPanelSize?(l=function(){if(E.current&&null===j){var e=g.devToolsPanelSize[P];if(e){var t,n,r=oV((t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},e),n=n={minWidth:null!=v?v:100,minHeight:null!=b?b:80},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t)),o=r.height,a=r.width;return E.current.style.width="".concat(a,"px"),E.current.style.height="".concat(o,"px"),!0}}},m[0]=j,m[1]=b,m[2]=v,m[3]=E,m[4]=P,m[5]=g.devToolsPanelSize,m[6]=l):l=m[6];var T=l;m[7]!==T||m[8]!==b||m[9]!==v||m[10]!==E||m[11]!==g.initialSize?(s=function(){var e;if(!T()&&E.current&&(null==(e=g.initialSize)?void 0:e.height)&&g.initialSize.width){var t=oV({height:g.initialSize.height,width:g.initialSize.width,minWidth:null!=v?v:100,minHeight:null!=b?b:80}),n=t.height,r=t.width;E.current.style.width="".concat(r,"px"),E.current.style.height="".concat(n,"px")}},m[7]=T,m[8]=b,m[9]=v,m[10]=E,m[11]=g.initialSize,m[12]=s):s=m[12];var N=(0,C.useEffectEvent)(s);m[13]!==N?(c=function(){N()},m[13]=N,m[14]=c):c=m[14],m[15]===Symbol.for("react.memo_cache_sentinel")?(u=[],m[15]=u):u=m[15],(0,C.useLayoutEffect)(c,u),m[16]!==T?(d=function(){return window.addEventListener("resize",T),function(){return window.removeEventListener("resize",T)}},m[16]=T,m[17]=d):d=m[17];var I=null==(n=g.initialSize)?void 0:n.height,L=null==(r=g.initialSize)?void 0:r.width;return m[18]!==T||m[19]!==I||m[20]!==L||m[21]!==g.resizeRef?(f=[T,I,L,g.resizeRef],m[18]=T,m[19]=I,m[20]=L,m[21]=g.resizeRef,m[22]=f):f=m[22],(0,C.useLayoutEffect)(d,f),m[23]!==j||m[24]!==w||m[25]!==x||m[26]!==b||m[27]!==v||m[28]!==P||m[29]!==g.resizeRef?(p={resizeRef:g.resizeRef,minWidth:v,minHeight:b,maxWidth:x,maxHeight:w,draggingDirection:j,setDraggingDirection:k,storageKey:P},m[23]=j,m[24]=w,m[25]=x,m[26]=b,m[27]=v,m[28]=P,m[29]=g.resizeRef,m[30]=p):p=m[30],m[31]!==y||m[32]!==p?(h=(0,S.jsx)(oH.Provider,{value:p,children:y}),m[31]=y,m[32]=p,m[33]=h):h=m[33],h},o$=function(){var e=(0,C.useContext)(oH);if(!e)throw Error("useResize must be used within a Resize provider");return e},oq=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/devtools-panel/resize/resize-handle.css"),oW={};function oK(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}oW.styleTagTransform=x(),oW.setAttributes=g(),oW.insert=h(),oW.domAPI=f(),oW.insertStyleElement=v(),u()(oq.A,oW),oq.A&&oq.A.locals&&oq.A.locals;var oY=function(e){var t,n,r,o,a,i,l,s,c,u=(0,O.c)(31),d=e.direction,f=e.position,p=o$(),h=p.resizeRef,m=p.minWidth,g=p.minHeight,y=p.maxWidth,v=p.maxHeight,b=p.storageKey,x=p.draggingDirection,w=p.setDraggingDirection;u[0]===Symbol.for("react.memo_cache_sentinel")?(n={top:0,right:0,bottom:0,left:0},u[0]=n):n=u[0];var _=(t=(0,C.useState)(n),function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(t,2)||function(e,t){if(e){if("string"==typeof e)return oK(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oK(e,2)}}(t,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),j=_[0],k=_[1];u[1]!==h?(r=function(){if(h.current){var e=h.current,t=window.getComputedStyle(e);k({top:parseFloat(t.borderTopWidth)||0,right:parseFloat(t.borderRightWidth)||0,bottom:parseFloat(t.borderBottomWidth)||0,left:parseFloat(t.borderLeftWidth)||0})}},o=[h],u[1]=h,u[2]=r,u[3]=o):(r=u[2],o=u[3]),(0,C.useLayoutEffect)(r,o),u[4]!==d||u[5]!==v||u[6]!==y||u[7]!==g||u[8]!==m||u[9]!==h||u[10]!==w||u[11]!==b?(a=function(e){if(e.preventDefault(),h.current){w(d);var t=h.current,n=t.getBoundingClientRect(),r=e.clientX,o=e.clientY,a=function(e){var a=oX(d,e.clientX-r,e.clientY-o,n,m,g,y,v),i=a.newWidth,l=a.newHeight;void 0!==i&&(t.style.width="".concat(i,"px")),void 0!==l&&(t.style.height="".concat(l,"px"))},i=function(){if(w(null),document.removeEventListener("mousemove",a),document.removeEventListener("mouseup",i),h.current){var e,t,n,r=h.current.getBoundingClientRect(),o=r.width,l=r.height;rk({devToolsPanelSize:(e={},t=b,n={width:o,height:l},t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e)})}};document.addEventListener("mousemove",a),document.addEventListener("mouseup",i)}},u[4]=d,u[5]=v,u[6]=y,u[7]=g,u[8]=m,u[9]=h,u[10]=w,u[11]=b,u[12]=a):a=u[12];var P=a;if(!(!f.split("-").includes(d)&&(!d.includes("-")||d===oG(f))))return null;var E=j.left+j.right,T=j.top+j.bottom;u[13]!==d?(i=d.includes("-"),u[13]=d,u[14]=i):i=u[14];var N=i,I="resize-container ".concat(d," ").concat(x&&x!==d?"no-hover":"");return u[15]!==P||u[16]!==I?(l=(0,S.jsx)("div",{className:I,onMouseDown:P}),u[15]=P,u[16]=I,u[17]=l):l=u[17],u[18]!==j.bottom||u[19]!==j.left||u[20]!==j.right||u[21]!==j.top||u[22]!==d||u[23]!==x||u[24]!==N||u[25]!==E||u[26]!==T?(s=!N&&(0,S.jsx)("div",{className:"resize-line ".concat(d," ").concat(x===d?"dragging":""),style:{"--border-horizontal":"".concat(E,"px"),"--border-vertical":"".concat(T,"px"),"--border-top":"".concat(j.top,"px"),"--border-right":"".concat(j.right,"px"),"--border-bottom":"".concat(j.bottom,"px"),"--border-left":"".concat(j.left,"px")}}),u[18]=j.bottom,u[19]=j.left,u[20]=j.right,u[21]=j.top,u[22]=d,u[23]=x,u[24]=N,u[25]=E,u[26]=T,u[27]=s):s=u[27],u[28]!==l||u[29]!==s?(c=(0,S.jsxs)(S.Fragment,{children:[l,s]}),u[28]=l,u[29]=s,u[30]=c):c=u[30],c},oX=function(e,t,n,r,o,a,i,l){var s=null!=i?i:.95*window.innerWidth,c=null!=l?l:.95*window.innerHeight;switch(e){case"right":return{newWidth:Math.min(s,Math.max(o,r.width+t)),newHeight:r.height};case"left":return{newWidth:Math.min(s,Math.max(o,r.width-t)),newHeight:r.height};case"bottom":return{newWidth:r.width,newHeight:Math.min(c,Math.max(a,r.height+n))};case"top":return{newWidth:r.width,newHeight:Math.min(c,Math.max(a,r.height-n))};case"top-left":return{newWidth:Math.min(s,Math.max(o,r.width-t)),newHeight:Math.min(c,Math.max(a,r.height-n))};case"top-right":return{newWidth:Math.min(s,Math.max(o,r.width+t)),newHeight:Math.min(c,Math.max(a,r.height-n))};case"bottom-left":return{newWidth:Math.min(s,Math.max(o,r.width-t)),newHeight:Math.min(c,Math.max(a,r.height+n))};case"bottom-right":return{newWidth:Math.min(s,Math.max(o,r.width+t)),newHeight:Math.min(c,Math.max(a,r.height+n))};default:return null}};function oG(e){switch(e){case"top-left":return"bottom-right";case"top-right":return"bottom-left";case"bottom-left":return"top-right";case"bottom-right":return"top-left";default:return null}}var oQ=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/panel/dynamic-panel.css"),oJ={};function o0(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function o1(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o2(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){o1(e,t,n[t])})}return e}function o3(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return o0(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return o0(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o4(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"width";if("number"==typeof e)return e;var n=document.createElement("div");n.style.position="absolute",n.style.visibility="hidden","width"===t?n.style.width=e:n.style.height=e,document.body.appendChild(n);var r="width"===t?n.offsetWidth:n.offsetHeight;return document.body.removeChild(n),r}function o5(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g=e.header,y=e.children,v=e.draggable,b=void 0!==v&&v,x=e.sizeConfig,w=void 0===x?{kind:"resizable",minWidth:400,minHeight:350,maxWidth:1e3,maxHeight:1e3,initialSize:{height:400,width:500}}:x,_=e.closeOnClickOutside,j=void 0!==_&&_,k=e.sharePanelSizeGlobally,P=e.sharePanelPositionGlobally,E=e.containerProps,T=r3().setPanel,N=u9(),I=N.name,L=N.mounted,A=void 0===k||k?el:"".concat(ei,"_").concat(I),z=void 0===P||P?es:"".concat(ea,"_").concat(I),R=dw(),D=R.dispatch,M=R.state,Z=null!=(h=M.devToolsPanelPosition[z])?h:M.devToolsPosition,U=o3(Z.split("-",2),2),F=U[0],H=U[1],V=(0,C.useRef)(null);ns(V,r3().triggerRef,L,function(e){switch(e){case"escape":return void T("panel-selector");case"outside":j&&T("panel-selector");return;default:return null}});var B=r4(M),$=o3(M.devToolsPosition.split("-",2),2),q=$[0],W=$[1],K=F===q&&H===W?B:oS,Y=(o1(m={},F,"".concat(K,"px")),o1(m,H,"".concat(oS,"px")),o1(m,"top"===F?"bottom":"top","auto"),o1(m,"left"===H?"right":"left","auto"),m),X="resizable"===w.kind,G=(t=X?w.minWidth:void 0,n=X?w.minHeight:void 0,r=X?w.maxWidth:void 0,o=X?w.maxHeight:void 0,(s=(0,O.c)(11))[0]!==o||s[1]!==r||s[2]!==n||s[3]!==t?(a=function(){return{minWidth:t?o4(t,"width"):void 0,minHeight:n?o4(n,"height"):void 0,maxWidth:r?o4(r,"width"):void 0,maxHeight:o?o4(o,"height"):void 0}},s[0]=o,s[1]=r,s[2]=n,s[3]=t,s[4]=a):a=s[4],u=(c=o3((0,C.useState)(a),2))[0],d=c[1],s[5]!==o||s[6]!==r||s[7]!==n||s[8]!==t?(i=function(){var e=function(){d({minWidth:t?o4(t,"width"):void 0,minHeight:n?o4(n,"height"):void 0,maxWidth:r?o4(r,"width"):void 0,maxHeight:o?o4(o,"height"):void 0})};return window.addEventListener("resize",e),function(){return window.removeEventListener("resize",e)}},l=[t,n,r,o],s[5]=o,s[6]=r,s[7]=n,s[8]=t,s[9]=i,s[10]=l):(i=s[9],l=s[10]),(0,C.useEffect)(i,l),u),Q=G.minWidth,J=G.minHeight,ee=G.maxWidth,et=G.maxHeight,er=I?"".concat(ei,"_").concat(I):el,eo=M.devToolsPanelSize[er];return(0,S.jsx)(oB,{value:{resizeRef:V,initialSize:"resizable"===w.kind?w.initialSize:w,minWidth:Q,minHeight:J,maxWidth:ee,maxHeight:et,devToolsPosition:M.devToolsPosition,devToolsPanelSize:M.devToolsPanelSize,storageKey:A},children:(0,S.jsx)("div",{tabIndex:-1,ref:V,className:"dynamic-panel-container",style:o2({"--panel-top":Y.top,"--panel-bottom":Y.bottom,"--panel-left":Y.left,"--panel-right":Y.right},X?{"--panel-min-width":Q?"".concat(Q,"px"):void 0,"--panel-min-height":J?"".concat(J,"px"):void 0,"--panel-max-width":ee?"".concat(ee,"px"):void 0,"--panel-max-height":et?"".concat(et,"px"):void 0}:{"--panel-height":"".concat(eo?eo.height:w.height,"px"),"--panel-width":"".concat(eo?eo.width:w.width,"px")}),children:(0,S.jsx)(op,{disabled:!b,children:(0,S.jsx)(ox,{dragHandleSelector:".resize-container",avoidZone:{corner:M.devToolsPosition,square:25/M.scale,padding:oS},padding:oS,position:Z,setPosition:function(e){D({type:en,devToolsPanelPosition:e,key:z}),"resizable"===w.kind&&rk({devToolsPanelPosition:o1({},z,e)})},style:{overflow:"auto",width:"100%",height:"100%"},disableDrag:!b,children:(0,S.jsxs)(S.Fragment,{children:[(0,S.jsxs)("div",(f=o2({},E),p=p={className:"panel-content-container ".concat((null==E?void 0:E.className)||""),style:o2({},null==E?void 0:E.style),children:[(0,S.jsx)(om,{children:g}),(0,S.jsx)("div",{"data-nextjs-scrollable-content":!0,className:"draggable-content",children:y})]},Object.getOwnPropertyDescriptors?Object.defineProperties(f,Object.getOwnPropertyDescriptors(p)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(p)).forEach(function(e){Object.defineProperty(f,e,Object.getOwnPropertyDescriptor(p,e))}),f)),X&&(0,S.jsxs)(S.Fragment,{children:[(!w.sides||w.sides.includes("vertical"))&&(0,S.jsxs)(S.Fragment,{children:[(0,S.jsx)(oY,{position:Z,direction:"top"}),(0,S.jsx)(oY,{position:Z,direction:"bottom"})]}),(!w.sides||w.sides.includes("horizontal"))&&(0,S.jsxs)(S.Fragment,{children:[(0,S.jsx)(oY,{position:Z,direction:"right"}),(0,S.jsx)(oY,{position:Z,direction:"left"})]}),(!w.sides||w.sides.includes("diagonal"))&&(0,S.jsxs)(S.Fragment,{children:[(0,S.jsx)(oY,{position:Z,direction:"top-left"}),(0,S.jsx)(oY,{position:Z,direction:"top-right"}),(0,S.jsx)(oY,{position:Z,direction:"bottom-left"}),(0,S.jsx)(oY,{position:Z,direction:"bottom-right"})]})]})]})})})})})}function o6(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function o9(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function o8(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],!(t.indexOf(n)>=0)&&Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function o7(e){var t,n,r,o,a,i,l=(0,O.c)(10);l[0]!==e?(t=o8(e,["routerType"]),n=e.routerType,l[0]=e,l[1]=t,l[2]=n):(t=l[1],n=l[2]),l[3]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsxs)("p",{className:"dev-tools-info-paragraph",children:["The path"," ",(0,S.jsx)("code",{className:"dev-tools-info-code",children:window.location.pathname})," ",'is marked as "static" since it will be prerendered during the build time.']}),l[3]=r):r=l[3];var s="pages"===n?"https://nextjs.org/docs/pages/building-your-application/data-fetching/incremental-static-regeneration":"https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration";return l[4]!==s?(o=(0,S.jsxs)("p",{className:"dev-tools-info-paragraph",children:["With Static Rendering, routes are rendered at build time, or in the background after"," ",(0,S.jsx)("a",{className:"dev-tools-info-link",href:s,target:"_blank",rel:"noopener noreferrer",children:"data revalidation"}),"."]}),l[4]=s,l[5]=o):o=l[5],l[6]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsx)("p",{className:"dev-tools-info-paragraph",children:"Static rendering is useful when a route has data that is not personalized to the user and can be known at build time, such as a static blog post or a product page."}),l[6]=a):a=l[6],l[7]!==t||l[8]!==o?(i=(0,S.jsxs)("article",o9(o6({className:"dev-tools-info-article"},t),{children:[r,o,a]})),l[7]=t,l[8]=o,l[9]=i):i=l[9],i}function ae(e){var t,n,r,o,a,i,l,s=(0,O.c)(11);return s[0]!==e?(t=o8(e,["routerType"]),n=e.routerType,s[0]=e,s[1]=t,s[2]=n):(t=s[1],n=s[2]),s[3]===Symbol.for("react.memo_cache_sentinel")?(r=(0,S.jsx)("code",{className:"dev-tools-info-code",children:window.location.pathname}),s[3]=r):r=s[3],s[4]===Symbol.for("react.memo_cache_sentinel")?(o=(0,S.jsxs)("p",{className:"dev-tools-info-paragraph",children:["The path"," ",r," ",'is marked as "dynamic" since it will be rendered for each user at'," ",(0,S.jsx)("strong",{children:"request time"}),"."]}),a=(0,S.jsx)("p",{className:"dev-tools-info-paragraph",children:"Dynamic rendering is useful when a route has data that is personalized to the user or has information that can only be known at request time, such as cookies or the URL's search params."}),s[4]=o,s[5]=a):(o=s[4],a=s[5]),s[6]!==n?(i="pages"===n?(0,S.jsxs)("p",{className:"dev-tools-info-pagraph",children:["Exporting the"," ",(0,S.jsx)("a",{className:"dev-tools-info-link",href:"https://nextjs.org/docs/pages/building-your-application/data-fetching/get-server-side-props",target:"_blank",rel:"noopener noreferrer",children:"getServerSideProps"})," ","function will opt the route into dynamic rendering. This function will be called by the server on every request."]}):(0,S.jsxs)("p",{className:"dev-tools-info-paragraph",children:["During rendering, if a"," ",(0,S.jsx)("a",{className:"dev-tools-info-link",href:"https://nextjs.org/docs/app/building-your-application/rendering/server-components#dynamic-apis",target:"_blank",rel:"noopener noreferrer",children:"Dynamic API"})," ","or a"," ",(0,S.jsx)("a",{className:"dev-tools-info-link",href:"https://nextjs.org/docs/app/api-reference/functions/fetch",target:"_blank",rel:"noopener noreferrer",children:"fetch"})," ","option of"," ",(0,S.jsx)("code",{className:"dev-tools-info-code",children:"{ cache: 'no-store' }"})," ","is discovered, Next.js will switch to dynamically rendering the whole route."]}),s[6]=n,s[7]=i):i=s[7],s[8]!==t||s[9]!==i?(l=(0,S.jsxs)("article",o9(o6({className:"dev-tools-info-article"},t),{children:[o,a,i]})),s[8]=t,s[9]=i,s[10]=l):l=s[10],l}oJ.styleTagTransform=x(),oJ.setAttributes=g(),oJ.insert=h(),oJ.domAPI=f(),oJ.insertStyleElement=v(),u()(oQ.A,oJ),oQ.A&&oQ.A.locals&&oQ.A.locals;var at={pages:{static:"https://nextjs.org/docs/pages/building-your-application/rendering/static-site-generation",dynamic:"https://nextjs.org/docs/pages/building-your-application/rendering/server-side-rendering"},app:{static:"https://nextjs.org/docs/app/building-your-application/rendering/server-components#static-rendering-default",dynamic:"https://nextjs.org/docs/app/building-your-application/rendering/server-components#dynamic-rendering"}};function an(e){var t,n,r,o,a=(0,O.c)(8);return a[0]!==e?(n=o8(e,["routerType","isStaticRoute"]),r=e.routerType,t=e.isStaticRoute,a[0]=e,a[1]=t,a[2]=n,a[3]=r):(t=a[1],n=a[2],r=a[3]),a[4]!==t||a[5]!==n||a[6]!==r?(o=t?(0,S.jsx)(o7,o6({routerType:r},n)):(0,S.jsx)(ae,o6({routerType:r},n)),a[4]=t,a[5]=n,a[6]=r,a[7]=o):o=a[7],o}var ar=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/overview/segment-explorer.css"),ao={};function aa(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}ao.styleTagTransform=x(),ao.setAttributes=g(),ao.insert=h(),ao.domAPI=f(),ao.insertStyleElement=v(),u()(ar.A,ao),ar.A&&ar.A.locals&&ar.A.locals;var ai=new Set,al=function(e){return ai.add(e),function(){return ai.delete(e)}},as=function(){return au.getRoot()},ac=function(){return au.getRoot()},au=function(e){var t=e.getCharacters,n=void 0===t?function(e){return[e]}:t,r=e.compare,o=void 0===r?function(e,t){return e===t}:r,a={value:void 0,children:{}};function i(){var e=!0,t=!1,n=void 0;try{for(var r,o=ai[Symbol.iterator]();!(e=(r=o.next()).done);e=!0)(0,r.value)()}catch(e){t=!0,n=e}finally{try{e||null==o.return||o.return()}finally{if(t)throw n}}}return{insert:function(e){var t=a,r=n(e),o=!0,l=!1,s=void 0;try{for(var c,u=r[Symbol.iterator]();!(o=(c=u.next()).done);o=!0){var d=c.value;t.children[d]||(t.children[d]={value:void 0,children:{}}),t=t.children[d]}}catch(e){l=!0,s=e}finally{try{o||null==u.return||u.return()}finally{if(l)throw s}}t.value=e,a=aa({},a),i()},remove:function(e){var t=a,r=n(e),l=[],s=!0,c=!0,u=!1,d=void 0;try{for(var f,p=r[Symbol.iterator]();!(c=(f=p.next()).done);c=!0){var h=f.value;if(!t.children[h]){s=!1;break}l.push(t),t=t.children[h]}}catch(e){u=!0,d=e}finally{try{c||null==p.return||p.return()}finally{if(u)throw d}}if(s&&o(t.value,e)){t.value=void 0;for(var m=l.length-1;m>=0;m--){var g=l[m],y=r[m];0===Object.keys(g.children[y].children).length&&delete g.children[y]}a=aa({},a),i()}},getRoot:function(){return a}}}({compare:function(e,t){return!!e&&!!t&&e.pagePath===t.pagePath&&e.type===t.type&&e.boundaryType===t.boundaryType},getCharacters:function(e){return e.pagePath.split("/")}}),ad=au.insert,af=au.remove,ap=au.getRoot,ah=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/overview/segment-boundary-trigger.css"),am={};am.styleTagTransform=x(),am.setAttributes=g(),am.insert=h(),am.domAPI=f(),am.insertStyleElement=v(),u()(ah.A,am),ah.A&&ah.A.locals&&ah.A.locals;let ag={};function ay(e,t){let n=C.useRef(ag);return n.current===ag&&(n.current=e(t)),n}let av=[];function ab(e){C.useEffect(e,av)}class ax{static create(){return new ax}currentId=0;start(e,t){this.clear(),this.currentId=setTimeout(()=>{this.currentId=0,t()},e)}isStarted(){return 0!==this.currentId}clear=()=>{0!==this.currentId&&(clearTimeout(this.currentId),this.currentId=0)};disposeEffect=()=>this.clear}function aw(){let e=ay(ax.create).current;return ab(e.disposeEffect),e}let a_=P[`useInsertionEffect${Math.random().toFixed(1)}`.slice(0,-3)],aj=a_&&a_!==C.useLayoutEffect?a_:e=>e();function ak(e){let t=ay(aS).current;return t.next=e,aj(t.effect),t.trampoline}function aS(){let e={next:void 0,callback:aO,trampoline:(...t)=>e.callback?.(...t),effect:()=>{e.callback=e.next}};return e}function aO(){}function aC({controlled:e,default:t,name:n,state:r="value"}){let{current:o}=C.useRef(void 0!==e),[a,i]=C.useState(t),l=C.useCallback(e=>{o||i(e)},[]);return[o?e:a,l]}let aP={...P},aE=0,aT=aP.useId;function aN(e,t){if(void 0!==aT){let n=aT();return e??(t?`${t}-${n}`:n)}return function(e,t="mui"){let[n,r]=C.useState(e),o=e||n;return C.useEffect(()=>{null==n&&(aE+=1,r(`${t}-${aE}`))},[n,t]),o}(e,t)}function aI(){let e=new Map;return{emit(t,n){e.get(t)?.forEach(e=>e(n))},on(t,n){e.has(t)||e.set(t,new Set),e.get(t).add(n)},off(t,n){e.get(t)?.delete(n)}}}let aL="undefined"!=typeof document?C.useLayoutEffect:()=>{},aA=C.createContext(null),az=C.createContext(null),aR=()=>P.useContext(aA)?.id||null;function aD(e){let{children:t,id:n}=e,r=aR();return(0,S.jsx)(aA.Provider,{value:C.useMemo(()=>({id:n,parentId:r}),[n,r]),children:t})}function aM(e){let{children:t}=e,n=C.useRef([]),r=C.useCallback(e=>{n.current=[...n.current,e]},[]),o=C.useCallback(e=>{n.current=n.current.filter(t=>t!==e)},[]),[a]=C.useState(()=>aI());return(0,S.jsx)(az.Provider,{value:C.useMemo(()=>({nodesRef:n,addNode:r,removeNode:o,events:a}),[r,o,a]),children:t})}function aZ(e){let{open:t=!1,onOpenChange:n,elements:r}=e,o=aN(),a=C.useRef({}),[i]=C.useState(()=>aI()),l=null!=aR(),[s,c]=C.useState(r.reference),u=ak((e,t,r)=>{a.current.openEvent=e?t:void 0,i.emit("openchange",{open:e,event:t,reason:r,nested:l}),n?.(e,t,r)}),d=C.useMemo(()=>({setPositionReference:c}),[]),f=C.useMemo(()=>({reference:s||r.reference||null,floating:r.floating||null,domReference:r.reference}),[s,r.reference,r.floating]);return C.useMemo(()=>({dataRef:a,open:t,onOpenChange:u,elements:f,events:i,floatingId:o,refs:d}),[t,u,f,i,o,d])}function aU(){return"undefined"!=typeof window}function aF(e){return aB(e)?(e.nodeName||"").toLowerCase():"#document"}function aH(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function aV(e){var t;return null==(t=(aB(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function aB(e){return!!aU()&&(e instanceof Node||e instanceof aH(e).Node)}function a$(e){return!!aU()&&(e instanceof Element||e instanceof aH(e).Element)}function aq(e){return!!aU()&&(e instanceof HTMLElement||e instanceof aH(e).HTMLElement)}function aW(e){return!!aU()&&"undefined"!=typeof ShadowRoot&&(e instanceof ShadowRoot||e instanceof aH(e).ShadowRoot)}let aK=new Set(["inline","contents"]);function aY(e){let{overflow:t,overflowX:n,overflowY:r,display:o}=a6(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!aK.has(o)}let aX=new Set(["table","td","th"]),aG=[":popover-open",":modal"];function aQ(e){return aG.some(t=>{try{return e.matches(t)}catch(e){return!1}})}let aJ=["transform","translate","scale","rotate","perspective"],a0=["transform","translate","scale","rotate","perspective","filter"],a1=["paint","layout","strict","content"];function a2(e){let t=a3(),n=a$(e)?a6(e):e;return aJ.some(e=>!!n[e]&&"none"!==n[e])||!!n.containerType&&"normal"!==n.containerType||!t&&!!n.backdropFilter&&"none"!==n.backdropFilter||!t&&!!n.filter&&"none"!==n.filter||a0.some(e=>(n.willChange||"").includes(e))||a1.some(e=>(n.contain||"").includes(e))}function a3(){return"undefined"!=typeof CSS&&!!CSS.supports&&CSS.supports("-webkit-backdrop-filter","none")}let a4=new Set(["html","body","#document"]);function a5(e){return a4.has(aF(e))}function a6(e){return aH(e).getComputedStyle(e)}function a9(e){return a$(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function a8(e){if("html"===aF(e))return e;let t=e.assignedSlot||e.parentNode||aW(e)&&e.host||aV(e);return aW(t)?t.host:t}function a7(e,t,n){var r;void 0===t&&(t=[]),void 0===n&&(n=!0);let o=function e(t){let n=a8(t);return a5(n)?t.ownerDocument?t.ownerDocument.body:t.body:aq(n)&&aY(n)?n:e(n)}(e),a=o===(null==(r=e.ownerDocument)?void 0:r.body),i=aH(o);if(a){let e=ie(i);return t.concat(i,i.visualViewport||[],aY(o)?o:[],e&&n?a7(e):[])}return t.concat(o,a7(o,[],n))}function ie(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function it(e){let t=ay(ir,e).current;return t.next=e,aL(t.effect),t}function ir(e){let t={current:e,next:e,effect:()=>{t.current=t.next}};return t}let io="undefined"!=typeof navigator,ia=function(){if(!io)return{platform:"",maxTouchPoints:-1};let e=navigator.userAgentData;return e?.platform?{platform:e.platform,maxTouchPoints:navigator.maxTouchPoints}:{platform:navigator.platform??"",maxTouchPoints:navigator.maxTouchPoints??-1}}(),ii=function(){if(!io)return"";let e=navigator.userAgentData;return e?.platform?e.platform:navigator.platform??""}(),il=function(){if(!io)return"";let e=navigator.userAgentData;return e&&Array.isArray(e.brands)?e.brands.map(({brand:e,version:t})=>`${e}/${t}`).join(" "):navigator.userAgent}(),is="undefined"!=typeof CSS&&!!CSS.supports&&CSS.supports("-webkit-backdrop-filter:none"),ic="MacIntel"===ia.platform&&ia.maxTouchPoints>1||/iP(hone|ad|od)|iOS/.test(ia.platform);io&&/firefox/i.test(il);let iu=io&&/apple/i.test(navigator.vendor),id=io&&/android/i.test(ii)||/android/i.test(il),ip=io&&ii.toLowerCase().startsWith("mac")&&!navigator.maxTouchPoints,ih=il.includes("jsdom/");function im(e){e.preventDefault(),e.stopPropagation()}function ig(e){return 0===e.mozInputSource&&!!e.isTrusted||(id&&e.pointerType?"click"===e.type&&1===e.buttons:0===e.detail&&!e.pointerType)}function iy(e){return!ih&&(!id&&0===e.width&&0===e.height||id&&1===e.width&&1===e.height&&0===e.pressure&&0===e.detail&&"mouse"===e.pointerType||e.width<1&&e.height<1&&0===e.pressure&&0===e.detail&&"touch"===e.pointerType)}function iv(e,t){let n=["mouse","pen"];return t||n.push("",void 0),n.includes(e)}let ib="data-base-ui-focusable",ix="active",iw="selected",i_="ArrowLeft",ij="ArrowRight",ik="ArrowUp",iS="ArrowDown";function iO(e){let t=e.activeElement;for(;t?.shadowRoot?.activeElement!=null;)t=t.shadowRoot.activeElement;return t}function iC(e,t){if(!e||!t)return!1;let n=t.getRootNode?.();if(e.contains(t))return!0;if(n&&aW(n)){let n=t;for(;n;){if(e===n)return!0;n=n.parentNode||n.host}}return!1}function iP(e){return"composedPath"in e?e.composedPath()[0]:e.target}function iE(e,t){return null!=t&&("composedPath"in e?e.composedPath().includes(t):null!=e.target&&t.contains(e.target))}function iT(e){return e?.ownerDocument||document}function iN(e){return aq(e)&&e.matches("input:not([type='hidden']):not([disabled]),[contenteditable]:not([contenteditable='false']),textarea:not([disabled])")}function iI(e){return!!e&&"combobox"===e.getAttribute("role")&&iN(e)}function iL(e){return e?e.hasAttribute(ib)?e:e.querySelector(`[${ib}]`)||e:null}function iA(e){return`data-base-ui-${e}`}let iz=iA("safe-polygon");function iR(e,t,n){if(n&&!iv(n))return 0;if("number"==typeof e)return e;if("function"==typeof e){let n=e();return"number"==typeof n?n:n?.[t]}return e?.[t]}function iD(e){return"function"==typeof e?e():e}function iM(e,t={}){let{open:n,onOpenChange:r,dataRef:o,events:a,elements:i}=e,{enabled:l=!0,delay:s=0,handleClose:c=null,mouseOnly:u=!1,restMs:d=0,move:f=!0}=t,p=C.useContext(az),h=aR(),m=it(c),g=it(s),y=it(n),v=it(d),b=C.useRef(void 0),x=aw(),w=C.useRef(void 0),_=aw(),j=C.useRef(!0),k=C.useRef(!1),S=C.useRef(()=>{}),O=C.useRef(!1),P=ak(()=>{let e=o.current.openEvent?.type;return e?.includes("mouse")&&"mousedown"!==e});C.useEffect(()=>{if(l)return a.on("openchange",e),()=>{a.off("openchange",e)};function e({open:e}){e||(x.clear(),_.clear(),j.current=!0,O.current=!1)}},[l,a,x,_]),C.useEffect(()=>{if(!l||!m.current||!n)return;function e(e){P()&&r(!1,e,"hover")}let t=iT(i.floating).documentElement;return t.addEventListener("mouseleave",e),()=>{t.removeEventListener("mouseleave",e)}},[i.floating,n,r,l,m,P]);let E=C.useCallback((e,t=!0,n="hover")=>{let o=iR(g.current,"close",b.current);o&&!w.current?x.start(o,()=>r(!1,e,n)):t&&(x.clear(),r(!1,e,n))},[g,r,x]),T=ak(()=>{S.current(),w.current=void 0}),N=ak(()=>{if(k.current){let e=iT(i.floating).body;e.style.pointerEvents="",e.removeAttribute(iz),k.current=!1}}),I=ak(()=>!!o.current.openEvent&&["click","mousedown"].includes(o.current.openEvent.type));C.useEffect(()=>{if(l&&a$(i.domReference)){let r=i.domReference,o=i.floating;return n&&r.addEventListener("mouseleave",a),f&&r.addEventListener("mousemove",e,{once:!0}),r.addEventListener("mouseenter",e),r.addEventListener("mouseleave",t),o&&(o.addEventListener("mouseleave",a),o.addEventListener("mouseenter",s),o.addEventListener("mouseleave",c)),()=>{n&&r.removeEventListener("mouseleave",a),f&&r.removeEventListener("mousemove",e),r.removeEventListener("mouseenter",e),r.removeEventListener("mouseleave",t),o&&(o.removeEventListener("mouseleave",a),o.removeEventListener("mouseenter",s),o.removeEventListener("mouseleave",c))}}function e(e){if(x.clear(),j.current=!1,u&&!iv(b.current)||iD(v.current)>0&&!iR(g.current,"open"))return;let t=iR(g.current,"open",b.current);t?x.start(t,()=>{y.current||r(!0,e,"hover")}):n||r(!0,e,"hover")}function t(e){if(I())return void N();S.current();let t=iT(i.floating);if(_.clear(),O.current=!1,m.current&&o.current.floatingContext){n||x.clear(),w.current=m.current({...o.current.floatingContext,tree:p,x:e.clientX,y:e.clientY,onClose(){N(),T(),I()||E(e,!0,"safe-polygon")}});let r=w.current;t.addEventListener("mousemove",r),S.current=()=>{t.removeEventListener("mousemove",r)};return}"touch"===b.current&&iC(i.floating,e.relatedTarget)||E(e)}function a(e){I()||o.current.floatingContext&&m.current?.({...o.current.floatingContext,tree:p,x:e.clientX,y:e.clientY,onClose(){N(),T(),I()||E(e)}})(e)}function s(){x.clear()}function c(e){I()||E(e,!1)}},[i,l,e,u,f,E,T,N,r,n,y,p,g,m,o,I,v,x,_]),aL(()=>{if(l&&n&&m.current?.__options?.blockPointerEvents&&P()){k.current=!0;let e=i.floating;if(a$(i.domReference)&&e){let t=iT(i.floating).body;t.setAttribute(iz,"");let n=i.domReference,r=p?.nodesRef.current.find(e=>e.id===h)?.context?.elements.floating;return r&&(r.style.pointerEvents=""),t.style.pointerEvents="none",n.style.pointerEvents="auto",e.style.pointerEvents="auto",()=>{t.style.pointerEvents="",n.style.pointerEvents="",e.style.pointerEvents=""}}}},[l,n,h,i,p,m,P]),aL(()=>{n||(b.current=void 0,O.current=!1,T(),N())},[n,T,N]),C.useEffect(()=>()=>{T(),x.clear(),_.clear(),N()},[l,i.domReference,T,N,x,_]);let L=C.useMemo(()=>{function e(e){b.current=e.pointerType}return{onPointerDown:e,onPointerEnter:e,onMouseMove(e){let{nativeEvent:t}=e;function o(){j.current||y.current||r(!0,t,"hover")}u&&!iv(b.current)||n||0===iD(v.current)||O.current&&e.movementX**2+e.movementY**2<2||(_.clear(),"touch"===b.current?o():(O.current=!0,_.start(iD(v.current),o)))}}},[u,r,n,y,v,_]);return C.useMemo(()=>l?{reference:L}:{},[l,L])}function iZ(e,t,n=!0){return e.filter(e=>e.parentId===t&&(!n||e.context?.open)).flatMap(t=>[t,...iZ(e,t.id,n)])}function iU(e,t){let n=[],r=e.find(e=>e.id===t)?.parentId;for(;r;){let t=e.find(e=>e.id===r);r=t?.parentId,t&&(n=n.concat(t))}return n}function iF(e,t){let[n,r]=e,o=!1,a=t.length;for(let e=0,i=a-1;e<a;i=e++){let[a,l]=t[e]||[0,0],[s,c]=t[i]||[0,0];l>=r!=c>=r&&n<=(s-a)*(r-l)/(c-l)+a&&(o=!o)}return o}function iH(e={}){let{buffer:t=.5,blockPointerEvents:n=!1,requireIntent:r=!0}=e,o=new ax,a=!1,i=null,l=null,s="undefined"!=typeof performance?performance.now():0,c=({x:e,y:n,placement:c,elements:u,onClose:d,nodeId:f,tree:p})=>function(h){var m,g;function y(){o.clear(),d()}if(o.clear(),!u.domReference||!u.floating||null==c||null==e||null==n)return;let{clientX:v,clientY:b}=h,x=[v,b],w=iP(h),_="mouseleave"===h.type,j=iC(u.floating,w),k=iC(u.domReference,w),S=u.domReference.getBoundingClientRect(),O=u.floating.getBoundingClientRect(),C=c.split("-")[0],P=e>O.right-O.width/2,E=n>O.bottom-O.height/2,T=(m=x,g=S,m[0]>=g.x&&m[0]<=g.x+g.width&&m[1]>=g.y&&m[1]<=g.y+g.height),N=O.width>S.width,I=O.height>S.height,L=(N?S:O).left,A=(N?S:O).right,z=(I?S:O).top,R=(I?S:O).bottom;if(j&&(a=!0,!_))return;if(k&&(a=!1),k&&!_){a=!0;return}if(_&&a$(h.relatedTarget)&&iC(u.floating,h.relatedTarget)||p&&iZ(p.nodesRef.current,f).some(({context:e})=>e?.open))return;if("top"===C&&n>=S.bottom-1||"bottom"===C&&n<=S.top+1||"left"===C&&e>=S.right-1||"right"===C&&e<=S.left+1)return y();let D=[];switch(C){case"top":D=[[L,S.top+1],[L,O.bottom-1],[A,O.bottom-1],[A,S.top+1]];break;case"bottom":D=[[L,O.top+1],[L,S.bottom-1],[A,S.bottom-1],[A,O.top+1]];break;case"left":D=[[O.right-1,R],[O.right-1,z],[S.left+1,z],[S.left+1,R]];break;case"right":D=[[S.right-1,R],[S.right-1,z],[O.left+1,z],[O.left+1,R]]}if(!iF([v,b],D)){if(a&&!T)return y();if(!_&&r){let e=function(e,t){let n=performance.now(),r=n-s;if(null===i||null===l||0===r)return i=e,l=t,s=n,null;let o=e-i,a=t-l,c=Math.sqrt(o*o+a*a);return i=e,l=t,s=n,c/r}(h.clientX,h.clientY);if(null!==e&&e<.1)return y()}iF([v,b],function([e,n]){switch(C){case"top":{let r=[[O.left,P||N?O.bottom-t:O.top],[O.right,P?N?O.bottom-t:O.top:O.bottom-t]];return[[N?e+t/2:P?e+4*t:e-4*t,n+t+1],[N?e-t/2:P?e+4*t:e-4*t,n+t+1],...r]}case"bottom":{let r=[[O.left,P||N?O.top+t:O.bottom],[O.right,P?N?O.top+t:O.bottom:O.top+t]];return[[N?e+t/2:P?e+4*t:e-4*t,n-t],[N?e-t/2:P?e+4*t:e-4*t,n-t],...r]}case"left":return[[E||I?O.right-t:O.left,O.top],[E?I?O.right-t:O.left:O.right-t,O.bottom],[e+t+1,I?n+t/2:E?n+4*t:n-4*t],[e+t+1,I?n-t/2:E?n+4*t:n-4*t]];case"right":{let r=[[E||I?O.left+t:O.right,O.top],[E?I?O.left+t:O.right:O.left+t,O.bottom]];return[[e-t,I?n+t/2:E?n+4*t:n-4*t],[e-t,I?n-t/2:E?n+4*t:n-4*t],...r]}default:return[]}}([e,n]))?!a&&r&&o.start(40,y):y()}};return c.__options={blockPointerEvents:n},c}let iV=ip&&iu;function iB(e,t={}){let{open:n,onOpenChange:r,events:o,dataRef:a,elements:i}=e,{enabled:l=!0,visibleOnly:s=!0}=t,c=C.useRef(!1),u=aw(),d=C.useRef(!0);C.useEffect(()=>{if(!l)return;let e=aH(i.domReference);function t(){!n&&aq(i.domReference)&&i.domReference===iO(iT(i.domReference))&&(c.current=!0)}function r(){d.current=!0}function o(){d.current=!1}return e.addEventListener("blur",t),iV&&(e.addEventListener("keydown",r,!0),e.addEventListener("pointerdown",o,!0)),()=>{e.removeEventListener("blur",t),iV&&(e.removeEventListener("keydown",r,!0),e.removeEventListener("pointerdown",o,!0))}},[i.domReference,n,l]),C.useEffect(()=>{if(l)return o.on("openchange",e),()=>{o.off("openchange",e)};function e({reason:e}){("reference-press"===e||"escape-key"===e)&&(c.current=!0)}},[o,l]);let f=C.useMemo(()=>({onMouseLeave(){c.current=!1},onFocus(e){if(c.current)return;let t=iP(e.nativeEvent);if(s&&a$(t)){if(iV&&!e.relatedTarget){if(!d.current&&!iN(t))return}else if(!function(e){if(!e||ih)return!0;try{return e.matches(":focus-visible")}catch(e){return!0}}(t))return}r(!0,e.nativeEvent,"focus")},onBlur(e){c.current=!1;let t=e.relatedTarget,n=e.nativeEvent,o=a$(t)&&t.hasAttribute(iA("focus-guard"))&&"outside"===t.getAttribute("data-type");u.start(0,()=>{let e=iO(i.domReference?i.domReference.ownerDocument:document);!t&&e===i.domReference||iC(a.current.floatingContext?.refs.floating.current,e)||iC(i.domReference,e)||o||r(!1,n,"focus")})}}),[a,i.domReference,r,s,u]);return C.useMemo(()=>l?{reference:f}:{},[l,f])}let i$=new class{callbacks=[];callbacksCount=0;nextId=1;startId=1;isScheduled=!1;tick=e=>{this.isScheduled=!1;let t=this.callbacks,n=this.callbacksCount;if(this.callbacks=[],this.callbacksCount=0,this.startId=this.nextId,n>0)for(let n=0;n<t.length;n+=1)t[n]?.(e)};request(e){let t=this.nextId;return this.nextId+=1,this.callbacks.push(e),this.callbacksCount+=1,this.isScheduled||(requestAnimationFrame(this.tick),this.isScheduled=!0),t}cancel(e){let t=e-this.startId;t<0||t>=this.callbacks.length||(this.callbacks[t]=null,this.callbacksCount-=1)}};class iq{static create(){return new iq}static request(e){return i$.request(e)}static cancel(e){return i$.cancel(e)}currentId=null;request(e){this.cancel(),this.currentId=i$.request(()=>{this.currentId=null,e()})}cancel=()=>{null!==this.currentId&&(i$.cancel(this.currentId),this.currentId=null)};disposeEffect=()=>this.cancel}function iW(){let e=ay(iq.create).current;return ab(e.disposeEffect),e}let iK={style:{transition:"none"}},iY={},iX=[],iG={fallbackAxisSide:"none"},iQ={fallbackAxisSide:"end"},iJ={intentional:"onClick",sloppy:"onPointerDown"};function i0(e){return{escapeKey:"boolean"==typeof e?e:e?.escapeKey??!1,outsidePress:"boolean"==typeof e?e:e?.outsidePress??!0}}function i1(e,t={}){let{open:n,onOpenChange:r,elements:o,dataRef:a}=e,{enabled:i=!0,escapeKey:l=!0,outsidePress:s=!0,outsidePressEvent:c="sloppy",referencePress:u=!1,referencePressEvent:d="sloppy",ancestorScroll:f=!1,bubbles:p,capture:h}=t,m=C.useContext(az),g=ak("function"==typeof s?s:()=>!1),y="function"==typeof s?g:s,v=C.useRef(!1),{escapeKey:b,outsidePress:x}=i0(p),{escapeKey:w,outsidePress:_}=i0(h),j=C.useRef(null),k=aw(),S=aw(),O=C.useRef(!1),P=C.useRef(""),E=ak(e=>{P.current=e.pointerType}),T=ak(()=>{let e=P.current;return"string"==typeof c?c:c["pen"!==e&&e?e:"mouse"]}),N=ak(e=>{if(!n||!i||!l||"Escape"!==e.key||O.current)return;let t=a.current.floatingContext?.nodeId,o=m?iZ(m.nodesRef.current,t):[];if(!b&&(e.stopPropagation(),o.length>0)){let e=!0;if(o.forEach(t=>{t.context?.open&&!t.context.dataRef.current.__escapeKeyBubbles&&(e=!1)}),!e)return}r(!1,"nativeEvent"in e?e.nativeEvent:e,"escape-key")}),I=ak(e=>{let t=T();return"intentional"===t&&"click"!==e.type||"sloppy"===t&&"click"===e.type}),L=ak(e=>{let t=()=>{N(e),iP(e)?.removeEventListener("keydown",t)};iP(e)?.addEventListener("keydown",t)}),A=ak(e=>{if(I(e))return;let t=a.current.insideReactTree;a.current.insideReactTree=!1;let n=v.current;if(v.current=!1,"intentional"===T()&&n||t||"function"==typeof y&&!y(e))return;let i=iP(e),l=`[${iA("inert")}]`,s=iT(o.floating).querySelectorAll(l),c=a$(i)?i:null;for(;c&&!a5(c);){let e=a8(c);if(a5(e)||!a$(e))break;c=e}if(s.length&&a$(i)&&!i.matches("html,body")&&!iC(i,o.floating)&&Array.from(s).every(e=>!iC(c,e)))return;if(aq(i)){let t=a5(i),n=a6(i),r=/auto|scroll/,o=t||r.test(n.overflowX),a=t||r.test(n.overflowY),l=o&&i.clientWidth>0&&i.scrollWidth>i.clientWidth,s=a&&i.clientHeight>0&&i.scrollHeight>i.clientHeight,c="rtl"===n.direction,u=s&&(c?e.offsetX<=i.offsetWidth-i.clientWidth:e.offsetX>i.clientWidth),d=l&&e.offsetY>i.clientHeight;if(u||d)return}let u=a.current.floatingContext?.nodeId,d=m&&iZ(m.nodesRef.current,u).some(t=>iE(e,t.context?.elements.floating));if(iE(e,o.floating)||iE(e,o.domReference)||d)return;let f=m?iZ(m.nodesRef.current,u):[];if(f.length>0){let e=!0;if(f.forEach(t=>{t.context?.open&&!t.context.dataRef.current.__outsidePressBubbles&&(e=!1)}),!e)return}r(!1,e,"outside-press")}),z=ak(e=>{if(!("sloppy"!==T()||!n||!i||iE(e,o.floating)||iE(e,o.domReference))){if("touch"===e.pointerType){j.current={startTime:Date.now(),startX:e.clientX,startY:e.clientY,dismissOnPointerUp:!1,dismissOnMouseDown:!0},k.start(1e3,()=>{j.current&&(j.current.dismissOnPointerUp=!1,j.current.dismissOnMouseDown=!1)});return}A(e)}}),R=ak(e=>{if(I(e)||(k.clear(),"mousedown"===e.type&&j.current&&!j.current.dismissOnMouseDown))return;let t=()=>{"pointerdown"===e.type?z(e):A(e),iP(e)?.removeEventListener(e.type,t)};iP(e)?.addEventListener(e.type,t)}),D=ak(e=>{if("sloppy"!==T()||"touch"!==e.pointerType||!j.current||iE(e,o.floating)||iE(e,o.domReference))return;let t=Math.abs(e.clientX-j.current.startX),n=Math.abs(e.clientY-j.current.startY),r=Math.sqrt(t*t+n*n);r>5&&(j.current.dismissOnPointerUp=!0),r>10&&(A(e),k.clear(),j.current=null)}),M=ak(e=>{"sloppy"!==T()||"touch"!==e.pointerType||!j.current||iE(e,o.floating)||iE(e,o.domReference)||(j.current.dismissOnPointerUp&&A(e),k.clear(),j.current=null)});C.useEffect(()=>{if(!n||!i)return;a.current.__escapeKeyBubbles=b,a.current.__outsidePressBubbles=x;let e=new ax;function t(e){r(!1,e,"ancestor-scroll")}function s(){e.clear(),O.current=!0}function c(){e.start(5*!!a3(),()=>{O.current=!1})}let u=iT(o.floating);u.addEventListener("pointerdown",E,!0),l&&(u.addEventListener("keydown",w?L:N,w),u.addEventListener("compositionstart",s),u.addEventListener("compositionend",c)),y&&(u.addEventListener("click",_?R:A,_),u.addEventListener("pointerdown",_?R:A,_),u.addEventListener("pointermove",D,_),u.addEventListener("pointerup",M,_),u.addEventListener("mousedown",R,_));let d=[];return f&&(a$(o.domReference)&&(d=a7(o.domReference)),a$(o.floating)&&(d=d.concat(a7(o.floating))),!a$(o.reference)&&o.reference&&o.reference.contextElement&&(d=d.concat(a7(o.reference.contextElement)))),(d=d.filter(e=>e!==u.defaultView?.visualViewport)).forEach(e=>{e.addEventListener("scroll",t,{passive:!0})}),()=>{u.removeEventListener("pointerdown",E,!0),l&&(u.removeEventListener("keydown",w?L:N,w),u.removeEventListener("compositionstart",s),u.removeEventListener("compositionend",c)),y&&(u.removeEventListener("click",_?R:A,_),u.removeEventListener("pointerdown",_?R:A,_),u.removeEventListener("pointermove",D,_),u.removeEventListener("pointerup",M,_),u.removeEventListener("mousedown",R,_)),d.forEach(e=>{e.removeEventListener("scroll",t)}),e.clear()}},[a,o,l,y,c,n,r,f,i,b,x,N,w,L,A,_,R,z,D,M,E]),C.useEffect(()=>{a.current.insideReactTree=!1},[a,y]);let Z=C.useMemo(()=>({onKeyDown:N,...u&&{[iJ[d]]:e=>{r(!1,e.nativeEvent,"reference-press")},..."intentional"!==d&&{onClick(e){r(!1,e.nativeEvent,"reference-press")}}}}),[N,r,u,d]),U=ak(e=>{let t=iP(e.nativeEvent);iC(o.floating,t)&&(v.current=!0)}),F=ak(()=>{a.current.insideReactTree=!0,S.start(0,()=>{a.current.insideReactTree=!1})}),H=C.useMemo(()=>({onKeyDown:N,onMouseDown:U,onMouseUp:U,onPointerDownCapture:F,onMouseDownCapture:F,onClickCapture:F}),[N,U,F]);return C.useMemo(()=>i?{reference:Z,floating:H}:{},[i,Z,H])}let i2=new Map([["select","listbox"],["combobox","listbox"],["label",!1]]),i3=["top","right","bottom","left"],i4=Math.min,i5=Math.max,i6=Math.round,i9=Math.floor,i8=e=>({x:e,y:e}),i7={left:"right",right:"left",bottom:"top",top:"bottom"},le={start:"end",end:"start"};function lt(e,t){return"function"==typeof e?e(t):e}function ln(e){return e.split("-")[0]}function lr(e){return e.split("-")[1]}function lo(e){return"x"===e?"y":"x"}function la(e){return"y"===e?"height":"width"}let li=new Set(["top","bottom"]);function ll(e){return li.has(ln(e))?"y":"x"}function ls(e){return e.replace(/start|end/g,e=>le[e])}let lc=["left","right"],lu=["right","left"],ld=["top","bottom"],lf=["bottom","top"];function lp(e){return e.replace(/left|right|bottom|top/g,e=>i7[e])}function lh(e){return"number"!=typeof e?{top:0,right:0,bottom:0,left:0,...e}:{top:e,right:e,bottom:e,left:e}}function lm(e){let{x:t,y:n,width:r,height:o}=e;return{width:r,height:o,top:n,left:t,right:t+r,bottom:n+o,x:t,y:n}}function lg(e,t,n){return Math.floor(e/t)!==n}function ly(e,t){return t<0||t>=e.current.length}function lv(e,t){return lx(e,{disabledIndices:t})}function lb(e,t){return lx(e,{decrement:!0,startingIndex:e.current.length,disabledIndices:t})}function lx(e,{startingIndex:t=-1,decrement:n=!1,disabledIndices:r,amount:o=1}={}){let a=t;do a+=n?-o:o;while(a>=0&&a<=e.current.length-1&&lw(e,a,r));return a}function lw(e,t,n){if("function"==typeof n)return n(t);if(n)return n.includes(t);let r=e.current[t];return null==r||r.hasAttribute("disabled")||"true"===r.getAttribute("aria-disabled")}let l_=0;function lj(e,t={}){let{preventScroll:n=!1,cancelPrevious:r=!0,sync:o=!1}=t;r&&cancelAnimationFrame(l_);let a=()=>e?.focus({preventScroll:n});o?a():l_=requestAnimationFrame(a)}function lk(e,t,n){switch(e){case"vertical":return t;case"horizontal":return n;default:return t||n}}function lS(e,t){return lk(t,e===ik||e===iS,e===i_||e===ij)}function lO(e,t,n){return lk(t,e===iS,n?e===i_:e===ij)||"Enter"===e||" "===e||""===e}function lC(e=[]){let t=e.map(e=>e?.reference),n=e.map(e=>e?.floating),r=e.map(e=>e?.item),o=C.useCallback(t=>lP(t,e,"reference"),t),a=C.useCallback(t=>lP(t,e,"floating"),n),i=C.useCallback(t=>lP(t,e,"item"),r);return C.useMemo(()=>({getReferenceProps:o,getFloatingProps:a,getItemProps:i}),[o,a,i])}function lP(e,t,n){let r=new Map,o="item"===n,a={};for(let t in"floating"===n&&(a.tabIndex=-1,a[ib]=""),e)o&&e&&(t===ix||t===iw)||(a[t]=e[t]);for(let i=0;i<t.length;i+=1){let l,s=t[i]?.[n];(l="function"==typeof s?e?s(e):null:s)&&lE(a,l,o,r)}return lE(a,e,o,r),a}function lE(e,t,n,r){for(let o in t){let a=t[o];n&&(o===ix||o===iw)||(o.startsWith("on")?(r.has(o)||r.set(o,[]),"function"==typeof a&&(r.get(o)?.push(a),e[o]=(...e)=>r.get(o)?.map(t=>t(...e)).find(e=>void 0!==e))):e[o]=a)}}let lT=C.createContext(void 0);function lN(e){let t=C.useContext(lT);if(void 0===t&&!e)throw Error("Base UI: MenuRootContext is missing. Menu parts must be placed within <Menu.Root>.");return t}let lI=C.createContext(null);function lL(e,t=!1,n=!1){let[r,o]=C.useState(e&&t?"idle":void 0),[a,i]=C.useState(e);return e&&!a&&(i(!0),o("starting")),e||!a||"ending"===r||n||o("ending"),e||a||"ending"!==r||o(void 0),aL(()=>{if(!e&&a&&"ending"!==r&&n){let e=iq.request(()=>{o("ending")});return()=>{iq.cancel(e)}}},[e,a,r,n]),aL(()=>{if(!e||t)return;let n=iq.request(()=>{ex.flushSync(()=>{o(void 0)})});return()=>{iq.cancel(n)}},[t,e]),aL(()=>{if(!e||!t)return;e&&a&&"idle"!==r&&o("starting");let n=iq.request(()=>{o("idle")});return()=>{iq.cancel(n)}},[t,e,a,o,r]),C.useMemo(()=>({mounted:a,setMounted:i,transitionStatus:r}),[a,r])}function lA(e){let{enabled:t=!0,open:n,ref:r,onComplete:o}=e,a=it(n),i=ak(o),l=function(e,t=!1){let n=iW();return ak((r,o=null)=>{let a;if(n.cancel(),null!=e){if("current"in e){if(null==e.current)return;a=e.current}else a=e;"function"!=typeof a.getAnimations||globalThis.BASE_UI_ANIMATIONS_DISABLED?r():n.request(()=>{function e(){a&&Promise.allSettled(a.getAnimations().map(e=>e.finished)).then(()=>{null!=o&&o.aborted||ex.flushSync(r)})}t?n.request(e):e()})}})}(r,n);C.useEffect(()=>{t&&l(()=>{n===a.current&&i()})},[t,n,i,l,a])}let lz=C.createContext(void 0);function lR(e=!0){let t=C.useContext(lz);if(void 0===t&&!e)throw Error("Base UI: DirectionContext is missing.");return t?.direction??"ltr"}function lD(e){return e?.ownerDocument||document}let lM=()=>{},lZ={},lU={},lF="";class lH{lockCount=0;restore=null;timeoutLock=ax.create();timeoutUnlock=ax.create();acquire(e){return this.lockCount+=1,1===this.lockCount&&null===this.restore&&this.timeoutLock.start(0,()=>this.lock(e)),this.release}release=()=>{this.lockCount-=1,0===this.lockCount&&this.restore&&this.timeoutUnlock.start(0,this.unlock)};unlock=()=>{0===this.lockCount&&this.restore&&(this.restore?.(),this.restore=null)};lock(e){let t,n;if(0===this.lockCount||null!==this.restore)return;let r=lD(e).documentElement,o=aH(r).getComputedStyle(r).overflowY;if("hidden"===o||"clip"===o){this.restore=lM;return}let a=ic||!function(e){if("undefined"==typeof document)return!1;let t=lD(e);return aH(t).innerWidth-t.documentElement.clientWidth>0}(e);this.restore=a?(n=(t=lD(e).documentElement).style.overflow,t.style.overflow="hidden",()=>{t.style.overflow=n}):function(e){let t=lD(e),n=t.documentElement,r=t.body,o=aH(n),a=0,i=0,l=iq.create();if(is&&(o.visualViewport?.scale??1)!==1)return()=>{};function s(){let e=o.getComputedStyle(n),t=o.getComputedStyle(r);a=n.scrollTop,i=n.scrollLeft,lZ={scrollbarGutter:n.style.scrollbarGutter,overflowY:n.style.overflowY,overflowX:n.style.overflowX},lF=n.style.scrollBehavior,lU={position:r.style.position,height:r.style.height,width:r.style.width,boxSizing:r.style.boxSizing,overflowY:r.style.overflowY,overflowX:r.style.overflowX,scrollBehavior:r.style.scrollBehavior};let l="undefined"!=typeof CSS&&CSS.supports?.("scrollbar-gutter","stable"),s=n.scrollHeight>n.clientHeight,c=n.scrollWidth>n.clientWidth,u="scroll"===e.overflowY||"scroll"===t.overflowY,d="scroll"===e.overflowX||"scroll"===t.overflowX,f=Math.max(0,o.innerWidth-n.clientWidth),p=Math.max(0,o.innerHeight-n.clientHeight),h=parseFloat(t.marginTop)+parseFloat(t.marginBottom),m=parseFloat(t.marginLeft)+parseFloat(t.marginRight);Object.assign(n.style,{scrollbarGutter:"stable",overflowY:!l&&(s||u)?"scroll":"hidden",overflowX:!l&&(c||d)?"scroll":"hidden"}),Object.assign(r.style,{position:"relative",height:h||p?`calc(100dvh - ${h+p}px)`:"100dvh",width:m||f?`calc(100vw - ${m+f}px)`:"100vw",boxSizing:"border-box",overflow:"hidden",scrollBehavior:"unset"}),r.scrollTop=a,r.scrollLeft=i,n.setAttribute("data-base-ui-scroll-locked",""),n.style.scrollBehavior="unset"}function c(){Object.assign(n.style,lZ),Object.assign(r.style,lU),n.scrollTop=a,n.scrollLeft=i,n.removeAttribute("data-base-ui-scroll-locked"),n.style.scrollBehavior=lF}function u(){c(),l.request(s)}return s(),o.addEventListener("resize",u),()=>{l.cancel(),c(),o.removeEventListener("resize",u)}}(e)}}let lV=new lH;function lB(e){if(e)return({"focus-out":"focus-out","escape-key":"escape-key","outside-press":"outside-press","list-navigation":"list-navigation",click:"trigger-press",hover:"trigger-hover",focus:"trigger-focus","reference-press":"trigger-press","safe-polygon":"trigger-hover","ancestor-scroll":void 0})[e]}let l$=C.createContext(void 0);function lq(e=!0){let t=C.useContext(l$);if(void 0===t&&!e)throw Error("Base UI: ContextMenuRootContext is missing. ContextMenu parts must be placed within <ContextMenu.Root>.");return t}let lW=C.createContext(!1);function lK(e,t){return e&&!t?e:!e&&t?t:e||t?{...e,...t}:void 0}let lY={};function lX(e,t,n,r,o){let a={...lJ(e,lY)};return t&&(a=lG(a,t)),n&&(a=lG(a,n)),r&&(a=lG(a,r)),o&&(a=lG(a,o)),a}function lG(e,t){return lQ(t)?t(e):function(e,t){if(!t)return e;for(let n in t){let r=t[n];switch(n){case"style":e[n]=lK(e.style,r);break;case"className":e[n]=l1(e.className,r);break;default:!function(e,t){let n=e.charCodeAt(0),r=e.charCodeAt(1),o=e.charCodeAt(2);return 111===n&&110===r&&o>=65&&o<=90&&("function"==typeof t||void 0===t)}(n,r)?e[n]=r:e[n]=function(e,t){return t?e?n=>{var r;if(null!=(r=n)&&"object"==typeof r&&"nativeEvent"in r){l0(n);let r=t(n);return n.baseUIHandlerPrevented||e?.(n),r}let o=t(n);return e?.(n),o}:t:e}(e[n],r)}}return e}(e,t)}function lQ(e){return"function"==typeof e}function lJ(e,t){return lQ(e)?e(t):e??lY}function l0(e){return e.preventBaseUIHandler=()=>{e.baseUIHandlerPrevented=!0},e}function l1(e,t){return t?e?t+" "+e:t:e}let l2=[],l3={current:!1},l4=function(e){let t,n,{children:r,open:o,onOpenChange:a,onOpenChangeComplete:i,defaultOpen:l=!1,disabled:s=!1,modal:c,loop:u=!0,orientation:d="vertical",actionsRef:f,openOnHover:p,delay:h=100,closeDelay:m=0,closeParentOnEsc:g=!0}=e,[y,v]=C.useState(null),[b,x]=C.useState(null),[w,_]=C.useState(),[j,k]=C.useState(!0),[O,P]=C.useState(null),[E,T]=C.useState(null),[N,I]=C.useState(!0),[L,A]=C.useState(!1),z=C.useRef(null),R=C.useRef(null),D=C.useRef(null),M=C.useRef([]),Z=C.useRef([]),U=aw(),F=lq(!0),H=C.useContext(lW);{let e=lN(!0),n=function(e){let t=C.useContext(lI);if(null===t&&!e)throw Error("Base UI: MenubarContext is missing. Menubar parts must be placed within <Menubar>.");return t}(!0);t=H&&e?{type:"menu",context:e}:n?{type:"menubar",context:n}:F?{type:"context-menu",context:F}:{type:void 0}}let V=aN();void 0!==t.type&&(V=t.context.rootId);let B=(void 0===t.type||"context-menu"===t.type)&&(c??!0),$="menu"===t.type?t.context.allowMouseEnter:L,q="menu"===t.type?t.context.setAllowMouseEnter:A,W=p??("menu"===t.type||"menubar"===t.type&&t.context.hasSubmenuOpen),[K,Y]=aC({controlled:o,default:l,name:"MenuRoot",state:"open"}),X=C.useRef("context-menu"!==t.type),G=aw();C.useEffect(()=>{if(K||(z.current=null),"context-menu"===t.type){if(!K){G.clear(),X.current=!1;return}G.start(500,()=>{X.current=!0})}},[G,K,t.type]);let Q=C.useCallback(e=>{D.current=e,x(e)},[]),{mounted:J,setMounted:ee,transitionStatus:et}=lL(K),{openMethod:en,triggerProps:er,reset:eo}=function(e){var t;let n,r,[o,a]=C.useState(null),i=ak((t,n)=>{e||a(n)}),l=ak(()=>{a(null)}),{onClick:s,onPointerDown:c}=(t=i,n=C.useRef(""),r=C.useCallback(e=>{e.defaultPrevented||(n.current=e.pointerType,t(e,e.pointerType))},[t]),{onClick:C.useCallback(e=>{0===e.detail?t(e,"keyboard"):("pointerType"in e&&t(e,e.pointerType),t(e,n.current),n.current="")},[t]),onPointerDown:r});return C.useMemo(()=>({openMethod:o,reset:l,triggerProps:{onClick:s,onPointerDown:c}}),[o,l,s,c])}(K);!function(e){let{enabled:t=!0,mounted:n,open:r,referenceElement:o=null}=e;aL(()=>{if(t&&is&&n&&!r){let e=lD(o),t=e.body.style.userSelect,n=e.body.style.webkitUserSelect;return e.body.style.userSelect="none",e.body.style.webkitUserSelect="none",()=>{e.body.style.userSelect=t,e.body.style.webkitUserSelect=n}}},[t,n,r,o]),aL(()=>{if(t)return lV.acquire(o)},[t,o])}({enabled:K&&B&&"trigger-hover"!==E&&"touch"!==en,mounted:J,open:K,referenceElement:b}),K||j||k(!0);let ea=ak(()=>{ee(!1),I(!0),q(!1),i?.(!1),eo()});lA({enabled:!f,open:K,ref:R,onComplete(){K||ea()}});let ei=C.useRef(!0),el=aw(),es=ak((e,n,r)=>{if(K===e||!1===e&&n?.type==="click"&&"touch"===n.pointerType&&!ei.current)return;if(!e&&null!==O){let e=M.current[O];queueMicrotask(()=>{e?.setAttribute("tabindex","-1")})}e&&"trigger-focus"===r?(ei.current=!1,el.start(300,()=>{ei.current=!0})):(ei.current=!0,el.clear());let o=("trigger-press"===r||"item-press"===r)&&0===n.detail&&n?.isTrusted,i=!e&&("escape-key"===r||null==r);function l(){a?.(e,n,r),Y(e),T(r??null),z.current=n??null}"trigger-hover"===r?(I(!0),U.start(500,()=>{I(!1)}),ex.flushSync(l)):l(),"menubar"===t.type&&("trigger-focus"===r||"focus-out"===r||"trigger-hover"===r||"list-navigation"===r||"sibling-open"===r)?_("group"):o||i?_(o?"click":"dismiss"):_(void 0)});C.useImperativeHandle(f,()=>({unmount:ea}),[ea]),"context-menu"===t.type&&(n=t.context),C.useImperativeHandle(n?.positionerRef,()=>b,[b]),C.useImperativeHandle(n?.actionsRef,()=>({setOpen:es}),[es]),C.useEffect(()=>{K||U.clear()},[U,K]);let ec=aZ({elements:{reference:y,floating:b},open:K,onOpenChange(e,t,n){es(e,t,lB(n))}}),eu=iM(ec,{enabled:j&&W&&!s&&"context-menu"!==t.type&&("menubar"!==t.type||t.context.hasSubmenuOpen&&!K),handleClose:iH({blockPointerEvents:!0}),mouseOnly:!0,move:"menu"===t.type,restMs:void 0===t.type||"menu"===t.type&&$?h:void 0,delay:"menu"===t.type?{open:$?h:1e10,close:m}:{close:m}}),ed=iB(ec,{enabled:!s&&!K&&"menubar"===t.type&&t.context.hasSubmenuOpen&&!F}),ef=function(e,t={}){let{open:n,onOpenChange:r,dataRef:o}=e,{enabled:a=!0,event:i="click",toggle:l=!0,ignoreMouse:s=!1,stickIfOpen:c=!0}=t,u=C.useRef(void 0),d=iW(),f=C.useMemo(()=>({onPointerDown(e){u.current=e.pointerType},onMouseDown(e){let t=u.current,a=e.nativeEvent;if(0!==e.button||"click"===i||iv(t,!0)&&s)return;let f=o.current.openEvent,p=f?.type,h=!(n&&l&&(!f||!c||"click"===p||"mousedown"===p));d.request(()=>{r(h,a,"click")})},onClick(e){let t=u.current;if("mousedown"===i&&t){u.current=void 0;return}if(iv(t,!0)&&s)return;let a=o.current.openEvent,d=a?.type;r(!(n&&l&&(!a||!c||"click"===d||"mousedown"===d||"keydown"===d||"keyup"===d)),e.nativeEvent,"click")},onKeyDown(){u.current=void 0}}),[o,i,s,r,n,c,l,d]);return C.useMemo(()=>a?{reference:f}:iY,[a,f])}(ec,{enabled:!s&&"context-menu"!==t.type,event:K&&"menubar"===t.type?"click":"mousedown",toggle:!W||"menu"!==t.type,ignoreMouse:W&&"menu"===t.type,stickIfOpen:void 0===t.type&&N}),ep=i1(ec,{enabled:!s,bubbles:g&&"menu"===t.type,outsidePress:()=>"context-menu"!==t.type||z.current?.type==="contextmenu"||X.current}),eh=function(e,t={}){let{open:n,elements:r,floatingId:o}=e,{enabled:a=!0,role:i="dialog"}=t,l=aN(),s=r.domReference?.id||l,c=C.useMemo(()=>iL(r.floating)?.id||o,[r.floating,o]),u=i2.get(i)??i,d=null!=aR(),f=C.useMemo(()=>"tooltip"===u||"label"===i?{[`aria-${"label"===i?"labelledby":"describedby"}`]:n?c:void 0}:{"aria-expanded":n?"true":"false","aria-haspopup":"alertdialog"===u?"dialog":u,"aria-controls":n?c:void 0,..."listbox"===u&&{role:"combobox"},..."menu"===u&&{id:s},..."menu"===u&&d&&{role:"menuitem"},..."select"===i&&{"aria-autocomplete":"none"},..."combobox"===i&&{"aria-autocomplete":"list"}},[u,c,d,n,s,i]),p=C.useMemo(()=>{let e={id:c,...u&&{role:u}};return"tooltip"===u||"label"===i?e:{...e,..."menu"===u&&{"aria-labelledby":s}}},[u,c,s,i]),h=C.useCallback(({active:e,selected:t})=>{let n={role:"option",...e&&{id:`${c}-fui-option`}};switch(i){case"select":case"combobox":return{...n,"aria-selected":t}}return{}},[c,i]);return C.useMemo(()=>a?{reference:f,floating:p,item:h}:{},[a,f,p,h])}(ec,{role:"menu"}),em=lR(),eg=function(e,t){let{open:n,onOpenChange:r,elements:o,floatingId:a}=e,{listRef:i,activeIndex:l,onNavigate:s=()=>{},enabled:c=!0,selectedIndex:u=null,allowEscape:d=!1,loop:f=!1,nested:p=!1,rtl:h=!1,virtual:m=!1,focusItemOnOpen:g="auto",focusItemOnHover:y=!0,openOnArrowKeyDown:v=!0,disabledIndices:b,orientation:x="vertical",parentOrientation:w,cols:_=1,scrollItemIntoView:j=!0,virtualItemRef:k,itemSizes:S,dense:O=!1}=t,P=it(iL(o.floating)),E=aR(),T=C.useContext(az);aL(()=>{e.dataRef.current.orientation=x},[e,x]);let N=iI(o.domReference),I=C.useRef(g),L=C.useRef(u??-1),A=C.useRef(null),z=C.useRef(!0),R=ak(()=>{s(-1===L.current?null:L.current)}),D=C.useRef(R),M=C.useRef(!!o.floating),Z=C.useRef(n),U=C.useRef(!1),F=C.useRef(!1),H=it(b),V=it(n),B=it(j),$=it(u),[q,W]=C.useState(),K=ak(()=>{function e(e){m?(e.id?.endsWith("-fui-option")&&(e.id=`${a}-${Math.random().toString(16).slice(2,10)}`),W(e.id),T?.events.emit("virtualfocus",e),k&&(k.current=e)):lj(e,{sync:U.current,preventScroll:!0})}let t=i.current[L.current],n=F.current;t&&e(t),(U.current?e=>e():requestAnimationFrame)(()=>{let r=i.current[L.current]||t;if(!r)return;t||e(r);let o=B.current;o&&X&&(n||!z.current)&&r.scrollIntoView?.("boolean"==typeof o?{block:"nearest",inline:"nearest"}:o)})});aL(()=>{c&&(n&&o.floating?I.current&&null!=u&&(F.current=!0,L.current=u,R()):M.current&&(L.current=-1,D.current()))},[c,n,o.floating,u,R]),aL(()=>{if(c&&n&&o.floating)if(null==l){if(U.current=!1,null!=$.current)return;if(M.current&&(L.current=-1,K()),(!Z.current||!M.current)&&I.current&&(null!=A.current||!0===I.current&&null==A.current)){let e=0,t=()=>{null==i.current[0]?(e<2&&(e?requestAnimationFrame:queueMicrotask)(t),e+=1):(L.current=null==A.current||lO(A.current,x,h)||p?lv(i,H.current):lb(i,H.current),A.current=null,R())};t()}}else ly(i,l)||(L.current=l,K(),F.current=!1)},[c,n,o.floating,l,$,p,i,x,h,R,K,H]),aL(()=>{if(!c||o.floating||!T||m||!M.current)return;let e=T.nodesRef.current,t=e.find(e=>e.id===E)?.context?.elements.floating,n=iO(iT(o.floating)),r=e.some(e=>e.context&&iC(e.context.elements.floating,n));t&&!r&&z.current&&t.focus({preventScroll:!0})},[c,o.floating,T,E,m]),aL(()=>{D.current=R,Z.current=n,M.current=!!o.floating}),aL(()=>{n||(A.current=null,I.current=g)},[n,g]);let Y=null!=l,X=C.useMemo(()=>{function e(e){if(!V.current)return;let t=i.current.indexOf(e);-1!==t&&L.current!==t&&(L.current=t,R())}return{onFocus({currentTarget:t}){U.current=!0,e(t)},onClick:({currentTarget:e})=>e.focus({preventScroll:!0}),onMouseMove({currentTarget:t}){U.current=!0,F.current=!1,y&&e(t)},onPointerLeave({pointerType:e}){!z.current||"touch"===e||(U.current=!0,y&&(L.current=-1,R(),m||P.current?.focus({preventScroll:!0})))}}},[V,P,y,i,R,m]),G=C.useCallback(()=>w??T?.nodesRef.current.find(e=>e.id===E)?.context?.dataRef?.current.orientation,[E,T,w]),Q=ak(e=>{var t,a,l,s,c,u,g,y;if(z.current=!1,U.current=!0,229===e.which||!V.current&&e.currentTarget===P.current)return;if(p&&(t=e.key,a=x,l=h,s=_,"both"===a||"horizontal"===a&&s&&s>1?"Escape"===t:lk(a,l?t===ij:t===i_,t===ik))){lS(e.key,G())||im(e),r(!1,e.nativeEvent,"list-navigation"),aq(o.domReference)&&(m?T?.events.emit("virtualfocus",o.domReference):o.domReference.focus());return}let v=L.current,w=lv(i,b),j=lb(i,b);if(N||("Home"===e.key&&(im(e),L.current=w,R()),"End"===e.key&&(im(e),L.current=j,R())),_>1){let t,n,r=S||Array.from({length:i.current.length},()=>({width:1,height:1})),o=(c=r,u=_,g=O,t=[],n=0,c.forEach(({width:e,height:r},o)=>{let a=!1;for(g&&(n=0);!a;){let i=[];for(let t=0;t<e;t+=1)for(let e=0;e<r;e+=1)i.push(n+t+e*u);n%u+e<=u&&i.every(e=>null==t[e])?(i.forEach(e=>{t[e]=o}),a=!0):n+=1}}),[...t]),a=o.findIndex(e=>null!=e&&!lw(i,e,b)),l=o.reduce((e,t,n)=>null==t||lw(i,t,b)?e:n,-1),s=o[function(e,{event:t,orientation:n,loop:r,rtl:o,cols:a,disabledIndices:i,minIndex:l,maxIndex:s,prevIndex:c,stopEvent:u=!1}){let d=c;if(t.key===ik){if(u&&im(t),-1===c)d=s;else if(d=lx(e,{startingIndex:d,amount:a,decrement:!0,disabledIndices:i}),r&&(c-a<l||d<0)){let e=c%a,t=s%a,n=s-(t-e);d=t===e?s:t>e?n:n-a}ly(e,d)&&(d=c)}if(t.key===iS&&(u&&im(t),-1===c?d=l:(d=lx(e,{startingIndex:c,amount:a,disabledIndices:i}),r&&c+a>s&&(d=lx(e,{startingIndex:c%a-a,amount:a,disabledIndices:i}))),ly(e,d)&&(d=c)),"both"===n){let n=i9(c/a);t.key===(o?i_:ij)&&(u&&im(t),c%a!=a-1?(d=lx(e,{startingIndex:c,disabledIndices:i}),r&&lg(d,a,n)&&(d=lx(e,{startingIndex:c-c%a-1,disabledIndices:i}))):r&&(d=lx(e,{startingIndex:c-c%a-1,disabledIndices:i})),lg(d,a,n)&&(d=c)),t.key===(o?ij:i_)&&(u&&im(t),c%a!=0?(d=lx(e,{startingIndex:c,decrement:!0,disabledIndices:i}),r&&lg(d,a,n)&&(d=lx(e,{startingIndex:c+(a-c%a),decrement:!0,disabledIndices:i}))):r&&(d=lx(e,{startingIndex:c+(a-c%a),decrement:!0,disabledIndices:i})),lg(d,a,n)&&(d=c));let l=i9(s/a)===n;ly(e,d)&&(d=r&&l?t.key===(o?ij:i_)?s:lx(e,{startingIndex:c-c%a-1,disabledIndices:i}):c)}return d}({current:o.map(e=>null!=e?i.current[e]:null)},{event:e,orientation:x,loop:f,rtl:h,cols:_,disabledIndices:(y=[...("function"!=typeof b?b:null)||i.current.map((e,t)=>lw(i,t,b)?t:void 0),void 0],o.flatMap((e,t)=>y.includes(e)?[t]:[])),minIndex:a,maxIndex:l,prevIndex:function(e,t,n,r,o){if(-1===e)return -1;let a=n.indexOf(e),i=t[e];switch(o){case"tl":return a;case"tr":if(!i)return a;return a+i.width-1;case"bl":if(!i)return a;return a+(i.height-1)*r;case"br":return n.lastIndexOf(e);default:return -1}}(L.current>j?w:L.current,r,o,_,e.key===iS?"bl":e.key===(h?i_:ij)?"tr":"tl"),stopEvent:!0})];if(null!=s&&(L.current=s,R()),"both"===x)return}if(lS(e.key,x)){if(im(e),n&&!m&&iO(e.currentTarget.ownerDocument)===e.currentTarget){L.current=lO(e.key,x,h)?w:j,R();return}lO(e.key,x,h)?f?L.current=v>=j?d&&v!==i.current.length?-1:w:lx(i,{startingIndex:v,disabledIndices:b}):L.current=Math.min(j,lx(i,{startingIndex:v,disabledIndices:b})):f?L.current=v<=w?d&&-1!==v?i.current.length:j:lx(i,{startingIndex:v,decrement:!0,disabledIndices:b}):L.current=Math.max(w,lx(i,{startingIndex:v,decrement:!0,disabledIndices:b})),ly(i,L.current)&&(L.current=-1),R()}}),J=C.useMemo(()=>m&&n&&Y&&{"aria-activedescendant":q},[m,n,Y,q]),ee=C.useMemo(()=>({"aria-orientation":"both"===x?void 0:x,...!N?J:{},onKeyDown(e){if("Tab"===e.key&&e.shiftKey&&n&&!m){im(e),r(!1,e.nativeEvent,"list-navigation"),aq(o.domReference)&&o.domReference.focus();return}Q(e)},onPointerMove(){z.current=!0}}),[J,Q,x,N,r,n,m,o.domReference]),et=C.useMemo(()=>{function e(e){"auto"===g&&ig(e.nativeEvent)&&(I.current=!0)}function t(e){I.current=g,"auto"===g&&iy(e.nativeEvent)&&(I.current=!0)}return{...J,onKeyDown(e){var t,o;z.current=!1;let a=e.key.startsWith("Arrow"),l=(t=e.key,o=G(),lk(o,h?t===i_:t===ij,t===iS)),s=lS(e.key,x),c=(p?l:s)||"Enter"===e.key||""===e.key.trim();if(m&&n)return Q(e);if(n||v||!a){if(c){let t=lS(e.key,G());A.current=p&&t?null:e.key}if(p){l&&(im(e),n?(L.current=lv(i,H.current),R()):r(!0,e.nativeEvent,"list-navigation"));return}s&&(null!=u&&(L.current=u),im(e),!n&&v?r(!0,e.nativeEvent,"list-navigation"):Q(e),n&&R())}},onFocus(){n&&!m&&(L.current=-1,R())},onPointerDown:t,onPointerEnter:t,onMouseDown:e,onClick:e}},[J,Q,H,g,i,p,R,r,n,v,x,G,h,u,m]);return C.useMemo(()=>c?{reference:et,floating:ee,item:X}:{},[c,et,ee,X])}(ec,{enabled:!s,listRef:M,activeIndex:O,nested:void 0!==t.type,loop:u,orientation:d,parentOrientation:"menubar"===t.type?t.context.orientation:void 0,rtl:"rtl"===em,disabledIndices:l2,onNavigate:P,openOnArrowKeyDown:"context-menu"!==t.type}),ey=C.useRef(!1),ev=function(e,t){let{open:n,dataRef:r}=e,{listRef:o,activeIndex:a,onMatch:i,onTypingChange:l,enabled:s=!0,findMatch:c=null,resetMs:u=750,ignoreKeys:d=[],selectedIndex:f=null}=t,p=aw(),h=C.useRef(""),m=C.useRef(f??a??-1),g=C.useRef(null),y=ak(i),v=ak(l),b=it(c),x=it(d);aL(()=>{n&&(p.clear(),g.current=null,h.current="")},[n,p]),aL(()=>{n&&""===h.current&&(m.current=f??a??-1)},[n,f,a]);let w=ak(e=>{e?r.current.typing||(r.current.typing=e,v(e)):r.current.typing&&(r.current.typing=e,v(e))}),_=ak(e=>{function t(e,t,n){let r=b.current?b.current(t,n):t.find(e=>e?.toLocaleLowerCase().indexOf(n.toLocaleLowerCase())===0);return r?e.indexOf(r):-1}let r=o.current;if(h.current.length>0&&" "!==h.current[0]&&(-1===t(r,r,h.current)?w(!1):" "===e.key&&im(e)),null==r||x.current.includes(e.key)||1!==e.key.length||e.ctrlKey||e.metaKey||e.altKey)return;n&&" "!==e.key&&(im(e),w(!0)),r.every(e=>!e||e[0]?.toLocaleLowerCase()!==e[1]?.toLocaleLowerCase())&&h.current===e.key&&(h.current="",m.current=g.current),h.current+=e.key,p.start(u,()=>{h.current="",m.current=g.current,w(!1)});let a=m.current,i=t(r,[...r.slice((a||0)+1),...r.slice(0,(a||0)+1)],h.current);-1!==i?(y(i),g.current=i):" "!==e.key&&(h.current="",w(!1))}),j=C.useMemo(()=>({onKeyDown:_}),[_]),k=C.useMemo(()=>({onKeyDown:_,onKeyUp(e){" "===e.key&&w(!1)}}),[_,w]);return C.useMemo(()=>s?{reference:j,floating:k}:{},[s,j,k])}(ec,{listRef:Z,activeIndex:O,resetMs:500,onMatch:e=>{K&&e!==O&&P(e)},onTypingChange:C.useCallback(e=>{ey.current=e},[])}),{getReferenceProps:eb,getFloatingProps:ew,getItemProps:e_}=lC([eu,ef,ep,ed,eh,eg,ev]),ej=function(e){let{enabled:t=!0,mouseDownAction:n,open:r}=e,o=C.useRef(!1);return C.useMemo(()=>t?{onMouseDown:e=>{("open"===n&&!r||"close"===n&&r)&&(o.current=!0,lD(e.currentTarget).addEventListener("click",()=>{o.current=!1},{once:!0}))},onClick:e=>{o.current&&(o.current=!1,e.preventBaseUIHandler())}}:iY,[t,n,r])}({open:K,enabled:"menubar"===t.type,mouseDownAction:"open"}),ek=C.useMemo(()=>{let e=lX(eb(),{onMouseEnter(){k(!0)},onMouseMove(){q(!0)}},er,ej);return delete e.role,e},[eb,ej,q,er]),eS=C.useMemo(()=>ew({onMouseEnter(){W&&"menu"!==t.type||k(!1)},onMouseMove(){q(!0)},onClick(){W&&k(!1)}}),[ew,W,t.type,q]),eO=C.useMemo(()=>e_(),[e_]),eC=C.useMemo(()=>({activeIndex:O,setActiveIndex:P,allowMouseUpTriggerRef:t.type?t.context.allowMouseUpTriggerRef:l3,floatingRootContext:ec,itemProps:eO,popupProps:eS,triggerProps:ek,itemDomElements:M,itemLabels:Z,mounted:J,open:K,popupRef:R,positionerRef:D,setOpen:es,setPositionerElement:Q,triggerElement:y,setTriggerElement:v,transitionStatus:et,lastOpenChangeReason:E,instantType:w,onOpenChangeComplete:i,setHoverEnabled:k,typingRef:ey,modal:B,disabled:s,parent:t,rootId:V,allowMouseEnter:$,setAllowMouseEnter:q}),[O,ec,eO,eS,ek,M,Z,J,K,D,es,et,y,Q,E,w,i,B,s,t,V,$,q]),eP=(0,S.jsx)(lT.Provider,{value:eC,children:r});return void 0===t.type||"context-menu"===t.type?(0,S.jsx)(aM,{children:eP}):eP};function l5(e,t,n,r){var o,a,i,l,s;let c=ay(l6).current;return o=c,a=e,i=t,l=n,s=r,(o.refs[0]!==a||o.refs[1]!==i||o.refs[2]!==l||o.refs[3]!==s)&&l9(c,[e,t,n,r]),c.callback}function l6(){return{callback:null,cleanup:null,refs:[]}}function l9(e,t){if(e.refs=t,t.every(e=>null==e)){e.callback=null;return}e.callback=n=>{if(e.cleanup&&(e.cleanup(),e.cleanup=null),null!=n){let r=Array(t.length).fill(null);for(let e=0;e<t.length;e+=1){let o=t[e];if(null!=o)switch(typeof o){case"function":{let t=o(n);"function"==typeof t&&(r[e]=t);break}case"object":o.current=n}}e.cleanup=()=>{for(let e=0;e<t.length;e+=1){let n=t[e];if(null!=n)switch(typeof n){case"function":{let t=r[e];"function"==typeof t?t():n(null);break}case"object":n.current=null}}}}}}let l8=((t={}).startingStyle="data-starting-style",t.endingStyle="data-ending-style",t),l7={[l8.startingStyle]:""},se={[l8.endingStyle]:""},st={transitionStatus:e=>"starting"===e?l7:"ending"===e?se:null},sn=((n={}).open="data-open",n.closed="data-closed",n[n.startingStyle=l8.startingStyle]="startingStyle",n[n.endingStyle=l8.endingStyle]="endingStyle",n.anchorHidden="data-anchor-hidden",n),sr=((r={}).popupOpen="data-popup-open",r.pressed="data-pressed",r),so={[sr.popupOpen]:""},sa={[sr.popupOpen]:"",[sr.pressed]:""},si={[sn.open]:""},sl={[sn.closed]:""},ss={[sn.anchorHidden]:""},sc={open:e=>e?so:null},su={open:e=>e?sa:null},sd={open:e=>e?si:sl,anchorHidden:e=>e?ss:null},sf=parseInt(C.version,10);function sp(e,t,n={}){let r=t.render,o=function(e,t={}){var n,r,o,a,i;let l,{className:s,render:c}=e,{state:u=iY,ref:d,props:f,disableStyleHooks:p,customStyleHookMapping:h,enabled:m=!0}=t,g=m?(n=s,r=u,"function"==typeof n?n(r):n):void 0;!0!==p&&(l=C.useMemo(()=>m?function(e,t){let n={};for(let r in e){let o=e[r];if(t?.hasOwnProperty(r)){let e=t[r](o);null!=e&&Object.assign(n,e);continue}!0===o?n[`data-${r.toLowerCase()}`]="":o&&(n[`data-${r.toLowerCase()}`]=o.toString())}return n}(u,h):iY,[u,h,m]));let y=m?lK(l,Array.isArray(f)?function(e){if(0===e.length)return lY;if(1===e.length)return lJ(e[0],lY);let t={...lJ(e[0],lY)};for(let n=1;n<e.length;n+=1)t=lG(t,e[n]);return t}(f):f)??iY:iY;if("undefined"!=typeof document)if(m)if(Array.isArray(d)){let e;o=[y.ref,sh(c),...d],a=e=ay(l6).current,i=o,(a.refs.length!==i.length||a.refs.some((e,t)=>e!==i[t]))&&l9(e,o),y.ref=e.callback}else y.ref=l5(y.ref,sh(c),d);else l5(null,null);return m?(void 0!==g&&(y.className=l1(y.className,g)),y):iY}(t,n);return!1===n.enabled?null:function(e,t,n,r){if(t){if("function"==typeof t)return t(n,r);let e=lX(n,t.props);return e.ref=n.ref,C.cloneElement(t,e)}if(e&&"string"==typeof e){var o,a;return o=e,a=n,"button"===o?(0,S.jsx)("button",{type:"button",...a}):"img"===o?(0,S.jsx)("img",{alt:"",...a}):C.createElement(o,a)}throw Error("Base UI: Render element or function are not defined.")}(e,r,o,n.state??iY)}function sh(e){return e&&"function"!=typeof e?sf>=19?e.props.ref:e.ref:null}let sm=C.createContext(void 0);function sg(e=!1){let t=C.useContext(sm);if(void 0===t&&!e)throw Error("Base UI: CompositeRootContext is missing. Composite parts must be placed within <Composite.Root>.");return t}function sy(e={}){let{disabled:t=!1,focusableWhenDisabled:n,tabIndex:r=0,native:o=!0}=e,a=C.useRef(null),i=void 0!==sg(!0),l=ak(()=>{let e=a.current;return!!(e?.tagName==="A"&&e?.href)}),{props:s}=function(e){let{focusableWhenDisabled:t,disabled:n,composite:r=!1,tabIndex:o=0,isNativeButton:a}=e,i=r&&!1!==t,l=r&&!1===t;return{props:C.useMemo(()=>{let e={onKeyDown(e){n&&t&&"Tab"!==e.key&&e.preventDefault()}};return r||(e.tabIndex=o,!a&&n&&(e.tabIndex=t?o:-1)),(a&&(t||i)||!a&&n)&&(e["aria-disabled"]=n),a&&(!t||l)&&(e.disabled=n),e},[r,n,t,i,l,a,o])}}({focusableWhenDisabled:n,disabled:t,composite:i,tabIndex:r,isNativeButton:o});return aL(()=>{let e=a.current;e instanceof HTMLButtonElement&&i&&t&&void 0===s.disabled&&e.disabled&&(e.disabled=!1)},[t,s.disabled,i]),{getButtonProps:C.useCallback((e={})=>{let{onClick:n,onMouseDown:r,onKeyUp:a,onKeyDown:i,onPointerDown:c,...u}=e;return lX({type:o?"button":void 0,onClick(e){t?e.preventDefault():n?.(e)},onMouseDown(e){t||r?.(e)},onKeyDown(e){if(t||(l0(e),i?.(e)),e.baseUIHandlerPrevented)return;let r=e.target===e.currentTarget&&!o&&!l()&&!t,a="Enter"===e.key,s=" "===e.key;r&&((s||a)&&e.preventDefault(),a&&n?.(e))},onKeyUp(e){t||(l0(e),a?.(e)),!e.baseUIHandlerPrevented&&(e.target!==e.currentTarget||o||t||" "!==e.key||n?.(e))},onPointerDown(e){t?e.preventDefault():c?.(e)}},o?void 0:{role:"button"},s,u)},[t,s,o,l]),buttonRef:a}}let sv=C.createContext({register:()=>{},unregister:()=>{},subscribeMapChange:()=>()=>{},elementsRef:{current:[]},nextIndexRef:{current:0}}),sb=((o={})[o.None=0]="None",o[o.GuessFromOrder=1]="GuessFromOrder",o);function sx(e={}){let{label:t,metadata:n,textRef:r,indexGuessBehavior:o}=e,{register:a,unregister:i,subscribeMapChange:l,elementsRef:s,labelsRef:c,nextIndexRef:u}=C.useContext(sv),d=C.useRef(-1),[f,p]=C.useState(o===sb.GuessFromOrder?()=>{if(-1===d.current){let e=u.current;u.current+=1,d.current=e}return d.current}:-1),h=C.useRef(null),m=C.useCallback(e=>{if(h.current=e,-1!==f&&null!==e&&(s.current[f]=e,c)){let n=void 0!==t;c.current[f]=n?t:r?.current?.textContent??e.textContent}},[f,s,c,t,r]);return aL(()=>{let e=h.current;if(e)return a(e,n),()=>{i(e)}},[a,i,n]),aL(()=>l(e=>{let t=h.current?e.get(h.current)?.index:null;null!=t&&p(t)}),[l,p]),C.useMemo(()=>({ref:m,index:f}),[f,m])}function sw(e){let{render:t,className:n,state:r=iY,props:o=iX,refs:a=iX,metadata:i,customStyleHookMapping:l,tag:s="div",...c}=e,{compositeProps:u,compositeRef:d}=function(e={}){let{highlightItemOnHover:t,highlightedIndex:n,onHighlightedIndexChange:r}=sg(),{ref:o,index:a}=sx(e),i=n===a,l=C.useRef(null),s=l5(o,l);return{compositeProps:C.useMemo(()=>({tabIndex:i?0:-1,onFocus(){r(a)},onMouseMove(){let e=l.current;if(!t||!e)return;let n=e.hasAttribute("disabled")||"true"===e.ariaDisabled;i||n||e.focus()}}),[i,r,a,t]),compositeRef:s,index:a}}({metadata:i});return sp(s,e,{state:r,ref:[...a,d],props:[u,...o,c],customStyleHookMapping:l})}let s_=C.forwardRef(function(e,t){let{render:n,className:r,disabled:o=!1,nativeButton:a=!0,...i}=e,{triggerProps:l,disabled:s,setTriggerElement:c,open:u,allowMouseUpTriggerRef:d,positionerRef:f,parent:p,lastOpenChangeReason:h,rootId:m}=lN(),g=o||s,y=C.useRef(null),v=aw(),{getButtonProps:b,buttonRef:x}=sy({disabled:g,native:a}),w=l5(x,c),{events:_}=C.useContext(az);C.useEffect(()=>{u||void 0!==p.type||(d.current=!1)},[d,u,p.type]);let j=ak(e=>{if(!y.current)return;v.clear(),d.current=!1;let t=e.target;if(iC(y.current,t)||iC(f.current,t)||t===y.current||null!=t&&function e(t){return aq(t)&&t.hasAttribute("data-rootownerid")?t.getAttribute("data-rootownerid")??void 0:a5(t)?void 0:e(a8(t))}(t)===m)return;let n=function(e){let t=e.getBoundingClientRect(),n=window.getComputedStyle(e,"::before"),r=window.getComputedStyle(e,"::after");if("none"===n.content&&"none"===r.content)return t;let o=parseFloat(n.width)||0,a=parseFloat(n.height)||0,i=parseFloat(r.width)||0,l=parseFloat(r.height)||0,s=Math.max(t.width,o,i),c=Math.max(t.height,a,l),u=s-t.width,d=c-t.height;return{left:t.left-u/2,right:t.right+u/2,top:t.top-d/2,bottom:t.bottom+d/2}}(y.current);e.clientX>=n.left-2&&e.clientX<=n.right+2&&e.clientY>=n.top-2&&e.clientY<=n.bottom+2||_.emit("close",{domEvent:e,reason:"cancel-open"})});C.useEffect(()=>{u&&"trigger-hover"===h&&lD(y.current).addEventListener("mouseup",j,{once:!0})},[u,j,h]);let k="menubar"===p.type,O=C.useCallback(e=>lX(k?{role:"menuitem"}:{},{"aria-haspopup":"menu",ref:w,onMouseDown:e=>{u||(v.start(200,()=>{d.current=!0}),lD(e.currentTarget).addEventListener("mouseup",j,{once:!0}))}},e,b),[b,w,u,d,v,j,k]),P=C.useMemo(()=>({disabled:g,open:u}),[g,u]),E=[y,t,x],T=[l,i,O],N=sp("button",e,{enabled:!k,customStyleHookMapping:su,state:P,ref:E,props:T});return k?(0,S.jsx)(sw,{tag:"button",render:n,className:r,state:P,refs:E,props:T,customStyleHookMapping:su}):N}),sj={clip:"rect(0 0 0 0)",overflow:"hidden",whiteSpace:"nowrap",position:"fixed",top:0,left:0,border:0,padding:0,width:1,height:1,margin:-1},sk=C.forwardRef(function(e,t){let[n,r]=C.useState();return aL(()=>{iu&&r("button")},[]),(0,S.jsx)("span",{...e,ref:t,tabIndex:0,role:n,"aria-hidden":!n||void 0,style:sj,"data-base-ui-focus-guard":""})});var sS='input:not([inert]),select:not([inert]),textarea:not([inert]),a[href]:not([inert]),button:not([inert]),[tabindex]:not(slot):not([inert]),audio[controls]:not([inert]),video[controls]:not([inert]),[contenteditable]:not([contenteditable="false"]):not([inert]),details>summary:first-of-type:not([inert]),details:not([inert])',sO="undefined"==typeof Element,sC=sO?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,sP=!sO&&Element.prototype.getRootNode?function(e){var t;return null==e||null==(t=e.getRootNode)?void 0:t.call(e)}:function(e){return null==e?void 0:e.ownerDocument},sE=function e(t,n){void 0===n&&(n=!0);var r,o=null==t||null==(r=t.getAttribute)?void 0:r.call(t,"inert");return""===o||"true"===o||n&&t&&e(t.parentNode)},sT=function(e){var t,n=null==e||null==(t=e.getAttribute)?void 0:t.call(e,"contenteditable");return""===n||"true"===n},sN=function(e,t,n){if(sE(e))return[];var r=Array.prototype.slice.apply(e.querySelectorAll(sS));return t&&sC.call(e,sS)&&r.unshift(e),r=r.filter(n)},sI=function e(t,n,r){for(var o=[],a=Array.from(t);a.length;){var i=a.shift();if(!sE(i,!1))if("SLOT"===i.tagName){var l=i.assignedElements(),s=e(l.length?l:i.children,!0,r);r.flatten?o.push.apply(o,s):o.push({scopeParent:i,candidates:s})}else{sC.call(i,sS)&&r.filter(i)&&(n||!t.includes(i))&&o.push(i);var c=i.shadowRoot||"function"==typeof r.getShadowRoot&&r.getShadowRoot(i),u=!sE(c,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(i));if(c&&u){var d=e(!0===c?i.children:c.children,!0,r);r.flatten?o.push.apply(o,d):o.push({scopeParent:i,candidates:d})}else a.unshift.apply(a,i.children)}}return o},sL=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},sA=function(e){if(!e)throw Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||sT(e))&&!sL(e)?0:e.tabIndex},sz=function(e,t){var n=sA(e);return n<0&&t&&!sL(e)?0:n},sR=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},sD=function(e){return"INPUT"===e.tagName},sM=function(e,t){for(var n=0;n<e.length;n++)if(e[n].checked&&e[n].form===t)return e[n]},sZ=function(e){if(!e.name)return!0;var t,n=e.form||sP(e),r=function(e){return n.querySelectorAll('input[type="radio"][name="'+e+'"]')};if("undefined"!=typeof window&&void 0!==window.CSS&&"function"==typeof window.CSS.escape)t=r(window.CSS.escape(e.name));else try{t=r(e.name)}catch(e){return console.error("Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s",e.message),!1}var o=sM(t,e.form);return!o||o===e},sU=function(e){var t;return sD(t=e)&&"radio"===t.type&&!sZ(e)},sF=function(e){var t,n,r,o,a,i,l,s=e&&sP(e),c=null==(t=s)?void 0:t.host,u=!1;if(s&&s!==e)for(u=!!(null!=(n=c)&&null!=(r=n.ownerDocument)&&r.contains(c)||null!=e&&null!=(o=e.ownerDocument)&&o.contains(e));!u&&c;)u=!!(null!=(i=c=null==(a=s=sP(c))?void 0:a.host)&&null!=(l=i.ownerDocument)&&l.contains(c));return u},sH=function(e){var t=e.getBoundingClientRect(),n=t.width,r=t.height;return 0===n&&0===r},sV=function(e,t){var n=t.displayCheck,r=t.getShadowRoot;if("hidden"===getComputedStyle(e).visibility)return!0;var o=sC.call(e,"details>summary:first-of-type")?e.parentElement:e;if(sC.call(o,"details:not([open]) *"))return!0;if(n&&"full"!==n&&"legacy-full"!==n){if("non-zero-area"===n)return sH(e)}else{if("function"==typeof r){for(var a=e;e;){var i=e.parentElement,l=sP(e);if(i&&!i.shadowRoot&&!0===r(i))return sH(e);e=e.assignedSlot?e.assignedSlot:i||l===e.ownerDocument?i:l.host}e=a}if(sF(e))return!e.getClientRects().length;if("legacy-full"!==n)return!0}return!1},sB=function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if("FIELDSET"===t.tagName&&t.disabled){for(var n=0;n<t.children.length;n++){var r=t.children.item(n);if("LEGEND"===r.tagName)return!!sC.call(t,"fieldset[disabled] *")||!r.contains(e)}return!0}t=t.parentElement}return!1},s$=function(e,t){var n,r;return!(t.disabled||sE(t)||sD(n=t)&&"hidden"===n.type||sV(t,e)||"DETAILS"===(r=t).tagName&&Array.prototype.slice.apply(r.children).some(function(e){return"SUMMARY"===e.tagName})||sB(t))},sq=function(e,t){return!(sU(t)||0>sA(t))&&!!s$(e,t)},sW=function(e){var t=parseInt(e.getAttribute("tabindex"),10);return!!isNaN(t)||!!(t>=0)},sK=function e(t){var n=[],r=[];return t.forEach(function(t,o){var a=!!t.scopeParent,i=a?t.scopeParent:t,l=sz(i,a),s=a?e(t.candidates):i;0===l?a?n.push.apply(n,s):n.push(i):r.push({documentOrder:o,tabIndex:l,item:t,isScope:a,content:s})}),r.sort(sR).reduce(function(e,t){return t.isScope?e.push.apply(e,t.content):e.push(t.content),e},[]).concat(n)},sY=function(e,t){return sK((t=t||{}).getShadowRoot?sI([e],t.includeContainer,{filter:sq.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:sW}):sN(e,t.includeContainer,sq.bind(null,t)))},sX=function(e,t){return(t=t||{}).getShadowRoot?sI([e],t.includeContainer,{filter:s$.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):sN(e,t.includeContainer,s$.bind(null,t))},sG=function(e,t){if(t=t||{},!e)throw Error("No node provided");return!1!==sC.call(e,sS)&&sq(t,e)};let sQ=()=>({getShadowRoot:!0,displayCheck:"function"==typeof ResizeObserver&&ResizeObserver.toString().includes("[native code]")?"full":"none"});function sJ(e,t){let n=sY(e,sQ()),r=n.length;if(0===r)return;let o=iO(iT(e)),a=n.indexOf(o);return n[-1===a?1===t?0:r-1:a+t]}function s0(e){return sJ(iT(e).body,1)||e}function s1(e){return sJ(iT(e).body,-1)||e}function s2(e,t){let n=t||e.currentTarget,r=e.relatedTarget;return!r||!iC(n,r)}function s3(e){sY(e,sQ()).forEach(e=>{e.dataset.tabindex=e.getAttribute("tabindex")||"",e.setAttribute("tabindex","-1")})}function s4(e){e.querySelectorAll("[data-tabindex]").forEach(e=>{let t=e.dataset.tabindex;delete e.dataset.tabindex,t?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})}let s5=C.createContext(null),s6=iA("portal");function s9(e={}){let{id:t,root:n}=e,r=aN(),o=C.useContext(s5),[a,i]=C.useState(null),l=C.useRef(null);return aL(()=>()=>{a?.remove(),queueMicrotask(()=>{l.current=null})},[a]),aL(()=>{if(!r||l.current)return;let e=t?document.getElementById(t):null;if(!e)return;let n=document.createElement("div");n.id=r,n.setAttribute(s6,""),e.appendChild(n),l.current=n,i(n)},[t,r]),aL(()=>{if(null===n||!r||l.current)return;let e=n||o?.portalNode;e&&!aB(e)&&(e=e.current),e=e||document.body;let a=null;t&&((a=document.createElement("div")).id=t,e.appendChild(a));let s=document.createElement("div");s.id=r,s.setAttribute(s6,""),(e=a||e).appendChild(s),l.current=s,i(s)},[t,n,r,o]),a}function s8(e){let{children:t,id:n,root:r,preserveTabOrder:o=!0}=e,a=s9({id:n,root:r}),[i,l]=C.useState(null),s=C.useRef(null),c=C.useRef(null),u=C.useRef(null),d=C.useRef(null),f=i?.modal,p=i?.open,h=!!i&&!i.modal&&i.open&&o&&!!(r||a);return C.useEffect(()=>{if(a&&o&&!f)return a.addEventListener("focusin",e,!0),a.addEventListener("focusout",e,!0),()=>{a.removeEventListener("focusin",e,!0),a.removeEventListener("focusout",e,!0)};function e(e){if(a&&s2(e)){let t="focusin"===e.type;(t?s4:s3)(a)}}},[a,o,f]),C.useEffect(()=>{!a||p||s4(a)},[p,a]),(0,S.jsxs)(s5.Provider,{value:C.useMemo(()=>({preserveTabOrder:o,beforeOutsideRef:s,afterOutsideRef:c,beforeInsideRef:u,afterInsideRef:d,portalNode:a,setFocusManagerState:l}),[o,a]),children:[h&&a&&(0,S.jsx)(sk,{"data-type":"outside",ref:s,onFocus:e=>{if(s2(e,a))u.current?.focus();else{let e=s1(i?i.domReference:null);e?.focus()}}}),h&&a&&(0,S.jsx)("span",{"aria-owns":a.id,style:sj}),a&&ex.createPortal(t,a),h&&a&&(0,S.jsx)(sk,{"data-type":"outside",ref:c,onFocus:e=>{if(s2(e,a))d.current?.focus();else{let t=s0(i?i.domReference:null);t?.focus(),i?.closeOnFocusOut&&i?.onOpenChange(!1,e.nativeEvent,"focus-out")}}})]})}let s7=C.createContext(void 0);function ce(e){let{children:t,keepMounted:n=!1,container:r}=e,{mounted:o}=lN();return o||n?(0,S.jsx)(s7.Provider,{value:n,children:(0,S.jsx)(s8,{root:r,children:t})}):null}let ct=C.createContext(void 0);function cn(e,t,n){let r,{reference:o,floating:a}=e,i=ll(t),l=lo(ll(t)),s=la(l),c=ln(t),u="y"===i,d=o.x+o.width/2-a.width/2,f=o.y+o.height/2-a.height/2,p=o[s]/2-a[s]/2;switch(c){case"top":r={x:d,y:o.y-a.height};break;case"bottom":r={x:d,y:o.y+o.height};break;case"right":r={x:o.x+o.width,y:f};break;case"left":r={x:o.x-a.width,y:f};break;default:r={x:o.x,y:o.y}}switch(lr(t)){case"start":r[l]-=p*(n&&u?-1:1);break;case"end":r[l]+=p*(n&&u?-1:1)}return r}let cr=async(e,t,n)=>{let{placement:r="bottom",strategy:o="absolute",middleware:a=[],platform:i}=n,l=a.filter(Boolean),s=await (null==i.isRTL?void 0:i.isRTL(t)),c=await i.getElementRects({reference:e,floating:t,strategy:o}),{x:u,y:d}=cn(c,r,s),f=r,p={},h=0;for(let n=0;n<l.length;n++){let{name:a,fn:m}=l[n],{x:g,y:y,data:v,reset:b}=await m({x:u,y:d,initialPlacement:r,placement:f,strategy:o,middlewareData:p,rects:c,platform:i,elements:{reference:e,floating:t}});u=null!=g?g:u,d=null!=y?y:d,p={...p,[a]:{...p[a],...v}},b&&h<=50&&(h++,"object"==typeof b&&(b.placement&&(f=b.placement),b.rects&&(c=!0===b.rects?await i.getElementRects({reference:e,floating:t,strategy:o}):b.rects),{x:u,y:d}=cn(c,f,s)),n=-1)}return{x:u,y:d,placement:f,strategy:o,middlewareData:p}};async function co(e,t){var n;void 0===t&&(t={});let{x:r,y:o,platform:a,rects:i,elements:l,strategy:s}=e,{boundary:c="clippingAncestors",rootBoundary:u="viewport",elementContext:d="floating",altBoundary:f=!1,padding:p=0}=lt(t,e),h=lh(p),m=l[f?"floating"===d?"reference":"floating":d],g=lm(await a.getClippingRect({element:null==(n=await (null==a.isElement?void 0:a.isElement(m)))||n?m:m.contextElement||await (null==a.getDocumentElement?void 0:a.getDocumentElement(l.floating)),boundary:c,rootBoundary:u,strategy:s})),y="floating"===d?{x:r,y:o,width:i.floating.width,height:i.floating.height}:i.reference,v=await (null==a.getOffsetParent?void 0:a.getOffsetParent(l.floating)),b=await (null==a.isElement?void 0:a.isElement(v))&&await (null==a.getScale?void 0:a.getScale(v))||{x:1,y:1},x=lm(a.convertOffsetParentRelativeRectToViewportRelativeRect?await a.convertOffsetParentRelativeRectToViewportRelativeRect({elements:l,rect:y,offsetParent:v,strategy:s}):y);return{top:(g.top-x.top+h.top)/b.y,bottom:(x.bottom-g.bottom+h.bottom)/b.y,left:(g.left-x.left+h.left)/b.x,right:(x.right-g.right+h.right)/b.x}}function ca(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function ci(e){return i3.some(t=>e[t]>=0)}let cl=new Set(["left","top"]);async function cs(e,t){let{placement:n,platform:r,elements:o}=e,a=await (null==r.isRTL?void 0:r.isRTL(o.floating)),i=ln(n),l=lr(n),s="y"===ll(n),c=cl.has(i)?-1:1,u=a&&s?-1:1,d=lt(t,e),{mainAxis:f,crossAxis:p,alignmentAxis:h}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return l&&"number"==typeof h&&(p="end"===l?-1*h:h),s?{x:p*u,y:f*c}:{x:f*c,y:p*u}}function cc(e){let t=a6(e),n=parseFloat(t.width)||0,r=parseFloat(t.height)||0,o=aq(e),a=o?e.offsetWidth:n,i=o?e.offsetHeight:r,l=i6(n)!==a||i6(r)!==i;return l&&(n=a,r=i),{width:n,height:r,$:l}}function cu(e){return a$(e)?e:e.contextElement}function cd(e){let t=cu(e);if(!aq(t))return i8(1);let n=t.getBoundingClientRect(),{width:r,height:o,$:a}=cc(t),i=(a?i6(n.width):n.width)/r,l=(a?i6(n.height):n.height)/o;return i&&Number.isFinite(i)||(i=1),l&&Number.isFinite(l)||(l=1),{x:i,y:l}}let cf=i8(0);function cp(e){let t=aH(e);return a3()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:cf}function ch(e,t,n,r){var o,a,i;void 0===t&&(t=!1),void 0===n&&(n=!1);let l=e.getBoundingClientRect(),s=cu(e),c=i8(1);t&&(r?a$(r)&&(c=cd(r)):c=cd(e));let u=(o=s,void 0===(a=n)&&(a=!1),(i=r)&&(!a||i===aH(o))&&a)?cp(s):i8(0),d=(l.left+u.x)/c.x,f=(l.top+u.y)/c.y,p=l.width/c.x,h=l.height/c.y;if(s){let e=aH(s),t=r&&a$(r)?aH(r):r,n=e,o=ie(n);for(;o&&r&&t!==n;){let e=cd(o),t=o.getBoundingClientRect(),r=a6(o),a=t.left+(o.clientLeft+parseFloat(r.paddingLeft))*e.x,i=t.top+(o.clientTop+parseFloat(r.paddingTop))*e.y;d*=e.x,f*=e.y,p*=e.x,h*=e.y,d+=a,f+=i,o=ie(n=aH(o))}}return lm({width:p,height:h,x:d,y:f})}function cm(e,t){let n=a9(e).scrollLeft;return t?t.left+n:ch(aV(e)).left+n}function cg(e,t,n){void 0===n&&(n=!1);let r=e.getBoundingClientRect(),o=r.left+t.scrollLeft-(n?0:cm(e,r));return{x:o,y:r.top+t.scrollTop}}let cy=new Set(["absolute","fixed"]);function cv(e,t,n){var r,o;let a;if("viewport"===t)a=function(e,t){let n=aH(e),r=aV(e),o=n.visualViewport,a=r.clientWidth,i=r.clientHeight,l=0,s=0;if(o){a=o.width,i=o.height;let e=a3();(!e||e&&"fixed"===t)&&(l=o.offsetLeft,s=o.offsetTop)}return{width:a,height:i,x:l,y:s}}(e,n);else if("document"===t){let t,n,o,i,l,s,c;r=aV(e),t=aV(r),n=a9(r),o=r.ownerDocument.body,i=i5(t.scrollWidth,t.clientWidth,o.scrollWidth,o.clientWidth),l=i5(t.scrollHeight,t.clientHeight,o.scrollHeight,o.clientHeight),s=-n.scrollLeft+cm(r),c=-n.scrollTop,"rtl"===a6(o).direction&&(s+=i5(t.clientWidth,o.clientWidth)-i),a={width:i,height:l,x:s,y:c}}else if(a$(t)){let e,r,i,l,s,c,u;r=(e=ch(o=t,!0,"fixed"===n)).top+o.clientTop,i=e.left+o.clientLeft,l=aq(o)?cd(o):i8(1),s=o.clientWidth*l.x,c=o.clientHeight*l.y,u=i*l.x,a={width:s,height:c,x:u,y:r*l.y}}else{let n=cp(e);a={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return lm(a)}function cb(e){return"static"===a6(e).position}function cx(e,t){if(!aq(e)||"fixed"===a6(e).position)return null;if(t)return t(e);let n=e.offsetParent;return aV(e)===n&&(n=n.ownerDocument.body),n}function cw(e,t){var n;let r=aH(e);if(aQ(e))return r;if(!aq(e)){let t=a8(e);for(;t&&!a5(t);){if(a$(t)&&!cb(t))return t;t=a8(t)}return r}let o=cx(e,t);for(;o&&(n=o,aX.has(aF(n)))&&cb(o);)o=cx(o,t);return o&&a5(o)&&cb(o)&&!a2(o)?r:o||function(e){let t=a8(e);for(;aq(t)&&!a5(t);){if(a2(t))return t;if(aQ(t))break;t=a8(t)}return null}(e)||r}let c_=async function(e){let t=this.getOffsetParent||cw,n=this.getDimensions,r=await n(e.floating);return{reference:function(e,t,n){let r=aq(t),o=aV(t),a="fixed"===n,i=ch(e,!0,a,t),l={scrollLeft:0,scrollTop:0},s=i8(0);if(r||!r&&!a)if(("body"!==aF(t)||aY(o))&&(l=a9(t)),r){let e=ch(t,!0,a,t);s.x=e.x+t.clientLeft,s.y=e.y+t.clientTop}else o&&(s.x=cm(o));a&&!r&&o&&(s.x=cm(o));let c=!o||r||a?i8(0):cg(o,l),u=i.left+l.scrollLeft-s.x-c.x;return{x:u,y:i.top+l.scrollTop-s.y-c.y,width:i.width,height:i.height}}(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}},cj={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:t,rect:n,offsetParent:r,strategy:o}=e,a="fixed"===o,i=aV(r),l=!!t&&aQ(t.floating);if(r===i||l&&a)return n;let s={scrollLeft:0,scrollTop:0},c=i8(1),u=i8(0),d=aq(r);if((d||!d&&!a)&&(("body"!==aF(r)||aY(i))&&(s=a9(r)),aq(r))){let e=ch(r);c=cd(r),u.x=e.x+r.clientLeft,u.y=e.y+r.clientTop}let f=!i||d||a?i8(0):cg(i,s,!0);return{width:n.width*c.x,height:n.height*c.y,x:n.x*c.x-s.scrollLeft*c.x+u.x+f.x,y:n.y*c.y-s.scrollTop*c.y+u.y+f.y}},getDocumentElement:aV,getClippingRect:function(e){let{element:t,boundary:n,rootBoundary:r,strategy:o}=e,a=[..."clippingAncestors"===n?aQ(t)?[]:function(e,t){let n=t.get(e);if(n)return n;let r=a7(e,[],!1).filter(e=>a$(e)&&"body"!==aF(e)),o=null,a="fixed"===a6(e).position,i=a?a8(e):e;for(;a$(i)&&!a5(i);){let t=a6(i),n=a2(i);n||"fixed"!==t.position||(o=null),(a?!n&&!o:!n&&"static"===t.position&&!!o&&cy.has(o.position)||aY(i)&&!n&&function e(t,n){let r=a8(t);return!(r===n||!a$(r)||a5(r))&&("fixed"===a6(r).position||e(r,n))}(e,i))?r=r.filter(e=>e!==i):o=t,i=a8(i)}return t.set(e,r),r}(t,this._c):[].concat(n),r],i=a[0],l=a.reduce((e,n)=>{let r=cv(t,n,o);return e.top=i5(r.top,e.top),e.right=i4(r.right,e.right),e.bottom=i4(r.bottom,e.bottom),e.left=i5(r.left,e.left),e},cv(t,i,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}},getOffsetParent:cw,getElementRects:c_,getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){let{width:t,height:n}=cc(e);return{width:t,height:n}},getScale:cd,isElement:a$,isRTL:function(e){return"rtl"===a6(e).direction}};function ck(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function cS(e,t,n,r){let o;void 0===r&&(r={});let{ancestorScroll:a=!0,ancestorResize:i=!0,elementResize:l="function"==typeof ResizeObserver,layoutShift:s="function"==typeof IntersectionObserver,animationFrame:c=!1}=r,u=cu(e),d=a||i?[...u?a7(u):[],...a7(t)]:[];d.forEach(e=>{a&&e.addEventListener("scroll",n,{passive:!0}),i&&e.addEventListener("resize",n)});let f=u&&s?function(e,t){let n,r=null,o=aV(e);function a(){var e;clearTimeout(n),null==(e=r)||e.disconnect(),r=null}return!function i(l,s){void 0===l&&(l=!1),void 0===s&&(s=1),a();let c=e.getBoundingClientRect(),{left:u,top:d,width:f,height:p}=c;if(l||t(),!f||!p)return;let h=i9(d),m=i9(o.clientWidth-(u+f)),g=i9(o.clientHeight-(d+p)),y={rootMargin:-h+"px "+-m+"px "+-g+"px "+-i9(u)+"px",threshold:i5(0,i4(1,s))||1},v=!0;function b(t){let r=t[0].intersectionRatio;if(r!==s){if(!v)return i();r?i(!1,r):n=setTimeout(()=>{i(!1,1e-7)},1e3)}1!==r||ck(c,e.getBoundingClientRect())||i(),v=!1}try{r=new IntersectionObserver(b,{...y,root:o.ownerDocument})}catch(e){r=new IntersectionObserver(b,y)}r.observe(e)}(!0),a}(u,n):null,p=-1,h=null;l&&(h=new ResizeObserver(e=>{let[r]=e;r&&r.target===u&&h&&(h.unobserve(t),cancelAnimationFrame(p),p=requestAnimationFrame(()=>{var e;null==(e=h)||e.observe(t)})),n()}),u&&!c&&h.observe(u),h.observe(t));let m=c?ch(e):null;return c&&function t(){let r=ch(e);m&&!ck(m,r)&&n(),m=r,o=requestAnimationFrame(t)}(),n(),()=>{var e;d.forEach(e=>{a&&e.removeEventListener("scroll",n),i&&e.removeEventListener("resize",n)}),null==f||f(),null==(e=h)||e.disconnect(),h=null,c&&cancelAnimationFrame(o)}}var cO="undefined"!=typeof document,cC=cO?C.useLayoutEffect:function(){};function cP(e,t){let n,r,o;if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if((n=e.length)!==t.length)return!1;for(r=n;0!=r--;)if(!cP(e[r],t[r]))return!1;return!0}if((n=(o=Object.keys(e)).length)!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!({}).hasOwnProperty.call(t,o[r]))return!1;for(r=n;0!=r--;){let n=o[r];if(("_owner"!==n||!e.$$typeof)&&!cP(e[n],t[n]))return!1}return!0}return e!=e&&t!=t}function cE(e){return"undefined"==typeof window?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function cT(e,t){let n=cE(e);return Math.round(t*n)/n}function cN(e){let t=C.useRef(e);return cC(()=>{t.current=e}),t}function cI(e,t,n){let r="inline-start"===e||"inline-end"===e;return({top:"top",right:r?n?"inline-start":"inline-end":"right",bottom:"bottom",left:r?n?"inline-end":"inline-start":"left"})[t]}function cL(e,t,n){let{rects:r,placement:o}=e;return{side:cI(t,ln(o),n),align:lr(o)||"center",anchor:{width:r.reference.width,height:r.reference.height},positioner:{width:r.floating.width,height:r.floating.height}}}function cA(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y;let v,{anchor:b,positionMethod:x="absolute",side:w="bottom",sideOffset:_=0,align:j="center",alignOffset:k=0,collisionBoundary:S,collisionPadding:O=5,sticky:P=!1,arrowPadding:E=5,trackAnchor:T=!0,keepMounted:N=!1,floatingRootContext:I,mounted:L,collisionAvoidance:A,shiftCrossAxis:z=!1,nodeId:R,adaptiveOrigin:D}=e,M=A.side||"flip",Z=A.align||"flip",U=A.fallbackAxisSide||"end",F="function"==typeof b?b:void 0,H=ak(F),V=F?H:b,B=it(b),$="rtl"===lR(),q={top:"top",right:"right",bottom:"bottom",left:"left","inline-end":$?"left":"right","inline-start":$?"right":"left"}[w],W="center"===j?q:`${q}-${j}`,K={boundary:"clipping-ancestors"===S?"clippingAncestors":S,padding:O},Y=C.useRef(null),X=it(_),G=it(k),Q="function"!=typeof _?_:0,J=[(t=e=>{let t=cL(e,w,$),n="function"==typeof X.current?X.current(t):X.current,r="function"==typeof G.current?G.current(t):G.current;return{mainAxis:n,crossAxis:r,alignmentAxis:r}},n=[Q,"function"!=typeof k?k:0,$,w],{...(void 0===(r=t)&&(r=0),{name:"offset",options:r,async fn(e){var t,n;let{x:o,y:a,placement:i,middlewareData:l}=e,s=await cs(e,r);return i===(null==(t=l.offset)?void 0:t.placement)&&null!=(n=l.arrow)&&n.alignmentOffset?{}:{x:o+s.x,y:a+s.y,data:{...s,placement:i}}}}),options:[t,n]})],ee="none"===Z&&"shift"!==M,et=!ee&&(P||z||"shift"===M),en="none"===M?null:{...{name:"flip",options:i=o={...K,mainAxis:!z&&"flip"===M,crossAxis:"flip"===Z&&"alignment",fallbackAxisSideDirection:U},async fn(e){var t,n,r,o,a,l,s,c,u,d,f,p,h;let m,g,y,{placement:v,middlewareData:b,rects:x,initialPlacement:w,platform:_,elements:j}=e,{mainAxis:k=!0,crossAxis:S=!0,fallbackPlacements:O,fallbackStrategy:C="bestFit",fallbackAxisSideDirection:P="none",flipAlignment:E=!0,...T}=lt(i,e);if(null!=(t=b.arrow)&&t.alignmentOffset)return{};let N=ln(v),I=ll(w),L=ln(w)===w,A=await (null==_.isRTL?void 0:_.isRTL(j.floating)),z=O||(L||!E?[lp(w)]:(m=lp(l=w),[ls(l),m,ls(m)])),R="none"!==P;!O&&R&&z.push(...(s=w,c=E,u=P,d=A,g=lr(s),y=function(e,t,n){switch(e){case"top":case"bottom":if(n)return t?lu:lc;return t?lc:lu;case"left":case"right":return t?ld:lf;default:return[]}}(ln(s),"start"===u,d),g&&(y=y.map(e=>e+"-"+g),c&&(y=y.concat(y.map(ls)))),y));let D=[w,...z],M=await co(e,T),Z=[],U=(null==(n=b.flip)?void 0:n.overflows)||[];if(k&&Z.push(M[N]),S){let e,t,n,r,o=(f=v,p=x,void 0===(h=A)&&(h=!1),e=lr(f),t=lo(ll(f)),n=la(t),r="x"===t?e===(h?"end":"start")?"right":"left":"start"===e?"bottom":"top",p.reference[n]>p.floating[n]&&(r=lp(r)),[r,lp(r)]);Z.push(M[o[0]],M[o[1]])}if(U=[...U,{placement:v,overflows:Z}],!Z.every(e=>e<=0)){let e=((null==(r=b.flip)?void 0:r.index)||0)+1,t=D[e];if(t&&("alignment"!==S||I===ll(t)||U.every(e=>ll(e.placement)!==I||e.overflows[0]>0)))return{data:{index:e,overflows:U},reset:{placement:t}};let n=null==(o=U.filter(e=>e.overflows[0]<=0).sort((e,t)=>e.overflows[1]-t.overflows[1])[0])?void 0:o.placement;if(!n)switch(C){case"bestFit":{let e=null==(a=U.filter(e=>{if(R){let t=ll(e.placement);return t===I||"y"===t}return!0}).map(e=>[e.placement,e.overflows.filter(e=>e>0).reduce((e,t)=>e+t,0)]).sort((e,t)=>e[1]-t[1])[0])?void 0:a[0];e&&(n=e);break}case"initialPlacement":n=w}if(v!==n)return{reset:{placement:n}}}return{}}},options:[o,a]},er=ee?null:(l=e=>{var t,n,r;let o=lD(e.elements.floating).documentElement;return{...K,rootBoundary:z?{x:0,y:0,width:o.clientWidth,height:o.clientHeight}:void 0,mainAxis:"none"!==Z,crossAxis:et,limiter:P||z?void 0:{...(void 0===(r=t=()=>{if(!Y.current)return{};let{height:e}=Y.current.getBoundingClientRect();return{offset:e/2+("number"==typeof O?O:0)}})&&(r={}),{options:r,fn(e){let{x:t,y:n,placement:o,rects:a,middlewareData:i}=e,{offset:l=0,mainAxis:s=!0,crossAxis:c=!0}=lt(r,e),u={x:t,y:n},d=ll(o),f=lo(d),p=u[f],h=u[d],m=lt(l,e),g="number"==typeof m?{mainAxis:m,crossAxis:0}:{mainAxis:0,crossAxis:0,...m};if(s){let e="y"===f?"height":"width",t=a.reference[f]-a.floating[e]+g.mainAxis,n=a.reference[f]+a.reference[e]-g.mainAxis;p<t?p=t:p>n&&(p=n)}if(c){var y,v;let e="y"===f?"width":"height",t=cl.has(ln(o)),n=a.reference[d]-a.floating[e]+(t&&(null==(y=i.offset)?void 0:y[d])||0)+(t?0:g.crossAxis),r=a.reference[d]+a.reference[e]+(t?0:(null==(v=i.offset)?void 0:v[d])||0)-(t?g.crossAxis:0);h<n?h=n:h>r&&(h=r)}return{[f]:p,[d]:h}}}),options:[t,n]}}},s=[K,P,z,O,Z],{...(void 0===(c=l)&&(c={}),{name:"shift",options:c,async fn(e){let{x:t,y:n,placement:r}=e,{mainAxis:o=!0,crossAxis:a=!1,limiter:i={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...l}=lt(c,e),s={x:t,y:n},u=await co(e,l),d=ll(ln(r)),f=lo(d),p=s[f],h=s[d];if(o){let e="y"===f?"top":"left",t="y"===f?"bottom":"right",n=p+u[e],r=p-u[t];p=i5(n,i4(p,r))}if(a){let e="y"===d?"top":"left",t="y"===d?"bottom":"right",n=h+u[e],r=h-u[t];h=i5(n,i4(h,r))}let m=i.fn({...e,[f]:p,[d]:h});return{...m,data:{x:m.x-t,y:m.y-n,enabled:{[f]:o,[d]:a}}}}}),options:[l,s]});"shift"===M||"shift"===Z||"center"===j?J.push(er,en):J.push(en,er),J.push({...{name:"size",options:f=u={...K,apply({elements:{floating:e},rects:{reference:t},availableWidth:n,availableHeight:r}){Object.entries({"--available-width":`${n}px`,"--available-height":`${r}px`,"--anchor-width":`${t.width}px`,"--anchor-height":`${t.height}px`}).forEach(([t,n])=>{e.style.setProperty(t,n)})}},async fn(e){var t,n;let r,o,{placement:a,rects:i,platform:l,elements:s}=e,{apply:c=()=>{},...u}=lt(f,e),d=await co(e,u),p=ln(a),h=lr(a),m="y"===ll(a),{width:g,height:y}=i.floating;"top"===p||"bottom"===p?(r=p,o=h===(await (null==l.isRTL?void 0:l.isRTL(s.floating))?"start":"end")?"left":"right"):(o=p,r="end"===h?"top":"bottom");let v=y-d.top-d.bottom,b=g-d.left-d.right,x=i4(y-d[r],v),w=i4(g-d[o],b),_=!e.middlewareData.shift,j=x,k=w;if(null!=(t=e.middlewareData.shift)&&t.enabled.x&&(k=b),null!=(n=e.middlewareData.shift)&&n.enabled.y&&(j=v),_&&!h){let e=i5(d.left,0),t=i5(d.right,0),n=i5(d.top,0),r=i5(d.bottom,0);m?k=g-2*(0!==e||0!==t?e+t:i5(d.left,d.right)):j=y-2*(0!==n||0!==r?n+r:i5(d.top,d.bottom))}await c({...e,availableWidth:k,availableHeight:j});let S=await l.getDimensions(s.floating);return g!==S.width||y!==S.height?{reset:{rects:!0}}:{}}},options:[u,d]},(p=()=>({element:Y.current||document.createElement("div"),padding:E,offsetParent:"floating"}),h=[E],{...{name:"arrow",options:v=p,async fn(e){let{x:t,y:n,placement:r,rects:o,platform:a,elements:i,middlewareData:l}=e,{element:s,padding:c=0,offsetParent:u="real"}=lt(v,e)||{};if(null==s)return{};let d=lh(c),f={x:t,y:n},p=lo(ll(r)),h=la(p),m=await a.getDimensions(s),g="y"===p,y=g?"clientHeight":"clientWidth",b=o.reference[h]+o.reference[p]-f[p]-o.floating[h],x=f[p]-o.reference[p],w="real"===u?await a.getOffsetParent?.(s):i.floating,_=i.floating[y]||o.floating[h];_&&await a.isElement?.(w)||(_=i.floating[y]||o.floating[h]);let j=_/2-m[h]/2-1,k=Math.min(d[g?"top":"left"],j),S=Math.min(d[g?"bottom":"right"],j),O=_-m[h]-S,C=_/2-m[h]/2+(b/2-x/2),P=i5(k,i4(C,O)),E=!l.arrow&&null!=lr(r)&&C!==P&&o.reference[h]/2-(C<k?k:S)-m[h]/2<0,T=E?C<k?C-k:C-O:0;return{[p]:f[p]+T,data:{[p]:P,centerOffset:C-P-T,...E&&{alignmentOffset:T}},reset:E}}},options:[p,h]}),{...(void 0===(y=m)&&(y={}),{name:"hide",options:y,async fn(e){let{rects:t}=e,{strategy:n="referenceHidden",...r}=lt(y,e);switch(n){case"referenceHidden":{let n=ca(await co(e,{...r,elementContext:"reference"}),t.reference);return{data:{referenceHiddenOffsets:n,referenceHidden:ci(n)}}}case"escaped":{let n=ca(await co(e,{...r,altBoundary:!0}),t.floating);return{data:{escapedOffsets:n,escaped:ci(n)}}}default:return{}}}}),options:[m,g]},{name:"transformOrigin",fn(e){let{elements:t,middlewareData:n,placement:r,rects:o,y:a}=e,i=ln(r),l=ll(i),s=Y.current,c=n.arrow?.x||0,u=n.arrow?.y||0,d=s?.clientWidth||0,f=s?.clientHeight||0,p=c+d/2,h=u+f/2,m=Math.abs(n.shift?.y||0),g=o.reference.height/2,y=m>("function"==typeof _?_(cL(e,w,$)):_),v={top:`${p}px calc(100% + ${_}px)`,bottom:`${p}px ${-_}px`,left:`calc(100% + ${_}px) ${h}px`,right:`${-_}px ${h}px`}[i],b=`${p}px ${o.reference.y+g-a}px`;return t.floating.style.setProperty("--transform-origin",et&&"y"===l&&y?b:v),{}}},D);let eo=I;!L&&I&&(eo={...I,elements:{reference:null,floating:null,domReference:null}});let ea=C.useMemo(()=>({elementResize:T&&"undefined"!=typeof ResizeObserver,layoutShift:T&&"undefined"!=typeof IntersectionObserver}),[T]),{refs:ei,elements:el,x:es,y:ec,middlewareData:eu,update:ed,placement:ef,context:ep,isPositioned:eh,floatingStyles:em}=function(e={}){let{nodeId:t}=e,n=aZ({...e,elements:{reference:null,floating:null,...e.elements}}),r=e.rootContext||n,o=r.elements,[a,i]=C.useState(null),[l,s]=C.useState(null),c=o?.domReference||a,u=C.useRef(null),d=C.useContext(az);aL(()=>{c&&(u.current=c)},[c]);let f=function(e){void 0===e&&(e={});let{placement:t="bottom",strategy:n="absolute",middleware:r=[],platform:o,elements:{reference:a,floating:i}={},transform:l=!0,whileElementsMounted:s,open:c}=e,[u,d]=C.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[f,p]=C.useState(r);cP(f,r)||p(r);let[h,m]=C.useState(null),[g,y]=C.useState(null),v=C.useCallback(e=>{e!==_.current&&(_.current=e,m(e))},[]),b=C.useCallback(e=>{e!==j.current&&(j.current=e,y(e))},[]),x=a||h,w=i||g,_=C.useRef(null),j=C.useRef(null),k=C.useRef(u),S=null!=s,O=cN(s),P=cN(o),E=cN(c),T=C.useCallback(()=>{var e,r,o;let a,i,l;if(!_.current||!j.current)return;let s={placement:t,strategy:n,middleware:f};P.current&&(s.platform=P.current),(e=_.current,r=j.current,o=s,a=new Map,l={...(i={platform:cj,...o}).platform,_c:a},cr(e,r,{...i,platform:l})).then(e=>{let t={...e,isPositioned:!1!==E.current};N.current&&!cP(k.current,t)&&(k.current=t,ex.flushSync(()=>{d(t)}))})},[f,t,n,P,E]);cC(()=>{!1===c&&k.current.isPositioned&&(k.current.isPositioned=!1,d(e=>({...e,isPositioned:!1})))},[c]);let N=C.useRef(!1);cC(()=>(N.current=!0,()=>{N.current=!1}),[]),cC(()=>{if(x&&(_.current=x),w&&(j.current=w),x&&w){if(O.current)return O.current(x,w,T);T()}},[x,w,T,O,S]);let I=C.useMemo(()=>({reference:_,floating:j,setReference:v,setFloating:b}),[v,b]),L=C.useMemo(()=>({reference:x,floating:w}),[x,w]),A=C.useMemo(()=>{let e={position:n,left:0,top:0};if(!L.floating)return e;let t=cT(L.floating,u.x),r=cT(L.floating,u.y);return l?{...e,transform:"translate("+t+"px, "+r+"px)",...cE(L.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:t,top:r}},[n,l,L.floating,u.x,u.y]);return C.useMemo(()=>({...u,update:T,refs:I,elements:L,floatingStyles:A}),[u,T,I,L,A])}({...e,elements:{...o,...l&&{reference:l}}}),p=C.useCallback(e=>{let t=a$(e)?{getBoundingClientRect:()=>e.getBoundingClientRect(),getClientRects:()=>e.getClientRects(),contextElement:e}:e;s(t),f.refs.setReference(t)},[f.refs]),h=C.useCallback(e=>{(a$(e)||null===e)&&(u.current=e,i(e)),(a$(f.refs.reference.current)||null===f.refs.reference.current||null!==e&&!a$(e))&&f.refs.setReference(e)},[f.refs]),m=C.useMemo(()=>({...f.refs,setReference:h,setPositionReference:p,domReference:u}),[f.refs,h,p]),g=C.useMemo(()=>({...f.elements,domReference:c}),[f.elements,c]),y=C.useMemo(()=>({...f,...r,refs:m,elements:g,nodeId:t}),[f,m,g,t,r]);return aL(()=>{r.dataRef.current.floatingContext=y;let e=d?.nodesRef.current.find(e=>e.id===t);e&&(e.context=y)}),C.useMemo(()=>({...f,context:y,refs:m,elements:g}),[f,m,g,y])}({rootContext:eo,placement:W,middleware:J,strategy:x,whileElementsMounted:N?void 0:(...e)=>cS(...e,ea),nodeId:R}),{sideX:eg,sideY:ey}=eu.adaptiveOrigin||{},ev=C.useMemo(()=>D?{position:x,[eg]:`${es}px`,[ey]:`${ec}px`}:em,[D,eg,ey,x,es,ec,em]),eb=C.useRef(null);aL(()=>{if(!L)return;let e=B.current,t="function"==typeof e?e():e,n=(cz(t)?t.current:t)||null;n!==eb.current&&(ei.setPositionReference(n),eb.current=n)},[L,ei,V,B]),C.useEffect(()=>{if(!L)return;let e=B.current;"function"!=typeof e&&cz(e)&&e.current!==eb.current&&(ei.setPositionReference(e.current),eb.current=e.current)},[L,ei,V,B]),C.useEffect(()=>{if(N&&L&&el.domReference&&el.floating)return cS(el.domReference,el.floating,ed,ea)},[N,L,el,ed,ea]);let ew=cI(w,ln(ef),$),e_=lr(ef)||"center",ej=!!eu.hide?.referenceHidden,ek=C.useMemo(()=>({position:"absolute",top:eu.arrow?.y,left:eu.arrow?.x}),[eu.arrow]),eS=eu.arrow?.centerOffset!==0;return C.useMemo(()=>({positionerStyles:ev,arrowStyles:ek,arrowRef:Y,arrowUncentered:eS,side:ew,align:e_,anchorHidden:ej,refs:ei,context:ep,isPositioned:eh,update:ed}),[ev,ek,Y,eS,ew,e_,ej,ei,ep,eh,ed])}function cz(e){return null!=e&&"current"in e}function cR(e){let{children:t,elementsRef:n,labelsRef:r,onMapChange:o}=e,a=C.useRef(0),i=ay(cM).current,l=ay(cD).current,[s,c]=C.useState(0),u=C.useRef(s),d=ak((e,t)=>{l.set(e,t??null),u.current+=1,c(u.current)}),f=ak(e=>{l.delete(e),u.current+=1,c(u.current)}),p=C.useMemo(()=>{let e=new Map;return Array.from(l.keys()).sort(cZ).forEach((t,n)=>{let r=l.get(t)??{};e.set(t,{...r,index:n})}),e},[l,s]);aL(()=>{u.current===s&&(n.current.length!==p.size&&(n.current.length=p.size),r&&r.current.length!==p.size&&(r.current.length=p.size)),o?.(p)},[o,p,n,r,s,u]);let h=ak(e=>(i.add(e),()=>{i.delete(e)}));aL(()=>{i.forEach(e=>e(p))},[i,p]);let m=C.useMemo(()=>({register:d,unregister:f,subscribeMapChange:h,elementsRef:n,labelsRef:r,nextIndexRef:a}),[d,f,h,n,r,a]);return(0,S.jsx)(sv.Provider,{value:m,children:t})}function cD(){return new Map}function cM(){return new Set}function cZ(e,t){let n=e.compareDocumentPosition(t);return n&Node.DOCUMENT_POSITION_FOLLOWING||n&Node.DOCUMENT_POSITION_CONTAINED_BY?-1:n&Node.DOCUMENT_POSITION_PRECEDING||n&Node.DOCUMENT_POSITION_CONTAINS?1:0}let cU=C.forwardRef(function(e,t){let n,{cutout:r,...o}=e;if(r){let e=r?.getBoundingClientRect();n=`polygon( - 0% 0%, - 100% 0%, - 100% 100%, - 0% 100%, - 0% 0%, - ${e.left}px ${e.top}px, - ${e.left}px ${e.bottom}px, - ${e.right}px ${e.bottom}px, - ${e.right}px ${e.top}px, - ${e.left}px ${e.top}px - )`}return(0,S.jsx)("div",{ref:t,role:"presentation","data-base-ui-inert":"",...o,style:{position:"fixed",inset:0,userSelect:"none",WebkitUserSelect:"none",clipPath:n}})}),cF=C.forwardRef(function(e,t){var n;let r,o,a,i,{anchor:l,positionMethod:s="absolute",className:c,render:u,side:d,align:f,sideOffset:p=0,alignOffset:h=0,collisionBoundary:m="clipping-ancestors",collisionPadding:g=5,arrowPadding:y=5,sticky:v=!1,trackAnchor:b=!0,collisionAvoidance:x=iG,...w}=e,{open:_,setOpen:j,floatingRootContext:k,setPositionerElement:O,itemDomElements:P,itemLabels:E,mounted:T,modal:N,lastOpenChangeReason:I,parent:L,setHoverEnabled:A,triggerElement:z}=lN(),R=function(){let e=C.useContext(s7);if(void 0===e)throw Error("Base UI: <Menu.Portal> is missing.");return e}(),D=(r=aN(),o=C.useContext(az),i=a=aR(),aL(()=>{if(!r)return;let e={id:r,parentId:i};return o?.addNode(e),()=>{o?.removeNode(e)}},[o,r,i]),r),M=aR(),Z=lq(!0),U=l,F=p,H=h,V=f;"context-menu"===L.type&&(U=L.context?.anchor??l,V=e.align??"start",H=e.alignOffset??2,F=e.sideOffset??-5);let B=d,$=V;"menu"===L.type?(B=B??"inline-end",$=$??"start"):"menubar"===L.type&&(B=B??"bottom",$=$??"start");let q="context-menu"===L.type,W=cA({anchor:U,floatingRootContext:k,positionMethod:Z?"fixed":s,mounted:T,side:B,sideOffset:F,align:$,alignOffset:H,arrowPadding:q?0:y,collisionBoundary:m,collisionPadding:g,sticky:v,nodeId:D,keepMounted:R,trackAnchor:b,collisionAvoidance:x,shiftCrossAxis:q}),{events:K}=C.useContext(az),Y=C.useMemo(()=>{let e={};return _||(e.pointerEvents="none"),{role:"presentation",hidden:!T,style:{...W.positionerStyles,...e}}},[_,T,W.positionerStyles]);C.useEffect(()=>{function e(e){e.open?(e.parentNodeId===D&&A(!1),e.nodeId!==D&&e.parentNodeId===M&&j(!1,void 0,"sibling-open")):e.parentNodeId===D&&A(!0)}return K.on("openchange",e),()=>{K.off("openchange",e)}},[K,D,M,j,A]),C.useEffect(()=>{K.emit("openchange",{open:_,nodeId:D,parentNodeId:M})},[K,_,D,M]);let X=C.useMemo(()=>({open:_,side:W.side,align:W.align,anchorHidden:W.anchorHidden,nested:"menu"===L.type}),[_,W.side,W.align,W.anchorHidden,L.type]),G=C.useMemo(()=>({side:W.side,align:W.align,arrowRef:W.arrowRef,arrowUncentered:W.arrowUncentered,arrowStyles:W.arrowStyles,floatingContext:W.context}),[W.side,W.align,W.arrowRef,W.arrowUncentered,W.arrowStyles,W.context]),Q=sp("div",e,{state:X,customStyleHookMapping:sd,ref:[t,O],props:{...Y,...w}}),J=T&&"menu"!==L.type&&("menubar"!==L.type&&N&&"trigger-hover"!==I||"menubar"===L.type&&L.context.modal),ee=null;return"menubar"===L.type?ee=L.context.contentElement:void 0===L.type&&(ee=z),(0,S.jsxs)(ct.Provider,{value:G,children:[J&&(0,S.jsx)(cU,{ref:"context-menu"===L.type||"nested-context-menu"===L.type?L.context.internalBackdropRef:null,inert:(n=!_,sf>=19?n:n?"true":void 0),cutout:ee}),(0,S.jsx)(aD,{id:D,children:(0,S.jsx)(cR,{elementsRef:P,labelsRef:E,children:Q})})]})}),cH={inert:new WeakMap,"aria-hidden":new WeakMap,none:new WeakMap};function cV(e){return"inert"===e?cH.inert:"aria-hidden"===e?cH["aria-hidden"]:cH.none}let cB=new WeakSet,c$={},cq=0,cW=e=>e&&(e.host||cW(e.parentNode)),cK=[];function cY(){cK=cK.filter(e=>e.isConnected)}function cX(){return cY(),cK[cK.length-1]}function cG(e,t){if(!t.current.includes("floating")&&!e.getAttribute("role")?.includes("dialog"))return;let n=sQ(),r=sX(e,n).filter(e=>{let t=e.getAttribute("data-tabindex")||"";return sG(e,n)||e.hasAttribute("data-tabindex")&&!t.startsWith("-")}),o=e.getAttribute("tabindex");t.current.includes("floating")||0===r.length?"0"!==o&&e.setAttribute("tabindex","0"):("-1"!==o||e.hasAttribute("data-tabindex")&&"-1"!==e.getAttribute("data-tabindex"))&&(e.setAttribute("tabindex","-1"),e.setAttribute("data-tabindex","-1"))}function cQ(e){let{context:t,children:n,disabled:r=!1,order:o=["content"],initialFocus:a=0,returnFocus:i=!0,restoreFocus:l=!1,modal:s=!0,closeOnFocusOut:c=!0,getInsideElements:u=()=>[]}=e,{open:d,onOpenChange:f,events:p,dataRef:h,elements:{domReference:m,floating:g}}=t,y=ak(()=>h.current.floatingContext?.nodeId),v=ak(u),b="number"==typeof a&&a<0,x=iI(m)&&b,w=it(o),_=it(a),j=it(i),k=C.useContext(az),O=C.useContext(s5),P=C.useRef(null),E=C.useRef(null),T=C.useRef(!1),N=C.useRef(!1),I=C.useRef(-1),L=aw(),A=null!=O,z=iL(g),R=ak((e=z)=>e?sY(e,sQ()):[]),D=ak(e=>{let t=R(e);return w.current.map(()=>t).filter(Boolean).flat()});C.useEffect(()=>{if(r||!s)return;function e(e){"Tab"===e.key&&iC(z,iO(iT(z)))&&0===R().length&&!x&&im(e)}let t=iT(z);return t.addEventListener("keydown",e),()=>{t.removeEventListener("keydown",e)}},[r,m,z,s,w,x,R,D]),C.useEffect(()=>{if(!r&&g)return g.addEventListener("focusin",e),()=>{g.removeEventListener("focusin",e)};function e(e){let t=iP(e),n=R().indexOf(t);-1!==n&&(I.current=n)}},[r,g,R]),C.useEffect(()=>{if(r||!c)return;function e(){N.current=!0}function t(e){let t=e.relatedTarget,n=e.currentTarget,r=iP(e);queueMicrotask(()=>{let o=y(),a=!(iC(m,t)||iC(g,t)||iC(t,g)||iC(O?.portalNode,t)||t?.hasAttribute(iA("focus-guard"))||k&&(iZ(k.nodesRef.current,o).find(e=>iC(e.context?.elements.floating,t)||iC(e.context?.elements.domReference,t))||iU(k.nodesRef.current,o).find(e=>[e.context?.elements.floating,iL(e.context?.elements.floating)].includes(t)||e.context?.elements.domReference===t)));if(n===m&&z&&cG(z,w),l&&n!==m&&!r?.isConnected&&iO(iT(z))===iT(z).body){aq(z)&&z.focus();let e=I.current,t=R(),n=t[e]||t[t.length-1]||z;aq(n)&&n.focus()}if(h.current.insideReactTree){h.current.insideReactTree=!1;return}if(N.current){N.current=!1;return}(x||!s)&&t&&a&&t!==cX()&&(T.current=!0,f(!1,e,"focus-out"))})}let n=!!(!k&&O);function o(){h.current.insideReactTree=!0,L.start(0,()=>{h.current.insideReactTree=!1})}if(g&&aq(m))return m.addEventListener("focusout",t),m.addEventListener("pointerdown",e),g.addEventListener("focusout",t),n&&g.addEventListener("focusout",o,!0),()=>{m.removeEventListener("focusout",t),m.removeEventListener("pointerdown",e),g.removeEventListener("focusout",t),n&&g.removeEventListener("focusout",o,!0)}},[r,m,g,z,s,k,O,f,c,l,R,x,y,w,h,L]);let M=C.useRef(null),Z=C.useRef(null),U=l5(M,O?.beforeInsideRef),F=l5(Z,O?.afterInsideRef);C.useEffect(()=>{if(r||!g)return;let e=Array.from(O?.portalNode?.querySelectorAll(`[${iA("portal")}]`)||[]),t=k?iU(k.nodesRef.current,y()):[],n=function(e,t=!1,n=!1){var r,o,a;let i,l,s,c,u,d,f,p,h=iT(e[0]).body;return r=e.concat(Array.from(h.querySelectorAll("[aria-live]"))),o=h,a=t,i="data-base-ui-inert",l=n?"inert":a?"aria-hidden":null,s=o,c=r.map(e=>{if(s.contains(e))return e;let t=cW(e);return s.contains(t)?t:null}).filter(e=>null!=e),u=new Set,d=new Set(c),f=[],c$[i]||(c$[i]=new WeakMap),p=c$[i],c.forEach(function e(t){!(!t||u.has(t))&&(u.add(t),t.parentNode&&e(t.parentNode))}),function e(t){!t||d.has(t)||[].forEach.call(t.children,t=>{if("script"!==aF(t))if(u.has(t))e(t);else{let e=l?t.getAttribute(l):null,n=null!==e&&"false"!==e,r=cV(l),o=(r.get(t)||0)+1,a=(p.get(t)||0)+1;r.set(t,o),p.set(t,a),f.push(t),1===o&&n&&cB.add(t),1===a&&t.setAttribute(i,""),!n&&l&&t.setAttribute(l,"inert"===l?"":"true")}})}(o),u.clear(),cq+=1,()=>{f.forEach(e=>{let t=cV(l),n=(t.get(e)||0)-1,r=(p.get(e)||0)-1;t.set(e,n),p.set(e,r),n||(!cB.has(e)&&l&&e.removeAttribute(l),cB.delete(e)),r||e.removeAttribute(i)}),(cq-=1)||(cH.inert=new WeakMap,cH["aria-hidden"]=new WeakMap,cH.none=new WeakMap,cB=new WeakSet,c$={})}}([g,t.find(e=>iI(e.context?.elements.domReference||null))?.context?.elements.domReference,...e,...v(),P.current,E.current,M.current,Z.current,O?.beforeOutsideRef.current,O?.afterOutsideRef.current,x?m:null].filter(e=>null!=e),s||x);return()=>{n()}},[r,m,g,s,w,O,x,k,y,v]),aL(()=>{if(r||!aq(z))return;let e=iO(iT(z));queueMicrotask(()=>{let t=D(z),n=_.current,r=("number"==typeof n?t[n]:n.current)||z,o=iC(z,e);b||o||!d||lj(r,{preventScroll:r===z})})},[r,d,z,b,D,_]),aL(()=>{var e;if(r||!z)return;let t=iT(z);function n({reason:e,event:t,nested:n}){if(["hover","safe-polygon"].includes(e)&&"mouseleave"===t.type&&(T.current=!0),"outside-press"===e)if(n)T.current=!1;else if(ig(t)||iy(t))T.current=!1;else{let e=!1;document.createElement("div").focus({get preventScroll(){return e=!0,!1}}),e?T.current=!1:T.current=!0}}e=iO(t),cY(),e&&"body"!==aF(e)&&(cK.push(e),cK.length>20&&(cK=cK.slice(-20))),p.on("openchange",n);let o=t.createElement("span");return o.setAttribute("tabindex","-1"),o.setAttribute("aria-hidden","true"),Object.assign(o.style,sj),A&&m&&m.insertAdjacentElement("afterend",o),()=>{p.off("openchange",n);let e=iO(t),r=iC(g,e)||k&&iZ(k.nodesRef.current,y(),!1).some(t=>iC(t.context?.elements.floating,e)),a=function(){if("boolean"==typeof j.current){let e=m||cX();return e&&e.isConnected?e:o}return j.current.current||o}();queueMicrotask(()=>{var n;let i,l=(n=a,i=sQ(),sG(n,i)?n:sY(n,i)[0]||n);j.current&&!T.current&&aq(l)&&(l===e||e===t.body||r)&&l.focus({preventScroll:!0}),o.remove()})}},[r,g,z,j,h,p,k,A,m,y]),C.useEffect(()=>{queueMicrotask(()=>{T.current=!1})},[r]),C.useEffect(()=>{if(r||!d)return;function e(e){let t=iP(e);t?.closest("[data-base-ui-click-trigger]")&&(N.current=!0)}let t=iT(z);return t.addEventListener("pointerdown",e,!0),()=>{t.removeEventListener("pointerdown",e,!0)}},[r,d,z]),aL(()=>{if(!r&&O)return O.setFocusManagerState({modal:s,closeOnFocusOut:c,open:d,onOpenChange:f,domReference:m}),()=>{O.setFocusManagerState(null)}},[r,O,s,d,f,c,m]),aL(()=>{if(!r&&z)return cG(z,w),()=>{queueMicrotask(cY)}},[r,z,w]);let H=!r&&(!s||!x)&&(A||s);return(0,S.jsxs)(C.Fragment,{children:[H&&(0,S.jsx)(sk,{"data-type":"inside",ref:U,onFocus:e=>{if(s){let e=D();lj(e[e.length-1])}else if(O?.preserveTabOrder&&O.portalNode)if(T.current=!1,s2(e,O.portalNode)){let e=s0(m);e?.focus()}else O.beforeOutsideRef.current?.focus()}}),n,H&&(0,S.jsx)(sk,{"data-type":"inside",ref:F,onFocus:e=>{if(s)lj(D()[0]);else if(O?.preserveTabOrder&&O.portalNode)if(c&&(T.current=!0),s2(e,O.portalNode)){let e=s1(m);e?.focus()}else O.afterOutsideRef.current?.focus()}})]})}let cJ={...sd,...st},c0=C.forwardRef(function(e,t){let{render:n,className:r,finalFocus:o,...a}=e,{open:i,setOpen:l,popupRef:s,transitionStatus:c,popupProps:u,mounted:d,instantType:f,onOpenChangeComplete:p,parent:h,lastOpenChangeReason:m,rootId:g}=lN(),{side:y,align:v,floatingContext:b}=function(){let e=C.useContext(ct);if(void 0===e)throw Error("Base UI: MenuPositionerContext is missing. MenuPositioner parts must be placed within <Menu.Positioner>.");return e}();lA({open:i,ref:s,onComplete(){i&&p?.(!0)}});let{events:x}=C.useContext(az);C.useEffect(()=>{function e(e){l(!1,e.domEvent,e.reason)}return x.on("close",e),()=>{x.off("close",e)}},[x,l]);let w=sp("div",e,{state:C.useMemo(()=>({transitionStatus:c,side:y,align:v,open:i,nested:"menu"===h.type,instant:f}),[c,y,v,i,h.type,f]),ref:[t,s],customStyleHookMapping:cJ,props:[u,"starting"===c?iK:iY,a,{"data-rootownerid":g}]}),_=void 0===h.type||"context-menu"===h.type;return"menubar"===h.type&&"outside-press"!==m&&(_=!0),(0,S.jsx)(cQ,{context:b,modal:!1,disabled:!d,returnFocus:o||_,initialFocus:"menu"===h.type?-1:0,restoreFocus:!0,children:w})}),c1=C.createContext(void 0),c2=C.forwardRef(function(e,t){let{render:n,className:r,...o}=e,[a,i]=C.useState(void 0),l=C.useMemo(()=>({setLabelId:i}),[i]),s=sp("div",e,{ref:t,props:{role:"group","aria-labelledby":a,...o}});return(0,S.jsx)(c1.Provider,{value:l,children:s})});function c3(e){return aN(e,"base-ui")}let c4=C.forwardRef(function(e,t){let{className:n,render:r,id:o,...a}=e,i=c3(o),{setLabelId:l}=function(){let e=C.useContext(c1);if(void 0===e)throw Error("Base UI: MenuGroupRootContext is missing. Menu group parts must be used within <Menu.Group>.");return e}();return aL(()=>(l(i),()=>{l(void 0)}),[l,i]),sp("div",e,{ref:t,props:{id:i,role:"presentation",...a}})}),c5={type:"regular-item"},c6=C.memo(C.forwardRef(function(e,t){let{className:n,closeOnClick:r=!0,disabled:o=!1,highlighted:a,id:i,menuEvents:l,itemProps:s,render:c,allowMouseUpTriggerRef:u,typingRef:d,nativeButton:f,...p}=e,{getItemProps:h,itemRef:m}=function(e){let{closeOnClick:t,disabled:n=!1,highlighted:r,id:o,menuEvents:a,allowMouseUpTriggerRef:i,typingRef:l,nativeButton:s,itemMetadata:c}=e,u=C.useRef(null),{getButtonProps:d,buttonRef:f}=sy({disabled:n,focusableWhenDisabled:!0,native:s}),p=C.useCallback(e=>lX({id:o,role:"menuitem",tabIndex:r?0:-1,onMouseEnter(){"submenu-trigger"===c.type&&c.setActive()},onKeyUp:e=>{" "===e.key&&l.current&&e.preventBaseUIHandler()},onClick:e=>{t&&a.emit("close",{domEvent:e,reason:"item-press"})},onMouseUp:()=>{u.current&&i.current&&"regular-item"===c.type&&u.current.click()}},e,d),[o,r,d,l,t,a,i,c]),h=l5(u,f);return C.useMemo(()=>({getItemProps:p,itemRef:h}),[p,h])}({closeOnClick:r,disabled:o,highlighted:a,id:i,menuEvents:l,allowMouseUpTriggerRef:u,typingRef:d,nativeButton:f,itemMetadata:c5});return sp("div",e,{state:C.useMemo(()=>({disabled:o,highlighted:a}),[o,a]),ref:[m,t],props:[s,p,h]})})),c9=C.forwardRef(function(e,t){let{id:n,label:r,nativeButton:o=!1,...a}=e,i=C.useRef(null),l=sx({label:r}),s=l5(t,l.ref,i),{itemProps:c,activeIndex:u,allowMouseUpTriggerRef:d,typingRef:f}=lN(),p=c3(n),h=l.index===u,{events:m}=C.useContext(az);return(0,S.jsx)(c6,{...a,id:p,ref:s,highlighted:h,menuEvents:m,itemProps:c,allowMouseUpTriggerRef:d,typingRef:f,nativeButton:o})});var c8="__next_builtin__";function c7(e){return e.replace(new RegExp("^".concat(c8)),"").replace(new RegExp("".concat("@boundary","$")),"")}var ue="boundary:";function ut(e){return e.startsWith(ue)}function un(e){return e.replace(ue,"")}function ur(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function uo(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function ua(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function ui(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return ur(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ur(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var ul=function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){t.forEach(function(t){"function"==typeof t?t(e):t&&(t.current=e)})}};function us(e){var t,n=e.nodeState,r=e.boundaries,o=n.pagePath,a=n.boundaryType,i=n.setBoundaryType,l=ui((0,C.useState)(!1),2),s=l[0],c=l[1],u=dw().shadowRoot,d=(0,C.useRef)(null),f=(0,C.useRef)(null);ns(f,d,s,function(){c(!1)},null==(t=d.current)?void 0:t.ownerDocument);var p=(Object.values(r).find(function(e){return null!==e})||"").split(".").pop()||"js",h=(0,C.useMemo)(function(){return Object.fromEntries(Object.entries(r).map(function(e){var t=ui(e,2),n=t[0],r=c7((t[1]||"").split("/").pop()||"".concat(n,".").concat(p));return[n,r]}))},[r,p]),m=(o||"").split("/").pop()||"",g=c7(a?"page.".concat(p):m||"page.".concat(p)),y=[{label:h.loading,value:"loading",icon:(0,S.jsx)(uc,{}),disabled:!r.loading},{label:h.error,value:"error",icon:(0,S.jsx)(uu,{}),disabled:!r.error},{label:h["not-found"],value:"not-found",icon:(0,S.jsx)(ud,{}),disabled:!r["not-found"]}],v={label:a?"Reset":g,value:"reset",icon:(0,S.jsx)(uf,{}),disabled:null===a},b=(0,C.useCallback)(function(e){var t=new URLSearchParams({file:e.filePath,isAppRelativePath:"1"});fetch("".concat(process.env.__NEXT_ROUTER_BASEPATH||"","/__nextjs_launch-editor?").concat(t.toString())).catch(console.warn)},[]),x=(0,C.useCallback)(function(e){switch(e){case"not-found":case"loading":case"error":i(e);break;case"reset":i(null);break;case"open-editor":o&&b({filePath:o})}},[i,o,b]),w=(0,C.useMemo)(function(){return"layout"!==n.type&&"template"!==n.type&&Object.values(r).some(function(e){return null!==e})},[n.type,r]);return(0,S.jsxs)(l4,{delay:0,modal:!1,open:s,onOpenChange:c,children:[(0,S.jsx)(s_,{className:"segment-boundary-trigger","data-nextjs-dev-overlay-segment-boundary-trigger-button":!0,render:function(e){var t=ul(e.ref,d);return(0,S.jsx)(uh,ua(uo({},e),{ref:t}))},disabled:!w}),(0,S.jsx)(ce,{container:u,children:(0,S.jsx)(cF,{className:"segment-boundary-dropdown-positioner",side:"bottom",align:"center",sideOffset:6,arrowPadding:8,ref:f,children:(0,S.jsxs)(c0,{className:"segment-boundary-dropdown",children:[(0,S.jsxs)(c2,{children:[(0,S.jsx)(c4,{className:"segment-boundary-group-label",children:"Toggle Overrides"}),y.map(function(e){return(0,S.jsxs)(c9,{className:"segment-boundary-dropdown-item",onClick:function(){return x(e.value)},disabled:e.disabled,children:[e.icon,e.label]},e.value)})]}),(0,S.jsx)(c2,{children:(0,S.jsxs)(c9,{className:"segment-boundary-dropdown-item",onClick:function(){return x(v.value)},disabled:v.disabled,children:[v.icon,v.label]},v.value)})]})})})]})}function uc(){var e,t,n=(0,O.c)(2);return n[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("g",{clipPath:"url(#clip0_2759_1866)",children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 3.5C13.5899 3.5 16.5 6.41015 16.5 10C16.5 13.5899 13.5899 16.5 10 16.5C6.41015 16.5 3.5 13.5899 3.5 10C3.5 6.41015 6.41015 3.5 10 3.5ZM2 10C2 14.4183 5.58172 18 10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10ZM10.75 9.62402V6H9.25V9.875C9.25 10.1898 9.39858 10.486 9.65039 10.6748L11.5498 12.0996L12.1504 12.5498L13.0498 11.3496L12.4502 10.9004L10.75 9.62402Z",fill:"currentColor"})}),n[0]=e):e=n[0],n[1]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsxs)("svg",{width:"20px",height:"20px",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e,(0,S.jsx)("defs",{children:(0,S.jsx)("clipPath",{id:"clip0_2759_1866",children:(0,S.jsx)("rect",{width:"16",height:"16",fill:"white",transform:"translate(2 2)"})})})]}),n[1]=t):t=n[1],t}function uu(){var e,t,n=(0,O.c)(2);return n[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("g",{clipPath:"url(#clip0_2759_1881)",children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5 7.30762V12.6924L7.30762 16.5H12.6924L16.5 12.6924V7.30762L12.6924 3.5H7.30762L3.5 7.30762ZM18 12.8994L17.9951 12.998C17.9724 13.2271 17.8712 13.4423 17.707 13.6064L13.6064 17.707L13.5332 17.7734C13.3806 17.8985 13.1944 17.9757 12.998 17.9951L12.8994 18H7.10059L7.00195 17.9951C6.80562 17.9757 6.6194 17.8985 6.4668 17.7734L6.39355 17.707L2.29297 13.6064C2.12883 13.4423 2.02756 13.2271 2.00488 12.998L2 12.8994V7.10059C2 6.83539 2.10546 6.58109 2.29297 6.39355L6.39355 2.29297C6.55771 2.12883 6.77294 2.02756 7.00195 2.00488L7.10059 2H12.8994L12.998 2.00488C13.2271 2.02756 13.4423 2.12883 13.6064 2.29297L17.707 6.39355C17.8945 6.58109 18 6.83539 18 7.10059V12.8994ZM9.25 5.75H10.75L10.75 10.75H9.25L9.25 5.75ZM10 14C10.5523 14 11 13.5523 11 13C11 12.4477 10.5523 12 10 12C9.44772 12 9 12.4477 9 13C9 13.5523 9.44772 14 10 14Z",fill:"currentColor"})}),n[0]=e):e=n[0],n[1]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsxs)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[e,(0,S.jsx)("defs",{children:(0,S.jsx)("clipPath",{id:"clip0_2759_1881",children:(0,S.jsx)("rect",{width:"16",height:"16",fill:"white",transform:"translate(2 2)"})})})]}),n[1]=t):t=n[1],t}function ud(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{width:"20px",height:"20px",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.5586 2.5C11.1341 2.50004 11.6588 2.8294 11.9091 3.34766L17.8076 15.5654C18.1278 16.2292 17.6442 16.9997 16.9072 17H3.09274C2.35574 16.9997 1.8721 16.2292 2.19235 15.5654L8.09079 3.34766C8.34109 2.8294 8.86583 2.50004 9.44137 2.5H10.5586ZM3.89059 15.5H16.1093L10.5586 4H9.44137L3.89059 15.5ZM9.24997 6.75H10.75L10.75 10.75H9.24997L9.24997 6.75ZM9.99997 14C10.5523 14 11 13.5523 11 13C11 12.4477 10.5523 12 9.99997 12C9.44768 12 8.99997 12.4477 8.99997 13C8.99997 13.5523 9.44768 14 9.99997 14Z",fill:"currentColor"})}),t[0]=e):e=t[0],e}function uf(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,S.jsx)("path",{d:"M9.96484 3C13.8463 3.00018 17 6.13012 17 10C17 13.8699 13.8463 16.9998 9.96484 17C7.62404 17 5.54877 15.8617 4.27051 14.1123L3.82812 13.5068L5.03906 12.6221L5.48145 13.2275C6.48815 14.6053 8.12092 15.5 9.96484 15.5C13.0259 15.4998 15.5 13.0335 15.5 10C15.5 6.96654 13.0259 4.50018 9.96484 4.5C7.42905 4.5 5.29544 6.19429 4.63867 8.5H8V10H2.75C2.33579 10 2 9.66421 2 9.25V4H3.5V7.2373C4.57781 4.74376 7.06749 3 9.96484 3Z",fill:"currentColor"})}),t[0]=e):e=t[0],e}function up(e){var t,n,r=(0,O.c)(3);return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.7071 2.39644C8.31658 2.00592 7.68341 2.00592 7.29289 2.39644L4.46966 5.21966L3.93933 5.74999L4.99999 6.81065L5.53032 6.28032L7.99999 3.81065L10.4697 6.28032L11 6.81065L12.0607 5.74999L11.5303 5.21966L8.7071 2.39644ZM5.53032 9.71966L4.99999 9.18933L3.93933 10.25L4.46966 10.7803L7.29289 13.6035C7.68341 13.9941 8.31658 13.9941 8.7071 13.6035L11.5303 10.7803L12.0607 10.25L11 9.18933L10.4697 9.71966L7.99999 12.1893L5.53032 9.71966Z",fill:"currentColor"}),r[0]=t):t=r[0],r[1]!==e?(n=(0,S.jsx)("svg",ua(uo({strokeLinejoin:"round",viewBox:"0 0 16 16"},e),{children:t})),r[1]=e,r[2]=n):n=r[2],n}function uh(e){var t,n,r=(0,O.c)(3);return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("span",{className:"segment-boundary-trigger-text",children:(0,S.jsx)(up,{className:"plus-icon"})}),r[0]=t):t=r[0],r[1]!==e?(n=(0,S.jsx)("button",ua(uo({},e),{children:t})),r[1]=e,r[2]=n):n=r[2],n}let um=C.createContext(void 0);function ug(){let e=C.useContext(um);if(void 0===e)throw Error("Base UI: TooltipRootContext is missing. Tooltip parts must be placed within <Tooltip.Root>.");return e}let uy=C.forwardRef(function(e,t){let{className:n,render:r,...o}=e,{open:a,setTriggerElement:i,triggerProps:l}=ug();return sp("button",e,{state:C.useMemo(()=>({open:a}),[a]),ref:[t,i],props:[l,o],customStyleHookMapping:sc})}),uv=C.createContext(void 0);function ub(){let e=C.useContext(uv);if(void 0===e)throw Error("Base UI: TooltipPositionerContext is missing. TooltipPositioner parts must be placed within <Tooltip.Positioner>.");return e}let ux=C.forwardRef(function(e,t){let{className:n,render:r,...o}=e,{open:a,arrowRef:i,side:l,align:s,arrowUncentered:c,arrowStyles:u}=ub();return sp("div",e,{state:C.useMemo(()=>({open:a,side:l,align:s,uncentered:c}),[a,l,s,c]),ref:[t,i],props:[{style:u,"aria-hidden":!0},o],customStyleHookMapping:sd})}),uw={...sd,...st},u_=C.forwardRef(function(e,t){let{className:n,render:r,...o}=e,{open:a,instantType:i,transitionStatus:l,popupProps:s,popupRef:c,onOpenChangeComplete:u}=ug(),{side:d,align:f}=ub();return lA({open:a,ref:c,onComplete(){a&&u?.(!0)}}),sp("div",e,{state:C.useMemo(()=>({open:a,side:d,align:f,instant:i,transitionStatus:l}),[a,d,f,i,l]),ref:[t,c],props:[s,"starting"===l?iK:iY,o],customStyleHookMapping:uw})}),uj=C.createContext(void 0),uk=C.forwardRef(function(e,t){let{render:n,className:r,anchor:o,positionMethod:a="absolute",side:i="top",align:l="center",sideOffset:s=0,alignOffset:c=0,collisionBoundary:u="clipping-ancestors",collisionPadding:d=5,arrowPadding:f=5,sticky:p=!1,trackAnchor:h=!0,collisionAvoidance:m=iQ,...g}=e,{open:y,setPositionerElement:v,mounted:b,floatingRootContext:x,trackCursorAxis:w,hoverable:_}=ug(),j=cA({anchor:o,positionMethod:a,floatingRootContext:x,mounted:b,side:i,sideOffset:s,align:l,alignOffset:c,collisionBoundary:u,collisionPadding:d,sticky:p,arrowPadding:f,trackAnchor:h,keepMounted:function(){let e=C.useContext(uj);if(void 0===e)throw Error("Base UI: <Tooltip.Portal> is missing.");return e}(),collisionAvoidance:m}),k=C.useMemo(()=>{let e={};return y&&"both"!==w&&_||(e.pointerEvents="none"),{role:"presentation",hidden:!b,style:{...j.positionerStyles,...e}}},[y,w,_,b,j.positionerStyles]),O=C.useMemo(()=>({props:k,...j}),[k,j]),P=C.useMemo(()=>({open:y,side:O.side,align:O.align,anchorHidden:O.anchorHidden}),[y,O.side,O.align,O.anchorHidden]),E=C.useMemo(()=>({...P,arrowRef:O.arrowRef,arrowStyles:O.arrowStyles,arrowUncentered:O.arrowUncentered}),[P,O.arrowRef,O.arrowStyles,O.arrowUncentered]),T=sp("div",e,{state:P,props:[O.props,g],ref:[t,v],customStyleHookMapping:sd});return(0,S.jsx)(uv.Provider,{value:E,children:T})});function uS(e){let t=s9({root:e.root});return t&&ex.createPortal(e.children,t)}function uO(e){let{children:t,keepMounted:n=!1,container:r}=e,{mounted:o}=ug();return o||n?(0,S.jsx)(uj.Provider,{value:n,children:(0,S.jsx)(uS,{root:r,children:t})}):null}let uC=C.createContext({hasProvider:!1,timeoutMs:0,delayRef:{current:0},initialDelayRef:{current:0},timeout:new ax,currentIdRef:{current:null},currentContextRef:{current:null}});function uP(e){let{children:t,delay:n,timeoutMs:r=0}=e,o=C.useRef(n),a=C.useRef(n),i=C.useRef(null),l=C.useRef(null),s=aw();return(0,S.jsx)(uC.Provider,{value:C.useMemo(()=>({hasProvider:!0,delayRef:o,initialDelayRef:a,currentIdRef:i,timeoutMs:r,currentContextRef:l,timeout:s}),[r,s]),children:t})}let uE=C.createContext(void 0),uT=function(e){let{delay:t,closeDelay:n,timeout:r=400}=e,o=C.useMemo(()=>({delay:t,closeDelay:n}),[t,n]),a=C.useMemo(()=>({open:t,close:n}),[t,n]);return(0,S.jsx)(uE.Provider,{value:o,children:(0,S.jsx)(uP,{delay:a,timeoutMs:r,children:e.children})})};function uN(e){return null!=e&&null!=e.clientX}function uI(e){let{disabled:t=!1,defaultOpen:n=!1,onOpenChange:r,open:o,delay:a,closeDelay:i,hoverable:l=!0,trackCursorAxis:s="none",actionsRef:c,onOpenChangeComplete:u}=e,d=a??600,f=i??0,[p,h]=C.useState(null),[m,g]=C.useState(null),[y,v]=C.useState(),b=C.useRef(null),[x,w]=aC({controlled:o,default:n,name:"Tooltip",state:"open"}),_=!t&&x;function j(e,t,n){let o="trigger-hover"===n,a=e&&"trigger-focus"===n,i=!e&&("trigger-press"===n||"escape-key"===n);function l(){r?.(e,t,n),w(e)}o?ex.flushSync(l):l(),a||i?v(a?"focus":"dismiss"):"trigger-hover"===n&&v(void 0)}let k=ak(j);x&&t&&j(!1,void 0,"disabled");let{mounted:O,setMounted:P,transitionStatus:E}=lL(_),T=ak(()=>{P(!1),u?.(!1)});lA({enabled:!c,open:_,ref:b,onComplete(){_||T()}}),C.useImperativeHandle(c,()=>({unmount:T}),[T]);let N=aZ({elements:{reference:p,floating:m},open:_,onOpenChange(e,t,n){k(e,t,lB(n))}}),I=C.useContext(uE),{delayRef:L,isInstantPhase:A,hasProvider:z}=function(e,t={}){let{open:n,onOpenChange:r,floatingId:o}=e,{enabled:a=!0}=t,{currentIdRef:i,delayRef:l,timeoutMs:s,initialDelayRef:c,currentContextRef:u,hasProvider:d,timeout:f}=C.useContext(uC),[p,h]=C.useState(!1);return aL(()=>{function e(){h(!1),u.current?.setIsInstantPhase(!1),i.current=null,u.current=null,l.current=c.current}if(a&&i.current&&!n&&i.current===o){if(h(!1),s)return f.start(s,e),()=>{f.clear()};e()}},[a,n,o,i,l,s,c,u,f]),aL(()=>{if(!a||!n)return;let e=u.current,t=i.current;u.current={onOpenChange:r,setIsInstantPhase:h},i.current=o,l.current={open:0,close:iR(c.current,"close")},null!==t&&t!==o?(f.clear(),h(!0),e?.setIsInstantPhase(!0),e?.onOpenChange(!1)):(h(!1),e?.setIsInstantPhase(!1))},[a,n,o,r,i,l,s,c,u,f]),aL(()=>()=>{u.current=null},[u]),C.useMemo(()=>({hasProvider:d,delayRef:l,isInstantPhase:p}),[d,l,p])}(N),R=A?"delay":y,D=iM(N,{enabled:!t,mouseOnly:!0,move:!1,handleClose:l&&"both"!==s?iH():null,restMs(){let e=I?.delay,t="object"==typeof L.current?L.current.open:void 0,n=d;return z&&(n=0!==t?a??e??d:0),n},delay(){let e="object"==typeof L.current?L.current.close:void 0,t=f;return null==i&&z&&(t=e),{close:t}}}),M=iB(N,{enabled:!t}),Z=i1(N,{enabled:!t,referencePress:!0}),{getReferenceProps:U,getFloatingProps:F}=lC([D,M,Z,function(e,t={}){let{open:n,dataRef:r,elements:{floating:o,domReference:a},refs:i}=e,{enabled:l=!0,axis:s="both",x:c=null,y:u=null}=t,d=C.useRef(!1),f=C.useRef(null),[p,h]=C.useState(),[m,g]=C.useState([]),y=ak((e,t)=>{if(!d.current&&(!r.current.openEvent||uN(r.current.openEvent))){var n,o;let l,c,u;i.setPositionReference((n=a,o={x:e,y:t,axis:s,dataRef:r,pointerType:p},l=null,c=null,u=!1,{contextElement:n||void 0,getBoundingClientRect(){let e=n?.getBoundingClientRect()||{width:0,height:0,x:0,y:0},t="x"===o.axis||"both"===o.axis,r="y"===o.axis||"both"===o.axis,a=["mouseenter","mousemove"].includes(o.dataRef.current.openEvent?.type||"")&&"touch"!==o.pointerType,i=e.width,s=e.height,d=e.x,f=e.y;return null==l&&o.x&&t&&(l=e.x-o.x),null==c&&o.y&&r&&(c=e.y-o.y),d-=l||0,f-=c||0,i=0,s=0,!u||a?(i="y"===o.axis?e.width:0,s="x"===o.axis?e.height:0,d=t&&null!=o.x?o.x:d,f=r&&null!=o.y?o.y:f):u&&!a&&(s="x"===o.axis?e.height:s,i="y"===o.axis?e.width:i),u=!0,{width:i,height:s,x:d,y:f,top:f,right:d+i,bottom:f+s,left:d}}}))}}),v=ak(e=>{null==c&&null==u&&(n?f.current||g([]):y(e.clientX,e.clientY))}),b=iv(p)?o:n,x=C.useCallback(()=>{if(!b||!l||null!=c||null!=u)return;let e=aH(o);function t(n){iC(o,iP(n))?(e.removeEventListener("mousemove",t),f.current=null):y(n.clientX,n.clientY)}if(!r.current.openEvent||uN(r.current.openEvent)){e.addEventListener("mousemove",t);let n=()=>{e.removeEventListener("mousemove",t),f.current=null};return f.current=n,n}i.setPositionReference(a)},[b,l,c,u,o,r,i,a,y]);C.useEffect(()=>x(),[x,m]),C.useEffect(()=>{l&&!o&&(d.current=!1)},[l,o]),C.useEffect(()=>{!l&&n&&(d.current=!0)},[l,n]),aL(()=>{l&&(null!=c||null!=u)&&(d.current=!1,y(c,u))},[l,c,u,y]);let w=C.useMemo(()=>{function e(e){h(e.pointerType)}return{onPointerDown:e,onPointerEnter:e,onMouseMove:v,onMouseEnter:v}},[v]);return C.useMemo(()=>l?{reference:w}:{},[l,w])}(N,{enabled:!t&&"none"!==s,axis:"none"===s?void 0:s})]),H=C.useMemo(()=>({open:_,setOpen:k,mounted:O,setMounted:P,setTriggerElement:h,positionerElement:m,setPositionerElement:g,popupRef:b,triggerProps:U(),popupProps:F(),floatingRootContext:N,instantType:R,transitionStatus:E,onOpenChangeComplete:u}),[_,k,O,P,h,m,g,b,U,F,N,R,E,u]),V=C.useMemo(()=>({...H,delay:d,closeDelay:f,trackCursorAxis:s,hoverable:l}),[H,d,f,s,l]);return(0,S.jsx)(um.Provider,{value:V,children:e.children})}var uL=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/components/tooltip/tooltip.css"),uA={};uA.styleTagTransform=x(),uA.setAttributes=g(),uA.insert=h(),uA.domAPI=f(),uA.insertStyleElement=v(),u()(uL.A,uA),uL.A&&uL.A.locals&&uL.A.locals;var uz=(0,C.forwardRef)(function(e,t){var n,r,o,a,i,l,s,c,u,d,f,p,h=(0,O.c)(35),m=e.className,g=e.children,y=e.title,v=e.direction,b=e.arrowSize,x=e.offset,w=void 0===v?"top":v,_=void 0===b?6:b,j=dw().shadowRoot;if(!y)return g;h[0]!==g?(n=function(e){var t,n;return(0,S.jsx)("span",(t=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}({},e),n=n={children:g},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(n)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}),t))},h[0]=g,h[1]=n):n=h[1],h[2]!==t||h[3]!==n?(r=(0,S.jsx)(uy,{ref:t,render:n}),h[2]=t,h[3]=n,h[4]=r):r=h[4];var k=(void 0===x?8:x)+_,C="".concat(_,"px"),P="".concat(_,"px");h[5]!==C||h[6]!==P?(o={"--anchor-width":C,"--anchor-height":P},h[5]=C,h[6]=P,h[7]=o):o=h[7];var E=o;h[8]!==m?(a=e9("tooltip",m),h[8]=m,h[9]=a):a=h[9];var T="".concat(_,"px");h[10]!==T?(i={"--arrow-size":T},h[10]=T,h[11]=i):i=h[11];var N=i,I="tooltip-arrow--".concat(w);h[12]!==I?(l=e9("tooltip-arrow",I),h[12]=I,h[13]=l):l=h[13];var L="".concat(_,"px");h[14]!==L?(s={"--arrow-size":L},h[14]=L,h[15]=s):s=h[15];var A=s;return h[16]!==l||h[17]!==A?(c=(0,S.jsx)(ux,{className:l,style:A}),h[16]=l,h[17]=A,h[18]=c):c=h[18],h[19]!==a||h[20]!==N||h[21]!==c||h[22]!==y?(u=(0,S.jsxs)(u_,{className:a,style:N,children:[y,c]}),h[19]=a,h[20]=N,h[21]=c,h[22]=y,h[23]=u):u=h[23],h[24]!==w||h[25]!==E||h[26]!==u||h[27]!==k?(d=(0,S.jsx)(uk,{side:w,sideOffset:k,className:"tooltip-positioner",style:E,children:u}),h[24]=w,h[25]=E,h[26]=u,h[27]=k,h[28]=d):d=h[28],h[29]!==j||h[30]!==d?(f=(0,S.jsx)(uO,{container:j,children:d}),h[29]=j,h[30]=d,h[31]=f):f=h[31],h[32]!==f||h[33]!==r?(p=(0,S.jsx)(uT,{children:(0,S.jsxs)(uI,{delay:400,children:[r,f]})}),h[32]=f,h[33]=r,h[34]=p):p=h[34],p});function uR(e){var t,n,r=(0,O.c)(3),o=e.possibleExtension,a=e.missingGlobalError?"No global-error.".concat(o," found: Add one to ensure users see a helpful message when an unexpected error occurs."):null;return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)(uq,{}),r[0]=t):t=r[0],r[1]!==a?(n=(0,S.jsx)("span",{className:"segment-explorer-suggestions",children:(0,S.jsx)(uz,{className:"segment-explorer-suggestions-tooltip",title:a,children:t})}),r[1]=a,r[2]=n):n=r[2],n}function uD(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function uM(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}var uZ=function(e){var t,n;return!!(null==(t=e.value)?void 0:t.type)&&!!(null==(n=e.value)?void 0:n.pagePath)};function uU(e){var t,n,r=(0,O.c)(3),o=e.page;return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)(uW,{}),r[0]=t):t=r[0],r[1]!==o?(n=(0,S.jsxs)("div",{className:"segment-explorer-page-route-bar",children:[t,(0,S.jsx)("span",{className:"segment-explorer-page-route-bar-path",children:o})]}),r[1]=o,r[2]=n):n=r[2],n}function uF(e){var t,n,r,o=(0,O.c)(9),a=e.activeBoundariesCount,i=e.onGlobalReset,l=a>0,s="segment-explorer-footer-button ".concat(l?"":"segment-explorer-footer-button--disabled"),c=l?i:void 0,u=!l;return o[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("span",{className:"segment-explorer-footer-text",children:"Clear Segment Overrides"}),o[0]=t):t=o[0],o[1]!==a||o[2]!==l?(n=l&&(0,S.jsx)("span",{className:"segment-explorer-footer-badge",children:a}),o[1]=a,o[2]=l,o[3]=n):n=o[3],o[4]!==s||o[5]!==c||o[6]!==u||o[7]!==n?(r=(0,S.jsx)("div",{className:"segment-explorer-footer",children:(0,S.jsxs)("button",{className:s,onClick:c,disabled:u,type:"button",children:[t,n]})}),o[4]=s,o[5]=c,o[6]=u,o[7]=n,o[8]=r):r=o[8],r}function uH(e){var t,n,r,o,a,i=(0,O.c)(15),l=e.type,s=e.isBuiltin,c=e.isOverridden,u=e.filePath,d=e.fileName,f="segment-explorer-file-label--".concat(l),p=s&&"segment-explorer-file-label--builtin",h=c&&"segment-explorer-file-label--overridden";return i[0]!==f||i[1]!==p||i[2]!==h?(t=e9("segment-explorer-file-label",f,p,h),i[0]=f,i[1]=p,i[2]=h,i[3]=t):t=i[3],i[4]!==u?(n=function(){var e;e=new URLSearchParams({file:{filePath:u}.filePath,isAppRelativePath:"1"}),fetch("".concat(process.env.__NEXT_ROUTER_BASEPATH||"","/__nextjs_launch-editor?").concat(e.toString()))},i[4]=u,i[5]=n):n=i[5],i[6]!==d?(r=(0,S.jsx)("span",{className:"segment-explorer-file-label-text",children:d}),i[6]=d,i[7]=r):r=i[7],i[8]!==s?(o=s?(0,S.jsx)(uq,{}):(0,S.jsx)(uK,{className:"code-icon"}),i[8]=s,i[9]=o):o=i[9],i[10]!==t||i[11]!==n||i[12]!==r||i[13]!==o?(a=(0,S.jsxs)("span",{className:t,onClick:n,children:[r,o]}),i[10]=t,i[11]=n,i[12]=r,i[13]=o,i[14]=a):a=i[14],a}function uV(e){var t,n,r,o,a,i,l,s,c=(0,O.c)(17),u=e.page,d=(0,C.useSyncExternalStore)(al,as,ac);c[0]!==d?(t=function e(t){var n,r=0;return(null==(n=t.value)?void 0:n.setBoundaryType)&&null!==t.value.boundaryType&&!ut(t.value.type)&&r++,Object.values(t.children).forEach(function(t){t&&(r+=e(t))}),r}(d),c[0]=d,c[1]=t):t=c[1];var f=t;c[2]!==d?(n=function(){!function e(t){var n;(null==(n=t.value)?void 0:n.setBoundaryType)&&t.value.setBoundaryType(null),Object.values(t.children).forEach(function(t){t&&e(t)})}(d)},c[2]=d,c[3]=n):n=c[3];var p=n;return c[4]===Symbol.for("react.memo_cache_sentinel")?(r={display:"flex",flexDirection:"column",height:"100%"},c[4]=r):r=c[4],c[5]!==u?(o=(0,S.jsx)(uU,{page:u}),c[5]=u,c[6]=o):o=c[6],c[7]===Symbol.for("react.memo_cache_sentinel")?(a={flex:"1 1 auto",overflow:"auto"},c[7]=a):a=c[7],c[8]!==d?(i=(0,S.jsx)("div",{className:"segment-explorer-content","data-nextjs-devtool-segment-explorer":!0,style:a,children:(0,S.jsx)(u$,{node:d,level:0,segment:""})}),c[8]=d,c[9]=i):i=c[9],c[10]!==f||c[11]!==p?(l=(0,S.jsx)(uF,{activeBoundariesCount:f,onGlobalReset:p}),c[10]=f,c[11]=p,c[12]=l):l=c[12],c[13]!==o||c[14]!==i||c[15]!==l?(s=(0,S.jsxs)("div",{"data-nextjs-devtools-panel-segments-explorer":!0,style:r,children:[o,i,l]}),c[13]=o,c[14]=i,c[15]=l,c[16]=s):s=c[16],s}var uB="global-error";function u$(e){var t=e.segment,n=e.node,r=e.level,o=(0,C.useMemo)(function(){return Object.keys(n.children)},[n.children]),a=(0,C.useMemo)(function(){var e=[];return o.forEach(function(t){var r=n.children[t];if(r&&r.value){var o=un(r.value.type),a=o===uB;(a&&!r.value.pagePath.startsWith(c8)||!a&&ut(r.value.type))&&e.push(o)}}),0===r&&!e.includes(uB)},[n.children,o,r]),i=o.sort(function(e,t){var r=e.includes("."),o=t.includes(".");if(r&&!o)return -1;if(!r&&o)return 1;if(r&&o){var a,i,l,s,c,u,d,f,p=null==(i=n.children[e])||null==(a=i.value)?void 0:a.type,h=null==(s=n.children[t])||null==(l=s.value)?void 0:l.type,m=function(e){return e?"layout"===e?1:"template"===e?2:"page"===e?3:ut(e)?4:5:5},g=m(p),y=m(h);if(g!==y)return g-y;var v=(null==(u=n.children[e])||null==(c=u.value)?void 0:c.pagePath)||"",b=(null==(f=n.children[t])||null==(d=f.value)?void 0:d.pagePath)||"";return v.localeCompare(b)}return e.localeCompare(t)}),l=0!==r||t?t:"app",s=[],c=[],u=!0,d=!1,f=void 0;try{for(var p,h=i[Symbol.iterator]();!(u=(p=h.next()).done);u=!0){var m=p.value,g=n.children[m];if(g){if(uZ(g)){c.push(m);continue}s.push(m)}}}catch(e){d=!0,f=e}finally{try{u||null==h.return||h.return()}finally{if(d)throw f}}for(var y=c7(c[0]||"").split(".").pop()||"js",v=null,b=i.length-1;b>=0;b--){var x=n.children[i[b]];if(x&&x.value){var w=ut(x.value.type);if(!v&&!w){v=x;break}}}var _=null,j=!0,k=!1,O=void 0;try{for(var P,E=i[Symbol.iterator]();!(j=(P=E.next()).done);j=!0){var T=P.value,N=n.children[T];if(N&&N.value&&ut(N.value.type)){_=N;break}}}catch(e){k=!0,O=e}finally{try{j||null==E.return||E.return()}finally{if(k)throw O}}v=v||_;var I=c.length>0,L={"not-found":null,loading:null,error:null,"global-error":null};return c.forEach(function(e){var t=n.children[e];if(t&&t.value&&ut(t.value.type)){var r=un(t.value.type);r in L&&(L[r]=t.value.pagePath||null)}}),(0,S.jsxs)(S.Fragment,{children:[I&&(0,S.jsx)("div",{className:"segment-explorer-item","data-nextjs-devtool-segment-explorer-segment":t+"-"+r,children:(0,S.jsx)("div",{className:"segment-explorer-item-row",style:uD({},{paddingLeft:"".concat((r+1)*8,"px")}),children:(0,S.jsx)("div",{className:"segment-explorer-item-row-main",children:(0,S.jsxs)("div",{className:"segment-explorer-filename",children:[l&&(0,S.jsxs)("span",{className:"segment-explorer-filename--path",children:[l,(0,S.jsx)("small",{children:"/"})]}),a&&(0,S.jsx)(uR,{possibleExtension:y,missingGlobalError:a}),c.length>0&&(0,S.jsx)("span",{className:"segment-explorer-files",children:c.map(function(e){var t=n.children[e];if(!t||!t.value||ut(t.value.type))return null;var r=t.value.pagePath,o=r.split("/").pop()||"",a=r.startsWith(c8),i=c7(o),l=a?"The default Next.js ".concat(t.value.type," is being shown. You can customize this page by adding your own ").concat(i," file to the app/ directory."):null,s=null!==t.value.boundaryType;return(0,S.jsx)(uz,{className:"segment-explorer-file-label-tooltip--"+(a?"lg":"sm"),direction:a?"right":"top",title:l,offset:12,children:(0,S.jsx)(uH,{type:t.value.type,isBuiltin:a,isOverridden:s,filePath:r,fileName:i})},e)})}),v&&v.value&&(0,S.jsx)(us,{nodeState:v.value,boundaries:L})]})})})}),s.map(function(e){var o=n.children[e];if(!o)return null;var a=I?e:t+" / "+e;return(0,S.jsx)(u$,{segment:a,node:o,level:I?r+1:r},e)})]})}function uq(e){var t,n,r,o=(0,O.c)(4);return o[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{d:"M14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8Z",fill:"var(--color-gray-400)"}),n=(0,S.jsx)("path",{d:"M7.75 7C8.30228 7.00001 8.75 7.44772 8.75 8V11.25H7.25V8.5H6.25V7H7.75ZM8 4C8.55228 4 9 4.44772 9 5C9 5.55228 8.55228 6 8 6C7.44772 6 7 5.55228 7 5C7 4.44772 7.44772 4 8 4Z",fill:"var(--color-gray-900)"}),o[0]=t,o[1]=n):(t=o[0],n=o[1]),o[2]!==e?(r=(0,S.jsxs)("svg",uM(uD({width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),{children:[t,n]})),o[2]=e,o[3]=r):r=o[3],r}function uW(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"var(--color-gray-600)",xmlns:"http://www.w3.org/2000/svg",children:(0,S.jsx)("path",{d:"M4.5 11.25C4.5 11.3881 4.61193 11.5 4.75 11.5H14.4395L11.9395 9L13 7.93945L16.7803 11.7197L16.832 11.7764C17.0723 12.0709 17.0549 12.5057 16.7803 12.7803L13 16.5605L11.9395 15.5L14.4395 13H4.75C3.7835 13 3 12.2165 3 11.25V4.25H4.5V11.25Z"})}),t[0]=e):e=t[0],e}function uK(e){var t,n,r=(0,O.c)(3);return r[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.22763 14.1819L10.2276 2.18193L10.4095 1.45432L8.95432 1.09052L8.77242 1.81812L5.77242 13.8181L5.59051 14.5457L7.04573 14.9095L7.22763 14.1819ZM3.75002 12.0607L3.21969 11.5304L0.39647 8.70713C0.00594559 8.31661 0.00594559 7.68344 0.39647 7.29292L3.21969 4.46969L3.75002 3.93936L4.81068 5.00002L4.28035 5.53035L1.81068 8.00003L4.28035 10.4697L4.81068 11L3.75002 12.0607ZM12.25 12.0607L12.7804 11.5304L15.6036 8.70713C15.9941 8.31661 15.9941 7.68344 15.6036 7.29292L12.7804 4.46969L12.25 3.93936L11.1894 5.00002L11.7197 5.53035L14.1894 8.00003L11.7197 10.4697L11.1894 11L12.25 12.0607Z",fill:"currentColor"}),r[0]=t):t=r[0],r[1]!==e?(n=(0,S.jsx)("svg",uM(uD({width:"12",height:"12",strokeLinejoin:"round",viewBox:"0 0 16 16",fill:"currentColor"},e),{children:t})),r[1]=e,r[2]=n):n=r[2],n}function uY(){var e,t,n=(e=["\n .dev-tools-info-close-button:focus-visible {\n outline: var(--focus-ring);\n }\n "],t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}})));return uY=function(){return n},n}function uX(e){var t,n,r,o,a,i,l,s,c,u,d,f=(0,O.c)(18),p=e.title,h=e.children,m=e.ref,g=r3().setPanel,y=(0,C.useRef)(null);return f[0]===Symbol.for("react.memo_cache_sentinel")?(t=function(){var e;null==(e=y.current)||e.focus()},n=[],f[0]=t,f[1]=n):(t=f[0],n=f[1]),(0,C.useLayoutEffect)(t,n),f[2]===Symbol.for("react.memo_cache_sentinel")?(r={width:"100%",display:"flex",alignItems:"center",justifyContent:"space-between",padding:"8px 20px",userSelect:"none",WebkitUserSelect:"none",borderBottom:"1px solid var(--color-gray-alpha-400)"},f[2]=r):r=f[2],f[3]===Symbol.for("react.memo_cache_sentinel")?(o={margin:0,fontSize:"14px",color:"var(--color-text-primary)",fontWeight:"normal"},f[3]=o):o=f[3],f[4]!==p?(a=(0,S.jsx)("h3",{style:o,children:p}),f[4]=p,f[5]=a):a=f[5],f[6]!==g?(i=function(){g("panel-selector")},f[6]=g,f[7]=i):i=f[7],f[8]===Symbol.for("react.memo_cache_sentinel")?(l={background:"none",border:"none",cursor:"pointer",padding:"4px",display:"flex",alignItems:"center",justifyContent:"center",borderRadius:"4px",color:"var(--color-gray-900)"},s=(0,S.jsx)(uG,{}),f[8]=l,f[9]=s):(l=f[8],s=f[9]),f[10]!==i?(c=(0,S.jsx)("button",{ref:y,id:"_next-devtools-panel-close",className:"dev-tools-info-close-button",onClick:i,"aria-label":"Close devtools panel",style:l,children:s}),f[10]=i,f[11]=c):c=f[11],f[12]===Symbol.for("react.memo_cache_sentinel")?(u=(0,S.jsx)("style",{children:eg(uY())}),f[12]=u):u=f[12],f[13]!==h||f[14]!==m||f[15]!==a||f[16]!==c?(d=(0,S.jsxs)("div",{style:r,ref:m,children:[a,h,c,u]}),f[13]=h,f[14]=m,f[15]=a,f[16]=c,f[17]=d):d=f[17],d}function uG(e){var t,n,r,o=(0,O.c)(4),a=e.size,i=void 0===a?22:a;return o[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,S.jsx)("path",{d:"M18 6 6 18"}),n=(0,S.jsx)("path",{d:"m6 6 12 12"}),o[0]=t,o[1]=n):(t=o[0],n=o[1]),o[2]!==i?(r=(0,S.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:i,height:i,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[t,n]}),o[2]=i,o[3]=r):r=o[3],r}function uQ(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",viewBox:"0 0 20 20",fill:"none",children:(0,S.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"m9.7 3.736.045-.236h.51l.044.236a2.024 2.024 0 0 0 1.334 1.536c.19.066.375.143.554.23.618.301 1.398.29 2.03-.143l.199-.136.36.361-.135.199a2.024 2.024 0 0 0-.143 2.03c.087.179.164.364.23.554.224.65.783 1.192 1.536 1.334l.236.044v.51l-.236.044a2.024 2.024 0 0 0-1.536 1.334 4.95 4.95 0 0 1-.23.554 2.024 2.024 0 0 0 .143 2.03l.136.199-.361.36-.199-.135a2.024 2.024 0 0 0-2.03-.143c-.179.087-.364.164-.554.23a2.024 2.024 0 0 0-1.334 1.536l-.044.236h-.51l-.044-.236a2.024 2.024 0 0 0-1.334-1.536 4.952 4.952 0 0 1-.554-.23 2.024 2.024 0 0 0-2.03.143l-.199.136-.36-.361.135-.199a2.024 2.024 0 0 0 .143-2.03 4.958 4.958 0 0 1-.23-.554 2.024 2.024 0 0 0-1.536-1.334l-.236-.044v-.51l.236-.044a2.024 2.024 0 0 0 1.536-1.334 4.96 4.96 0 0 1 .23-.554 2.024 2.024 0 0 0-.143-2.03l-.136-.199.361-.36.199.135a2.024 2.024 0 0 0 2.03.143c.179-.087.364-.164.554-.23a2.024 2.024 0 0 0 1.334-1.536ZM8.5 2h3l.274 1.46c.034.185.17.333.348.394.248.086.49.186.722.3.17.082.37.074.526-.033l1.226-.839 2.122 2.122-.84 1.226a.524.524 0 0 0-.032.526c.114.233.214.474.3.722.061.177.21.314.394.348L18 8.5v3l-1.46.274a.524.524 0 0 0-.394.348 6.47 6.47 0 0 1-.3.722.524.524 0 0 0 .033.526l.839 1.226-2.122 2.122-1.226-.84a.524.524 0 0 0-.526-.032 6.477 6.477 0 0 1-.722.3.524.524 0 0 0-.348.394L11.5 18h-3l-.274-1.46a.524.524 0 0 0-.348-.394 6.477 6.477 0 0 1-.722-.3.524.524 0 0 0-.526.033l-1.226.839-2.122-2.122.84-1.226a.524.524 0 0 0 .032-.526 6.453 6.453 0 0 1-.3-.722.524.524 0 0 0-.394-.348L2 11.5v-3l1.46-.274a.524.524 0 0 0 .394-.348c.086-.248.186-.49.3-.722a.524.524 0 0 0-.033-.526l-.839-1.226 2.122-2.122 1.226.84a.524.524 0 0 0 .526.032 6.46 6.46 0 0 1 .722-.3.524.524 0 0 0 .348-.394L8.5 2Zm3 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm1.5 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",clipRule:"evenodd"})}),t[0]=e):e=t[0],e}function uJ(){var e,t=(0,O.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)("svg",{width:"20px",height:"20px",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:(0,S.jsx)("circle",{cx:"10",cy:"10",r:"7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeDasharray:"32 12",opacity:"0.8",children:(0,S.jsx)("animateTransform",{attributeName:"transform",type:"rotate",from:"0 10 10",to:"360 10 10",dur:"1s",repeatCount:"indefinite"})})}),t[0]=e):e=t[0],e}var u0=__webpack_require__("../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./src/next-devtools/dev-overlay/menu/panel-router.css"),u1={};u1.styleTagTransform=x(),u1.setAttributes=g(),u1.insert=h(),u1.domAPI=f(),u1.insertStyleElement=v(),u()(u0.A,u1),u0.A&&u0.A.locals&&u0.A.locals;var u2=function(){var e,t,n,r,o,a,i,l,s,c,u=(0,O.c)(25),d=r3(),f=d.setPanel,p=d.setSelectedIndex,h=dw(),m=h.state,g=h.dispatch,y=da().totalErrorCount,v="app"===m.routerType;return u[0]!==g||u[1]!==f||u[2]!==p||u[3]!==m.isErrorOverlayOpen||u[4]!==y?(e=y>0&&{title:"".concat(y," ").concat(1===y?"issue":"issues"," found. Click to view details in the dev overlay."),label:"Issues",value:(0,S.jsx)(oM,{children:y}),onClick:function(){if(m.isErrorOverlayOpen){g({type:Y}),f(null);return}f(null),p(-1),y>0&&g({type:K})}},u[0]=g,u[1]=f,u[2]=p,u[3]=m.isErrorOverlayOpen,u[4]=y,u[5]=e):e=u[5],u[6]!==f||u[7]!==m.staticIndicator?(t="disabled"===m.staticIndicator?void 0:"pending"===m.staticIndicator?{title:"Loading...",label:"Route",value:(0,S.jsx)(uJ,{})}:{title:"Current route is ".concat(m.staticIndicator,"."),label:"Route",value:"static"===m.staticIndicator?"Static":"Dynamic",onClick:function(){return f("route-type")},attributes:{"data-nextjs-route-type":m.staticIndicator}},u[6]=f,u[7]=m.staticIndicator,u[8]=t):t=u[8],u[9]===Symbol.for("react.memo_cache_sentinel")?(n=process.env.TURBOPACK?{title:"Turbopack is enabled.",label:"Bundler",value:"Turbopack"}:{title:"Learn about Turbopack and how to enable it in your application.",label:"Bundler",value:(0,S.jsx)("a",{href:"https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack",target:"_blank",rel:"noreferrer noopener",className:"turbopack-upgrade-link",children:process.env.__NEXT_BUNDLER||"Turbopack"})},r=!!process.env.__NEXT_CACHE_COMPONENTS&&{title:"Cache Components is enabled.",label:"Cache Components",value:"Enabled"},u[9]=n,u[10]=r):(n=u[9],r=u[10]),u[11]!==v||u[12]!==f?(o=v&&{label:"Route Info",value:(0,S.jsx)(oZ,{}),onClick:function(){return f("segment-explorer")},attributes:{"data-segment-explorer":!0}},u[11]=v,u[12]=f,u[13]=o):o=u[13],u[14]===Symbol.for("react.memo_cache_sentinel")?(a=(0,S.jsx)(uQ,{}),u[14]=a):a=u[14],u[15]!==f?(i=function(){return f("preferences")},u[15]=f,u[16]=i):i=u[16],u[17]===Symbol.for("react.memo_cache_sentinel")?(l={"data-preferences":!0},u[17]=l):l=u[17],u[18]!==i?(s={label:"Preferences",value:a,onClick:i,footer:!0,attributes:l},u[18]=i,u[19]=s):s=u[19],u[20]!==e||u[21]!==t||u[22]!==o||u[23]!==s?(c=(0,S.jsx)(oR,{items:[e,t,n,r,o,s]}),u[20]=e,u[21]=t,u[22]=o,u[23]=s,u[24]=c):c=u[24],c},u3=function(){var e,t=(0,O.c)(4),n=dw(),r=n.state,o=n.dispatch,a=n.shadowRoot;return t[0]!==o||t[1]!==a||t[2]!==r.disableDevIndicator?(e=function(){o({type:W,disabled:!r.disableDevIndicator});var e=a.getElementById("panel-route"),t=a.getElementById("data-devtools-indicator");if(e&&e.firstElementChild){var n=e.firstElementChild,i="none"===n.style.display;n.style.display=i?"":"none"}if(t){var l="none"===t.style.display;t.style.display=l?"":"none"}},t[0]=o,t[1]=a,t[2]=r.disableDevIndicator,t[3]=e):e=t[3],e},u4=function(){var e,t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y=(0,O.c)(22),v=dw().state,b=r3().triggerRef,x=u3(),w="app"===v.routerType;y[0]!==v.hideShortcut||y[1]!==x?(s=v.hideShortcut?(e={},t=v.hideShortcut,n=x,t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e):{},y[0]=v.hideShortcut,y[1]=x,y[2]=s):s=y[2],r=s,o=b,(l=(0,O.c)(4))[0]!==o||l[1]!==r?(a=function(){var e=function(e){if(!((n=nl((t=o).current))&&("true"===n.contentEditable||"INPUT"===n.tagName||"TEXTAREA"===n.tagName||"SELECT"===n.tagName||"true"===n.dataset["shortcut-recorder"])&&!n.hasAttribute("readonly"))){var t,n,a=[];e.metaKey&&a.push("Meta"),e.ctrlKey&&a.push("Control"),e.altKey&&a.push("Alt"),e.shiftKey&&a.push("Shift"),"Meta"!==e.key&&"Control"!==e.key&&"Alt"!==e.key&&"Shift"!==e.key&&a.push(e.code);var i=a.join("+");r[i]&&(e.preventDefault(),r[i]())}};return window.addEventListener("keydown",e),function(){return window.removeEventListener("keydown",e)}},i=[o,r],l[0]=o,l[1]=r,l[2]=a,l[3]=i):(a=l[2],i=l[3]),(0,C.useEffect)(a,i),y[3]===Symbol.for("react.memo_cache_sentinel")?(c=(0,S.jsx)(u7,{name:"panel-selector",children:(0,S.jsx)(u2,{})}),y[3]=c):c=y[3];var _=500/v.scale;return y[4]!==_?(u={kind:"fixed",height:_,width:512},y[4]=_,y[5]=u):u=y[5],y[6]===Symbol.for("react.memo_cache_sentinel")?(d=(0,S.jsx)(uX,{title:"Preferences"}),f=(0,S.jsx)(u6,{}),y[6]=d,y[7]=f):(d=y[6],f=y[7]),y[8]!==u?(p=(0,S.jsx)(u7,{name:"preferences",children:(0,S.jsx)(o5,{sharePanelSizeGlobally:!1,sizeConfig:u,closeOnClickOutside:!0,header:d,children:f})}),y[8]=u,y[9]=p):p=y[9],y[10]!==v.routerType||y[11]!==v.scale||y[12]!==v.staticIndicator?(h="disabled"!==v.staticIndicator&&"pending"!==v.staticIndicator&&(0,S.jsx)(u7,{name:"route-type",children:(0,S.jsx)(o5,{sharePanelSizeGlobally:!1,sizeConfig:{kind:"fixed",height:"static"===v.staticIndicator?300/v.scale:325/v.scale,width:400/v.scale},closeOnClickOutside:!0,header:(0,S.jsx)(uX,{title:"".concat("static"===v.staticIndicator?"Static":"Dynamic"," Route")}),children:(0,S.jsxs)("div",{className:"panel-content",children:[(0,S.jsx)(an,{routerType:v.routerType,isStaticRoute:"static"===v.staticIndicator}),(0,S.jsx)(u5,{href:at[v.routerType][v.staticIndicator]})]})},v.staticIndicator)}),y[10]=v.routerType,y[11]=v.scale,y[12]=v.staticIndicator,y[13]=h):h=y[13],y[14]!==w||y[15]!==v.page||y[16]!==v.scale?(m=w&&(0,S.jsx)(u7,{name:"segment-explorer",children:(0,S.jsx)(o5,{sharePanelSizeGlobally:!1,sharePanelPositionGlobally:!1,draggable:!0,sizeConfig:{kind:"resizable",maxHeight:"90vh",maxWidth:"90vw",minHeight:200/v.scale,minWidth:250/v.scale,initialSize:{height:375/v.scale,width:400/v.scale}},header:(0,S.jsx)(uX,{title:"Route Info"}),children:(0,S.jsx)(uV,{page:v.page})})}),y[14]=w,y[15]=v.page,y[16]=v.scale,y[17]=m):m=y[17],y[18]!==p||y[19]!==h||y[20]!==m?(g=(0,S.jsxs)(S.Fragment,{children:[c,p,h,m]}),y[18]=p,y[19]=h,y[20]=m,y[21]=g):g=y[21],g},u5=function(e){var t,n=(0,O.c)(2),r=e.href;return n[0]!==r?(t=(0,S.jsx)("div",{className:"dev-tools-info-button-container",children:(0,S.jsx)("a",{className:"dev-tools-info-learn-more-button",href:r,target:"_blank",rel:"noreferrer noopener",children:"Learn More"})}),n[0]=r,n[1]=t):t=n[1],t},u6=function(){var e,t,n,r,o=(0,O.c)(17),a=dw(),i=a.dispatch,l=a.state,s=r3(),c=s.setPanel,u=s.setSelectedIndex,d=oC();return o[0]!==i?(e=function(e){i({type:er,scale:e})},o[0]=i,o[1]=e):e=o[1],o[2]!==i||o[3]!==d?(t=function(e){i({type:et,devToolsPosition:e}),d(e)},o[2]=i,o[3]=d,o[4]=t):t=o[4],o[5]!==i||o[6]!==c||o[7]!==u?(n=function(){i({type:W,disabled:!0}),u(-1),c(null),fetch("/__nextjs_disable_dev_indicator",{method:"POST"})},o[5]=i,o[6]=c,o[7]=u,o[8]=n):n=o[8],o[9]!==l.devToolsPosition||o[10]!==l.hideShortcut||o[11]!==l.scale||o[12]!==l.theme||o[13]!==e||o[14]!==t||o[15]!==n?(r=(0,S.jsx)("div",{className:"user-preferences-wrapper",children:(0,S.jsx)(rC,{theme:l.theme,position:l.devToolsPosition,scale:l.scale,setScale:e,setPosition:t,hideShortcut:l.hideShortcut,setHideShortcut:de,hide:n})}),o[9]=l.devToolsPosition,o[10]=l.hideShortcut,o[11]=l.scale,o[12]=l.theme,o[13]=e,o[14]=t,o[15]=n,o[16]=r):r=o[16],r},u9=function(){return(0,C.useContext)(u8)},u8=(0,C.createContext)(null);function u7(e){var t,n,r,o,a,i=(0,O.c)(12),l=e.children,s=e.name,c=r3().panel;i[0]===Symbol.for("react.memo_cache_sentinel")?(t={enterDelay:0,exitDelay:200},i[0]=t):t=i[0];var u=rD(s===c,t),d=u.mounted,f=u.rendered;if(!d)return null;i[1]!==d||i[2]!==s?(n={name:s,mounted:d},i[1]=d,i[2]=s,i[3]=n):n=i[3];var p=+!!f;i[4]!==p?(r={"--panel-opacity":p,"--panel-transition":"opacity ".concat(200,"ms ").concat(nc)},i[4]=p,i[5]=r):r=i[5];var h=r;return i[6]!==l||i[7]!==h?(o=(0,S.jsx)("div",{id:"panel-route",className:"panel-route",style:h,children:l}),i[6]=l,i[7]=h,i[8]=o):o=i[8],i[9]!==n||i[10]!==o?(a=(0,S.jsx)(u8,{value:n,children:o}),i[9]=n,i[10]=o,i[11]=a):a=i[11],a}function de(e){rk({hideShortcut:e})}function dt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function dn(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return dt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return dt(e,t)}}(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var dr=(0,C.createContext)(null),da=function(){return(0,C.useContext)(dr)};function di(){var e,t,n,r,o=(0,O.c)(11),a=dn((0,C.useState)(null),2),i=a[0],l=a[1],s=dn((0,C.useState)(-1),2),c=s[0],u=s[1],d=dw(),f=d.state,p=d.dispatch,h=d.getSquashedHydrationErrorDetails,m=(0,C.useRef)(null);return o[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,S.jsx)(rK,{}),t=(0,S.jsx)(rA,{}),o[0]=e,o[1]=t):(e=o[0],t=o[1]),o[2]!==p||o[3]!==h||o[4]!==i||o[5]!==c||o[6]!==f?(n=function(e){var t=e.runtimeErrors,n=e.totalErrorCount;return(0,S.jsx)(S.Fragment,{children:f.showIndicator?(0,S.jsx)(S.Fragment,{children:(0,S.jsx)(dr,{value:{runtimeErrors:t,totalErrorCount:n},children:(0,S.jsxs)(r2,{value:{panel:i,setPanel:l,triggerRef:m,selectedIndex:c,setSelectedIndex:u},children:[(0,S.jsx)(rU,{state:f,dispatch:p,getSquashedHydrationErrorDetails:h,runtimeErrors:t,errorCount:n}),(0,S.jsx)(u4,{}),(0,S.jsx)(oO,{})]})})}):null})},o[2]=p,o[3]=h,o[4]=i,o[5]=c,o[6]=f,o[7]=n):n=o[7],o[8]!==f||o[9]!==n?(r=(0,S.jsxs)(ew,{children:[e,t,(0,S.jsx)(r$,{state:f,isAppDir:!0,children:n})]}),o[8]=f,o[9]=n,o[10]=r):r=o[10],r}function dl(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function ds(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){var r,o,a;r=e,o=t,a=n[t],o in r?Object.defineProperty(r,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[o]=a})}return e}function dc(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):(function(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n.push.apply(n,r)}return n})(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function du(e){return function(e){if(Array.isArray(e))return dl(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||dd(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function dd(e,t){if(e){if("string"==typeof e)return dl(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if("Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n)return Array.from(n);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return dl(e,t)}}var df=null,dp=[],dh=null;function dm(){return dh?dc(ds({},dh),{errors:dh.errors.map(function(e){return dc(ds({},e),{error:e.error?{name:e.error.name,message:e.error.message,stack:e.error.stack}:null})})}):null}function dg(){return dh?{segmentTrie:ap(),routerType:dh.routerType}:null}function dy(e){return function(){for(var t=arguments.length,n=Array(t),r=0;r<t;r++)n[r]=arguments[r];df?e.apply(void 0,[df].concat(du(n))):dp.push(function(t){e.apply(void 0,[t].concat(du(n)))})}}var dv={onBuildOk:dy(function(e){e({type:M})}),onBuildError:dy(function(e,t){e({type:Z,message:t})}),onBeforeRefresh:dy(function(e){e({type:U})}),onRefresh:dy(function(e){e({type:F})}),onVersionInfo:dy(function(e,t){e({type:H,versionInfo:t})}),onCacheIndicator:dy(function(e,t){e({type:R,cacheIndicator:t})}),onStaticIndicator:dy(function(e,t){e({type:D,staticIndicator:t})}),onDebugInfo:dy(function(e,t){e({type:$,debugInfo:t})}),onDevIndicator:dy(function(e,t){e({type:q,devIndicator:t})}),onDevToolsConfig:dy(function(e,t){e({type:eo,devToolsConfig:t})}),onUnhandledError:dy(function(e,t){e({type:V,reason:t})}),onUnhandledRejection:dy(function(e,t){e({type:B,reason:t})}),openErrorOverlay:dy(function(e){e({type:K})}),closeErrorOverlay:dy(function(e){e({type:Y})}),toggleErrorOverlay:dy(function(e){e({type:X})}),buildingIndicatorHide:dy(function(e){e({type:Q})}),buildingIndicatorShow:dy(function(e){e({type:G})}),renderingIndicatorHide:dy(function(e){e({type:ee})}),renderingIndicatorShow:dy(function(e){e({type:J})}),segmentExplorerNodeAdd:dy(function(e,t){ad(t)}),segmentExplorerNodeRemove:dy(function(e,t){af(t)}),segmentExplorerUpdateRouteState:dy(function(e,t){e({type:ec,page:t})})};function db(e){var t,n,r,o,a,i,l,s,c,u,d,f,p,h,m,g,y,v,b,x,w,_,j=(0,O.c)(22),k=e.enableCacheIndicator,P=e.getOwnerStack,z=e.getSquashedHydrationErrorDetails,ea=e.isRecoverableError,ei=e.routerType,el=e.shadowRoot,es=(t=ei,n=P,r=ea,o=k,(u=(0,O.c)(8))[0]!==n||u[1]!==r?(l=function(e,t,o){var a,i=n(o),l=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:process.env.__NEXT_DIST_DIR;return e?(e=e.split("\n").map(function(e){return e.includes("(eval ")&&(e=e.replace(/eval code/g,"eval").replace(/\(eval at [^()]* \(/,"(file://").replace(/\),.*$/g,")")),e}).join("\n"),(0,E.parse)(e).map(function(e){try{var n=new URL(e.file),r=T.exec(n.pathname);if(r){var o,a=null==t||null==(o=t.replace(/\\/g,"/"))?void 0:o.replace(/\/$/,"");a&&(e.file="file://"+a.concat(r.pop())+n.search)}}catch(e){}return{file:e.file,line1:e.lineNumber,column1:e.column,methodName:e.methodName,arguments:e.arguments}})):[]}((o.stack||"")+(i||"")),s={id:t,error:o,frames:l,type:r(o)?"recoverable":(a=o)&&"NEXT_CONSOLE_ERROR"===a[N]?"console":"runtime"},c=e.filter(function(e){return""+e.error!=""+s.error||e.error.stack!==s.error.stack&&ed(e.error.stack)!==ed(s.error.stack)||n(e.error)!==n(s.error)});return c.length===e.length?(c.push(s),c):e},u[0]=n,u[1]=r,u[2]=l):l=u[2],d=l,(u[3]!==d?(s=function(e,t){switch(t.type){case $:return A(L({},e),{debugInfo:t.debugInfo});case R:return A(L({},e),{cacheIndicator:t.cacheIndicator});case D:return A(L({},e),{staticIndicator:t.staticIndicator});case M:return A(L({},e),{buildError:null});case Z:return A(L({},e),{buildError:t.message});case U:return A(L({},e),{refreshState:{type:"pending",errors:[]}});case F:return A(L({},e),{buildError:null,errors:"pending"===e.refreshState.type?e.refreshState.errors:[],refreshState:{type:"idle"}});case V:case B:switch(e.refreshState.type){case"idle":return A(L({},e),{nextId:e.nextId+1,errors:d(e.errors,e.nextId,t.reason)});case"pending":return A(L({},e),{nextId:e.nextId+1,refreshState:A(L({},e.refreshState),{errors:d(e.errors,e.nextId,t.reason)})});default:return e}case H:return A(L({},e),{versionInfo:t.versionInfo});case W:return A(L({},e),{disableDevIndicator:t.disabled});case q:return A(L({},e),{showIndicator:!0,disableDevIndicator:ef||!!t.devIndicator.disabledUntil});case K:return A(L({},e),{isErrorOverlayOpen:!0});case Y:return A(L({},e),{isErrorOverlayOpen:!1});case X:return A(L({},e),{isErrorOverlayOpen:!e.isErrorOverlayOpen});case G:return A(L({},e),{buildingIndicator:!0});case Q:return A(L({},e),{buildingIndicator:!1});case J:return A(L({},e),{renderingIndicator:!0});case ee:return A(L({},e),{renderingIndicator:!1});case et:return A(L({},e),{devToolsPosition:t.devToolsPosition});case en:return A(L({},e),{devToolsPanelPosition:A(L({},e.devToolsPanelPosition),I({},t.key,t.devToolsPanelPosition))});case er:return A(L({},e),{scale:t.scale});case ec:return A(L({},e),{page:t.page});case eo:var n=t.devToolsConfig,r=n.theme,o=n.disableDevIndicator,a=n.devToolsPosition,i=n.devToolsPanelPosition,l=n.devToolsPanelSize,s=n.scale,c=n.hideShortcut;return A(L({},e),{theme:null!=r?r:e.theme,disableDevIndicator:null!=o?o:e.disableDevIndicator,devToolsPosition:null!=a?a:e.devToolsPosition,devToolsPanelPosition:null!=i?i:e.devToolsPanelPosition,scale:null!=s?s:e.scale,devToolsPanelSize:null!=l?l:e.devToolsPanelSize,hideShortcut:void 0!==c?c:e.hideShortcut});default:return e}},u[3]=d,u[4]=s):s=u[4],u[5]!==o||u[6]!==t)?(a=t,i=o,c=A(L({},eh),{isErrorOverlayOpen:"pages"===a,routerType:a,cacheIndicator:i?"ready":"disabled"}),u[5]=o,u[6]=t,u[7]=c):c=u[7],f=(0,C.useReducer)(s,c),function(e){if(Array.isArray(e))return e}(f)||function(e,t){var n,r,o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var a=[],i=!0,l=!1;try{for(o=o.call(e);!(i=(n=o.next()).done)&&(a.push(n.value),2!==a.length);i=!0);}catch(e){l=!0,r=e}finally{try{i||null==o.return||o.return()}finally{if(l)throw r}}return a}}(f,2)||dd(f,2)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),eu=es[0],ep=es[1];return j[0]!==ei||j[1]!==eu?(p=function(){dh=dc(ds({},eu),{routerType:ei})},h=[eu,ei],j[0]=ei,j[1]=eu,j[2]=p,j[3]=h):(p=j[2],h=j[3]),(0,C.useEffect)(p,h),j[4]!==el.host||j[5]!==eu.theme?(m=function(){var e=el.host;"dark"===eu.theme?(e.classList.add("dark"),e.classList.remove("light")):"light"===eu.theme?(e.classList.add("light"),e.classList.remove("dark")):(e.classList.remove("dark"),e.classList.remove("light"))},j[4]=el.host,j[5]=eu.theme,j[6]=m):m=j[6],j[7]!==el||j[8]!==eu.theme?(g=[el,eu.theme],j[7]=el,j[8]=eu.theme,j[9]=g):g=j[9],(0,C.useLayoutEffect)(m,g),j[10]!==ep?(y=function(){df=ep;var e=setTimeout(function(){!function(e){try{var t=!0,n=!1,r=void 0;try{for(var o,a=dp[Symbol.iterator]();!(t=(o=a.next()).done);t=!0)(0,o.value)(e)}catch(e){n=!0,r=e}finally{try{t||null==a.return||a.return()}finally{if(n)throw r}}}finally{dp.length=0}}(ep)});return function(){df=null,clearTimeout(e)}},j[10]=ep,j[11]=y):y=j[11],j[12]===Symbol.for("react.memo_cache_sentinel")?(v=[],j[12]=v):v=j[12],(0,C.useInsertionEffect)(y,v),j[13]===Symbol.for("react.memo_cache_sentinel")?(b=(0,S.jsx)(ev,{}),j[13]=b):b=j[13],j[14]!==ep||j[15]!==z||j[16]!==el||j[17]!==eu?(x={dispatch:ep,getSquashedHydrationErrorDetails:z,shadowRoot:el,state:eu},j[14]=ep,j[15]=z,j[16]=el,j[17]=eu,j[18]=x):x=j[18],j[19]===Symbol.for("react.memo_cache_sentinel")?(w=(0,S.jsx)(di,{}),j[19]=w):w=j[19],j[20]!==x?(_=(0,S.jsxs)(S.Fragment,{children:[b,(0,S.jsx)(dx,{value:x,children:w})]}),j[20]=x,j[21]=_):_=j[21],_}var dx=(0,C.createContext)(null),dw=function(){return(0,C.useContext)(dx)},d_=!1,dj=!1;function dk(){return null}function dS(e,t,n){if(d_)throw Error("Next DevTools: Pages Dev Overlay is already mounted. This is a bug in Next.js");if(!dj){var r=document.createElement("script");r.style.display="block",r.style.position="absolute",r.setAttribute("data-nextjs-dev-overlay","true");var o=document.createElement("nextjs-portal");r.appendChild(o),document.body.appendChild(r);var a=(0,em.createRoot)(o,{identifierPrefix:"ndt-",onDefaultTransitionIndicator:function(){return function(){}}}),i=o.attachShadow({mode:"open"});(0,C.startTransition)(function(){a.render((0,S.jsx)(db,{enableCacheIndicator:n,getOwnerStack:e,getSquashedHydrationErrorDetails:dk,isRecoverableError:t,routerType:"app",shadowRoot:i}))}),dj=!0}}function dO(e,t,n){if(dj)throw Error("Next DevTools: App Dev Overlay is already mounted. This is a bug in Next.js");if(!d_){var r=document.createElement("nextjs-portal");r.style.position="absolute",new MutationObserver(function(e){var t=!0,n=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(t=(a=i.next()).done);t=!0){var l=a.value;if("childList"===l.type){var s=!0,c=!1,u=void 0;try{for(var d,f=l.removedNodes[Symbol.iterator]();!(s=(d=f.next()).done);s=!0)d.value===r&&document.body.appendChild(r)}catch(e){c=!0,u=e}finally{try{s||null==f.return||f.return()}finally{if(c)throw u}}}}}catch(e){n=!0,o=e}finally{try{t||null==i.return||i.return()}finally{if(n)throw o}}}).observe(document.body,{childList:!0}),document.body.appendChild(r);var o=(0,em.createRoot)(r,{identifierPrefix:"ndt-"}),a=r.attachShadow({mode:"open"});(0,C.startTransition)(function(){o.render((0,S.jsx)(db,{enableCacheIndicator:!1,getOwnerStack:e,getSquashedHydrationErrorDetails:t,isRecoverableError:n,routerType:"pages",shadowRoot:a}))}),d_=!0}}})(),exports.DevOverlayContext=__webpack_exports__.DevOverlayContext,exports.dispatcher=__webpack_exports__.dispatcher,exports.getSegmentTrieData=__webpack_exports__.getSegmentTrieData,exports.getSerializedOverlayState=__webpack_exports__.getSerializedOverlayState,exports.renderAppDevOverlay=__webpack_exports__.renderAppDevOverlay,exports.renderPagesDevOverlay=__webpack_exports__.renderPagesDevOverlay,exports.useDevOverlayContext=__webpack_exports__.useDevOverlayContext,__webpack_exports__)-1===["DevOverlayContext","dispatcher","getSegmentTrieData","getSerializedOverlayState","renderAppDevOverlay","renderPagesDevOverlay","useDevOverlayContext"].indexOf(__rspack_i)&&(exports[__rspack_i]=__webpack_exports__[__rspack_i]);Object.defineProperty(exports,"__esModule",{value:!0}); -//# sourceMappingURL=index.js.map -})(); -}), -]); - -//# sourceMappingURL=node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js.map deleted file mode 100644 index 1e24857..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 3, "column": 0}, "map": {"version":3,"sources":["webpack://next/./src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.css","webpack://next/./src/next-devtools/dev-overlay/components/devtools-panel/resize/resize-handle.css","webpack://next/./src/next-devtools/dev-overlay/components/overview/segment-boundary-trigger.css","webpack://next/./src/next-devtools/dev-overlay/components/overview/segment-explorer.css","webpack://next/./src/next-devtools/dev-overlay/components/toast/style.css","webpack://next/./src/next-devtools/dev-overlay/components/tooltip/tooltip.css","webpack://next/./src/next-devtools/dev-overlay/global.css","webpack://next/./src/next-devtools/dev-overlay/menu/panel-router.css","webpack://next/./src/next-devtools/dev-overlay/normalize.css","webpack://next/./src/next-devtools/dev-overlay/panel/dynamic-panel.css","webpack://next/./src/next-devtools/dev-overlay/styles/colors.css","webpack://next/./src/next-devtools/dev-overlay/styles/dark-theme.css","webpack://next/./src/next-devtools/dev-overlay/styles/default-theme.css","webpack://next/../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js","webpack://next/../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js","webpack://next/../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","webpack://next/../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js","webpack://next/../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js","webpack://next/../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js","webpack://next/../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js","webpack://next/./dist/compiled/anser/index.js","webpack://next/./dist/compiled/react-dom/cjs/react-dom-client.production.js","webpack://next/./dist/compiled/react-dom/cjs/react-dom.production.js","webpack://next/./dist/compiled/react-dom/client.js","webpack://next/./dist/compiled/react-dom/index.js","webpack://next/./dist/compiled/react/cjs/react-compiler-runtime.production.js","webpack://next/./dist/compiled/react/cjs/react-jsx-runtime.production.js","webpack://next/./dist/compiled/react/cjs/react.production.js","webpack://next/./dist/compiled/react/compiler-runtime.js","webpack://next/./dist/compiled/react/index.js","webpack://next/./dist/compiled/react/jsx-runtime.js","webpack://next/./dist/compiled/scheduler/cjs/scheduler.production.js","webpack://next/./dist/compiled/scheduler/index.js","webpack://next/./dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","webpack://next/./dist/compiled/strip-ansi/index.js","webpack://next/./src/build/webpack/loaders/devtool/devtool-style-inject.js","webpack://next/./dist/compiled/zod/index.cjs","webpack://next/webpack/runtime/compat_get_default_export","webpack://next/webpack/runtime/create_fake_namespace_object","webpack://next/webpack/runtime/define_property_getters","webpack://next/webpack/runtime/has_own_property","webpack://next/webpack/runtime/make_namespace_object","webpack://next/webpack/runtime/nonce","webpack://next/./src/next-devtools/dev-overlay/components/devtools-indicator/status-indicator.tsx","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/styleHookMapping.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/popupStateMapping.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/composite/list/useCompositeListItem.js","webpack://next/./src/next-devtools/dev-overlay/shared.ts","webpack://next/./src/next-devtools/dev-overlay/components/overlay/body-locker.ts","webpack://next/./src/next-devtools/dev-overlay/global.css?b52d","webpack://next/./src/next-devtools/dev-overlay/components/toast/style.css?be9e","webpack://next/./src/server/lib/parse-stack.ts","webpack://next/./src/next-devtools/shared/console-error.ts","webpack://next/./src/next-devtools/dev-overlay/utils/css.ts","webpack://next/./src/next-devtools/dev-overlay/font/font-styles.tsx","webpack://next/./src/next-devtools/dev-overlay/components/shadow-portal.tsx","webpack://next/./src/shared/lib/magic-identifier.ts","webpack://next/./src/next-devtools/dev-overlay/components/hot-linked-text/index.tsx","webpack://next/./src/next-devtools/shared/webpack-module-path.ts","webpack://next/./src/next-devtools/shared/stack-frame.ts","webpack://next/./src/next-devtools/dev-overlay/utils/use-open-in-editor.ts","webpack://next/./src/next-devtools/dev-overlay/icons/external.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/file.tsx","webpack://next/./src/next-devtools/dev-overlay/components/code-frame/parse-code-frame.ts","webpack://next/./src/next-devtools/dev-overlay/components/code-frame/code-frame.tsx","webpack://next/./src/next-devtools/dev-overlay/components/dialog/dialog-body.tsx","webpack://next/./src/next-devtools/dev-overlay/components/dialog/dialog-content.tsx","webpack://next/./src/next-devtools/dev-overlay/components/dialog/styles.ts","webpack://next/./src/next-devtools/dev-overlay/utils/cx.ts","webpack://next/./src/next-devtools/dev-overlay/components/copy-button/index.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-toolbar/nodejs-inspector-button.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-toolbar/copy-error-button.tsx","webpack://next/./src/next-devtools/shared/react-19-hydration-error.ts","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-toolbar/docs-link-button.tsx","webpack://next/./src/next-devtools/dev-overlay/utils/parse-url-from-text.ts","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-toolbar/error-overlay-toolbar.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/thumbs/thumbs-up.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/thumbs/thumbs-down.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-footer/error-feedback/error-feedback.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-footer/error-overlay-footer.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-message/error-message.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-type-label/error-type-label.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/left-arrow.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/right-arrow.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-pagination/error-overlay-pagination.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/eclipse.tsx","webpack://next/./src/next-devtools/dev-overlay/components/version-staleness-info/version-staleness-info.tsx","webpack://next/./src/next-devtools/shared/version-staleness.ts","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-nav/error-overlay-nav.tsx","webpack://next/./src/next-devtools/dev-overlay/components/dialog/dialog.tsx","webpack://next/./src/next-devtools/dev-overlay/hooks/use-on-click-outside.ts","webpack://next/./src/next-devtools/dev-overlay/components/errors/dialog/dialog.tsx","webpack://next/./src/next-devtools/dev-overlay/components/dialog/dialog-header.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/dialog/header.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/dialog/body.tsx","webpack://next/./src/next-devtools/dev-overlay/components/overlay/overlay.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/overlay/overlay.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-bottom-stack/index.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/environment-name-label/environment-name-label.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/utils.ts","webpack://next/./src/next-devtools/dev-overlay/components/fader/index.tsx","webpack://next/./src/next-devtools/dev-overlay/components/resizer/index.tsx","webpack://next/./src/next-devtools/dev-overlay/components/overlay/overlay-backdrop.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-layout/error-overlay-layout.tsx","webpack://next/./src/next-devtools/dev-overlay/components/overlay/styles.tsx","webpack://next/./src/next-devtools/dev-overlay/components/terminal/editor-link.tsx","webpack://next/./src/next-devtools/dev-overlay/components/terminal/terminal.tsx","webpack://next/./src/next-devtools/dev-overlay/container/build-error.tsx","webpack://next/./src/next-devtools/dev-overlay/components/call-stack-frame/call-stack-frame.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/chevron-up-down.tsx","webpack://next/./src/next-devtools/dev-overlay/components/call-stack/call-stack.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-call-stack/error-overlay-call-stack.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/collapse-icon.tsx","webpack://next/./src/next-devtools/dev-overlay/components/hydration-diff/diff-view.tsx","webpack://next/./src/shared/lib/error-source.ts","webpack://next/./src/next-devtools/dev-overlay/utils/get-error-by-type.ts","webpack://next/./src/next-devtools/dev-overlay/container/runtime-error/index.tsx","webpack://next/./src/next-devtools/dev-overlay/container/runtime-error/component-stack-pseudo-html.tsx","webpack://next/./src/next-devtools/dev-overlay/container/errors.tsx","webpack://next/./src/next-devtools/dev-overlay/hooks/use-active-runtime-error.ts","webpack://next/./src/lib/error-telemetry-utils.ts","webpack://next/./src/next-devtools/dev-overlay/icons/eye-icon.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/light-icon.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/dark-icon.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/system-icon.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-info/shortcut-recorder.tsx","webpack://next/./src/next-devtools/shared/devtools-config-schema.ts","webpack://next/./src/next-devtools/dev-overlay/utils/save-devtools-config.ts","webpack://next/./src/next-devtools/shared/deepmerge.ts","webpack://next/./src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-info/user-preferences.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay-toolbar/use-restart-server.ts","webpack://next/./src/next-devtools/dev-overlay/styles/component-styles.tsx","webpack://next/./src/next-devtools/dev-overlay/hooks/use-delayed-render.ts","webpack://next/./src/next-devtools/dev-overlay/components/errors/error-overlay/error-overlay.tsx","webpack://next/./src/next-devtools/dev-overlay/container/runtime-error/render-error.tsx","webpack://next/./src/next-devtools/dev-overlay/styles/scale-updater.tsx","webpack://next/./src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.css?5a1f","webpack://next/./src/next-devtools/dev-overlay/icons/cross.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/warning.tsx","webpack://next/./src/next-devtools/dev-overlay/menu/context.tsx","webpack://next/./src/next-devtools/dev-overlay/utils/indicator-metrics.ts","webpack://next/./src/next-devtools/dev-overlay/components/devtools-indicator/next-logo.tsx","webpack://next/./src/next-devtools/dev-overlay/components/devtools-indicator/hooks/use-update-animation.ts","webpack://next/./src/next-devtools/dev-overlay/components/devtools-indicator/hooks/use-measure-width.ts","webpack://next/./src/next-devtools/dev-overlay/components/toast/toast.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/drag-context.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/draggable.tsx","webpack://next/./src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.tsx","webpack://next/./src/next-devtools/dev-overlay/menu/dev-overlay-menu.tsx","webpack://next/./src/next-devtools/dev-overlay/components/devtools-panel/resize/resize-provider.tsx","webpack://next/./src/next-devtools/dev-overlay/components/devtools-panel/resize/resize-handle.css?390f","webpack://next/./src/next-devtools/dev-overlay/components/devtools-panel/resize/resize-handle.tsx","webpack://next/./src/next-devtools/dev-overlay/panel/dynamic-panel.css?7165","webpack://next/./src/next-devtools/dev-overlay/panel/dynamic-panel.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-info/route-info.tsx","webpack://next/./src/next-devtools/dev-overlay/components/overview/segment-explorer.css?efbd","webpack://next/./src/next-devtools/dev-overlay/segment-explorer-trie.ts","webpack://next/./src/next-devtools/dev-overlay/components/overview/segment-boundary-trigger.css?98e3","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useRefWithInit.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useOnMount.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useTimeout.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useEventCallback.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useControlled.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/safeReact.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useId.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/createEventEmitter.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useIsoLayoutEffect.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/components/FloatingTree.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useFloatingRootContext.js","webpack://next/../../node_modules/.pnpm/@floating-ui+utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useLatestRef.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/detectBrowser.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/event.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/constants.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/element.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/createAttribute.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useHover.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/nodes.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/safePolygon.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useFocus.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useAnimationFrame.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/constants.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useDismiss.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useRole.js","webpack://next/../../node_modules/.pnpm/@floating-ui+utils@0.2.10/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/composite.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/enqueueFocus.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useListNavigation.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useInteractions.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/root/MenuRootContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menubar/MenubarContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useTransitionStatus.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useOpenChangeComplete.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useAnimationsFinished.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/direction-provider/DirectionContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/owner.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/noop.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useScrollLock.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/translateOpenChangeReason.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/context-menu/root/ContextMenuRootContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/submenu-root/MenuSubmenuRootContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/mergeObjects.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/merge-props/mergeProps.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/root/MenuRoot.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useOpenInteractionType.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useEnhancedClickHandler.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useClick.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useTypeahead.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useMixedToggleClickHander.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/useMergedRefs.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/reactVersion.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useRenderElement.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/resolveClassName.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/getStyleHookProps.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/composite/root/CompositeRootContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/use-button/useButton.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useFocusableWhenDisabled.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/composite/list/CompositeListContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/composite/item/CompositeItem.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/composite/item/useCompositeItem.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/trigger/MenuTrigger.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/getPseudoElementBounds.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/visuallyHidden.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/FocusGuard.js","webpack://next/../../node_modules/.pnpm/tabbable@6.2.0/node_modules/tabbable/src/index.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/tabbable.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/components/FloatingPortal.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/portal/MenuPortalContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/portal/MenuPortal.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/positioner/MenuPositionerContext.js","webpack://next/../../node_modules/.pnpm/@floating-ui+core@1.7.3/node_modules/@floating-ui/core/dist/floating-ui.core.mjs","webpack://next/../../node_modules/.pnpm/@floating-ui+dom@1.7.3/node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs","webpack://next/../../node_modules/.pnpm/@floating-ui+react-dom@2.1.5_react-dom@19.3.0-canary-f93b9fd4-20251217_react@19.3.0-canary-f9_uajganyphuebxm4owqfqltyvfy/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useAnchorPositioning.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/middleware/arrow.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useFloating.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/composite/list/CompositeList.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/InternalBackdrop.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/positioner/MenuPositioner.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+utils@0.1.0_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-20251217_tllinc7dqn33q7njcbojl6xrce/node_modules/@base-ui-components/utils/esm/inertValue.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/utils/markOthers.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/components/FloatingFocusManager.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/popup/MenuPopup.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/group/MenuGroupContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/group/MenuGroup.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/useBaseUiId.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/group-label/MenuGroupLabel.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/item/useMenuItem.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/menu/item/MenuItem.js","webpack://next/./src/server/app-render/segment-explorer-path.ts","webpack://next/./src/next-devtools/dev-overlay/components/overview/segment-boundary-trigger.tsx","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/root/TooltipRootContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/trigger/TooltipTrigger.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/positioner/TooltipPositionerContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/arrow/TooltipArrow.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/popup/TooltipPopup.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/portal/TooltipPortalContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/positioner/TooltipPositioner.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/utils/FloatingPortalLite.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/portal/TooltipPortal.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/components/FloatingDelayGroup.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/provider/TooltipProviderContext.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/provider/TooltipProvider.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/floating-ui-react/hooks/useClientPoint.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/root/TooltipRoot.js","webpack://next/../../node_modules/.pnpm/@base-ui-components+react@1.0.0-beta.2_@types+react@19.2.2_react-dom@19.3.0-canary-f93b9fd4-2_cpa3xtuy4iwbizrd4k4keh6gla/node_modules/@base-ui-components/react/esm/tooltip/utils/constants.js","webpack://next/./src/next-devtools/dev-overlay/components/tooltip/tooltip.css?ded2","webpack://next/./src/next-devtools/dev-overlay/components/tooltip/tooltip.tsx","webpack://next/./src/next-devtools/dev-overlay/components/overview/segment-suggestion.tsx","webpack://next/./src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx","webpack://next/./src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-info/dev-tools-header.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/gear-icon.tsx","webpack://next/./src/next-devtools/dev-overlay/icons/loading-icon.tsx","webpack://next/./src/next-devtools/dev-overlay/menu/panel-router.css?5df7","webpack://next/./src/next-devtools/dev-overlay/menu/panel-router.tsx","webpack://next/./src/next-devtools/dev-overlay/hooks/use-shortcuts.ts","webpack://next/./src/next-devtools/dev-overlay/dev-overlay.tsx","webpack://next/./src/next-devtools/dev-overlay.browser.tsx"],"sourcesContent":["// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `[data-nextjs-toast] {\n &[data-hidden='true'] {\n display: none;\n }\n}\n\n.dev-tools-indicator-menu {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n background: var(--color-background-100);\n border: 1px solid var(--color-gray-alpha-400);\n background-clip: padding-box;\n box-shadow: var(--shadow-menu);\n border-radius: var(--rounded-xl);\n position: absolute;\n font-family: var(--font-stack-sans);\n z-index: 3;\n overflow: hidden;\n opacity: 0;\n outline: 0;\n min-width: 248px;\n transition: opacity var(--animate-out-duration-ms)\n var(--animate-out-timing-function);\n\n &[data-rendered='true'] {\n opacity: 1;\n scale: 1;\n }\n}\n\n.dev-tools-indicator-inner {\n padding: 6px;\n width: 100%;\n}\n\n.dev-tools-indicator-item {\n display: flex;\n align-items: center;\n padding: 8px 6px;\n height: var(--size-36);\n border-radius: 6px;\n text-decoration: none !important;\n user-select: none;\n white-space: nowrap;\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n\n &:focus-visible {\n outline: 0;\n }\n}\n\n.dev-tools-indicator-footer {\n background: var(--color-background-200);\n padding: 6px;\n border-top: 1px solid var(--color-gray-400);\n width: 100%;\n}\n\n.dev-tools-indicator-item[data-selected='true'] {\n cursor: pointer;\n background-color: var(--color-gray-200);\n}\n\n.dev-tools-indicator-label {\n font-size: var(--size-14);\n line-height: var(--size-20);\n color: var(--color-gray-1000);\n}\n\n.dev-tools-indicator-value {\n font-size: var(--size-14);\n line-height: var(--size-20);\n color: var(--color-gray-900);\n margin-left: auto;\n}\n\n.dev-tools-indicator-issue-count {\n --color-primary: var(--color-gray-800);\n --color-secondary: var(--color-gray-100);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n gap: 8px;\n min-width: var(--size-40);\n height: var(--size-24);\n background: var(--color-background-100);\n border: 1px solid var(--color-gray-alpha-400);\n background-clip: padding-box;\n box-shadow: var(--shadow-small);\n padding: 2px;\n color: var(--color-gray-1000);\n border-radius: 128px;\n font-weight: 500;\n font-size: var(--size-13);\n font-variant-numeric: tabular-nums;\n\n &[data-has-issues='true'] {\n --color-primary: var(--color-red-800);\n --color-secondary: var(--color-red-100);\n }\n\n .dev-tools-indicator-issue-count-indicator {\n width: var(--size-8);\n height: var(--size-8);\n background: var(--color-primary);\n box-shadow: 0 0 0 2px var(--color-secondary);\n border-radius: 50%;\n }\n}\n\n.dev-tools-indicator-shortcut {\n display: flex;\n gap: 4px;\n\n kbd {\n width: var(--size-20);\n height: var(--size-20);\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: var(--rounded-md);\n border: 1px solid var(--color-gray-400);\n font-family: var(--font-stack-sans);\n background: var(--color-background-100);\n color: var(--color-gray-1000);\n text-align: center;\n font-size: var(--size-12);\n line-height: var(--size-16);\n }\n}\n\n.dev-tools-grabbing {\n cursor: grabbing;\n\n > * {\n pointer-events: none;\n }\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.resize-container {\n position: absolute;\n /* todo: better z index */\n z-index: 10;\n /* todo: is this needed */\n background: transparent;\n}\n\n.resize-line {\n position: absolute;\n /* todo smarter z index */\n z-index: -1;\n pointer-events: none;\n /* a normal exit animation curve- at this point the exit animation is */\n /* immediately responsive so we don't need a bespoke curve */\n transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);\n /* todo: better var? */\n border: 1px solid var(--color-gray-400);\n}\n\n/* start really fast because we start super hidden initially behind the panel, otherwise feels like an unintended animation delay */\n.resize-container:hover ~ .resize-line {\n transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 0.9);\n}\n\n.resize-container.right,\n.resize-container.left {\n top: 0;\n height: 100%;\n width: 22px;\n cursor: ew-resize;\n}\n\n/* todo: don't hard code all these values/use vars */\n\n.resize-container.bottom,\n.resize-container.top {\n left: 0;\n width: 100%;\n height: 22px;\n cursor: ns-resize;\n}\n\n.resize-container.top {\n top: -7px;\n}\n.resize-container.bottom {\n bottom: -7px;\n}\n.resize-container.left {\n left: -7px;\n}\n.resize-container.right {\n right: -7px;\n}\n\n.resize-container.top-left,\n.resize-container.top-right,\n.resize-container.bottom-left,\n.resize-container.bottom-right {\n width: 26px;\n height: 26px;\n z-index: 15;\n}\n\n.resize-container.top-left {\n top: -5px;\n left: -5px;\n cursor: nwse-resize;\n}\n.resize-container.top-right {\n top: -5px;\n right: -5px;\n cursor: nesw-resize;\n}\n.resize-container.bottom-left {\n bottom: -5px;\n left: -5px;\n cursor: nesw-resize;\n}\n.resize-container.bottom-right {\n bottom: -5px;\n right: -5px;\n cursor: nwse-resize;\n}\n\n.resize-line.top,\n.resize-line.bottom {\n height: 18px;\n width: 100%;\n background-color: var(--color-background-200);\n}\n\n.resize-line.left,\n.resize-line.right {\n width: 18px;\n height: 100%;\n background-color: var(--color-background-200);\n}\n\n.resize-line.top {\n top: -7px;\n left: calc(-1 * var(--border-left, 2px));\n width: calc(100% + var(--border-horizontal, 4px));\n border-radius: var(--rounded-lg) var(--rounded-lg) 0 0;\n transform: translateY(18px);\n}\n\n.resize-line.bottom {\n bottom: -7px;\n left: calc(-1 * var(--border-left, 2px));\n width: calc(100% + var(--border-horizontal, 4px));\n border-radius: 0 0 var(--rounded-lg) var(--rounded-lg);\n transform: translateY(-18px);\n}\n\n.resize-line.left {\n top: calc(-1 * var(--border-top, 2px));\n left: -7px;\n height: calc(100% + var(--border-vertical, 4px));\n border-radius: var(--rounded-lg) 0 0 var(--rounded-lg);\n transform: translateX(18px);\n}\n\n.resize-line.right {\n top: calc(-1 * var(--border-top, 2px));\n right: -7px;\n height: calc(100% + var(--border-vertical, 4px));\n border-radius: 0 var(--rounded-lg) var(--rounded-lg) 0;\n transform: translateX(-18px);\n}\n\n.resize-container.right:hover ~ .resize-line.right,\n.resize-container.left:hover ~ .resize-line.left,\n.resize-line.right.dragging,\n.resize-line.left.dragging {\n transform: translateX(0);\n}\n\n.resize-container.bottom:hover ~ .resize-line.bottom,\n.resize-container.top:hover ~ .resize-line.top,\n.resize-line.bottom.dragging,\n.resize-line.top.dragging {\n transform: translateY(0);\n}\n\n/* make sure that we don't show multiple handles at once\n * we should only ever show the currently resizing handle\n * regardless of hover state \n */\n.resize-container.no-hover.right:hover ~ .resize-line.right {\n transform: translateX(-20px);\n}\n.resize-container.no-hover.left:hover ~ .resize-line.left {\n transform: translateX(20px);\n}\n.resize-container.no-hover.bottom:hover ~ .resize-line.bottom {\n transform: translateY(-20px);\n}\n.resize-container.no-hover.top:hover ~ .resize-line.top {\n transform: translateY(20px);\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.segment-boundary-trigger {\n display: flex;\n align-items: center;\n gap: 4px;\n padding: 4px 6px;\n line-height: 16px;\n font-weight: 500;\n color: var(--color-gray-1000);\n border-radius: 999px;\n border: none;\n font-size: var(--size-12);\n cursor: pointer;\n transition: background-color 0.15s ease;\n}\n\n.segment-boundary-trigger-text {\n font-size: var(--size-12);\n font-weight: 500;\n user-select: none;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n}\n\n.segment-boundary-trigger-text .plus-icon {\n transition: transform 0.25s ease;\n}\n\n.segment-boundary-trigger-text:hover .plus-icon {\n color: var(--color-gray-800);\n}\n\n.segment-boundary-trigger svg {\n width: 14px;\n height: 14px;\n flex-shrink: 0;\n vertical-align: middle;\n}\n\n.segment-boundary-trigger:hover svg {\n color: var(--color-gray-700);\n}\n\n.segment-boundary-trigger[disabled] svg,\n.segment-boundary-trigger[disabled]:hover svg {\n color: var(--color-gray-400);\n cursor: not-allowed;\n}\n\n.segment-boundary-dropdown {\n padding: 8px;\n background: var(--color-background-100);\n border: 1px solid var(--color-gray-400);\n border-radius: 16px;\n min-width: 120px;\n user-select: none;\n cursor: default;\n box-shadow: 0px 4px 8px -4px\n color-mix(in srgb, var(--color-gray-900) 4%, transparent);\n}\n\n.segment-boundary-dropdown-positioner {\n z-index: var(--top-z-index);\n}\n\n.segment-boundary-dropdown-item {\n display: flex;\n align-items: center;\n padding: 8px;\n line-height: 20px;\n font-size: 14px;\n border-radius: 6px;\n color: var(--color-gray-1000);\n cursor: pointer;\n min-width: 220px;\n border: none;\n background: none;\n width: 100%;\n}\n\n.segment-boundary-dropdown-item[data-disabled] {\n color: var(--color-gray-400);\n cursor: not-allowed;\n}\n\n.segment-boundary-dropdown-item svg {\n margin-right: 12px;\n color: currentColor;\n}\n\n.segment-boundary-dropdown-item:hover {\n background: var(--color-gray-200);\n}\n\n.segment-boundary-dropdown-item:first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n\n.segment-boundary-dropdown-item:last-child {\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n\n.segment-boundary-group-label {\n padding: 8px;\n font-size: 13px;\n line-height: 16px;\n font-weight: 400;\n color: var(--color-gray-900);\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.segment-explorer-content {\n font-size: var(--size-14);\n padding: 0 8px;\n width: 100%;\n height: 100%;\n}\n\n.segment-explorer-page-route-bar {\n display: flex;\n align-items: center;\n padding: 14px 16px;\n background-color: var(--color-background-200);\n gap: 12px;\n}\n\n.segment-explorer-page-route-bar-path {\n font-size: var(--size-14);\n font-weight: 500;\n color: var(--color-gray-1000);\n font-family: var(--font-mono);\n white-space: nowrap;\n line-height: 20px;\n}\n\n.segment-explorer-item {\n margin: 4px 0;\n border-radius: 6px;\n}\n\n.segment-explorer-item:nth-child(even) {\n background-color: var(--color-background-200);\n}\n.segment-explorer-item-row {\n display: flex;\n flex-direction: column;\n padding-top: 10px;\n padding-bottom: 10px;\n padding-right: 4px;\n}\n.segment-explorer-item-row-main {\n display: flex;\n align-items: center;\n white-space: pre;\n color: var(--color-gray-1000);\n}\n\n.segment-explorer-children--intended {\n padding-left: 16px;\n}\n\n.segment-explorer-filename {\n display: inline-flex;\n width: 100%;\n align-items: center;\n}\n\n.segment-explorer-filename select {\n margin-left: auto;\n}\n.segment-explorer-filename--path {\n margin-right: 8px;\n}\n.segment-explorer-filename--path small {\n display: inline-block;\n width: 0;\n opacity: 0;\n}\n.segment-explorer-filename--name {\n color: var(--color-gray-800);\n}\n\n.segment-explorer-files {\n display: inline-flex;\n gap: 8px;\n margin-left: auto;\n}\n\n.segment-explorer-files + .segment-boundary-trigger {\n margin-left: 8px;\n}\n\n.segment-explorer-file-label {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n padding: 0 6px;\n height: 20px;\n border-radius: 16px;\n line-height: 16px;\n font-size: var(--size-12);\n font-weight: 500;\n background-color: var(--color-gray-300);\n color: var(--color-gray-1000);\n}\n.segment-explorer-file-label-text {\n display: inline-flex;\n align-items: center;\n}\n\n.segment-explorer-file-label--overridden {\n background-color: var(--color-amber-300);\n color: var(--color-amber-900);\n}\n\n.segment-explorer-file-label .code-icon {\n opacity: 0;\n margin-left: 0;\n width: 0;\n transition: all 0.15s ease-in-out;\n}\n.segment-explorer-file-label:hover .code-icon {\n opacity: 1;\n width: 12px;\n margin-left: 4px;\n}\n\n.segment-explorer-file-label:hover {\n filter: brightness(0.95);\n}\n\n.segment-explorer-file-label--builtin {\n background-color: transparent;\n color: var(--color-gray-900);\n border: 1px dashed var(--color-gray-500);\n height: 24px;\n cursor: default;\n}\n.segment-explorer-file-label--builtin svg {\n margin-left: 4px;\n margin-right: -4px;\n}\n\n/* Footer styles */\n.segment-explorer-footer {\n padding: 8px;\n border-top: 1px solid var(--color-gray-400);\n user-select: none;\n}\n\n.segment-explorer-footer-button {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 8px;\n width: 100%;\n padding: 6px;\n background: var(--color-background-100);\n border: 1px solid var(--color-gray-400);\n border-radius: 6px;\n color: var(--color-gray-1000);\n font-size: var(--size-14);\n font-weight: 500;\n cursor: pointer;\n transition: background-color 0.15s ease;\n}\n\n.segment-explorer-footer-button:hover:not(:disabled) {\n background: var(--color-gray-200);\n}\n\n.segment-explorer-footer-button--disabled {\n cursor: not-allowed;\n}\n\n.segment-explorer-footer-text {\n text-align: center;\n}\n\n.segment-explorer-footer-badge {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n min-width: 20px;\n height: 20px;\n padding: 0 6px;\n background: var(--color-amber-300);\n color: var(--color-amber-900);\n border-radius: 10px;\n font-size: var(--size-12);\n font-weight: 600;\n line-height: 1;\n}\n\n.segment-explorer-file-label-tooltip--sm {\n white-space: nowrap;\n}\n\n.segment-explorer-file-label-tooltip--lg {\n min-width: 200px;\n}\n\n.segment-explorer-suggestions {\n display: inline-flex;\n gap: 8px;\n}\n\n.segment-explorer-suggestions-tooltip {\n width: 200px;\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.nextjs-toast {\n position: fixed;\n z-index: var(--top-z-index);\n max-width: 420px;\n box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.25);\n}\n\n.nextjs-toast-errors-parent {\n padding: 16px;\n border-radius: var(--rounded-4xl);\n font-weight: 500;\n color: var(--color-ansi-bright-white);\n background-color: var(--color-ansi-red);\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.tooltip-wrapper {\n position: relative;\n display: inline-block;\n line-height: 1;\n}\n\n.tooltip {\n position: relative;\n padding: 6px 12px;\n border-radius: 8px;\n font-size: 14px;\n line-height: 1.4;\n pointer-events: none;\n color: var(--color-gray-100);\n background-color: var(--color-gray-1000);\n}\n\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-style: solid;\n border-width: var(--arrow-size, 6px);\n border-color: transparent;\n}\n\n.tooltip-arrow--top {\n border-width: var(--arrow-size, 6px) var(--arrow-size, 6px) 0\n var(--arrow-size, 6px);\n border-top-color: var(--color-gray-1000);\n bottom: 0;\n transform: translateY(100%);\n}\n\n.tooltip-arrow--bottom {\n border-width: 0 var(--arrow-size, 6px) var(--arrow-size, 6px)\n var(--arrow-size, 6px);\n border-bottom-color: var(--color-gray-1000);\n top: 0;\n transform: translateY(-100%);\n}\n\n.tooltip-arrow--left {\n border-width: var(--arrow-size, 6px) 0 var(--arrow-size, 6px)\n var(--arrow-size, 6px);\n border-left-color: var(--color-gray-1000);\n right: 0;\n transform: translateX(100%);\n}\n\n.tooltip-arrow--right {\n border-width: var(--arrow-size, 6px) var(--arrow-size, 6px)\n var(--arrow-size, 6px) 0;\n border-right-color: var(--color-gray-1000);\n left: 0;\n transform: translateX(-100%);\n}\n\n.tooltip-positioner {\n z-index: var(--top-z-index);\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nimport ___CSS_LOADER_AT_RULE_IMPORT_0___ from \"-!../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./normalize.css\";\nimport ___CSS_LOADER_AT_RULE_IMPORT_1___ from \"-!../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./styles/default-theme.css\";\nimport ___CSS_LOADER_AT_RULE_IMPORT_2___ from \"-!../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./styles/dark-theme.css\";\nimport ___CSS_LOADER_AT_RULE_IMPORT_3___ from \"-!../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./styles/colors.css\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n___CSS_LOADER_EXPORT___.i(___CSS_LOADER_AT_RULE_IMPORT_0___);\n___CSS_LOADER_EXPORT___.i(___CSS_LOADER_AT_RULE_IMPORT_1___);\n___CSS_LOADER_EXPORT___.i(___CSS_LOADER_AT_RULE_IMPORT_2___);\n___CSS_LOADER_EXPORT___.i(___CSS_LOADER_AT_RULE_IMPORT_3___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `/* devtool global css variables */\n:host {\n /* variables */\n --top-z-index: 2147483647;\n}\n\n/* global styles */\n* {\n -webkit-font-smoothing: antialiased;\n}\n\n/* global reset for draggable content scrollbar styles */\n[data-nextjs-scrollable-content],\n[data-nextjs-scrollable-content] * {\n &::-webkit-scrollbar {\n width: 6px;\n height: 6px;\n border-radius: 0 0 1rem 1rem;\n margin-bottom: 1rem;\n }\n\n &::-webkit-scrollbar-button {\n display: none;\n }\n\n &::-webkit-scrollbar-track {\n border-radius: 0 0 1rem 1rem;\n background-color: var(--color-background-100);\n }\n\n &::-webkit-scrollbar-thumb {\n border-radius: 1rem;\n background-color: var(--color-gray-500);\n }\n}\n\n/* Place overflow: hidden on this so we can break out from [data-nextjs-dialog] */\n[data-nextjs-scrollable-content] {\n overflow: hidden;\n border-radius: inherit;\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `/* Panel content padding styles */\n.panel-content {\n padding: 16px;\n padding-top: 8px;\n overflow: hidden;\n}\n\n/* User preferences wrapper styles */\n.user-preferences-wrapper {\n padding: 20px;\n padding-top: 8px;\n overflow: hidden;\n}\n\n/* Panel route base styles */\n.panel-route {\n opacity: var(--panel-opacity);\n transition: var(--panel-transition);\n}\n\n.turbopack-upgrade-link {\n text-decoration: underline;\n font-weight: 500;\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `:host {\n all: initial;\n\n /* the direction property is not reset by 'all' */\n direction: ltr;\n}\n\n/*!\n * Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n:host {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\narticle,\naside,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection {\n display: block;\n}\n\n:host {\n margin: 0;\n font-family:\n -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',\n Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',\n 'Segoe UI Symbol', 'Noto Color Emoji';\n font-size: 16px;\n font-weight: 400;\n line-height: 1.5;\n color: var(--color-font);\n text-align: left;\n}\n\n:host:not(button) {\n background-color: #fff;\n}\n\n[tabindex='-1']:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin-top: 0;\n margin-bottom: 8px;\n}\n\np {\n margin-top: 0;\n margin-bottom: 16px;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n -webkit-text-decoration-skip-ink: none;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 16px;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 16px;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 8px;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 16px;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family:\n SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',\n monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 16px;\n overflow: auto;\n}\n\nfigure {\n margin: 0 0 16px;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg {\n overflow: hidden;\n vertical-align: middle;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 12px;\n padding-bottom: 12px;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 8px;\n}\n\nbutton {\n border-radius: 0;\n border: 0;\n padding: 0;\n margin: 0;\n background: none;\n appearance: none;\n -webkit-appearance: none;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: none;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nselect {\n word-wrap: normal;\n}\n\nbutton,\n[type='button'],\n[type='reset'],\n[type='submit'] {\n -webkit-appearance: button;\n}\n\nbutton:not(:disabled),\n[type='button']:not(:disabled),\n[type='reset']:not(:disabled),\n[type='submit']:not(:disabled) {\n cursor: pointer;\n}\n\nbutton::-moz-focus-inner,\n[type='button']::-moz-focus-inner,\n[type='reset']::-moz-focus-inner,\n[type='submit']::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type='radio'],\ninput[type='checkbox'] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type='date'],\ninput[type='time'],\ninput[type='datetime-local'],\ninput[type='month'] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: 8px;\n font-size: 24px;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type='number']::-webkit-inner-spin-button,\n[type='number']::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type='search'] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type='search']::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `/* Panel container base styles with dynamic positioning and sizing */\n.dynamic-panel-container {\n position: fixed;\n z-index: 2147483646;\n outline: none;\n top: var(--panel-top, auto);\n bottom: var(--panel-bottom, auto);\n left: var(--panel-left, auto);\n right: var(--panel-right, auto);\n width: var(--panel-width);\n height: var(--panel-height);\n min-width: var(--panel-min-width);\n min-height: var(--panel-min-height);\n max-width: var(--panel-max-width);\n max-height: var(--panel-max-height);\n}\n\n/* Panel content container styles */\n.panel-content-container {\n position: relative;\n width: 100%;\n height: 100%;\n border: 1px solid var(--color-gray-alpha-400);\n border-radius: var(--rounded-xl);\n background: var(--color-background-100);\n display: flex;\n flex-direction: column;\n}\n\n/* Draggable content area styles */\n.draggable-content {\n flex: 1;\n overflow: auto;\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `:host {\n /* \n * CAUTION: THIS IS A WORKAROUND!\n * For now, we use @babel/code-frame to parse the code frame which does not support option to change the color.\n * x-ref: https://github.com/babel/babel/blob/efa52324ff835b794c48080f14877b6caf32cd15/packages/babel-code-frame/src/defs.ts#L40-L54\n * So, we do a workaround mapping to change the color matching the theme.\n *\n * For example, in @babel/code-frame, the \"keyword\" is mapped to ANSI \"cyan\".\n * We want the \"keyword\" to use the \"syntax-keyword\" color in the theme.\n * So, we map the \"cyan\" to the \"syntax-keyword\" in the theme.\n */\n /* cyan: keyword */\n --color-ansi-cyan: var(--color-syntax-keyword);\n /* yellow: capitalized, jsxIdentifier, punctuation */\n --color-ansi-yellow: var(--color-syntax-function);\n /* magenta: number, regex */\n --color-ansi-magenta: var(--color-syntax-keyword);\n /* green: string */\n --color-ansi-green: var(--color-syntax-string);\n /* gray (bright black): comment, gutter */\n --color-ansi-bright-black: var(--color-syntax-comment);\n\n /* Ansi - Temporary */\n --color-ansi-selection: var(--color-gray-alpha-300);\n --color-ansi-bg: var(--color-background-200);\n --color-ansi-fg: var(--color-gray-1000);\n\n --color-ansi-white: var(--color-gray-700);\n --color-ansi-black: var(--color-gray-200);\n --color-ansi-blue: var(--color-blue-700);\n --color-ansi-red: var(--color-red-700);\n --color-ansi-bright-white: var(--color-gray-1000);\n --color-ansi-bright-blue: var(--color-blue-800);\n --color-ansi-bright-cyan: var(--color-blue-800);\n --color-ansi-bright-green: var(--color-green-800);\n --color-ansi-bright-magenta: var(--color-blue-800);\n --color-ansi-bright-red: var(--color-red-800);\n --color-ansi-bright-yellow: var(--color-amber-900);\n\n /* Background Light */\n --color-background-100: #ffffff;\n --color-background-200: #fafafa;\n\n /* Syntax Light */\n --color-syntax-comment: #545454;\n --color-syntax-constant: #171717;\n --color-syntax-function: #0054ad;\n --color-syntax-keyword: #a51850;\n --color-syntax-link: #066056;\n --color-syntax-parameter: #8f3e00;\n --color-syntax-punctuation: #171717;\n --color-syntax-string: #036157;\n --color-syntax-string-expression: #066056;\n\n /* Gray Scale Light */\n --color-gray-100: #f2f2f2;\n --color-gray-200: #ebebeb;\n --color-gray-300: #e6e6e6;\n --color-gray-400: #eaeaea;\n --color-gray-500: #c9c9c9;\n --color-gray-600: #a8a8a8;\n --color-gray-700: #8f8f8f;\n --color-gray-800: #7d7d7d;\n --color-gray-900: #666666;\n --color-gray-1000: #171717;\n\n /* Gray Alpha Scale Light */\n --color-gray-alpha-100: rgba(0, 0, 0, 0.05);\n --color-gray-alpha-200: rgba(0, 0, 0, 0.081);\n --color-gray-alpha-300: rgba(0, 0, 0, 0.1);\n --color-gray-alpha-400: rgba(0, 0, 0, 0.08);\n --color-gray-alpha-500: rgba(0, 0, 0, 0.21);\n --color-gray-alpha-600: rgba(0, 0, 0, 0.34);\n --color-gray-alpha-700: rgba(0, 0, 0, 0.44);\n --color-gray-alpha-800: rgba(0, 0, 0, 0.51);\n --color-gray-alpha-900: rgba(0, 0, 0, 0.605);\n --color-gray-alpha-1000: rgba(0, 0, 0, 0.91);\n\n /* Blue Scale Light */\n --color-blue-100: #f0f7ff;\n --color-blue-200: #edf6ff;\n --color-blue-300: #e1f0ff;\n --color-blue-400: #cde7ff;\n --color-blue-500: #99ceff;\n --color-blue-600: #52aeff;\n --color-blue-700: #0070f3;\n --color-blue-800: #0060d1;\n --color-blue-900: #0067d6;\n --color-blue-1000: #0025ad;\n\n /* Red Scale Light */\n --color-red-100: #fff0f0;\n --color-red-200: #ffebeb;\n --color-red-300: #ffe5e5;\n --color-red-400: #fdd8d8;\n --color-red-500: #f8baba;\n --color-red-600: #f87274;\n --color-red-700: #e5484d;\n --color-red-800: #da3036;\n --color-red-900: #ca2a30;\n --color-red-1000: #381316;\n\n /* Amber Scale Light */\n --color-amber-100: #fff6e5;\n --color-amber-200: #fff4d5;\n --color-amber-300: #fef0cd;\n --color-amber-400: #ffddbf;\n --color-amber-500: #ffc96b;\n --color-amber-600: #f5b047;\n --color-amber-700: #ffb224;\n --color-amber-800: #ff990a;\n --color-amber-900: #a35200;\n --color-amber-1000: #4e2009;\n\n /* Green Scale Light */\n --color-green-100: #effbef;\n --color-green-200: #eafaea;\n --color-green-300: #dcf6dc;\n --color-green-400: #c8f1c9;\n --color-green-500: #99e59f;\n --color-green-600: #6cda76;\n --color-green-700: #46a758;\n --color-green-800: #388e4a;\n --color-green-900: #297c3b;\n --color-green-1000: #18311e;\n\n /* Turbopack Light - Temporary */\n --color-turbopack-text-red: #ff1e56;\n --color-turbopack-text-blue: #0096ff;\n --color-turbopack-border-red: #f0adbe;\n --color-turbopack-border-blue: #adccea;\n --color-turbopack-background-red: #fff7f9;\n --color-turbopack-background-blue: #f6fbff;\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `:host(.dark) {\n --color-font: white;\n --color-backdrop: rgba(0, 0, 0, 0.8);\n --color-border-shadow: rgba(255, 255, 255, 0.145);\n\n --color-title-color: #fafafa;\n --color-stack-notes: #a9a9a9;\n\n /* Background Dark */\n --color-background-100: #0a0a0a;\n --color-background-200: #000000;\n\n /* Syntax Dark */\n --color-syntax-comment: #a0a0a0;\n --color-syntax-constant: #ededed;\n --color-syntax-function: #52a9ff;\n --color-syntax-keyword: #f76e99;\n --color-syntax-link: #0ac5b2;\n --color-syntax-parameter: #f1a10d;\n --color-syntax-punctuation: #ededed;\n --color-syntax-string: #0ac5b2;\n --color-syntax-string-expression: #0ac5b2;\n\n /* Gray Scale Dark */\n --color-gray-100: #1a1a1a;\n --color-gray-200: #1f1f1f;\n --color-gray-300: #292929;\n --color-gray-400: #2e2e2e;\n --color-gray-500: #454545;\n --color-gray-600: #878787;\n --color-gray-700: #8f8f8f;\n --color-gray-800: #7d7d7d;\n --color-gray-900: #a0a0a0;\n --color-gray-1000: #ededed;\n\n /* Gray Alpha Scale Dark */\n --color-gray-alpha-100: rgba(255, 255, 255, 0.066);\n --color-gray-alpha-200: rgba(255, 255, 255, 0.087);\n --color-gray-alpha-300: rgba(255, 255, 255, 0.125);\n --color-gray-alpha-400: rgba(255, 255, 255, 0.145);\n --color-gray-alpha-500: rgba(255, 255, 255, 0.239);\n --color-gray-alpha-600: rgba(255, 255, 255, 0.506);\n --color-gray-alpha-700: rgba(255, 255, 255, 0.54);\n --color-gray-alpha-800: rgba(255, 255, 255, 0.47);\n --color-gray-alpha-900: rgba(255, 255, 255, 0.61);\n --color-gray-alpha-1000: rgba(255, 255, 255, 0.923);\n\n /* Blue Scale Dark */\n --color-blue-100: #0f1b2d;\n --color-blue-200: #10243e;\n --color-blue-300: #0f3058;\n --color-blue-400: #0d3868;\n --color-blue-500: #0a4481;\n --color-blue-600: #0091ff;\n --color-blue-700: #0070f3;\n --color-blue-800: #0060d1;\n --color-blue-900: #52a9ff;\n --color-blue-1000: #eaf6ff;\n\n /* Red Scale Dark */\n --color-red-100: #2a1314;\n --color-red-200: #3d1719;\n --color-red-300: #551a1e;\n --color-red-400: #671e22;\n --color-red-500: #822025;\n --color-red-600: #e5484d;\n --color-red-700: #e5484d;\n --color-red-800: #da3036;\n --color-red-900: #ff6369;\n --color-red-1000: #ffecee;\n\n /* Amber Scale Dark */\n --color-amber-100: #271700;\n --color-amber-200: #341c00;\n --color-amber-300: #4a2900;\n --color-amber-400: #573300;\n --color-amber-500: #693f05;\n --color-amber-600: #e79c13;\n --color-amber-700: #ffb224;\n --color-amber-800: #ff990a;\n --color-amber-900: #f1a10d;\n --color-amber-1000: #fef3dd;\n\n /* Green Scale Dark */\n --color-green-100: #0b2211;\n --color-green-200: #0f2c17;\n --color-green-300: #11351b;\n --color-green-400: #0c461b;\n --color-green-500: #126427;\n --color-green-600: #1a9338;\n --color-green-700: #46a758;\n --color-green-800: #388e4a;\n --color-green-900: #63c174;\n --color-green-1000: #e5fbeb;\n\n /* Turbopack Dark - Temporary */\n --color-turbopack-text-red: #ff6d92;\n --color-turbopack-text-blue: #45b2ff;\n --color-turbopack-border-red: #6e293b;\n --color-turbopack-border-blue: #284f80;\n --color-turbopack-background-red: #250d12;\n --color-turbopack-background-blue: #0a1723;\n}\n\n@media (prefers-color-scheme: dark) {\n :host(:not(.light)) {\n --color-font: white;\n --color-backdrop: rgba(0, 0, 0, 0.8);\n --color-border-shadow: rgba(255, 255, 255, 0.145);\n\n --color-title-color: #fafafa;\n --color-stack-notes: #a9a9a9;\n\n /* Background Dark */\n --color-background-100: #0a0a0a;\n --color-background-200: #000000;\n\n /* Syntax Dark */\n --color-syntax-comment: #a0a0a0;\n --color-syntax-constant: #ededed;\n --color-syntax-function: #52a9ff;\n --color-syntax-keyword: #f76e99;\n --color-syntax-link: #0ac5b2;\n --color-syntax-parameter: #f1a10d;\n --color-syntax-punctuation: #ededed;\n --color-syntax-string: #0ac5b2;\n --color-syntax-string-expression: #0ac5b2;\n\n /* Gray Scale Dark */\n --color-gray-100: #1a1a1a;\n --color-gray-200: #1f1f1f;\n --color-gray-300: #292929;\n --color-gray-400: #2e2e2e;\n --color-gray-500: #454545;\n --color-gray-600: #878787;\n --color-gray-700: #8f8f8f;\n --color-gray-800: #7d7d7d;\n --color-gray-900: #a0a0a0;\n --color-gray-1000: #ededed;\n\n /* Gray Alpha Scale Dark */\n --color-gray-alpha-100: rgba(255, 255, 255, 0.066);\n --color-gray-alpha-200: rgba(255, 255, 255, 0.087);\n --color-gray-alpha-300: rgba(255, 255, 255, 0.125);\n --color-gray-alpha-400: rgba(255, 255, 255, 0.145);\n --color-gray-alpha-500: rgba(255, 255, 255, 0.239);\n --color-gray-alpha-600: rgba(255, 255, 255, 0.506);\n --color-gray-alpha-700: rgba(255, 255, 255, 0.54);\n --color-gray-alpha-800: rgba(255, 255, 255, 0.47);\n --color-gray-alpha-900: rgba(255, 255, 255, 0.61);\n --color-gray-alpha-1000: rgba(255, 255, 255, 0.923);\n\n /* Blue Scale Dark */\n --color-blue-100: #0f1b2d;\n --color-blue-200: #10243e;\n --color-blue-300: #0f3058;\n --color-blue-400: #0d3868;\n --color-blue-500: #0a4481;\n --color-blue-600: #0091ff;\n --color-blue-700: #0070f3;\n --color-blue-800: #0060d1;\n --color-blue-900: #52a9ff;\n --color-blue-1000: #eaf6ff;\n\n /* Red Scale Dark */\n --color-red-100: #2a1314;\n --color-red-200: #3d1719;\n --color-red-300: #551a1e;\n --color-red-400: #671e22;\n --color-red-500: #822025;\n --color-red-600: #e5484d;\n --color-red-700: #e5484d;\n --color-red-800: #da3036;\n --color-red-900: #ff6369;\n --color-red-1000: #ffecee;\n\n /* Amber Scale Dark */\n --color-amber-100: #271700;\n --color-amber-200: #341c00;\n --color-amber-300: #4a2900;\n --color-amber-400: #573300;\n --color-amber-500: #693f05;\n --color-amber-600: #e79c13;\n --color-amber-700: #ffb224;\n --color-amber-800: #ff990a;\n --color-amber-900: #f1a10d;\n --color-amber-1000: #fef3dd;\n\n /* Green Scale Dark */\n --color-green-100: #0b2211;\n --color-green-200: #0f2c17;\n --color-green-300: #11351b;\n --color-green-400: #0c461b;\n --color-green-500: #126427;\n --color-green-600: #1a9338;\n --color-green-700: #46a758;\n --color-green-800: #388e4a;\n --color-green-900: #63c174;\n --color-green-1000: #e5fbeb;\n\n /* Turbopack Dark - Temporary */\n --color-turbopack-text-red: #ff6d92;\n --color-turbopack-text-blue: #45b2ff;\n --color-turbopack-border-red: #6e293b;\n --color-turbopack-border-blue: #284f80;\n --color-turbopack-background-red: #250d12;\n --color-turbopack-background-blue: #0a1723;\n }\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `:host {\n /* \n * Although the style applied to the shadow host is isolated,\n * the element that attached the shadow host (i.e. \"nextjs-portal\")\n * is still affected by the parent's style (e.g. \"body\"). This may\n * occur style conflicts like \"display: flex\", with other children\n * elements therefore give the shadow host an absolute position.\n */\n position: absolute;\n\n --color-font: #757575;\n --color-backdrop: rgba(250, 250, 250, 0.8);\n --color-border-shadow: rgba(0, 0, 0, 0.145);\n\n --color-title-color: #1f1f1f;\n --color-stack-notes: #777;\n\n --color-accents-1: #808080;\n --color-accents-2: #222222;\n --color-accents-3: #404040;\n\n --font-stack-monospace:\n '__nextjs-Geist Mono', 'Geist Mono', 'SFMono-Regular', Consolas,\n 'Liberation Mono', Menlo, Courier, monospace;\n --font-stack-sans:\n '__nextjs-Geist', 'Geist', -apple-system, 'Source Sans Pro', sans-serif;\n\n font-family: var(--font-stack-sans);\n font-variant-ligatures: none;\n\n /* TODO: Remove replaced ones. */\n --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);\n --shadow-lg:\n 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);\n --shadow-xl:\n 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);\n --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);\n --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);\n --shadow-none: 0 0 #0000;\n\n --shadow-small: 0px 2px 2px rgba(0, 0, 0, 0.04);\n --shadow-menu:\n 0px 1px 1px rgba(0, 0, 0, 0.02), 0px 4px 8px -4px rgba(0, 0, 0, 0.04),\n 0px 16px 24px -8px rgba(0, 0, 0, 0.06);\n\n --focus-color: var(--color-blue-800);\n --focus-ring: 2px solid var(--focus-color);\n\n --timing-swift: cubic-bezier(0.23, 0.88, 0.26, 0.92);\n --timing-overlay: cubic-bezier(0.175, 0.885, 0.32, 1.1);\n /* prettier-ignore */\n --timing-bounce: linear(0 0%, 0.005871 1%, 0.022058 2%, 0.046612 3%, 0.077823 4%, 0.114199 5%, 0.154441 6%, 0.197431 7.000000000000001%, 0.242208 8%, 0.287959 9%, 0.333995 10%, 0.379743 11%, 0.424732 12%, 0.46858 13%, 0.510982 14.000000000000002%, 0.551702 15%, 0.590564 16%, 0.627445 17%, 0.662261 18%, 0.694971 19%, 0.725561 20%, 0.754047 21%, 0.780462 22%, 0.804861 23%, 0.82731 24%, 0.847888 25%, 0.866679 26%, 0.883775 27%, 0.899272 28.000000000000004%, 0.913267 28.999999999999996%, 0.925856 30%, 0.937137 31%, 0.947205 32%, 0.956153 33%, 0.96407 34%, 0.971043 35%, 0.977153 36%, 0.982479 37%, 0.987094 38%, 0.991066 39%, 0.994462 40%, 0.997339 41%, 0.999755 42%, 1.001761 43%, 1.003404 44%, 1.004727 45%, 1.00577 46%, 1.006569 47%, 1.007157 48%, 1.007563 49%, 1.007813 50%, 1.007931 51%, 1.007939 52%, 1.007855 53%, 1.007697 54%, 1.007477 55.00000000000001%, 1.00721 56.00000000000001%, 1.006907 56.99999999999999%, 1.006576 57.99999999999999%, 1.006228 59%, 1.005868 60%, 1.005503 61%, 1.005137 62%, 1.004776 63%, 1.004422 64%, 1.004078 65%, 1.003746 66%, 1.003429 67%, 1.003127 68%, 1.00284 69%, 1.002571 70%, 1.002318 71%, 1.002082 72%, 1.001863 73%, 1.00166 74%, 1.001473 75%, 1.001301 76%, 1.001143 77%, 1.001 78%, 1.000869 79%, 1.000752 80%, 1.000645 81%, 1.00055 82%, 1.000464 83%, 1.000388 84%, 1.000321 85%, 1.000261 86%, 1.000209 87%, 1.000163 88%, 1.000123 89%, 1.000088 90%);\n\n --rounded-none: 0px;\n --rounded-sm: 2px;\n --rounded-md: 4px;\n --rounded-md-2: 6px;\n --rounded-lg: 8px;\n --rounded-xl: 12px;\n --rounded-2xl: 16px;\n --rounded-3xl: 24px;\n --rounded-4xl: 32px;\n --rounded-full: 9999px;\n\n /* \n This value gets set from the Dev Tools preferences,\n and we use the following --size-* variables to \n scale the relevant elements.\n\n The reason why we don't rely on rem values is because\n if an app sets their root font size to something tiny, \n it feels unexpected to have the app root size leak \n into a Next.js surface.\n\n https://github.com/vercel/next.js/discussions/76812\n */\n --nextjs-dev-tools-scale: 1;\n --size-1: calc(1px / var(--nextjs-dev-tools-scale));\n --size-2: calc(2px / var(--nextjs-dev-tools-scale));\n --size-3: calc(3px / var(--nextjs-dev-tools-scale));\n --size-4: calc(4px / var(--nextjs-dev-tools-scale));\n --size-5: calc(5px / var(--nextjs-dev-tools-scale));\n --size-6: calc(6px / var(--nextjs-dev-tools-scale));\n --size-7: calc(7px / var(--nextjs-dev-tools-scale));\n --size-8: calc(8px / var(--nextjs-dev-tools-scale));\n --size-9: calc(9px / var(--nextjs-dev-tools-scale));\n --size-10: calc(10px / var(--nextjs-dev-tools-scale));\n --size-11: calc(11px / var(--nextjs-dev-tools-scale));\n --size-12: calc(12px / var(--nextjs-dev-tools-scale));\n --size-13: calc(13px / var(--nextjs-dev-tools-scale));\n --size-14: calc(14px / var(--nextjs-dev-tools-scale));\n --size-15: calc(15px / var(--nextjs-dev-tools-scale));\n --size-16: calc(16px / var(--nextjs-dev-tools-scale));\n --size-17: calc(17px / var(--nextjs-dev-tools-scale));\n --size-18: calc(18px / var(--nextjs-dev-tools-scale));\n --size-20: calc(20px / var(--nextjs-dev-tools-scale));\n --size-22: calc(22px / var(--nextjs-dev-tools-scale));\n --size-24: calc(24px / var(--nextjs-dev-tools-scale));\n --size-26: calc(26px / var(--nextjs-dev-tools-scale));\n --size-28: calc(28px / var(--nextjs-dev-tools-scale));\n --size-30: calc(30px / var(--nextjs-dev-tools-scale));\n --size-32: calc(32px / var(--nextjs-dev-tools-scale));\n --size-34: calc(34px / var(--nextjs-dev-tools-scale));\n --size-36: calc(36px / var(--nextjs-dev-tools-scale));\n --size-38: calc(38px / var(--nextjs-dev-tools-scale));\n --size-40: calc(40px / var(--nextjs-dev-tools-scale));\n --size-42: calc(42px / var(--nextjs-dev-tools-scale));\n --size-44: calc(44px / var(--nextjs-dev-tools-scale));\n --size-46: calc(46px / var(--nextjs-dev-tools-scale));\n --size-48: calc(48px / var(--nextjs-dev-tools-scale));\n\n @media print {\n display: none;\n }\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n margin-bottom: 8px;\n font-weight: 500;\n line-height: 1.5;\n}\n\na {\n color: var(--color-blue-900);\n &:hover {\n color: var(--color-blue-900);\n }\n &:focus-visible {\n outline: var(--focus-ring);\n }\n}\n`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\nmodule.exports = function (cssWithMappingToString) {\n var list = [];\n\n // return the list of modules as css string\n list.toString = function toString() {\n return this.map(function (item) {\n var content = \"\";\n var needLayer = typeof item[5] !== \"undefined\";\n if (item[4]) {\n content += \"@supports (\".concat(item[4], \") {\");\n }\n if (item[2]) {\n content += \"@media \".concat(item[2], \" {\");\n }\n if (needLayer) {\n content += \"@layer\".concat(item[5].length > 0 ? \" \".concat(item[5]) : \"\", \" {\");\n }\n content += cssWithMappingToString(item);\n if (needLayer) {\n content += \"}\";\n }\n if (item[2]) {\n content += \"}\";\n }\n if (item[4]) {\n content += \"}\";\n }\n return content;\n }).join(\"\");\n };\n\n // import a list of modules into the list\n list.i = function i(modules, media, dedupe, supports, layer) {\n if (typeof modules === \"string\") {\n modules = [[null, modules, undefined]];\n }\n var alreadyImportedModules = {};\n if (dedupe) {\n for (var k = 0; k < this.length; k++) {\n var id = this[k][0];\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n for (var _k = 0; _k < modules.length; _k++) {\n var item = [].concat(modules[_k]);\n if (dedupe && alreadyImportedModules[item[0]]) {\n continue;\n }\n if (typeof layer !== \"undefined\") {\n if (typeof item[5] === \"undefined\") {\n item[5] = layer;\n } else {\n item[1] = \"@layer\".concat(item[5].length > 0 ? \" \".concat(item[5]) : \"\", \" {\").concat(item[1], \"}\");\n item[5] = layer;\n }\n }\n if (media) {\n if (!item[2]) {\n item[2] = media;\n } else {\n item[1] = \"@media \".concat(item[2], \" {\").concat(item[1], \"}\");\n item[2] = media;\n }\n }\n if (supports) {\n if (!item[4]) {\n item[4] = \"\".concat(supports);\n } else {\n item[1] = \"@supports (\".concat(item[4], \") {\").concat(item[1], \"}\");\n item[4] = supports;\n }\n }\n list.push(item);\n }\n };\n return list;\n};","\"use strict\";\n\nmodule.exports = function (i) {\n return i[1];\n};","\"use strict\";\n\nvar stylesInDOM = [];\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n for (var i = 0; i < stylesInDOM.length; i++) {\n if (stylesInDOM[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n return result;\n}\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var indexByIdentifier = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3],\n supports: item[4],\n layer: item[5]\n };\n if (indexByIdentifier !== -1) {\n stylesInDOM[indexByIdentifier].references++;\n stylesInDOM[indexByIdentifier].updater(obj);\n } else {\n var updater = addElementStyle(obj, options);\n options.byIndex = i;\n stylesInDOM.splice(i, 0, {\n identifier: identifier,\n updater: updater,\n references: 1\n });\n }\n identifiers.push(identifier);\n }\n return identifiers;\n}\nfunction addElementStyle(obj, options) {\n var api = options.domAPI(options);\n api.update(obj);\n var updater = function updater(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap && newObj.supports === obj.supports && newObj.layer === obj.layer) {\n return;\n }\n api.update(obj = newObj);\n } else {\n api.remove();\n }\n };\n return updater;\n}\nmodule.exports = function (list, options) {\n options = options || {};\n list = list || [];\n var lastIdentifiers = modulesToDom(list, options);\n return function update(newList) {\n newList = newList || [];\n for (var i = 0; i < lastIdentifiers.length; i++) {\n var identifier = lastIdentifiers[i];\n var index = getIndexByIdentifier(identifier);\n stylesInDOM[index].references--;\n }\n var newLastIdentifiers = modulesToDom(newList, options);\n for (var _i = 0; _i < lastIdentifiers.length; _i++) {\n var _identifier = lastIdentifiers[_i];\n var _index = getIndexByIdentifier(_identifier);\n if (stylesInDOM[_index].references === 0) {\n stylesInDOM[_index].updater();\n stylesInDOM.splice(_index, 1);\n }\n }\n lastIdentifiers = newLastIdentifiers;\n };\n};","\"use strict\";\n\n/* istanbul ignore next */\nfunction insertStyleElement(options) {\n var element = document.createElement(\"style\");\n options.setAttributes(element, options.attributes);\n options.insert(element, options.options);\n return element;\n}\nmodule.exports = insertStyleElement;","\"use strict\";\n\n/* istanbul ignore next */\nfunction setAttributesWithoutAttributes(styleElement) {\n var nonce = typeof __webpack_nonce__ !== \"undefined\" ? __webpack_nonce__ : null;\n if (nonce) {\n styleElement.setAttribute(\"nonce\", nonce);\n }\n}\nmodule.exports = setAttributesWithoutAttributes;","\"use strict\";\n\n/* istanbul ignore next */\nfunction apply(styleElement, options, obj) {\n var css = \"\";\n if (obj.supports) {\n css += \"@supports (\".concat(obj.supports, \") {\");\n }\n if (obj.media) {\n css += \"@media \".concat(obj.media, \" {\");\n }\n var needLayer = typeof obj.layer !== \"undefined\";\n if (needLayer) {\n css += \"@layer\".concat(obj.layer.length > 0 ? \" \".concat(obj.layer) : \"\", \" {\");\n }\n css += obj.css;\n if (needLayer) {\n css += \"}\";\n }\n if (obj.media) {\n css += \"}\";\n }\n if (obj.supports) {\n css += \"}\";\n }\n var sourceMap = obj.sourceMap;\n if (sourceMap && typeof btoa !== \"undefined\") {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n }\n\n // For old IE\n /* istanbul ignore if */\n options.styleTagTransform(css, styleElement, options.options);\n}\nfunction removeStyleElement(styleElement) {\n // istanbul ignore if\n if (styleElement.parentNode === null) {\n return false;\n }\n styleElement.parentNode.removeChild(styleElement);\n}\n\n/* istanbul ignore next */\nfunction domAPI(options) {\n if (typeof document === \"undefined\") {\n return {\n update: function update() {},\n remove: function remove() {}\n };\n }\n var styleElement = options.insertStyleElement(options);\n return {\n update: function update(obj) {\n apply(styleElement, options, obj);\n },\n remove: function remove() {\n removeStyleElement(styleElement);\n }\n };\n}\nmodule.exports = domAPI;","\"use strict\";\n\n/* istanbul ignore next */\nfunction styleTagTransform(css, styleElement) {\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = css;\n } else {\n while (styleElement.firstChild) {\n styleElement.removeChild(styleElement.firstChild);\n }\n styleElement.appendChild(document.createTextNode(css));\n }\n}\nmodule.exports = styleTagTransform;","(()=>{\"use strict\";var e={211:e=>{var r=function(){function defineProperties(e,r){for(var n=0;n<r.length;n++){var s=r[n];s.enumerable=s.enumerable||false;s.configurable=true;if(\"value\"in s)s.writable=true;Object.defineProperty(e,s.key,s)}}return function(e,r,n){if(r)defineProperties(e.prototype,r);if(n)defineProperties(e,n);return e}}();function _classCallCheck(e,r){if(!(e instanceof r)){throw new TypeError(\"Cannot call a class as a function\")}}var n=[[{color:\"0, 0, 0\",class:\"ansi-black\"},{color:\"187, 0, 0\",class:\"ansi-red\"},{color:\"0, 187, 0\",class:\"ansi-green\"},{color:\"187, 187, 0\",class:\"ansi-yellow\"},{color:\"0, 0, 187\",class:\"ansi-blue\"},{color:\"187, 0, 187\",class:\"ansi-magenta\"},{color:\"0, 187, 187\",class:\"ansi-cyan\"},{color:\"255,255,255\",class:\"ansi-white\"}],[{color:\"85, 85, 85\",class:\"ansi-bright-black\"},{color:\"255, 85, 85\",class:\"ansi-bright-red\"},{color:\"0, 255, 0\",class:\"ansi-bright-green\"},{color:\"255, 255, 85\",class:\"ansi-bright-yellow\"},{color:\"85, 85, 255\",class:\"ansi-bright-blue\"},{color:\"255, 85, 255\",class:\"ansi-bright-magenta\"},{color:\"85, 255, 255\",class:\"ansi-bright-cyan\"},{color:\"255, 255, 255\",class:\"ansi-bright-white\"}]];var s=function(){r(Anser,null,[{key:\"escapeForHtml\",value:function escapeForHtml(e){return(new Anser).escapeForHtml(e)}},{key:\"linkify\",value:function linkify(e){return(new Anser).linkify(e)}},{key:\"ansiToHtml\",value:function ansiToHtml(e,r){return(new Anser).ansiToHtml(e,r)}},{key:\"ansiToJson\",value:function ansiToJson(e,r){return(new Anser).ansiToJson(e,r)}},{key:\"ansiToText\",value:function ansiToText(e){return(new Anser).ansiToText(e)}}]);function Anser(){_classCallCheck(this,Anser);this.fg=this.bg=this.fg_truecolor=this.bg_truecolor=null;this.bright=0}r(Anser,[{key:\"setupPalette\",value:function setupPalette(){this.PALETTE_COLORS=[];for(var e=0;e<2;++e){for(var r=0;r<8;++r){this.PALETTE_COLORS.push(n[e][r].color)}}var s=[0,95,135,175,215,255];var i=function format(e,r,n){return s[e]+\", \"+s[r]+\", \"+s[n]};var t=void 0,o=void 0,a=void 0;for(var l=0;l<6;++l){for(var c=0;c<6;++c){for(var u=0;u<6;++u){this.PALETTE_COLORS.push(i(l,c,u))}}}var f=8;for(var h=0;h<24;++h,f+=10){this.PALETTE_COLORS.push(i(f,f,f))}}},{key:\"escapeForHtml\",value:function escapeForHtml(e){return e.replace(/[&<>]/gm,(function(e){return e==\"&\"?\"&\":e==\"<\"?\"<\":e==\">\"?\">\":\"\"}))}},{key:\"linkify\",value:function linkify(e){return e.replace(/(https?:\\/\\/[^\\s]+)/gm,(function(e){return'<a href=\"'+e+'\">'+e+\"</a>\"}))}},{key:\"ansiToHtml\",value:function ansiToHtml(e,r){return this.process(e,r,true)}},{key:\"ansiToJson\",value:function ansiToJson(e,r){r=r||{};r.json=true;r.clearLine=false;return this.process(e,r,true)}},{key:\"ansiToText\",value:function ansiToText(e){return this.process(e,{},false)}},{key:\"process\",value:function process(e,r,n){var s=this;var i=this;var t=e.split(/\\033\\[/);var o=t.shift();if(r===undefined||r===null){r={}}r.clearLine=/\\r/.test(e);var a=t.map((function(e){return s.processChunk(e,r,n)}));if(r&&r.json){var l=i.processChunkJson(\"\");l.content=o;l.clearLine=r.clearLine;a.unshift(l);if(r.remove_empty){a=a.filter((function(e){return!e.isEmpty()}))}return a}else{a.unshift(o)}return a.join(\"\")}},{key:\"processChunkJson\",value:function processChunkJson(e,r,s){r=typeof r==\"undefined\"?{}:r;var i=r.use_classes=typeof r.use_classes!=\"undefined\"&&r.use_classes;var t=r.key=i?\"class\":\"color\";var o={content:e,fg:null,bg:null,fg_truecolor:null,bg_truecolor:null,clearLine:r.clearLine,decoration:null,was_processed:false,isEmpty:function isEmpty(){return!o.content}};var a=e.match(/^([!\\x3c-\\x3f]*)([\\d;]*)([\\x20-\\x2c]*[\\x40-\\x7e])([\\s\\S]*)/m);if(!a)return o;var l=o.content=a[4];var c=a[2].split(\";\");if(a[1]!==\"\"||a[3]!==\"m\"){return o}if(!s){return o}var u=this;u.decoration=null;while(c.length>0){var f=c.shift();var h=parseInt(f);if(isNaN(h)||h===0){u.fg=u.bg=u.decoration=null}else if(h===1){u.decoration=\"bold\"}else if(h===2){u.decoration=\"dim\"}else if(h==3){u.decoration=\"italic\"}else if(h==4){u.decoration=\"underline\"}else if(h==5){u.decoration=\"blink\"}else if(h===7){u.decoration=\"reverse\"}else if(h===8){u.decoration=\"hidden\"}else if(h===9){u.decoration=\"strikethrough\"}else if(h==39){u.fg=null}else if(h==49){u.bg=null}else if(h>=30&&h<38){u.fg=n[0][h%10][t]}else if(h>=90&&h<98){u.fg=n[1][h%10][t]}else if(h>=40&&h<48){u.bg=n[0][h%10][t]}else if(h>=100&&h<108){u.bg=n[1][h%10][t]}else if(h===38||h===48){var p=h===38;if(c.length>=1){var g=c.shift();if(g===\"5\"&&c.length>=1){var v=parseInt(c.shift());if(v>=0&&v<=255){if(!i){if(!this.PALETTE_COLORS){u.setupPalette()}if(p){u.fg=this.PALETTE_COLORS[v]}else{u.bg=this.PALETTE_COLORS[v]}}else{var d=v>=16?\"ansi-palette-\"+v:n[v>7?1:0][v%8][\"class\"];if(p){u.fg=d}else{u.bg=d}}}}else if(g===\"2\"&&c.length>=3){var _=parseInt(c.shift());var b=parseInt(c.shift());var y=parseInt(c.shift());if(_>=0&&_<=255&&b>=0&&b<=255&&y>=0&&y<=255){var k=_+\", \"+b+\", \"+y;if(!i){if(p){u.fg=k}else{u.bg=k}}else{if(p){u.fg=\"ansi-truecolor\";u.fg_truecolor=k}else{u.bg=\"ansi-truecolor\";u.bg_truecolor=k}}}}}}}if(u.fg===null&&u.bg===null&&u.decoration===null){return o}else{var T=[];var m=[];var w={};o.fg=u.fg;o.bg=u.bg;o.fg_truecolor=u.fg_truecolor;o.bg_truecolor=u.bg_truecolor;o.decoration=u.decoration;o.was_processed=true;return o}}},{key:\"processChunk\",value:function processChunk(e,r,n){var s=this;var i=this;r=r||{};var t=this.processChunkJson(e,r,n);if(r.json){return t}if(t.isEmpty()){return\"\"}if(!t.was_processed){return t.content}var o=r.use_classes;var a=[];var l=[];var c={};var u=function render_data(e){var r=[];var n=void 0;for(n in e){if(e.hasOwnProperty(n)){r.push(\"data-\"+n+'=\"'+s.escapeForHtml(e[n])+'\"')}}return r.length>0?\" \"+r.join(\" \"):\"\"};if(t.fg){if(o){l.push(t.fg+\"-fg\");if(t.fg_truecolor!==null){c[\"ansi-truecolor-fg\"]=t.fg_truecolor;t.fg_truecolor=null}}else{a.push(\"color:rgb(\"+t.fg+\")\")}}if(t.bg){if(o){l.push(t.bg+\"-bg\");if(t.bg_truecolor!==null){c[\"ansi-truecolor-bg\"]=t.bg_truecolor;t.bg_truecolor=null}}else{a.push(\"background-color:rgb(\"+t.bg+\")\")}}if(t.decoration){if(o){l.push(\"ansi-\"+t.decoration)}else if(t.decoration===\"bold\"){a.push(\"font-weight:bold\")}else if(t.decoration===\"dim\"){a.push(\"opacity:0.5\")}else if(t.decoration===\"italic\"){a.push(\"font-style:italic\")}else if(t.decoration===\"reverse\"){a.push(\"filter:invert(100%)\")}else if(t.decoration===\"hidden\"){a.push(\"visibility:hidden\")}else if(t.decoration===\"strikethrough\"){a.push(\"text-decoration:line-through\")}else{a.push(\"text-decoration:\"+t.decoration)}}if(o){return'<span class=\"'+l.join(\" \")+'\"'+u(c)+\">\"+t.content+\"</span>\"}else{return'<span style=\"'+a.join(\";\")+'\"'+u(c)+\">\"+t.content+\"</span>\"}}}]);return Anser}();e.exports=s}};var r={};function __nccwpck_require__(n){var s=r[n];if(s!==undefined){return s.exports}var i=r[n]={exports:{}};var t=true;try{e[n](i,i.exports,__nccwpck_require__);t=false}finally{if(t)delete r[n]}return i.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var n=__nccwpck_require__(211);module.exports=n})();","/**\n * @license React\n * react-dom-client.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n/*\n Modernizr 3.0.0pre (Custom Build) | MIT\n*/\n\"use strict\";\nvar Scheduler = require(\"next/dist/compiled/scheduler\"),\n React = require(\"next/dist/compiled/react\"),\n ReactDOM = require(\"next/dist/compiled/react-dom\");\nfunction formatProdErrorMessage(code) {\n var url = \"https://react.dev/errors/\" + code;\n if (1 < arguments.length) {\n url += \"?args[]=\" + encodeURIComponent(arguments[1]);\n for (var i = 2; i < arguments.length; i++)\n url += \"&args[]=\" + encodeURIComponent(arguments[i]);\n }\n return (\n \"Minified React error #\" +\n code +\n \"; visit \" +\n url +\n \" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"\n );\n}\nfunction isValidContainer(node) {\n return !(\n !node ||\n (1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)\n );\n}\nfunction getNearestMountedFiber(fiber) {\n var node = fiber,\n nearestMounted = fiber;\n if (fiber.alternate) for (; node.return; ) node = node.return;\n else {\n fiber = node;\n do\n (node = fiber),\n 0 !== (node.flags & 4098) && (nearestMounted = node.return),\n (fiber = node.return);\n while (fiber);\n }\n return 3 === node.tag ? nearestMounted : null;\n}\nfunction getSuspenseInstanceFromFiber(fiber) {\n if (13 === fiber.tag) {\n var suspenseState = fiber.memoizedState;\n null === suspenseState &&\n ((fiber = fiber.alternate),\n null !== fiber && (suspenseState = fiber.memoizedState));\n if (null !== suspenseState) return suspenseState.dehydrated;\n }\n return null;\n}\nfunction getActivityInstanceFromFiber(fiber) {\n if (31 === fiber.tag) {\n var activityState = fiber.memoizedState;\n null === activityState &&\n ((fiber = fiber.alternate),\n null !== fiber && (activityState = fiber.memoizedState));\n if (null !== activityState) return activityState.dehydrated;\n }\n return null;\n}\nfunction assertIsMounted(fiber) {\n if (getNearestMountedFiber(fiber) !== fiber)\n throw Error(formatProdErrorMessage(188));\n}\nfunction findCurrentFiberUsingSlowPath(fiber) {\n var alternate = fiber.alternate;\n if (!alternate) {\n alternate = getNearestMountedFiber(fiber);\n if (null === alternate) throw Error(formatProdErrorMessage(188));\n return alternate !== fiber ? null : fiber;\n }\n for (var a = fiber, b = alternate; ; ) {\n var parentA = a.return;\n if (null === parentA) break;\n var parentB = parentA.alternate;\n if (null === parentB) {\n b = parentA.return;\n if (null !== b) {\n a = b;\n continue;\n }\n break;\n }\n if (parentA.child === parentB.child) {\n for (parentB = parentA.child; parentB; ) {\n if (parentB === a) return assertIsMounted(parentA), fiber;\n if (parentB === b) return assertIsMounted(parentA), alternate;\n parentB = parentB.sibling;\n }\n throw Error(formatProdErrorMessage(188));\n }\n if (a.return !== b.return) (a = parentA), (b = parentB);\n else {\n for (var didFindChild = !1, child$0 = parentA.child; child$0; ) {\n if (child$0 === a) {\n didFindChild = !0;\n a = parentA;\n b = parentB;\n break;\n }\n if (child$0 === b) {\n didFindChild = !0;\n b = parentA;\n a = parentB;\n break;\n }\n child$0 = child$0.sibling;\n }\n if (!didFindChild) {\n for (child$0 = parentB.child; child$0; ) {\n if (child$0 === a) {\n didFindChild = !0;\n a = parentB;\n b = parentA;\n break;\n }\n if (child$0 === b) {\n didFindChild = !0;\n b = parentB;\n a = parentA;\n break;\n }\n child$0 = child$0.sibling;\n }\n if (!didFindChild) throw Error(formatProdErrorMessage(189));\n }\n }\n if (a.alternate !== b) throw Error(formatProdErrorMessage(190));\n }\n if (3 !== a.tag) throw Error(formatProdErrorMessage(188));\n return a.stateNode.current === a ? fiber : alternate;\n}\nfunction findCurrentHostFiberImpl(node) {\n var tag = node.tag;\n if (5 === tag || 26 === tag || 27 === tag || 6 === tag) return node;\n for (node = node.child; null !== node; ) {\n tag = findCurrentHostFiberImpl(node);\n if (null !== tag) return tag;\n node = node.sibling;\n }\n return null;\n}\nfunction traverseVisibleHostChildren(child, searchWithinHosts, fn, a, b, c) {\n for (; null !== child; ) {\n if (\n (5 === child.tag && fn(child, a, b, c)) ||\n ((22 !== child.tag || null === child.memoizedState) &&\n (searchWithinHosts || 5 !== child.tag) &&\n traverseVisibleHostChildren(\n child.child,\n searchWithinHosts,\n fn,\n a,\n b,\n c\n ))\n )\n return !0;\n child = child.sibling;\n }\n return !1;\n}\nfunction getFragmentParentHostFiber(fiber) {\n for (fiber = fiber.return; null !== fiber; ) {\n if (3 === fiber.tag || 5 === fiber.tag) return fiber;\n fiber = fiber.return;\n }\n return null;\n}\nfunction findFragmentInstanceSiblings(result, self, child) {\n for (\n var foundSelf =\n 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : !1;\n null !== child;\n\n ) {\n if (child === self)\n if (((foundSelf = !0), child.sibling)) child = child.sibling;\n else return !0;\n if (5 === child.tag) {\n if (foundSelf) return (result[1] = child), !0;\n result[0] = child;\n } else if (\n (22 !== child.tag || null === child.memoizedState) &&\n findFragmentInstanceSiblings(result, self, child.child, foundSelf)\n )\n return !0;\n child = child.sibling;\n }\n return !1;\n}\nfunction getInstanceFromHostFiber(fiber) {\n switch (fiber.tag) {\n case 5:\n return fiber.stateNode;\n case 3:\n return fiber.stateNode.containerInfo;\n default:\n throw Error(formatProdErrorMessage(559));\n }\n}\nvar searchTarget = null,\n searchBoundary = null;\nfunction findNextSibling(child) {\n searchTarget = child;\n return !0;\n}\nfunction isFiberPrecedingCheck(child, target, boundary) {\n return child === boundary\n ? !0\n : child === target\n ? ((searchTarget = child), !0)\n : !1;\n}\nfunction isFiberFollowingCheck(child, target, boundary) {\n return child === boundary\n ? ((searchBoundary = child), !1)\n : child === target\n ? (null !== searchBoundary && (searchTarget = child), !0)\n : !1;\n}\nfunction getParentForFragmentAncestors(inst) {\n if (null === inst) return null;\n do inst = null === inst ? null : inst.return;\n while (inst && 5 !== inst.tag && 27 !== inst.tag && 3 !== inst.tag);\n return inst ? inst : null;\n}\nfunction getLowestCommonAncestor(instA, instB, getParent) {\n for (var depthA = 0, tempA = instA; tempA; tempA = getParent(tempA)) depthA++;\n tempA = 0;\n for (var tempB = instB; tempB; tempB = getParent(tempB)) tempA++;\n for (; 0 < depthA - tempA; ) (instA = getParent(instA)), depthA--;\n for (; 0 < tempA - depthA; ) (instB = getParent(instB)), tempA--;\n for (; depthA--; ) {\n if (instA === instB || (null !== instB && instA === instB.alternate))\n return instA;\n instA = getParent(instA);\n instB = getParent(instB);\n }\n return null;\n}\nvar assign = Object.assign,\n REACT_LEGACY_ELEMENT_TYPE = Symbol.for(\"react.element\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\");\nSymbol.for(\"react.scope\");\nvar REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_LEGACY_HIDDEN_TYPE = Symbol.for(\"react.legacy_hidden\");\nSymbol.for(\"react.tracing_marker\");\nvar REACT_MEMO_CACHE_SENTINEL = Symbol.for(\"react.memo_cache_sentinel\"),\n REACT_VIEW_TRANSITION_TYPE = Symbol.for(\"react.view_transition\"),\n MAYBE_ITERATOR_SYMBOL = Symbol.iterator;\nfunction getIteratorFn(maybeIterable) {\n if (null === maybeIterable || \"object\" !== typeof maybeIterable) return null;\n maybeIterable =\n (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||\n maybeIterable[\"@@iterator\"];\n return \"function\" === typeof maybeIterable ? maybeIterable : null;\n}\nvar REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\");\nfunction getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (type.$$typeof) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n}\nvar isArrayImpl = Array.isArray,\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n ReactDOMSharedInternals =\n ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n sharedNotPendingObject = {\n pending: !1,\n data: null,\n method: null,\n action: null\n },\n valueStack = [],\n index = -1;\nfunction createCursor(defaultValue) {\n return { current: defaultValue };\n}\nfunction pop(cursor) {\n 0 > index ||\n ((cursor.current = valueStack[index]), (valueStack[index] = null), index--);\n}\nfunction push(cursor, value) {\n index++;\n valueStack[index] = cursor.current;\n cursor.current = value;\n}\nvar contextStackCursor = createCursor(null),\n contextFiberStackCursor = createCursor(null),\n rootInstanceStackCursor = createCursor(null),\n hostTransitionProviderCursor = createCursor(null);\nfunction pushHostContainer(fiber, nextRootInstance) {\n push(rootInstanceStackCursor, nextRootInstance);\n push(contextFiberStackCursor, fiber);\n push(contextStackCursor, null);\n switch (nextRootInstance.nodeType) {\n case 9:\n case 11:\n fiber = (fiber = nextRootInstance.documentElement)\n ? (fiber = fiber.namespaceURI)\n ? getOwnHostContext(fiber)\n : 0\n : 0;\n break;\n default:\n if (\n ((fiber = nextRootInstance.tagName),\n (nextRootInstance = nextRootInstance.namespaceURI))\n )\n (nextRootInstance = getOwnHostContext(nextRootInstance)),\n (fiber = getChildHostContextProd(nextRootInstance, fiber));\n else\n switch (fiber) {\n case \"svg\":\n fiber = 1;\n break;\n case \"math\":\n fiber = 2;\n break;\n default:\n fiber = 0;\n }\n }\n pop(contextStackCursor);\n push(contextStackCursor, fiber);\n}\nfunction popHostContainer() {\n pop(contextStackCursor);\n pop(contextFiberStackCursor);\n pop(rootInstanceStackCursor);\n}\nfunction pushHostContext(fiber) {\n var stateHook = fiber.memoizedState;\n null !== stateHook &&\n ((HostTransitionContext._currentValue = stateHook.memoizedState),\n push(hostTransitionProviderCursor, fiber));\n stateHook = contextStackCursor.current;\n var JSCompiler_inline_result = getChildHostContextProd(stateHook, fiber.type);\n stateHook !== JSCompiler_inline_result &&\n (push(contextFiberStackCursor, fiber),\n push(contextStackCursor, JSCompiler_inline_result));\n}\nfunction popHostContext(fiber) {\n contextFiberStackCursor.current === fiber &&\n (pop(contextStackCursor), pop(contextFiberStackCursor));\n hostTransitionProviderCursor.current === fiber &&\n (pop(hostTransitionProviderCursor),\n (HostTransitionContext._currentValue = sharedNotPendingObject));\n}\nvar prefix, suffix;\nfunction describeBuiltInComponentFrame(name) {\n if (void 0 === prefix)\n try {\n throw Error();\n } catch (x) {\n var match = x.stack.trim().match(/\\n( *(at )?)/);\n prefix = (match && match[1]) || \"\";\n suffix =\n -1 < x.stack.indexOf(\"\\n at\")\n ? \" (<anonymous>)\"\n : -1 < x.stack.indexOf(\"@\")\n ? \"@unknown:0:0\"\n : \"\";\n }\n return \"\\n\" + prefix + name + suffix;\n}\nvar reentry = !1;\nfunction describeNativeComponentFrame(fn, construct) {\n if (!fn || reentry) return \"\";\n reentry = !0;\n var previousPrepareStackTrace = Error.prepareStackTrace;\n Error.prepareStackTrace = void 0;\n try {\n var RunInRootFrame = {\n DetermineComponentFrameRoot: function () {\n try {\n if (construct) {\n var Fake = function () {\n throw Error();\n };\n Object.defineProperty(Fake.prototype, \"props\", {\n set: function () {\n throw Error();\n }\n });\n if (\"object\" === typeof Reflect && Reflect.construct) {\n try {\n Reflect.construct(Fake, []);\n } catch (x) {\n var control = x;\n }\n Reflect.construct(fn, [], Fake);\n } else {\n try {\n Fake.call();\n } catch (x$1) {\n control = x$1;\n }\n fn.call(Fake.prototype);\n }\n } else {\n try {\n throw Error();\n } catch (x$2) {\n control = x$2;\n }\n (Fake = fn()) &&\n \"function\" === typeof Fake.catch &&\n Fake.catch(function () {});\n }\n } catch (sample) {\n if (sample && control && \"string\" === typeof sample.stack)\n return [sample.stack, control.stack];\n }\n return [null, null];\n }\n };\n RunInRootFrame.DetermineComponentFrameRoot.displayName =\n \"DetermineComponentFrameRoot\";\n var namePropDescriptor = Object.getOwnPropertyDescriptor(\n RunInRootFrame.DetermineComponentFrameRoot,\n \"name\"\n );\n namePropDescriptor &&\n namePropDescriptor.configurable &&\n Object.defineProperty(\n RunInRootFrame.DetermineComponentFrameRoot,\n \"name\",\n { value: \"DetermineComponentFrameRoot\" }\n );\n var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(),\n sampleStack = _RunInRootFrame$Deter[0],\n controlStack = _RunInRootFrame$Deter[1];\n if (sampleStack && controlStack) {\n var sampleLines = sampleStack.split(\"\\n\"),\n controlLines = controlStack.split(\"\\n\");\n for (\n namePropDescriptor = RunInRootFrame = 0;\n RunInRootFrame < sampleLines.length &&\n !sampleLines[RunInRootFrame].includes(\"DetermineComponentFrameRoot\");\n\n )\n RunInRootFrame++;\n for (\n ;\n namePropDescriptor < controlLines.length &&\n !controlLines[namePropDescriptor].includes(\n \"DetermineComponentFrameRoot\"\n );\n\n )\n namePropDescriptor++;\n if (\n RunInRootFrame === sampleLines.length ||\n namePropDescriptor === controlLines.length\n )\n for (\n RunInRootFrame = sampleLines.length - 1,\n namePropDescriptor = controlLines.length - 1;\n 1 <= RunInRootFrame &&\n 0 <= namePropDescriptor &&\n sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor];\n\n )\n namePropDescriptor--;\n for (\n ;\n 1 <= RunInRootFrame && 0 <= namePropDescriptor;\n RunInRootFrame--, namePropDescriptor--\n )\n if (sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) {\n if (1 !== RunInRootFrame || 1 !== namePropDescriptor) {\n do\n if (\n (RunInRootFrame--,\n namePropDescriptor--,\n 0 > namePropDescriptor ||\n sampleLines[RunInRootFrame] !==\n controlLines[namePropDescriptor])\n ) {\n var frame =\n \"\\n\" +\n sampleLines[RunInRootFrame].replace(\" at new \", \" at \");\n fn.displayName &&\n frame.includes(\"<anonymous>\") &&\n (frame = frame.replace(\"<anonymous>\", fn.displayName));\n return frame;\n }\n while (1 <= RunInRootFrame && 0 <= namePropDescriptor);\n }\n break;\n }\n }\n } finally {\n (reentry = !1), (Error.prepareStackTrace = previousPrepareStackTrace);\n }\n return (previousPrepareStackTrace = fn ? fn.displayName || fn.name : \"\")\n ? describeBuiltInComponentFrame(previousPrepareStackTrace)\n : \"\";\n}\nfunction describeFiber(fiber, childFiber) {\n switch (fiber.tag) {\n case 26:\n case 27:\n case 5:\n return describeBuiltInComponentFrame(fiber.type);\n case 16:\n return describeBuiltInComponentFrame(\"Lazy\");\n case 13:\n return fiber.child !== childFiber && null !== childFiber\n ? describeBuiltInComponentFrame(\"Suspense Fallback\")\n : describeBuiltInComponentFrame(\"Suspense\");\n case 19:\n return describeBuiltInComponentFrame(\"SuspenseList\");\n case 0:\n case 15:\n return describeNativeComponentFrame(fiber.type, !1);\n case 11:\n return describeNativeComponentFrame(fiber.type.render, !1);\n case 1:\n return describeNativeComponentFrame(fiber.type, !0);\n case 31:\n return describeBuiltInComponentFrame(\"Activity\");\n case 30:\n return describeBuiltInComponentFrame(\"ViewTransition\");\n default:\n return \"\";\n }\n}\nfunction getStackByFiberInDevAndProd(workInProgress) {\n try {\n var info = \"\",\n previous = null;\n do\n (info += describeFiber(workInProgress, previous)),\n (previous = workInProgress),\n (workInProgress = workInProgress.return);\n while (workInProgress);\n return info;\n } catch (x) {\n return \"\\nError generating stack: \" + x.message + \"\\n\" + x.stack;\n }\n}\nvar hasOwnProperty = Object.prototype.hasOwnProperty,\n scheduleCallback$3 = Scheduler.unstable_scheduleCallback,\n cancelCallback$1 = Scheduler.unstable_cancelCallback,\n shouldYield = Scheduler.unstable_shouldYield,\n requestPaint = Scheduler.unstable_requestPaint,\n now = Scheduler.unstable_now,\n getCurrentPriorityLevel = Scheduler.unstable_getCurrentPriorityLevel,\n ImmediatePriority = Scheduler.unstable_ImmediatePriority,\n UserBlockingPriority = Scheduler.unstable_UserBlockingPriority,\n NormalPriority$1 = Scheduler.unstable_NormalPriority,\n LowPriority = Scheduler.unstable_LowPriority,\n IdlePriority = Scheduler.unstable_IdlePriority,\n log$1 = Scheduler.log,\n unstable_setDisableYieldValue = Scheduler.unstable_setDisableYieldValue,\n rendererID = null,\n injectedHook = null;\nfunction setIsStrictModeForDevtools(newIsStrictMode) {\n \"function\" === typeof log$1 && unstable_setDisableYieldValue(newIsStrictMode);\n if (injectedHook && \"function\" === typeof injectedHook.setStrictMode)\n try {\n injectedHook.setStrictMode(rendererID, newIsStrictMode);\n } catch (err) {}\n}\nvar clz32 = Math.clz32 ? Math.clz32 : clz32Fallback,\n log = Math.log,\n LN2 = Math.LN2;\nfunction clz32Fallback(x) {\n x >>>= 0;\n return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;\n}\nvar nextTransitionUpdateLane = 256,\n nextTransitionDeferredLane = 262144,\n nextRetryLane = 4194304;\nfunction getHighestPriorityLanes(lanes) {\n var pendingSyncLanes = lanes & 42;\n if (0 !== pendingSyncLanes) return pendingSyncLanes;\n switch (lanes & -lanes) {\n case 1:\n return 1;\n case 2:\n return 2;\n case 4:\n return 4;\n case 8:\n return 8;\n case 16:\n return 16;\n case 32:\n return 32;\n case 64:\n return 64;\n case 128:\n return 128;\n case 256:\n case 512:\n case 1024:\n case 2048:\n case 4096:\n case 8192:\n case 16384:\n case 32768:\n case 65536:\n case 131072:\n return lanes & 261888;\n case 262144:\n case 524288:\n case 1048576:\n case 2097152:\n return lanes & 3932160;\n case 4194304:\n case 8388608:\n case 16777216:\n case 33554432:\n return lanes & 62914560;\n case 67108864:\n return 67108864;\n case 134217728:\n return 134217728;\n case 268435456:\n return 268435456;\n case 536870912:\n return 536870912;\n case 1073741824:\n return 0;\n default:\n return lanes;\n }\n}\nfunction getNextLanes(root, wipLanes, rootHasPendingCommit) {\n var pendingLanes = root.pendingLanes;\n if (0 === pendingLanes) return 0;\n var nextLanes = 0,\n suspendedLanes = root.suspendedLanes,\n pingedLanes = root.pingedLanes;\n root = root.warmLanes;\n var nonIdlePendingLanes = pendingLanes & 134217727;\n 0 !== nonIdlePendingLanes\n ? ((pendingLanes = nonIdlePendingLanes & ~suspendedLanes),\n 0 !== pendingLanes\n ? (nextLanes = getHighestPriorityLanes(pendingLanes))\n : ((pingedLanes &= nonIdlePendingLanes),\n 0 !== pingedLanes\n ? (nextLanes = getHighestPriorityLanes(pingedLanes))\n : rootHasPendingCommit ||\n ((rootHasPendingCommit = nonIdlePendingLanes & ~root),\n 0 !== rootHasPendingCommit &&\n (nextLanes = getHighestPriorityLanes(rootHasPendingCommit)))))\n : ((nonIdlePendingLanes = pendingLanes & ~suspendedLanes),\n 0 !== nonIdlePendingLanes\n ? (nextLanes = getHighestPriorityLanes(nonIdlePendingLanes))\n : 0 !== pingedLanes\n ? (nextLanes = getHighestPriorityLanes(pingedLanes))\n : rootHasPendingCommit ||\n ((rootHasPendingCommit = pendingLanes & ~root),\n 0 !== rootHasPendingCommit &&\n (nextLanes = getHighestPriorityLanes(rootHasPendingCommit))));\n return 0 === nextLanes\n ? 0\n : 0 !== wipLanes &&\n wipLanes !== nextLanes &&\n 0 === (wipLanes & suspendedLanes) &&\n ((suspendedLanes = nextLanes & -nextLanes),\n (rootHasPendingCommit = wipLanes & -wipLanes),\n suspendedLanes >= rootHasPendingCommit ||\n (32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)))\n ? wipLanes\n : nextLanes;\n}\nfunction checkIfRootIsPrerendering(root, renderLanes) {\n return (\n 0 ===\n (root.pendingLanes &\n ~(root.suspendedLanes & ~root.pingedLanes) &\n renderLanes)\n );\n}\nfunction computeExpirationTime(lane, currentTime) {\n switch (lane) {\n case 1:\n case 2:\n case 4:\n case 8:\n case 64:\n return currentTime + 250;\n case 16:\n case 32:\n case 128:\n case 256:\n case 512:\n case 1024:\n case 2048:\n case 4096:\n case 8192:\n case 16384:\n case 32768:\n case 65536:\n case 131072:\n case 262144:\n case 524288:\n case 1048576:\n case 2097152:\n return currentTime + 5e3;\n case 4194304:\n case 8388608:\n case 16777216:\n case 33554432:\n return -1;\n case 67108864:\n case 134217728:\n case 268435456:\n case 536870912:\n case 1073741824:\n return -1;\n default:\n return -1;\n }\n}\nfunction claimNextRetryLane() {\n var lane = nextRetryLane;\n nextRetryLane <<= 1;\n 0 === (nextRetryLane & 62914560) && (nextRetryLane = 4194304);\n return lane;\n}\nfunction createLaneMap(initial) {\n for (var laneMap = [], i = 0; 31 > i; i++) laneMap.push(initial);\n return laneMap;\n}\nfunction markRootUpdated$1(root, updateLane) {\n root.pendingLanes |= updateLane;\n 268435456 !== updateLane &&\n ((root.suspendedLanes = 0), (root.pingedLanes = 0), (root.warmLanes = 0));\n}\nfunction markRootFinished(\n root,\n finishedLanes,\n remainingLanes,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes\n) {\n var previouslyPendingLanes = root.pendingLanes;\n root.pendingLanes = remainingLanes;\n root.suspendedLanes = 0;\n root.pingedLanes = 0;\n root.warmLanes = 0;\n root.expiredLanes &= remainingLanes;\n root.entangledLanes &= remainingLanes;\n root.errorRecoveryDisabledLanes &= remainingLanes;\n root.shellSuspendCounter = 0;\n var entanglements = root.entanglements,\n expirationTimes = root.expirationTimes,\n hiddenUpdates = root.hiddenUpdates;\n for (\n remainingLanes = previouslyPendingLanes & ~remainingLanes;\n 0 < remainingLanes;\n\n ) {\n var index$7 = 31 - clz32(remainingLanes),\n lane = 1 << index$7;\n entanglements[index$7] = 0;\n expirationTimes[index$7] = -1;\n var hiddenUpdatesForLane = hiddenUpdates[index$7];\n if (null !== hiddenUpdatesForLane)\n for (\n hiddenUpdates[index$7] = null, index$7 = 0;\n index$7 < hiddenUpdatesForLane.length;\n index$7++\n ) {\n var update = hiddenUpdatesForLane[index$7];\n null !== update && (update.lane &= -536870913);\n }\n remainingLanes &= ~lane;\n }\n 0 !== spawnedLane && markSpawnedDeferredLane(root, spawnedLane, 0);\n 0 !== suspendedRetryLanes &&\n 0 === updatedLanes &&\n 0 !== root.tag &&\n (root.suspendedLanes |=\n suspendedRetryLanes & ~(previouslyPendingLanes & ~finishedLanes));\n}\nfunction markSpawnedDeferredLane(root, spawnedLane, entangledLanes) {\n root.pendingLanes |= spawnedLane;\n root.suspendedLanes &= ~spawnedLane;\n var spawnedLaneIndex = 31 - clz32(spawnedLane);\n root.entangledLanes |= spawnedLane;\n root.entanglements[spawnedLaneIndex] =\n root.entanglements[spawnedLaneIndex] |\n 1073741824 |\n (entangledLanes & 261930);\n}\nfunction markRootEntangled(root, entangledLanes) {\n var rootEntangledLanes = (root.entangledLanes |= entangledLanes);\n for (root = root.entanglements; rootEntangledLanes; ) {\n var index$8 = 31 - clz32(rootEntangledLanes),\n lane = 1 << index$8;\n (lane & entangledLanes) | (root[index$8] & entangledLanes) &&\n (root[index$8] |= entangledLanes);\n rootEntangledLanes &= ~lane;\n }\n}\nfunction getBumpedLaneForHydration(root, renderLanes) {\n var renderLane = renderLanes & -renderLanes;\n renderLane =\n 0 !== (renderLane & 42) ? 1 : getBumpedLaneForHydrationByLane(renderLane);\n return 0 !== (renderLane & (root.suspendedLanes | renderLanes))\n ? 0\n : renderLane;\n}\nfunction getBumpedLaneForHydrationByLane(lane) {\n switch (lane) {\n case 2:\n lane = 1;\n break;\n case 8:\n lane = 4;\n break;\n case 32:\n lane = 16;\n break;\n case 256:\n case 512:\n case 1024:\n case 2048:\n case 4096:\n case 8192:\n case 16384:\n case 32768:\n case 65536:\n case 131072:\n case 262144:\n case 524288:\n case 1048576:\n case 2097152:\n case 4194304:\n case 8388608:\n case 16777216:\n case 33554432:\n lane = 128;\n break;\n case 268435456:\n lane = 134217728;\n break;\n default:\n lane = 0;\n }\n return lane;\n}\nfunction lanesToEventPriority(lanes) {\n lanes &= -lanes;\n return 2 < lanes\n ? 8 < lanes\n ? 0 !== (lanes & 134217727)\n ? 32\n : 268435456\n : 8\n : 2;\n}\nfunction resolveUpdatePriority() {\n var updatePriority = ReactDOMSharedInternals.p;\n if (0 !== updatePriority) return updatePriority;\n updatePriority = window.event;\n return void 0 === updatePriority ? 32 : getEventPriority(updatePriority.type);\n}\nfunction runWithPriority(priority, fn) {\n var previousPriority = ReactDOMSharedInternals.p;\n try {\n return (ReactDOMSharedInternals.p = priority), fn();\n } finally {\n ReactDOMSharedInternals.p = previousPriority;\n }\n}\nvar randomKey = Math.random().toString(36).slice(2),\n internalInstanceKey = \"__reactFiber$\" + randomKey,\n internalPropsKey = \"__reactProps$\" + randomKey,\n internalContainerInstanceKey = \"__reactContainer$\" + randomKey,\n internalEventHandlersKey = \"__reactEvents$\" + randomKey,\n internalEventHandlerListenersKey = \"__reactListeners$\" + randomKey,\n internalEventHandlesSetKey = \"__reactHandles$\" + randomKey,\n internalRootNodeResourcesKey = \"__reactResources$\" + randomKey,\n internalHoistableMarker = \"__reactMarker$\" + randomKey;\nfunction detachDeletedInstance(node) {\n delete node[internalInstanceKey];\n delete node[internalPropsKey];\n delete node[internalEventHandlersKey];\n delete node[internalEventHandlerListenersKey];\n delete node[internalEventHandlesSetKey];\n}\nfunction getClosestInstanceFromNode(targetNode) {\n var targetInst;\n if ((targetInst = targetNode[internalInstanceKey])) return targetInst;\n for (var parentNode = targetNode.parentNode; parentNode; ) {\n if (\n (targetInst =\n parentNode[internalContainerInstanceKey] ||\n parentNode[internalInstanceKey])\n ) {\n parentNode = targetInst.alternate;\n if (\n null !== targetInst.child ||\n (null !== parentNode && null !== parentNode.child)\n )\n for (\n targetNode = getParentHydrationBoundary(targetNode);\n null !== targetNode;\n\n ) {\n if ((parentNode = targetNode[internalInstanceKey])) return parentNode;\n targetNode = getParentHydrationBoundary(targetNode);\n }\n return targetInst;\n }\n targetNode = parentNode;\n parentNode = targetNode.parentNode;\n }\n return null;\n}\nfunction getInstanceFromNode(node) {\n if (\n (node = node[internalInstanceKey] || node[internalContainerInstanceKey])\n ) {\n var tag = node.tag;\n if (\n 5 === tag ||\n 6 === tag ||\n 13 === tag ||\n 31 === tag ||\n 26 === tag ||\n 27 === tag ||\n 3 === tag\n )\n return node;\n }\n return null;\n}\nfunction getNodeFromInstance(inst) {\n var tag = inst.tag;\n if (5 === tag || 26 === tag || 27 === tag || 6 === tag) return inst.stateNode;\n throw Error(formatProdErrorMessage(33));\n}\nfunction getResourcesFromRoot(root) {\n var resources = root[internalRootNodeResourcesKey];\n resources ||\n (resources = root[internalRootNodeResourcesKey] =\n { hoistableStyles: new Map(), hoistableScripts: new Map() });\n return resources;\n}\nfunction markNodeAsHoistable(node) {\n node[internalHoistableMarker] = !0;\n}\nvar allNativeEvents = new Set(),\n registrationNameDependencies = {};\nfunction registerTwoPhaseEvent(registrationName, dependencies) {\n registerDirectEvent(registrationName, dependencies);\n registerDirectEvent(registrationName + \"Capture\", dependencies);\n}\nfunction registerDirectEvent(registrationName, dependencies) {\n registrationNameDependencies[registrationName] = dependencies;\n for (\n registrationName = 0;\n registrationName < dependencies.length;\n registrationName++\n )\n allNativeEvents.add(dependencies[registrationName]);\n}\nvar VALID_ATTRIBUTE_NAME_REGEX = RegExp(\n \"^[:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD][:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*$\"\n ),\n illegalAttributeNameCache = {},\n validatedAttributeNameCache = {};\nfunction isAttributeNameSafe(attributeName) {\n if (hasOwnProperty.call(validatedAttributeNameCache, attributeName))\n return !0;\n if (hasOwnProperty.call(illegalAttributeNameCache, attributeName)) return !1;\n if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName))\n return (validatedAttributeNameCache[attributeName] = !0);\n illegalAttributeNameCache[attributeName] = !0;\n return !1;\n}\nvar viewTransitionMutationContext = !1;\nfunction pushMutationContext() {\n var prev = viewTransitionMutationContext;\n viewTransitionMutationContext = !1;\n return prev;\n}\nfunction setValueForAttribute(node, name, value) {\n if (isAttributeNameSafe(name))\n if (null === value) node.removeAttribute(name);\n else {\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n node.removeAttribute(name);\n return;\n case \"boolean\":\n var prefix$10 = name.toLowerCase().slice(0, 5);\n if (\"data-\" !== prefix$10 && \"aria-\" !== prefix$10) {\n node.removeAttribute(name);\n return;\n }\n }\n node.setAttribute(name, \"\" + value);\n }\n}\nfunction setValueForKnownAttribute(node, name, value) {\n if (null === value) node.removeAttribute(name);\n else {\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n node.removeAttribute(name);\n return;\n }\n node.setAttribute(name, \"\" + value);\n }\n}\nfunction setValueForNamespacedAttribute(node, namespace, name, value) {\n if (null === value) node.removeAttribute(name);\n else {\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n node.removeAttribute(name);\n return;\n }\n node.setAttributeNS(namespace, name, \"\" + value);\n }\n}\nfunction getToStringValue(value) {\n switch (typeof value) {\n case \"bigint\":\n case \"boolean\":\n case \"number\":\n case \"string\":\n case \"undefined\":\n return value;\n case \"object\":\n return value;\n default:\n return \"\";\n }\n}\nfunction isCheckable(elem) {\n var type = elem.type;\n return (\n (elem = elem.nodeName) &&\n \"input\" === elem.toLowerCase() &&\n (\"checkbox\" === type || \"radio\" === type)\n );\n}\nfunction trackValueOnNode(node, valueField, currentValue) {\n var descriptor = Object.getOwnPropertyDescriptor(\n node.constructor.prototype,\n valueField\n );\n if (\n !node.hasOwnProperty(valueField) &&\n \"undefined\" !== typeof descriptor &&\n \"function\" === typeof descriptor.get &&\n \"function\" === typeof descriptor.set\n ) {\n var get = descriptor.get,\n set = descriptor.set;\n Object.defineProperty(node, valueField, {\n configurable: !0,\n get: function () {\n return get.call(this);\n },\n set: function (value) {\n currentValue = \"\" + value;\n set.call(this, value);\n }\n });\n Object.defineProperty(node, valueField, {\n enumerable: descriptor.enumerable\n });\n return {\n getValue: function () {\n return currentValue;\n },\n setValue: function (value) {\n currentValue = \"\" + value;\n },\n stopTracking: function () {\n node._valueTracker = null;\n delete node[valueField];\n }\n };\n }\n}\nfunction track(node) {\n if (!node._valueTracker) {\n var valueField = isCheckable(node) ? \"checked\" : \"value\";\n node._valueTracker = trackValueOnNode(\n node,\n valueField,\n \"\" + node[valueField]\n );\n }\n}\nfunction updateValueIfChanged(node) {\n if (!node) return !1;\n var tracker = node._valueTracker;\n if (!tracker) return !0;\n var lastValue = tracker.getValue();\n var value = \"\";\n node &&\n (value = isCheckable(node)\n ? node.checked\n ? \"true\"\n : \"false\"\n : node.value);\n node = value;\n return node !== lastValue ? (tracker.setValue(node), !0) : !1;\n}\nfunction getActiveElement(doc) {\n doc = doc || (\"undefined\" !== typeof document ? document : void 0);\n if (\"undefined\" === typeof doc) return null;\n try {\n return doc.activeElement || doc.body;\n } catch (e) {\n return doc.body;\n }\n}\nvar escapeSelectorAttributeValueInsideDoubleQuotesRegex = /[\\n\"\\\\]/g;\nfunction escapeSelectorAttributeValueInsideDoubleQuotes(value) {\n return value.replace(\n escapeSelectorAttributeValueInsideDoubleQuotesRegex,\n function (ch) {\n return \"\\\\\" + ch.charCodeAt(0).toString(16) + \" \";\n }\n );\n}\nfunction updateInput(\n element,\n value,\n defaultValue,\n lastDefaultValue,\n checked,\n defaultChecked,\n type,\n name\n) {\n element.name = \"\";\n null != type &&\n \"function\" !== typeof type &&\n \"symbol\" !== typeof type &&\n \"boolean\" !== typeof type\n ? (element.type = type)\n : element.removeAttribute(\"type\");\n if (null != value)\n if (\"number\" === type) {\n if ((0 === value && \"\" === element.value) || element.value != value)\n element.value = \"\" + getToStringValue(value);\n } else\n element.value !== \"\" + getToStringValue(value) &&\n (element.value = \"\" + getToStringValue(value));\n else\n (\"submit\" !== type && \"reset\" !== type) || element.removeAttribute(\"value\");\n null != value\n ? setDefaultValue(element, type, getToStringValue(value))\n : null != defaultValue\n ? setDefaultValue(element, type, getToStringValue(defaultValue))\n : null != lastDefaultValue && element.removeAttribute(\"value\");\n null == checked &&\n null != defaultChecked &&\n (element.defaultChecked = !!defaultChecked);\n null != checked &&\n (element.checked =\n checked && \"function\" !== typeof checked && \"symbol\" !== typeof checked);\n null != name &&\n \"function\" !== typeof name &&\n \"symbol\" !== typeof name &&\n \"boolean\" !== typeof name\n ? (element.name = \"\" + getToStringValue(name))\n : element.removeAttribute(\"name\");\n}\nfunction initInput(\n element,\n value,\n defaultValue,\n checked,\n defaultChecked,\n type,\n name,\n isHydrating\n) {\n null != type &&\n \"function\" !== typeof type &&\n \"symbol\" !== typeof type &&\n \"boolean\" !== typeof type &&\n (element.type = type);\n if (null != value || null != defaultValue) {\n if (\n !(\n (\"submit\" !== type && \"reset\" !== type) ||\n (void 0 !== value && null !== value)\n )\n ) {\n track(element);\n return;\n }\n defaultValue =\n null != defaultValue ? \"\" + getToStringValue(defaultValue) : \"\";\n value = null != value ? \"\" + getToStringValue(value) : defaultValue;\n isHydrating || value === element.value || (element.value = value);\n element.defaultValue = value;\n }\n checked = null != checked ? checked : defaultChecked;\n checked =\n \"function\" !== typeof checked && \"symbol\" !== typeof checked && !!checked;\n element.checked = isHydrating ? element.checked : !!checked;\n element.defaultChecked = !!checked;\n null != name &&\n \"function\" !== typeof name &&\n \"symbol\" !== typeof name &&\n \"boolean\" !== typeof name &&\n (element.name = name);\n track(element);\n}\nfunction setDefaultValue(node, type, value) {\n (\"number\" === type && getActiveElement(node.ownerDocument) === node) ||\n node.defaultValue === \"\" + value ||\n (node.defaultValue = \"\" + value);\n}\nfunction updateOptions(node, multiple, propValue, setDefaultSelected) {\n node = node.options;\n if (multiple) {\n multiple = {};\n for (var i = 0; i < propValue.length; i++)\n multiple[\"$\" + propValue[i]] = !0;\n for (propValue = 0; propValue < node.length; propValue++)\n (i = multiple.hasOwnProperty(\"$\" + node[propValue].value)),\n node[propValue].selected !== i && (node[propValue].selected = i),\n i && setDefaultSelected && (node[propValue].defaultSelected = !0);\n } else {\n propValue = \"\" + getToStringValue(propValue);\n multiple = null;\n for (i = 0; i < node.length; i++) {\n if (node[i].value === propValue) {\n node[i].selected = !0;\n setDefaultSelected && (node[i].defaultSelected = !0);\n return;\n }\n null !== multiple || node[i].disabled || (multiple = node[i]);\n }\n null !== multiple && (multiple.selected = !0);\n }\n}\nfunction updateTextarea(element, value, defaultValue) {\n if (\n null != value &&\n ((value = \"\" + getToStringValue(value)),\n value !== element.value && (element.value = value),\n null == defaultValue)\n ) {\n element.defaultValue !== value && (element.defaultValue = value);\n return;\n }\n element.defaultValue =\n null != defaultValue ? \"\" + getToStringValue(defaultValue) : \"\";\n}\nfunction initTextarea(element, value, defaultValue, children) {\n if (null == value) {\n if (null != children) {\n if (null != defaultValue) throw Error(formatProdErrorMessage(92));\n if (isArrayImpl(children)) {\n if (1 < children.length) throw Error(formatProdErrorMessage(93));\n children = children[0];\n }\n defaultValue = children;\n }\n null == defaultValue && (defaultValue = \"\");\n value = defaultValue;\n }\n defaultValue = getToStringValue(value);\n element.defaultValue = defaultValue;\n children = element.textContent;\n children === defaultValue &&\n \"\" !== children &&\n null !== children &&\n (element.value = children);\n track(element);\n}\nfunction setTextContent(node, text) {\n if (text) {\n var firstChild = node.firstChild;\n if (\n firstChild &&\n firstChild === node.lastChild &&\n 3 === firstChild.nodeType\n ) {\n firstChild.nodeValue = text;\n return;\n }\n }\n node.textContent = text;\n}\nvar unitlessNumbers = new Set(\n \"animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp\".split(\n \" \"\n )\n);\nfunction setValueForStyle(style, styleName, value) {\n var isCustomProperty = 0 === styleName.indexOf(\"--\");\n null == value || \"boolean\" === typeof value || \"\" === value\n ? isCustomProperty\n ? style.setProperty(styleName, \"\")\n : \"float\" === styleName\n ? (style.cssFloat = \"\")\n : (style[styleName] = \"\")\n : isCustomProperty\n ? style.setProperty(styleName, value)\n : \"number\" !== typeof value ||\n 0 === value ||\n unitlessNumbers.has(styleName)\n ? \"float\" === styleName\n ? (style.cssFloat = value)\n : (style[styleName] = (\"\" + value).trim())\n : (style[styleName] = value + \"px\");\n}\nfunction setValueForStyles(node, styles, prevStyles) {\n if (null != styles && \"object\" !== typeof styles)\n throw Error(formatProdErrorMessage(62));\n node = node.style;\n if (null != prevStyles) {\n for (var styleName in prevStyles)\n !prevStyles.hasOwnProperty(styleName) ||\n (null != styles && styles.hasOwnProperty(styleName)) ||\n (0 === styleName.indexOf(\"--\")\n ? node.setProperty(styleName, \"\")\n : \"float\" === styleName\n ? (node.cssFloat = \"\")\n : (node[styleName] = \"\"),\n (viewTransitionMutationContext = !0));\n for (var styleName$16 in styles)\n (styleName = styles[styleName$16]),\n styles.hasOwnProperty(styleName$16) &&\n prevStyles[styleName$16] !== styleName &&\n (setValueForStyle(node, styleName$16, styleName),\n (viewTransitionMutationContext = !0));\n } else\n for (var styleName$17 in styles)\n styles.hasOwnProperty(styleName$17) &&\n setValueForStyle(node, styleName$17, styles[styleName$17]);\n}\nfunction isCustomElement(tagName) {\n if (-1 === tagName.indexOf(\"-\")) return !1;\n switch (tagName) {\n case \"annotation-xml\":\n case \"color-profile\":\n case \"font-face\":\n case \"font-face-src\":\n case \"font-face-uri\":\n case \"font-face-format\":\n case \"font-face-name\":\n case \"missing-glyph\":\n return !1;\n default:\n return !0;\n }\n}\nvar aliases = new Map([\n [\"acceptCharset\", \"accept-charset\"],\n [\"htmlFor\", \"for\"],\n [\"httpEquiv\", \"http-equiv\"],\n [\"crossOrigin\", \"crossorigin\"],\n [\"accentHeight\", \"accent-height\"],\n [\"alignmentBaseline\", \"alignment-baseline\"],\n [\"arabicForm\", \"arabic-form\"],\n [\"baselineShift\", \"baseline-shift\"],\n [\"capHeight\", \"cap-height\"],\n [\"clipPath\", \"clip-path\"],\n [\"clipRule\", \"clip-rule\"],\n [\"colorInterpolation\", \"color-interpolation\"],\n [\"colorInterpolationFilters\", \"color-interpolation-filters\"],\n [\"colorProfile\", \"color-profile\"],\n [\"colorRendering\", \"color-rendering\"],\n [\"dominantBaseline\", \"dominant-baseline\"],\n [\"enableBackground\", \"enable-background\"],\n [\"fillOpacity\", \"fill-opacity\"],\n [\"fillRule\", \"fill-rule\"],\n [\"floodColor\", \"flood-color\"],\n [\"floodOpacity\", \"flood-opacity\"],\n [\"fontFamily\", \"font-family\"],\n [\"fontSize\", \"font-size\"],\n [\"fontSizeAdjust\", \"font-size-adjust\"],\n [\"fontStretch\", \"font-stretch\"],\n [\"fontStyle\", \"font-style\"],\n [\"fontVariant\", \"font-variant\"],\n [\"fontWeight\", \"font-weight\"],\n [\"glyphName\", \"glyph-name\"],\n [\"glyphOrientationHorizontal\", \"glyph-orientation-horizontal\"],\n [\"glyphOrientationVertical\", \"glyph-orientation-vertical\"],\n [\"horizAdvX\", \"horiz-adv-x\"],\n [\"horizOriginX\", \"horiz-origin-x\"],\n [\"imageRendering\", \"image-rendering\"],\n [\"letterSpacing\", \"letter-spacing\"],\n [\"lightingColor\", \"lighting-color\"],\n [\"markerEnd\", \"marker-end\"],\n [\"markerMid\", \"marker-mid\"],\n [\"markerStart\", \"marker-start\"],\n [\"overlinePosition\", \"overline-position\"],\n [\"overlineThickness\", \"overline-thickness\"],\n [\"paintOrder\", \"paint-order\"],\n [\"panose-1\", \"panose-1\"],\n [\"pointerEvents\", \"pointer-events\"],\n [\"renderingIntent\", \"rendering-intent\"],\n [\"shapeRendering\", \"shape-rendering\"],\n [\"stopColor\", \"stop-color\"],\n [\"stopOpacity\", \"stop-opacity\"],\n [\"strikethroughPosition\", \"strikethrough-position\"],\n [\"strikethroughThickness\", \"strikethrough-thickness\"],\n [\"strokeDasharray\", \"stroke-dasharray\"],\n [\"strokeDashoffset\", \"stroke-dashoffset\"],\n [\"strokeLinecap\", \"stroke-linecap\"],\n [\"strokeLinejoin\", \"stroke-linejoin\"],\n [\"strokeMiterlimit\", \"stroke-miterlimit\"],\n [\"strokeOpacity\", \"stroke-opacity\"],\n [\"strokeWidth\", \"stroke-width\"],\n [\"textAnchor\", \"text-anchor\"],\n [\"textDecoration\", \"text-decoration\"],\n [\"textRendering\", \"text-rendering\"],\n [\"transformOrigin\", \"transform-origin\"],\n [\"underlinePosition\", \"underline-position\"],\n [\"underlineThickness\", \"underline-thickness\"],\n [\"unicodeBidi\", \"unicode-bidi\"],\n [\"unicodeRange\", \"unicode-range\"],\n [\"unitsPerEm\", \"units-per-em\"],\n [\"vAlphabetic\", \"v-alphabetic\"],\n [\"vHanging\", \"v-hanging\"],\n [\"vIdeographic\", \"v-ideographic\"],\n [\"vMathematical\", \"v-mathematical\"],\n [\"vectorEffect\", \"vector-effect\"],\n [\"vertAdvY\", \"vert-adv-y\"],\n [\"vertOriginX\", \"vert-origin-x\"],\n [\"vertOriginY\", \"vert-origin-y\"],\n [\"wordSpacing\", \"word-spacing\"],\n [\"writingMode\", \"writing-mode\"],\n [\"xmlnsXlink\", \"xmlns:xlink\"],\n [\"xHeight\", \"x-height\"]\n ]),\n isJavaScriptProtocol =\n /^[\\u0000-\\u001F ]*j[\\r\\n\\t]*a[\\r\\n\\t]*v[\\r\\n\\t]*a[\\r\\n\\t]*s[\\r\\n\\t]*c[\\r\\n\\t]*r[\\r\\n\\t]*i[\\r\\n\\t]*p[\\r\\n\\t]*t[\\r\\n\\t]*:/i;\nfunction sanitizeURL(url) {\n return isJavaScriptProtocol.test(\"\" + url)\n ? \"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')\"\n : url;\n}\nfunction noop$1() {}\nvar currentReplayingEvent = null;\nfunction getEventTarget(nativeEvent) {\n nativeEvent = nativeEvent.target || nativeEvent.srcElement || window;\n nativeEvent.correspondingUseElement &&\n (nativeEvent = nativeEvent.correspondingUseElement);\n return 3 === nativeEvent.nodeType ? nativeEvent.parentNode : nativeEvent;\n}\nvar restoreTarget = null,\n restoreQueue = null;\nfunction restoreStateOfTarget(target) {\n var internalInstance = getInstanceFromNode(target);\n if (internalInstance && (target = internalInstance.stateNode)) {\n var props = target[internalPropsKey] || null;\n a: switch (((target = internalInstance.stateNode), internalInstance.type)) {\n case \"input\":\n updateInput(\n target,\n props.value,\n props.defaultValue,\n props.defaultValue,\n props.checked,\n props.defaultChecked,\n props.type,\n props.name\n );\n internalInstance = props.name;\n if (\"radio\" === props.type && null != internalInstance) {\n for (props = target; props.parentNode; ) props = props.parentNode;\n props = props.querySelectorAll(\n 'input[name=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(\n \"\" + internalInstance\n ) +\n '\"][type=\"radio\"]'\n );\n for (\n internalInstance = 0;\n internalInstance < props.length;\n internalInstance++\n ) {\n var otherNode = props[internalInstance];\n if (otherNode !== target && otherNode.form === target.form) {\n var otherProps = otherNode[internalPropsKey] || null;\n if (!otherProps) throw Error(formatProdErrorMessage(90));\n updateInput(\n otherNode,\n otherProps.value,\n otherProps.defaultValue,\n otherProps.defaultValue,\n otherProps.checked,\n otherProps.defaultChecked,\n otherProps.type,\n otherProps.name\n );\n }\n }\n for (\n internalInstance = 0;\n internalInstance < props.length;\n internalInstance++\n )\n (otherNode = props[internalInstance]),\n otherNode.form === target.form && updateValueIfChanged(otherNode);\n }\n break a;\n case \"textarea\":\n updateTextarea(target, props.value, props.defaultValue);\n break a;\n case \"select\":\n (internalInstance = props.value),\n null != internalInstance &&\n updateOptions(target, !!props.multiple, internalInstance, !1);\n }\n }\n}\nvar isInsideEventHandler = !1;\nfunction batchedUpdates$1(fn, a, b) {\n if (isInsideEventHandler) return fn(a, b);\n isInsideEventHandler = !0;\n try {\n var JSCompiler_inline_result = fn(a);\n return JSCompiler_inline_result;\n } finally {\n if (\n ((isInsideEventHandler = !1),\n null !== restoreTarget || null !== restoreQueue)\n )\n if (\n (flushSyncWork$1(),\n restoreTarget &&\n ((a = restoreTarget),\n (fn = restoreQueue),\n (restoreQueue = restoreTarget = null),\n restoreStateOfTarget(a),\n fn))\n )\n for (a = 0; a < fn.length; a++) restoreStateOfTarget(fn[a]);\n }\n}\nfunction getListener(inst, registrationName) {\n var stateNode = inst.stateNode;\n if (null === stateNode) return null;\n var props = stateNode[internalPropsKey] || null;\n if (null === props) return null;\n stateNode = props[registrationName];\n a: switch (registrationName) {\n case \"onClick\":\n case \"onClickCapture\":\n case \"onDoubleClick\":\n case \"onDoubleClickCapture\":\n case \"onMouseDown\":\n case \"onMouseDownCapture\":\n case \"onMouseMove\":\n case \"onMouseMoveCapture\":\n case \"onMouseUp\":\n case \"onMouseUpCapture\":\n case \"onMouseEnter\":\n (props = !props.disabled) ||\n ((inst = inst.type),\n (props = !(\n \"button\" === inst ||\n \"input\" === inst ||\n \"select\" === inst ||\n \"textarea\" === inst\n )));\n inst = !props;\n break a;\n default:\n inst = !1;\n }\n if (inst) return null;\n if (stateNode && \"function\" !== typeof stateNode)\n throw Error(\n formatProdErrorMessage(231, registrationName, typeof stateNode)\n );\n return stateNode;\n}\nvar canUseDOM = !(\n \"undefined\" === typeof window ||\n \"undefined\" === typeof window.document ||\n \"undefined\" === typeof window.document.createElement\n ),\n passiveBrowserEventsSupported = !1;\nif (canUseDOM)\n try {\n var options = {};\n Object.defineProperty(options, \"passive\", {\n get: function () {\n passiveBrowserEventsSupported = !0;\n }\n });\n window.addEventListener(\"test\", options, options);\n window.removeEventListener(\"test\", options, options);\n } catch (e) {\n passiveBrowserEventsSupported = !1;\n }\nvar root = null,\n startText = null,\n fallbackText = null;\nfunction getData() {\n if (fallbackText) return fallbackText;\n var start,\n startValue = startText,\n startLength = startValue.length,\n end,\n endValue = \"value\" in root ? root.value : root.textContent,\n endLength = endValue.length;\n for (\n start = 0;\n start < startLength && startValue[start] === endValue[start];\n start++\n );\n var minEnd = startLength - start;\n for (\n end = 1;\n end <= minEnd &&\n startValue[startLength - end] === endValue[endLength - end];\n end++\n );\n return (fallbackText = endValue.slice(start, 1 < end ? 1 - end : void 0));\n}\nfunction getEventCharCode(nativeEvent) {\n var keyCode = nativeEvent.keyCode;\n \"charCode\" in nativeEvent\n ? ((nativeEvent = nativeEvent.charCode),\n 0 === nativeEvent && 13 === keyCode && (nativeEvent = 13))\n : (nativeEvent = keyCode);\n 10 === nativeEvent && (nativeEvent = 13);\n return 32 <= nativeEvent || 13 === nativeEvent ? nativeEvent : 0;\n}\nfunction functionThatReturnsTrue() {\n return !0;\n}\nfunction functionThatReturnsFalse() {\n return !1;\n}\nfunction createSyntheticEvent(Interface) {\n function SyntheticBaseEvent(\n reactName,\n reactEventType,\n targetInst,\n nativeEvent,\n nativeEventTarget\n ) {\n this._reactName = reactName;\n this._targetInst = targetInst;\n this.type = reactEventType;\n this.nativeEvent = nativeEvent;\n this.target = nativeEventTarget;\n this.currentTarget = null;\n for (var propName in Interface)\n Interface.hasOwnProperty(propName) &&\n ((reactName = Interface[propName]),\n (this[propName] = reactName\n ? reactName(nativeEvent)\n : nativeEvent[propName]));\n this.isDefaultPrevented = (\n null != nativeEvent.defaultPrevented\n ? nativeEvent.defaultPrevented\n : !1 === nativeEvent.returnValue\n )\n ? functionThatReturnsTrue\n : functionThatReturnsFalse;\n this.isPropagationStopped = functionThatReturnsFalse;\n return this;\n }\n assign(SyntheticBaseEvent.prototype, {\n preventDefault: function () {\n this.defaultPrevented = !0;\n var event = this.nativeEvent;\n event &&\n (event.preventDefault\n ? event.preventDefault()\n : \"unknown\" !== typeof event.returnValue && (event.returnValue = !1),\n (this.isDefaultPrevented = functionThatReturnsTrue));\n },\n stopPropagation: function () {\n var event = this.nativeEvent;\n event &&\n (event.stopPropagation\n ? event.stopPropagation()\n : \"unknown\" !== typeof event.cancelBubble &&\n (event.cancelBubble = !0),\n (this.isPropagationStopped = functionThatReturnsTrue));\n },\n persist: function () {},\n isPersistent: functionThatReturnsTrue\n });\n return SyntheticBaseEvent;\n}\nvar EventInterface = {\n eventPhase: 0,\n bubbles: 0,\n cancelable: 0,\n timeStamp: function (event) {\n return event.timeStamp || Date.now();\n },\n defaultPrevented: 0,\n isTrusted: 0\n },\n SyntheticEvent = createSyntheticEvent(EventInterface),\n UIEventInterface = assign({}, EventInterface, { view: 0, detail: 0 }),\n SyntheticUIEvent = createSyntheticEvent(UIEventInterface),\n lastMovementX,\n lastMovementY,\n lastMouseEvent,\n MouseEventInterface = assign({}, UIEventInterface, {\n screenX: 0,\n screenY: 0,\n clientX: 0,\n clientY: 0,\n pageX: 0,\n pageY: 0,\n ctrlKey: 0,\n shiftKey: 0,\n altKey: 0,\n metaKey: 0,\n getModifierState: getEventModifierState,\n button: 0,\n buttons: 0,\n relatedTarget: function (event) {\n return void 0 === event.relatedTarget\n ? event.fromElement === event.srcElement\n ? event.toElement\n : event.fromElement\n : event.relatedTarget;\n },\n movementX: function (event) {\n if (\"movementX\" in event) return event.movementX;\n event !== lastMouseEvent &&\n (lastMouseEvent && \"mousemove\" === event.type\n ? ((lastMovementX = event.screenX - lastMouseEvent.screenX),\n (lastMovementY = event.screenY - lastMouseEvent.screenY))\n : (lastMovementY = lastMovementX = 0),\n (lastMouseEvent = event));\n return lastMovementX;\n },\n movementY: function (event) {\n return \"movementY\" in event ? event.movementY : lastMovementY;\n }\n }),\n SyntheticMouseEvent = createSyntheticEvent(MouseEventInterface),\n DragEventInterface = assign({}, MouseEventInterface, { dataTransfer: 0 }),\n SyntheticDragEvent = createSyntheticEvent(DragEventInterface),\n FocusEventInterface = assign({}, UIEventInterface, { relatedTarget: 0 }),\n SyntheticFocusEvent = createSyntheticEvent(FocusEventInterface),\n AnimationEventInterface = assign({}, EventInterface, {\n animationName: 0,\n elapsedTime: 0,\n pseudoElement: 0\n }),\n SyntheticAnimationEvent = createSyntheticEvent(AnimationEventInterface),\n ClipboardEventInterface = assign({}, EventInterface, {\n clipboardData: function (event) {\n return \"clipboardData\" in event\n ? event.clipboardData\n : window.clipboardData;\n }\n }),\n SyntheticClipboardEvent = createSyntheticEvent(ClipboardEventInterface),\n CompositionEventInterface = assign({}, EventInterface, { data: 0 }),\n SyntheticCompositionEvent = createSyntheticEvent(CompositionEventInterface),\n normalizeKey = {\n Esc: \"Escape\",\n Spacebar: \" \",\n Left: \"ArrowLeft\",\n Up: \"ArrowUp\",\n Right: \"ArrowRight\",\n Down: \"ArrowDown\",\n Del: \"Delete\",\n Win: \"OS\",\n Menu: \"ContextMenu\",\n Apps: \"ContextMenu\",\n Scroll: \"ScrollLock\",\n MozPrintableKey: \"Unidentified\"\n },\n translateToKey = {\n 8: \"Backspace\",\n 9: \"Tab\",\n 12: \"Clear\",\n 13: \"Enter\",\n 16: \"Shift\",\n 17: \"Control\",\n 18: \"Alt\",\n 19: \"Pause\",\n 20: \"CapsLock\",\n 27: \"Escape\",\n 32: \" \",\n 33: \"PageUp\",\n 34: \"PageDown\",\n 35: \"End\",\n 36: \"Home\",\n 37: \"ArrowLeft\",\n 38: \"ArrowUp\",\n 39: \"ArrowRight\",\n 40: \"ArrowDown\",\n 45: \"Insert\",\n 46: \"Delete\",\n 112: \"F1\",\n 113: \"F2\",\n 114: \"F3\",\n 115: \"F4\",\n 116: \"F5\",\n 117: \"F6\",\n 118: \"F7\",\n 119: \"F8\",\n 120: \"F9\",\n 121: \"F10\",\n 122: \"F11\",\n 123: \"F12\",\n 144: \"NumLock\",\n 145: \"ScrollLock\",\n 224: \"Meta\"\n },\n modifierKeyToProp = {\n Alt: \"altKey\",\n Control: \"ctrlKey\",\n Meta: \"metaKey\",\n Shift: \"shiftKey\"\n };\nfunction modifierStateGetter(keyArg) {\n var nativeEvent = this.nativeEvent;\n return nativeEvent.getModifierState\n ? nativeEvent.getModifierState(keyArg)\n : (keyArg = modifierKeyToProp[keyArg])\n ? !!nativeEvent[keyArg]\n : !1;\n}\nfunction getEventModifierState() {\n return modifierStateGetter;\n}\nvar KeyboardEventInterface = assign({}, UIEventInterface, {\n key: function (nativeEvent) {\n if (nativeEvent.key) {\n var key = normalizeKey[nativeEvent.key] || nativeEvent.key;\n if (\"Unidentified\" !== key) return key;\n }\n return \"keypress\" === nativeEvent.type\n ? ((nativeEvent = getEventCharCode(nativeEvent)),\n 13 === nativeEvent ? \"Enter\" : String.fromCharCode(nativeEvent))\n : \"keydown\" === nativeEvent.type || \"keyup\" === nativeEvent.type\n ? translateToKey[nativeEvent.keyCode] || \"Unidentified\"\n : \"\";\n },\n code: 0,\n location: 0,\n ctrlKey: 0,\n shiftKey: 0,\n altKey: 0,\n metaKey: 0,\n repeat: 0,\n locale: 0,\n getModifierState: getEventModifierState,\n charCode: function (event) {\n return \"keypress\" === event.type ? getEventCharCode(event) : 0;\n },\n keyCode: function (event) {\n return \"keydown\" === event.type || \"keyup\" === event.type\n ? event.keyCode\n : 0;\n },\n which: function (event) {\n return \"keypress\" === event.type\n ? getEventCharCode(event)\n : \"keydown\" === event.type || \"keyup\" === event.type\n ? event.keyCode\n : 0;\n }\n }),\n SyntheticKeyboardEvent = createSyntheticEvent(KeyboardEventInterface),\n PointerEventInterface = assign({}, MouseEventInterface, {\n pointerId: 0,\n width: 0,\n height: 0,\n pressure: 0,\n tangentialPressure: 0,\n tiltX: 0,\n tiltY: 0,\n twist: 0,\n pointerType: 0,\n isPrimary: 0\n }),\n SyntheticPointerEvent = createSyntheticEvent(PointerEventInterface),\n TouchEventInterface = assign({}, UIEventInterface, {\n touches: 0,\n targetTouches: 0,\n changedTouches: 0,\n altKey: 0,\n metaKey: 0,\n ctrlKey: 0,\n shiftKey: 0,\n getModifierState: getEventModifierState\n }),\n SyntheticTouchEvent = createSyntheticEvent(TouchEventInterface),\n TransitionEventInterface = assign({}, EventInterface, {\n propertyName: 0,\n elapsedTime: 0,\n pseudoElement: 0\n }),\n SyntheticTransitionEvent = createSyntheticEvent(TransitionEventInterface),\n WheelEventInterface = assign({}, MouseEventInterface, {\n deltaX: function (event) {\n return \"deltaX\" in event\n ? event.deltaX\n : \"wheelDeltaX\" in event\n ? -event.wheelDeltaX\n : 0;\n },\n deltaY: function (event) {\n return \"deltaY\" in event\n ? event.deltaY\n : \"wheelDeltaY\" in event\n ? -event.wheelDeltaY\n : \"wheelDelta\" in event\n ? -event.wheelDelta\n : 0;\n },\n deltaZ: 0,\n deltaMode: 0\n }),\n SyntheticWheelEvent = createSyntheticEvent(WheelEventInterface),\n ToggleEventInterface = assign({}, EventInterface, {\n newState: 0,\n oldState: 0\n }),\n SyntheticToggleEvent = createSyntheticEvent(ToggleEventInterface),\n END_KEYCODES = [9, 13, 27, 32],\n canUseCompositionEvent = canUseDOM && \"CompositionEvent\" in window,\n documentMode = null;\ncanUseDOM &&\n \"documentMode\" in document &&\n (documentMode = document.documentMode);\nvar canUseTextInputEvent = canUseDOM && \"TextEvent\" in window && !documentMode,\n useFallbackCompositionData =\n canUseDOM &&\n (!canUseCompositionEvent ||\n (documentMode && 8 < documentMode && 11 >= documentMode)),\n SPACEBAR_CHAR = String.fromCharCode(32),\n hasSpaceKeypress = !1;\nfunction isFallbackCompositionEnd(domEventName, nativeEvent) {\n switch (domEventName) {\n case \"keyup\":\n return -1 !== END_KEYCODES.indexOf(nativeEvent.keyCode);\n case \"keydown\":\n return 229 !== nativeEvent.keyCode;\n case \"keypress\":\n case \"mousedown\":\n case \"focusout\":\n return !0;\n default:\n return !1;\n }\n}\nfunction getDataFromCustomEvent(nativeEvent) {\n nativeEvent = nativeEvent.detail;\n return \"object\" === typeof nativeEvent && \"data\" in nativeEvent\n ? nativeEvent.data\n : null;\n}\nvar isComposing = !1;\nfunction getNativeBeforeInputChars(domEventName, nativeEvent) {\n switch (domEventName) {\n case \"compositionend\":\n return getDataFromCustomEvent(nativeEvent);\n case \"keypress\":\n if (32 !== nativeEvent.which) return null;\n hasSpaceKeypress = !0;\n return SPACEBAR_CHAR;\n case \"textInput\":\n return (\n (domEventName = nativeEvent.data),\n domEventName === SPACEBAR_CHAR && hasSpaceKeypress ? null : domEventName\n );\n default:\n return null;\n }\n}\nfunction getFallbackBeforeInputChars(domEventName, nativeEvent) {\n if (isComposing)\n return \"compositionend\" === domEventName ||\n (!canUseCompositionEvent &&\n isFallbackCompositionEnd(domEventName, nativeEvent))\n ? ((domEventName = getData()),\n (fallbackText = startText = root = null),\n (isComposing = !1),\n domEventName)\n : null;\n switch (domEventName) {\n case \"paste\":\n return null;\n case \"keypress\":\n if (\n !(nativeEvent.ctrlKey || nativeEvent.altKey || nativeEvent.metaKey) ||\n (nativeEvent.ctrlKey && nativeEvent.altKey)\n ) {\n if (nativeEvent.char && 1 < nativeEvent.char.length)\n return nativeEvent.char;\n if (nativeEvent.which) return String.fromCharCode(nativeEvent.which);\n }\n return null;\n case \"compositionend\":\n return useFallbackCompositionData && \"ko\" !== nativeEvent.locale\n ? null\n : nativeEvent.data;\n default:\n return null;\n }\n}\nvar supportedInputTypes = {\n color: !0,\n date: !0,\n datetime: !0,\n \"datetime-local\": !0,\n email: !0,\n month: !0,\n number: !0,\n password: !0,\n range: !0,\n search: !0,\n tel: !0,\n text: !0,\n time: !0,\n url: !0,\n week: !0\n};\nfunction isTextInputElement(elem) {\n var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n return \"input\" === nodeName\n ? !!supportedInputTypes[elem.type]\n : \"textarea\" === nodeName\n ? !0\n : !1;\n}\nfunction createAndAccumulateChangeEvent(\n dispatchQueue,\n inst,\n nativeEvent,\n target\n) {\n restoreTarget\n ? restoreQueue\n ? restoreQueue.push(target)\n : (restoreQueue = [target])\n : (restoreTarget = target);\n inst = accumulateTwoPhaseListeners(inst, \"onChange\");\n 0 < inst.length &&\n ((nativeEvent = new SyntheticEvent(\n \"onChange\",\n \"change\",\n null,\n nativeEvent,\n target\n )),\n dispatchQueue.push({ event: nativeEvent, listeners: inst }));\n}\nvar activeElement$1 = null,\n activeElementInst$1 = null;\nfunction runEventInBatch(dispatchQueue) {\n processDispatchQueue(dispatchQueue, 0);\n}\nfunction getInstIfValueChanged(targetInst) {\n var targetNode = getNodeFromInstance(targetInst);\n if (updateValueIfChanged(targetNode)) return targetInst;\n}\nfunction getTargetInstForChangeEvent(domEventName, targetInst) {\n if (\"change\" === domEventName) return targetInst;\n}\nvar isInputEventSupported = !1;\nif (canUseDOM) {\n var JSCompiler_inline_result$jscomp$312;\n if (canUseDOM) {\n var isSupported$jscomp$inline_473 = \"oninput\" in document;\n if (!isSupported$jscomp$inline_473) {\n var element$jscomp$inline_474 = document.createElement(\"div\");\n element$jscomp$inline_474.setAttribute(\"oninput\", \"return;\");\n isSupported$jscomp$inline_473 =\n \"function\" === typeof element$jscomp$inline_474.oninput;\n }\n JSCompiler_inline_result$jscomp$312 = isSupported$jscomp$inline_473;\n } else JSCompiler_inline_result$jscomp$312 = !1;\n isInputEventSupported =\n JSCompiler_inline_result$jscomp$312 &&\n (!document.documentMode || 9 < document.documentMode);\n}\nfunction stopWatchingForValueChange() {\n activeElement$1 &&\n (activeElement$1.detachEvent(\"onpropertychange\", handlePropertyChange),\n (activeElementInst$1 = activeElement$1 = null));\n}\nfunction handlePropertyChange(nativeEvent) {\n if (\n \"value\" === nativeEvent.propertyName &&\n getInstIfValueChanged(activeElementInst$1)\n ) {\n var dispatchQueue = [];\n createAndAccumulateChangeEvent(\n dispatchQueue,\n activeElementInst$1,\n nativeEvent,\n getEventTarget(nativeEvent)\n );\n batchedUpdates$1(runEventInBatch, dispatchQueue);\n }\n}\nfunction handleEventsForInputEventPolyfill(domEventName, target, targetInst) {\n \"focusin\" === domEventName\n ? (stopWatchingForValueChange(),\n (activeElement$1 = target),\n (activeElementInst$1 = targetInst),\n activeElement$1.attachEvent(\"onpropertychange\", handlePropertyChange))\n : \"focusout\" === domEventName && stopWatchingForValueChange();\n}\nfunction getTargetInstForInputEventPolyfill(domEventName) {\n if (\n \"selectionchange\" === domEventName ||\n \"keyup\" === domEventName ||\n \"keydown\" === domEventName\n )\n return getInstIfValueChanged(activeElementInst$1);\n}\nfunction getTargetInstForClickEvent(domEventName, targetInst) {\n if (\"click\" === domEventName) return getInstIfValueChanged(targetInst);\n}\nfunction getTargetInstForInputOrChangeEvent(domEventName, targetInst) {\n if (\"input\" === domEventName || \"change\" === domEventName)\n return getInstIfValueChanged(targetInst);\n}\nfunction is(x, y) {\n return (x === y && (0 !== x || 1 / x === 1 / y)) || (x !== x && y !== y);\n}\nvar objectIs = \"function\" === typeof Object.is ? Object.is : is;\nfunction shallowEqual(objA, objB) {\n if (objectIs(objA, objB)) return !0;\n if (\n \"object\" !== typeof objA ||\n null === objA ||\n \"object\" !== typeof objB ||\n null === objB\n )\n return !1;\n var keysA = Object.keys(objA),\n keysB = Object.keys(objB);\n if (keysA.length !== keysB.length) return !1;\n for (keysB = 0; keysB < keysA.length; keysB++) {\n var currentKey = keysA[keysB];\n if (\n !hasOwnProperty.call(objB, currentKey) ||\n !objectIs(objA[currentKey], objB[currentKey])\n )\n return !1;\n }\n return !0;\n}\nfunction getLeafNode(node) {\n for (; node && node.firstChild; ) node = node.firstChild;\n return node;\n}\nfunction getNodeForCharacterOffset(root, offset) {\n var node = getLeafNode(root);\n root = 0;\n for (var nodeEnd; node; ) {\n if (3 === node.nodeType) {\n nodeEnd = root + node.textContent.length;\n if (root <= offset && nodeEnd >= offset)\n return { node: node, offset: offset - root };\n root = nodeEnd;\n }\n a: {\n for (; node; ) {\n if (node.nextSibling) {\n node = node.nextSibling;\n break a;\n }\n node = node.parentNode;\n }\n node = void 0;\n }\n node = getLeafNode(node);\n }\n}\nfunction containsNode(outerNode, innerNode) {\n return outerNode && innerNode\n ? outerNode === innerNode\n ? !0\n : outerNode && 3 === outerNode.nodeType\n ? !1\n : innerNode && 3 === innerNode.nodeType\n ? containsNode(outerNode, innerNode.parentNode)\n : \"contains\" in outerNode\n ? outerNode.contains(innerNode)\n : outerNode.compareDocumentPosition\n ? !!(outerNode.compareDocumentPosition(innerNode) & 16)\n : !1\n : !1;\n}\nfunction getActiveElementDeep(containerInfo) {\n containerInfo =\n null != containerInfo &&\n null != containerInfo.ownerDocument &&\n null != containerInfo.ownerDocument.defaultView\n ? containerInfo.ownerDocument.defaultView\n : window;\n for (\n var element = getActiveElement(containerInfo.document);\n element instanceof containerInfo.HTMLIFrameElement;\n\n ) {\n try {\n var JSCompiler_inline_result =\n \"string\" === typeof element.contentWindow.location.href;\n } catch (err) {\n JSCompiler_inline_result = !1;\n }\n if (JSCompiler_inline_result) containerInfo = element.contentWindow;\n else break;\n element = getActiveElement(containerInfo.document);\n }\n return element;\n}\nfunction hasSelectionCapabilities(elem) {\n var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n return (\n nodeName &&\n ((\"input\" === nodeName &&\n (\"text\" === elem.type ||\n \"search\" === elem.type ||\n \"tel\" === elem.type ||\n \"url\" === elem.type ||\n \"password\" === elem.type)) ||\n \"textarea\" === nodeName ||\n \"true\" === elem.contentEditable)\n );\n}\nvar skipSelectionChangeEvent =\n canUseDOM && \"documentMode\" in document && 11 >= document.documentMode,\n activeElement = null,\n activeElementInst = null,\n lastSelection = null,\n mouseDown = !1;\nfunction constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget) {\n var doc =\n nativeEventTarget.window === nativeEventTarget\n ? nativeEventTarget.document\n : 9 === nativeEventTarget.nodeType\n ? nativeEventTarget\n : nativeEventTarget.ownerDocument;\n mouseDown ||\n null == activeElement ||\n activeElement !== getActiveElement(doc) ||\n ((doc = activeElement),\n \"selectionStart\" in doc && hasSelectionCapabilities(doc)\n ? (doc = { start: doc.selectionStart, end: doc.selectionEnd })\n : ((doc = (\n (doc.ownerDocument && doc.ownerDocument.defaultView) ||\n window\n ).getSelection()),\n (doc = {\n anchorNode: doc.anchorNode,\n anchorOffset: doc.anchorOffset,\n focusNode: doc.focusNode,\n focusOffset: doc.focusOffset\n })),\n (lastSelection && shallowEqual(lastSelection, doc)) ||\n ((lastSelection = doc),\n (doc = accumulateTwoPhaseListeners(activeElementInst, \"onSelect\")),\n 0 < doc.length &&\n ((nativeEvent = new SyntheticEvent(\n \"onSelect\",\n \"select\",\n null,\n nativeEvent,\n nativeEventTarget\n )),\n dispatchQueue.push({ event: nativeEvent, listeners: doc }),\n (nativeEvent.target = activeElement))));\n}\nfunction makePrefixMap(styleProp, eventName) {\n var prefixes = {};\n prefixes[styleProp.toLowerCase()] = eventName.toLowerCase();\n prefixes[\"Webkit\" + styleProp] = \"webkit\" + eventName;\n prefixes[\"Moz\" + styleProp] = \"moz\" + eventName;\n return prefixes;\n}\nvar vendorPrefixes = {\n animationend: makePrefixMap(\"Animation\", \"AnimationEnd\"),\n animationiteration: makePrefixMap(\"Animation\", \"AnimationIteration\"),\n animationstart: makePrefixMap(\"Animation\", \"AnimationStart\"),\n transitionrun: makePrefixMap(\"Transition\", \"TransitionRun\"),\n transitionstart: makePrefixMap(\"Transition\", \"TransitionStart\"),\n transitioncancel: makePrefixMap(\"Transition\", \"TransitionCancel\"),\n transitionend: makePrefixMap(\"Transition\", \"TransitionEnd\")\n },\n prefixedEventNames = {},\n style = {};\ncanUseDOM &&\n ((style = document.createElement(\"div\").style),\n \"AnimationEvent\" in window ||\n (delete vendorPrefixes.animationend.animation,\n delete vendorPrefixes.animationiteration.animation,\n delete vendorPrefixes.animationstart.animation),\n \"TransitionEvent\" in window ||\n delete vendorPrefixes.transitionend.transition);\nfunction getVendorPrefixedEventName(eventName) {\n if (prefixedEventNames[eventName]) return prefixedEventNames[eventName];\n if (!vendorPrefixes[eventName]) return eventName;\n var prefixMap = vendorPrefixes[eventName],\n styleProp;\n for (styleProp in prefixMap)\n if (prefixMap.hasOwnProperty(styleProp) && styleProp in style)\n return (prefixedEventNames[eventName] = prefixMap[styleProp]);\n return eventName;\n}\nvar ANIMATION_END = getVendorPrefixedEventName(\"animationend\"),\n ANIMATION_ITERATION = getVendorPrefixedEventName(\"animationiteration\"),\n ANIMATION_START = getVendorPrefixedEventName(\"animationstart\"),\n TRANSITION_RUN = getVendorPrefixedEventName(\"transitionrun\"),\n TRANSITION_START = getVendorPrefixedEventName(\"transitionstart\"),\n TRANSITION_CANCEL = getVendorPrefixedEventName(\"transitioncancel\"),\n TRANSITION_END = getVendorPrefixedEventName(\"transitionend\"),\n topLevelEventsToReactNames = new Map(),\n simpleEventPluginEvents =\n \"abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel\".split(\n \" \"\n );\nsimpleEventPluginEvents.push(\"scrollEnd\");\nfunction registerSimpleEvent(domEventName, reactName) {\n topLevelEventsToReactNames.set(domEventName, reactName);\n registerTwoPhaseEvent(reactName, [domEventName]);\n}\nvar globalClientIdCounter$1 = 0;\nfunction getViewTransitionName(props, instance) {\n if (null != props.name && \"auto\" !== props.name) return props.name;\n if (null !== instance.autoName) return instance.autoName;\n props = pendingEffectsRoot.identifierPrefix;\n var globalClientId = globalClientIdCounter$1++;\n props = \"_\" + props + \"t_\" + globalClientId.toString(32) + \"_\";\n return (instance.autoName = props);\n}\nfunction getClassNameByType(classByType) {\n if (null == classByType || \"string\" === typeof classByType)\n return classByType;\n var className = null,\n activeTypes = pendingTransitionTypes;\n if (null !== activeTypes)\n for (var i = 0; i < activeTypes.length; i++) {\n var match = classByType[activeTypes[i]];\n if (null != match) {\n if (\"none\" === match) return \"none\";\n className = null == className ? match : className + (\" \" + match);\n }\n }\n return null == className ? classByType.default : className;\n}\nfunction getViewTransitionClassName(defaultClass, eventClass) {\n defaultClass = getClassNameByType(defaultClass);\n eventClass = getClassNameByType(eventClass);\n return null == eventClass\n ? \"auto\" === defaultClass\n ? null\n : defaultClass\n : \"auto\" === eventClass\n ? null\n : eventClass;\n}\nvar reportGlobalError =\n \"function\" === typeof reportError\n ? reportError\n : function (error) {\n if (\n \"object\" === typeof window &&\n \"function\" === typeof window.ErrorEvent\n ) {\n var event = new window.ErrorEvent(\"error\", {\n bubbles: !0,\n cancelable: !0,\n message:\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error),\n error: error\n });\n if (!window.dispatchEvent(event)) return;\n } else if (\n \"object\" === typeof process &&\n \"function\" === typeof process.emit\n ) {\n process.emit(\"uncaughtException\", error);\n return;\n }\n console.error(error);\n },\n concurrentQueues = [],\n concurrentQueuesIndex = 0,\n concurrentlyUpdatedLanes = 0;\nfunction finishQueueingConcurrentUpdates() {\n for (\n var endIndex = concurrentQueuesIndex,\n i = (concurrentlyUpdatedLanes = concurrentQueuesIndex = 0);\n i < endIndex;\n\n ) {\n var fiber = concurrentQueues[i];\n concurrentQueues[i++] = null;\n var queue = concurrentQueues[i];\n concurrentQueues[i++] = null;\n var update = concurrentQueues[i];\n concurrentQueues[i++] = null;\n var lane = concurrentQueues[i];\n concurrentQueues[i++] = null;\n if (null !== queue && null !== update) {\n var pending = queue.pending;\n null === pending\n ? (update.next = update)\n : ((update.next = pending.next), (pending.next = update));\n queue.pending = update;\n }\n 0 !== lane && markUpdateLaneFromFiberToRoot(fiber, update, lane);\n }\n}\nfunction enqueueUpdate$1(fiber, queue, update, lane) {\n concurrentQueues[concurrentQueuesIndex++] = fiber;\n concurrentQueues[concurrentQueuesIndex++] = queue;\n concurrentQueues[concurrentQueuesIndex++] = update;\n concurrentQueues[concurrentQueuesIndex++] = lane;\n concurrentlyUpdatedLanes |= lane;\n fiber.lanes |= lane;\n fiber = fiber.alternate;\n null !== fiber && (fiber.lanes |= lane);\n}\nfunction enqueueConcurrentHookUpdate(fiber, queue, update, lane) {\n enqueueUpdate$1(fiber, queue, update, lane);\n return getRootForUpdatedFiber(fiber);\n}\nfunction enqueueConcurrentRenderForLane(fiber, lane) {\n enqueueUpdate$1(fiber, null, null, lane);\n return getRootForUpdatedFiber(fiber);\n}\nfunction markUpdateLaneFromFiberToRoot(sourceFiber, update, lane) {\n sourceFiber.lanes |= lane;\n var alternate = sourceFiber.alternate;\n null !== alternate && (alternate.lanes |= lane);\n for (var isHidden = !1, parent = sourceFiber.return; null !== parent; )\n (parent.childLanes |= lane),\n (alternate = parent.alternate),\n null !== alternate && (alternate.childLanes |= lane),\n 22 === parent.tag &&\n ((sourceFiber = parent.stateNode),\n null === sourceFiber || sourceFiber._visibility & 1 || (isHidden = !0)),\n (sourceFiber = parent),\n (parent = parent.return);\n return 3 === sourceFiber.tag\n ? ((parent = sourceFiber.stateNode),\n isHidden &&\n null !== update &&\n ((isHidden = 31 - clz32(lane)),\n (sourceFiber = parent.hiddenUpdates),\n (alternate = sourceFiber[isHidden]),\n null === alternate\n ? (sourceFiber[isHidden] = [update])\n : alternate.push(update),\n (update.lane = lane | 536870912)),\n parent)\n : null;\n}\nfunction getRootForUpdatedFiber(sourceFiber) {\n if (50 < nestedUpdateCount)\n throw (\n ((nestedUpdateCount = 0),\n (rootWithNestedUpdates = null),\n Error(formatProdErrorMessage(185)))\n );\n for (var parent = sourceFiber.return; null !== parent; )\n (sourceFiber = parent), (parent = sourceFiber.return);\n return 3 === sourceFiber.tag ? sourceFiber.stateNode : null;\n}\nvar emptyContextObject = {};\nfunction FiberNode(tag, pendingProps, key, mode) {\n this.tag = tag;\n this.key = key;\n this.sibling =\n this.child =\n this.return =\n this.stateNode =\n this.type =\n this.elementType =\n null;\n this.index = 0;\n this.refCleanup = this.ref = null;\n this.pendingProps = pendingProps;\n this.dependencies =\n this.memoizedState =\n this.updateQueue =\n this.memoizedProps =\n null;\n this.mode = mode;\n this.subtreeFlags = this.flags = 0;\n this.deletions = null;\n this.childLanes = this.lanes = 0;\n this.alternate = null;\n}\nfunction createFiberImplClass(tag, pendingProps, key, mode) {\n return new FiberNode(tag, pendingProps, key, mode);\n}\nfunction shouldConstruct(Component) {\n Component = Component.prototype;\n return !(!Component || !Component.isReactComponent);\n}\nfunction createWorkInProgress(current, pendingProps) {\n var workInProgress = current.alternate;\n null === workInProgress\n ? ((workInProgress = createFiberImplClass(\n current.tag,\n pendingProps,\n current.key,\n current.mode\n )),\n (workInProgress.elementType = current.elementType),\n (workInProgress.type = current.type),\n (workInProgress.stateNode = current.stateNode),\n (workInProgress.alternate = current),\n (current.alternate = workInProgress))\n : ((workInProgress.pendingProps = pendingProps),\n (workInProgress.type = current.type),\n (workInProgress.flags = 0),\n (workInProgress.subtreeFlags = 0),\n (workInProgress.deletions = null));\n workInProgress.flags = current.flags & 132120576;\n workInProgress.childLanes = current.childLanes;\n workInProgress.lanes = current.lanes;\n workInProgress.child = current.child;\n workInProgress.memoizedProps = current.memoizedProps;\n workInProgress.memoizedState = current.memoizedState;\n workInProgress.updateQueue = current.updateQueue;\n pendingProps = current.dependencies;\n workInProgress.dependencies =\n null === pendingProps\n ? null\n : { lanes: pendingProps.lanes, firstContext: pendingProps.firstContext };\n workInProgress.sibling = current.sibling;\n workInProgress.index = current.index;\n workInProgress.ref = current.ref;\n workInProgress.refCleanup = current.refCleanup;\n return workInProgress;\n}\nfunction resetWorkInProgress(workInProgress, renderLanes) {\n workInProgress.flags &= 132120578;\n var current = workInProgress.alternate;\n null === current\n ? ((workInProgress.childLanes = 0),\n (workInProgress.lanes = renderLanes),\n (workInProgress.child = null),\n (workInProgress.subtreeFlags = 0),\n (workInProgress.memoizedProps = null),\n (workInProgress.memoizedState = null),\n (workInProgress.updateQueue = null),\n (workInProgress.dependencies = null),\n (workInProgress.stateNode = null))\n : ((workInProgress.childLanes = current.childLanes),\n (workInProgress.lanes = current.lanes),\n (workInProgress.child = current.child),\n (workInProgress.subtreeFlags = 0),\n (workInProgress.deletions = null),\n (workInProgress.memoizedProps = current.memoizedProps),\n (workInProgress.memoizedState = current.memoizedState),\n (workInProgress.updateQueue = current.updateQueue),\n (workInProgress.type = current.type),\n (renderLanes = current.dependencies),\n (workInProgress.dependencies =\n null === renderLanes\n ? null\n : {\n lanes: renderLanes.lanes,\n firstContext: renderLanes.firstContext\n }));\n return workInProgress;\n}\nfunction createFiberFromTypeAndProps(\n type,\n key,\n pendingProps,\n owner,\n mode,\n lanes\n) {\n var fiberTag = 0;\n owner = type;\n if (\"function\" === typeof type) shouldConstruct(type) && (fiberTag = 1);\n else if (\"string\" === typeof type)\n fiberTag = isHostHoistableType(\n type,\n pendingProps,\n contextStackCursor.current\n )\n ? 26\n : \"html\" === type || \"head\" === type || \"body\" === type\n ? 27\n : 5;\n else\n a: switch (type) {\n case REACT_ACTIVITY_TYPE:\n return (\n (type = createFiberImplClass(31, pendingProps, key, mode)),\n (type.elementType = REACT_ACTIVITY_TYPE),\n (type.lanes = lanes),\n type\n );\n case REACT_FRAGMENT_TYPE:\n return createFiberFromFragment(pendingProps.children, mode, lanes, key);\n case REACT_STRICT_MODE_TYPE:\n fiberTag = 8;\n mode |= 24;\n break;\n case REACT_PROFILER_TYPE:\n return (\n (type = createFiberImplClass(12, pendingProps, key, mode | 2)),\n (type.elementType = REACT_PROFILER_TYPE),\n (type.lanes = lanes),\n type\n );\n case REACT_SUSPENSE_TYPE:\n return (\n (type = createFiberImplClass(13, pendingProps, key, mode)),\n (type.elementType = REACT_SUSPENSE_TYPE),\n (type.lanes = lanes),\n type\n );\n case REACT_SUSPENSE_LIST_TYPE:\n return (\n (type = createFiberImplClass(19, pendingProps, key, mode)),\n (type.elementType = REACT_SUSPENSE_LIST_TYPE),\n (type.lanes = lanes),\n type\n );\n case REACT_LEGACY_HIDDEN_TYPE:\n case REACT_VIEW_TRANSITION_TYPE:\n return (\n (type = mode | 32),\n (type = createFiberImplClass(30, pendingProps, key, type)),\n (type.elementType = REACT_VIEW_TRANSITION_TYPE),\n (type.lanes = lanes),\n (type.stateNode = {\n autoName: null,\n paired: null,\n clones: null,\n ref: null\n }),\n type\n );\n default:\n if (\"object\" === typeof type && null !== type)\n switch (type.$$typeof) {\n case REACT_CONTEXT_TYPE:\n fiberTag = 10;\n break a;\n case REACT_CONSUMER_TYPE:\n fiberTag = 9;\n break a;\n case REACT_FORWARD_REF_TYPE:\n fiberTag = 11;\n break a;\n case REACT_MEMO_TYPE:\n fiberTag = 14;\n break a;\n case REACT_LAZY_TYPE:\n fiberTag = 16;\n owner = null;\n break a;\n }\n fiberTag = 29;\n pendingProps = Error(\n formatProdErrorMessage(130, null === type ? \"null\" : typeof type, \"\")\n );\n owner = null;\n }\n key = createFiberImplClass(fiberTag, pendingProps, key, mode);\n key.elementType = type;\n key.type = owner;\n key.lanes = lanes;\n return key;\n}\nfunction createFiberFromFragment(elements, mode, lanes, key) {\n elements = createFiberImplClass(7, elements, key, mode);\n elements.lanes = lanes;\n return elements;\n}\nfunction createFiberFromText(content, mode, lanes) {\n content = createFiberImplClass(6, content, null, mode);\n content.lanes = lanes;\n return content;\n}\nfunction createFiberFromDehydratedFragment(dehydratedNode) {\n var fiber = createFiberImplClass(18, null, null, 0);\n fiber.stateNode = dehydratedNode;\n return fiber;\n}\nfunction createFiberFromPortal(portal, mode, lanes) {\n mode = createFiberImplClass(\n 4,\n null !== portal.children ? portal.children : [],\n portal.key,\n mode\n );\n mode.lanes = lanes;\n mode.stateNode = {\n containerInfo: portal.containerInfo,\n pendingChildren: null,\n implementation: portal.implementation\n };\n return mode;\n}\nvar CapturedStacks = new WeakMap();\nfunction createCapturedValueAtFiber(value, source) {\n if (\"object\" === typeof value && null !== value) {\n var existing = CapturedStacks.get(value);\n if (void 0 !== existing) return existing;\n source = {\n value: value,\n source: source,\n stack: getStackByFiberInDevAndProd(source)\n };\n CapturedStacks.set(value, source);\n return source;\n }\n return {\n value: value,\n source: source,\n stack: getStackByFiberInDevAndProd(source)\n };\n}\nvar forkStack = [],\n forkStackIndex = 0,\n treeForkProvider = null,\n treeForkCount = 0,\n idStack = [],\n idStackIndex = 0,\n treeContextProvider = null,\n treeContextId = 1,\n treeContextOverflow = \"\";\nfunction pushTreeFork(workInProgress, totalChildren) {\n forkStack[forkStackIndex++] = treeForkCount;\n forkStack[forkStackIndex++] = treeForkProvider;\n treeForkProvider = workInProgress;\n treeForkCount = totalChildren;\n}\nfunction pushTreeId(workInProgress, totalChildren, index) {\n idStack[idStackIndex++] = treeContextId;\n idStack[idStackIndex++] = treeContextOverflow;\n idStack[idStackIndex++] = treeContextProvider;\n treeContextProvider = workInProgress;\n var baseIdWithLeadingBit = treeContextId;\n workInProgress = treeContextOverflow;\n var baseLength = 32 - clz32(baseIdWithLeadingBit) - 1;\n baseIdWithLeadingBit &= ~(1 << baseLength);\n index += 1;\n var length = 32 - clz32(totalChildren) + baseLength;\n if (30 < length) {\n var numberOfOverflowBits = baseLength - (baseLength % 5);\n length = (\n baseIdWithLeadingBit &\n ((1 << numberOfOverflowBits) - 1)\n ).toString(32);\n baseIdWithLeadingBit >>= numberOfOverflowBits;\n baseLength -= numberOfOverflowBits;\n treeContextId =\n (1 << (32 - clz32(totalChildren) + baseLength)) |\n (index << baseLength) |\n baseIdWithLeadingBit;\n treeContextOverflow = length + workInProgress;\n } else\n (treeContextId =\n (1 << length) | (index << baseLength) | baseIdWithLeadingBit),\n (treeContextOverflow = workInProgress);\n}\nfunction pushMaterializedTreeId(workInProgress) {\n null !== workInProgress.return &&\n (pushTreeFork(workInProgress, 1), pushTreeId(workInProgress, 1, 0));\n}\nfunction popTreeContext(workInProgress) {\n for (; workInProgress === treeForkProvider; )\n (treeForkProvider = forkStack[--forkStackIndex]),\n (forkStack[forkStackIndex] = null),\n (treeForkCount = forkStack[--forkStackIndex]),\n (forkStack[forkStackIndex] = null);\n for (; workInProgress === treeContextProvider; )\n (treeContextProvider = idStack[--idStackIndex]),\n (idStack[idStackIndex] = null),\n (treeContextOverflow = idStack[--idStackIndex]),\n (idStack[idStackIndex] = null),\n (treeContextId = idStack[--idStackIndex]),\n (idStack[idStackIndex] = null);\n}\nfunction restoreSuspendedTreeContext(workInProgress, suspendedContext) {\n idStack[idStackIndex++] = treeContextId;\n idStack[idStackIndex++] = treeContextOverflow;\n idStack[idStackIndex++] = treeContextProvider;\n treeContextId = suspendedContext.id;\n treeContextOverflow = suspendedContext.overflow;\n treeContextProvider = workInProgress;\n}\nvar hydrationParentFiber = null,\n nextHydratableInstance = null,\n isHydrating = !1,\n hydrationErrors = null,\n rootOrSingletonContext = !1,\n HydrationMismatchException = Error(formatProdErrorMessage(519));\nfunction throwOnHydrationMismatch(fiber) {\n var error = Error(\n formatProdErrorMessage(\n 418,\n 1 < arguments.length && void 0 !== arguments[1] && arguments[1]\n ? \"text\"\n : \"HTML\",\n \"\"\n )\n );\n queueHydrationError(createCapturedValueAtFiber(error, fiber));\n throw HydrationMismatchException;\n}\nfunction prepareToHydrateHostInstance(fiber) {\n var instance = fiber.stateNode,\n type = fiber.type,\n props = fiber.memoizedProps;\n instance[internalInstanceKey] = fiber;\n instance[internalPropsKey] = props;\n switch (type) {\n case \"dialog\":\n listenToNonDelegatedEvent(\"cancel\", instance);\n listenToNonDelegatedEvent(\"close\", instance);\n break;\n case \"iframe\":\n case \"object\":\n case \"embed\":\n listenToNonDelegatedEvent(\"load\", instance);\n break;\n case \"video\":\n case \"audio\":\n for (type = 0; type < mediaEventTypes.length; type++)\n listenToNonDelegatedEvent(mediaEventTypes[type], instance);\n break;\n case \"source\":\n listenToNonDelegatedEvent(\"error\", instance);\n break;\n case \"img\":\n case \"image\":\n case \"link\":\n listenToNonDelegatedEvent(\"error\", instance);\n listenToNonDelegatedEvent(\"load\", instance);\n break;\n case \"details\":\n listenToNonDelegatedEvent(\"toggle\", instance);\n break;\n case \"input\":\n listenToNonDelegatedEvent(\"invalid\", instance);\n initInput(\n instance,\n props.value,\n props.defaultValue,\n props.checked,\n props.defaultChecked,\n props.type,\n props.name,\n !0\n );\n break;\n case \"select\":\n listenToNonDelegatedEvent(\"invalid\", instance);\n break;\n case \"textarea\":\n listenToNonDelegatedEvent(\"invalid\", instance),\n initTextarea(instance, props.value, props.defaultValue, props.children);\n }\n type = props.children;\n (\"string\" !== typeof type &&\n \"number\" !== typeof type &&\n \"bigint\" !== typeof type) ||\n instance.textContent === \"\" + type ||\n !0 === props.suppressHydrationWarning ||\n checkForUnmatchedText(instance.textContent, type)\n ? (null != props.popover &&\n (listenToNonDelegatedEvent(\"beforetoggle\", instance),\n listenToNonDelegatedEvent(\"toggle\", instance)),\n null != props.onScroll && listenToNonDelegatedEvent(\"scroll\", instance),\n null != props.onScrollEnd &&\n listenToNonDelegatedEvent(\"scrollend\", instance),\n null != props.onClick && (instance.onclick = noop$1),\n (instance = !0))\n : (instance = !1);\n instance || throwOnHydrationMismatch(fiber, !0);\n}\nfunction popToNextHostParent(fiber) {\n for (hydrationParentFiber = fiber.return; hydrationParentFiber; )\n switch (hydrationParentFiber.tag) {\n case 5:\n case 31:\n case 13:\n rootOrSingletonContext = !1;\n return;\n case 27:\n case 3:\n rootOrSingletonContext = !0;\n return;\n default:\n hydrationParentFiber = hydrationParentFiber.return;\n }\n}\nfunction popHydrationState(fiber) {\n if (fiber !== hydrationParentFiber) return !1;\n if (!isHydrating) return popToNextHostParent(fiber), (isHydrating = !0), !1;\n var tag = fiber.tag,\n JSCompiler_temp;\n if ((JSCompiler_temp = 3 !== tag && 27 !== tag)) {\n if ((JSCompiler_temp = 5 === tag))\n (JSCompiler_temp = fiber.type),\n (JSCompiler_temp =\n !(\"form\" !== JSCompiler_temp && \"button\" !== JSCompiler_temp) ||\n shouldSetTextContent(fiber.type, fiber.memoizedProps));\n JSCompiler_temp = !JSCompiler_temp;\n }\n JSCompiler_temp && nextHydratableInstance && throwOnHydrationMismatch(fiber);\n popToNextHostParent(fiber);\n if (13 === tag) {\n fiber = fiber.memoizedState;\n fiber = null !== fiber ? fiber.dehydrated : null;\n if (!fiber) throw Error(formatProdErrorMessage(317));\n nextHydratableInstance =\n getNextHydratableInstanceAfterHydrationBoundary(fiber);\n } else if (31 === tag) {\n fiber = fiber.memoizedState;\n fiber = null !== fiber ? fiber.dehydrated : null;\n if (!fiber) throw Error(formatProdErrorMessage(317));\n nextHydratableInstance =\n getNextHydratableInstanceAfterHydrationBoundary(fiber);\n } else\n 27 === tag\n ? ((tag = nextHydratableInstance),\n isSingletonScope(fiber.type)\n ? ((fiber = previousHydratableOnEnteringScopedSingleton),\n (previousHydratableOnEnteringScopedSingleton = null),\n (nextHydratableInstance = fiber))\n : (nextHydratableInstance = tag))\n : (nextHydratableInstance = hydrationParentFiber\n ? getNextHydratable(fiber.stateNode.nextSibling)\n : null);\n return !0;\n}\nfunction resetHydrationState() {\n nextHydratableInstance = hydrationParentFiber = null;\n isHydrating = !1;\n}\nfunction upgradeHydrationErrorsToRecoverable() {\n var queuedErrors = hydrationErrors;\n null !== queuedErrors &&\n (null === workInProgressRootRecoverableErrors\n ? (workInProgressRootRecoverableErrors = queuedErrors)\n : workInProgressRootRecoverableErrors.push.apply(\n workInProgressRootRecoverableErrors,\n queuedErrors\n ),\n (hydrationErrors = null));\n return queuedErrors;\n}\nfunction queueHydrationError(error) {\n null === hydrationErrors\n ? (hydrationErrors = [error])\n : hydrationErrors.push(error);\n}\nvar valueCursor = createCursor(null),\n currentlyRenderingFiber$1 = null,\n lastContextDependency = null;\nfunction pushProvider(providerFiber, context, nextValue) {\n push(valueCursor, context._currentValue);\n context._currentValue = nextValue;\n}\nfunction popProvider(context) {\n context._currentValue = valueCursor.current;\n pop(valueCursor);\n}\nfunction scheduleContextWorkOnParentPath(parent, renderLanes, propagationRoot) {\n for (; null !== parent; ) {\n var alternate = parent.alternate;\n (parent.childLanes & renderLanes) !== renderLanes\n ? ((parent.childLanes |= renderLanes),\n null !== alternate && (alternate.childLanes |= renderLanes))\n : null !== alternate &&\n (alternate.childLanes & renderLanes) !== renderLanes &&\n (alternate.childLanes |= renderLanes);\n if (parent === propagationRoot) break;\n parent = parent.return;\n }\n}\nfunction propagateContextChanges(\n workInProgress,\n contexts,\n renderLanes,\n forcePropagateEntireTree\n) {\n var fiber = workInProgress.child;\n null !== fiber && (fiber.return = workInProgress);\n for (; null !== fiber; ) {\n var list = fiber.dependencies;\n if (null !== list) {\n var nextFiber = fiber.child;\n list = list.firstContext;\n a: for (; null !== list; ) {\n var dependency = list;\n list = fiber;\n for (var i = 0; i < contexts.length; i++)\n if (dependency.context === contexts[i]) {\n list.lanes |= renderLanes;\n dependency = list.alternate;\n null !== dependency && (dependency.lanes |= renderLanes);\n scheduleContextWorkOnParentPath(\n list.return,\n renderLanes,\n workInProgress\n );\n forcePropagateEntireTree || (nextFiber = null);\n break a;\n }\n list = dependency.next;\n }\n } else if (18 === fiber.tag) {\n nextFiber = fiber.return;\n if (null === nextFiber) throw Error(formatProdErrorMessage(341));\n nextFiber.lanes |= renderLanes;\n list = nextFiber.alternate;\n null !== list && (list.lanes |= renderLanes);\n scheduleContextWorkOnParentPath(nextFiber, renderLanes, workInProgress);\n nextFiber = null;\n } else nextFiber = fiber.child;\n if (null !== nextFiber) nextFiber.return = fiber;\n else\n for (nextFiber = fiber; null !== nextFiber; ) {\n if (nextFiber === workInProgress) {\n nextFiber = null;\n break;\n }\n fiber = nextFiber.sibling;\n if (null !== fiber) {\n fiber.return = nextFiber.return;\n nextFiber = fiber;\n break;\n }\n nextFiber = nextFiber.return;\n }\n fiber = nextFiber;\n }\n}\nfunction propagateParentContextChanges(\n current,\n workInProgress,\n renderLanes,\n forcePropagateEntireTree\n) {\n current = null;\n for (\n var parent = workInProgress, isInsidePropagationBailout = !1;\n null !== parent;\n\n ) {\n if (!isInsidePropagationBailout)\n if (0 !== (parent.flags & 524288)) isInsidePropagationBailout = !0;\n else if (0 !== (parent.flags & 262144)) break;\n if (10 === parent.tag) {\n var currentParent = parent.alternate;\n if (null === currentParent) throw Error(formatProdErrorMessage(387));\n currentParent = currentParent.memoizedProps;\n if (null !== currentParent) {\n var context = parent.type;\n objectIs(parent.pendingProps.value, currentParent.value) ||\n (null !== current ? current.push(context) : (current = [context]));\n }\n } else if (parent === hostTransitionProviderCursor.current) {\n currentParent = parent.alternate;\n if (null === currentParent) throw Error(formatProdErrorMessage(387));\n currentParent.memoizedState.memoizedState !==\n parent.memoizedState.memoizedState &&\n (null !== current\n ? current.push(HostTransitionContext)\n : (current = [HostTransitionContext]));\n }\n parent = parent.return;\n }\n null !== current &&\n propagateContextChanges(\n workInProgress,\n current,\n renderLanes,\n forcePropagateEntireTree\n );\n workInProgress.flags |= 262144;\n}\nfunction checkIfContextChanged(currentDependencies) {\n for (\n currentDependencies = currentDependencies.firstContext;\n null !== currentDependencies;\n\n ) {\n if (\n !objectIs(\n currentDependencies.context._currentValue,\n currentDependencies.memoizedValue\n )\n )\n return !0;\n currentDependencies = currentDependencies.next;\n }\n return !1;\n}\nfunction prepareToReadContext(workInProgress) {\n currentlyRenderingFiber$1 = workInProgress;\n lastContextDependency = null;\n workInProgress = workInProgress.dependencies;\n null !== workInProgress && (workInProgress.firstContext = null);\n}\nfunction readContext(context) {\n return readContextForConsumer(currentlyRenderingFiber$1, context);\n}\nfunction readContextDuringReconciliation(consumer, context) {\n null === currentlyRenderingFiber$1 && prepareToReadContext(consumer);\n return readContextForConsumer(consumer, context);\n}\nfunction readContextForConsumer(consumer, context) {\n var value = context._currentValue;\n context = { context: context, memoizedValue: value, next: null };\n if (null === lastContextDependency) {\n if (null === consumer) throw Error(formatProdErrorMessage(308));\n lastContextDependency = context;\n consumer.dependencies = { lanes: 0, firstContext: context };\n consumer.flags |= 524288;\n } else lastContextDependency = lastContextDependency.next = context;\n return value;\n}\nvar AbortControllerLocal =\n \"undefined\" !== typeof AbortController\n ? AbortController\n : function () {\n var listeners = [],\n signal = (this.signal = {\n aborted: !1,\n addEventListener: function (type, listener) {\n listeners.push(listener);\n }\n });\n this.abort = function () {\n signal.aborted = !0;\n listeners.forEach(function (listener) {\n return listener();\n });\n };\n },\n scheduleCallback$2 = Scheduler.unstable_scheduleCallback,\n NormalPriority = Scheduler.unstable_NormalPriority,\n CacheContext = {\n $$typeof: REACT_CONTEXT_TYPE,\n Consumer: null,\n Provider: null,\n _currentValue: null,\n _currentValue2: null,\n _threadCount: 0\n };\nfunction createCache() {\n return {\n controller: new AbortControllerLocal(),\n data: new Map(),\n refCount: 0\n };\n}\nfunction releaseCache(cache) {\n cache.refCount--;\n 0 === cache.refCount &&\n scheduleCallback$2(NormalPriority, function () {\n cache.controller.abort();\n });\n}\nfunction queueTransitionTypes(root, transitionTypes) {\n if (0 !== (root.pendingLanes & 4194048)) {\n var queued = root.transitionTypes;\n null === queued && (queued = root.transitionTypes = []);\n for (root = 0; root < transitionTypes.length; root++) {\n var transitionType = transitionTypes[root];\n -1 === queued.indexOf(transitionType) && queued.push(transitionType);\n }\n }\n}\nvar entangledTransitionTypes = null;\nfunction claimQueuedTransitionTypes(root) {\n var claimed = root.transitionTypes;\n root.transitionTypes = null;\n return claimed;\n}\nvar currentEntangledListeners = null,\n currentEntangledPendingCount = 0,\n currentEntangledLane = 0,\n currentEntangledActionThenable = null;\nfunction entangleAsyncAction(transition, thenable) {\n if (null === currentEntangledListeners) {\n var entangledListeners = (currentEntangledListeners = []);\n currentEntangledPendingCount = 0;\n currentEntangledLane = requestTransitionLane();\n currentEntangledActionThenable = {\n status: \"pending\",\n value: void 0,\n then: function (resolve) {\n entangledListeners.push(resolve);\n }\n };\n }\n currentEntangledPendingCount++;\n thenable.then(pingEngtangledActionScope, pingEngtangledActionScope);\n return thenable;\n}\nfunction pingEngtangledActionScope() {\n if (\n 0 === --currentEntangledPendingCount &&\n ((entangledTransitionTypes = null), null !== currentEntangledListeners)\n ) {\n null !== currentEntangledActionThenable &&\n (currentEntangledActionThenable.status = \"fulfilled\");\n var listeners = currentEntangledListeners;\n currentEntangledListeners = null;\n currentEntangledLane = 0;\n currentEntangledActionThenable = null;\n for (var i = 0; i < listeners.length; i++) (0, listeners[i])();\n }\n}\nfunction chainThenableValue(thenable, result) {\n var listeners = [],\n thenableWithOverride = {\n status: \"pending\",\n value: null,\n reason: null,\n then: function (resolve) {\n listeners.push(resolve);\n }\n };\n thenable.then(\n function () {\n thenableWithOverride.status = \"fulfilled\";\n thenableWithOverride.value = result;\n for (var i = 0; i < listeners.length; i++) (0, listeners[i])(result);\n },\n function (error) {\n thenableWithOverride.status = \"rejected\";\n thenableWithOverride.reason = error;\n for (error = 0; error < listeners.length; error++)\n (0, listeners[error])(void 0);\n }\n );\n return thenableWithOverride;\n}\nvar prevOnStartTransitionFinish = ReactSharedInternals.S;\nReactSharedInternals.S = function (transition, returnValue) {\n globalMostRecentTransitionTime = now();\n \"object\" === typeof returnValue &&\n null !== returnValue &&\n \"function\" === typeof returnValue.then &&\n entangleAsyncAction(transition, returnValue);\n if (null !== entangledTransitionTypes)\n for (var root$26 = firstScheduledRoot; null !== root$26; )\n queueTransitionTypes(root$26, entangledTransitionTypes),\n (root$26 = root$26.next);\n root$26 = transition.types;\n if (null !== root$26) {\n for (var root$27 = firstScheduledRoot; null !== root$27; )\n queueTransitionTypes(root$27, root$26), (root$27 = root$27.next);\n if (0 !== currentEntangledLane) {\n root$27 = entangledTransitionTypes;\n null === root$27 && (root$27 = entangledTransitionTypes = []);\n for (var i = 0; i < root$26.length; i++) {\n var transitionType = root$26[i];\n -1 === root$27.indexOf(transitionType) && root$27.push(transitionType);\n }\n }\n }\n null !== prevOnStartTransitionFinish &&\n prevOnStartTransitionFinish(transition, returnValue);\n};\nvar resumedCache = createCursor(null);\nfunction peekCacheFromPool() {\n var cacheResumedFromPreviousRender = resumedCache.current;\n return null !== cacheResumedFromPreviousRender\n ? cacheResumedFromPreviousRender\n : workInProgressRoot.pooledCache;\n}\nfunction pushTransition(offscreenWorkInProgress, prevCachePool) {\n null === prevCachePool\n ? push(resumedCache, resumedCache.current)\n : push(resumedCache, prevCachePool.pool);\n}\nfunction getSuspendedCache() {\n var cacheFromPool = peekCacheFromPool();\n return null === cacheFromPool\n ? null\n : { parent: CacheContext._currentValue, pool: cacheFromPool };\n}\nvar SuspenseException = Error(formatProdErrorMessage(460)),\n SuspenseyCommitException = Error(formatProdErrorMessage(474)),\n SuspenseActionException = Error(formatProdErrorMessage(542)),\n noopSuspenseyCommitThenable = { then: function () {} };\nfunction isThenableResolved(thenable) {\n thenable = thenable.status;\n return \"fulfilled\" === thenable || \"rejected\" === thenable;\n}\nfunction trackUsedThenable(thenableState, thenable, index) {\n index = thenableState[index];\n void 0 === index\n ? thenableState.push(thenable)\n : index !== thenable && (thenable.then(noop$1, noop$1), (thenable = index));\n switch (thenable.status) {\n case \"fulfilled\":\n return thenable.value;\n case \"rejected\":\n throw (\n ((thenableState = thenable.reason),\n checkIfUseWrappedInAsyncCatch(thenableState),\n thenableState)\n );\n default:\n if (\"string\" === typeof thenable.status) thenable.then(noop$1, noop$1);\n else {\n thenableState = workInProgressRoot;\n if (null !== thenableState && 100 < thenableState.shellSuspendCounter)\n throw Error(formatProdErrorMessage(482));\n thenableState = thenable;\n thenableState.status = \"pending\";\n thenableState.then(\n function (fulfilledValue) {\n if (\"pending\" === thenable.status) {\n var fulfilledThenable = thenable;\n fulfilledThenable.status = \"fulfilled\";\n fulfilledThenable.value = fulfilledValue;\n }\n },\n function (error) {\n if (\"pending\" === thenable.status) {\n var rejectedThenable = thenable;\n rejectedThenable.status = \"rejected\";\n rejectedThenable.reason = error;\n }\n }\n );\n }\n switch (thenable.status) {\n case \"fulfilled\":\n return thenable.value;\n case \"rejected\":\n throw (\n ((thenableState = thenable.reason),\n checkIfUseWrappedInAsyncCatch(thenableState),\n thenableState)\n );\n }\n suspendedThenable = thenable;\n throw SuspenseException;\n }\n}\nfunction resolveLazy(lazyType) {\n try {\n var init = lazyType._init;\n return init(lazyType._payload);\n } catch (x) {\n if (null !== x && \"object\" === typeof x && \"function\" === typeof x.then)\n throw ((suspendedThenable = x), SuspenseException);\n throw x;\n }\n}\nvar suspendedThenable = null;\nfunction getSuspendedThenable() {\n if (null === suspendedThenable) throw Error(formatProdErrorMessage(459));\n var thenable = suspendedThenable;\n suspendedThenable = null;\n return thenable;\n}\nfunction checkIfUseWrappedInAsyncCatch(rejectedReason) {\n if (\n rejectedReason === SuspenseException ||\n rejectedReason === SuspenseActionException\n )\n throw Error(formatProdErrorMessage(483));\n}\nvar thenableState$1 = null,\n thenableIndexCounter$1 = 0;\nfunction unwrapThenable(thenable) {\n var index = thenableIndexCounter$1;\n thenableIndexCounter$1 += 1;\n null === thenableState$1 && (thenableState$1 = []);\n return trackUsedThenable(thenableState$1, thenable, index);\n}\nfunction coerceRef(workInProgress, element) {\n element = element.props.ref;\n workInProgress.ref = void 0 !== element ? element : null;\n}\nfunction throwOnInvalidObjectTypeImpl(returnFiber, newChild) {\n if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)\n throw Error(formatProdErrorMessage(525));\n returnFiber = Object.prototype.toString.call(newChild);\n throw Error(\n formatProdErrorMessage(\n 31,\n \"[object Object]\" === returnFiber\n ? \"object with keys {\" + Object.keys(newChild).join(\", \") + \"}\"\n : returnFiber\n )\n );\n}\nfunction createChildReconciler(shouldTrackSideEffects) {\n function deleteChild(returnFiber, childToDelete) {\n if (shouldTrackSideEffects) {\n var deletions = returnFiber.deletions;\n null === deletions\n ? ((returnFiber.deletions = [childToDelete]), (returnFiber.flags |= 16))\n : deletions.push(childToDelete);\n }\n }\n function deleteRemainingChildren(returnFiber, currentFirstChild) {\n if (!shouldTrackSideEffects) return null;\n for (; null !== currentFirstChild; )\n deleteChild(returnFiber, currentFirstChild),\n (currentFirstChild = currentFirstChild.sibling);\n return null;\n }\n function mapRemainingChildren(currentFirstChild) {\n for (var existingChildren = new Map(); null !== currentFirstChild; )\n null === currentFirstChild.key\n ? existingChildren.set(currentFirstChild.index, currentFirstChild)\n : existingChildren.set(currentFirstChild.key, currentFirstChild),\n (currentFirstChild = currentFirstChild.sibling);\n return existingChildren;\n }\n function useFiber(fiber, pendingProps) {\n fiber = createWorkInProgress(fiber, pendingProps);\n fiber.index = 0;\n fiber.sibling = null;\n return fiber;\n }\n function placeChild(newFiber, lastPlacedIndex, newIndex) {\n newFiber.index = newIndex;\n if (!shouldTrackSideEffects)\n return (newFiber.flags |= 1048576), lastPlacedIndex;\n newIndex = newFiber.alternate;\n if (null !== newIndex)\n return (\n (newIndex = newIndex.index),\n newIndex < lastPlacedIndex\n ? ((newFiber.flags |= 134217730), lastPlacedIndex)\n : newIndex\n );\n newFiber.flags |= 134217730;\n return lastPlacedIndex;\n }\n function placeSingleChild(newFiber) {\n shouldTrackSideEffects &&\n null === newFiber.alternate &&\n (newFiber.flags |= 134217730);\n return newFiber;\n }\n function updateTextNode(returnFiber, current, textContent, lanes) {\n if (null === current || 6 !== current.tag)\n return (\n (current = createFiberFromText(textContent, returnFiber.mode, lanes)),\n (current.return = returnFiber),\n current\n );\n current = useFiber(current, textContent);\n current.return = returnFiber;\n return current;\n }\n function updateElement(returnFiber, current, element, lanes) {\n var elementType = element.type;\n if (elementType === REACT_FRAGMENT_TYPE)\n return (\n (returnFiber = updateFragment(\n returnFiber,\n current,\n element.props.children,\n lanes,\n element.key\n )),\n coerceRef(returnFiber, element),\n returnFiber\n );\n if (\n null !== current &&\n (current.elementType === elementType ||\n (\"object\" === typeof elementType &&\n null !== elementType &&\n elementType.$$typeof === REACT_LAZY_TYPE &&\n resolveLazy(elementType) === current.type))\n )\n return (\n (current = useFiber(current, element.props)),\n coerceRef(current, element),\n (current.return = returnFiber),\n current\n );\n current = createFiberFromTypeAndProps(\n element.type,\n element.key,\n element.props,\n null,\n returnFiber.mode,\n lanes\n );\n coerceRef(current, element);\n current.return = returnFiber;\n return current;\n }\n function updatePortal(returnFiber, current, portal, lanes) {\n if (\n null === current ||\n 4 !== current.tag ||\n current.stateNode.containerInfo !== portal.containerInfo ||\n current.stateNode.implementation !== portal.implementation\n )\n return (\n (current = createFiberFromPortal(portal, returnFiber.mode, lanes)),\n (current.return = returnFiber),\n current\n );\n current = useFiber(current, portal.children || []);\n current.return = returnFiber;\n return current;\n }\n function updateFragment(returnFiber, current, fragment, lanes, key) {\n if (null === current || 7 !== current.tag)\n return (\n (current = createFiberFromFragment(\n fragment,\n returnFiber.mode,\n lanes,\n key\n )),\n (current.return = returnFiber),\n current\n );\n current = useFiber(current, fragment);\n current.return = returnFiber;\n return current;\n }\n function createChild(returnFiber, newChild, lanes) {\n if (\n (\"string\" === typeof newChild && \"\" !== newChild) ||\n \"number\" === typeof newChild ||\n \"bigint\" === typeof newChild\n )\n return (\n (newChild = createFiberFromText(\n \"\" + newChild,\n returnFiber.mode,\n lanes\n )),\n (newChild.return = returnFiber),\n newChild\n );\n if (\"object\" === typeof newChild && null !== newChild) {\n switch (newChild.$$typeof) {\n case REACT_ELEMENT_TYPE:\n return (\n (lanes = createFiberFromTypeAndProps(\n newChild.type,\n newChild.key,\n newChild.props,\n null,\n returnFiber.mode,\n lanes\n )),\n coerceRef(lanes, newChild),\n (lanes.return = returnFiber),\n lanes\n );\n case REACT_PORTAL_TYPE:\n return (\n (newChild = createFiberFromPortal(\n newChild,\n returnFiber.mode,\n lanes\n )),\n (newChild.return = returnFiber),\n newChild\n );\n case REACT_LAZY_TYPE:\n return (\n (newChild = resolveLazy(newChild)),\n createChild(returnFiber, newChild, lanes)\n );\n }\n if (isArrayImpl(newChild) || getIteratorFn(newChild))\n return (\n (newChild = createFiberFromFragment(\n newChild,\n returnFiber.mode,\n lanes,\n null\n )),\n (newChild.return = returnFiber),\n newChild\n );\n if (\"function\" === typeof newChild.then)\n return createChild(returnFiber, unwrapThenable(newChild), lanes);\n if (newChild.$$typeof === REACT_CONTEXT_TYPE)\n return createChild(\n returnFiber,\n readContextDuringReconciliation(returnFiber, newChild),\n lanes\n );\n throwOnInvalidObjectTypeImpl(returnFiber, newChild);\n }\n return null;\n }\n function updateSlot(returnFiber, oldFiber, newChild, lanes) {\n var key = null !== oldFiber ? oldFiber.key : null;\n if (\n (\"string\" === typeof newChild && \"\" !== newChild) ||\n \"number\" === typeof newChild ||\n \"bigint\" === typeof newChild\n )\n return null !== key\n ? null\n : updateTextNode(returnFiber, oldFiber, \"\" + newChild, lanes);\n if (\"object\" === typeof newChild && null !== newChild) {\n switch (newChild.$$typeof) {\n case REACT_ELEMENT_TYPE:\n return newChild.key === key\n ? updateElement(returnFiber, oldFiber, newChild, lanes)\n : null;\n case REACT_PORTAL_TYPE:\n return newChild.key === key\n ? updatePortal(returnFiber, oldFiber, newChild, lanes)\n : null;\n case REACT_LAZY_TYPE:\n return (\n (newChild = resolveLazy(newChild)),\n updateSlot(returnFiber, oldFiber, newChild, lanes)\n );\n }\n if (isArrayImpl(newChild) || getIteratorFn(newChild))\n return null !== key\n ? null\n : updateFragment(returnFiber, oldFiber, newChild, lanes, null);\n if (\"function\" === typeof newChild.then)\n return updateSlot(\n returnFiber,\n oldFiber,\n unwrapThenable(newChild),\n lanes\n );\n if (newChild.$$typeof === REACT_CONTEXT_TYPE)\n return updateSlot(\n returnFiber,\n oldFiber,\n readContextDuringReconciliation(returnFiber, newChild),\n lanes\n );\n throwOnInvalidObjectTypeImpl(returnFiber, newChild);\n }\n return null;\n }\n function updateFromMap(\n existingChildren,\n returnFiber,\n newIdx,\n newChild,\n lanes\n ) {\n if (\n (\"string\" === typeof newChild && \"\" !== newChild) ||\n \"number\" === typeof newChild ||\n \"bigint\" === typeof newChild\n )\n return (\n (existingChildren = existingChildren.get(newIdx) || null),\n updateTextNode(returnFiber, existingChildren, \"\" + newChild, lanes)\n );\n if (\"object\" === typeof newChild && null !== newChild) {\n switch (newChild.$$typeof) {\n case REACT_ELEMENT_TYPE:\n return (\n (existingChildren =\n existingChildren.get(\n null === newChild.key ? newIdx : newChild.key\n ) || null),\n updateElement(returnFiber, existingChildren, newChild, lanes)\n );\n case REACT_PORTAL_TYPE:\n return (\n (existingChildren =\n existingChildren.get(\n null === newChild.key ? newIdx : newChild.key\n ) || null),\n updatePortal(returnFiber, existingChildren, newChild, lanes)\n );\n case REACT_LAZY_TYPE:\n return (\n (newChild = resolveLazy(newChild)),\n updateFromMap(\n existingChildren,\n returnFiber,\n newIdx,\n newChild,\n lanes\n )\n );\n }\n if (isArrayImpl(newChild) || getIteratorFn(newChild))\n return (\n (existingChildren = existingChildren.get(newIdx) || null),\n updateFragment(returnFiber, existingChildren, newChild, lanes, null)\n );\n if (\"function\" === typeof newChild.then)\n return updateFromMap(\n existingChildren,\n returnFiber,\n newIdx,\n unwrapThenable(newChild),\n lanes\n );\n if (newChild.$$typeof === REACT_CONTEXT_TYPE)\n return updateFromMap(\n existingChildren,\n returnFiber,\n newIdx,\n readContextDuringReconciliation(returnFiber, newChild),\n lanes\n );\n throwOnInvalidObjectTypeImpl(returnFiber, newChild);\n }\n return null;\n }\n function reconcileChildrenArray(\n returnFiber,\n currentFirstChild,\n newChildren,\n lanes\n ) {\n for (\n var resultingFirstChild = null,\n previousNewFiber = null,\n oldFiber = currentFirstChild,\n newIdx = (currentFirstChild = 0),\n nextOldFiber = null;\n null !== oldFiber && newIdx < newChildren.length;\n newIdx++\n ) {\n oldFiber.index > newIdx\n ? ((nextOldFiber = oldFiber), (oldFiber = null))\n : (nextOldFiber = oldFiber.sibling);\n var newFiber = updateSlot(\n returnFiber,\n oldFiber,\n newChildren[newIdx],\n lanes\n );\n if (null === newFiber) {\n null === oldFiber && (oldFiber = nextOldFiber);\n break;\n }\n shouldTrackSideEffects &&\n oldFiber &&\n null === newFiber.alternate &&\n deleteChild(returnFiber, oldFiber);\n currentFirstChild = placeChild(newFiber, currentFirstChild, newIdx);\n null === previousNewFiber\n ? (resultingFirstChild = newFiber)\n : (previousNewFiber.sibling = newFiber);\n previousNewFiber = newFiber;\n oldFiber = nextOldFiber;\n }\n if (newIdx === newChildren.length)\n return (\n deleteRemainingChildren(returnFiber, oldFiber),\n isHydrating && pushTreeFork(returnFiber, newIdx),\n resultingFirstChild\n );\n if (null === oldFiber) {\n for (; newIdx < newChildren.length; newIdx++)\n (oldFiber = createChild(returnFiber, newChildren[newIdx], lanes)),\n null !== oldFiber &&\n ((currentFirstChild = placeChild(\n oldFiber,\n currentFirstChild,\n newIdx\n )),\n null === previousNewFiber\n ? (resultingFirstChild = oldFiber)\n : (previousNewFiber.sibling = oldFiber),\n (previousNewFiber = oldFiber));\n isHydrating && pushTreeFork(returnFiber, newIdx);\n return resultingFirstChild;\n }\n for (\n oldFiber = mapRemainingChildren(oldFiber);\n newIdx < newChildren.length;\n newIdx++\n )\n (nextOldFiber = updateFromMap(\n oldFiber,\n returnFiber,\n newIdx,\n newChildren[newIdx],\n lanes\n )),\n null !== nextOldFiber &&\n (shouldTrackSideEffects &&\n ((newFiber = nextOldFiber.alternate),\n null !== newFiber &&\n oldFiber.delete(null === newFiber.key ? newIdx : newFiber.key)),\n (currentFirstChild = placeChild(\n nextOldFiber,\n currentFirstChild,\n newIdx\n )),\n null === previousNewFiber\n ? (resultingFirstChild = nextOldFiber)\n : (previousNewFiber.sibling = nextOldFiber),\n (previousNewFiber = nextOldFiber));\n shouldTrackSideEffects &&\n oldFiber.forEach(function (child) {\n return deleteChild(returnFiber, child);\n });\n isHydrating && pushTreeFork(returnFiber, newIdx);\n return resultingFirstChild;\n }\n function reconcileChildrenIterator(\n returnFiber,\n currentFirstChild,\n newChildren,\n lanes\n ) {\n if (null == newChildren) throw Error(formatProdErrorMessage(151));\n for (\n var resultingFirstChild = null,\n previousNewFiber = null,\n oldFiber = currentFirstChild,\n newIdx = (currentFirstChild = 0),\n nextOldFiber = null,\n step = newChildren.next();\n null !== oldFiber && !step.done;\n newIdx++, step = newChildren.next()\n ) {\n oldFiber.index > newIdx\n ? ((nextOldFiber = oldFiber), (oldFiber = null))\n : (nextOldFiber = oldFiber.sibling);\n var newFiber = updateSlot(returnFiber, oldFiber, step.value, lanes);\n if (null === newFiber) {\n null === oldFiber && (oldFiber = nextOldFiber);\n break;\n }\n shouldTrackSideEffects &&\n oldFiber &&\n null === newFiber.alternate &&\n deleteChild(returnFiber, oldFiber);\n currentFirstChild = placeChild(newFiber, currentFirstChild, newIdx);\n null === previousNewFiber\n ? (resultingFirstChild = newFiber)\n : (previousNewFiber.sibling = newFiber);\n previousNewFiber = newFiber;\n oldFiber = nextOldFiber;\n }\n if (step.done)\n return (\n deleteRemainingChildren(returnFiber, oldFiber),\n isHydrating && pushTreeFork(returnFiber, newIdx),\n resultingFirstChild\n );\n if (null === oldFiber) {\n for (; !step.done; newIdx++, step = newChildren.next())\n (step = createChild(returnFiber, step.value, lanes)),\n null !== step &&\n ((currentFirstChild = placeChild(step, currentFirstChild, newIdx)),\n null === previousNewFiber\n ? (resultingFirstChild = step)\n : (previousNewFiber.sibling = step),\n (previousNewFiber = step));\n isHydrating && pushTreeFork(returnFiber, newIdx);\n return resultingFirstChild;\n }\n for (\n oldFiber = mapRemainingChildren(oldFiber);\n !step.done;\n newIdx++, step = newChildren.next()\n )\n (step = updateFromMap(oldFiber, returnFiber, newIdx, step.value, lanes)),\n null !== step &&\n (shouldTrackSideEffects &&\n ((nextOldFiber = step.alternate),\n null !== nextOldFiber &&\n oldFiber.delete(\n null === nextOldFiber.key ? newIdx : nextOldFiber.key\n )),\n (currentFirstChild = placeChild(step, currentFirstChild, newIdx)),\n null === previousNewFiber\n ? (resultingFirstChild = step)\n : (previousNewFiber.sibling = step),\n (previousNewFiber = step));\n shouldTrackSideEffects &&\n oldFiber.forEach(function (child) {\n return deleteChild(returnFiber, child);\n });\n isHydrating && pushTreeFork(returnFiber, newIdx);\n return resultingFirstChild;\n }\n function reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n ) {\n \"object\" === typeof newChild &&\n null !== newChild &&\n newChild.type === REACT_FRAGMENT_TYPE &&\n null === newChild.key &&\n void 0 === newChild.props.ref &&\n (newChild = newChild.props.children);\n if (\"object\" === typeof newChild && null !== newChild) {\n switch (newChild.$$typeof) {\n case REACT_ELEMENT_TYPE:\n a: {\n for (var key = newChild.key; null !== currentFirstChild; ) {\n if (currentFirstChild.key === key) {\n key = newChild.type;\n if (key === REACT_FRAGMENT_TYPE) {\n if (7 === currentFirstChild.tag) {\n deleteRemainingChildren(\n returnFiber,\n currentFirstChild.sibling\n );\n lanes = useFiber(\n currentFirstChild,\n newChild.props.children\n );\n coerceRef(lanes, newChild);\n lanes.return = returnFiber;\n returnFiber = lanes;\n break a;\n }\n } else if (\n currentFirstChild.elementType === key ||\n (\"object\" === typeof key &&\n null !== key &&\n key.$$typeof === REACT_LAZY_TYPE &&\n resolveLazy(key) === currentFirstChild.type)\n ) {\n deleteRemainingChildren(\n returnFiber,\n currentFirstChild.sibling\n );\n lanes = useFiber(currentFirstChild, newChild.props);\n coerceRef(lanes, newChild);\n lanes.return = returnFiber;\n returnFiber = lanes;\n break a;\n }\n deleteRemainingChildren(returnFiber, currentFirstChild);\n break;\n } else deleteChild(returnFiber, currentFirstChild);\n currentFirstChild = currentFirstChild.sibling;\n }\n newChild.type === REACT_FRAGMENT_TYPE\n ? ((lanes = createFiberFromFragment(\n newChild.props.children,\n returnFiber.mode,\n lanes,\n newChild.key\n )),\n coerceRef(lanes, newChild),\n (lanes.return = returnFiber),\n (returnFiber = lanes))\n : ((lanes = createFiberFromTypeAndProps(\n newChild.type,\n newChild.key,\n newChild.props,\n null,\n returnFiber.mode,\n lanes\n )),\n coerceRef(lanes, newChild),\n (lanes.return = returnFiber),\n (returnFiber = lanes));\n }\n return placeSingleChild(returnFiber);\n case REACT_PORTAL_TYPE:\n a: {\n for (key = newChild.key; null !== currentFirstChild; ) {\n if (currentFirstChild.key === key)\n if (\n 4 === currentFirstChild.tag &&\n currentFirstChild.stateNode.containerInfo ===\n newChild.containerInfo &&\n currentFirstChild.stateNode.implementation ===\n newChild.implementation\n ) {\n deleteRemainingChildren(\n returnFiber,\n currentFirstChild.sibling\n );\n lanes = useFiber(currentFirstChild, newChild.children || []);\n lanes.return = returnFiber;\n returnFiber = lanes;\n break a;\n } else {\n deleteRemainingChildren(returnFiber, currentFirstChild);\n break;\n }\n else deleteChild(returnFiber, currentFirstChild);\n currentFirstChild = currentFirstChild.sibling;\n }\n lanes = createFiberFromPortal(newChild, returnFiber.mode, lanes);\n lanes.return = returnFiber;\n returnFiber = lanes;\n }\n return placeSingleChild(returnFiber);\n case REACT_LAZY_TYPE:\n return (\n (newChild = resolveLazy(newChild)),\n reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n )\n );\n }\n if (isArrayImpl(newChild))\n return reconcileChildrenArray(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n );\n if (getIteratorFn(newChild)) {\n key = getIteratorFn(newChild);\n if (\"function\" !== typeof key) throw Error(formatProdErrorMessage(150));\n newChild = key.call(newChild);\n return reconcileChildrenIterator(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n );\n }\n if (\"function\" === typeof newChild.then)\n return reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n unwrapThenable(newChild),\n lanes\n );\n if (newChild.$$typeof === REACT_CONTEXT_TYPE)\n return reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n readContextDuringReconciliation(returnFiber, newChild),\n lanes\n );\n throwOnInvalidObjectTypeImpl(returnFiber, newChild);\n }\n return (\"string\" === typeof newChild && \"\" !== newChild) ||\n \"number\" === typeof newChild ||\n \"bigint\" === typeof newChild\n ? ((newChild = \"\" + newChild),\n null !== currentFirstChild && 6 === currentFirstChild.tag\n ? (deleteRemainingChildren(returnFiber, currentFirstChild.sibling),\n (lanes = useFiber(currentFirstChild, newChild)),\n (lanes.return = returnFiber),\n (returnFiber = lanes))\n : (deleteRemainingChildren(returnFiber, currentFirstChild),\n (lanes = createFiberFromText(newChild, returnFiber.mode, lanes)),\n (lanes.return = returnFiber),\n (returnFiber = lanes)),\n placeSingleChild(returnFiber))\n : deleteRemainingChildren(returnFiber, currentFirstChild);\n }\n return function (returnFiber, currentFirstChild, newChild, lanes) {\n try {\n thenableIndexCounter$1 = 0;\n var firstChildFiber = reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n );\n thenableState$1 = null;\n return firstChildFiber;\n } catch (x) {\n if (x === SuspenseException || x === SuspenseActionException) throw x;\n var fiber = createFiberImplClass(29, x, null, returnFiber.mode);\n fiber.lanes = lanes;\n fiber.return = returnFiber;\n return fiber;\n } finally {\n }\n };\n}\nvar reconcileChildFibers = createChildReconciler(!0),\n mountChildFibers = createChildReconciler(!1),\n hasForceUpdate = !1;\nfunction initializeUpdateQueue(fiber) {\n fiber.updateQueue = {\n baseState: fiber.memoizedState,\n firstBaseUpdate: null,\n lastBaseUpdate: null,\n shared: { pending: null, lanes: 0, hiddenCallbacks: null },\n callbacks: null\n };\n}\nfunction cloneUpdateQueue(current, workInProgress) {\n current = current.updateQueue;\n workInProgress.updateQueue === current &&\n (workInProgress.updateQueue = {\n baseState: current.baseState,\n firstBaseUpdate: current.firstBaseUpdate,\n lastBaseUpdate: current.lastBaseUpdate,\n shared: current.shared,\n callbacks: null\n });\n}\nfunction createUpdate(lane) {\n return { lane: lane, tag: 0, payload: null, callback: null, next: null };\n}\nfunction enqueueUpdate(fiber, update, lane) {\n var updateQueue = fiber.updateQueue;\n if (null === updateQueue) return null;\n updateQueue = updateQueue.shared;\n if (0 !== (executionContext & 2)) {\n var pending = updateQueue.pending;\n null === pending\n ? (update.next = update)\n : ((update.next = pending.next), (pending.next = update));\n updateQueue.pending = update;\n update = getRootForUpdatedFiber(fiber);\n markUpdateLaneFromFiberToRoot(fiber, null, lane);\n return update;\n }\n enqueueUpdate$1(fiber, updateQueue, update, lane);\n return getRootForUpdatedFiber(fiber);\n}\nfunction entangleTransitions(root, fiber, lane) {\n fiber = fiber.updateQueue;\n if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane & 4194048))) {\n var queueLanes = fiber.lanes;\n queueLanes &= root.pendingLanes;\n lane |= queueLanes;\n fiber.lanes = lane;\n markRootEntangled(root, lane);\n }\n}\nfunction enqueueCapturedUpdate(workInProgress, capturedUpdate) {\n var queue = workInProgress.updateQueue,\n current = workInProgress.alternate;\n if (\n null !== current &&\n ((current = current.updateQueue), queue === current)\n ) {\n var newFirst = null,\n newLast = null;\n queue = queue.firstBaseUpdate;\n if (null !== queue) {\n do {\n var clone = {\n lane: queue.lane,\n tag: queue.tag,\n payload: queue.payload,\n callback: null,\n next: null\n };\n null === newLast\n ? (newFirst = newLast = clone)\n : (newLast = newLast.next = clone);\n queue = queue.next;\n } while (null !== queue);\n null === newLast\n ? (newFirst = newLast = capturedUpdate)\n : (newLast = newLast.next = capturedUpdate);\n } else newFirst = newLast = capturedUpdate;\n queue = {\n baseState: current.baseState,\n firstBaseUpdate: newFirst,\n lastBaseUpdate: newLast,\n shared: current.shared,\n callbacks: current.callbacks\n };\n workInProgress.updateQueue = queue;\n return;\n }\n workInProgress = queue.lastBaseUpdate;\n null === workInProgress\n ? (queue.firstBaseUpdate = capturedUpdate)\n : (workInProgress.next = capturedUpdate);\n queue.lastBaseUpdate = capturedUpdate;\n}\nvar didReadFromEntangledAsyncAction = !1;\nfunction suspendIfUpdateReadFromEntangledAsyncAction() {\n if (didReadFromEntangledAsyncAction) {\n var entangledActionThenable = currentEntangledActionThenable;\n if (null !== entangledActionThenable) throw entangledActionThenable;\n }\n}\nfunction processUpdateQueue(\n workInProgress$jscomp$0,\n props,\n instance$jscomp$0,\n renderLanes\n) {\n didReadFromEntangledAsyncAction = !1;\n var queue = workInProgress$jscomp$0.updateQueue;\n hasForceUpdate = !1;\n var firstBaseUpdate = queue.firstBaseUpdate,\n lastBaseUpdate = queue.lastBaseUpdate,\n pendingQueue = queue.shared.pending;\n if (null !== pendingQueue) {\n queue.shared.pending = null;\n var lastPendingUpdate = pendingQueue,\n firstPendingUpdate = lastPendingUpdate.next;\n lastPendingUpdate.next = null;\n null === lastBaseUpdate\n ? (firstBaseUpdate = firstPendingUpdate)\n : (lastBaseUpdate.next = firstPendingUpdate);\n lastBaseUpdate = lastPendingUpdate;\n var current = workInProgress$jscomp$0.alternate;\n null !== current &&\n ((current = current.updateQueue),\n (pendingQueue = current.lastBaseUpdate),\n pendingQueue !== lastBaseUpdate &&\n (null === pendingQueue\n ? (current.firstBaseUpdate = firstPendingUpdate)\n : (pendingQueue.next = firstPendingUpdate),\n (current.lastBaseUpdate = lastPendingUpdate)));\n }\n if (null !== firstBaseUpdate) {\n var newState = queue.baseState;\n lastBaseUpdate = 0;\n current = firstPendingUpdate = lastPendingUpdate = null;\n pendingQueue = firstBaseUpdate;\n do {\n var updateLane = pendingQueue.lane & -536870913,\n isHiddenUpdate = updateLane !== pendingQueue.lane;\n if (\n isHiddenUpdate\n ? (workInProgressRootRenderLanes & updateLane) === updateLane\n : (renderLanes & updateLane) === updateLane\n ) {\n 0 !== updateLane &&\n updateLane === currentEntangledLane &&\n (didReadFromEntangledAsyncAction = !0);\n null !== current &&\n (current = current.next =\n {\n lane: 0,\n tag: pendingQueue.tag,\n payload: pendingQueue.payload,\n callback: null,\n next: null\n });\n a: {\n var workInProgress = workInProgress$jscomp$0,\n update = pendingQueue;\n updateLane = props;\n var instance = instance$jscomp$0;\n switch (update.tag) {\n case 1:\n workInProgress = update.payload;\n if (\"function\" === typeof workInProgress) {\n newState = workInProgress.call(instance, newState, updateLane);\n break a;\n }\n newState = workInProgress;\n break a;\n case 3:\n workInProgress.flags = (workInProgress.flags & -65537) | 128;\n case 0:\n workInProgress = update.payload;\n updateLane =\n \"function\" === typeof workInProgress\n ? workInProgress.call(instance, newState, updateLane)\n : workInProgress;\n if (null === updateLane || void 0 === updateLane) break a;\n newState = assign({}, newState, updateLane);\n break a;\n case 2:\n hasForceUpdate = !0;\n }\n }\n updateLane = pendingQueue.callback;\n null !== updateLane &&\n ((workInProgress$jscomp$0.flags |= 64),\n isHiddenUpdate && (workInProgress$jscomp$0.flags |= 8192),\n (isHiddenUpdate = queue.callbacks),\n null === isHiddenUpdate\n ? (queue.callbacks = [updateLane])\n : isHiddenUpdate.push(updateLane));\n } else\n (isHiddenUpdate = {\n lane: updateLane,\n tag: pendingQueue.tag,\n payload: pendingQueue.payload,\n callback: pendingQueue.callback,\n next: null\n }),\n null === current\n ? ((firstPendingUpdate = current = isHiddenUpdate),\n (lastPendingUpdate = newState))\n : (current = current.next = isHiddenUpdate),\n (lastBaseUpdate |= updateLane);\n pendingQueue = pendingQueue.next;\n if (null === pendingQueue)\n if (((pendingQueue = queue.shared.pending), null === pendingQueue))\n break;\n else\n (isHiddenUpdate = pendingQueue),\n (pendingQueue = isHiddenUpdate.next),\n (isHiddenUpdate.next = null),\n (queue.lastBaseUpdate = isHiddenUpdate),\n (queue.shared.pending = null);\n } while (1);\n null === current && (lastPendingUpdate = newState);\n queue.baseState = lastPendingUpdate;\n queue.firstBaseUpdate = firstPendingUpdate;\n queue.lastBaseUpdate = current;\n null === firstBaseUpdate && (queue.shared.lanes = 0);\n workInProgressRootSkippedLanes |= lastBaseUpdate;\n workInProgress$jscomp$0.lanes = lastBaseUpdate;\n workInProgress$jscomp$0.memoizedState = newState;\n }\n}\nfunction callCallback(callback, context) {\n if (\"function\" !== typeof callback)\n throw Error(formatProdErrorMessage(191, callback));\n callback.call(context);\n}\nfunction commitCallbacks(updateQueue, context) {\n var callbacks = updateQueue.callbacks;\n if (null !== callbacks)\n for (\n updateQueue.callbacks = null, updateQueue = 0;\n updateQueue < callbacks.length;\n updateQueue++\n )\n callCallback(callbacks[updateQueue], context);\n}\nvar currentTreeHiddenStackCursor = createCursor(null),\n prevEntangledRenderLanesCursor = createCursor(0);\nfunction pushHiddenContext(fiber, context) {\n fiber = entangledRenderLanes;\n push(prevEntangledRenderLanesCursor, fiber);\n push(currentTreeHiddenStackCursor, context);\n entangledRenderLanes = fiber | context.baseLanes;\n}\nfunction reuseHiddenContextOnStack() {\n push(prevEntangledRenderLanesCursor, entangledRenderLanes);\n push(currentTreeHiddenStackCursor, currentTreeHiddenStackCursor.current);\n}\nfunction popHiddenContext() {\n entangledRenderLanes = prevEntangledRenderLanesCursor.current;\n pop(currentTreeHiddenStackCursor);\n pop(prevEntangledRenderLanesCursor);\n}\nvar suspenseHandlerStackCursor = createCursor(null),\n shellBoundary = null;\nfunction pushPrimaryTreeSuspenseHandler(handler) {\n var current = handler.alternate;\n push(suspenseStackCursor, suspenseStackCursor.current & 1);\n push(suspenseHandlerStackCursor, handler);\n null === shellBoundary &&\n (null === current || null !== currentTreeHiddenStackCursor.current\n ? (shellBoundary = handler)\n : null !== current.memoizedState && (shellBoundary = handler));\n}\nfunction pushDehydratedActivitySuspenseHandler(fiber) {\n push(suspenseStackCursor, suspenseStackCursor.current);\n push(suspenseHandlerStackCursor, fiber);\n null === shellBoundary && (shellBoundary = fiber);\n}\nfunction pushOffscreenSuspenseHandler(fiber) {\n 22 === fiber.tag\n ? (push(suspenseStackCursor, suspenseStackCursor.current),\n push(suspenseHandlerStackCursor, fiber),\n null === shellBoundary && (shellBoundary = fiber))\n : reuseSuspenseHandlerOnStack();\n}\nfunction reuseSuspenseHandlerOnStack() {\n push(suspenseStackCursor, suspenseStackCursor.current);\n push(suspenseHandlerStackCursor, suspenseHandlerStackCursor.current);\n}\nfunction popSuspenseHandler(fiber) {\n pop(suspenseHandlerStackCursor);\n shellBoundary === fiber && (shellBoundary = null);\n pop(suspenseStackCursor);\n}\nvar suspenseStackCursor = createCursor(0);\nfunction pushSuspenseListContext(fiber, newContext) {\n push(suspenseHandlerStackCursor, suspenseHandlerStackCursor.current);\n push(suspenseStackCursor, newContext);\n}\nfunction popSuspenseListContext(fiber) {\n pop(suspenseStackCursor);\n pop(suspenseHandlerStackCursor);\n shellBoundary === fiber && (shellBoundary = null);\n}\nfunction findFirstSuspended(row) {\n for (var node = row; null !== node; ) {\n if (13 === node.tag) {\n var state = node.memoizedState;\n if (\n null !== state &&\n ((state = state.dehydrated),\n null === state ||\n isSuspenseInstancePending(state) ||\n isSuspenseInstanceFallback(state))\n )\n return node;\n } else if (\n 19 === node.tag &&\n \"independent\" !== node.memoizedProps.revealOrder\n ) {\n if (0 !== (node.flags & 128)) return node;\n } else if (null !== node.child) {\n node.child.return = node;\n node = node.child;\n continue;\n }\n if (node === row) break;\n for (; null === node.sibling; ) {\n if (null === node.return || node.return === row) return null;\n node = node.return;\n }\n node.sibling.return = node.return;\n node = node.sibling;\n }\n return null;\n}\nvar renderLanes = 0,\n currentlyRenderingFiber = null,\n currentHook = null,\n workInProgressHook = null,\n didScheduleRenderPhaseUpdate = !1,\n didScheduleRenderPhaseUpdateDuringThisPass = !1,\n shouldDoubleInvokeUserFnsInHooksDEV = !1,\n localIdCounter = 0,\n thenableIndexCounter = 0,\n thenableState = null,\n globalClientIdCounter = 0;\nfunction throwInvalidHookError() {\n throw Error(formatProdErrorMessage(321));\n}\nfunction areHookInputsEqual(nextDeps, prevDeps) {\n if (null === prevDeps) return !1;\n for (var i = 0; i < prevDeps.length && i < nextDeps.length; i++)\n if (!objectIs(nextDeps[i], prevDeps[i])) return !1;\n return !0;\n}\nfunction renderWithHooks(\n current,\n workInProgress,\n Component,\n props,\n secondArg,\n nextRenderLanes\n) {\n renderLanes = nextRenderLanes;\n currentlyRenderingFiber = workInProgress;\n workInProgress.memoizedState = null;\n workInProgress.updateQueue = null;\n workInProgress.lanes = 0;\n ReactSharedInternals.H =\n null === current || null === current.memoizedState\n ? HooksDispatcherOnMount\n : HooksDispatcherOnUpdate;\n shouldDoubleInvokeUserFnsInHooksDEV = !1;\n nextRenderLanes = Component(props, secondArg);\n shouldDoubleInvokeUserFnsInHooksDEV = !1;\n didScheduleRenderPhaseUpdateDuringThisPass &&\n (nextRenderLanes = renderWithHooksAgain(\n workInProgress,\n Component,\n props,\n secondArg\n ));\n finishRenderingHooks(current);\n return nextRenderLanes;\n}\nfunction finishRenderingHooks(current) {\n ReactSharedInternals.H = ContextOnlyDispatcher;\n var didRenderTooFewHooks = null !== currentHook && null !== currentHook.next;\n renderLanes = 0;\n workInProgressHook = currentHook = currentlyRenderingFiber = null;\n didScheduleRenderPhaseUpdate = !1;\n thenableIndexCounter = 0;\n thenableState = null;\n if (didRenderTooFewHooks) throw Error(formatProdErrorMessage(300));\n null === current ||\n didReceiveUpdate ||\n ((current = current.dependencies),\n null !== current &&\n checkIfContextChanged(current) &&\n (didReceiveUpdate = !0));\n}\nfunction renderWithHooksAgain(workInProgress, Component, props, secondArg) {\n currentlyRenderingFiber = workInProgress;\n var numberOfReRenders = 0;\n do {\n didScheduleRenderPhaseUpdateDuringThisPass && (thenableState = null);\n thenableIndexCounter = 0;\n didScheduleRenderPhaseUpdateDuringThisPass = !1;\n if (25 <= numberOfReRenders) throw Error(formatProdErrorMessage(301));\n numberOfReRenders += 1;\n workInProgressHook = currentHook = null;\n if (null != workInProgress.updateQueue) {\n var children = workInProgress.updateQueue;\n children.lastEffect = null;\n children.events = null;\n children.stores = null;\n null != children.memoCache && (children.memoCache.index = 0);\n }\n ReactSharedInternals.H = HooksDispatcherOnRerender;\n children = Component(props, secondArg);\n } while (didScheduleRenderPhaseUpdateDuringThisPass);\n return children;\n}\nfunction TransitionAwareHostComponent() {\n var dispatcher = ReactSharedInternals.H,\n maybeThenable = dispatcher.useState()[0];\n maybeThenable =\n \"function\" === typeof maybeThenable.then\n ? useThenable(maybeThenable)\n : maybeThenable;\n dispatcher = dispatcher.useState()[0];\n (null !== currentHook ? currentHook.memoizedState : null) !== dispatcher &&\n (currentlyRenderingFiber.flags |= 1024);\n return maybeThenable;\n}\nfunction checkDidRenderIdHook() {\n var didRenderIdHook = 0 !== localIdCounter;\n localIdCounter = 0;\n return didRenderIdHook;\n}\nfunction bailoutHooks(current, workInProgress, lanes) {\n workInProgress.updateQueue = current.updateQueue;\n workInProgress.flags &= -2053;\n current.lanes &= ~lanes;\n}\nfunction resetHooksOnUnwind(workInProgress) {\n if (didScheduleRenderPhaseUpdate) {\n for (\n workInProgress = workInProgress.memoizedState;\n null !== workInProgress;\n\n ) {\n var queue = workInProgress.queue;\n null !== queue && (queue.pending = null);\n workInProgress = workInProgress.next;\n }\n didScheduleRenderPhaseUpdate = !1;\n }\n renderLanes = 0;\n workInProgressHook = currentHook = currentlyRenderingFiber = null;\n didScheduleRenderPhaseUpdateDuringThisPass = !1;\n thenableIndexCounter = localIdCounter = 0;\n thenableState = null;\n}\nfunction mountWorkInProgressHook() {\n var hook = {\n memoizedState: null,\n baseState: null,\n baseQueue: null,\n queue: null,\n next: null\n };\n null === workInProgressHook\n ? (currentlyRenderingFiber.memoizedState = workInProgressHook = hook)\n : (workInProgressHook = workInProgressHook.next = hook);\n return workInProgressHook;\n}\nfunction updateWorkInProgressHook() {\n if (null === currentHook) {\n var nextCurrentHook = currentlyRenderingFiber.alternate;\n nextCurrentHook =\n null !== nextCurrentHook ? nextCurrentHook.memoizedState : null;\n } else nextCurrentHook = currentHook.next;\n var nextWorkInProgressHook =\n null === workInProgressHook\n ? currentlyRenderingFiber.memoizedState\n : workInProgressHook.next;\n if (null !== nextWorkInProgressHook)\n (workInProgressHook = nextWorkInProgressHook),\n (currentHook = nextCurrentHook);\n else {\n if (null === nextCurrentHook) {\n if (null === currentlyRenderingFiber.alternate)\n throw Error(formatProdErrorMessage(467));\n throw Error(formatProdErrorMessage(310));\n }\n currentHook = nextCurrentHook;\n nextCurrentHook = {\n memoizedState: currentHook.memoizedState,\n baseState: currentHook.baseState,\n baseQueue: currentHook.baseQueue,\n queue: currentHook.queue,\n next: null\n };\n null === workInProgressHook\n ? (currentlyRenderingFiber.memoizedState = workInProgressHook =\n nextCurrentHook)\n : (workInProgressHook = workInProgressHook.next = nextCurrentHook);\n }\n return workInProgressHook;\n}\nfunction createFunctionComponentUpdateQueue() {\n return { lastEffect: null, events: null, stores: null, memoCache: null };\n}\nfunction useThenable(thenable) {\n var index = thenableIndexCounter;\n thenableIndexCounter += 1;\n null === thenableState && (thenableState = []);\n thenable = trackUsedThenable(thenableState, thenable, index);\n index = currentlyRenderingFiber;\n null ===\n (null === workInProgressHook\n ? index.memoizedState\n : workInProgressHook.next) &&\n ((index = index.alternate),\n (ReactSharedInternals.H =\n null === index || null === index.memoizedState\n ? HooksDispatcherOnMount\n : HooksDispatcherOnUpdate));\n return thenable;\n}\nfunction use(usable) {\n if (null !== usable && \"object\" === typeof usable) {\n if (\"function\" === typeof usable.then) return useThenable(usable);\n if (usable.$$typeof === REACT_CONTEXT_TYPE) return readContext(usable);\n }\n throw Error(formatProdErrorMessage(438, String(usable)));\n}\nfunction useMemoCache(size) {\n var memoCache = null,\n updateQueue = currentlyRenderingFiber.updateQueue;\n null !== updateQueue && (memoCache = updateQueue.memoCache);\n if (null == memoCache) {\n var current = currentlyRenderingFiber.alternate;\n null !== current &&\n ((current = current.updateQueue),\n null !== current &&\n ((current = current.memoCache),\n null != current &&\n (memoCache = {\n data: current.data.map(function (array) {\n return array.slice();\n }),\n index: 0\n })));\n }\n null == memoCache && (memoCache = { data: [], index: 0 });\n null === updateQueue &&\n ((updateQueue = createFunctionComponentUpdateQueue()),\n (currentlyRenderingFiber.updateQueue = updateQueue));\n updateQueue.memoCache = memoCache;\n updateQueue = memoCache.data[memoCache.index];\n if (void 0 === updateQueue)\n for (\n updateQueue = memoCache.data[memoCache.index] = Array(size), current = 0;\n current < size;\n current++\n )\n updateQueue[current] = REACT_MEMO_CACHE_SENTINEL;\n memoCache.index++;\n return updateQueue;\n}\nfunction basicStateReducer(state, action) {\n return \"function\" === typeof action ? action(state) : action;\n}\nfunction updateReducer(reducer) {\n var hook = updateWorkInProgressHook();\n return updateReducerImpl(hook, currentHook, reducer);\n}\nfunction updateReducerImpl(hook, current, reducer) {\n var queue = hook.queue;\n if (null === queue) throw Error(formatProdErrorMessage(311));\n queue.lastRenderedReducer = reducer;\n var baseQueue = hook.baseQueue,\n pendingQueue = queue.pending;\n if (null !== pendingQueue) {\n if (null !== baseQueue) {\n var baseFirst = baseQueue.next;\n baseQueue.next = pendingQueue.next;\n pendingQueue.next = baseFirst;\n }\n current.baseQueue = baseQueue = pendingQueue;\n queue.pending = null;\n }\n pendingQueue = hook.baseState;\n if (null === baseQueue) hook.memoizedState = pendingQueue;\n else {\n current = baseQueue.next;\n var newBaseQueueFirst = (baseFirst = null),\n newBaseQueueLast = null,\n update = current,\n didReadFromEntangledAsyncAction$62 = !1;\n do {\n var updateLane = update.lane & -536870913;\n if (\n updateLane !== update.lane\n ? (workInProgressRootRenderLanes & updateLane) === updateLane\n : (renderLanes & updateLane) === updateLane\n ) {\n var revertLane = update.revertLane;\n if (0 === revertLane)\n null !== newBaseQueueLast &&\n (newBaseQueueLast = newBaseQueueLast.next =\n {\n lane: 0,\n revertLane: 0,\n gesture: null,\n action: update.action,\n hasEagerState: update.hasEagerState,\n eagerState: update.eagerState,\n next: null\n }),\n updateLane === currentEntangledLane &&\n (didReadFromEntangledAsyncAction$62 = !0);\n else if ((renderLanes & revertLane) === revertLane) {\n update = update.next;\n revertLane === currentEntangledLane &&\n (didReadFromEntangledAsyncAction$62 = !0);\n continue;\n } else\n (updateLane = {\n lane: 0,\n revertLane: update.revertLane,\n gesture: null,\n action: update.action,\n hasEagerState: update.hasEagerState,\n eagerState: update.eagerState,\n next: null\n }),\n null === newBaseQueueLast\n ? ((newBaseQueueFirst = newBaseQueueLast = updateLane),\n (baseFirst = pendingQueue))\n : (newBaseQueueLast = newBaseQueueLast.next = updateLane),\n (currentlyRenderingFiber.lanes |= revertLane),\n (workInProgressRootSkippedLanes |= revertLane);\n updateLane = update.action;\n shouldDoubleInvokeUserFnsInHooksDEV &&\n reducer(pendingQueue, updateLane);\n pendingQueue = update.hasEagerState\n ? update.eagerState\n : reducer(pendingQueue, updateLane);\n } else\n (revertLane = {\n lane: updateLane,\n revertLane: update.revertLane,\n gesture: update.gesture,\n action: update.action,\n hasEagerState: update.hasEagerState,\n eagerState: update.eagerState,\n next: null\n }),\n null === newBaseQueueLast\n ? ((newBaseQueueFirst = newBaseQueueLast = revertLane),\n (baseFirst = pendingQueue))\n : (newBaseQueueLast = newBaseQueueLast.next = revertLane),\n (currentlyRenderingFiber.lanes |= updateLane),\n (workInProgressRootSkippedLanes |= updateLane);\n update = update.next;\n } while (null !== update && update !== current);\n null === newBaseQueueLast\n ? (baseFirst = pendingQueue)\n : (newBaseQueueLast.next = newBaseQueueFirst);\n if (\n !objectIs(pendingQueue, hook.memoizedState) &&\n ((didReceiveUpdate = !0),\n didReadFromEntangledAsyncAction$62 &&\n ((reducer = currentEntangledActionThenable), null !== reducer))\n )\n throw reducer;\n hook.memoizedState = pendingQueue;\n hook.baseState = baseFirst;\n hook.baseQueue = newBaseQueueLast;\n queue.lastRenderedState = pendingQueue;\n }\n null === baseQueue && (queue.lanes = 0);\n return [hook.memoizedState, queue.dispatch];\n}\nfunction rerenderReducer(reducer) {\n var hook = updateWorkInProgressHook(),\n queue = hook.queue;\n if (null === queue) throw Error(formatProdErrorMessage(311));\n queue.lastRenderedReducer = reducer;\n var dispatch = queue.dispatch,\n lastRenderPhaseUpdate = queue.pending,\n newState = hook.memoizedState;\n if (null !== lastRenderPhaseUpdate) {\n queue.pending = null;\n var update = (lastRenderPhaseUpdate = lastRenderPhaseUpdate.next);\n do (newState = reducer(newState, update.action)), (update = update.next);\n while (update !== lastRenderPhaseUpdate);\n objectIs(newState, hook.memoizedState) || (didReceiveUpdate = !0);\n hook.memoizedState = newState;\n null === hook.baseQueue && (hook.baseState = newState);\n queue.lastRenderedState = newState;\n }\n return [newState, dispatch];\n}\nfunction updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {\n var fiber = currentlyRenderingFiber,\n hook = updateWorkInProgressHook(),\n isHydrating$jscomp$0 = isHydrating;\n if (isHydrating$jscomp$0) {\n if (void 0 === getServerSnapshot) throw Error(formatProdErrorMessage(407));\n getServerSnapshot = getServerSnapshot();\n } else getServerSnapshot = getSnapshot();\n var snapshotChanged = !objectIs(\n (currentHook || hook).memoizedState,\n getServerSnapshot\n );\n snapshotChanged &&\n ((hook.memoizedState = getServerSnapshot), (didReceiveUpdate = !0));\n hook = hook.queue;\n updateEffect(subscribeToStore.bind(null, fiber, hook, subscribe), [\n subscribe\n ]);\n if (\n hook.getSnapshot !== getSnapshot ||\n snapshotChanged ||\n (null !== workInProgressHook && workInProgressHook.memoizedState.tag & 1)\n ) {\n fiber.flags |= 2048;\n pushSimpleEffect(\n 9,\n { destroy: void 0 },\n updateStoreInstance.bind(\n null,\n fiber,\n hook,\n getServerSnapshot,\n getSnapshot\n ),\n null\n );\n if (null === workInProgressRoot) throw Error(formatProdErrorMessage(349));\n isHydrating$jscomp$0 ||\n 0 !== (renderLanes & 127) ||\n pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);\n }\n return getServerSnapshot;\n}\nfunction pushStoreConsistencyCheck(fiber, getSnapshot, renderedSnapshot) {\n fiber.flags |= 16384;\n fiber = { getSnapshot: getSnapshot, value: renderedSnapshot };\n getSnapshot = currentlyRenderingFiber.updateQueue;\n null === getSnapshot\n ? ((getSnapshot = createFunctionComponentUpdateQueue()),\n (currentlyRenderingFiber.updateQueue = getSnapshot),\n (getSnapshot.stores = [fiber]))\n : ((renderedSnapshot = getSnapshot.stores),\n null === renderedSnapshot\n ? (getSnapshot.stores = [fiber])\n : renderedSnapshot.push(fiber));\n}\nfunction updateStoreInstance(fiber, inst, nextSnapshot, getSnapshot) {\n inst.value = nextSnapshot;\n inst.getSnapshot = getSnapshot;\n checkIfSnapshotChanged(inst) && forceStoreRerender(fiber);\n}\nfunction subscribeToStore(fiber, inst, subscribe) {\n return subscribe(function () {\n checkIfSnapshotChanged(inst) && forceStoreRerender(fiber);\n });\n}\nfunction checkIfSnapshotChanged(inst) {\n var latestGetSnapshot = inst.getSnapshot;\n inst = inst.value;\n try {\n var nextValue = latestGetSnapshot();\n return !objectIs(inst, nextValue);\n } catch (error) {\n return !0;\n }\n}\nfunction forceStoreRerender(fiber) {\n var root = enqueueConcurrentRenderForLane(fiber, 2);\n null !== root && scheduleUpdateOnFiber(root, fiber, 2);\n}\nfunction mountStateImpl(initialState) {\n var hook = mountWorkInProgressHook();\n if (\"function\" === typeof initialState) {\n var initialStateInitializer = initialState;\n initialState = initialStateInitializer();\n if (shouldDoubleInvokeUserFnsInHooksDEV) {\n setIsStrictModeForDevtools(!0);\n try {\n initialStateInitializer();\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n }\n hook.memoizedState = hook.baseState = initialState;\n hook.queue = {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: basicStateReducer,\n lastRenderedState: initialState\n };\n return hook;\n}\nfunction updateOptimisticImpl(hook, current, passthrough, reducer) {\n hook.baseState = passthrough;\n return updateReducerImpl(\n hook,\n currentHook,\n \"function\" === typeof reducer ? reducer : basicStateReducer\n );\n}\nfunction dispatchActionState(\n fiber,\n actionQueue,\n setPendingState,\n setState,\n payload\n) {\n if (isRenderPhaseUpdate(fiber)) throw Error(formatProdErrorMessage(485));\n fiber = actionQueue.action;\n if (null !== fiber) {\n var actionNode = {\n payload: payload,\n action: fiber,\n next: null,\n isTransition: !0,\n status: \"pending\",\n value: null,\n reason: null,\n listeners: [],\n then: function (listener) {\n actionNode.listeners.push(listener);\n }\n };\n null !== ReactSharedInternals.T\n ? setPendingState(!0)\n : (actionNode.isTransition = !1);\n setState(actionNode);\n setPendingState = actionQueue.pending;\n null === setPendingState\n ? ((actionNode.next = actionQueue.pending = actionNode),\n runActionStateAction(actionQueue, actionNode))\n : ((actionNode.next = setPendingState.next),\n (actionQueue.pending = setPendingState.next = actionNode));\n }\n}\nfunction runActionStateAction(actionQueue, node) {\n var action = node.action,\n payload = node.payload,\n prevState = actionQueue.state;\n if (node.isTransition) {\n var prevTransition = ReactSharedInternals.T,\n currentTransition = {};\n currentTransition.types =\n null !== prevTransition ? prevTransition.types : null;\n ReactSharedInternals.T = currentTransition;\n try {\n var returnValue = action(prevState, payload),\n onStartTransitionFinish = ReactSharedInternals.S;\n null !== onStartTransitionFinish &&\n onStartTransitionFinish(currentTransition, returnValue);\n handleActionReturnValue(actionQueue, node, returnValue);\n } catch (error) {\n onActionError(actionQueue, node, error);\n } finally {\n null !== prevTransition &&\n null !== currentTransition.types &&\n (prevTransition.types = currentTransition.types),\n (ReactSharedInternals.T = prevTransition);\n }\n } else\n try {\n (prevTransition = action(prevState, payload)),\n handleActionReturnValue(actionQueue, node, prevTransition);\n } catch (error$68) {\n onActionError(actionQueue, node, error$68);\n }\n}\nfunction handleActionReturnValue(actionQueue, node, returnValue) {\n null !== returnValue &&\n \"object\" === typeof returnValue &&\n \"function\" === typeof returnValue.then\n ? returnValue.then(\n function (nextState) {\n onActionSuccess(actionQueue, node, nextState);\n },\n function (error) {\n return onActionError(actionQueue, node, error);\n }\n )\n : onActionSuccess(actionQueue, node, returnValue);\n}\nfunction onActionSuccess(actionQueue, actionNode, nextState) {\n actionNode.status = \"fulfilled\";\n actionNode.value = nextState;\n notifyActionListeners(actionNode);\n actionQueue.state = nextState;\n actionNode = actionQueue.pending;\n null !== actionNode &&\n ((nextState = actionNode.next),\n nextState === actionNode\n ? (actionQueue.pending = null)\n : ((nextState = nextState.next),\n (actionNode.next = nextState),\n runActionStateAction(actionQueue, nextState)));\n}\nfunction onActionError(actionQueue, actionNode, error) {\n var last = actionQueue.pending;\n actionQueue.pending = null;\n if (null !== last) {\n last = last.next;\n do\n (actionNode.status = \"rejected\"),\n (actionNode.reason = error),\n notifyActionListeners(actionNode),\n (actionNode = actionNode.next);\n while (actionNode !== last);\n }\n actionQueue.action = null;\n}\nfunction notifyActionListeners(actionNode) {\n actionNode = actionNode.listeners;\n for (var i = 0; i < actionNode.length; i++) (0, actionNode[i])();\n}\nfunction actionStateReducer(oldState, newState) {\n return newState;\n}\nfunction mountActionState(action, initialStateProp) {\n if (isHydrating) {\n var ssrFormState = workInProgressRoot.formState;\n if (null !== ssrFormState) {\n a: {\n var JSCompiler_inline_result = currentlyRenderingFiber;\n if (isHydrating) {\n if (nextHydratableInstance) {\n b: {\n var JSCompiler_inline_result$jscomp$0 = nextHydratableInstance;\n for (\n var inRootOrSingleton = rootOrSingletonContext;\n 8 !== JSCompiler_inline_result$jscomp$0.nodeType;\n\n ) {\n if (!inRootOrSingleton) {\n JSCompiler_inline_result$jscomp$0 = null;\n break b;\n }\n JSCompiler_inline_result$jscomp$0 = getNextHydratable(\n JSCompiler_inline_result$jscomp$0.nextSibling\n );\n if (null === JSCompiler_inline_result$jscomp$0) {\n JSCompiler_inline_result$jscomp$0 = null;\n break b;\n }\n }\n inRootOrSingleton = JSCompiler_inline_result$jscomp$0.data;\n JSCompiler_inline_result$jscomp$0 =\n \"F!\" === inRootOrSingleton || \"F\" === inRootOrSingleton\n ? JSCompiler_inline_result$jscomp$0\n : null;\n }\n if (JSCompiler_inline_result$jscomp$0) {\n nextHydratableInstance = getNextHydratable(\n JSCompiler_inline_result$jscomp$0.nextSibling\n );\n JSCompiler_inline_result =\n \"F!\" === JSCompiler_inline_result$jscomp$0.data;\n break a;\n }\n }\n throwOnHydrationMismatch(JSCompiler_inline_result);\n }\n JSCompiler_inline_result = !1;\n }\n JSCompiler_inline_result && (initialStateProp = ssrFormState[0]);\n }\n }\n ssrFormState = mountWorkInProgressHook();\n ssrFormState.memoizedState = ssrFormState.baseState = initialStateProp;\n JSCompiler_inline_result = {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: actionStateReducer,\n lastRenderedState: initialStateProp\n };\n ssrFormState.queue = JSCompiler_inline_result;\n ssrFormState = dispatchSetState.bind(\n null,\n currentlyRenderingFiber,\n JSCompiler_inline_result\n );\n JSCompiler_inline_result.dispatch = ssrFormState;\n JSCompiler_inline_result = mountStateImpl(!1);\n inRootOrSingleton = dispatchOptimisticSetState.bind(\n null,\n currentlyRenderingFiber,\n !1,\n JSCompiler_inline_result.queue\n );\n JSCompiler_inline_result = mountWorkInProgressHook();\n JSCompiler_inline_result$jscomp$0 = {\n state: initialStateProp,\n dispatch: null,\n action: action,\n pending: null\n };\n JSCompiler_inline_result.queue = JSCompiler_inline_result$jscomp$0;\n ssrFormState = dispatchActionState.bind(\n null,\n currentlyRenderingFiber,\n JSCompiler_inline_result$jscomp$0,\n inRootOrSingleton,\n ssrFormState\n );\n JSCompiler_inline_result$jscomp$0.dispatch = ssrFormState;\n JSCompiler_inline_result.memoizedState = action;\n return [initialStateProp, ssrFormState, !1];\n}\nfunction updateActionState(action) {\n var stateHook = updateWorkInProgressHook();\n return updateActionStateImpl(stateHook, currentHook, action);\n}\nfunction updateActionStateImpl(stateHook, currentStateHook, action) {\n currentStateHook = updateReducerImpl(\n stateHook,\n currentStateHook,\n actionStateReducer\n )[0];\n stateHook = updateReducer(basicStateReducer)[0];\n if (\n \"object\" === typeof currentStateHook &&\n null !== currentStateHook &&\n \"function\" === typeof currentStateHook.then\n )\n try {\n var state = useThenable(currentStateHook);\n } catch (x) {\n if (x === SuspenseException) throw SuspenseActionException;\n throw x;\n }\n else state = currentStateHook;\n currentStateHook = updateWorkInProgressHook();\n var actionQueue = currentStateHook.queue,\n dispatch = actionQueue.dispatch;\n action !== currentStateHook.memoizedState &&\n ((currentlyRenderingFiber.flags |= 2048),\n pushSimpleEffect(\n 9,\n { destroy: void 0 },\n actionStateActionEffect.bind(null, actionQueue, action),\n null\n ));\n return [state, dispatch, stateHook];\n}\nfunction actionStateActionEffect(actionQueue, action) {\n actionQueue.action = action;\n}\nfunction rerenderActionState(action) {\n var stateHook = updateWorkInProgressHook(),\n currentStateHook = currentHook;\n if (null !== currentStateHook)\n return updateActionStateImpl(stateHook, currentStateHook, action);\n updateWorkInProgressHook();\n stateHook = stateHook.memoizedState;\n currentStateHook = updateWorkInProgressHook();\n var dispatch = currentStateHook.queue.dispatch;\n currentStateHook.memoizedState = action;\n return [stateHook, dispatch, !1];\n}\nfunction pushSimpleEffect(tag, inst, create, deps) {\n tag = { tag: tag, create: create, deps: deps, inst: inst, next: null };\n inst = currentlyRenderingFiber.updateQueue;\n null === inst &&\n ((inst = createFunctionComponentUpdateQueue()),\n (currentlyRenderingFiber.updateQueue = inst));\n create = inst.lastEffect;\n null === create\n ? (inst.lastEffect = tag.next = tag)\n : ((deps = create.next),\n (create.next = tag),\n (tag.next = deps),\n (inst.lastEffect = tag));\n return tag;\n}\nfunction updateRef() {\n return updateWorkInProgressHook().memoizedState;\n}\nfunction mountEffectImpl(fiberFlags, hookFlags, create, deps) {\n var hook = mountWorkInProgressHook();\n currentlyRenderingFiber.flags |= fiberFlags;\n hook.memoizedState = pushSimpleEffect(\n 1 | hookFlags,\n { destroy: void 0 },\n create,\n void 0 === deps ? null : deps\n );\n}\nfunction updateEffectImpl(fiberFlags, hookFlags, create, deps) {\n var hook = updateWorkInProgressHook();\n deps = void 0 === deps ? null : deps;\n var inst = hook.memoizedState.inst;\n null !== currentHook &&\n null !== deps &&\n areHookInputsEqual(deps, currentHook.memoizedState.deps)\n ? (hook.memoizedState = pushSimpleEffect(hookFlags, inst, create, deps))\n : ((currentlyRenderingFiber.flags |= fiberFlags),\n (hook.memoizedState = pushSimpleEffect(\n 1 | hookFlags,\n inst,\n create,\n deps\n )));\n}\nfunction mountEffect(create, deps) {\n mountEffectImpl(8390656, 8, create, deps);\n}\nfunction updateEffect(create, deps) {\n updateEffectImpl(2048, 8, create, deps);\n}\nfunction useEffectEventImpl(payload) {\n currentlyRenderingFiber.flags |= 4;\n var componentUpdateQueue = currentlyRenderingFiber.updateQueue;\n if (null === componentUpdateQueue)\n (componentUpdateQueue = createFunctionComponentUpdateQueue()),\n (currentlyRenderingFiber.updateQueue = componentUpdateQueue),\n (componentUpdateQueue.events = [payload]);\n else {\n var events = componentUpdateQueue.events;\n null === events\n ? (componentUpdateQueue.events = [payload])\n : events.push(payload);\n }\n}\nfunction updateEvent(callback) {\n var ref = updateWorkInProgressHook().memoizedState;\n useEffectEventImpl({ ref: ref, nextImpl: callback });\n return function () {\n if (0 !== (executionContext & 2)) throw Error(formatProdErrorMessage(440));\n return ref.impl.apply(void 0, arguments);\n };\n}\nfunction updateInsertionEffect(create, deps) {\n return updateEffectImpl(4, 2, create, deps);\n}\nfunction updateLayoutEffect(create, deps) {\n return updateEffectImpl(4, 4, create, deps);\n}\nfunction imperativeHandleEffect(create, ref) {\n if (\"function\" === typeof ref) {\n create = create();\n var refCleanup = ref(create);\n return function () {\n \"function\" === typeof refCleanup ? refCleanup() : ref(null);\n };\n }\n if (null !== ref && void 0 !== ref)\n return (\n (create = create()),\n (ref.current = create),\n function () {\n ref.current = null;\n }\n );\n}\nfunction updateImperativeHandle(ref, create, deps) {\n deps = null !== deps && void 0 !== deps ? deps.concat([ref]) : null;\n updateEffectImpl(4, 4, imperativeHandleEffect.bind(null, create, ref), deps);\n}\nfunction mountDebugValue() {}\nfunction updateCallback(callback, deps) {\n var hook = updateWorkInProgressHook();\n deps = void 0 === deps ? null : deps;\n var prevState = hook.memoizedState;\n if (null !== deps && areHookInputsEqual(deps, prevState[1]))\n return prevState[0];\n hook.memoizedState = [callback, deps];\n return callback;\n}\nfunction updateMemo(nextCreate, deps) {\n var hook = updateWorkInProgressHook();\n deps = void 0 === deps ? null : deps;\n var prevState = hook.memoizedState;\n if (null !== deps && areHookInputsEqual(deps, prevState[1]))\n return prevState[0];\n prevState = nextCreate();\n if (shouldDoubleInvokeUserFnsInHooksDEV) {\n setIsStrictModeForDevtools(!0);\n try {\n nextCreate();\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n hook.memoizedState = [prevState, deps];\n return prevState;\n}\nfunction mountDeferredValueImpl(hook, value, initialValue) {\n if (\n void 0 === initialValue ||\n (0 !== (renderLanes & 1073741824) &&\n 0 === (workInProgressRootRenderLanes & 261930))\n )\n return (hook.memoizedState = value);\n hook.memoizedState = initialValue;\n hook = requestDeferredLane();\n currentlyRenderingFiber.lanes |= hook;\n workInProgressRootSkippedLanes |= hook;\n return initialValue;\n}\nfunction updateDeferredValueImpl(hook, prevValue, value, initialValue) {\n if (objectIs(value, prevValue)) return value;\n if (null !== currentTreeHiddenStackCursor.current)\n return (\n (hook = mountDeferredValueImpl(hook, value, initialValue)),\n objectIs(hook, prevValue) || (didReceiveUpdate = !0),\n hook\n );\n if (\n 0 === (renderLanes & 42) ||\n (0 !== (renderLanes & 1073741824) &&\n 0 === (workInProgressRootRenderLanes & 261930))\n )\n return (didReceiveUpdate = !0), (hook.memoizedState = value);\n hook = requestDeferredLane();\n currentlyRenderingFiber.lanes |= hook;\n workInProgressRootSkippedLanes |= hook;\n return prevValue;\n}\nfunction startTransition(fiber, queue, pendingState, finishedState, callback) {\n var previousPriority = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p =\n 0 !== previousPriority && 8 > previousPriority ? previousPriority : 8;\n var prevTransition = ReactSharedInternals.T,\n currentTransition = {};\n currentTransition.types =\n null !== prevTransition ? prevTransition.types : null;\n ReactSharedInternals.T = currentTransition;\n dispatchOptimisticSetState(fiber, !1, queue, pendingState);\n try {\n var returnValue = callback(),\n onStartTransitionFinish = ReactSharedInternals.S;\n null !== onStartTransitionFinish &&\n onStartTransitionFinish(currentTransition, returnValue);\n if (\n null !== returnValue &&\n \"object\" === typeof returnValue &&\n \"function\" === typeof returnValue.then\n ) {\n var thenableForFinishedState = chainThenableValue(\n returnValue,\n finishedState\n );\n dispatchSetStateInternal(\n fiber,\n queue,\n thenableForFinishedState,\n requestUpdateLane(fiber)\n );\n } else\n dispatchSetStateInternal(\n fiber,\n queue,\n finishedState,\n requestUpdateLane(fiber)\n );\n } catch (error) {\n dispatchSetStateInternal(\n fiber,\n queue,\n { then: function () {}, status: \"rejected\", reason: error },\n requestUpdateLane()\n );\n } finally {\n (ReactDOMSharedInternals.p = previousPriority),\n null !== prevTransition &&\n null !== currentTransition.types &&\n (prevTransition.types = currentTransition.types),\n (ReactSharedInternals.T = prevTransition);\n }\n}\nfunction noop() {}\nfunction startHostTransition(formFiber, pendingState, action, formData) {\n if (5 !== formFiber.tag) throw Error(formatProdErrorMessage(476));\n var queue = ensureFormComponentIsStateful(formFiber).queue;\n startTransition(\n formFiber,\n queue,\n pendingState,\n sharedNotPendingObject,\n null === action\n ? noop\n : function () {\n requestFormReset$1(formFiber);\n return action(formData);\n }\n );\n}\nfunction ensureFormComponentIsStateful(formFiber) {\n var existingStateHook = formFiber.memoizedState;\n if (null !== existingStateHook) return existingStateHook;\n existingStateHook = {\n memoizedState: sharedNotPendingObject,\n baseState: sharedNotPendingObject,\n baseQueue: null,\n queue: {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: basicStateReducer,\n lastRenderedState: sharedNotPendingObject\n },\n next: null\n };\n var initialResetState = {};\n existingStateHook.next = {\n memoizedState: initialResetState,\n baseState: initialResetState,\n baseQueue: null,\n queue: {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: basicStateReducer,\n lastRenderedState: initialResetState\n },\n next: null\n };\n formFiber.memoizedState = existingStateHook;\n formFiber = formFiber.alternate;\n null !== formFiber && (formFiber.memoizedState = existingStateHook);\n return existingStateHook;\n}\nfunction requestFormReset$1(formFiber) {\n var stateHook = ensureFormComponentIsStateful(formFiber);\n null === stateHook.next && (stateHook = formFiber.alternate.memoizedState);\n dispatchSetStateInternal(\n formFiber,\n stateHook.next.queue,\n {},\n requestUpdateLane()\n );\n}\nfunction useHostTransitionStatus() {\n return readContext(HostTransitionContext);\n}\nfunction updateId() {\n return updateWorkInProgressHook().memoizedState;\n}\nfunction updateRefresh() {\n return updateWorkInProgressHook().memoizedState;\n}\nfunction refreshCache(fiber) {\n for (var provider = fiber.return; null !== provider; ) {\n switch (provider.tag) {\n case 24:\n case 3:\n var lane = requestUpdateLane();\n fiber = createUpdate(lane);\n var root$71 = enqueueUpdate(provider, fiber, lane);\n null !== root$71 &&\n (scheduleUpdateOnFiber(root$71, provider, lane),\n entangleTransitions(root$71, provider, lane));\n provider = { cache: createCache() };\n fiber.payload = provider;\n return;\n }\n provider = provider.return;\n }\n}\nfunction dispatchReducerAction(fiber, queue, action) {\n var lane = requestUpdateLane();\n action = {\n lane: lane,\n revertLane: 0,\n gesture: null,\n action: action,\n hasEagerState: !1,\n eagerState: null,\n next: null\n };\n isRenderPhaseUpdate(fiber)\n ? enqueueRenderPhaseUpdate(queue, action)\n : ((action = enqueueConcurrentHookUpdate(fiber, queue, action, lane)),\n null !== action &&\n (scheduleUpdateOnFiber(action, fiber, lane),\n entangleTransitionUpdate(action, queue, lane)));\n}\nfunction dispatchSetState(fiber, queue, action) {\n var lane = requestUpdateLane();\n dispatchSetStateInternal(fiber, queue, action, lane);\n}\nfunction dispatchSetStateInternal(fiber, queue, action, lane) {\n var update = {\n lane: lane,\n revertLane: 0,\n gesture: null,\n action: action,\n hasEagerState: !1,\n eagerState: null,\n next: null\n };\n if (isRenderPhaseUpdate(fiber)) enqueueRenderPhaseUpdate(queue, update);\n else {\n var alternate = fiber.alternate;\n if (\n 0 === fiber.lanes &&\n (null === alternate || 0 === alternate.lanes) &&\n ((alternate = queue.lastRenderedReducer), null !== alternate)\n )\n try {\n var currentState = queue.lastRenderedState,\n eagerState = alternate(currentState, action);\n update.hasEagerState = !0;\n update.eagerState = eagerState;\n if (objectIs(eagerState, currentState))\n return (\n enqueueUpdate$1(fiber, queue, update, 0),\n null === workInProgressRoot && finishQueueingConcurrentUpdates(),\n !1\n );\n } catch (error) {\n } finally {\n }\n action = enqueueConcurrentHookUpdate(fiber, queue, update, lane);\n if (null !== action)\n return (\n scheduleUpdateOnFiber(action, fiber, lane),\n entangleTransitionUpdate(action, queue, lane),\n !0\n );\n }\n return !1;\n}\nfunction dispatchOptimisticSetState(fiber, throwIfDuringRender, queue, action) {\n action = {\n lane: 2,\n revertLane: requestTransitionLane(),\n gesture: null,\n action: action,\n hasEagerState: !1,\n eagerState: null,\n next: null\n };\n if (isRenderPhaseUpdate(fiber)) {\n if (throwIfDuringRender) throw Error(formatProdErrorMessage(479));\n } else\n (throwIfDuringRender = enqueueConcurrentHookUpdate(\n fiber,\n queue,\n action,\n 2\n )),\n null !== throwIfDuringRender &&\n scheduleUpdateOnFiber(throwIfDuringRender, fiber, 2);\n}\nfunction isRenderPhaseUpdate(fiber) {\n var alternate = fiber.alternate;\n return (\n fiber === currentlyRenderingFiber ||\n (null !== alternate && alternate === currentlyRenderingFiber)\n );\n}\nfunction enqueueRenderPhaseUpdate(queue, update) {\n didScheduleRenderPhaseUpdateDuringThisPass = didScheduleRenderPhaseUpdate =\n !0;\n var pending = queue.pending;\n null === pending\n ? (update.next = update)\n : ((update.next = pending.next), (pending.next = update));\n queue.pending = update;\n}\nfunction entangleTransitionUpdate(root, queue, lane) {\n if (0 !== (lane & 4194048)) {\n var queueLanes = queue.lanes;\n queueLanes &= root.pendingLanes;\n lane |= queueLanes;\n queue.lanes = lane;\n markRootEntangled(root, lane);\n }\n}\nvar ContextOnlyDispatcher = {\n readContext: readContext,\n use: use,\n useCallback: throwInvalidHookError,\n useContext: throwInvalidHookError,\n useEffect: throwInvalidHookError,\n useImperativeHandle: throwInvalidHookError,\n useLayoutEffect: throwInvalidHookError,\n useInsertionEffect: throwInvalidHookError,\n useMemo: throwInvalidHookError,\n useReducer: throwInvalidHookError,\n useRef: throwInvalidHookError,\n useState: throwInvalidHookError,\n useDebugValue: throwInvalidHookError,\n useDeferredValue: throwInvalidHookError,\n useTransition: throwInvalidHookError,\n useSyncExternalStore: throwInvalidHookError,\n useId: throwInvalidHookError,\n useHostTransitionStatus: throwInvalidHookError,\n useFormState: throwInvalidHookError,\n useActionState: throwInvalidHookError,\n useOptimistic: throwInvalidHookError,\n useMemoCache: throwInvalidHookError,\n useCacheRefresh: throwInvalidHookError\n};\nContextOnlyDispatcher.useEffectEvent = throwInvalidHookError;\nvar HooksDispatcherOnMount = {\n readContext: readContext,\n use: use,\n useCallback: function (callback, deps) {\n mountWorkInProgressHook().memoizedState = [\n callback,\n void 0 === deps ? null : deps\n ];\n return callback;\n },\n useContext: readContext,\n useEffect: mountEffect,\n useImperativeHandle: function (ref, create, deps) {\n deps = null !== deps && void 0 !== deps ? deps.concat([ref]) : null;\n mountEffectImpl(\n 4194308,\n 4,\n imperativeHandleEffect.bind(null, create, ref),\n deps\n );\n },\n useLayoutEffect: function (create, deps) {\n return mountEffectImpl(4194308, 4, create, deps);\n },\n useInsertionEffect: function (create, deps) {\n mountEffectImpl(4, 2, create, deps);\n },\n useMemo: function (nextCreate, deps) {\n var hook = mountWorkInProgressHook();\n deps = void 0 === deps ? null : deps;\n var nextValue = nextCreate();\n if (shouldDoubleInvokeUserFnsInHooksDEV) {\n setIsStrictModeForDevtools(!0);\n try {\n nextCreate();\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n hook.memoizedState = [nextValue, deps];\n return nextValue;\n },\n useReducer: function (reducer, initialArg, init) {\n var hook = mountWorkInProgressHook();\n if (void 0 !== init) {\n var initialState = init(initialArg);\n if (shouldDoubleInvokeUserFnsInHooksDEV) {\n setIsStrictModeForDevtools(!0);\n try {\n init(initialArg);\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n } else initialState = initialArg;\n hook.memoizedState = hook.baseState = initialState;\n reducer = {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: reducer,\n lastRenderedState: initialState\n };\n hook.queue = reducer;\n reducer = reducer.dispatch = dispatchReducerAction.bind(\n null,\n currentlyRenderingFiber,\n reducer\n );\n return [hook.memoizedState, reducer];\n },\n useRef: function (initialValue) {\n var hook = mountWorkInProgressHook();\n initialValue = { current: initialValue };\n return (hook.memoizedState = initialValue);\n },\n useState: function (initialState) {\n initialState = mountStateImpl(initialState);\n var queue = initialState.queue,\n dispatch = dispatchSetState.bind(null, currentlyRenderingFiber, queue);\n queue.dispatch = dispatch;\n return [initialState.memoizedState, dispatch];\n },\n useDebugValue: mountDebugValue,\n useDeferredValue: function (value, initialValue) {\n var hook = mountWorkInProgressHook();\n return mountDeferredValueImpl(hook, value, initialValue);\n },\n useTransition: function () {\n var stateHook = mountStateImpl(!1);\n stateHook = startTransition.bind(\n null,\n currentlyRenderingFiber,\n stateHook.queue,\n !0,\n !1\n );\n mountWorkInProgressHook().memoizedState = stateHook;\n return [!1, stateHook];\n },\n useSyncExternalStore: function (subscribe, getSnapshot, getServerSnapshot) {\n var fiber = currentlyRenderingFiber,\n hook = mountWorkInProgressHook();\n if (isHydrating) {\n if (void 0 === getServerSnapshot)\n throw Error(formatProdErrorMessage(407));\n getServerSnapshot = getServerSnapshot();\n } else {\n getServerSnapshot = getSnapshot();\n if (null === workInProgressRoot)\n throw Error(formatProdErrorMessage(349));\n 0 !== (workInProgressRootRenderLanes & 127) ||\n pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);\n }\n hook.memoizedState = getServerSnapshot;\n var inst = { value: getServerSnapshot, getSnapshot: getSnapshot };\n hook.queue = inst;\n mountEffect(subscribeToStore.bind(null, fiber, inst, subscribe), [\n subscribe\n ]);\n fiber.flags |= 2048;\n pushSimpleEffect(\n 9,\n { destroy: void 0 },\n updateStoreInstance.bind(\n null,\n fiber,\n inst,\n getServerSnapshot,\n getSnapshot\n ),\n null\n );\n return getServerSnapshot;\n },\n useId: function () {\n var hook = mountWorkInProgressHook(),\n identifierPrefix = workInProgressRoot.identifierPrefix;\n if (isHydrating) {\n var JSCompiler_inline_result = treeContextOverflow;\n var idWithLeadingBit = treeContextId;\n JSCompiler_inline_result =\n (\n idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))\n ).toString(32) + JSCompiler_inline_result;\n identifierPrefix =\n \"_\" + identifierPrefix + \"R_\" + JSCompiler_inline_result;\n JSCompiler_inline_result = localIdCounter++;\n 0 < JSCompiler_inline_result &&\n (identifierPrefix += \"H\" + JSCompiler_inline_result.toString(32));\n identifierPrefix += \"_\";\n } else\n (JSCompiler_inline_result = globalClientIdCounter++),\n (identifierPrefix =\n \"_\" +\n identifierPrefix +\n \"r_\" +\n JSCompiler_inline_result.toString(32) +\n \"_\");\n return (hook.memoizedState = identifierPrefix);\n },\n useHostTransitionStatus: useHostTransitionStatus,\n useFormState: mountActionState,\n useActionState: mountActionState,\n useOptimistic: function (passthrough) {\n var hook = mountWorkInProgressHook();\n hook.memoizedState = hook.baseState = passthrough;\n var queue = {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: null,\n lastRenderedState: null\n };\n hook.queue = queue;\n hook = dispatchOptimisticSetState.bind(\n null,\n currentlyRenderingFiber,\n !0,\n queue\n );\n queue.dispatch = hook;\n return [passthrough, hook];\n },\n useMemoCache: useMemoCache,\n useCacheRefresh: function () {\n return (mountWorkInProgressHook().memoizedState = refreshCache.bind(\n null,\n currentlyRenderingFiber\n ));\n },\n useEffectEvent: function (callback) {\n var hook = mountWorkInProgressHook(),\n ref = { impl: callback };\n hook.memoizedState = ref;\n return function () {\n if (0 !== (executionContext & 2))\n throw Error(formatProdErrorMessage(440));\n return ref.impl.apply(void 0, arguments);\n };\n }\n },\n HooksDispatcherOnUpdate = {\n readContext: readContext,\n use: use,\n useCallback: updateCallback,\n useContext: readContext,\n useEffect: updateEffect,\n useImperativeHandle: updateImperativeHandle,\n useInsertionEffect: updateInsertionEffect,\n useLayoutEffect: updateLayoutEffect,\n useMemo: updateMemo,\n useReducer: updateReducer,\n useRef: updateRef,\n useState: function () {\n return updateReducer(basicStateReducer);\n },\n useDebugValue: mountDebugValue,\n useDeferredValue: function (value, initialValue) {\n var hook = updateWorkInProgressHook();\n return updateDeferredValueImpl(\n hook,\n currentHook.memoizedState,\n value,\n initialValue\n );\n },\n useTransition: function () {\n var booleanOrThenable = updateReducer(basicStateReducer)[0],\n start = updateWorkInProgressHook().memoizedState;\n return [\n \"boolean\" === typeof booleanOrThenable\n ? booleanOrThenable\n : useThenable(booleanOrThenable),\n start\n ];\n },\n useSyncExternalStore: updateSyncExternalStore,\n useId: updateId,\n useHostTransitionStatus: useHostTransitionStatus,\n useFormState: updateActionState,\n useActionState: updateActionState,\n useOptimistic: function (passthrough, reducer) {\n var hook = updateWorkInProgressHook();\n return updateOptimisticImpl(hook, currentHook, passthrough, reducer);\n },\n useMemoCache: useMemoCache,\n useCacheRefresh: updateRefresh\n };\nHooksDispatcherOnUpdate.useEffectEvent = updateEvent;\nvar HooksDispatcherOnRerender = {\n readContext: readContext,\n use: use,\n useCallback: updateCallback,\n useContext: readContext,\n useEffect: updateEffect,\n useImperativeHandle: updateImperativeHandle,\n useInsertionEffect: updateInsertionEffect,\n useLayoutEffect: updateLayoutEffect,\n useMemo: updateMemo,\n useReducer: rerenderReducer,\n useRef: updateRef,\n useState: function () {\n return rerenderReducer(basicStateReducer);\n },\n useDebugValue: mountDebugValue,\n useDeferredValue: function (value, initialValue) {\n var hook = updateWorkInProgressHook();\n return null === currentHook\n ? mountDeferredValueImpl(hook, value, initialValue)\n : updateDeferredValueImpl(\n hook,\n currentHook.memoizedState,\n value,\n initialValue\n );\n },\n useTransition: function () {\n var booleanOrThenable = rerenderReducer(basicStateReducer)[0],\n start = updateWorkInProgressHook().memoizedState;\n return [\n \"boolean\" === typeof booleanOrThenable\n ? booleanOrThenable\n : useThenable(booleanOrThenable),\n start\n ];\n },\n useSyncExternalStore: updateSyncExternalStore,\n useId: updateId,\n useHostTransitionStatus: useHostTransitionStatus,\n useFormState: rerenderActionState,\n useActionState: rerenderActionState,\n useOptimistic: function (passthrough, reducer) {\n var hook = updateWorkInProgressHook();\n if (null !== currentHook)\n return updateOptimisticImpl(hook, currentHook, passthrough, reducer);\n hook.baseState = passthrough;\n return [passthrough, hook.queue.dispatch];\n },\n useMemoCache: useMemoCache,\n useCacheRefresh: updateRefresh\n};\nHooksDispatcherOnRerender.useEffectEvent = updateEvent;\nfunction applyDerivedStateFromProps(\n workInProgress,\n ctor,\n getDerivedStateFromProps,\n nextProps\n) {\n ctor = workInProgress.memoizedState;\n getDerivedStateFromProps = getDerivedStateFromProps(nextProps, ctor);\n getDerivedStateFromProps =\n null === getDerivedStateFromProps || void 0 === getDerivedStateFromProps\n ? ctor\n : assign({}, ctor, getDerivedStateFromProps);\n workInProgress.memoizedState = getDerivedStateFromProps;\n 0 === workInProgress.lanes &&\n (workInProgress.updateQueue.baseState = getDerivedStateFromProps);\n}\nvar classComponentUpdater = {\n enqueueSetState: function (inst, payload, callback) {\n inst = inst._reactInternals;\n var lane = requestUpdateLane(),\n update = createUpdate(lane);\n update.payload = payload;\n void 0 !== callback && null !== callback && (update.callback = callback);\n payload = enqueueUpdate(inst, update, lane);\n null !== payload &&\n (scheduleUpdateOnFiber(payload, inst, lane),\n entangleTransitions(payload, inst, lane));\n },\n enqueueReplaceState: function (inst, payload, callback) {\n inst = inst._reactInternals;\n var lane = requestUpdateLane(),\n update = createUpdate(lane);\n update.tag = 1;\n update.payload = payload;\n void 0 !== callback && null !== callback && (update.callback = callback);\n payload = enqueueUpdate(inst, update, lane);\n null !== payload &&\n (scheduleUpdateOnFiber(payload, inst, lane),\n entangleTransitions(payload, inst, lane));\n },\n enqueueForceUpdate: function (inst, callback) {\n inst = inst._reactInternals;\n var lane = requestUpdateLane(),\n update = createUpdate(lane);\n update.tag = 2;\n void 0 !== callback && null !== callback && (update.callback = callback);\n callback = enqueueUpdate(inst, update, lane);\n null !== callback &&\n (scheduleUpdateOnFiber(callback, inst, lane),\n entangleTransitions(callback, inst, lane));\n }\n};\nfunction checkShouldComponentUpdate(\n workInProgress,\n ctor,\n oldProps,\n newProps,\n oldState,\n newState,\n nextContext\n) {\n workInProgress = workInProgress.stateNode;\n return \"function\" === typeof workInProgress.shouldComponentUpdate\n ? workInProgress.shouldComponentUpdate(newProps, newState, nextContext)\n : ctor.prototype && ctor.prototype.isPureReactComponent\n ? !shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState)\n : !0;\n}\nfunction callComponentWillReceiveProps(\n workInProgress,\n instance,\n newProps,\n nextContext\n) {\n workInProgress = instance.state;\n \"function\" === typeof instance.componentWillReceiveProps &&\n instance.componentWillReceiveProps(newProps, nextContext);\n \"function\" === typeof instance.UNSAFE_componentWillReceiveProps &&\n instance.UNSAFE_componentWillReceiveProps(newProps, nextContext);\n instance.state !== workInProgress &&\n classComponentUpdater.enqueueReplaceState(instance, instance.state, null);\n}\nfunction resolveClassComponentProps(Component, baseProps) {\n var newProps = baseProps;\n if (\"ref\" in baseProps) {\n newProps = {};\n for (var propName in baseProps)\n \"ref\" !== propName && (newProps[propName] = baseProps[propName]);\n }\n if ((Component = Component.defaultProps)) {\n newProps === baseProps && (newProps = assign({}, newProps));\n for (var propName$75 in Component)\n void 0 === newProps[propName$75] &&\n (newProps[propName$75] = Component[propName$75]);\n }\n return newProps;\n}\nfunction defaultOnUncaughtError(error) {\n reportGlobalError(error);\n}\nfunction defaultOnCaughtError(error) {\n console.error(error);\n}\nfunction defaultOnRecoverableError(error) {\n reportGlobalError(error);\n}\nfunction logUncaughtError(root, errorInfo) {\n try {\n var onUncaughtError = root.onUncaughtError;\n onUncaughtError(errorInfo.value, { componentStack: errorInfo.stack });\n } catch (e$76) {\n setTimeout(function () {\n throw e$76;\n });\n }\n}\nfunction logCaughtError(root, boundary, errorInfo) {\n try {\n var onCaughtError = root.onCaughtError;\n onCaughtError(errorInfo.value, {\n componentStack: errorInfo.stack,\n errorBoundary: 1 === boundary.tag ? boundary.stateNode : null\n });\n } catch (e$77) {\n setTimeout(function () {\n throw e$77;\n });\n }\n}\nfunction createRootErrorUpdate(root, errorInfo, lane) {\n lane = createUpdate(lane);\n lane.tag = 3;\n lane.payload = { element: null };\n lane.callback = function () {\n logUncaughtError(root, errorInfo);\n };\n return lane;\n}\nfunction createClassErrorUpdate(lane) {\n lane = createUpdate(lane);\n lane.tag = 3;\n return lane;\n}\nfunction initializeClassErrorUpdate(update, root, fiber, errorInfo) {\n var getDerivedStateFromError = fiber.type.getDerivedStateFromError;\n if (\"function\" === typeof getDerivedStateFromError) {\n var error = errorInfo.value;\n update.payload = function () {\n return getDerivedStateFromError(error);\n };\n update.callback = function () {\n logCaughtError(root, fiber, errorInfo);\n };\n }\n var inst = fiber.stateNode;\n null !== inst &&\n \"function\" === typeof inst.componentDidCatch &&\n (update.callback = function () {\n logCaughtError(root, fiber, errorInfo);\n \"function\" !== typeof getDerivedStateFromError &&\n (null === legacyErrorBoundariesThatAlreadyFailed\n ? (legacyErrorBoundariesThatAlreadyFailed = new Set([this]))\n : legacyErrorBoundariesThatAlreadyFailed.add(this));\n var stack = errorInfo.stack;\n this.componentDidCatch(errorInfo.value, {\n componentStack: null !== stack ? stack : \"\"\n });\n });\n}\nfunction throwException(\n root,\n returnFiber,\n sourceFiber,\n value,\n rootRenderLanes\n) {\n sourceFiber.flags |= 32768;\n if (\n null !== value &&\n \"object\" === typeof value &&\n \"function\" === typeof value.then\n ) {\n returnFiber = sourceFiber.alternate;\n null !== returnFiber &&\n propagateParentContextChanges(\n returnFiber,\n sourceFiber,\n rootRenderLanes,\n !0\n );\n sourceFiber = suspenseHandlerStackCursor.current;\n if (null !== sourceFiber) {\n switch (sourceFiber.tag) {\n case 31:\n case 13:\n case 19:\n return (\n null === shellBoundary\n ? renderDidSuspendDelayIfPossible()\n : null === sourceFiber.alternate &&\n 0 === workInProgressRootExitStatus &&\n (workInProgressRootExitStatus = 3),\n (sourceFiber.flags &= -257),\n (sourceFiber.flags |= 65536),\n (sourceFiber.lanes = rootRenderLanes),\n value === noopSuspenseyCommitThenable\n ? (sourceFiber.flags |= 16384)\n : ((returnFiber = sourceFiber.updateQueue),\n null === returnFiber\n ? (sourceFiber.updateQueue = new Set([value]))\n : returnFiber.add(value),\n attachPingListener(root, value, rootRenderLanes)),\n !1\n );\n case 22:\n return (\n (sourceFiber.flags |= 65536),\n value === noopSuspenseyCommitThenable\n ? (sourceFiber.flags |= 16384)\n : ((returnFiber = sourceFiber.updateQueue),\n null === returnFiber\n ? ((returnFiber = {\n transitions: null,\n markerInstances: null,\n retryQueue: new Set([value])\n }),\n (sourceFiber.updateQueue = returnFiber))\n : ((sourceFiber = returnFiber.retryQueue),\n null === sourceFiber\n ? (returnFiber.retryQueue = new Set([value]))\n : sourceFiber.add(value)),\n attachPingListener(root, value, rootRenderLanes)),\n !1\n );\n }\n throw Error(formatProdErrorMessage(435, sourceFiber.tag));\n }\n attachPingListener(root, value, rootRenderLanes);\n renderDidSuspendDelayIfPossible();\n return !1;\n }\n if (isHydrating)\n return (\n (returnFiber = suspenseHandlerStackCursor.current),\n null !== returnFiber\n ? (0 === (returnFiber.flags & 65536) && (returnFiber.flags |= 256),\n (returnFiber.flags |= 65536),\n (returnFiber.lanes = rootRenderLanes),\n value !== HydrationMismatchException &&\n ((root = Error(formatProdErrorMessage(422), { cause: value })),\n queueHydrationError(createCapturedValueAtFiber(root, sourceFiber))))\n : (value !== HydrationMismatchException &&\n ((returnFiber = Error(formatProdErrorMessage(423), {\n cause: value\n })),\n queueHydrationError(\n createCapturedValueAtFiber(returnFiber, sourceFiber)\n )),\n (root = root.current.alternate),\n (root.flags |= 65536),\n (rootRenderLanes &= -rootRenderLanes),\n (root.lanes |= rootRenderLanes),\n (value = createCapturedValueAtFiber(value, sourceFiber)),\n (rootRenderLanes = createRootErrorUpdate(\n root.stateNode,\n value,\n rootRenderLanes\n )),\n enqueueCapturedUpdate(root, rootRenderLanes),\n 4 !== workInProgressRootExitStatus &&\n (workInProgressRootExitStatus = 2)),\n !1\n );\n var wrapperError = Error(formatProdErrorMessage(520), { cause: value });\n wrapperError = createCapturedValueAtFiber(wrapperError, sourceFiber);\n null === workInProgressRootConcurrentErrors\n ? (workInProgressRootConcurrentErrors = [wrapperError])\n : workInProgressRootConcurrentErrors.push(wrapperError);\n 4 !== workInProgressRootExitStatus && (workInProgressRootExitStatus = 2);\n if (null === returnFiber) return !0;\n value = createCapturedValueAtFiber(value, sourceFiber);\n sourceFiber = returnFiber;\n do {\n switch (sourceFiber.tag) {\n case 3:\n return (\n (sourceFiber.flags |= 65536),\n (root = rootRenderLanes & -rootRenderLanes),\n (sourceFiber.lanes |= root),\n (root = createRootErrorUpdate(sourceFiber.stateNode, value, root)),\n enqueueCapturedUpdate(sourceFiber, root),\n !1\n );\n case 1:\n returnFiber = sourceFiber.type;\n wrapperError = sourceFiber.stateNode;\n if (\n 0 === (sourceFiber.flags & 128) &&\n (\"function\" === typeof returnFiber.getDerivedStateFromError ||\n (null !== wrapperError &&\n \"function\" === typeof wrapperError.componentDidCatch &&\n (null === legacyErrorBoundariesThatAlreadyFailed ||\n !legacyErrorBoundariesThatAlreadyFailed.has(wrapperError))))\n )\n return (\n (sourceFiber.flags |= 65536),\n (rootRenderLanes &= -rootRenderLanes),\n (sourceFiber.lanes |= rootRenderLanes),\n (rootRenderLanes = createClassErrorUpdate(rootRenderLanes)),\n initializeClassErrorUpdate(\n rootRenderLanes,\n root,\n sourceFiber,\n value\n ),\n enqueueCapturedUpdate(sourceFiber, rootRenderLanes),\n !1\n );\n break;\n case 22:\n if (null !== sourceFiber.memoizedState)\n return (sourceFiber.flags |= 65536), !1;\n }\n sourceFiber = sourceFiber.return;\n } while (null !== sourceFiber);\n return !1;\n}\nvar SelectiveHydrationException = Error(formatProdErrorMessage(461)),\n didReceiveUpdate = !1;\nfunction reconcileChildren(current, workInProgress, nextChildren, renderLanes) {\n workInProgress.child =\n null === current\n ? mountChildFibers(workInProgress, null, nextChildren, renderLanes)\n : reconcileChildFibers(\n workInProgress,\n current.child,\n nextChildren,\n renderLanes\n );\n}\nfunction updateForwardRef(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n) {\n Component = Component.render;\n var ref = workInProgress.ref;\n if (\"ref\" in nextProps) {\n var propsWithoutRef = {};\n for (var key in nextProps)\n \"ref\" !== key && (propsWithoutRef[key] = nextProps[key]);\n } else propsWithoutRef = nextProps;\n prepareToReadContext(workInProgress);\n nextProps = renderWithHooks(\n current,\n workInProgress,\n Component,\n propsWithoutRef,\n ref,\n renderLanes\n );\n key = checkDidRenderIdHook();\n if (null !== current && !didReceiveUpdate)\n return (\n bailoutHooks(current, workInProgress, renderLanes),\n bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes)\n );\n isHydrating && key && pushMaterializedTreeId(workInProgress);\n workInProgress.flags |= 1;\n reconcileChildren(current, workInProgress, nextProps, renderLanes);\n return workInProgress.child;\n}\nfunction updateMemoComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n) {\n if (null === current) {\n var type = Component.type;\n if (\n \"function\" === typeof type &&\n !shouldConstruct(type) &&\n void 0 === type.defaultProps &&\n null === Component.compare\n )\n return (\n (workInProgress.tag = 15),\n (workInProgress.type = type),\n updateSimpleMemoComponent(\n current,\n workInProgress,\n type,\n nextProps,\n renderLanes\n )\n );\n current = createFiberFromTypeAndProps(\n Component.type,\n null,\n nextProps,\n workInProgress,\n workInProgress.mode,\n renderLanes\n );\n current.ref = workInProgress.ref;\n current.return = workInProgress;\n return (workInProgress.child = current);\n }\n type = current.child;\n if (!checkScheduledUpdateOrContext(current, renderLanes)) {\n var prevProps = type.memoizedProps;\n Component = Component.compare;\n Component = null !== Component ? Component : shallowEqual;\n if (Component(prevProps, nextProps) && current.ref === workInProgress.ref)\n return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);\n }\n workInProgress.flags |= 1;\n current = createWorkInProgress(type, nextProps);\n current.ref = workInProgress.ref;\n current.return = workInProgress;\n return (workInProgress.child = current);\n}\nfunction updateSimpleMemoComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n) {\n if (null !== current) {\n var prevProps = current.memoizedProps;\n if (\n shallowEqual(prevProps, nextProps) &&\n current.ref === workInProgress.ref\n )\n if (\n ((didReceiveUpdate = !1),\n (workInProgress.pendingProps = nextProps = prevProps),\n checkScheduledUpdateOrContext(current, renderLanes))\n )\n 0 !== (current.flags & 131072) && (didReceiveUpdate = !0);\n else\n return (\n (workInProgress.lanes = current.lanes),\n bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes)\n );\n }\n return updateFunctionComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n );\n}\nfunction updateOffscreenComponent(\n current,\n workInProgress,\n renderLanes,\n nextProps\n) {\n var nextChildren = nextProps.children,\n prevState = null !== current ? current.memoizedState : null;\n null === current &&\n null === workInProgress.stateNode &&\n (workInProgress.stateNode = {\n _visibility: 1,\n _pendingMarkers: null,\n _retryCache: null,\n _transitions: null\n });\n if (\"hidden\" === nextProps.mode) {\n if (0 !== (workInProgress.flags & 128)) {\n prevState =\n null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;\n if (null !== current) {\n nextProps = workInProgress.child = current.child;\n for (nextChildren = 0; null !== nextProps; )\n (nextChildren =\n nextChildren | nextProps.lanes | nextProps.childLanes),\n (nextProps = nextProps.sibling);\n nextProps = nextChildren & ~prevState;\n } else (nextProps = 0), (workInProgress.child = null);\n return deferHiddenOffscreenComponent(\n current,\n workInProgress,\n prevState,\n renderLanes,\n nextProps\n );\n }\n if (0 !== (renderLanes & 536870912))\n (workInProgress.memoizedState = { baseLanes: 0, cachePool: null }),\n null !== current &&\n pushTransition(\n workInProgress,\n null !== prevState ? prevState.cachePool : null\n ),\n null !== prevState\n ? pushHiddenContext(workInProgress, prevState)\n : reuseHiddenContextOnStack(),\n pushOffscreenSuspenseHandler(workInProgress);\n else\n return (\n (nextProps = workInProgress.lanes = 536870912),\n deferHiddenOffscreenComponent(\n current,\n workInProgress,\n null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,\n renderLanes,\n nextProps\n )\n );\n } else\n null !== prevState\n ? (pushTransition(workInProgress, prevState.cachePool),\n pushHiddenContext(workInProgress, prevState),\n reuseSuspenseHandlerOnStack(),\n (workInProgress.memoizedState = null))\n : (null !== current && pushTransition(workInProgress, null),\n reuseHiddenContextOnStack(),\n reuseSuspenseHandlerOnStack());\n reconcileChildren(current, workInProgress, nextChildren, renderLanes);\n return workInProgress.child;\n}\nfunction bailoutOffscreenComponent(current, workInProgress) {\n (null !== current && 22 === current.tag) ||\n null !== workInProgress.stateNode ||\n (workInProgress.stateNode = {\n _visibility: 1,\n _pendingMarkers: null,\n _retryCache: null,\n _transitions: null\n });\n return workInProgress.sibling;\n}\nfunction deferHiddenOffscreenComponent(\n current,\n workInProgress,\n nextBaseLanes,\n renderLanes,\n remainingChildLanes\n) {\n var JSCompiler_inline_result = peekCacheFromPool();\n JSCompiler_inline_result =\n null === JSCompiler_inline_result\n ? null\n : { parent: CacheContext._currentValue, pool: JSCompiler_inline_result };\n workInProgress.memoizedState = {\n baseLanes: nextBaseLanes,\n cachePool: JSCompiler_inline_result\n };\n null !== current && pushTransition(workInProgress, null);\n reuseHiddenContextOnStack();\n pushOffscreenSuspenseHandler(workInProgress);\n null !== current &&\n propagateParentContextChanges(current, workInProgress, renderLanes, !0);\n workInProgress.childLanes = remainingChildLanes;\n return null;\n}\nfunction mountActivityChildren(workInProgress, nextProps) {\n nextProps = mountWorkInProgressOffscreenFiber(\n { mode: nextProps.mode, children: nextProps.children },\n workInProgress.mode\n );\n nextProps.ref = workInProgress.ref;\n workInProgress.child = nextProps;\n nextProps.return = workInProgress;\n return nextProps;\n}\nfunction retryActivityComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n) {\n reconcileChildFibers(workInProgress, current.child, null, renderLanes);\n current = mountActivityChildren(workInProgress, workInProgress.pendingProps);\n current.flags |= 2;\n popSuspenseHandler(workInProgress);\n workInProgress.memoizedState = null;\n return current;\n}\nfunction updateActivityComponent(current, workInProgress, renderLanes) {\n var nextProps = workInProgress.pendingProps,\n didSuspend = 0 !== (workInProgress.flags & 128);\n workInProgress.flags &= -129;\n if (null === current) {\n if (isHydrating) {\n if (\"hidden\" === nextProps.mode)\n return (\n (current = mountActivityChildren(workInProgress, nextProps)),\n (workInProgress.lanes = 536870912),\n bailoutOffscreenComponent(null, current)\n );\n pushDehydratedActivitySuspenseHandler(workInProgress);\n (current = nextHydratableInstance)\n ? ((current = canHydrateHydrationBoundary(\n current,\n rootOrSingletonContext\n )),\n (current = null !== current && \"&\" === current.data ? current : null),\n null !== current &&\n ((workInProgress.memoizedState = {\n dehydrated: current,\n treeContext:\n null !== treeContextProvider\n ? { id: treeContextId, overflow: treeContextOverflow }\n : null,\n retryLane: 536870912,\n hydrationErrors: null\n }),\n (renderLanes = createFiberFromDehydratedFragment(current)),\n (renderLanes.return = workInProgress),\n (workInProgress.child = renderLanes),\n (hydrationParentFiber = workInProgress),\n (nextHydratableInstance = null)))\n : (current = null);\n if (null === current) throw throwOnHydrationMismatch(workInProgress);\n workInProgress.lanes = 536870912;\n return null;\n }\n return mountActivityChildren(workInProgress, nextProps);\n }\n var prevState = current.memoizedState;\n if (null !== prevState) {\n var dehydrated = prevState.dehydrated;\n pushDehydratedActivitySuspenseHandler(workInProgress);\n if (didSuspend)\n if (workInProgress.flags & 256)\n (workInProgress.flags &= -257),\n (workInProgress = retryActivityComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n ));\n else if (null !== workInProgress.memoizedState)\n (workInProgress.child = current.child),\n (workInProgress.flags |= 128),\n (workInProgress = null);\n else throw Error(formatProdErrorMessage(558));\n else if (\n (didReceiveUpdate ||\n propagateParentContextChanges(current, workInProgress, renderLanes, !1),\n (didSuspend = 0 !== (renderLanes & current.childLanes)),\n didReceiveUpdate || didSuspend)\n ) {\n nextProps = workInProgressRoot;\n if (\n null !== nextProps &&\n ((dehydrated = getBumpedLaneForHydration(nextProps, renderLanes)),\n 0 !== dehydrated && dehydrated !== prevState.retryLane)\n )\n throw (\n ((prevState.retryLane = dehydrated),\n enqueueConcurrentRenderForLane(current, dehydrated),\n scheduleUpdateOnFiber(nextProps, current, dehydrated),\n SelectiveHydrationException)\n );\n renderDidSuspendDelayIfPossible();\n workInProgress = retryActivityComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n );\n } else\n (current = prevState.treeContext),\n (nextHydratableInstance = getNextHydratable(dehydrated.nextSibling)),\n (hydrationParentFiber = workInProgress),\n (isHydrating = !0),\n (hydrationErrors = null),\n (rootOrSingletonContext = !1),\n null !== current &&\n restoreSuspendedTreeContext(workInProgress, current),\n (workInProgress = mountActivityChildren(workInProgress, nextProps)),\n (workInProgress.flags |= 4096);\n return workInProgress;\n }\n current = createWorkInProgress(current.child, {\n mode: nextProps.mode,\n children: nextProps.children\n });\n current.ref = workInProgress.ref;\n workInProgress.child = current;\n current.return = workInProgress;\n return current;\n}\nfunction markRef(current, workInProgress) {\n var ref = workInProgress.ref;\n if (null === ref)\n null !== current &&\n null !== current.ref &&\n (workInProgress.flags |= 4194816);\n else {\n if (\"function\" !== typeof ref && \"object\" !== typeof ref)\n throw Error(formatProdErrorMessage(284));\n if (null === current || current.ref !== ref)\n workInProgress.flags |= 4194816;\n }\n}\nfunction updateFunctionComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n) {\n prepareToReadContext(workInProgress);\n Component = renderWithHooks(\n current,\n workInProgress,\n Component,\n nextProps,\n void 0,\n renderLanes\n );\n nextProps = checkDidRenderIdHook();\n if (null !== current && !didReceiveUpdate)\n return (\n bailoutHooks(current, workInProgress, renderLanes),\n bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes)\n );\n isHydrating && nextProps && pushMaterializedTreeId(workInProgress);\n workInProgress.flags |= 1;\n reconcileChildren(current, workInProgress, Component, renderLanes);\n return workInProgress.child;\n}\nfunction replayFunctionComponent(\n current,\n workInProgress,\n nextProps,\n Component,\n secondArg,\n renderLanes\n) {\n prepareToReadContext(workInProgress);\n workInProgress.updateQueue = null;\n nextProps = renderWithHooksAgain(\n workInProgress,\n Component,\n nextProps,\n secondArg\n );\n finishRenderingHooks(current);\n Component = checkDidRenderIdHook();\n if (null !== current && !didReceiveUpdate)\n return (\n bailoutHooks(current, workInProgress, renderLanes),\n bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes)\n );\n isHydrating && Component && pushMaterializedTreeId(workInProgress);\n workInProgress.flags |= 1;\n reconcileChildren(current, workInProgress, nextProps, renderLanes);\n return workInProgress.child;\n}\nfunction updateClassComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n) {\n prepareToReadContext(workInProgress);\n if (null === workInProgress.stateNode) {\n var context = emptyContextObject,\n contextType = Component.contextType;\n \"object\" === typeof contextType &&\n null !== contextType &&\n (context = readContext(contextType));\n context = new Component(nextProps, context);\n workInProgress.memoizedState =\n null !== context.state && void 0 !== context.state ? context.state : null;\n context.updater = classComponentUpdater;\n workInProgress.stateNode = context;\n context._reactInternals = workInProgress;\n context = workInProgress.stateNode;\n context.props = nextProps;\n context.state = workInProgress.memoizedState;\n context.refs = {};\n initializeUpdateQueue(workInProgress);\n contextType = Component.contextType;\n context.context =\n \"object\" === typeof contextType && null !== contextType\n ? readContext(contextType)\n : emptyContextObject;\n context.state = workInProgress.memoizedState;\n contextType = Component.getDerivedStateFromProps;\n \"function\" === typeof contextType &&\n (applyDerivedStateFromProps(\n workInProgress,\n Component,\n contextType,\n nextProps\n ),\n (context.state = workInProgress.memoizedState));\n \"function\" === typeof Component.getDerivedStateFromProps ||\n \"function\" === typeof context.getSnapshotBeforeUpdate ||\n (\"function\" !== typeof context.UNSAFE_componentWillMount &&\n \"function\" !== typeof context.componentWillMount) ||\n ((contextType = context.state),\n \"function\" === typeof context.componentWillMount &&\n context.componentWillMount(),\n \"function\" === typeof context.UNSAFE_componentWillMount &&\n context.UNSAFE_componentWillMount(),\n contextType !== context.state &&\n classComponentUpdater.enqueueReplaceState(context, context.state, null),\n processUpdateQueue(workInProgress, nextProps, context, renderLanes),\n suspendIfUpdateReadFromEntangledAsyncAction(),\n (context.state = workInProgress.memoizedState));\n \"function\" === typeof context.componentDidMount &&\n (workInProgress.flags |= 4194308);\n nextProps = !0;\n } else if (null === current) {\n context = workInProgress.stateNode;\n var unresolvedOldProps = workInProgress.memoizedProps,\n oldProps = resolveClassComponentProps(Component, unresolvedOldProps);\n context.props = oldProps;\n var oldContext = context.context,\n contextType$jscomp$0 = Component.contextType;\n contextType = emptyContextObject;\n \"object\" === typeof contextType$jscomp$0 &&\n null !== contextType$jscomp$0 &&\n (contextType = readContext(contextType$jscomp$0));\n var getDerivedStateFromProps = Component.getDerivedStateFromProps;\n contextType$jscomp$0 =\n \"function\" === typeof getDerivedStateFromProps ||\n \"function\" === typeof context.getSnapshotBeforeUpdate;\n unresolvedOldProps = workInProgress.pendingProps !== unresolvedOldProps;\n contextType$jscomp$0 ||\n (\"function\" !== typeof context.UNSAFE_componentWillReceiveProps &&\n \"function\" !== typeof context.componentWillReceiveProps) ||\n ((unresolvedOldProps || oldContext !== contextType) &&\n callComponentWillReceiveProps(\n workInProgress,\n context,\n nextProps,\n contextType\n ));\n hasForceUpdate = !1;\n var oldState = workInProgress.memoizedState;\n context.state = oldState;\n processUpdateQueue(workInProgress, nextProps, context, renderLanes);\n suspendIfUpdateReadFromEntangledAsyncAction();\n oldContext = workInProgress.memoizedState;\n unresolvedOldProps || oldState !== oldContext || hasForceUpdate\n ? (\"function\" === typeof getDerivedStateFromProps &&\n (applyDerivedStateFromProps(\n workInProgress,\n Component,\n getDerivedStateFromProps,\n nextProps\n ),\n (oldContext = workInProgress.memoizedState)),\n (oldProps =\n hasForceUpdate ||\n checkShouldComponentUpdate(\n workInProgress,\n Component,\n oldProps,\n nextProps,\n oldState,\n oldContext,\n contextType\n ))\n ? (contextType$jscomp$0 ||\n (\"function\" !== typeof context.UNSAFE_componentWillMount &&\n \"function\" !== typeof context.componentWillMount) ||\n (\"function\" === typeof context.componentWillMount &&\n context.componentWillMount(),\n \"function\" === typeof context.UNSAFE_componentWillMount &&\n context.UNSAFE_componentWillMount()),\n \"function\" === typeof context.componentDidMount &&\n (workInProgress.flags |= 4194308))\n : (\"function\" === typeof context.componentDidMount &&\n (workInProgress.flags |= 4194308),\n (workInProgress.memoizedProps = nextProps),\n (workInProgress.memoizedState = oldContext)),\n (context.props = nextProps),\n (context.state = oldContext),\n (context.context = contextType),\n (nextProps = oldProps))\n : (\"function\" === typeof context.componentDidMount &&\n (workInProgress.flags |= 4194308),\n (nextProps = !1));\n } else {\n context = workInProgress.stateNode;\n cloneUpdateQueue(current, workInProgress);\n contextType = workInProgress.memoizedProps;\n contextType$jscomp$0 = resolveClassComponentProps(Component, contextType);\n context.props = contextType$jscomp$0;\n getDerivedStateFromProps = workInProgress.pendingProps;\n oldState = context.context;\n oldContext = Component.contextType;\n oldProps = emptyContextObject;\n \"object\" === typeof oldContext &&\n null !== oldContext &&\n (oldProps = readContext(oldContext));\n unresolvedOldProps = Component.getDerivedStateFromProps;\n (oldContext =\n \"function\" === typeof unresolvedOldProps ||\n \"function\" === typeof context.getSnapshotBeforeUpdate) ||\n (\"function\" !== typeof context.UNSAFE_componentWillReceiveProps &&\n \"function\" !== typeof context.componentWillReceiveProps) ||\n ((contextType !== getDerivedStateFromProps || oldState !== oldProps) &&\n callComponentWillReceiveProps(\n workInProgress,\n context,\n nextProps,\n oldProps\n ));\n hasForceUpdate = !1;\n oldState = workInProgress.memoizedState;\n context.state = oldState;\n processUpdateQueue(workInProgress, nextProps, context, renderLanes);\n suspendIfUpdateReadFromEntangledAsyncAction();\n var newState = workInProgress.memoizedState;\n contextType !== getDerivedStateFromProps ||\n oldState !== newState ||\n hasForceUpdate ||\n (null !== current &&\n null !== current.dependencies &&\n checkIfContextChanged(current.dependencies))\n ? (\"function\" === typeof unresolvedOldProps &&\n (applyDerivedStateFromProps(\n workInProgress,\n Component,\n unresolvedOldProps,\n nextProps\n ),\n (newState = workInProgress.memoizedState)),\n (contextType$jscomp$0 =\n hasForceUpdate ||\n checkShouldComponentUpdate(\n workInProgress,\n Component,\n contextType$jscomp$0,\n nextProps,\n oldState,\n newState,\n oldProps\n ) ||\n (null !== current &&\n null !== current.dependencies &&\n checkIfContextChanged(current.dependencies)))\n ? (oldContext ||\n (\"function\" !== typeof context.UNSAFE_componentWillUpdate &&\n \"function\" !== typeof context.componentWillUpdate) ||\n (\"function\" === typeof context.componentWillUpdate &&\n context.componentWillUpdate(nextProps, newState, oldProps),\n \"function\" === typeof context.UNSAFE_componentWillUpdate &&\n context.UNSAFE_componentWillUpdate(\n nextProps,\n newState,\n oldProps\n )),\n \"function\" === typeof context.componentDidUpdate &&\n (workInProgress.flags |= 4),\n \"function\" === typeof context.getSnapshotBeforeUpdate &&\n (workInProgress.flags |= 1024))\n : (\"function\" !== typeof context.componentDidUpdate ||\n (contextType === current.memoizedProps &&\n oldState === current.memoizedState) ||\n (workInProgress.flags |= 4),\n \"function\" !== typeof context.getSnapshotBeforeUpdate ||\n (contextType === current.memoizedProps &&\n oldState === current.memoizedState) ||\n (workInProgress.flags |= 1024),\n (workInProgress.memoizedProps = nextProps),\n (workInProgress.memoizedState = newState)),\n (context.props = nextProps),\n (context.state = newState),\n (context.context = oldProps),\n (nextProps = contextType$jscomp$0))\n : (\"function\" !== typeof context.componentDidUpdate ||\n (contextType === current.memoizedProps &&\n oldState === current.memoizedState) ||\n (workInProgress.flags |= 4),\n \"function\" !== typeof context.getSnapshotBeforeUpdate ||\n (contextType === current.memoizedProps &&\n oldState === current.memoizedState) ||\n (workInProgress.flags |= 1024),\n (nextProps = !1));\n }\n context = nextProps;\n markRef(current, workInProgress);\n nextProps = 0 !== (workInProgress.flags & 128);\n context || nextProps\n ? ((context = workInProgress.stateNode),\n (Component =\n nextProps && \"function\" !== typeof Component.getDerivedStateFromError\n ? null\n : context.render()),\n (workInProgress.flags |= 1),\n null !== current && nextProps\n ? ((workInProgress.child = reconcileChildFibers(\n workInProgress,\n current.child,\n null,\n renderLanes\n )),\n (workInProgress.child = reconcileChildFibers(\n workInProgress,\n null,\n Component,\n renderLanes\n )))\n : reconcileChildren(current, workInProgress, Component, renderLanes),\n (workInProgress.memoizedState = context.state),\n (current = workInProgress.child))\n : (current = bailoutOnAlreadyFinishedWork(\n current,\n workInProgress,\n renderLanes\n ));\n return current;\n}\nfunction mountHostRootWithoutHydrating(\n current,\n workInProgress,\n nextChildren,\n renderLanes\n) {\n resetHydrationState();\n workInProgress.flags |= 256;\n reconcileChildren(current, workInProgress, nextChildren, renderLanes);\n return workInProgress.child;\n}\nvar SUSPENDED_MARKER = {\n dehydrated: null,\n treeContext: null,\n retryLane: 0,\n hydrationErrors: null\n};\nfunction mountSuspenseOffscreenState(renderLanes) {\n return { baseLanes: renderLanes, cachePool: getSuspendedCache() };\n}\nfunction getRemainingWorkInPrimaryTree(\n current,\n primaryTreeDidDefer,\n renderLanes\n) {\n current = null !== current ? current.childLanes & ~renderLanes : 0;\n primaryTreeDidDefer && (current |= workInProgressDeferredLane);\n return current;\n}\nfunction updateSuspenseComponent(current, workInProgress, renderLanes) {\n var nextProps = workInProgress.pendingProps,\n showFallback = !1,\n didSuspend = 0 !== (workInProgress.flags & 128),\n JSCompiler_temp;\n (JSCompiler_temp = didSuspend) ||\n (JSCompiler_temp =\n null !== current && null === current.memoizedState\n ? !1\n : 0 !== (suspenseStackCursor.current & 2));\n JSCompiler_temp && ((showFallback = !0), (workInProgress.flags &= -129));\n JSCompiler_temp = 0 !== (workInProgress.flags & 32);\n workInProgress.flags &= -33;\n if (null === current) {\n if (isHydrating) {\n showFallback\n ? pushPrimaryTreeSuspenseHandler(workInProgress)\n : reuseSuspenseHandlerOnStack();\n (current = nextHydratableInstance)\n ? ((current = canHydrateHydrationBoundary(\n current,\n rootOrSingletonContext\n )),\n (current = null !== current && \"&\" !== current.data ? current : null),\n null !== current &&\n ((workInProgress.memoizedState = {\n dehydrated: current,\n treeContext:\n null !== treeContextProvider\n ? { id: treeContextId, overflow: treeContextOverflow }\n : null,\n retryLane: 536870912,\n hydrationErrors: null\n }),\n (renderLanes = createFiberFromDehydratedFragment(current)),\n (renderLanes.return = workInProgress),\n (workInProgress.child = renderLanes),\n (hydrationParentFiber = workInProgress),\n (nextHydratableInstance = null)))\n : (current = null);\n if (null === current) throw throwOnHydrationMismatch(workInProgress);\n isSuspenseInstanceFallback(current)\n ? (workInProgress.lanes = 32)\n : (workInProgress.lanes = 536870912);\n return null;\n }\n var nextPrimaryChildren = nextProps.children;\n nextProps = nextProps.fallback;\n if (showFallback)\n return (\n reuseSuspenseHandlerOnStack(),\n (showFallback = workInProgress.mode),\n (nextPrimaryChildren = mountWorkInProgressOffscreenFiber(\n { mode: \"hidden\", children: nextPrimaryChildren },\n showFallback\n )),\n (nextProps = createFiberFromFragment(\n nextProps,\n showFallback,\n renderLanes,\n null\n )),\n (nextPrimaryChildren.return = workInProgress),\n (nextProps.return = workInProgress),\n (nextPrimaryChildren.sibling = nextProps),\n (workInProgress.child = nextPrimaryChildren),\n (nextProps = workInProgress.child),\n (nextProps.memoizedState = mountSuspenseOffscreenState(renderLanes)),\n (nextProps.childLanes = getRemainingWorkInPrimaryTree(\n current,\n JSCompiler_temp,\n renderLanes\n )),\n (workInProgress.memoizedState = SUSPENDED_MARKER),\n bailoutOffscreenComponent(null, nextProps)\n );\n pushPrimaryTreeSuspenseHandler(workInProgress);\n return mountSuspensePrimaryChildren(workInProgress, nextPrimaryChildren);\n }\n var prevState = current.memoizedState;\n if (\n null !== prevState &&\n ((nextPrimaryChildren = prevState.dehydrated), null !== nextPrimaryChildren)\n ) {\n if (didSuspend)\n workInProgress.flags & 256\n ? (pushPrimaryTreeSuspenseHandler(workInProgress),\n (workInProgress.flags &= -257),\n (workInProgress = retrySuspenseComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n )))\n : null !== workInProgress.memoizedState\n ? (reuseSuspenseHandlerOnStack(),\n (workInProgress.child = current.child),\n (workInProgress.flags |= 128),\n (workInProgress = null))\n : (reuseSuspenseHandlerOnStack(),\n (nextPrimaryChildren = nextProps.fallback),\n (showFallback = workInProgress.mode),\n (nextProps = mountWorkInProgressOffscreenFiber(\n { mode: \"visible\", children: nextProps.children },\n showFallback\n )),\n (nextPrimaryChildren = createFiberFromFragment(\n nextPrimaryChildren,\n showFallback,\n renderLanes,\n null\n )),\n (nextPrimaryChildren.flags |= 2),\n (nextProps.return = workInProgress),\n (nextPrimaryChildren.return = workInProgress),\n (nextProps.sibling = nextPrimaryChildren),\n (workInProgress.child = nextProps),\n reconcileChildFibers(\n workInProgress,\n current.child,\n null,\n renderLanes\n ),\n (nextProps = workInProgress.child),\n (nextProps.memoizedState =\n mountSuspenseOffscreenState(renderLanes)),\n (nextProps.childLanes = getRemainingWorkInPrimaryTree(\n current,\n JSCompiler_temp,\n renderLanes\n )),\n (workInProgress.memoizedState = SUSPENDED_MARKER),\n (workInProgress = bailoutOffscreenComponent(null, nextProps)));\n else if (\n (pushPrimaryTreeSuspenseHandler(workInProgress),\n isSuspenseInstanceFallback(nextPrimaryChildren))\n ) {\n JSCompiler_temp =\n nextPrimaryChildren.nextSibling &&\n nextPrimaryChildren.nextSibling.dataset;\n if (JSCompiler_temp) var digest = JSCompiler_temp.dgst;\n JSCompiler_temp = digest;\n nextProps = Error(formatProdErrorMessage(419));\n nextProps.stack = \"\";\n nextProps.digest = JSCompiler_temp;\n queueHydrationError({ value: nextProps, source: null, stack: null });\n workInProgress = retrySuspenseComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n );\n } else if (\n (didReceiveUpdate ||\n propagateParentContextChanges(current, workInProgress, renderLanes, !1),\n (JSCompiler_temp = 0 !== (renderLanes & current.childLanes)),\n didReceiveUpdate || JSCompiler_temp)\n ) {\n JSCompiler_temp = workInProgressRoot;\n if (\n null !== JSCompiler_temp &&\n ((nextProps = getBumpedLaneForHydration(JSCompiler_temp, renderLanes)),\n 0 !== nextProps && nextProps !== prevState.retryLane)\n )\n throw (\n ((prevState.retryLane = nextProps),\n enqueueConcurrentRenderForLane(current, nextProps),\n scheduleUpdateOnFiber(JSCompiler_temp, current, nextProps),\n SelectiveHydrationException)\n );\n isSuspenseInstancePending(nextPrimaryChildren) ||\n renderDidSuspendDelayIfPossible();\n workInProgress = retrySuspenseComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n );\n } else\n isSuspenseInstancePending(nextPrimaryChildren)\n ? ((workInProgress.flags |= 192),\n (workInProgress.child = current.child),\n (workInProgress = null))\n : ((current = prevState.treeContext),\n (nextHydratableInstance = getNextHydratable(\n nextPrimaryChildren.nextSibling\n )),\n (hydrationParentFiber = workInProgress),\n (isHydrating = !0),\n (hydrationErrors = null),\n (rootOrSingletonContext = !1),\n null !== current &&\n restoreSuspendedTreeContext(workInProgress, current),\n (workInProgress = mountSuspensePrimaryChildren(\n workInProgress,\n nextProps.children\n )),\n (workInProgress.flags |= 4096));\n return workInProgress;\n }\n if (showFallback)\n return (\n reuseSuspenseHandlerOnStack(),\n (nextPrimaryChildren = nextProps.fallback),\n (showFallback = workInProgress.mode),\n (prevState = current.child),\n (digest = prevState.sibling),\n (nextProps = createWorkInProgress(prevState, {\n mode: \"hidden\",\n children: nextProps.children\n })),\n (nextProps.subtreeFlags = prevState.subtreeFlags & 132120576),\n null !== digest\n ? (nextPrimaryChildren = createWorkInProgress(\n digest,\n nextPrimaryChildren\n ))\n : ((nextPrimaryChildren = createFiberFromFragment(\n nextPrimaryChildren,\n showFallback,\n renderLanes,\n null\n )),\n (nextPrimaryChildren.flags |= 2)),\n (nextPrimaryChildren.return = workInProgress),\n (nextProps.return = workInProgress),\n (nextProps.sibling = nextPrimaryChildren),\n (workInProgress.child = nextProps),\n bailoutOffscreenComponent(null, nextProps),\n (nextProps = workInProgress.child),\n (nextPrimaryChildren = current.child.memoizedState),\n null === nextPrimaryChildren\n ? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))\n : ((showFallback = nextPrimaryChildren.cachePool),\n null !== showFallback\n ? ((prevState = CacheContext._currentValue),\n (showFallback =\n showFallback.parent !== prevState\n ? { parent: prevState, pool: prevState }\n : showFallback))\n : (showFallback = getSuspendedCache()),\n (nextPrimaryChildren = {\n baseLanes: nextPrimaryChildren.baseLanes | renderLanes,\n cachePool: showFallback\n })),\n (nextProps.memoizedState = nextPrimaryChildren),\n (nextProps.childLanes = getRemainingWorkInPrimaryTree(\n current,\n JSCompiler_temp,\n renderLanes\n )),\n (workInProgress.memoizedState = SUSPENDED_MARKER),\n bailoutOffscreenComponent(current.child, nextProps)\n );\n pushPrimaryTreeSuspenseHandler(workInProgress);\n renderLanes = current.child;\n current = renderLanes.sibling;\n renderLanes = createWorkInProgress(renderLanes, {\n mode: \"visible\",\n children: nextProps.children\n });\n renderLanes.return = workInProgress;\n renderLanes.sibling = null;\n null !== current &&\n ((JSCompiler_temp = workInProgress.deletions),\n null === JSCompiler_temp\n ? ((workInProgress.deletions = [current]), (workInProgress.flags |= 16))\n : JSCompiler_temp.push(current));\n workInProgress.child = renderLanes;\n workInProgress.memoizedState = null;\n return renderLanes;\n}\nfunction mountSuspensePrimaryChildren(workInProgress, primaryChildren) {\n primaryChildren = mountWorkInProgressOffscreenFiber(\n { mode: \"visible\", children: primaryChildren },\n workInProgress.mode\n );\n primaryChildren.return = workInProgress;\n return (workInProgress.child = primaryChildren);\n}\nfunction mountWorkInProgressOffscreenFiber(offscreenProps, mode) {\n offscreenProps = createFiberImplClass(22, offscreenProps, null, mode);\n offscreenProps.lanes = 0;\n return offscreenProps;\n}\nfunction retrySuspenseComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n) {\n reconcileChildFibers(workInProgress, current.child, null, renderLanes);\n current = mountSuspensePrimaryChildren(\n workInProgress,\n workInProgress.pendingProps.children\n );\n current.flags |= 2;\n workInProgress.memoizedState = null;\n return current;\n}\nfunction scheduleSuspenseWorkOnFiber(fiber, renderLanes, propagationRoot) {\n fiber.lanes |= renderLanes;\n var alternate = fiber.alternate;\n null !== alternate && (alternate.lanes |= renderLanes);\n scheduleContextWorkOnParentPath(fiber.return, renderLanes, propagationRoot);\n}\nfunction findLastContentRow(firstChild) {\n for (var lastContentRow = null; null !== firstChild; ) {\n var currentRow = firstChild.alternate;\n null !== currentRow &&\n null === findFirstSuspended(currentRow) &&\n (lastContentRow = firstChild);\n firstChild = firstChild.sibling;\n }\n return lastContentRow;\n}\nfunction initSuspenseListRenderState(\n workInProgress,\n isBackwards,\n tail,\n lastContentRow,\n tailMode,\n treeForkCount\n) {\n var renderState = workInProgress.memoizedState;\n null === renderState\n ? (workInProgress.memoizedState = {\n isBackwards: isBackwards,\n rendering: null,\n renderingStartTime: 0,\n last: lastContentRow,\n tail: tail,\n tailMode: tailMode,\n treeForkCount: treeForkCount\n })\n : ((renderState.isBackwards = isBackwards),\n (renderState.rendering = null),\n (renderState.renderingStartTime = 0),\n (renderState.last = lastContentRow),\n (renderState.tail = tail),\n (renderState.tailMode = tailMode),\n (renderState.treeForkCount = treeForkCount));\n}\nfunction reverseChildren(fiber) {\n var row = fiber.child;\n for (fiber.child = null; null !== row; ) {\n var nextRow = row.sibling;\n row.sibling = fiber.child;\n fiber.child = row;\n row = nextRow;\n }\n}\nfunction updateSuspenseListComponent(current, workInProgress, renderLanes) {\n var nextProps = workInProgress.pendingProps,\n revealOrder = nextProps.revealOrder,\n tailMode = nextProps.tail;\n nextProps = nextProps.children;\n var suspenseContext = suspenseStackCursor.current;\n if (workInProgress.flags & 128)\n return pushSuspenseListContext(workInProgress, suspenseContext), null;\n var shouldForceFallback = 0 !== (suspenseContext & 2);\n shouldForceFallback\n ? ((suspenseContext = (suspenseContext & 1) | 2),\n (workInProgress.flags |= 128))\n : (suspenseContext &= 1);\n pushSuspenseListContext(workInProgress, suspenseContext);\n \"backwards\" === revealOrder && null !== current\n ? (reverseChildren(current),\n reconcileChildren(current, workInProgress, nextProps, renderLanes),\n reverseChildren(current))\n : reconcileChildren(current, workInProgress, nextProps, renderLanes);\n nextProps = isHydrating ? treeForkCount : 0;\n if (!shouldForceFallback && null !== current && 0 !== (current.flags & 128))\n a: for (current = workInProgress.child; null !== current; ) {\n if (13 === current.tag)\n null !== current.memoizedState &&\n scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);\n else if (19 === current.tag)\n scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);\n else if (null !== current.child) {\n current.child.return = current;\n current = current.child;\n continue;\n }\n if (current === workInProgress) break a;\n for (; null === current.sibling; ) {\n if (null === current.return || current.return === workInProgress)\n break a;\n current = current.return;\n }\n current.sibling.return = current.return;\n current = current.sibling;\n }\n switch (revealOrder) {\n case \"backwards\":\n renderLanes = findLastContentRow(workInProgress.child);\n null === renderLanes\n ? ((revealOrder = workInProgress.child), (workInProgress.child = null))\n : ((revealOrder = renderLanes.sibling),\n (renderLanes.sibling = null),\n reverseChildren(workInProgress));\n initSuspenseListRenderState(\n workInProgress,\n !0,\n revealOrder,\n null,\n tailMode,\n nextProps\n );\n break;\n case \"unstable_legacy-backwards\":\n renderLanes = null;\n revealOrder = workInProgress.child;\n for (workInProgress.child = null; null !== revealOrder; ) {\n current = revealOrder.alternate;\n if (null !== current && null === findFirstSuspended(current)) {\n workInProgress.child = revealOrder;\n break;\n }\n current = revealOrder.sibling;\n revealOrder.sibling = renderLanes;\n renderLanes = revealOrder;\n revealOrder = current;\n }\n initSuspenseListRenderState(\n workInProgress,\n !0,\n renderLanes,\n null,\n tailMode,\n nextProps\n );\n break;\n case \"together\":\n initSuspenseListRenderState(\n workInProgress,\n !1,\n null,\n null,\n void 0,\n nextProps\n );\n break;\n case \"independent\":\n workInProgress.memoizedState = null;\n break;\n default:\n (renderLanes = findLastContentRow(workInProgress.child)),\n null === renderLanes\n ? ((revealOrder = workInProgress.child),\n (workInProgress.child = null))\n : ((revealOrder = renderLanes.sibling), (renderLanes.sibling = null)),\n initSuspenseListRenderState(\n workInProgress,\n !1,\n revealOrder,\n renderLanes,\n tailMode,\n nextProps\n );\n }\n return workInProgress.child;\n}\nfunction bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes) {\n null !== current && (workInProgress.dependencies = current.dependencies);\n workInProgressRootSkippedLanes |= workInProgress.lanes;\n if (0 === (renderLanes & workInProgress.childLanes))\n if (null !== current) {\n if (\n (propagateParentContextChanges(\n current,\n workInProgress,\n renderLanes,\n !1\n ),\n 0 === (renderLanes & workInProgress.childLanes))\n )\n return null;\n } else return null;\n if (null !== current && workInProgress.child !== current.child)\n throw Error(formatProdErrorMessage(153));\n if (null !== workInProgress.child) {\n current = workInProgress.child;\n renderLanes = createWorkInProgress(current, current.pendingProps);\n workInProgress.child = renderLanes;\n for (renderLanes.return = workInProgress; null !== current.sibling; )\n (current = current.sibling),\n (renderLanes = renderLanes.sibling =\n createWorkInProgress(current, current.pendingProps)),\n (renderLanes.return = workInProgress);\n renderLanes.sibling = null;\n }\n return workInProgress.child;\n}\nfunction checkScheduledUpdateOrContext(current, renderLanes) {\n if (0 !== (current.lanes & renderLanes)) return !0;\n current = current.dependencies;\n return null !== current && checkIfContextChanged(current) ? !0 : !1;\n}\nfunction attemptEarlyBailoutIfNoScheduledUpdate(\n current,\n workInProgress,\n renderLanes\n) {\n switch (workInProgress.tag) {\n case 3:\n pushHostContainer(workInProgress, workInProgress.stateNode.containerInfo);\n pushProvider(workInProgress, CacheContext, current.memoizedState.cache);\n resetHydrationState();\n break;\n case 27:\n case 5:\n pushHostContext(workInProgress);\n break;\n case 4:\n pushHostContainer(workInProgress, workInProgress.stateNode.containerInfo);\n break;\n case 10:\n pushProvider(\n workInProgress,\n workInProgress.type,\n workInProgress.memoizedProps.value\n );\n break;\n case 31:\n if (null !== workInProgress.memoizedState)\n return (\n (workInProgress.flags |= 128),\n pushDehydratedActivitySuspenseHandler(workInProgress),\n null\n );\n break;\n case 13:\n var state$106 = workInProgress.memoizedState;\n if (null !== state$106) {\n if (null !== state$106.dehydrated)\n return (\n pushPrimaryTreeSuspenseHandler(workInProgress),\n (workInProgress.flags |= 128),\n null\n );\n if (0 !== (renderLanes & workInProgress.child.childLanes))\n return updateSuspenseComponent(current, workInProgress, renderLanes);\n pushPrimaryTreeSuspenseHandler(workInProgress);\n current = bailoutOnAlreadyFinishedWork(\n current,\n workInProgress,\n renderLanes\n );\n return null !== current ? current.sibling : null;\n }\n pushPrimaryTreeSuspenseHandler(workInProgress);\n break;\n case 19:\n if (workInProgress.flags & 128)\n return updateSuspenseListComponent(\n current,\n workInProgress,\n renderLanes\n );\n var didSuspendBefore = 0 !== (current.flags & 128);\n state$106 = 0 !== (renderLanes & workInProgress.childLanes);\n state$106 ||\n (propagateParentContextChanges(\n current,\n workInProgress,\n renderLanes,\n !1\n ),\n (state$106 = 0 !== (renderLanes & workInProgress.childLanes)));\n if (didSuspendBefore) {\n if (state$106)\n return updateSuspenseListComponent(\n current,\n workInProgress,\n renderLanes\n );\n workInProgress.flags |= 128;\n }\n didSuspendBefore = workInProgress.memoizedState;\n null !== didSuspendBefore &&\n ((didSuspendBefore.rendering = null),\n (didSuspendBefore.tail = null),\n (didSuspendBefore.lastEffect = null));\n pushSuspenseListContext(workInProgress, suspenseStackCursor.current);\n if (state$106) break;\n else return null;\n case 22:\n return (\n (workInProgress.lanes = 0),\n updateOffscreenComponent(\n current,\n workInProgress,\n renderLanes,\n workInProgress.pendingProps\n )\n );\n case 24:\n pushProvider(workInProgress, CacheContext, current.memoizedState.cache);\n }\n return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);\n}\nfunction beginWork(current, workInProgress, renderLanes) {\n if (null !== current)\n if (current.memoizedProps !== workInProgress.pendingProps)\n didReceiveUpdate = !0;\n else {\n if (\n !checkScheduledUpdateOrContext(current, renderLanes) &&\n 0 === (workInProgress.flags & 128)\n )\n return (\n (didReceiveUpdate = !1),\n attemptEarlyBailoutIfNoScheduledUpdate(\n current,\n workInProgress,\n renderLanes\n )\n );\n didReceiveUpdate = 0 !== (current.flags & 131072) ? !0 : !1;\n }\n else\n (didReceiveUpdate = !1),\n isHydrating &&\n 0 !== (workInProgress.flags & 1048576) &&\n pushTreeId(workInProgress, treeForkCount, workInProgress.index);\n workInProgress.lanes = 0;\n switch (workInProgress.tag) {\n case 16:\n a: {\n var props = workInProgress.pendingProps;\n current = resolveLazy(workInProgress.elementType);\n workInProgress.type = current;\n if (\"function\" === typeof current)\n shouldConstruct(current)\n ? ((props = resolveClassComponentProps(current, props)),\n (workInProgress.tag = 1),\n (workInProgress = updateClassComponent(\n null,\n workInProgress,\n current,\n props,\n renderLanes\n )))\n : ((workInProgress.tag = 0),\n (workInProgress = updateFunctionComponent(\n null,\n workInProgress,\n current,\n props,\n renderLanes\n )));\n else {\n if (void 0 !== current && null !== current) {\n var $$typeof = current.$$typeof;\n if ($$typeof === REACT_FORWARD_REF_TYPE) {\n workInProgress.tag = 11;\n workInProgress = updateForwardRef(\n null,\n workInProgress,\n current,\n props,\n renderLanes\n );\n break a;\n } else if ($$typeof === REACT_MEMO_TYPE) {\n workInProgress.tag = 14;\n workInProgress = updateMemoComponent(\n null,\n workInProgress,\n current,\n props,\n renderLanes\n );\n break a;\n }\n }\n workInProgress = getComponentNameFromType(current) || current;\n throw Error(formatProdErrorMessage(306, workInProgress, \"\"));\n }\n }\n return workInProgress;\n case 0:\n return updateFunctionComponent(\n current,\n workInProgress,\n workInProgress.type,\n workInProgress.pendingProps,\n renderLanes\n );\n case 1:\n return (\n (props = workInProgress.type),\n ($$typeof = resolveClassComponentProps(\n props,\n workInProgress.pendingProps\n )),\n updateClassComponent(\n current,\n workInProgress,\n props,\n $$typeof,\n renderLanes\n )\n );\n case 3:\n a: {\n pushHostContainer(\n workInProgress,\n workInProgress.stateNode.containerInfo\n );\n if (null === current) throw Error(formatProdErrorMessage(387));\n props = workInProgress.pendingProps;\n var prevState = workInProgress.memoizedState;\n $$typeof = prevState.element;\n cloneUpdateQueue(current, workInProgress);\n processUpdateQueue(workInProgress, props, null, renderLanes);\n var nextState = workInProgress.memoizedState;\n props = nextState.cache;\n pushProvider(workInProgress, CacheContext, props);\n props !== prevState.cache &&\n propagateContextChanges(\n workInProgress,\n [CacheContext],\n renderLanes,\n !0\n );\n suspendIfUpdateReadFromEntangledAsyncAction();\n props = nextState.element;\n if (prevState.isDehydrated)\n if (\n ((prevState = {\n element: props,\n isDehydrated: !1,\n cache: nextState.cache\n }),\n (workInProgress.updateQueue.baseState = prevState),\n (workInProgress.memoizedState = prevState),\n workInProgress.flags & 256)\n ) {\n workInProgress = mountHostRootWithoutHydrating(\n current,\n workInProgress,\n props,\n renderLanes\n );\n break a;\n } else if (props !== $$typeof) {\n $$typeof = createCapturedValueAtFiber(\n Error(formatProdErrorMessage(424)),\n workInProgress\n );\n queueHydrationError($$typeof);\n workInProgress = mountHostRootWithoutHydrating(\n current,\n workInProgress,\n props,\n renderLanes\n );\n break a;\n } else {\n current = workInProgress.stateNode.containerInfo;\n switch (current.nodeType) {\n case 9:\n current = current.body;\n break;\n default:\n current =\n \"HTML\" === current.nodeName\n ? current.ownerDocument.body\n : current;\n }\n nextHydratableInstance = getNextHydratable(current.firstChild);\n hydrationParentFiber = workInProgress;\n isHydrating = !0;\n hydrationErrors = null;\n rootOrSingletonContext = !0;\n renderLanes = mountChildFibers(\n workInProgress,\n null,\n props,\n renderLanes\n );\n for (workInProgress.child = renderLanes; renderLanes; )\n (renderLanes.flags = (renderLanes.flags & -3) | 4096),\n (renderLanes = renderLanes.sibling);\n }\n else {\n resetHydrationState();\n if (props === $$typeof) {\n workInProgress = bailoutOnAlreadyFinishedWork(\n current,\n workInProgress,\n renderLanes\n );\n break a;\n }\n reconcileChildren(current, workInProgress, props, renderLanes);\n }\n workInProgress = workInProgress.child;\n }\n return workInProgress;\n case 26:\n return (\n markRef(current, workInProgress),\n null === current\n ? (renderLanes = getResource(\n workInProgress.type,\n null,\n workInProgress.pendingProps,\n null\n ))\n ? (workInProgress.memoizedState = renderLanes)\n : isHydrating ||\n ((renderLanes = workInProgress.type),\n (current = workInProgress.pendingProps),\n (props = getOwnerDocumentFromRootContainer(\n rootInstanceStackCursor.current\n ).createElement(renderLanes)),\n (props[internalInstanceKey] = workInProgress),\n (props[internalPropsKey] = current),\n setInitialProperties(props, renderLanes, current),\n markNodeAsHoistable(props),\n (workInProgress.stateNode = props))\n : (workInProgress.memoizedState = getResource(\n workInProgress.type,\n current.memoizedProps,\n workInProgress.pendingProps,\n current.memoizedState\n )),\n null\n );\n case 27:\n return (\n pushHostContext(workInProgress),\n null === current &&\n isHydrating &&\n ((props = workInProgress.stateNode =\n resolveSingletonInstance(\n workInProgress.type,\n workInProgress.pendingProps,\n rootInstanceStackCursor.current\n )),\n (hydrationParentFiber = workInProgress),\n (rootOrSingletonContext = !0),\n ($$typeof = nextHydratableInstance),\n isSingletonScope(workInProgress.type)\n ? ((previousHydratableOnEnteringScopedSingleton = $$typeof),\n (nextHydratableInstance = getNextHydratable(props.firstChild)))\n : (nextHydratableInstance = $$typeof)),\n reconcileChildren(\n current,\n workInProgress,\n workInProgress.pendingProps.children,\n renderLanes\n ),\n markRef(current, workInProgress),\n null === current && (workInProgress.flags |= 4194304),\n workInProgress.child\n );\n case 5:\n if (null === current && isHydrating) {\n if (($$typeof = props = nextHydratableInstance))\n (props = canHydrateInstance(\n props,\n workInProgress.type,\n workInProgress.pendingProps,\n rootOrSingletonContext\n )),\n null !== props\n ? ((workInProgress.stateNode = props),\n (hydrationParentFiber = workInProgress),\n (nextHydratableInstance = getNextHydratable(props.firstChild)),\n (rootOrSingletonContext = !1),\n ($$typeof = !0))\n : ($$typeof = !1);\n $$typeof || throwOnHydrationMismatch(workInProgress);\n }\n pushHostContext(workInProgress);\n $$typeof = workInProgress.type;\n prevState = workInProgress.pendingProps;\n nextState = null !== current ? current.memoizedProps : null;\n props = prevState.children;\n shouldSetTextContent($$typeof, prevState)\n ? (props = null)\n : null !== nextState &&\n shouldSetTextContent($$typeof, nextState) &&\n (workInProgress.flags |= 32);\n null !== workInProgress.memoizedState &&\n (($$typeof = renderWithHooks(\n current,\n workInProgress,\n TransitionAwareHostComponent,\n null,\n null,\n renderLanes\n )),\n (HostTransitionContext._currentValue = $$typeof));\n markRef(current, workInProgress);\n reconcileChildren(current, workInProgress, props, renderLanes);\n return workInProgress.child;\n case 6:\n if (null === current && isHydrating) {\n if ((current = renderLanes = nextHydratableInstance))\n (renderLanes = canHydrateTextInstance(\n renderLanes,\n workInProgress.pendingProps,\n rootOrSingletonContext\n )),\n null !== renderLanes\n ? ((workInProgress.stateNode = renderLanes),\n (hydrationParentFiber = workInProgress),\n (nextHydratableInstance = null),\n (current = !0))\n : (current = !1);\n current || throwOnHydrationMismatch(workInProgress);\n }\n return null;\n case 13:\n return updateSuspenseComponent(current, workInProgress, renderLanes);\n case 4:\n return (\n pushHostContainer(\n workInProgress,\n workInProgress.stateNode.containerInfo\n ),\n (props = workInProgress.pendingProps),\n null === current\n ? (workInProgress.child = reconcileChildFibers(\n workInProgress,\n null,\n props,\n renderLanes\n ))\n : reconcileChildren(current, workInProgress, props, renderLanes),\n workInProgress.child\n );\n case 11:\n return updateForwardRef(\n current,\n workInProgress,\n workInProgress.type,\n workInProgress.pendingProps,\n renderLanes\n );\n case 7:\n return (\n (props = workInProgress.pendingProps),\n markRef(current, workInProgress),\n reconcileChildren(current, workInProgress, props, renderLanes),\n workInProgress.child\n );\n case 8:\n return (\n reconcileChildren(\n current,\n workInProgress,\n workInProgress.pendingProps.children,\n renderLanes\n ),\n workInProgress.child\n );\n case 12:\n return (\n reconcileChildren(\n current,\n workInProgress,\n workInProgress.pendingProps.children,\n renderLanes\n ),\n workInProgress.child\n );\n case 10:\n return (\n (props = workInProgress.pendingProps),\n pushProvider(workInProgress, workInProgress.type, props.value),\n reconcileChildren(current, workInProgress, props.children, renderLanes),\n workInProgress.child\n );\n case 9:\n return (\n ($$typeof = workInProgress.type._context),\n (props = workInProgress.pendingProps.children),\n prepareToReadContext(workInProgress),\n ($$typeof = readContext($$typeof)),\n (props = props($$typeof)),\n (workInProgress.flags |= 1),\n reconcileChildren(current, workInProgress, props, renderLanes),\n workInProgress.child\n );\n case 14:\n return updateMemoComponent(\n current,\n workInProgress,\n workInProgress.type,\n workInProgress.pendingProps,\n renderLanes\n );\n case 15:\n return updateSimpleMemoComponent(\n current,\n workInProgress,\n workInProgress.type,\n workInProgress.pendingProps,\n renderLanes\n );\n case 19:\n return updateSuspenseListComponent(current, workInProgress, renderLanes);\n case 31:\n return updateActivityComponent(current, workInProgress, renderLanes);\n case 22:\n return updateOffscreenComponent(\n current,\n workInProgress,\n renderLanes,\n workInProgress.pendingProps\n );\n case 24:\n return (\n prepareToReadContext(workInProgress),\n (props = readContext(CacheContext)),\n null === current\n ? (($$typeof = peekCacheFromPool()),\n null === $$typeof &&\n (($$typeof = workInProgressRoot),\n (prevState = createCache()),\n ($$typeof.pooledCache = prevState),\n prevState.refCount++,\n null !== prevState && ($$typeof.pooledCacheLanes |= renderLanes),\n ($$typeof = prevState)),\n (workInProgress.memoizedState = { parent: props, cache: $$typeof }),\n initializeUpdateQueue(workInProgress),\n pushProvider(workInProgress, CacheContext, $$typeof))\n : (0 !== (current.lanes & renderLanes) &&\n (cloneUpdateQueue(current, workInProgress),\n processUpdateQueue(workInProgress, null, null, renderLanes),\n suspendIfUpdateReadFromEntangledAsyncAction()),\n ($$typeof = current.memoizedState),\n (prevState = workInProgress.memoizedState),\n $$typeof.parent !== props\n ? (($$typeof = { parent: props, cache: props }),\n (workInProgress.memoizedState = $$typeof),\n 0 === workInProgress.lanes &&\n (workInProgress.memoizedState =\n workInProgress.updateQueue.baseState =\n $$typeof),\n pushProvider(workInProgress, CacheContext, props))\n : ((props = prevState.cache),\n pushProvider(workInProgress, CacheContext, props),\n props !== $$typeof.cache &&\n propagateContextChanges(\n workInProgress,\n [CacheContext],\n renderLanes,\n !0\n ))),\n reconcileChildren(\n current,\n workInProgress,\n workInProgress.pendingProps.children,\n renderLanes\n ),\n workInProgress.child\n );\n case 30:\n return (\n (props = workInProgress.pendingProps),\n null != props.name && \"auto\" !== props.name\n ? (workInProgress.flags |= null === current ? 18882560 : 18874368)\n : isHydrating && pushMaterializedTreeId(workInProgress),\n null !== current && current.memoizedProps.name !== props.name\n ? (workInProgress.flags |= 4194816)\n : markRef(current, workInProgress),\n reconcileChildren(current, workInProgress, props.children, renderLanes),\n workInProgress.child\n );\n case 29:\n throw workInProgress.pendingProps;\n }\n throw Error(formatProdErrorMessage(156, workInProgress.tag));\n}\nfunction markUpdate(workInProgress) {\n workInProgress.flags |= 4;\n}\nfunction preloadInstanceAndSuspendIfNeeded(\n workInProgress,\n type,\n oldProps,\n newProps,\n renderLanes\n) {\n var JSCompiler_temp;\n if ((JSCompiler_temp = 0 !== (workInProgress.mode & 32)))\n JSCompiler_temp =\n null === oldProps\n ? maySuspendCommit(type, newProps)\n : maySuspendCommit(type, newProps) &&\n (newProps.src !== oldProps.src ||\n newProps.srcSet !== oldProps.srcSet);\n if (JSCompiler_temp) {\n if (\n ((workInProgress.flags |= 16777216),\n (renderLanes & 335544128) === renderLanes)\n )\n if (workInProgress.stateNode.complete) workInProgress.flags |= 8192;\n else if (shouldRemainOnPreviousScreen()) workInProgress.flags |= 8192;\n else\n throw (\n ((suspendedThenable = noopSuspenseyCommitThenable),\n SuspenseyCommitException)\n );\n } else workInProgress.flags &= -16777217;\n}\nfunction preloadResourceAndSuspendIfNeeded(workInProgress, resource) {\n if (\"stylesheet\" !== resource.type || 0 !== (resource.state.loading & 4))\n workInProgress.flags &= -16777217;\n else if (((workInProgress.flags |= 16777216), !preloadResource(resource)))\n if (shouldRemainOnPreviousScreen()) workInProgress.flags |= 8192;\n else\n throw (\n ((suspendedThenable = noopSuspenseyCommitThenable),\n SuspenseyCommitException)\n );\n}\nfunction scheduleRetryEffect(workInProgress, retryQueue) {\n null !== retryQueue && (workInProgress.flags |= 4);\n workInProgress.flags & 16384 &&\n ((retryQueue =\n 22 !== workInProgress.tag ? claimNextRetryLane() : 536870912),\n (workInProgress.lanes |= retryQueue),\n (workInProgressSuspendedRetryLanes |= retryQueue));\n}\nfunction cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {\n if (!isHydrating)\n switch (renderState.tailMode) {\n case \"visible\":\n break;\n case \"collapsed\":\n for (\n var tailNode = renderState.tail, lastTailNode = null;\n null !== tailNode;\n\n )\n null !== tailNode.alternate && (lastTailNode = tailNode),\n (tailNode = tailNode.sibling);\n null === lastTailNode\n ? hasRenderedATailFallback || null === renderState.tail\n ? (renderState.tail = null)\n : (renderState.tail.sibling = null)\n : (lastTailNode.sibling = null);\n break;\n default:\n hasRenderedATailFallback = renderState.tail;\n for (tailNode = null; null !== hasRenderedATailFallback; )\n null !== hasRenderedATailFallback.alternate &&\n (tailNode = hasRenderedATailFallback),\n (hasRenderedATailFallback = hasRenderedATailFallback.sibling);\n null === tailNode\n ? (renderState.tail = null)\n : (tailNode.sibling = null);\n }\n}\nfunction bubbleProperties(completedWork) {\n var didBailout =\n null !== completedWork.alternate &&\n completedWork.alternate.child === completedWork.child,\n newChildLanes = 0,\n subtreeFlags = 0;\n if (didBailout)\n for (var child$111 = completedWork.child; null !== child$111; )\n (newChildLanes |= child$111.lanes | child$111.childLanes),\n (subtreeFlags |= child$111.subtreeFlags & 132120576),\n (subtreeFlags |= child$111.flags & 132120576),\n (child$111.return = completedWork),\n (child$111 = child$111.sibling);\n else\n for (child$111 = completedWork.child; null !== child$111; )\n (newChildLanes |= child$111.lanes | child$111.childLanes),\n (subtreeFlags |= child$111.subtreeFlags),\n (subtreeFlags |= child$111.flags),\n (child$111.return = completedWork),\n (child$111 = child$111.sibling);\n completedWork.subtreeFlags |= subtreeFlags;\n completedWork.childLanes = newChildLanes;\n return didBailout;\n}\nfunction completeWork(current, workInProgress, renderLanes) {\n var newProps = workInProgress.pendingProps;\n popTreeContext(workInProgress);\n switch (workInProgress.tag) {\n case 16:\n case 15:\n case 0:\n case 11:\n case 7:\n case 8:\n case 12:\n case 9:\n case 14:\n return bubbleProperties(workInProgress), null;\n case 1:\n return bubbleProperties(workInProgress), null;\n case 3:\n renderLanes = workInProgress.stateNode;\n newProps = null;\n null !== current && (newProps = current.memoizedState.cache);\n workInProgress.memoizedState.cache !== newProps &&\n (workInProgress.flags |= 2048);\n popProvider(CacheContext);\n popHostContainer();\n renderLanes.pendingContext &&\n ((renderLanes.context = renderLanes.pendingContext),\n (renderLanes.pendingContext = null));\n if (null === current || null === current.child)\n popHydrationState(workInProgress)\n ? markUpdate(workInProgress)\n : null === current ||\n (current.memoizedState.isDehydrated &&\n 0 === (workInProgress.flags & 256)) ||\n ((workInProgress.flags |= 1024),\n upgradeHydrationErrorsToRecoverable());\n bubbleProperties(workInProgress);\n return null;\n case 26:\n var type = workInProgress.type,\n nextResource = workInProgress.memoizedState;\n null === current\n ? (markUpdate(workInProgress),\n null !== nextResource\n ? (bubbleProperties(workInProgress),\n preloadResourceAndSuspendIfNeeded(workInProgress, nextResource))\n : (bubbleProperties(workInProgress),\n preloadInstanceAndSuspendIfNeeded(\n workInProgress,\n type,\n null,\n newProps,\n renderLanes\n )))\n : nextResource\n ? nextResource !== current.memoizedState\n ? (markUpdate(workInProgress),\n bubbleProperties(workInProgress),\n preloadResourceAndSuspendIfNeeded(workInProgress, nextResource))\n : (bubbleProperties(workInProgress),\n (workInProgress.flags &= -16777217))\n : ((current = current.memoizedProps),\n current !== newProps && markUpdate(workInProgress),\n bubbleProperties(workInProgress),\n preloadInstanceAndSuspendIfNeeded(\n workInProgress,\n type,\n current,\n newProps,\n renderLanes\n ));\n return null;\n case 27:\n popHostContext(workInProgress);\n renderLanes = rootInstanceStackCursor.current;\n type = workInProgress.type;\n if (null !== current && null != workInProgress.stateNode)\n current.memoizedProps !== newProps && markUpdate(workInProgress);\n else {\n if (!newProps) {\n if (null === workInProgress.stateNode)\n throw Error(formatProdErrorMessage(166));\n bubbleProperties(workInProgress);\n workInProgress.subtreeFlags &= -33554433;\n return null;\n }\n current = contextStackCursor.current;\n popHydrationState(workInProgress)\n ? prepareToHydrateHostInstance(workInProgress, current)\n : ((current = resolveSingletonInstance(type, newProps, renderLanes)),\n (workInProgress.stateNode = current),\n markUpdate(workInProgress));\n }\n bubbleProperties(workInProgress);\n workInProgress.subtreeFlags &= -33554433;\n return null;\n case 5:\n popHostContext(workInProgress);\n type = workInProgress.type;\n if (null !== current && null != workInProgress.stateNode)\n current.memoizedProps !== newProps && markUpdate(workInProgress);\n else {\n if (!newProps) {\n if (null === workInProgress.stateNode)\n throw Error(formatProdErrorMessage(166));\n bubbleProperties(workInProgress);\n workInProgress.subtreeFlags &= -33554433;\n return null;\n }\n nextResource = contextStackCursor.current;\n if (popHydrationState(workInProgress))\n prepareToHydrateHostInstance(workInProgress, nextResource);\n else {\n var ownerDocument = getOwnerDocumentFromRootContainer(\n rootInstanceStackCursor.current\n );\n switch (nextResource) {\n case 1:\n nextResource = ownerDocument.createElementNS(\n \"http://www.w3.org/2000/svg\",\n type\n );\n break;\n case 2:\n nextResource = ownerDocument.createElementNS(\n \"http://www.w3.org/1998/Math/MathML\",\n type\n );\n break;\n default:\n switch (type) {\n case \"svg\":\n nextResource = ownerDocument.createElementNS(\n \"http://www.w3.org/2000/svg\",\n type\n );\n break;\n case \"math\":\n nextResource = ownerDocument.createElementNS(\n \"http://www.w3.org/1998/Math/MathML\",\n type\n );\n break;\n case \"script\":\n nextResource = ownerDocument.createElement(\"div\");\n nextResource.innerHTML = \"<script>\\x3c/script>\";\n nextResource = nextResource.removeChild(\n nextResource.firstChild\n );\n break;\n case \"select\":\n nextResource =\n \"string\" === typeof newProps.is\n ? ownerDocument.createElement(\"select\", {\n is: newProps.is\n })\n : ownerDocument.createElement(\"select\");\n newProps.multiple\n ? (nextResource.multiple = !0)\n : newProps.size && (nextResource.size = newProps.size);\n break;\n default:\n nextResource =\n \"string\" === typeof newProps.is\n ? ownerDocument.createElement(type, { is: newProps.is })\n : ownerDocument.createElement(type);\n }\n }\n nextResource[internalInstanceKey] = workInProgress;\n nextResource[internalPropsKey] = newProps;\n a: for (\n ownerDocument = workInProgress.child;\n null !== ownerDocument;\n\n ) {\n if (5 === ownerDocument.tag || 6 === ownerDocument.tag)\n nextResource.appendChild(ownerDocument.stateNode);\n else if (\n 4 !== ownerDocument.tag &&\n 27 !== ownerDocument.tag &&\n null !== ownerDocument.child\n ) {\n ownerDocument.child.return = ownerDocument;\n ownerDocument = ownerDocument.child;\n continue;\n }\n if (ownerDocument === workInProgress) break a;\n for (; null === ownerDocument.sibling; ) {\n if (\n null === ownerDocument.return ||\n ownerDocument.return === workInProgress\n )\n break a;\n ownerDocument = ownerDocument.return;\n }\n ownerDocument.sibling.return = ownerDocument.return;\n ownerDocument = ownerDocument.sibling;\n }\n workInProgress.stateNode = nextResource;\n a: switch (\n (setInitialProperties(nextResource, type, newProps), type)\n ) {\n case \"button\":\n case \"input\":\n case \"select\":\n case \"textarea\":\n newProps = !!newProps.autoFocus;\n break a;\n case \"img\":\n newProps = !0;\n break a;\n default:\n newProps = !1;\n }\n newProps && markUpdate(workInProgress);\n }\n }\n bubbleProperties(workInProgress);\n workInProgress.subtreeFlags &= -33554433;\n preloadInstanceAndSuspendIfNeeded(\n workInProgress,\n workInProgress.type,\n null === current ? null : current.memoizedProps,\n workInProgress.pendingProps,\n renderLanes\n );\n return null;\n case 6:\n if (current && null != workInProgress.stateNode)\n current.memoizedProps !== newProps && markUpdate(workInProgress);\n else {\n if (\"string\" !== typeof newProps && null === workInProgress.stateNode)\n throw Error(formatProdErrorMessage(166));\n current = rootInstanceStackCursor.current;\n if (popHydrationState(workInProgress)) {\n current = workInProgress.stateNode;\n renderLanes = workInProgress.memoizedProps;\n newProps = null;\n type = hydrationParentFiber;\n if (null !== type)\n switch (type.tag) {\n case 27:\n case 5:\n newProps = type.memoizedProps;\n }\n current[internalInstanceKey] = workInProgress;\n current =\n current.nodeValue === renderLanes ||\n (null !== newProps && !0 === newProps.suppressHydrationWarning) ||\n checkForUnmatchedText(current.nodeValue, renderLanes)\n ? !0\n : !1;\n current || throwOnHydrationMismatch(workInProgress, !0);\n } else\n (current =\n getOwnerDocumentFromRootContainer(current).createTextNode(\n newProps\n )),\n (current[internalInstanceKey] = workInProgress),\n (workInProgress.stateNode = current);\n }\n bubbleProperties(workInProgress);\n return null;\n case 31:\n renderLanes = workInProgress.memoizedState;\n if (null === current || null !== current.memoizedState) {\n newProps = popHydrationState(workInProgress);\n if (null !== renderLanes) {\n if (null === current) {\n if (!newProps) throw Error(formatProdErrorMessage(318));\n current = workInProgress.memoizedState;\n current = null !== current ? current.dehydrated : null;\n if (!current) throw Error(formatProdErrorMessage(557));\n current[internalInstanceKey] = workInProgress;\n } else\n resetHydrationState(),\n 0 === (workInProgress.flags & 128) &&\n (workInProgress.memoizedState = null),\n (workInProgress.flags |= 4);\n bubbleProperties(workInProgress);\n current = !1;\n } else\n (renderLanes = upgradeHydrationErrorsToRecoverable()),\n null !== current &&\n null !== current.memoizedState &&\n (current.memoizedState.hydrationErrors = renderLanes),\n (current = !0);\n if (!current) {\n if (workInProgress.flags & 256)\n return popSuspenseHandler(workInProgress), workInProgress;\n popSuspenseHandler(workInProgress);\n return null;\n }\n if (0 !== (workInProgress.flags & 128))\n throw Error(formatProdErrorMessage(558));\n }\n bubbleProperties(workInProgress);\n return null;\n case 13:\n newProps = workInProgress.memoizedState;\n if (\n null === current ||\n (null !== current.memoizedState &&\n null !== current.memoizedState.dehydrated)\n ) {\n type = popHydrationState(workInProgress);\n if (null !== newProps && null !== newProps.dehydrated) {\n if (null === current) {\n if (!type) throw Error(formatProdErrorMessage(318));\n type = workInProgress.memoizedState;\n type = null !== type ? type.dehydrated : null;\n if (!type) throw Error(formatProdErrorMessage(317));\n type[internalInstanceKey] = workInProgress;\n } else\n resetHydrationState(),\n 0 === (workInProgress.flags & 128) &&\n (workInProgress.memoizedState = null),\n (workInProgress.flags |= 4);\n bubbleProperties(workInProgress);\n type = !1;\n } else\n (type = upgradeHydrationErrorsToRecoverable()),\n null !== current &&\n null !== current.memoizedState &&\n (current.memoizedState.hydrationErrors = type),\n (type = !0);\n if (!type) {\n if (workInProgress.flags & 256)\n return popSuspenseHandler(workInProgress), workInProgress;\n popSuspenseHandler(workInProgress);\n return null;\n }\n }\n popSuspenseHandler(workInProgress);\n if (0 !== (workInProgress.flags & 128))\n return (workInProgress.lanes = renderLanes), workInProgress;\n renderLanes = null !== newProps;\n current = null !== current && null !== current.memoizedState;\n renderLanes &&\n ((newProps = workInProgress.child),\n (type = null),\n null !== newProps.alternate &&\n null !== newProps.alternate.memoizedState &&\n null !== newProps.alternate.memoizedState.cachePool &&\n (type = newProps.alternate.memoizedState.cachePool.pool),\n (nextResource = null),\n null !== newProps.memoizedState &&\n null !== newProps.memoizedState.cachePool &&\n (nextResource = newProps.memoizedState.cachePool.pool),\n nextResource !== type && (newProps.flags |= 2048));\n renderLanes !== current &&\n renderLanes &&\n (workInProgress.child.flags |= 8192);\n scheduleRetryEffect(workInProgress, workInProgress.updateQueue);\n bubbleProperties(workInProgress);\n return null;\n case 4:\n return (\n popHostContainer(),\n null === current &&\n listenToAllSupportedEvents(workInProgress.stateNode.containerInfo),\n (workInProgress.flags |= 67108864),\n bubbleProperties(workInProgress),\n null\n );\n case 10:\n return (\n popProvider(workInProgress.type), bubbleProperties(workInProgress), null\n );\n case 19:\n popSuspenseListContext(workInProgress);\n newProps = workInProgress.memoizedState;\n if (null === newProps) return bubbleProperties(workInProgress), null;\n type = 0 !== (workInProgress.flags & 128);\n nextResource = newProps.rendering;\n if (null === nextResource)\n if (type) cutOffTailIfNeeded(newProps, !1);\n else {\n if (\n 0 !== workInProgressRootExitStatus ||\n (null !== current && 0 !== (current.flags & 128))\n )\n for (current = workInProgress.child; null !== current; ) {\n nextResource = findFirstSuspended(current);\n if (null !== nextResource) {\n workInProgress.flags |= 128;\n cutOffTailIfNeeded(newProps, !1);\n current = nextResource.updateQueue;\n workInProgress.updateQueue = current;\n scheduleRetryEffect(workInProgress, current);\n workInProgress.subtreeFlags = 0;\n current = renderLanes;\n for (renderLanes = workInProgress.child; null !== renderLanes; )\n resetWorkInProgress(renderLanes, current),\n (renderLanes = renderLanes.sibling);\n pushSuspenseListContext(\n workInProgress,\n (suspenseStackCursor.current & 1) | 2\n );\n isHydrating &&\n pushTreeFork(workInProgress, newProps.treeForkCount);\n return workInProgress.child;\n }\n current = current.sibling;\n }\n null !== newProps.tail &&\n now() > workInProgressRootRenderTargetTime &&\n ((workInProgress.flags |= 128),\n (type = !0),\n cutOffTailIfNeeded(newProps, !1),\n (workInProgress.lanes = 4194304));\n }\n else {\n if (!type)\n if (\n ((current = findFirstSuspended(nextResource)), null !== current)\n ) {\n if (\n ((workInProgress.flags |= 128),\n (type = !0),\n (current = current.updateQueue),\n (workInProgress.updateQueue = current),\n scheduleRetryEffect(workInProgress, current),\n cutOffTailIfNeeded(newProps, !0),\n null === newProps.tail &&\n \"collapsed\" !== newProps.tailMode &&\n \"visible\" !== newProps.tailMode &&\n !nextResource.alternate &&\n !isHydrating)\n )\n return bubbleProperties(workInProgress), null;\n } else\n 2 * now() - newProps.renderingStartTime >\n workInProgressRootRenderTargetTime &&\n 536870912 !== renderLanes &&\n ((workInProgress.flags |= 128),\n (type = !0),\n cutOffTailIfNeeded(newProps, !1),\n (workInProgress.lanes = 4194304));\n newProps.isBackwards\n ? ((nextResource.sibling = workInProgress.child),\n (workInProgress.child = nextResource))\n : ((current = newProps.last),\n null !== current\n ? (current.sibling = nextResource)\n : (workInProgress.child = nextResource),\n (newProps.last = nextResource));\n }\n if (null !== newProps.tail) {\n current = newProps.tail;\n a: {\n for (renderLanes = current; null !== renderLanes; ) {\n if (null !== renderLanes.alternate) {\n renderLanes = !1;\n break a;\n }\n renderLanes = renderLanes.sibling;\n }\n renderLanes = !0;\n }\n newProps.rendering = current;\n newProps.tail = current.sibling;\n newProps.renderingStartTime = now();\n current.sibling = null;\n nextResource = suspenseStackCursor.current;\n nextResource = type ? (nextResource & 1) | 2 : nextResource & 1;\n \"visible\" === newProps.tailMode ||\n \"collapsed\" === newProps.tailMode ||\n !renderLanes ||\n isHydrating\n ? pushSuspenseListContext(workInProgress, nextResource)\n : ((renderLanes = nextResource),\n push(suspenseHandlerStackCursor, workInProgress),\n push(suspenseStackCursor, renderLanes),\n null === shellBoundary && (shellBoundary = workInProgress));\n isHydrating && pushTreeFork(workInProgress, newProps.treeForkCount);\n return current;\n }\n bubbleProperties(workInProgress);\n return null;\n case 22:\n case 23:\n return (\n popSuspenseHandler(workInProgress),\n popHiddenContext(),\n (newProps = null !== workInProgress.memoizedState),\n null !== current\n ? (null !== current.memoizedState) !== newProps &&\n (workInProgress.flags |= 8192)\n : newProps && (workInProgress.flags |= 8192),\n newProps\n ? 0 !== (renderLanes & 536870912) &&\n 0 === (workInProgress.flags & 128) &&\n (bubbleProperties(workInProgress),\n workInProgress.subtreeFlags & 6 && (workInProgress.flags |= 8192))\n : bubbleProperties(workInProgress),\n (renderLanes = workInProgress.updateQueue),\n null !== renderLanes &&\n scheduleRetryEffect(workInProgress, renderLanes.retryQueue),\n (renderLanes = null),\n null !== current &&\n null !== current.memoizedState &&\n null !== current.memoizedState.cachePool &&\n (renderLanes = current.memoizedState.cachePool.pool),\n (newProps = null),\n null !== workInProgress.memoizedState &&\n null !== workInProgress.memoizedState.cachePool &&\n (newProps = workInProgress.memoizedState.cachePool.pool),\n newProps !== renderLanes && (workInProgress.flags |= 2048),\n null !== current && pop(resumedCache),\n null\n );\n case 24:\n return (\n (renderLanes = null),\n null !== current && (renderLanes = current.memoizedState.cache),\n workInProgress.memoizedState.cache !== renderLanes &&\n (workInProgress.flags |= 2048),\n popProvider(CacheContext),\n bubbleProperties(workInProgress),\n null\n );\n case 25:\n return null;\n case 30:\n return (\n (workInProgress.flags |= 33554432),\n bubbleProperties(workInProgress),\n null\n );\n }\n throw Error(formatProdErrorMessage(156, workInProgress.tag));\n}\nfunction unwindWork(current, workInProgress) {\n popTreeContext(workInProgress);\n switch (workInProgress.tag) {\n case 1:\n return (\n (current = workInProgress.flags),\n current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128), workInProgress)\n : null\n );\n case 3:\n return (\n popProvider(CacheContext),\n popHostContainer(),\n (current = workInProgress.flags),\n 0 !== (current & 65536) && 0 === (current & 128)\n ? ((workInProgress.flags = (current & -65537) | 128), workInProgress)\n : null\n );\n case 26:\n case 27:\n case 5:\n return popHostContext(workInProgress), null;\n case 31:\n if (null !== workInProgress.memoizedState) {\n popSuspenseHandler(workInProgress);\n if (null === workInProgress.alternate)\n throw Error(formatProdErrorMessage(340));\n resetHydrationState();\n }\n current = workInProgress.flags;\n return current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128), workInProgress)\n : null;\n case 13:\n popSuspenseHandler(workInProgress);\n current = workInProgress.memoizedState;\n if (null !== current && null !== current.dehydrated) {\n if (null === workInProgress.alternate)\n throw Error(formatProdErrorMessage(340));\n resetHydrationState();\n }\n current = workInProgress.flags;\n return current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128), workInProgress)\n : null;\n case 19:\n return (\n popSuspenseListContext(workInProgress),\n (current = workInProgress.flags),\n current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128),\n (current = workInProgress.memoizedState),\n null !== current &&\n ((current.rendering = null), (current.tail = null)),\n (workInProgress.flags |= 4),\n workInProgress)\n : null\n );\n case 4:\n return popHostContainer(), null;\n case 10:\n return popProvider(workInProgress.type), null;\n case 22:\n case 23:\n return (\n popSuspenseHandler(workInProgress),\n popHiddenContext(),\n null !== current && pop(resumedCache),\n (current = workInProgress.flags),\n current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128), workInProgress)\n : null\n );\n case 24:\n return popProvider(CacheContext), null;\n case 25:\n return null;\n default:\n return null;\n }\n}\nfunction unwindInterruptedWork(current, interruptedWork) {\n popTreeContext(interruptedWork);\n switch (interruptedWork.tag) {\n case 3:\n popProvider(CacheContext);\n popHostContainer();\n break;\n case 26:\n case 27:\n case 5:\n popHostContext(interruptedWork);\n break;\n case 4:\n popHostContainer();\n break;\n case 31:\n null !== interruptedWork.memoizedState &&\n popSuspenseHandler(interruptedWork);\n break;\n case 13:\n popSuspenseHandler(interruptedWork);\n break;\n case 19:\n popSuspenseListContext(interruptedWork);\n break;\n case 10:\n popProvider(interruptedWork.type);\n break;\n case 22:\n case 23:\n popSuspenseHandler(interruptedWork);\n popHiddenContext();\n null !== current && pop(resumedCache);\n break;\n case 24:\n popProvider(CacheContext);\n }\n}\nfunction commitHookEffectListMount(flags, finishedWork) {\n try {\n var updateQueue = finishedWork.updateQueue,\n lastEffect = null !== updateQueue ? updateQueue.lastEffect : null;\n if (null !== lastEffect) {\n var firstEffect = lastEffect.next;\n updateQueue = firstEffect;\n do {\n if ((updateQueue.tag & flags) === flags) {\n lastEffect = void 0;\n var create = updateQueue.create,\n inst = updateQueue.inst;\n lastEffect = create();\n inst.destroy = lastEffect;\n }\n updateQueue = updateQueue.next;\n } while (updateQueue !== firstEffect);\n }\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n}\nfunction commitHookEffectListUnmount(\n flags,\n finishedWork,\n nearestMountedAncestor$jscomp$0\n) {\n try {\n var updateQueue = finishedWork.updateQueue,\n lastEffect = null !== updateQueue ? updateQueue.lastEffect : null;\n if (null !== lastEffect) {\n var firstEffect = lastEffect.next;\n updateQueue = firstEffect;\n do {\n if ((updateQueue.tag & flags) === flags) {\n var inst = updateQueue.inst,\n destroy = inst.destroy;\n if (void 0 !== destroy) {\n inst.destroy = void 0;\n lastEffect = finishedWork;\n var nearestMountedAncestor = nearestMountedAncestor$jscomp$0,\n destroy_ = destroy;\n try {\n destroy_();\n } catch (error) {\n captureCommitPhaseError(\n lastEffect,\n nearestMountedAncestor,\n error\n );\n }\n }\n }\n updateQueue = updateQueue.next;\n } while (updateQueue !== firstEffect);\n }\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n}\nfunction commitClassCallbacks(finishedWork) {\n var updateQueue = finishedWork.updateQueue;\n if (null !== updateQueue) {\n var instance = finishedWork.stateNode;\n try {\n commitCallbacks(updateQueue, instance);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n}\nfunction safelyCallComponentWillUnmount(\n current,\n nearestMountedAncestor,\n instance\n) {\n instance.props = resolveClassComponentProps(\n current.type,\n current.memoizedProps\n );\n instance.state = current.memoizedState;\n try {\n instance.componentWillUnmount();\n } catch (error) {\n captureCommitPhaseError(current, nearestMountedAncestor, error);\n }\n}\nfunction safelyAttachRef(current, nearestMountedAncestor) {\n try {\n var ref = current.ref;\n if (null !== ref) {\n switch (current.tag) {\n case 26:\n case 27:\n case 5:\n var instanceToUse = current.stateNode;\n break;\n case 30:\n var instance = current.stateNode,\n name = getViewTransitionName(current.memoizedProps, instance);\n if (null === instance.ref || instance.ref.name !== name)\n instance.ref = createViewTransitionInstance(name);\n instanceToUse = instance.ref;\n break;\n case 7:\n null === current.stateNode &&\n (current.stateNode = new FragmentInstance(current));\n instanceToUse = current.stateNode;\n break;\n default:\n instanceToUse = current.stateNode;\n }\n \"function\" === typeof ref\n ? (current.refCleanup = ref(instanceToUse))\n : (ref.current = instanceToUse);\n }\n } catch (error) {\n captureCommitPhaseError(current, nearestMountedAncestor, error);\n }\n}\nfunction safelyDetachRef(current, nearestMountedAncestor) {\n var ref = current.ref,\n refCleanup = current.refCleanup;\n if (null !== ref)\n if (\"function\" === typeof refCleanup)\n try {\n refCleanup();\n } catch (error) {\n captureCommitPhaseError(current, nearestMountedAncestor, error);\n } finally {\n (current.refCleanup = null),\n (current = current.alternate),\n null != current && (current.refCleanup = null);\n }\n else if (\"function\" === typeof ref)\n try {\n ref(null);\n } catch (error$146) {\n captureCommitPhaseError(current, nearestMountedAncestor, error$146);\n }\n else ref.current = null;\n}\nfunction commitHostMount(finishedWork) {\n var type = finishedWork.type,\n props = finishedWork.memoizedProps,\n instance = finishedWork.stateNode;\n try {\n a: switch (type) {\n case \"button\":\n case \"input\":\n case \"select\":\n case \"textarea\":\n props.autoFocus && instance.focus();\n break a;\n case \"img\":\n props.src\n ? (instance.src = props.src)\n : props.srcSet && (instance.srcset = props.srcSet);\n }\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n}\nfunction commitHostUpdate(finishedWork, newProps, oldProps) {\n try {\n var domElement = finishedWork.stateNode;\n updateProperties(domElement, finishedWork.type, oldProps, newProps);\n domElement[internalPropsKey] = newProps;\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n}\nfunction commitNewChildToFragmentInstances(fiber, parentFragmentInstances) {\n if (\n 5 === fiber.tag &&\n null === fiber.alternate &&\n null !== parentFragmentInstances\n )\n for (var i = 0; i < parentFragmentInstances.length; i++)\n commitNewChildToFragmentInstance(\n fiber.stateNode,\n parentFragmentInstances[i]\n );\n}\nfunction commitFragmentInstanceDeletionEffects(fiber) {\n for (var parent = fiber.return; null !== parent; ) {\n if (isFragmentInstanceParent(parent)) {\n var childInstance = fiber.stateNode,\n eventListeners = parent.stateNode._eventListeners;\n if (null !== eventListeners)\n for (var i = 0; i < eventListeners.length; i++) {\n var _eventListeners$i4 = eventListeners[i];\n childInstance.removeEventListener(\n _eventListeners$i4.type,\n _eventListeners$i4.listener,\n _eventListeners$i4.optionsOrUseCapture\n );\n }\n }\n if (isHostParent(parent)) break;\n parent = parent.return;\n }\n}\nfunction isHostParent(fiber) {\n return (\n 5 === fiber.tag ||\n 3 === fiber.tag ||\n 26 === fiber.tag ||\n (27 === fiber.tag && isSingletonScope(fiber.type)) ||\n 4 === fiber.tag\n );\n}\nfunction isFragmentInstanceParent(fiber) {\n return fiber && 7 === fiber.tag && null !== fiber.stateNode;\n}\nfunction getHostSibling(fiber) {\n a: for (;;) {\n for (; null === fiber.sibling; ) {\n if (null === fiber.return || isHostParent(fiber.return)) return null;\n fiber = fiber.return;\n }\n fiber.sibling.return = fiber.return;\n for (\n fiber = fiber.sibling;\n 5 !== fiber.tag && 6 !== fiber.tag && 18 !== fiber.tag;\n\n ) {\n if (27 === fiber.tag && isSingletonScope(fiber.type)) continue a;\n if (fiber.flags & 2) continue a;\n if (null === fiber.child || 4 === fiber.tag) continue a;\n else (fiber.child.return = fiber), (fiber = fiber.child);\n }\n if (!(fiber.flags & 2)) return fiber.stateNode;\n }\n}\nfunction insertOrAppendPlacementNodeIntoContainer(\n node,\n before,\n parent,\n parentFragmentInstances\n) {\n var tag = node.tag;\n if (5 === tag || 6 === tag)\n (tag = node.stateNode),\n before\n ? (9 === parent.nodeType\n ? parent.body\n : \"HTML\" === parent.nodeName\n ? parent.ownerDocument.body\n : parent\n ).insertBefore(tag, before)\n : ((before =\n 9 === parent.nodeType\n ? parent.body\n : \"HTML\" === parent.nodeName\n ? parent.ownerDocument.body\n : parent),\n before.appendChild(tag),\n (parent = parent._reactRootContainer),\n (null !== parent && void 0 !== parent) ||\n null !== before.onclick ||\n (before.onclick = noop$1)),\n commitNewChildToFragmentInstances(node, parentFragmentInstances),\n (viewTransitionMutationContext = !0);\n else if (\n 4 !== tag &&\n (27 === tag &&\n isSingletonScope(node.type) &&\n ((parent = node.stateNode), (before = null)),\n (node = node.child),\n null !== node)\n )\n for (\n insertOrAppendPlacementNodeIntoContainer(\n node,\n before,\n parent,\n parentFragmentInstances\n ),\n node = node.sibling;\n null !== node;\n\n )\n insertOrAppendPlacementNodeIntoContainer(\n node,\n before,\n parent,\n parentFragmentInstances\n ),\n (node = node.sibling);\n}\nfunction insertOrAppendPlacementNode(\n node,\n before,\n parent,\n parentFragmentInstances\n) {\n var tag = node.tag;\n if (5 === tag || 6 === tag)\n (tag = node.stateNode),\n before ? parent.insertBefore(tag, before) : parent.appendChild(tag),\n commitNewChildToFragmentInstances(node, parentFragmentInstances),\n (viewTransitionMutationContext = !0);\n else if (\n 4 !== tag &&\n (27 === tag && isSingletonScope(node.type) && (parent = node.stateNode),\n (node = node.child),\n null !== node)\n )\n for (\n insertOrAppendPlacementNode(\n node,\n before,\n parent,\n parentFragmentInstances\n ),\n node = node.sibling;\n null !== node;\n\n )\n insertOrAppendPlacementNode(\n node,\n before,\n parent,\n parentFragmentInstances\n ),\n (node = node.sibling);\n}\nfunction commitHostSingletonAcquisition(finishedWork) {\n var singleton = finishedWork.stateNode,\n props = finishedWork.memoizedProps;\n try {\n for (\n var type = finishedWork.type, attributes = singleton.attributes;\n attributes.length;\n\n )\n singleton.removeAttributeNode(attributes[0]);\n setInitialProperties(singleton, type, props);\n singleton[internalInstanceKey] = finishedWork;\n singleton[internalPropsKey] = props;\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n}\nvar shouldStartViewTransition = !1,\n appearingViewTransitions = null;\nfunction trackEnterViewTransitions(placement) {\n if (30 === placement.tag || 0 !== (placement.subtreeFlags & 33554432))\n shouldStartViewTransition = !0;\n}\nvar viewTransitionCancelableChildren = null;\nfunction pushViewTransitionCancelableScope() {\n var prevChildren = viewTransitionCancelableChildren;\n viewTransitionCancelableChildren = null;\n return prevChildren;\n}\nvar viewTransitionHostInstanceIdx = 0;\nfunction applyViewTransitionToHostInstances(\n fiber,\n name,\n className,\n collectMeasurements,\n stopAtNestedViewTransitions\n) {\n viewTransitionHostInstanceIdx = 0;\n return applyViewTransitionToHostInstancesRecursive(\n fiber.child,\n name,\n className,\n collectMeasurements,\n stopAtNestedViewTransitions\n );\n}\nfunction applyViewTransitionToHostInstancesRecursive(\n child,\n name,\n className,\n collectMeasurements,\n stopAtNestedViewTransitions\n) {\n for (var inViewport = !1; null !== child; ) {\n if (5 === child.tag) {\n var instance = child.stateNode;\n if (null !== collectMeasurements) {\n var measurement = measureInstance(instance);\n collectMeasurements.push(measurement);\n measurement.view && (inViewport = !0);\n } else\n inViewport || (measureInstance(instance).view && (inViewport = !0));\n shouldStartViewTransition = !0;\n applyViewTransitionName(\n instance,\n 0 === viewTransitionHostInstanceIdx\n ? name\n : name + \"_\" + viewTransitionHostInstanceIdx,\n className\n );\n viewTransitionHostInstanceIdx++;\n } else if (22 !== child.tag || null === child.memoizedState)\n (30 === child.tag && stopAtNestedViewTransitions) ||\n (applyViewTransitionToHostInstancesRecursive(\n child.child,\n name,\n className,\n collectMeasurements,\n stopAtNestedViewTransitions\n ) &&\n (inViewport = !0));\n child = child.sibling;\n }\n return inViewport;\n}\nfunction restoreViewTransitionOnHostInstances(\n child,\n stopAtNestedViewTransitions\n) {\n for (; null !== child; ) {\n if (5 === child.tag)\n restoreViewTransitionName(child.stateNode, child.memoizedProps);\n else if (22 !== child.tag || null === child.memoizedState)\n (30 === child.tag && stopAtNestedViewTransitions) ||\n restoreViewTransitionOnHostInstances(\n child.child,\n stopAtNestedViewTransitions\n );\n child = child.sibling;\n }\n}\nfunction commitAppearingPairViewTransitions(placement) {\n if (0 !== (placement.subtreeFlags & 18874368))\n for (placement = placement.child; null !== placement; ) {\n if (22 !== placement.tag || null === placement.memoizedState)\n if (\n (commitAppearingPairViewTransitions(placement),\n 30 === placement.tag &&\n 0 !== (placement.flags & 18874368) &&\n placement.stateNode.paired)\n ) {\n var props = placement.memoizedProps;\n if (null == props.name || \"auto\" === props.name)\n throw Error(formatProdErrorMessage(544));\n var name = props.name;\n props = getViewTransitionClassName(props.default, props.share);\n \"none\" !== props &&\n (applyViewTransitionToHostInstances(\n placement,\n name,\n props,\n null,\n !1\n ) ||\n restoreViewTransitionOnHostInstances(placement.child, !1));\n }\n placement = placement.sibling;\n }\n}\nfunction commitEnterViewTransitions(placement, gesture) {\n if (30 === placement.tag) {\n var state = placement.stateNode,\n props = placement.memoizedProps,\n name = getViewTransitionName(props, state),\n className = getViewTransitionClassName(\n props.default,\n state.paired ? props.share : props.enter\n );\n \"none\" !== className\n ? applyViewTransitionToHostInstances(placement, name, className, null, !1)\n ? (commitAppearingPairViewTransitions(placement),\n state.paired ||\n gesture ||\n scheduleViewTransitionEvent(placement, props.onEnter))\n : restoreViewTransitionOnHostInstances(placement.child, !1)\n : commitAppearingPairViewTransitions(placement);\n } else if (0 !== (placement.subtreeFlags & 33554432))\n for (placement = placement.child; null !== placement; )\n commitEnterViewTransitions(placement, gesture),\n (placement = placement.sibling);\n else commitAppearingPairViewTransitions(placement);\n}\nfunction commitDeletedPairViewTransitions(deletion) {\n if (\n null !== appearingViewTransitions &&\n 0 !== appearingViewTransitions.size\n ) {\n var pairs = appearingViewTransitions;\n if (0 !== (deletion.subtreeFlags & 18874368))\n for (deletion = deletion.child; null !== deletion; ) {\n if (22 !== deletion.tag || null === deletion.memoizedState) {\n if (30 === deletion.tag && 0 !== (deletion.flags & 18874368)) {\n var props = deletion.memoizedProps,\n name = props.name;\n if (null != name && \"auto\" !== name) {\n var pair = pairs.get(name);\n if (void 0 !== pair) {\n var className = getViewTransitionClassName(\n props.default,\n props.share\n );\n \"none\" !== className &&\n (applyViewTransitionToHostInstances(\n deletion,\n name,\n className,\n null,\n !1\n )\n ? ((className = deletion.stateNode),\n (pair.paired = className),\n (className.paired = pair),\n scheduleViewTransitionEvent(deletion, props.onShare))\n : restoreViewTransitionOnHostInstances(deletion.child, !1));\n pairs.delete(name);\n if (0 === pairs.size) break;\n }\n }\n }\n commitDeletedPairViewTransitions(deletion);\n }\n deletion = deletion.sibling;\n }\n }\n}\nfunction commitExitViewTransitions(deletion) {\n if (30 === deletion.tag) {\n var props = deletion.memoizedProps,\n name = getViewTransitionName(props, deletion.stateNode),\n pair =\n null !== appearingViewTransitions\n ? appearingViewTransitions.get(name)\n : void 0,\n className = getViewTransitionClassName(\n props.default,\n void 0 !== pair ? props.share : props.exit\n );\n \"none\" !== className &&\n (applyViewTransitionToHostInstances(deletion, name, className, null, !1)\n ? void 0 !== pair\n ? ((className = deletion.stateNode),\n (pair.paired = className),\n (className.paired = pair),\n appearingViewTransitions.delete(name),\n scheduleViewTransitionEvent(deletion, props.onShare))\n : scheduleViewTransitionEvent(deletion, props.onExit)\n : restoreViewTransitionOnHostInstances(deletion.child, !1));\n null !== appearingViewTransitions &&\n commitDeletedPairViewTransitions(deletion);\n } else if (0 !== (deletion.subtreeFlags & 33554432))\n for (deletion = deletion.child; null !== deletion; )\n commitExitViewTransitions(deletion), (deletion = deletion.sibling);\n else\n null !== appearingViewTransitions &&\n commitDeletedPairViewTransitions(deletion);\n}\nfunction commitNestedViewTransitions(changedParent) {\n for (changedParent = changedParent.child; null !== changedParent; ) {\n if (30 === changedParent.tag) {\n var props = changedParent.memoizedProps,\n name = getViewTransitionName(props, changedParent.stateNode);\n props = getViewTransitionClassName(props.default, props.update);\n changedParent.flags &= -5;\n \"none\" !== props &&\n applyViewTransitionToHostInstances(\n changedParent,\n name,\n props,\n (changedParent.memoizedState = []),\n !1\n );\n } else\n 0 !== (changedParent.subtreeFlags & 33554432) &&\n commitNestedViewTransitions(changedParent);\n changedParent = changedParent.sibling;\n }\n}\nfunction restorePairedViewTransitions(parent) {\n if (0 !== (parent.subtreeFlags & 18874368))\n for (parent = parent.child; null !== parent; ) {\n if (22 !== parent.tag || null === parent.memoizedState) {\n if (30 === parent.tag && 0 !== (parent.flags & 18874368)) {\n var instance = parent.stateNode;\n null !== instance.paired &&\n ((instance.paired = null),\n restoreViewTransitionOnHostInstances(parent.child, !1));\n }\n restorePairedViewTransitions(parent);\n }\n parent = parent.sibling;\n }\n}\nfunction restoreEnterOrExitViewTransitions(fiber) {\n if (30 === fiber.tag)\n (fiber.stateNode.paired = null),\n restoreViewTransitionOnHostInstances(fiber.child, !1),\n restorePairedViewTransitions(fiber);\n else if (0 !== (fiber.subtreeFlags & 33554432))\n for (fiber = fiber.child; null !== fiber; )\n restoreEnterOrExitViewTransitions(fiber), (fiber = fiber.sibling);\n else restorePairedViewTransitions(fiber);\n}\nfunction restoreNestedViewTransitions(changedParent) {\n for (changedParent = changedParent.child; null !== changedParent; )\n 30 === changedParent.tag\n ? restoreViewTransitionOnHostInstances(changedParent.child, !1)\n : 0 !== (changedParent.subtreeFlags & 33554432) &&\n restoreNestedViewTransitions(changedParent),\n (changedParent = changedParent.sibling);\n}\nfunction measureViewTransitionHostInstancesRecursive(\n parentViewTransition,\n child,\n newName,\n oldName,\n className,\n previousMeasurements,\n stopAtNestedViewTransitions\n) {\n for (var inViewport = !1; null !== child; ) {\n if (5 === child.tag) {\n var instance = child.stateNode;\n if (\n null !== previousMeasurements &&\n viewTransitionHostInstanceIdx < previousMeasurements.length\n ) {\n var previousMeasurement =\n previousMeasurements[viewTransitionHostInstanceIdx],\n nextMeasurement = measureInstance(instance);\n if (previousMeasurement.view || nextMeasurement.view) inViewport = !0;\n var JSCompiler_temp;\n if ((JSCompiler_temp = 0 === (parentViewTransition.flags & 4)))\n if (nextMeasurement.clip) JSCompiler_temp = !0;\n else {\n JSCompiler_temp = previousMeasurement.rect;\n var newRect = nextMeasurement.rect;\n JSCompiler_temp =\n JSCompiler_temp.y !== newRect.y ||\n JSCompiler_temp.x !== newRect.x ||\n JSCompiler_temp.height !== newRect.height ||\n JSCompiler_temp.width !== newRect.width;\n }\n JSCompiler_temp && (parentViewTransition.flags |= 4);\n nextMeasurement.abs\n ? (nextMeasurement = !previousMeasurement.abs)\n : ((previousMeasurement = previousMeasurement.rect),\n (nextMeasurement = nextMeasurement.rect),\n (nextMeasurement =\n previousMeasurement.height !== nextMeasurement.height ||\n previousMeasurement.width !== nextMeasurement.width));\n nextMeasurement && (parentViewTransition.flags |= 32);\n } else parentViewTransition.flags |= 32;\n 0 !== (parentViewTransition.flags & 4) &&\n applyViewTransitionName(\n instance,\n 0 === viewTransitionHostInstanceIdx\n ? newName\n : newName + \"_\" + viewTransitionHostInstanceIdx,\n className\n );\n (inViewport && 0 !== (parentViewTransition.flags & 4)) ||\n (null === viewTransitionCancelableChildren &&\n (viewTransitionCancelableChildren = []),\n viewTransitionCancelableChildren.push(\n instance,\n oldName,\n child.memoizedProps\n ));\n viewTransitionHostInstanceIdx++;\n } else if (22 !== child.tag || null === child.memoizedState)\n 30 === child.tag && stopAtNestedViewTransitions\n ? (parentViewTransition.flags |= child.flags & 32)\n : measureViewTransitionHostInstancesRecursive(\n parentViewTransition,\n child.child,\n newName,\n oldName,\n className,\n previousMeasurements,\n stopAtNestedViewTransitions\n ) && (inViewport = !0);\n child = child.sibling;\n }\n return inViewport;\n}\nfunction measureNestedViewTransitions(changedParent, gesture) {\n for (changedParent = changedParent.child; null !== changedParent; ) {\n if (30 === changedParent.tag) {\n var props = changedParent.memoizedProps,\n state = changedParent.stateNode,\n name = getViewTransitionName(props, state),\n className = getViewTransitionClassName(props.default, props.update);\n if (gesture) {\n state = state.clones;\n var previousMeasurements =\n null === state ? null : state.map(measureClonedInstance);\n } else\n (previousMeasurements = changedParent.memoizedState),\n (changedParent.memoizedState = null);\n state = changedParent;\n var child = changedParent.child;\n viewTransitionHostInstanceIdx = 0;\n name = measureViewTransitionHostInstancesRecursive(\n state,\n child,\n name,\n name,\n className,\n previousMeasurements,\n !1\n );\n 0 !== (changedParent.flags & 4) &&\n name &&\n (gesture || scheduleViewTransitionEvent(changedParent, props.onUpdate));\n } else\n 0 !== (changedParent.subtreeFlags & 33554432) &&\n measureNestedViewTransitions(changedParent, gesture);\n changedParent = changedParent.sibling;\n }\n}\nvar offscreenSubtreeIsHidden = !1,\n offscreenSubtreeWasHidden = !1,\n offscreenDirectParentIsHidden = !1,\n needsFormReset = !1,\n PossiblyWeakSet = \"function\" === typeof WeakSet ? WeakSet : Set,\n nextEffect = null,\n viewTransitionContextChanged = !1,\n inUpdateViewTransition = !1,\n rootViewTransitionAffected = !1,\n rootViewTransitionNameCanceled = !1;\nfunction commitBeforeMutationEffects(root, firstChild, committedLanes) {\n root = root.containerInfo;\n eventsEnabled = _enabled;\n root = getActiveElementDeep(root);\n if (hasSelectionCapabilities(root)) {\n if (\"selectionStart\" in root)\n var JSCompiler_temp = {\n start: root.selectionStart,\n end: root.selectionEnd\n };\n else\n a: {\n JSCompiler_temp =\n ((JSCompiler_temp = root.ownerDocument) &&\n JSCompiler_temp.defaultView) ||\n window;\n var selection =\n JSCompiler_temp.getSelection && JSCompiler_temp.getSelection();\n if (selection && 0 !== selection.rangeCount) {\n JSCompiler_temp = selection.anchorNode;\n var anchorOffset = selection.anchorOffset,\n focusNode = selection.focusNode;\n selection = selection.focusOffset;\n try {\n JSCompiler_temp.nodeType, focusNode.nodeType;\n } catch (e$20) {\n JSCompiler_temp = null;\n break a;\n }\n var length = 0,\n start = -1,\n end = -1,\n indexWithinAnchor = 0,\n indexWithinFocus = 0,\n node = root,\n parentNode = null;\n b: for (;;) {\n for (var next; ; ) {\n node !== JSCompiler_temp ||\n (0 !== anchorOffset && 3 !== node.nodeType) ||\n (start = length + anchorOffset);\n node !== focusNode ||\n (0 !== selection && 3 !== node.nodeType) ||\n (end = length + selection);\n 3 === node.nodeType && (length += node.nodeValue.length);\n if (null === (next = node.firstChild)) break;\n parentNode = node;\n node = next;\n }\n for (;;) {\n if (node === root) break b;\n parentNode === JSCompiler_temp &&\n ++indexWithinAnchor === anchorOffset &&\n (start = length);\n parentNode === focusNode &&\n ++indexWithinFocus === selection &&\n (end = length);\n if (null !== (next = node.nextSibling)) break;\n node = parentNode;\n parentNode = node.parentNode;\n }\n node = next;\n }\n JSCompiler_temp =\n -1 === start || -1 === end ? null : { start: start, end: end };\n } else JSCompiler_temp = null;\n }\n JSCompiler_temp = JSCompiler_temp || { start: 0, end: 0 };\n } else JSCompiler_temp = null;\n selectionInformation = { focusedElem: root, selectionRange: JSCompiler_temp };\n _enabled = !1;\n committedLanes = (committedLanes & 335544064) === committedLanes;\n nextEffect = firstChild;\n for (firstChild = committedLanes ? 9270 : 1028; null !== nextEffect; ) {\n root = nextEffect;\n if (\n committedLanes &&\n ((JSCompiler_temp = root.deletions), null !== JSCompiler_temp)\n )\n for (\n anchorOffset = 0;\n anchorOffset < JSCompiler_temp.length;\n anchorOffset++\n )\n committedLanes &&\n commitExitViewTransitions(JSCompiler_temp[anchorOffset]);\n if (null === root.alternate && 0 !== (root.flags & 2))\n committedLanes && trackEnterViewTransitions(root),\n commitBeforeMutationEffects_complete(committedLanes);\n else {\n if (22 === root.tag)\n if (((JSCompiler_temp = root.alternate), null !== root.memoizedState)) {\n null !== JSCompiler_temp &&\n null === JSCompiler_temp.memoizedState &&\n committedLanes &&\n commitExitViewTransitions(JSCompiler_temp);\n commitBeforeMutationEffects_complete(committedLanes);\n continue;\n } else if (\n null !== JSCompiler_temp &&\n null !== JSCompiler_temp.memoizedState\n ) {\n committedLanes && trackEnterViewTransitions(root);\n commitBeforeMutationEffects_complete(committedLanes);\n continue;\n }\n JSCompiler_temp = root.child;\n 0 !== (root.subtreeFlags & firstChild) && null !== JSCompiler_temp\n ? ((JSCompiler_temp.return = root), (nextEffect = JSCompiler_temp))\n : (committedLanes && commitNestedViewTransitions(root),\n commitBeforeMutationEffects_complete(committedLanes));\n }\n }\n appearingViewTransitions = null;\n}\nfunction commitBeforeMutationEffects_complete(\n isViewTransitionEligible$jscomp$0\n) {\n for (; null !== nextEffect; ) {\n var fiber = nextEffect,\n isViewTransitionEligible = isViewTransitionEligible$jscomp$0,\n current = fiber.alternate,\n flags = fiber.flags;\n switch (fiber.tag) {\n case 0:\n case 11:\n case 15:\n if (\n 0 !== (flags & 4) &&\n ((current = fiber.updateQueue),\n (current = null !== current ? current.events : null),\n null !== current)\n )\n for (\n isViewTransitionEligible = 0;\n isViewTransitionEligible < current.length;\n isViewTransitionEligible++\n )\n (flags = current[isViewTransitionEligible]),\n (flags.ref.impl = flags.nextImpl);\n break;\n case 1:\n if (0 !== (flags & 1024) && null !== current) {\n isViewTransitionEligible = void 0;\n flags = current.memoizedProps;\n current = current.memoizedState;\n var instance = fiber.stateNode;\n try {\n var resolvedPrevProps = resolveClassComponentProps(\n fiber.type,\n flags\n );\n isViewTransitionEligible = instance.getSnapshotBeforeUpdate(\n resolvedPrevProps,\n current\n );\n instance.__reactInternalSnapshotBeforeUpdate =\n isViewTransitionEligible;\n } catch (error) {\n captureCommitPhaseError(fiber, fiber.return, error);\n }\n }\n break;\n case 3:\n if (0 !== (flags & 1024))\n if (\n ((current = fiber.stateNode.containerInfo),\n (isViewTransitionEligible = current.nodeType),\n 9 === isViewTransitionEligible)\n )\n clearContainerSparingly(current);\n else if (1 === isViewTransitionEligible)\n switch (current.nodeName) {\n case \"HEAD\":\n case \"HTML\":\n case \"BODY\":\n clearContainerSparingly(current);\n break;\n default:\n current.textContent = \"\";\n }\n break;\n case 5:\n case 26:\n case 27:\n case 6:\n case 4:\n case 17:\n break;\n case 30:\n isViewTransitionEligible &&\n null !== current &&\n ((isViewTransitionEligible = getViewTransitionName(\n current.memoizedProps,\n current.stateNode\n )),\n (flags = fiber.memoizedProps),\n (flags = getViewTransitionClassName(flags.default, flags.update)),\n \"none\" !== flags &&\n applyViewTransitionToHostInstances(\n current,\n isViewTransitionEligible,\n flags,\n (current.memoizedState = []),\n !0\n ));\n break;\n default:\n if (0 !== (flags & 1024)) throw Error(formatProdErrorMessage(163));\n }\n current = fiber.sibling;\n if (null !== current) {\n current.return = fiber.return;\n nextEffect = current;\n break;\n }\n nextEffect = fiber.return;\n }\n}\nfunction commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {\n var flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n flags & 4 && commitHookEffectListMount(5, finishedWork);\n break;\n case 1:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n if (flags & 4)\n if (((finishedRoot = finishedWork.stateNode), null === current))\n try {\n finishedRoot.componentDidMount();\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n else {\n var prevProps = resolveClassComponentProps(\n finishedWork.type,\n current.memoizedProps\n );\n current = current.memoizedState;\n try {\n finishedRoot.componentDidUpdate(\n prevProps,\n current,\n finishedRoot.__reactInternalSnapshotBeforeUpdate\n );\n } catch (error$144) {\n captureCommitPhaseError(\n finishedWork,\n finishedWork.return,\n error$144\n );\n }\n }\n flags & 64 && commitClassCallbacks(finishedWork);\n flags & 512 && safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 3:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n if (\n flags & 64 &&\n ((finishedRoot = finishedWork.updateQueue), null !== finishedRoot)\n ) {\n current = null;\n if (null !== finishedWork.child)\n switch (finishedWork.child.tag) {\n case 27:\n case 5:\n current = finishedWork.child.stateNode;\n break;\n case 1:\n current = finishedWork.child.stateNode;\n }\n try {\n commitCallbacks(finishedRoot, current);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n break;\n case 27:\n null === current &&\n flags & 4 &&\n commitHostSingletonAcquisition(finishedWork);\n case 26:\n case 5:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n null === current && flags & 4 && commitHostMount(finishedWork);\n flags & 512 && safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 12:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n break;\n case 31:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n flags & 4 && commitActivityHydrationCallbacks(finishedRoot, finishedWork);\n break;\n case 13:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n flags & 4 && commitSuspenseHydrationCallbacks(finishedRoot, finishedWork);\n flags & 64 &&\n ((finishedRoot = finishedWork.memoizedState),\n null !== finishedRoot &&\n ((finishedRoot = finishedRoot.dehydrated),\n null !== finishedRoot &&\n ((finishedWork = retryDehydratedSuspenseBoundary.bind(\n null,\n finishedWork\n )),\n registerSuspenseInstanceRetry(finishedRoot, finishedWork))));\n break;\n case 22:\n flags = null !== finishedWork.memoizedState || offscreenSubtreeIsHidden;\n if (!flags) {\n current =\n (null !== current && null !== current.memoizedState) ||\n offscreenSubtreeWasHidden;\n prevProps = offscreenSubtreeIsHidden;\n var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden;\n offscreenSubtreeIsHidden = flags;\n (offscreenSubtreeWasHidden = current) && !prevOffscreenSubtreeWasHidden\n ? recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n 0 !== (finishedWork.subtreeFlags & 8772)\n )\n : recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n offscreenSubtreeIsHidden = prevProps;\n offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;\n }\n break;\n case 30:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n flags & 512 && safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 7:\n flags & 512 && safelyAttachRef(finishedWork, finishedWork.return);\n default:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n }\n}\nfunction hideOrUnhideAllChildren(parentFiber, isHidden) {\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n hideOrUnhideAllChildrenOnFiber(parentFiber, isHidden),\n (parentFiber = parentFiber.sibling);\n}\nfunction hideOrUnhideAllChildrenOnFiber(fiber, isHidden) {\n switch (fiber.tag) {\n case 5:\n case 26:\n try {\n var instance = fiber.stateNode;\n if (isHidden) {\n var style = instance.style;\n \"function\" === typeof style.setProperty\n ? style.setProperty(\"display\", \"none\", \"important\")\n : (style.display = \"none\");\n } else {\n var instance$jscomp$0 = fiber.stateNode,\n styleProp = fiber.memoizedProps.style,\n display =\n void 0 !== styleProp &&\n null !== styleProp &&\n styleProp.hasOwnProperty(\"display\")\n ? styleProp.display\n : null;\n instance$jscomp$0.style.display =\n null == display || \"boolean\" === typeof display\n ? \"\"\n : (\"\" + display).trim();\n }\n } catch (error) {\n captureCommitPhaseError(fiber, fiber.return, error);\n }\n hideOrUnhideNearestPortals(fiber, isHidden);\n break;\n case 6:\n try {\n (fiber.stateNode.nodeValue = isHidden ? \"\" : fiber.memoizedProps),\n (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(fiber, fiber.return, error);\n }\n break;\n case 18:\n try {\n var instance$jscomp$1 = fiber.stateNode;\n isHidden\n ? hideOrUnhideDehydratedBoundary(instance$jscomp$1, !0)\n : hideOrUnhideDehydratedBoundary(fiber.stateNode, !1);\n } catch (error) {\n captureCommitPhaseError(fiber, fiber.return, error);\n }\n break;\n case 22:\n case 23:\n null === fiber.memoizedState && hideOrUnhideAllChildren(fiber, isHidden);\n break;\n default:\n hideOrUnhideAllChildren(fiber, isHidden);\n }\n}\nfunction hideOrUnhideNearestPortals(parentFiber, isHidden$jscomp$0) {\n if (parentFiber.subtreeFlags & 67108864)\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n a: {\n var fiber = parentFiber,\n isHidden = isHidden$jscomp$0;\n switch (fiber.tag) {\n case 4:\n hideOrUnhideAllChildrenOnFiber(fiber, isHidden);\n break a;\n case 22:\n null === fiber.memoizedState &&\n hideOrUnhideNearestPortals(fiber, isHidden);\n break a;\n default:\n hideOrUnhideNearestPortals(fiber, isHidden);\n }\n }\n parentFiber = parentFiber.sibling;\n }\n}\nfunction detachFiberAfterEffects(fiber) {\n var alternate = fiber.alternate;\n null !== alternate &&\n ((fiber.alternate = null), detachFiberAfterEffects(alternate));\n fiber.child = null;\n fiber.deletions = null;\n fiber.sibling = null;\n 5 === fiber.tag &&\n ((alternate = fiber.stateNode),\n null !== alternate && detachDeletedInstance(alternate));\n fiber.stateNode = null;\n fiber.return = null;\n fiber.dependencies = null;\n fiber.memoizedProps = null;\n fiber.memoizedState = null;\n fiber.pendingProps = null;\n fiber.stateNode = null;\n fiber.updateQueue = null;\n}\nvar hostParent = null,\n hostParentIsContainer = !1;\nfunction recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n parent\n) {\n for (parent = parent.child; null !== parent; )\n commitDeletionEffectsOnFiber(finishedRoot, nearestMountedAncestor, parent),\n (parent = parent.sibling);\n}\nfunction commitDeletionEffectsOnFiber(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n) {\n if (injectedHook && \"function\" === typeof injectedHook.onCommitFiberUnmount)\n try {\n injectedHook.onCommitFiberUnmount(rendererID, deletedFiber);\n } catch (err) {}\n switch (deletedFiber.tag) {\n case 26:\n offscreenSubtreeWasHidden ||\n safelyDetachRef(deletedFiber, nearestMountedAncestor);\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n deletedFiber.memoizedState\n ? deletedFiber.memoizedState.count--\n : deletedFiber.stateNode &&\n ((deletedFiber = deletedFiber.stateNode),\n deletedFiber.parentNode.removeChild(deletedFiber));\n break;\n case 27:\n offscreenSubtreeWasHidden ||\n safelyDetachRef(deletedFiber, nearestMountedAncestor);\n var prevHostParent = hostParent,\n prevHostParentIsContainer = hostParentIsContainer;\n isSingletonScope(deletedFiber.type) &&\n ((hostParent = deletedFiber.stateNode), (hostParentIsContainer = !1));\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n releaseSingletonInstance(deletedFiber.stateNode);\n hostParent = prevHostParent;\n hostParentIsContainer = prevHostParentIsContainer;\n break;\n case 5:\n offscreenSubtreeWasHidden ||\n safelyDetachRef(deletedFiber, nearestMountedAncestor),\n 5 === deletedFiber.tag &&\n commitFragmentInstanceDeletionEffects(deletedFiber);\n case 6:\n prevHostParent = hostParent;\n prevHostParentIsContainer = hostParentIsContainer;\n hostParent = null;\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n hostParent = prevHostParent;\n hostParentIsContainer = prevHostParentIsContainer;\n if (null !== hostParent)\n if (hostParentIsContainer)\n try {\n (9 === hostParent.nodeType\n ? hostParent.body\n : \"HTML\" === hostParent.nodeName\n ? hostParent.ownerDocument.body\n : hostParent\n ).removeChild(deletedFiber.stateNode),\n (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(\n deletedFiber,\n nearestMountedAncestor,\n error\n );\n }\n else\n try {\n hostParent.removeChild(deletedFiber.stateNode),\n (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(\n deletedFiber,\n nearestMountedAncestor,\n error\n );\n }\n break;\n case 18:\n null !== hostParent &&\n (hostParentIsContainer\n ? ((finishedRoot = hostParent),\n clearHydrationBoundary(\n 9 === finishedRoot.nodeType\n ? finishedRoot.body\n : \"HTML\" === finishedRoot.nodeName\n ? finishedRoot.ownerDocument.body\n : finishedRoot,\n deletedFiber.stateNode\n ),\n retryIfBlockedOn(finishedRoot))\n : clearHydrationBoundary(hostParent, deletedFiber.stateNode));\n break;\n case 4:\n prevHostParent = hostParent;\n prevHostParentIsContainer = hostParentIsContainer;\n hostParent = deletedFiber.stateNode.containerInfo;\n hostParentIsContainer = !0;\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n hostParent = prevHostParent;\n hostParentIsContainer = prevHostParentIsContainer;\n break;\n case 0:\n case 11:\n case 14:\n case 15:\n commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);\n offscreenSubtreeWasHidden ||\n commitHookEffectListUnmount(4, deletedFiber, nearestMountedAncestor);\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n case 1:\n offscreenSubtreeWasHidden ||\n (safelyDetachRef(deletedFiber, nearestMountedAncestor),\n (prevHostParent = deletedFiber.stateNode),\n \"function\" === typeof prevHostParent.componentWillUnmount &&\n safelyCallComponentWillUnmount(\n deletedFiber,\n nearestMountedAncestor,\n prevHostParent\n ));\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n case 21:\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n case 22:\n offscreenSubtreeWasHidden =\n (prevHostParent = offscreenSubtreeWasHidden) ||\n null !== deletedFiber.memoizedState;\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n offscreenSubtreeWasHidden = prevHostParent;\n break;\n case 30:\n safelyDetachRef(deletedFiber, nearestMountedAncestor);\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n case 7:\n offscreenSubtreeWasHidden ||\n safelyDetachRef(deletedFiber, nearestMountedAncestor);\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n default:\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n }\n}\nfunction commitActivityHydrationCallbacks(finishedRoot, finishedWork) {\n if (\n null === finishedWork.memoizedState &&\n ((finishedRoot = finishedWork.alternate),\n null !== finishedRoot &&\n ((finishedRoot = finishedRoot.memoizedState), null !== finishedRoot))\n ) {\n finishedRoot = finishedRoot.dehydrated;\n try {\n retryIfBlockedOn(finishedRoot);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n}\nfunction commitSuspenseHydrationCallbacks(finishedRoot, finishedWork) {\n if (\n null === finishedWork.memoizedState &&\n ((finishedRoot = finishedWork.alternate),\n null !== finishedRoot &&\n ((finishedRoot = finishedRoot.memoizedState),\n null !== finishedRoot &&\n ((finishedRoot = finishedRoot.dehydrated), null !== finishedRoot)))\n )\n try {\n retryIfBlockedOn(finishedRoot);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n}\nfunction getRetryCache(finishedWork) {\n switch (finishedWork.tag) {\n case 31:\n case 13:\n case 19:\n var retryCache = finishedWork.stateNode;\n null === retryCache &&\n (retryCache = finishedWork.stateNode = new PossiblyWeakSet());\n return retryCache;\n case 22:\n return (\n (finishedWork = finishedWork.stateNode),\n (retryCache = finishedWork._retryCache),\n null === retryCache &&\n (retryCache = finishedWork._retryCache = new PossiblyWeakSet()),\n retryCache\n );\n default:\n throw Error(formatProdErrorMessage(435, finishedWork.tag));\n }\n}\nfunction attachSuspenseRetryListeners(finishedWork, wakeables) {\n var retryCache = getRetryCache(finishedWork);\n wakeables.forEach(function (wakeable) {\n if (!retryCache.has(wakeable)) {\n retryCache.add(wakeable);\n var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);\n wakeable.then(retry, retry);\n }\n });\n}\nfunction recursivelyTraverseMutationEffects(root$jscomp$0, parentFiber, lanes) {\n var deletions = parentFiber.deletions;\n if (null !== deletions)\n for (var i = 0; i < deletions.length; i++) {\n var childToDelete = deletions[i],\n root = root$jscomp$0,\n returnFiber = parentFiber,\n parent = returnFiber;\n a: for (; null !== parent; ) {\n switch (parent.tag) {\n case 27:\n if (isSingletonScope(parent.type)) {\n hostParent = parent.stateNode;\n hostParentIsContainer = !1;\n break a;\n }\n break;\n case 5:\n hostParent = parent.stateNode;\n hostParentIsContainer = !1;\n break a;\n case 3:\n case 4:\n hostParent = parent.stateNode.containerInfo;\n hostParentIsContainer = !0;\n break a;\n }\n parent = parent.return;\n }\n if (null === hostParent) throw Error(formatProdErrorMessage(160));\n commitDeletionEffectsOnFiber(root, returnFiber, childToDelete);\n hostParent = null;\n hostParentIsContainer = !1;\n root = childToDelete.alternate;\n null !== root && (root.return = null);\n childToDelete.return = null;\n }\n if (parentFiber.subtreeFlags & 13886)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitMutationEffectsOnFiber(parentFiber, root$jscomp$0, lanes),\n (parentFiber = parentFiber.sibling);\n}\nvar currentHoistableRoot = null;\nfunction commitMutationEffectsOnFiber(finishedWork, root, lanes) {\n var current = finishedWork.alternate,\n flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 14:\n case 15:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 4 &&\n (commitHookEffectListUnmount(3, finishedWork, finishedWork.return),\n commitHookEffectListMount(3, finishedWork),\n commitHookEffectListUnmount(5, finishedWork, finishedWork.return));\n break;\n case 1:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n flags & 64 &&\n offscreenSubtreeIsHidden &&\n ((finishedWork = finishedWork.updateQueue),\n null !== finishedWork &&\n ((current = finishedWork.callbacks),\n null !== current &&\n ((root = finishedWork.shared.hiddenCallbacks),\n (finishedWork.shared.hiddenCallbacks =\n null === root ? current : root.concat(current)))));\n break;\n case 26:\n var hoistableRoot = currentHoistableRoot;\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n if (flags & 4)\n if (\n ((lanes = null !== current ? current.memoizedState : null),\n (root = finishedWork.memoizedState),\n null === current)\n )\n if (null === root)\n if (null === finishedWork.stateNode) {\n a: {\n current = finishedWork.type;\n root = finishedWork.memoizedProps;\n lanes = hoistableRoot.ownerDocument || hoistableRoot;\n b: switch (current) {\n case \"title\":\n flags = lanes.getElementsByTagName(\"title\")[0];\n if (\n !flags ||\n flags[internalHoistableMarker] ||\n flags[internalInstanceKey] ||\n \"http://www.w3.org/2000/svg\" === flags.namespaceURI ||\n flags.hasAttribute(\"itemprop\")\n )\n (flags = lanes.createElement(current)),\n lanes.head.insertBefore(\n flags,\n lanes.querySelector(\"head > title\")\n );\n setInitialProperties(flags, current, root);\n flags[internalInstanceKey] = finishedWork;\n markNodeAsHoistable(flags);\n current = flags;\n break a;\n case \"link\":\n if (\n (hoistableRoot = getHydratableHoistableCache(\n \"link\",\n \"href\",\n lanes\n ).get(current + (root.href || \"\")))\n )\n for (var i = 0; i < hoistableRoot.length; i++)\n if (\n ((flags = hoistableRoot[i]),\n flags.getAttribute(\"href\") ===\n (null == root.href || \"\" === root.href\n ? null\n : root.href) &&\n flags.getAttribute(\"rel\") ===\n (null == root.rel ? null : root.rel) &&\n flags.getAttribute(\"title\") ===\n (null == root.title ? null : root.title) &&\n flags.getAttribute(\"crossorigin\") ===\n (null == root.crossOrigin\n ? null\n : root.crossOrigin))\n ) {\n hoistableRoot.splice(i, 1);\n break b;\n }\n flags = lanes.createElement(current);\n setInitialProperties(flags, current, root);\n lanes.head.appendChild(flags);\n break;\n case \"meta\":\n if (\n (hoistableRoot = getHydratableHoistableCache(\n \"meta\",\n \"content\",\n lanes\n ).get(current + (root.content || \"\")))\n )\n for (i = 0; i < hoistableRoot.length; i++)\n if (\n ((flags = hoistableRoot[i]),\n flags.getAttribute(\"content\") ===\n (null == root.content ? null : \"\" + root.content) &&\n flags.getAttribute(\"name\") ===\n (null == root.name ? null : root.name) &&\n flags.getAttribute(\"property\") ===\n (null == root.property ? null : root.property) &&\n flags.getAttribute(\"http-equiv\") ===\n (null == root.httpEquiv\n ? null\n : root.httpEquiv) &&\n flags.getAttribute(\"charset\") ===\n (null == root.charSet ? null : root.charSet))\n ) {\n hoistableRoot.splice(i, 1);\n break b;\n }\n flags = lanes.createElement(current);\n setInitialProperties(flags, current, root);\n lanes.head.appendChild(flags);\n break;\n default:\n throw Error(formatProdErrorMessage(468, current));\n }\n flags[internalInstanceKey] = finishedWork;\n markNodeAsHoistable(flags);\n current = flags;\n }\n finishedWork.stateNode = current;\n } else\n mountHoistable(\n hoistableRoot,\n finishedWork.type,\n finishedWork.stateNode\n );\n else\n finishedWork.stateNode = acquireResource(\n hoistableRoot,\n root,\n finishedWork.memoizedProps\n );\n else\n lanes !== root\n ? (null === lanes\n ? null !== current.stateNode &&\n ((current = current.stateNode),\n current.parentNode.removeChild(current))\n : lanes.count--,\n null === root\n ? mountHoistable(\n hoistableRoot,\n finishedWork.type,\n finishedWork.stateNode\n )\n : acquireResource(\n hoistableRoot,\n root,\n finishedWork.memoizedProps\n ))\n : null === root &&\n null !== finishedWork.stateNode &&\n commitHostUpdate(\n finishedWork,\n finishedWork.memoizedProps,\n current.memoizedProps\n );\n break;\n case 27:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n null !== current &&\n flags & 4 &&\n commitHostUpdate(\n finishedWork,\n finishedWork.memoizedProps,\n current.memoizedProps\n );\n break;\n case 5:\n hoistableRoot = offscreenDirectParentIsHidden;\n offscreenDirectParentIsHidden = !1;\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n offscreenDirectParentIsHidden = hoistableRoot;\n commitReconciliationEffects(finishedWork);\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n if (finishedWork.flags & 32) {\n root = finishedWork.stateNode;\n try {\n setTextContent(root, \"\"), (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n flags & 4 &&\n null != finishedWork.stateNode &&\n ((root = finishedWork.memoizedProps),\n commitHostUpdate(\n finishedWork,\n root,\n null !== current ? current.memoizedProps : root\n ));\n flags & 1024 && (needsFormReset = !0);\n break;\n case 6:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n if (flags & 4) {\n if (null === finishedWork.stateNode)\n throw Error(formatProdErrorMessage(162));\n current = finishedWork.memoizedProps;\n root = finishedWork.stateNode;\n try {\n (root.nodeValue = current), (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n break;\n case 3:\n viewTransitionMutationContext = !1;\n tagCaches = null;\n hoistableRoot = currentHoistableRoot;\n currentHoistableRoot = getHoistableRoot(root.containerInfo);\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n currentHoistableRoot = hoistableRoot;\n commitReconciliationEffects(finishedWork);\n if (flags & 4 && null !== current && current.memoizedState.isDehydrated)\n try {\n retryIfBlockedOn(root.containerInfo);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n needsFormReset &&\n ((needsFormReset = !1), recursivelyResetForms(finishedWork));\n viewTransitionMutationContext = !1;\n break;\n case 4:\n current = offscreenDirectParentIsHidden;\n offscreenDirectParentIsHidden = offscreenSubtreeIsHidden;\n flags = pushMutationContext();\n hoistableRoot = currentHoistableRoot;\n currentHoistableRoot = getHoistableRoot(\n finishedWork.stateNode.containerInfo\n );\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n currentHoistableRoot = hoistableRoot;\n viewTransitionMutationContext &&\n inUpdateViewTransition &&\n (rootViewTransitionAffected = !0);\n viewTransitionMutationContext = flags;\n offscreenDirectParentIsHidden = current;\n break;\n case 12:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n break;\n case 31:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 4 &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((finishedWork.updateQueue = null),\n attachSuspenseRetryListeners(finishedWork, current)));\n break;\n case 13:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n finishedWork.child.flags & 8192 &&\n (null !== finishedWork.memoizedState) !==\n (null !== current && null !== current.memoizedState) &&\n (globalMostRecentFallbackTime = now());\n flags & 4 &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((finishedWork.updateQueue = null),\n attachSuspenseRetryListeners(finishedWork, current)));\n break;\n case 22:\n hoistableRoot = null !== finishedWork.memoizedState;\n i = null !== current && null !== current.memoizedState;\n var prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden,\n prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden,\n prevOffscreenDirectParentIsHidden$162 = offscreenDirectParentIsHidden;\n offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden || hoistableRoot;\n offscreenDirectParentIsHidden =\n prevOffscreenDirectParentIsHidden$162 || hoistableRoot;\n offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || i;\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;\n offscreenDirectParentIsHidden = prevOffscreenDirectParentIsHidden$162;\n offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden;\n commitReconciliationEffects(finishedWork);\n flags & 8192 &&\n ((root = finishedWork.stateNode),\n (root._visibility = hoistableRoot\n ? root._visibility & -2\n : root._visibility | 1),\n hoistableRoot &&\n (null === current ||\n i ||\n offscreenSubtreeIsHidden ||\n offscreenSubtreeWasHidden ||\n recursivelyTraverseDisappearLayoutEffects(finishedWork)),\n (!hoistableRoot && offscreenDirectParentIsHidden) ||\n hideOrUnhideAllChildren(finishedWork, hoistableRoot));\n flags & 4 &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((root = current.retryQueue),\n null !== root &&\n ((current.retryQueue = null),\n attachSuspenseRetryListeners(finishedWork, root))));\n break;\n case 19:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 4 &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((finishedWork.updateQueue = null),\n attachSuspenseRetryListeners(finishedWork, current)));\n break;\n case 30:\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n flags = pushMutationContext();\n hoistableRoot = inUpdateViewTransition;\n i = (lanes & 335544064) === lanes;\n prevOffscreenSubtreeIsHidden = finishedWork.memoizedProps;\n inUpdateViewTransition =\n i &&\n \"none\" !==\n getViewTransitionClassName(\n prevOffscreenSubtreeIsHidden.default,\n prevOffscreenSubtreeIsHidden.update\n );\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n i &&\n null !== current &&\n viewTransitionMutationContext &&\n (finishedWork.flags |= 4);\n inUpdateViewTransition = hoistableRoot;\n viewTransitionMutationContext = flags;\n break;\n case 21:\n break;\n case 7:\n current &&\n null !== current.stateNode &&\n (current.stateNode._fragmentFiber = finishedWork);\n default:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes),\n commitReconciliationEffects(finishedWork);\n }\n}\nfunction commitReconciliationEffects(finishedWork) {\n var flags = finishedWork.flags;\n if (flags & 2) {\n try {\n for (\n var hostParentFiber,\n parentFragmentInstances = null,\n parentFiber = finishedWork.return;\n null !== parentFiber;\n\n ) {\n if (isFragmentInstanceParent(parentFiber)) {\n var fragmentInstance = parentFiber.stateNode;\n null === parentFragmentInstances\n ? (parentFragmentInstances = [fragmentInstance])\n : parentFragmentInstances.push(fragmentInstance);\n }\n if (isHostParent(parentFiber)) {\n hostParentFiber = parentFiber;\n break;\n }\n parentFiber = parentFiber.return;\n }\n if (null == hostParentFiber) throw Error(formatProdErrorMessage(160));\n switch (hostParentFiber.tag) {\n case 27:\n var parent = hostParentFiber.stateNode,\n before = getHostSibling(finishedWork);\n insertOrAppendPlacementNode(\n finishedWork,\n before,\n parent,\n parentFragmentInstances\n );\n break;\n case 5:\n var parent$147 = hostParentFiber.stateNode;\n hostParentFiber.flags & 32 &&\n (setTextContent(parent$147, \"\"), (hostParentFiber.flags &= -33));\n var before$148 = getHostSibling(finishedWork);\n insertOrAppendPlacementNode(\n finishedWork,\n before$148,\n parent$147,\n parentFragmentInstances\n );\n break;\n case 3:\n case 4:\n var parent$149 = hostParentFiber.stateNode.containerInfo,\n before$150 = getHostSibling(finishedWork);\n insertOrAppendPlacementNodeIntoContainer(\n finishedWork,\n before$150,\n parent$149,\n parentFragmentInstances\n );\n break;\n default:\n throw Error(formatProdErrorMessage(161));\n }\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n finishedWork.flags &= -3;\n }\n flags & 4096 && (finishedWork.flags &= -4097);\n}\nfunction recursivelyResetForms(parentFiber) {\n if (parentFiber.subtreeFlags & 1024)\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n var fiber = parentFiber;\n recursivelyResetForms(fiber);\n 5 === fiber.tag && fiber.flags & 1024 && fiber.stateNode.reset();\n parentFiber = parentFiber.sibling;\n }\n}\nfunction recursivelyTraverseAfterMutationEffects(root, parentFiber) {\n if (parentFiber.subtreeFlags & 9270)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitAfterMutationEffectsOnFiber(parentFiber, root),\n (parentFiber = parentFiber.sibling);\n else measureNestedViewTransitions(parentFiber, !1);\n}\nfunction commitAfterMutationEffectsOnFiber(finishedWork, root) {\n var current = finishedWork.alternate;\n if (null === current) commitEnterViewTransitions(finishedWork, !1);\n else\n switch (finishedWork.tag) {\n case 3:\n rootViewTransitionNameCanceled = viewTransitionContextChanged = !1;\n pushViewTransitionCancelableScope();\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n if (!viewTransitionContextChanged && !rootViewTransitionAffected) {\n finishedWork = viewTransitionCancelableChildren;\n if (null !== finishedWork)\n for (var i = 0; i < finishedWork.length; i += 3) {\n current = finishedWork[i];\n var oldName = finishedWork[i + 1];\n restoreViewTransitionName(current, finishedWork[i + 2]);\n current = current.ownerDocument.documentElement;\n null !== current &&\n current.animate(\n { opacity: [0, 0], pointerEvents: [\"none\", \"none\"] },\n {\n duration: 0,\n fill: \"forwards\",\n pseudoElement: \"::view-transition-group(\" + oldName + \")\"\n }\n );\n }\n finishedWork = root.containerInfo;\n finishedWork =\n 9 === finishedWork.nodeType\n ? finishedWork.documentElement\n : finishedWork.ownerDocument.documentElement;\n null !== finishedWork &&\n \"\" === finishedWork.style.viewTransitionName &&\n ((finishedWork.style.viewTransitionName = \"none\"),\n finishedWork.animate(\n { opacity: [0, 0], pointerEvents: [\"none\", \"none\"] },\n {\n duration: 0,\n fill: \"forwards\",\n pseudoElement: \"::view-transition-group(root)\"\n }\n ),\n finishedWork.animate(\n { width: [0, 0], height: [0, 0] },\n {\n duration: 0,\n fill: \"forwards\",\n pseudoElement: \"::view-transition\"\n }\n ));\n rootViewTransitionNameCanceled = !0;\n }\n viewTransitionCancelableChildren = null;\n break;\n case 5:\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n break;\n case 4:\n i = viewTransitionContextChanged;\n viewTransitionContextChanged = !1;\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n viewTransitionContextChanged && (rootViewTransitionAffected = !0);\n viewTransitionContextChanged = i;\n break;\n case 22:\n null === finishedWork.memoizedState &&\n (null !== current.memoizedState\n ? commitEnterViewTransitions(finishedWork, !1)\n : recursivelyTraverseAfterMutationEffects(root, finishedWork));\n break;\n case 30:\n i = viewTransitionContextChanged;\n oldName = pushViewTransitionCancelableScope();\n viewTransitionContextChanged = !1;\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n viewTransitionContextChanged && (finishedWork.flags |= 4);\n var props = finishedWork.memoizedProps,\n state = finishedWork.stateNode;\n root = getViewTransitionName(props, state);\n state = getViewTransitionName(current.memoizedProps, state);\n var className = getViewTransitionClassName(props.default, props.update);\n \"none\" === className\n ? (root = !1)\n : ((props = current.memoizedState),\n (current.memoizedState = null),\n (current = finishedWork.child),\n (viewTransitionHostInstanceIdx = 0),\n (root = measureViewTransitionHostInstancesRecursive(\n finishedWork,\n current,\n root,\n state,\n className,\n props,\n !0\n )),\n viewTransitionHostInstanceIdx !==\n (null === props ? 0 : props.length) &&\n (finishedWork.flags |= 32));\n 0 !== (finishedWork.flags & 4) && root\n ? (scheduleViewTransitionEvent(\n finishedWork,\n finishedWork.memoizedProps.onUpdate\n ),\n (viewTransitionCancelableChildren = oldName))\n : null !== oldName &&\n (oldName.push.apply(oldName, viewTransitionCancelableChildren),\n (viewTransitionCancelableChildren = oldName));\n viewTransitionContextChanged = 0 !== (finishedWork.flags & 32) ? !0 : i;\n break;\n default:\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n }\n}\nfunction recursivelyTraverseLayoutEffects(root, parentFiber) {\n if (parentFiber.subtreeFlags & 8772)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitLayoutEffectOnFiber(root, parentFiber.alternate, parentFiber),\n (parentFiber = parentFiber.sibling);\n}\nfunction recursivelyTraverseDisappearLayoutEffects(parentFiber) {\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n var finishedWork = parentFiber;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 14:\n case 15:\n commitHookEffectListUnmount(4, finishedWork, finishedWork.return);\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 1:\n safelyDetachRef(finishedWork, finishedWork.return);\n var instance = finishedWork.stateNode;\n \"function\" === typeof instance.componentWillUnmount &&\n safelyCallComponentWillUnmount(\n finishedWork,\n finishedWork.return,\n instance\n );\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 27:\n releaseSingletonInstance(finishedWork.stateNode);\n case 26:\n case 5:\n safelyDetachRef(finishedWork, finishedWork.return);\n 5 === finishedWork.tag &&\n commitFragmentInstanceDeletionEffects(finishedWork);\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 22:\n null === finishedWork.memoizedState &&\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 30:\n safelyDetachRef(finishedWork, finishedWork.return);\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 7:\n safelyDetachRef(finishedWork, finishedWork.return);\n default:\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n }\n parentFiber = parentFiber.sibling;\n }\n}\nfunction recursivelyTraverseReappearLayoutEffects(\n finishedRoot$jscomp$0,\n parentFiber,\n includeWorkInProgressEffects\n) {\n includeWorkInProgressEffects =\n includeWorkInProgressEffects && 0 !== (parentFiber.subtreeFlags & 8772);\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n var current = parentFiber.alternate,\n finishedRoot = finishedRoot$jscomp$0,\n finishedWork = parentFiber,\n flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n commitHookEffectListMount(4, finishedWork);\n break;\n case 1:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n current = finishedWork;\n finishedRoot = current.stateNode;\n if (\"function\" === typeof finishedRoot.componentDidMount)\n try {\n finishedRoot.componentDidMount();\n } catch (error) {\n captureCommitPhaseError(current, current.return, error);\n }\n current = finishedWork;\n finishedRoot = current.updateQueue;\n if (null !== finishedRoot) {\n var instance = current.stateNode;\n try {\n var hiddenCallbacks = finishedRoot.shared.hiddenCallbacks;\n if (null !== hiddenCallbacks)\n for (\n finishedRoot.shared.hiddenCallbacks = null, finishedRoot = 0;\n finishedRoot < hiddenCallbacks.length;\n finishedRoot++\n )\n callCallback(hiddenCallbacks[finishedRoot], instance);\n } catch (error) {\n captureCommitPhaseError(current, current.return, error);\n }\n }\n includeWorkInProgressEffects &&\n flags & 64 &&\n commitClassCallbacks(finishedWork);\n safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 27:\n commitHostSingletonAcquisition(finishedWork);\n case 26:\n case 5:\n if (5 === finishedWork.tag) {\n instance = finishedWork;\n for (var parent = instance.return; null !== parent; ) {\n isFragmentInstanceParent(parent) &&\n commitNewChildToFragmentInstance(\n instance.stateNode,\n parent.stateNode\n );\n if (isHostParent(parent)) break;\n parent = parent.return;\n }\n }\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n includeWorkInProgressEffects &&\n null === current &&\n flags & 4 &&\n commitHostMount(finishedWork);\n safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 12:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n break;\n case 31:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n includeWorkInProgressEffects &&\n flags & 4 &&\n commitActivityHydrationCallbacks(finishedRoot, finishedWork);\n break;\n case 13:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n includeWorkInProgressEffects &&\n flags & 4 &&\n commitSuspenseHydrationCallbacks(finishedRoot, finishedWork);\n break;\n case 22:\n null === finishedWork.memoizedState &&\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 30:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 7:\n safelyAttachRef(finishedWork, finishedWork.return);\n default:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n }\n parentFiber = parentFiber.sibling;\n }\n}\nfunction commitOffscreenPassiveMountEffects(current, finishedWork) {\n var previousCache = null;\n null !== current &&\n null !== current.memoizedState &&\n null !== current.memoizedState.cachePool &&\n (previousCache = current.memoizedState.cachePool.pool);\n current = null;\n null !== finishedWork.memoizedState &&\n null !== finishedWork.memoizedState.cachePool &&\n (current = finishedWork.memoizedState.cachePool.pool);\n current !== previousCache &&\n (null != current && current.refCount++,\n null != previousCache && releaseCache(previousCache));\n}\nfunction commitCachePassiveMountEffect(current, finishedWork) {\n current = null;\n null !== finishedWork.alternate &&\n (current = finishedWork.alternate.memoizedState.cache);\n finishedWork = finishedWork.memoizedState.cache;\n finishedWork !== current &&\n (finishedWork.refCount++, null != current && releaseCache(current));\n}\nfunction recursivelyTraversePassiveMountEffects(\n root,\n parentFiber,\n committedLanes,\n committedTransitions\n) {\n var isViewTransitionEligible =\n (committedLanes & 335544064) === committedLanes;\n if (parentFiber.subtreeFlags & (isViewTransitionEligible ? 10262 : 10256))\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitPassiveMountOnFiber(\n root,\n parentFiber,\n committedLanes,\n committedTransitions\n ),\n (parentFiber = parentFiber.sibling);\n else isViewTransitionEligible && restoreNestedViewTransitions(parentFiber);\n}\nfunction commitPassiveMountOnFiber(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n) {\n var isViewTransitionEligible =\n (committedLanes & 335544064) === committedLanes;\n isViewTransitionEligible &&\n null === finishedWork.alternate &&\n null !== finishedWork.return &&\n null !== finishedWork.return.alternate &&\n restoreEnterOrExitViewTransitions(finishedWork);\n var flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n flags & 2048 && commitHookEffectListMount(9, finishedWork);\n break;\n case 1:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n break;\n case 3:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n isViewTransitionEligible &&\n rootViewTransitionNameCanceled &&\n ((finishedRoot = finishedRoot.containerInfo),\n (finishedRoot =\n 9 === finishedRoot.nodeType\n ? finishedRoot.body\n : \"HTML\" === finishedRoot.nodeName\n ? finishedRoot.ownerDocument.body\n : finishedRoot),\n \"root\" === finishedRoot.style.viewTransitionName &&\n (finishedRoot.style.viewTransitionName = \"\"),\n (finishedRoot = finishedRoot.ownerDocument.documentElement),\n null !== finishedRoot &&\n \"none\" === finishedRoot.style.viewTransitionName &&\n (finishedRoot.style.viewTransitionName = \"\"));\n flags & 2048 &&\n ((flags = null),\n null !== finishedWork.alternate &&\n (flags = finishedWork.alternate.memoizedState.cache),\n (finishedWork = finishedWork.memoizedState.cache),\n finishedWork !== flags &&\n (finishedWork.refCount++, null != flags && releaseCache(flags)));\n break;\n case 12:\n if (flags & 2048) {\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n flags = finishedWork.stateNode;\n try {\n var _finishedWork$memoize2 = finishedWork.memoizedProps,\n id = _finishedWork$memoize2.id,\n onPostCommit = _finishedWork$memoize2.onPostCommit;\n \"function\" === typeof onPostCommit &&\n onPostCommit(\n id,\n null === finishedWork.alternate ? \"mount\" : \"update\",\n flags.passiveEffectDuration,\n -0\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n } else\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n break;\n case 31:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n break;\n case 13:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n break;\n case 23:\n break;\n case 22:\n _finishedWork$memoize2 = finishedWork.stateNode;\n id = finishedWork.alternate;\n null !== finishedWork.memoizedState\n ? (isViewTransitionEligible &&\n null !== id &&\n null === id.memoizedState &&\n restoreEnterOrExitViewTransitions(id),\n _finishedWork$memoize2._visibility & 2\n ? recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n )\n : recursivelyTraverseAtomicPassiveEffects(\n finishedRoot,\n finishedWork\n ))\n : (isViewTransitionEligible &&\n null !== id &&\n null !== id.memoizedState &&\n restoreEnterOrExitViewTransitions(finishedWork),\n _finishedWork$memoize2._visibility & 2\n ? recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n )\n : ((_finishedWork$memoize2._visibility |= 2),\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n 0 !== (finishedWork.subtreeFlags & 10256) || !1\n )));\n flags & 2048 && commitOffscreenPassiveMountEffects(id, finishedWork);\n break;\n case 24:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n flags & 2048 &&\n commitCachePassiveMountEffect(finishedWork.alternate, finishedWork);\n break;\n case 30:\n isViewTransitionEligible &&\n ((flags = finishedWork.alternate),\n null !== flags &&\n (restoreViewTransitionOnHostInstances(flags.child, !0),\n restoreViewTransitionOnHostInstances(finishedWork.child, !0)));\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n break;\n default:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions\n );\n }\n}\nfunction recursivelyTraverseReconnectPassiveEffects(\n finishedRoot$jscomp$0,\n parentFiber,\n committedLanes$jscomp$0,\n committedTransitions$jscomp$0,\n includeWorkInProgressEffects\n) {\n includeWorkInProgressEffects =\n includeWorkInProgressEffects &&\n (0 !== (parentFiber.subtreeFlags & 10256) || !1);\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n var finishedRoot = finishedRoot$jscomp$0,\n finishedWork = parentFiber,\n committedLanes = committedLanes$jscomp$0,\n committedTransitions = committedTransitions$jscomp$0,\n flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects\n );\n commitHookEffectListMount(8, finishedWork);\n break;\n case 23:\n break;\n case 22:\n var instance = finishedWork.stateNode;\n null !== finishedWork.memoizedState\n ? instance._visibility & 2\n ? recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects\n )\n : recursivelyTraverseAtomicPassiveEffects(\n finishedRoot,\n finishedWork\n )\n : ((instance._visibility |= 2),\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects\n ));\n includeWorkInProgressEffects &&\n flags & 2048 &&\n commitOffscreenPassiveMountEffects(\n finishedWork.alternate,\n finishedWork\n );\n break;\n case 24:\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects\n );\n includeWorkInProgressEffects &&\n flags & 2048 &&\n commitCachePassiveMountEffect(finishedWork.alternate, finishedWork);\n break;\n default:\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects\n );\n }\n parentFiber = parentFiber.sibling;\n }\n}\nfunction recursivelyTraverseAtomicPassiveEffects(\n finishedRoot$jscomp$0,\n parentFiber\n) {\n if (parentFiber.subtreeFlags & 10256)\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n var finishedRoot = finishedRoot$jscomp$0,\n finishedWork = parentFiber,\n flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 22:\n recursivelyTraverseAtomicPassiveEffects(finishedRoot, finishedWork);\n flags & 2048 &&\n commitOffscreenPassiveMountEffects(\n finishedWork.alternate,\n finishedWork\n );\n break;\n case 24:\n recursivelyTraverseAtomicPassiveEffects(finishedRoot, finishedWork);\n flags & 2048 &&\n commitCachePassiveMountEffect(finishedWork.alternate, finishedWork);\n break;\n default:\n recursivelyTraverseAtomicPassiveEffects(finishedRoot, finishedWork);\n }\n parentFiber = parentFiber.sibling;\n }\n}\nvar suspenseyCommitFlag = 8192;\nfunction recursivelyAccumulateSuspenseyCommit(\n parentFiber,\n committedLanes,\n suspendedState\n) {\n if (parentFiber.subtreeFlags & suspenseyCommitFlag)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n accumulateSuspenseyCommitOnFiber(\n parentFiber,\n committedLanes,\n suspendedState\n ),\n (parentFiber = parentFiber.sibling);\n}\nfunction accumulateSuspenseyCommitOnFiber(\n fiber,\n committedLanes,\n suspendedState\n) {\n switch (fiber.tag) {\n case 26:\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n fiber.flags & suspenseyCommitFlag &&\n (null !== fiber.memoizedState\n ? suspendResource(\n suspendedState,\n currentHoistableRoot,\n fiber.memoizedState,\n fiber.memoizedProps\n )\n : ((fiber = fiber.stateNode),\n (committedLanes & 335544128) === committedLanes &&\n suspendInstance(suspendedState, fiber)));\n break;\n case 5:\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n fiber.flags & suspenseyCommitFlag &&\n ((fiber = fiber.stateNode),\n (committedLanes & 335544128) === committedLanes &&\n suspendInstance(suspendedState, fiber));\n break;\n case 3:\n case 4:\n var previousHoistableRoot = currentHoistableRoot;\n currentHoistableRoot = getHoistableRoot(fiber.stateNode.containerInfo);\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n currentHoistableRoot = previousHoistableRoot;\n break;\n case 22:\n null === fiber.memoizedState &&\n ((previousHoistableRoot = fiber.alternate),\n null !== previousHoistableRoot &&\n null !== previousHoistableRoot.memoizedState\n ? ((previousHoistableRoot = suspenseyCommitFlag),\n (suspenseyCommitFlag = 16777216),\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n ),\n (suspenseyCommitFlag = previousHoistableRoot))\n : recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n ));\n break;\n case 30:\n if (\n 0 !== (fiber.flags & suspenseyCommitFlag) &&\n ((previousHoistableRoot = fiber.memoizedProps.name),\n null != previousHoistableRoot && \"auto\" !== previousHoistableRoot)\n ) {\n var state = fiber.stateNode;\n state.paired = null;\n null === appearingViewTransitions &&\n (appearingViewTransitions = new Map());\n appearingViewTransitions.set(previousHoistableRoot, state);\n }\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n break;\n default:\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n }\n}\nfunction detachAlternateSiblings(parentFiber) {\n var previousFiber = parentFiber.alternate;\n if (\n null !== previousFiber &&\n ((parentFiber = previousFiber.child), null !== parentFiber)\n ) {\n previousFiber.child = null;\n do\n (previousFiber = parentFiber.sibling),\n (parentFiber.sibling = null),\n (parentFiber = previousFiber);\n while (null !== parentFiber);\n }\n}\nfunction recursivelyTraversePassiveUnmountEffects(parentFiber) {\n var deletions = parentFiber.deletions;\n if (0 !== (parentFiber.flags & 16)) {\n if (null !== deletions)\n for (var i = 0; i < deletions.length; i++) {\n var childToDelete = deletions[i];\n nextEffect = childToDelete;\n commitPassiveUnmountEffectsInsideOfDeletedTree_begin(\n childToDelete,\n parentFiber\n );\n }\n detachAlternateSiblings(parentFiber);\n }\n if (parentFiber.subtreeFlags & 10256)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitPassiveUnmountOnFiber(parentFiber),\n (parentFiber = parentFiber.sibling);\n}\nfunction commitPassiveUnmountOnFiber(finishedWork) {\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraversePassiveUnmountEffects(finishedWork);\n finishedWork.flags & 2048 &&\n commitHookEffectListUnmount(9, finishedWork, finishedWork.return);\n break;\n case 3:\n recursivelyTraversePassiveUnmountEffects(finishedWork);\n break;\n case 12:\n recursivelyTraversePassiveUnmountEffects(finishedWork);\n break;\n case 22:\n var instance = finishedWork.stateNode;\n null !== finishedWork.memoizedState &&\n instance._visibility & 2 &&\n (null === finishedWork.return || 13 !== finishedWork.return.tag)\n ? ((instance._visibility &= -3),\n recursivelyTraverseDisconnectPassiveEffects(finishedWork))\n : recursivelyTraversePassiveUnmountEffects(finishedWork);\n break;\n default:\n recursivelyTraversePassiveUnmountEffects(finishedWork);\n }\n}\nfunction recursivelyTraverseDisconnectPassiveEffects(parentFiber) {\n var deletions = parentFiber.deletions;\n if (0 !== (parentFiber.flags & 16)) {\n if (null !== deletions)\n for (var i = 0; i < deletions.length; i++) {\n var childToDelete = deletions[i];\n nextEffect = childToDelete;\n commitPassiveUnmountEffectsInsideOfDeletedTree_begin(\n childToDelete,\n parentFiber\n );\n }\n detachAlternateSiblings(parentFiber);\n }\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n deletions = parentFiber;\n switch (deletions.tag) {\n case 0:\n case 11:\n case 15:\n commitHookEffectListUnmount(8, deletions, deletions.return);\n recursivelyTraverseDisconnectPassiveEffects(deletions);\n break;\n case 22:\n i = deletions.stateNode;\n i._visibility & 2 &&\n ((i._visibility &= -3),\n recursivelyTraverseDisconnectPassiveEffects(deletions));\n break;\n default:\n recursivelyTraverseDisconnectPassiveEffects(deletions);\n }\n parentFiber = parentFiber.sibling;\n }\n}\nfunction commitPassiveUnmountEffectsInsideOfDeletedTree_begin(\n deletedSubtreeRoot,\n nearestMountedAncestor\n) {\n for (; null !== nextEffect; ) {\n var fiber = nextEffect;\n switch (fiber.tag) {\n case 0:\n case 11:\n case 15:\n commitHookEffectListUnmount(8, fiber, nearestMountedAncestor);\n break;\n case 23:\n case 22:\n if (\n null !== fiber.memoizedState &&\n null !== fiber.memoizedState.cachePool\n ) {\n var cache = fiber.memoizedState.cachePool.pool;\n null != cache && cache.refCount++;\n }\n break;\n case 24:\n releaseCache(fiber.memoizedState.cache);\n }\n cache = fiber.child;\n if (null !== cache) (cache.return = fiber), (nextEffect = cache);\n else\n a: for (fiber = deletedSubtreeRoot; null !== nextEffect; ) {\n cache = nextEffect;\n var sibling = cache.sibling,\n returnFiber = cache.return;\n detachFiberAfterEffects(cache);\n if (cache === fiber) {\n nextEffect = null;\n break a;\n }\n if (null !== sibling) {\n sibling.return = returnFiber;\n nextEffect = sibling;\n break a;\n }\n nextEffect = returnFiber;\n }\n }\n}\nvar DefaultAsyncDispatcher = {\n getCacheForType: function (resourceType) {\n var cache = readContext(CacheContext),\n cacheForType = cache.data.get(resourceType);\n void 0 === cacheForType &&\n ((cacheForType = resourceType()),\n cache.data.set(resourceType, cacheForType));\n return cacheForType;\n },\n cacheSignal: function () {\n return readContext(CacheContext).controller.signal;\n }\n },\n PossiblyWeakMap = \"function\" === typeof WeakMap ? WeakMap : Map,\n executionContext = 0,\n workInProgressRoot = null,\n workInProgress = null,\n workInProgressRootRenderLanes = 0,\n workInProgressSuspendedReason = 0,\n workInProgressThrownValue = null,\n workInProgressRootDidSkipSuspendedSiblings = !1,\n workInProgressRootIsPrerendering = !1,\n workInProgressRootDidAttachPingListener = !1,\n entangledRenderLanes = 0,\n workInProgressRootExitStatus = 0,\n workInProgressRootSkippedLanes = 0,\n workInProgressRootInterleavedUpdatedLanes = 0,\n workInProgressRootPingedLanes = 0,\n workInProgressDeferredLane = 0,\n workInProgressSuspendedRetryLanes = 0,\n workInProgressRootConcurrentErrors = null,\n workInProgressRootRecoverableErrors = null,\n workInProgressRootDidIncludeRecursiveRenderUpdate = !1,\n globalMostRecentFallbackTime = 0,\n globalMostRecentTransitionTime = 0,\n workInProgressRootRenderTargetTime = Infinity,\n workInProgressTransitions = null,\n legacyErrorBoundariesThatAlreadyFailed = null,\n pendingEffectsStatus = 0,\n pendingEffectsRoot = null,\n pendingFinishedWork = null,\n pendingEffectsLanes = 0,\n pendingEffectsRemainingLanes = 0,\n pendingPassiveTransitions = null,\n pendingRecoverableErrors = null,\n pendingViewTransition = null,\n pendingViewTransitionEvents = null,\n pendingTransitionTypes = null,\n nestedUpdateCount = 0,\n rootWithNestedUpdates = null;\nfunction requestUpdateLane() {\n return 0 !== (executionContext & 2) && 0 !== workInProgressRootRenderLanes\n ? workInProgressRootRenderLanes & -workInProgressRootRenderLanes\n : null !== ReactSharedInternals.T\n ? requestTransitionLane()\n : resolveUpdatePriority();\n}\nfunction requestDeferredLane() {\n if (0 === workInProgressDeferredLane)\n if (0 === (workInProgressRootRenderLanes & 536870912) || isHydrating) {\n var lane = nextTransitionDeferredLane;\n nextTransitionDeferredLane <<= 1;\n 0 === (nextTransitionDeferredLane & 3932160) &&\n (nextTransitionDeferredLane = 262144);\n workInProgressDeferredLane = lane;\n } else workInProgressDeferredLane = 536870912;\n lane = suspenseHandlerStackCursor.current;\n null !== lane && (lane.flags |= 32);\n return workInProgressDeferredLane;\n}\nfunction scheduleViewTransitionEvent(fiber, callback) {\n if (null != callback) {\n var state = fiber.stateNode,\n instance = state.ref;\n null === instance &&\n (instance = state.ref =\n createViewTransitionInstance(\n getViewTransitionName(fiber.memoizedProps, state)\n ));\n null === pendingViewTransitionEvents && (pendingViewTransitionEvents = []);\n pendingViewTransitionEvents.push(callback.bind(null, instance));\n }\n}\nfunction scheduleUpdateOnFiber(root, fiber, lane) {\n if (\n (root === workInProgressRoot &&\n (2 === workInProgressSuspendedReason ||\n 9 === workInProgressSuspendedReason)) ||\n null !== root.cancelPendingCommit\n )\n prepareFreshStack(root, 0),\n markRootSuspended(\n root,\n workInProgressRootRenderLanes,\n workInProgressDeferredLane,\n !1\n );\n markRootUpdated$1(root, lane);\n if (0 === (executionContext & 2) || root !== workInProgressRoot)\n root === workInProgressRoot &&\n (0 === (executionContext & 2) &&\n (workInProgressRootInterleavedUpdatedLanes |= lane),\n 4 === workInProgressRootExitStatus &&\n markRootSuspended(\n root,\n workInProgressRootRenderLanes,\n workInProgressDeferredLane,\n !1\n )),\n ensureRootIsScheduled(root);\n}\nfunction performWorkOnRoot(root$jscomp$0, lanes, forceSync) {\n if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(327));\n var shouldTimeSlice =\n (!forceSync &&\n 0 === (lanes & 127) &&\n 0 === (lanes & root$jscomp$0.expiredLanes)) ||\n checkIfRootIsPrerendering(root$jscomp$0, lanes),\n exitStatus = shouldTimeSlice\n ? renderRootConcurrent(root$jscomp$0, lanes)\n : renderRootSync(root$jscomp$0, lanes, !0),\n renderWasConcurrent = shouldTimeSlice;\n do {\n if (0 === exitStatus) {\n workInProgressRootIsPrerendering &&\n !shouldTimeSlice &&\n markRootSuspended(root$jscomp$0, lanes, 0, !1);\n break;\n } else {\n forceSync = root$jscomp$0.current.alternate;\n if (\n renderWasConcurrent &&\n !isRenderConsistentWithExternalStores(forceSync)\n ) {\n exitStatus = renderRootSync(root$jscomp$0, lanes, !1);\n renderWasConcurrent = !1;\n continue;\n }\n if (2 === exitStatus) {\n renderWasConcurrent = lanes;\n if (root$jscomp$0.errorRecoveryDisabledLanes & renderWasConcurrent)\n var JSCompiler_inline_result = 0;\n else\n (JSCompiler_inline_result = root$jscomp$0.pendingLanes & -536870913),\n (JSCompiler_inline_result =\n 0 !== JSCompiler_inline_result\n ? JSCompiler_inline_result\n : JSCompiler_inline_result & 536870912\n ? 536870912\n : 0);\n if (0 !== JSCompiler_inline_result) {\n lanes = JSCompiler_inline_result;\n a: {\n var root = root$jscomp$0;\n exitStatus = workInProgressRootConcurrentErrors;\n var wasRootDehydrated = root.current.memoizedState.isDehydrated;\n wasRootDehydrated &&\n (prepareFreshStack(root, JSCompiler_inline_result).flags |= 256);\n JSCompiler_inline_result = renderRootSync(\n root,\n JSCompiler_inline_result,\n !1\n );\n if (2 !== JSCompiler_inline_result) {\n if (\n workInProgressRootDidAttachPingListener &&\n !wasRootDehydrated\n ) {\n root.errorRecoveryDisabledLanes |= renderWasConcurrent;\n workInProgressRootInterleavedUpdatedLanes |=\n renderWasConcurrent;\n exitStatus = 4;\n break a;\n }\n renderWasConcurrent = workInProgressRootRecoverableErrors;\n workInProgressRootRecoverableErrors = exitStatus;\n null !== renderWasConcurrent &&\n (null === workInProgressRootRecoverableErrors\n ? (workInProgressRootRecoverableErrors = renderWasConcurrent)\n : workInProgressRootRecoverableErrors.push.apply(\n workInProgressRootRecoverableErrors,\n renderWasConcurrent\n ));\n }\n exitStatus = JSCompiler_inline_result;\n }\n renderWasConcurrent = !1;\n if (2 !== exitStatus) continue;\n }\n }\n if (1 === exitStatus) {\n prepareFreshStack(root$jscomp$0, 0);\n markRootSuspended(root$jscomp$0, lanes, 0, !0);\n break;\n }\n a: {\n shouldTimeSlice = root$jscomp$0;\n renderWasConcurrent = exitStatus;\n switch (renderWasConcurrent) {\n case 0:\n case 1:\n throw Error(formatProdErrorMessage(345));\n case 4:\n if ((lanes & 4194048) !== lanes && (lanes & 62914560) !== lanes)\n break;\n case 6:\n markRootSuspended(\n shouldTimeSlice,\n lanes,\n workInProgressDeferredLane,\n !workInProgressRootDidSkipSuspendedSiblings\n );\n break a;\n case 2:\n workInProgressRootRecoverableErrors = null;\n break;\n case 3:\n case 5:\n break;\n default:\n throw Error(formatProdErrorMessage(329));\n }\n if (\n (lanes & 62914560) === lanes &&\n ((exitStatus = globalMostRecentFallbackTime + 300 - now()),\n 10 < exitStatus)\n ) {\n markRootSuspended(\n shouldTimeSlice,\n lanes,\n workInProgressDeferredLane,\n !workInProgressRootDidSkipSuspendedSiblings\n );\n if (0 !== getNextLanes(shouldTimeSlice, 0, !0)) break a;\n pendingEffectsLanes = lanes;\n shouldTimeSlice.timeoutHandle = scheduleTimeout(\n commitRootWhenReady.bind(\n null,\n shouldTimeSlice,\n forceSync,\n workInProgressRootRecoverableErrors,\n workInProgressTransitions,\n workInProgressRootDidIncludeRecursiveRenderUpdate,\n lanes,\n workInProgressDeferredLane,\n workInProgressRootInterleavedUpdatedLanes,\n workInProgressSuspendedRetryLanes,\n workInProgressRootDidSkipSuspendedSiblings,\n renderWasConcurrent,\n \"Throttled\",\n -0,\n 0\n ),\n exitStatus\n );\n break a;\n }\n commitRootWhenReady(\n shouldTimeSlice,\n forceSync,\n workInProgressRootRecoverableErrors,\n workInProgressTransitions,\n workInProgressRootDidIncludeRecursiveRenderUpdate,\n lanes,\n workInProgressDeferredLane,\n workInProgressRootInterleavedUpdatedLanes,\n workInProgressSuspendedRetryLanes,\n workInProgressRootDidSkipSuspendedSiblings,\n renderWasConcurrent,\n null,\n -0,\n 0\n );\n }\n }\n break;\n } while (1);\n ensureRootIsScheduled(root$jscomp$0);\n}\nfunction commitRootWhenReady(\n root,\n finishedWork,\n recoverableErrors,\n transitions,\n didIncludeRenderPhaseUpdate,\n lanes,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes,\n didSkipSuspendedSiblings,\n exitStatus,\n suspendedCommitReason,\n completedRenderStartTime,\n completedRenderEndTime\n) {\n root.timeoutHandle = -1;\n var subtreeFlags = finishedWork.subtreeFlags,\n isViewTransitionEligible = (lanes & 335544064) === lanes;\n suspendedCommitReason = null;\n if (\n isViewTransitionEligible ||\n subtreeFlags & 8192 ||\n 16785408 === (subtreeFlags & 16785408)\n )\n if (\n ((suspendedCommitReason = {\n stylesheets: null,\n count: 0,\n imgCount: 0,\n imgBytes: 0,\n suspenseyImages: [],\n waitingForImages: !0,\n waitingForViewTransition: !1,\n unsuspend: noop$1\n }),\n (appearingViewTransitions = null),\n accumulateSuspenseyCommitOnFiber(\n finishedWork,\n lanes,\n suspendedCommitReason\n ),\n isViewTransitionEligible &&\n ((subtreeFlags = suspendedCommitReason),\n (isViewTransitionEligible = root.containerInfo),\n (isViewTransitionEligible = (\n 9 === isViewTransitionEligible.nodeType\n ? isViewTransitionEligible\n : isViewTransitionEligible.ownerDocument\n ).__reactViewTransition),\n null != isViewTransitionEligible &&\n (subtreeFlags.count++,\n (subtreeFlags.waitingForViewTransition = !0),\n (subtreeFlags = onUnsuspend.bind(subtreeFlags)),\n isViewTransitionEligible.finished.then(subtreeFlags, subtreeFlags))),\n (subtreeFlags =\n (lanes & 62914560) === lanes\n ? globalMostRecentFallbackTime - now()\n : (lanes & 4194048) === lanes\n ? globalMostRecentTransitionTime - now()\n : 0),\n (subtreeFlags = waitForCommitToBeReady(\n suspendedCommitReason,\n subtreeFlags\n )),\n null !== subtreeFlags)\n ) {\n pendingEffectsLanes = lanes;\n root.cancelPendingCommit = subtreeFlags(\n commitRoot.bind(\n null,\n root,\n finishedWork,\n lanes,\n recoverableErrors,\n transitions,\n didIncludeRenderPhaseUpdate,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes,\n exitStatus,\n suspendedCommitReason,\n null,\n completedRenderStartTime,\n completedRenderEndTime\n )\n );\n markRootSuspended(root, lanes, spawnedLane, !didSkipSuspendedSiblings);\n return;\n }\n commitRoot(\n root,\n finishedWork,\n lanes,\n recoverableErrors,\n transitions,\n didIncludeRenderPhaseUpdate,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes,\n exitStatus,\n suspendedCommitReason\n );\n}\nfunction isRenderConsistentWithExternalStores(finishedWork) {\n for (var node = finishedWork; ; ) {\n var tag = node.tag;\n if (\n (0 === tag || 11 === tag || 15 === tag) &&\n node.flags & 16384 &&\n ((tag = node.updateQueue),\n null !== tag && ((tag = tag.stores), null !== tag))\n )\n for (var i = 0; i < tag.length; i++) {\n var check = tag[i],\n getSnapshot = check.getSnapshot;\n check = check.value;\n try {\n if (!objectIs(getSnapshot(), check)) return !1;\n } catch (error) {\n return !1;\n }\n }\n tag = node.child;\n if (node.subtreeFlags & 16384 && null !== tag)\n (tag.return = node), (node = tag);\n else {\n if (node === finishedWork) break;\n for (; null === node.sibling; ) {\n if (null === node.return || node.return === finishedWork) return !0;\n node = node.return;\n }\n node.sibling.return = node.return;\n node = node.sibling;\n }\n }\n return !0;\n}\nfunction markRootSuspended(\n root,\n suspendedLanes,\n spawnedLane,\n didAttemptEntireTree\n) {\n suspendedLanes &= ~workInProgressRootPingedLanes;\n suspendedLanes &= ~workInProgressRootInterleavedUpdatedLanes;\n root.suspendedLanes |= suspendedLanes;\n root.pingedLanes &= ~suspendedLanes;\n didAttemptEntireTree && (root.warmLanes |= suspendedLanes);\n didAttemptEntireTree = root.expirationTimes;\n for (var lanes = suspendedLanes; 0 < lanes; ) {\n var index$6 = 31 - clz32(lanes),\n lane = 1 << index$6;\n didAttemptEntireTree[index$6] = -1;\n lanes &= ~lane;\n }\n 0 !== spawnedLane &&\n markSpawnedDeferredLane(root, spawnedLane, suspendedLanes);\n}\nfunction flushSyncWork$1() {\n return 0 === (executionContext & 6)\n ? (flushSyncWorkAcrossRoots_impl(0, !1), !1)\n : !0;\n}\nfunction resetWorkInProgressStack() {\n if (null !== workInProgress) {\n if (0 === workInProgressSuspendedReason)\n var interruptedWork = workInProgress.return;\n else\n (interruptedWork = workInProgress),\n (lastContextDependency = currentlyRenderingFiber$1 = null),\n resetHooksOnUnwind(interruptedWork),\n (thenableState$1 = null),\n (thenableIndexCounter$1 = 0),\n (interruptedWork = workInProgress);\n for (; null !== interruptedWork; )\n unwindInterruptedWork(interruptedWork.alternate, interruptedWork),\n (interruptedWork = interruptedWork.return);\n workInProgress = null;\n }\n}\nfunction prepareFreshStack(root, lanes) {\n var timeoutHandle = root.timeoutHandle;\n -1 !== timeoutHandle &&\n ((root.timeoutHandle = -1), cancelTimeout(timeoutHandle));\n timeoutHandle = root.cancelPendingCommit;\n null !== timeoutHandle &&\n ((root.cancelPendingCommit = null), timeoutHandle());\n pendingEffectsLanes = 0;\n resetWorkInProgressStack();\n workInProgressRoot = root;\n workInProgress = timeoutHandle = createWorkInProgress(root.current, null);\n workInProgressRootRenderLanes = lanes;\n workInProgressSuspendedReason = 0;\n workInProgressThrownValue = null;\n workInProgressRootDidSkipSuspendedSiblings = !1;\n workInProgressRootIsPrerendering = checkIfRootIsPrerendering(root, lanes);\n workInProgressRootDidAttachPingListener = !1;\n workInProgressSuspendedRetryLanes =\n workInProgressDeferredLane =\n workInProgressRootPingedLanes =\n workInProgressRootInterleavedUpdatedLanes =\n workInProgressRootSkippedLanes =\n workInProgressRootExitStatus =\n 0;\n workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =\n null;\n workInProgressRootDidIncludeRecursiveRenderUpdate = !1;\n 0 !== (lanes & 8) && (lanes |= lanes & 32);\n var allEntangledLanes = root.entangledLanes;\n if (0 !== allEntangledLanes)\n for (\n root = root.entanglements, allEntangledLanes &= lanes;\n 0 < allEntangledLanes;\n\n ) {\n var index$4 = 31 - clz32(allEntangledLanes),\n lane = 1 << index$4;\n lanes |= root[index$4];\n allEntangledLanes &= ~lane;\n }\n entangledRenderLanes = lanes;\n finishQueueingConcurrentUpdates();\n return timeoutHandle;\n}\nfunction handleThrow(root, thrownValue) {\n currentlyRenderingFiber = null;\n ReactSharedInternals.H = ContextOnlyDispatcher;\n thrownValue === SuspenseException || thrownValue === SuspenseActionException\n ? ((thrownValue = getSuspendedThenable()),\n (workInProgressSuspendedReason = 3))\n : thrownValue === SuspenseyCommitException\n ? ((thrownValue = getSuspendedThenable()),\n (workInProgressSuspendedReason = 4))\n : (workInProgressSuspendedReason =\n thrownValue === SelectiveHydrationException\n ? 8\n : null !== thrownValue &&\n \"object\" === typeof thrownValue &&\n \"function\" === typeof thrownValue.then\n ? 6\n : 1);\n workInProgressThrownValue = thrownValue;\n null === workInProgress &&\n ((workInProgressRootExitStatus = 1),\n logUncaughtError(\n root,\n createCapturedValueAtFiber(thrownValue, root.current)\n ));\n}\nfunction shouldRemainOnPreviousScreen() {\n var handler = suspenseHandlerStackCursor.current;\n return null === handler\n ? !0\n : (workInProgressRootRenderLanes & 4194048) ===\n workInProgressRootRenderLanes\n ? null === shellBoundary\n ? !0\n : !1\n : (workInProgressRootRenderLanes & 62914560) ===\n workInProgressRootRenderLanes ||\n 0 !== (workInProgressRootRenderLanes & 536870912)\n ? handler === shellBoundary\n : !1;\n}\nfunction pushDispatcher() {\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = ContextOnlyDispatcher;\n return null === prevDispatcher ? ContextOnlyDispatcher : prevDispatcher;\n}\nfunction pushAsyncDispatcher() {\n var prevAsyncDispatcher = ReactSharedInternals.A;\n ReactSharedInternals.A = DefaultAsyncDispatcher;\n return prevAsyncDispatcher;\n}\nfunction renderDidSuspendDelayIfPossible() {\n workInProgressRootExitStatus = 4;\n workInProgressRootDidSkipSuspendedSiblings ||\n ((workInProgressRootRenderLanes & 4194048) !==\n workInProgressRootRenderLanes &&\n null !== suspenseHandlerStackCursor.current) ||\n (workInProgressRootIsPrerendering = !0);\n (0 === (workInProgressRootSkippedLanes & 134217727) &&\n 0 === (workInProgressRootInterleavedUpdatedLanes & 134217727)) ||\n null === workInProgressRoot ||\n markRootSuspended(\n workInProgressRoot,\n workInProgressRootRenderLanes,\n workInProgressDeferredLane,\n !1\n );\n}\nfunction renderRootSync(root, lanes, shouldYieldForPrerendering) {\n var prevExecutionContext = executionContext;\n executionContext |= 2;\n var prevDispatcher = pushDispatcher(),\n prevAsyncDispatcher = pushAsyncDispatcher();\n if (workInProgressRoot !== root || workInProgressRootRenderLanes !== lanes)\n (workInProgressTransitions = null), prepareFreshStack(root, lanes);\n lanes = !1;\n var exitStatus = workInProgressRootExitStatus;\n a: do\n try {\n if (0 !== workInProgressSuspendedReason && null !== workInProgress) {\n var unitOfWork = workInProgress,\n thrownValue = workInProgressThrownValue;\n switch (workInProgressSuspendedReason) {\n case 8:\n resetWorkInProgressStack();\n exitStatus = 6;\n break a;\n case 3:\n case 2:\n case 9:\n case 6:\n null === suspenseHandlerStackCursor.current && (lanes = !0);\n var reason = workInProgressSuspendedReason;\n workInProgressSuspendedReason = 0;\n workInProgressThrownValue = null;\n throwAndUnwindWorkLoop(root, unitOfWork, thrownValue, reason);\n if (\n shouldYieldForPrerendering &&\n workInProgressRootIsPrerendering\n ) {\n exitStatus = 0;\n break a;\n }\n break;\n default:\n (reason = workInProgressSuspendedReason),\n (workInProgressSuspendedReason = 0),\n (workInProgressThrownValue = null),\n throwAndUnwindWorkLoop(root, unitOfWork, thrownValue, reason);\n }\n }\n workLoopSync();\n exitStatus = workInProgressRootExitStatus;\n break;\n } catch (thrownValue$177) {\n handleThrow(root, thrownValue$177);\n }\n while (1);\n lanes && root.shellSuspendCounter++;\n lastContextDependency = currentlyRenderingFiber$1 = null;\n executionContext = prevExecutionContext;\n ReactSharedInternals.H = prevDispatcher;\n ReactSharedInternals.A = prevAsyncDispatcher;\n null === workInProgress &&\n ((workInProgressRoot = null),\n (workInProgressRootRenderLanes = 0),\n finishQueueingConcurrentUpdates());\n return exitStatus;\n}\nfunction workLoopSync() {\n for (; null !== workInProgress; ) performUnitOfWork(workInProgress);\n}\nfunction renderRootConcurrent(root, lanes) {\n var prevExecutionContext = executionContext;\n executionContext |= 2;\n var prevDispatcher = pushDispatcher(),\n prevAsyncDispatcher = pushAsyncDispatcher();\n workInProgressRoot !== root || workInProgressRootRenderLanes !== lanes\n ? ((workInProgressTransitions = null),\n (workInProgressRootRenderTargetTime = now() + 500),\n prepareFreshStack(root, lanes))\n : (workInProgressRootIsPrerendering = checkIfRootIsPrerendering(\n root,\n lanes\n ));\n a: do\n try {\n if (0 !== workInProgressSuspendedReason && null !== workInProgress) {\n lanes = workInProgress;\n var thrownValue = workInProgressThrownValue;\n b: switch (workInProgressSuspendedReason) {\n case 1:\n workInProgressSuspendedReason = 0;\n workInProgressThrownValue = null;\n throwAndUnwindWorkLoop(root, lanes, thrownValue, 1);\n break;\n case 2:\n case 9:\n if (isThenableResolved(thrownValue)) {\n workInProgressSuspendedReason = 0;\n workInProgressThrownValue = null;\n replaySuspendedUnitOfWork(lanes);\n break;\n }\n lanes = function () {\n (2 !== workInProgressSuspendedReason &&\n 9 !== workInProgressSuspendedReason) ||\n workInProgressRoot !== root ||\n (workInProgressSuspendedReason = 7);\n ensureRootIsScheduled(root);\n };\n thrownValue.then(lanes, lanes);\n break a;\n case 3:\n workInProgressSuspendedReason = 7;\n break a;\n case 4:\n workInProgressSuspendedReason = 5;\n break a;\n case 7:\n isThenableResolved(thrownValue)\n ? ((workInProgressSuspendedReason = 0),\n (workInProgressThrownValue = null),\n replaySuspendedUnitOfWork(lanes))\n : ((workInProgressSuspendedReason = 0),\n (workInProgressThrownValue = null),\n throwAndUnwindWorkLoop(root, lanes, thrownValue, 7));\n break;\n case 5:\n var resource = null;\n switch (workInProgress.tag) {\n case 26:\n resource = workInProgress.memoizedState;\n case 5:\n case 27:\n var hostFiber = workInProgress;\n if (\n resource\n ? preloadResource(resource)\n : hostFiber.stateNode.complete\n ) {\n workInProgressSuspendedReason = 0;\n workInProgressThrownValue = null;\n var sibling = hostFiber.sibling;\n if (null !== sibling) workInProgress = sibling;\n else {\n var returnFiber = hostFiber.return;\n null !== returnFiber\n ? ((workInProgress = returnFiber),\n completeUnitOfWork(returnFiber))\n : (workInProgress = null);\n }\n break b;\n }\n }\n workInProgressSuspendedReason = 0;\n workInProgressThrownValue = null;\n throwAndUnwindWorkLoop(root, lanes, thrownValue, 5);\n break;\n case 6:\n workInProgressSuspendedReason = 0;\n workInProgressThrownValue = null;\n throwAndUnwindWorkLoop(root, lanes, thrownValue, 6);\n break;\n case 8:\n resetWorkInProgressStack();\n workInProgressRootExitStatus = 6;\n break a;\n default:\n throw Error(formatProdErrorMessage(462));\n }\n }\n workLoopConcurrentByScheduler();\n break;\n } catch (thrownValue$179) {\n handleThrow(root, thrownValue$179);\n }\n while (1);\n lastContextDependency = currentlyRenderingFiber$1 = null;\n ReactSharedInternals.H = prevDispatcher;\n ReactSharedInternals.A = prevAsyncDispatcher;\n executionContext = prevExecutionContext;\n if (null !== workInProgress) return 0;\n workInProgressRoot = null;\n workInProgressRootRenderLanes = 0;\n finishQueueingConcurrentUpdates();\n return workInProgressRootExitStatus;\n}\nfunction workLoopConcurrentByScheduler() {\n for (; null !== workInProgress && !shouldYield(); )\n performUnitOfWork(workInProgress);\n}\nfunction performUnitOfWork(unitOfWork) {\n var next = beginWork(unitOfWork.alternate, unitOfWork, entangledRenderLanes);\n unitOfWork.memoizedProps = unitOfWork.pendingProps;\n null === next ? completeUnitOfWork(unitOfWork) : (workInProgress = next);\n}\nfunction replaySuspendedUnitOfWork(unitOfWork) {\n var next = unitOfWork;\n var current = next.alternate;\n switch (next.tag) {\n case 15:\n case 0:\n next = replayFunctionComponent(\n current,\n next,\n next.pendingProps,\n next.type,\n void 0,\n workInProgressRootRenderLanes\n );\n break;\n case 11:\n next = replayFunctionComponent(\n current,\n next,\n next.pendingProps,\n next.type.render,\n next.ref,\n workInProgressRootRenderLanes\n );\n break;\n case 5:\n resetHooksOnUnwind(next);\n default:\n unwindInterruptedWork(current, next),\n (next = workInProgress =\n resetWorkInProgress(next, entangledRenderLanes)),\n (next = beginWork(current, next, entangledRenderLanes));\n }\n unitOfWork.memoizedProps = unitOfWork.pendingProps;\n null === next ? completeUnitOfWork(unitOfWork) : (workInProgress = next);\n}\nfunction throwAndUnwindWorkLoop(\n root,\n unitOfWork,\n thrownValue,\n suspendedReason\n) {\n lastContextDependency = currentlyRenderingFiber$1 = null;\n resetHooksOnUnwind(unitOfWork);\n thenableState$1 = null;\n thenableIndexCounter$1 = 0;\n var returnFiber = unitOfWork.return;\n try {\n if (\n throwException(\n root,\n returnFiber,\n unitOfWork,\n thrownValue,\n workInProgressRootRenderLanes\n )\n ) {\n workInProgressRootExitStatus = 1;\n logUncaughtError(\n root,\n createCapturedValueAtFiber(thrownValue, root.current)\n );\n workInProgress = null;\n return;\n }\n } catch (error) {\n if (null !== returnFiber) throw ((workInProgress = returnFiber), error);\n workInProgressRootExitStatus = 1;\n logUncaughtError(\n root,\n createCapturedValueAtFiber(thrownValue, root.current)\n );\n workInProgress = null;\n return;\n }\n if (unitOfWork.flags & 32768) {\n if (isHydrating || 1 === suspendedReason) root = !0;\n else if (\n workInProgressRootIsPrerendering ||\n 0 !== (workInProgressRootRenderLanes & 536870912)\n )\n root = !1;\n else if (\n ((workInProgressRootDidSkipSuspendedSiblings = root = !0),\n 2 === suspendedReason ||\n 9 === suspendedReason ||\n 3 === suspendedReason ||\n 6 === suspendedReason)\n )\n (suspendedReason = suspenseHandlerStackCursor.current),\n null !== suspendedReason &&\n 13 === suspendedReason.tag &&\n (suspendedReason.flags |= 16384);\n unwindUnitOfWork(unitOfWork, root);\n } else completeUnitOfWork(unitOfWork);\n}\nfunction completeUnitOfWork(unitOfWork) {\n var completedWork = unitOfWork;\n do {\n if (0 !== (completedWork.flags & 32768)) {\n unwindUnitOfWork(\n completedWork,\n workInProgressRootDidSkipSuspendedSiblings\n );\n return;\n }\n unitOfWork = completedWork.return;\n var next = completeWork(\n completedWork.alternate,\n completedWork,\n entangledRenderLanes\n );\n if (null !== next) {\n workInProgress = next;\n return;\n }\n completedWork = completedWork.sibling;\n if (null !== completedWork) {\n workInProgress = completedWork;\n return;\n }\n workInProgress = completedWork = unitOfWork;\n } while (null !== completedWork);\n 0 === workInProgressRootExitStatus && (workInProgressRootExitStatus = 5);\n}\nfunction unwindUnitOfWork(unitOfWork, skipSiblings) {\n do {\n var next = unwindWork(unitOfWork.alternate, unitOfWork);\n if (null !== next) {\n next.flags &= 32767;\n workInProgress = next;\n return;\n }\n next = unitOfWork.return;\n null !== next &&\n ((next.flags |= 32768), (next.subtreeFlags = 0), (next.deletions = null));\n if (\n !skipSiblings &&\n ((unitOfWork = unitOfWork.sibling), null !== unitOfWork)\n ) {\n workInProgress = unitOfWork;\n return;\n }\n workInProgress = unitOfWork = next;\n } while (null !== unitOfWork);\n workInProgressRootExitStatus = 6;\n workInProgress = null;\n}\nfunction commitRoot(\n root,\n finishedWork,\n lanes,\n recoverableErrors,\n transitions,\n didIncludeRenderPhaseUpdate,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes,\n exitStatus,\n suspendedState\n) {\n root.cancelPendingCommit = null;\n do flushPendingEffects();\n while (0 !== pendingEffectsStatus);\n if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(327));\n if (null !== finishedWork) {\n if (finishedWork === root.current) throw Error(formatProdErrorMessage(177));\n didIncludeRenderPhaseUpdate = finishedWork.lanes | finishedWork.childLanes;\n didIncludeRenderPhaseUpdate |= concurrentlyUpdatedLanes;\n markRootFinished(\n root,\n lanes,\n didIncludeRenderPhaseUpdate,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes\n );\n root === workInProgressRoot &&\n ((workInProgress = workInProgressRoot = null),\n (workInProgressRootRenderLanes = 0));\n pendingFinishedWork = finishedWork;\n pendingEffectsRoot = root;\n pendingEffectsLanes = lanes;\n pendingEffectsRemainingLanes = didIncludeRenderPhaseUpdate;\n pendingPassiveTransitions = transitions;\n pendingRecoverableErrors = recoverableErrors;\n pendingViewTransitionEvents = null;\n (lanes & 335544064) === lanes\n ? ((pendingTransitionTypes = claimQueuedTransitionTypes(root)),\n (recoverableErrors = 10262))\n : ((pendingTransitionTypes = null), (recoverableErrors = 10256));\n 0 !== (finishedWork.subtreeFlags & recoverableErrors) ||\n 0 !== (finishedWork.flags & recoverableErrors)\n ? ((root.callbackNode = null),\n (root.callbackPriority = 0),\n scheduleCallback$1(NormalPriority$1, function () {\n flushPassiveEffects();\n return null;\n }))\n : ((root.callbackNode = null), (root.callbackPriority = 0));\n shouldStartViewTransition = !1;\n recoverableErrors = 0 !== (finishedWork.flags & 13878);\n if (0 !== (finishedWork.subtreeFlags & 13878) || recoverableErrors) {\n recoverableErrors = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n transitions = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p = 2;\n spawnedLane = executionContext;\n executionContext |= 4;\n try {\n commitBeforeMutationEffects(root, finishedWork, lanes);\n } finally {\n (executionContext = spawnedLane),\n (ReactDOMSharedInternals.p = transitions),\n (ReactSharedInternals.T = recoverableErrors);\n }\n }\n finishedWork = shouldStartViewTransition;\n pendingEffectsStatus = 1;\n finishedWork\n ? (pendingViewTransition = startViewTransition(\n suspendedState,\n root.containerInfo,\n pendingTransitionTypes,\n flushMutationEffects,\n flushLayoutEffects,\n flushAfterMutationEffects,\n flushSpawnedWork,\n flushPassiveEffects,\n reportViewTransitionError,\n null,\n null\n ))\n : (flushMutationEffects(), flushLayoutEffects(), flushSpawnedWork());\n }\n}\nfunction reportViewTransitionError(error) {\n if (0 !== pendingEffectsStatus) {\n var onRecoverableError = pendingEffectsRoot.onRecoverableError;\n onRecoverableError(error, { componentStack: null });\n }\n}\nfunction flushAfterMutationEffects() {\n 3 === pendingEffectsStatus &&\n ((pendingEffectsStatus = 0),\n commitAfterMutationEffectsOnFiber(pendingFinishedWork, pendingEffectsRoot),\n (pendingEffectsStatus = 4));\n}\nfunction flushMutationEffects() {\n if (1 === pendingEffectsStatus) {\n pendingEffectsStatus = 0;\n var root = pendingEffectsRoot,\n finishedWork = pendingFinishedWork,\n lanes = pendingEffectsLanes,\n rootMutationHasEffect = 0 !== (finishedWork.flags & 13878);\n if (0 !== (finishedWork.subtreeFlags & 13878) || rootMutationHasEffect) {\n rootMutationHasEffect = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n var previousPriority = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p = 2;\n var prevExecutionContext = executionContext;\n executionContext |= 4;\n try {\n inUpdateViewTransition = rootViewTransitionAffected = !1;\n commitMutationEffectsOnFiber(finishedWork, root, lanes);\n lanes = selectionInformation;\n var curFocusedElem = getActiveElementDeep(root.containerInfo),\n priorFocusedElem = lanes.focusedElem,\n priorSelectionRange = lanes.selectionRange;\n if (\n curFocusedElem !== priorFocusedElem &&\n priorFocusedElem &&\n priorFocusedElem.ownerDocument &&\n containsNode(\n priorFocusedElem.ownerDocument.documentElement,\n priorFocusedElem\n )\n ) {\n if (\n null !== priorSelectionRange &&\n hasSelectionCapabilities(priorFocusedElem)\n ) {\n var start = priorSelectionRange.start,\n end = priorSelectionRange.end;\n void 0 === end && (end = start);\n if (\"selectionStart\" in priorFocusedElem)\n (priorFocusedElem.selectionStart = start),\n (priorFocusedElem.selectionEnd = Math.min(\n end,\n priorFocusedElem.value.length\n ));\n else {\n var doc = priorFocusedElem.ownerDocument || document,\n win = (doc && doc.defaultView) || window;\n if (win.getSelection) {\n var selection = win.getSelection(),\n length = priorFocusedElem.textContent.length,\n start$jscomp$0 = Math.min(priorSelectionRange.start, length),\n end$jscomp$0 =\n void 0 === priorSelectionRange.end\n ? start$jscomp$0\n : Math.min(priorSelectionRange.end, length);\n !selection.extend &&\n start$jscomp$0 > end$jscomp$0 &&\n ((curFocusedElem = end$jscomp$0),\n (end$jscomp$0 = start$jscomp$0),\n (start$jscomp$0 = curFocusedElem));\n var startMarker = getNodeForCharacterOffset(\n priorFocusedElem,\n start$jscomp$0\n ),\n endMarker = getNodeForCharacterOffset(\n priorFocusedElem,\n end$jscomp$0\n );\n if (\n startMarker &&\n endMarker &&\n (1 !== selection.rangeCount ||\n selection.anchorNode !== startMarker.node ||\n selection.anchorOffset !== startMarker.offset ||\n selection.focusNode !== endMarker.node ||\n selection.focusOffset !== endMarker.offset)\n ) {\n var range = doc.createRange();\n range.setStart(startMarker.node, startMarker.offset);\n selection.removeAllRanges();\n start$jscomp$0 > end$jscomp$0\n ? (selection.addRange(range),\n selection.extend(endMarker.node, endMarker.offset))\n : (range.setEnd(endMarker.node, endMarker.offset),\n selection.addRange(range));\n }\n }\n }\n }\n doc = [];\n for (\n selection = priorFocusedElem;\n (selection = selection.parentNode);\n\n )\n 1 === selection.nodeType &&\n doc.push({\n element: selection,\n left: selection.scrollLeft,\n top: selection.scrollTop\n });\n \"function\" === typeof priorFocusedElem.focus &&\n priorFocusedElem.focus();\n for (\n priorFocusedElem = 0;\n priorFocusedElem < doc.length;\n priorFocusedElem++\n ) {\n var info = doc[priorFocusedElem];\n info.element.scrollLeft = info.left;\n info.element.scrollTop = info.top;\n }\n }\n _enabled = !!eventsEnabled;\n selectionInformation = eventsEnabled = null;\n } finally {\n (executionContext = prevExecutionContext),\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = rootMutationHasEffect);\n }\n }\n root.current = finishedWork;\n pendingEffectsStatus = 2;\n }\n}\nfunction flushLayoutEffects() {\n if (2 === pendingEffectsStatus) {\n pendingEffectsStatus = 0;\n var root = pendingEffectsRoot,\n finishedWork = pendingFinishedWork,\n rootHasLayoutEffect = 0 !== (finishedWork.flags & 8772);\n if (0 !== (finishedWork.subtreeFlags & 8772) || rootHasLayoutEffect) {\n rootHasLayoutEffect = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n var previousPriority = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p = 2;\n var prevExecutionContext = executionContext;\n executionContext |= 4;\n try {\n commitLayoutEffectOnFiber(root, finishedWork.alternate, finishedWork);\n } finally {\n (executionContext = prevExecutionContext),\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = rootHasLayoutEffect);\n }\n }\n pendingEffectsStatus = 3;\n }\n}\nfunction flushSpawnedWork() {\n if (4 === pendingEffectsStatus || 3 === pendingEffectsStatus) {\n pendingEffectsStatus = 0;\n pendingViewTransition = null;\n requestPaint();\n var root = pendingEffectsRoot,\n finishedWork = pendingFinishedWork,\n lanes = pendingEffectsLanes,\n recoverableErrors = pendingRecoverableErrors,\n passiveSubtreeMask = (lanes & 335544064) === lanes ? 10262 : 10256;\n 0 !== (finishedWork.subtreeFlags & passiveSubtreeMask) ||\n 0 !== (finishedWork.flags & passiveSubtreeMask)\n ? (pendingEffectsStatus = 5)\n : ((pendingEffectsStatus = 0),\n (pendingFinishedWork = pendingEffectsRoot = null),\n releaseRootPooledCache(root, root.pendingLanes));\n passiveSubtreeMask = root.pendingLanes;\n 0 === passiveSubtreeMask && (legacyErrorBoundariesThatAlreadyFailed = null);\n lanesToEventPriority(lanes);\n finishedWork = finishedWork.stateNode;\n if (injectedHook && \"function\" === typeof injectedHook.onCommitFiberRoot)\n try {\n injectedHook.onCommitFiberRoot(\n rendererID,\n finishedWork,\n void 0,\n 128 === (finishedWork.current.flags & 128)\n );\n } catch (err) {}\n if (null !== recoverableErrors) {\n finishedWork = ReactSharedInternals.T;\n passiveSubtreeMask = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p = 2;\n ReactSharedInternals.T = null;\n try {\n for (\n var onRecoverableError = root.onRecoverableError, i = 0;\n i < recoverableErrors.length;\n i++\n ) {\n var recoverableError = recoverableErrors[i];\n onRecoverableError(recoverableError.value, {\n componentStack: recoverableError.stack\n });\n }\n } finally {\n (ReactSharedInternals.T = finishedWork),\n (ReactDOMSharedInternals.p = passiveSubtreeMask);\n }\n }\n recoverableErrors = pendingViewTransitionEvents;\n onRecoverableError = pendingTransitionTypes;\n pendingTransitionTypes = null;\n if (null !== recoverableErrors)\n for (\n pendingViewTransitionEvents = null,\n null === onRecoverableError && (onRecoverableError = []),\n recoverableError = 0;\n recoverableError < recoverableErrors.length;\n recoverableError++\n )\n (0, recoverableErrors[recoverableError])(onRecoverableError);\n 0 !== (pendingEffectsLanes & 3) && flushPendingEffects();\n ensureRootIsScheduled(root);\n passiveSubtreeMask = root.pendingLanes;\n 0 !== (lanes & 261930) && 0 !== (passiveSubtreeMask & 42)\n ? root === rootWithNestedUpdates\n ? nestedUpdateCount++\n : ((nestedUpdateCount = 0), (rootWithNestedUpdates = root))\n : (nestedUpdateCount = 0);\n flushSyncWorkAcrossRoots_impl(0, !1);\n }\n}\nfunction releaseRootPooledCache(root, remainingLanes) {\n 0 === (root.pooledCacheLanes &= remainingLanes) &&\n ((remainingLanes = root.pooledCache),\n null != remainingLanes &&\n ((root.pooledCache = null), releaseCache(remainingLanes)));\n}\nfunction flushPendingEffects() {\n null !== pendingViewTransition &&\n (pendingViewTransition.skipTransition(), (pendingViewTransition = null));\n flushMutationEffects();\n flushLayoutEffects();\n flushSpawnedWork();\n return flushPassiveEffects();\n}\nfunction flushPassiveEffects() {\n if (5 !== pendingEffectsStatus) return !1;\n var root = pendingEffectsRoot,\n remainingLanes = pendingEffectsRemainingLanes;\n pendingEffectsRemainingLanes = 0;\n var renderPriority = lanesToEventPriority(pendingEffectsLanes),\n prevTransition = ReactSharedInternals.T,\n previousPriority = ReactDOMSharedInternals.p;\n try {\n ReactDOMSharedInternals.p = 32 > renderPriority ? 32 : renderPriority;\n ReactSharedInternals.T = null;\n renderPriority = pendingPassiveTransitions;\n pendingPassiveTransitions = null;\n var root$jscomp$0 = pendingEffectsRoot,\n lanes = pendingEffectsLanes;\n pendingEffectsStatus = 0;\n pendingFinishedWork = pendingEffectsRoot = null;\n pendingEffectsLanes = 0;\n if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(331));\n var prevExecutionContext = executionContext;\n executionContext |= 4;\n commitPassiveUnmountOnFiber(root$jscomp$0.current);\n commitPassiveMountOnFiber(\n root$jscomp$0,\n root$jscomp$0.current,\n lanes,\n renderPriority\n );\n executionContext = prevExecutionContext;\n flushSyncWorkAcrossRoots_impl(0, !1);\n if (\n injectedHook &&\n \"function\" === typeof injectedHook.onPostCommitFiberRoot\n )\n try {\n injectedHook.onPostCommitFiberRoot(rendererID, root$jscomp$0);\n } catch (err) {}\n return !0;\n } finally {\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = prevTransition),\n releaseRootPooledCache(root, remainingLanes);\n }\n}\nfunction captureCommitPhaseErrorOnRoot(rootFiber, sourceFiber, error) {\n sourceFiber = createCapturedValueAtFiber(error, sourceFiber);\n sourceFiber = createRootErrorUpdate(rootFiber.stateNode, sourceFiber, 2);\n rootFiber = enqueueUpdate(rootFiber, sourceFiber, 2);\n null !== rootFiber &&\n (markRootUpdated$1(rootFiber, 2), ensureRootIsScheduled(rootFiber));\n}\nfunction captureCommitPhaseError(sourceFiber, nearestMountedAncestor, error) {\n if (3 === sourceFiber.tag)\n captureCommitPhaseErrorOnRoot(sourceFiber, sourceFiber, error);\n else\n for (; null !== nearestMountedAncestor; ) {\n if (3 === nearestMountedAncestor.tag) {\n captureCommitPhaseErrorOnRoot(\n nearestMountedAncestor,\n sourceFiber,\n error\n );\n break;\n } else if (1 === nearestMountedAncestor.tag) {\n var instance = nearestMountedAncestor.stateNode;\n if (\n \"function\" ===\n typeof nearestMountedAncestor.type.getDerivedStateFromError ||\n (\"function\" === typeof instance.componentDidCatch &&\n (null === legacyErrorBoundariesThatAlreadyFailed ||\n !legacyErrorBoundariesThatAlreadyFailed.has(instance)))\n ) {\n sourceFiber = createCapturedValueAtFiber(error, sourceFiber);\n error = createClassErrorUpdate(2);\n instance = enqueueUpdate(nearestMountedAncestor, error, 2);\n null !== instance &&\n (initializeClassErrorUpdate(\n error,\n instance,\n nearestMountedAncestor,\n sourceFiber\n ),\n markRootUpdated$1(instance, 2),\n ensureRootIsScheduled(instance));\n break;\n }\n }\n nearestMountedAncestor = nearestMountedAncestor.return;\n }\n}\nfunction attachPingListener(root, wakeable, lanes) {\n var pingCache = root.pingCache;\n if (null === pingCache) {\n pingCache = root.pingCache = new PossiblyWeakMap();\n var threadIDs = new Set();\n pingCache.set(wakeable, threadIDs);\n } else\n (threadIDs = pingCache.get(wakeable)),\n void 0 === threadIDs &&\n ((threadIDs = new Set()), pingCache.set(wakeable, threadIDs));\n threadIDs.has(lanes) ||\n ((workInProgressRootDidAttachPingListener = !0),\n threadIDs.add(lanes),\n (root = pingSuspendedRoot.bind(null, root, wakeable, lanes)),\n wakeable.then(root, root));\n}\nfunction pingSuspendedRoot(root, wakeable, pingedLanes) {\n var pingCache = root.pingCache;\n null !== pingCache && pingCache.delete(wakeable);\n root.pingedLanes |= root.suspendedLanes & pingedLanes;\n root.warmLanes &= ~pingedLanes;\n workInProgressRoot === root &&\n (workInProgressRootRenderLanes & pingedLanes) === pingedLanes &&\n (4 === workInProgressRootExitStatus ||\n (3 === workInProgressRootExitStatus &&\n (workInProgressRootRenderLanes & 62914560) ===\n workInProgressRootRenderLanes &&\n 300 > now() - globalMostRecentFallbackTime)\n ? 0 === (executionContext & 2) && prepareFreshStack(root, 0)\n : (workInProgressRootPingedLanes |= pingedLanes),\n workInProgressSuspendedRetryLanes === workInProgressRootRenderLanes &&\n (workInProgressSuspendedRetryLanes = 0));\n ensureRootIsScheduled(root);\n}\nfunction retryTimedOutBoundary(boundaryFiber, retryLane) {\n 0 === retryLane && (retryLane = claimNextRetryLane());\n boundaryFiber = enqueueConcurrentRenderForLane(boundaryFiber, retryLane);\n null !== boundaryFiber &&\n (markRootUpdated$1(boundaryFiber, retryLane),\n ensureRootIsScheduled(boundaryFiber));\n}\nfunction retryDehydratedSuspenseBoundary(boundaryFiber) {\n var suspenseState = boundaryFiber.memoizedState,\n retryLane = 0;\n null !== suspenseState && (retryLane = suspenseState.retryLane);\n retryTimedOutBoundary(boundaryFiber, retryLane);\n}\nfunction resolveRetryWakeable(boundaryFiber, wakeable) {\n var retryLane = 0;\n switch (boundaryFiber.tag) {\n case 31:\n case 13:\n var retryCache = boundaryFiber.stateNode;\n var suspenseState = boundaryFiber.memoizedState;\n null !== suspenseState && (retryLane = suspenseState.retryLane);\n break;\n case 19:\n retryCache = boundaryFiber.stateNode;\n break;\n case 22:\n retryCache = boundaryFiber.stateNode._retryCache;\n break;\n default:\n throw Error(formatProdErrorMessage(314));\n }\n null !== retryCache && retryCache.delete(wakeable);\n retryTimedOutBoundary(boundaryFiber, retryLane);\n}\nfunction scheduleCallback$1(priorityLevel, callback) {\n return scheduleCallback$3(priorityLevel, callback);\n}\nvar firstScheduledRoot = null,\n lastScheduledRoot = null,\n didScheduleMicrotask = !1,\n mightHavePendingSyncWork = !1,\n isFlushingWork = !1,\n currentEventTransitionLane = 0;\nfunction ensureRootIsScheduled(root) {\n root !== lastScheduledRoot &&\n null === root.next &&\n (null === lastScheduledRoot\n ? (firstScheduledRoot = lastScheduledRoot = root)\n : (lastScheduledRoot = lastScheduledRoot.next = root));\n mightHavePendingSyncWork = !0;\n didScheduleMicrotask ||\n ((didScheduleMicrotask = !0), scheduleImmediateRootScheduleTask());\n}\nfunction flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {\n if (!isFlushingWork && mightHavePendingSyncWork) {\n isFlushingWork = !0;\n do {\n var didPerformSomeWork = !1;\n for (var root$183 = firstScheduledRoot; null !== root$183; ) {\n if (!onlyLegacy)\n if (0 !== syncTransitionLanes) {\n var pendingLanes = root$183.pendingLanes;\n if (0 === pendingLanes) var JSCompiler_inline_result = 0;\n else {\n var suspendedLanes = root$183.suspendedLanes,\n pingedLanes = root$183.pingedLanes;\n JSCompiler_inline_result =\n (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;\n JSCompiler_inline_result &=\n pendingLanes & ~(suspendedLanes & ~pingedLanes);\n JSCompiler_inline_result =\n JSCompiler_inline_result & 201326741\n ? (JSCompiler_inline_result & 201326741) | 1\n : JSCompiler_inline_result\n ? JSCompiler_inline_result | 2\n : 0;\n }\n 0 !== JSCompiler_inline_result &&\n ((didPerformSomeWork = !0),\n performSyncWorkOnRoot(root$183, JSCompiler_inline_result));\n } else\n (JSCompiler_inline_result = workInProgressRootRenderLanes),\n (JSCompiler_inline_result = getNextLanes(\n root$183,\n root$183 === workInProgressRoot ? JSCompiler_inline_result : 0,\n null !== root$183.cancelPendingCommit ||\n -1 !== root$183.timeoutHandle\n )),\n 0 === (JSCompiler_inline_result & 3) ||\n checkIfRootIsPrerendering(root$183, JSCompiler_inline_result) ||\n ((didPerformSomeWork = !0),\n performSyncWorkOnRoot(root$183, JSCompiler_inline_result));\n root$183 = root$183.next;\n }\n } while (didPerformSomeWork);\n isFlushingWork = !1;\n }\n}\nfunction processRootScheduleInImmediateTask() {\n processRootScheduleInMicrotask();\n}\nfunction processRootScheduleInMicrotask() {\n mightHavePendingSyncWork = didScheduleMicrotask = !1;\n var syncTransitionLanes = 0;\n 0 !== currentEventTransitionLane &&\n shouldAttemptEagerTransition() &&\n (syncTransitionLanes = currentEventTransitionLane);\n for (\n var currentTime = now(), prev = null, root = firstScheduledRoot;\n null !== root;\n\n ) {\n var next = root.next,\n nextLanes = scheduleTaskForRootDuringMicrotask(root, currentTime);\n if (0 === nextLanes)\n (root.next = null),\n null === prev ? (firstScheduledRoot = next) : (prev.next = next),\n null === next && (lastScheduledRoot = prev);\n else if (\n ((prev = root), 0 !== syncTransitionLanes || 0 !== (nextLanes & 3))\n )\n mightHavePendingSyncWork = !0;\n root = next;\n }\n (0 !== pendingEffectsStatus && 5 !== pendingEffectsStatus) ||\n flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);\n 0 !== currentEventTransitionLane && (currentEventTransitionLane = 0);\n}\nfunction scheduleTaskForRootDuringMicrotask(root, currentTime) {\n for (\n var suspendedLanes = root.suspendedLanes,\n pingedLanes = root.pingedLanes,\n expirationTimes = root.expirationTimes,\n lanes = root.pendingLanes & -62914561;\n 0 < lanes;\n\n ) {\n var index$5 = 31 - clz32(lanes),\n lane = 1 << index$5,\n expirationTime = expirationTimes[index$5];\n if (-1 === expirationTime) {\n if (0 === (lane & suspendedLanes) || 0 !== (lane & pingedLanes))\n expirationTimes[index$5] = computeExpirationTime(lane, currentTime);\n } else expirationTime <= currentTime && (root.expiredLanes |= lane);\n lanes &= ~lane;\n }\n currentTime = workInProgressRoot;\n suspendedLanes = workInProgressRootRenderLanes;\n suspendedLanes = getNextLanes(\n root,\n root === currentTime ? suspendedLanes : 0,\n null !== root.cancelPendingCommit || -1 !== root.timeoutHandle\n );\n pingedLanes = root.callbackNode;\n if (\n 0 === suspendedLanes ||\n (root === currentTime &&\n (2 === workInProgressSuspendedReason ||\n 9 === workInProgressSuspendedReason)) ||\n null !== root.cancelPendingCommit\n )\n return (\n null !== pingedLanes &&\n null !== pingedLanes &&\n cancelCallback$1(pingedLanes),\n (root.callbackNode = null),\n (root.callbackPriority = 0)\n );\n if (\n 0 === (suspendedLanes & 3) ||\n checkIfRootIsPrerendering(root, suspendedLanes)\n ) {\n currentTime = suspendedLanes & -suspendedLanes;\n if (currentTime === root.callbackPriority) return currentTime;\n null !== pingedLanes && cancelCallback$1(pingedLanes);\n switch (lanesToEventPriority(suspendedLanes)) {\n case 2:\n case 8:\n suspendedLanes = UserBlockingPriority;\n break;\n case 32:\n suspendedLanes = NormalPriority$1;\n break;\n case 268435456:\n suspendedLanes = IdlePriority;\n break;\n default:\n suspendedLanes = NormalPriority$1;\n }\n pingedLanes = performWorkOnRootViaSchedulerTask.bind(null, root);\n suspendedLanes = scheduleCallback$3(suspendedLanes, pingedLanes);\n root.callbackPriority = currentTime;\n root.callbackNode = suspendedLanes;\n return currentTime;\n }\n null !== pingedLanes && null !== pingedLanes && cancelCallback$1(pingedLanes);\n root.callbackPriority = 2;\n root.callbackNode = null;\n return 2;\n}\nfunction performWorkOnRootViaSchedulerTask(root, didTimeout) {\n if (0 !== pendingEffectsStatus && 5 !== pendingEffectsStatus)\n return (root.callbackNode = null), (root.callbackPriority = 0), null;\n var originalCallbackNode = root.callbackNode;\n if (flushPendingEffects() && root.callbackNode !== originalCallbackNode)\n return null;\n var workInProgressRootRenderLanes$jscomp$0 = workInProgressRootRenderLanes;\n workInProgressRootRenderLanes$jscomp$0 = getNextLanes(\n root,\n root === workInProgressRoot ? workInProgressRootRenderLanes$jscomp$0 : 0,\n null !== root.cancelPendingCommit || -1 !== root.timeoutHandle\n );\n if (0 === workInProgressRootRenderLanes$jscomp$0) return null;\n performWorkOnRoot(root, workInProgressRootRenderLanes$jscomp$0, didTimeout);\n scheduleTaskForRootDuringMicrotask(root, now());\n return null != root.callbackNode && root.callbackNode === originalCallbackNode\n ? performWorkOnRootViaSchedulerTask.bind(null, root)\n : null;\n}\nfunction performSyncWorkOnRoot(root, lanes) {\n if (flushPendingEffects()) return null;\n performWorkOnRoot(root, lanes, !0);\n}\nfunction scheduleImmediateRootScheduleTask() {\n scheduleMicrotask(function () {\n 0 !== (executionContext & 6)\n ? scheduleCallback$3(\n ImmediatePriority,\n processRootScheduleInImmediateTask\n )\n : processRootScheduleInMicrotask();\n });\n}\nfunction requestTransitionLane() {\n if (0 === currentEventTransitionLane) {\n var actionScopeLane = currentEntangledLane;\n 0 === actionScopeLane &&\n ((actionScopeLane = nextTransitionUpdateLane),\n (nextTransitionUpdateLane <<= 1),\n 0 === (nextTransitionUpdateLane & 261888) &&\n (nextTransitionUpdateLane = 256));\n currentEventTransitionLane = actionScopeLane;\n }\n return currentEventTransitionLane;\n}\nfunction coerceFormActionProp(actionProp) {\n return null == actionProp ||\n \"symbol\" === typeof actionProp ||\n \"boolean\" === typeof actionProp\n ? null\n : \"function\" === typeof actionProp\n ? actionProp\n : sanitizeURL(\"\" + actionProp);\n}\nfunction createFormDataWithSubmitter(form, submitter) {\n var temp = submitter.ownerDocument.createElement(\"input\");\n temp.name = submitter.name;\n temp.value = submitter.value;\n form.id && temp.setAttribute(\"form\", form.id);\n submitter.parentNode.insertBefore(temp, submitter);\n form = new FormData(form);\n temp.parentNode.removeChild(temp);\n return form;\n}\nfunction extractEvents$1(\n dispatchQueue,\n domEventName,\n maybeTargetInst,\n nativeEvent,\n nativeEventTarget\n) {\n if (\n \"submit\" === domEventName &&\n maybeTargetInst &&\n maybeTargetInst.stateNode === nativeEventTarget\n ) {\n var action = coerceFormActionProp(\n (nativeEventTarget[internalPropsKey] || null).action\n ),\n submitter = nativeEvent.submitter;\n submitter &&\n ((domEventName = (domEventName = submitter[internalPropsKey] || null)\n ? coerceFormActionProp(domEventName.formAction)\n : submitter.getAttribute(\"formAction\")),\n null !== domEventName && ((action = domEventName), (submitter = null)));\n var event = new SyntheticEvent(\n \"action\",\n \"action\",\n null,\n nativeEvent,\n nativeEventTarget\n );\n dispatchQueue.push({\n event: event,\n listeners: [\n {\n instance: null,\n listener: function () {\n if (nativeEvent.defaultPrevented) {\n if (0 !== currentEventTransitionLane) {\n var formData = submitter\n ? createFormDataWithSubmitter(nativeEventTarget, submitter)\n : new FormData(nativeEventTarget);\n startHostTransition(\n maybeTargetInst,\n {\n pending: !0,\n data: formData,\n method: nativeEventTarget.method,\n action: action\n },\n null,\n formData\n );\n }\n } else\n \"function\" === typeof action &&\n (event.preventDefault(),\n (formData = submitter\n ? createFormDataWithSubmitter(nativeEventTarget, submitter)\n : new FormData(nativeEventTarget)),\n startHostTransition(\n maybeTargetInst,\n {\n pending: !0,\n data: formData,\n method: nativeEventTarget.method,\n action: action\n },\n action,\n formData\n ));\n },\n currentTarget: nativeEventTarget\n }\n ]\n });\n }\n}\nfor (\n var i$jscomp$inline_1691 = 0;\n i$jscomp$inline_1691 < simpleEventPluginEvents.length;\n i$jscomp$inline_1691++\n) {\n var eventName$jscomp$inline_1692 =\n simpleEventPluginEvents[i$jscomp$inline_1691],\n domEventName$jscomp$inline_1693 =\n eventName$jscomp$inline_1692.toLowerCase(),\n capitalizedEvent$jscomp$inline_1694 =\n eventName$jscomp$inline_1692[0].toUpperCase() +\n eventName$jscomp$inline_1692.slice(1);\n registerSimpleEvent(\n domEventName$jscomp$inline_1693,\n \"on\" + capitalizedEvent$jscomp$inline_1694\n );\n}\nregisterSimpleEvent(ANIMATION_END, \"onAnimationEnd\");\nregisterSimpleEvent(ANIMATION_ITERATION, \"onAnimationIteration\");\nregisterSimpleEvent(ANIMATION_START, \"onAnimationStart\");\nregisterSimpleEvent(\"dblclick\", \"onDoubleClick\");\nregisterSimpleEvent(\"focusin\", \"onFocus\");\nregisterSimpleEvent(\"focusout\", \"onBlur\");\nregisterSimpleEvent(TRANSITION_RUN, \"onTransitionRun\");\nregisterSimpleEvent(TRANSITION_START, \"onTransitionStart\");\nregisterSimpleEvent(TRANSITION_CANCEL, \"onTransitionCancel\");\nregisterSimpleEvent(TRANSITION_END, \"onTransitionEnd\");\nregisterDirectEvent(\"onMouseEnter\", [\"mouseout\", \"mouseover\"]);\nregisterDirectEvent(\"onMouseLeave\", [\"mouseout\", \"mouseover\"]);\nregisterDirectEvent(\"onPointerEnter\", [\"pointerout\", \"pointerover\"]);\nregisterDirectEvent(\"onPointerLeave\", [\"pointerout\", \"pointerover\"]);\nregisterTwoPhaseEvent(\n \"onChange\",\n \"change click focusin focusout input keydown keyup selectionchange\".split(\" \")\n);\nregisterTwoPhaseEvent(\n \"onSelect\",\n \"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\n \" \"\n )\n);\nregisterTwoPhaseEvent(\"onBeforeInput\", [\n \"compositionend\",\n \"keypress\",\n \"textInput\",\n \"paste\"\n]);\nregisterTwoPhaseEvent(\n \"onCompositionEnd\",\n \"compositionend focusout keydown keypress keyup mousedown\".split(\" \")\n);\nregisterTwoPhaseEvent(\n \"onCompositionStart\",\n \"compositionstart focusout keydown keypress keyup mousedown\".split(\" \")\n);\nregisterTwoPhaseEvent(\n \"onCompositionUpdate\",\n \"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \")\n);\nvar mediaEventTypes =\n \"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting\".split(\n \" \"\n ),\n nonDelegatedEvents = new Set(\n \"beforetoggle cancel close invalid load scroll scrollend toggle\"\n .split(\" \")\n .concat(mediaEventTypes)\n );\nfunction processDispatchQueue(dispatchQueue, eventSystemFlags) {\n eventSystemFlags = 0 !== (eventSystemFlags & 4);\n for (var i = 0; i < dispatchQueue.length; i++) {\n var _dispatchQueue$i = dispatchQueue[i],\n event = _dispatchQueue$i.event;\n _dispatchQueue$i = _dispatchQueue$i.listeners;\n a: {\n var previousInstance = void 0;\n if (eventSystemFlags)\n for (\n var i$jscomp$0 = _dispatchQueue$i.length - 1;\n 0 <= i$jscomp$0;\n i$jscomp$0--\n ) {\n var _dispatchListeners$i = _dispatchQueue$i[i$jscomp$0],\n instance = _dispatchListeners$i.instance,\n currentTarget = _dispatchListeners$i.currentTarget;\n _dispatchListeners$i = _dispatchListeners$i.listener;\n if (instance !== previousInstance && event.isPropagationStopped())\n break a;\n previousInstance = _dispatchListeners$i;\n event.currentTarget = currentTarget;\n try {\n previousInstance(event);\n } catch (error) {\n reportGlobalError(error);\n }\n event.currentTarget = null;\n previousInstance = instance;\n }\n else\n for (\n i$jscomp$0 = 0;\n i$jscomp$0 < _dispatchQueue$i.length;\n i$jscomp$0++\n ) {\n _dispatchListeners$i = _dispatchQueue$i[i$jscomp$0];\n instance = _dispatchListeners$i.instance;\n currentTarget = _dispatchListeners$i.currentTarget;\n _dispatchListeners$i = _dispatchListeners$i.listener;\n if (instance !== previousInstance && event.isPropagationStopped())\n break a;\n previousInstance = _dispatchListeners$i;\n event.currentTarget = currentTarget;\n try {\n previousInstance(event);\n } catch (error) {\n reportGlobalError(error);\n }\n event.currentTarget = null;\n previousInstance = instance;\n }\n }\n }\n}\nfunction listenToNonDelegatedEvent(domEventName, targetElement) {\n var JSCompiler_inline_result = targetElement[internalEventHandlersKey];\n void 0 === JSCompiler_inline_result &&\n (JSCompiler_inline_result = targetElement[internalEventHandlersKey] =\n new Set());\n var listenerSetKey = domEventName + \"__bubble\";\n JSCompiler_inline_result.has(listenerSetKey) ||\n (addTrappedEventListener(targetElement, domEventName, 2, !1),\n JSCompiler_inline_result.add(listenerSetKey));\n}\nfunction listenToNativeEvent(domEventName, isCapturePhaseListener, target) {\n var eventSystemFlags = 0;\n isCapturePhaseListener && (eventSystemFlags |= 4);\n addTrappedEventListener(\n target,\n domEventName,\n eventSystemFlags,\n isCapturePhaseListener\n );\n}\nvar listeningMarker = \"_reactListening\" + Math.random().toString(36).slice(2);\nfunction listenToAllSupportedEvents(rootContainerElement) {\n if (!rootContainerElement[listeningMarker]) {\n rootContainerElement[listeningMarker] = !0;\n allNativeEvents.forEach(function (domEventName) {\n \"selectionchange\" !== domEventName &&\n (nonDelegatedEvents.has(domEventName) ||\n listenToNativeEvent(domEventName, !1, rootContainerElement),\n listenToNativeEvent(domEventName, !0, rootContainerElement));\n });\n var ownerDocument =\n 9 === rootContainerElement.nodeType\n ? rootContainerElement\n : rootContainerElement.ownerDocument;\n null === ownerDocument ||\n ownerDocument[listeningMarker] ||\n ((ownerDocument[listeningMarker] = !0),\n listenToNativeEvent(\"selectionchange\", !1, ownerDocument));\n }\n}\nfunction addTrappedEventListener(\n targetContainer,\n domEventName,\n eventSystemFlags,\n isCapturePhaseListener\n) {\n switch (getEventPriority(domEventName)) {\n case 2:\n var listenerWrapper = dispatchDiscreteEvent;\n break;\n case 8:\n listenerWrapper = dispatchContinuousEvent;\n break;\n default:\n listenerWrapper = dispatchEvent;\n }\n eventSystemFlags = listenerWrapper.bind(\n null,\n domEventName,\n eventSystemFlags,\n targetContainer\n );\n listenerWrapper = void 0;\n !passiveBrowserEventsSupported ||\n (\"touchstart\" !== domEventName &&\n \"touchmove\" !== domEventName &&\n \"wheel\" !== domEventName) ||\n (listenerWrapper = !0);\n isCapturePhaseListener\n ? void 0 !== listenerWrapper\n ? targetContainer.addEventListener(domEventName, eventSystemFlags, {\n capture: !0,\n passive: listenerWrapper\n })\n : targetContainer.addEventListener(domEventName, eventSystemFlags, !0)\n : void 0 !== listenerWrapper\n ? targetContainer.addEventListener(domEventName, eventSystemFlags, {\n passive: listenerWrapper\n })\n : targetContainer.addEventListener(domEventName, eventSystemFlags, !1);\n}\nfunction dispatchEventForPluginEventSystem(\n domEventName,\n eventSystemFlags,\n nativeEvent,\n targetInst$jscomp$0,\n targetContainer\n) {\n var ancestorInst = targetInst$jscomp$0;\n if (\n 0 === (eventSystemFlags & 1) &&\n 0 === (eventSystemFlags & 2) &&\n null !== targetInst$jscomp$0\n )\n a: for (;;) {\n if (null === targetInst$jscomp$0) return;\n var nodeTag = targetInst$jscomp$0.tag;\n if (3 === nodeTag || 4 === nodeTag) {\n var container = targetInst$jscomp$0.stateNode.containerInfo;\n if (container === targetContainer) break;\n if (4 === nodeTag)\n for (nodeTag = targetInst$jscomp$0.return; null !== nodeTag; ) {\n var grandTag = nodeTag.tag;\n if (\n (3 === grandTag || 4 === grandTag) &&\n nodeTag.stateNode.containerInfo === targetContainer\n )\n return;\n nodeTag = nodeTag.return;\n }\n for (; null !== container; ) {\n nodeTag = getClosestInstanceFromNode(container);\n if (null === nodeTag) return;\n grandTag = nodeTag.tag;\n if (\n 5 === grandTag ||\n 6 === grandTag ||\n 26 === grandTag ||\n 27 === grandTag\n ) {\n targetInst$jscomp$0 = ancestorInst = nodeTag;\n continue a;\n }\n container = container.parentNode;\n }\n }\n targetInst$jscomp$0 = targetInst$jscomp$0.return;\n }\n batchedUpdates$1(function () {\n var targetInst = ancestorInst,\n nativeEventTarget = getEventTarget(nativeEvent),\n dispatchQueue = [];\n a: {\n var reactName = topLevelEventsToReactNames.get(domEventName);\n if (void 0 !== reactName) {\n var SyntheticEventCtor = SyntheticEvent,\n reactEventType = domEventName;\n switch (domEventName) {\n case \"keypress\":\n if (0 === getEventCharCode(nativeEvent)) break a;\n case \"keydown\":\n case \"keyup\":\n SyntheticEventCtor = SyntheticKeyboardEvent;\n break;\n case \"focusin\":\n reactEventType = \"focus\";\n SyntheticEventCtor = SyntheticFocusEvent;\n break;\n case \"focusout\":\n reactEventType = \"blur\";\n SyntheticEventCtor = SyntheticFocusEvent;\n break;\n case \"beforeblur\":\n case \"afterblur\":\n SyntheticEventCtor = SyntheticFocusEvent;\n break;\n case \"click\":\n if (2 === nativeEvent.button) break a;\n case \"auxclick\":\n case \"dblclick\":\n case \"mousedown\":\n case \"mousemove\":\n case \"mouseup\":\n case \"mouseout\":\n case \"mouseover\":\n case \"contextmenu\":\n SyntheticEventCtor = SyntheticMouseEvent;\n break;\n case \"drag\":\n case \"dragend\":\n case \"dragenter\":\n case \"dragexit\":\n case \"dragleave\":\n case \"dragover\":\n case \"dragstart\":\n case \"drop\":\n SyntheticEventCtor = SyntheticDragEvent;\n break;\n case \"touchcancel\":\n case \"touchend\":\n case \"touchmove\":\n case \"touchstart\":\n SyntheticEventCtor = SyntheticTouchEvent;\n break;\n case ANIMATION_END:\n case ANIMATION_ITERATION:\n case ANIMATION_START:\n SyntheticEventCtor = SyntheticAnimationEvent;\n break;\n case TRANSITION_END:\n SyntheticEventCtor = SyntheticTransitionEvent;\n break;\n case \"scroll\":\n case \"scrollend\":\n SyntheticEventCtor = SyntheticUIEvent;\n break;\n case \"wheel\":\n SyntheticEventCtor = SyntheticWheelEvent;\n break;\n case \"copy\":\n case \"cut\":\n case \"paste\":\n SyntheticEventCtor = SyntheticClipboardEvent;\n break;\n case \"gotpointercapture\":\n case \"lostpointercapture\":\n case \"pointercancel\":\n case \"pointerdown\":\n case \"pointermove\":\n case \"pointerout\":\n case \"pointerover\":\n case \"pointerup\":\n SyntheticEventCtor = SyntheticPointerEvent;\n break;\n case \"toggle\":\n case \"beforetoggle\":\n SyntheticEventCtor = SyntheticToggleEvent;\n }\n var inCapturePhase = 0 !== (eventSystemFlags & 4),\n accumulateTargetOnly =\n !inCapturePhase &&\n (\"scroll\" === domEventName || \"scrollend\" === domEventName),\n reactEventName = inCapturePhase\n ? null !== reactName\n ? reactName + \"Capture\"\n : null\n : reactName;\n inCapturePhase = [];\n for (\n var instance = targetInst, lastHostComponent;\n null !== instance;\n\n ) {\n var _instance = instance;\n lastHostComponent = _instance.stateNode;\n _instance = _instance.tag;\n (5 !== _instance && 26 !== _instance && 27 !== _instance) ||\n null === lastHostComponent ||\n null === reactEventName ||\n ((_instance = getListener(instance, reactEventName)),\n null != _instance &&\n inCapturePhase.push(\n createDispatchListener(instance, _instance, lastHostComponent)\n ));\n if (accumulateTargetOnly) break;\n instance = instance.return;\n }\n 0 < inCapturePhase.length &&\n ((reactName = new SyntheticEventCtor(\n reactName,\n reactEventType,\n null,\n nativeEvent,\n nativeEventTarget\n )),\n dispatchQueue.push({ event: reactName, listeners: inCapturePhase }));\n }\n }\n if (0 === (eventSystemFlags & 7)) {\n a: {\n SyntheticEventCtor =\n \"mouseover\" === domEventName || \"pointerover\" === domEventName;\n reactName =\n \"mouseout\" === domEventName || \"pointerout\" === domEventName;\n if (\n SyntheticEventCtor &&\n nativeEvent !== currentReplayingEvent &&\n (reactEventType =\n nativeEvent.relatedTarget || nativeEvent.fromElement) &&\n (getClosestInstanceFromNode(reactEventType) ||\n reactEventType[internalContainerInstanceKey])\n )\n break a;\n if (reactName || SyntheticEventCtor) {\n reactEventType =\n nativeEventTarget.window === nativeEventTarget\n ? nativeEventTarget\n : (SyntheticEventCtor = nativeEventTarget.ownerDocument)\n ? SyntheticEventCtor.defaultView ||\n SyntheticEventCtor.parentWindow\n : window;\n if (reactName) {\n if (\n ((SyntheticEventCtor =\n nativeEvent.relatedTarget || nativeEvent.toElement),\n (reactName = targetInst),\n (SyntheticEventCtor = SyntheticEventCtor\n ? getClosestInstanceFromNode(SyntheticEventCtor)\n : null),\n null !== SyntheticEventCtor &&\n ((accumulateTargetOnly =\n getNearestMountedFiber(SyntheticEventCtor)),\n (inCapturePhase = SyntheticEventCtor.tag),\n SyntheticEventCtor !== accumulateTargetOnly ||\n (5 !== inCapturePhase &&\n 27 !== inCapturePhase &&\n 6 !== inCapturePhase)))\n )\n SyntheticEventCtor = null;\n } else (reactName = null), (SyntheticEventCtor = targetInst);\n if (reactName !== SyntheticEventCtor) {\n inCapturePhase = SyntheticMouseEvent;\n _instance = \"onMouseLeave\";\n reactEventName = \"onMouseEnter\";\n instance = \"mouse\";\n if (\"pointerout\" === domEventName || \"pointerover\" === domEventName)\n (inCapturePhase = SyntheticPointerEvent),\n (_instance = \"onPointerLeave\"),\n (reactEventName = \"onPointerEnter\"),\n (instance = \"pointer\");\n accumulateTargetOnly =\n null == reactName\n ? reactEventType\n : getNodeFromInstance(reactName);\n lastHostComponent =\n null == SyntheticEventCtor\n ? reactEventType\n : getNodeFromInstance(SyntheticEventCtor);\n reactEventType = new inCapturePhase(\n _instance,\n instance + \"leave\",\n reactName,\n nativeEvent,\n nativeEventTarget\n );\n reactEventType.target = accumulateTargetOnly;\n reactEventType.relatedTarget = lastHostComponent;\n _instance = null;\n getClosestInstanceFromNode(nativeEventTarget) === targetInst &&\n ((inCapturePhase = new inCapturePhase(\n reactEventName,\n instance + \"enter\",\n SyntheticEventCtor,\n nativeEvent,\n nativeEventTarget\n )),\n (inCapturePhase.target = lastHostComponent),\n (inCapturePhase.relatedTarget = accumulateTargetOnly),\n (_instance = inCapturePhase));\n accumulateTargetOnly = _instance;\n inCapturePhase =\n reactName && SyntheticEventCtor\n ? getLowestCommonAncestor(\n reactName,\n SyntheticEventCtor,\n getParent\n )\n : null;\n null !== reactName &&\n accumulateEnterLeaveListenersForEvent(\n dispatchQueue,\n reactEventType,\n reactName,\n inCapturePhase,\n !1\n );\n null !== SyntheticEventCtor &&\n null !== accumulateTargetOnly &&\n accumulateEnterLeaveListenersForEvent(\n dispatchQueue,\n accumulateTargetOnly,\n SyntheticEventCtor,\n inCapturePhase,\n !0\n );\n }\n }\n }\n a: {\n reactName = targetInst ? getNodeFromInstance(targetInst) : window;\n SyntheticEventCtor =\n reactName.nodeName && reactName.nodeName.toLowerCase();\n if (\n \"select\" === SyntheticEventCtor ||\n (\"input\" === SyntheticEventCtor && \"file\" === reactName.type)\n )\n var getTargetInstFunc = getTargetInstForChangeEvent;\n else if (isTextInputElement(reactName))\n if (isInputEventSupported)\n getTargetInstFunc = getTargetInstForInputOrChangeEvent;\n else {\n getTargetInstFunc = getTargetInstForInputEventPolyfill;\n var handleEventFunc = handleEventsForInputEventPolyfill;\n }\n else\n (SyntheticEventCtor = reactName.nodeName),\n !SyntheticEventCtor ||\n \"input\" !== SyntheticEventCtor.toLowerCase() ||\n (\"checkbox\" !== reactName.type && \"radio\" !== reactName.type)\n ? targetInst &&\n isCustomElement(targetInst.elementType) &&\n (getTargetInstFunc = getTargetInstForChangeEvent)\n : (getTargetInstFunc = getTargetInstForClickEvent);\n if (\n getTargetInstFunc &&\n (getTargetInstFunc = getTargetInstFunc(domEventName, targetInst))\n ) {\n createAndAccumulateChangeEvent(\n dispatchQueue,\n getTargetInstFunc,\n nativeEvent,\n nativeEventTarget\n );\n break a;\n }\n handleEventFunc && handleEventFunc(domEventName, reactName, targetInst);\n \"focusout\" === domEventName &&\n targetInst &&\n \"number\" === reactName.type &&\n null != targetInst.memoizedProps.value &&\n setDefaultValue(reactName, \"number\", reactName.value);\n }\n handleEventFunc = targetInst ? getNodeFromInstance(targetInst) : window;\n switch (domEventName) {\n case \"focusin\":\n if (\n isTextInputElement(handleEventFunc) ||\n \"true\" === handleEventFunc.contentEditable\n )\n (activeElement = handleEventFunc),\n (activeElementInst = targetInst),\n (lastSelection = null);\n break;\n case \"focusout\":\n lastSelection = activeElementInst = activeElement = null;\n break;\n case \"mousedown\":\n mouseDown = !0;\n break;\n case \"contextmenu\":\n case \"mouseup\":\n case \"dragend\":\n mouseDown = !1;\n constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget);\n break;\n case \"selectionchange\":\n if (skipSelectionChangeEvent) break;\n case \"keydown\":\n case \"keyup\":\n constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget);\n }\n var fallbackData;\n if (canUseCompositionEvent)\n b: {\n switch (domEventName) {\n case \"compositionstart\":\n var eventType = \"onCompositionStart\";\n break b;\n case \"compositionend\":\n eventType = \"onCompositionEnd\";\n break b;\n case \"compositionupdate\":\n eventType = \"onCompositionUpdate\";\n break b;\n }\n eventType = void 0;\n }\n else\n isComposing\n ? isFallbackCompositionEnd(domEventName, nativeEvent) &&\n (eventType = \"onCompositionEnd\")\n : \"keydown\" === domEventName &&\n 229 === nativeEvent.keyCode &&\n (eventType = \"onCompositionStart\");\n eventType &&\n (useFallbackCompositionData &&\n \"ko\" !== nativeEvent.locale &&\n (isComposing || \"onCompositionStart\" !== eventType\n ? \"onCompositionEnd\" === eventType &&\n isComposing &&\n (fallbackData = getData())\n : ((root = nativeEventTarget),\n (startText = \"value\" in root ? root.value : root.textContent),\n (isComposing = !0))),\n (handleEventFunc = accumulateTwoPhaseListeners(targetInst, eventType)),\n 0 < handleEventFunc.length &&\n ((eventType = new SyntheticCompositionEvent(\n eventType,\n domEventName,\n null,\n nativeEvent,\n nativeEventTarget\n )),\n dispatchQueue.push({ event: eventType, listeners: handleEventFunc }),\n fallbackData\n ? (eventType.data = fallbackData)\n : ((fallbackData = getDataFromCustomEvent(nativeEvent)),\n null !== fallbackData && (eventType.data = fallbackData))));\n if (\n (fallbackData = canUseTextInputEvent\n ? getNativeBeforeInputChars(domEventName, nativeEvent)\n : getFallbackBeforeInputChars(domEventName, nativeEvent))\n )\n (eventType = accumulateTwoPhaseListeners(targetInst, \"onBeforeInput\")),\n 0 < eventType.length &&\n ((handleEventFunc = new SyntheticCompositionEvent(\n \"onBeforeInput\",\n \"beforeinput\",\n null,\n nativeEvent,\n nativeEventTarget\n )),\n dispatchQueue.push({\n event: handleEventFunc,\n listeners: eventType\n }),\n (handleEventFunc.data = fallbackData));\n extractEvents$1(\n dispatchQueue,\n domEventName,\n targetInst,\n nativeEvent,\n nativeEventTarget\n );\n }\n processDispatchQueue(dispatchQueue, eventSystemFlags);\n });\n}\nfunction createDispatchListener(instance, listener, currentTarget) {\n return {\n instance: instance,\n listener: listener,\n currentTarget: currentTarget\n };\n}\nfunction accumulateTwoPhaseListeners(targetFiber, reactName) {\n for (\n var captureName = reactName + \"Capture\", listeners = [];\n null !== targetFiber;\n\n ) {\n var _instance2 = targetFiber,\n stateNode = _instance2.stateNode;\n _instance2 = _instance2.tag;\n (5 !== _instance2 && 26 !== _instance2 && 27 !== _instance2) ||\n null === stateNode ||\n ((_instance2 = getListener(targetFiber, captureName)),\n null != _instance2 &&\n listeners.unshift(\n createDispatchListener(targetFiber, _instance2, stateNode)\n ),\n (_instance2 = getListener(targetFiber, reactName)),\n null != _instance2 &&\n listeners.push(\n createDispatchListener(targetFiber, _instance2, stateNode)\n ));\n if (3 === targetFiber.tag) return listeners;\n targetFiber = targetFiber.return;\n }\n return [];\n}\nfunction getParent(inst) {\n if (null === inst) return null;\n do inst = inst.return;\n while (inst && 5 !== inst.tag && 27 !== inst.tag);\n return inst ? inst : null;\n}\nfunction accumulateEnterLeaveListenersForEvent(\n dispatchQueue,\n event,\n target,\n common,\n inCapturePhase\n) {\n for (\n var registrationName = event._reactName, listeners = [];\n null !== target && target !== common;\n\n ) {\n var _instance3 = target,\n alternate = _instance3.alternate,\n stateNode = _instance3.stateNode;\n _instance3 = _instance3.tag;\n if (null !== alternate && alternate === common) break;\n (5 !== _instance3 && 26 !== _instance3 && 27 !== _instance3) ||\n null === stateNode ||\n ((alternate = stateNode),\n inCapturePhase\n ? ((stateNode = getListener(target, registrationName)),\n null != stateNode &&\n listeners.unshift(\n createDispatchListener(target, stateNode, alternate)\n ))\n : inCapturePhase ||\n ((stateNode = getListener(target, registrationName)),\n null != stateNode &&\n listeners.push(\n createDispatchListener(target, stateNode, alternate)\n )));\n target = target.return;\n }\n 0 !== listeners.length &&\n dispatchQueue.push({ event: event, listeners: listeners });\n}\nvar NORMALIZE_NEWLINES_REGEX = /\\r\\n?/g,\n NORMALIZE_NULL_AND_REPLACEMENT_REGEX = /\\u0000|\\uFFFD/g;\nfunction normalizeMarkupForTextOrAttribute(markup) {\n return (\"string\" === typeof markup ? markup : \"\" + markup)\n .replace(NORMALIZE_NEWLINES_REGEX, \"\\n\")\n .replace(NORMALIZE_NULL_AND_REPLACEMENT_REGEX, \"\");\n}\nfunction checkForUnmatchedText(serverText, clientText) {\n clientText = normalizeMarkupForTextOrAttribute(clientText);\n return normalizeMarkupForTextOrAttribute(serverText) === clientText ? !0 : !1;\n}\nfunction setProp(domElement, tag, key, value, props, prevValue) {\n switch (key) {\n case \"children\":\n if (\"string\" === typeof value)\n \"body\" === tag ||\n (\"textarea\" === tag && \"\" === value) ||\n setTextContent(domElement, value);\n else if (\"number\" === typeof value || \"bigint\" === typeof value)\n \"body\" !== tag && setTextContent(domElement, \"\" + value);\n else return;\n break;\n case \"className\":\n setValueForKnownAttribute(domElement, \"class\", value);\n break;\n case \"tabIndex\":\n setValueForKnownAttribute(domElement, \"tabindex\", value);\n break;\n case \"dir\":\n case \"role\":\n case \"viewBox\":\n case \"width\":\n case \"height\":\n setValueForKnownAttribute(domElement, key, value);\n break;\n case \"style\":\n setValueForStyles(domElement, value, prevValue);\n return;\n case \"data\":\n if (\"object\" !== tag) {\n setValueForKnownAttribute(domElement, \"data\", value);\n break;\n }\n case \"src\":\n case \"href\":\n if (\"\" === value && (\"a\" !== tag || \"href\" !== key)) {\n domElement.removeAttribute(key);\n break;\n }\n if (\n null == value ||\n \"function\" === typeof value ||\n \"symbol\" === typeof value ||\n \"boolean\" === typeof value\n ) {\n domElement.removeAttribute(key);\n break;\n }\n value = sanitizeURL(\"\" + value);\n domElement.setAttribute(key, value);\n break;\n case \"action\":\n case \"formAction\":\n if (\"function\" === typeof value) {\n domElement.setAttribute(\n key,\n \"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')\"\n );\n break;\n } else\n \"function\" === typeof prevValue &&\n (\"formAction\" === key\n ? (\"input\" !== tag &&\n setProp(domElement, tag, \"name\", props.name, props, null),\n setProp(\n domElement,\n tag,\n \"formEncType\",\n props.formEncType,\n props,\n null\n ),\n setProp(\n domElement,\n tag,\n \"formMethod\",\n props.formMethod,\n props,\n null\n ),\n setProp(\n domElement,\n tag,\n \"formTarget\",\n props.formTarget,\n props,\n null\n ))\n : (setProp(domElement, tag, \"encType\", props.encType, props, null),\n setProp(domElement, tag, \"method\", props.method, props, null),\n setProp(domElement, tag, \"target\", props.target, props, null)));\n if (\n null == value ||\n \"symbol\" === typeof value ||\n \"boolean\" === typeof value\n ) {\n domElement.removeAttribute(key);\n break;\n }\n value = sanitizeURL(\"\" + value);\n domElement.setAttribute(key, value);\n break;\n case \"onClick\":\n null != value && (domElement.onclick = noop$1);\n return;\n case \"onScroll\":\n null != value && listenToNonDelegatedEvent(\"scroll\", domElement);\n return;\n case \"onScrollEnd\":\n null != value && listenToNonDelegatedEvent(\"scrollend\", domElement);\n return;\n case \"dangerouslySetInnerHTML\":\n if (null != value) {\n if (\"object\" !== typeof value || !(\"__html\" in value))\n throw Error(formatProdErrorMessage(61));\n key = value.__html;\n if (null != key) {\n if (null != props.children) throw Error(formatProdErrorMessage(60));\n domElement.innerHTML = key;\n }\n }\n break;\n case \"multiple\":\n domElement.multiple =\n value && \"function\" !== typeof value && \"symbol\" !== typeof value;\n break;\n case \"muted\":\n domElement.muted =\n value && \"function\" !== typeof value && \"symbol\" !== typeof value;\n break;\n case \"suppressContentEditableWarning\":\n case \"suppressHydrationWarning\":\n case \"defaultValue\":\n case \"defaultChecked\":\n case \"innerHTML\":\n case \"ref\":\n break;\n case \"autoFocus\":\n break;\n case \"xlinkHref\":\n if (\n null == value ||\n \"function\" === typeof value ||\n \"boolean\" === typeof value ||\n \"symbol\" === typeof value\n ) {\n domElement.removeAttribute(\"xlink:href\");\n break;\n }\n key = sanitizeURL(\"\" + value);\n domElement.setAttributeNS(\n \"http://www.w3.org/1999/xlink\",\n \"xlink:href\",\n key\n );\n break;\n case \"contentEditable\":\n case \"spellCheck\":\n case \"draggable\":\n case \"value\":\n case \"autoReverse\":\n case \"externalResourcesRequired\":\n case \"focusable\":\n case \"preserveAlpha\":\n null != value && \"function\" !== typeof value && \"symbol\" !== typeof value\n ? domElement.setAttribute(key, \"\" + value)\n : domElement.removeAttribute(key);\n break;\n case \"inert\":\n case \"allowFullScreen\":\n case \"async\":\n case \"autoPlay\":\n case \"controls\":\n case \"default\":\n case \"defer\":\n case \"disabled\":\n case \"disablePictureInPicture\":\n case \"disableRemotePlayback\":\n case \"formNoValidate\":\n case \"hidden\":\n case \"loop\":\n case \"noModule\":\n case \"noValidate\":\n case \"open\":\n case \"playsInline\":\n case \"readOnly\":\n case \"required\":\n case \"reversed\":\n case \"scoped\":\n case \"seamless\":\n case \"itemScope\":\n value && \"function\" !== typeof value && \"symbol\" !== typeof value\n ? domElement.setAttribute(key, \"\")\n : domElement.removeAttribute(key);\n break;\n case \"capture\":\n case \"download\":\n !0 === value\n ? domElement.setAttribute(key, \"\")\n : !1 !== value &&\n null != value &&\n \"function\" !== typeof value &&\n \"symbol\" !== typeof value\n ? domElement.setAttribute(key, value)\n : domElement.removeAttribute(key);\n break;\n case \"cols\":\n case \"rows\":\n case \"size\":\n case \"span\":\n null != value &&\n \"function\" !== typeof value &&\n \"symbol\" !== typeof value &&\n !isNaN(value) &&\n 1 <= value\n ? domElement.setAttribute(key, value)\n : domElement.removeAttribute(key);\n break;\n case \"rowSpan\":\n case \"start\":\n null == value ||\n \"function\" === typeof value ||\n \"symbol\" === typeof value ||\n isNaN(value)\n ? domElement.removeAttribute(key)\n : domElement.setAttribute(key, value);\n break;\n case \"popover\":\n listenToNonDelegatedEvent(\"beforetoggle\", domElement);\n listenToNonDelegatedEvent(\"toggle\", domElement);\n setValueForAttribute(domElement, \"popover\", value);\n break;\n case \"xlinkActuate\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/1999/xlink\",\n \"xlink:actuate\",\n value\n );\n break;\n case \"xlinkArcrole\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/1999/xlink\",\n \"xlink:arcrole\",\n value\n );\n break;\n case \"xlinkRole\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/1999/xlink\",\n \"xlink:role\",\n value\n );\n break;\n case \"xlinkShow\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/1999/xlink\",\n \"xlink:show\",\n value\n );\n break;\n case \"xlinkTitle\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/1999/xlink\",\n \"xlink:title\",\n value\n );\n break;\n case \"xlinkType\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/1999/xlink\",\n \"xlink:type\",\n value\n );\n break;\n case \"xmlBase\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/XML/1998/namespace\",\n \"xml:base\",\n value\n );\n break;\n case \"xmlLang\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/XML/1998/namespace\",\n \"xml:lang\",\n value\n );\n break;\n case \"xmlSpace\":\n setValueForNamespacedAttribute(\n domElement,\n \"http://www.w3.org/XML/1998/namespace\",\n \"xml:space\",\n value\n );\n break;\n case \"is\":\n setValueForAttribute(domElement, \"is\", value);\n break;\n case \"innerText\":\n case \"textContent\":\n return;\n default:\n if (\n !(2 < key.length) ||\n (\"o\" !== key[0] && \"O\" !== key[0]) ||\n (\"n\" !== key[1] && \"N\" !== key[1])\n )\n (key = aliases.get(key) || key),\n setValueForAttribute(domElement, key, value);\n else return;\n }\n viewTransitionMutationContext = !0;\n}\nfunction setPropOnCustomElement(domElement, tag, key, value, props, prevValue) {\n switch (key) {\n case \"style\":\n setValueForStyles(domElement, value, prevValue);\n return;\n case \"dangerouslySetInnerHTML\":\n if (null != value) {\n if (\"object\" !== typeof value || !(\"__html\" in value))\n throw Error(formatProdErrorMessage(61));\n key = value.__html;\n if (null != key) {\n if (null != props.children) throw Error(formatProdErrorMessage(60));\n domElement.innerHTML = key;\n }\n }\n break;\n case \"children\":\n if (\"string\" === typeof value) setTextContent(domElement, value);\n else if (\"number\" === typeof value || \"bigint\" === typeof value)\n setTextContent(domElement, \"\" + value);\n else return;\n break;\n case \"onScroll\":\n null != value && listenToNonDelegatedEvent(\"scroll\", domElement);\n return;\n case \"onScrollEnd\":\n null != value && listenToNonDelegatedEvent(\"scrollend\", domElement);\n return;\n case \"onClick\":\n null != value && (domElement.onclick = noop$1);\n return;\n case \"suppressContentEditableWarning\":\n case \"suppressHydrationWarning\":\n case \"innerHTML\":\n case \"ref\":\n return;\n case \"innerText\":\n case \"textContent\":\n return;\n default:\n if (!registrationNameDependencies.hasOwnProperty(key))\n a: {\n if (\n \"o\" === key[0] &&\n \"n\" === key[1] &&\n ((props = key.endsWith(\"Capture\")),\n (tag = key.slice(2, props ? key.length - 7 : void 0)),\n (prevValue = domElement[internalPropsKey] || null),\n (prevValue = null != prevValue ? prevValue[key] : null),\n \"function\" === typeof prevValue &&\n domElement.removeEventListener(tag, prevValue, props),\n \"function\" === typeof value)\n ) {\n \"function\" !== typeof prevValue &&\n null !== prevValue &&\n (key in domElement\n ? (domElement[key] = null)\n : domElement.hasAttribute(key) &&\n domElement.removeAttribute(key));\n domElement.addEventListener(tag, value, props);\n break a;\n }\n viewTransitionMutationContext = !0;\n key in domElement\n ? (domElement[key] = value)\n : !0 === value\n ? domElement.setAttribute(key, \"\")\n : setValueForAttribute(domElement, key, value);\n }\n return;\n }\n viewTransitionMutationContext = !0;\n}\nfunction setInitialProperties(domElement, tag, props) {\n switch (tag) {\n case \"div\":\n case \"span\":\n case \"svg\":\n case \"path\":\n case \"a\":\n case \"g\":\n case \"p\":\n case \"li\":\n break;\n case \"img\":\n listenToNonDelegatedEvent(\"error\", domElement);\n listenToNonDelegatedEvent(\"load\", domElement);\n var hasSrc = !1,\n hasSrcSet = !1,\n propKey;\n for (propKey in props)\n if (props.hasOwnProperty(propKey)) {\n var propValue = props[propKey];\n if (null != propValue)\n switch (propKey) {\n case \"src\":\n hasSrc = !0;\n break;\n case \"srcSet\":\n hasSrcSet = !0;\n break;\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n throw Error(formatProdErrorMessage(137, tag));\n default:\n setProp(domElement, tag, propKey, propValue, props, null);\n }\n }\n hasSrcSet &&\n setProp(domElement, tag, \"srcSet\", props.srcSet, props, null);\n hasSrc && setProp(domElement, tag, \"src\", props.src, props, null);\n return;\n case \"input\":\n listenToNonDelegatedEvent(\"invalid\", domElement);\n var defaultValue = (propKey = propValue = hasSrcSet = null),\n checked = null,\n defaultChecked = null;\n for (hasSrc in props)\n if (props.hasOwnProperty(hasSrc)) {\n var propValue$197 = props[hasSrc];\n if (null != propValue$197)\n switch (hasSrc) {\n case \"name\":\n hasSrcSet = propValue$197;\n break;\n case \"type\":\n propValue = propValue$197;\n break;\n case \"checked\":\n checked = propValue$197;\n break;\n case \"defaultChecked\":\n defaultChecked = propValue$197;\n break;\n case \"value\":\n propKey = propValue$197;\n break;\n case \"defaultValue\":\n defaultValue = propValue$197;\n break;\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n if (null != propValue$197)\n throw Error(formatProdErrorMessage(137, tag));\n break;\n default:\n setProp(domElement, tag, hasSrc, propValue$197, props, null);\n }\n }\n initInput(\n domElement,\n propKey,\n defaultValue,\n checked,\n defaultChecked,\n propValue,\n hasSrcSet,\n !1\n );\n return;\n case \"select\":\n listenToNonDelegatedEvent(\"invalid\", domElement);\n hasSrc = propValue = propKey = null;\n for (hasSrcSet in props)\n if (\n props.hasOwnProperty(hasSrcSet) &&\n ((defaultValue = props[hasSrcSet]), null != defaultValue)\n )\n switch (hasSrcSet) {\n case \"value\":\n propKey = defaultValue;\n break;\n case \"defaultValue\":\n propValue = defaultValue;\n break;\n case \"multiple\":\n hasSrc = defaultValue;\n default:\n setProp(domElement, tag, hasSrcSet, defaultValue, props, null);\n }\n tag = propKey;\n props = propValue;\n domElement.multiple = !!hasSrc;\n null != tag\n ? updateOptions(domElement, !!hasSrc, tag, !1)\n : null != props && updateOptions(domElement, !!hasSrc, props, !0);\n return;\n case \"textarea\":\n listenToNonDelegatedEvent(\"invalid\", domElement);\n propKey = hasSrcSet = hasSrc = null;\n for (propValue in props)\n if (\n props.hasOwnProperty(propValue) &&\n ((defaultValue = props[propValue]), null != defaultValue)\n )\n switch (propValue) {\n case \"value\":\n hasSrc = defaultValue;\n break;\n case \"defaultValue\":\n hasSrcSet = defaultValue;\n break;\n case \"children\":\n propKey = defaultValue;\n break;\n case \"dangerouslySetInnerHTML\":\n if (null != defaultValue) throw Error(formatProdErrorMessage(91));\n break;\n default:\n setProp(domElement, tag, propValue, defaultValue, props, null);\n }\n initTextarea(domElement, hasSrc, hasSrcSet, propKey);\n return;\n case \"option\":\n for (checked in props)\n if (\n props.hasOwnProperty(checked) &&\n ((hasSrc = props[checked]), null != hasSrc)\n )\n switch (checked) {\n case \"selected\":\n domElement.selected =\n hasSrc &&\n \"function\" !== typeof hasSrc &&\n \"symbol\" !== typeof hasSrc;\n break;\n default:\n setProp(domElement, tag, checked, hasSrc, props, null);\n }\n return;\n case \"dialog\":\n listenToNonDelegatedEvent(\"beforetoggle\", domElement);\n listenToNonDelegatedEvent(\"toggle\", domElement);\n listenToNonDelegatedEvent(\"cancel\", domElement);\n listenToNonDelegatedEvent(\"close\", domElement);\n break;\n case \"iframe\":\n case \"object\":\n listenToNonDelegatedEvent(\"load\", domElement);\n break;\n case \"video\":\n case \"audio\":\n for (hasSrc = 0; hasSrc < mediaEventTypes.length; hasSrc++)\n listenToNonDelegatedEvent(mediaEventTypes[hasSrc], domElement);\n break;\n case \"image\":\n listenToNonDelegatedEvent(\"error\", domElement);\n listenToNonDelegatedEvent(\"load\", domElement);\n break;\n case \"details\":\n listenToNonDelegatedEvent(\"toggle\", domElement);\n break;\n case \"embed\":\n case \"source\":\n case \"link\":\n listenToNonDelegatedEvent(\"error\", domElement),\n listenToNonDelegatedEvent(\"load\", domElement);\n case \"area\":\n case \"base\":\n case \"br\":\n case \"col\":\n case \"hr\":\n case \"keygen\":\n case \"meta\":\n case \"param\":\n case \"track\":\n case \"wbr\":\n case \"menuitem\":\n for (defaultChecked in props)\n if (\n props.hasOwnProperty(defaultChecked) &&\n ((hasSrc = props[defaultChecked]), null != hasSrc)\n )\n switch (defaultChecked) {\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n throw Error(formatProdErrorMessage(137, tag));\n default:\n setProp(domElement, tag, defaultChecked, hasSrc, props, null);\n }\n return;\n default:\n if (isCustomElement(tag)) {\n for (propValue$197 in props)\n props.hasOwnProperty(propValue$197) &&\n ((hasSrc = props[propValue$197]),\n void 0 !== hasSrc &&\n setPropOnCustomElement(\n domElement,\n tag,\n propValue$197,\n hasSrc,\n props,\n void 0\n ));\n return;\n }\n }\n for (defaultValue in props)\n props.hasOwnProperty(defaultValue) &&\n ((hasSrc = props[defaultValue]),\n null != hasSrc &&\n setProp(domElement, tag, defaultValue, hasSrc, props, null));\n}\nfunction updateProperties(domElement, tag, lastProps, nextProps) {\n switch (tag) {\n case \"div\":\n case \"span\":\n case \"svg\":\n case \"path\":\n case \"a\":\n case \"g\":\n case \"p\":\n case \"li\":\n break;\n case \"input\":\n var name = null,\n type = null,\n value = null,\n defaultValue = null,\n lastDefaultValue = null,\n checked = null,\n defaultChecked = null;\n for (propKey in lastProps) {\n var lastProp = lastProps[propKey];\n if (lastProps.hasOwnProperty(propKey) && null != lastProp)\n switch (propKey) {\n case \"checked\":\n break;\n case \"value\":\n break;\n case \"defaultValue\":\n lastDefaultValue = lastProp;\n default:\n nextProps.hasOwnProperty(propKey) ||\n setProp(domElement, tag, propKey, null, nextProps, lastProp);\n }\n }\n for (var propKey$214 in nextProps) {\n var propKey = nextProps[propKey$214];\n lastProp = lastProps[propKey$214];\n if (\n nextProps.hasOwnProperty(propKey$214) &&\n (null != propKey || null != lastProp)\n )\n switch (propKey$214) {\n case \"type\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n type = propKey;\n break;\n case \"name\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n name = propKey;\n break;\n case \"checked\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n checked = propKey;\n break;\n case \"defaultChecked\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n defaultChecked = propKey;\n break;\n case \"value\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n value = propKey;\n break;\n case \"defaultValue\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n defaultValue = propKey;\n break;\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n if (null != propKey)\n throw Error(formatProdErrorMessage(137, tag));\n break;\n default:\n propKey !== lastProp &&\n setProp(\n domElement,\n tag,\n propKey$214,\n propKey,\n nextProps,\n lastProp\n );\n }\n }\n updateInput(\n domElement,\n value,\n defaultValue,\n lastDefaultValue,\n checked,\n defaultChecked,\n type,\n name\n );\n return;\n case \"select\":\n propKey = value = defaultValue = propKey$214 = null;\n for (type in lastProps)\n if (\n ((lastDefaultValue = lastProps[type]),\n lastProps.hasOwnProperty(type) && null != lastDefaultValue)\n )\n switch (type) {\n case \"value\":\n break;\n case \"multiple\":\n propKey = lastDefaultValue;\n default:\n nextProps.hasOwnProperty(type) ||\n setProp(\n domElement,\n tag,\n type,\n null,\n nextProps,\n lastDefaultValue\n );\n }\n for (name in nextProps)\n if (\n ((type = nextProps[name]),\n (lastDefaultValue = lastProps[name]),\n nextProps.hasOwnProperty(name) &&\n (null != type || null != lastDefaultValue))\n )\n switch (name) {\n case \"value\":\n type !== lastDefaultValue && (viewTransitionMutationContext = !0);\n propKey$214 = type;\n break;\n case \"defaultValue\":\n type !== lastDefaultValue && (viewTransitionMutationContext = !0);\n defaultValue = type;\n break;\n case \"multiple\":\n type !== lastDefaultValue && (viewTransitionMutationContext = !0),\n (value = type);\n default:\n type !== lastDefaultValue &&\n setProp(\n domElement,\n tag,\n name,\n type,\n nextProps,\n lastDefaultValue\n );\n }\n tag = defaultValue;\n lastProps = value;\n nextProps = propKey;\n null != propKey$214\n ? updateOptions(domElement, !!lastProps, propKey$214, !1)\n : !!nextProps !== !!lastProps &&\n (null != tag\n ? updateOptions(domElement, !!lastProps, tag, !0)\n : updateOptions(domElement, !!lastProps, lastProps ? [] : \"\", !1));\n return;\n case \"textarea\":\n propKey = propKey$214 = null;\n for (defaultValue in lastProps)\n if (\n ((name = lastProps[defaultValue]),\n lastProps.hasOwnProperty(defaultValue) &&\n null != name &&\n !nextProps.hasOwnProperty(defaultValue))\n )\n switch (defaultValue) {\n case \"value\":\n break;\n case \"children\":\n break;\n default:\n setProp(domElement, tag, defaultValue, null, nextProps, name);\n }\n for (value in nextProps)\n if (\n ((name = nextProps[value]),\n (type = lastProps[value]),\n nextProps.hasOwnProperty(value) && (null != name || null != type))\n )\n switch (value) {\n case \"value\":\n name !== type && (viewTransitionMutationContext = !0);\n propKey$214 = name;\n break;\n case \"defaultValue\":\n name !== type && (viewTransitionMutationContext = !0);\n propKey = name;\n break;\n case \"children\":\n break;\n case \"dangerouslySetInnerHTML\":\n if (null != name) throw Error(formatProdErrorMessage(91));\n break;\n default:\n name !== type &&\n setProp(domElement, tag, value, name, nextProps, type);\n }\n updateTextarea(domElement, propKey$214, propKey);\n return;\n case \"option\":\n for (var propKey$230 in lastProps)\n if (\n ((propKey$214 = lastProps[propKey$230]),\n lastProps.hasOwnProperty(propKey$230) &&\n null != propKey$214 &&\n !nextProps.hasOwnProperty(propKey$230))\n )\n switch (propKey$230) {\n case \"selected\":\n domElement.selected = !1;\n break;\n default:\n setProp(\n domElement,\n tag,\n propKey$230,\n null,\n nextProps,\n propKey$214\n );\n }\n for (lastDefaultValue in nextProps)\n if (\n ((propKey$214 = nextProps[lastDefaultValue]),\n (propKey = lastProps[lastDefaultValue]),\n nextProps.hasOwnProperty(lastDefaultValue) &&\n propKey$214 !== propKey &&\n (null != propKey$214 || null != propKey))\n )\n switch (lastDefaultValue) {\n case \"selected\":\n propKey$214 !== propKey && (viewTransitionMutationContext = !0);\n domElement.selected =\n propKey$214 &&\n \"function\" !== typeof propKey$214 &&\n \"symbol\" !== typeof propKey$214;\n break;\n default:\n setProp(\n domElement,\n tag,\n lastDefaultValue,\n propKey$214,\n nextProps,\n propKey\n );\n }\n return;\n case \"img\":\n case \"link\":\n case \"area\":\n case \"base\":\n case \"br\":\n case \"col\":\n case \"embed\":\n case \"hr\":\n case \"keygen\":\n case \"meta\":\n case \"param\":\n case \"source\":\n case \"track\":\n case \"wbr\":\n case \"menuitem\":\n for (var propKey$235 in lastProps)\n (propKey$214 = lastProps[propKey$235]),\n lastProps.hasOwnProperty(propKey$235) &&\n null != propKey$214 &&\n !nextProps.hasOwnProperty(propKey$235) &&\n setProp(domElement, tag, propKey$235, null, nextProps, propKey$214);\n for (checked in nextProps)\n if (\n ((propKey$214 = nextProps[checked]),\n (propKey = lastProps[checked]),\n nextProps.hasOwnProperty(checked) &&\n propKey$214 !== propKey &&\n (null != propKey$214 || null != propKey))\n )\n switch (checked) {\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n if (null != propKey$214)\n throw Error(formatProdErrorMessage(137, tag));\n break;\n default:\n setProp(\n domElement,\n tag,\n checked,\n propKey$214,\n nextProps,\n propKey\n );\n }\n return;\n default:\n if (isCustomElement(tag)) {\n for (var propKey$240 in lastProps)\n (propKey$214 = lastProps[propKey$240]),\n lastProps.hasOwnProperty(propKey$240) &&\n void 0 !== propKey$214 &&\n !nextProps.hasOwnProperty(propKey$240) &&\n setPropOnCustomElement(\n domElement,\n tag,\n propKey$240,\n void 0,\n nextProps,\n propKey$214\n );\n for (defaultChecked in nextProps)\n (propKey$214 = nextProps[defaultChecked]),\n (propKey = lastProps[defaultChecked]),\n !nextProps.hasOwnProperty(defaultChecked) ||\n propKey$214 === propKey ||\n (void 0 === propKey$214 && void 0 === propKey) ||\n setPropOnCustomElement(\n domElement,\n tag,\n defaultChecked,\n propKey$214,\n nextProps,\n propKey\n );\n return;\n }\n }\n for (var propKey$245 in lastProps)\n (propKey$214 = lastProps[propKey$245]),\n lastProps.hasOwnProperty(propKey$245) &&\n null != propKey$214 &&\n !nextProps.hasOwnProperty(propKey$245) &&\n setProp(domElement, tag, propKey$245, null, nextProps, propKey$214);\n for (lastProp in nextProps)\n (propKey$214 = nextProps[lastProp]),\n (propKey = lastProps[lastProp]),\n !nextProps.hasOwnProperty(lastProp) ||\n propKey$214 === propKey ||\n (null == propKey$214 && null == propKey) ||\n setProp(domElement, tag, lastProp, propKey$214, nextProps, propKey);\n}\nfunction isLikelyStaticResource(initiatorType) {\n switch (initiatorType) {\n case \"css\":\n case \"script\":\n case \"font\":\n case \"img\":\n case \"image\":\n case \"input\":\n case \"link\":\n return !0;\n default:\n return !1;\n }\n}\nfunction estimateBandwidth() {\n if (\"function\" === typeof performance.getEntriesByType) {\n for (\n var count = 0,\n bits = 0,\n resourceEntries = performance.getEntriesByType(\"resource\"),\n i = 0;\n i < resourceEntries.length;\n i++\n ) {\n var entry = resourceEntries[i],\n transferSize = entry.transferSize,\n initiatorType = entry.initiatorType,\n duration = entry.duration;\n if (transferSize && duration && isLikelyStaticResource(initiatorType)) {\n initiatorType = 0;\n duration = entry.responseEnd;\n for (i += 1; i < resourceEntries.length; i++) {\n var overlapEntry = resourceEntries[i],\n overlapStartTime = overlapEntry.startTime;\n if (overlapStartTime > duration) break;\n var overlapTransferSize = overlapEntry.transferSize,\n overlapInitiatorType = overlapEntry.initiatorType;\n overlapTransferSize &&\n isLikelyStaticResource(overlapInitiatorType) &&\n ((overlapEntry = overlapEntry.responseEnd),\n (initiatorType +=\n overlapTransferSize *\n (overlapEntry < duration\n ? 1\n : (duration - overlapStartTime) /\n (overlapEntry - overlapStartTime))));\n }\n --i;\n bits += (8 * (transferSize + initiatorType)) / (entry.duration / 1e3);\n count++;\n if (10 < count) break;\n }\n }\n if (0 < count) return bits / count / 1e6;\n }\n return navigator.connection &&\n ((count = navigator.connection.downlink), \"number\" === typeof count)\n ? count\n : 5;\n}\nvar eventsEnabled = null,\n selectionInformation = null;\nfunction getOwnerDocumentFromRootContainer(rootContainerElement) {\n return 9 === rootContainerElement.nodeType\n ? rootContainerElement\n : rootContainerElement.ownerDocument;\n}\nfunction getOwnHostContext(namespaceURI) {\n switch (namespaceURI) {\n case \"http://www.w3.org/2000/svg\":\n return 1;\n case \"http://www.w3.org/1998/Math/MathML\":\n return 2;\n default:\n return 0;\n }\n}\nfunction getChildHostContextProd(parentNamespace, type) {\n if (0 === parentNamespace)\n switch (type) {\n case \"svg\":\n return 1;\n case \"math\":\n return 2;\n default:\n return 0;\n }\n return 1 === parentNamespace && \"foreignObject\" === type\n ? 0\n : parentNamespace;\n}\nfunction shouldSetTextContent(type, props) {\n return (\n \"textarea\" === type ||\n \"noscript\" === type ||\n \"string\" === typeof props.children ||\n \"number\" === typeof props.children ||\n \"bigint\" === typeof props.children ||\n (\"object\" === typeof props.dangerouslySetInnerHTML &&\n null !== props.dangerouslySetInnerHTML &&\n null != props.dangerouslySetInnerHTML.__html)\n );\n}\nvar currentPopstateTransitionEvent = null;\nfunction shouldAttemptEagerTransition() {\n var event = window.event;\n if (event && \"popstate\" === event.type) {\n if (event === currentPopstateTransitionEvent) return !1;\n currentPopstateTransitionEvent = event;\n return !0;\n }\n currentPopstateTransitionEvent = null;\n return !1;\n}\nvar scheduleTimeout = \"function\" === typeof setTimeout ? setTimeout : void 0,\n cancelTimeout = \"function\" === typeof clearTimeout ? clearTimeout : void 0,\n localPromise = \"function\" === typeof Promise ? Promise : void 0,\n scheduleMicrotask =\n \"function\" === typeof queueMicrotask\n ? queueMicrotask\n : \"undefined\" !== typeof localPromise\n ? function (callback) {\n return localPromise\n .resolve(null)\n .then(callback)\n .catch(handleErrorInNextTick);\n }\n : scheduleTimeout;\nfunction handleErrorInNextTick(error) {\n setTimeout(function () {\n throw error;\n });\n}\nfunction isSingletonScope(type) {\n return \"head\" === type;\n}\nfunction clearHydrationBoundary(parentInstance, hydrationInstance) {\n var node = hydrationInstance,\n depth = 0;\n do {\n var nextNode = node.nextSibling;\n parentInstance.removeChild(node);\n if (nextNode && 8 === nextNode.nodeType)\n if (((node = nextNode.data), \"/$\" === node || \"/&\" === node)) {\n if (0 === depth) {\n parentInstance.removeChild(nextNode);\n retryIfBlockedOn(hydrationInstance);\n return;\n }\n depth--;\n } else if (\n \"$\" === node ||\n \"$?\" === node ||\n \"$~\" === node ||\n \"$!\" === node ||\n \"&\" === node\n )\n depth++;\n else if (\"html\" === node)\n releaseSingletonInstance(parentInstance.ownerDocument.documentElement);\n else if (\"head\" === node) {\n node = parentInstance.ownerDocument.head;\n releaseSingletonInstance(node);\n for (var node$jscomp$0 = node.firstChild; node$jscomp$0; ) {\n var nextNode$jscomp$0 = node$jscomp$0.nextSibling,\n nodeName = node$jscomp$0.nodeName;\n node$jscomp$0[internalHoistableMarker] ||\n \"SCRIPT\" === nodeName ||\n \"STYLE\" === nodeName ||\n (\"LINK\" === nodeName &&\n \"stylesheet\" === node$jscomp$0.rel.toLowerCase()) ||\n node.removeChild(node$jscomp$0);\n node$jscomp$0 = nextNode$jscomp$0;\n }\n } else\n \"body\" === node &&\n releaseSingletonInstance(parentInstance.ownerDocument.body);\n node = nextNode;\n } while (node);\n retryIfBlockedOn(hydrationInstance);\n}\nfunction hideOrUnhideDehydratedBoundary(suspenseInstance, isHidden) {\n var node = suspenseInstance;\n suspenseInstance = 0;\n do {\n var nextNode = node.nextSibling;\n 1 === node.nodeType\n ? isHidden\n ? ((node._stashedDisplay = node.style.display),\n (node.style.display = \"none\"))\n : ((node.style.display = node._stashedDisplay || \"\"),\n \"\" === node.getAttribute(\"style\") && node.removeAttribute(\"style\"))\n : 3 === node.nodeType &&\n (isHidden\n ? ((node._stashedText = node.nodeValue), (node.nodeValue = \"\"))\n : (node.nodeValue = node._stashedText || \"\"));\n if (nextNode && 8 === nextNode.nodeType)\n if (((node = nextNode.data), \"/$\" === node))\n if (0 === suspenseInstance) break;\n else suspenseInstance--;\n else\n (\"$\" !== node && \"$?\" !== node && \"$~\" !== node && \"$!\" !== node) ||\n suspenseInstance++;\n node = nextNode;\n } while (node);\n}\nfunction applyViewTransitionName(instance, name, className) {\n name = CSS.escape(name) !== name ? \"r-\" + btoa(name).replace(/=/g, \"\") : name;\n instance.style.viewTransitionName = name;\n null != className && (instance.style.viewTransitionClass = className);\n className = getComputedStyle(instance);\n if (\"inline\" === className.display) {\n name = instance.getClientRects();\n if (1 === name.length) var JSCompiler_inline_result = 1;\n else\n for (var i = (JSCompiler_inline_result = 0); i < name.length; i++) {\n var rect = name[i];\n 0 < rect.width && 0 < rect.height && JSCompiler_inline_result++;\n }\n 1 === JSCompiler_inline_result &&\n ((instance = instance.style),\n (instance.display = 1 === name.length ? \"inline-block\" : \"block\"),\n (instance.marginTop = \"-\" + className.paddingTop),\n (instance.marginBottom = \"-\" + className.paddingBottom));\n }\n}\nfunction restoreViewTransitionName(instance, props) {\n instance = instance.style;\n props = props.style;\n var viewTransitionName =\n null != props\n ? props.hasOwnProperty(\"viewTransitionName\")\n ? props.viewTransitionName\n : props.hasOwnProperty(\"view-transition-name\")\n ? props[\"view-transition-name\"]\n : null\n : null;\n instance.viewTransitionName =\n null == viewTransitionName || \"boolean\" === typeof viewTransitionName\n ? \"\"\n : (\"\" + viewTransitionName).trim();\n viewTransitionName =\n null != props\n ? props.hasOwnProperty(\"viewTransitionClass\")\n ? props.viewTransitionClass\n : props.hasOwnProperty(\"view-transition-class\")\n ? props[\"view-transition-class\"]\n : null\n : null;\n instance.viewTransitionClass =\n null == viewTransitionName || \"boolean\" === typeof viewTransitionName\n ? \"\"\n : (\"\" + viewTransitionName).trim();\n \"inline-block\" === instance.display &&\n (null == props\n ? (instance.display = instance.margin = \"\")\n : ((viewTransitionName = props.display),\n (instance.display =\n null == viewTransitionName || \"boolean\" === typeof viewTransitionName\n ? \"\"\n : viewTransitionName),\n (viewTransitionName = props.margin),\n null != viewTransitionName\n ? (instance.margin = viewTransitionName)\n : ((viewTransitionName = props.hasOwnProperty(\"marginTop\")\n ? props.marginTop\n : props[\"margin-top\"]),\n (instance.marginTop =\n null == viewTransitionName ||\n \"boolean\" === typeof viewTransitionName\n ? \"\"\n : viewTransitionName),\n (props = props.hasOwnProperty(\"marginBottom\")\n ? props.marginBottom\n : props[\"margin-bottom\"]),\n (instance.marginBottom =\n null == props || \"boolean\" === typeof props ? \"\" : props))));\n}\nfunction createMeasurement(rect, computedStyle, element) {\n element = element.ownerDocument.defaultView;\n return {\n rect: rect,\n abs:\n \"absolute\" === computedStyle.position ||\n \"fixed\" === computedStyle.position,\n clip:\n \"none\" !== computedStyle.clipPath ||\n \"visible\" !== computedStyle.overflow ||\n \"none\" !== computedStyle.filter ||\n \"none\" !== computedStyle.mask ||\n \"none\" !== computedStyle.mask ||\n \"0px\" !== computedStyle.borderRadius,\n view:\n 0 <= rect.bottom &&\n 0 <= rect.right &&\n rect.top <= element.innerHeight &&\n rect.left <= element.innerWidth\n };\n}\nfunction measureInstance(instance) {\n var rect = instance.getBoundingClientRect(),\n computedStyle = getComputedStyle(instance);\n return createMeasurement(rect, computedStyle, instance);\n}\nfunction measureClonedInstance(instance) {\n var measuredRect = instance.getBoundingClientRect();\n measuredRect = new DOMRect(\n measuredRect.x + 2e4,\n measuredRect.y + 2e4,\n measuredRect.width,\n measuredRect.height\n );\n var computedStyle = getComputedStyle(instance);\n return createMeasurement(measuredRect, computedStyle, instance);\n}\nfunction forceLayout(ownerDocument) {\n return ownerDocument.documentElement.clientHeight;\n}\nfunction waitForImageToLoad(resolve) {\n this.addEventListener(\"load\", resolve);\n this.addEventListener(\"error\", resolve);\n}\nfunction startViewTransition(\n suspendedState,\n rootContainer,\n transitionTypes,\n mutationCallback,\n layoutCallback,\n afterMutationCallback,\n spawnedWorkCallback,\n passiveCallback,\n errorCallback\n) {\n var ownerDocument =\n 9 === rootContainer.nodeType ? rootContainer : rootContainer.ownerDocument;\n try {\n var transition = ownerDocument.startViewTransition({\n update: function () {\n var ownerWindow = ownerDocument.defaultView,\n pendingNavigation =\n ownerWindow.navigation && ownerWindow.navigation.transition,\n previousFontLoadingStatus = ownerDocument.fonts.status;\n mutationCallback();\n var blockingPromises = [];\n \"loaded\" === previousFontLoadingStatus &&\n (forceLayout(ownerDocument),\n \"loading\" === ownerDocument.fonts.status &&\n blockingPromises.push(ownerDocument.fonts.ready));\n previousFontLoadingStatus = blockingPromises.length;\n if (null !== suspendedState)\n for (\n var suspenseyImages = suspendedState.suspenseyImages,\n imgBytes = 0,\n i = 0;\n i < suspenseyImages.length;\n i++\n ) {\n var suspenseyImage = suspenseyImages[i];\n if (!suspenseyImage.complete) {\n var rect = suspenseyImage.getBoundingClientRect();\n if (\n 0 < rect.bottom &&\n 0 < rect.right &&\n rect.top < ownerWindow.innerHeight &&\n rect.left < ownerWindow.innerWidth\n ) {\n imgBytes += estimateImageBytes(suspenseyImage);\n if (imgBytes > estimatedBytesWithinLimit) {\n blockingPromises.length = previousFontLoadingStatus;\n break;\n }\n suspenseyImage = new Promise(\n waitForImageToLoad.bind(suspenseyImage)\n );\n blockingPromises.push(suspenseyImage);\n }\n }\n }\n if (0 < blockingPromises.length)\n return (\n (ownerWindow = Promise.race([\n Promise.all(blockingPromises),\n new Promise(function (resolve) {\n return setTimeout(resolve, 500);\n })\n ]).then(layoutCallback, layoutCallback)),\n (pendingNavigation\n ? Promise.allSettled([pendingNavigation.finished, ownerWindow])\n : ownerWindow\n ).then(afterMutationCallback, afterMutationCallback)\n );\n layoutCallback();\n if (pendingNavigation)\n return pendingNavigation.finished.then(\n afterMutationCallback,\n afterMutationCallback\n );\n afterMutationCallback();\n },\n types: transitionTypes\n });\n ownerDocument.__reactViewTransition = transition;\n var viewTransitionAnimations = [];\n transition.ready.then(\n function () {\n for (\n var animations = ownerDocument.documentElement.getAnimations({\n subtree: !0\n }),\n i = 0;\n i < animations.length;\n i++\n ) {\n var animation = animations[i],\n effect = animation.effect,\n pseudoElement = effect.pseudoElement;\n if (\n null != pseudoElement &&\n pseudoElement.startsWith(\"::view-transition\")\n ) {\n viewTransitionAnimations.push(animation);\n animation = effect.getKeyframes();\n for (\n var height = (pseudoElement = void 0),\n unchangedDimensions = !0,\n j = 0;\n j < animation.length;\n j++\n ) {\n var keyframe = animation[j],\n w = keyframe.width;\n if (void 0 === pseudoElement) pseudoElement = w;\n else if (pseudoElement !== w) {\n unchangedDimensions = !1;\n break;\n }\n w = keyframe.height;\n if (void 0 === height) height = w;\n else if (height !== w) {\n unchangedDimensions = !1;\n break;\n }\n delete keyframe.width;\n delete keyframe.height;\n \"none\" === keyframe.transform && delete keyframe.transform;\n }\n unchangedDimensions &&\n void 0 !== pseudoElement &&\n void 0 !== height &&\n (effect.setKeyframes(animation),\n (unchangedDimensions = getComputedStyle(\n effect.target,\n effect.pseudoElement\n )),\n unchangedDimensions.width !== pseudoElement ||\n unchangedDimensions.height !== height) &&\n ((unchangedDimensions = animation[0]),\n (unchangedDimensions.width = pseudoElement),\n (unchangedDimensions.height = height),\n (unchangedDimensions = animation[animation.length - 1]),\n (unchangedDimensions.width = pseudoElement),\n (unchangedDimensions.height = height),\n effect.setKeyframes(animation));\n }\n }\n spawnedWorkCallback();\n },\n function (error) {\n ownerDocument.__reactViewTransition === transition &&\n (ownerDocument.__reactViewTransition = null);\n try {\n if (\"object\" === typeof error && null !== error)\n switch (error.name) {\n case \"InvalidStateError\":\n if (\n \"View transition was skipped because document visibility state is hidden.\" ===\n error.message ||\n \"Skipping view transition because document visibility state has become hidden.\" ===\n error.message ||\n \"Skipping view transition because viewport size changed.\" ===\n error.message ||\n \"Transition was aborted because of invalid state\" ===\n error.message\n )\n error = null;\n }\n null !== error && errorCallback(error);\n } finally {\n mutationCallback(), layoutCallback(), spawnedWorkCallback();\n }\n }\n );\n transition.finished.finally(function () {\n for (var i = 0; i < viewTransitionAnimations.length; i++)\n viewTransitionAnimations[i].cancel();\n ownerDocument.__reactViewTransition === transition &&\n (ownerDocument.__reactViewTransition = null);\n passiveCallback();\n });\n return transition;\n } catch (x) {\n return mutationCallback(), layoutCallback(), spawnedWorkCallback(), null;\n }\n}\nfunction ViewTransitionPseudoElement(pseudo, name) {\n this._scope = document.documentElement;\n this._selector = \"::view-transition-\" + pseudo + \"(\" + name + \")\";\n}\nViewTransitionPseudoElement.prototype.animate = function (keyframes, options) {\n options =\n \"number\" === typeof options ? { duration: options } : assign({}, options);\n options.pseudoElement = this._selector;\n return this._scope.animate(keyframes, options);\n};\nViewTransitionPseudoElement.prototype.getAnimations = function () {\n for (\n var scope = this._scope,\n selector = this._selector,\n animations = scope.getAnimations({ subtree: !0 }),\n result = [],\n i = 0;\n i < animations.length;\n i++\n ) {\n var effect = animations[i].effect;\n null !== effect &&\n effect.target === scope &&\n effect.pseudoElement === selector &&\n result.push(animations[i]);\n }\n return result;\n};\nViewTransitionPseudoElement.prototype.getComputedStyle = function () {\n return getComputedStyle(this._scope, this._selector);\n};\nfunction createViewTransitionInstance(name) {\n return {\n name: name,\n group: new ViewTransitionPseudoElement(\"group\", name),\n imagePair: new ViewTransitionPseudoElement(\"image-pair\", name),\n old: new ViewTransitionPseudoElement(\"old\", name),\n new: new ViewTransitionPseudoElement(\"new\", name)\n };\n}\nfunction FragmentInstance(fragmentFiber) {\n this._fragmentFiber = fragmentFiber;\n this._observers = this._eventListeners = null;\n}\nFragmentInstance.prototype.addEventListener = function (\n type,\n listener,\n optionsOrUseCapture\n) {\n null === this._eventListeners && (this._eventListeners = []);\n var listeners = this._eventListeners;\n -1 === indexOfEventListener(listeners, type, listener, optionsOrUseCapture) &&\n (listeners.push({\n type: type,\n listener: listener,\n optionsOrUseCapture: optionsOrUseCapture\n }),\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n addEventListenerToChild,\n type,\n listener,\n optionsOrUseCapture\n ));\n this._eventListeners = listeners;\n};\nfunction addEventListenerToChild(child, type, listener, optionsOrUseCapture) {\n getInstanceFromHostFiber(child).addEventListener(\n type,\n listener,\n optionsOrUseCapture\n );\n return !1;\n}\nFragmentInstance.prototype.removeEventListener = function (\n type,\n listener,\n optionsOrUseCapture\n) {\n var listeners = this._eventListeners;\n null !== listeners &&\n \"undefined\" !== typeof listeners &&\n 0 < listeners.length &&\n (traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n removeEventListenerFromChild,\n type,\n listener,\n optionsOrUseCapture\n ),\n (type = indexOfEventListener(\n listeners,\n type,\n listener,\n optionsOrUseCapture\n )),\n null !== this._eventListeners && this._eventListeners.splice(type, 1));\n};\nfunction removeEventListenerFromChild(\n child,\n type,\n listener,\n optionsOrUseCapture\n) {\n getInstanceFromHostFiber(child).removeEventListener(\n type,\n listener,\n optionsOrUseCapture\n );\n return !1;\n}\nfunction normalizeListenerOptions(opts) {\n return null == opts\n ? \"0\"\n : \"boolean\" === typeof opts\n ? \"c=\" + (opts ? \"1\" : \"0\")\n : \"c=\" +\n (opts.capture ? \"1\" : \"0\") +\n \"&o=\" +\n (opts.once ? \"1\" : \"0\") +\n \"&p=\" +\n (opts.passive ? \"1\" : \"0\");\n}\nfunction indexOfEventListener(\n eventListeners,\n type,\n listener,\n optionsOrUseCapture\n) {\n for (var i = 0; i < eventListeners.length; i++) {\n var item = eventListeners[i];\n if (\n item.type === type &&\n item.listener === listener &&\n normalizeListenerOptions(item.optionsOrUseCapture) ===\n normalizeListenerOptions(optionsOrUseCapture)\n )\n return i;\n }\n return -1;\n}\nFragmentInstance.prototype.dispatchEvent = function (event) {\n var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber);\n if (null === parentHostFiber) return !0;\n parentHostFiber = getInstanceFromHostFiber(parentHostFiber);\n var eventListeners = this._eventListeners;\n if (\n (null !== eventListeners && 0 < eventListeners.length) ||\n !event.bubbles\n ) {\n var temp = document.createTextNode(\"\");\n if (eventListeners)\n for (var i = 0; i < eventListeners.length; i++) {\n var _eventListeners$i = eventListeners[i];\n temp.addEventListener(\n _eventListeners$i.type,\n _eventListeners$i.listener,\n _eventListeners$i.optionsOrUseCapture\n );\n }\n parentHostFiber.appendChild(temp);\n event = temp.dispatchEvent(event);\n if (eventListeners)\n for (i = 0; i < eventListeners.length; i++)\n (_eventListeners$i = eventListeners[i]),\n temp.removeEventListener(\n _eventListeners$i.type,\n _eventListeners$i.listener,\n _eventListeners$i.optionsOrUseCapture\n );\n parentHostFiber.removeChild(temp);\n return event;\n }\n return parentHostFiber.dispatchEvent(event);\n};\nFragmentInstance.prototype.focus = function (focusOptions) {\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !0,\n setFocusOnFiberIfFocusable,\n focusOptions,\n void 0,\n void 0\n );\n};\nfunction setFocusOnFiberIfFocusable(fiber, focusOptions) {\n fiber = getInstanceFromHostFiber(fiber);\n return setFocusIfFocusable(fiber, focusOptions);\n}\nFragmentInstance.prototype.focusLast = function (focusOptions) {\n var children = [];\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !0,\n collectChildren,\n children,\n void 0,\n void 0\n );\n for (\n var i = children.length - 1;\n 0 <= i && !setFocusOnFiberIfFocusable(children[i], focusOptions);\n i--\n );\n};\nfunction collectChildren(child, collection) {\n collection.push(child);\n return !1;\n}\nFragmentInstance.prototype.blur = function () {\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n blurActiveElementWithinFragment,\n void 0,\n void 0,\n void 0\n );\n};\nfunction blurActiveElementWithinFragment(child) {\n child = getInstanceFromHostFiber(child);\n return child === child.ownerDocument.activeElement ? (child.blur(), !0) : !1;\n}\nFragmentInstance.prototype.observeUsing = function (observer) {\n null === this._observers && (this._observers = new Set());\n this._observers.add(observer);\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n observeChild,\n observer,\n void 0,\n void 0\n );\n};\nfunction observeChild(child, observer) {\n child = getInstanceFromHostFiber(child);\n observer.observe(child);\n return !1;\n}\nFragmentInstance.prototype.unobserveUsing = function (observer) {\n var observers = this._observers;\n null !== observers &&\n observers.has(observer) &&\n (observers.delete(observer),\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n unobserveChild,\n observer,\n void 0,\n void 0\n ));\n};\nfunction unobserveChild(child, observer) {\n child = getInstanceFromHostFiber(child);\n observer.unobserve(child);\n return !1;\n}\nFragmentInstance.prototype.getClientRects = function () {\n var rects = [];\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n collectClientRects,\n rects,\n void 0,\n void 0\n );\n return rects;\n};\nfunction collectClientRects(child, rects) {\n child = getInstanceFromHostFiber(child);\n rects.push.apply(rects, child.getClientRects());\n return !1;\n}\nFragmentInstance.prototype.getRootNode = function (getRootNodeOptions) {\n var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber);\n return null === parentHostFiber\n ? this\n : getInstanceFromHostFiber(parentHostFiber).getRootNode(getRootNodeOptions);\n};\nFragmentInstance.prototype.compareDocumentPosition = function (otherNode) {\n var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber);\n if (null === parentHostFiber) return Node.DOCUMENT_POSITION_DISCONNECTED;\n var children = [];\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n collectChildren,\n children,\n void 0,\n void 0\n );\n var parentHostInstance = getInstanceFromHostFiber(parentHostFiber);\n if (0 === children.length) {\n children = this._fragmentFiber;\n var parentResult = parentHostInstance.compareDocumentPosition(otherNode);\n parentHostFiber = parentResult;\n parentHostInstance === otherNode\n ? (parentHostFiber = Node.DOCUMENT_POSITION_CONTAINS)\n : parentResult & Node.DOCUMENT_POSITION_CONTAINED_BY &&\n (traverseVisibleHostChildren(children.sibling, !1, findNextSibling),\n (children = searchTarget),\n (searchTarget = null),\n null === children\n ? (parentHostFiber = Node.DOCUMENT_POSITION_PRECEDING)\n : ((otherNode =\n getInstanceFromHostFiber(children).compareDocumentPosition(\n otherNode\n )),\n (parentHostFiber =\n 0 === otherNode || otherNode & Node.DOCUMENT_POSITION_FOLLOWING\n ? Node.DOCUMENT_POSITION_FOLLOWING\n : Node.DOCUMENT_POSITION_PRECEDING)));\n return (parentHostFiber |= Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC);\n }\n parentHostFiber = getInstanceFromHostFiber(children[0]);\n parentResult = getInstanceFromHostFiber(children[children.length - 1]);\n for (\n var firstInstance = getInstanceFromHostFiber(children[0]),\n foundPortalParent = !1,\n parent = this._fragmentFiber.return;\n null !== parent;\n\n ) {\n 4 === parent.tag && (foundPortalParent = !0);\n if (3 === parent.tag || 5 === parent.tag) break;\n parent = parent.return;\n }\n firstInstance = foundPortalParent\n ? firstInstance.parentElement\n : parentHostInstance;\n if (null == firstInstance) return Node.DOCUMENT_POSITION_DISCONNECTED;\n parentHostInstance =\n firstInstance.compareDocumentPosition(parentHostFiber) &\n Node.DOCUMENT_POSITION_CONTAINED_BY;\n firstInstance =\n firstInstance.compareDocumentPosition(parentResult) &\n Node.DOCUMENT_POSITION_CONTAINED_BY;\n foundPortalParent = parentHostFiber.compareDocumentPosition(otherNode);\n var lastResult = parentResult.compareDocumentPosition(otherNode);\n parent =\n foundPortalParent & Node.DOCUMENT_POSITION_CONTAINED_BY ||\n lastResult & Node.DOCUMENT_POSITION_CONTAINED_BY;\n lastResult =\n parentHostInstance &&\n firstInstance &&\n foundPortalParent & Node.DOCUMENT_POSITION_FOLLOWING &&\n lastResult & Node.DOCUMENT_POSITION_PRECEDING;\n parentHostFiber =\n (parentHostInstance && parentHostFiber === otherNode) ||\n (firstInstance && parentResult === otherNode) ||\n parent ||\n lastResult\n ? Node.DOCUMENT_POSITION_CONTAINED_BY\n : (!parentHostInstance && parentHostFiber === otherNode) ||\n (!firstInstance && parentResult === otherNode)\n ? Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC\n : foundPortalParent;\n return parentHostFiber & Node.DOCUMENT_POSITION_DISCONNECTED ||\n parentHostFiber & Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC ||\n validateDocumentPositionWithFiberTree(\n parentHostFiber,\n this._fragmentFiber,\n children[0],\n children[children.length - 1],\n otherNode\n )\n ? parentHostFiber\n : Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC;\n};\nfunction validateDocumentPositionWithFiberTree(\n documentPosition,\n fragmentFiber,\n precedingBoundaryFiber,\n followingBoundaryFiber,\n otherNode\n) {\n var otherFiber = getClosestInstanceFromNode(otherNode);\n if (documentPosition & Node.DOCUMENT_POSITION_CONTAINED_BY) {\n if ((precedingBoundaryFiber = !!otherFiber))\n a: {\n for (; null !== otherFiber; ) {\n if (\n 7 === otherFiber.tag &&\n (otherFiber === fragmentFiber ||\n otherFiber.alternate === fragmentFiber)\n ) {\n precedingBoundaryFiber = !0;\n break a;\n }\n otherFiber = otherFiber.return;\n }\n precedingBoundaryFiber = !1;\n }\n return precedingBoundaryFiber;\n }\n if (documentPosition & Node.DOCUMENT_POSITION_CONTAINS) {\n if (null === otherFiber)\n return (\n (otherFiber = otherNode.ownerDocument),\n otherNode === otherFiber || otherNode === otherFiber.body\n );\n a: {\n otherFiber = fragmentFiber;\n for (\n fragmentFiber = getFragmentParentHostFiber(fragmentFiber);\n null !== otherFiber;\n\n ) {\n if (\n !(\n (5 !== otherFiber.tag && 3 !== otherFiber.tag) ||\n (otherFiber !== fragmentFiber &&\n otherFiber.alternate !== fragmentFiber)\n )\n ) {\n otherFiber = !0;\n break a;\n }\n otherFiber = otherFiber.return;\n }\n otherFiber = !1;\n }\n return otherFiber;\n }\n return documentPosition & Node.DOCUMENT_POSITION_PRECEDING\n ? ((fragmentFiber = !!otherFiber) &&\n !(fragmentFiber = otherFiber === precedingBoundaryFiber) &&\n ((fragmentFiber = getLowestCommonAncestor(\n precedingBoundaryFiber,\n otherFiber,\n getParentForFragmentAncestors\n )),\n null === fragmentFiber\n ? (fragmentFiber = !1)\n : (traverseVisibleHostChildren(\n fragmentFiber,\n !0,\n isFiberPrecedingCheck,\n otherFiber,\n precedingBoundaryFiber\n ),\n (otherFiber = searchTarget),\n (searchTarget = null),\n (fragmentFiber = null !== otherFiber))),\n fragmentFiber)\n : documentPosition & Node.DOCUMENT_POSITION_FOLLOWING\n ? ((fragmentFiber = !!otherFiber) &&\n !(fragmentFiber = otherFiber === followingBoundaryFiber) &&\n ((fragmentFiber = getLowestCommonAncestor(\n followingBoundaryFiber,\n otherFiber,\n getParentForFragmentAncestors\n )),\n null === fragmentFiber\n ? (fragmentFiber = !1)\n : (traverseVisibleHostChildren(\n fragmentFiber,\n !0,\n isFiberFollowingCheck,\n otherFiber,\n followingBoundaryFiber\n ),\n (otherFiber = searchTarget),\n (searchBoundary = searchTarget = null),\n (fragmentFiber = null !== otherFiber))),\n fragmentFiber)\n : !1;\n}\nFragmentInstance.prototype.scrollIntoView = function (alignToTop) {\n if (\"object\" === typeof alignToTop) throw Error(formatProdErrorMessage(566));\n var children = [];\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n collectChildren,\n children,\n void 0,\n void 0\n );\n var resolvedAlignToTop = !1 !== alignToTop;\n if (0 === children.length) {\n children = this._fragmentFiber;\n var result = [null, null],\n parentHostFiber = getFragmentParentHostFiber(children);\n null !== parentHostFiber &&\n findFragmentInstanceSiblings(result, children, parentHostFiber.child);\n resolvedAlignToTop = resolvedAlignToTop\n ? result[1] ||\n result[0] ||\n getFragmentParentHostFiber(this._fragmentFiber)\n : result[0] || result[1];\n null !== resolvedAlignToTop &&\n getInstanceFromHostFiber(resolvedAlignToTop).scrollIntoView(alignToTop);\n } else\n for (\n result = resolvedAlignToTop ? children.length - 1 : 0;\n result !== (resolvedAlignToTop ? -1 : children.length);\n\n )\n getInstanceFromHostFiber(children[result]).scrollIntoView(alignToTop),\n (result += resolvedAlignToTop ? -1 : 1);\n};\nfunction commitNewChildToFragmentInstance(childInstance, fragmentInstance) {\n var eventListeners = fragmentInstance._eventListeners;\n if (null !== eventListeners)\n for (var i = 0; i < eventListeners.length; i++) {\n var _eventListeners$i3 = eventListeners[i];\n childInstance.addEventListener(\n _eventListeners$i3.type,\n _eventListeners$i3.listener,\n _eventListeners$i3.optionsOrUseCapture\n );\n }\n null !== fragmentInstance._observers &&\n fragmentInstance._observers.forEach(function (observer) {\n observer.observe(childInstance);\n });\n}\nfunction clearContainerSparingly(container) {\n var nextNode = container.firstChild;\n nextNode && 10 === nextNode.nodeType && (nextNode = nextNode.nextSibling);\n for (; nextNode; ) {\n var node = nextNode;\n nextNode = nextNode.nextSibling;\n switch (node.nodeName) {\n case \"HTML\":\n case \"HEAD\":\n case \"BODY\":\n clearContainerSparingly(node);\n detachDeletedInstance(node);\n continue;\n case \"SCRIPT\":\n case \"STYLE\":\n continue;\n case \"LINK\":\n if (\"stylesheet\" === node.rel.toLowerCase()) continue;\n }\n container.removeChild(node);\n }\n}\nfunction canHydrateInstance(instance, type, props, inRootOrSingleton) {\n for (; 1 === instance.nodeType; ) {\n var anyProps = props;\n if (instance.nodeName.toLowerCase() !== type.toLowerCase()) {\n if (\n !inRootOrSingleton &&\n (\"INPUT\" !== instance.nodeName || \"hidden\" !== instance.type)\n )\n break;\n } else if (!inRootOrSingleton)\n if (\"input\" === type && \"hidden\" === instance.type) {\n var name = null == anyProps.name ? null : \"\" + anyProps.name;\n if (\n \"hidden\" === anyProps.type &&\n instance.getAttribute(\"name\") === name\n )\n return instance;\n } else return instance;\n else if (!instance[internalHoistableMarker])\n switch (type) {\n case \"meta\":\n if (!instance.hasAttribute(\"itemprop\")) break;\n return instance;\n case \"link\":\n name = instance.getAttribute(\"rel\");\n if (\"stylesheet\" === name && instance.hasAttribute(\"data-precedence\"))\n break;\n else if (\n name !== anyProps.rel ||\n instance.getAttribute(\"href\") !==\n (null == anyProps.href || \"\" === anyProps.href\n ? null\n : anyProps.href) ||\n instance.getAttribute(\"crossorigin\") !==\n (null == anyProps.crossOrigin ? null : anyProps.crossOrigin) ||\n instance.getAttribute(\"title\") !==\n (null == anyProps.title ? null : anyProps.title)\n )\n break;\n return instance;\n case \"style\":\n if (instance.hasAttribute(\"data-precedence\")) break;\n return instance;\n case \"script\":\n name = instance.getAttribute(\"src\");\n if (\n (name !== (null == anyProps.src ? null : anyProps.src) ||\n instance.getAttribute(\"type\") !==\n (null == anyProps.type ? null : anyProps.type) ||\n instance.getAttribute(\"crossorigin\") !==\n (null == anyProps.crossOrigin ? null : anyProps.crossOrigin)) &&\n name &&\n instance.hasAttribute(\"async\") &&\n !instance.hasAttribute(\"itemprop\")\n )\n break;\n return instance;\n default:\n return instance;\n }\n instance = getNextHydratable(instance.nextSibling);\n if (null === instance) break;\n }\n return null;\n}\nfunction canHydrateTextInstance(instance, text, inRootOrSingleton) {\n if (\"\" === text) return null;\n for (; 3 !== instance.nodeType; ) {\n if (\n (1 !== instance.nodeType ||\n \"INPUT\" !== instance.nodeName ||\n \"hidden\" !== instance.type) &&\n !inRootOrSingleton\n )\n return null;\n instance = getNextHydratable(instance.nextSibling);\n if (null === instance) return null;\n }\n return instance;\n}\nfunction canHydrateHydrationBoundary(instance, inRootOrSingleton) {\n for (; 8 !== instance.nodeType; ) {\n if (\n (1 !== instance.nodeType ||\n \"INPUT\" !== instance.nodeName ||\n \"hidden\" !== instance.type) &&\n !inRootOrSingleton\n )\n return null;\n instance = getNextHydratable(instance.nextSibling);\n if (null === instance) return null;\n }\n return instance;\n}\nfunction isSuspenseInstancePending(instance) {\n return \"$?\" === instance.data || \"$~\" === instance.data;\n}\nfunction isSuspenseInstanceFallback(instance) {\n return (\n \"$!\" === instance.data ||\n (\"$?\" === instance.data && \"loading\" !== instance.ownerDocument.readyState)\n );\n}\nfunction registerSuspenseInstanceRetry(instance, callback) {\n var ownerDocument = instance.ownerDocument;\n if (\"$~\" === instance.data) instance._reactRetry = callback;\n else if (\"$?\" !== instance.data || \"loading\" !== ownerDocument.readyState)\n callback();\n else {\n var listener = function () {\n callback();\n ownerDocument.removeEventListener(\"DOMContentLoaded\", listener);\n };\n ownerDocument.addEventListener(\"DOMContentLoaded\", listener);\n instance._reactRetry = listener;\n }\n}\nfunction getNextHydratable(node) {\n for (; null != node; node = node.nextSibling) {\n var nodeType = node.nodeType;\n if (1 === nodeType || 3 === nodeType) break;\n if (8 === nodeType) {\n nodeType = node.data;\n if (\n \"$\" === nodeType ||\n \"$!\" === nodeType ||\n \"$?\" === nodeType ||\n \"$~\" === nodeType ||\n \"&\" === nodeType ||\n \"F!\" === nodeType ||\n \"F\" === nodeType\n )\n break;\n if (\"/$\" === nodeType || \"/&\" === nodeType) return null;\n }\n }\n return node;\n}\nvar previousHydratableOnEnteringScopedSingleton = null;\nfunction getNextHydratableInstanceAfterHydrationBoundary(hydrationInstance) {\n hydrationInstance = hydrationInstance.nextSibling;\n for (var depth = 0; hydrationInstance; ) {\n if (8 === hydrationInstance.nodeType) {\n var data = hydrationInstance.data;\n if (\"/$\" === data || \"/&\" === data) {\n if (0 === depth)\n return getNextHydratable(hydrationInstance.nextSibling);\n depth--;\n } else\n (\"$\" !== data &&\n \"$!\" !== data &&\n \"$?\" !== data &&\n \"$~\" !== data &&\n \"&\" !== data) ||\n depth++;\n }\n hydrationInstance = hydrationInstance.nextSibling;\n }\n return null;\n}\nfunction getParentHydrationBoundary(targetInstance) {\n targetInstance = targetInstance.previousSibling;\n for (var depth = 0; targetInstance; ) {\n if (8 === targetInstance.nodeType) {\n var data = targetInstance.data;\n if (\n \"$\" === data ||\n \"$!\" === data ||\n \"$?\" === data ||\n \"$~\" === data ||\n \"&\" === data\n ) {\n if (0 === depth) return targetInstance;\n depth--;\n } else (\"/$\" !== data && \"/&\" !== data) || depth++;\n }\n targetInstance = targetInstance.previousSibling;\n }\n return null;\n}\nfunction setFocusIfFocusable(node, focusOptions) {\n function handleFocus() {\n didFocus = !0;\n }\n var didFocus = !1;\n try {\n node.addEventListener(\"focus\", handleFocus),\n (node.focus || HTMLElement.prototype.focus).call(node, focusOptions);\n } finally {\n node.removeEventListener(\"focus\", handleFocus);\n }\n return didFocus;\n}\nfunction resolveSingletonInstance(type, props, rootContainerInstance) {\n props = getOwnerDocumentFromRootContainer(rootContainerInstance);\n switch (type) {\n case \"html\":\n type = props.documentElement;\n if (!type) throw Error(formatProdErrorMessage(452));\n return type;\n case \"head\":\n type = props.head;\n if (!type) throw Error(formatProdErrorMessage(453));\n return type;\n case \"body\":\n type = props.body;\n if (!type) throw Error(formatProdErrorMessage(454));\n return type;\n default:\n throw Error(formatProdErrorMessage(451));\n }\n}\nfunction releaseSingletonInstance(instance) {\n for (var attributes = instance.attributes; attributes.length; )\n instance.removeAttributeNode(attributes[0]);\n detachDeletedInstance(instance);\n}\nvar preloadPropsMap = new Map(),\n preconnectsSet = new Set();\nfunction getHoistableRoot(container) {\n return \"function\" === typeof container.getRootNode\n ? container.getRootNode()\n : 9 === container.nodeType\n ? container\n : container.ownerDocument;\n}\nvar previousDispatcher = ReactDOMSharedInternals.d;\nReactDOMSharedInternals.d = {\n f: flushSyncWork,\n r: requestFormReset,\n D: prefetchDNS,\n C: preconnect,\n L: preload,\n m: preloadModule,\n X: preinitScript,\n S: preinitStyle,\n M: preinitModuleScript\n};\nfunction flushSyncWork() {\n var previousWasRendering = previousDispatcher.f(),\n wasRendering = flushSyncWork$1();\n return previousWasRendering || wasRendering;\n}\nfunction requestFormReset(form) {\n var formInst = getInstanceFromNode(form);\n null !== formInst && 5 === formInst.tag && \"form\" === formInst.type\n ? requestFormReset$1(formInst)\n : previousDispatcher.r(form);\n}\nvar globalDocument = \"undefined\" === typeof document ? null : document;\nfunction preconnectAs(rel, href, crossOrigin) {\n var ownerDocument = globalDocument;\n if (ownerDocument && \"string\" === typeof href && href) {\n var limitedEscapedHref =\n escapeSelectorAttributeValueInsideDoubleQuotes(href);\n limitedEscapedHref =\n 'link[rel=\"' + rel + '\"][href=\"' + limitedEscapedHref + '\"]';\n \"string\" === typeof crossOrigin &&\n (limitedEscapedHref += '[crossorigin=\"' + crossOrigin + '\"]');\n preconnectsSet.has(limitedEscapedHref) ||\n (preconnectsSet.add(limitedEscapedHref),\n (rel = { rel: rel, crossOrigin: crossOrigin, href: href }),\n null === ownerDocument.querySelector(limitedEscapedHref) &&\n ((href = ownerDocument.createElement(\"link\")),\n setInitialProperties(href, \"link\", rel),\n markNodeAsHoistable(href),\n ownerDocument.head.appendChild(href)));\n }\n}\nfunction prefetchDNS(href) {\n previousDispatcher.D(href);\n preconnectAs(\"dns-prefetch\", href, null);\n}\nfunction preconnect(href, crossOrigin) {\n previousDispatcher.C(href, crossOrigin);\n preconnectAs(\"preconnect\", href, crossOrigin);\n}\nfunction preload(href, as, options) {\n previousDispatcher.L(href, as, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && href && as) {\n var preloadSelector =\n 'link[rel=\"preload\"][as=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(as) +\n '\"]';\n \"image\" === as\n ? options && options.imageSrcSet\n ? ((preloadSelector +=\n '[imagesrcset=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(\n options.imageSrcSet\n ) +\n '\"]'),\n \"string\" === typeof options.imageSizes &&\n (preloadSelector +=\n '[imagesizes=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(\n options.imageSizes\n ) +\n '\"]'))\n : (preloadSelector +=\n '[href=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(href) +\n '\"]')\n : (preloadSelector +=\n '[href=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(href) +\n '\"]');\n var key = preloadSelector;\n switch (as) {\n case \"style\":\n key = getStyleKey(href);\n break;\n case \"script\":\n key = getScriptKey(href);\n }\n preloadPropsMap.has(key) ||\n ((href = assign(\n {\n rel: \"preload\",\n href:\n \"image\" === as && options && options.imageSrcSet ? void 0 : href,\n as: as\n },\n options\n )),\n preloadPropsMap.set(key, href),\n null !== ownerDocument.querySelector(preloadSelector) ||\n (\"style\" === as &&\n ownerDocument.querySelector(getStylesheetSelectorFromKey(key))) ||\n (\"script\" === as &&\n ownerDocument.querySelector(getScriptSelectorFromKey(key))) ||\n ((as = ownerDocument.createElement(\"link\")),\n setInitialProperties(as, \"link\", href),\n markNodeAsHoistable(as),\n ownerDocument.head.appendChild(as)));\n }\n}\nfunction preloadModule(href, options) {\n previousDispatcher.m(href, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && href) {\n var as = options && \"string\" === typeof options.as ? options.as : \"script\",\n preloadSelector =\n 'link[rel=\"modulepreload\"][as=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(as) +\n '\"][href=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(href) +\n '\"]',\n key = preloadSelector;\n switch (as) {\n case \"audioworklet\":\n case \"paintworklet\":\n case \"serviceworker\":\n case \"sharedworker\":\n case \"worker\":\n case \"script\":\n key = getScriptKey(href);\n }\n if (\n !preloadPropsMap.has(key) &&\n ((href = assign({ rel: \"modulepreload\", href: href }, options)),\n preloadPropsMap.set(key, href),\n null === ownerDocument.querySelector(preloadSelector))\n ) {\n switch (as) {\n case \"audioworklet\":\n case \"paintworklet\":\n case \"serviceworker\":\n case \"sharedworker\":\n case \"worker\":\n case \"script\":\n if (ownerDocument.querySelector(getScriptSelectorFromKey(key)))\n return;\n }\n as = ownerDocument.createElement(\"link\");\n setInitialProperties(as, \"link\", href);\n markNodeAsHoistable(as);\n ownerDocument.head.appendChild(as);\n }\n }\n}\nfunction preinitStyle(href, precedence, options) {\n previousDispatcher.S(href, precedence, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && href) {\n var styles = getResourcesFromRoot(ownerDocument).hoistableStyles,\n key = getStyleKey(href);\n precedence = precedence || \"default\";\n var resource = styles.get(key);\n if (!resource) {\n var state = { loading: 0, preload: null };\n if (\n (resource = ownerDocument.querySelector(\n getStylesheetSelectorFromKey(key)\n ))\n )\n state.loading = 5;\n else {\n href = assign(\n { rel: \"stylesheet\", href: href, \"data-precedence\": precedence },\n options\n );\n (options = preloadPropsMap.get(key)) &&\n adoptPreloadPropsForStylesheet(href, options);\n var link = (resource = ownerDocument.createElement(\"link\"));\n markNodeAsHoistable(link);\n setInitialProperties(link, \"link\", href);\n link._p = new Promise(function (resolve, reject) {\n link.onload = resolve;\n link.onerror = reject;\n });\n link.addEventListener(\"load\", function () {\n state.loading |= 1;\n });\n link.addEventListener(\"error\", function () {\n state.loading |= 2;\n });\n state.loading |= 4;\n insertStylesheet(resource, precedence, ownerDocument);\n }\n resource = {\n type: \"stylesheet\",\n instance: resource,\n count: 1,\n state: state\n };\n styles.set(key, resource);\n }\n }\n}\nfunction preinitScript(src, options) {\n previousDispatcher.X(src, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && src) {\n var scripts = getResourcesFromRoot(ownerDocument).hoistableScripts,\n key = getScriptKey(src),\n resource = scripts.get(key);\n resource ||\n ((resource = ownerDocument.querySelector(getScriptSelectorFromKey(key))),\n resource ||\n ((src = assign({ src: src, async: !0 }, options)),\n (options = preloadPropsMap.get(key)) &&\n adoptPreloadPropsForScript(src, options),\n (resource = ownerDocument.createElement(\"script\")),\n markNodeAsHoistable(resource),\n setInitialProperties(resource, \"link\", src),\n ownerDocument.head.appendChild(resource)),\n (resource = {\n type: \"script\",\n instance: resource,\n count: 1,\n state: null\n }),\n scripts.set(key, resource));\n }\n}\nfunction preinitModuleScript(src, options) {\n previousDispatcher.M(src, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && src) {\n var scripts = getResourcesFromRoot(ownerDocument).hoistableScripts,\n key = getScriptKey(src),\n resource = scripts.get(key);\n resource ||\n ((resource = ownerDocument.querySelector(getScriptSelectorFromKey(key))),\n resource ||\n ((src = assign({ src: src, async: !0, type: \"module\" }, options)),\n (options = preloadPropsMap.get(key)) &&\n adoptPreloadPropsForScript(src, options),\n (resource = ownerDocument.createElement(\"script\")),\n markNodeAsHoistable(resource),\n setInitialProperties(resource, \"link\", src),\n ownerDocument.head.appendChild(resource)),\n (resource = {\n type: \"script\",\n instance: resource,\n count: 1,\n state: null\n }),\n scripts.set(key, resource));\n }\n}\nfunction getResource(type, currentProps, pendingProps, currentResource) {\n var JSCompiler_inline_result = (JSCompiler_inline_result =\n rootInstanceStackCursor.current)\n ? getHoistableRoot(JSCompiler_inline_result)\n : null;\n if (!JSCompiler_inline_result) throw Error(formatProdErrorMessage(446));\n switch (type) {\n case \"meta\":\n case \"title\":\n return null;\n case \"style\":\n return \"string\" === typeof pendingProps.precedence &&\n \"string\" === typeof pendingProps.href\n ? ((currentProps = getStyleKey(pendingProps.href)),\n (pendingProps = getResourcesFromRoot(\n JSCompiler_inline_result\n ).hoistableStyles),\n (currentResource = pendingProps.get(currentProps)),\n currentResource ||\n ((currentResource = {\n type: \"style\",\n instance: null,\n count: 0,\n state: null\n }),\n pendingProps.set(currentProps, currentResource)),\n currentResource)\n : { type: \"void\", instance: null, count: 0, state: null };\n case \"link\":\n if (\n \"stylesheet\" === pendingProps.rel &&\n \"string\" === typeof pendingProps.href &&\n \"string\" === typeof pendingProps.precedence\n ) {\n type = getStyleKey(pendingProps.href);\n var styles$261 = getResourcesFromRoot(\n JSCompiler_inline_result\n ).hoistableStyles,\n resource$262 = styles$261.get(type);\n resource$262 ||\n ((JSCompiler_inline_result =\n JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),\n (resource$262 = {\n type: \"stylesheet\",\n instance: null,\n count: 0,\n state: { loading: 0, preload: null }\n }),\n styles$261.set(type, resource$262),\n (styles$261 = JSCompiler_inline_result.querySelector(\n getStylesheetSelectorFromKey(type)\n )) &&\n !styles$261._p &&\n ((resource$262.instance = styles$261),\n (resource$262.state.loading = 5)),\n preloadPropsMap.has(type) ||\n ((pendingProps = {\n rel: \"preload\",\n as: \"style\",\n href: pendingProps.href,\n crossOrigin: pendingProps.crossOrigin,\n integrity: pendingProps.integrity,\n media: pendingProps.media,\n hrefLang: pendingProps.hrefLang,\n referrerPolicy: pendingProps.referrerPolicy\n }),\n preloadPropsMap.set(type, pendingProps),\n styles$261 ||\n preloadStylesheet(\n JSCompiler_inline_result,\n type,\n pendingProps,\n resource$262.state\n )));\n if (currentProps && null === currentResource)\n throw Error(formatProdErrorMessage(528, \"\"));\n return resource$262;\n }\n if (currentProps && null !== currentResource)\n throw Error(formatProdErrorMessage(529, \"\"));\n return null;\n case \"script\":\n return (\n (currentProps = pendingProps.async),\n (pendingProps = pendingProps.src),\n \"string\" === typeof pendingProps &&\n currentProps &&\n \"function\" !== typeof currentProps &&\n \"symbol\" !== typeof currentProps\n ? ((currentProps = getScriptKey(pendingProps)),\n (pendingProps = getResourcesFromRoot(\n JSCompiler_inline_result\n ).hoistableScripts),\n (currentResource = pendingProps.get(currentProps)),\n currentResource ||\n ((currentResource = {\n type: \"script\",\n instance: null,\n count: 0,\n state: null\n }),\n pendingProps.set(currentProps, currentResource)),\n currentResource)\n : { type: \"void\", instance: null, count: 0, state: null }\n );\n default:\n throw Error(formatProdErrorMessage(444, type));\n }\n}\nfunction getStyleKey(href) {\n return 'href=\"' + escapeSelectorAttributeValueInsideDoubleQuotes(href) + '\"';\n}\nfunction getStylesheetSelectorFromKey(key) {\n return 'link[rel=\"stylesheet\"][' + key + \"]\";\n}\nfunction stylesheetPropsFromRawProps(rawProps) {\n return assign({}, rawProps, {\n \"data-precedence\": rawProps.precedence,\n precedence: null\n });\n}\nfunction preloadStylesheet(ownerDocument, key, preloadProps, state) {\n ownerDocument.querySelector('link[rel=\"preload\"][as=\"style\"][' + key + \"]\")\n ? (state.loading = 1)\n : ((key = ownerDocument.createElement(\"link\")),\n (state.preload = key),\n key.addEventListener(\"load\", function () {\n return (state.loading |= 1);\n }),\n key.addEventListener(\"error\", function () {\n return (state.loading |= 2);\n }),\n setInitialProperties(key, \"link\", preloadProps),\n markNodeAsHoistable(key),\n ownerDocument.head.appendChild(key));\n}\nfunction getScriptKey(src) {\n return '[src=\"' + escapeSelectorAttributeValueInsideDoubleQuotes(src) + '\"]';\n}\nfunction getScriptSelectorFromKey(key) {\n return \"script[async]\" + key;\n}\nfunction acquireResource(hoistableRoot, resource, props) {\n resource.count++;\n if (null === resource.instance)\n switch (resource.type) {\n case \"style\":\n var instance = hoistableRoot.querySelector(\n 'style[data-href~=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(props.href) +\n '\"]'\n );\n if (instance)\n return (\n (resource.instance = instance),\n markNodeAsHoistable(instance),\n instance\n );\n var styleProps = assign({}, props, {\n \"data-href\": props.href,\n \"data-precedence\": props.precedence,\n href: null,\n precedence: null\n });\n instance = (hoistableRoot.ownerDocument || hoistableRoot).createElement(\n \"style\"\n );\n markNodeAsHoistable(instance);\n setInitialProperties(instance, \"style\", styleProps);\n insertStylesheet(instance, props.precedence, hoistableRoot);\n return (resource.instance = instance);\n case \"stylesheet\":\n styleProps = getStyleKey(props.href);\n var instance$267 = hoistableRoot.querySelector(\n getStylesheetSelectorFromKey(styleProps)\n );\n if (instance$267)\n return (\n (resource.state.loading |= 4),\n (resource.instance = instance$267),\n markNodeAsHoistable(instance$267),\n instance$267\n );\n instance = stylesheetPropsFromRawProps(props);\n (styleProps = preloadPropsMap.get(styleProps)) &&\n adoptPreloadPropsForStylesheet(instance, styleProps);\n instance$267 = (\n hoistableRoot.ownerDocument || hoistableRoot\n ).createElement(\"link\");\n markNodeAsHoistable(instance$267);\n var linkInstance = instance$267;\n linkInstance._p = new Promise(function (resolve, reject) {\n linkInstance.onload = resolve;\n linkInstance.onerror = reject;\n });\n setInitialProperties(instance$267, \"link\", instance);\n resource.state.loading |= 4;\n insertStylesheet(instance$267, props.precedence, hoistableRoot);\n return (resource.instance = instance$267);\n case \"script\":\n instance$267 = getScriptKey(props.src);\n if (\n (styleProps = hoistableRoot.querySelector(\n getScriptSelectorFromKey(instance$267)\n ))\n )\n return (\n (resource.instance = styleProps),\n markNodeAsHoistable(styleProps),\n styleProps\n );\n instance = props;\n if ((styleProps = preloadPropsMap.get(instance$267)))\n (instance = assign({}, props)),\n adoptPreloadPropsForScript(instance, styleProps);\n hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;\n styleProps = hoistableRoot.createElement(\"script\");\n markNodeAsHoistable(styleProps);\n setInitialProperties(styleProps, \"link\", instance);\n hoistableRoot.head.appendChild(styleProps);\n return (resource.instance = styleProps);\n case \"void\":\n return null;\n default:\n throw Error(formatProdErrorMessage(443, resource.type));\n }\n else\n \"stylesheet\" === resource.type &&\n 0 === (resource.state.loading & 4) &&\n ((instance = resource.instance),\n (resource.state.loading |= 4),\n insertStylesheet(instance, props.precedence, hoistableRoot));\n return resource.instance;\n}\nfunction insertStylesheet(instance, precedence, root) {\n for (\n var nodes = root.querySelectorAll(\n 'link[rel=\"stylesheet\"][data-precedence],style[data-precedence]'\n ),\n last = nodes.length ? nodes[nodes.length - 1] : null,\n prior = last,\n i = 0;\n i < nodes.length;\n i++\n ) {\n var node = nodes[i];\n if (node.dataset.precedence === precedence) prior = node;\n else if (prior !== last) break;\n }\n prior\n ? prior.parentNode.insertBefore(instance, prior.nextSibling)\n : ((precedence = 9 === root.nodeType ? root.head : root),\n precedence.insertBefore(instance, precedence.firstChild));\n}\nfunction adoptPreloadPropsForStylesheet(stylesheetProps, preloadProps) {\n null == stylesheetProps.crossOrigin &&\n (stylesheetProps.crossOrigin = preloadProps.crossOrigin);\n null == stylesheetProps.referrerPolicy &&\n (stylesheetProps.referrerPolicy = preloadProps.referrerPolicy);\n null == stylesheetProps.title && (stylesheetProps.title = preloadProps.title);\n}\nfunction adoptPreloadPropsForScript(scriptProps, preloadProps) {\n null == scriptProps.crossOrigin &&\n (scriptProps.crossOrigin = preloadProps.crossOrigin);\n null == scriptProps.referrerPolicy &&\n (scriptProps.referrerPolicy = preloadProps.referrerPolicy);\n null == scriptProps.integrity &&\n (scriptProps.integrity = preloadProps.integrity);\n}\nvar tagCaches = null;\nfunction getHydratableHoistableCache(type, keyAttribute, ownerDocument) {\n if (null === tagCaches) {\n var cache = new Map();\n var caches = (tagCaches = new Map());\n caches.set(ownerDocument, cache);\n } else\n (caches = tagCaches),\n (cache = caches.get(ownerDocument)),\n cache || ((cache = new Map()), caches.set(ownerDocument, cache));\n if (cache.has(type)) return cache;\n cache.set(type, null);\n ownerDocument = ownerDocument.getElementsByTagName(type);\n for (caches = 0; caches < ownerDocument.length; caches++) {\n var node = ownerDocument[caches];\n if (\n !(\n node[internalHoistableMarker] ||\n node[internalInstanceKey] ||\n (\"link\" === type && \"stylesheet\" === node.getAttribute(\"rel\"))\n ) &&\n \"http://www.w3.org/2000/svg\" !== node.namespaceURI\n ) {\n var nodeKey = node.getAttribute(keyAttribute) || \"\";\n nodeKey = type + nodeKey;\n var existing = cache.get(nodeKey);\n existing ? existing.push(node) : cache.set(nodeKey, [node]);\n }\n }\n return cache;\n}\nfunction mountHoistable(hoistableRoot, type, instance) {\n hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;\n hoistableRoot.head.insertBefore(\n instance,\n \"title\" === type ? hoistableRoot.querySelector(\"head > title\") : null\n );\n}\nfunction isHostHoistableType(type, props, hostContext) {\n if (1 === hostContext || null != props.itemProp) return !1;\n switch (type) {\n case \"meta\":\n case \"title\":\n return !0;\n case \"style\":\n if (\n \"string\" !== typeof props.precedence ||\n \"string\" !== typeof props.href ||\n \"\" === props.href\n )\n break;\n return !0;\n case \"link\":\n if (\n \"string\" !== typeof props.rel ||\n \"string\" !== typeof props.href ||\n \"\" === props.href ||\n props.onLoad ||\n props.onError\n )\n break;\n switch (props.rel) {\n case \"stylesheet\":\n return (\n (type = props.disabled),\n \"string\" === typeof props.precedence && null == type\n );\n default:\n return !0;\n }\n case \"script\":\n if (\n props.async &&\n \"function\" !== typeof props.async &&\n \"symbol\" !== typeof props.async &&\n !props.onLoad &&\n !props.onError &&\n props.src &&\n \"string\" === typeof props.src\n )\n return !0;\n }\n return !1;\n}\nfunction maySuspendCommit(type, props) {\n return (\n \"img\" === type &&\n null != props.src &&\n \"\" !== props.src &&\n null == props.onLoad &&\n \"lazy\" !== props.loading\n );\n}\nfunction preloadResource(resource) {\n return \"stylesheet\" === resource.type && 0 === (resource.state.loading & 3)\n ? !1\n : !0;\n}\nfunction estimateImageBytes(instance) {\n return (\n (instance.width || 100) *\n (instance.height || 100) *\n (\"number\" === typeof devicePixelRatio ? devicePixelRatio : 1) *\n 0.25\n );\n}\nfunction suspendInstance(state, instance) {\n \"function\" === typeof instance.decode &&\n (state.imgCount++,\n instance.complete ||\n ((state.imgBytes += estimateImageBytes(instance)),\n state.suspenseyImages.push(instance)),\n (state = onUnsuspendImg.bind(state)),\n instance.decode().then(state, state));\n}\nfunction suspendResource(state, hoistableRoot, resource, props) {\n if (\n \"stylesheet\" === resource.type &&\n (\"string\" !== typeof props.media ||\n !1 !== matchMedia(props.media).matches) &&\n 0 === (resource.state.loading & 4)\n ) {\n if (null === resource.instance) {\n var key = getStyleKey(props.href),\n instance = hoistableRoot.querySelector(\n getStylesheetSelectorFromKey(key)\n );\n if (instance) {\n hoistableRoot = instance._p;\n null !== hoistableRoot &&\n \"object\" === typeof hoistableRoot &&\n \"function\" === typeof hoistableRoot.then &&\n (state.count++,\n (state = onUnsuspend.bind(state)),\n hoistableRoot.then(state, state));\n resource.state.loading |= 4;\n resource.instance = instance;\n markNodeAsHoistable(instance);\n return;\n }\n instance = hoistableRoot.ownerDocument || hoistableRoot;\n props = stylesheetPropsFromRawProps(props);\n (key = preloadPropsMap.get(key)) &&\n adoptPreloadPropsForStylesheet(props, key);\n instance = instance.createElement(\"link\");\n markNodeAsHoistable(instance);\n var linkInstance = instance;\n linkInstance._p = new Promise(function (resolve, reject) {\n linkInstance.onload = resolve;\n linkInstance.onerror = reject;\n });\n setInitialProperties(instance, \"link\", props);\n resource.instance = instance;\n }\n null === state.stylesheets && (state.stylesheets = new Map());\n state.stylesheets.set(resource, hoistableRoot);\n (hoistableRoot = resource.state.preload) &&\n 0 === (resource.state.loading & 3) &&\n (state.count++,\n (resource = onUnsuspend.bind(state)),\n hoistableRoot.addEventListener(\"load\", resource),\n hoistableRoot.addEventListener(\"error\", resource));\n }\n}\nvar estimatedBytesWithinLimit = 0;\nfunction waitForCommitToBeReady(state, timeoutOffset) {\n state.stylesheets &&\n 0 === state.count &&\n insertSuspendedStylesheets(state, state.stylesheets);\n return 0 < state.count || 0 < state.imgCount\n ? function (commit) {\n var stylesheetTimer = setTimeout(function () {\n state.stylesheets &&\n insertSuspendedStylesheets(state, state.stylesheets);\n if (state.unsuspend) {\n var unsuspend = state.unsuspend;\n state.unsuspend = null;\n unsuspend();\n }\n }, 6e4 + timeoutOffset);\n 0 < state.imgBytes &&\n 0 === estimatedBytesWithinLimit &&\n (estimatedBytesWithinLimit = 62500 * estimateBandwidth());\n var imgTimer = setTimeout(\n function () {\n state.waitingForImages = !1;\n if (\n 0 === state.count &&\n (state.stylesheets &&\n insertSuspendedStylesheets(state, state.stylesheets),\n state.unsuspend)\n ) {\n var unsuspend = state.unsuspend;\n state.unsuspend = null;\n unsuspend();\n }\n },\n (state.imgBytes > estimatedBytesWithinLimit ? 50 : 800) +\n timeoutOffset\n );\n state.unsuspend = commit;\n return function () {\n state.unsuspend = null;\n clearTimeout(stylesheetTimer);\n clearTimeout(imgTimer);\n };\n }\n : null;\n}\nfunction checkIfFullyUnsuspended(state) {\n if (0 === state.count && (0 === state.imgCount || !state.waitingForImages))\n if (state.stylesheets) insertSuspendedStylesheets(state, state.stylesheets);\n else if (state.unsuspend) {\n var unsuspend = state.unsuspend;\n state.unsuspend = null;\n unsuspend();\n }\n}\nfunction onUnsuspend() {\n this.count--;\n checkIfFullyUnsuspended(this);\n}\nfunction onUnsuspendImg() {\n this.imgCount--;\n checkIfFullyUnsuspended(this);\n}\nvar precedencesByRoot = null;\nfunction insertSuspendedStylesheets(state, resources) {\n state.stylesheets = null;\n null !== state.unsuspend &&\n (state.count++,\n (precedencesByRoot = new Map()),\n resources.forEach(insertStylesheetIntoRoot, state),\n (precedencesByRoot = null),\n onUnsuspend.call(state));\n}\nfunction insertStylesheetIntoRoot(root, resource) {\n if (!(resource.state.loading & 4)) {\n var precedences = precedencesByRoot.get(root);\n if (precedences) var last = precedences.get(null);\n else {\n precedences = new Map();\n precedencesByRoot.set(root, precedences);\n for (\n var nodes = root.querySelectorAll(\n \"link[data-precedence],style[data-precedence]\"\n ),\n i = 0;\n i < nodes.length;\n i++\n ) {\n var node = nodes[i];\n if (\n \"LINK\" === node.nodeName ||\n \"not all\" !== node.getAttribute(\"media\")\n )\n precedences.set(node.dataset.precedence, node), (last = node);\n }\n last && precedences.set(null, last);\n }\n nodes = resource.instance;\n node = nodes.getAttribute(\"data-precedence\");\n i = precedences.get(node) || last;\n i === last && precedences.set(null, nodes);\n precedences.set(node, nodes);\n this.count++;\n last = onUnsuspend.bind(this);\n nodes.addEventListener(\"load\", last);\n nodes.addEventListener(\"error\", last);\n i\n ? i.parentNode.insertBefore(nodes, i.nextSibling)\n : ((root = 9 === root.nodeType ? root.head : root),\n root.insertBefore(nodes, root.firstChild));\n resource.state.loading |= 4;\n }\n}\nvar HostTransitionContext = {\n $$typeof: REACT_CONTEXT_TYPE,\n Provider: null,\n Consumer: null,\n _currentValue: sharedNotPendingObject,\n _currentValue2: sharedNotPendingObject,\n _threadCount: 0\n};\nfunction FiberRootNode(\n containerInfo,\n tag,\n hydrate,\n identifierPrefix,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n onDefaultTransitionIndicator,\n formState\n) {\n this.tag = 1;\n this.containerInfo = containerInfo;\n this.pingCache = this.current = this.pendingChildren = null;\n this.timeoutHandle = -1;\n this.callbackNode =\n this.next =\n this.pendingContext =\n this.context =\n this.cancelPendingCommit =\n null;\n this.callbackPriority = 0;\n this.expirationTimes = createLaneMap(-1);\n this.entangledLanes =\n this.shellSuspendCounter =\n this.errorRecoveryDisabledLanes =\n this.expiredLanes =\n this.warmLanes =\n this.pingedLanes =\n this.suspendedLanes =\n this.pendingLanes =\n 0;\n this.entanglements = createLaneMap(0);\n this.hiddenUpdates = createLaneMap(null);\n this.identifierPrefix = identifierPrefix;\n this.onUncaughtError = onUncaughtError;\n this.onCaughtError = onCaughtError;\n this.onRecoverableError = onRecoverableError;\n this.pooledCache = null;\n this.pooledCacheLanes = 0;\n this.formState = formState;\n this.transitionTypes = null;\n this.incompleteTransitions = new Map();\n}\nfunction createFiberRoot(\n containerInfo,\n tag,\n hydrate,\n initialChildren,\n hydrationCallbacks,\n isStrictMode,\n identifierPrefix,\n formState,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n onDefaultTransitionIndicator\n) {\n containerInfo = new FiberRootNode(\n containerInfo,\n tag,\n hydrate,\n identifierPrefix,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n onDefaultTransitionIndicator,\n formState\n );\n tag = 1;\n !0 === isStrictMode && (tag |= 24);\n isStrictMode = createFiberImplClass(3, null, null, tag);\n containerInfo.current = isStrictMode;\n isStrictMode.stateNode = containerInfo;\n tag = createCache();\n tag.refCount++;\n containerInfo.pooledCache = tag;\n tag.refCount++;\n isStrictMode.memoizedState = {\n element: initialChildren,\n isDehydrated: hydrate,\n cache: tag\n };\n initializeUpdateQueue(isStrictMode);\n return containerInfo;\n}\nfunction getContextForSubtree(parentComponent) {\n if (!parentComponent) return emptyContextObject;\n parentComponent = emptyContextObject;\n return parentComponent;\n}\nfunction updateContainerImpl(\n rootFiber,\n lane,\n element,\n container,\n parentComponent,\n callback\n) {\n parentComponent = getContextForSubtree(parentComponent);\n null === container.context\n ? (container.context = parentComponent)\n : (container.pendingContext = parentComponent);\n container = createUpdate(lane);\n container.payload = { element: element };\n callback = void 0 === callback ? null : callback;\n null !== callback && (container.callback = callback);\n element = enqueueUpdate(rootFiber, container, lane);\n null !== element &&\n (scheduleUpdateOnFiber(element, rootFiber, lane),\n entangleTransitions(element, rootFiber, lane));\n}\nfunction markRetryLaneImpl(fiber, retryLane) {\n fiber = fiber.memoizedState;\n if (null !== fiber && null !== fiber.dehydrated) {\n var a = fiber.retryLane;\n fiber.retryLane = 0 !== a && a < retryLane ? a : retryLane;\n }\n}\nfunction markRetryLaneIfNotHydrated(fiber, retryLane) {\n markRetryLaneImpl(fiber, retryLane);\n (fiber = fiber.alternate) && markRetryLaneImpl(fiber, retryLane);\n}\nfunction attemptContinuousHydration(fiber) {\n if (13 === fiber.tag || 31 === fiber.tag) {\n var root = enqueueConcurrentRenderForLane(fiber, 67108864);\n null !== root && scheduleUpdateOnFiber(root, fiber, 67108864);\n markRetryLaneIfNotHydrated(fiber, 67108864);\n }\n}\nfunction attemptHydrationAtCurrentPriority(fiber) {\n if (13 === fiber.tag || 31 === fiber.tag) {\n var lane = requestUpdateLane();\n lane = getBumpedLaneForHydrationByLane(lane);\n var root = enqueueConcurrentRenderForLane(fiber, lane);\n null !== root && scheduleUpdateOnFiber(root, fiber, lane);\n markRetryLaneIfNotHydrated(fiber, lane);\n }\n}\nvar _enabled = !0;\nfunction dispatchDiscreteEvent(\n domEventName,\n eventSystemFlags,\n container,\n nativeEvent\n) {\n var prevTransition = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n var previousPriority = ReactDOMSharedInternals.p;\n try {\n (ReactDOMSharedInternals.p = 2),\n dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent);\n } finally {\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = prevTransition);\n }\n}\nfunction dispatchContinuousEvent(\n domEventName,\n eventSystemFlags,\n container,\n nativeEvent\n) {\n var prevTransition = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n var previousPriority = ReactDOMSharedInternals.p;\n try {\n (ReactDOMSharedInternals.p = 8),\n dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent);\n } finally {\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = prevTransition);\n }\n}\nfunction dispatchEvent(\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n) {\n if (_enabled) {\n var blockedOn = findInstanceBlockingEvent(nativeEvent);\n if (null === blockedOn)\n dispatchEventForPluginEventSystem(\n domEventName,\n eventSystemFlags,\n nativeEvent,\n return_targetInst,\n targetContainer\n ),\n clearIfContinuousEvent(domEventName, nativeEvent);\n else if (\n queueIfContinuousEvent(\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )\n )\n nativeEvent.stopPropagation();\n else if (\n (clearIfContinuousEvent(domEventName, nativeEvent),\n eventSystemFlags & 4 &&\n -1 < discreteReplayableEvents.indexOf(domEventName))\n ) {\n for (; null !== blockedOn; ) {\n var fiber = getInstanceFromNode(blockedOn);\n if (null !== fiber)\n switch (fiber.tag) {\n case 3:\n fiber = fiber.stateNode;\n if (fiber.current.memoizedState.isDehydrated) {\n var lanes = getHighestPriorityLanes(fiber.pendingLanes);\n if (0 !== lanes) {\n var root = fiber;\n root.pendingLanes |= 2;\n for (root.entangledLanes |= 2; lanes; ) {\n var lane = 1 << (31 - clz32(lanes));\n root.entanglements[1] |= lane;\n lanes &= ~lane;\n }\n ensureRootIsScheduled(fiber);\n 0 === (executionContext & 6) &&\n ((workInProgressRootRenderTargetTime = now() + 500),\n flushSyncWorkAcrossRoots_impl(0, !1));\n }\n }\n break;\n case 31:\n case 13:\n (root = enqueueConcurrentRenderForLane(fiber, 2)),\n null !== root && scheduleUpdateOnFiber(root, fiber, 2),\n flushSyncWork$1(),\n markRetryLaneIfNotHydrated(fiber, 2);\n }\n fiber = findInstanceBlockingEvent(nativeEvent);\n null === fiber &&\n dispatchEventForPluginEventSystem(\n domEventName,\n eventSystemFlags,\n nativeEvent,\n return_targetInst,\n targetContainer\n );\n if (fiber === blockedOn) break;\n blockedOn = fiber;\n }\n null !== blockedOn && nativeEvent.stopPropagation();\n } else\n dispatchEventForPluginEventSystem(\n domEventName,\n eventSystemFlags,\n nativeEvent,\n null,\n targetContainer\n );\n }\n}\nfunction findInstanceBlockingEvent(nativeEvent) {\n nativeEvent = getEventTarget(nativeEvent);\n return findInstanceBlockingTarget(nativeEvent);\n}\nvar return_targetInst = null;\nfunction findInstanceBlockingTarget(targetNode) {\n return_targetInst = null;\n targetNode = getClosestInstanceFromNode(targetNode);\n if (null !== targetNode) {\n var nearestMounted = getNearestMountedFiber(targetNode);\n if (null === nearestMounted) targetNode = null;\n else {\n var tag = nearestMounted.tag;\n if (13 === tag) {\n targetNode = getSuspenseInstanceFromFiber(nearestMounted);\n if (null !== targetNode) return targetNode;\n targetNode = null;\n } else if (31 === tag) {\n targetNode = getActivityInstanceFromFiber(nearestMounted);\n if (null !== targetNode) return targetNode;\n targetNode = null;\n } else if (3 === tag) {\n if (nearestMounted.stateNode.current.memoizedState.isDehydrated)\n return 3 === nearestMounted.tag\n ? nearestMounted.stateNode.containerInfo\n : null;\n targetNode = null;\n } else nearestMounted !== targetNode && (targetNode = null);\n }\n }\n return_targetInst = targetNode;\n return null;\n}\nfunction getEventPriority(domEventName) {\n switch (domEventName) {\n case \"beforetoggle\":\n case \"cancel\":\n case \"click\":\n case \"close\":\n case \"contextmenu\":\n case \"copy\":\n case \"cut\":\n case \"auxclick\":\n case \"dblclick\":\n case \"dragend\":\n case \"dragstart\":\n case \"drop\":\n case \"focusin\":\n case \"focusout\":\n case \"input\":\n case \"invalid\":\n case \"keydown\":\n case \"keypress\":\n case \"keyup\":\n case \"mousedown\":\n case \"mouseup\":\n case \"paste\":\n case \"pause\":\n case \"play\":\n case \"pointercancel\":\n case \"pointerdown\":\n case \"pointerup\":\n case \"ratechange\":\n case \"reset\":\n case \"seeked\":\n case \"submit\":\n case \"toggle\":\n case \"touchcancel\":\n case \"touchend\":\n case \"touchstart\":\n case \"volumechange\":\n case \"change\":\n case \"selectionchange\":\n case \"textInput\":\n case \"compositionstart\":\n case \"compositionend\":\n case \"compositionupdate\":\n case \"beforeblur\":\n case \"afterblur\":\n case \"beforeinput\":\n case \"blur\":\n case \"fullscreenchange\":\n case \"focus\":\n case \"hashchange\":\n case \"popstate\":\n case \"select\":\n case \"selectstart\":\n return 2;\n case \"drag\":\n case \"dragenter\":\n case \"dragexit\":\n case \"dragleave\":\n case \"dragover\":\n case \"mousemove\":\n case \"mouseout\":\n case \"mouseover\":\n case \"pointermove\":\n case \"pointerout\":\n case \"pointerover\":\n case \"resize\":\n case \"scroll\":\n case \"touchmove\":\n case \"wheel\":\n case \"mouseenter\":\n case \"mouseleave\":\n case \"pointerenter\":\n case \"pointerleave\":\n return 8;\n case \"message\":\n switch (getCurrentPriorityLevel()) {\n case ImmediatePriority:\n return 2;\n case UserBlockingPriority:\n return 8;\n case NormalPriority$1:\n case LowPriority:\n return 32;\n case IdlePriority:\n return 268435456;\n default:\n return 32;\n }\n default:\n return 32;\n }\n}\nvar hasScheduledReplayAttempt = !1,\n queuedFocus = null,\n queuedDrag = null,\n queuedMouse = null,\n queuedPointers = new Map(),\n queuedPointerCaptures = new Map(),\n queuedExplicitHydrationTargets = [],\n discreteReplayableEvents =\n \"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset\".split(\n \" \"\n );\nfunction clearIfContinuousEvent(domEventName, nativeEvent) {\n switch (domEventName) {\n case \"focusin\":\n case \"focusout\":\n queuedFocus = null;\n break;\n case \"dragenter\":\n case \"dragleave\":\n queuedDrag = null;\n break;\n case \"mouseover\":\n case \"mouseout\":\n queuedMouse = null;\n break;\n case \"pointerover\":\n case \"pointerout\":\n queuedPointers.delete(nativeEvent.pointerId);\n break;\n case \"gotpointercapture\":\n case \"lostpointercapture\":\n queuedPointerCaptures.delete(nativeEvent.pointerId);\n }\n}\nfunction accumulateOrCreateContinuousQueuedReplayableEvent(\n existingQueuedEvent,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n) {\n if (\n null === existingQueuedEvent ||\n existingQueuedEvent.nativeEvent !== nativeEvent\n )\n return (\n (existingQueuedEvent = {\n blockedOn: blockedOn,\n domEventName: domEventName,\n eventSystemFlags: eventSystemFlags,\n nativeEvent: nativeEvent,\n targetContainers: [targetContainer]\n }),\n null !== blockedOn &&\n ((blockedOn = getInstanceFromNode(blockedOn)),\n null !== blockedOn && attemptContinuousHydration(blockedOn)),\n existingQueuedEvent\n );\n existingQueuedEvent.eventSystemFlags |= eventSystemFlags;\n blockedOn = existingQueuedEvent.targetContainers;\n null !== targetContainer &&\n -1 === blockedOn.indexOf(targetContainer) &&\n blockedOn.push(targetContainer);\n return existingQueuedEvent;\n}\nfunction queueIfContinuousEvent(\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n) {\n switch (domEventName) {\n case \"focusin\":\n return (\n (queuedFocus = accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedFocus,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )),\n !0\n );\n case \"dragenter\":\n return (\n (queuedDrag = accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedDrag,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )),\n !0\n );\n case \"mouseover\":\n return (\n (queuedMouse = accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedMouse,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )),\n !0\n );\n case \"pointerover\":\n var pointerId = nativeEvent.pointerId;\n queuedPointers.set(\n pointerId,\n accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedPointers.get(pointerId) || null,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )\n );\n return !0;\n case \"gotpointercapture\":\n return (\n (pointerId = nativeEvent.pointerId),\n queuedPointerCaptures.set(\n pointerId,\n accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedPointerCaptures.get(pointerId) || null,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )\n ),\n !0\n );\n }\n return !1;\n}\nfunction attemptExplicitHydrationTarget(queuedTarget) {\n var targetInst = getClosestInstanceFromNode(queuedTarget.target);\n if (null !== targetInst) {\n var nearestMounted = getNearestMountedFiber(targetInst);\n if (null !== nearestMounted)\n if (((targetInst = nearestMounted.tag), 13 === targetInst)) {\n if (\n ((targetInst = getSuspenseInstanceFromFiber(nearestMounted)),\n null !== targetInst)\n ) {\n queuedTarget.blockedOn = targetInst;\n runWithPriority(queuedTarget.priority, function () {\n attemptHydrationAtCurrentPriority(nearestMounted);\n });\n return;\n }\n } else if (31 === targetInst) {\n if (\n ((targetInst = getActivityInstanceFromFiber(nearestMounted)),\n null !== targetInst)\n ) {\n queuedTarget.blockedOn = targetInst;\n runWithPriority(queuedTarget.priority, function () {\n attemptHydrationAtCurrentPriority(nearestMounted);\n });\n return;\n }\n } else if (\n 3 === targetInst &&\n nearestMounted.stateNode.current.memoizedState.isDehydrated\n ) {\n queuedTarget.blockedOn =\n 3 === nearestMounted.tag\n ? nearestMounted.stateNode.containerInfo\n : null;\n return;\n }\n }\n queuedTarget.blockedOn = null;\n}\nfunction attemptReplayContinuousQueuedEvent(queuedEvent) {\n if (null !== queuedEvent.blockedOn) return !1;\n for (\n var targetContainers = queuedEvent.targetContainers;\n 0 < targetContainers.length;\n\n ) {\n var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent);\n if (null === nextBlockedOn) {\n nextBlockedOn = queuedEvent.nativeEvent;\n var nativeEventClone = new nextBlockedOn.constructor(\n nextBlockedOn.type,\n nextBlockedOn\n );\n currentReplayingEvent = nativeEventClone;\n nextBlockedOn.target.dispatchEvent(nativeEventClone);\n currentReplayingEvent = null;\n } else\n return (\n (targetContainers = getInstanceFromNode(nextBlockedOn)),\n null !== targetContainers &&\n attemptContinuousHydration(targetContainers),\n (queuedEvent.blockedOn = nextBlockedOn),\n !1\n );\n targetContainers.shift();\n }\n return !0;\n}\nfunction attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {\n attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);\n}\nfunction replayUnblockedEvents() {\n hasScheduledReplayAttempt = !1;\n null !== queuedFocus &&\n attemptReplayContinuousQueuedEvent(queuedFocus) &&\n (queuedFocus = null);\n null !== queuedDrag &&\n attemptReplayContinuousQueuedEvent(queuedDrag) &&\n (queuedDrag = null);\n null !== queuedMouse &&\n attemptReplayContinuousQueuedEvent(queuedMouse) &&\n (queuedMouse = null);\n queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);\n queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);\n}\nfunction scheduleCallbackIfUnblocked(queuedEvent, unblocked) {\n queuedEvent.blockedOn === unblocked &&\n ((queuedEvent.blockedOn = null),\n hasScheduledReplayAttempt ||\n ((hasScheduledReplayAttempt = !0),\n Scheduler.unstable_scheduleCallback(\n Scheduler.unstable_NormalPriority,\n replayUnblockedEvents\n )));\n}\nvar lastScheduledReplayQueue = null;\nfunction scheduleReplayQueueIfNeeded(formReplayingQueue) {\n lastScheduledReplayQueue !== formReplayingQueue &&\n ((lastScheduledReplayQueue = formReplayingQueue),\n Scheduler.unstable_scheduleCallback(\n Scheduler.unstable_NormalPriority,\n function () {\n lastScheduledReplayQueue === formReplayingQueue &&\n (lastScheduledReplayQueue = null);\n for (var i = 0; i < formReplayingQueue.length; i += 3) {\n var form = formReplayingQueue[i],\n submitterOrAction = formReplayingQueue[i + 1],\n formData = formReplayingQueue[i + 2];\n if (\"function\" !== typeof submitterOrAction)\n if (null === findInstanceBlockingTarget(submitterOrAction || form))\n continue;\n else break;\n var formInst = getInstanceFromNode(form);\n null !== formInst &&\n (formReplayingQueue.splice(i, 3),\n (i -= 3),\n startHostTransition(\n formInst,\n {\n pending: !0,\n data: formData,\n method: form.method,\n action: submitterOrAction\n },\n submitterOrAction,\n formData\n ));\n }\n }\n ));\n}\nfunction retryIfBlockedOn(unblocked) {\n function unblock(queuedEvent) {\n return scheduleCallbackIfUnblocked(queuedEvent, unblocked);\n }\n null !== queuedFocus && scheduleCallbackIfUnblocked(queuedFocus, unblocked);\n null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked);\n null !== queuedMouse && scheduleCallbackIfUnblocked(queuedMouse, unblocked);\n queuedPointers.forEach(unblock);\n queuedPointerCaptures.forEach(unblock);\n for (var i = 0; i < queuedExplicitHydrationTargets.length; i++) {\n var queuedTarget = queuedExplicitHydrationTargets[i];\n queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null);\n }\n for (\n ;\n 0 < queuedExplicitHydrationTargets.length &&\n ((i = queuedExplicitHydrationTargets[0]), null === i.blockedOn);\n\n )\n attemptExplicitHydrationTarget(i),\n null === i.blockedOn && queuedExplicitHydrationTargets.shift();\n i = (unblocked.ownerDocument || unblocked).$$reactFormReplay;\n if (null != i)\n for (queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3) {\n var form = i[queuedTarget],\n submitterOrAction = i[queuedTarget + 1],\n formProps = form[internalPropsKey] || null;\n if (\"function\" === typeof submitterOrAction)\n formProps || scheduleReplayQueueIfNeeded(i);\n else if (formProps) {\n var action = null;\n if (submitterOrAction && submitterOrAction.hasAttribute(\"formAction\"))\n if (\n ((form = submitterOrAction),\n (formProps = submitterOrAction[internalPropsKey] || null))\n )\n action = formProps.formAction;\n else {\n if (null !== findInstanceBlockingTarget(form)) continue;\n }\n else action = formProps.action;\n \"function\" === typeof action\n ? (i[queuedTarget + 1] = action)\n : (i.splice(queuedTarget, 3), (queuedTarget -= 3));\n scheduleReplayQueueIfNeeded(i);\n }\n }\n}\nfunction defaultOnDefaultTransitionIndicator() {\n function handleNavigate(event) {\n event.canIntercept &&\n \"react-transition\" === event.info &&\n event.intercept({\n handler: function () {\n return new Promise(function (resolve) {\n return (pendingResolve = resolve);\n });\n },\n focusReset: \"manual\",\n scroll: \"manual\"\n });\n }\n function handleNavigateComplete() {\n null !== pendingResolve && (pendingResolve(), (pendingResolve = null));\n isCancelled || setTimeout(startFakeNavigation, 20);\n }\n function startFakeNavigation() {\n if (!isCancelled && !navigation.transition) {\n var currentEntry = navigation.currentEntry;\n currentEntry &&\n null != currentEntry.url &&\n navigation.navigate(currentEntry.url, {\n state: currentEntry.getState(),\n info: \"react-transition\",\n history: \"replace\"\n });\n }\n }\n if (\"object\" === typeof navigation) {\n var isCancelled = !1,\n pendingResolve = null;\n navigation.addEventListener(\"navigate\", handleNavigate);\n navigation.addEventListener(\"navigatesuccess\", handleNavigateComplete);\n navigation.addEventListener(\"navigateerror\", handleNavigateComplete);\n setTimeout(startFakeNavigation, 100);\n return function () {\n isCancelled = !0;\n navigation.removeEventListener(\"navigate\", handleNavigate);\n navigation.removeEventListener(\"navigatesuccess\", handleNavigateComplete);\n navigation.removeEventListener(\"navigateerror\", handleNavigateComplete);\n null !== pendingResolve && (pendingResolve(), (pendingResolve = null));\n };\n }\n}\nfunction ReactDOMRoot(internalRoot) {\n this._internalRoot = internalRoot;\n}\nReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render =\n function (children) {\n var root = this._internalRoot;\n if (null === root) throw Error(formatProdErrorMessage(409));\n var current = root.current,\n lane = requestUpdateLane();\n updateContainerImpl(current, lane, children, root, null, null);\n };\nReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount =\n function () {\n var root = this._internalRoot;\n if (null !== root) {\n this._internalRoot = null;\n var container = root.containerInfo;\n updateContainerImpl(root.current, 2, null, root, null, null);\n flushSyncWork$1();\n container[internalContainerInstanceKey] = null;\n }\n };\nfunction ReactDOMHydrationRoot(internalRoot) {\n this._internalRoot = internalRoot;\n}\nReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {\n if (target) {\n var updatePriority = resolveUpdatePriority();\n target = { blockedOn: null, target: target, priority: updatePriority };\n for (\n var i = 0;\n i < queuedExplicitHydrationTargets.length &&\n 0 !== updatePriority &&\n updatePriority < queuedExplicitHydrationTargets[i].priority;\n i++\n );\n queuedExplicitHydrationTargets.splice(i, 0, target);\n 0 === i && attemptExplicitHydrationTarget(target);\n }\n};\nvar isomorphicReactPackageVersion$jscomp$inline_2040 = React.version;\nif (\n \"19.3.0-canary-f93b9fd4-20251217\" !==\n isomorphicReactPackageVersion$jscomp$inline_2040\n)\n throw Error(\n formatProdErrorMessage(\n 527,\n isomorphicReactPackageVersion$jscomp$inline_2040,\n \"19.3.0-canary-f93b9fd4-20251217\"\n )\n );\nReactDOMSharedInternals.findDOMNode = function (componentOrElement) {\n var fiber = componentOrElement._reactInternals;\n if (void 0 === fiber) {\n if (\"function\" === typeof componentOrElement.render)\n throw Error(formatProdErrorMessage(188));\n componentOrElement = Object.keys(componentOrElement).join(\",\");\n throw Error(formatProdErrorMessage(268, componentOrElement));\n }\n componentOrElement = findCurrentFiberUsingSlowPath(fiber);\n componentOrElement =\n null !== componentOrElement\n ? findCurrentHostFiberImpl(componentOrElement)\n : null;\n componentOrElement =\n null === componentOrElement ? null : componentOrElement.stateNode;\n return componentOrElement;\n};\nvar internals$jscomp$inline_2628 = {\n bundleType: 0,\n version: \"19.3.0-canary-f93b9fd4-20251217\",\n rendererPackageName: \"react-dom\",\n currentDispatcherRef: ReactSharedInternals,\n reconcilerVersion: \"19.3.0-canary-f93b9fd4-20251217\"\n};\nif (\"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {\n var hook$jscomp$inline_2629 = __REACT_DEVTOOLS_GLOBAL_HOOK__;\n if (\n !hook$jscomp$inline_2629.isDisabled &&\n hook$jscomp$inline_2629.supportsFiber\n )\n try {\n (rendererID = hook$jscomp$inline_2629.inject(\n internals$jscomp$inline_2628\n )),\n (injectedHook = hook$jscomp$inline_2629);\n } catch (err) {}\n}\nexports.createRoot = function (container, options) {\n if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));\n var isStrictMode = !1,\n identifierPrefix = \"\",\n onUncaughtError = defaultOnUncaughtError,\n onCaughtError = defaultOnCaughtError,\n onRecoverableError = defaultOnRecoverableError;\n null !== options &&\n void 0 !== options &&\n (!0 === options.unstable_strictMode && (isStrictMode = !0),\n void 0 !== options.identifierPrefix &&\n (identifierPrefix = options.identifierPrefix),\n void 0 !== options.onUncaughtError &&\n (onUncaughtError = options.onUncaughtError),\n void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),\n void 0 !== options.onRecoverableError &&\n (onRecoverableError = options.onRecoverableError));\n options = createFiberRoot(\n container,\n 1,\n !1,\n null,\n null,\n isStrictMode,\n identifierPrefix,\n null,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n defaultOnDefaultTransitionIndicator\n );\n container[internalContainerInstanceKey] = options.current;\n listenToAllSupportedEvents(container);\n return new ReactDOMRoot(options);\n};\nexports.hydrateRoot = function (container, initialChildren, options) {\n if (!isValidContainer(container)) throw Error(formatProdErrorMessage(299));\n var isStrictMode = !1,\n identifierPrefix = \"\",\n onUncaughtError = defaultOnUncaughtError,\n onCaughtError = defaultOnCaughtError,\n onRecoverableError = defaultOnRecoverableError,\n formState = null;\n null !== options &&\n void 0 !== options &&\n (!0 === options.unstable_strictMode && (isStrictMode = !0),\n void 0 !== options.identifierPrefix &&\n (identifierPrefix = options.identifierPrefix),\n void 0 !== options.onUncaughtError &&\n (onUncaughtError = options.onUncaughtError),\n void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError),\n void 0 !== options.onRecoverableError &&\n (onRecoverableError = options.onRecoverableError),\n void 0 !== options.formState && (formState = options.formState));\n initialChildren = createFiberRoot(\n container,\n 1,\n !0,\n initialChildren,\n null != options ? options : null,\n isStrictMode,\n identifierPrefix,\n formState,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n defaultOnDefaultTransitionIndicator\n );\n initialChildren.context = getContextForSubtree(null);\n options = initialChildren.current;\n isStrictMode = requestUpdateLane();\n isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode);\n identifierPrefix = createUpdate(isStrictMode);\n identifierPrefix.callback = null;\n enqueueUpdate(options, identifierPrefix, isStrictMode);\n options = isStrictMode;\n initialChildren.current.lanes = options;\n markRootUpdated$1(initialChildren, options);\n ensureRootIsScheduled(initialChildren);\n container[internalContainerInstanceKey] = initialChildren.current;\n listenToAllSupportedEvents(container);\n return new ReactDOMHydrationRoot(initialChildren);\n};\nexports.version = \"19.3.0-canary-f93b9fd4-20251217\";\n","/**\n * @license React\n * react-dom.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar React = require(\"next/dist/compiled/react\");\nfunction formatProdErrorMessage(code) {\n var url = \"https://react.dev/errors/\" + code;\n if (1 < arguments.length) {\n url += \"?args[]=\" + encodeURIComponent(arguments[1]);\n for (var i = 2; i < arguments.length; i++)\n url += \"&args[]=\" + encodeURIComponent(arguments[i]);\n }\n return (\n \"Minified React error #\" +\n code +\n \"; visit \" +\n url +\n \" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"\n );\n}\nfunction noop() {}\nvar Internals = {\n d: {\n f: noop,\n r: function () {\n throw Error(formatProdErrorMessage(522));\n },\n D: noop,\n C: noop,\n L: noop,\n m: noop,\n X: noop,\n S: noop,\n M: noop\n },\n p: 0,\n findDOMNode: null\n },\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_OPTIMISTIC_KEY = Symbol.for(\"react.optimistic_key\");\nfunction createPortal$1(children, containerInfo, implementation) {\n var key =\n 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;\n return {\n $$typeof: REACT_PORTAL_TYPE,\n key:\n null == key\n ? null\n : key === REACT_OPTIMISTIC_KEY\n ? REACT_OPTIMISTIC_KEY\n : \"\" + key,\n children: children,\n containerInfo: containerInfo,\n implementation: implementation\n };\n}\nvar ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;\nfunction getCrossOriginStringAs(as, input) {\n if (\"font\" === as) return \"\";\n if (\"string\" === typeof input)\n return \"use-credentials\" === input ? input : \"\";\n}\nexports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =\n Internals;\nexports.createPortal = function (children, container) {\n var key =\n 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;\n if (\n !container ||\n (1 !== container.nodeType &&\n 9 !== container.nodeType &&\n 11 !== container.nodeType)\n )\n throw Error(formatProdErrorMessage(299));\n return createPortal$1(children, container, null, key);\n};\nexports.flushSync = function (fn) {\n var previousTransition = ReactSharedInternals.T,\n previousUpdatePriority = Internals.p;\n try {\n if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();\n } finally {\n (ReactSharedInternals.T = previousTransition),\n (Internals.p = previousUpdatePriority),\n Internals.d.f();\n }\n};\nexports.preconnect = function (href, options) {\n \"string\" === typeof href &&\n (options\n ? ((options = options.crossOrigin),\n (options =\n \"string\" === typeof options\n ? \"use-credentials\" === options\n ? options\n : \"\"\n : void 0))\n : (options = null),\n Internals.d.C(href, options));\n};\nexports.prefetchDNS = function (href) {\n \"string\" === typeof href && Internals.d.D(href);\n};\nexports.preinit = function (href, options) {\n if (\"string\" === typeof href && options && \"string\" === typeof options.as) {\n var as = options.as,\n crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),\n integrity =\n \"string\" === typeof options.integrity ? options.integrity : void 0,\n fetchPriority =\n \"string\" === typeof options.fetchPriority\n ? options.fetchPriority\n : void 0;\n \"style\" === as\n ? Internals.d.S(\n href,\n \"string\" === typeof options.precedence ? options.precedence : void 0,\n {\n crossOrigin: crossOrigin,\n integrity: integrity,\n fetchPriority: fetchPriority\n }\n )\n : \"script\" === as &&\n Internals.d.X(href, {\n crossOrigin: crossOrigin,\n integrity: integrity,\n fetchPriority: fetchPriority,\n nonce: \"string\" === typeof options.nonce ? options.nonce : void 0\n });\n }\n};\nexports.preinitModule = function (href, options) {\n if (\"string\" === typeof href)\n if (\"object\" === typeof options && null !== options) {\n if (null == options.as || \"script\" === options.as) {\n var crossOrigin = getCrossOriginStringAs(\n options.as,\n options.crossOrigin\n );\n Internals.d.M(href, {\n crossOrigin: crossOrigin,\n integrity:\n \"string\" === typeof options.integrity ? options.integrity : void 0,\n nonce: \"string\" === typeof options.nonce ? options.nonce : void 0\n });\n }\n } else null == options && Internals.d.M(href);\n};\nexports.preload = function (href, options) {\n if (\n \"string\" === typeof href &&\n \"object\" === typeof options &&\n null !== options &&\n \"string\" === typeof options.as\n ) {\n var as = options.as,\n crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);\n Internals.d.L(href, as, {\n crossOrigin: crossOrigin,\n integrity:\n \"string\" === typeof options.integrity ? options.integrity : void 0,\n nonce: \"string\" === typeof options.nonce ? options.nonce : void 0,\n type: \"string\" === typeof options.type ? options.type : void 0,\n fetchPriority:\n \"string\" === typeof options.fetchPriority\n ? options.fetchPriority\n : void 0,\n referrerPolicy:\n \"string\" === typeof options.referrerPolicy\n ? options.referrerPolicy\n : void 0,\n imageSrcSet:\n \"string\" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,\n imageSizes:\n \"string\" === typeof options.imageSizes ? options.imageSizes : void 0,\n media: \"string\" === typeof options.media ? options.media : void 0\n });\n }\n};\nexports.preloadModule = function (href, options) {\n if (\"string\" === typeof href)\n if (options) {\n var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);\n Internals.d.m(href, {\n as:\n \"string\" === typeof options.as && \"script\" !== options.as\n ? options.as\n : void 0,\n crossOrigin: crossOrigin,\n integrity:\n \"string\" === typeof options.integrity ? options.integrity : void 0\n });\n } else Internals.d.m(href);\n};\nexports.requestFormReset = function (form) {\n Internals.d.r(form);\n};\nexports.unstable_batchedUpdates = function (fn, a) {\n return fn(a);\n};\nexports.useFormState = function (action, initialState, permalink) {\n return ReactSharedInternals.H.useFormState(action, initialState, permalink);\n};\nexports.useFormStatus = function () {\n return ReactSharedInternals.H.useHostTransitionStatus();\n};\nexports.version = \"19.3.0-canary-f93b9fd4-20251217\";\n","'use strict';\n\nfunction checkDCE() {\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\n if (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'\n ) {\n return;\n }\n if (process.env.NODE_ENV !== 'production') {\n // This branch is unreachable because this function is only called\n // in production, but the condition is true only in development.\n // Therefore if the branch is still here, dead code elimination wasn't\n // properly applied.\n // Don't change the message. React DevTools relies on it. Also make sure\n // this message doesn't occur elsewhere in this function, or it will cause\n // a false positive.\n throw new Error('^_^');\n }\n try {\n // Verify that the code above has been dead code eliminated (DCE'd).\n __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);\n } catch (err) {\n // DevTools shouldn't crash React, no matter what.\n // We should still report in case we break this code.\n console.error(err);\n }\n}\n\nif (process.env.NODE_ENV === 'production') {\n // DCE check should happen before ReactDOM bundle executes so that\n // DevTools can report bad minification during injection.\n checkDCE();\n module.exports = require('./cjs/react-dom-client.production.js');\n} else {\n module.exports = require('./cjs/react-dom-client.development.js');\n}\n","'use strict';\n\nfunction checkDCE() {\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\n if (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'\n ) {\n return;\n }\n if (process.env.NODE_ENV !== 'production') {\n // This branch is unreachable because this function is only called\n // in production, but the condition is true only in development.\n // Therefore if the branch is still here, dead code elimination wasn't\n // properly applied.\n // Don't change the message. React DevTools relies on it. Also make sure\n // this message doesn't occur elsewhere in this function, or it will cause\n // a false positive.\n throw new Error('^_^');\n }\n try {\n // Verify that the code above has been dead code eliminated (DCE'd).\n __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);\n } catch (err) {\n // DevTools shouldn't crash React, no matter what.\n // We should still report in case we break this code.\n console.error(err);\n }\n}\n\nif (process.env.NODE_ENV === 'production') {\n // DCE check should happen before ReactDOM bundle executes so that\n // DevTools can report bad minification during injection.\n checkDCE();\n module.exports = require('./cjs/react-dom.production.js');\n} else {\n module.exports = require('./cjs/react-dom.development.js');\n}\n","/**\n * @license React\n * react-compiler-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar ReactSharedInternals =\n require(\"next/dist/compiled/react\").__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;\nexports.c = function (size) {\n return ReactSharedInternals.H.useMemoCache(size);\n};\n","/**\n * @license React\n * react-jsx-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\");\nfunction jsxProd(type, config, maybeKey) {\n var key = null;\n void 0 !== maybeKey && (key = \"\" + maybeKey);\n void 0 !== config.key && (key = \"\" + config.key);\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n config = maybeKey.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== config ? config : null,\n props: maybeKey\n };\n}\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsxProd;\nexports.jsxs = jsxProd;\n","/**\n * @license React\n * react.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_VIEW_TRANSITION_TYPE = Symbol.for(\"react.view_transition\"),\n MAYBE_ITERATOR_SYMBOL = Symbol.iterator;\nfunction getIteratorFn(maybeIterable) {\n if (null === maybeIterable || \"object\" !== typeof maybeIterable) return null;\n maybeIterable =\n (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||\n maybeIterable[\"@@iterator\"];\n return \"function\" === typeof maybeIterable ? maybeIterable : null;\n}\nvar ReactNoopUpdateQueue = {\n isMounted: function () {\n return !1;\n },\n enqueueForceUpdate: function () {},\n enqueueReplaceState: function () {},\n enqueueSetState: function () {}\n },\n assign = Object.assign,\n emptyObject = {};\nfunction Component(props, context, updater) {\n this.props = props;\n this.context = context;\n this.refs = emptyObject;\n this.updater = updater || ReactNoopUpdateQueue;\n}\nComponent.prototype.isReactComponent = {};\nComponent.prototype.setState = function (partialState, callback) {\n if (\n \"object\" !== typeof partialState &&\n \"function\" !== typeof partialState &&\n null != partialState\n )\n throw Error(\n \"takes an object of state variables to update or a function which returns an object of state variables.\"\n );\n this.updater.enqueueSetState(this, partialState, callback, \"setState\");\n};\nComponent.prototype.forceUpdate = function (callback) {\n this.updater.enqueueForceUpdate(this, callback, \"forceUpdate\");\n};\nfunction ComponentDummy() {}\nComponentDummy.prototype = Component.prototype;\nfunction PureComponent(props, context, updater) {\n this.props = props;\n this.context = context;\n this.refs = emptyObject;\n this.updater = updater || ReactNoopUpdateQueue;\n}\nvar pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());\npureComponentPrototype.constructor = PureComponent;\nassign(pureComponentPrototype, Component.prototype);\npureComponentPrototype.isPureReactComponent = !0;\nvar isArrayImpl = Array.isArray;\nfunction noop() {}\nvar ReactSharedInternals = { H: null, A: null, T: null, S: null },\n hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction ReactElement(type, key, props) {\n var refProp = props.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== refProp ? refProp : null,\n props: props\n };\n}\nfunction cloneAndReplaceKey(oldElement, newKey) {\n return ReactElement(oldElement.type, newKey, oldElement.props);\n}\nfunction isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n}\nfunction escape(key) {\n var escaperLookup = { \"=\": \"=0\", \":\": \"=2\" };\n return (\n \"$\" +\n key.replace(/[=:]/g, function (match) {\n return escaperLookup[match];\n })\n );\n}\nvar userProvidedKeyEscapeRegex = /\\/+/g;\nfunction getElementKey(element, index) {\n return \"object\" === typeof element && null !== element && null != element.key\n ? escape(\"\" + element.key)\n : index.toString(36);\n}\nfunction resolveThenable(thenable) {\n switch (thenable.status) {\n case \"fulfilled\":\n return thenable.value;\n case \"rejected\":\n throw thenable.reason;\n default:\n switch (\n (\"string\" === typeof thenable.status\n ? thenable.then(noop, noop)\n : ((thenable.status = \"pending\"),\n thenable.then(\n function (fulfilledValue) {\n \"pending\" === thenable.status &&\n ((thenable.status = \"fulfilled\"),\n (thenable.value = fulfilledValue));\n },\n function (error) {\n \"pending\" === thenable.status &&\n ((thenable.status = \"rejected\"), (thenable.reason = error));\n }\n )),\n thenable.status)\n ) {\n case \"fulfilled\":\n return thenable.value;\n case \"rejected\":\n throw thenable.reason;\n }\n }\n throw thenable;\n}\nfunction mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {\n var type = typeof children;\n if (\"undefined\" === type || \"boolean\" === type) children = null;\n var invokeCallback = !1;\n if (null === children) invokeCallback = !0;\n else\n switch (type) {\n case \"bigint\":\n case \"string\":\n case \"number\":\n invokeCallback = !0;\n break;\n case \"object\":\n switch (children.$$typeof) {\n case REACT_ELEMENT_TYPE:\n case REACT_PORTAL_TYPE:\n invokeCallback = !0;\n break;\n case REACT_LAZY_TYPE:\n return (\n (invokeCallback = children._init),\n mapIntoArray(\n invokeCallback(children._payload),\n array,\n escapedPrefix,\n nameSoFar,\n callback\n )\n );\n }\n }\n if (invokeCallback)\n return (\n (callback = callback(children)),\n (invokeCallback =\n \"\" === nameSoFar ? \".\" + getElementKey(children, 0) : nameSoFar),\n isArrayImpl(callback)\n ? ((escapedPrefix = \"\"),\n null != invokeCallback &&\n (escapedPrefix =\n invokeCallback.replace(userProvidedKeyEscapeRegex, \"$&/\") + \"/\"),\n mapIntoArray(callback, array, escapedPrefix, \"\", function (c) {\n return c;\n }))\n : null != callback &&\n (isValidElement(callback) &&\n (callback = cloneAndReplaceKey(\n callback,\n escapedPrefix +\n (null == callback.key ||\n (children && children.key === callback.key)\n ? \"\"\n : (\"\" + callback.key).replace(\n userProvidedKeyEscapeRegex,\n \"$&/\"\n ) + \"/\") +\n invokeCallback\n )),\n array.push(callback)),\n 1\n );\n invokeCallback = 0;\n var nextNamePrefix = \"\" === nameSoFar ? \".\" : nameSoFar + \":\";\n if (isArrayImpl(children))\n for (var i = 0; i < children.length; i++)\n (nameSoFar = children[i]),\n (type = nextNamePrefix + getElementKey(nameSoFar, i)),\n (invokeCallback += mapIntoArray(\n nameSoFar,\n array,\n escapedPrefix,\n type,\n callback\n ));\n else if (((i = getIteratorFn(children)), \"function\" === typeof i))\n for (\n children = i.call(children), i = 0;\n !(nameSoFar = children.next()).done;\n\n )\n (nameSoFar = nameSoFar.value),\n (type = nextNamePrefix + getElementKey(nameSoFar, i++)),\n (invokeCallback += mapIntoArray(\n nameSoFar,\n array,\n escapedPrefix,\n type,\n callback\n ));\n else if (\"object\" === type) {\n if (\"function\" === typeof children.then)\n return mapIntoArray(\n resolveThenable(children),\n array,\n escapedPrefix,\n nameSoFar,\n callback\n );\n array = String(children);\n throw Error(\n \"Objects are not valid as a React child (found: \" +\n (\"[object Object]\" === array\n ? \"object with keys {\" + Object.keys(children).join(\", \") + \"}\"\n : array) +\n \"). If you meant to render a collection of children, use an array instead.\"\n );\n }\n return invokeCallback;\n}\nfunction mapChildren(children, func, context) {\n if (null == children) return children;\n var result = [],\n count = 0;\n mapIntoArray(children, result, \"\", \"\", function (child) {\n return func.call(context, child, count++);\n });\n return result;\n}\nfunction lazyInitializer(payload) {\n if (-1 === payload._status) {\n var ctor = payload._result;\n ctor = ctor();\n ctor.then(\n function (moduleObject) {\n if (0 === payload._status || -1 === payload._status)\n (payload._status = 1), (payload._result = moduleObject);\n },\n function (error) {\n if (0 === payload._status || -1 === payload._status)\n (payload._status = 2), (payload._result = error);\n }\n );\n -1 === payload._status && ((payload._status = 0), (payload._result = ctor));\n }\n if (1 === payload._status) return payload._result.default;\n throw payload._result;\n}\nvar reportGlobalError =\n \"function\" === typeof reportError\n ? reportError\n : function (error) {\n if (\n \"object\" === typeof window &&\n \"function\" === typeof window.ErrorEvent\n ) {\n var event = new window.ErrorEvent(\"error\", {\n bubbles: !0,\n cancelable: !0,\n message:\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error),\n error: error\n });\n if (!window.dispatchEvent(event)) return;\n } else if (\n \"object\" === typeof process &&\n \"function\" === typeof process.emit\n ) {\n process.emit(\"uncaughtException\", error);\n return;\n }\n console.error(error);\n };\nfunction startTransition(scope) {\n var prevTransition = ReactSharedInternals.T,\n currentTransition = {};\n currentTransition.types =\n null !== prevTransition ? prevTransition.types : null;\n ReactSharedInternals.T = currentTransition;\n try {\n var returnValue = scope(),\n onStartTransitionFinish = ReactSharedInternals.S;\n null !== onStartTransitionFinish &&\n onStartTransitionFinish(currentTransition, returnValue);\n \"object\" === typeof returnValue &&\n null !== returnValue &&\n \"function\" === typeof returnValue.then &&\n returnValue.then(noop, reportGlobalError);\n } catch (error) {\n reportGlobalError(error);\n } finally {\n null !== prevTransition &&\n null !== currentTransition.types &&\n (prevTransition.types = currentTransition.types),\n (ReactSharedInternals.T = prevTransition);\n }\n}\nfunction addTransitionType(type) {\n var transition = ReactSharedInternals.T;\n if (null !== transition) {\n var transitionTypes = transition.types;\n null === transitionTypes\n ? (transition.types = [type])\n : -1 === transitionTypes.indexOf(type) && transitionTypes.push(type);\n } else startTransition(addTransitionType.bind(null, type));\n}\nvar Children = {\n map: mapChildren,\n forEach: function (children, forEachFunc, forEachContext) {\n mapChildren(\n children,\n function () {\n forEachFunc.apply(this, arguments);\n },\n forEachContext\n );\n },\n count: function (children) {\n var n = 0;\n mapChildren(children, function () {\n n++;\n });\n return n;\n },\n toArray: function (children) {\n return (\n mapChildren(children, function (child) {\n return child;\n }) || []\n );\n },\n only: function (children) {\n if (!isValidElement(children))\n throw Error(\n \"React.Children.only expected to receive a single React element child.\"\n );\n return children;\n }\n};\nexports.Activity = REACT_ACTIVITY_TYPE;\nexports.Children = Children;\nexports.Component = Component;\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.Profiler = REACT_PROFILER_TYPE;\nexports.PureComponent = PureComponent;\nexports.StrictMode = REACT_STRICT_MODE_TYPE;\nexports.Suspense = REACT_SUSPENSE_TYPE;\nexports.ViewTransition = REACT_VIEW_TRANSITION_TYPE;\nexports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =\n ReactSharedInternals;\nexports.__COMPILER_RUNTIME = {\n __proto__: null,\n c: function (size) {\n return ReactSharedInternals.H.useMemoCache(size);\n }\n};\nexports.addTransitionType = addTransitionType;\nexports.cache = function (fn) {\n return function () {\n return fn.apply(null, arguments);\n };\n};\nexports.cacheSignal = function () {\n return null;\n};\nexports.cloneElement = function (element, config, children) {\n if (null === element || void 0 === element)\n throw Error(\n \"The argument must be a React element, but you passed \" + element + \".\"\n );\n var props = assign({}, element.props),\n key = element.key;\n if (null != config)\n for (propName in (void 0 !== config.key && (key = \"\" + config.key), config))\n !hasOwnProperty.call(config, propName) ||\n \"key\" === propName ||\n \"__self\" === propName ||\n \"__source\" === propName ||\n (\"ref\" === propName && void 0 === config.ref) ||\n (props[propName] = config[propName]);\n var propName = arguments.length - 2;\n if (1 === propName) props.children = children;\n else if (1 < propName) {\n for (var childArray = Array(propName), i = 0; i < propName; i++)\n childArray[i] = arguments[i + 2];\n props.children = childArray;\n }\n return ReactElement(element.type, key, props);\n};\nexports.createContext = function (defaultValue) {\n defaultValue = {\n $$typeof: REACT_CONTEXT_TYPE,\n _currentValue: defaultValue,\n _currentValue2: defaultValue,\n _threadCount: 0,\n Provider: null,\n Consumer: null\n };\n defaultValue.Provider = defaultValue;\n defaultValue.Consumer = {\n $$typeof: REACT_CONSUMER_TYPE,\n _context: defaultValue\n };\n return defaultValue;\n};\nexports.createElement = function (type, config, children) {\n var propName,\n props = {},\n key = null;\n if (null != config)\n for (propName in (void 0 !== config.key && (key = \"\" + config.key), config))\n hasOwnProperty.call(config, propName) &&\n \"key\" !== propName &&\n \"__self\" !== propName &&\n \"__source\" !== propName &&\n (props[propName] = config[propName]);\n var childrenLength = arguments.length - 2;\n if (1 === childrenLength) props.children = children;\n else if (1 < childrenLength) {\n for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)\n childArray[i] = arguments[i + 2];\n props.children = childArray;\n }\n if (type && type.defaultProps)\n for (propName in ((childrenLength = type.defaultProps), childrenLength))\n void 0 === props[propName] &&\n (props[propName] = childrenLength[propName]);\n return ReactElement(type, key, props);\n};\nexports.createRef = function () {\n return { current: null };\n};\nexports.forwardRef = function (render) {\n return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };\n};\nexports.isValidElement = isValidElement;\nexports.lazy = function (ctor) {\n return {\n $$typeof: REACT_LAZY_TYPE,\n _payload: { _status: -1, _result: ctor },\n _init: lazyInitializer\n };\n};\nexports.memo = function (type, compare) {\n return {\n $$typeof: REACT_MEMO_TYPE,\n type: type,\n compare: void 0 === compare ? null : compare\n };\n};\nexports.startTransition = startTransition;\nexports.unstable_useCacheRefresh = function () {\n return ReactSharedInternals.H.useCacheRefresh();\n};\nexports.use = function (usable) {\n return ReactSharedInternals.H.use(usable);\n};\nexports.useActionState = function (action, initialState, permalink) {\n return ReactSharedInternals.H.useActionState(action, initialState, permalink);\n};\nexports.useCallback = function (callback, deps) {\n return ReactSharedInternals.H.useCallback(callback, deps);\n};\nexports.useContext = function (Context) {\n return ReactSharedInternals.H.useContext(Context);\n};\nexports.useDebugValue = function () {};\nexports.useDeferredValue = function (value, initialValue) {\n return ReactSharedInternals.H.useDeferredValue(value, initialValue);\n};\nexports.useEffect = function (create, deps) {\n return ReactSharedInternals.H.useEffect(create, deps);\n};\nexports.useEffectEvent = function (callback) {\n return ReactSharedInternals.H.useEffectEvent(callback);\n};\nexports.useId = function () {\n return ReactSharedInternals.H.useId();\n};\nexports.useImperativeHandle = function (ref, create, deps) {\n return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);\n};\nexports.useInsertionEffect = function (create, deps) {\n return ReactSharedInternals.H.useInsertionEffect(create, deps);\n};\nexports.useLayoutEffect = function (create, deps) {\n return ReactSharedInternals.H.useLayoutEffect(create, deps);\n};\nexports.useMemo = function (create, deps) {\n return ReactSharedInternals.H.useMemo(create, deps);\n};\nexports.useOptimistic = function (passthrough, reducer) {\n return ReactSharedInternals.H.useOptimistic(passthrough, reducer);\n};\nexports.useReducer = function (reducer, initialArg, init) {\n return ReactSharedInternals.H.useReducer(reducer, initialArg, init);\n};\nexports.useRef = function (initialValue) {\n return ReactSharedInternals.H.useRef(initialValue);\n};\nexports.useState = function (initialState) {\n return ReactSharedInternals.H.useState(initialState);\n};\nexports.useSyncExternalStore = function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n) {\n return ReactSharedInternals.H.useSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n};\nexports.useTransition = function () {\n return ReactSharedInternals.H.useTransition();\n};\nexports.version = \"19.3.0-canary-f93b9fd4-20251217\";\n","/**\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-compiler-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-compiler-runtime.development.js');\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react.production.js');\n} else {\n module.exports = require('./cjs/react.development.js');\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","/**\n * @license React\n * scheduler.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nfunction push(heap, node) {\n var index = heap.length;\n heap.push(node);\n a: for (; 0 < index; ) {\n var parentIndex = (index - 1) >>> 1,\n parent = heap[parentIndex];\n if (0 < compare(parent, node))\n (heap[parentIndex] = node), (heap[index] = parent), (index = parentIndex);\n else break a;\n }\n}\nfunction peek(heap) {\n return 0 === heap.length ? null : heap[0];\n}\nfunction pop(heap) {\n if (0 === heap.length) return null;\n var first = heap[0],\n last = heap.pop();\n if (last !== first) {\n heap[0] = last;\n a: for (\n var index = 0, length = heap.length, halfLength = length >>> 1;\n index < halfLength;\n\n ) {\n var leftIndex = 2 * (index + 1) - 1,\n left = heap[leftIndex],\n rightIndex = leftIndex + 1,\n right = heap[rightIndex];\n if (0 > compare(left, last))\n rightIndex < length && 0 > compare(right, left)\n ? ((heap[index] = right),\n (heap[rightIndex] = last),\n (index = rightIndex))\n : ((heap[index] = left),\n (heap[leftIndex] = last),\n (index = leftIndex));\n else if (rightIndex < length && 0 > compare(right, last))\n (heap[index] = right), (heap[rightIndex] = last), (index = rightIndex);\n else break a;\n }\n }\n return first;\n}\nfunction compare(a, b) {\n var diff = a.sortIndex - b.sortIndex;\n return 0 !== diff ? diff : a.id - b.id;\n}\nexports.unstable_now = void 0;\nif (\"object\" === typeof performance && \"function\" === typeof performance.now) {\n var localPerformance = performance;\n exports.unstable_now = function () {\n return localPerformance.now();\n };\n} else {\n var localDate = Date,\n initialTime = localDate.now();\n exports.unstable_now = function () {\n return localDate.now() - initialTime;\n };\n}\nvar taskQueue = [],\n timerQueue = [],\n taskIdCounter = 1,\n currentTask = null,\n currentPriorityLevel = 3,\n isPerformingWork = !1,\n isHostCallbackScheduled = !1,\n isHostTimeoutScheduled = !1,\n needsPaint = !1,\n localSetTimeout = \"function\" === typeof setTimeout ? setTimeout : null,\n localClearTimeout = \"function\" === typeof clearTimeout ? clearTimeout : null,\n localSetImmediate = \"undefined\" !== typeof setImmediate ? setImmediate : null;\nfunction advanceTimers(currentTime) {\n for (var timer = peek(timerQueue); null !== timer; ) {\n if (null === timer.callback) pop(timerQueue);\n else if (timer.startTime <= currentTime)\n pop(timerQueue),\n (timer.sortIndex = timer.expirationTime),\n push(taskQueue, timer);\n else break;\n timer = peek(timerQueue);\n }\n}\nfunction handleTimeout(currentTime) {\n isHostTimeoutScheduled = !1;\n advanceTimers(currentTime);\n if (!isHostCallbackScheduled)\n if (null !== peek(taskQueue))\n (isHostCallbackScheduled = !0),\n isMessageLoopRunning ||\n ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline());\n else {\n var firstTimer = peek(timerQueue);\n null !== firstTimer &&\n requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);\n }\n}\nvar isMessageLoopRunning = !1,\n taskTimeoutID = -1,\n frameInterval = 5,\n startTime = -1;\nfunction shouldYieldToHost() {\n return needsPaint\n ? !0\n : exports.unstable_now() - startTime < frameInterval\n ? !1\n : !0;\n}\nfunction performWorkUntilDeadline() {\n needsPaint = !1;\n if (isMessageLoopRunning) {\n var currentTime = exports.unstable_now();\n startTime = currentTime;\n var hasMoreWork = !0;\n try {\n a: {\n isHostCallbackScheduled = !1;\n isHostTimeoutScheduled &&\n ((isHostTimeoutScheduled = !1),\n localClearTimeout(taskTimeoutID),\n (taskTimeoutID = -1));\n isPerformingWork = !0;\n var previousPriorityLevel = currentPriorityLevel;\n try {\n b: {\n advanceTimers(currentTime);\n for (\n currentTask = peek(taskQueue);\n null !== currentTask &&\n !(\n currentTask.expirationTime > currentTime && shouldYieldToHost()\n );\n\n ) {\n var callback = currentTask.callback;\n if (\"function\" === typeof callback) {\n currentTask.callback = null;\n currentPriorityLevel = currentTask.priorityLevel;\n var continuationCallback = callback(\n currentTask.expirationTime <= currentTime\n );\n currentTime = exports.unstable_now();\n if (\"function\" === typeof continuationCallback) {\n currentTask.callback = continuationCallback;\n advanceTimers(currentTime);\n hasMoreWork = !0;\n break b;\n }\n currentTask === peek(taskQueue) && pop(taskQueue);\n advanceTimers(currentTime);\n } else pop(taskQueue);\n currentTask = peek(taskQueue);\n }\n if (null !== currentTask) hasMoreWork = !0;\n else {\n var firstTimer = peek(timerQueue);\n null !== firstTimer &&\n requestHostTimeout(\n handleTimeout,\n firstTimer.startTime - currentTime\n );\n hasMoreWork = !1;\n }\n }\n break a;\n } finally {\n (currentTask = null),\n (currentPriorityLevel = previousPriorityLevel),\n (isPerformingWork = !1);\n }\n hasMoreWork = void 0;\n }\n } finally {\n hasMoreWork\n ? schedulePerformWorkUntilDeadline()\n : (isMessageLoopRunning = !1);\n }\n }\n}\nvar schedulePerformWorkUntilDeadline;\nif (\"function\" === typeof localSetImmediate)\n schedulePerformWorkUntilDeadline = function () {\n localSetImmediate(performWorkUntilDeadline);\n };\nelse if (\"undefined\" !== typeof MessageChannel) {\n var channel = new MessageChannel(),\n port = channel.port2;\n channel.port1.onmessage = performWorkUntilDeadline;\n schedulePerformWorkUntilDeadline = function () {\n port.postMessage(null);\n };\n} else\n schedulePerformWorkUntilDeadline = function () {\n localSetTimeout(performWorkUntilDeadline, 0);\n };\nfunction requestHostTimeout(callback, ms) {\n taskTimeoutID = localSetTimeout(function () {\n callback(exports.unstable_now());\n }, ms);\n}\nexports.unstable_IdlePriority = 5;\nexports.unstable_ImmediatePriority = 1;\nexports.unstable_LowPriority = 4;\nexports.unstable_NormalPriority = 3;\nexports.unstable_Profiling = null;\nexports.unstable_UserBlockingPriority = 2;\nexports.unstable_cancelCallback = function (task) {\n task.callback = null;\n};\nexports.unstable_forceFrameRate = function (fps) {\n 0 > fps || 125 < fps\n ? console.error(\n \"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"\n )\n : (frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5);\n};\nexports.unstable_getCurrentPriorityLevel = function () {\n return currentPriorityLevel;\n};\nexports.unstable_next = function (eventHandler) {\n switch (currentPriorityLevel) {\n case 1:\n case 2:\n case 3:\n var priorityLevel = 3;\n break;\n default:\n priorityLevel = currentPriorityLevel;\n }\n var previousPriorityLevel = currentPriorityLevel;\n currentPriorityLevel = priorityLevel;\n try {\n return eventHandler();\n } finally {\n currentPriorityLevel = previousPriorityLevel;\n }\n};\nexports.unstable_requestPaint = function () {\n needsPaint = !0;\n};\nexports.unstable_runWithPriority = function (priorityLevel, eventHandler) {\n switch (priorityLevel) {\n case 1:\n case 2:\n case 3:\n case 4:\n case 5:\n break;\n default:\n priorityLevel = 3;\n }\n var previousPriorityLevel = currentPriorityLevel;\n currentPriorityLevel = priorityLevel;\n try {\n return eventHandler();\n } finally {\n currentPriorityLevel = previousPriorityLevel;\n }\n};\nexports.unstable_scheduleCallback = function (\n priorityLevel,\n callback,\n options\n) {\n var currentTime = exports.unstable_now();\n \"object\" === typeof options && null !== options\n ? ((options = options.delay),\n (options =\n \"number\" === typeof options && 0 < options\n ? currentTime + options\n : currentTime))\n : (options = currentTime);\n switch (priorityLevel) {\n case 1:\n var timeout = -1;\n break;\n case 2:\n timeout = 250;\n break;\n case 5:\n timeout = 1073741823;\n break;\n case 4:\n timeout = 1e4;\n break;\n default:\n timeout = 5e3;\n }\n timeout = options + timeout;\n priorityLevel = {\n id: taskIdCounter++,\n callback: callback,\n priorityLevel: priorityLevel,\n startTime: options,\n expirationTime: timeout,\n sortIndex: -1\n };\n options > currentTime\n ? ((priorityLevel.sortIndex = options),\n push(timerQueue, priorityLevel),\n null === peek(taskQueue) &&\n priorityLevel === peek(timerQueue) &&\n (isHostTimeoutScheduled\n ? (localClearTimeout(taskTimeoutID), (taskTimeoutID = -1))\n : (isHostTimeoutScheduled = !0),\n requestHostTimeout(handleTimeout, options - currentTime)))\n : ((priorityLevel.sortIndex = timeout),\n push(taskQueue, priorityLevel),\n isHostCallbackScheduled ||\n isPerformingWork ||\n ((isHostCallbackScheduled = !0),\n isMessageLoopRunning ||\n ((isMessageLoopRunning = !0), schedulePerformWorkUntilDeadline())));\n return priorityLevel;\n};\nexports.unstable_shouldYield = shouldYieldToHost;\nexports.unstable_wrapCallback = function (callback) {\n var parentPriorityLevel = currentPriorityLevel;\n return function () {\n var previousPriorityLevel = currentPriorityLevel;\n currentPriorityLevel = parentPriorityLevel;\n try {\n return callback.apply(this, arguments);\n } finally {\n currentPriorityLevel = previousPriorityLevel;\n }\n };\n};\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/scheduler.production.js');\n} else {\n module.exports = require('./cjs/scheduler.development.js');\n}\n","(()=>{\"use strict\";if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var e={};(()=>{var r=e;Object.defineProperty(r,\"__esModule\",{value:true});var n=\"<unknown>\";function parse(e){var r=e.split(\"\\n\");return r.reduce((function(e,r){var n=parseChrome(r)||parseWinjs(r)||parseGecko(r)||parseNode(r)||parseJSC(r);if(n){e.push(n)}return e}),[])}var a=/^\\s*at (.*?) ?\\(((?:file|https?|blob|chrome-extension|native|eval|webpack|webpack-internal|rsc|about|turbopack|<anonymous>|\\/|[a-z]:\\\\|\\\\\\\\).*?)(?::(\\d+))?(?::(\\d+))?\\)?\\s*$/i;var u=/\\((\\S*)(?::(\\d+))(?::(\\d+))\\)/;function parseChrome(e){var r=a.exec(e);if(!r){return null}var l=r[2]&&r[2].indexOf(\"native\")===0;var t=r[2]&&r[2].indexOf(\"eval\")===0;var i=u.exec(r[2]);if(t&&i!=null){r[2]=i[1];r[3]=i[2];r[4]=i[3]}return{file:!l?r[2]:null,methodName:r[1]||n,arguments:l?[r[2]]:[],lineNumber:r[3]?+r[3]:null,column:r[4]?+r[4]:null}}var l=/^\\s*at (?:((?:\\[object object\\])?.+) )?\\(?((?:file|ms-appx|https?|webpack|webpack-internal|rsc|about|turbopack|blob):.*?):(\\d+)(?::(\\d+))?\\)?\\s*$/i;function parseWinjs(e){var r=l.exec(e);if(!r){return null}return{file:r[2],methodName:r[1]||n,arguments:[],lineNumber:+r[3],column:r[4]?+r[4]:null}}var t=/^\\s*(.*?)(?:\\((.*?)\\))?(?:^|@)((?:file|https?|blob|chrome|webpack|webpack-internal|rsc|about|turbopack|resource|\\[native).*?|[^@]*bundle)(?::(\\d+))?(?::(\\d+))?\\s*$/i;var i=/(\\S+) line (\\d+)(?: > eval line \\d+)* > eval/i;function parseGecko(e){var r=t.exec(e);if(!r){return null}var a=r[3]&&r[3].indexOf(\" > eval\")>-1;var u=i.exec(r[3]);if(a&&u!=null){r[3]=u[1];r[4]=u[2];r[5]=null}return{file:r[3],methodName:r[1]||n,arguments:r[2]?r[2].split(\",\"):[],lineNumber:r[4]?+r[4]:null,column:r[5]?+r[5]:null}}var o=/^\\s*(?:([^@]*)(?:\\((.*?)\\))?@)?(\\S.*?):(\\d+)(?::(\\d+))?\\s*$/i;function parseJSC(e){var r=o.exec(e);if(!r){return null}return{file:r[3],methodName:r[1]||n,arguments:[],lineNumber:+r[4],column:r[5]?+r[5]:null}}var s=/^\\s*at (?:((?:\\[object object\\])?[^\\\\/]+(?: \\[as \\S+\\])?) )?\\(?(.*?):(\\d+)(?::(\\d+))?\\)?\\s*$/i;function parseNode(e){var r=s.exec(e);if(!r){return null}return{file:r[2],methodName:r[1]||n,arguments:[],lineNumber:+r[3],column:r[4]?+r[4]:null}}r.parse=parse})();module.exports=e})();","(()=>{\"use strict\";var e={511:e=>{e.exports=({onlyFirst:e=false}={})=>{const r=[\"[\\\\u001B\\\\u009B][[\\\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]+)*|[a-zA-Z\\\\d]+(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]*)*)?\\\\u0007)\",\"(?:(?:\\\\d{1,4}(?:;\\\\d{0,4})*)?[\\\\dA-PR-TZcf-ntqry=><~]))\"].join(\"|\");return new RegExp(r,e?undefined:\"g\")}},532:(e,r,_)=>{const t=_(511);e.exports=e=>typeof e===\"string\"?e.replace(t(),\"\"):e}};var r={};function __nccwpck_require__(_){var t=r[_];if(t!==undefined){return t.exports}var a=r[_]={exports:{}};var n=true;try{e[_](a,a.exports,__nccwpck_require__);n=false}finally{if(n)delete r[_]}return a.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var _=__nccwpck_require__(532);module.exports=_})();","/* @ts-check */\n/**\n * Style injection mechanism for Next.js devtools with shadow DOM support\n * Handles caching of style elements when the nextjs-portal shadow root is not available\n */\n\n// Global cache for style elements when shadow root is not available\nif (typeof window !== 'undefined') {\n window._nextjsDevtoolsStyleCache = window._nextjsDevtoolsStyleCache || {\n pendingElements: [],\n isObserving: false,\n lastInsertedElement: null,\n cachedShadowRoot: null, // Cache the shadow root once found\n }\n}\n\n/**\n * @returns {ShadowRoot | null}\n */\nfunction getShadowRoot() {\n const cache = window._nextjsDevtoolsStyleCache\n\n // Return cached shadow root if available\n if (cache.cachedShadowRoot) {\n return cache.cachedShadowRoot\n }\n\n // Query the DOM and cache the result if found\n const portal = document.querySelector('nextjs-portal')\n const shadowRoot = portal?.shadowRoot || null\n\n if (shadowRoot) {\n cache.cachedShadowRoot = shadowRoot\n }\n\n return shadowRoot\n}\n\n/**\n * @param {HTMLElement} element\n * @param {ShadowRoot} shadowRoot\n */\nfunction insertElementIntoShadowRoot(element, shadowRoot) {\n const cache = window._nextjsDevtoolsStyleCache\n\n if (!cache.lastInsertedElement) {\n shadowRoot.insertBefore(element, shadowRoot.firstChild)\n } else if (cache.lastInsertedElement.nextSibling) {\n shadowRoot.insertBefore(element, cache.lastInsertedElement.nextSibling)\n } else {\n shadowRoot.appendChild(element)\n }\n\n cache.lastInsertedElement = element\n}\n\nfunction flushCachedElements() {\n const cache = window._nextjsDevtoolsStyleCache\n const shadowRoot = getShadowRoot()\n\n if (!shadowRoot) {\n return\n }\n\n cache.pendingElements.forEach((element) => {\n insertElementIntoShadowRoot(element, shadowRoot)\n })\n cache.pendingElements = []\n}\n\nfunction startObservingForPortal() {\n const cache = window._nextjsDevtoolsStyleCache\n\n if (cache.isObserving) {\n return\n }\n cache.isObserving = true\n\n // First check if the portal already exists\n const shadowRoot = getShadowRoot() // This will cache it if found\n if (shadowRoot) {\n flushCachedElements()\n return\n }\n\n // Set up MutationObserver to watch for the portal element\n const observer = new MutationObserver((mutations) => {\n if (mutations.length === 0) {\n return\n }\n\n // Check all mutations and all added nodes\n for (const mutation of mutations) {\n if (mutation.addedNodes.length === 0) continue\n\n for (const addedNode of mutation.addedNodes) {\n if (addedNode.nodeType !== Node.ELEMENT_NODE) continue\n\n const mutationNode = addedNode\n\n let portalNode = null\n if (\n // app router: body > script[data-nextjs-dev-overlay] > nextjs-portal\n mutationNode.tagName === 'SCRIPT' &&\n mutationNode.getAttribute('data-nextjs-dev-overlay')\n ) {\n portalNode = mutationNode.firstChild\n } else if (\n // pages router: body > nextjs-portal\n mutationNode.tagName === 'NEXTJS-PORTAL'\n ) {\n portalNode = mutationNode\n }\n\n if (portalNode) {\n // Wait until shadow root is available\n const checkShadowRoot = () => {\n if (getShadowRoot()) {\n flushCachedElements()\n observer.disconnect()\n cache.isObserving = false\n } else {\n // Try again after a short delay\n setTimeout(checkShadowRoot, 20)\n }\n }\n checkShadowRoot()\n return // Exit early once we find a portal\n }\n }\n }\n })\n\n observer.observe(document.body, {\n childList: true,\n subtree: true,\n })\n}\n\n/**\n * @param {HTMLElement} element\n */\nfunction insertAtTop(element) {\n // Add special recognizable data prop to element\n element.setAttribute('data-nextjs-dev-tool-style', 'true')\n\n const shadowRoot = getShadowRoot()\n if (shadowRoot) {\n // Shadow root is available, insert directly\n insertElementIntoShadowRoot(element, shadowRoot)\n } else {\n // Shadow root not available, cache the element\n const cache = window._nextjsDevtoolsStyleCache\n cache.pendingElements.push(element)\n\n // Start observing for the portal if not already observing\n startObservingForPortal()\n }\n}\n\nmodule.exports = insertAtTop\n","(()=>{\"use strict\";var e={629:function(e,t,s){var r=this&&this.__createBinding||(Object.create?function(e,t,s,r){if(r===undefined)r=s;var a=Object.getOwnPropertyDescriptor(t,s);if(!a||(\"get\"in a?!t.__esModule:a.writable||a.configurable)){a={enumerable:true,get:function(){return t[s]}}}Object.defineProperty(e,r,a)}:function(e,t,s,r){if(r===undefined)r=s;e[r]=t[s]});var a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e[\"default\"]=t});var n=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var s in e)if(s!==\"default\"&&Object.prototype.hasOwnProperty.call(e,s))r(t,e,s);a(t,e);return t};var i=this&&this.__exportStar||function(e,t){for(var s in e)if(s!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,s))r(t,e,s)};Object.defineProperty(t,\"__esModule\",{value:true});t.z=void 0;const o=n(s(923));t.z=o;i(s(923),t);t[\"default\"]=o},348:(e,t,s)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.ZodError=t.quotelessJson=t.ZodIssueCode=void 0;const r=s(709);t.ZodIssueCode=r.util.arrayToEnum([\"invalid_type\",\"invalid_literal\",\"custom\",\"invalid_union\",\"invalid_union_discriminator\",\"invalid_enum_value\",\"unrecognized_keys\",\"invalid_arguments\",\"invalid_return_type\",\"invalid_date\",\"invalid_string\",\"too_small\",\"too_big\",\"invalid_intersection_types\",\"not_multiple_of\",\"not_finite\"]);const quotelessJson=e=>{const t=JSON.stringify(e,null,2);return t.replace(/\"([^\"]+)\":/g,\"$1:\")};t.quotelessJson=quotelessJson;class ZodError extends Error{get errors(){return this.issues}constructor(e){super();this.issues=[];this.addIssue=e=>{this.issues=[...this.issues,e]};this.addIssues=(e=[])=>{this.issues=[...this.issues,...e]};const t=new.target.prototype;if(Object.setPrototypeOf){Object.setPrototypeOf(this,t)}else{this.__proto__=t}this.name=\"ZodError\";this.issues=e}format(e){const t=e||function(e){return e.message};const s={_errors:[]};const processError=e=>{for(const r of e.issues){if(r.code===\"invalid_union\"){r.unionErrors.map(processError)}else if(r.code===\"invalid_return_type\"){processError(r.returnTypeError)}else if(r.code===\"invalid_arguments\"){processError(r.argumentsError)}else if(r.path.length===0){s._errors.push(t(r))}else{let e=s;let a=0;while(a<r.path.length){const s=r.path[a];const n=a===r.path.length-1;if(!n){e[s]=e[s]||{_errors:[]}}else{e[s]=e[s]||{_errors:[]};e[s]._errors.push(t(r))}e=e[s];a++}}}};processError(this);return s}static assert(e){if(!(e instanceof ZodError)){throw new Error(`Not a ZodError: ${e}`)}}toString(){return this.message}get message(){return JSON.stringify(this.issues,r.util.jsonStringifyReplacer,2)}get isEmpty(){return this.issues.length===0}flatten(e=(e=>e.message)){const t={};const s=[];for(const r of this.issues){if(r.path.length>0){const s=r.path[0];t[s]=t[s]||[];t[s].push(e(r))}else{s.push(e(r))}}return{formErrors:s,fieldErrors:t}}get formErrors(){return this.flatten()}}t.ZodError=ZodError;ZodError.create=e=>{const t=new ZodError(e);return t}},61:function(e,t,s){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,\"__esModule\",{value:true});t.defaultErrorMap=void 0;t.setErrorMap=setErrorMap;t.getErrorMap=getErrorMap;const a=r(s(871));t.defaultErrorMap=a.default;let n=a.default;function setErrorMap(e){n=e}function getErrorMap(){return n}},923:function(e,t,s){var r=this&&this.__createBinding||(Object.create?function(e,t,s,r){if(r===undefined)r=s;var a=Object.getOwnPropertyDescriptor(t,s);if(!a||(\"get\"in a?!t.__esModule:a.writable||a.configurable)){a={enumerable:true,get:function(){return t[s]}}}Object.defineProperty(e,r,a)}:function(e,t,s,r){if(r===undefined)r=s;e[r]=t[s]});var a=this&&this.__exportStar||function(e,t){for(var s in e)if(s!==\"default\"&&!Object.prototype.hasOwnProperty.call(t,s))r(t,e,s)};Object.defineProperty(t,\"__esModule\",{value:true});a(s(61),t);a(s(818),t);a(s(515),t);a(s(709),t);a(s(155),t);a(s(348),t)},538:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.errorUtil=void 0;var s;(function(e){e.errToObj=e=>typeof e===\"string\"?{message:e}:e||{};e.toString=e=>typeof e===\"string\"?e:e?.message})(s||(t.errorUtil=s={}))},818:function(e,t,s){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,\"__esModule\",{value:true});t.isAsync=t.isValid=t.isDirty=t.isAborted=t.OK=t.DIRTY=t.INVALID=t.ParseStatus=t.EMPTY_PATH=t.makeIssue=void 0;t.addIssueToContext=addIssueToContext;const a=s(61);const n=r(s(871));const makeIssue=e=>{const{data:t,path:s,errorMaps:r,issueData:a}=e;const n=[...s,...a.path||[]];const i={...a,path:n};if(a.message!==undefined){return{...a,path:n,message:a.message}}let o=\"\";const d=r.filter((e=>!!e)).slice().reverse();for(const e of d){o=e(i,{data:t,defaultError:o}).message}return{...a,path:n,message:o}};t.makeIssue=makeIssue;t.EMPTY_PATH=[];function addIssueToContext(e,s){const r=(0,a.getErrorMap)();const i=(0,t.makeIssue)({issueData:s,data:e.data,path:e.path,errorMaps:[e.common.contextualErrorMap,e.schemaErrorMap,r,r===n.default?undefined:n.default].filter((e=>!!e))});e.common.issues.push(i)}class ParseStatus{constructor(){this.value=\"valid\"}dirty(){if(this.value===\"valid\")this.value=\"dirty\"}abort(){if(this.value!==\"aborted\")this.value=\"aborted\"}static mergeArray(e,s){const r=[];for(const a of s){if(a.status===\"aborted\")return t.INVALID;if(a.status===\"dirty\")e.dirty();r.push(a.value)}return{status:e.value,value:r}}static async mergeObjectAsync(e,t){const s=[];for(const e of t){const t=await e.key;const r=await e.value;s.push({key:t,value:r})}return ParseStatus.mergeObjectSync(e,s)}static mergeObjectSync(e,s){const r={};for(const a of s){const{key:s,value:n}=a;if(s.status===\"aborted\")return t.INVALID;if(n.status===\"aborted\")return t.INVALID;if(s.status===\"dirty\")e.dirty();if(n.status===\"dirty\")e.dirty();if(s.value!==\"__proto__\"&&(typeof n.value!==\"undefined\"||a.alwaysSet)){r[s.value]=n.value}}return{status:e.value,value:r}}}t.ParseStatus=ParseStatus;t.INVALID=Object.freeze({status:\"aborted\"});const DIRTY=e=>({status:\"dirty\",value:e});t.DIRTY=DIRTY;const OK=e=>({status:\"valid\",value:e});t.OK=OK;const isAborted=e=>e.status===\"aborted\";t.isAborted=isAborted;const isDirty=e=>e.status===\"dirty\";t.isDirty=isDirty;const isValid=e=>e.status===\"valid\";t.isValid=isValid;const isAsync=e=>typeof Promise!==\"undefined\"&&e instanceof Promise;t.isAsync=isAsync},515:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true})},709:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.getParsedType=t.ZodParsedType=t.objectUtil=t.util=void 0;var s;(function(e){e.assertEqual=e=>{};function assertIs(e){}e.assertIs=assertIs;function assertNever(e){throw new Error}e.assertNever=assertNever;e.arrayToEnum=e=>{const t={};for(const s of e){t[s]=s}return t};e.getValidEnumValues=t=>{const s=e.objectKeys(t).filter((e=>typeof t[t[e]]!==\"number\"));const r={};for(const e of s){r[e]=t[e]}return e.objectValues(r)};e.objectValues=t=>e.objectKeys(t).map((function(e){return t[e]}));e.objectKeys=typeof Object.keys===\"function\"?e=>Object.keys(e):e=>{const t=[];for(const s in e){if(Object.prototype.hasOwnProperty.call(e,s)){t.push(s)}}return t};e.find=(e,t)=>{for(const s of e){if(t(s))return s}return undefined};e.isInteger=typeof Number.isInteger===\"function\"?e=>Number.isInteger(e):e=>typeof e===\"number\"&&Number.isFinite(e)&&Math.floor(e)===e;function joinValues(e,t=\" | \"){return e.map((e=>typeof e===\"string\"?`'${e}'`:e)).join(t)}e.joinValues=joinValues;e.jsonStringifyReplacer=(e,t)=>{if(typeof t===\"bigint\"){return t.toString()}return t}})(s||(t.util=s={}));var r;(function(e){e.mergeShapes=(e,t)=>({...e,...t})})(r||(t.objectUtil=r={}));t.ZodParsedType=s.arrayToEnum([\"string\",\"nan\",\"number\",\"integer\",\"float\",\"boolean\",\"date\",\"bigint\",\"symbol\",\"function\",\"undefined\",\"null\",\"array\",\"object\",\"unknown\",\"promise\",\"void\",\"never\",\"map\",\"set\"]);const getParsedType=e=>{const s=typeof e;switch(s){case\"undefined\":return t.ZodParsedType.undefined;case\"string\":return t.ZodParsedType.string;case\"number\":return Number.isNaN(e)?t.ZodParsedType.nan:t.ZodParsedType.number;case\"boolean\":return t.ZodParsedType.boolean;case\"function\":return t.ZodParsedType.function;case\"bigint\":return t.ZodParsedType.bigint;case\"symbol\":return t.ZodParsedType.symbol;case\"object\":if(Array.isArray(e)){return t.ZodParsedType.array}if(e===null){return t.ZodParsedType.null}if(e.then&&typeof e.then===\"function\"&&e.catch&&typeof e.catch===\"function\"){return t.ZodParsedType.promise}if(typeof Map!==\"undefined\"&&e instanceof Map){return t.ZodParsedType.map}if(typeof Set!==\"undefined\"&&e instanceof Set){return t.ZodParsedType.set}if(typeof Date!==\"undefined\"&&e instanceof Date){return t.ZodParsedType.date}return t.ZodParsedType.object;default:return t.ZodParsedType.unknown}};t.getParsedType=getParsedType},871:(e,t,s)=>{Object.defineProperty(t,\"__esModule\",{value:true});const r=s(348);const a=s(709);const errorMap=(e,t)=>{let s;switch(e.code){case r.ZodIssueCode.invalid_type:if(e.received===a.ZodParsedType.undefined){s=\"Required\"}else{s=`Expected ${e.expected}, received ${e.received}`}break;case r.ZodIssueCode.invalid_literal:s=`Invalid literal value, expected ${JSON.stringify(e.expected,a.util.jsonStringifyReplacer)}`;break;case r.ZodIssueCode.unrecognized_keys:s=`Unrecognized key(s) in object: ${a.util.joinValues(e.keys,\", \")}`;break;case r.ZodIssueCode.invalid_union:s=`Invalid input`;break;case r.ZodIssueCode.invalid_union_discriminator:s=`Invalid discriminator value. Expected ${a.util.joinValues(e.options)}`;break;case r.ZodIssueCode.invalid_enum_value:s=`Invalid enum value. Expected ${a.util.joinValues(e.options)}, received '${e.received}'`;break;case r.ZodIssueCode.invalid_arguments:s=`Invalid function arguments`;break;case r.ZodIssueCode.invalid_return_type:s=`Invalid function return type`;break;case r.ZodIssueCode.invalid_date:s=`Invalid date`;break;case r.ZodIssueCode.invalid_string:if(typeof e.validation===\"object\"){if(\"includes\"in e.validation){s=`Invalid input: must include \"${e.validation.includes}\"`;if(typeof e.validation.position===\"number\"){s=`${s} at one or more positions greater than or equal to ${e.validation.position}`}}else if(\"startsWith\"in e.validation){s=`Invalid input: must start with \"${e.validation.startsWith}\"`}else if(\"endsWith\"in e.validation){s=`Invalid input: must end with \"${e.validation.endsWith}\"`}else{a.util.assertNever(e.validation)}}else if(e.validation!==\"regex\"){s=`Invalid ${e.validation}`}else{s=\"Invalid\"}break;case r.ZodIssueCode.too_small:if(e.type===\"array\")s=`Array must contain ${e.exact?\"exactly\":e.inclusive?`at least`:`more than`} ${e.minimum} element(s)`;else if(e.type===\"string\")s=`String must contain ${e.exact?\"exactly\":e.inclusive?`at least`:`over`} ${e.minimum} character(s)`;else if(e.type===\"number\")s=`Number must be ${e.exact?`exactly equal to `:e.inclusive?`greater than or equal to `:`greater than `}${e.minimum}`;else if(e.type===\"bigint\")s=`Number must be ${e.exact?`exactly equal to `:e.inclusive?`greater than or equal to `:`greater than `}${e.minimum}`;else if(e.type===\"date\")s=`Date must be ${e.exact?`exactly equal to `:e.inclusive?`greater than or equal to `:`greater than `}${new Date(Number(e.minimum))}`;else s=\"Invalid input\";break;case r.ZodIssueCode.too_big:if(e.type===\"array\")s=`Array must contain ${e.exact?`exactly`:e.inclusive?`at most`:`less than`} ${e.maximum} element(s)`;else if(e.type===\"string\")s=`String must contain ${e.exact?`exactly`:e.inclusive?`at most`:`under`} ${e.maximum} character(s)`;else if(e.type===\"number\")s=`Number must be ${e.exact?`exactly`:e.inclusive?`less than or equal to`:`less than`} ${e.maximum}`;else if(e.type===\"bigint\")s=`BigInt must be ${e.exact?`exactly`:e.inclusive?`less than or equal to`:`less than`} ${e.maximum}`;else if(e.type===\"date\")s=`Date must be ${e.exact?`exactly`:e.inclusive?`smaller than or equal to`:`smaller than`} ${new Date(Number(e.maximum))}`;else s=\"Invalid input\";break;case r.ZodIssueCode.custom:s=`Invalid input`;break;case r.ZodIssueCode.invalid_intersection_types:s=`Intersection results could not be merged`;break;case r.ZodIssueCode.not_multiple_of:s=`Number must be a multiple of ${e.multipleOf}`;break;case r.ZodIssueCode.not_finite:s=\"Number must be finite\";break;default:s=t.defaultError;a.util.assertNever(e)}return{message:s}};t[\"default\"]=errorMap},155:(e,t,s)=>{Object.defineProperty(t,\"__esModule\",{value:true});t.discriminatedUnion=t.date=t.boolean=t.bigint=t.array=t.any=t.coerce=t.ZodFirstPartyTypeKind=t.late=t.ZodSchema=t.Schema=t.ZodReadonly=t.ZodPipeline=t.ZodBranded=t.BRAND=t.ZodNaN=t.ZodCatch=t.ZodDefault=t.ZodNullable=t.ZodOptional=t.ZodTransformer=t.ZodEffects=t.ZodPromise=t.ZodNativeEnum=t.ZodEnum=t.ZodLiteral=t.ZodLazy=t.ZodFunction=t.ZodSet=t.ZodMap=t.ZodRecord=t.ZodTuple=t.ZodIntersection=t.ZodDiscriminatedUnion=t.ZodUnion=t.ZodObject=t.ZodArray=t.ZodVoid=t.ZodNever=t.ZodUnknown=t.ZodAny=t.ZodNull=t.ZodUndefined=t.ZodSymbol=t.ZodDate=t.ZodBoolean=t.ZodBigInt=t.ZodNumber=t.ZodString=t.ZodType=void 0;t.NEVER=t[\"void\"]=t.unknown=t.union=t.undefined=t.tuple=t.transformer=t.symbol=t.string=t.strictObject=t.set=t.record=t.promise=t.preprocess=t.pipeline=t.ostring=t.optional=t.onumber=t.oboolean=t.object=t.number=t.nullable=t[\"null\"]=t.never=t.nativeEnum=t.nan=t.map=t.literal=t.lazy=t.intersection=t[\"instanceof\"]=t[\"function\"]=t[\"enum\"]=t.effect=void 0;t.datetimeRegex=datetimeRegex;t.custom=custom;const r=s(348);const a=s(61);const n=s(538);const i=s(818);const o=s(709);class ParseInputLazyPath{constructor(e,t,s,r){this._cachedPath=[];this.parent=e;this.data=t;this._path=s;this._key=r}get path(){if(!this._cachedPath.length){if(Array.isArray(this._key)){this._cachedPath.push(...this._path,...this._key)}else{this._cachedPath.push(...this._path,this._key)}}return this._cachedPath}}const handleResult=(e,t)=>{if((0,i.isValid)(t)){return{success:true,data:t.value}}else{if(!e.common.issues.length){throw new Error(\"Validation failed but no issues detected.\")}return{success:false,get error(){if(this._error)return this._error;const t=new r.ZodError(e.common.issues);this._error=t;return this._error}}}};function processCreateParams(e){if(!e)return{};const{errorMap:t,invalid_type_error:s,required_error:r,description:a}=e;if(t&&(s||r)){throw new Error(`Can't use \"invalid_type_error\" or \"required_error\" in conjunction with custom error map.`)}if(t)return{errorMap:t,description:a};const customMap=(t,a)=>{const{message:n}=e;if(t.code===\"invalid_enum_value\"){return{message:n??a.defaultError}}if(typeof a.data===\"undefined\"){return{message:n??r??a.defaultError}}if(t.code!==\"invalid_type\")return{message:a.defaultError};return{message:n??s??a.defaultError}};return{errorMap:customMap,description:a}}class ZodType{get description(){return this._def.description}_getType(e){return(0,o.getParsedType)(e.data)}_getOrReturnCtx(e,t){return t||{common:e.parent.common,data:e.data,parsedType:(0,o.getParsedType)(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}_processInputParams(e){return{status:new i.ParseStatus,ctx:{common:e.parent.common,data:e.data,parsedType:(0,o.getParsedType)(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){const t=this._parse(e);if((0,i.isAsync)(t)){throw new Error(\"Synchronous parse encountered promise.\")}return t}_parseAsync(e){const t=this._parse(e);return Promise.resolve(t)}parse(e,t){const s=this.safeParse(e,t);if(s.success)return s.data;throw s.error}safeParse(e,t){const s={common:{issues:[],async:t?.async??false,contextualErrorMap:t?.errorMap},path:t?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:(0,o.getParsedType)(e)};const r=this._parseSync({data:e,path:s.path,parent:s});return handleResult(s,r)}\"~validate\"(e){const t={common:{issues:[],async:!!this[\"~standard\"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:(0,o.getParsedType)(e)};if(!this[\"~standard\"].async){try{const s=this._parseSync({data:e,path:[],parent:t});return(0,i.isValid)(s)?{value:s.value}:{issues:t.common.issues}}catch(e){if(e?.message?.toLowerCase()?.includes(\"encountered\")){this[\"~standard\"].async=true}t.common={issues:[],async:true}}}return this._parseAsync({data:e,path:[],parent:t}).then((e=>(0,i.isValid)(e)?{value:e.value}:{issues:t.common.issues}))}async parseAsync(e,t){const s=await this.safeParseAsync(e,t);if(s.success)return s.data;throw s.error}async safeParseAsync(e,t){const s={common:{issues:[],contextualErrorMap:t?.errorMap,async:true},path:t?.path||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:(0,o.getParsedType)(e)};const r=this._parse({data:e,path:s.path,parent:s});const a=await((0,i.isAsync)(r)?r:Promise.resolve(r));return handleResult(s,a)}refine(e,t){const getIssueProperties=e=>{if(typeof t===\"string\"||typeof t===\"undefined\"){return{message:t}}else if(typeof t===\"function\"){return t(e)}else{return t}};return this._refinement(((t,s)=>{const a=e(t);const setError=()=>s.addIssue({code:r.ZodIssueCode.custom,...getIssueProperties(t)});if(typeof Promise!==\"undefined\"&&a instanceof Promise){return a.then((e=>{if(!e){setError();return false}else{return true}}))}if(!a){setError();return false}else{return true}}))}refinement(e,t){return this._refinement(((s,r)=>{if(!e(s)){r.addIssue(typeof t===\"function\"?t(s,r):t);return false}else{return true}}))}_refinement(e){return new ZodEffects({schema:this,typeName:k.ZodEffects,effect:{type:\"refinement\",refinement:e}})}superRefine(e){return this._refinement(e)}constructor(e){this.spa=this.safeParseAsync;this._def=e;this.parse=this.parse.bind(this);this.safeParse=this.safeParse.bind(this);this.parseAsync=this.parseAsync.bind(this);this.safeParseAsync=this.safeParseAsync.bind(this);this.spa=this.spa.bind(this);this.refine=this.refine.bind(this);this.refinement=this.refinement.bind(this);this.superRefine=this.superRefine.bind(this);this.optional=this.optional.bind(this);this.nullable=this.nullable.bind(this);this.nullish=this.nullish.bind(this);this.array=this.array.bind(this);this.promise=this.promise.bind(this);this.or=this.or.bind(this);this.and=this.and.bind(this);this.transform=this.transform.bind(this);this.brand=this.brand.bind(this);this.default=this.default.bind(this);this.catch=this.catch.bind(this);this.describe=this.describe.bind(this);this.pipe=this.pipe.bind(this);this.readonly=this.readonly.bind(this);this.isNullable=this.isNullable.bind(this);this.isOptional=this.isOptional.bind(this);this[\"~standard\"]={version:1,vendor:\"zod\",validate:e=>this[\"~validate\"](e)}}optional(){return ZodOptional.create(this,this._def)}nullable(){return ZodNullable.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return ZodArray.create(this)}promise(){return ZodPromise.create(this,this._def)}or(e){return ZodUnion.create([this,e],this._def)}and(e){return ZodIntersection.create(this,e,this._def)}transform(e){return new ZodEffects({...processCreateParams(this._def),schema:this,typeName:k.ZodEffects,effect:{type:\"transform\",transform:e}})}default(e){const t=typeof e===\"function\"?e:()=>e;return new ZodDefault({...processCreateParams(this._def),innerType:this,defaultValue:t,typeName:k.ZodDefault})}brand(){return new ZodBranded({typeName:k.ZodBranded,type:this,...processCreateParams(this._def)})}catch(e){const t=typeof e===\"function\"?e:()=>e;return new ZodCatch({...processCreateParams(this._def),innerType:this,catchValue:t,typeName:k.ZodCatch})}describe(e){const t=this.constructor;return new t({...this._def,description:e})}pipe(e){return ZodPipeline.create(this,e)}readonly(){return ZodReadonly.create(this)}isOptional(){return this.safeParse(undefined).success}isNullable(){return this.safeParse(null).success}}t.ZodType=ZodType;t.Schema=ZodType;t.ZodSchema=ZodType;const d=/^c[^\\s-]{8,}$/i;const u=/^[0-9a-z]+$/;const c=/^[0-9A-HJKMNP-TV-Z]{26}$/i;const l=/^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$/i;const p=/^[a-z0-9_-]{21}$/i;const f=/^[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]*$/;const h=/^[-+]?P(?!$)(?:(?:[-+]?\\d+Y)|(?:[-+]?\\d+[.,]\\d+Y$))?(?:(?:[-+]?\\d+M)|(?:[-+]?\\d+[.,]\\d+M$))?(?:(?:[-+]?\\d+W)|(?:[-+]?\\d+[.,]\\d+W$))?(?:(?:[-+]?\\d+D)|(?:[-+]?\\d+[.,]\\d+D$))?(?:T(?=[\\d+-])(?:(?:[-+]?\\d+H)|(?:[-+]?\\d+[.,]\\d+H$))?(?:(?:[-+]?\\d+M)|(?:[-+]?\\d+[.,]\\d+M$))?(?:[-+]?\\d+(?:[.,]\\d+)?S)?)??$/;const m=/^(?!\\.)(?!.*\\.\\.)([A-Z0-9_'+\\-\\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\\-]*\\.)+[A-Z]{2,}$/i;const y=`^(\\\\p{Extended_Pictographic}|\\\\p{Emoji_Component})+$`;let Z;const _=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/;const g=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\\/(3[0-2]|[12]?[0-9])$/;const v=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/;const I=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/;const T=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/;const b=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/;const x=`((\\\\d\\\\d[2468][048]|\\\\d\\\\d[13579][26]|\\\\d\\\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\\\d|30)|(02)-(0[1-9]|1\\\\d|2[0-8])))`;const C=new RegExp(`^${x}$`);function timeRegexSource(e){let t=`[0-5]\\\\d`;if(e.precision){t=`${t}\\\\.\\\\d{${e.precision}}`}else if(e.precision==null){t=`${t}(\\\\.\\\\d+)?`}const s=e.precision?\"+\":\"?\";return`([01]\\\\d|2[0-3]):[0-5]\\\\d(:${t})${s}`}function timeRegex(e){return new RegExp(`^${timeRegexSource(e)}$`)}function datetimeRegex(e){let t=`${x}T${timeRegexSource(e)}`;const s=[];s.push(e.local?`Z?`:`Z`);if(e.offset)s.push(`([+-]\\\\d{2}:?\\\\d{2})`);t=`${t}(${s.join(\"|\")})`;return new RegExp(`^${t}$`)}function isValidIP(e,t){if((t===\"v4\"||!t)&&_.test(e)){return true}if((t===\"v6\"||!t)&&v.test(e)){return true}return false}function isValidJWT(e,t){if(!f.test(e))return false;try{const[s]=e.split(\".\");if(!s)return false;const r=s.replace(/-/g,\"+\").replace(/_/g,\"/\").padEnd(s.length+(4-s.length%4)%4,\"=\");const a=JSON.parse(atob(r));if(typeof a!==\"object\"||a===null)return false;if(\"typ\"in a&&a?.typ!==\"JWT\")return false;if(!a.alg)return false;if(t&&a.alg!==t)return false;return true}catch{return false}}function isValidCidr(e,t){if((t===\"v4\"||!t)&&g.test(e)){return true}if((t===\"v6\"||!t)&&I.test(e)){return true}return false}class ZodString extends ZodType{_parse(e){if(this._def.coerce){e.data=String(e.data)}const t=this._getType(e);if(t!==o.ZodParsedType.string){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.string,received:t.parsedType});return i.INVALID}const s=new i.ParseStatus;let a=undefined;for(const t of this._def.checks){if(t.kind===\"min\"){if(e.data.length<t.value){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.too_small,minimum:t.value,type:\"string\",inclusive:true,exact:false,message:t.message});s.dirty()}}else if(t.kind===\"max\"){if(e.data.length>t.value){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.too_big,maximum:t.value,type:\"string\",inclusive:true,exact:false,message:t.message});s.dirty()}}else if(t.kind===\"length\"){const n=e.data.length>t.value;const o=e.data.length<t.value;if(n||o){a=this._getOrReturnCtx(e,a);if(n){(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.too_big,maximum:t.value,type:\"string\",inclusive:true,exact:true,message:t.message})}else if(o){(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.too_small,minimum:t.value,type:\"string\",inclusive:true,exact:true,message:t.message})}s.dirty()}}else if(t.kind===\"email\"){if(!m.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"email\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"emoji\"){if(!Z){Z=new RegExp(y,\"u\")}if(!Z.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"emoji\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"uuid\"){if(!l.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"uuid\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"nanoid\"){if(!p.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"nanoid\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"cuid\"){if(!d.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"cuid\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"cuid2\"){if(!u.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"cuid2\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"ulid\"){if(!c.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"ulid\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"url\"){try{new URL(e.data)}catch{a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"url\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"regex\"){t.regex.lastIndex=0;const n=t.regex.test(e.data);if(!n){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"regex\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"trim\"){e.data=e.data.trim()}else if(t.kind===\"includes\"){if(!e.data.includes(t.value,t.position)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.invalid_string,validation:{includes:t.value,position:t.position},message:t.message});s.dirty()}}else if(t.kind===\"toLowerCase\"){e.data=e.data.toLowerCase()}else if(t.kind===\"toUpperCase\"){e.data=e.data.toUpperCase()}else if(t.kind===\"startsWith\"){if(!e.data.startsWith(t.value)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.invalid_string,validation:{startsWith:t.value},message:t.message});s.dirty()}}else if(t.kind===\"endsWith\"){if(!e.data.endsWith(t.value)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.invalid_string,validation:{endsWith:t.value},message:t.message});s.dirty()}}else if(t.kind===\"datetime\"){const n=datetimeRegex(t);if(!n.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.invalid_string,validation:\"datetime\",message:t.message});s.dirty()}}else if(t.kind===\"date\"){const n=C;if(!n.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.invalid_string,validation:\"date\",message:t.message});s.dirty()}}else if(t.kind===\"time\"){const n=timeRegex(t);if(!n.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.invalid_string,validation:\"time\",message:t.message});s.dirty()}}else if(t.kind===\"duration\"){if(!h.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"duration\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"ip\"){if(!isValidIP(e.data,t.version)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"ip\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"jwt\"){if(!isValidJWT(e.data,t.alg)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"jwt\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"cidr\"){if(!isValidCidr(e.data,t.version)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"cidr\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"base64\"){if(!T.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"base64\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else if(t.kind===\"base64url\"){if(!b.test(e.data)){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{validation:\"base64url\",code:r.ZodIssueCode.invalid_string,message:t.message});s.dirty()}}else{o.util.assertNever(t)}}return{status:s.value,value:e.data}}_regex(e,t,s){return this.refinement((t=>e.test(t)),{validation:t,code:r.ZodIssueCode.invalid_string,...n.errorUtil.errToObj(s)})}_addCheck(e){return new ZodString({...this._def,checks:[...this._def.checks,e]})}email(e){return this._addCheck({kind:\"email\",...n.errorUtil.errToObj(e)})}url(e){return this._addCheck({kind:\"url\",...n.errorUtil.errToObj(e)})}emoji(e){return this._addCheck({kind:\"emoji\",...n.errorUtil.errToObj(e)})}uuid(e){return this._addCheck({kind:\"uuid\",...n.errorUtil.errToObj(e)})}nanoid(e){return this._addCheck({kind:\"nanoid\",...n.errorUtil.errToObj(e)})}cuid(e){return this._addCheck({kind:\"cuid\",...n.errorUtil.errToObj(e)})}cuid2(e){return this._addCheck({kind:\"cuid2\",...n.errorUtil.errToObj(e)})}ulid(e){return this._addCheck({kind:\"ulid\",...n.errorUtil.errToObj(e)})}base64(e){return this._addCheck({kind:\"base64\",...n.errorUtil.errToObj(e)})}base64url(e){return this._addCheck({kind:\"base64url\",...n.errorUtil.errToObj(e)})}jwt(e){return this._addCheck({kind:\"jwt\",...n.errorUtil.errToObj(e)})}ip(e){return this._addCheck({kind:\"ip\",...n.errorUtil.errToObj(e)})}cidr(e){return this._addCheck({kind:\"cidr\",...n.errorUtil.errToObj(e)})}datetime(e){if(typeof e===\"string\"){return this._addCheck({kind:\"datetime\",precision:null,offset:false,local:false,message:e})}return this._addCheck({kind:\"datetime\",precision:typeof e?.precision===\"undefined\"?null:e?.precision,offset:e?.offset??false,local:e?.local??false,...n.errorUtil.errToObj(e?.message)})}date(e){return this._addCheck({kind:\"date\",message:e})}time(e){if(typeof e===\"string\"){return this._addCheck({kind:\"time\",precision:null,message:e})}return this._addCheck({kind:\"time\",precision:typeof e?.precision===\"undefined\"?null:e?.precision,...n.errorUtil.errToObj(e?.message)})}duration(e){return this._addCheck({kind:\"duration\",...n.errorUtil.errToObj(e)})}regex(e,t){return this._addCheck({kind:\"regex\",regex:e,...n.errorUtil.errToObj(t)})}includes(e,t){return this._addCheck({kind:\"includes\",value:e,position:t?.position,...n.errorUtil.errToObj(t?.message)})}startsWith(e,t){return this._addCheck({kind:\"startsWith\",value:e,...n.errorUtil.errToObj(t)})}endsWith(e,t){return this._addCheck({kind:\"endsWith\",value:e,...n.errorUtil.errToObj(t)})}min(e,t){return this._addCheck({kind:\"min\",value:e,...n.errorUtil.errToObj(t)})}max(e,t){return this._addCheck({kind:\"max\",value:e,...n.errorUtil.errToObj(t)})}length(e,t){return this._addCheck({kind:\"length\",value:e,...n.errorUtil.errToObj(t)})}nonempty(e){return this.min(1,n.errorUtil.errToObj(e))}trim(){return new ZodString({...this._def,checks:[...this._def.checks,{kind:\"trim\"}]})}toLowerCase(){return new ZodString({...this._def,checks:[...this._def.checks,{kind:\"toLowerCase\"}]})}toUpperCase(){return new ZodString({...this._def,checks:[...this._def.checks,{kind:\"toUpperCase\"}]})}get isDatetime(){return!!this._def.checks.find((e=>e.kind===\"datetime\"))}get isDate(){return!!this._def.checks.find((e=>e.kind===\"date\"))}get isTime(){return!!this._def.checks.find((e=>e.kind===\"time\"))}get isDuration(){return!!this._def.checks.find((e=>e.kind===\"duration\"))}get isEmail(){return!!this._def.checks.find((e=>e.kind===\"email\"))}get isURL(){return!!this._def.checks.find((e=>e.kind===\"url\"))}get isEmoji(){return!!this._def.checks.find((e=>e.kind===\"emoji\"))}get isUUID(){return!!this._def.checks.find((e=>e.kind===\"uuid\"))}get isNANOID(){return!!this._def.checks.find((e=>e.kind===\"nanoid\"))}get isCUID(){return!!this._def.checks.find((e=>e.kind===\"cuid\"))}get isCUID2(){return!!this._def.checks.find((e=>e.kind===\"cuid2\"))}get isULID(){return!!this._def.checks.find((e=>e.kind===\"ulid\"))}get isIP(){return!!this._def.checks.find((e=>e.kind===\"ip\"))}get isCIDR(){return!!this._def.checks.find((e=>e.kind===\"cidr\"))}get isBase64(){return!!this._def.checks.find((e=>e.kind===\"base64\"))}get isBase64url(){return!!this._def.checks.find((e=>e.kind===\"base64url\"))}get minLength(){let e=null;for(const t of this._def.checks){if(t.kind===\"min\"){if(e===null||t.value>e)e=t.value}}return e}get maxLength(){let e=null;for(const t of this._def.checks){if(t.kind===\"max\"){if(e===null||t.value<e)e=t.value}}return e}}t.ZodString=ZodString;ZodString.create=e=>new ZodString({checks:[],typeName:k.ZodString,coerce:e?.coerce??false,...processCreateParams(e)});function floatSafeRemainder(e,t){const s=(e.toString().split(\".\")[1]||\"\").length;const r=(t.toString().split(\".\")[1]||\"\").length;const a=s>r?s:r;const n=Number.parseInt(e.toFixed(a).replace(\".\",\"\"));const i=Number.parseInt(t.toFixed(a).replace(\".\",\"\"));return n%i/10**a}class ZodNumber extends ZodType{constructor(){super(...arguments);this.min=this.gte;this.max=this.lte;this.step=this.multipleOf}_parse(e){if(this._def.coerce){e.data=Number(e.data)}const t=this._getType(e);if(t!==o.ZodParsedType.number){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.number,received:t.parsedType});return i.INVALID}let s=undefined;const a=new i.ParseStatus;for(const t of this._def.checks){if(t.kind===\"int\"){if(!o.util.isInteger(e.data)){s=this._getOrReturnCtx(e,s);(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.invalid_type,expected:\"integer\",received:\"float\",message:t.message});a.dirty()}}else if(t.kind===\"min\"){const n=t.inclusive?e.data<t.value:e.data<=t.value;if(n){s=this._getOrReturnCtx(e,s);(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.too_small,minimum:t.value,type:\"number\",inclusive:t.inclusive,exact:false,message:t.message});a.dirty()}}else if(t.kind===\"max\"){const n=t.inclusive?e.data>t.value:e.data>=t.value;if(n){s=this._getOrReturnCtx(e,s);(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.too_big,maximum:t.value,type:\"number\",inclusive:t.inclusive,exact:false,message:t.message});a.dirty()}}else if(t.kind===\"multipleOf\"){if(floatSafeRemainder(e.data,t.value)!==0){s=this._getOrReturnCtx(e,s);(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.not_multiple_of,multipleOf:t.value,message:t.message});a.dirty()}}else if(t.kind===\"finite\"){if(!Number.isFinite(e.data)){s=this._getOrReturnCtx(e,s);(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.not_finite,message:t.message});a.dirty()}}else{o.util.assertNever(t)}}return{status:a.value,value:e.data}}gte(e,t){return this.setLimit(\"min\",e,true,n.errorUtil.toString(t))}gt(e,t){return this.setLimit(\"min\",e,false,n.errorUtil.toString(t))}lte(e,t){return this.setLimit(\"max\",e,true,n.errorUtil.toString(t))}lt(e,t){return this.setLimit(\"max\",e,false,n.errorUtil.toString(t))}setLimit(e,t,s,r){return new ZodNumber({...this._def,checks:[...this._def.checks,{kind:e,value:t,inclusive:s,message:n.errorUtil.toString(r)}]})}_addCheck(e){return new ZodNumber({...this._def,checks:[...this._def.checks,e]})}int(e){return this._addCheck({kind:\"int\",message:n.errorUtil.toString(e)})}positive(e){return this._addCheck({kind:\"min\",value:0,inclusive:false,message:n.errorUtil.toString(e)})}negative(e){return this._addCheck({kind:\"max\",value:0,inclusive:false,message:n.errorUtil.toString(e)})}nonpositive(e){return this._addCheck({kind:\"max\",value:0,inclusive:true,message:n.errorUtil.toString(e)})}nonnegative(e){return this._addCheck({kind:\"min\",value:0,inclusive:true,message:n.errorUtil.toString(e)})}multipleOf(e,t){return this._addCheck({kind:\"multipleOf\",value:e,message:n.errorUtil.toString(t)})}finite(e){return this._addCheck({kind:\"finite\",message:n.errorUtil.toString(e)})}safe(e){return this._addCheck({kind:\"min\",inclusive:true,value:Number.MIN_SAFE_INTEGER,message:n.errorUtil.toString(e)})._addCheck({kind:\"max\",inclusive:true,value:Number.MAX_SAFE_INTEGER,message:n.errorUtil.toString(e)})}get minValue(){let e=null;for(const t of this._def.checks){if(t.kind===\"min\"){if(e===null||t.value>e)e=t.value}}return e}get maxValue(){let e=null;for(const t of this._def.checks){if(t.kind===\"max\"){if(e===null||t.value<e)e=t.value}}return e}get isInt(){return!!this._def.checks.find((e=>e.kind===\"int\"||e.kind===\"multipleOf\"&&o.util.isInteger(e.value)))}get isFinite(){let e=null;let t=null;for(const s of this._def.checks){if(s.kind===\"finite\"||s.kind===\"int\"||s.kind===\"multipleOf\"){return true}else if(s.kind===\"min\"){if(t===null||s.value>t)t=s.value}else if(s.kind===\"max\"){if(e===null||s.value<e)e=s.value}}return Number.isFinite(t)&&Number.isFinite(e)}}t.ZodNumber=ZodNumber;ZodNumber.create=e=>new ZodNumber({checks:[],typeName:k.ZodNumber,coerce:e?.coerce||false,...processCreateParams(e)});class ZodBigInt extends ZodType{constructor(){super(...arguments);this.min=this.gte;this.max=this.lte}_parse(e){if(this._def.coerce){try{e.data=BigInt(e.data)}catch{return this._getInvalidInput(e)}}const t=this._getType(e);if(t!==o.ZodParsedType.bigint){return this._getInvalidInput(e)}let s=undefined;const a=new i.ParseStatus;for(const t of this._def.checks){if(t.kind===\"min\"){const n=t.inclusive?e.data<t.value:e.data<=t.value;if(n){s=this._getOrReturnCtx(e,s);(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.too_small,type:\"bigint\",minimum:t.value,inclusive:t.inclusive,message:t.message});a.dirty()}}else if(t.kind===\"max\"){const n=t.inclusive?e.data>t.value:e.data>=t.value;if(n){s=this._getOrReturnCtx(e,s);(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.too_big,type:\"bigint\",maximum:t.value,inclusive:t.inclusive,message:t.message});a.dirty()}}else if(t.kind===\"multipleOf\"){if(e.data%t.value!==BigInt(0)){s=this._getOrReturnCtx(e,s);(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.not_multiple_of,multipleOf:t.value,message:t.message});a.dirty()}}else{o.util.assertNever(t)}}return{status:a.value,value:e.data}}_getInvalidInput(e){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.bigint,received:t.parsedType});return i.INVALID}gte(e,t){return this.setLimit(\"min\",e,true,n.errorUtil.toString(t))}gt(e,t){return this.setLimit(\"min\",e,false,n.errorUtil.toString(t))}lte(e,t){return this.setLimit(\"max\",e,true,n.errorUtil.toString(t))}lt(e,t){return this.setLimit(\"max\",e,false,n.errorUtil.toString(t))}setLimit(e,t,s,r){return new ZodBigInt({...this._def,checks:[...this._def.checks,{kind:e,value:t,inclusive:s,message:n.errorUtil.toString(r)}]})}_addCheck(e){return new ZodBigInt({...this._def,checks:[...this._def.checks,e]})}positive(e){return this._addCheck({kind:\"min\",value:BigInt(0),inclusive:false,message:n.errorUtil.toString(e)})}negative(e){return this._addCheck({kind:\"max\",value:BigInt(0),inclusive:false,message:n.errorUtil.toString(e)})}nonpositive(e){return this._addCheck({kind:\"max\",value:BigInt(0),inclusive:true,message:n.errorUtil.toString(e)})}nonnegative(e){return this._addCheck({kind:\"min\",value:BigInt(0),inclusive:true,message:n.errorUtil.toString(e)})}multipleOf(e,t){return this._addCheck({kind:\"multipleOf\",value:e,message:n.errorUtil.toString(t)})}get minValue(){let e=null;for(const t of this._def.checks){if(t.kind===\"min\"){if(e===null||t.value>e)e=t.value}}return e}get maxValue(){let e=null;for(const t of this._def.checks){if(t.kind===\"max\"){if(e===null||t.value<e)e=t.value}}return e}}t.ZodBigInt=ZodBigInt;ZodBigInt.create=e=>new ZodBigInt({checks:[],typeName:k.ZodBigInt,coerce:e?.coerce??false,...processCreateParams(e)});class ZodBoolean extends ZodType{_parse(e){if(this._def.coerce){e.data=Boolean(e.data)}const t=this._getType(e);if(t!==o.ZodParsedType.boolean){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.boolean,received:t.parsedType});return i.INVALID}return(0,i.OK)(e.data)}}t.ZodBoolean=ZodBoolean;ZodBoolean.create=e=>new ZodBoolean({typeName:k.ZodBoolean,coerce:e?.coerce||false,...processCreateParams(e)});class ZodDate extends ZodType{_parse(e){if(this._def.coerce){e.data=new Date(e.data)}const t=this._getType(e);if(t!==o.ZodParsedType.date){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.date,received:t.parsedType});return i.INVALID}if(Number.isNaN(e.data.getTime())){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_date});return i.INVALID}const s=new i.ParseStatus;let a=undefined;for(const t of this._def.checks){if(t.kind===\"min\"){if(e.data.getTime()<t.value){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.too_small,message:t.message,inclusive:true,exact:false,minimum:t.value,type:\"date\"});s.dirty()}}else if(t.kind===\"max\"){if(e.data.getTime()>t.value){a=this._getOrReturnCtx(e,a);(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.too_big,message:t.message,inclusive:true,exact:false,maximum:t.value,type:\"date\"});s.dirty()}}else{o.util.assertNever(t)}}return{status:s.value,value:new Date(e.data.getTime())}}_addCheck(e){return new ZodDate({...this._def,checks:[...this._def.checks,e]})}min(e,t){return this._addCheck({kind:\"min\",value:e.getTime(),message:n.errorUtil.toString(t)})}max(e,t){return this._addCheck({kind:\"max\",value:e.getTime(),message:n.errorUtil.toString(t)})}get minDate(){let e=null;for(const t of this._def.checks){if(t.kind===\"min\"){if(e===null||t.value>e)e=t.value}}return e!=null?new Date(e):null}get maxDate(){let e=null;for(const t of this._def.checks){if(t.kind===\"max\"){if(e===null||t.value<e)e=t.value}}return e!=null?new Date(e):null}}t.ZodDate=ZodDate;ZodDate.create=e=>new ZodDate({checks:[],coerce:e?.coerce||false,typeName:k.ZodDate,...processCreateParams(e)});class ZodSymbol extends ZodType{_parse(e){const t=this._getType(e);if(t!==o.ZodParsedType.symbol){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.symbol,received:t.parsedType});return i.INVALID}return(0,i.OK)(e.data)}}t.ZodSymbol=ZodSymbol;ZodSymbol.create=e=>new ZodSymbol({typeName:k.ZodSymbol,...processCreateParams(e)});class ZodUndefined extends ZodType{_parse(e){const t=this._getType(e);if(t!==o.ZodParsedType.undefined){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.undefined,received:t.parsedType});return i.INVALID}return(0,i.OK)(e.data)}}t.ZodUndefined=ZodUndefined;ZodUndefined.create=e=>new ZodUndefined({typeName:k.ZodUndefined,...processCreateParams(e)});class ZodNull extends ZodType{_parse(e){const t=this._getType(e);if(t!==o.ZodParsedType.null){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.null,received:t.parsedType});return i.INVALID}return(0,i.OK)(e.data)}}t.ZodNull=ZodNull;ZodNull.create=e=>new ZodNull({typeName:k.ZodNull,...processCreateParams(e)});class ZodAny extends ZodType{constructor(){super(...arguments);this._any=true}_parse(e){return(0,i.OK)(e.data)}}t.ZodAny=ZodAny;ZodAny.create=e=>new ZodAny({typeName:k.ZodAny,...processCreateParams(e)});class ZodUnknown extends ZodType{constructor(){super(...arguments);this._unknown=true}_parse(e){return(0,i.OK)(e.data)}}t.ZodUnknown=ZodUnknown;ZodUnknown.create=e=>new ZodUnknown({typeName:k.ZodUnknown,...processCreateParams(e)});class ZodNever extends ZodType{_parse(e){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.never,received:t.parsedType});return i.INVALID}}t.ZodNever=ZodNever;ZodNever.create=e=>new ZodNever({typeName:k.ZodNever,...processCreateParams(e)});class ZodVoid extends ZodType{_parse(e){const t=this._getType(e);if(t!==o.ZodParsedType.undefined){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.void,received:t.parsedType});return i.INVALID}return(0,i.OK)(e.data)}}t.ZodVoid=ZodVoid;ZodVoid.create=e=>new ZodVoid({typeName:k.ZodVoid,...processCreateParams(e)});class ZodArray extends ZodType{_parse(e){const{ctx:t,status:s}=this._processInputParams(e);const a=this._def;if(t.parsedType!==o.ZodParsedType.array){(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.array,received:t.parsedType});return i.INVALID}if(a.exactLength!==null){const e=t.data.length>a.exactLength.value;const n=t.data.length<a.exactLength.value;if(e||n){(0,i.addIssueToContext)(t,{code:e?r.ZodIssueCode.too_big:r.ZodIssueCode.too_small,minimum:n?a.exactLength.value:undefined,maximum:e?a.exactLength.value:undefined,type:\"array\",inclusive:true,exact:true,message:a.exactLength.message});s.dirty()}}if(a.minLength!==null){if(t.data.length<a.minLength.value){(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.too_small,minimum:a.minLength.value,type:\"array\",inclusive:true,exact:false,message:a.minLength.message});s.dirty()}}if(a.maxLength!==null){if(t.data.length>a.maxLength.value){(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.too_big,maximum:a.maxLength.value,type:\"array\",inclusive:true,exact:false,message:a.maxLength.message});s.dirty()}}if(t.common.async){return Promise.all([...t.data].map(((e,s)=>a.type._parseAsync(new ParseInputLazyPath(t,e,t.path,s))))).then((e=>i.ParseStatus.mergeArray(s,e)))}const n=[...t.data].map(((e,s)=>a.type._parseSync(new ParseInputLazyPath(t,e,t.path,s))));return i.ParseStatus.mergeArray(s,n)}get element(){return this._def.type}min(e,t){return new ZodArray({...this._def,minLength:{value:e,message:n.errorUtil.toString(t)}})}max(e,t){return new ZodArray({...this._def,maxLength:{value:e,message:n.errorUtil.toString(t)}})}length(e,t){return new ZodArray({...this._def,exactLength:{value:e,message:n.errorUtil.toString(t)}})}nonempty(e){return this.min(1,e)}}t.ZodArray=ZodArray;ZodArray.create=(e,t)=>new ZodArray({type:e,minLength:null,maxLength:null,exactLength:null,typeName:k.ZodArray,...processCreateParams(t)});function deepPartialify(e){if(e instanceof ZodObject){const t={};for(const s in e.shape){const r=e.shape[s];t[s]=ZodOptional.create(deepPartialify(r))}return new ZodObject({...e._def,shape:()=>t})}else if(e instanceof ZodArray){return new ZodArray({...e._def,type:deepPartialify(e.element)})}else if(e instanceof ZodOptional){return ZodOptional.create(deepPartialify(e.unwrap()))}else if(e instanceof ZodNullable){return ZodNullable.create(deepPartialify(e.unwrap()))}else if(e instanceof ZodTuple){return ZodTuple.create(e.items.map((e=>deepPartialify(e))))}else{return e}}class ZodObject extends ZodType{constructor(){super(...arguments);this._cached=null;this.nonstrict=this.passthrough;this.augment=this.extend}_getCached(){if(this._cached!==null)return this._cached;const e=this._def.shape();const t=o.util.objectKeys(e);this._cached={shape:e,keys:t};return this._cached}_parse(e){const t=this._getType(e);if(t!==o.ZodParsedType.object){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.object,received:t.parsedType});return i.INVALID}const{status:s,ctx:a}=this._processInputParams(e);const{shape:n,keys:d}=this._getCached();const u=[];if(!(this._def.catchall instanceof ZodNever&&this._def.unknownKeys===\"strip\")){for(const e in a.data){if(!d.includes(e)){u.push(e)}}}const c=[];for(const e of d){const t=n[e];const s=a.data[e];c.push({key:{status:\"valid\",value:e},value:t._parse(new ParseInputLazyPath(a,s,a.path,e)),alwaysSet:e in a.data})}if(this._def.catchall instanceof ZodNever){const e=this._def.unknownKeys;if(e===\"passthrough\"){for(const e of u){c.push({key:{status:\"valid\",value:e},value:{status:\"valid\",value:a.data[e]}})}}else if(e===\"strict\"){if(u.length>0){(0,i.addIssueToContext)(a,{code:r.ZodIssueCode.unrecognized_keys,keys:u});s.dirty()}}else if(e===\"strip\"){}else{throw new Error(`Internal ZodObject error: invalid unknownKeys value.`)}}else{const e=this._def.catchall;for(const t of u){const s=a.data[t];c.push({key:{status:\"valid\",value:t},value:e._parse(new ParseInputLazyPath(a,s,a.path,t)),alwaysSet:t in a.data})}}if(a.common.async){return Promise.resolve().then((async()=>{const e=[];for(const t of c){const s=await t.key;const r=await t.value;e.push({key:s,value:r,alwaysSet:t.alwaysSet})}return e})).then((e=>i.ParseStatus.mergeObjectSync(s,e)))}else{return i.ParseStatus.mergeObjectSync(s,c)}}get shape(){return this._def.shape()}strict(e){n.errorUtil.errToObj;return new ZodObject({...this._def,unknownKeys:\"strict\",...e!==undefined?{errorMap:(t,s)=>{const r=this._def.errorMap?.(t,s).message??s.defaultError;if(t.code===\"unrecognized_keys\")return{message:n.errorUtil.errToObj(e).message??r};return{message:r}}}:{}})}strip(){return new ZodObject({...this._def,unknownKeys:\"strip\"})}passthrough(){return new ZodObject({...this._def,unknownKeys:\"passthrough\"})}extend(e){return new ZodObject({...this._def,shape:()=>({...this._def.shape(),...e})})}merge(e){const t=new ZodObject({unknownKeys:e._def.unknownKeys,catchall:e._def.catchall,shape:()=>({...this._def.shape(),...e._def.shape()}),typeName:k.ZodObject});return t}setKey(e,t){return this.augment({[e]:t})}catchall(e){return new ZodObject({...this._def,catchall:e})}pick(e){const t={};for(const s of o.util.objectKeys(e)){if(e[s]&&this.shape[s]){t[s]=this.shape[s]}}return new ZodObject({...this._def,shape:()=>t})}omit(e){const t={};for(const s of o.util.objectKeys(this.shape)){if(!e[s]){t[s]=this.shape[s]}}return new ZodObject({...this._def,shape:()=>t})}deepPartial(){return deepPartialify(this)}partial(e){const t={};for(const s of o.util.objectKeys(this.shape)){const r=this.shape[s];if(e&&!e[s]){t[s]=r}else{t[s]=r.optional()}}return new ZodObject({...this._def,shape:()=>t})}required(e){const t={};for(const s of o.util.objectKeys(this.shape)){if(e&&!e[s]){t[s]=this.shape[s]}else{const e=this.shape[s];let r=e;while(r instanceof ZodOptional){r=r._def.innerType}t[s]=r}}return new ZodObject({...this._def,shape:()=>t})}keyof(){return createZodEnum(o.util.objectKeys(this.shape))}}t.ZodObject=ZodObject;ZodObject.create=(e,t)=>new ZodObject({shape:()=>e,unknownKeys:\"strip\",catchall:ZodNever.create(),typeName:k.ZodObject,...processCreateParams(t)});ZodObject.strictCreate=(e,t)=>new ZodObject({shape:()=>e,unknownKeys:\"strict\",catchall:ZodNever.create(),typeName:k.ZodObject,...processCreateParams(t)});ZodObject.lazycreate=(e,t)=>new ZodObject({shape:e,unknownKeys:\"strip\",catchall:ZodNever.create(),typeName:k.ZodObject,...processCreateParams(t)});class ZodUnion extends ZodType{_parse(e){const{ctx:t}=this._processInputParams(e);const s=this._def.options;function handleResults(e){for(const t of e){if(t.result.status===\"valid\"){return t.result}}for(const s of e){if(s.result.status===\"dirty\"){t.common.issues.push(...s.ctx.common.issues);return s.result}}const s=e.map((e=>new r.ZodError(e.ctx.common.issues)));(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_union,unionErrors:s});return i.INVALID}if(t.common.async){return Promise.all(s.map((async e=>{const s={...t,common:{...t.common,issues:[]},parent:null};return{result:await e._parseAsync({data:t.data,path:t.path,parent:s}),ctx:s}}))).then(handleResults)}else{let e=undefined;const a=[];for(const r of s){const s={...t,common:{...t.common,issues:[]},parent:null};const n=r._parseSync({data:t.data,path:t.path,parent:s});if(n.status===\"valid\"){return n}else if(n.status===\"dirty\"&&!e){e={result:n,ctx:s}}if(s.common.issues.length){a.push(s.common.issues)}}if(e){t.common.issues.push(...e.ctx.common.issues);return e.result}const n=a.map((e=>new r.ZodError(e)));(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_union,unionErrors:n});return i.INVALID}}get options(){return this._def.options}}t.ZodUnion=ZodUnion;ZodUnion.create=(e,t)=>new ZodUnion({options:e,typeName:k.ZodUnion,...processCreateParams(t)});const getDiscriminator=e=>{if(e instanceof ZodLazy){return getDiscriminator(e.schema)}else if(e instanceof ZodEffects){return getDiscriminator(e.innerType())}else if(e instanceof ZodLiteral){return[e.value]}else if(e instanceof ZodEnum){return e.options}else if(e instanceof ZodNativeEnum){return o.util.objectValues(e.enum)}else if(e instanceof ZodDefault){return getDiscriminator(e._def.innerType)}else if(e instanceof ZodUndefined){return[undefined]}else if(e instanceof ZodNull){return[null]}else if(e instanceof ZodOptional){return[undefined,...getDiscriminator(e.unwrap())]}else if(e instanceof ZodNullable){return[null,...getDiscriminator(e.unwrap())]}else if(e instanceof ZodBranded){return getDiscriminator(e.unwrap())}else if(e instanceof ZodReadonly){return getDiscriminator(e.unwrap())}else if(e instanceof ZodCatch){return getDiscriminator(e._def.innerType)}else{return[]}};class ZodDiscriminatedUnion extends ZodType{_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==o.ZodParsedType.object){(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.object,received:t.parsedType});return i.INVALID}const s=this.discriminator;const a=t.data[s];const n=this.optionsMap.get(a);if(!n){(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[s]});return i.INVALID}if(t.common.async){return n._parseAsync({data:t.data,path:t.path,parent:t})}else{return n._parseSync({data:t.data,path:t.path,parent:t})}}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(e,t,s){const r=new Map;for(const s of t){const t=getDiscriminator(s.shape[e]);if(!t.length){throw new Error(`A discriminator value for key \\`${e}\\` could not be extracted from all schema options`)}for(const a of t){if(r.has(a)){throw new Error(`Discriminator property ${String(e)} has duplicate value ${String(a)}`)}r.set(a,s)}}return new ZodDiscriminatedUnion({typeName:k.ZodDiscriminatedUnion,discriminator:e,options:t,optionsMap:r,...processCreateParams(s)})}}t.ZodDiscriminatedUnion=ZodDiscriminatedUnion;function mergeValues(e,t){const s=(0,o.getParsedType)(e);const r=(0,o.getParsedType)(t);if(e===t){return{valid:true,data:e}}else if(s===o.ZodParsedType.object&&r===o.ZodParsedType.object){const s=o.util.objectKeys(t);const r=o.util.objectKeys(e).filter((e=>s.indexOf(e)!==-1));const a={...e,...t};for(const s of r){const r=mergeValues(e[s],t[s]);if(!r.valid){return{valid:false}}a[s]=r.data}return{valid:true,data:a}}else if(s===o.ZodParsedType.array&&r===o.ZodParsedType.array){if(e.length!==t.length){return{valid:false}}const s=[];for(let r=0;r<e.length;r++){const a=e[r];const n=t[r];const i=mergeValues(a,n);if(!i.valid){return{valid:false}}s.push(i.data)}return{valid:true,data:s}}else if(s===o.ZodParsedType.date&&r===o.ZodParsedType.date&&+e===+t){return{valid:true,data:e}}else{return{valid:false}}}class ZodIntersection extends ZodType{_parse(e){const{status:t,ctx:s}=this._processInputParams(e);const handleParsed=(e,a)=>{if((0,i.isAborted)(e)||(0,i.isAborted)(a)){return i.INVALID}const n=mergeValues(e.value,a.value);if(!n.valid){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.invalid_intersection_types});return i.INVALID}if((0,i.isDirty)(e)||(0,i.isDirty)(a)){t.dirty()}return{status:t.value,value:n.data}};if(s.common.async){return Promise.all([this._def.left._parseAsync({data:s.data,path:s.path,parent:s}),this._def.right._parseAsync({data:s.data,path:s.path,parent:s})]).then((([e,t])=>handleParsed(e,t)))}else{return handleParsed(this._def.left._parseSync({data:s.data,path:s.path,parent:s}),this._def.right._parseSync({data:s.data,path:s.path,parent:s}))}}}t.ZodIntersection=ZodIntersection;ZodIntersection.create=(e,t,s)=>new ZodIntersection({left:e,right:t,typeName:k.ZodIntersection,...processCreateParams(s)});class ZodTuple extends ZodType{_parse(e){const{status:t,ctx:s}=this._processInputParams(e);if(s.parsedType!==o.ZodParsedType.array){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.array,received:s.parsedType});return i.INVALID}if(s.data.length<this._def.items.length){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.too_small,minimum:this._def.items.length,inclusive:true,exact:false,type:\"array\"});return i.INVALID}const a=this._def.rest;if(!a&&s.data.length>this._def.items.length){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.too_big,maximum:this._def.items.length,inclusive:true,exact:false,type:\"array\"});t.dirty()}const n=[...s.data].map(((e,t)=>{const r=this._def.items[t]||this._def.rest;if(!r)return null;return r._parse(new ParseInputLazyPath(s,e,s.path,t))})).filter((e=>!!e));if(s.common.async){return Promise.all(n).then((e=>i.ParseStatus.mergeArray(t,e)))}else{return i.ParseStatus.mergeArray(t,n)}}get items(){return this._def.items}rest(e){return new ZodTuple({...this._def,rest:e})}}t.ZodTuple=ZodTuple;ZodTuple.create=(e,t)=>{if(!Array.isArray(e)){throw new Error(\"You must pass an array of schemas to z.tuple([ ... ])\")}return new ZodTuple({items:e,typeName:k.ZodTuple,rest:null,...processCreateParams(t)})};class ZodRecord extends ZodType{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){const{status:t,ctx:s}=this._processInputParams(e);if(s.parsedType!==o.ZodParsedType.object){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.object,received:s.parsedType});return i.INVALID}const a=[];const n=this._def.keyType;const d=this._def.valueType;for(const e in s.data){a.push({key:n._parse(new ParseInputLazyPath(s,e,s.path,e)),value:d._parse(new ParseInputLazyPath(s,s.data[e],s.path,e)),alwaysSet:e in s.data})}if(s.common.async){return i.ParseStatus.mergeObjectAsync(t,a)}else{return i.ParseStatus.mergeObjectSync(t,a)}}get element(){return this._def.valueType}static create(e,t,s){if(t instanceof ZodType){return new ZodRecord({keyType:e,valueType:t,typeName:k.ZodRecord,...processCreateParams(s)})}return new ZodRecord({keyType:ZodString.create(),valueType:e,typeName:k.ZodRecord,...processCreateParams(t)})}}t.ZodRecord=ZodRecord;class ZodMap extends ZodType{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){const{status:t,ctx:s}=this._processInputParams(e);if(s.parsedType!==o.ZodParsedType.map){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.map,received:s.parsedType});return i.INVALID}const a=this._def.keyType;const n=this._def.valueType;const d=[...s.data.entries()].map((([e,t],r)=>({key:a._parse(new ParseInputLazyPath(s,e,s.path,[r,\"key\"])),value:n._parse(new ParseInputLazyPath(s,t,s.path,[r,\"value\"]))})));if(s.common.async){const e=new Map;return Promise.resolve().then((async()=>{for(const s of d){const r=await s.key;const a=await s.value;if(r.status===\"aborted\"||a.status===\"aborted\"){return i.INVALID}if(r.status===\"dirty\"||a.status===\"dirty\"){t.dirty()}e.set(r.value,a.value)}return{status:t.value,value:e}}))}else{const e=new Map;for(const s of d){const r=s.key;const a=s.value;if(r.status===\"aborted\"||a.status===\"aborted\"){return i.INVALID}if(r.status===\"dirty\"||a.status===\"dirty\"){t.dirty()}e.set(r.value,a.value)}return{status:t.value,value:e}}}}t.ZodMap=ZodMap;ZodMap.create=(e,t,s)=>new ZodMap({valueType:t,keyType:e,typeName:k.ZodMap,...processCreateParams(s)});class ZodSet extends ZodType{_parse(e){const{status:t,ctx:s}=this._processInputParams(e);if(s.parsedType!==o.ZodParsedType.set){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.set,received:s.parsedType});return i.INVALID}const a=this._def;if(a.minSize!==null){if(s.data.size<a.minSize.value){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.too_small,minimum:a.minSize.value,type:\"set\",inclusive:true,exact:false,message:a.minSize.message});t.dirty()}}if(a.maxSize!==null){if(s.data.size>a.maxSize.value){(0,i.addIssueToContext)(s,{code:r.ZodIssueCode.too_big,maximum:a.maxSize.value,type:\"set\",inclusive:true,exact:false,message:a.maxSize.message});t.dirty()}}const n=this._def.valueType;function finalizeSet(e){const s=new Set;for(const r of e){if(r.status===\"aborted\")return i.INVALID;if(r.status===\"dirty\")t.dirty();s.add(r.value)}return{status:t.value,value:s}}const d=[...s.data.values()].map(((e,t)=>n._parse(new ParseInputLazyPath(s,e,s.path,t))));if(s.common.async){return Promise.all(d).then((e=>finalizeSet(e)))}else{return finalizeSet(d)}}min(e,t){return new ZodSet({...this._def,minSize:{value:e,message:n.errorUtil.toString(t)}})}max(e,t){return new ZodSet({...this._def,maxSize:{value:e,message:n.errorUtil.toString(t)}})}size(e,t){return this.min(e,t).max(e,t)}nonempty(e){return this.min(1,e)}}t.ZodSet=ZodSet;ZodSet.create=(e,t)=>new ZodSet({valueType:e,minSize:null,maxSize:null,typeName:k.ZodSet,...processCreateParams(t)});class ZodFunction extends ZodType{constructor(){super(...arguments);this.validate=this.implement}_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==o.ZodParsedType.function){(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.function,received:t.parsedType});return i.INVALID}function makeArgsIssue(e,s){return(0,i.makeIssue)({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,(0,a.getErrorMap)(),a.defaultErrorMap].filter((e=>!!e)),issueData:{code:r.ZodIssueCode.invalid_arguments,argumentsError:s}})}function makeReturnsIssue(e,s){return(0,i.makeIssue)({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,(0,a.getErrorMap)(),a.defaultErrorMap].filter((e=>!!e)),issueData:{code:r.ZodIssueCode.invalid_return_type,returnTypeError:s}})}const s={errorMap:t.common.contextualErrorMap};const n=t.data;if(this._def.returns instanceof ZodPromise){const e=this;return(0,i.OK)((async function(...t){const a=new r.ZodError([]);const i=await e._def.args.parseAsync(t,s).catch((e=>{a.addIssue(makeArgsIssue(t,e));throw a}));const o=await Reflect.apply(n,this,i);const d=await e._def.returns._def.type.parseAsync(o,s).catch((e=>{a.addIssue(makeReturnsIssue(o,e));throw a}));return d}))}else{const e=this;return(0,i.OK)((function(...t){const a=e._def.args.safeParse(t,s);if(!a.success){throw new r.ZodError([makeArgsIssue(t,a.error)])}const i=Reflect.apply(n,this,a.data);const o=e._def.returns.safeParse(i,s);if(!o.success){throw new r.ZodError([makeReturnsIssue(i,o.error)])}return o.data}))}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...e){return new ZodFunction({...this._def,args:ZodTuple.create(e).rest(ZodUnknown.create())})}returns(e){return new ZodFunction({...this._def,returns:e})}implement(e){const t=this.parse(e);return t}strictImplement(e){const t=this.parse(e);return t}static create(e,t,s){return new ZodFunction({args:e?e:ZodTuple.create([]).rest(ZodUnknown.create()),returns:t||ZodUnknown.create(),typeName:k.ZodFunction,...processCreateParams(s)})}}t.ZodFunction=ZodFunction;class ZodLazy extends ZodType{get schema(){return this._def.getter()}_parse(e){const{ctx:t}=this._processInputParams(e);const s=this._def.getter();return s._parse({data:t.data,path:t.path,parent:t})}}t.ZodLazy=ZodLazy;ZodLazy.create=(e,t)=>new ZodLazy({getter:e,typeName:k.ZodLazy,...processCreateParams(t)});class ZodLiteral extends ZodType{_parse(e){if(e.data!==this._def.value){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{received:t.data,code:r.ZodIssueCode.invalid_literal,expected:this._def.value});return i.INVALID}return{status:\"valid\",value:e.data}}get value(){return this._def.value}}t.ZodLiteral=ZodLiteral;ZodLiteral.create=(e,t)=>new ZodLiteral({value:e,typeName:k.ZodLiteral,...processCreateParams(t)});function createZodEnum(e,t){return new ZodEnum({values:e,typeName:k.ZodEnum,...processCreateParams(t)})}class ZodEnum extends ZodType{_parse(e){if(typeof e.data!==\"string\"){const t=this._getOrReturnCtx(e);const s=this._def.values;(0,i.addIssueToContext)(t,{expected:o.util.joinValues(s),received:t.parsedType,code:r.ZodIssueCode.invalid_type});return i.INVALID}if(!this._cache){this._cache=new Set(this._def.values)}if(!this._cache.has(e.data)){const t=this._getOrReturnCtx(e);const s=this._def.values;(0,i.addIssueToContext)(t,{received:t.data,code:r.ZodIssueCode.invalid_enum_value,options:s});return i.INVALID}return(0,i.OK)(e.data)}get options(){return this._def.values}get enum(){const e={};for(const t of this._def.values){e[t]=t}return e}get Values(){const e={};for(const t of this._def.values){e[t]=t}return e}get Enum(){const e={};for(const t of this._def.values){e[t]=t}return e}extract(e,t=this._def){return ZodEnum.create(e,{...this._def,...t})}exclude(e,t=this._def){return ZodEnum.create(this.options.filter((t=>!e.includes(t))),{...this._def,...t})}}t.ZodEnum=ZodEnum;ZodEnum.create=createZodEnum;class ZodNativeEnum extends ZodType{_parse(e){const t=o.util.getValidEnumValues(this._def.values);const s=this._getOrReturnCtx(e);if(s.parsedType!==o.ZodParsedType.string&&s.parsedType!==o.ZodParsedType.number){const e=o.util.objectValues(t);(0,i.addIssueToContext)(s,{expected:o.util.joinValues(e),received:s.parsedType,code:r.ZodIssueCode.invalid_type});return i.INVALID}if(!this._cache){this._cache=new Set(o.util.getValidEnumValues(this._def.values))}if(!this._cache.has(e.data)){const e=o.util.objectValues(t);(0,i.addIssueToContext)(s,{received:s.data,code:r.ZodIssueCode.invalid_enum_value,options:e});return i.INVALID}return(0,i.OK)(e.data)}get enum(){return this._def.values}}t.ZodNativeEnum=ZodNativeEnum;ZodNativeEnum.create=(e,t)=>new ZodNativeEnum({values:e,typeName:k.ZodNativeEnum,...processCreateParams(t)});class ZodPromise extends ZodType{unwrap(){return this._def.type}_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==o.ZodParsedType.promise&&t.common.async===false){(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.promise,received:t.parsedType});return i.INVALID}const s=t.parsedType===o.ZodParsedType.promise?t.data:Promise.resolve(t.data);return(0,i.OK)(s.then((e=>this._def.type.parseAsync(e,{path:t.path,errorMap:t.common.contextualErrorMap}))))}}t.ZodPromise=ZodPromise;ZodPromise.create=(e,t)=>new ZodPromise({type:e,typeName:k.ZodPromise,...processCreateParams(t)});class ZodEffects extends ZodType{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===k.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(e){const{status:t,ctx:s}=this._processInputParams(e);const r=this._def.effect||null;const a={addIssue:e=>{(0,i.addIssueToContext)(s,e);if(e.fatal){t.abort()}else{t.dirty()}},get path(){return s.path}};a.addIssue=a.addIssue.bind(a);if(r.type===\"preprocess\"){const e=r.transform(s.data,a);if(s.common.async){return Promise.resolve(e).then((async e=>{if(t.value===\"aborted\")return i.INVALID;const r=await this._def.schema._parseAsync({data:e,path:s.path,parent:s});if(r.status===\"aborted\")return i.INVALID;if(r.status===\"dirty\")return(0,i.DIRTY)(r.value);if(t.value===\"dirty\")return(0,i.DIRTY)(r.value);return r}))}else{if(t.value===\"aborted\")return i.INVALID;const r=this._def.schema._parseSync({data:e,path:s.path,parent:s});if(r.status===\"aborted\")return i.INVALID;if(r.status===\"dirty\")return(0,i.DIRTY)(r.value);if(t.value===\"dirty\")return(0,i.DIRTY)(r.value);return r}}if(r.type===\"refinement\"){const executeRefinement=e=>{const t=r.refinement(e,a);if(s.common.async){return Promise.resolve(t)}if(t instanceof Promise){throw new Error(\"Async refinement encountered during synchronous parse operation. Use .parseAsync instead.\")}return e};if(s.common.async===false){const e=this._def.schema._parseSync({data:s.data,path:s.path,parent:s});if(e.status===\"aborted\")return i.INVALID;if(e.status===\"dirty\")t.dirty();executeRefinement(e.value);return{status:t.value,value:e.value}}else{return this._def.schema._parseAsync({data:s.data,path:s.path,parent:s}).then((e=>{if(e.status===\"aborted\")return i.INVALID;if(e.status===\"dirty\")t.dirty();return executeRefinement(e.value).then((()=>({status:t.value,value:e.value})))}))}}if(r.type===\"transform\"){if(s.common.async===false){const e=this._def.schema._parseSync({data:s.data,path:s.path,parent:s});if(!(0,i.isValid)(e))return i.INVALID;const n=r.transform(e.value,a);if(n instanceof Promise){throw new Error(`Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.`)}return{status:t.value,value:n}}else{return this._def.schema._parseAsync({data:s.data,path:s.path,parent:s}).then((e=>{if(!(0,i.isValid)(e))return i.INVALID;return Promise.resolve(r.transform(e.value,a)).then((e=>({status:t.value,value:e})))}))}}o.util.assertNever(r)}}t.ZodEffects=ZodEffects;t.ZodTransformer=ZodEffects;ZodEffects.create=(e,t,s)=>new ZodEffects({schema:e,typeName:k.ZodEffects,effect:t,...processCreateParams(s)});ZodEffects.createWithPreprocess=(e,t,s)=>new ZodEffects({schema:t,effect:{type:\"preprocess\",transform:e},typeName:k.ZodEffects,...processCreateParams(s)});class ZodOptional extends ZodType{_parse(e){const t=this._getType(e);if(t===o.ZodParsedType.undefined){return(0,i.OK)(undefined)}return this._def.innerType._parse(e)}unwrap(){return this._def.innerType}}t.ZodOptional=ZodOptional;ZodOptional.create=(e,t)=>new ZodOptional({innerType:e,typeName:k.ZodOptional,...processCreateParams(t)});class ZodNullable extends ZodType{_parse(e){const t=this._getType(e);if(t===o.ZodParsedType.null){return(0,i.OK)(null)}return this._def.innerType._parse(e)}unwrap(){return this._def.innerType}}t.ZodNullable=ZodNullable;ZodNullable.create=(e,t)=>new ZodNullable({innerType:e,typeName:k.ZodNullable,...processCreateParams(t)});class ZodDefault extends ZodType{_parse(e){const{ctx:t}=this._processInputParams(e);let s=t.data;if(t.parsedType===o.ZodParsedType.undefined){s=this._def.defaultValue()}return this._def.innerType._parse({data:s,path:t.path,parent:t})}removeDefault(){return this._def.innerType}}t.ZodDefault=ZodDefault;ZodDefault.create=(e,t)=>new ZodDefault({innerType:e,typeName:k.ZodDefault,defaultValue:typeof t.default===\"function\"?t.default:()=>t.default,...processCreateParams(t)});class ZodCatch extends ZodType{_parse(e){const{ctx:t}=this._processInputParams(e);const s={...t,common:{...t.common,issues:[]}};const a=this._def.innerType._parse({data:s.data,path:s.path,parent:{...s}});if((0,i.isAsync)(a)){return a.then((e=>({status:\"valid\",value:e.status===\"valid\"?e.value:this._def.catchValue({get error(){return new r.ZodError(s.common.issues)},input:s.data})})))}else{return{status:\"valid\",value:a.status===\"valid\"?a.value:this._def.catchValue({get error(){return new r.ZodError(s.common.issues)},input:s.data})}}}removeCatch(){return this._def.innerType}}t.ZodCatch=ZodCatch;ZodCatch.create=(e,t)=>new ZodCatch({innerType:e,typeName:k.ZodCatch,catchValue:typeof t.catch===\"function\"?t.catch:()=>t.catch,...processCreateParams(t)});class ZodNaN extends ZodType{_parse(e){const t=this._getType(e);if(t!==o.ZodParsedType.nan){const t=this._getOrReturnCtx(e);(0,i.addIssueToContext)(t,{code:r.ZodIssueCode.invalid_type,expected:o.ZodParsedType.nan,received:t.parsedType});return i.INVALID}return{status:\"valid\",value:e.data}}}t.ZodNaN=ZodNaN;ZodNaN.create=e=>new ZodNaN({typeName:k.ZodNaN,...processCreateParams(e)});t.BRAND=Symbol(\"zod_brand\");class ZodBranded extends ZodType{_parse(e){const{ctx:t}=this._processInputParams(e);const s=t.data;return this._def.type._parse({data:s,path:t.path,parent:t})}unwrap(){return this._def.type}}t.ZodBranded=ZodBranded;class ZodPipeline extends ZodType{_parse(e){const{status:t,ctx:s}=this._processInputParams(e);if(s.common.async){const handleAsync=async()=>{const e=await this._def.in._parseAsync({data:s.data,path:s.path,parent:s});if(e.status===\"aborted\")return i.INVALID;if(e.status===\"dirty\"){t.dirty();return(0,i.DIRTY)(e.value)}else{return this._def.out._parseAsync({data:e.value,path:s.path,parent:s})}};return handleAsync()}else{const e=this._def.in._parseSync({data:s.data,path:s.path,parent:s});if(e.status===\"aborted\")return i.INVALID;if(e.status===\"dirty\"){t.dirty();return{status:\"dirty\",value:e.value}}else{return this._def.out._parseSync({data:e.value,path:s.path,parent:s})}}}static create(e,t){return new ZodPipeline({in:e,out:t,typeName:k.ZodPipeline})}}t.ZodPipeline=ZodPipeline;class ZodReadonly extends ZodType{_parse(e){const t=this._def.innerType._parse(e);const freeze=e=>{if((0,i.isValid)(e)){e.value=Object.freeze(e.value)}return e};return(0,i.isAsync)(t)?t.then((e=>freeze(e))):freeze(t)}unwrap(){return this._def.innerType}}t.ZodReadonly=ZodReadonly;ZodReadonly.create=(e,t)=>new ZodReadonly({innerType:e,typeName:k.ZodReadonly,...processCreateParams(t)});function cleanParams(e,t){const s=typeof e===\"function\"?e(t):typeof e===\"string\"?{message:e}:e;const r=typeof s===\"string\"?{message:s}:s;return r}function custom(e,t={},s){if(e)return ZodAny.create().superRefine(((r,a)=>{const n=e(r);if(n instanceof Promise){return n.then((e=>{if(!e){const e=cleanParams(t,r);const n=e.fatal??s??true;a.addIssue({code:\"custom\",...e,fatal:n})}}))}if(!n){const e=cleanParams(t,r);const n=e.fatal??s??true;a.addIssue({code:\"custom\",...e,fatal:n})}return}));return ZodAny.create()}t.late={object:ZodObject.lazycreate};var k;(function(e){e[\"ZodString\"]=\"ZodString\";e[\"ZodNumber\"]=\"ZodNumber\";e[\"ZodNaN\"]=\"ZodNaN\";e[\"ZodBigInt\"]=\"ZodBigInt\";e[\"ZodBoolean\"]=\"ZodBoolean\";e[\"ZodDate\"]=\"ZodDate\";e[\"ZodSymbol\"]=\"ZodSymbol\";e[\"ZodUndefined\"]=\"ZodUndefined\";e[\"ZodNull\"]=\"ZodNull\";e[\"ZodAny\"]=\"ZodAny\";e[\"ZodUnknown\"]=\"ZodUnknown\";e[\"ZodNever\"]=\"ZodNever\";e[\"ZodVoid\"]=\"ZodVoid\";e[\"ZodArray\"]=\"ZodArray\";e[\"ZodObject\"]=\"ZodObject\";e[\"ZodUnion\"]=\"ZodUnion\";e[\"ZodDiscriminatedUnion\"]=\"ZodDiscriminatedUnion\";e[\"ZodIntersection\"]=\"ZodIntersection\";e[\"ZodTuple\"]=\"ZodTuple\";e[\"ZodRecord\"]=\"ZodRecord\";e[\"ZodMap\"]=\"ZodMap\";e[\"ZodSet\"]=\"ZodSet\";e[\"ZodFunction\"]=\"ZodFunction\";e[\"ZodLazy\"]=\"ZodLazy\";e[\"ZodLiteral\"]=\"ZodLiteral\";e[\"ZodEnum\"]=\"ZodEnum\";e[\"ZodEffects\"]=\"ZodEffects\";e[\"ZodNativeEnum\"]=\"ZodNativeEnum\";e[\"ZodOptional\"]=\"ZodOptional\";e[\"ZodNullable\"]=\"ZodNullable\";e[\"ZodDefault\"]=\"ZodDefault\";e[\"ZodCatch\"]=\"ZodCatch\";e[\"ZodPromise\"]=\"ZodPromise\";e[\"ZodBranded\"]=\"ZodBranded\";e[\"ZodPipeline\"]=\"ZodPipeline\";e[\"ZodReadonly\"]=\"ZodReadonly\"})(k||(t.ZodFirstPartyTypeKind=k={}));class Class{constructor(...e){}}const instanceOfType=(e,t={message:`Input not instance of ${e.name}`})=>custom((t=>t instanceof e),t);t[\"instanceof\"]=instanceOfType;const P=ZodString.create;t.string=P;const w=ZodNumber.create;t.number=w;const N=ZodNaN.create;t.nan=N;const O=ZodBigInt.create;t.bigint=O;const A=ZodBoolean.create;t.boolean=A;const S=ZodDate.create;t.date=S;const j=ZodSymbol.create;t.symbol=j;const E=ZodUndefined.create;t.undefined=E;const D=ZodNull.create;t[\"null\"]=D;const L=ZodAny.create;t.any=L;const U=ZodUnknown.create;t.unknown=U;const R=ZodNever.create;t.never=R;const V=ZodVoid.create;t[\"void\"]=V;const M=ZodArray.create;t.array=M;const $=ZodObject.create;t.object=$;const z=ZodObject.strictCreate;t.strictObject=z;const F=ZodUnion.create;t.union=F;const B=ZodDiscriminatedUnion.create;t.discriminatedUnion=B;const K=ZodIntersection.create;t.intersection=K;const q=ZodTuple.create;t.tuple=q;const W=ZodRecord.create;t.record=W;const Y=ZodMap.create;t.map=Y;const J=ZodSet.create;t.set=J;const H=ZodFunction.create;t[\"function\"]=H;const G=ZodLazy.create;t.lazy=G;const X=ZodLiteral.create;t.literal=X;const Q=ZodEnum.create;t[\"enum\"]=Q;const ee=ZodNativeEnum.create;t.nativeEnum=ee;const te=ZodPromise.create;t.promise=te;const se=ZodEffects.create;t.effect=se;t.transformer=se;const re=ZodOptional.create;t.optional=re;const ae=ZodNullable.create;t.nullable=ae;const ne=ZodEffects.createWithPreprocess;t.preprocess=ne;const ie=ZodPipeline.create;t.pipeline=ie;const ostring=()=>P().optional();t.ostring=ostring;const onumber=()=>w().optional();t.onumber=onumber;const oboolean=()=>A().optional();t.oboolean=oboolean;t.coerce={string:e=>ZodString.create({...e,coerce:true}),number:e=>ZodNumber.create({...e,coerce:true}),boolean:e=>ZodBoolean.create({...e,coerce:true}),bigint:e=>ZodBigInt.create({...e,coerce:true}),date:e=>ZodDate.create({...e,coerce:true})};t.NEVER=i.INVALID}};var t={};function __nccwpck_require__(s){var r=t[s];if(r!==undefined){return r.exports}var a=t[s]={exports:{}};var n=true;try{e[s].call(a.exports,a,a.exports,__nccwpck_require__);n=false}finally{if(n)delete t[s]}return a.exports}if(typeof __nccwpck_require__!==\"undefined\")__nccwpck_require__.ab=__dirname+\"/\";var s=__nccwpck_require__(629);module.exports=s})();","// getDefaultExport function for compatibility with non-ESM modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};\n","var getProto = Object.getPrototypeOf ? (obj) => (Object.getPrototypeOf(obj)) : (obj) => (obj.__proto__);\nvar leafPrototypes;\n// create a fake namespace object\n// mode & 1: value is a module id, require it\n// mode & 2: merge all properties of value into the ns\n// mode & 4: return value when already ns object\n// mode & 16: return value when it's Promise-like\n// mode & 8|1: behave like require\n__webpack_require__.t = function(value, mode) {\n\tif(mode & 1) value = this(value);\n\tif(mode & 8) return value;\n\tif(typeof value === 'object' && value) {\n\t\tif((mode & 4) && value.__esModule) return value;\n\t\tif((mode & 16) && typeof value.then === 'function') return value;\n\t}\n\tvar ns = Object.create(null);\n __webpack_require__.r(ns);\n\tvar def = {};\n\tleafPrototypes = leafPrototypes || [null, getProto({}), getProto([]), getProto(getProto)];\n\tfor(var current = mode & 2 && value; (typeof current == 'object' || typeof current == 'function') && !~leafPrototypes.indexOf(current); current = getProto(current)) {\n\t\tObject.getOwnPropertyNames(current).forEach((key) => { def[key] = () => (value[key]) });\n\t}\n\tdef['default'] = () => (value);\n\t__webpack_require__.d(ns, def);\n\treturn ns;\n};","__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n }\n }\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nc = undefined;","import type { CacheIndicatorState } from '../../cache-indicator'\nimport { css } from '../../utils/css'\n\nexport enum Status {\n None = 'none',\n Rendering = 'rendering',\n Compiling = 'compiling',\n Prerendering = 'prerendering',\n CacheBypassing = 'cache-bypassing',\n}\n\nexport function getCurrentStatus(\n buildingIndicator: boolean,\n renderingIndicator: boolean,\n cacheIndicator: CacheIndicatorState\n): Status {\n const isCacheFilling = cacheIndicator === 'filling'\n\n // Priority order: compiling > prerendering > rendering\n // Note: cache bypassing is now handled as a badge, not a status indicator\n if (buildingIndicator) {\n return Status.Compiling\n }\n if (isCacheFilling) {\n return Status.Prerendering\n }\n if (renderingIndicator) {\n return Status.Rendering\n }\n return Status.None\n}\n\ninterface StatusIndicatorProps {\n status: Status\n onClick?: () => void\n}\n\nexport function StatusIndicator({ status, onClick }: StatusIndicatorProps) {\n const statusText: Record<Status, string> = {\n [Status.None]: '',\n [Status.CacheBypassing]: 'Cache disabled',\n [Status.Prerendering]: 'Prerendering',\n [Status.Compiling]: 'Compiling',\n [Status.Rendering]: 'Rendering',\n }\n\n // Status dot colors\n const statusDotColor: Record<Status, string> = {\n [Status.None]: '',\n [Status.CacheBypassing]: '', // No dot for bypass, uses full pill color\n [Status.Prerendering]: '#f5a623',\n [Status.Compiling]: '#f5a623',\n [Status.Rendering]: '#50e3c2',\n }\n\n if (status === Status.None) {\n return null\n }\n\n return (\n <>\n <style>\n {css`\n [data-indicator-status] {\n --padding-left: 8px;\n display: flex;\n gap: 6px;\n align-items: center;\n padding-left: 12px;\n padding-right: 8px;\n height: var(--size-32);\n margin-right: 2px;\n border-radius: var(--rounded-full);\n transition: background var(--duration-short) ease;\n color: white;\n font-size: var(--size-13);\n font-weight: 500;\n white-space: nowrap;\n border: none;\n background: transparent;\n cursor: pointer;\n outline: none;\n }\n\n [data-indicator-status]:focus-visible {\n outline: 2px solid var(--color-blue-800, #3b82f6);\n outline-offset: 3px;\n }\n\n [data-status-dot] {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n }\n\n [data-status-text-animation] {\n display: inline-flex;\n align-items: center;\n position: relative;\n overflow: hidden;\n height: 100%;\n\n > * {\n white-space: nowrap;\n line-height: 1;\n }\n\n [data-status-text-enter] {\n animation: slotMachineEnter 150ms cubic-bezier(0, 0, 0.2, 1)\n forwards;\n }\n }\n\n [data-status-ellipsis] {\n display: inline-flex;\n margin-left: 2px;\n }\n\n [data-status-ellipsis] span {\n animation: ellipsisFade 1.2s infinite;\n margin: 0 1px;\n }\n\n [data-status-ellipsis] span:nth-child(2) {\n animation-delay: 0.2s;\n }\n\n [data-status-ellipsis] span:nth-child(3) {\n animation-delay: 0.4s;\n }\n\n @keyframes ellipsisFade {\n 0%,\n 60%,\n 100% {\n opacity: 0.2;\n }\n 30% {\n opacity: 1;\n }\n }\n\n @keyframes slotMachineEnter {\n 0% {\n transform: translateY(0.8em);\n opacity: 0;\n }\n 50% {\n opacity: 0.8;\n }\n 100% {\n transform: translateY(0);\n opacity: 1;\n }\n }\n `}\n </style>\n <button\n data-indicator-status\n data-nextjs-dev-tools-button\n onClick={onClick}\n aria-label=\"Open Next.js Dev Tools\"\n >\n {statusDotColor[status] && (\n <div\n data-status-dot\n style={{\n backgroundColor: statusDotColor[status],\n }}\n />\n )}\n <AnimateStatusText\n key={status} // Key here triggers re-mount and animation\n statusKey={status}\n showEllipsis={status !== Status.CacheBypassing}\n >\n {statusText[status]}\n </AnimateStatusText>\n </button>\n </>\n )\n}\n\nfunction AnimateStatusText({\n children: text,\n showEllipsis = true,\n}: {\n children: string\n statusKey?: string // Keep for type compatibility but unused\n showEllipsis?: boolean\n}) {\n return (\n <div data-status-text-animation>\n <div data-status-text-enter>\n {text}\n {showEllipsis && (\n <span data-status-ellipsis>\n <span>.</span>\n <span>.</span>\n <span>.</span>\n </span>\n )}\n </div>\n </div>\n )\n}\n","export let TransitionStatusDataAttributes = /*#__PURE__*/function (TransitionStatusDataAttributes) {\n /**\n * Present when the component is animating in.\n */\n TransitionStatusDataAttributes[\"startingStyle\"] = \"data-starting-style\";\n /**\n * Present when the component is animating out.\n */\n TransitionStatusDataAttributes[\"endingStyle\"] = \"data-ending-style\";\n return TransitionStatusDataAttributes;\n}({});\nconst STARTING_HOOK = {\n [TransitionStatusDataAttributes.startingStyle]: ''\n};\nconst ENDING_HOOK = {\n [TransitionStatusDataAttributes.endingStyle]: ''\n};\nexport const transitionStatusMapping = {\n transitionStatus(value) {\n if (value === 'starting') {\n return STARTING_HOOK;\n }\n if (value === 'ending') {\n return ENDING_HOOK;\n }\n return null;\n }\n};","import { TransitionStatusDataAttributes } from \"./styleHookMapping.js\";\nexport let CommonPopupDataAttributes = function (CommonPopupDataAttributes) {\n /**\n * Present when the popup is open.\n */\n CommonPopupDataAttributes[\"open\"] = \"data-open\";\n /**\n * Present when the popup is closed.\n */\n CommonPopupDataAttributes[\"closed\"] = \"data-closed\";\n /**\n * Present when the popup is animating in.\n */\n CommonPopupDataAttributes[CommonPopupDataAttributes[\"startingStyle\"] = TransitionStatusDataAttributes.startingStyle] = \"startingStyle\";\n /**\n * Present when the popup is animating out.\n */\n CommonPopupDataAttributes[CommonPopupDataAttributes[\"endingStyle\"] = TransitionStatusDataAttributes.endingStyle] = \"endingStyle\";\n /**\n * Present when the anchor is hidden.\n */\n CommonPopupDataAttributes[\"anchorHidden\"] = \"data-anchor-hidden\";\n return CommonPopupDataAttributes;\n}({});\nexport let CommonTriggerDataAttributes = /*#__PURE__*/function (CommonTriggerDataAttributes) {\n /**\n * Present when the popup is open.\n */\n CommonTriggerDataAttributes[\"popupOpen\"] = \"data-popup-open\";\n /**\n * Present when a pressable trigger is pressed.\n */\n CommonTriggerDataAttributes[\"pressed\"] = \"data-pressed\";\n return CommonTriggerDataAttributes;\n}({});\nconst TRIGGER_HOOK = {\n [CommonTriggerDataAttributes.popupOpen]: ''\n};\nconst PRESSABLE_TRIGGER_HOOK = {\n [CommonTriggerDataAttributes.popupOpen]: '',\n [CommonTriggerDataAttributes.pressed]: ''\n};\nconst POPUP_OPEN_HOOK = {\n [CommonPopupDataAttributes.open]: ''\n};\nconst POPUP_CLOSED_HOOK = {\n [CommonPopupDataAttributes.closed]: ''\n};\nconst ANCHOR_HIDDEN_HOOK = {\n [CommonPopupDataAttributes.anchorHidden]: ''\n};\nexport const triggerOpenStateMapping = {\n open(value) {\n if (value) {\n return TRIGGER_HOOK;\n }\n return null;\n }\n};\nexport const pressableTriggerOpenStateMapping = {\n open(value) {\n if (value) {\n return PRESSABLE_TRIGGER_HOOK;\n }\n return null;\n }\n};\nexport const popupStateMapping = {\n open(value) {\n if (value) {\n return POPUP_OPEN_HOOK;\n }\n return POPUP_CLOSED_HOOK;\n },\n anchorHidden(value) {\n if (value) {\n return ANCHOR_HIDDEN_HOOK;\n }\n return null;\n }\n};","'use client';\n\nimport * as React from 'react';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { useCompositeListContext } from \"./CompositeListContext.js\";\nexport let IndexGuessBehavior = /*#__PURE__*/function (IndexGuessBehavior) {\n IndexGuessBehavior[IndexGuessBehavior[\"None\"] = 0] = \"None\";\n IndexGuessBehavior[IndexGuessBehavior[\"GuessFromOrder\"] = 1] = \"GuessFromOrder\";\n return IndexGuessBehavior;\n}({});\n\n/**\n * Used to register a list item and its index (DOM position) in the `CompositeList`.\n */\nexport function useCompositeListItem(params = {}) {\n const {\n label,\n metadata,\n textRef,\n indexGuessBehavior\n } = params;\n const {\n register,\n unregister,\n subscribeMapChange,\n elementsRef,\n labelsRef,\n nextIndexRef\n } = useCompositeListContext();\n const indexRef = React.useRef(-1);\n const [index, setIndex] = React.useState(indexGuessBehavior === IndexGuessBehavior.GuessFromOrder ? () => {\n if (indexRef.current === -1) {\n const newIndex = nextIndexRef.current;\n nextIndexRef.current += 1;\n indexRef.current = newIndex;\n }\n return indexRef.current;\n } : -1);\n const componentRef = React.useRef(null);\n const ref = React.useCallback(node => {\n componentRef.current = node;\n if (index !== -1 && node !== null) {\n elementsRef.current[index] = node;\n if (labelsRef) {\n const isLabelDefined = label !== undefined;\n labelsRef.current[index] = isLabelDefined ? label : textRef?.current?.textContent ?? node.textContent;\n }\n }\n }, [index, elementsRef, labelsRef, label, textRef]);\n useIsoLayoutEffect(() => {\n const node = componentRef.current;\n if (node) {\n register(node, metadata);\n return () => {\n unregister(node);\n };\n }\n return undefined;\n }, [register, unregister, metadata]);\n useIsoLayoutEffect(() => {\n return subscribeMapChange(map => {\n const i = componentRef.current ? map.get(componentRef.current)?.index : null;\n if (i != null) {\n setIndex(i);\n }\n });\n }, [subscribeMapChange, setIndex]);\n return React.useMemo(() => ({\n ref,\n index\n }), [index, ref]);\n}","import { useReducer } from 'react'\n\nimport type { VersionInfo } from '../../server/dev/parse-version-info'\nimport type { SupportedErrorEvent } from './container/runtime-error/render-error'\nimport type { DebugInfo } from '../shared/types'\nimport type { DevIndicatorServerState } from '../../server/dev/dev-indicator-server-state'\nimport { parseStack } from '../../server/lib/parse-stack'\nimport { isConsoleError } from '../shared/console-error'\nimport type { CacheIndicatorState } from './cache-indicator'\n\nexport type DevToolsConfig = {\n theme?: 'light' | 'dark' | 'system'\n disableDevIndicator?: boolean\n devToolsPosition?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'\n devToolsPanelPosition?: Record<\n string,\n 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'\n >\n devToolsPanelSize?: Record<string, { width: number; height: number }>\n scale?: number\n hideShortcut?: string | null\n}\n\nexport type Corners = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'\nexport type DevToolsIndicatorPosition = Corners\n\nconst BASE_SIZE = 16\n\nexport const NEXT_DEV_TOOLS_SCALE = {\n Small: BASE_SIZE / 14,\n Medium: BASE_SIZE / 16,\n Large: BASE_SIZE / 18,\n}\n\nexport type DevToolsScale =\n (typeof NEXT_DEV_TOOLS_SCALE)[keyof typeof NEXT_DEV_TOOLS_SCALE]\n\ntype FastRefreshState =\n /** No refresh in progress. */\n | { type: 'idle' }\n /** The refresh process has been triggered, but the new code has not been executed yet. */\n | { type: 'pending'; errors: readonly SupportedErrorEvent[] }\n\nexport interface OverlayState {\n readonly nextId: number\n readonly buildError: string | null\n readonly errors: readonly SupportedErrorEvent[]\n readonly refreshState: FastRefreshState\n readonly versionInfo: VersionInfo\n readonly notFound: boolean\n readonly buildingIndicator: boolean\n readonly renderingIndicator: boolean\n readonly cacheIndicator: CacheIndicatorState\n readonly staticIndicator: 'pending' | 'static' | 'dynamic' | 'disabled'\n readonly showIndicator: boolean\n readonly disableDevIndicator: boolean\n readonly debugInfo: DebugInfo\n readonly routerType: 'pages' | 'app'\n /** This flag is used to handle the Error Overlay state in the \"old\" overlay.\n * In the DevTools panel, this value will used for the \"Error Overlay Mode\"\n * which is viewing the \"Issues Tab\" as a fullscreen.\n */\n readonly isErrorOverlayOpen: boolean\n readonly devToolsPosition: Corners\n readonly devToolsPanelPosition: Readonly<Record<DevtoolsPanelName, Corners>>\n readonly devToolsPanelSize: Readonly<\n Record<DevtoolsPanelName, { width: number; height: number }>\n >\n readonly scale: number\n readonly page: string\n readonly theme: 'light' | 'dark' | 'system'\n readonly hideShortcut: string | null\n}\ntype DevtoolsPanelName = string\nexport type OverlayDispatch = React.Dispatch<DispatcherEvent>\n\nexport const ACTION_CACHE_INDICATOR = 'cache-indicator'\nexport const ACTION_STATIC_INDICATOR = 'static-indicator'\nexport const ACTION_BUILD_OK = 'build-ok'\nexport const ACTION_BUILD_ERROR = 'build-error'\nexport const ACTION_BEFORE_REFRESH = 'before-fast-refresh'\nexport const ACTION_REFRESH = 'fast-refresh'\nexport const ACTION_VERSION_INFO = 'version-info'\nexport const ACTION_UNHANDLED_ERROR = 'unhandled-error'\nexport const ACTION_UNHANDLED_REJECTION = 'unhandled-rejection'\nexport const ACTION_DEBUG_INFO = 'debug-info'\nexport const ACTION_DEV_INDICATOR = 'dev-indicator'\nexport const ACTION_DEV_INDICATOR_SET = 'dev-indicator-disable'\n\nexport const ACTION_ERROR_OVERLAY_OPEN = 'error-overlay-open'\nexport const ACTION_ERROR_OVERLAY_CLOSE = 'error-overlay-close'\nexport const ACTION_ERROR_OVERLAY_TOGGLE = 'error-overlay-toggle'\n\nexport const ACTION_BUILDING_INDICATOR_SHOW = 'building-indicator-show'\nexport const ACTION_BUILDING_INDICATOR_HIDE = 'building-indicator-hide'\nexport const ACTION_RENDERING_INDICATOR_SHOW = 'rendering-indicator-show'\nexport const ACTION_RENDERING_INDICATOR_HIDE = 'rendering-indicator-hide'\n\nexport const ACTION_DEVTOOLS_POSITION = 'devtools-position'\nexport const ACTION_DEVTOOLS_PANEL_POSITION = 'devtools-panel-position'\nexport const ACTION_DEVTOOLS_SCALE = 'devtools-scale'\n\nexport const ACTION_DEVTOOLS_CONFIG = 'devtools-config'\n\nexport const STORAGE_KEY_PANEL_POSITION_PREFIX =\n '__nextjs-dev-tools-panel-position'\nexport const STORE_KEY_PANEL_SIZE_PREFIX = '__nextjs-dev-tools-panel-size'\nexport const STORE_KEY_SHARED_PANEL_SIZE =\n '__nextjs-dev-tools-shared-panel-size'\nexport const STORE_KEY_SHARED_PANEL_LOCATION =\n '__nextjs-dev-tools-shared-panel-location'\n\nexport const ACTION_DEVTOOL_UPDATE_ROUTE_STATE =\n 'segment-explorer-update-route-state'\n\ninterface CacheIndicatorAction {\n type: typeof ACTION_CACHE_INDICATOR\n cacheIndicator: CacheIndicatorState\n}\n\ninterface StaticIndicatorAction {\n type: typeof ACTION_STATIC_INDICATOR\n staticIndicator: 'pending' | 'static' | 'dynamic' | 'disabled'\n}\n\ninterface BuildOkAction {\n type: typeof ACTION_BUILD_OK\n}\ninterface BuildErrorAction {\n type: typeof ACTION_BUILD_ERROR\n message: string\n}\ninterface BeforeFastRefreshAction {\n type: typeof ACTION_BEFORE_REFRESH\n}\ninterface FastRefreshAction {\n type: typeof ACTION_REFRESH\n}\n\ninterface UnhandledErrorAction {\n type: typeof ACTION_UNHANDLED_ERROR\n reason: Error\n}\ninterface UnhandledRejectionAction {\n type: typeof ACTION_UNHANDLED_REJECTION\n reason: Error\n}\n\ninterface DebugInfoAction {\n type: typeof ACTION_DEBUG_INFO\n debugInfo: any\n}\n\ninterface VersionInfoAction {\n type: typeof ACTION_VERSION_INFO\n versionInfo: VersionInfo\n}\n\ninterface DevIndicatorAction {\n type: typeof ACTION_DEV_INDICATOR\n devIndicator: DevIndicatorServerState\n}\n\ninterface DevIndicatorSetAction {\n type: typeof ACTION_DEV_INDICATOR_SET\n disabled: boolean\n}\n\ninterface ErrorOverlayOpenAction {\n type: typeof ACTION_ERROR_OVERLAY_OPEN\n}\ninterface ErrorOverlayCloseAction {\n type: typeof ACTION_ERROR_OVERLAY_CLOSE\n}\ninterface ErrorOverlayToggleAction {\n type: typeof ACTION_ERROR_OVERLAY_TOGGLE\n}\n\ninterface BuildingIndicatorShowAction {\n type: typeof ACTION_BUILDING_INDICATOR_SHOW\n}\ninterface BuildingIndicatorHideAction {\n type: typeof ACTION_BUILDING_INDICATOR_HIDE\n}\n\ninterface RenderingIndicatorShowAction {\n type: typeof ACTION_RENDERING_INDICATOR_SHOW\n}\ninterface RenderingIndicatorHideAction {\n type: typeof ACTION_RENDERING_INDICATOR_HIDE\n}\n\ninterface DevToolsIndicatorPositionAction {\n type: typeof ACTION_DEVTOOLS_POSITION\n devToolsPosition: Corners\n}\n\ninterface DevToolsPanelPositionAction {\n type: typeof ACTION_DEVTOOLS_PANEL_POSITION\n key: string\n devToolsPanelPosition: Corners\n}\n\ninterface DevToolsScaleAction {\n type: typeof ACTION_DEVTOOLS_SCALE\n scale: number\n}\n\ninterface DevToolUpdateRouteStateAction {\n type: typeof ACTION_DEVTOOL_UPDATE_ROUTE_STATE\n page: string\n}\n\ninterface DevToolsConfigAction {\n type: typeof ACTION_DEVTOOLS_CONFIG\n devToolsConfig: DevToolsConfig\n}\n\nexport type DispatcherEvent =\n | BuildOkAction\n | BuildErrorAction\n | BeforeFastRefreshAction\n | FastRefreshAction\n | UnhandledErrorAction\n | UnhandledRejectionAction\n | VersionInfoAction\n | CacheIndicatorAction\n | StaticIndicatorAction\n | DebugInfoAction\n | DevIndicatorAction\n | ErrorOverlayOpenAction\n | ErrorOverlayCloseAction\n | ErrorOverlayToggleAction\n | BuildingIndicatorShowAction\n | BuildingIndicatorHideAction\n | RenderingIndicatorShowAction\n | RenderingIndicatorHideAction\n | DevToolsIndicatorPositionAction\n | DevToolsPanelPositionAction\n | DevToolsScaleAction\n | DevToolUpdateRouteStateAction\n | DevIndicatorSetAction\n | DevToolsConfigAction\n\nconst REACT_ERROR_STACK_BOTTOM_FRAME_REGEX =\n // 1st group: new frame + v8\n // 2nd group: new frame + SpiderMonkey, JavaScriptCore\n // 3rd group: old frame + v8\n // 4th group: old frame + SpiderMonkey, JavaScriptCore\n /\\s+(at Object\\.react_stack_bottom_frame.*)|(react_stack_bottom_frame@.*)|(at react-stack-bottom-frame.*)|(react-stack-bottom-frame@.*)/\n\n// React calls user code starting from a special stack frame.\n// The basic stack will be different if the same error location is hit again\n// due to StrictMode.\n// This gets only the stack after React which is unaffected by StrictMode.\nfunction getStackIgnoringStrictMode(stack: string | undefined) {\n return stack?.split(REACT_ERROR_STACK_BOTTOM_FRAME_REGEX)[0]\n}\n\nconst shouldDisableDevIndicator =\n process.env.__NEXT_DEV_INDICATOR?.toString() === 'false'\n\nconst devToolsInitialPositionFromNextConfig = (process.env\n .__NEXT_DEV_INDICATOR_POSITION ?? 'bottom-left') as Corners\n\nexport const INITIAL_OVERLAY_STATE: Omit<\n OverlayState,\n 'isErrorOverlayOpen' | 'routerType'\n> = {\n nextId: 1,\n buildError: null,\n errors: [],\n notFound: false,\n renderingIndicator: false,\n cacheIndicator: 'disabled',\n staticIndicator: 'disabled',\n /* \n This is set to `true` when we can reliably know\n whether the indicator is in disabled state or not. \n Otherwise the surface would flicker because the disabled flag loads from the config.\n */\n showIndicator: false,\n disableDevIndicator: false,\n buildingIndicator: false,\n refreshState: { type: 'idle' },\n versionInfo: { installed: '0.0.0', staleness: 'unknown' },\n debugInfo: { devtoolsFrontendUrl: undefined },\n devToolsPosition: devToolsInitialPositionFromNextConfig,\n devToolsPanelPosition: {\n [STORE_KEY_SHARED_PANEL_LOCATION]: devToolsInitialPositionFromNextConfig,\n },\n devToolsPanelSize: {},\n scale: NEXT_DEV_TOOLS_SCALE.Medium,\n page: '',\n theme: 'system',\n hideShortcut: null,\n}\n\nfunction getInitialState(\n routerType: 'pages' | 'app',\n enableCacheIndicator: boolean\n): OverlayState & { routerType: 'pages' | 'app' } {\n return {\n ...INITIAL_OVERLAY_STATE,\n // Pages Router only listenes to thrown errors which\n // always open the overlay.\n // TODO: Should be the same default as App Router once we surface console.error in Pages Router.\n isErrorOverlayOpen: routerType === 'pages',\n routerType,\n cacheIndicator: enableCacheIndicator ? 'ready' : 'disabled',\n }\n}\n\nexport function useErrorOverlayReducer(\n routerType: 'pages' | 'app',\n getOwnerStack: (error: Error) => string | null | undefined,\n isRecoverableError: (error: Error) => boolean,\n enableCacheIndicator: boolean\n) {\n function pushErrorFilterDuplicates(\n events: readonly SupportedErrorEvent[],\n id: number,\n error: Error\n ): readonly SupportedErrorEvent[] {\n const ownerStack = getOwnerStack(error)\n const frames = parseStack((error.stack || '') + (ownerStack || ''))\n const pendingEvent: SupportedErrorEvent = {\n id,\n error,\n frames,\n type: isRecoverableError(error)\n ? 'recoverable'\n : isConsoleError(error)\n ? 'console'\n : 'runtime',\n }\n const pendingEvents = events.filter((event) => {\n // Filter out duplicate errors\n return (\n // SpiderMonkey and JavaScriptCore don't include the error message in the stack.\n // We don't want to dedupe errors with different messages for which we don't have a good stack\n '' + event.error !== '' + pendingEvent.error ||\n (event.error.stack !== pendingEvent.error.stack &&\n // TODO: Let ReactDevTools control deduping instead?\n getStackIgnoringStrictMode(event.error.stack) !==\n getStackIgnoringStrictMode(pendingEvent.error.stack)) ||\n getOwnerStack(event.error) !== getOwnerStack(pendingEvent.error)\n )\n })\n // If there's nothing filtered out, the event is a brand new error\n if (pendingEvents.length === events.length) {\n pendingEvents.push(pendingEvent)\n return pendingEvents\n }\n // Otherwise remain the same events\n return events\n }\n\n return useReducer(\n (state: OverlayState, action: DispatcherEvent): OverlayState => {\n switch (action.type) {\n case ACTION_DEBUG_INFO: {\n return { ...state, debugInfo: action.debugInfo }\n }\n case ACTION_CACHE_INDICATOR: {\n return { ...state, cacheIndicator: action.cacheIndicator }\n }\n case ACTION_STATIC_INDICATOR: {\n return { ...state, staticIndicator: action.staticIndicator }\n }\n case ACTION_BUILD_OK: {\n return { ...state, buildError: null }\n }\n case ACTION_BUILD_ERROR: {\n return { ...state, buildError: action.message }\n }\n case ACTION_BEFORE_REFRESH: {\n return { ...state, refreshState: { type: 'pending', errors: [] } }\n }\n case ACTION_REFRESH: {\n return {\n ...state,\n buildError: null,\n errors:\n // Errors can come in during updates. In this case, UNHANDLED_ERROR\n // and UNHANDLED_REJECTION events might be dispatched between the\n // BEFORE_REFRESH and the REFRESH event. We want to keep those errors\n // around until the next refresh. Otherwise we run into a race\n // condition where those errors would be cleared on refresh completion\n // before they can be displayed.\n state.refreshState.type === 'pending'\n ? state.refreshState.errors\n : [],\n refreshState: { type: 'idle' },\n }\n }\n case ACTION_UNHANDLED_ERROR:\n case ACTION_UNHANDLED_REJECTION: {\n switch (state.refreshState.type) {\n case 'idle': {\n return {\n ...state,\n nextId: state.nextId + 1,\n errors: pushErrorFilterDuplicates(\n state.errors,\n state.nextId,\n action.reason\n ),\n }\n }\n case 'pending': {\n return {\n ...state,\n nextId: state.nextId + 1,\n refreshState: {\n ...state.refreshState,\n errors: pushErrorFilterDuplicates(\n state.errors,\n state.nextId,\n action.reason\n ),\n },\n }\n }\n default:\n return state\n }\n }\n case ACTION_VERSION_INFO: {\n return { ...state, versionInfo: action.versionInfo }\n }\n case ACTION_DEV_INDICATOR_SET: {\n return { ...state, disableDevIndicator: action.disabled }\n }\n case ACTION_DEV_INDICATOR: {\n return {\n ...state,\n showIndicator: true,\n disableDevIndicator:\n shouldDisableDevIndicator || !!action.devIndicator.disabledUntil,\n }\n }\n case ACTION_ERROR_OVERLAY_OPEN: {\n return { ...state, isErrorOverlayOpen: true }\n }\n case ACTION_ERROR_OVERLAY_CLOSE: {\n return { ...state, isErrorOverlayOpen: false }\n }\n case ACTION_ERROR_OVERLAY_TOGGLE: {\n return { ...state, isErrorOverlayOpen: !state.isErrorOverlayOpen }\n }\n case ACTION_BUILDING_INDICATOR_SHOW: {\n return { ...state, buildingIndicator: true }\n }\n case ACTION_BUILDING_INDICATOR_HIDE: {\n return { ...state, buildingIndicator: false }\n }\n case ACTION_RENDERING_INDICATOR_SHOW: {\n return { ...state, renderingIndicator: true }\n }\n case ACTION_RENDERING_INDICATOR_HIDE: {\n return { ...state, renderingIndicator: false }\n }\n\n case ACTION_DEVTOOLS_POSITION: {\n return { ...state, devToolsPosition: action.devToolsPosition }\n }\n case ACTION_DEVTOOLS_PANEL_POSITION: {\n return {\n ...state,\n devToolsPanelPosition: {\n ...state.devToolsPanelPosition,\n [action.key]: action.devToolsPanelPosition,\n },\n }\n }\n\n case ACTION_DEVTOOLS_SCALE: {\n return { ...state, scale: action.scale }\n }\n case ACTION_DEVTOOL_UPDATE_ROUTE_STATE: {\n return { ...state, page: action.page }\n }\n case ACTION_DEVTOOLS_CONFIG: {\n const {\n theme,\n disableDevIndicator,\n devToolsPosition,\n devToolsPanelPosition,\n devToolsPanelSize,\n scale,\n hideShortcut,\n } = action.devToolsConfig\n\n return {\n ...state,\n theme: theme ?? state.theme,\n disableDevIndicator:\n disableDevIndicator ?? state.disableDevIndicator,\n devToolsPosition: devToolsPosition ?? state.devToolsPosition,\n devToolsPanelPosition:\n devToolsPanelPosition ?? state.devToolsPanelPosition,\n scale: scale ?? state.scale,\n devToolsPanelSize: devToolsPanelSize ?? state.devToolsPanelSize,\n hideShortcut:\n // hideShortcut can be null.\n hideShortcut !== undefined ? hideShortcut : state.hideShortcut,\n }\n }\n default: {\n return state\n }\n }\n },\n getInitialState(routerType, enableCacheIndicator)\n )\n}\n","let previousBodyPaddingRight: string | undefined\nlet previousBodyOverflowSetting: string | undefined\n\nlet activeLocks = 0\n\nexport function lock() {\n setTimeout(() => {\n if (activeLocks++ > 0) {\n return\n }\n\n const scrollBarGap =\n window.innerWidth - document.documentElement.clientWidth\n\n if (scrollBarGap > 0) {\n previousBodyPaddingRight = document.body.style.paddingRight\n document.body.style.paddingRight = `${scrollBarGap}px`\n }\n\n previousBodyOverflowSetting = document.body.style.overflow\n document.body.style.overflow = 'hidden'\n })\n}\n\nexport function unlock() {\n setTimeout(() => {\n if (activeLocks === 0 || --activeLocks !== 0) {\n return\n }\n\n if (previousBodyPaddingRight !== undefined) {\n document.body.style.paddingRight = previousBodyPaddingRight\n previousBodyPaddingRight = undefined\n }\n\n if (previousBodyOverflowSetting !== undefined) {\n document.body.style.overflow = previousBodyOverflowSetting\n previousBodyOverflowSetting = undefined\n }\n })\n}\n","\n import API from \"!../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./global.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./global.css\";\n export default content && content.locals ? content.locals : undefined;\n","\n import API from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./style.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./style.css\";\n export default content && content.locals ? content.locals : undefined;\n","import { parse } from 'next/dist/compiled/stacktrace-parser'\n\nconst regexNextStatic = /\\/_next(\\/static\\/.+)/\n\nexport interface StackFrame {\n file: string | null\n methodName: string\n arguments: string[]\n /** 1-based */\n line1: number | null\n /** 1-based */\n column1: number | null\n}\n\nexport function parseStack(\n stack: string,\n distDir = process.env.__NEXT_DIST_DIR\n): StackFrame[] {\n if (!stack) return []\n\n // throw away eval information that stacktrace-parser doesn't support\n // adapted from https://github.com/stacktracejs/error-stack-parser/blob/9f33c224b5d7b607755eb277f9d51fcdb7287e24/error-stack-parser.js#L59C33-L59C62\n stack = stack\n .split('\\n')\n .map((line) => {\n if (line.includes('(eval ')) {\n line = line\n .replace(/eval code/g, 'eval')\n .replace(/\\(eval at [^()]* \\(/, '(file://')\n .replace(/\\),.*$/g, ')')\n }\n\n return line\n })\n .join('\\n')\n\n const frames = parse(stack)\n return frames.map((frame) => {\n try {\n const url = new URL(frame.file!)\n const res = regexNextStatic.exec(url.pathname)\n if (res) {\n const effectiveDistDir = distDir\n ?.replace(/\\\\/g, '/')\n ?.replace(/\\/$/, '')\n if (effectiveDistDir) {\n frame.file =\n 'file://' + effectiveDistDir.concat(res.pop()!) + url.search\n }\n }\n } catch {}\n return {\n file: frame.file,\n line1: frame.lineNumber,\n column1: frame.column,\n methodName: frame.methodName,\n arguments: frame.arguments,\n }\n })\n}\n","// To distinguish from React error.digest, we use a different symbol here to determine if the error is from console.error or unhandled promise rejection.\nconst digestSym = Symbol.for('next.console.error.digest')\n\n// Represent non Error shape unhandled promise rejections or console.error errors.\n// Those errors will be captured and displayed in Error Overlay.\ntype ConsoleError = Error & {\n [digestSym]: 'NEXT_CONSOLE_ERROR'\n environmentName: string\n}\n\nexport function createConsoleError(\n message: string | Error,\n environmentName?: string | null\n): ConsoleError {\n const error = (\n typeof message === 'string' ? new Error(message) : message\n ) as ConsoleError\n error[digestSym] = 'NEXT_CONSOLE_ERROR'\n\n if (environmentName && !error.environmentName) {\n error.environmentName = environmentName\n }\n\n return error\n}\n\nexport const isConsoleError = (error: any): error is ConsoleError => {\n return error && error[digestSym] === 'NEXT_CONSOLE_ERROR'\n}\n","export function css(\n strings: TemplateStringsArray,\n ...keys: readonly string[]\n): string {\n const lastIndex = strings.length - 1\n const str =\n // Convert template literal into a single line string\n strings.slice(0, lastIndex).reduce((p, s, i) => p + s + keys[i], '') +\n strings[lastIndex]\n\n return (\n str\n // Remove comments\n .replace(/\\/\\*[\\s\\S]*?\\*\\//g, '')\n // Remove whitespace, tabs, and newlines\n .replace(/\\s+/g, ' ')\n // Remove spaces before and after semicolons, and spaces after commas\n .replace(/\\s*([:;,{}])\\s*/g, '$1')\n // Remove extra semicolons\n .replace(/;+}/g, '}')\n // Trim leading and trailing whitespaces\n .trim()\n )\n}\n","import { css } from '../utils/css'\nimport { useInsertionEffect } from 'react'\n\nexport const FontStyles = () => {\n useInsertionEffect(() => {\n const style = document.createElement('style')\n style.textContent = css`\n /* latin-ext */\n @font-face {\n font-family: '__nextjs-Geist';\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n src: url(/__nextjs_font/geist-latin-ext.woff2) format('woff2');\n unicode-range:\n U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,\n U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,\n U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n }\n /* latin-ext */\n @font-face {\n font-family: '__nextjs-Geist Mono';\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n src: url(/__nextjs_font/geist-mono-latin-ext.woff2) format('woff2');\n unicode-range:\n U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,\n U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,\n U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;\n }\n /* latin */\n @font-face {\n font-family: '__nextjs-Geist';\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n src: url(/__nextjs_font/geist-latin.woff2) format('woff2');\n unicode-range:\n U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,\n U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,\n U+2212, U+2215, U+FEFF, U+FFFD;\n }\n /* latin */\n @font-face {\n font-family: '__nextjs-Geist Mono';\n font-style: normal;\n font-weight: 400 600;\n font-display: swap;\n src: url(/__nextjs_font/geist-mono-latin.woff2) format('woff2');\n unicode-range:\n U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,\n U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,\n U+2212, U+2215, U+FEFF, U+FFFD;\n }\n `\n document.head.appendChild(style)\n\n return () => {\n document.head.removeChild(style)\n }\n }, [])\n\n return null\n}\n","import { createPortal } from 'react-dom'\nimport { useDevOverlayContext } from '../../dev-overlay.browser'\n\nexport function ShadowPortal({ children }: { children: React.ReactNode }) {\n const { shadowRoot } = useDevOverlayContext()\n\n return createPortal(children, shadowRoot)\n}\n","function decodeHex(hexStr: string): string {\n if (hexStr.trim() === '') {\n throw new Error(\"can't decode empty hex\")\n }\n\n const num = parseInt(hexStr, 16)\n if (isNaN(num)) {\n throw new Error(`invalid hex: \\`${hexStr}\\``)\n }\n\n return String.fromCodePoint(num)\n}\n\nconst enum Mode {\n Text,\n Underscore,\n Hex,\n LongHex,\n}\n\nconst DECODE_REGEX = /^__TURBOPACK__([a-zA-Z0-9_$]+)__$/\n\nexport function decodeMagicIdentifier(identifier: string): string {\n const matches = identifier.match(DECODE_REGEX)\n if (!matches) {\n return identifier\n }\n\n const inner = matches[1]\n\n let output = ''\n\n let mode: Mode = Mode.Text\n let buffer = ''\n for (let i = 0; i < inner.length; i++) {\n const char = inner[i]\n\n if (mode === Mode.Text) {\n if (char === '_') {\n mode = Mode.Underscore\n } else if (char === '$') {\n mode = Mode.Hex\n } else {\n output += char\n }\n } else if (mode === Mode.Underscore) {\n if (char === '_') {\n output += ' '\n mode = Mode.Text\n } else if (char === '$') {\n output += '_'\n mode = Mode.Hex\n } else {\n output += char\n mode = Mode.Text\n }\n } else if (mode === Mode.Hex) {\n if (buffer.length === 2) {\n output += decodeHex(buffer)\n buffer = ''\n }\n\n if (char === '_') {\n if (buffer !== '') {\n throw new Error(`invalid hex: \\`${buffer}\\``)\n }\n\n mode = Mode.LongHex\n } else if (char === '$') {\n if (buffer !== '') {\n throw new Error(`invalid hex: \\`${buffer}\\``)\n }\n\n mode = Mode.Text\n } else {\n buffer += char\n }\n } else if (mode === Mode.LongHex) {\n if (char === '_') {\n throw new Error(`invalid hex: \\`${buffer + char}\\``)\n } else if (char === '$') {\n output += decodeHex(buffer)\n buffer = ''\n\n mode = Mode.Text\n } else {\n buffer += char\n }\n }\n }\n\n return output\n}\n\nexport const MAGIC_IDENTIFIER_REGEX = /__TURBOPACK__[a-zA-Z0-9_$]+__/g\n\n/**\n * Cleans up module IDs by removing implementation details.\n * - Replaces [project] with .\n * - Removes content in brackets [], parentheses (), and angle brackets <>\n */\nexport function deobfuscateModuleId(moduleId: string): string {\n return (\n moduleId\n // Replace [project] with .\n .replace(/\\[project\\]/g, '.')\n // Remove content in square brackets (e.g. [app-rsc])\n .replace(/\\s\\[([^\\]]*)\\]/g, '')\n // Remove content in parentheses (e.g. (ecmascript))\n .replace(/\\s\\(([^)]*)\\)/g, '')\n // Remove content in angle brackets (e.g. <locals>)\n .replace(/\\s<([^>]*)>/g, '')\n // Clean up any extra whitespace\n .trim()\n )\n}\n\n/**\n * Removes the free call wrapper pattern (0, expr) from expressions.\n * This is a JavaScript pattern to call a function without binding 'this',\n * but it's noise for developers reading error messages.\n */\nexport function removeFreeCallWrapper(text: string): string {\n // Match (0, <ident>.<ident>) patterns anywhere in the text the beginning\n // Use Unicode property escapes (\\p{ID_Start}, \\p{ID_Continue}) for full JS identifier support\n // Requires the 'u' (unicode) flag in the regex\n return text.replace(\n /\\(0\\s*,\\s*(__TURBOPACK__[a-zA-Z0-9_$]+__\\.[\\p{ID_Start}_$][\\p{ID_Continue}$]*)\\)/u,\n '$1'\n )\n}\n\nexport type TextPartType = 'raw' | 'deobfuscated'\n\n/**\n * Deobfuscates text and returns an array of discriminated parts.\n * Each part is a tuple of [type, string] where type is either 'raw' (unchanged text)\n * or 'deobfuscated' (a magic identifier that was decoded).\n *\n * This is useful when you need to process or display deobfuscated and raw text differently.\n */\nexport function deobfuscateTextParts(\n text: string\n): Array<[TextPartType, string]> {\n // First, remove free call wrappers\n const withoutFreeCall = removeFreeCallWrapper(text)\n\n const parts: Array<[TextPartType, string]> = []\n let lastIndex = 0\n\n // Create a new regex instance for global matching\n const regex = new RegExp(MAGIC_IDENTIFIER_REGEX.source, 'g')\n\n for (\n let match = regex.exec(withoutFreeCall);\n match !== null;\n match = regex.exec(withoutFreeCall)\n ) {\n const matchStart = match.index\n const matchEnd = regex.lastIndex\n const ident = match[0]\n\n // Add raw text before this match (if any)\n if (matchStart > lastIndex) {\n const rawText = withoutFreeCall.substring(lastIndex, matchStart)\n parts.push(['raw', rawText])\n }\n\n // Process and add the deobfuscated part\n try {\n const decoded = decodeMagicIdentifier(ident)\n // If it was a magic identifier, clean up the module ID\n if (decoded !== ident) {\n // Check if this is an \"imported module\" reference\n const importedModuleMatch = decoded.match(/^imported module (.+)$/)\n if (importedModuleMatch) {\n // Clean the entire module path (which includes [app-rsc], etc.)\n const modulePathWithMetadata = importedModuleMatch[1]\n const cleaned = deobfuscateModuleId(modulePathWithMetadata)\n parts.push(['deobfuscated', `{imported module ${cleaned}}`])\n } else {\n const cleaned = deobfuscateModuleId(decoded)\n parts.push(['deobfuscated', `{${cleaned}}`])\n }\n } else {\n // Not actually a magic identifier, treat as raw\n parts.push(['raw', ident])\n }\n } catch (e) {\n parts.push(['deobfuscated', `{${ident} (decoding failed: ${e})}`])\n }\n\n lastIndex = matchEnd\n }\n\n // Add any remaining raw text after the last match\n if (lastIndex < withoutFreeCall.length) {\n const rawText = withoutFreeCall.substring(lastIndex)\n parts.push(['raw', rawText])\n }\n\n return parts\n}\n\n/**\n * Deobfuscates text by:\n * 1. Decoding magic identifiers\n * 2. Cleaning up module IDs\n * 3. Removing free call wrappers\n */\nexport function deobfuscateText(text: string): string {\n const parts = deobfuscateTextParts(text)\n return parts.map((part) => part[1]).join('')\n}\n","import React from 'react'\nimport { deobfuscateTextParts } from '../../../../shared/lib/magic-identifier'\n\nconst linkRegex = /https?:\\/\\/[^\\s/$.?#].[^\\s)'\"]*/i\n\nexport const HotlinkedText: React.FC<{\n text: string\n matcher?: (text: string) => string | null\n}> = function HotlinkedText(props) {\n const { text, matcher } = props\n\n // Deobfuscate the entire text first\n const deobfuscatedParts = deobfuscateTextParts(text)\n\n return (\n <>\n {deobfuscatedParts.map(([type, part], outerIndex) => {\n if (type === 'raw') {\n return (\n part\n // Split on whitespace and links\n .split(/(\\s+|https?:\\/\\/[^\\s/$.?#].[^\\s)'\"]*)/)\n .map((rawPart, index) => {\n if (linkRegex.test(rawPart)) {\n const link = linkRegex.exec(rawPart)!\n const href = link[0]\n // If link matcher is present, check if it returns a className\n let linkClassName: string | null = null\n if (typeof matcher === 'function') {\n linkClassName = matcher(href)\n // If matcher returns null, don't turn it into a link\n if (linkClassName === null) {\n return (\n <React.Fragment key={`link-${outerIndex}-${index}`}>\n {rawPart}\n </React.Fragment>\n )\n }\n }\n return (\n <React.Fragment key={`link-${outerIndex}-${index}`}>\n <a\n href={href}\n target=\"_blank\"\n rel=\"noreferrer noopener\"\n className={linkClassName || undefined}\n >\n {rawPart}\n </a>\n </React.Fragment>\n )\n } else {\n return (\n <React.Fragment key={`text-${outerIndex}-${index}`}>\n {rawPart}\n </React.Fragment>\n )\n }\n })\n )\n } else if (type === 'deobfuscated') {\n // italicize the deobfuscated part\n return <i key={`ident-${outerIndex}`}>{part}</i>\n } else {\n throw new Error(`Unknown text part type: ${type}`)\n }\n })}\n </>\n )\n}\n","const replacementRegExes = [\n /^webpack-internal:\\/\\/\\/(\\([\\w-]+\\)\\/)?/,\n /^(webpack:\\/\\/\\/|webpack:\\/\\/(_N_E\\/)?)(\\([\\w-]+\\)\\/)?/,\n]\n\nexport function isWebpackInternalResource(file: string) {\n for (const regex of replacementRegExes) {\n if (regex.test(file)) return true\n\n file = file.replace(regex, '')\n }\n\n return false\n}\n\n/**\n * Format the webpack internal id to original file path\n *\n * webpack-internal:///./src/hello.tsx => ./src/hello.tsx\n * webpack://_N_E/./src/hello.tsx => ./src/hello.tsx\n * webpack://./src/hello.tsx => ./src/hello.tsx\n * webpack:///./src/hello.tsx => ./src/hello.tsx\n */\nexport function formatFrameSourceFile(file: string) {\n for (const regex of replacementRegExes) {\n file = file.replace(regex, '')\n }\n\n return file\n}\n","import type {\n OriginalStackFrameResponse,\n OriginalStackFrameResponseResult,\n OriginalStackFramesRequest,\n StackFrame,\n} from '../server/shared'\nimport {\n isWebpackInternalResource,\n formatFrameSourceFile,\n} from './webpack-module-path'\n\nexport type { StackFrame }\n\ninterface ResolvedOriginalStackFrame extends OriginalStackFrameResponse {\n error: false\n reason: null\n external: boolean\n ignored: boolean\n sourceStackFrame: StackFrame\n}\n\ninterface RejectedOriginalStackFrame extends OriginalStackFrameResponse {\n error: true\n reason: string\n external: boolean\n ignored: boolean\n sourceStackFrame: StackFrame\n}\n\nexport type OriginalStackFrame =\n | ResolvedOriginalStackFrame\n | RejectedOriginalStackFrame\n\nfunction getOriginalStackFrame(\n source: StackFrame,\n response: OriginalStackFrameResponseResult\n): Promise<OriginalStackFrame> {\n async function _getOriginalStackFrame(): Promise<ResolvedOriginalStackFrame> {\n if (response.status === 'rejected') {\n throw new Error(response.reason)\n }\n\n const body: OriginalStackFrameResponse = response.value\n\n return {\n error: false,\n reason: null,\n external: false,\n sourceStackFrame: source,\n originalStackFrame: body.originalStackFrame,\n originalCodeFrame: body.originalCodeFrame || null,\n ignored: body.originalStackFrame?.ignored || false,\n }\n }\n\n // TODO: merge this section into ignoredList handling\n if (source.file === 'file://' || source.file?.match(/https?:\\/\\//)) {\n return Promise.resolve({\n error: false,\n reason: null,\n external: true,\n sourceStackFrame: source,\n originalStackFrame: null,\n originalCodeFrame: null,\n ignored: true,\n })\n }\n\n return _getOriginalStackFrame().catch(\n (err: Error): RejectedOriginalStackFrame => ({\n error: true,\n reason: err?.message ?? err?.toString() ?? 'Unknown Error',\n external: false,\n sourceStackFrame: source,\n originalStackFrame: null,\n originalCodeFrame: null,\n ignored: false,\n })\n )\n}\n\nexport async function getOriginalStackFrames(\n frames: readonly StackFrame[],\n type: 'server' | 'edge-server' | null,\n isAppDir: boolean\n): Promise<readonly OriginalStackFrame[]> {\n const req: OriginalStackFramesRequest = {\n frames,\n isServer: type === 'server',\n isEdgeServer: type === 'edge-server',\n isAppDirectory: isAppDir,\n }\n\n let res: Response | undefined = undefined\n let reason: string | undefined = undefined\n try {\n res = await fetch('/__nextjs_original-stack-frames', {\n method: 'POST',\n body: JSON.stringify(req),\n })\n } catch (e) {\n reason = e + ''\n }\n\n // When fails to fetch the original stack frames, we reject here to be\n // caught at `_getOriginalStackFrame()` and return the stack frames so\n // that the error overlay can render.\n if (res && res.ok && res.status !== 204) {\n const data = await res.json()\n return Promise.all(\n frames.map((frame, index) => getOriginalStackFrame(frame, data[index]))\n )\n } else {\n if (res) {\n reason = await res.text()\n }\n }\n return Promise.all(\n frames.map((frame) =>\n getOriginalStackFrame(frame, {\n status: 'rejected',\n reason: `Failed to fetch the original stack frames ${reason ? `: ${reason}` : ''}`,\n })\n )\n )\n}\n\nexport function getFrameSource(frame: StackFrame): string {\n if (!frame.file) return ''\n\n const isWebpackFrame = isWebpackInternalResource(frame.file)\n\n let str = ''\n // Skip URL parsing for webpack internal file paths.\n if (isWebpackFrame) {\n str = formatFrameSourceFile(frame.file)\n } else {\n try {\n const u = new URL(frame.file)\n\n let parsedPath = ''\n // Strip the origin for same-origin scripts.\n if (globalThis.location?.origin !== u.origin) {\n // URLs can be valid without an `origin`, so long as they have a\n // `protocol`. However, `origin` is preferred.\n if (u.origin === 'null') {\n parsedPath += u.protocol\n } else {\n parsedPath += u.origin\n }\n }\n\n // Strip query string information as it's typically too verbose to be\n // meaningful.\n parsedPath += u.pathname\n str = formatFrameSourceFile(parsedPath)\n } catch {\n str = formatFrameSourceFile(frame.file)\n }\n }\n\n if (!isWebpackInternalResource(frame.file) && frame.line1 != null) {\n // We don't need line and column numbers for anonymous sources because\n // there's no entrypoint for the location anyway.\n if (str && frame.file !== '<anonymous>') {\n if (frame.column1 != null) {\n str += ` (${frame.line1}:${frame.column1})`\n } else {\n str += ` (${frame.line1})`\n }\n }\n }\n return str\n}\n","import { useCallback } from 'react'\n\nexport function useOpenInEditor({\n file,\n line1,\n column1,\n}: {\n file?: string | null\n line1?: number | null\n column1?: number | null\n} = {}) {\n const openInEditor = useCallback(() => {\n if (file == null || line1 == null || column1 == null) return\n\n const params = new URLSearchParams()\n params.append('file', file)\n params.append('line1', String(line1))\n params.append('column1', String(column1))\n\n self\n .fetch(\n `${\n process.env.__NEXT_ROUTER_BASEPATH || ''\n }/__nextjs_launch-editor?${params.toString()}`\n )\n .then(\n () => {},\n (cause) => {\n console.error(\n `Failed to open file \"${file} (${line1}:${column1})\" in your editor. Cause:`,\n cause\n )\n }\n )\n }, [file, line1, column1])\n\n return openInEditor\n}\n","export function ExternalIcon(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n fill=\"currentColor\"\n d=\"M11.5 9.75V11.25C11.5 11.3881 11.3881 11.5 11.25 11.5H4.75C4.61193 11.5 4.5 11.3881 4.5 11.25L4.5 4.75C4.5 4.61193 4.61193 4.5 4.75 4.5H6.25H7V3H6.25H4.75C3.7835 3 3 3.7835 3 4.75V11.25C3 12.2165 3.7835 13 4.75 13H11.25C12.2165 13 13 12.2165 13 11.25V9.75V9H11.5V9.75ZM8.5 3H9.25H12.2495C12.6637 3 12.9995 3.33579 12.9995 3.75V6.75V7.5H11.4995V6.75V5.56066L8.53033 8.52978L8 9.06011L6.93934 7.99945L7.46967 7.46912L10.4388 4.5H9.25H8.5V3Z\"\n />\n </svg>\n )\n}\n\nexport function SourceMappingErrorIcon(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n height=\"16\"\n strokeLinejoin=\"round\"\n viewBox=\"-4 -4 24 24\"\n width=\"16\"\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8.55846 2H7.44148L1.88975 13.5H14.1102L8.55846 2ZM9.90929 1.34788C9.65902 0.829456 9.13413 0.5 8.55846 0.5H7.44148C6.86581 0.5 6.34092 0.829454 6.09065 1.34787L0.192608 13.5653C-0.127943 14.2293 0.355835 15 1.09316 15H14.9068C15.6441 15 16.1279 14.2293 15.8073 13.5653L9.90929 1.34788ZM8.74997 4.75V5.5V8V8.75H7.24997V8V5.5V4.75H8.74997ZM7.99997 12C8.55226 12 8.99997 11.5523 8.99997 11C8.99997 10.4477 8.55226 10 7.99997 10C7.44769 10 6.99997 10.4477 6.99997 11C6.99997 11.5523 7.44769 12 7.99997 12Z\"\n fill=\"currentColor\"\n ></path>\n </svg>\n )\n}\n","export function FileIcon({ lang }: { lang?: string }) {\n if (!lang) return <File />\n\n switch (lang.toLowerCase()) {\n case 'jsx':\n case 'tsx':\n return <React />\n case 'ts':\n case 'typescript':\n return <Ts />\n case 'javascript':\n case 'js':\n case 'mjs':\n return <Js />\n case 'json':\n return <Json />\n default:\n return <File />\n }\n}\n\nfunction Json() {\n return (\n <svg\n clipRule=\"evenodd\"\n fillRule=\"evenodd\"\n height=\"16\"\n viewBox=\"0 0 1321.45 1333.33\"\n width=\"16\"\n >\n <path\n d=\"M221.37 618.44h757.94V405.15H755.14c-23.5 0-56.32-12.74-71.82-28.24-15.5-15.5-25-43.47-25-66.97V82.89H88.39c-1.99 0-3.49 1-4.49 2-1.5 1-2 2.5-2 4.5v1155.04c0 1.5 1 3.5 2 4.5 1 1.49 3 1.99 4.49 1.99H972.8c2 0 1.89-.99 2.89-1.99 1.5-1 3.61-3 3.61-4.5v-121.09H221.36c-44.96 0-82-36.9-82-81.99V700.44c0-45.1 36.9-82 82-82zm126.51 117.47h75.24v146.61c0 30.79-2.44 54.23-7.33 70.31-4.92 16.03-14.8 29.67-29.65 40.85-14.86 11.12-33.91 16.72-57.05 16.72-24.53 0-43.51-3.71-56.94-11.06-13.5-7.36-23.89-18.1-31.23-32.3-7.35-14.14-11.69-31.67-12.99-52.53l71.5-10.81c.11 11.81 1.07 20.61 2.81 26.33 1.76 5.78 4.75 10.37 9 13.95 2.87 2.33 6.94 3.46 12.25 3.46 8.4 0 14.58-3.46 18.53-10.37 3.9-6.92 5.87-18.6 5.87-35V735.92zm112.77 180.67l71.17-4.97c1.54 12.81 4.69 22.62 9.44 29.28 7.74 10.88 18.74 16.34 33.09 16.34 10.68 0 18.93-2.76 24.68-8.36 5.81-5.58 8.7-12.07 8.7-19.41 0-6.97-2.71-13.26-8.2-18.79-5.47-5.53-18.23-10.68-38.28-15.65-32.89-8.17-56.27-19.1-70.26-32.74-14.12-13.57-21.18-30.92-21.18-52.03 0-13.83 3.61-26.89 10.85-39.21 7.22-12.38 18.07-22.06 32.59-29.09 14.52-7.04 34.4-10.56 59.65-10.56 31 0 54.62 6.41 70.88 19.29 16.28 12.81 25.92 33.24 29.04 61.27l-70.5 4.65c-1.87-12.25-5.81-21.17-11.81-26.7-6.05-5.6-14.35-8.36-24.9-8.36-8.71 0-15.31 2.07-19.73 6.16-4.4 4.09-6.59 9.12-6.59 15.02 0 4.27 1.81 8.11 5.37 11.57 3.45 3.59 11.8 6.85 25.02 9.93 32.75 7.86 56.2 15.84 70.31 23.87 14.18 8.05 24.52 17.98 30.96 29.92 6.44 11.88 9.66 25.2 9.66 39.96 0 17.29-4.3 33.24-12.88 47.89-8.63 14.58-20.61 25.7-36.08 33.24-15.41 7.54-34.85 11.31-58.33 11.31-41.24 0-69.81-8.86-85.68-26.52-15.88-17.65-24.85-40.09-26.96-67.3zm248.74-45.5c0-44.05 11.02-78.36 33.09-102.87 22.09-24.57 52.82-36.82 92.24-36.82 40.38 0 71.5 12.07 93.34 36.13 21.86 24.13 32.77 57.94 32.77 101.37 0 31.54-4.75 57.36-14.3 77.54-9.54 20.18-23.37 35.89-41.4 47.13-18.07 11.24-40.55 16.84-67.48 16.84-27.33 0-49.99-4.83-67.94-14.52-17.92-9.74-32.49-25.07-43.62-46.06-11.13-20.92-16.72-47.19-16.72-78.74zm74.89.19c0 27.21 4.57 46.81 13.68 58.68 9.13 11.88 21.57 17.85 37.26 17.85 16.1 0 28.65-5.84 37.45-17.47 8.87-11.68 13.28-32.54 13.28-62.77 0-25.39-4.63-43.92-13.84-55.61-9.26-11.76-21.75-17.6-37.56-17.6-15.13 0-27.34 5.97-36.49 17.85-9.21 11.88-13.78 31.61-13.78 59.07zm209.08-135.36h69.99l90.98 149.05V735.91h70.83v269.96h-70.83l-90.48-148.24v148.24h-70.49V735.91zm67.71-117.47h178.37c45.1 0 82 37.04 82 82v340.91c0 44.96-37.03 81.99-82 81.99h-178.37v147c0 17.5-6.99 32.99-18.5 44.5-11.5 11.49-27 18.5-44.5 18.5H62.97c-17.5 0-32.99-7-44.5-18.5-11.49-11.5-18.5-27-18.5-44.5V63.49c0-17.5 7-33 18.5-44.5S45.97.49 62.97.49H700.1c1.5-.5 3-.5 4.5-.5 7 0 14 3 19 7.49h1c1 .5 1.5 1 2.5 2l325.46 329.47c5.5 5.5 9.5 13 9.5 21.5 0 2.5-.5 4.5-1 7v250.98zM732.61 303.47V96.99l232.48 235.47H761.6c-7.99 0-14.99-3.5-20.5-8.49-4.99-5-8.49-12.5-8.49-20.5z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n\nfunction Js() {\n return (\n <svg\n height=\"16\"\n viewBox=\"0 0 50 50\"\n width=\"16\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M 43.335938 4 L 6.667969 4 C 5.195313 4 4 5.195313 4 6.667969 L 4 43.332031 C 4 44.804688 5.195313 46 6.667969 46 L 43.332031 46 C 44.804688 46 46 44.804688 46 43.335938 L 46 6.667969 C 46 5.195313 44.804688 4 43.335938 4 Z M 27 36.183594 C 27 40.179688 24.65625 42 21.234375 42 C 18.140625 42 15.910156 39.925781 15 38 L 18.144531 36.097656 C 18.75 37.171875 19.671875 38 21 38 C 22.269531 38 23 37.503906 23 35.574219 L 23 23 L 27 23 Z M 35.675781 42 C 32.132813 42 30.121094 40.214844 29 38 L 32 36 C 32.816406 37.335938 33.707031 38.613281 35.589844 38.613281 C 37.171875 38.613281 38 37.824219 38 36.730469 C 38 35.425781 37.140625 34.960938 35.402344 34.199219 L 34.449219 33.789063 C 31.695313 32.617188 29.863281 31.148438 29.863281 28.039063 C 29.863281 25.179688 32.046875 23 35.453125 23 C 37.878906 23 39.621094 23.84375 40.878906 26.054688 L 37.910156 27.964844 C 37.253906 26.789063 36.550781 26.328125 35.453125 26.328125 C 34.335938 26.328125 33.628906 27.039063 33.628906 27.964844 C 33.628906 29.109375 34.335938 29.570313 35.972656 30.28125 L 36.925781 30.691406 C 40.171875 32.078125 42 33.496094 42 36.683594 C 42 40.117188 39.300781 42 35.675781 42 Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n\nfunction Ts() {\n return (\n <svg\n fill=\"none\"\n height=\"14\"\n viewBox=\"0 0 512 512\"\n width=\"14\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <rect fill=\"currentColor\" height=\"512\" rx=\"50\" width=\"512\" />\n <rect fill=\"currentColor\" height=\"512\" rx=\"50\" width=\"512\" />\n <path\n clipRule=\"evenodd\"\n d=\"m316.939 407.424v50.061c8.138 4.172 17.763 7.3 28.875 9.386s22.823 3.129 35.135 3.129c11.999 0 23.397-1.147 34.196-3.442 10.799-2.294 20.268-6.075 28.406-11.342 8.138-5.266 14.581-12.15 19.328-20.65s7.121-19.007 7.121-31.522c0-9.074-1.356-17.026-4.069-23.857s-6.625-12.906-11.738-18.225c-5.112-5.319-11.242-10.091-18.389-14.315s-15.207-8.213-24.18-11.967c-6.573-2.712-12.468-5.345-17.685-7.9-5.217-2.556-9.651-5.163-13.303-7.822-3.652-2.66-6.469-5.476-8.451-8.448-1.982-2.973-2.974-6.336-2.974-10.091 0-3.441.887-6.544 2.661-9.308s4.278-5.136 7.512-7.118c3.235-1.981 7.199-3.52 11.894-4.615 4.696-1.095 9.912-1.642 15.651-1.642 4.173 0 8.581.313 13.224.938 4.643.626 9.312 1.591 14.008 2.894 4.695 1.304 9.259 2.947 13.694 4.928 4.434 1.982 8.529 4.276 12.285 6.884v-46.776c-7.616-2.92-15.937-5.084-24.962-6.492s-19.381-2.112-31.066-2.112c-11.895 0-23.163 1.278-33.805 3.833s-20.006 6.544-28.093 11.967c-8.086 5.424-14.476 12.333-19.171 20.729-4.695 8.395-7.043 18.433-7.043 30.114 0 14.914 4.304 27.638 12.912 38.172 8.607 10.533 21.675 19.45 39.204 26.751 6.886 2.816 13.303 5.579 19.25 8.291s11.086 5.528 15.415 8.448c4.33 2.92 7.747 6.101 10.252 9.543 2.504 3.441 3.756 7.352 3.756 11.733 0 3.233-.783 6.231-2.348 8.995s-3.939 5.162-7.121 7.196-7.147 3.624-11.894 4.771c-4.748 1.148-10.303 1.721-16.668 1.721-10.851 0-21.597-1.903-32.24-5.71-10.642-3.806-20.502-9.516-29.579-17.13zm-84.159-123.342h64.22v-41.082h-179v41.082h63.906v182.918h50.874z\"\n fill=\"var(--color-background-100)\"\n fillRule=\"evenodd\"\n />\n </svg>\n )\n}\n\nfunction File() {\n return (\n <svg width=\"16\" height=\"17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.5 7v7a2.5 2.5 0 0 1-2.5 2.5H4A2.5 2.5 0 0 1 1.5 14V.5h7.586a1 1 0 0 1 .707.293l4.414 4.414a1 1 0 0 1 .293.707V7zM13 7v7a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2h5v5h5zM9.5 2.621V5.5h2.879L9.5 2.621z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n\nfunction React() {\n return (\n <svg height=\"16\" strokeLinejoin=\"round\" viewBox=\"0 0 16 16\" width=\"16\">\n <g clipPath=\"url(#file_react_clip0_872_3183)\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M4.5 1.93782C4.70129 1.82161 4.99472 1.7858 5.41315 1.91053C5.83298 2.03567 6.33139 2.31073 6.87627 2.73948C7.01136 2.84578 7.14803 2.96052 7.28573 3.08331C6.86217 3.53446 6.44239 4.04358 6.03752 4.60092C5.35243 4.67288 4.70164 4.78186 4.09916 4.92309C4.06167 4.74244 4.03064 4.56671 4.00612 4.39656C3.90725 3.71031 3.91825 3.14114 4.01979 2.71499C4.12099 2.29025 4.29871 2.05404 4.5 1.93782ZM7.49466 1.95361C7.66225 2.08548 7.83092 2.22804 7.99999 2.38067C8.16906 2.22804 8.33773 2.08548 8.50532 1.95361C9.10921 1.47842 9.71982 1.12549 10.3012 0.952202C10.8839 0.778496 11.4838 0.7738 12 1.0718C12.5161 1.3698 12.812 1.89169 12.953 2.48322C13.0936 3.07333 13.0932 3.77858 12.9836 4.53917C12.9532 4.75024 12.9141 4.9676 12.8665 5.19034C13.0832 5.26044 13.291 5.33524 13.489 5.41444C14.2025 5.69983 14.8134 6.05217 15.2542 6.46899C15.696 6.8868 16 7.404 16 8C16 8.596 15.696 9.11319 15.2542 9.53101C14.8134 9.94783 14.2025 10.3002 13.489 10.5856C13.291 10.6648 13.0832 10.7396 12.8665 10.8097C12.9141 11.0324 12.9532 11.2498 12.9837 11.4608C13.0932 12.2214 13.0936 12.9267 12.953 13.5168C12.812 14.1083 12.5161 14.6302 12 14.9282C11.4839 15.2262 10.8839 15.2215 10.3012 15.0478C9.71984 14.8745 9.10923 14.5216 8.50534 14.0464C8.33775 13.9145 8.16906 13.7719 7.99999 13.6193C7.83091 13.7719 7.66223 13.9145 7.49464 14.0464C6.89075 14.5216 6.28014 14.8745 5.69879 15.0478C5.11605 15.2215 4.51613 15.2262 3.99998 14.9282C3.48383 14.6302 3.18794 14.1083 3.047 13.5168C2.9064 12.9267 2.90674 12.2214 3.01632 11.4608C3.04673 11.2498 3.08586 11.0324 3.13351 10.8097C2.91679 10.7395 2.709 10.6648 2.511 10.5856C1.79752 10.3002 1.18658 9.94783 0.745833 9.53101C0.304028 9.11319 0 8.596 0 8C0 7.404 0.304028 6.8868 0.745833 6.46899C1.18658 6.05217 1.79752 5.69983 2.511 5.41444C2.709 5.33524 2.9168 5.26044 3.13352 5.19034C3.08587 4.9676 3.04675 4.75024 3.01634 4.53917C2.90676 3.77858 2.90642 3.07332 3.04702 2.48321C3.18796 1.89169 3.48385 1.3698 4 1.0718C4.51615 0.773798 5.11607 0.778495 5.69881 0.952201C6.28016 1.12549 6.89077 1.47841 7.49466 1.95361ZM7.36747 4.51025C7.57735 4.25194 7.78881 4.00927 7.99999 3.78356C8.21117 4.00927 8.42263 4.25194 8.63251 4.51025C8.42369 4.50346 8.21274 4.5 8 4.5C7.78725 4.5 7.5763 4.50345 7.36747 4.51025ZM8.71425 3.08331C9.13781 3.53447 9.55759 4.04358 9.96246 4.60092C10.6475 4.67288 11.2983 4.78186 11.9008 4.92309C11.9383 4.74244 11.9693 4.56671 11.9939 4.39657C12.0927 3.71031 12.0817 3.14114 11.9802 2.71499C11.879 2.29025 11.7013 2.05404 11.5 1.93782C11.2987 1.82161 11.0053 1.7858 10.5868 1.91053C10.167 2.03568 9.66859 2.31073 9.12371 2.73948C8.98862 2.84578 8.85196 2.96052 8.71425 3.08331ZM8 5.5C8.48433 5.5 8.95638 5.51885 9.41188 5.55456C9.67056 5.93118 9.9229 6.33056 10.1651 6.75C10.4072 7.16944 10.6269 7.58766 10.8237 7.99998C10.6269 8.41232 10.4072 8.83055 10.165 9.25C9.92288 9.66944 9.67053 10.0688 9.41185 10.4454C8.95636 10.4812 8.48432 10.5 8 10.5C7.51567 10.5 7.04363 10.4812 6.58813 10.4454C6.32945 10.0688 6.0771 9.66944 5.83494 9.25C5.59277 8.83055 5.37306 8.41232 5.17624 7.99998C5.37306 7.58765 5.59275 7.16944 5.83492 6.75C6.07708 6.33056 6.32942 5.93118 6.5881 5.55456C7.04361 5.51884 7.51566 5.5 8 5.5ZM11.0311 6.25C11.1375 6.43423 11.2399 6.61864 11.3385 6.80287C11.4572 6.49197 11.5616 6.18752 11.6515 5.89178C11.3505 5.82175 11.0346 5.75996 10.706 5.70736C10.8163 5.8848 10.9247 6.06576 11.0311 6.25ZM11.0311 9.75C11.1374 9.56576 11.2399 9.38133 11.3385 9.19709C11.4572 9.50801 11.5617 9.81246 11.6515 10.1082C11.3505 10.1782 11.0346 10.24 10.7059 10.2926C10.8162 10.1152 10.9247 9.93424 11.0311 9.75ZM11.9249 7.99998C12.2051 8.62927 12.4362 9.24738 12.6151 9.83977C12.7903 9.78191 12.958 9.72092 13.1176 9.65708C13.7614 9.39958 14.2488 9.10547 14.5671 8.80446C14.8843 8.50445 15 8.23243 15 8C15 7.76757 14.8843 7.49555 14.5671 7.19554C14.2488 6.89453 13.7614 6.60042 13.1176 6.34292C12.958 6.27907 12.7903 6.21808 12.6151 6.16022C12.4362 6.7526 12.2051 7.37069 11.9249 7.99998ZM9.96244 11.3991C10.6475 11.3271 11.2983 11.2181 11.9008 11.0769C11.9383 11.2576 11.9694 11.4333 11.9939 11.6034C12.0928 12.2897 12.0817 12.8589 11.9802 13.285C11.879 13.7098 11.7013 13.946 11.5 14.0622C11.2987 14.1784 11.0053 14.2142 10.5868 14.0895C10.167 13.9643 9.66861 13.6893 9.12373 13.2605C8.98863 13.1542 8.85196 13.0395 8.71424 12.9167C9.1378 12.4655 9.55758 11.9564 9.96244 11.3991ZM8.63249 11.4898C8.42262 11.7481 8.21116 11.9907 7.99999 12.2164C7.78881 11.9907 7.57737 11.7481 7.36749 11.4897C7.57631 11.4965 7.78726 11.5 8 11.5C8.21273 11.5 8.42367 11.4965 8.63249 11.4898ZM4.96891 9.75C5.07528 9.93424 5.18375 10.1152 5.29404 10.2926C4.9654 10.24 4.64951 10.1782 4.34844 10.1082C4.43833 9.81246 4.54276 9.508 4.66152 9.19708C4.76005 9.38133 4.86254 9.56575 4.96891 9.75ZM6.03754 11.3991C5.35244 11.3271 4.70163 11.2181 4.09914 11.0769C4.06165 11.2576 4.03062 11.4333 4.0061 11.6034C3.90723 12.2897 3.91823 12.8589 4.01977 13.285C4.12097 13.7098 4.29869 13.946 4.49998 14.0622C4.70127 14.1784 4.9947 14.2142 5.41313 14.0895C5.83296 13.9643 6.33137 13.6893 6.87625 13.2605C7.01135 13.1542 7.14802 13.0395 7.28573 12.9167C6.86217 12.4655 6.4424 11.9564 6.03754 11.3991ZM4.07507 7.99998C3.79484 8.62927 3.56381 9.24737 3.38489 9.83977C3.20969 9.78191 3.042 9.72092 2.88239 9.65708C2.23864 9.39958 1.75123 9.10547 1.43294 8.80446C1.11571 8.50445 1 8.23243 1 8C1 7.76757 1.11571 7.49555 1.43294 7.19554C1.75123 6.89453 2.23864 6.60042 2.88239 6.34292C3.042 6.27907 3.2097 6.21808 3.3849 6.16022C3.56383 6.75261 3.79484 7.37069 4.07507 7.99998ZM4.66152 6.80287C4.54277 6.49197 4.43835 6.18752 4.34846 5.89178C4.64952 5.82175 4.96539 5.75996 5.29402 5.70736C5.18373 5.8848 5.07526 6.06576 4.96889 6.25C4.86253 6.43423 4.76005 6.61864 4.66152 6.80287ZM9.25 8C9.25 8.69036 8.69036 9.25 8 9.25C7.30964 9.25 6.75 8.69036 6.75 8C6.75 7.30965 7.30964 6.75 8 6.75C8.69036 6.75 9.25 7.30965 9.25 8Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"file_react_clip0_872_3183\">\n <rect width=\"16\" height=\"16\" fill=\"white\"></rect>\n </clipPath>\n </defs>\n </svg>\n )\n}\n","import Anser, { type AnserJsonEntry } from 'next/dist/compiled/anser'\nimport stripAnsi from 'next/dist/compiled/strip-ansi'\nimport type { StackFrame } from '../../../shared/stack-frame'\n\n// Strip leading spaces out of the code frame\nexport function formatCodeFrame(codeFrame: string) {\n const lines = codeFrame.split(/\\r?\\n/g)\n\n // Find the minimum length of leading spaces after `|` in the code frame\n const miniLeadingSpacesLength = lines\n .map((line) =>\n /^>? +\\d+ +\\| [ ]+/.exec(stripAnsi(line)) === null\n ? null\n : /^>? +\\d+ +\\| ( *)/.exec(stripAnsi(line))\n )\n .filter(Boolean)\n .map((v) => v!.pop()!)\n .reduce((c, n) => (isNaN(c) ? n.length : Math.min(c, n.length)), NaN)\n\n // When the minimum length of leading spaces is greater than 1, remove them\n // from the code frame to help the indentation looks better when there's a lot leading spaces.\n if (miniLeadingSpacesLength > 1) {\n return lines\n .map((line, a) =>\n ~(a = line.indexOf('|'))\n ? line.substring(0, a) +\n line.substring(a).replace(`^\\\\ {${miniLeadingSpacesLength}}`, '')\n : line\n )\n .join('\\n')\n }\n return lines.join('\\n')\n}\n\nexport function groupCodeFrameLines(formattedFrame: string) {\n // Map the decoded lines to a format that can be rendered\n const decoded = Anser.ansiToJson(formattedFrame, {\n json: true,\n use_classes: true,\n remove_empty: true,\n })\n const lines: (typeof decoded)[] = []\n\n let line: typeof decoded = []\n for (const token of decoded) {\n // If the token is a new line with only line break \"\\n\",\n // break here into a new line.\n // The line could also contain spaces, it's still considered line break if \"\\n\" line has spaces.\n if (typeof token.content === 'string' && token.content.includes('\\n')) {\n const segments = token.content.split('\\n')\n for (let i = 0; i < segments.length; i++) {\n const segment = segments[i]\n if (segment) {\n line.push({\n ...token,\n content: segment,\n })\n }\n if (i < segments.length - 1) {\n lines.push(line)\n line = []\n }\n }\n } else {\n line.push(token)\n }\n }\n if (line.length > 0) {\n lines.push(line)\n }\n\n return lines\n}\n\nexport function parseLineNumberFromCodeFrameLine(\n line: AnserJsonEntry[],\n stackFrame: StackFrame\n) {\n let lineNumberToken: AnserJsonEntry | undefined\n let line1: string | undefined\n // parse line number from line first 2 tokens\n // e.g. ` > 1 | const foo = 'bar'` => `1`, first token is `1 |`\n // e.g. ` 2 | const foo = 'bar'` => `2`. first 2 tokens are ' ' and ' 2 |'\n if (line[0]?.content === '>' || line[0]?.content === ' ') {\n lineNumberToken = line[1]\n line1 = lineNumberToken?.content?.replace('|', '')?.trim()\n }\n\n // When the line number is possibly undefined, it can be just the non-source code line\n // e.g. the ^ sign can also take a line, we skip rendering line number for it\n return {\n lineNumber: line1,\n isErroredLine: line1 === stackFrame.line1?.toString(),\n }\n}\n","import { useMemo } from 'react'\nimport { HotlinkedText } from '../hot-linked-text'\nimport { getFrameSource, type StackFrame } from '../../../shared/stack-frame'\nimport { useOpenInEditor } from '../../utils/use-open-in-editor'\nimport { ExternalIcon } from '../../icons/external'\nimport { FileIcon } from '../../icons/file'\nimport {\n formatCodeFrame,\n groupCodeFrameLines,\n parseLineNumberFromCodeFrameLine,\n} from './parse-code-frame'\n\ntype CodeFrameProps = {\n stackFrame: StackFrame\n codeFrame: string\n}\n\nexport function CodeFrame({ stackFrame, codeFrame }: CodeFrameProps) {\n const parsedLineStates = useMemo(() => {\n const decodedLines = groupCodeFrameLines(formatCodeFrame(codeFrame))\n\n return decodedLines.map((line) => {\n return {\n line,\n parsedLine: parseLineNumberFromCodeFrameLine(line, stackFrame),\n }\n })\n }, [codeFrame, stackFrame])\n\n const open = useOpenInEditor({\n file: stackFrame.file,\n line1: stackFrame.line1 ?? 1,\n column1: stackFrame.column1 ?? 1,\n })\n\n const fileExtension = stackFrame?.file?.split('.').pop()\n\n // TODO: make the caret absolute\n return (\n <div data-nextjs-codeframe>\n <div className=\"code-frame-header\">\n {/* TODO: This is <div> in `Terminal` component.\n Changing now will require multiple test snapshots updates.\n Leaving as <div> as is trivial and does not affect the UI.\n Change when the new redbox matcher `toDisplayRedbox` is used.\n */}\n <p className=\"code-frame-link\">\n <span className=\"code-frame-icon\">\n <FileIcon lang={fileExtension} />\n </span>\n <span data-text>\n {getFrameSource(stackFrame)} @{' '}\n <HotlinkedText text={stackFrame.methodName} />\n </span>\n <button\n aria-label=\"Open in editor\"\n data-with-open-in-editor-link-source-file\n onClick={open}\n >\n <span className=\"code-frame-icon\" data-icon=\"right\">\n <ExternalIcon width={16} height={16} />\n </span>\n </button>\n </p>\n </div>\n <pre className=\"code-frame-pre\">\n <div className=\"code-frame-lines\">\n {parsedLineStates.map(({ line, parsedLine }, lineIndex) => {\n const { lineNumber, isErroredLine } = parsedLine\n\n const lineNumberProps: Record<string, string | boolean> = {}\n if (lineNumber) {\n lineNumberProps['data-nextjs-codeframe-line'] = lineNumber\n }\n if (isErroredLine) {\n lineNumberProps['data-nextjs-codeframe-line--errored'] = true\n }\n\n return (\n <div key={`line-${lineIndex}`} {...lineNumberProps}>\n {line.map((entry, entryIndex) => (\n <span\n key={`frame-${entryIndex}`}\n style={{\n color: entry.fg ? `var(--color-${entry.fg})` : undefined,\n ...(entry.decoration === 'bold'\n ? // TODO(jiwon): This used to be 800, but the symbols like `─┬─` are\n // having longer width than expected on Geist Mono font-weight\n // above 600, hence a temporary fix is to use 500 for bold.\n { fontWeight: 500 }\n : entry.decoration === 'italic'\n ? { fontStyle: 'italic' }\n : undefined),\n }}\n >\n {entry.content}\n </span>\n ))}\n </div>\n )\n })}\n </div>\n </pre>\n </div>\n )\n}\n\nexport const CODE_FRAME_STYLES = `\n [data-nextjs-codeframe] {\n --code-frame-padding: 12px;\n --code-frame-line-height: var(--size-16);\n background-color: var(--color-background-200);\n color: var(--color-gray-1000);\n text-overflow: ellipsis;\n border: 1px solid var(--color-gray-400);\n border-radius: 8px;\n font-family: var(--font-stack-monospace);\n font-size: var(--size-12);\n line-height: var(--code-frame-line-height);\n margin: 8px 0;\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n }\n\n .code-frame-link,\n .code-frame-pre {\n padding: var(--code-frame-padding);\n }\n\n .code-frame-link svg {\n flex-shrink: 0;\n }\n\n .code-frame-lines {\n min-width: max-content;\n }\n\n .code-frame-link [data-text] {\n text-align: left;\n margin: auto 6px;\n }\n\n .code-frame-header {\n width: 100%;\n transition: background 100ms ease-out;\n border-radius: 8px 8px 0 0;\n border-bottom: 1px solid var(--color-gray-400);\n }\n\n [data-with-open-in-editor-link-source-file] {\n padding: 4px;\n margin: -4px 0 -4px auto;\n border-radius: var(--rounded-full);\n margin-left: auto;\n\n &:focus-visible {\n outline: var(--focus-ring);\n outline-offset: -2px;\n }\n\n &:hover {\n background: var(--color-gray-100);\n }\n }\n\n [data-nextjs-codeframe]::selection,\n [data-nextjs-codeframe] *::selection {\n background-color: var(--color-ansi-selection);\n }\n\n [data-nextjs-codeframe] *:not(a) {\n color: inherit;\n background-color: transparent;\n font-family: var(--font-stack-monospace);\n }\n\n [data-nextjs-codeframe-line][data-nextjs-codeframe-line--errored=\"true\"] {\n position: relative;\n isolation: isolate;\n\n > span { \n position: relative;\n z-index: 1;\n }\n\n &::after {\n content: \"\";\n width: calc(100% + var(--code-frame-padding) * 2);\n height: var(--code-frame-line-height);\n left: calc(-1 * var(--code-frame-padding));\n background: var(--color-red-200);\n box-shadow: 2px 0 0 0 var(--color-red-900) inset;\n position: absolute;\n }\n }\n\n\n [data-nextjs-codeframe] > * {\n margin: 0;\n }\n\n .code-frame-link {\n display: flex;\n margin: 0;\n outline: 0;\n }\n .code-frame-link [data-icon='right'] {\n margin-left: auto;\n }\n\n [data-nextjs-codeframe] div > pre {\n overflow: hidden;\n display: inline-block;\n }\n\n [data-nextjs-codeframe] svg {\n color: var(--color-gray-900);\n }\n`\n","import * as React from 'react'\n\ntype DialogBodyProps = {\n children?: React.ReactNode\n className?: string\n} & React.HTMLAttributes<HTMLDivElement>\n\nconst DialogBody: React.FC<DialogBodyProps> = function DialogBody({\n children,\n className,\n ...props\n}) {\n return (\n <div data-nextjs-dialog-body className={className} {...props}>\n {children}\n </div>\n )\n}\n\nexport { DialogBody }\n","import * as React from 'react'\n\ntype DialogContentProps = {\n children?: React.ReactNode\n className?: string\n} & React.HTMLAttributes<HTMLDivElement>\n\nconst DialogContent: React.FC<DialogContentProps> = function DialogContent({\n children,\n className,\n ...props\n}) {\n return (\n <div data-nextjs-dialog-content className={className} {...props}>\n {children}\n </div>\n )\n}\n\nexport { DialogContent }\n","import { css } from '../../utils/css'\n\nexport const styles = css`\n [data-nextjs-dialog-root] {\n --next-dialog-radius: var(--rounded-xl);\n --next-dialog-max-width: 960px;\n --next-dialog-row-padding: 16px;\n --next-dialog-padding: 12px;\n --next-dialog-notch-height: 42px;\n --next-dialog-border-width: 1px;\n\n display: flex;\n flex-direction: column;\n width: 100%;\n max-height: calc(100% - 56px);\n max-width: var(--next-dialog-max-width);\n margin-right: auto;\n margin-left: auto;\n scale: 0.97;\n opacity: 0;\n transition-property: scale, opacity;\n transition-duration: var(--transition-duration);\n transition-timing-function: var(--timing-overlay);\n\n &[data-rendered='true'] {\n opacity: 1;\n scale: 1;\n }\n\n [data-nextjs-scroll-fader][data-side='top'] {\n left: 1px;\n top: calc(\n var(--next-dialog-notch-height) + var(--next-dialog-border-width)\n );\n width: calc(100% - var(--next-dialog-padding));\n opacity: 0;\n }\n }\n\n [data-nextjs-dialog] {\n outline: 0;\n }\n\n [data-nextjs-dialog-backdrop] {\n opacity: 0;\n transition: opacity var(--transition-duration) var(--timing-overlay);\n }\n\n [data-nextjs-dialog-overlay] {\n margin: 8px;\n }\n\n [data-nextjs-dialog-overlay][data-rendered='true']\n [data-nextjs-dialog-backdrop] {\n opacity: 1;\n }\n\n [data-nextjs-dialog-content] {\n border: none;\n margin: 0;\n display: flex;\n flex-direction: column;\n position: relative;\n padding: var(--next-dialog-padding);\n }\n\n [data-nextjs-dialog-content] > [data-nextjs-dialog-header] {\n flex-shrink: 0;\n margin-bottom: 8px;\n }\n\n [data-nextjs-dialog-content] > [data-nextjs-dialog-body] {\n position: relative;\n flex: 1 1 auto;\n }\n\n @media (max-height: 812px) {\n [data-nextjs-dialog-overlay] {\n max-height: calc(100% - 15px);\n }\n }\n\n @media (min-width: 576px) {\n [data-nextjs-dialog-root] {\n --next-dialog-max-width: 540px;\n }\n }\n\n @media (min-width: 768px) {\n [data-nextjs-dialog-root] {\n --next-dialog-max-width: 720px;\n }\n }\n\n @media (min-width: 992px) {\n [data-nextjs-dialog-root] {\n --next-dialog-max-width: 960px;\n }\n }\n`\n","/**\n * Merge multiple args to a single string with spaces. Useful for merging class names.\n * @example\n * cx('foo', 'bar') // 'foo bar'\n * cx('foo', null, 'bar', undefined, 'baz', false) // 'foo bar baz'\n */\nexport function cx(...args: (string | undefined | null | false)[]): string {\n return args.filter(Boolean).join(' ')\n}\n","import * as React from 'react'\nimport { cx } from '../../utils/cx'\n\nfunction useCopyLegacy(content: string) {\n type CopyState =\n | {\n state: 'initial'\n }\n | {\n state: 'error'\n error: unknown\n }\n | { state: 'success' }\n | { state: 'pending' }\n\n // This would be simpler with useActionState but we need to support React 18 here.\n // React 18 also doesn't have async transitions.\n const [copyState, dispatch] = React.useReducer(\n (\n state: CopyState,\n action:\n | { type: 'reset' | 'copied' | 'copying' }\n | { type: 'error'; error: unknown }\n ): CopyState => {\n if (action.type === 'reset') {\n return { state: 'initial' }\n }\n if (action.type === 'copied') {\n return { state: 'success' }\n }\n if (action.type === 'copying') {\n return { state: 'pending' }\n }\n if (action.type === 'error') {\n return { state: 'error', error: action.error }\n }\n return state\n },\n {\n state: 'initial',\n }\n )\n function copy() {\n if (isPending) {\n return\n }\n\n if (!navigator.clipboard) {\n dispatch({\n type: 'error',\n error: 'Copy to clipboard is not supported in this browser',\n })\n } else {\n dispatch({ type: 'copying' })\n navigator.clipboard.writeText(content).then(\n () => {\n dispatch({ type: 'copied' })\n },\n (error) => {\n dispatch({ type: 'error', error })\n }\n )\n }\n }\n const reset = React.useCallback(() => {\n dispatch({ type: 'reset' })\n }, [])\n\n const isPending = copyState.state === 'pending'\n\n return [copyState, copy, reset, isPending] as const\n}\n\nfunction useCopyModern(content: string) {\n type CopyState =\n | {\n state: 'initial'\n }\n | {\n state: 'error'\n error: unknown\n }\n | { state: 'success' }\n\n const [copyState, dispatch, isPending] = React.useActionState(\n (\n state: CopyState,\n action: 'reset' | 'copy'\n ): CopyState | Promise<CopyState> => {\n if (action === 'reset') {\n return { state: 'initial' }\n }\n if (action === 'copy') {\n if (!navigator.clipboard) {\n return {\n state: 'error',\n error: 'Copy to clipboard is not supported in this browser',\n }\n }\n return navigator.clipboard.writeText(content).then(\n () => {\n return { state: 'success' }\n },\n (error) => {\n return { state: 'error', error }\n }\n )\n }\n return state\n },\n {\n state: 'initial',\n }\n )\n\n function copy() {\n React.startTransition(() => {\n dispatch('copy')\n })\n }\n\n const reset = React.useCallback(() => {\n dispatch('reset')\n }, [\n // TODO: `dispatch` from `useActionState` is not reactive.\n // Remove from dependencies once https://github.com/facebook/react/pull/29665 is released.\n dispatch,\n ])\n\n return [copyState, copy, reset, isPending] as const\n}\n\nconst useCopy =\n typeof React.useActionState === 'function' ? useCopyModern : useCopyLegacy\n\ntype CopyButtonProps = React.HTMLProps<HTMLButtonElement> & {\n actionLabel: string\n successLabel: string\n icon?: React.ReactNode\n}\n\nexport function CopyButton(\n props: CopyButtonProps & { content?: string; getContent?: () => string }\n) {\n const {\n content,\n getContent,\n actionLabel,\n successLabel,\n icon,\n disabled,\n ...rest\n } = props\n const getContentString = (): string => {\n if (content) {\n return content\n }\n if (getContent) {\n return getContent()\n }\n return ''\n }\n const contentString = getContentString()\n const [copyState, copy, reset, isPending] = useCopy(contentString)\n\n const error = copyState.state === 'error' ? copyState.error : null\n React.useEffect(() => {\n if (error !== null) {\n // Only log warning in terminal to avoid showing in the error overlay.\n // When it's errored, the copy button will be disabled.\n console.warn(error)\n }\n }, [error])\n React.useEffect(() => {\n if (copyState.state === 'success') {\n const timeoutId = setTimeout(() => {\n reset()\n }, 2000)\n\n return () => {\n clearTimeout(timeoutId)\n }\n }\n }, [isPending, copyState.state, reset])\n const isDisabled = !navigator.clipboard || isPending || disabled || !!error\n const label = copyState.state === 'success' ? successLabel : actionLabel\n\n // Assign default icon\n const renderedIcon =\n copyState.state === 'success' ? (\n <CopySuccessIcon />\n ) : (\n icon || (\n <CopyIcon\n width={14}\n height={14}\n className=\"error-overlay-toolbar-button-icon\"\n />\n )\n )\n\n return (\n <button\n {...rest}\n type=\"button\"\n title={label}\n aria-label={label}\n aria-disabled={isDisabled}\n disabled={isDisabled}\n data-nextjs-copy-button\n className={cx(\n props.className,\n 'nextjs-data-copy-button',\n `nextjs-data-copy-button--${copyState.state}`\n )}\n onClick={() => {\n if (!isDisabled) {\n copy()\n }\n }}\n >\n {renderedIcon}\n {copyState.state === 'error' ? ` ${copyState.error}` : null}\n </button>\n )\n}\n\nfunction CopyIcon(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n width=\"14\"\n height=\"14\"\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M2.406.438c-.845 0-1.531.685-1.531 1.53v6.563c0 .846.686 1.531 1.531 1.531H3.937V8.75H2.406a.219.219 0 0 1-.219-.219V1.97c0-.121.098-.219.22-.219h4.812c.12 0 .218.098.218.219v.656H8.75v-.656c0-.846-.686-1.532-1.531-1.532H2.406zm4.375 3.5c-.845 0-1.531.685-1.531 1.53v6.563c0 .846.686 1.531 1.531 1.531h4.813c.845 0 1.531-.685 1.531-1.53V5.468c0-.846-.686-1.532-1.531-1.532H6.78zm-.218 1.53c0-.12.097-.218.218-.218h4.813c.12 0 .219.098.219.219v6.562c0 .121-.098.219-.22.219H6.782a.219.219 0 0 1-.218-.219V5.47z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n\nfunction CopySuccessIcon() {\n return (\n <svg\n height=\"16\"\n xlinkTitle=\"copied\"\n viewBox=\"0 0 16 16\"\n width=\"16\"\n stroke=\"currentColor\"\n fill=\"currentColor\"\n >\n <path d=\"M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z\" />\n </svg>\n )\n}\n\nexport const COPY_BUTTON_STYLES = `\n .nextjs-data-copy-button {\n color: inherit;\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n }\n .nextjs-data-copy-button:disabled {\n background-color: var(--color-gray-100);\n cursor: not-allowed;\n }\n .nextjs-data-copy-button--initial:hover:not(:disabled) {\n cursor: pointer;\n }\n .nextjs-data-copy-button--error:not(:disabled),\n .nextjs-data-copy-button--error:hover:not(:disabled) {\n color: var(--color-ansi-red);\n }\n .nextjs-data-copy-button--success:not(:disabled) {\n color: var(--color-ansi-green);\n }\n`\n","import { startTransition, useActionState, useEffect } from 'react'\nimport { CopyButton } from '../../copy-button'\n\nfunction NodeJsIcon(props: any) {\n return (\n <svg\n width=\"14\"\n height=\"14\"\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <mask\n id=\"nodejs_icon_mask_a\"\n style={{ maskType: 'luminance' }}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"14\"\n height=\"14\"\n >\n <path\n d=\"M6.67.089 1.205 3.256a.663.663 0 0 0-.33.573v6.339c0 .237.126.455.33.574l5.466 3.17a.66.66 0 0 0 .66 0l5.465-3.17a.664.664 0 0 0 .329-.574V3.829a.663.663 0 0 0-.33-.573L7.33.089a.663.663 0 0 0-.661 0\"\n fill=\"#fff\"\n />\n </mask>\n <g mask=\"url(#nodejs_icon_mask_a)\">\n <path\n d=\"M18.648 2.717 3.248-4.86-4.648 11.31l15.4 7.58 7.896-16.174z\"\n fill=\"url(#nodejs_icon_linear_gradient_b)\"\n />\n </g>\n <mask\n id=\"nodejs_icon_mask_c\"\n style={{ maskType: 'luminance' }}\n maskUnits=\"userSpaceOnUse\"\n x=\"1\"\n y=\"0\"\n width=\"12\"\n height=\"14\"\n >\n <path\n d=\"M1.01 10.57a.663.663 0 0 0 .195.17l4.688 2.72.781.45a.66.66 0 0 0 .51.063l5.764-10.597a.653.653 0 0 0-.153-.122L9.216 1.18 7.325.087a.688.688 0 0 0-.171-.07L1.01 10.57z\"\n fill=\"#fff\"\n />\n </mask>\n <g mask=\"url(#nodejs_icon_mask_c)\">\n <path\n d=\"M-5.647 4.958 5.226 19.734l14.38-10.667L8.734-5.71-5.647 4.958z\"\n fill=\"url(#nodejs_icon_linear_gradient_d)\"\n />\n </g>\n <g>\n <mask\n id=\"nodejs_icon_mask_e\"\n style={{ maskType: 'luminance' }}\n maskUnits=\"userSpaceOnUse\"\n x=\"1\"\n y=\"0\"\n width=\"13\"\n height=\"14\"\n >\n <path\n d=\"M6.934.004A.665.665 0 0 0 6.67.09L1.22 3.247l5.877 10.746a.655.655 0 0 0 .235-.08l5.465-3.17a.665.665 0 0 0 .319-.453L7.126.015a.684.684 0 0 0-.189-.01\"\n fill=\"#fff\"\n />\n </mask>\n <g mask=\"url(#nodejs_icon_mask_e)\">\n <path\n d=\"M1.22.002v13.992h11.894V.002H1.22z\"\n fill=\"url(#nodejs_icon_linear_gradient_f)\"\n />\n </g>\n </g>\n <defs>\n <linearGradient\n id=\"nodejs_icon_linear_gradient_b\"\n x1=\"10.943\"\n y1=\"-1.084\"\n x2=\"2.997\"\n y2=\"15.062\"\n gradientUnits=\"userSpaceOnUse\"\n >\n <stop offset=\".3\" stopColor=\"#3E863D\" />\n <stop offset=\".5\" stopColor=\"#55934F\" />\n <stop offset=\".8\" stopColor=\"#5AAD45\" />\n </linearGradient>\n <linearGradient\n id=\"nodejs_icon_linear_gradient_d\"\n x1=\"-.145\"\n y1=\"12.431\"\n x2=\"14.277\"\n y2=\"1.818\"\n gradientUnits=\"userSpaceOnUse\"\n >\n <stop offset=\".57\" stopColor=\"#3E863D\" />\n <stop offset=\".72\" stopColor=\"#619857\" />\n <stop offset=\"1\" stopColor=\"#76AC64\" />\n </linearGradient>\n <linearGradient\n id=\"nodejs_icon_linear_gradient_f\"\n x1=\"1.225\"\n y1=\"6.998\"\n x2=\"13.116\"\n y2=\"6.998\"\n gradientUnits=\"userSpaceOnUse\"\n >\n <stop offset=\".16\" stopColor=\"#6BBF47\" />\n <stop offset=\".38\" stopColor=\"#79B461\" />\n <stop offset=\".47\" stopColor=\"#75AC64\" />\n <stop offset=\".7\" stopColor=\"#659E5A\" />\n <stop offset=\".9\" stopColor=\"#3E863D\" />\n </linearGradient>\n </defs>\n </svg>\n )\n}\n\nfunction NodeJsDisabledIcon(props: any) {\n return (\n <svg\n width=\"14\"\n height=\"14\"\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <mask\n id=\"nodejs_icon_mask_a\"\n style={{ maskType: 'luminance' }}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"14\"\n height=\"14\"\n >\n <path\n d=\"M6.67.089 1.205 3.256a.663.663 0 0 0-.33.573v6.339c0 .237.126.455.33.574l5.466 3.17a.66.66 0 0 0 .66 0l5.465-3.17a.664.664 0 0 0 .329-.574V3.829a.663.663 0 0 0-.33-.573L7.33.089a.663.663 0 0 0-.661 0\"\n fill=\"#fff\"\n />\n </mask>\n <g mask=\"url(#nodejs_icon_mask_a)\">\n <path\n d=\"M18.648 2.717 3.248-4.86-4.646 11.31l15.399 7.58 7.896-16.174z\"\n fill=\"url(#nodejs_icon_linear_gradient_b)\"\n />\n </g>\n <mask\n id=\"nodejs_icon_mask_c\"\n style={{ maskType: 'luminance' }}\n maskUnits=\"userSpaceOnUse\"\n x=\"1\"\n y=\"0\"\n width=\"12\"\n height=\"15\"\n >\n <path\n d=\"M1.01 10.571a.66.66 0 0 0 .195.172l4.688 2.718.781.451a.66.66 0 0 0 .51.063l5.764-10.597a.653.653 0 0 0-.153-.122L9.216 1.181 7.325.09a.688.688 0 0 0-.171-.07L1.01 10.572z\"\n fill=\"#fff\"\n />\n </mask>\n <g mask=\"url(#nodejs_icon_mask_c)\">\n <path\n d=\"M-5.647 4.96 5.226 19.736 19.606 9.07 8.734-5.707-5.647 4.96z\"\n fill=\"url(#nodejs_icon_linear_gradient_d)\"\n />\n </g>\n <g>\n <mask\n id=\"nodejs_icon_mask_e\"\n style={{ maskType: 'luminance' }}\n maskUnits=\"userSpaceOnUse\"\n x=\"1\"\n y=\"0\"\n width=\"13\"\n height=\"14\"\n >\n <path\n d=\"M6.935.003a.665.665 0 0 0-.264.085l-5.45 3.158 5.877 10.747a.653.653 0 0 0 .235-.082l5.465-3.17a.665.665 0 0 0 .319-.452L7.127.014a.684.684 0 0 0-.189-.01\"\n fill=\"#fff\"\n />\n </mask>\n <g mask=\"url(#nodejs_icon_mask_e)\">\n <path\n d=\"M1.222.001v13.992h11.893V0H1.222z\"\n fill=\"url(#nodejs_icon_linear_gradient_f)\"\n />\n </g>\n </g>\n <defs>\n <linearGradient\n id=\"nodejs_icon_linear_gradient_b\"\n x1=\"10.944\"\n y1=\"-1.084\"\n x2=\"2.997\"\n y2=\"15.062\"\n gradientUnits=\"userSpaceOnUse\"\n >\n <stop offset=\".3\" stopColor=\"#676767\" />\n <stop offset=\".5\" stopColor=\"#858585\" />\n <stop offset=\".8\" stopColor=\"#989A98\" />\n </linearGradient>\n <linearGradient\n id=\"nodejs_icon_linear_gradient_d\"\n x1=\"-.145\"\n y1=\"12.433\"\n x2=\"14.277\"\n y2=\"1.819\"\n gradientUnits=\"userSpaceOnUse\"\n >\n <stop offset=\".57\" stopColor=\"#747474\" />\n <stop offset=\".72\" stopColor=\"#707070\" />\n <stop offset=\"1\" stopColor=\"#929292\" />\n </linearGradient>\n <linearGradient\n id=\"nodejs_icon_linear_gradient_f\"\n x1=\"1.226\"\n y1=\"6.997\"\n x2=\"13.117\"\n y2=\"6.997\"\n gradientUnits=\"userSpaceOnUse\"\n >\n <stop offset=\".16\" stopColor=\"#878787\" />\n <stop offset=\".38\" stopColor=\"#A9A9A9\" />\n <stop offset=\".47\" stopColor=\"#A5A5A5\" />\n <stop offset=\".7\" stopColor=\"#8F8F8F\" />\n <stop offset=\".9\" stopColor=\"#626262\" />\n </linearGradient>\n </defs>\n </svg>\n )\n}\n\nexport function NodejsInspectorButton({\n defaultDevtoolsFrontendUrl,\n}: {\n defaultDevtoolsFrontendUrl: string | undefined\n}) {\n const [devtoolsFrontendUrlState, attachDebuggerAction, isAttachingDebugger] =\n useActionState<\n | { status: 'fulfilled'; value: string | undefined }\n | { status: 'rejected'; reason: unknown }\n >(\n async () => {\n try {\n const response = await fetch('/__nextjs_attach-nodejs-inspector', {\n method: 'POST',\n })\n if (!response.ok) {\n throw new Error(\n `${response.status} ${response.statusText}: ${await response.text()}`\n )\n }\n const devtoolsFrontendUrl = await response.json()\n return {\n status: 'fulfilled',\n value: devtoolsFrontendUrl,\n }\n } catch (cause) {\n return {\n status: 'rejected',\n reason: new Error(\n 'Failed to attach Node.js inspector: ' +\n // TODO: Use `cause` property once Redbox supports displaying `cause`\n String(cause)\n ),\n }\n }\n },\n { status: 'fulfilled', value: defaultDevtoolsFrontendUrl }\n )\n\n const devtoolsFrontendUrl =\n devtoolsFrontendUrlState.status === 'fulfilled'\n ? devtoolsFrontendUrlState.value\n : undefined\n\n useEffect(() => {\n if (devtoolsFrontendUrlState.status === 'rejected') {\n console.error(devtoolsFrontendUrlState.reason)\n }\n }, [devtoolsFrontendUrlState])\n\n const attachDebugger = startTransition.bind(null, attachDebuggerAction)\n\n if (devtoolsFrontendUrl === undefined) {\n return (\n <button\n className=\"nodejs-inspector-button\"\n data-pending={isAttachingDebugger}\n onClick={isAttachingDebugger ? undefined : attachDebugger}\n title={\n devtoolsFrontendUrlState.status === 'rejected'\n ? 'Retry attaching Node.js inspector'\n : 'Attach Node.js inspector'\n }\n >\n <NodeJsDisabledIcon\n className=\"error-overlay-toolbar-button-icon\"\n width={14}\n height={14}\n />\n </button>\n )\n }\n return (\n <CopyButton\n data-nextjs-data-runtime-error-copy-devtools-url\n className=\"nodejs-inspector-button\"\n actionLabel={'Copy DevTools URL for Chrome'}\n successLabel=\"Copied\"\n content={devtoolsFrontendUrl}\n icon={\n <NodeJsIcon\n className=\"error-overlay-toolbar-button-icon\"\n width={14}\n height={14}\n />\n }\n />\n )\n}\n","import { CopyButton } from '../../copy-button'\n\nexport function CopyErrorButton({\n error,\n generateErrorInfo,\n}: {\n error: Error\n generateErrorInfo: () => string\n}) {\n return (\n <CopyButton\n data-nextjs-data-runtime-error-copy-stack\n className=\"copy-error-button\"\n actionLabel=\"Copy Error Info\"\n successLabel=\"Error Info Copied\"\n getContent={generateErrorInfo}\n disabled={!error}\n />\n )\n}\n","export const REACT_HYDRATION_ERROR_LINK =\n 'https://react.dev/link/hydration-mismatch'\nexport const NEXTJS_HYDRATION_ERROR_LINK =\n 'https://nextjs.org/docs/messages/react-hydration-error'\n\n/**\n * Only React 19+ contains component stack diff in the error message\n */\nconst errorMessagesWithComponentStackDiff = [\n /^In HTML, (.+?) cannot be a child of <(.+?)>\\.(.*)\\nThis will cause a hydration error\\.(.*)/,\n /^In HTML, (.+?) cannot be a descendant of <(.+?)>\\.\\nThis will cause a hydration error\\.(.*)/,\n /^In HTML, text nodes cannot be a child of <(.+?)>\\.\\nThis will cause a hydration error\\./,\n /^In HTML, whitespace text nodes cannot be a child of <(.+?)>\\. Make sure you don't have any extra whitespace between tags on each line of your source code\\.\\nThis will cause a hydration error\\./,\n]\n\nexport function isHydrationError(error: Error): boolean {\n return (\n isErrorMessageWithComponentStackDiff(error.message) ||\n /Hydration failed because the server rendered (text|HTML) didn't match the client\\./.test(\n error.message\n ) ||\n /A tree hydrated but some attributes of the server rendered HTML didn't match the client properties./.test(\n error.message\n )\n )\n}\n\nexport function isErrorMessageWithComponentStackDiff(msg: string): boolean {\n return errorMessagesWithComponentStackDiff.some((regex) => regex.test(msg))\n}\n\nexport function getHydrationErrorStackInfo(error: Error): {\n message: string | null\n notes: string | null\n diff: string | null\n} {\n const errorMessage = error.message\n if (isErrorMessageWithComponentStackDiff(errorMessage)) {\n const [message, diffLog = ''] = errorMessage.split('\\n\\n')\n const diff = diffLog.trim()\n return {\n message: diff === '' ? errorMessage.trim() : message.trim(),\n diff,\n notes: null,\n }\n }\n\n const [message, maybeComponentStackDiff] = errorMessage.split(\n `${REACT_HYDRATION_ERROR_LINK}`\n )\n const trimmedMessage = message.trim()\n // React built-in hydration diff starts with a newline\n if (\n maybeComponentStackDiff !== undefined &&\n maybeComponentStackDiff.length > 1\n ) {\n const diffs: string[] = []\n maybeComponentStackDiff.split('\\n').forEach((line) => {\n if (line.trim() === '') return\n if (!line.trim().startsWith('at ')) {\n diffs.push(line)\n }\n })\n\n const [displayedMessage, ...notes] = trimmedMessage.split('\\n\\n')\n return {\n message: displayedMessage,\n diff: diffs.join('\\n'),\n notes: notes.join('\\n\\n') || null,\n }\n } else {\n const [displayedMessage, ...notes] = trimmedMessage.split('\\n\\n')\n return {\n message: displayedMessage,\n diff: null,\n notes: notes.join('\\n\\n'),\n }\n }\n}\n","import {\n NEXTJS_HYDRATION_ERROR_LINK,\n REACT_HYDRATION_ERROR_LINK,\n} from '../../../../shared/react-19-hydration-error'\nimport { parseUrlFromText } from '../../../utils/parse-url-from-text'\n\nconst docsURLAllowlist = ['https://nextjs.org', 'https://react.dev']\n\nfunction docsLinkMatcher(text: string): boolean {\n return docsURLAllowlist.some((url) => text.startsWith(url))\n}\n\nfunction getDocsURLFromErrorMessage(text: string): string | null {\n const urls = parseUrlFromText(text, docsLinkMatcher)\n\n if (urls.length === 0) {\n return null\n }\n\n const href = urls[0]\n\n // Replace react hydration error link with nextjs hydration error link\n if (href === REACT_HYDRATION_ERROR_LINK) {\n return NEXTJS_HYDRATION_ERROR_LINK\n }\n\n return href\n}\n\nexport function DocsLinkButton({ errorMessage }: { errorMessage: string }) {\n const docsURL = getDocsURLFromErrorMessage(errorMessage)\n\n if (!docsURL) {\n return (\n <button\n title=\"No related documentation found\"\n aria-label=\"No related documentation found\"\n className=\"docs-link-button\"\n disabled\n >\n <DocsIcon\n className=\"error-overlay-toolbar-button-icon\"\n width={14}\n height={14}\n />\n </button>\n )\n }\n\n return (\n <a\n title=\"Go to related documentation\"\n aria-label=\"Go to related documentation\"\n className=\"docs-link-button\"\n href={docsURL}\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n >\n <DocsIcon\n className=\"error-overlay-toolbar-button-icon\"\n width={14}\n height={14}\n />\n </a>\n )\n}\n\nfunction DocsIcon(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n width=\"14\"\n height=\"14\"\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M0 .875h4.375C5.448.875 6.401 1.39 7 2.187A3.276 3.276 0 0 1 9.625.875H14v11.156H9.4c-.522 0-1.023.208-1.392.577l-.544.543h-.928l-.544-.543c-.369-.37-.87-.577-1.392-.577H0V.875zm6.344 3.281a1.969 1.969 0 0 0-1.969-1.968H1.312v8.53H4.6c.622 0 1.225.177 1.744.502V4.156zm1.312 7.064V4.156c0-1.087.882-1.968 1.969-1.968h3.063v8.53H9.4c-.622 0-1.225.177-1.744.502z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","export function parseUrlFromText(\n text: string,\n matcherFunc?: (text: string) => boolean\n): string[] {\n const linkRegex = /https?:\\/\\/[^\\s/$.?#].[^\\s)'\"]*/gi\n const links = Array.from(text.matchAll(linkRegex), (match) => match[0])\n\n if (matcherFunc) {\n return links.filter((link) => matcherFunc(link))\n }\n\n return links\n}\n","import type { DebugInfo } from '../../../../shared/types'\nimport { NodejsInspectorButton } from './nodejs-inspector-button'\nimport { CopyErrorButton } from './copy-error-button'\nimport { DocsLinkButton } from './docs-link-button'\n\ntype ErrorOverlayToolbarProps = {\n error: Error\n debugInfo: DebugInfo | undefined\n feedbackButton?: React.ReactNode\n generateErrorInfo: () => string\n}\n\nexport function ErrorOverlayToolbar({\n error,\n debugInfo,\n feedbackButton,\n generateErrorInfo,\n}: ErrorOverlayToolbarProps) {\n return (\n <span className=\"error-overlay-toolbar\">\n {/* TODO: Move the button inside and remove the feedback on the footer of the error overlay. */}\n {feedbackButton}\n <CopyErrorButton error={error} generateErrorInfo={generateErrorInfo} />\n <DocsLinkButton errorMessage={error.message} />\n <NodejsInspectorButton\n key={debugInfo?.devtoolsFrontendUrl}\n defaultDevtoolsFrontendUrl={debugInfo?.devtoolsFrontendUrl}\n />\n </span>\n )\n}\n\nexport const styles = `\n .error-overlay-toolbar {\n display: flex;\n gap: 6px;\n }\n\n .nodejs-inspector-button,\n .copy-error-button,\n .docs-link-button {\n display: flex;\n justify-content: center;\n align-items: center;\n\n width: var(--size-28);\n height: var(--size-28);\n background: var(--color-background-100);\n background-clip: padding-box;\n border: 1px solid var(--color-gray-alpha-400);\n box-shadow: var(--shadow-small);\n border-radius: var(--rounded-full);\n\n svg {\n width: var(--size-14);\n height: var(--size-14);\n }\n\n &:focus {\n outline: var(--focus-ring);\n }\n\n &:not(:disabled):hover {\n background: var(--color-gray-alpha-100);\n }\n\n &:not(:disabled):active {\n background: var(--color-gray-alpha-200);\n }\n\n &:disabled {\n background-color: var(--color-gray-100);\n cursor: not-allowed;\n }\n }\n\n .nodejs-inspector-button[data-pending='true'] {\n cursor: wait;\n }\n\n .error-overlay-toolbar-button-icon {\n color: var(--color-gray-900);\n }\n`\n","import type { ComponentProps } from 'react'\n\nexport function ThumbsUp(props: ComponentProps<'svg'>) {\n return (\n <svg\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className=\"thumbs-up-icon\"\n {...props}\n >\n <g id=\"thumb-up-16\">\n <path\n id=\"Union\"\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M6.89531 2.23959C6.72984 2.1214 6.5 2.23968 6.5 2.44303V5.24989C6.5 6.21639 5.7165 6.99989 4.75 6.99989H2.5V13.4999H12.1884C12.762 13.4999 13.262 13.1095 13.4011 12.5531L14.4011 8.55306C14.5984 7.76412 14.0017 6.99989 13.1884 6.99989H9.25H8.5V6.24989V3.51446C8.5 3.43372 8.46101 3.35795 8.39531 3.31102L6.89531 2.23959ZM5 2.44303C5 1.01963 6.6089 0.191656 7.76717 1.01899L9.26717 2.09042C9.72706 2.41892 10 2.94929 10 3.51446V5.49989H13.1884C14.9775 5.49989 16.2903 7.18121 15.8563 8.91686L14.8563 12.9169C14.5503 14.1411 13.4503 14.9999 12.1884 14.9999H1.75H1V14.2499V6.24989V5.49989H1.75H4.75C4.88807 5.49989 5 5.38796 5 5.24989V2.44303Z\"\n fill=\"currentColor\"\n />\n </g>\n </svg>\n )\n}\n","import type { ComponentProps } from 'react'\n\nexport function ThumbsDown(props: ComponentProps<'svg'>) {\n return (\n <svg\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className=\"thumbs-down-icon\"\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M5.89531 12.7603C5.72984 12.8785 5.5 12.7602 5.5 12.5569V9.75C5.5 8.7835 4.7165 8 3.75 8H1.5V1.5H11.1884C11.762 1.5 12.262 1.89037 12.4011 2.44683L13.4011 6.44683C13.5984 7.23576 13.0017 8 12.1884 8H8.25H7.5V8.75V11.4854C7.5 11.5662 7.46101 11.6419 7.39531 11.6889L5.89531 12.7603ZM4 12.5569C4 13.9803 5.6089 14.8082 6.76717 13.9809L8.26717 12.9095C8.72706 12.581 9 12.0506 9 11.4854V9.5H12.1884C13.9775 9.5 15.2903 7.81868 14.8563 6.08303L13.8563 2.08303C13.5503 0.858816 12.4503 0 11.1884 0H0.75H0V0.75V8.75V9.5H0.75H3.75C3.88807 9.5 4 9.61193 4 9.75V12.5569Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","import { useState, useCallback } from 'react'\nimport { ThumbsUp } from '../../../../icons/thumbs/thumbs-up'\nimport { ThumbsDown } from '../../../../icons/thumbs/thumbs-down'\nimport { cx } from '../../../../utils/cx'\n\ninterface ErrorFeedbackProps {\n errorCode: string\n className?: string\n}\nexport function ErrorFeedback({ errorCode, className }: ErrorFeedbackProps) {\n const [votedMap, setVotedMap] = useState<Record<string, boolean>>({})\n const voted = votedMap[errorCode]\n const hasVoted = voted !== undefined\n const disabled = process.env.__NEXT_TELEMETRY_DISABLED\n\n const handleFeedback = useCallback(\n async (wasHelpful: boolean) => {\n // Optimistically set feedback state without loading/error states to keep implementation simple\n setVotedMap((prev) => ({\n ...prev,\n [errorCode]: wasHelpful,\n }))\n\n try {\n const response = await fetch(\n `${process.env.__NEXT_ROUTER_BASEPATH || ''}/__nextjs_error_feedback?${new URLSearchParams(\n {\n errorCode,\n wasHelpful: wasHelpful.toString(),\n }\n )}`\n )\n\n if (!response.ok) {\n // Handle non-2xx HTTP responses here if needed\n console.error('Failed to record feedback on the server.')\n }\n } catch (error) {\n console.error('Failed to record feedback:', error)\n }\n },\n [errorCode]\n )\n\n return (\n <div\n className={cx('error-feedback', className)}\n role=\"region\"\n aria-label=\"Error feedback\"\n >\n {hasVoted ? (\n <p className=\"error-feedback-thanks\" role=\"status\" aria-live=\"polite\">\n Thanks for your feedback!\n </p>\n ) : (\n <>\n <p>\n <a\n href=\"https://nextjs.org/telemetry#error-feedback\"\n rel=\"noopener noreferrer\"\n target=\"_blank\"\n >\n Was this helpful?\n </a>\n </p>\n <button\n aria-disabled={disabled ? 'true' : undefined}\n aria-label=\"Mark as helpful\"\n onClick={disabled ? undefined : () => handleFeedback(true)}\n className={cx('feedback-button', voted === true && 'voted')}\n title={\n disabled\n ? 'Feedback disabled due to setting NEXT_TELEMETRY_DISABLED'\n : undefined\n }\n type=\"button\"\n >\n <ThumbsUp aria-hidden=\"true\" />\n </button>\n <button\n aria-disabled={disabled ? 'true' : undefined}\n aria-label=\"Mark as not helpful\"\n onClick={disabled ? undefined : () => handleFeedback(false)}\n className={cx('feedback-button', voted === false && 'voted')}\n title={\n disabled\n ? 'Feedback disabled due to setting NEXT_TELEMETRY_DISABLED'\n : undefined\n }\n type=\"button\"\n >\n <ThumbsDown\n aria-hidden=\"true\"\n // Optical alignment\n style={{\n translate: '1px 1px',\n }}\n />\n </button>\n </>\n )}\n </div>\n )\n}\n\nexport const styles = `\n .error-feedback {\n display: flex;\n align-items: center;\n gap: 8px;\n white-space: nowrap;\n color: var(--color-gray-900);\n }\n\n .error-feedback-thanks {\n height: var(--size-24);\n display: flex;\n align-items: center;\n padding-right: 4px; /* To match the 4px inner padding of the thumbs up and down icons */\n }\n\n .feedback-button {\n background: none;\n border: none;\n border-radius: var(--rounded-md);\n width: var(--size-24);\n height: var(--size-24);\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n\n &:focus {\n outline: var(--focus-ring);\n }\n\n &:hover {\n background: var(--color-gray-alpha-100);\n }\n\n &:active {\n background: var(--color-gray-alpha-200);\n }\n }\n\n .feedback-button[aria-disabled='true'] {\n opacity: 0.7;\n cursor: not-allowed;\n }\n\n .feedback-button.voted {\n background: var(--color-gray-alpha-200);\n }\n\n .thumbs-up-icon,\n .thumbs-down-icon {\n color: var(--color-gray-900);\n width: var(--size-16);\n height: var(--size-16);\n }\n`\n","import { ErrorFeedback } from './error-feedback/error-feedback'\nimport { styles as feedbackStyles } from './error-feedback/error-feedback'\n\ntype ErrorOverlayFooterProps = {\n errorCode: string | undefined\n}\n\nexport function ErrorOverlayFooter({ errorCode }: ErrorOverlayFooterProps) {\n return (\n <footer data-nextjs-error-overlay-footer className=\"error-overlay-footer\">\n {errorCode ? (\n <ErrorFeedback className=\"error-feedback\" errorCode={errorCode} />\n ) : null}\n </footer>\n )\n}\n\nexport const styles = `\n .error-overlay-footer {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n\n gap: 8px;\n padding: 12px;\n background: var(--color-background-200);\n border-top: 1px solid var(--color-gray-400);\n }\n\n .error-feedback {\n margin-left: auto;\n\n p {\n font-size: var(--size-14);\n font-weight: 500;\n margin: 0;\n }\n }\n\n ${feedbackStyles}\n`\n","import { useState, useRef, useLayoutEffect } from 'react'\nimport type { ErrorType } from '../error-type-label/error-type-label'\n\nexport type ErrorMessageType = React.ReactNode\n\ntype ErrorMessageProps = {\n errorMessage: ErrorMessageType\n errorType: ErrorType\n}\n\nexport function ErrorMessage({ errorMessage, errorType }: ErrorMessageProps) {\n const [isExpanded, setIsExpanded] = useState(false)\n const [isTooTall, setIsTooTall] = useState(false)\n const messageRef = useRef<HTMLDivElement>(null)\n\n useLayoutEffect(() => {\n if (messageRef.current) {\n setIsTooTall(messageRef.current.scrollHeight > 200)\n }\n }, [errorMessage])\n\n // The \"Blocking Route\" error message is specifically formatted to look nice\n // in the overlay (rather than just passed through from the console), so we\n // intentionally don't truncate it and rely on the scroll overflow instead.\n const shouldTruncate = isTooTall && errorType !== 'Blocking Route'\n\n return (\n <div className=\"nextjs__container_errors_wrapper\">\n <div\n ref={messageRef}\n id=\"nextjs__container_errors_desc\"\n className={`nextjs__container_errors_desc ${shouldTruncate && !isExpanded ? 'truncated' : ''}`}\n >\n {errorMessage}\n </div>\n {shouldTruncate && !isExpanded && (\n <>\n <div className=\"nextjs__container_errors_gradient_overlay\" />\n <button\n onClick={() => setIsExpanded(true)}\n className=\"nextjs__container_errors_expand_button\"\n aria-expanded={isExpanded}\n aria-controls=\"nextjs__container_errors_desc\"\n >\n Show More\n </button>\n </>\n )}\n </div>\n )\n}\n\nexport const styles = `\n .nextjs__container_errors_wrapper {\n position: relative;\n }\n\n .nextjs__container_errors_desc {\n margin: 0;\n margin-left: 4px;\n color: var(--color-red-900);\n font-weight: 500;\n font-size: var(--size-16);\n letter-spacing: -0.32px;\n line-height: var(--size-24);\n overflow-wrap: break-word;\n white-space: pre-wrap;\n }\n\n .nextjs__container_errors_desc.truncated {\n max-height: 200px;\n overflow: hidden;\n }\n\n .nextjs__container_errors_gradient_overlay {\n position: absolute;\n bottom: 0;\n left: 0;\n right: 0;\n height: 85px;\n background: linear-gradient(\n 180deg,\n rgba(250, 250, 250, 0) 0%,\n var(--color-background-100) 100%\n );\n }\n\n .nextjs__container_errors_expand_button {\n position: absolute;\n bottom: 10px;\n left: 50%;\n transform: translateX(-50%);\n display: flex;\n align-items: center;\n padding: 6px 8px;\n background: var(--color-background-100);\n border: 1px solid var(--color-gray-alpha-400);\n border-radius: 999px;\n box-shadow:\n 0px 2px 2px var(--color-gray-alpha-100),\n 0px 8px 8px -8px var(--color-gray-alpha-100);\n font-size: var(--size-13);\n cursor: pointer;\n color: var(--color-gray-900);\n font-weight: 500;\n transition: background-color 0.2s ease;\n }\n\n .nextjs__container_errors_expand_button:hover {\n background: var(--color-gray-100);\n }\n`\n","export type ErrorType =\n | 'Build Error'\n | `Runtime ${string}`\n | `Console ${string}`\n | `Recoverable ${string}`\n | 'Blocking Route'\n | 'Ambiguous Metadata'\n\ntype ErrorTypeLabelProps = {\n errorType: ErrorType\n}\n\nexport function ErrorTypeLabel({ errorType }: ErrorTypeLabelProps) {\n return (\n <span\n id=\"nextjs__container_errors_label\"\n className={`nextjs__container_errors_label ${errorType === 'Blocking Route' || errorType === 'Ambiguous Metadata' ? 'nextjs__container_errors_label_blocking_page' : ''}`}\n >\n {errorType}\n </span>\n )\n}\n\nexport const styles = `\n .nextjs__container_errors_label {\n padding: 2px 6px;\n margin: 0;\n border-radius: var(--rounded-md-2);\n background: var(--color-red-100);\n font-weight: 600;\n font-size: var(--size-12);\n color: var(--color-red-900);\n font-family: var(--font-stack-monospace);\n line-height: var(--size-20);\n }\n\n .nextjs__container_errors_label_blocking_page {\n background: var(--color-blue-100);\n color: var(--color-blue-900);\n }\n`\n","export function LeftArrow({\n title,\n className,\n}: {\n title?: string\n className?: string\n}) {\n return (\n <svg\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n aria-label={title}\n className={className}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M9.24996 12.0608L8.71963 11.5304L5.89641 8.70722C5.50588 8.3167 5.50588 7.68353 5.89641 7.29301L8.71963 4.46978L9.24996 3.93945L10.3106 5.00011L9.78029 5.53044L7.31062 8.00011L9.78029 10.4698L10.3106 11.0001L9.24996 12.0608Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","export function RightArrow({\n title,\n className,\n}: {\n title?: string\n className?: string\n}) {\n return (\n <svg\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className={className}\n aria-label={title}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M6.75011 3.93945L7.28044 4.46978L10.1037 7.29301C10.4942 7.68353 10.4942 8.3167 10.1037 8.70722L7.28044 11.5304L6.75011 12.0608L5.68945 11.0001L6.21978 10.4698L8.68945 8.00011L6.21978 5.53044L5.68945 5.00011L6.75011 3.93945Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","import {\n startTransition,\n useCallback,\n useEffect,\n useRef,\n useState,\n} from 'react'\nimport { LeftArrow } from '../../../icons/left-arrow'\nimport { RightArrow } from '../../../icons/right-arrow'\nimport type { ReadyRuntimeError } from '../../../utils/get-error-by-type'\n\ntype ErrorPaginationProps = {\n runtimeErrors: ReadyRuntimeError[]\n activeIdx: number\n onActiveIndexChange: (index: number) => void\n}\n\nexport function ErrorOverlayPagination({\n runtimeErrors,\n activeIdx,\n onActiveIndexChange,\n}: ErrorPaginationProps) {\n const handlePrevious = useCallback(\n () =>\n startTransition(() => {\n if (activeIdx > 0) {\n onActiveIndexChange(Math.max(0, activeIdx - 1))\n }\n }),\n [activeIdx, onActiveIndexChange]\n )\n\n const handleNext = useCallback(\n () =>\n startTransition(() => {\n if (activeIdx < runtimeErrors.length - 1) {\n onActiveIndexChange(\n Math.max(0, Math.min(runtimeErrors.length - 1, activeIdx + 1))\n )\n }\n }),\n [activeIdx, runtimeErrors.length, onActiveIndexChange]\n )\n\n const buttonLeft = useRef<HTMLButtonElement | null>(null)\n const buttonRight = useRef<HTMLButtonElement | null>(null)\n\n const [nav, setNav] = useState<HTMLElement | null>(null)\n const onNav = useCallback((el: HTMLElement) => {\n setNav(el)\n }, [])\n\n useEffect(() => {\n if (nav == null) {\n return\n }\n\n const root = nav.getRootNode()\n const d = self.document\n\n function handler(e: KeyboardEvent) {\n if (e.key === 'ArrowLeft') {\n e.preventDefault()\n e.stopPropagation()\n handlePrevious && handlePrevious()\n } else if (e.key === 'ArrowRight') {\n e.preventDefault()\n e.stopPropagation()\n handleNext && handleNext()\n }\n }\n\n root.addEventListener('keydown', handler as EventListener)\n if (root !== d) {\n d.addEventListener('keydown', handler)\n }\n return function () {\n root.removeEventListener('keydown', handler as EventListener)\n if (root !== d) {\n d.removeEventListener('keydown', handler)\n }\n }\n }, [nav, handleNext, handlePrevious])\n\n // Unlock focus for browsers like Firefox, that break all user focus if the\n // currently focused item becomes disabled.\n useEffect(() => {\n if (nav == null) {\n return\n }\n\n const root = nav.getRootNode()\n // Always true, but we do this for TypeScript:\n if (root instanceof ShadowRoot) {\n const a = root.activeElement\n\n if (activeIdx === 0) {\n if (buttonLeft.current && a === buttonLeft.current) {\n buttonLeft.current.blur()\n }\n } else if (activeIdx === runtimeErrors.length - 1) {\n if (buttonRight.current && a === buttonRight.current) {\n buttonRight.current.blur()\n }\n }\n }\n }, [nav, activeIdx, runtimeErrors.length])\n\n return (\n <nav\n className=\"error-overlay-pagination dialog-exclude-closing-from-outside-click\"\n ref={onNav}\n >\n <button\n ref={buttonLeft}\n type=\"button\"\n disabled={activeIdx === 0}\n aria-disabled={activeIdx === 0}\n onClick={handlePrevious}\n data-nextjs-dialog-error-previous\n className=\"error-overlay-pagination-button\"\n >\n <LeftArrow\n title=\"previous\"\n className=\"error-overlay-pagination-button-icon\"\n />\n </button>\n <div className=\"error-overlay-pagination-count\">\n <span data-nextjs-dialog-error-index={activeIdx}>{activeIdx + 1}/</span>\n <span data-nextjs-dialog-header-total-count>\n {/* Display 1 out of 1 if there are no errors (e.g. for build errors). */}\n {runtimeErrors.length || 1}\n </span>\n </div>\n <button\n ref={buttonRight}\n type=\"button\"\n // If no errors or the last error is active, disable the button.\n disabled={activeIdx >= runtimeErrors.length - 1}\n aria-disabled={activeIdx >= runtimeErrors.length - 1}\n onClick={handleNext}\n data-nextjs-dialog-error-next\n className=\"error-overlay-pagination-button\"\n >\n <RightArrow\n title=\"next\"\n className=\"error-overlay-pagination-button-icon\"\n />\n </button>\n </nav>\n )\n}\n\nexport const styles = `\n .error-overlay-pagination {\n -webkit-font-smoothing: antialiased;\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 8px;\n width: fit-content;\n }\n\n .error-overlay-pagination-count {\n color: var(--color-gray-900);\n text-align: center;\n font-size: var(--size-14);\n font-weight: 500;\n line-height: var(--size-16);\n font-variant-numeric: tabular-nums;\n }\n\n .error-overlay-pagination-button {\n display: flex;\n justify-content: center;\n align-items: center;\n\n width: var(--size-24);\n height: var(--size-24);\n background: var(--color-gray-300);\n flex-shrink: 0;\n\n border: none;\n border-radius: var(--rounded-full);\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n\n &:focus-visible {\n outline: var(--focus-ring);\n }\n\n &:not(:disabled):active {\n background: var(--color-gray-500);\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n }\n\n .error-overlay-pagination-button-icon {\n color: var(--color-gray-1000);\n }\n`\n","export function EclipseIcon(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n width=\"14\"\n height=\"14\"\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <circle cx=\"7\" cy=\"7\" r=\"5.5\" strokeWidth=\"3\" />\n </svg>\n )\n}\n","import type { VersionInfo } from '../../../../server/dev/parse-version-info'\nimport { getStaleness } from '../../../shared/version-staleness'\nimport { cx } from '../../utils/cx'\nimport { EclipseIcon } from '../../icons/eclipse'\n\nexport function VersionStalenessInfo({\n versionInfo,\n bundlerName,\n}: {\n versionInfo: VersionInfo\n // Passed from parent for easier handling in Storybook.\n bundlerName: 'Webpack' | 'Turbopack' | 'Rspack'\n}) {\n const { staleness } = versionInfo\n let { text, indicatorClass, title } = getStaleness(versionInfo)\n\n const isTurbopack = bundlerName === 'Turbopack'\n const shouldBeLink = staleness.startsWith('stale')\n if (shouldBeLink) {\n return (\n <a\n className=\"nextjs-container-build-error-version-status dialog-exclude-closing-from-outside-click\"\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n href=\"https://nextjs.org/docs/messages/version-staleness\"\n >\n <EclipseIcon\n className={cx('version-staleness-indicator', indicatorClass)}\n />\n <span data-nextjs-version-checker title={title}>\n {text}\n </span>\n <span className={cx(isTurbopack && 'turbopack-text')}>\n {bundlerName}\n </span>\n </a>\n )\n }\n\n return (\n <span className=\"nextjs-container-build-error-version-status dialog-exclude-closing-from-outside-click\">\n <EclipseIcon\n className={cx('version-staleness-indicator', indicatorClass)}\n />\n <span data-nextjs-version-checker title={title}>\n {text}\n </span>\n <span className={cx(isTurbopack && 'turbopack-text')}>{bundlerName}</span>\n </span>\n )\n}\n\nexport const styles = `\n .nextjs-container-build-error-version-status {\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 4px;\n\n height: var(--size-26);\n padding: 6px 8px 6px 6px;\n background: var(--color-background-100);\n background-clip: padding-box;\n border: 1px solid var(--color-gray-alpha-400);\n box-shadow: var(--shadow-small);\n border-radius: var(--rounded-full);\n\n color: var(--color-gray-900);\n font-size: var(--size-12);\n font-weight: 500;\n line-height: var(--size-16);\n }\n\n a.nextjs-container-build-error-version-status {\n text-decoration: none;\n color: var(--color-gray-900);\n\n &:hover {\n background: var(--color-gray-100);\n }\n\n &:focus {\n outline: var(--focus-ring);\n }\n }\n\n .version-staleness-indicator.fresh {\n fill: var(--color-green-800);\n stroke: var(--color-green-300);\n }\n .version-staleness-indicator.stale {\n fill: var(--color-amber-800);\n stroke: var(--color-amber-300);\n }\n .version-staleness-indicator.outdated {\n fill: var(--color-red-800);\n stroke: var(--color-red-300);\n }\n .version-staleness-indicator.unknown {\n fill: var(--color-gray-800);\n stroke: var(--color-gray-300);\n }\n\n .nextjs-container-build-error-version-status > .turbopack-text {\n background: linear-gradient(\n to right,\n var(--color-turbopack-text-red) 0%,\n var(--color-turbopack-text-blue) 100%\n );\n background-clip: text;\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n }\n`\n","import type { VersionInfo } from '../../server/dev/parse-version-info'\n\nexport function getStaleness({ installed, staleness, expected }: VersionInfo) {\n let text = ''\n let title = ''\n let indicatorClass = ''\n const versionLabel = `Next.js ${installed}`\n switch (staleness) {\n case 'newer-than-npm':\n case 'fresh':\n text = versionLabel\n title = `Latest available version is detected (${installed}).`\n indicatorClass = 'fresh'\n break\n case 'stale-patch':\n case 'stale-minor':\n text = `${versionLabel} (stale)`\n title = `There is a newer version (${expected}) available, upgrade recommended! `\n indicatorClass = 'stale'\n break\n case 'stale-major': {\n text = `${versionLabel} (outdated)`\n title = `An outdated version detected (latest is ${expected}), upgrade is highly recommended!`\n indicatorClass = 'outdated'\n break\n }\n case 'stale-prerelease': {\n text = `${versionLabel} (stale)`\n title = `There is a newer canary version (${expected}) available, please upgrade! `\n indicatorClass = 'stale'\n break\n }\n case 'unknown':\n text = `${versionLabel} (unknown)`\n title = 'No Next.js version data was found.'\n indicatorClass = 'unknown'\n break\n default:\n break\n }\n return { text, indicatorClass, title }\n}\n","import type { VersionInfo } from '../../../../../server/dev/parse-version-info'\n\nimport { ErrorOverlayPagination } from '../error-overlay-pagination/error-overlay-pagination'\nimport { VersionStalenessInfo } from '../../version-staleness-info/version-staleness-info'\nimport type { ReadyRuntimeError } from '../../../utils/get-error-by-type'\n\ntype ErrorOverlayNavProps = {\n runtimeErrors?: ReadyRuntimeError[]\n activeIdx?: number\n setActiveIndex?: (index: number) => void\n versionInfo?: VersionInfo\n isTurbopack?: boolean\n}\n\nexport function ErrorOverlayNav({\n runtimeErrors,\n activeIdx,\n setActiveIndex,\n versionInfo,\n}: ErrorOverlayNavProps) {\n const bundlerName = (process.env.__NEXT_BUNDLER || 'Turbopack') as\n | 'Turbopack'\n | 'Webpack'\n | 'Rspack'\n\n return (\n <div data-nextjs-error-overlay-nav>\n <Notch side=\"left\">\n {/* TODO: better passing data instead of nullish coalescing */}\n <ErrorOverlayPagination\n runtimeErrors={runtimeErrors ?? []}\n activeIdx={activeIdx ?? 0}\n onActiveIndexChange={setActiveIndex ?? (() => {})}\n />\n </Notch>\n {versionInfo && (\n <Notch side=\"right\">\n <VersionStalenessInfo\n versionInfo={versionInfo}\n bundlerName={bundlerName}\n />\n </Notch>\n )}\n </div>\n )\n}\n\nexport const styles = `\n [data-nextjs-error-overlay-nav] {\n --stroke-color: var(--color-gray-400);\n --background-color: var(--color-background-100);\n display: flex;\n justify-content: space-between;\n align-items: center;\n\n width: 100%;\n\n position: relative;\n z-index: 2;\n outline: none;\n translate: var(--next-dialog-border-width) var(--next-dialog-border-width);\n max-width: var(--next-dialog-max-width);\n\n .error-overlay-notch {\n translate: calc(var(--next-dialog-border-width) * -1);\n width: auto;\n height: var(--next-dialog-notch-height);\n padding: 12px;\n background: var(--background-color);\n border: var(--next-dialog-border-width) solid var(--stroke-color);\n border-bottom: none;\n position: relative;\n\n &[data-side='left'] {\n padding-right: 0;\n border-radius: var(--next-dialog-radius) 0 0 0;\n\n .error-overlay-notch-tail {\n right: -54px;\n }\n\n > *:not(.error-overlay-notch-tail) {\n margin-right: -10px;\n }\n }\n\n &[data-side='right'] {\n padding-left: 0;\n border-radius: 0 var(--next-dialog-radius) 0 0;\n\n .error-overlay-notch-tail {\n left: -54px;\n transform: rotateY(180deg);\n }\n\n > *:not(.error-overlay-notch-tail) {\n margin-left: -12px;\n }\n }\n\n .error-overlay-notch-tail {\n position: absolute;\n top: calc(var(--next-dialog-border-width) * -1);\n pointer-events: none;\n z-index: -1;\n height: calc(100% + var(--next-dialog-border-width));\n }\n }\n }\n\n @media (max-width: 600px) {\n [data-nextjs-error-overlay-nav] {\n background: var(--background-color);\n border-radius: var(--next-dialog-radius) var(--next-dialog-radius) 0 0;\n border: var(--next-dialog-border-width) solid var(--stroke-color);\n border-bottom: none;\n overflow: hidden;\n translate: 0 var(--next-dialog-border-width);\n \n .error-overlay-notch {\n border-radius: 0;\n border: 0;\n\n &[data-side=\"left\"], &[data-side=\"right\"] {\n border-radius: 0;\n }\n\n .error-overlay-notch-tail {\n display: none;\n }\n }\n }\n }\n`\n\nfunction Notch({\n children,\n side = 'left',\n}: {\n children: React.ReactNode\n side?: 'left' | 'right'\n}) {\n return (\n <div className=\"error-overlay-notch\" data-side={side}>\n {children}\n <Tail />\n </div>\n )\n}\n\nfunction Tail() {\n return (\n <svg\n width=\"60\"\n height=\"42\"\n viewBox=\"0 0 60 42\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n className=\"error-overlay-notch-tail\"\n preserveAspectRatio=\"none\"\n >\n <mask\n id=\"error_overlay_nav_mask0_2667_14687\"\n style={{\n maskType: 'alpha',\n }}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"-1\"\n width=\"60\"\n height=\"43\"\n >\n <mask\n id=\"error_overlay_nav_path_1_outside_1_2667_14687\"\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"-1\"\n width=\"60\"\n height=\"43\"\n fill=\"black\"\n >\n <rect fill=\"white\" y=\"-1\" width=\"60\" height=\"43\" />\n <path d=\"M1 0L8.0783 0C15.772 0 22.7836 4.41324 26.111 11.3501L34.8889 29.6498C38.2164 36.5868 45.228 41 52.9217 41H60H1L1 0Z\" />\n </mask>\n <path\n d=\"M1 0L8.0783 0C15.772 0 22.7836 4.41324 26.111 11.3501L34.8889 29.6498C38.2164 36.5868 45.228 41 52.9217 41H60H1L1 0Z\"\n fill=\"white\"\n />\n <path\n d=\"M1 0V-1H0V0L1 0ZM1 41H0V42H1V41ZM34.8889 29.6498L33.9873 30.0823L34.8889 29.6498ZM26.111 11.3501L27.0127 10.9177L26.111 11.3501ZM1 1H8.0783V-1H1V1ZM60 40H1V42H60V40ZM2 41V0L0 0L0 41H2ZM25.2094 11.7826L33.9873 30.0823L35.7906 29.2174L27.0127 10.9177L25.2094 11.7826ZM52.9217 42H60V40H52.9217V42ZM33.9873 30.0823C37.4811 37.3661 44.8433 42 52.9217 42V40C45.6127 40 38.9517 35.8074 35.7906 29.2174L33.9873 30.0823ZM8.0783 1C15.3873 1 22.0483 5.19257 25.2094 11.7826L27.0127 10.9177C23.5188 3.6339 16.1567 -1 8.0783 -1V1Z\"\n fill=\"black\"\n mask=\"url(#error_overlay_nav_path_1_outside_1_2667_14687)\"\n />\n </mask>\n <g mask=\"url(#error_overlay_nav_mask0_2667_14687)\">\n <mask\n id=\"error_overlay_nav_path_3_outside_2_2667_14687\"\n maskUnits=\"userSpaceOnUse\"\n x=\"-1\"\n y=\"0.0244141\"\n width=\"60\"\n height=\"43\"\n fill=\"black\"\n >\n <rect fill=\"white\" x=\"-1\" y=\"0.0244141\" width=\"60\" height=\"43\" />\n <path d=\"M0 1.02441H7.0783C14.772 1.02441 21.7836 5.43765 25.111 12.3746L33.8889 30.6743C37.2164 37.6112 44.228 42.0244 51.9217 42.0244H59H0L0 1.02441Z\" />\n </mask>\n <path\n d=\"M0 1.02441H7.0783C14.772 1.02441 21.7836 5.43765 25.111 12.3746L33.8889 30.6743C37.2164 37.6112 44.228 42.0244 51.9217 42.0244H59H0L0 1.02441Z\"\n fill=\"var(--background-color)\"\n />\n <path\n d=\"M0 1.02441L0 0.0244141H-1V1.02441H0ZM0 42.0244H-1V43.0244H0L0 42.0244ZM33.8889 30.6743L32.9873 31.1068L33.8889 30.6743ZM25.111 12.3746L26.0127 11.9421L25.111 12.3746ZM0 2.02441H7.0783V0.0244141H0L0 2.02441ZM59 41.0244H0L0 43.0244H59V41.0244ZM1 42.0244L1 1.02441H-1L-1 42.0244H1ZM24.2094 12.8071L32.9873 31.1068L34.7906 30.2418L26.0127 11.9421L24.2094 12.8071ZM51.9217 43.0244H59V41.0244H51.9217V43.0244ZM32.9873 31.1068C36.4811 38.3905 43.8433 43.0244 51.9217 43.0244V41.0244C44.6127 41.0244 37.9517 36.8318 34.7906 30.2418L32.9873 31.1068ZM7.0783 2.02441C14.3873 2.02441 21.0483 6.21699 24.2094 12.8071L26.0127 11.9421C22.5188 4.65831 15.1567 0.0244141 7.0783 0.0244141V2.02441Z\"\n fill=\"var(--stroke-color)\"\n mask=\"url(#error_overlay_nav_path_3_outside_2_2667_14687)\"\n />\n </g>\n </svg>\n )\n}\n","import * as React from 'react'\nimport { useOnClickOutside } from '../../hooks/use-on-click-outside'\n\ntype DialogProps = {\n children?: React.ReactNode\n 'aria-labelledby': string\n 'aria-describedby': string\n className?: string\n onClose?: () => void\n} & React.HTMLAttributes<HTMLDivElement>\n\nconst CSS_SELECTORS_TO_EXCLUDE_ON_CLICK_OUTSIDE = [\n '[data-next-mark]',\n '[data-issues-open]',\n '#nextjs-dev-tools-menu',\n '[data-nextjs-error-overlay-nav]',\n '[data-info-popover]',\n '[data-nextjs-devtools-panel-overlay]',\n '[data-nextjs-devtools-panel-footer]',\n '[data-nextjs-error-overlay-footer]',\n]\n\nconst Dialog: React.FC<DialogProps> = function Dialog({\n children,\n className,\n onClose,\n 'aria-labelledby': ariaLabelledBy,\n 'aria-describedby': ariaDescribedBy,\n ...props\n}) {\n const dialogRef = React.useRef<HTMLDivElement | null>(null)\n // TODO: Document is an external store. Either use useSyncExternalStore or always set the role.\n const [role, setRole] = React.useState<string | undefined>(\n typeof document !== 'undefined' && document.hasFocus()\n ? 'dialog'\n : undefined\n )\n\n useOnClickOutside(\n dialogRef,\n CSS_SELECTORS_TO_EXCLUDE_ON_CLICK_OUTSIDE,\n (e) => {\n e.preventDefault()\n return onClose?.()\n }\n )\n\n React.useEffect(() => {\n if (dialogRef.current == null) {\n return\n }\n\n function handleFocus() {\n // safari will force itself as the active application when a background page triggers any sort of autofocus\n // this is a workaround to only set the dialog role if the document has focus\n setRole(document.hasFocus() ? 'dialog' : undefined)\n }\n\n window.addEventListener('focus', handleFocus)\n window.addEventListener('blur', handleFocus)\n return () => {\n window.removeEventListener('focus', handleFocus)\n window.removeEventListener('blur', handleFocus)\n }\n }, [])\n\n React.useEffect(() => {\n const dialog = dialogRef.current\n const root = dialog?.getRootNode()\n const initialActiveElement =\n root instanceof ShadowRoot ? (root?.activeElement as HTMLElement) : null\n\n // Trap focus within the dialog\n dialog?.focus()\n\n return () => {\n // Blur first to avoid getting stuck, in case `activeElement` is missing\n dialog?.blur()\n // Restore focus to the previously active element\n initialActiveElement?.focus()\n }\n }, [])\n\n return (\n <div\n ref={dialogRef}\n tabIndex={-1}\n data-nextjs-dialog\n data-nextjs-scrollable-content\n role={role}\n aria-labelledby={ariaLabelledBy}\n aria-describedby={ariaDescribedBy}\n aria-modal=\"true\"\n className={className}\n onKeyDown={(e) => {\n if (e.key === 'Escape') {\n onClose?.()\n }\n }}\n {...props}\n >\n {children}\n </div>\n )\n}\n\nexport { Dialog }\n","import * as React from 'react'\n\nexport function useOnClickOutside(\n el: Node | React.RefObject<Node | null> | null,\n cssSelectorsToExclude: string[],\n handler: ((e: MouseEvent | TouchEvent) => void) | undefined\n) {\n React.useEffect(() => {\n // Support both direct nodes and ref objects\n const element = el && 'current' in el ? el.current : el\n if (element == null || handler == null) {\n return\n }\n\n const listener = (e: MouseEvent | TouchEvent) => {\n // Do nothing if clicking ref's element or descendent elements\n if (!element || element.contains(e.target as Element)) {\n return\n }\n\n if (\n // Do nothing if clicking on an element that is excluded by the CSS selector(s)\n cssSelectorsToExclude.some((cssSelector) =>\n (e.target as Element).closest(cssSelector)\n )\n ) {\n return\n }\n\n handler(e)\n }\n\n const root = element.getRootNode()\n root.addEventListener('mouseup', listener as EventListener)\n root.addEventListener('touchend', listener as EventListener, {\n passive: false,\n })\n return function () {\n root.removeEventListener('mouseup', listener as EventListener)\n root.removeEventListener('touchend', listener as EventListener)\n }\n }, [handler, el, cssSelectorsToExclude])\n}\n","import { Dialog } from '../../dialog/dialog'\n\ntype ErrorOverlayDialogProps = {\n children?: React.ReactNode\n onClose?: () => void\n footer?: React.ReactNode\n} & React.HTMLAttributes<HTMLDivElement>\n\nexport function ErrorOverlayDialog({\n children,\n onClose,\n footer,\n ...props\n}: ErrorOverlayDialogProps) {\n return (\n <div className=\"error-overlay-dialog-container\">\n <Dialog\n aria-labelledby=\"nextjs__container_errors_label\"\n aria-describedby=\"nextjs__container_errors_desc\"\n className=\"error-overlay-dialog-scroll\"\n onClose={onClose}\n {...props}\n >\n {children}\n </Dialog>\n {footer}\n </div>\n )\n}\n\nexport const DIALOG_STYLES = `\n .error-overlay-dialog-container {\n display: flex;\n flex-direction: column;\n background: var(--color-background-100);\n background-clip: padding-box;\n border: var(--next-dialog-border-width) solid var(--color-gray-400);\n border-radius: 0 0 var(--next-dialog-radius) var(--next-dialog-radius);\n box-shadow: var(--shadow-menu);\n position: relative;\n overflow: hidden;\n }\n\n .error-overlay-dialog-scroll {\n overflow-y: auto;\n height: 100%;\n }\n`\n","type DialogHeaderProps = React.HTMLAttributes<HTMLDivElement>\n\nexport function DialogHeader(props: DialogHeaderProps) {\n return (\n <div data-nextjs-dialog-header {...props}>\n {props.children}\n </div>\n )\n}\n","import { DialogHeader } from '../../dialog/dialog-header'\n\ntype ErrorOverlayDialogHeaderProps = {\n children?: React.ReactNode\n}\n\nexport function ErrorOverlayDialogHeader({\n children,\n}: ErrorOverlayDialogHeaderProps) {\n return (\n <DialogHeader className=\"nextjs-container-errors-header\">\n {children}\n </DialogHeader>\n )\n}\n\nexport const DIALOG_HEADER_STYLES = `\n .nextjs-container-errors-header {\n position: relative;\n }\n .nextjs-container-errors-header > h1 {\n font-size: var(--size-20);\n line-height: var(--size-24);\n font-weight: bold;\n margin: calc(16px * 1.5) 0;\n color: var(--color-title-h1);\n }\n .nextjs-container-errors-header small {\n font-size: var(--size-14);\n color: var(--color-accents-1);\n margin-left: 16px;\n }\n .nextjs-container-errors-header small > span {\n font-family: var(--font-stack-monospace);\n }\n .nextjs-container-errors-header > div > small {\n margin: 0;\n margin-top: 4px;\n }\n .nextjs-container-errors-header > p > a {\n color: inherit;\n font-weight: bold;\n }\n .nextjs-container-errors-header\n > .nextjs-container-build-error-version-status {\n position: absolute;\n top: 16px;\n right: 16px;\n }\n`\n","import { DialogBody } from '../../dialog'\n\ntype ErrorOverlayDialogBodyProps = {\n children?: React.ReactNode\n onClose?: () => void\n}\n\nexport function ErrorOverlayDialogBody({\n children,\n}: ErrorOverlayDialogBodyProps) {\n return (\n <DialogBody className=\"nextjs-container-errors-body\">{children}</DialogBody>\n )\n}\n\nexport const DIALOG_BODY_STYLES = ``\n","import * as React from 'react'\nimport { lock, unlock } from './body-locker'\n\nexport type OverlayProps = React.HTMLAttributes<HTMLDivElement> & {\n fixed?: boolean\n ref?: React.Ref<HTMLDivElement>\n}\n\nconst Overlay: React.FC<OverlayProps> = function Overlay({\n className,\n children,\n ...props\n}) {\n React.useEffect(() => {\n lock()\n return () => {\n unlock()\n }\n }, [])\n\n return (\n <div data-nextjs-dialog-overlay className={className} {...props}>\n {children}\n </div>\n )\n}\n\nexport { Overlay }\n","import { css } from '../../../utils/css'\nimport { Overlay, type OverlayProps } from '../../overlay/overlay'\n\nexport function ErrorOverlayOverlay({ children, ...props }: OverlayProps) {\n return <Overlay {...props}>{children}</Overlay>\n}\n\nexport const OVERLAY_STYLES = css`\n [data-nextjs-dialog-overlay] {\n padding: initial;\n top: 10vh;\n }\n`\n","export function ErrorOverlayBottomStack({\n errorCount,\n activeIdx,\n}: {\n errorCount: number\n activeIdx: number\n}) {\n // If there are more than 2 errors to navigate, the stack count should remain at 2.\n const stackCount = Math.min(errorCount - activeIdx - 1, 2)\n return (\n <div aria-hidden className=\"error-overlay-bottom-stack\">\n <div\n className=\"error-overlay-bottom-stack-stack\"\n data-stack-count={stackCount}\n >\n <div className=\"error-overlay-bottom-stack-layer error-overlay-bottom-stack-layer-1\">\n 1\n </div>\n <div className=\"error-overlay-bottom-stack-layer error-overlay-bottom-stack-layer-2\">\n 2\n </div>\n </div>\n </div>\n )\n}\n\nexport const styles = `\n .error-overlay-bottom-stack-layer {\n width: 100%;\n height: var(--stack-layer-height);\n position: relative;\n border: 1px solid var(--color-gray-400);\n border-radius: var(--rounded-xl);\n background: var(--color-background-200);\n transition:\n translate 350ms var(--timing-swift),\n box-shadow 350ms var(--timing-swift);\n }\n\n .error-overlay-bottom-stack-layer-1 {\n width: calc(100% - var(--size-24));\n }\n\n .error-overlay-bottom-stack-layer-2 {\n width: calc(100% - var(--size-48));\n z-index: -1;\n }\n\n .error-overlay-bottom-stack {\n width: 100%;\n position: absolute;\n bottom: -1px;\n height: 0;\n overflow: visible;\n }\n\n .error-overlay-bottom-stack-stack {\n --stack-layer-height: 44px;\n --stack-layer-height-half: calc(var(--stack-layer-height) / 2);\n --stack-layer-trim: 13px;\n --shadow: 0px 0.925px 0.925px 0px rgba(0, 0, 0, 0.02),\n 0px 3.7px 7.4px -3.7px rgba(0, 0, 0, 0.04),\n 0px 14.8px 22.2px -7.4px rgba(0, 0, 0, 0.06);\n\n display: grid;\n place-items: center center;\n width: 100%;\n position: fixed;\n height: 0;\n overflow: visible;\n z-index: -1;\n max-width: var(--next-dialog-max-width);\n\n .error-overlay-bottom-stack-layer {\n grid-area: 1 / 1;\n /* Hide */\n translate: 0 calc(var(--stack-layer-height) * -1);\n }\n\n &[data-stack-count='1'],\n &[data-stack-count='2'] {\n .error-overlay-bottom-stack-layer-1 {\n translate: 0\n calc(var(--stack-layer-height-half) * -1 - var(--stack-layer-trim));\n }\n }\n\n &[data-stack-count='2'] {\n .error-overlay-bottom-stack-layer-2 {\n translate: 0 calc(var(--stack-layer-trim) * -1 * 2);\n }\n }\n\n /* Only the bottom stack should have the shadow */\n &[data-stack-count='1'] .error-overlay-bottom-stack-layer-1 {\n box-shadow: var(--shadow);\n }\n\n &[data-stack-count='2'] {\n .error-overlay-bottom-stack-layer-2 {\n box-shadow: var(--shadow);\n }\n }\n }\n`\n","export function EnvironmentNameLabel({\n environmentName,\n}: {\n environmentName: string\n}) {\n return <span data-nextjs-environment-name-label>{environmentName}</span>\n}\n\nexport const ENVIRONMENT_NAME_LABEL_STYLES = `\n [data-nextjs-environment-name-label] {\n padding: 2px 6px;\n margin: 0;\n border-radius: var(--rounded-md-2);\n background: var(--color-gray-100);\n font-weight: 600;\n font-size: var(--size-12);\n color: var(--color-gray-900);\n font-family: var(--font-stack-monospace);\n line-height: var(--size-20);\n }\n`\n","import { useEffect, useEffectEvent } from 'react'\n\nexport function useFocusTrap(\n rootRef: React.RefObject<HTMLElement | null>,\n triggerRef: React.RefObject<HTMLButtonElement | null> | null,\n active: boolean,\n onOpenFocus?: () => void\n) {\n const fireOpenFocus = useEffectEvent((rootNode: HTMLElement | null) => {\n if (onOpenFocus) {\n onOpenFocus()\n } else {\n rootNode?.focus()\n }\n })\n useEffect(() => {\n let rootNode: HTMLElement | null = null\n\n function onTab(e: KeyboardEvent) {\n if (e.key !== 'Tab' || rootNode === null) {\n return\n }\n\n const [firstFocusableNode, lastFocusableNode] =\n getFocusableNodes(rootNode)\n const activeElement = getActiveElement(rootNode)\n\n if (e.shiftKey) {\n if (activeElement === firstFocusableNode) {\n lastFocusableNode?.focus()\n e.preventDefault()\n }\n } else {\n if (activeElement === lastFocusableNode) {\n firstFocusableNode?.focus()\n e.preventDefault()\n }\n }\n }\n\n const id = setTimeout(() => {\n // Grab this on next tick to ensure the content is mounted\n rootNode = rootRef.current\n if (active) {\n fireOpenFocus(rootNode)\n rootNode?.addEventListener('keydown', onTab)\n } else {\n const activeElement = getActiveElement(rootNode)\n // Only restore focus if the focus was previously on the content.\n // This avoids us accidentally focusing on mount when the\n // user could want to interact with their own app instead.\n if (triggerRef && rootNode?.contains(activeElement)) {\n triggerRef.current?.focus()\n }\n }\n })\n\n return () => {\n clearTimeout(id)\n rootNode?.removeEventListener('keydown', onTab)\n }\n }, [active, rootRef, triggerRef])\n}\n\nexport function getActiveElement(node: HTMLElement | null) {\n const root = node?.getRootNode()\n return root instanceof ShadowRoot\n ? (root?.activeElement as HTMLElement)\n : null\n}\n\nfunction getFocusableNodes(node: HTMLElement): [HTMLElement, HTMLElement] | [] {\n const focusableElements = node.querySelectorAll(\n 'button, [href], input, select, textarea, [tabindex]:not([tabindex=\"-1\"])'\n )\n if (!focusableElements) return []\n return [\n focusableElements![0] as HTMLElement,\n focusableElements![focusableElements!.length - 1] as HTMLElement,\n ]\n}\n\n//////////////////////////////////////////////////////////////////////////////////////\n\n// TODO: split up escape and click outside logic\nexport function useClickOutsideAndEscape(\n rootRef: React.RefObject<HTMLElement | null>,\n triggerRef: React.RefObject<HTMLButtonElement | null>,\n active: boolean,\n close: (reason: 'escape' | 'outside') => void,\n ownerDocument?: Document\n) {\n useEffect(() => {\n if (!active) {\n return\n }\n\n const ownerDocumentEl = ownerDocument || rootRef.current?.ownerDocument\n\n function handleClickOutside(event: MouseEvent) {\n const target = event.target as HTMLElement\n if (rootRef.current && rootRef.current.contains(target)) {\n return\n }\n\n const cushion = 10\n\n if (\n !(rootRef.current?.getBoundingClientRect()\n ? event.clientX >=\n rootRef.current.getBoundingClientRect()!.left - cushion &&\n event.clientX <=\n rootRef.current.getBoundingClientRect()!.right + cushion &&\n event.clientY >=\n rootRef.current.getBoundingClientRect()!.top - cushion &&\n event.clientY <=\n rootRef.current.getBoundingClientRect()!.bottom + cushion\n : false) &&\n !(triggerRef.current?.getBoundingClientRect()\n ? event.clientX >=\n triggerRef.current.getBoundingClientRect()!.left - cushion &&\n event.clientX <=\n triggerRef.current.getBoundingClientRect()!.right + cushion &&\n event.clientY >=\n triggerRef.current.getBoundingClientRect()!.top - cushion &&\n event.clientY <=\n triggerRef.current.getBoundingClientRect()!.bottom + cushion\n : false)\n ) {\n close('outside')\n }\n }\n\n function handleKeyDown(event: KeyboardEvent) {\n if (event.key === 'Escape') {\n close('escape')\n }\n }\n\n ownerDocumentEl?.addEventListener('mousedown', handleClickOutside)\n\n ownerDocumentEl?.addEventListener('keydown', handleKeyDown)\n\n return () => {\n ownerDocumentEl?.removeEventListener('mousedown', handleClickOutside)\n ownerDocumentEl?.removeEventListener('keydown', handleKeyDown)\n }\n }, [active, close, ownerDocument, rootRef, triggerRef])\n}\n\n//////////////////////////////////////////////////////////////////////////////////////\n\nexport const MENU_DURATION_MS = 200\nexport const MENU_CURVE = 'cubic-bezier(0.175, 0.885, 0.32, 1.1)'\n","import { type CSSProperties, type Ref, forwardRef } from 'react'\n\nexport const Fader = forwardRef(function Fader(\n {\n stop,\n blur,\n side,\n style,\n height,\n }: {\n stop?: string\n blur?: string\n height?: number\n side: 'top' | 'bottom' | 'left' | 'right'\n className?: string\n style?: CSSProperties\n },\n ref: Ref<HTMLDivElement>\n) {\n return (\n <div\n ref={ref}\n aria-hidden\n data-nextjs-scroll-fader\n className=\"nextjs-scroll-fader\"\n data-side={side}\n style={\n {\n '--stop': stop,\n '--blur': blur,\n '--height': `${height}px`,\n ...style,\n } as React.CSSProperties\n }\n />\n )\n})\n\nexport const FADER_STYLES = `\n .nextjs-scroll-fader {\n --blur: 1px;\n --stop: 25%;\n --height: 150px;\n --color-bg: var(--color-background-100);\n position: absolute;\n pointer-events: none;\n user-select: none;\n width: 100%;\n height: var(--height);\n left: 0;\n backdrop-filter: blur(var(--blur));\n\n &[data-side=\"top\"] {\n top: 0;\n background: linear-gradient(to top, transparent, var(--color-bg));\n mask-image: linear-gradient(to bottom, var(--color-bg) var(--stop), transparent);\n }\n }\n`\n","import { forwardRef, useEffect, useState } from 'react'\n\nexport const Resizer = forwardRef(function Resizer(\n {\n children,\n measure,\n ...props\n }: {\n children: React.ReactNode\n measure: boolean\n } & React.HTMLProps<HTMLDivElement>,\n resizerRef: React.Ref<HTMLDivElement | null>\n) {\n const [element, setElement] = useState<HTMLDivElement | null>(null)\n const [height, measuring] = useMeasureHeight(element, measure)\n\n return (\n <div\n {...props}\n ref={resizerRef}\n // [x] Don't animate on initial load\n // [x] No duplicate elements\n // [x] Responds to content growth\n style={{\n height: measuring ? 'auto' : height,\n transition: 'height 250ms var(--timing-swift)',\n }}\n >\n <div ref={setElement}>{children}</div>\n </div>\n )\n})\n\nfunction useMeasureHeight(\n element: HTMLDivElement | null,\n measure: boolean\n): [number, boolean] {\n const [height, setHeight] = useState<number>(0)\n const [measuring, setMeasuring] = useState<boolean>(true)\n\n useEffect(() => {\n if (!measure) {\n return\n }\n\n let timerId: number\n\n if (!element) {\n return\n }\n\n const observer = new ResizeObserver(([{ contentRect }]) => {\n clearTimeout(timerId)\n\n timerId = window.setTimeout(() => {\n setMeasuring(false)\n }, 100)\n\n setHeight(contentRect.height)\n })\n\n observer.observe(element)\n return () => observer.disconnect()\n }, [measure, element])\n\n return [height, measuring]\n}\n","type OverlayBackdropProps = {\n fixed?: boolean\n} & React.HTMLAttributes<HTMLDivElement>\n\nexport function OverlayBackdrop({ fixed, ...props }: OverlayBackdropProps) {\n return (\n <div\n data-nextjs-dialog-backdrop\n data-nextjs-dialog-backdrop-fixed={fixed ? true : undefined}\n {...props}\n />\n )\n}\n","import * as React from 'react'\nimport type { DebugInfo } from '../../../../shared/types'\nimport type { ErrorMessageType } from '../error-message/error-message'\nimport type { ErrorType } from '../error-type-label/error-type-label'\n\nimport { DialogContent } from '../../dialog'\nimport {\n ErrorOverlayToolbar,\n styles as toolbarStyles,\n} from '../error-overlay-toolbar/error-overlay-toolbar'\nimport { ErrorOverlayFooter } from '../error-overlay-footer/error-overlay-footer'\nimport {\n ErrorMessage,\n styles as errorMessageStyles,\n} from '../error-message/error-message'\nimport {\n ErrorTypeLabel,\n styles as errorTypeLabelStyles,\n} from '../error-type-label/error-type-label'\nimport {\n ErrorOverlayNav,\n styles as floatingHeaderStyles,\n} from '../error-overlay-nav/error-overlay-nav'\n\nimport { ErrorOverlayDialog, DIALOG_STYLES } from '../dialog/dialog'\nimport {\n ErrorOverlayDialogHeader,\n DIALOG_HEADER_STYLES,\n} from '../dialog/header'\nimport { ErrorOverlayDialogBody, DIALOG_BODY_STYLES } from '../dialog/body'\nimport { OVERLAY_STYLES, ErrorOverlayOverlay } from '../overlay/overlay'\nimport { ErrorOverlayBottomStack } from '../error-overlay-bottom-stack'\nimport type { ErrorBaseProps } from '../error-overlay/error-overlay'\nimport type { ReadyRuntimeError } from '../../../utils/get-error-by-type'\nimport { EnvironmentNameLabel } from '../environment-name-label/environment-name-label'\nimport { useFocusTrap } from '../dev-tools-indicator/utils'\nimport { Fader } from '../../fader'\nimport { Resizer } from '../../resizer'\nimport { OverlayBackdrop } from '../../overlay'\n\nexport interface ErrorOverlayLayoutProps extends ErrorBaseProps {\n errorMessage: ErrorMessageType\n errorType: ErrorType\n children?: React.ReactNode\n errorCode?: string\n error: ReadyRuntimeError['error']\n debugInfo?: DebugInfo\n isBuildError?: boolean\n onClose?: () => void\n // TODO: better handle receiving\n runtimeErrors?: ReadyRuntimeError[]\n activeIdx?: number\n setActiveIndex?: (index: number) => void\n dialogResizerRef?: React.RefObject<HTMLDivElement | null>\n generateErrorInfo: () => string\n}\n\nexport function ErrorOverlayLayout({\n errorMessage,\n errorType,\n children,\n errorCode,\n errorCount,\n error,\n debugInfo,\n isBuildError,\n onClose,\n versionInfo,\n runtimeErrors,\n activeIdx,\n setActiveIndex,\n isTurbopack,\n dialogResizerRef,\n generateErrorInfo,\n // This prop is used to animate the dialog, it comes from a parent component (<ErrorOverlay>)\n // If it's not being passed, we should just render the component as it is being\n // used without the context of a parent component that controls its state (e.g. Storybook).\n rendered = true,\n transitionDurationMs,\n}: ErrorOverlayLayoutProps) {\n const animationProps = {\n 'data-rendered': rendered,\n style: {\n '--transition-duration': `${transitionDurationMs}ms`,\n } as React.CSSProperties,\n }\n\n const [animating, setAnimating] = React.useState(\n Boolean(transitionDurationMs)\n )\n\n const faderRef = React.useRef<HTMLDivElement | null>(null)\n const hasFooter = Boolean(errorCode)\n const dialogRef = React.useRef<HTMLDivElement | null>(null)\n useFocusTrap(dialogRef, null, rendered)\n\n function onScroll(e: React.UIEvent<HTMLDivElement>) {\n if (faderRef.current) {\n const opacity = clamp(e.currentTarget.scrollTop / 17, [0, 1])\n faderRef.current.style.opacity = String(opacity)\n }\n }\n\n function onTransitionEnd({ propertyName, target }: React.TransitionEvent) {\n // We can only measure height after the `scale` transition ends,\n // otherwise we will measure height as a multiple of the animating value\n // which will give us an incorrect value.\n if (propertyName === 'scale' && target === dialogRef.current) {\n setAnimating(false)\n }\n }\n\n return (\n <ErrorOverlayOverlay {...animationProps}>\n <OverlayBackdrop fixed={isBuildError} />\n <div\n data-nextjs-dialog-root\n onTransitionEnd={onTransitionEnd}\n ref={dialogRef}\n {...animationProps}\n >\n <ErrorOverlayNav\n runtimeErrors={runtimeErrors}\n activeIdx={activeIdx}\n setActiveIndex={setActiveIndex}\n versionInfo={versionInfo}\n isTurbopack={isTurbopack}\n />\n <ErrorOverlayDialog\n onClose={onClose}\n data-has-footer={hasFooter}\n onScroll={onScroll}\n footer={hasFooter && <ErrorOverlayFooter errorCode={errorCode} />}\n >\n <Resizer\n ref={dialogResizerRef}\n measure={!animating}\n data-nextjs-dialog-sizer\n >\n <DialogContent>\n <ErrorOverlayDialogHeader>\n <div\n className=\"nextjs__container_errors__error_title\"\n // allow assertion in tests before error rating is implemented\n data-nextjs-error-code={errorCode}\n >\n <span data-nextjs-error-label-group>\n <ErrorTypeLabel errorType={errorType} />\n {error.environmentName && (\n <EnvironmentNameLabel\n environmentName={error.environmentName}\n />\n )}\n </span>\n <ErrorOverlayToolbar\n error={error}\n debugInfo={debugInfo}\n generateErrorInfo={generateErrorInfo}\n />\n </div>\n <ErrorMessage\n errorMessage={errorMessage}\n errorType={errorType}\n />\n </ErrorOverlayDialogHeader>\n\n <ErrorOverlayDialogBody>{children}</ErrorOverlayDialogBody>\n </DialogContent>\n </Resizer>\n\n <ErrorOverlayBottomStack\n errorCount={errorCount}\n activeIdx={activeIdx ?? 0}\n />\n </ErrorOverlayDialog>\n <Fader ref={faderRef} side=\"top\" stop=\"50%\" blur=\"4px\" height={48} />\n </div>\n </ErrorOverlayOverlay>\n )\n}\n\nfunction clamp(value: number, [min, max]: [number, number]) {\n return Math.min(Math.max(value, min), max)\n}\n\nexport const styles = `\n ${OVERLAY_STYLES}\n ${DIALOG_STYLES}\n ${DIALOG_HEADER_STYLES}\n ${DIALOG_BODY_STYLES}\n\n ${floatingHeaderStyles}\n ${errorTypeLabelStyles}\n ${errorMessageStyles}\n ${toolbarStyles}\n\n [data-nextjs-error-label-group] {\n display: flex;\n align-items: center;\n gap: 8px;\n }\n`\n","import { css } from '../../utils/css'\n\nconst styles = css`\n [data-nextjs-dialog-overlay] {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n /* secondary z-index, -1 than toast z-index */\n z-index: 2147483646;\n\n display: flex;\n align-content: center;\n align-items: center;\n flex-direction: column;\n padding: 10vh 15px 0;\n }\n\n @media (max-height: 812px) {\n [data-nextjs-dialog-overlay] {\n padding: 15px 15px 0;\n }\n }\n\n [data-nextjs-dialog-backdrop] {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: var(--color-backdrop);\n backdrop-filter: blur(10px);\n pointer-events: all;\n z-index: -1;\n }\n\n [data-nextjs-dialog-backdrop-fixed] {\n cursor: not-allowed;\n -webkit-backdrop-filter: blur(8px);\n backdrop-filter: blur(8px);\n }\n`\n\nexport { styles }\n","import { useOpenInEditor } from '../../utils/use-open-in-editor'\n\ntype EditorLinkProps = {\n file: string\n isSourceFile: boolean\n location?: {\n line: number\n column: number\n }\n}\nexport function EditorLink({ file, location }: EditorLinkProps) {\n const open = useOpenInEditor({\n file,\n line1: location?.line ?? 1,\n column1: location?.column ?? 1,\n })\n\n return (\n <div\n data-with-open-in-editor-link\n data-with-open-in-editor-link-import-trace\n role={'link'}\n onClick={open}\n title={'Click to open in your editor'}\n >\n {file}\n {location ? `:${location.line}:${location.column}` : null}\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n >\n <path d=\"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\"></path>\n <polyline points=\"15 3 21 3 21 9\"></polyline>\n <line x1=\"10\" y1=\"14\" x2=\"21\" y2=\"3\"></line>\n </svg>\n </div>\n )\n}\n\nexport const EDITOR_LINK_STYLES = `\n [data-with-open-in-editor-link] svg {\n width: auto;\n height: var(--size-14);\n margin-left: 8px;\n }\n [data-with-open-in-editor-link] {\n cursor: pointer;\n }\n [data-with-open-in-editor-link]:hover {\n text-decoration: underline dotted;\n }\n [data-with-open-in-editor-link-import-trace] {\n margin-left: 16px;\n }\n`\n","import Anser from 'next/dist/compiled/anser'\nimport * as React from 'react'\nimport { HotlinkedText } from '../hot-linked-text'\nimport { EditorLink } from './editor-link'\nimport { ExternalIcon } from '../../icons/external'\nimport { getFrameSource, type StackFrame } from '../../../shared/stack-frame'\nimport { useOpenInEditor } from '../../utils/use-open-in-editor'\nimport { FileIcon } from '../../icons/file'\n\ntype TerminalProps = { content: string }\n\nfunction getFile(lines: string[]) {\n const contentFileName = lines.shift()\n if (!contentFileName) return null\n const [fileName, line, column] = contentFileName.split(':', 3)\n\n const parsedLine = Number(line)\n const parsedColumn = Number(column)\n const hasLocation = !Number.isNaN(parsedLine) && !Number.isNaN(parsedColumn)\n\n return {\n fileName: hasLocation ? fileName : contentFileName,\n location: hasLocation\n ? {\n line1: parsedLine,\n column1: parsedColumn,\n }\n : undefined,\n }\n}\n\nfunction getImportTraceFiles(lines: string[]) {\n if (\n lines.some((line) => /ReactServerComponentsError:/.test(line)) ||\n lines.some((line) => /Import trace for requested module:/.test(line))\n ) {\n // Grab the lines at the end containing the files\n const files = []\n while (\n /.+\\..+/.test(lines[lines.length - 1]) &&\n !lines[lines.length - 1].includes(':')\n ) {\n const file = lines.pop()!.trim()\n files.unshift(file)\n }\n\n return files\n }\n\n return []\n}\n\nfunction getEditorLinks(content: string) {\n const lines = content.split('\\n')\n const file = getFile(lines)\n const importTraceFiles = getImportTraceFiles(lines)\n\n return { file, source: lines.join('\\n'), importTraceFiles }\n}\n\nexport const Terminal: React.FC<TerminalProps> = function Terminal({\n content,\n}) {\n const { file, source, importTraceFiles } = React.useMemo(\n () => getEditorLinks(content),\n [content]\n )\n\n const decoded = React.useMemo(() => {\n return Anser.ansiToJson(source, {\n json: true,\n use_classes: true,\n remove_empty: true,\n })\n }, [source])\n\n const open = useOpenInEditor({\n file: file?.fileName,\n line1: file?.location?.line1 ?? 1,\n column1: file?.location?.column1 ?? 1,\n })\n\n const stackFrame: StackFrame = {\n file: file?.fileName ?? null,\n methodName: '',\n arguments: [],\n line1: file?.location?.line1 ?? null,\n column1: file?.location?.column1 ?? null,\n }\n\n const fileExtension = stackFrame?.file?.split('.').pop()\n\n return (\n <div data-nextjs-codeframe>\n <div className=\"code-frame-header\">\n <div className=\"code-frame-link\">\n <span className=\"code-frame-icon\">\n <FileIcon lang={fileExtension} />\n </span>\n <span data-text>\n {/* TODO: Unlike the CodeFrame component, the `methodName` is unavailable. */}\n {getFrameSource(stackFrame)}\n </span>\n <button\n aria-label=\"Open in editor\"\n data-with-open-in-editor-link-source-file\n onClick={open}\n >\n <span className=\"code-frame-icon\" data-icon=\"right\">\n <ExternalIcon width={16} height={16} />\n </span>\n </button>\n </div>\n </div>\n <pre className=\"code-frame-pre\">\n <div className=\"code-frame-lines\">\n {decoded.map((entry, index) => (\n <span\n key={`terminal-entry-${index}`}\n style={{\n color: entry.fg ? `var(--color-${entry.fg})` : undefined,\n ...(entry.decoration === 'bold'\n ? // TODO(jiwon): This used to be 800, but the symbols like `─┬─` are\n // having longer width than expected on Geist Mono font-weight\n // above 600, hence a temporary fix is to use 500 for bold.\n { fontWeight: 500 }\n : entry.decoration === 'italic'\n ? { fontStyle: 'italic' }\n : undefined),\n }}\n >\n <HotlinkedText text={entry.content} />\n </span>\n ))}\n {importTraceFiles.map((importTraceFile) => (\n <EditorLink\n isSourceFile={false}\n key={importTraceFile}\n file={importTraceFile}\n />\n ))}\n </div>\n </pre>\n </div>\n )\n}\n\nexport const TERMINAL_STYLES = `\n [data-nextjs-terminal]::selection,\n [data-nextjs-terminal] *::selection {\n background-color: var(--color-ansi-selection);\n }\n\n [data-nextjs-terminal] * {\n color: inherit;\n background-color: transparent;\n font-family: var(--font-stack-monospace);\n }\n\n [data-nextjs-terminal] > div > p {\n display: flex;\n align-items: center;\n justify-content: space-between;\n cursor: pointer;\n margin: 0;\n }\n [data-nextjs-terminal] > div > p:hover {\n text-decoration: underline dotted;\n }\n [data-nextjs-terminal] div > pre {\n overflow: hidden;\n display: inline-block;\n }\n`\n","import React, { useCallback, useMemo } from 'react'\nimport stripAnsi from 'next/dist/compiled/strip-ansi'\nimport { Terminal } from '../components/terminal'\nimport { ErrorOverlayLayout } from '../components/errors/error-overlay-layout/error-overlay-layout'\nimport type { ErrorBaseProps } from '../components/errors/error-overlay/error-overlay'\n\ninterface BuildErrorProps extends ErrorBaseProps {\n message: string\n}\n\nconst getErrorTextFromBuildErrorMessage = (multiLineMessage: string) => {\n const lines = multiLineMessage.split('\\n')\n // The multi-line build error message looks like:\n // <file path>:<line number>:<column number>\n // <error message>\n // <error code frame of compiler or bundler>\n // e.g.\n // ./path/to/file.js:1:1\n // SyntaxError: ...\n // > 1 | con st foo =\n // ...\n return (\n stripAnsi(lines[1] || '')\n // label will already say that it's an error\n .replace(/^Error: /, '')\n )\n}\n\nexport const BuildError: React.FC<BuildErrorProps> = function BuildError({\n message,\n ...props\n}) {\n const noop = useCallback(() => {}, [])\n const error = new Error(message)\n const formattedMessage = useMemo(\n () => getErrorTextFromBuildErrorMessage(message) || 'Failed to compile',\n [message]\n )\n\n const generateErrorInfo = useCallback(() => {\n const parts: string[] = []\n\n // 1. Error Type\n parts.push(`## Error Type\\nBuild Error`)\n\n // 2. Error Message\n if (formattedMessage) {\n parts.push(`## Error Message\\n${formattedMessage}`)\n }\n\n // 3. Build Output (decoded stderr)\n if (message) {\n const decodedOutput = stripAnsi(message)\n parts.push(`## Build Output\\n${decodedOutput}`)\n }\n\n // Format as AI prompt\n const errorInfo = `${parts.join('\\n\\n')}\n\nNext.js version: ${props.versionInfo.installed} (${process.env.__NEXT_BUNDLER})\\n`\n\n return errorInfo\n }, [message, formattedMessage, props.versionInfo])\n\n return (\n <ErrorOverlayLayout\n errorType=\"Build Error\"\n errorMessage={formattedMessage}\n onClose={noop}\n error={error}\n generateErrorInfo={generateErrorInfo}\n {...props}\n >\n <Terminal content={message} />\n </ErrorOverlayLayout>\n )\n}\n\nexport const styles = ``\n","import type { OriginalStackFrame } from '../../../shared/stack-frame'\n\nimport { HotlinkedText } from '../hot-linked-text'\nimport { ExternalIcon, SourceMappingErrorIcon } from '../../icons/external'\nimport { getFrameSource } from '../../../shared/stack-frame'\nimport { useOpenInEditor } from '../../utils/use-open-in-editor'\n\nexport const CallStackFrame: React.FC<{\n frame: OriginalStackFrame\n}> = function CallStackFrame({ frame }) {\n // TODO: ability to expand resolved frames\n\n const f = frame.originalStackFrame ?? frame.sourceStackFrame\n const hasSource = Boolean(frame.originalCodeFrame)\n const open = useOpenInEditor(\n hasSource\n ? {\n file: f.file,\n line1: f.line1 ?? 1,\n column1: f.column1 ?? 1,\n }\n : undefined\n )\n\n // Formatted file source could be empty. e.g. <anonymous> will be formatted to empty string,\n // we'll skip rendering the frame in this case.\n const fileSource = getFrameSource(f)\n\n if (!fileSource) {\n return null\n }\n\n return (\n <div\n data-nextjs-call-stack-frame\n data-nextjs-call-stack-frame-no-source={!hasSource}\n data-nextjs-call-stack-frame-ignored={frame.ignored}\n >\n <div className=\"call-stack-frame-method-name\">\n <HotlinkedText text={f.methodName} />\n {hasSource && (\n <button\n onClick={open}\n className=\"open-in-editor-button\"\n aria-label={`Open ${f.methodName} in editor`}\n >\n <ExternalIcon width={16} height={16} />\n </button>\n )}\n {frame.error ? (\n <button\n className=\"source-mapping-error-button\"\n onClick={() => console.error(frame.reason)}\n title=\"Sourcemapping failed. Click to log cause of error.\"\n >\n <SourceMappingErrorIcon width={16} height={16} />\n </button>\n ) : null}\n </div>\n <span\n className=\"call-stack-frame-file-source\"\n data-has-source={hasSource}\n >\n {fileSource}\n </span>\n </div>\n )\n}\n\nexport const CALL_STACK_FRAME_STYLES = `\n [data-nextjs-call-stack-frame-no-source] {\n padding: 6px 8px;\n margin-bottom: 4px;\n\n border-radius: var(--rounded-lg);\n }\n\n [data-nextjs-call-stack-frame-no-source]:last-child {\n margin-bottom: 0;\n }\n\n [data-nextjs-call-stack-frame-ignored=\"true\"] {\n opacity: 0.6;\n }\n\n [data-nextjs-call-stack-frame] {\n user-select: text;\n display: block;\n box-sizing: border-box;\n\n user-select: text;\n -webkit-user-select: text;\n -moz-user-select: text;\n -ms-user-select: text;\n\n padding: 6px 8px;\n\n border-radius: var(--rounded-lg);\n }\n\n .call-stack-frame-method-name {\n display: flex;\n align-items: center;\n gap: 4px;\n\n margin-bottom: 4px;\n font-family: var(--font-stack-monospace);\n\n color: var(--color-gray-1000);\n font-size: var(--size-14);\n font-weight: 500;\n line-height: var(--size-20);\n\n svg {\n width: var(--size-16px);\n height: var(--size-16px);\n }\n }\n\n .open-in-editor-button, .source-mapping-error-button {\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--rounded-full);\n padding: 4px;\n color: var(--color-font);\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n\n &:focus-visible {\n outline: var(--focus-ring);\n outline-offset: -2px;\n }\n\n &:hover {\n background: var(--color-gray-100);\n }\n }\n\n .call-stack-frame-file-source {\n color: var(--color-gray-900);\n font-size: var(--size-14);\n line-height: var(--size-20);\n }\n`\n","export function ChevronUpDownIcon() {\n return (\n <svg\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8.70722 2.39641C8.3167 2.00588 7.68353 2.00588 7.29301 2.39641L4.46978 5.21963L3.93945 5.74996L5.00011 6.81062L5.53044 6.28029L8.00011 3.81062L10.4698 6.28029L11.0001 6.81062L12.0608 5.74996L11.5304 5.21963L8.70722 2.39641ZM5.53044 9.71963L5.00011 9.1893L3.93945 10.25L4.46978 10.7803L7.29301 13.6035C7.68353 13.994 8.3167 13.994 8.70722 13.6035L11.5304 10.7803L12.0608 10.25L11.0001 9.1893L10.4698 9.71963L8.00011 12.1893L5.53044 9.71963Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","import type { OriginalStackFrame } from '../../../shared/stack-frame'\n\nimport { CallStackFrame } from '../call-stack-frame/call-stack-frame'\nimport { ChevronUpDownIcon } from '../../icons/chevron-up-down'\nimport { css } from '../../utils/css'\n\nexport function CallStack({\n frames,\n isIgnoreListOpen,\n ignoredFramesTally,\n onToggleIgnoreList,\n}: {\n frames: readonly OriginalStackFrame[]\n isIgnoreListOpen: boolean\n ignoredFramesTally: number\n onToggleIgnoreList: () => void\n}) {\n return (\n <div data-nextjs-call-stack-container>\n <div data-nextjs-call-stack-header>\n <p data-nextjs-call-stack-title>\n Call Stack <span data-nextjs-call-stack-count>{frames.length}</span>\n </p>\n {ignoredFramesTally > 0 && (\n <button\n // The isIgnoreListOpen value is used by tests to confirm whether it is open or not.\n data-nextjs-call-stack-ignored-list-toggle-button={isIgnoreListOpen}\n onClick={onToggleIgnoreList}\n >\n {`${isIgnoreListOpen ? 'Hide' : 'Show'} ${ignoredFramesTally} ignore-listed frame(s)`}\n <ChevronUpDownIcon />\n </button>\n )}\n </div>\n {frames.map((frame, frameIndex) => {\n return !frame.ignored || isIgnoreListOpen ? (\n <CallStackFrame key={frameIndex} frame={frame} />\n ) : null\n })}\n </div>\n )\n}\n\nexport const CALL_STACK_STYLES = css`\n [data-nextjs-call-stack-container] {\n position: relative;\n margin-top: 8px;\n }\n\n [data-nextjs-call-stack-header] {\n display: flex;\n justify-content: space-between;\n align-items: center;\n min-height: var(--size-28);\n padding: 8px 8px 12px 4px;\n width: 100%;\n }\n\n [data-nextjs-call-stack-title] {\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: 8px;\n\n margin: 0;\n\n color: var(--color-gray-1000);\n font-size: var(--size-16);\n font-weight: 500;\n }\n\n [data-nextjs-call-stack-count] {\n display: flex;\n justify-content: center;\n align-items: center;\n\n width: var(--size-20);\n height: var(--size-20);\n gap: 4px;\n\n color: var(--color-gray-1000);\n text-align: center;\n font-size: var(--size-11);\n font-weight: 500;\n line-height: var(--size-16);\n\n border-radius: var(--rounded-full);\n background: var(--color-gray-300);\n }\n\n [data-nextjs-call-stack-ignored-list-toggle-button] {\n all: unset;\n display: flex;\n align-items: center;\n gap: 6px;\n color: var(--color-gray-900);\n font-size: var(--size-14);\n line-height: var(--size-20);\n border-radius: 6px;\n padding: 4px 6px;\n margin-right: -6px;\n transition: background 150ms ease;\n\n &:hover {\n background: var(--color-gray-100);\n }\n\n &:focus {\n outline: var(--focus-ring);\n }\n\n svg {\n width: var(--size-16);\n height: var(--size-16);\n }\n }\n`\n","import type { OriginalStackFrame } from '../../../../shared/stack-frame'\nimport { useMemo, useState, useRef } from 'react'\nimport { CallStack } from '../../call-stack/call-stack'\n\ninterface CallStackProps {\n frames: readonly OriginalStackFrame[]\n dialogResizerRef: React.RefObject<HTMLDivElement | null>\n}\n\nexport function ErrorOverlayCallStack({\n frames,\n dialogResizerRef,\n}: CallStackProps) {\n const initialDialogHeight = useRef<number>(NaN)\n const [isIgnoreListOpen, setIsIgnoreListOpen] = useState(false)\n\n const ignoredFramesTally = useMemo(() => {\n return frames.reduce((tally, frame) => tally + (frame.ignored ? 1 : 0), 0)\n }, [frames])\n\n function onToggleIgnoreList() {\n const dialog = dialogResizerRef?.current\n\n if (!dialog) {\n return\n }\n\n const { height: currentHeight } = dialog.getBoundingClientRect()\n\n if (!initialDialogHeight.current) {\n initialDialogHeight.current = currentHeight\n }\n\n if (isIgnoreListOpen) {\n function onTransitionEnd() {\n // TS bug. We closed over a non-nullable value here.\n dialog!.removeEventListener('transitionend', onTransitionEnd)\n setIsIgnoreListOpen(false)\n }\n // eslint-disable-next-line react-hooks/immutability -- Bug in react-hooks/react-compiler\n dialog.style.height = `${initialDialogHeight.current}px`\n dialog.addEventListener('transitionend', onTransitionEnd)\n } else {\n setIsIgnoreListOpen(true)\n }\n }\n\n return (\n <CallStack\n frames={frames}\n isIgnoreListOpen={isIgnoreListOpen}\n onToggleIgnoreList={onToggleIgnoreList}\n ignoredFramesTally={ignoredFramesTally}\n />\n )\n}\n","export function CollapseIcon({ collapsed }: { collapsed?: boolean } = {}) {\n return (\n <svg\n data-nextjs-call-stack-chevron-icon\n data-collapsed={collapsed}\n width=\"16\"\n height=\"16\"\n fill=\"none\"\n // rotate 90 degrees if not collapsed.\n {...(typeof collapsed === 'boolean'\n ? { style: { transform: collapsed ? undefined : 'rotate(90deg)' } }\n : {})}\n >\n <path\n style={{ fill: 'var(--color-font)' }}\n fillRule=\"evenodd\"\n d=\"m6.75 3.94.53.53 2.824 2.823a1 1 0 0 1 0 1.414L7.28 11.53l-.53.53L5.69 11l.53-.53L8.69 8 6.22 5.53 5.69 5l1.06-1.06Z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n}\n","import { useMemo, useState } from 'react'\nimport { CollapseIcon } from '../../icons/collapse-icon'\n/**\n *\n * Format component stack into pseudo HTML\n * component stack is an array of strings, e.g.: ['p', 'p', 'Page', ...]\n *\n * For html tags mismatch, it will render it for the code block\n *\n * ```\n * <pre>\n * <code>{`\n * <Page>\n * <p red>\n * <p red>\n * `}</code>\n * </pre>\n * ```\n *\n * For text mismatch, it will render it for the code block\n *\n * ```\n * <pre>\n * <code>{`\n * <Page>\n * <p>\n * \"Server Text\" (green)\n * \"Client Text\" (red)\n * </p>\n * </Page>\n * `}</code>\n * ```\n *\n * For bad text under a tag it will render it for the code block,\n * e.g. \"Mismatched Text\" under <p>\n *\n * ```\n * <pre>\n * <code>{`\n * <Page>\n * <div>\n * <p>\n * \"Mismatched Text\" (red)\n * </p>\n * </div>\n * </Page>\n * `}</code>\n * ```\n *\n */\nexport function PseudoHtmlDiff({\n reactOutputComponentDiff,\n}: {\n reactOutputComponentDiff: string\n}) {\n const [isDiffCollapsed, toggleCollapseHtml] = useState(true)\n\n const htmlComponents = useMemo(() => {\n const componentStacks: React.ReactNode[] = []\n const reactComponentDiffLines = reactOutputComponentDiff.split('\\n')\n reactComponentDiffLines.forEach((line, index) => {\n const isDiffLine = line[0] === '+' || line[0] === '-'\n const isHighlightedLine = line[0] === '>'\n const hasSign = isDiffLine || isHighlightedLine\n const sign = hasSign ? line[0] : ''\n const signIndex = hasSign ? line.indexOf(sign) : -1\n const [prefix, suffix] = hasSign\n ? [line.slice(0, signIndex), line.slice(signIndex + 1)]\n : [line, '']\n\n if (isDiffLine) {\n componentStacks.push(\n <span\n key={'comp-diff' + index}\n data-nextjs-container-errors-pseudo-html-line\n data-nextjs-container-errors-pseudo-html--diff={\n sign === '+' ? 'add' : 'remove'\n }\n >\n <span>\n {/* Slice 2 spaces for the icon */}\n {prefix}\n <span data-nextjs-container-errors-pseudo-html-line-sign>\n {sign}\n </span>\n {suffix}\n {'\\n'}\n </span>\n </span>\n )\n } else {\n // In general, if it's not collapsed, show the whole diff\n componentStacks.push(\n <span\n data-nextjs-container-errors-pseudo-html-line\n key={'comp-diff' + index}\n {...(isHighlightedLine\n ? {\n 'data-nextjs-container-errors-pseudo-html--diff': 'error',\n }\n : undefined)}\n >\n {prefix}\n <span data-nextjs-container-errors-pseudo-html-line-sign>\n {sign}\n </span>\n {suffix}\n {'\\n'}\n </span>\n )\n }\n })\n return componentStacks\n }, [reactOutputComponentDiff])\n\n return (\n <div\n data-nextjs-container-errors-pseudo-html\n data-nextjs-container-errors-pseudo-html-collapse={isDiffCollapsed}\n >\n <button\n aria-expanded={!isDiffCollapsed}\n aria-label=\"complete Component Stack\"\n data-nextjs-container-errors-pseudo-html-collapse-button\n onClick={() => toggleCollapseHtml(!isDiffCollapsed)}\n >\n <CollapseIcon collapsed={isDiffCollapsed} />\n </button>\n <pre className=\"nextjs__container_errors__component-stack\">\n <code>{htmlComponents}</code>\n </pre>\n </div>\n )\n}\n","const symbolError = Symbol.for('NextjsError')\n\nexport function getErrorSource(error: Error): 'server' | 'edge-server' | null {\n return (error as any)[symbolError] || null\n}\n\nexport type ErrorSourceType = 'edge-server' | 'server'\n\nexport function decorateServerError(error: Error, type: ErrorSourceType) {\n Object.defineProperty(error, symbolError, {\n writable: false,\n enumerable: false,\n configurable: false,\n value: type,\n })\n}\n","import type { SupportedErrorEvent } from '../container/runtime-error/render-error'\nimport { getOriginalStackFrames } from '../../shared/stack-frame'\nimport type { OriginalStackFrame } from '../../shared/stack-frame'\nimport { getErrorSource } from '../../../shared/lib/error-source'\nimport React from 'react'\n\nexport type ReadyRuntimeError = {\n id: number\n runtime: true\n error: Error & { environmentName?: string }\n frames:\n | readonly OriginalStackFrame[]\n | (() => Promise<readonly OriginalStackFrame[]>)\n type: 'runtime' | 'console' | 'recoverable'\n}\n\nexport const useFrames = (\n error: ReadyRuntimeError | null\n): readonly OriginalStackFrame[] => {\n if (!error) return []\n\n if ('use' in React) {\n const frames = error.frames\n\n if (typeof frames !== 'function') {\n throw new Error(\n 'Invariant: frames must be a function when the React version has React.use. This is a bug in Next.js.'\n )\n }\n\n return React.use((frames as () => Promise<readonly OriginalStackFrame[]>)())\n } else {\n if (!Array.isArray(error.frames)) {\n throw new Error(\n 'Invariant: frames must be an array when the React version does not have React.use. This is a bug in Next.js.'\n )\n }\n\n return error.frames\n }\n}\n\nexport async function getErrorByType(\n event: SupportedErrorEvent,\n isAppDir: boolean\n): Promise<ReadyRuntimeError> {\n const baseError = {\n id: event.id,\n runtime: true,\n error: event.error,\n type: event.type,\n } as const\n\n if ('use' in React) {\n const readyRuntimeError: ReadyRuntimeError = {\n ...baseError,\n // createMemoizedPromise dedups calls to getOriginalStackFrames\n frames: createMemoizedPromise(async () => {\n return await getOriginalStackFrames(\n event.frames,\n getErrorSource(event.error),\n isAppDir\n )\n }),\n }\n return readyRuntimeError\n } else {\n const readyRuntimeError: ReadyRuntimeError = {\n ...baseError,\n // createMemoizedPromise dedups calls to getOriginalStackFrames\n frames: await getOriginalStackFrames(\n event.frames,\n getErrorSource(event.error),\n isAppDir\n ),\n }\n return readyRuntimeError\n }\n}\n\nfunction createMemoizedPromise<T>(\n promiseFactory: () => Promise<T>\n): () => Promise<T> {\n const cachedPromise = promiseFactory()\n return function (): Promise<T> {\n return cachedPromise\n }\n}\n","import { useMemo } from 'react'\nimport { CodeFrame } from '../../components/code-frame/code-frame'\nimport { ErrorOverlayCallStack } from '../../components/errors/error-overlay-call-stack/error-overlay-call-stack'\nimport { PSEUDO_HTML_DIFF_STYLES } from './component-stack-pseudo-html'\nimport {\n useFrames,\n type ReadyRuntimeError,\n} from '../../utils/get-error-by-type'\n\ntype RuntimeErrorProps = {\n error: ReadyRuntimeError\n dialogResizerRef: React.RefObject<HTMLDivElement | null>\n}\n\nexport function RuntimeError({ error, dialogResizerRef }: RuntimeErrorProps) {\n const frames = useFrames(error)\n\n const firstFrame = useMemo(() => {\n const firstFirstPartyFrameIndex = frames.findIndex(\n (entry) =>\n !entry.ignored &&\n Boolean(entry.originalCodeFrame) &&\n Boolean(entry.originalStackFrame)\n )\n\n return frames[firstFirstPartyFrameIndex] ?? null\n }, [frames])\n\n return (\n <>\n {firstFrame && (\n <CodeFrame\n stackFrame={firstFrame.originalStackFrame!}\n codeFrame={firstFrame.originalCodeFrame!}\n />\n )}\n\n {frames.length > 0 && (\n <ErrorOverlayCallStack\n dialogResizerRef={dialogResizerRef}\n frames={frames}\n />\n )}\n </>\n )\n}\n\nexport const styles = `\n ${PSEUDO_HTML_DIFF_STYLES}\n`\n","export { PseudoHtmlDiff } from '../../components/hydration-diff/diff-view'\n\nexport const PSEUDO_HTML_DIFF_STYLES = `\n [data-nextjs-container-errors-pseudo-html] {\n padding: 8px 0;\n margin: 8px 0;\n border: 1px solid var(--color-gray-400);\n background: var(--color-background-200);\n color: var(--color-syntax-constant);\n font-family: var(--font-stack-monospace);\n font-size: var(--size-12);\n line-height: 1.33em; /* 16px in 12px font size */\n border-radius: var(--rounded-md-2);\n }\n [data-nextjs-container-errors-pseudo-html-line] {\n display: inline-block;\n width: 100%;\n padding-left: 40px;\n line-height: calc(5 / 3);\n }\n [data-nextjs-container-errors-pseudo-html--diff='error'] {\n background: var(--color-amber-100);\n box-shadow: 2px 0 0 0 var(--color-amber-900) inset;\n font-weight: bold;\n }\n [data-nextjs-container-errors-pseudo-html-collapse-button] {\n all: unset;\n margin-left: 12px;\n &:focus {\n outline: none;\n }\n }\n [data-nextjs-container-errors-pseudo-html--diff='add'] {\n background: var(--color-green-300);\n }\n [data-nextjs-container-errors-pseudo-html-line-sign] {\n margin-left: calc(24px * -1);\n margin-right: 24px;\n }\n [data-nextjs-container-errors-pseudo-html--diff='add']\n [data-nextjs-container-errors-pseudo-html-line-sign] {\n color: var(--color-green-900);\n }\n [data-nextjs-container-errors-pseudo-html--diff='remove'] {\n background: var(--color-red-300);\n }\n [data-nextjs-container-errors-pseudo-html--diff='remove']\n [data-nextjs-container-errors-pseudo-html-line-sign] {\n color: var(--color-red-900);\n margin-left: calc(24px * -1);\n margin-right: 24px;\n }\n [data-nextjs-container-errors-pseudo-html--diff='error']\n [data-nextjs-container-errors-pseudo-html-line-sign] {\n color: var(--color-amber-900);\n }\n ${/* hide but text are still accessible in DOM */ ''}\n [data-nextjs-container-errors-pseudo-html--hint] {\n display: inline-block;\n font-size: 0;\n height: 0;\n }\n [data-nextjs-container-errors-pseudo-html--tag-adjacent='false'] {\n color: var(--color-accents-1);\n }\n .nextjs__container_errors__component-stack {\n margin: 0;\n }\n [data-nextjs-container-errors-pseudo-html-collapse='true']\n .nextjs__container_errors__component-stack\n code {\n max-height: 120px;\n mask-image: linear-gradient(to bottom,rgba(0,0,0,0) 0%,black 10%);\n padding-bottom: 40px;\n }\n .nextjs__container_errors__component-stack code {\n display: block;\n width: 100%;\n white-space: pre-wrap;\n scroll-snap-type: y mandatory;\n overflow-y: hidden;\n }\n [data-nextjs-container-errors-pseudo-html--diff] {\n scroll-snap-align: center;\n }\n .error-overlay-hydration-error-diff-plus-icon {\n color: var(--color-green-900);\n }\n .error-overlay-hydration-error-diff-minus-icon {\n color: var(--color-red-900);\n }\n`\n","import React, { useMemo, useRef, Suspense, useCallback } from 'react'\nimport type { DebugInfo } from '../../shared/types'\nimport { Overlay, OverlayBackdrop } from '../components/overlay'\nimport { RuntimeError } from './runtime-error'\nimport { getErrorSource } from '../../../shared/lib/error-source'\nimport { HotlinkedText } from '../components/hot-linked-text'\nimport { PseudoHtmlDiff } from './runtime-error/component-stack-pseudo-html'\nimport {\n ErrorOverlayLayout,\n type ErrorOverlayLayoutProps,\n} from '../components/errors/error-overlay-layout/error-overlay-layout'\nimport {\n getHydrationErrorStackInfo,\n isHydrationError,\n NEXTJS_HYDRATION_ERROR_LINK,\n} from '../../shared/react-19-hydration-error'\nimport type { ReadyRuntimeError } from '../utils/get-error-by-type'\nimport { useFrames } from '../utils/get-error-by-type'\nimport type { ErrorBaseProps } from '../components/errors/error-overlay/error-overlay'\nimport type { HydrationErrorState } from '../../shared/hydration-error'\nimport { useActiveRuntimeError } from '../hooks/use-active-runtime-error'\nimport { formatCodeFrame } from '../components/code-frame/parse-code-frame'\nimport stripAnsi from 'next/dist/compiled/strip-ansi'\n\ninterface ErrorsProps extends ErrorBaseProps {\n getSquashedHydrationErrorDetails: (error: Error) => HydrationErrorState | null\n runtimeErrors: ReadyRuntimeError[]\n debugInfo: DebugInfo\n onClose: () => void\n}\n\nfunction matchLinkType(text: string): string | null {\n if (text.startsWith('https://nextjs.org')) {\n return 'nextjs-link'\n }\n if (text.startsWith('https://') || text.startsWith('http://')) {\n return 'external-link'\n }\n return null\n}\n\nfunction HydrationErrorDescription({ message }: { message: string }) {\n return <HotlinkedText text={message} matcher={matchLinkType} />\n}\n\nfunction GenericErrorDescription({ error }: { error: Error }) {\n const environmentName =\n 'environmentName' in error ? error.environmentName : ''\n const envPrefix = environmentName ? `[ ${environmentName} ] ` : ''\n\n // The environment name will be displayed as a label, so remove it\n // from the message (e.g. \"[ Server ] hello world\" -> \"hello world\").\n let message = error.message\n if (message.startsWith(envPrefix)) {\n message = message.slice(envPrefix.length)\n }\n\n return (\n <>\n <HotlinkedText text={message} matcher={matchLinkType} />\n </>\n )\n}\n\nfunction DynamicMetadataErrorDescription({\n variant,\n}: {\n variant: 'navigation' | 'runtime'\n}) {\n if (variant === 'navigation') {\n return (\n <div className=\"nextjs__blocking_page_load_error_description\">\n <h3 className=\"nextjs__blocking_page_load_error_description_title\">\n Data that blocks navigation was accessed inside{' '}\n <code>generateMetadata()</code> in an otherwise prerenderable page\n </h3>\n <p>\n When Document metadata is the only part of a page that cannot be\n prerendered Next.js expects you to either make it prerenderable or\n make some other part of the page non-prerenderable to avoid\n unintentional partially dynamic pages. Uncached data such as{' '}\n <code>fetch(...)</code>, cached data with a low expire time, or{' '}\n <code>connection()</code> are all examples of data that only resolve\n on navigation.\n </p>\n <h4>To fix this:</h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Move the asynchronous await into a Cache Component (\n <code>\"use cache\"</code>)\n </strong>\n . This allows Next.js to statically prerender{' '}\n <code>generateMetadata()</code> as part of the HTML document, so it's\n instantly visible to the user.\n </p>\n <h4 className=\"nextjs__blocking_page_load_error_fix_option_separator\">\n or\n </h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n add <code>connection()</code> inside a <code>{'<Suspense>'}</code>\n </strong>{' '}\n somewhere in a Page or Layout. This tells Next.js that the page is\n intended to have some non-prerenderable parts.\n </p>\n <p>\n Learn more:{' '}\n <a href=\"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata\">\n https://nextjs.org/docs/messages/next-prerender-dynamic-metadata\n </a>\n </p>\n </div>\n )\n } else {\n return (\n <div className=\"nextjs__blocking_page_load_error_description\">\n <h3 className=\"nextjs__blocking_page_load_error_description_title\">\n Runtime data was accessed inside <code>generateMetadata()</code> or\n file-based metadata\n </h3>\n <p>\n When Document metadata is the only part of a page that cannot be\n prerendered Next.js expects you to either make it prerenderable or\n make some other part of the page non-prerenderable to avoid\n unintentional partially dynamic pages.\n </p>\n <h4>To fix this:</h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Remove the Runtime data access from <code>generateMetadata()</code>\n </strong>\n . This allows Next.js to statically prerender{' '}\n <code>generateMetadata()</code> as part of the HTML document, so it's\n instantly visible to the user.\n </p>\n <h4 className=\"nextjs__blocking_page_load_error_fix_option_separator\">\n or\n </h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n add <code>connection()</code> inside a <code>{'<Suspense>'}</code>\n </strong>{' '}\n somewhere in a Page or Layout. This tells Next.js that the page is\n intended to have some non-prerenderable parts.\n </p>\n <p>\n Note that if you are using file-based metadata, such as icons, inside\n a route with dynamic params then the only recourse is to make some\n other part of the page non-prerenderable.\n </p>\n <p>\n Learn more:{' '}\n <a href=\"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata\">\n https://nextjs.org/docs/messages/next-prerender-dynamic-metadata\n </a>\n </p>\n </div>\n )\n }\n}\n\nfunction BlockingPageLoadErrorDescription({\n variant,\n refinement,\n}: {\n variant: 'navigation' | 'runtime'\n refinement: '' | 'generateViewport' | 'generateMetadata'\n}) {\n if (refinement === 'generateViewport') {\n if (variant === 'navigation') {\n return (\n <div className=\"nextjs__blocking_page_load_error_description\">\n <h3 className=\"nextjs__blocking_page_load_error_description_title\">\n Data that blocks navigation was accessed inside{' '}\n <code>generateViewport()</code>\n </h3>\n <p>\n Viewport metadata needs to be available on page load so accessing\n data that waits for a user navigation while producing it prevents\n Next.js from prerendering an initial UI. Uncached data such as{' '}\n <code>fetch(...)</code>, cached data with a low expire time, or{' '}\n <code>connection()</code> are all examples of data that only resolve\n on navigation.\n </p>\n <h4>To fix this:</h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Move the asynchronous await into a Cache Component (\n <code>\"use cache\"</code>)\n </strong>\n . This allows Next.js to statically prerender{' '}\n <code>generateViewport()</code> as part of the HTML document, so\n it's instantly visible to the user.\n </p>\n <h4 className=\"nextjs__blocking_page_load_error_fix_option_separator\">\n or\n </h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Put a <code>{'<Suspense>'}</code> around your document{' '}\n <code>{'<body>'}</code>.\n </strong>\n This indicate to Next.js that you are opting into allowing blocking\n navigations for any page.\n </p>\n <p>\n Learn more:{' '}\n <a href=\"https://nextjs.org/docs/messages/next-prerender-dynamic-viewport\">\n https://nextjs.org/docs/messages/next-prerender-dynamic-viewport\n </a>\n </p>\n </div>\n )\n } else {\n return (\n <div className=\"nextjs__blocking_page_load_error_description\">\n <h3 className=\"nextjs__blocking_page_load_error_description_title\">\n Runtime data was accessed inside <code>generateViewport()</code>\n </h3>\n <p>\n Viewport metadata needs to be available on page load so accessing\n data that comes from a user Request while producing it prevents\n Next.js from prerendering an initial UI.\n <code>cookies()</code>, <code>headers()</code>, and{' '}\n <code>searchParams</code>, are examples of Runtime data that can\n only come from a user request.\n </p>\n <h4>To fix this:</h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>Remove the Runtime data requirement</strong> from{' '}\n <code>generateViewport</code>. This allows Next.js to statically\n prerender <code>generateViewport()</code> as part of the HTML\n document, so it's instantly visible to the user.\n </p>\n <h4 className=\"nextjs__blocking_page_load_error_fix_option_separator\">\n or\n </h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Put a <code>{'<Suspense>'}</code> around your document{' '}\n <code>{'<body>'}</code>.\n </strong>\n This indicate to Next.js that you are opting into allowing blocking\n navigations for any page.\n </p>\n <p>\n <code>params</code> are usually considered Runtime data but if all\n params are provided a value using <code>generateStaticParams</code>{' '}\n they can be statically prerendered.\n </p>\n <p>\n Learn more:{' '}\n <a href=\"https://nextjs.org/docs/messages/next-prerender-dynamic-viewport\">\n https://nextjs.org/docs/messages/next-prerender-dynamic-viewport\n </a>\n </p>\n </div>\n )\n }\n } else if (refinement === 'generateMetadata') {\n if (variant === 'navigation') {\n return (\n <div className=\"nextjs__blocking_page_load_error_description\">\n <h3 className=\"nextjs__blocking_page_load_error_description_title\">\n Data that blocks navigation was accessed inside{' '}\n <code>generateMetadata()</code> in an otherwise prerenderable page\n </h3>\n <p>\n When Document metadata is the only part of a page that cannot be\n prerendered Next.js expects you to either make it prerenderable or\n make some other part of the page non-prerenderable to avoid\n unintentional partially dynamic pages. Uncached data such as{' '}\n <code>fetch(...)</code>, cached data with a low expire time, or{' '}\n <code>connection()</code> are all examples of data that only resolve\n on navigation.\n </p>\n <h4>To fix this:</h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Move the asynchronous await into a Cache Component (\n <code>\"use cache\"</code>)\n </strong>\n . This allows Next.js to statically prerender{' '}\n <code>generateMetadata()</code> as part of the HTML document, so\n it's instantly visible to the user.\n </p>\n <h4 className=\"nextjs__blocking_page_load_error_fix_option_separator\">\n or\n </h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n add <code>connection()</code> inside a <code>{'<Suspense>'}</code>\n </strong>{' '}\n somewhere in a Page or Layout. This tells Next.js that the page is\n intended to have some non-prerenderable parts.\n </p>\n <p>\n Learn more:{' '}\n <a href=\"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata\">\n https://nextjs.org/docs/messages/next-prerender-dynamic-metadata\n </a>\n </p>\n </div>\n )\n } else {\n return (\n <div className=\"nextjs__blocking_page_load_error_description\">\n <h3 className=\"nextjs__blocking_page_load_error_description_title\">\n Runtime data was accessed inside <code>generateMetadata()</code> or\n file-based metadata\n </h3>\n <p>\n When Document metadata is the only part of a page that cannot be\n prerendered Next.js expects you to either make it prerenderable or\n make some other part of the page non-prerenderable to avoid\n unintentional partially dynamic pages.\n </p>\n <h4>To fix this:</h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Remove the Runtime data access from{' '}\n <code>generateMetadata()</code>\n </strong>\n . This allows Next.js to statically prerender{' '}\n <code>generateMetadata()</code> as part of the HTML document, so\n it's instantly visible to the user.\n </p>\n <h4 className=\"nextjs__blocking_page_load_error_fix_option_separator\">\n or\n </h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n add <code>connection()</code> inside a <code>{'<Suspense>'}</code>\n </strong>{' '}\n somewhere in a Page or Layout. This tells Next.js that the page is\n intended to have some non-prerenderable parts.\n </p>\n <p>\n Note that if you are using file-based metadata, such as icons,\n inside a route with dynamic params then the only recourse is to make\n some other part of the page non-prerenderable.\n </p>\n <p>\n Learn more:{' '}\n <a href=\"https://nextjs.org/docs/messages/next-prerender-dynamic-metadata\">\n https://nextjs.org/docs/messages/next-prerender-dynamic-metadata\n </a>\n </p>\n </div>\n )\n }\n }\n\n if (variant === 'runtime') {\n return (\n <div className=\"nextjs__blocking_page_load_error_description\">\n <h3 className=\"nextjs__blocking_page_load_error_description_title\">\n Runtime data was accessed outside of {'<Suspense>'}\n </h3>\n <p>\n This delays the entire page from rendering, resulting in a slow user\n experience. Next.js uses this error to ensure your app loads instantly\n on every navigation. <code>cookies()</code>, <code>headers()</code>,\n and <code>searchParams</code>, are examples of Runtime data that can\n only come from a user request.\n </p>\n <h4>To fix this:</h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>Provide a fallback UI using {'<Suspense>'}</strong> around\n this component.\n </p>\n <h4 className=\"nextjs__blocking_page_load_error_fix_option_separator\">\n or\n </h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Move the Runtime data access into a deeper component wrapped in{' '}\n {'<Suspense>'}.\n </strong>\n </p>\n <p>\n In either case this allows Next.js to stream its contents to the user\n when they request the page, while still providing an initial UI that\n is prerendered and prefetchable for instant navigations.\n </p>\n <p>\n Learn more:{' '}\n <a href=\"https://nextjs.org/docs/messages/blocking-route\">\n https://nextjs.org/docs/messages/blocking-route\n </a>\n </p>\n </div>\n )\n } else {\n return (\n <div className=\"nextjs__blocking_page_load_error_description\">\n <h3 className=\"nextjs__blocking_page_load_error_description_title\">\n Data that blocks navigation was accessed outside of {'<Suspense>'}\n </h3>\n <p>\n This delays the entire page from rendering, resulting in a slow user\n experience. Next.js uses this error to ensure your app loads instantly\n on every navigation. Uncached data such as <code>fetch(...)</code>,\n cached data with a low expire time, or <code>connection()</code> are\n all examples of data that only resolve on navigation.\n </p>\n <h4>To fix this, you can either:</h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>Provide a fallback UI using {'<Suspense>'}</strong> around\n this component. This allows Next.js to stream its contents to the user\n as soon as it's ready, without blocking the rest of the app.\n </p>\n <h4 className=\"nextjs__blocking_page_load_error_fix_option_separator\">\n or\n </h4>\n <p className=\"nextjs__blocking_page_load_error_fix_option\">\n <strong>\n Move the asynchronous await into a Cache Component (\n <code>\"use cache\"</code>)\n </strong>\n . This allows Next.js to statically prerender the component as part of\n the HTML document, so it's instantly visible to the user.\n </p>\n <p>\n Learn more:{' '}\n <a href=\"https://nextjs.org/docs/messages/blocking-route\">\n https://nextjs.org/docs/messages/blocking-route\n </a>\n </p>\n </div>\n )\n }\n}\n\nexport function getErrorTypeLabel(\n error: Error,\n type: ReadyRuntimeError['type'],\n errorDetails: ErrorDetails\n): ErrorOverlayLayoutProps['errorType'] {\n if (errorDetails.type === 'blocking-route') {\n return `Blocking Route`\n }\n if (errorDetails.type === 'dynamic-metadata') {\n return `Ambiguous Metadata`\n }\n if (type === 'recoverable') {\n return `Recoverable ${error.name}`\n }\n if (type === 'console') {\n return `Console ${error.name}`\n }\n return `Runtime ${error.name}`\n}\n\ntype ErrorDetails =\n | NoErrorDetails\n | HydrationErrorDetails\n | BlockingRouteErrorDetails\n | DynamicMetadataErrorDetails\n\ntype NoErrorDetails = {\n type: 'empty'\n}\n\ntype HydrationErrorDetails = {\n type: 'hydration'\n warning: string | null\n notes: string | null\n reactOutputComponentDiff: string | null\n}\n\ntype BlockingRouteErrorDetails = {\n type: 'blocking-route'\n variant: 'navigation' | 'runtime'\n refinement: '' | 'generateViewport'\n}\n\ntype DynamicMetadataErrorDetails = {\n type: 'dynamic-metadata'\n variant: 'navigation' | 'runtime'\n}\n\nconst noErrorDetails: ErrorDetails = {\n type: 'empty',\n}\n\nexport function useErrorDetails(\n error: Error | undefined,\n getSquashedHydrationErrorDetails: (error: Error) => HydrationErrorState | null\n): ErrorDetails {\n return useMemo(() => {\n if (error === undefined) {\n return noErrorDetails\n }\n\n const hydrationErrorDetails = getHydrationErrorDetails(\n error,\n getSquashedHydrationErrorDetails\n )\n if (hydrationErrorDetails) {\n return hydrationErrorDetails\n }\n\n const blockingRouteErrorDetails = getBlockingRouteErrorDetails(error)\n if (blockingRouteErrorDetails) {\n return blockingRouteErrorDetails\n }\n\n return noErrorDetails\n }, [error, getSquashedHydrationErrorDetails])\n}\n\nfunction getHydrationErrorDetails(\n error: Error,\n getSquashedHydrationErrorDetails: (error: Error) => HydrationErrorState | null\n): null | HydrationErrorDetails {\n const pagesRouterErrorDetails = getSquashedHydrationErrorDetails(error)\n if (pagesRouterErrorDetails !== null) {\n return {\n type: 'hydration',\n warning: pagesRouterErrorDetails.warning ?? null,\n notes: null,\n reactOutputComponentDiff:\n pagesRouterErrorDetails.reactOutputComponentDiff ?? null,\n }\n }\n\n if (!isHydrationError(error)) {\n return null\n }\n\n const { message, notes, diff } = getHydrationErrorStackInfo(error)\n if (message === null) {\n return null\n }\n\n return {\n type: 'hydration',\n warning: message,\n notes,\n reactOutputComponentDiff: diff,\n }\n}\n\nfunction getBlockingRouteErrorDetails(error: Error): null | ErrorDetails {\n const isBlockingPageLoadError = error.message.includes('/blocking-route')\n\n if (isBlockingPageLoadError) {\n const isRuntimeData = error.message.includes('cookies()')\n\n return {\n type: 'blocking-route',\n variant: isRuntimeData ? 'runtime' : 'navigation',\n refinement: '',\n }\n }\n\n const isDynamicMetadataError = error.message.includes(\n '/next-prerender-dynamic-metadata'\n )\n if (isDynamicMetadataError) {\n const isRuntimeData = error.message.includes('cookies()')\n return {\n type: 'dynamic-metadata',\n variant: isRuntimeData ? 'runtime' : 'navigation',\n }\n }\n\n const isBlockingViewportError = error.message.includes(\n '/next-prerender-dynamic-viewport'\n )\n if (isBlockingViewportError) {\n const isRuntimeData = error.message.includes('cookies()')\n return {\n type: 'blocking-route',\n variant: isRuntimeData ? 'runtime' : 'navigation',\n refinement: 'generateViewport',\n }\n }\n\n return null\n}\n\nexport function Errors({\n getSquashedHydrationErrorDetails,\n runtimeErrors,\n debugInfo,\n onClose,\n ...props\n}: ErrorsProps) {\n const dialogResizerRef = useRef<HTMLDivElement | null>(null)\n\n const {\n isLoading,\n errorCode,\n errorType,\n activeIdx,\n errorDetails,\n activeError,\n setActiveIndex,\n } = useActiveRuntimeError({ runtimeErrors, getSquashedHydrationErrorDetails })\n\n // Get parsed frames data\n const frames = useFrames(activeError)\n\n const firstFrame = useMemo(() => {\n const firstFirstPartyFrameIndex = frames.findIndex(\n (entry) =>\n !entry.ignored &&\n Boolean(entry.originalCodeFrame) &&\n Boolean(entry.originalStackFrame)\n )\n\n return frames[firstFirstPartyFrameIndex] ?? null\n }, [frames])\n\n const generateErrorInfo = useCallback(() => {\n if (!activeError) return ''\n\n const parts: string[] = []\n\n // 1. Error Type\n if (errorType) {\n parts.push(`## Error Type\\n${errorType}`)\n }\n\n // 2. Error Message\n const error = activeError.error\n let message = error.message\n if ('environmentName' in error && error.environmentName) {\n const envPrefix = `[ ${error.environmentName} ] `\n if (message.startsWith(envPrefix)) {\n message = message.slice(envPrefix.length)\n }\n }\n if (message) {\n parts.push(`## Error Message\\n${message}`)\n }\n // Append call stack\n if (frames.length > 0) {\n const visibleFrames = frames.filter((frame) => !frame.ignored)\n if (visibleFrames.length > 0) {\n const stackLines = visibleFrames\n .map((frame) => {\n if (frame.originalStackFrame) {\n const { methodName, file, line1, column1 } =\n frame.originalStackFrame\n return ` at ${methodName} (${file}:${line1}:${column1})`\n } else if (frame.sourceStackFrame) {\n const { methodName, file, line1, column1 } =\n frame.sourceStackFrame\n return ` at ${methodName} (${file}:${line1}:${column1})`\n }\n return ''\n })\n .filter(Boolean)\n\n if (stackLines.length > 0) {\n parts.push(`\\n${stackLines.join('\\n')}`)\n }\n }\n }\n\n // 3. Code Frame (decoded)\n if (firstFrame?.originalCodeFrame) {\n const decodedCodeFrame = stripAnsi(\n formatCodeFrame(firstFrame.originalCodeFrame)\n )\n parts.push(`## Code Frame\\n${decodedCodeFrame}`)\n }\n\n // Format as markdown error info\n const errorInfo = `${parts.join('\\n\\n')}\n\nNext.js version: ${props.versionInfo.installed} (${process.env.__NEXT_BUNDLER})\\n`\n\n return errorInfo\n }, [activeError, errorType, firstFrame, frames, props.versionInfo])\n\n if (isLoading) {\n // TODO: better loading state\n return (\n <Overlay>\n <OverlayBackdrop />\n </Overlay>\n )\n }\n\n if (!activeError) {\n return null\n }\n\n const error = activeError.error\n const isServerError = ['server', 'edge-server'].includes(\n getErrorSource(error) || ''\n )\n\n let errorMessage: React.ReactNode\n let maybeNotes: React.ReactNode = null\n let maybeDiff: React.ReactNode = null\n switch (errorDetails.type) {\n case 'hydration':\n errorMessage = errorDetails.warning ? (\n <HydrationErrorDescription message={errorDetails.warning} />\n ) : (\n <GenericErrorDescription error={error} />\n )\n maybeNotes = (\n <div className=\"error-overlay-notes-container\">\n {errorDetails.notes ? (\n <>\n <p\n id=\"nextjs__container_errors__notes\"\n className=\"nextjs__container_errors__notes\"\n >\n {errorDetails.notes}\n </p>\n </>\n ) : null}\n {errorDetails.warning ? (\n <p\n id=\"nextjs__container_errors__link\"\n className=\"nextjs__container_errors__link\"\n >\n <HotlinkedText\n text={`See more info here: ${NEXTJS_HYDRATION_ERROR_LINK}`}\n />\n </p>\n ) : null}\n </div>\n )\n if (errorDetails.reactOutputComponentDiff) {\n maybeDiff = (\n <PseudoHtmlDiff\n reactOutputComponentDiff={\n errorDetails.reactOutputComponentDiff || ''\n }\n />\n )\n }\n break\n case 'blocking-route':\n errorMessage = (\n <BlockingPageLoadErrorDescription\n variant={errorDetails.variant}\n refinement={errorDetails.refinement}\n />\n )\n break\n case 'dynamic-metadata':\n errorMessage = (\n <DynamicMetadataErrorDescription variant={errorDetails.variant} />\n )\n break\n case 'empty':\n errorMessage = <GenericErrorDescription error={error} />\n break\n default:\n errorDetails satisfies never\n }\n\n return (\n <ErrorOverlayLayout\n errorCode={errorCode}\n errorType={errorType}\n errorMessage={errorMessage}\n onClose={isServerError ? undefined : onClose}\n debugInfo={debugInfo}\n error={error}\n runtimeErrors={runtimeErrors}\n activeIdx={activeIdx}\n setActiveIndex={setActiveIndex}\n dialogResizerRef={dialogResizerRef}\n generateErrorInfo={generateErrorInfo}\n {...props}\n >\n {maybeNotes}\n {maybeDiff}\n <Suspense fallback={<div data-nextjs-error-suspended />}>\n <RuntimeError\n key={activeError.id.toString()}\n error={activeError}\n dialogResizerRef={dialogResizerRef}\n />\n </Suspense>\n </ErrorOverlayLayout>\n )\n}\n\nexport const styles = `\n .nextjs-error-with-static {\n bottom: calc(16px * 4.5);\n }\n p.nextjs__container_errors__link {\n font-size: var(--size-14);\n }\n p.nextjs__container_errors__notes {\n color: var(--color-stack-notes);\n font-size: var(--size-14);\n line-height: 1.5;\n }\n .nextjs-container-errors-body > h2:not(:first-child) {\n margin-top: calc(16px + 8px);\n }\n .nextjs-container-errors-body > h2 {\n color: var(--color-title-color);\n margin-bottom: 8px;\n font-size: var(--size-20);\n }\n .nextjs-toast-errors-parent {\n cursor: pointer;\n transition: transform 0.2s ease;\n }\n .nextjs-toast-errors-parent:hover {\n transform: scale(1.1);\n }\n .nextjs-toast-errors {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n }\n .nextjs-toast-errors > svg {\n margin-right: 8px;\n }\n .nextjs-toast-hide-button {\n margin-left: 24px;\n border: none;\n background: none;\n color: var(--color-ansi-bright-white);\n padding: 0;\n transition: opacity 0.25s ease;\n opacity: 0.7;\n }\n .nextjs-toast-hide-button:hover {\n opacity: 1;\n }\n .nextjs__container_errors__error_title {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-bottom: 14px;\n }\n .error-overlay-notes-container {\n margin: 8px 2px;\n }\n .error-overlay-notes-container p {\n white-space: pre-wrap;\n }\n .nextjs__blocking_page_load_error_description {\n color: var(--color-stack-notes);\n }\n .nextjs__blocking_page_load_error_description_title {\n color: var(--color-title-color);\n }\n .nextjs__blocking_page_load_error_fix_option {\n background-color: var(--color-background-200);\n padding: 14px;\n border-radius: var(--rounded-md-2);\n border: 1px solid var(--color-gray-alpha-400);\n }\n .external-link, .external-link:hover {\n color:inherit;\n }\n`\n","import type { ReadyRuntimeError } from '../utils/get-error-by-type'\nimport type { HydrationErrorState } from '../../shared/hydration-error'\n\nimport { useMemo, useState } from 'react'\nimport { getErrorTypeLabel, useErrorDetails } from '../container/errors'\nimport { extractNextErrorCode } from '../../../lib/error-telemetry-utils'\n\nexport function useActiveRuntimeError({\n runtimeErrors,\n getSquashedHydrationErrorDetails,\n}: {\n runtimeErrors: ReadyRuntimeError[]\n getSquashedHydrationErrorDetails: (error: Error) => HydrationErrorState | null\n}) {\n const [activeIdx, setActiveIndex] = useState<number>(0)\n\n const isLoading = useMemo<boolean>(() => {\n return runtimeErrors.length === 0\n }, [runtimeErrors.length])\n\n const activeError = useMemo<ReadyRuntimeError | null>(\n () => runtimeErrors[activeIdx] ?? null,\n [activeIdx, runtimeErrors]\n )\n\n const errorDetails = useErrorDetails(\n activeError?.error,\n getSquashedHydrationErrorDetails\n )\n\n if (isLoading || !activeError) {\n return {\n isLoading,\n activeIdx,\n setActiveIndex,\n activeError: null,\n errorDetails: null,\n errorCode: null,\n errorType: null,\n }\n }\n\n const error = activeError.error\n const errorCode = extractNextErrorCode(error)\n const errorType = getErrorTypeLabel(error, activeError.type, errorDetails)\n\n return {\n isLoading,\n activeIdx,\n setActiveIndex,\n activeError,\n errorDetails,\n errorCode,\n errorType,\n }\n}\n","const ERROR_CODE_DELIMITER = '@'\n\n/**\n * Augments the digest field of errors thrown in React Server Components (RSC) with an error code.\n * Since RSC errors can only be serialized through the digest field, this provides a way to include\n * an additional error code that can be extracted client-side via `extractNextErrorCode`.\n *\n * The error code is appended to the digest string with a semicolon separator, allowing it to be\n * parsed out later while preserving the original digest value.\n */\nexport const createDigestWithErrorCode = (\n thrownValue: unknown,\n originalDigest: string\n): string => {\n if (\n typeof thrownValue === 'object' &&\n thrownValue !== null &&\n '__NEXT_ERROR_CODE' in thrownValue\n ) {\n return `${originalDigest}${ERROR_CODE_DELIMITER}${thrownValue.__NEXT_ERROR_CODE}`\n }\n return originalDigest\n}\n\nexport const extractNextErrorCode = (error: unknown): string | undefined => {\n if (\n typeof error === 'object' &&\n error !== null &&\n '__NEXT_ERROR_CODE' in error &&\n typeof error.__NEXT_ERROR_CODE === 'string'\n ) {\n return error.__NEXT_ERROR_CODE\n }\n\n if (\n typeof error === 'object' &&\n error !== null &&\n 'digest' in error &&\n typeof error.digest === 'string'\n ) {\n const segments = error.digest.split(ERROR_CODE_DELIMITER)\n const errorCode = segments.find((segment) => segment.startsWith('E'))\n return errorCode\n }\n\n return undefined\n}\n","export default function EyeIcon() {\n return (\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\">\n <path\n fill=\"currentColor\"\n fillRule=\"evenodd\"\n d=\"m.191 2.063.56.498 13.5 12 .561.498.997-1.121-.56-.498-1.81-1.608 2.88-3.342v-.98l-3.204-3.72C10.645.923 6.365.686 3.594 3.08L1.748 1.44 1.188.94.19 2.063ZM14.761 8l-2.442 2.836-1.65-1.466a3.001 3.001 0 0 0-4.342-3.86l-1.6-1.422a5.253 5.253 0 0 1 7.251.682L14.76 8ZM7.526 6.576l1.942 1.727a1.499 1.499 0 0 0-1.942-1.727Zm-7.845.935 1.722-2 1.137.979L1.24 8l2.782 3.23A5.25 5.25 0 0 0 9.9 12.703l.54 1.4a6.751 6.751 0 0 1-7.555-1.892L-.318 8.49v-.98Z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n}\n","export default function LightIcon() {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"20\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n >\n <g clipPath=\"url(#light_icon_clip_path)\">\n <path\n fill=\"currentColor\"\n fillRule=\"evenodd\"\n d=\"M8.75.75V0h-1.5v2h1.5V.75ZM3.26 4.32l-.53-.53-.354-.353-.53-.53 1.06-1.061.53.53.354.354.53.53-1.06 1.06Zm8.42-1.06.53-.53.353-.354.53-.53 1.061 1.06-.53.53-.354.354-.53.53-1.06-1.06ZM8 11.25a3.25 3.25 0 1 0 0-6.5 3.25 3.25 0 0 0 0 6.5Zm0 1.5a4.75 4.75 0 1 0 0-9.5 4.75 4.75 0 0 0 0 9.5Zm6-5.5h2v1.5h-2v-1.5Zm-13.25 0H0v1.5h2v-1.5H.75Zm1.62 5.32-.53.53 1.06 1.06.53-.53.354-.353.53-.53-1.06-1.061-.53.53-.354.354Zm10.2 1.06.53.53 1.06-1.06-.53-.53-.354-.354-.53-.53-1.06 1.06.53.53.353.354ZM8.75 14v2h-1.5v-2h1.5Z\"\n clipRule=\"evenodd\"\n />\n </g>\n <defs>\n <clipPath id=\"light_icon_clip_path\">\n <path fill=\"currentColor\" d=\"M0 0h16v16H0z\" />\n </clipPath>\n </defs>\n </svg>\n )\n}\n","export default function DarkIcon() {\n return (\n <svg\n data-testid=\"geist-icon\"\n height=\"16\"\n strokeLinejoin=\"round\"\n viewBox=\"0 0 16 16\"\n width=\"16\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M1.5 8.00005C1.5 5.53089 2.99198 3.40932 5.12349 2.48889C4.88136 3.19858 4.75 3.95936 4.75 4.7501C4.75 8.61609 7.88401 11.7501 11.75 11.7501C11.8995 11.7501 12.048 11.7454 12.1953 11.7361C11.0955 13.1164 9.40047 14.0001 7.5 14.0001C4.18629 14.0001 1.5 11.3138 1.5 8.00005ZM6.41706 0.577759C2.78784 1.1031 0 4.22536 0 8.00005C0 12.1422 3.35786 15.5001 7.5 15.5001C10.5798 15.5001 13.2244 13.6438 14.3792 10.9921L13.4588 9.9797C12.9218 10.155 12.3478 10.2501 11.75 10.2501C8.71243 10.2501 6.25 7.78767 6.25 4.7501C6.25 3.63431 6.58146 2.59823 7.15111 1.73217L6.41706 0.577759ZM13.25 1V1.75V2.75L14.25 2.75H15V4.25H14.25H13.25V5.25V6H11.75V5.25V4.25H10.75L10 4.25V2.75H10.75L11.75 2.75V1.75V1H13.25Z\"\n fill=\"currentColor\"\n ></path>\n </svg>\n )\n}\n","export default function SystemIcon() {\n return (\n <svg width=\"16\" height=\"16\" strokeLinejoin=\"round\">\n <path\n fill=\"currentColor\"\n fillRule=\"evenodd\"\n d=\"M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v8.5a1 1 0 0 1-1 1H8.75v3h1.75V16h-5v-1.5h1.75v-3H1a1 1 0 0 1-1-1V2Zm1.5.5V10h13V2.5h-13Z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n}\n","import type { JSX } from 'react'\nimport { useState, useRef } from 'react'\nimport { css } from '../../../../utils/css'\n\nconst SUCCESS_SHOW_DELAY_MS = 180\nconst SUCCESS_FADE_DELAY_MS = 1000\n\nconst modifierKeys = ['Meta', 'Control', 'Ctrl', 'Alt', 'Option', 'Shift']\n\nexport function ShortcutRecorder({\n value,\n onChange,\n}: {\n value: string[] | null\n onChange: (value: string | null) => void\n}) {\n const [pristine, setPristine] = useState(true)\n const [show, setShow] = useState(false)\n const [keys, setKeys] = useState<string[]>(value ?? [])\n const [success, setSuccess] = useState<boolean>(false)\n const timeoutRef = useRef<number | null>(null)\n const buttonRef = useRef<HTMLButtonElement>(null)\n const hasShortcut = Boolean(value) || keys.length > 0\n\n function handleKeyDown(e: React.KeyboardEvent<HTMLButtonElement>) {\n // Don't handle events from the Clear button\n if (e.target !== buttonRef.current) return\n if (e.key === 'Tab') return\n if (timeoutRef.current) clearTimeout(timeoutRef.current)\n\n if (!show) {\n setShow(true)\n }\n\n // Reset current shortcut on first key press\n // if this is a fresh recording session\n if (pristine) {\n setKeys([])\n setPristine(false)\n }\n\n function handleValidation(next: string[]) {\n timeoutRef.current = window.setTimeout(() => {\n setSuccess(true)\n onChange(next.join('+'))\n timeoutRef.current = window.setTimeout(() => {\n setShow(false)\n }, SUCCESS_FADE_DELAY_MS)\n }, SUCCESS_SHOW_DELAY_MS)\n }\n\n e.preventDefault()\n e.stopPropagation()\n\n setKeys((prev) => {\n // Don't add duplicate keys\n if (prev.includes(e.code) || prev.includes(e.key)) return prev\n\n /**\n * Why are we using `e.code` for non-modifier keys?\n *\n * Consider this keybind: Alt + L\n *\n * If we capture `e.key` here then it will correspond to an awkward symbol (¬)\n * because pressing Alt + L creates this symbol.\n *\n * While `e.code` will give us `KeyL` as the value which we also later use in\n * `useShortcuts()` to match the keybind correctly without relying on modifier symbols.\n */\n // Handle non-modifier keys (action keys)\n if (!modifierKeys.includes(e.key)) {\n // Replace existing non-modifier key if present\n const existingNonModifierIndex = prev.findIndex(\n (key) => !modifierKeys.includes(key)\n )\n if (existingNonModifierIndex !== -1) {\n const next = [...prev]\n next[existingNonModifierIndex] = e.code\n handleValidation(next)\n return next\n }\n // Add new non-modifier key at the end\n const next = [...prev, e.code]\n handleValidation(next)\n return next\n }\n\n // Handle modifier keys\n const next = [...prev]\n\n // Find the correct position for the modifier key based on predefined order\n const keyOrderIndex = modifierKeys.indexOf(e.key)\n let insertIndex = 0\n\n // Find where to insert by checking existing modifier keys\n for (let i = 0; i < next.length; i++) {\n if (modifierKeys.includes(next[i])) {\n const existingOrderIndex = modifierKeys.indexOf(next[i])\n if (keyOrderIndex < existingOrderIndex) {\n insertIndex = i\n break\n }\n insertIndex = i + 1\n } else {\n // Stop at first non-modifier key\n break\n }\n }\n\n next.splice(insertIndex, 0, e.key)\n handleValidation(next)\n return next\n })\n }\n\n function clear() {\n buttonRef.current?.focus()\n setKeys([])\n setSuccess(false)\n setTimeout(() => {\n setShow(true)\n })\n onChange(null)\n }\n\n function onBlur() {\n setSuccess(false)\n setShow(false)\n setPristine(true)\n }\n\n function onStart() {\n // Clear out timeouts for hiding the tooltip after success\n if (timeoutRef.current) clearTimeout(timeoutRef.current)\n setShow(true)\n buttonRef.current?.focus()\n }\n\n return (\n <div className=\"shortcut-recorder\">\n <button\n className=\"shortcut-recorder-button\"\n ref={buttonRef}\n onClick={onStart}\n onFocus={onStart}\n onBlur={onBlur}\n onKeyDown={handleKeyDown}\n data-has-shortcut={hasShortcut}\n data-shortcut-recorder=\"true\"\n >\n {!hasShortcut ? (\n 'Record Shortcut'\n ) : (\n <div className=\"shortcut-recorder-keys\">\n {keys.map((key) => (\n <Kbd key={key}>{key}</Kbd>\n ))}\n </div>\n )}\n {hasShortcut && (\n <div\n className=\"shortcut-recorder-clear-button\"\n role=\"button\"\n onClick={clear}\n onFocus={(e) => e.stopPropagation()}\n onKeyDown={(e) => {\n if (e.key === 'Enter' || e.key === ' ') {\n clear()\n e.stopPropagation()\n }\n }}\n aria-label=\"Clear shortcut\"\n tabIndex={0}\n >\n <IconCross />\n </div>\n )}\n </button>\n <div className=\"shortcut-recorder-tooltip\" data-show={show}>\n <div className=\"shortcut-recorder-status\">\n <div\n className=\"shortcut-recorder-status-icon\"\n data-success={success}\n />\n {success ? 'Shortcut set' : 'Recording'}\n </div>\n <BottomArrow />\n </div>\n </div>\n )\n}\n\nfunction BottomArrow() {\n return (\n <svg\n fill=\"none\"\n height=\"6\"\n viewBox=\"0 0 14 6\"\n width=\"14\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M13.8284 0H0.17157C0.702003 0 1.21071 0.210714 1.58578 0.585787L5.58578 4.58579C6.36683 5.36684 7.63316 5.36683 8.41421 4.58579L12.4142 0.585786C12.7893 0.210714 13.298 0 13.8284 0Z\"\n fill=\"var(--background)\"\n />\n </svg>\n )\n}\n\nfunction Kbd({ children }: { children: string }) {\n function renderKey(key: string) {\n switch (key) {\n case 'Meta':\n // Command symbol (⌘) on macOS\n // On non-macOS, shows \"Ctrl\"\n return <MetaKey />\n case 'Alt':\n case 'Option':\n // Option symbol (⌥)\n return '⌥'\n case 'Control':\n case 'Ctrl':\n // Control abbreviation\n return 'Ctrl'\n case 'Shift':\n // Shift symbol (⇧)\n return '⇧'\n case 'Enter':\n // Enter symbol (⏎)\n return '⏎'\n case 'Escape':\n case 'Esc':\n return 'Esc'\n case ' ':\n case 'Space':\n case 'Spacebar':\n return 'Space'\n case 'ArrowUp':\n return '↑'\n case 'ArrowDown':\n return '↓'\n case 'ArrowLeft':\n return '←'\n case 'ArrowRight':\n return '→'\n case 'Tab':\n return 'Tab'\n case 'Backspace':\n return '⌫'\n case 'Delete':\n return '⌦'\n default:\n // Capitalize single letters, otherwise show as-is\n if (children.length === 1) {\n return children.toUpperCase()\n }\n return children\n }\n }\n const key = renderKey(children)\n const isSymbol = typeof key === 'string' ? key.length === 1 : false\n return <kbd data-symbol={isSymbol}>{parseKeyCode(key)}</kbd>\n}\n\nfunction parseKeyCode(code: string | JSX.Element) {\n if (typeof code !== 'string') return code\n\n // Map common KeyboardEvent.code values to their corresponding key values\n const codeToKeyMap: Record<string, string> = {\n Minus: '-',\n Equal: '=',\n BracketLeft: '[',\n BracketRight: ']',\n Backslash: '\\\\',\n Semicolon: ';',\n Quote: \"'\",\n Comma: ',',\n Period: '.',\n Backquote: '`',\n Space: ' ',\n Slash: '/',\n IntlBackslash: '\\\\',\n // Add more as needed\n }\n\n if (codeToKeyMap[code]) {\n return codeToKeyMap[code]\n }\n\n // Handle KeyA-Z, Digit0-9, Numpad0-9, NumpadAdd, etc.\n if (/^Key([A-Z])$/.test(code)) {\n return code.replace(/^Key/, '')\n }\n if (/^Digit([0-9])$/.test(code)) {\n return code.replace(/^Digit/, '')\n }\n if (/^Numpad([0-9])$/.test(code)) {\n return code.replace(/^Numpad/, '')\n }\n if (code === 'NumpadAdd') return '+'\n if (code === 'NumpadSubtract') return '-'\n if (code === 'NumpadMultiply') return '*'\n if (code === 'NumpadDivide') return '/'\n if (code === 'NumpadDecimal') return '.'\n if (code === 'NumpadEnter') return 'Enter'\n\n return code\n}\n\nfunction MetaKey() {\n const label = isApple()\n ? // Meta is Command on Apple devices, otherwise Control\n '⌘'\n : // Explicitly say \"Ctrl\" instead of the symbol \"⌃\"\n // because most Windows/Linux laptops do not print the symbol\n // Other keyboard-intensive apps like Linear do this\n 'Ctrl'\n\n return (\n <span style={{ minWidth: '1em', display: 'inline-block' }}>{label}</span>\n )\n}\n\nfunction IconCross() {\n return (\n <svg height=\"16\" strokeLinejoin=\"round\" viewBox=\"0 0 16 16\" width=\"16\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.4697 13.5303L13 14.0607L14.0607 13L13.5303 12.4697L9.06065 7.99999L13.5303 3.53032L14.0607 2.99999L13 1.93933L12.4697 2.46966L7.99999 6.93933L3.53032 2.46966L2.99999 1.93933L1.93933 2.99999L2.46966 3.53032L6.93933 7.99999L2.46966 12.4697L1.93933 13L2.99999 14.0607L3.53032 13.5303L7.99999 9.06065L12.4697 13.5303Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n\nexport const SHORTCUT_RECORDER_STYLES = css`\n .shortcut-recorder {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 8px;\n position: relative;\n font-family: var(--font-stack-sans);\n\n .shortcut-recorder-button {\n display: flex;\n align-items: center;\n gap: 4px;\n background: transparent;\n border: 1px dashed var(--color-gray-500);\n border-radius: var(--rounded-lg);\n padding: 6px 8px;\n font-weight: 400;\n font-size: var(--size-14);\n color: var(--color-gray-1000);\n transition: border-color 150ms var(--timing-swift);\n\n &[data-has-shortcut='true'] {\n border: 1px solid var(--color-gray-alpha-400);\n\n &:hover {\n border-color: var(--color-gray-500);\n }\n }\n\n &:hover {\n border-color: var(--color-gray-600);\n }\n\n &::placeholder {\n color: var(--color-gray-900);\n }\n\n &[data-pristine='false']::placeholder {\n color: transparent;\n }\n\n &:focus-visible {\n outline: var(--focus-ring);\n outline-offset: -1px;\n }\n }\n\n kbd {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n font-family: var(--font-stack-sans);\n background: var(--color-gray-200);\n min-width: 20px;\n height: 20px;\n font-size: 14px;\n border-radius: 4px;\n color: var(--color-gray-1000);\n\n &[data-symbol='false'] {\n padding: 0 4px;\n }\n }\n\n .shortcut-recorder-clear-button {\n cursor: pointer;\n color: var(--color-gray-1000);\n width: 20px;\n height: 20px;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 4px;\n transition: background 150ms var(--timing-swift);\n\n &:hover {\n background: var(--color-gray-300);\n }\n\n &:focus-visible {\n outline: var(--focus-ring);\n }\n\n svg {\n width: 14px;\n height: 14px;\n }\n }\n }\n\n .shortcut-recorder-keys {\n pointer-events: none;\n user-select: none;\n display: flex;\n align-items: center;\n gap: 2px;\n }\n\n .shortcut-recorder-tooltip {\n --gap: 8px;\n --background: var(--color-gray-1000);\n background: var(--background);\n color: var(--color-background-100);\n font-size: var(--size-14);\n padding: 4px 8px;\n border-radius: 8px;\n position: absolute;\n bottom: calc(100% + var(--gap));\n text-align: center;\n opacity: 0;\n scale: 0.96;\n white-space: nowrap;\n user-select: none;\n transition:\n opacity 150ms var(--timing-swift),\n scale 150ms var(--timing-swift);\n\n &[data-show='true'] {\n opacity: 1;\n scale: 1;\n }\n\n svg {\n position: absolute;\n transform: translateX(-50%);\n bottom: -6px;\n left: 50%;\n }\n\n .shortcut-recorder-status {\n display: flex;\n align-items: center;\n gap: 6px;\n }\n\n .shortcut-recorder-status-icon {\n width: 7px;\n height: 7px;\n border-radius: 50%;\n flex-shrink: 0;\n background: var(--color-red-700);\n\n &[data-success='true'] {\n background: var(--color-green-700);\n }\n }\n }\n`\n\n///////////////////////////////////////////////////////////////////////////////////////////////////\n\nfunction testPlatform(re: RegExp): boolean | undefined {\n return window.navigator != null\n ? re.test(window.navigator.platform)\n : undefined\n}\n\nfunction isMac(): boolean | undefined {\n return testPlatform(/^Mac/)\n}\n\nfunction isIPhone(): boolean | undefined {\n return testPlatform(/^iPhone/)\n}\n\nfunction isIPad(): boolean | undefined {\n return (\n testPlatform(/^iPad/) ||\n // iPadOS 13 lies and says it's a Mac, but we can distinguish by detecting touch support.\n (isMac() && navigator.maxTouchPoints > 1)\n )\n}\n\nfunction isApple(): boolean | undefined {\n return isMac() || isIPhone() || isIPad()\n}\n","import type { DevToolsConfig } from '../dev-overlay/shared'\nimport { z } from 'next/dist/compiled/zod'\n\nexport const devToolsConfigSchema: z.ZodType<DevToolsConfig> = z.object({\n theme: z.enum(['light', 'dark', 'system']).optional(),\n disableDevIndicator: z.boolean().optional(),\n devToolsPosition: z\n .enum(['top-left', 'top-right', 'bottom-left', 'bottom-right'])\n .optional(),\n devToolsPanelPosition: z\n .record(\n z.string(),\n z.enum(['top-left', 'top-right', 'bottom-left', 'bottom-right'])\n )\n .optional(),\n devToolsPanelSize: z\n .record(z.string(), z.object({ width: z.number(), height: z.number() }))\n .optional(),\n scale: z.number().optional(),\n hideShortcut: z.string().nullable().optional(),\n})\n","import type { DevToolsConfig } from '../shared'\nimport { devToolsConfigSchema } from '../../shared/devtools-config-schema'\nimport { deepMerge } from '../../shared/deepmerge'\n\nlet queuedConfigPatch: DevToolsConfig = {}\nlet timer: ReturnType<typeof setTimeout> | null = null\n\nfunction flushPatch() {\n if (Object.keys(queuedConfigPatch).length === 0) {\n return\n }\n\n const body = JSON.stringify(queuedConfigPatch)\n queuedConfigPatch = {}\n\n fetch('/__nextjs_devtools_config', {\n method: 'POST',\n headers: { 'Content-Type': 'application/json' },\n body,\n // keepalive in case of fetch interrupted, e.g. navigation or reload\n keepalive: true,\n }).catch((error) => {\n console.warn('[Next.js DevTools] Failed to save config:', {\n data: body,\n error,\n })\n })\n}\n\nexport function saveDevToolsConfig(patch: DevToolsConfig) {\n const validation = devToolsConfigSchema.safeParse(patch)\n if (!validation.success) {\n console.warn(\n '[Next.js DevTools] Invalid config patch:',\n validation.error.message\n )\n return\n }\n\n queuedConfigPatch = deepMerge(queuedConfigPatch, patch)\n\n if (timer) {\n clearTimeout(timer)\n }\n\n timer = setTimeout(flushPatch, 120)\n}\n","export function deepMerge(target: any, source: any): any {\n if (!source || typeof source !== 'object' || Array.isArray(source)) {\n return source\n }\n\n if (!target || typeof target !== 'object' || Array.isArray(target)) {\n return source\n }\n\n const result = { ...target }\n\n for (const key in source) {\n const sourceValue = source[key]\n const targetValue = target[key]\n\n if (sourceValue !== undefined) {\n if (\n sourceValue &&\n typeof sourceValue === 'object' &&\n !Array.isArray(sourceValue) &&\n targetValue &&\n typeof targetValue === 'object' &&\n !Array.isArray(targetValue)\n ) {\n result[key] = deepMerge(targetValue, sourceValue)\n } else {\n result[key] = sourceValue\n }\n }\n }\n\n return result\n}\n","import type {\n DevToolsIndicatorPosition,\n DevToolsScale,\n} from '../../../../shared'\n\nimport { useDevOverlayContext } from '../../../../../dev-overlay.browser'\nimport { css } from '../../../../utils/css'\nimport EyeIcon from '../../../../icons/eye-icon'\nimport { NEXT_DEV_TOOLS_SCALE } from '../../../../shared'\nimport LightIcon from '../../../../icons/light-icon'\nimport DarkIcon from '../../../../icons/dark-icon'\nimport SystemIcon from '../../../../icons/system-icon'\nimport { ShortcutRecorder } from './shortcut-recorder'\nimport { useRestartServer } from '../../error-overlay-toolbar/use-restart-server'\nimport { saveDevToolsConfig } from '../../../../utils/save-devtools-config'\n\nexport function UserPreferencesBody({\n theme,\n hide,\n hideShortcut,\n setHideShortcut,\n scale,\n setPosition,\n setScale,\n position,\n}: {\n theme: 'dark' | 'light' | 'system'\n hide: () => void\n hideShortcut: string | null\n setHideShortcut: (value: string | null) => void\n setPosition: (position: DevToolsIndicatorPosition) => void\n position: DevToolsIndicatorPosition\n scale: DevToolsScale\n setScale: (value: DevToolsScale) => void\n}) {\n const { restartServer, isPending } = useRestartServer()\n const { shadowRoot } = useDevOverlayContext()\n\n const handleThemeChange = (e: React.ChangeEvent<HTMLSelectElement>) => {\n const portal = shadowRoot.host\n if (e.target.value === 'system') {\n portal.classList.remove('dark')\n portal.classList.remove('light')\n saveDevToolsConfig({ theme: 'system' })\n return\n }\n\n if (e.target.value === 'dark') {\n portal.classList.add('dark')\n portal.classList.remove('light')\n saveDevToolsConfig({ theme: 'dark' })\n } else {\n portal.classList.remove('dark')\n portal.classList.add('light')\n saveDevToolsConfig({ theme: 'light' })\n }\n }\n\n function handlePositionChange(e: React.ChangeEvent<HTMLSelectElement>) {\n setPosition(e.target.value as DevToolsIndicatorPosition)\n saveDevToolsConfig({\n devToolsPosition: e.target.value as DevToolsIndicatorPosition,\n })\n }\n\n function handleSizeChange({ target }: React.ChangeEvent<HTMLSelectElement>) {\n const value = Number(target.value) as DevToolsScale\n setScale(value)\n saveDevToolsConfig({ scale: value })\n }\n\n return (\n <div className=\"preferences-container\">\n <div className=\"preference-section\">\n <div className=\"preference-header\">\n <label htmlFor=\"theme\">Theme</label>\n <p className=\"preference-description\">\n Select your theme preference.\n </p>\n </div>\n <Select\n id=\"theme\"\n name=\"theme\"\n prefix={<ThemeIcon theme={theme as 'dark' | 'light' | 'system'} />}\n value={theme}\n onChange={handleThemeChange}\n >\n <option value=\"system\">System</option>\n <option value=\"light\">Light</option>\n <option value=\"dark\">Dark</option>\n </Select>\n </div>\n\n <div className=\"preference-section\">\n <div className=\"preference-header\">\n <label htmlFor=\"position\">Position</label>\n <p className=\"preference-description\">\n Adjust the placement of your dev tools.\n </p>\n </div>\n <Select\n id=\"position\"\n name=\"position\"\n value={position}\n onChange={handlePositionChange}\n >\n <option value=\"bottom-left\">Bottom Left</option>\n <option value=\"bottom-right\">Bottom Right</option>\n <option value=\"top-left\">Top Left</option>\n <option value=\"top-right\">Top Right</option>\n </Select>\n </div>\n\n <div className=\"preference-section\">\n <div className=\"preference-header\">\n <label htmlFor=\"size\">Size</label>\n <p className=\"preference-description\">\n Adjust the size of your dev tools.\n </p>\n </div>\n <Select id=\"size\" name=\"size\" value={scale} onChange={handleSizeChange}>\n {Object.entries(NEXT_DEV_TOOLS_SCALE).map(([key, value]) => {\n return (\n <option value={value} key={key}>\n {key}\n </option>\n )\n })}\n </Select>\n </div>\n\n <div className=\"preference-section\">\n <div className=\"preference-header\">\n <label id=\"hide-dev-tools\">Hide Dev Tools for this session</label>\n <p className=\"preference-description\">\n Hide Dev Tools until you restart your dev server, or 1 day.\n </p>\n </div>\n <div className=\"preference-control\">\n <button\n aria-describedby=\"hide-dev-tools\"\n name=\"hide-dev-tools\"\n data-hide-dev-tools\n className=\"action-button\"\n onClick={hide}\n >\n <EyeIcon />\n <span>Hide</span>\n </button>\n </div>\n </div>\n\n <div className=\"preference-section\">\n <div className=\"preference-header\">\n <label id=\"hide-dev-tools\">Hide Dev Tools shortcut</label>\n <p className=\"preference-description\">\n Set a custom keyboard shortcut to toggle visibility.\n </p>\n </div>\n <div className=\"preference-control\">\n <ShortcutRecorder\n value={hideShortcut?.split('+') ?? null}\n onChange={setHideShortcut}\n />\n </div>\n </div>\n\n <div className=\"preference-section\">\n <div className=\"preference-header\">\n <label>Disable Dev Tools for this project</label>\n <p className=\"preference-description\">\n To disable this UI completely, set{' '}\n <code className=\"dev-tools-info-code\">devIndicators: false</code> in\n your <code className=\"dev-tools-info-code\">next.config</code> file.\n </p>\n </div>\n </div>\n\n <div className=\"preference-section\">\n <div className=\"preference-header\">\n <label id=\"restart-dev-server\">Restart Dev Server</label>\n <p className=\"preference-description\">\n Restarts the development server without needing to leave the\n browser.\n </p>\n </div>\n <div className=\"preference-control\">\n <button\n aria-describedby=\"restart-dev-server\"\n title=\"Restarts the development server without needing to leave the browser.\"\n name=\"restart-dev-server\"\n data-restart-dev-server\n className=\"action-button\"\n onClick={() => restartServer({ invalidateFileSystemCache: false })}\n disabled={isPending}\n >\n <span>Restart</span>\n </button>\n </div>\n </div>\n\n {process.env.__NEXT_BUNDLER_HAS_PERSISTENT_CACHE ? (\n <div className=\"preference-section\">\n <div className=\"preference-header\">\n <label id=\"reset-bundler-cache\">Reset Bundler Cache</label>\n <p className=\"preference-description\">\n Clears the bundler cache and restarts the dev server. Helpful if\n you are seeing stale errors or changes are not appearing.\n </p>\n </div>\n <div className=\"preference-control\">\n <button\n aria-describedby=\"reset-bundler-cache\"\n title=\"Clears the bundler cache and restarts the dev server. Helpful if you are seeing stale errors or changes are not appearing.\"\n name=\"reset-bundler-cache\"\n data-reset-bundler-cache\n className=\"action-button\"\n onClick={() => restartServer({ invalidateFileSystemCache: true })}\n disabled={isPending}\n >\n <span>Reset Cache</span>\n </button>\n </div>\n </div>\n ) : null}\n </div>\n )\n}\n\nfunction Select({\n children,\n prefix,\n ...props\n}: {\n prefix?: React.ReactNode\n} & Omit<React.HTMLProps<HTMLSelectElement>, 'prefix'>) {\n return (\n <div className=\"select-button\">\n {prefix}\n <select {...props}>{children}</select>\n <ChevronDownIcon />\n </div>\n )\n}\n\nfunction ThemeIcon({ theme }: { theme: 'dark' | 'light' | 'system' }) {\n switch (theme) {\n case 'system':\n return <SystemIcon />\n case 'dark':\n return <DarkIcon />\n case 'light':\n return <LightIcon />\n default:\n return null\n }\n}\n\nexport const DEV_TOOLS_INFO_USER_PREFERENCES_STYLES = css`\n .preferences-container {\n width: 100%;\n }\n\n @media (min-width: 576px) {\n .preferences-container {\n width: 480px;\n }\n }\n\n .preference-section:first-child {\n padding-top: 0;\n }\n\n .preference-section {\n padding: 12px 0;\n border-bottom: 1px solid var(--color-gray-400);\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: 24px;\n }\n\n .preference-section:last-child {\n border-bottom: none;\n }\n\n .preference-header {\n margin-bottom: 0;\n flex: 1;\n }\n\n .preference-header label {\n font-size: var(--size-14);\n font-weight: 500;\n color: var(--color-gray-1000);\n margin: 0;\n }\n\n .preference-description {\n color: var(--color-gray-900);\n font-size: var(--size-14);\n margin: 0;\n }\n\n .select-button,\n .action-button {\n display: flex;\n align-items: center;\n gap: 8px;\n background: var(--color-background-100);\n border: 1px solid var(--color-gray-400);\n border-radius: var(--rounded-lg);\n font-weight: 400;\n font-size: var(--size-14);\n color: var(--color-gray-1000);\n padding: 6px 8px;\n transition: border-color 150ms var(--timing-swift);\n\n &:hover {\n border-color: var(--color-gray-500);\n }\n\n svg {\n width: 14px;\n height: 14px;\n overflow: visible;\n }\n }\n\n .select-button {\n &:focus-within {\n outline: var(--focus-ring);\n outline-offset: -1px;\n }\n\n select {\n all: unset;\n }\n\n option {\n color: var(--color-gray-1000);\n background: var(--color-background-100);\n }\n }\n\n .preference-section button:disabled {\n opacity: 0.6;\n cursor: not-allowed;\n }\n\n :global(.icon) {\n width: 18px;\n height: 18px;\n color: #666;\n }\n`\n\nfunction ChevronDownIcon() {\n return (\n <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" aria-hidden>\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.0607 5.49999L13.5303 6.03032L8.7071 10.8535C8.31658 11.2441 7.68341 11.2441 7.29289 10.8535L2.46966 6.03032L1.93933 5.49999L2.99999 4.43933L3.53032 4.96966L7.99999 9.43933L12.4697 4.96966L13 4.43933L14.0607 5.49999Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","import { useState } from 'react'\n\nexport function useRestartServer() {\n const [isPending, setIsPending] = useState(false)\n\n const restartServer = async ({\n invalidateFileSystemCache,\n }: {\n invalidateFileSystemCache: boolean\n }): Promise<void> => {\n setIsPending(true)\n\n const url = invalidateFileSystemCache\n ? '/__nextjs_restart_dev?invalidateFileSystemCache=1'\n : '/__nextjs_restart_dev'\n\n let serverRestarted = false\n\n try {\n const curId = await fetch('/__nextjs_server_status')\n .then((res) => res.json())\n .then((data) => data.executionId as number)\n .catch((error) => {\n console.log(\n '[Next.js DevTools] Failed to fetch server status while restarting dev server.',\n error\n )\n return null\n })\n\n if (!curId) {\n console.log(\n '[Next.js DevTools] Failed to get the current server execution ID while restarting dev server.'\n )\n return\n }\n\n const restartRes = await fetch(url, {\n method: 'POST',\n })\n\n if (!restartRes.ok) {\n // Use console log to avoid spamming the error overlay which users can't control.\n console.log(\n '[Next.js DevTools] Failed to fetch restart server endpoint. Status:',\n restartRes.status\n )\n return\n }\n\n // Poll for server restart confirmation.\n for (let i = 0; i < 10; i++) {\n // generous 1 second delay for large apps.\n await new Promise((resolveTimeout) => setTimeout(resolveTimeout, 1_000))\n\n try {\n const nextId = await fetch('/__nextjs_server_status')\n .then((res) => res.json())\n .then((data) => data.executionId as number)\n\n // If the execution ID has changed, the server has restarted successfully.\n if (curId !== nextId) {\n serverRestarted = true\n // Reload the page to ensure the connection to the new server.\n window.location.reload()\n return\n }\n } catch (e) {\n continue\n }\n }\n\n console.log(\n '[Next.js DevTools] Failed to restart server. Exhausted all polling attempts.'\n )\n return\n } catch (error) {\n console.log('[Next.js DevTools] Failed to restart server.', error)\n return\n } finally {\n // If server restarted, don't reset isPending since the page will reload.\n if (!serverRestarted) {\n setIsPending(false)\n }\n }\n }\n\n return {\n restartServer,\n isPending,\n }\n}\n","import { CODE_FRAME_STYLES } from '../components/code-frame/code-frame'\nimport { styles as dialog } from '../components/dialog'\nimport { styles as errorLayout } from '../components/errors/error-overlay-layout/error-overlay-layout'\nimport { styles as bottomStack } from '../components/errors/error-overlay-bottom-stack'\nimport { styles as pagination } from '../components/errors/error-overlay-pagination/error-overlay-pagination'\nimport { styles as overlay } from '../components/overlay/styles'\nimport { styles as footer } from '../components/errors/error-overlay-footer/error-overlay-footer'\nimport { TERMINAL_STYLES } from '../components/terminal/terminal'\nimport { styles as versionStaleness } from '../components/version-staleness-info/version-staleness-info'\nimport { styles as buildErrorStyles } from '../container/build-error'\nimport { styles as containerErrorStyles } from '../container/errors'\nimport { styles as containerRuntimeErrorStyles } from '../container/runtime-error'\nimport { COPY_BUTTON_STYLES } from '../components/copy-button'\nimport { CALL_STACK_FRAME_STYLES } from '../components/call-stack-frame/call-stack-frame'\nimport { css } from '../utils/css'\nimport { EDITOR_LINK_STYLES } from '../components/terminal/editor-link'\nimport { ENVIRONMENT_NAME_LABEL_STYLES } from '../components/errors/environment-name-label/environment-name-label'\nimport { DEV_TOOLS_INFO_USER_PREFERENCES_STYLES } from '../components/errors/dev-tools-indicator/dev-tools-info/user-preferences'\nimport { FADER_STYLES } from '../components/fader'\nimport { CALL_STACK_STYLES } from '../components/call-stack/call-stack'\nimport { SHORTCUT_RECORDER_STYLES } from '../components/errors/dev-tools-indicator/dev-tools-info/shortcut-recorder'\n\nexport function ComponentStyles() {\n return (\n <style>\n {css`\n ${COPY_BUTTON_STYLES}\n ${CALL_STACK_FRAME_STYLES}\n ${CALL_STACK_STYLES}\n ${ENVIRONMENT_NAME_LABEL_STYLES}\n ${overlay}\n ${dialog}\n ${errorLayout}\n ${footer}\n ${bottomStack}\n ${pagination}\n ${CODE_FRAME_STYLES}\n ${TERMINAL_STYLES}\n ${EDITOR_LINK_STYLES}\n ${buildErrorStyles}\n ${containerErrorStyles}\n ${containerRuntimeErrorStyles}\n ${versionStaleness}\n ${DEV_TOOLS_INFO_USER_PREFERENCES_STYLES}\n ${FADER_STYLES}\n ${SHORTCUT_RECORDER_STYLES}\n `}\n </style>\n )\n}\n","import { useState, useEffect } from 'react'\n\ninterface Options {\n enterDelay?: number\n exitDelay?: number\n onUnmount?: () => void\n}\n\ntype Timeout = ReturnType<typeof setTimeout>\n\n/**\n * Useful to perform CSS transitions on React components without\n * using libraries like Framer Motion. This hook will defer the\n * unmount of a React component until after a delay.\n *\n * @param active - Whether the component should be rendered\n * @param options - Options for the delayed render\n * @param options.enterDelay - Delay before rendering the component\n * @param options.exitDelay - Delay before unmounting the component\n *\n * const Modal = ({ active }) => {\n * const { mounted, rendered } = useDelayedRender(active, {\n * exitDelay: 2000,\n * })\n *\n * if (!mounted) return null\n *\n * return (\n * <Portal>\n * <div className={rendered ? 'modal visible' : 'modal'}>...</div>\n * </Portal>\n * )\n *}\n *\n * */\nexport function useDelayedRender(active = false, options: Options = {}) {\n const [mounted, setMounted] = useState(active)\n const [rendered, setRendered] = useState(false)\n\n const { enterDelay = 1, exitDelay = 0 } = options\n useEffect(() => {\n let renderTimeout: Timeout | undefined\n let unmountTimeout: Timeout | undefined\n\n if (active) {\n // eslint-disable-next-line react-hooks/set-state-in-effect -- intentional cascading update\n setMounted(true)\n if (enterDelay <= 0) {\n setRendered(true)\n } else {\n renderTimeout = setTimeout(() => {\n setRendered(true)\n }, enterDelay)\n }\n } else {\n setRendered(false)\n if (exitDelay <= 0) {\n setMounted(false)\n } else {\n unmountTimeout = setTimeout(() => {\n setMounted(false)\n }, exitDelay)\n }\n }\n\n return () => {\n clearTimeout(renderTimeout)\n clearTimeout(unmountTimeout)\n }\n }, [active, enterDelay, exitDelay])\n\n return { mounted, rendered }\n}\n","import {\n ACTION_ERROR_OVERLAY_CLOSE,\n type OverlayDispatch,\n type OverlayState,\n} from '../../../shared'\n\nimport { Suspense } from 'react'\nimport { BuildError } from '../../../container/build-error'\nimport { Errors } from '../../../container/errors'\nimport { useDelayedRender } from '../../../hooks/use-delayed-render'\nimport type { ReadyRuntimeError } from '../../../utils/get-error-by-type'\nimport type { HydrationErrorState } from '../../../../shared/hydration-error'\n\nconst transitionDurationMs = 200\n\nexport interface ErrorBaseProps {\n rendered: boolean\n transitionDurationMs: number\n isTurbopack: boolean\n versionInfo: OverlayState['versionInfo']\n errorCount: number\n}\n\nexport function ErrorOverlay({\n state,\n dispatch,\n getSquashedHydrationErrorDetails,\n runtimeErrors,\n errorCount,\n}: {\n state: OverlayState\n dispatch: OverlayDispatch\n getSquashedHydrationErrorDetails: (error: Error) => HydrationErrorState | null\n runtimeErrors: ReadyRuntimeError[]\n errorCount: number\n}) {\n const isTurbopack = !!process.env.TURBOPACK\n\n // This hook lets us do an exit animation before unmounting the component\n const { mounted, rendered } = useDelayedRender(state.isErrorOverlayOpen, {\n exitDelay: transitionDurationMs,\n })\n\n const commonProps = {\n rendered,\n transitionDurationMs,\n isTurbopack,\n versionInfo: state.versionInfo,\n errorCount,\n }\n\n if (state.buildError !== null) {\n return (\n <BuildError\n {...commonProps}\n message={state.buildError}\n // This is not a runtime error, forcedly display error overlay\n rendered\n />\n )\n }\n\n // No Runtime Errors.\n if (!runtimeErrors.length) {\n // Workaround React quirk that triggers \"Switch to client-side rendering\" if\n // we return no Suspense boundary here.\n return <Suspense />\n }\n\n if (!mounted) {\n // Workaround React quirk that triggers \"Switch to client-side rendering\" if\n // we return no Suspense boundary here.\n return <Suspense />\n }\n\n return (\n <Errors\n {...commonProps}\n debugInfo={state.debugInfo}\n getSquashedHydrationErrorDetails={getSquashedHydrationErrorDetails}\n runtimeErrors={runtimeErrors}\n onClose={() => {\n dispatch({ type: ACTION_ERROR_OVERLAY_CLOSE })\n }}\n />\n )\n}\n","import type { OverlayState } from '../../shared'\nimport type { StackFrame } from '../../../shared/stack-frame'\n\nimport { useMemo, useState, useEffect } from 'react'\nimport {\n getErrorByType,\n type ReadyRuntimeError,\n} from '../../utils/get-error-by-type'\n\nexport type SupportedErrorEvent = {\n id: number\n error: Error\n frames: readonly StackFrame[]\n type: 'runtime' | 'recoverable' | 'console'\n}\n\ntype Props = {\n children: (params: {\n runtimeErrors: ReadyRuntimeError[]\n totalErrorCount: number\n }) => React.ReactNode\n state: OverlayState\n isAppDir: boolean\n}\n\nexport const RenderError = (props: Props) => {\n const { state } = props\n const isBuildError = !!state.buildError\n\n if (isBuildError) {\n return <RenderBuildError {...props} />\n } else {\n return <RenderRuntimeError {...props} />\n }\n}\n\nconst RenderRuntimeError = ({ children, state, isAppDir }: Props) => {\n const { errors } = state\n\n const [lookups, setLookups] = useState<{\n [eventId: string]: ReadyRuntimeError\n }>({})\n\n const [runtimeErrors, nextError] = useMemo<\n [ReadyRuntimeError[], SupportedErrorEvent | null]\n >(() => {\n let ready: ReadyRuntimeError[] = []\n let next: SupportedErrorEvent | null = null\n\n // Ensure errors are displayed in the order they occurred in:\n for (let idx = 0; idx < errors.length; ++idx) {\n const e = errors[idx]\n const { id } = e\n if (id in lookups) {\n ready.push(lookups[id])\n continue\n }\n\n next = e\n break\n }\n\n return [ready, next]\n }, [errors, lookups])\n\n useEffect(() => {\n if (nextError == null) {\n return\n }\n\n let mounted = true\n\n getErrorByType(nextError, isAppDir).then((resolved) => {\n if (mounted) {\n // We don't care if the desired error changed while we were resolving,\n // thus we're not tracking it using a ref. Once the work has been done,\n // we'll store it.\n setLookups((m) => ({ ...m, [resolved.id]: resolved }))\n }\n })\n\n return () => {\n mounted = false\n }\n }, [nextError, isAppDir])\n\n const totalErrorCount = errors.length\n\n return children({ runtimeErrors, totalErrorCount })\n}\n\nconst RenderBuildError = ({ children }: Props) => {\n return children({\n runtimeErrors: [],\n // Build errors and missing root layout tags persist until fixed,\n // so we can set a fixed error count of 1\n totalErrorCount: 1,\n })\n}\n","import { useLayoutEffect } from 'react'\nimport { useDevOverlayContext } from '../../dev-overlay.browser'\n\nexport function ScaleUpdater() {\n const { shadowRoot, state } = useDevOverlayContext()\n\n useLayoutEffect(() => {\n // Update the CSS custom property for scale\n if (shadowRoot?.host) {\n ;(shadowRoot.host as HTMLElement).style.setProperty(\n '--nextjs-dev-tools-scale',\n String(state.scale || 1)\n )\n }\n }, [shadowRoot, state.scale])\n\n return null\n}\n","\n import API from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./devtools-indicator.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./devtools-indicator.css\";\n export default content && content.locals ? content.locals : undefined;\n","export function Cross(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n width=\"12\"\n height=\"12\"\n viewBox=\"0 0 14 14\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3.08889 11.8384L2.62486 12.3024L1.69678 11.3744L2.16082 10.9103L6.07178 6.99937L2.16082 3.08841L1.69678 2.62437L2.62486 1.69629L3.08889 2.16033L6.99986 6.07129L10.9108 2.16033L11.3749 1.69629L12.3029 2.62437L11.8389 3.08841L7.92793 6.99937L11.8389 10.9103L12.3029 11.3744L11.3749 12.3024L10.9108 11.8384L6.99986 7.92744L3.08889 11.8384Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","export function Warning(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n width=\"12\"\n height=\"12\"\n viewBox=\"0 0 12 12\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3.98071 1.125L1.125 3.98071L1.125 8.01929L3.98071 10.875H8.01929L10.875 8.01929V3.98071L8.01929 1.125H3.98071ZM3.82538 0C3.62647 0 3.4357 0.0790176 3.29505 0.21967L0.21967 3.29505C0.0790176 3.4357 0 3.62647 0 3.82538V8.17462C0 8.37353 0.0790178 8.5643 0.21967 8.70495L3.29505 11.7803C3.4357 11.921 3.62647 12 3.82538 12H8.17462C8.37353 12 8.5643 11.921 8.70495 11.7803L11.7803 8.70495C11.921 8.5643 12 8.37353 12 8.17462V3.82538C12 3.62647 11.921 3.4357 11.7803 3.29505L8.70495 0.21967C8.5643 0.0790177 8.37353 0 8.17462 0H3.82538ZM6.5625 2.8125V3.375V6V6.5625H5.4375V6V3.375V2.8125H6.5625ZM6 9C6.41421 9 6.75 8.66421 6.75 8.25C6.75 7.83579 6.41421 7.5 6 7.5C5.58579 7.5 5.25 7.83579 5.25 8.25C5.25 8.66421 5.58579 9 6 9Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","import {\n createContext,\n useContext,\n type Dispatch,\n type SetStateAction,\n} from 'react'\n\nexport type PanelStateKind =\n | 'preferences'\n | 'route-type'\n | 'segment-explorer'\n | 'panel-selector'\n\nexport const PanelRouterContext = createContext<{\n panel: PanelStateKind | null\n setPanel: Dispatch<SetStateAction<PanelStateKind | null>>\n triggerRef: React.RefObject<HTMLButtonElement | null>\n selectedIndex: number\n setSelectedIndex: Dispatch<SetStateAction<number>>\n}>(null!)\n\nexport const usePanelRouterContext = () => useContext(PanelRouterContext)\n","import { INDICATOR_PADDING } from '../components/devtools-indicator/devtools-indicator'\nimport type { OverlayState } from '../shared'\n\nexport const BASE_LOGO_SIZE = 36\nconst INDICATOR_GAP = 9\n\nfunction getIndicatorSquare(state: OverlayState): number {\n return BASE_LOGO_SIZE / state.scale\n}\n\nexport function getIndicatorOffset(state: OverlayState): number {\n return INDICATOR_PADDING + getIndicatorSquare(state) + INDICATOR_GAP\n}\n","import { useRef, useState } from 'react'\nimport { useUpdateAnimation } from './hooks/use-update-animation'\nimport { useMeasureWidth } from './hooks/use-measure-width'\nimport { Cross } from '../../icons/cross'\nimport { Warning } from '../../icons/warning'\nimport { css } from '../../utils/css'\nimport { useDevOverlayContext } from '../../../dev-overlay.browser'\nimport { useRenderErrorContext } from '../../dev-overlay'\nimport { useDelayedRender } from '../../hooks/use-delayed-render'\nimport {\n ACTION_ERROR_OVERLAY_CLOSE,\n ACTION_ERROR_OVERLAY_OPEN,\n} from '../../shared'\nimport { usePanelRouterContext } from '../../menu/context'\nimport { BASE_LOGO_SIZE } from '../../utils/indicator-metrics'\nimport { StatusIndicator, Status, getCurrentStatus } from './status-indicator'\n\nconst SHORT_DURATION_MS = 150\n\nexport function NextLogo({\n onTriggerClick,\n ...buttonProps\n}: { onTriggerClick: () => void } & React.ComponentProps<'button'>) {\n const { state, dispatch } = useDevOverlayContext()\n const { totalErrorCount } = useRenderErrorContext()\n const SIZE = BASE_LOGO_SIZE / state.scale\n const { panel, triggerRef, setPanel } = usePanelRouterContext()\n const isMenuOpen = panel === 'panel-selector'\n\n const hasError = totalErrorCount > 0\n const [isErrorExpanded, setIsErrorExpanded] = useState(hasError)\n const [previousHasError, setPreviousHasError] = useState(hasError)\n if (previousHasError !== hasError) {\n setPreviousHasError(hasError)\n // Reset the expanded state when the error state changes\n setIsErrorExpanded(hasError)\n }\n const [dismissed, setDismissed] = useState(false)\n const newErrorDetected = useUpdateAnimation(\n totalErrorCount,\n SHORT_DURATION_MS\n )\n\n // Cache indicator state management\n const isCacheFilling = state.cacheIndicator === 'filling'\n const isCacheBypassing = state.cacheIndicator === 'bypass'\n\n // Determine if we should show any status (excluding cache bypass, which renders like error badge)\n const shouldShowStatus =\n state.buildingIndicator || state.renderingIndicator || isCacheFilling\n\n // Delay showing for 400ms to catch fast operations,\n // and keep visible for minimum time (longer for warnings)\n const { rendered: showStatusIndicator } = useDelayedRender(shouldShowStatus, {\n enterDelay: 400,\n exitDelay: 500,\n })\n\n const ref = useRef<HTMLDivElement | null>(null)\n const measuredWidth = useMeasureWidth(ref)\n\n // Get the current status from the state\n const currentStatus = getCurrentStatus(\n state.buildingIndicator,\n state.renderingIndicator,\n state.cacheIndicator\n )\n\n const displayStatus = showStatusIndicator ? currentStatus : Status.None\n\n const isExpanded =\n isErrorExpanded ||\n isCacheBypassing ||\n showStatusIndicator ||\n state.disableDevIndicator\n const width = measuredWidth === 0 ? 'auto' : measuredWidth\n\n return (\n <div\n data-next-badge-root\n style={\n {\n '--size': `${SIZE}px`,\n '--duration-short': `${SHORT_DURATION_MS}ms`,\n // if the indicator is disabled, hide the badge\n // also allow the \"disabled\" state be dismissed, as long as there are no build errors\n display:\n state.disableDevIndicator && (!hasError || dismissed)\n ? 'none'\n : 'block',\n } as React.CSSProperties\n }\n >\n {/* Styles */}\n <style>\n {css`\n [data-next-badge-root] {\n --timing: cubic-bezier(0.23, 0.88, 0.26, 0.92);\n --duration-long: 250ms;\n --color-outer-border: #171717;\n --color-inner-border: hsla(0, 0%, 100%, 0.14);\n --color-hover-alpha-subtle: hsla(0, 0%, 100%, 0.13);\n --color-hover-alpha-error: hsla(0, 0%, 100%, 0.2);\n --color-hover-alpha-error-2: hsla(0, 0%, 100%, 0.25);\n --mark-size: calc(var(--size) - var(--size-2) * 2);\n\n --focus-color: var(--color-blue-800);\n --focus-ring: 2px solid var(--focus-color);\n\n &:has([data-next-badge][data-error='true']) {\n --focus-color: #fff;\n }\n }\n\n [data-disabled-icon] {\n display: flex;\n align-items: center;\n justify-content: center;\n padding-right: 4px;\n }\n\n [data-next-badge] {\n width: var(--size);\n height: var(--size);\n display: flex;\n align-items: center;\n position: relative;\n background: rgba(0, 0, 0, 0.8);\n box-shadow:\n 0 0 0 1px var(--color-outer-border),\n inset 0 0 0 1px var(--color-inner-border),\n 0px 16px 32px -8px rgba(0, 0, 0, 0.24);\n backdrop-filter: blur(48px);\n border-radius: var(--rounded-full);\n user-select: none;\n cursor: pointer;\n scale: 1;\n overflow: hidden;\n will-change: scale, box-shadow, width, background;\n transition:\n scale var(--duration-short) var(--timing),\n width var(--duration-long) var(--timing),\n box-shadow var(--duration-long) var(--timing),\n background var(--duration-short) ease;\n\n &:active[data-error='false'] {\n scale: 0.95;\n }\n\n &[data-animate='true']:not(:hover) {\n scale: 1.02;\n }\n\n &[data-error='false']:has([data-next-mark]:focus-visible) {\n outline: var(--focus-ring);\n outline-offset: 3px;\n }\n\n &[data-error='true'] {\n background: #ca2a30;\n --color-inner-border: #e5484d;\n\n [data-next-mark] {\n background: var(--color-hover-alpha-error);\n outline-offset: 0px;\n\n &:focus-visible {\n outline: var(--focus-ring);\n outline-offset: -1px;\n }\n\n &:hover {\n background: var(--color-hover-alpha-error-2);\n }\n }\n }\n\n &[data-cache-bypassing='true']:not([data-error='true']) {\n background: rgba(217, 119, 6, 0.95);\n --color-inner-border: rgba(245, 158, 11, 0.9);\n\n [data-issues-open] {\n color: white;\n }\n }\n\n &[data-error-expanded='false'][data-error='true'] ~ [data-dot] {\n scale: 1;\n }\n\n > div {\n display: flex;\n }\n }\n\n [data-issues-collapse]:focus-visible {\n outline: var(--focus-ring);\n }\n\n [data-issues]:has([data-issues-open]:focus-visible) {\n outline: var(--focus-ring);\n outline-offset: -1px;\n }\n\n [data-dot] {\n content: '';\n width: var(--size-8);\n height: var(--size-8);\n background: #fff;\n box-shadow: 0 0 0 1px var(--color-outer-border);\n border-radius: 50%;\n position: absolute;\n top: 2px;\n right: 0px;\n scale: 0;\n pointer-events: none;\n transition: scale 200ms var(--timing);\n transition-delay: var(--duration-short);\n }\n\n [data-issues] {\n --padding-left: 8px;\n display: flex;\n gap: 2px;\n align-items: center;\n padding-left: 8px;\n padding-right: 8px;\n height: var(--size-32);\n margin-right: 2px;\n border-radius: var(--rounded-full);\n transition: background var(--duration-short) ease;\n\n &:has([data-issues-open]:hover) {\n background: var(--color-hover-alpha-error);\n }\n\n &:has([data-issues-collapse]) {\n padding-right: calc(var(--padding-left) / 2);\n }\n\n [data-cross] {\n translate: 0px -1px;\n }\n }\n\n [data-issues-open] {\n font-size: var(--size-13);\n color: white;\n width: fit-content;\n height: 100%;\n display: flex;\n gap: 2px;\n align-items: center;\n margin: 0;\n line-height: var(--size-36);\n font-weight: 500;\n z-index: 2;\n white-space: nowrap;\n\n &:focus-visible {\n outline: 0;\n }\n }\n\n [data-issues-collapse] {\n width: var(--size-24);\n height: var(--size-24);\n border-radius: var(--rounded-full);\n transition: background var(--duration-short) ease;\n\n &:hover {\n background: var(--color-hover-alpha-error);\n }\n }\n\n [data-cross] {\n color: #fff;\n width: var(--size-12);\n height: var(--size-12);\n }\n\n [data-next-mark] {\n width: var(--mark-size);\n height: var(--mark-size);\n margin: 0 2px;\n display: flex;\n align-items: center;\n border-radius: var(--rounded-full);\n transition: background var(--duration-long) var(--timing);\n\n &:focus-visible {\n outline: 0;\n }\n\n &:hover {\n background: var(--color-hover-alpha-subtle);\n }\n\n svg {\n flex-shrink: 0;\n width: var(--size-40);\n height: var(--size-40);\n }\n }\n\n [data-issues-count-animation] {\n display: grid;\n place-items: center center;\n font-variant-numeric: tabular-nums;\n\n &[data-animate='false'] {\n [data-issues-count-exit],\n [data-issues-count-enter] {\n animation-duration: 0ms;\n }\n }\n\n > * {\n grid-area: 1 / 1;\n }\n\n [data-issues-count-exit] {\n animation: fadeOut 300ms var(--timing) forwards;\n }\n\n [data-issues-count-enter] {\n animation: fadeIn 300ms var(--timing) forwards;\n }\n }\n\n [data-issues-count-plural] {\n display: inline-block;\n &[data-animate='true'] {\n animation: fadeIn 300ms var(--timing) forwards;\n }\n }\n\n .paused {\n stroke-dashoffset: 0;\n }\n\n @keyframes fadeIn {\n 0% {\n opacity: 0;\n filter: blur(2px);\n transform: translateY(8px);\n }\n 100% {\n opacity: 1;\n filter: blur(0px);\n transform: translateY(0);\n }\n }\n\n @keyframes fadeOut {\n 0% {\n opacity: 1;\n filter: blur(0px);\n transform: translateY(0);\n }\n 100% {\n opacity: 0;\n transform: translateY(-12px);\n filter: blur(2px);\n }\n }\n\n @media (prefers-reduced-motion) {\n [data-issues-count-exit],\n [data-issues-count-enter],\n [data-issues-count-plural] {\n animation-duration: 0ms !important;\n }\n }\n `}\n </style>\n <div\n data-next-badge\n data-error={hasError}\n data-error-expanded={isExpanded}\n data-status={hasError || isCacheBypassing ? Status.None : currentStatus}\n data-cache-bypassing={isCacheBypassing}\n data-animate={newErrorDetected}\n style={{ width }}\n >\n <div ref={ref}>\n {/* Children */}\n {!state.disableDevIndicator && (\n <button\n id=\"next-logo\"\n ref={triggerRef}\n data-next-mark\n onClick={onTriggerClick}\n disabled={state.disableDevIndicator}\n aria-haspopup=\"menu\"\n aria-expanded={isMenuOpen}\n aria-controls=\"nextjs-dev-tools-menu\"\n aria-label={`${isMenuOpen ? 'Close' : 'Open'} Next.js Dev Tools`}\n data-nextjs-dev-tools-button\n style={{\n display:\n showStatusIndicator && !hasError && !isCacheBypassing\n ? 'none'\n : 'flex',\n }}\n {...buttonProps}\n >\n <NextMark />\n </button>\n )}\n {isExpanded && (\n <>\n {/* Error badge has priority over cache indicator */}\n {(isErrorExpanded || state.disableDevIndicator) && (\n <div data-issues>\n <button\n data-issues-open\n aria-label=\"Open issues overlay\"\n onClick={() => {\n if (state.isErrorOverlayOpen) {\n dispatch({\n type: ACTION_ERROR_OVERLAY_CLOSE,\n })\n return\n }\n dispatch({ type: ACTION_ERROR_OVERLAY_OPEN })\n setPanel(null)\n }}\n >\n {state.disableDevIndicator && (\n <div data-disabled-icon>\n <Warning />\n </div>\n )}\n <AnimateCount\n // Used the key to force a re-render when the count changes.\n key={totalErrorCount}\n animate={newErrorDetected}\n data-issues-count-animation\n >\n {totalErrorCount}\n </AnimateCount>{' '}\n <div>\n Issue\n {totalErrorCount > 1 && (\n <span\n aria-hidden\n data-issues-count-plural\n // This only needs to animate once the count changes from 1 -> 2,\n // otherwise it should stay static between re-renders.\n data-animate={\n newErrorDetected && totalErrorCount === 2\n }\n >\n s\n </span>\n )}\n </div>\n </button>\n {!state.buildError && (\n <button\n data-issues-collapse\n aria-label=\"Collapse issues badge\"\n onClick={() => {\n if (state.disableDevIndicator) {\n setDismissed(true)\n } else {\n setIsErrorExpanded(false)\n }\n // Move focus to the trigger to prevent having it stuck on this element\n triggerRef.current?.focus()\n }}\n >\n <Cross data-cross />\n </button>\n )}\n </div>\n )}\n {/* Cache bypass badge shown when cache is being bypassed */}\n {isCacheBypassing && !hasError && !state.disableDevIndicator && (\n <CacheBypassBadge\n onTriggerClick={onTriggerClick}\n triggerRef={triggerRef}\n />\n )}\n {/* Status indicator shown when no errors and no cache bypass */}\n {showStatusIndicator &&\n !hasError &&\n !isCacheBypassing &&\n !state.disableDevIndicator && (\n <StatusIndicator\n status={displayStatus}\n onClick={onTriggerClick}\n />\n )}\n </>\n )}\n </div>\n </div>\n <div aria-hidden data-dot />\n </div>\n )\n}\n\nfunction AnimateCount({\n children: count,\n animate = true,\n ...props\n}: {\n children: number\n animate: boolean\n}) {\n return (\n <div {...props} data-animate={animate}>\n <div aria-hidden data-issues-count-exit>\n {count - 1}\n </div>\n <div data-issues-count data-issues-count-enter>\n {count}\n </div>\n </div>\n )\n}\n\nfunction CacheBypassBadge({\n onTriggerClick,\n triggerRef,\n}: {\n onTriggerClick: () => void\n triggerRef: React.RefObject<HTMLButtonElement | null>\n}) {\n const [dismissed, setDismissed] = useState(false)\n\n if (dismissed) {\n return null\n }\n\n return (\n <div data-issues data-cache-bypass-badge>\n <button\n data-issues-open\n data-nextjs-dev-tools-button\n aria-label=\"Open Next.js Dev Tools\"\n onClick={onTriggerClick}\n >\n Cache disabled\n </button>\n <button\n data-issues-collapse\n aria-label=\"Collapse cache bypass badge\"\n onClick={() => {\n setDismissed(true)\n // Move focus to the trigger to prevent having it stuck on this element\n triggerRef.current?.focus()\n }}\n >\n <Cross data-cross />\n </button>\n </div>\n )\n}\n\nfunction NextMark() {\n return (\n <svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\">\n <g transform=\"translate(8.5, 13)\">\n <path\n className=\"paused\"\n d=\"M13.3 15.2 L2.34 1 V12.6\"\n fill=\"none\"\n stroke=\"url(#next_logo_paint0_linear_1357_10853)\"\n strokeWidth=\"1.86\"\n mask=\"url(#next_logo_mask0)\"\n strokeDasharray=\"29.6\"\n strokeDashoffset=\"29.6\"\n />\n <path\n className=\"paused\"\n d=\"M11.825 1.5 V13.1\"\n strokeWidth=\"1.86\"\n stroke=\"url(#next_logo_paint1_linear_1357_10853)\"\n strokeDasharray=\"11.6\"\n strokeDashoffset=\"11.6\"\n />\n </g>\n <defs>\n <linearGradient\n id=\"next_logo_paint0_linear_1357_10853\"\n x1=\"9.95555\"\n y1=\"11.1226\"\n x2=\"15.4778\"\n y2=\"17.9671\"\n gradientUnits=\"userSpaceOnUse\"\n >\n <stop stopColor=\"white\" />\n <stop offset=\"0.604072\" stopColor=\"white\" stopOpacity=\"0\" />\n <stop offset=\"1\" stopColor=\"white\" stopOpacity=\"0\" />\n </linearGradient>\n <linearGradient\n id=\"next_logo_paint1_linear_1357_10853\"\n x1=\"11.8222\"\n y1=\"1.40039\"\n x2=\"11.791\"\n y2=\"9.62542\"\n gradientUnits=\"userSpaceOnUse\"\n >\n <stop stopColor=\"white\" />\n <stop offset=\"1\" stopColor=\"white\" stopOpacity=\"0\" />\n </linearGradient>\n <mask id=\"next_logo_mask0\">\n <rect width=\"100%\" height=\"100%\" fill=\"white\" />\n <rect width=\"5\" height=\"1.5\" fill=\"black\" />\n </mask>\n </defs>\n </svg>\n )\n}\n","import { useEffect, useRef, useState } from 'react'\n\nexport function useUpdateAnimation(\n issueCount: number,\n animationDurationMs = 0\n) {\n const lastUpdatedTimeStamp = useRef<number | null>(null)\n const [animate, setAnimate] = useState(false)\n\n useEffect(() => {\n if (issueCount > 0) {\n const deltaMs = lastUpdatedTimeStamp.current\n ? Date.now() - lastUpdatedTimeStamp.current\n : -1\n lastUpdatedTimeStamp.current = Date.now()\n\n // We don't animate if `issueCount` changes too quickly\n if (deltaMs <= animationDurationMs) {\n return\n }\n\n setAnimate(true)\n // It is important to use a CSS transitioned state, not a CSS keyframed animation\n // because if the issue count increases faster than the animation duration, it\n // will abruptly stop and not transition smoothly back to its original state.\n const timeoutId = window.setTimeout(() => {\n setAnimate(false)\n }, animationDurationMs)\n\n return () => {\n clearTimeout(timeoutId)\n }\n }\n }, [issueCount, animationDurationMs])\n\n return animate\n}\n","import { useEffect, useState } from 'react'\n\nexport function useMeasureWidth(\n ref: React.RefObject<HTMLDivElement | null>\n): number {\n const [width, setWidth] = useState<number>(0)\n\n useEffect(() => {\n const el = ref.current\n\n if (!el) {\n return\n }\n\n const observer = new ResizeObserver(([{ contentRect }]) => {\n setWidth(contentRect.width)\n })\n\n observer.observe(el)\n return () => observer.disconnect()\n }, [ref])\n\n return width\n}\n","import * as React from 'react'\nimport { cx } from '../../utils/cx'\ntype ToastProps = React.HTMLProps<HTMLDivElement> & {\n children?: React.ReactNode\n onClick?: () => void\n className?: string\n}\n\nexport const Toast = React.forwardRef<HTMLDivElement, ToastProps>(\n function Toast({ onClick, children, className, ...props }, ref) {\n return (\n <div\n {...props}\n ref={ref}\n onClick={(e) => {\n if (!(e.target as HTMLElement).closest('a')) {\n e.preventDefault()\n }\n return onClick?.()\n }}\n className={cx('nextjs-toast', className)}\n >\n {children}\n </div>\n )\n }\n)\n","import React, {\n createContext,\n useCallback,\n useContext,\n useEffect,\n useMemo,\n useRef,\n type Ref,\n type RefObject,\n} from 'react'\n\ninterface DragContextValue {\n register: (el: HTMLElement) => void\n unregister: (el: HTMLElement) => void\n handles: Set<HTMLElement>\n disabled: boolean\n}\n\nconst DragContext = createContext<DragContextValue | null>(null)\n\nexport function DragProvider({\n children,\n disabled = false,\n}: {\n children: React.ReactNode\n disabled?: boolean\n}) {\n const handlesRef = useRef<Set<HTMLElement>>(new Set())\n\n const register = useCallback((el: HTMLElement) => {\n handlesRef.current.add(el)\n }, [])\n\n const unregister = useCallback((el: HTMLElement) => {\n handlesRef.current.delete(el)\n }, [])\n\n const value = useMemo<DragContextValue>(\n () => ({\n register,\n unregister,\n handles:\n // eslint-disable-next-line react-hooks/refs -- TODO\n handlesRef.current,\n disabled,\n }),\n [register, unregister, disabled]\n )\n\n return <DragContext.Provider value={value}>{children}</DragContext.Provider>\n}\n\nexport function useDragContext() {\n return useContext(DragContext)\n}\n\nexport function DragHandle({\n children,\n ref,\n ...props\n}: React.HTMLAttributes<HTMLDivElement> & { ref?: Ref<HTMLDivElement> }) {\n const internalRef = useRef<HTMLDivElement>(null)\n const ctx = useDragContext()\n\n const setRef = useCallback(\n (node: HTMLDivElement | null) => {\n internalRef.current = node ?? null\n if (typeof ref === 'function') {\n ref(node)\n } else if (ref && typeof ref === 'object') {\n ;(ref as RefObject<HTMLDivElement | null>).current = node\n }\n },\n [ref]\n )\n\n useEffect(() => {\n if (!ctx || !internalRef.current || ctx.disabled) return\n const el = internalRef.current\n ctx.register(el)\n return () => ctx.unregister(el)\n }, [ctx])\n\n return (\n <div\n ref={setRef}\n {...props}\n style={{\n cursor: ctx?.disabled ? 'default' : 'grab',\n ...(props.style || {}),\n }}\n >\n {children}\n </div>\n )\n}\n","import type { Corners } from '../../../shared'\nimport { useCallback, useLayoutEffect, useRef } from 'react'\nimport { useDragContext } from './drag-context'\n\ninterface Point {\n x: number\n y: number\n}\n\ninterface Corner {\n corner: Corners\n translation: Point\n}\n\nexport function Draggable({\n children,\n padding,\n position: currentCorner,\n setPosition: setCurrentCorner,\n onDragStart,\n dragHandleSelector,\n disableDrag = false,\n avoidZone,\n ...props\n}: {\n children: React.ReactElement\n position: Corners\n padding: number\n setPosition: (position: Corners) => void\n onDragStart?: () => void\n dragHandleSelector?: string\n disableDrag?: boolean\n style?: React.CSSProperties\n avoidZone?: {\n square: number\n corner: Corners\n padding: number\n }\n}) {\n const { ref, animate, ...drag } = useDrag({\n disabled: disableDrag,\n handles: useDragContext()?.handles,\n threshold: 5,\n onDragStart,\n onDragEnd,\n onAnimationEnd,\n dragHandleSelector,\n })\n\n function onDragEnd(translation: Point, velocity: Point) {\n const distance = Math.sqrt(\n translation.x * translation.x + translation.y * translation.y\n )\n if (distance === 0) {\n ref.current?.style.removeProperty('translate')\n return\n }\n\n const projectedPosition = {\n x: translation.x + project(velocity.x),\n y: translation.y + project(velocity.y),\n }\n const nearestCorner = getNearestCorner(projectedPosition)\n animate(nearestCorner)\n }\n\n function onAnimationEnd({ corner }: Corner) {\n setTimeout(() => {\n ref.current?.style.removeProperty('translate')\n setCurrentCorner(corner)\n })\n }\n\n function getNearestCorner({ x, y }: Point): Corner {\n const allCorners = getCorners()\n const distances = Object.entries(allCorners).map(([key, translation]) => {\n const distance = Math.sqrt(\n (x - translation.x) ** 2 + (y - translation.y) ** 2\n )\n return { key, distance }\n })\n const min = Math.min(...distances.map((d) => d.distance))\n const nearest = distances.find((d) => d.distance === min)\n if (!nearest) {\n // this should be guarded by an invariant, shouldn't ever happen\n return { corner: currentCorner, translation: allCorners[currentCorner] }\n }\n return {\n translation: allCorners[nearest.key as Corners],\n corner: nearest.key as Corners,\n }\n }\n\n function getCorners(): Record<Corners, Point> {\n const offset = padding * 2\n const triggerWidth = ref.current?.offsetWidth || 0\n const triggerHeight = ref.current?.offsetHeight || 0\n const scrollbarWidth =\n window.innerWidth - document.documentElement.clientWidth\n\n function getAbsolutePosition(corner: Corners) {\n const isRight = corner.includes('right')\n const isBottom = corner.includes('bottom')\n\n // Base positions flush against the chosen corner\n let x = isRight\n ? window.innerWidth - scrollbarWidth - offset - triggerWidth\n : 0\n let y = isBottom ? window.innerHeight - offset - triggerHeight : 0\n\n // Apply avoidZone offset if this corner is occupied. We only move along\n // the vertical axis to keep the panel within the viewport. For bottom\n // corners we move the panel up, for top corners we move it down.\n if (avoidZone && avoidZone.corner === corner) {\n const delta = avoidZone.square + avoidZone.padding\n if (isBottom) {\n // move up\n y -= delta\n } else {\n // move down\n y += delta\n }\n }\n\n return { x, y }\n }\n\n const basePosition = getAbsolutePosition(currentCorner)\n\n function rel(pos: Point): Point {\n return {\n x: pos.x - basePosition.x,\n y: pos.y - basePosition.y,\n }\n }\n\n return {\n 'top-left': rel(getAbsolutePosition('top-left')),\n 'top-right': rel(getAbsolutePosition('top-right')),\n 'bottom-left': rel(getAbsolutePosition('bottom-left')),\n 'bottom-right': rel(getAbsolutePosition('bottom-right')),\n }\n }\n\n return (\n <div {...props} {...drag} ref={ref}>\n {children}\n </div>\n )\n}\n\ninterface UseDragOptions {\n disabled: boolean\n onDragStart?: () => void\n onDrag?: (translation: Point) => void\n onDragEnd?: (translation: Point, velocity: Point) => void\n onAnimationEnd?: (corner: Corner) => void\n threshold: number // Minimum movement before drag starts\n dragHandleSelector?: string\n handles?: Set<HTMLElement>\n}\n\ninterface Velocity {\n position: Point\n timestamp: number\n}\n\nfunction useDrag(options: UseDragOptions) {\n const ref = useRef<HTMLDivElement>(null)\n const machine = useRef<\n | { state: 'idle' | 'press' | 'drag-end' }\n | { state: 'drag'; pointerId: number }\n >({\n state: 'idle',\n })\n const cleanup = useRef<() => void>(null)\n\n const origin = useRef<Point>({ x: 0, y: 0 })\n const translation = useRef<Point>({ x: 0, y: 0 })\n const lastTimestamp = useRef(0)\n const velocities = useRef<Velocity[]>([])\n\n const cancel = useCallback(() => {\n if (machine.current.state === 'drag') {\n ref.current?.releasePointerCapture(machine.current.pointerId)\n }\n\n machine.current =\n machine.current.state === 'drag'\n ? { state: 'drag-end' }\n : { state: 'idle' }\n\n if (cleanup.current !== null) {\n cleanup.current()\n cleanup.current = null\n }\n\n velocities.current = []\n\n ref.current?.classList.remove('dev-tools-grabbing')\n ref.current?.style.removeProperty('-webkit-user-select')\n document.body.style.removeProperty('user-select')\n document.body.style.removeProperty('-webkit-user-select')\n }, [])\n\n useLayoutEffect(() => {\n if (options.disabled) {\n cancel()\n }\n }, [cancel, options.disabled])\n\n function set(position: Point) {\n if (ref.current) {\n translation.current = position\n ref.current.style.translate = `${position.x}px ${position.y}px`\n }\n }\n\n function animate(corner: Corner) {\n const el = ref.current\n if (el === null) return\n\n function listener(e: TransitionEvent) {\n if (e.propertyName === 'translate') {\n options.onAnimationEnd?.(corner)\n translation.current = { x: 0, y: 0 }\n el!.style.transition = ''\n el!.removeEventListener('transitionend', listener)\n }\n }\n\n // Generated from https://www.easing.dev/spring\n el.style.transition = 'translate 491.22ms var(--timing-bounce)'\n el.addEventListener('transitionend', listener)\n set(corner.translation)\n }\n\n function onClick(e: MouseEvent) {\n if (machine.current.state === 'drag-end') {\n e.preventDefault()\n e.stopPropagation()\n machine.current = { state: 'idle' }\n ref.current?.removeEventListener('click', onClick)\n }\n }\n\n function isValidDragHandle(target: EventTarget | null): boolean {\n if (!target || !ref.current) return true\n\n if (options.handles && options.handles.size > 0) {\n let node: HTMLElement | null = target as HTMLElement\n while (node && node !== ref.current) {\n if (options.handles.has(node)) return true\n node = node.parentElement\n }\n return false\n }\n\n if (options.dragHandleSelector) {\n const element = target as Element\n return element.closest(options.dragHandleSelector) !== null\n }\n\n return true\n }\n\n function onPointerDown(e: React.PointerEvent) {\n if (e.button !== 0) {\n return // ignore right click\n }\n\n // Check if the pointer down event is on a valid drag handle\n if (!isValidDragHandle(e.target)) {\n return\n }\n\n origin.current = { x: e.clientX, y: e.clientY }\n machine.current = { state: 'press' }\n window.addEventListener('pointermove', onPointerMove)\n window.addEventListener('pointerup', onPointerUp)\n\n if (cleanup.current !== null) {\n cleanup.current()\n cleanup.current = null\n }\n cleanup.current = () => {\n window.removeEventListener('pointermove', onPointerMove)\n window.removeEventListener('pointerup', onPointerUp)\n }\n\n ref.current?.addEventListener('click', onClick)\n }\n\n function onPointerMove(e: PointerEvent) {\n if (machine.current.state === 'press') {\n const dx = e.clientX - origin.current.x\n const dy = e.clientY - origin.current.y\n const distance = Math.sqrt(dx * dx + dy * dy)\n\n if (distance >= options.threshold) {\n machine.current = { state: 'drag', pointerId: e.pointerId }\n ref.current?.setPointerCapture(e.pointerId)\n ref.current?.classList.add('dev-tools-grabbing')\n ref.current?.style.setProperty('-webkit-user-select', 'none')\n document.body.style.userSelect = 'none'\n document.body.style.webkitUserSelect = 'none'\n options.onDragStart?.()\n }\n }\n\n if (machine.current.state !== 'drag') return\n\n const currentPosition = { x: e.clientX, y: e.clientY }\n\n const dx = currentPosition.x - origin.current.x\n const dy = currentPosition.y - origin.current.y\n origin.current = currentPosition\n\n const newTranslation = {\n x: translation.current.x + dx,\n y: translation.current.y + dy,\n }\n\n set(newTranslation)\n\n // Keep a history of recent positions for velocity calculation\n // Only store points that are at least 10ms apart to avoid too many samples\n const now = Date.now()\n const shouldAddToHistory = now - lastTimestamp.current >= 10\n if (shouldAddToHistory) {\n velocities.current = [\n ...velocities.current.slice(-5),\n { position: currentPosition, timestamp: now },\n ]\n }\n\n lastTimestamp.current = now\n options.onDrag?.(translation.current)\n }\n\n function onPointerUp() {\n const velocity = calculateVelocity(velocities.current)\n\n cancel()\n\n // TODO: This is the onDragEnd when the pointerdown event was fired not the onDragEnd when the pointerup event was fired\n options.onDragEnd?.(translation.current, velocity)\n }\n\n if (options.disabled) {\n return {\n ref,\n animate,\n }\n }\n\n return {\n ref,\n onPointerDown,\n animate,\n }\n}\n\nfunction calculateVelocity(\n history: Array<{ position: Point; timestamp: number }>\n): Point {\n if (history.length < 2) {\n return { x: 0, y: 0 }\n }\n\n const oldestPoint = history[0]\n const latestPoint = history[history.length - 1]\n\n const timeDelta = latestPoint.timestamp - oldestPoint.timestamp\n\n if (timeDelta === 0) {\n return { x: 0, y: 0 }\n }\n\n // Calculate pixels per millisecond\n const velocityX =\n (latestPoint.position.x - oldestPoint.position.x) / timeDelta\n const velocityY =\n (latestPoint.position.y - oldestPoint.position.y) / timeDelta\n\n // Convert to pixels per second for more intuitive values\n return {\n x: velocityX * 1000,\n y: velocityY * 1000,\n }\n}\n\nfunction project(initialVelocity: number, decelerationRate = 0.999) {\n return ((initialVelocity / 1000) * decelerationRate) / (1 - decelerationRate)\n}\n","import './devtools-indicator.css'\nimport type { CSSProperties } from 'react'\nimport type { DevToolsIndicatorPosition } from '../../shared'\nimport { NextLogo } from './next-logo'\nimport { Toast } from '../toast'\nimport {\n MENU_CURVE,\n MENU_DURATION_MS,\n} from '../errors/dev-tools-indicator/utils'\nimport {\n ACTION_DEVTOOLS_POSITION,\n STORE_KEY_SHARED_PANEL_LOCATION,\n STORAGE_KEY_PANEL_POSITION_PREFIX,\n ACTION_DEVTOOLS_PANEL_POSITION,\n} from '../../shared'\nimport { Draggable } from '../errors/dev-tools-indicator/draggable'\nimport { useDevOverlayContext } from '../../../dev-overlay.browser'\nimport { usePanelRouterContext } from '../../menu/context'\nimport { saveDevToolsConfig } from '../../utils/save-devtools-config'\n\nexport const INDICATOR_PADDING = 20\n\nexport function DevToolsIndicator() {\n const { state, dispatch } = useDevOverlayContext()\n const { panel, setPanel, setSelectedIndex } = usePanelRouterContext()\n const updateAllPanelPositions = useUpdateAllPanelPositions()\n const [vertical, horizontal] = state.devToolsPosition.split('-', 2)\n\n return (\n // TODO: why is this called a toast\n <Toast\n id=\"devtools-indicator\"\n data-nextjs-toast\n style={\n {\n '--animate-out-duration-ms': `${MENU_DURATION_MS}ms`,\n '--animate-out-timing-function': MENU_CURVE,\n boxShadow: 'none',\n [vertical]: `${INDICATOR_PADDING}px`,\n [horizontal]: `${INDICATOR_PADDING}px`,\n } as CSSProperties\n }\n >\n <Draggable\n // avoids a lot of weird edge cases that would cause jank if the logo and panel were de-synced\n disableDrag={panel !== null}\n padding={INDICATOR_PADDING}\n position={state.devToolsPosition}\n setPosition={(p) => {\n dispatch({\n type: ACTION_DEVTOOLS_POSITION,\n devToolsPosition: p,\n })\n saveDevToolsConfig({ devToolsPosition: p })\n\n updateAllPanelPositions(p)\n }}\n >\n <NextLogo\n onTriggerClick={() => {\n const newPanel =\n panel === 'panel-selector' ? null : 'panel-selector'\n setPanel(newPanel)\n if (!newPanel) {\n setSelectedIndex(-1)\n return\n }\n }}\n />\n </Draggable>\n </Toast>\n )\n}\n\n/**\n * makes sure we eventually sync the panel to the logo, otherwise\n * it will be jarring if the panels start appearing on the other\n * side of the logo. This wont teleport the panel because the indicator\n * cannot be dragged when any panel is open\n */\nexport const useUpdateAllPanelPositions = () => {\n const { state, dispatch } = useDevOverlayContext()\n return (position: DevToolsIndicatorPosition) => {\n dispatch({\n type: ACTION_DEVTOOLS_PANEL_POSITION,\n devToolsPanelPosition: position,\n key: STORE_KEY_SHARED_PANEL_LOCATION,\n })\n\n const panelPositionKeys = Object.keys(state.devToolsPanelPosition).filter(\n (key) => key.startsWith(STORAGE_KEY_PANEL_POSITION_PREFIX)\n )\n\n const panelPositionPatch: Record<string, DevToolsIndicatorPosition> = {\n [STORE_KEY_SHARED_PANEL_LOCATION]: position,\n }\n\n panelPositionKeys.forEach((key) => {\n dispatch({\n type: ACTION_DEVTOOLS_PANEL_POSITION,\n devToolsPanelPosition: position,\n key,\n })\n\n panelPositionPatch[key] = position\n })\n\n saveDevToolsConfig({\n devToolsPanelPosition: panelPositionPatch,\n })\n }\n}\n","import { useDevOverlayContext } from '../../dev-overlay.browser'\nimport { useClickOutsideAndEscape } from '../components/errors/dev-tools-indicator/utils'\nimport {\n useEffectEvent,\n useLayoutEffect,\n useRef,\n createContext,\n useContext,\n type CSSProperties,\n type Dispatch,\n type SetStateAction,\n} from 'react'\nimport { getIndicatorOffset } from '../utils/indicator-metrics'\nimport { INDICATOR_PADDING } from '../components/devtools-indicator/devtools-indicator'\nimport { usePanelRouterContext } from './context'\nimport { usePanelContext } from './panel-router'\n\ninterface C {\n closeMenu?: () => void\n selectedIndex: number\n setSelectedIndex: Dispatch<SetStateAction<number>>\n}\n\nconst MenuContext = createContext({} as C)\n\nfunction MenuItem({\n index,\n label,\n value,\n onClick,\n href,\n ...props\n}: {\n index?: number\n title?: string\n label: string\n value: React.ReactNode\n href?: string\n onClick?: () => void\n}) {\n const isInteractive =\n typeof onClick === 'function' || typeof href === 'string'\n const { closeMenu, selectedIndex, setSelectedIndex } = useContext(MenuContext)\n const selected = selectedIndex === index\n\n function click() {\n if (isInteractive) {\n onClick?.()\n closeMenu?.()\n if (href) {\n window.open(href, '_blank', 'noopener, noreferrer')\n }\n }\n }\n\n return (\n <div\n className=\"dev-tools-indicator-item\"\n data-index={index}\n data-selected={selected}\n onClick={click}\n // Needs `onMouseMove` instead of enter to work together\n // with keyboard and mouse input\n onMouseMove={() => {\n if (isInteractive && index !== undefined && selectedIndex !== index) {\n setSelectedIndex(index)\n }\n }}\n onMouseLeave={() => setSelectedIndex(-1)}\n onKeyDown={(e) => {\n if (e.key === 'Enter' || e.key === ' ') {\n click()\n }\n }}\n role={isInteractive ? 'menuitem' : undefined}\n tabIndex={selected ? 0 : -1}\n {...props}\n >\n <span className=\"dev-tools-indicator-label\">{label}</span>\n <span className=\"dev-tools-indicator-value\">{value}</span>\n </div>\n )\n}\n\nexport const DevtoolMenu = ({\n closeOnClickOutside = true,\n items,\n}: {\n closeOnClickOutside?: boolean\n items: Array<\n | false\n | undefined\n | null\n | {\n onClick?: () => void\n title?: string\n label: string\n value: React.ReactNode\n attributes?: Record<string, string | boolean>\n footer?: boolean\n }\n >\n}) => {\n const { state } = useDevOverlayContext()\n const { setPanel, triggerRef, setSelectedIndex, selectedIndex } =\n usePanelRouterContext()\n const { mounted } = usePanelContext()\n\n const [vertical, horizontal] = state.devToolsPosition.split('-', 2)\n\n const menuRef = useRef<HTMLDivElement>(null)\n\n useClickOutsideAndEscape(\n menuRef,\n triggerRef,\n closeOnClickOutside && mounted,\n (reason) => {\n switch (reason) {\n case 'escape': {\n setPanel(null)\n setSelectedIndex(-1)\n return\n }\n case 'outside': {\n if (!closeOnClickOutside) {\n return\n }\n setPanel(null)\n setSelectedIndex(-1)\n return\n }\n default: {\n return null!\n }\n }\n }\n )\n const fireInitialSelectMenuItem = useEffectEvent(() => {\n selectMenuItem({\n index: selectedIndex === -1 ? 'first' : selectedIndex,\n menuRef,\n setSelectedIndex,\n })\n })\n\n useLayoutEffect(() => {\n menuRef.current?.focus() // allows keydown to be captured\n fireInitialSelectMenuItem()\n }, [])\n\n const indicatorOffset = getIndicatorOffset(state)\n\n const [indicatorVertical, indicatorHorizontal] = state.devToolsPosition.split(\n '-',\n 2\n )\n\n const verticalOffset =\n vertical === indicatorVertical && horizontal === indicatorHorizontal\n ? indicatorOffset\n : INDICATOR_PADDING\n\n const positionStyle = {\n [vertical]: `${verticalOffset}px`,\n [horizontal]: `${INDICATOR_PADDING}px`,\n [vertical === 'top' ? 'bottom' : 'top']: 'auto',\n [horizontal === 'left' ? 'right' : 'left']: 'auto',\n } as CSSProperties\n const definedItems = items.filter((item) => !!item)\n const itemsAboveFooter = definedItems.filter((item) => !item.footer)\n const itemsBelowFooter = definedItems.filter((item) => item.footer)\n\n function onMenuKeydown(e: React.KeyboardEvent<HTMLDivElement | null>) {\n e.preventDefault()\n\n const clickableItems = definedItems.filter((item) => item.onClick)\n const totalClickableItems = clickableItems.length\n\n switch (e.key) {\n case 'ArrowDown':\n const next =\n selectedIndex >= totalClickableItems - 1 ? 0 : selectedIndex + 1\n selectMenuItem({ index: next, menuRef, setSelectedIndex })\n break\n case 'ArrowUp':\n const prev =\n selectedIndex <= 0 ? totalClickableItems - 1 : selectedIndex - 1\n selectMenuItem({ index: prev, menuRef, setSelectedIndex })\n break\n case 'Home':\n selectMenuItem({ index: 'first', menuRef, setSelectedIndex })\n break\n case 'End':\n selectMenuItem({ index: 'last', menuRef, setSelectedIndex })\n break\n case 'n':\n if (e.ctrlKey) {\n const nextCtrl =\n selectedIndex >= totalClickableItems - 1 ? 0 : selectedIndex + 1\n selectMenuItem({ index: nextCtrl, menuRef, setSelectedIndex })\n }\n break\n case 'p':\n if (e.ctrlKey) {\n const prevCtrl =\n selectedIndex <= 0 ? totalClickableItems - 1 : selectedIndex - 1\n selectMenuItem({ index: prevCtrl, menuRef, setSelectedIndex })\n }\n break\n default:\n break\n }\n }\n\n return (\n <div\n ref={menuRef}\n onKeyDown={onMenuKeydown}\n id=\"nextjs-dev-tools-menu\"\n role=\"menu\"\n dir=\"ltr\"\n aria-orientation=\"vertical\"\n aria-label=\"Next.js Dev Tools Items\"\n tabIndex={-1}\n style={{\n outline: 0,\n WebkitFontSmoothing: 'antialiased',\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'flex-start',\n background: 'var(--color-background-100)',\n\n backgroundClip: 'padding-box',\n boxShadow: 'var(--shadow-menu)',\n borderRadius: 'var(--rounded-xl)',\n position: 'fixed',\n fontFamily: 'var(--font-stack-sans)',\n zIndex: 'var(--top-z-index)',\n overflow: 'hidden',\n opacity: 1,\n minWidth: '248px',\n transition:\n 'opacity var(--animate-out-duration-ms) var(--animate-out-timing-function)',\n border: '1px solid var(--color-gray-alpha-400)',\n ...positionStyle,\n }}\n >\n <MenuContext\n value={{\n selectedIndex,\n setSelectedIndex,\n }}\n >\n <div style={{ padding: '6px', width: '100%' }}>\n {itemsAboveFooter.map((item, index) => (\n <MenuItem\n key={item.label}\n title={item.title}\n label={item.label}\n value={item.value}\n onClick={item.onClick}\n index={\n item.onClick\n ? getAdjustedIndex(itemsAboveFooter, index)\n : undefined\n }\n {...item.attributes}\n />\n ))}\n </div>\n <div className=\"dev-tools-indicator-footer\">\n {itemsBelowFooter.map((item, index) => (\n <MenuItem\n key={item.label}\n title={item.title}\n label={item.label}\n value={item.value}\n onClick={item.onClick}\n {...item.attributes}\n index={\n item.onClick\n ? getAdjustedIndex(itemsBelowFooter, index) +\n getClickableItemsCount(itemsAboveFooter)\n : undefined\n }\n />\n ))}\n </div>\n </MenuContext>\n </div>\n )\n}\n\nfunction getAdjustedIndex(\n items: Array<{ onClick?: () => void }>,\n targetIndex: number\n): number {\n let adjustedIndex = 0\n\n for (let i = 0; i <= targetIndex && i < items.length; i++) {\n if (items[i].onClick) {\n if (i === targetIndex) {\n return adjustedIndex\n }\n adjustedIndex++\n }\n }\n\n return adjustedIndex\n}\n\nfunction getClickableItemsCount(\n items: Array<{ onClick?: () => void }>\n): number {\n return items.filter((item) => item.onClick).length\n}\n\nexport function IssueCount({ children }: { children: number }) {\n return (\n <span\n className=\"dev-tools-indicator-issue-count\"\n data-has-issues={children > 0}\n >\n <span className=\"dev-tools-indicator-issue-count-indicator\" />\n {children}\n </span>\n )\n}\n\nexport function ChevronRight() {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n >\n <path\n fill=\"#666\"\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M5.50011 1.93945L6.03044 2.46978L10.8537 7.293C11.2442 7.68353 11.2442 8.31669 10.8537 8.70722L6.03044 13.5304L5.50011 14.0608L4.43945 13.0001L4.96978 12.4698L9.43945 8.00011L4.96978 3.53044L4.43945 3.00011L5.50011 1.93945Z\"\n />\n </svg>\n )\n}\n\nfunction selectMenuItem({\n index,\n menuRef,\n setSelectedIndex,\n}: {\n index: number | 'first' | 'last'\n menuRef: React.RefObject<HTMLDivElement | null>\n setSelectedIndex: (index: number) => void\n}) {\n if (index === 'first') {\n setTimeout(() => {\n const all = menuRef.current?.querySelectorAll('[role=\"menuitem\"]')\n if (all) {\n const firstIndex = all[0].getAttribute('data-index')\n selectMenuItem({ index: Number(firstIndex), menuRef, setSelectedIndex })\n }\n })\n return\n }\n\n if (index === 'last') {\n setTimeout(() => {\n const all = menuRef.current?.querySelectorAll('[role=\"menuitem\"]')\n if (all) {\n const lastIndex = all.length - 1\n selectMenuItem({ index: lastIndex, menuRef, setSelectedIndex })\n }\n })\n return\n }\n\n const el = menuRef.current?.querySelector(\n `[data-index=\"${index}\"]`\n ) as HTMLElement\n\n if (el) {\n setSelectedIndex(index)\n el?.focus()\n }\n}\n","import {\n createContext,\n useCallback,\n useContext,\n useEffectEvent,\n useLayoutEffect,\n useState,\n type RefObject,\n} from 'react'\nimport { STORE_KEY_SHARED_PANEL_SIZE, type Corners } from '../../../shared'\n\nexport type ResizeDirection =\n | 'top'\n | 'right'\n | 'bottom'\n | 'left'\n | 'top-left'\n | 'top-right'\n | 'bottom-left'\n | 'bottom-right'\n\ninterface ResizeContextValue {\n resizeRef: RefObject<HTMLElement | null>\n minWidth: number\n minHeight: number\n maxWidth?: number\n maxHeight?: number\n draggingDirection: ResizeDirection | null\n setDraggingDirection: (direction: ResizeDirection | null) => void\n storageKey: string\n}\n\nconst ResizeContext = createContext<ResizeContextValue>(null!)\n\nconst constrainDimensions = (params: {\n width: number\n height: number\n minWidth: number\n minHeight: number\n}) => {\n const maxWidth = window.innerWidth * 0.95\n const maxHeight = window.innerHeight * 0.95\n\n return {\n width: Math.min(maxWidth, Math.max(params.minWidth, params.width)),\n height: Math.min(maxHeight, Math.max(params.minHeight, params.height)),\n }\n}\n\ninterface ResizeProviderProps {\n value: {\n resizeRef: RefObject<HTMLElement | null>\n minWidth?: number\n minHeight?: number\n maxWidth?: number\n maxHeight?: number\n devToolsPosition: Corners\n devToolsPanelSize: Record<string, { width: number; height: number }>\n storageKey?: string\n initialSize?: { height: number; width: number }\n }\n children: React.ReactNode\n}\n\nexport const ResizeProvider = ({ value, children }: ResizeProviderProps) => {\n const minWidth = value.minWidth ?? 100\n const minHeight = value.minHeight ?? 80\n const maxWidth = value.maxWidth\n const maxHeight = value.maxHeight\n const [draggingDirection, setDraggingDirection] =\n useState<ResizeDirection | null>(null)\n\n const storageKey = value.storageKey ?? STORE_KEY_SHARED_PANEL_SIZE\n\n const { resizeRef } = value\n const applyConstrainedDimensions = useCallback(() => {\n if (!resizeRef.current) return\n\n // this feels weird to read local storage on resize, but we don't\n // track the dimensions of the container, and this is better than\n // getBoundingClientReact\n\n // an optimization if this is too expensive is to maintain the current\n // container size in a ref and update it on resize, which is essentially\n // what we're doing here, just dumber\n if (draggingDirection !== null) {\n // Don't override live resizing operation with stale cached values.\n return\n }\n\n const dim = value.devToolsPanelSize[storageKey]\n if (!dim) {\n return\n }\n const { height, width } = constrainDimensions({\n ...dim,\n minWidth: minWidth ?? 100,\n minHeight: minHeight ?? 80,\n })\n\n resizeRef.current.style.width = `${width}px`\n resizeRef.current.style.height = `${height}px`\n return true\n }, [\n resizeRef,\n draggingDirection,\n storageKey,\n minWidth,\n minHeight,\n value.devToolsPanelSize,\n ])\n\n const fireInitialConstrainDimensions = useEffectEvent(() => {\n const applied = applyConstrainedDimensions()\n if (\n !applied &&\n resizeRef.current &&\n value.initialSize?.height &&\n value.initialSize.width\n ) {\n const { height, width } = constrainDimensions({\n height: value.initialSize.height,\n width: value.initialSize.width,\n minWidth: minWidth ?? 100,\n minHeight: minHeight ?? 80,\n })\n resizeRef.current.style.width = `${width}px`\n resizeRef.current.style.height = `${height}px`\n }\n })\n\n useLayoutEffect(() => {\n fireInitialConstrainDimensions()\n }, [])\n\n useLayoutEffect(() => {\n window.addEventListener('resize', applyConstrainedDimensions)\n return () =>\n window.removeEventListener('resize', applyConstrainedDimensions)\n }, [\n applyConstrainedDimensions,\n value.initialSize?.height,\n value.initialSize?.width,\n value.resizeRef,\n ])\n\n return (\n <ResizeContext.Provider\n value={{\n resizeRef: value.resizeRef,\n minWidth,\n minHeight,\n maxWidth,\n maxHeight,\n draggingDirection,\n setDraggingDirection,\n storageKey,\n }}\n >\n {children}\n </ResizeContext.Provider>\n )\n}\n\nexport const useResize = () => {\n const context = useContext(ResizeContext)\n if (!context) {\n throw new Error('useResize must be used within a Resize provider')\n }\n return context\n}\n","\n import API from \"!../../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../../../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./resize-handle.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./resize-handle.css\";\n export default content && content.locals ? content.locals : undefined;\n","import { useState, useLayoutEffect } from 'react'\nimport type { Corners } from '../../../shared'\nimport { useResize, type ResizeDirection } from './resize-provider'\nimport './resize-handle.css'\nimport { saveDevToolsConfig } from '../../../utils/save-devtools-config'\n\nexport const ResizeHandle = ({\n direction,\n position,\n}: {\n direction: ResizeDirection\n position: Corners\n}) => {\n const {\n resizeRef,\n minWidth,\n minHeight,\n maxWidth,\n maxHeight,\n storageKey,\n draggingDirection,\n setDraggingDirection,\n } = useResize()\n const [borderWidths, setBorderWidths] = useState({\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n })\n\n // TODO: NEXT-4645\n const shouldShowHandle = () => {\n const getOppositeCorner = (corner: Corners): ResizeDirection => {\n switch (corner) {\n case 'top-left':\n return 'bottom-right'\n case 'top-right':\n return 'bottom-left'\n case 'bottom-left':\n return 'top-right'\n case 'bottom-right':\n return 'top-left'\n default: {\n corner satisfies never\n return null!\n }\n }\n }\n\n // we block the sides of the corner its in (bottom-left has bottom and left sides blocked from resizing)\n // because there shouldn't be anywhere to resize, and if the user decides to resize from that point it\n // would be unhandled/slightly janky (the component would have to re-magnetic-snap after the resize)\n if (position.split('-').includes(direction)) return false\n\n // same logic as above, but the only corner resize that makes\n // sense is the corner fully exposed (the opposing corner)\n const isCorner = direction.includes('-')\n if (isCorner) {\n const opposite = getOppositeCorner(position)\n return direction === opposite\n }\n\n return true\n }\n\n // we want the resize lines to be flush with the entire true width of the containers box\n // and we don't want the user of ResizeHandle to have to tell us the border width\n useLayoutEffect(() => {\n if (!resizeRef.current) return\n\n const element = resizeRef.current\n const computedStyle = window.getComputedStyle(element)\n\n const borderTop = parseFloat(computedStyle.borderTopWidth) || 0\n const borderRight = parseFloat(computedStyle.borderRightWidth) || 0\n const borderBottom = parseFloat(computedStyle.borderBottomWidth) || 0\n const borderLeft = parseFloat(computedStyle.borderLeftWidth) || 0\n\n setBorderWidths({\n top: borderTop,\n right: borderRight,\n bottom: borderBottom,\n left: borderLeft,\n })\n }, [resizeRef])\n\n const handleMouseDown = (mouseDownEvent: React.MouseEvent) => {\n mouseDownEvent.preventDefault()\n if (!resizeRef.current) return\n setDraggingDirection(direction)\n\n const element = resizeRef.current\n const initialRect = element.getBoundingClientRect()\n const startX = mouseDownEvent.clientX\n const startY = mouseDownEvent.clientY\n\n const handleMouseMove = (mouseMoveEvent: MouseEvent) => {\n const deltaX = mouseMoveEvent.clientX - startX\n const deltaY = mouseMoveEvent.clientY - startY\n\n const { newWidth, newHeight } = getNewDimensions(\n direction,\n deltaX,\n deltaY,\n initialRect,\n minWidth,\n minHeight,\n maxWidth,\n maxHeight\n )\n\n if (newWidth !== undefined) {\n element.style.width = `${newWidth}px`\n }\n if (newHeight !== undefined) {\n element.style.height = `${newHeight}px`\n }\n }\n\n const handleMouseUp = () => {\n setDraggingDirection(null)\n document.removeEventListener('mousemove', handleMouseMove)\n document.removeEventListener('mouseup', handleMouseUp)\n if (!resizeRef.current) {\n // possible if the user closes during drag\n return\n }\n\n const { width, height } = resizeRef.current.getBoundingClientRect()\n saveDevToolsConfig({\n devToolsPanelSize: { [storageKey]: { width, height } },\n })\n }\n document.addEventListener('mousemove', handleMouseMove)\n document.addEventListener('mouseup', handleMouseUp)\n }\n\n if (!shouldShowHandle()) {\n return null\n }\n const totalHorizontalBorder = borderWidths.left + borderWidths.right\n const totalVerticalBorder = borderWidths.top + borderWidths.bottom\n\n const isCornerHandle = direction.includes('-')\n\n return (\n <>\n {/* this is what actually captures the events, its partially on the container, and partially off */}\n <div\n className={`resize-container ${direction} ${draggingDirection && draggingDirection !== direction ? 'no-hover' : ''}`}\n onMouseDown={handleMouseDown}\n />\n\n {/* this panel appears to capture the click, but its just a visual indicator for user of the resize target */}\n {!isCornerHandle && (\n <div\n className={`resize-line ${direction} ${draggingDirection === direction ? 'dragging' : ''}`}\n style={\n {\n // We want the resize line to appear to come out of the back\n // of the div flush with the full box, otherwise there are a\n // few px missing and it looks jank\n '--border-horizontal': `${totalHorizontalBorder}px`,\n '--border-vertical': `${totalVerticalBorder}px`,\n '--border-top': `${borderWidths.top}px`,\n '--border-right': `${borderWidths.right}px`,\n '--border-bottom': `${borderWidths.bottom}px`,\n '--border-left': `${borderWidths.left}px`,\n } as React.CSSProperties\n }\n />\n )}\n </>\n )\n}\n\nconst getNewDimensions = (\n direction: ResizeDirection,\n deltaX: number,\n deltaY: number,\n initialRect: DOMRect,\n minWidth: number,\n minHeight: number,\n maxWidth?: number,\n maxHeight?: number\n) => {\n const effectiveMaxWidth = maxWidth ?? window.innerWidth * 0.95\n const effectiveMaxHeight = maxHeight ?? window.innerHeight * 0.95\n\n switch (direction) {\n case 'right':\n return {\n newWidth: Math.min(\n effectiveMaxWidth,\n Math.max(minWidth, initialRect.width + deltaX)\n ),\n newHeight: initialRect.height,\n }\n\n case 'left': {\n return {\n newWidth: Math.min(\n effectiveMaxWidth,\n Math.max(minWidth, initialRect.width - deltaX)\n ),\n newHeight: initialRect.height,\n }\n }\n\n case 'bottom':\n return {\n newWidth: initialRect.width,\n newHeight: Math.min(\n effectiveMaxHeight,\n Math.max(minHeight, initialRect.height + deltaY)\n ),\n }\n\n case 'top': {\n return {\n newWidth: initialRect.width,\n newHeight: Math.min(\n effectiveMaxHeight,\n Math.max(minHeight, initialRect.height - deltaY)\n ),\n }\n }\n\n case 'top-left': {\n return {\n newWidth: Math.min(\n effectiveMaxWidth,\n Math.max(minWidth, initialRect.width - deltaX)\n ),\n newHeight: Math.min(\n effectiveMaxHeight,\n Math.max(minHeight, initialRect.height - deltaY)\n ),\n }\n }\n\n case 'top-right': {\n return {\n newWidth: Math.min(\n effectiveMaxWidth,\n Math.max(minWidth, initialRect.width + deltaX)\n ),\n newHeight: Math.min(\n effectiveMaxHeight,\n Math.max(minHeight, initialRect.height - deltaY)\n ),\n }\n }\n\n case 'bottom-left': {\n return {\n newWidth: Math.min(\n effectiveMaxWidth,\n Math.max(minWidth, initialRect.width - deltaX)\n ),\n newHeight: Math.min(\n effectiveMaxHeight,\n Math.max(minHeight, initialRect.height + deltaY)\n ),\n }\n }\n\n case 'bottom-right':\n return {\n newWidth: Math.min(\n effectiveMaxWidth,\n Math.max(minWidth, initialRect.width + deltaX)\n ),\n newHeight: Math.min(\n effectiveMaxHeight,\n Math.max(minHeight, initialRect.height + deltaY)\n ),\n }\n default: {\n direction satisfies never\n return null!\n }\n }\n}\n","\n import API from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./dynamic-panel.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./dynamic-panel.css\";\n export default content && content.locals ? content.locals : undefined;\n","import { useRef, useState, useEffect, type CSSProperties } from 'react'\nimport { useDevOverlayContext } from '../../dev-overlay.browser'\nimport { INDICATOR_PADDING } from '../components/devtools-indicator/devtools-indicator'\nimport { ResizeHandle } from '../components/devtools-panel/resize/resize-handle'\nimport { ResizeProvider } from '../components/devtools-panel/resize/resize-provider'\nimport {\n DragHandle,\n DragProvider,\n} from '../components/errors/dev-tools-indicator/drag-context'\nimport { Draggable } from '../components/errors/dev-tools-indicator/draggable'\nimport { useClickOutsideAndEscape } from '../components/errors/dev-tools-indicator/utils'\nimport { usePanelRouterContext } from '../menu/context'\nimport { usePanelContext } from '../menu/panel-router'\nimport {\n ACTION_DEVTOOLS_PANEL_POSITION,\n STORAGE_KEY_PANEL_POSITION_PREFIX,\n STORE_KEY_PANEL_SIZE_PREFIX,\n STORE_KEY_SHARED_PANEL_LOCATION,\n STORE_KEY_SHARED_PANEL_SIZE,\n} from '../shared'\nimport { getIndicatorOffset } from '../utils/indicator-metrics'\nimport { saveDevToolsConfig } from '../utils/save-devtools-config'\nimport './dynamic-panel.css'\n\nfunction resolveCSSValue(\n value: string | number,\n dimension: 'width' | 'height' = 'width'\n): number {\n if (typeof value === 'number') return value\n\n // kinda hacky, might be a better way to do this\n const temp = document.createElement('div')\n temp.style.position = 'absolute'\n temp.style.visibility = 'hidden'\n if (dimension === 'width') {\n temp.style.width = value\n } else {\n temp.style.height = value\n }\n document.body.appendChild(temp)\n const pixels = dimension === 'width' ? temp.offsetWidth : temp.offsetHeight\n document.body.removeChild(temp)\n return pixels\n}\n\nfunction useResolvedDimensions(\n minWidth?: string | number,\n minHeight?: string | number,\n maxWidth?: string | number,\n maxHeight?: string | number\n) {\n const [dimensions, setDimensions] = useState(() => ({\n minWidth: minWidth ? resolveCSSValue(minWidth, 'width') : undefined,\n minHeight: minHeight ? resolveCSSValue(minHeight, 'height') : undefined,\n maxWidth: maxWidth ? resolveCSSValue(maxWidth, 'width') : undefined,\n maxHeight: maxHeight ? resolveCSSValue(maxHeight, 'height') : undefined,\n }))\n\n useEffect(() => {\n const updateDimensions = () => {\n setDimensions({\n minWidth: minWidth ? resolveCSSValue(minWidth, 'width') : undefined,\n minHeight: minHeight ? resolveCSSValue(minHeight, 'height') : undefined,\n maxWidth: maxWidth ? resolveCSSValue(maxWidth, 'width') : undefined,\n maxHeight: maxHeight ? resolveCSSValue(maxHeight, 'height') : undefined,\n })\n }\n\n window.addEventListener('resize', updateDimensions)\n return () => window.removeEventListener('resize', updateDimensions)\n }, [minWidth, minHeight, maxWidth, maxHeight])\n\n return dimensions\n}\n\nexport function DynamicPanel({\n header,\n children,\n draggable = false,\n sizeConfig = {\n kind: 'resizable',\n minWidth: 400,\n minHeight: 350,\n maxWidth: 1000,\n maxHeight: 1000,\n initialSize: {\n height: 400,\n width: 500,\n },\n },\n closeOnClickOutside = false,\n sharePanelSizeGlobally = true,\n sharePanelPositionGlobally = true,\n containerProps,\n}: {\n header: React.ReactNode\n children: React.ReactNode\n draggable?: boolean\n sharePanelSizeGlobally?: boolean\n sharePanelPositionGlobally?: boolean\n containerProps?: React.HTMLProps<HTMLDivElement>\n sizeConfig?:\n | {\n kind: 'resizable'\n minWidth: string | number\n minHeight: string | number\n maxWidth: string | number\n maxHeight: string | number\n initialSize: { height: number; width: number }\n sides?: Array<'horizontal' | 'vertical' | 'diagonal'>\n }\n | {\n kind: 'fixed'\n height: number\n width: number\n }\n closeOnClickOutside?: boolean\n}) {\n const { setPanel } = usePanelRouterContext()\n const { name, mounted } = usePanelContext()\n const resizeStorageKey = sharePanelSizeGlobally\n ? STORE_KEY_SHARED_PANEL_SIZE\n : `${STORE_KEY_PANEL_SIZE_PREFIX}_${name}`\n\n const positionStorageKey = sharePanelPositionGlobally\n ? STORE_KEY_SHARED_PANEL_LOCATION\n : `${STORAGE_KEY_PANEL_POSITION_PREFIX}_${name}`\n\n const { dispatch, state } = useDevOverlayContext()\n const devtoolsPanelPosition =\n state.devToolsPanelPosition[positionStorageKey] ?? state.devToolsPosition\n const [panelVertical, panelHorizontal] = devtoolsPanelPosition.split('-', 2)\n const resizeContainerRef = useRef<HTMLDivElement>(null)\n const { triggerRef } = usePanelRouterContext()\n\n useClickOutsideAndEscape(\n resizeContainerRef,\n triggerRef,\n mounted,\n (reason) => {\n switch (reason) {\n case 'escape': {\n setPanel('panel-selector')\n return\n }\n case 'outside': {\n if (closeOnClickOutside) {\n setPanel('panel-selector')\n }\n return\n }\n default: {\n return null!\n }\n }\n }\n )\n\n const indicatorOffset = getIndicatorOffset(state)\n\n const [indicatorVertical, indicatorHorizontal] = state.devToolsPosition.split(\n '-',\n 2\n )\n\n const verticalOffset =\n panelVertical === indicatorVertical &&\n panelHorizontal === indicatorHorizontal\n ? indicatorOffset\n : INDICATOR_PADDING\n\n const positionStyle = {\n [panelVertical]: `${verticalOffset}px`,\n [panelHorizontal]: `${INDICATOR_PADDING}px`,\n [panelVertical === 'top' ? 'bottom' : 'top']: 'auto',\n [panelHorizontal === 'left' ? 'right' : 'left']: 'auto',\n } as CSSProperties\n\n const isResizable = sizeConfig.kind === 'resizable'\n\n const resolvedDimensions = useResolvedDimensions(\n isResizable ? sizeConfig.minWidth : undefined,\n isResizable ? sizeConfig.minHeight : undefined,\n isResizable ? sizeConfig.maxWidth : undefined,\n isResizable ? sizeConfig.maxHeight : undefined\n )\n\n const minWidth = resolvedDimensions.minWidth\n const minHeight = resolvedDimensions.minHeight\n const maxWidth = resolvedDimensions.maxWidth\n const maxHeight = resolvedDimensions.maxHeight\n\n const panelSizeKey = name\n ? `${STORE_KEY_PANEL_SIZE_PREFIX}_${name}`\n : STORE_KEY_SHARED_PANEL_SIZE\n const panelSize = state.devToolsPanelSize[panelSizeKey]\n\n return (\n <ResizeProvider\n value={{\n resizeRef: resizeContainerRef,\n initialSize:\n sizeConfig.kind === 'resizable' ? sizeConfig.initialSize : sizeConfig,\n minWidth,\n minHeight,\n maxWidth,\n maxHeight,\n devToolsPosition: state.devToolsPosition,\n devToolsPanelSize: state.devToolsPanelSize,\n storageKey: resizeStorageKey,\n }}\n >\n <div\n tabIndex={-1}\n ref={resizeContainerRef}\n className=\"dynamic-panel-container\"\n style={\n {\n '--panel-top': positionStyle.top,\n '--panel-bottom': positionStyle.bottom,\n '--panel-left': positionStyle.left,\n '--panel-right': positionStyle.right,\n ...(isResizable\n ? {\n '--panel-min-width': minWidth ? `${minWidth}px` : undefined,\n '--panel-min-height': minHeight\n ? `${minHeight}px`\n : undefined,\n '--panel-max-width': maxWidth ? `${maxWidth}px` : undefined,\n '--panel-max-height': maxHeight\n ? `${maxHeight}px`\n : undefined,\n }\n : {\n '--panel-height': `${panelSize ? panelSize.height : sizeConfig.height}px`,\n '--panel-width': `${panelSize ? panelSize.width : sizeConfig.width}px`,\n }),\n } as React.CSSProperties & Record<string, string | number | undefined>\n }\n >\n <DragProvider disabled={!draggable}>\n <Draggable\n dragHandleSelector=\".resize-container\"\n avoidZone={{\n corner: state.devToolsPosition,\n square: 25 / state.scale,\n padding: INDICATOR_PADDING,\n }}\n padding={INDICATOR_PADDING}\n position={devtoolsPanelPosition}\n setPosition={(p) => {\n dispatch({\n type: ACTION_DEVTOOLS_PANEL_POSITION,\n devToolsPanelPosition: p,\n key: positionStorageKey,\n })\n\n if (sizeConfig.kind === 'resizable') {\n saveDevToolsConfig({\n devToolsPanelPosition: {\n [positionStorageKey]: p,\n },\n })\n }\n }}\n style={{\n overflow: 'auto',\n width: '100%',\n height: '100%',\n }}\n disableDrag={!draggable}\n >\n <>\n <div\n {...containerProps}\n className={`panel-content-container ${containerProps?.className || ''}`}\n style={{\n ...containerProps?.style,\n }}\n >\n <DragHandle>{header}</DragHandle>\n <div\n data-nextjs-scrollable-content\n className=\"draggable-content\"\n >\n {children}\n </div>\n </div>\n {isResizable && (\n <>\n {(!sizeConfig.sides ||\n sizeConfig.sides.includes('vertical')) && (\n <>\n <ResizeHandle\n position={devtoolsPanelPosition}\n direction=\"top\"\n />\n <ResizeHandle\n position={devtoolsPanelPosition}\n direction=\"bottom\"\n />\n </>\n )}\n {(!sizeConfig.sides ||\n sizeConfig.sides.includes('horizontal')) && (\n <>\n <ResizeHandle\n position={devtoolsPanelPosition}\n direction=\"right\"\n />\n <ResizeHandle\n position={devtoolsPanelPosition}\n direction=\"left\"\n />\n </>\n )}\n {(!sizeConfig.sides ||\n sizeConfig.sides.includes('diagonal')) && (\n <>\n <ResizeHandle\n position={devtoolsPanelPosition}\n direction=\"top-left\"\n />\n <ResizeHandle\n position={devtoolsPanelPosition}\n direction=\"top-right\"\n />\n <ResizeHandle\n position={devtoolsPanelPosition}\n direction=\"bottom-left\"\n />\n <ResizeHandle\n position={devtoolsPanelPosition}\n direction=\"bottom-right\"\n />\n </>\n )}\n </>\n )}\n </>\n </Draggable>\n </DragProvider>\n </div>\n </ResizeProvider>\n )\n}\n","import type { ComponentProps } from 'react'\n\nfunction StaticRouteContent({\n routerType,\n ...props\n}: { routerType: 'pages' | 'app' } & ComponentProps<'div'>) {\n return (\n <article className=\"dev-tools-info-article\" {...props}>\n <p className=\"dev-tools-info-paragraph\">\n The path{' '}\n <code className=\"dev-tools-info-code\">{window.location.pathname}</code>{' '}\n is marked as \"static\" since it will be prerendered during the build\n time.\n </p>\n <p className=\"dev-tools-info-paragraph\">\n With Static Rendering, routes are rendered at build time, or in the\n background after{' '}\n <a\n className=\"dev-tools-info-link\"\n href={\n routerType === 'pages'\n ? 'https://nextjs.org/docs/pages/building-your-application/data-fetching/incremental-static-regeneration'\n : `https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration`\n }\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n >\n data revalidation\n </a>\n .\n </p>\n <p className=\"dev-tools-info-paragraph\">\n Static rendering is useful when a route has data that is not\n personalized to the user and can be known at build time, such as a\n static blog post or a product page.\n </p>\n </article>\n )\n}\n\nfunction DynamicRouteContent({\n routerType,\n ...props\n}: { routerType: 'pages' | 'app' } & ComponentProps<'div'>) {\n return (\n <article className=\"dev-tools-info-article\" {...props}>\n <p className=\"dev-tools-info-paragraph\">\n The path{' '}\n <code className=\"dev-tools-info-code\">{window.location.pathname}</code>{' '}\n is marked as \"dynamic\" since it will be rendered for each user at{' '}\n <strong>request time</strong>.\n </p>\n <p className=\"dev-tools-info-paragraph\">\n Dynamic rendering is useful when a route has data that is personalized\n to the user or has information that can only be known at request time,\n such as cookies or the URL's search params.\n </p>\n {routerType === 'pages' ? (\n <p className=\"dev-tools-info-pagraph\">\n Exporting the{' '}\n <a\n className=\"dev-tools-info-link\"\n href=\"https://nextjs.org/docs/pages/building-your-application/data-fetching/get-server-side-props\"\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n >\n getServerSideProps\n </a>{' '}\n function will opt the route into dynamic rendering. This function will\n be called by the server on every request.\n </p>\n ) : (\n <p className=\"dev-tools-info-paragraph\">\n During rendering, if a{' '}\n <a\n className=\"dev-tools-info-link\"\n href=\"https://nextjs.org/docs/app/building-your-application/rendering/server-components#dynamic-apis\"\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n >\n Dynamic API\n </a>{' '}\n or a{' '}\n <a\n className=\"dev-tools-info-link\"\n href=\"https://nextjs.org/docs/app/api-reference/functions/fetch\"\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n >\n fetch\n </a>{' '}\n option of{' '}\n <code className=\"dev-tools-info-code\">{`{ cache: 'no-store' }`}</code>{' '}\n is discovered, Next.js will switch to dynamically rendering the whole\n route.\n </p>\n )}\n </article>\n )\n}\n\nexport const learnMoreLink = {\n pages: {\n static:\n 'https://nextjs.org/docs/pages/building-your-application/rendering/static-site-generation',\n dynamic:\n 'https://nextjs.org/docs/pages/building-your-application/rendering/server-side-rendering',\n },\n app: {\n static:\n 'https://nextjs.org/docs/app/building-your-application/rendering/server-components#static-rendering-default',\n dynamic:\n 'https://nextjs.org/docs/app/building-your-application/rendering/server-components#dynamic-rendering',\n },\n} as const\n\nexport function RouteInfoBody({\n routerType,\n isStaticRoute,\n ...props\n}: {\n routerType: 'pages' | 'app'\n isStaticRoute: boolean\n} & ComponentProps<'div'>) {\n return isStaticRoute ? (\n <StaticRouteContent routerType={routerType} {...props} />\n ) : (\n <DynamicRouteContent routerType={routerType} {...props} />\n )\n}\n","\n import API from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./segment-explorer.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./segment-explorer.css\";\n export default content && content.locals ? content.locals : undefined;\n","import { useSyncExternalStore } from 'react'\nimport type { SegmentNodeState } from '../userspace/app/segment-explorer-node'\n\n/**\n * Trie data structure for storing and searching paths\n *\n * This can be used to store app router paths and search for them efficiently.\n * e.g.\n *\n * [trie root]\n * ├── layout.js\n * ├── page.js\n * ├── blog\n * ├── layout.js\n * ├── page.js\n * ├── [slug]\n * ├── layout.js\n * ├── page.js\n **/\n\ntype TrieNode<Value = string> = {\n value: Value | undefined\n children: {\n [key: string]: TrieNode<Value> | undefined\n }\n}\n\ntype Trie<Value = string> = {\n insert: (value: Value) => void\n remove: (value: Value) => void\n getRoot: () => TrieNode<Value>\n}\n\nconst listeners = new Set<() => void>()\nconst createSegmentTreeStore = (): {\n subscribe: (callback: () => void) => () => void\n getSnapshot: () => SegmentTrieNode\n getServerSnapshot: () => SegmentTrieNode\n} => {\n // return a store that can be used by useSyncExternalStore\n return {\n subscribe: (callback) => {\n listeners.add(callback)\n return () => listeners.delete(callback)\n },\n getSnapshot: () => {\n return trie.getRoot()\n },\n getServerSnapshot: () => {\n return trie.getRoot()\n },\n }\n}\n\n// TODO: Move the Segment Tree into React State\nconst { subscribe, getSnapshot, getServerSnapshot } = createSegmentTreeStore()\n\nfunction createTrie<Value = string>({\n getCharacters = (item: Value) => [item] as string[],\n compare = (a: Value | undefined, b: Value | undefined) => a === b,\n}: {\n getCharacters?: (item: Value) => string[]\n compare?: (a: Value | undefined, b: Value | undefined) => boolean\n}): Trie<Value> {\n let root: TrieNode<Value> = {\n value: undefined,\n children: {},\n }\n\n function markUpdated() {\n for (const listener of listeners) {\n listener()\n }\n }\n\n function insert(value: Value) {\n let currentNode = root\n const segments = getCharacters(value)\n\n for (const segment of segments) {\n if (!currentNode.children[segment]) {\n currentNode.children[segment] = {\n value: undefined,\n // Skip value for intermediate nodes\n children: {},\n }\n }\n currentNode = currentNode.children[segment]\n }\n\n currentNode.value = value\n\n root = { ...root }\n markUpdated()\n }\n\n function remove(value: Value) {\n let currentNode = root\n const segments = getCharacters(value)\n\n const stack: TrieNode<Value>[] = []\n let found = true\n for (const segment of segments) {\n if (!currentNode.children[segment]) {\n found = false\n break\n }\n stack.push(currentNode)\n currentNode = currentNode.children[segment]!\n }\n // If the value is not found, skip removal\n if (!found || !compare(currentNode.value, value)) {\n return\n }\n currentNode.value = undefined\n for (let i = stack.length - 1; i >= 0; i--) {\n const parentNode = stack[i]\n const segment = segments[i]\n if (Object.keys(parentNode.children[segment]!.children).length === 0) {\n delete parentNode.children[segment]\n }\n }\n\n root = { ...root }\n markUpdated()\n }\n\n function getRoot(): TrieNode<Value> {\n return root\n }\n\n return { insert, remove, getRoot }\n}\n\ntype SegmentTrie = Trie<SegmentNodeState>\nexport type SegmentTrieNode = TrieNode<SegmentNodeState>\n\nconst trie: SegmentTrie = createTrie({\n compare: (a, b) => {\n if (!a || !b) return false\n return (\n a.pagePath === b.pagePath &&\n a.type === b.type &&\n a.boundaryType === b.boundaryType\n )\n },\n getCharacters: (item) => item.pagePath.split('/'),\n})\nexport const insertSegmentNode = trie.insert\nexport const removeSegmentNode = trie.remove\nexport const getSegmentTrieRoot = trie.getRoot\n\nexport function useSegmentTree(): SegmentTrieNode {\n const state = useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot)\n return state\n}\n","\n import API from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./segment-boundary-trigger.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./segment-boundary-trigger.css\";\n export default content && content.locals ? content.locals : undefined;\n","'use client';\n\nimport * as React from 'react';\nconst UNINITIALIZED = {};\n\n/**\n * A React.useRef() that is initialized with a function. Note that it accepts an optional\n * initialization argument, so the initialization function doesn't need to be an inline closure.\n *\n * @usage\n * const ref = useRefWithInit(sortColumns, columns)\n */\n\nexport function useRefWithInit(init, initArg) {\n const ref = React.useRef(UNINITIALIZED);\n if (ref.current === UNINITIALIZED) {\n ref.current = init(initArg);\n }\n return ref;\n}","'use client';\n\nimport * as React from 'react';\nconst EMPTY = [];\n\n/**\n * A React.useEffect equivalent that runs once, when the component is mounted.\n */\nexport function useOnMount(fn) {\n // TODO: uncomment once we enable eslint-plugin-react-compiler // eslint-disable-next-line react-compiler/react-compiler -- no need to put `fn` in the dependency array\n /* eslint-disable react-hooks/exhaustive-deps */\n React.useEffect(fn, EMPTY);\n /* eslint-enable react-hooks/exhaustive-deps */\n}","'use client';\n\nimport { useRefWithInit } from \"./useRefWithInit.js\";\nimport { useOnMount } from \"./useOnMount.js\";\nconst EMPTY = 0;\nexport class Timeout {\n static create() {\n return new Timeout();\n }\n currentId = (() => EMPTY)();\n\n /**\n * Executes `fn` after `delay`, clearing any previously scheduled call.\n */\n start(delay, fn) {\n this.clear();\n this.currentId = setTimeout(() => {\n this.currentId = EMPTY;\n fn();\n }, delay); /* Node.js types are enabled in development */\n }\n isStarted() {\n return this.currentId !== EMPTY;\n }\n clear = () => {\n if (this.currentId !== EMPTY) {\n clearTimeout(this.currentId);\n this.currentId = EMPTY;\n }\n };\n disposeEffect = () => {\n return this.clear;\n };\n}\n\n/**\n * A `setTimeout` with automatic cleanup and guard.\n */\nexport function useTimeout() {\n const timeout = useRefWithInit(Timeout.create).current;\n useOnMount(timeout.disposeEffect);\n return timeout;\n}","'use client';\n\nimport * as React from 'react';\nimport { useRefWithInit } from \"./useRefWithInit.js\";\n\n// https://github.com/mui/material-ui/issues/41190#issuecomment-2040873379\nconst useInsertionEffect = React[`useInsertionEffect${Math.random().toFixed(1)}`.slice(0, -3)];\nconst useSafeInsertionEffect =\n// React 17 doesn't have useInsertionEffect.\nuseInsertionEffect &&\n// Preact replaces useInsertionEffect with useLayoutEffect and fires too late.\nuseInsertionEffect !== React.useLayoutEffect ? useInsertionEffect : fn => fn();\nexport function useEventCallback(callback) {\n const stable = useRefWithInit(createStableCallback).current;\n stable.next = callback;\n useSafeInsertionEffect(stable.effect);\n return stable.trampoline;\n}\nfunction createStableCallback() {\n const stable = {\n next: undefined,\n callback: assertNotCalled,\n trampoline: (...args) => stable.callback?.(...args),\n effect: () => {\n stable.callback = stable.next;\n }\n };\n return stable;\n}\nfunction assertNotCalled() {\n if (process.env.NODE_ENV !== 'production') {\n throw new Error('Base UI: Cannot call an event handler while rendering.');\n }\n}","'use client';\n\n// TODO: uncomment once we enable eslint-plugin-react-compiler // eslint-disable-next-line react-compiler/react-compiler -- process.env never changes, dependency arrays are intentionally ignored\n/* eslint-disable react-hooks/rules-of-hooks, react-hooks/exhaustive-deps */\nimport * as React from 'react';\nexport function useControlled({\n controlled,\n default: defaultProp,\n name,\n state = 'value'\n}) {\n // isControlled is ignored in the hook dependency lists as it should never change.\n const {\n current: isControlled\n } = React.useRef(controlled !== undefined);\n const [valueState, setValue] = React.useState(defaultProp);\n const value = isControlled ? controlled : valueState;\n if (process.env.NODE_ENV !== 'production') {\n React.useEffect(() => {\n if (isControlled !== (controlled !== undefined)) {\n console.error([`Base UI: A component is changing the ${isControlled ? '' : 'un'}controlled ${state} state of ${name} to be ${isControlled ? 'un' : ''}controlled.`, 'Elements should not switch from uncontrolled to controlled (or vice versa).', `Decide between using a controlled or uncontrolled ${name} ` + 'element for the lifetime of the component.', \"The nature of the state is determined during the first render. It's considered controlled if the value is not `undefined`.\", 'More info: https://fb.me/react-controlled-components'].join('\\n'));\n }\n }, [state, name, controlled]);\n const {\n current: defaultValue\n } = React.useRef(defaultProp);\n React.useEffect(() => {\n // Object.is() is not equivalent to the === operator.\n // See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is for more details.\n if (!isControlled && !Object.is(defaultValue, defaultProp)) {\n console.error([`Base UI: A component is changing the default ${state} state of an uncontrolled ${name} after being initialized. ` + `To suppress this warning opt to use a controlled ${name}.`].join('\\n'));\n }\n }, [JSON.stringify(defaultProp)]);\n }\n const setValueIfUncontrolled = React.useCallback(newValue => {\n if (!isControlled) {\n setValue(newValue);\n }\n }, []);\n return [value, setValueIfUncontrolled];\n}","import * as React from 'react';\n\n// https://github.com/mui/material-ui/issues/41190#issuecomment-2040873379\nexport const SafeReact = {\n ...React\n};","'use client';\n\nimport * as React from 'react';\nimport { SafeReact } from \"./safeReact.js\";\nlet globalId = 0;\n\n// TODO React 17: Remove `useGlobalId` once React 17 support is removed\nfunction useGlobalId(idOverride, prefix = 'mui') {\n const [defaultId, setDefaultId] = React.useState(idOverride);\n const id = idOverride || defaultId;\n React.useEffect(() => {\n if (defaultId == null) {\n // Fallback to this default id when possible.\n // Use the incrementing value for client-side rendering only.\n // We can't use it server-side.\n // If you want to use random values please consider the Birthday Problem: https://en.wikipedia.org/wiki/Birthday_problem\n globalId += 1;\n setDefaultId(`${prefix}-${globalId}`);\n }\n }, [defaultId, prefix]);\n return id;\n}\nconst maybeReactUseId = SafeReact.useId;\n\n/**\n *\n * @example <div id={useId()} />\n * @param idOverride\n * @returns {string}\n */\nexport function useId(idOverride, prefix) {\n // React.useId() is only available from React 17.0.0.\n if (maybeReactUseId !== undefined) {\n const reactId = maybeReactUseId();\n return idOverride ?? (prefix ? `${prefix}-${reactId}` : reactId);\n }\n\n // TODO: uncomment once we enable eslint-plugin-react-compiler // eslint-disable-next-line react-compiler/react-compiler\n // eslint-disable-next-line react-hooks/rules-of-hooks -- `React.useId` is invariant at runtime.\n return useGlobalId(idOverride, prefix);\n}","export function createEventEmitter() {\n const map = new Map();\n return {\n emit(event, data) {\n map.get(event)?.forEach(listener => listener(data));\n },\n on(event, listener) {\n if (!map.has(event)) {\n map.set(event, new Set());\n }\n map.get(event).add(listener);\n },\n off(event, listener) {\n map.get(event)?.delete(listener);\n }\n };\n}","'use client';\n\nimport * as React from 'react';\nconst noop = () => {};\nexport const useIsoLayoutEffect = typeof document !== 'undefined' ? React.useLayoutEffect : noop;","import * as React from 'react';\nimport { useId } from '@base-ui-components/utils/useId';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { createEventEmitter } from \"../utils/createEventEmitter.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst FloatingNodeContext = /*#__PURE__*/React.createContext(null);\nif (process.env.NODE_ENV !== \"production\") FloatingNodeContext.displayName = \"FloatingNodeContext\";\nconst FloatingTreeContext = /*#__PURE__*/React.createContext(null);\n\n/**\n * Returns the parent node id for nested floating elements, if available.\n * Returns `null` for top-level floating elements.\n */\nif (process.env.NODE_ENV !== \"production\") FloatingTreeContext.displayName = \"FloatingTreeContext\";\nexport const useFloatingParentNodeId = () => React.useContext(FloatingNodeContext)?.id || null;\n\n/**\n * Returns the nearest floating tree context, if available.\n */\nexport const useFloatingTree = () => React.useContext(FloatingTreeContext);\n\n/**\n * Registers a node into the `FloatingTree`, returning its id.\n * @see https://floating-ui.com/docs/FloatingTree\n */\nexport function useFloatingNodeId(customParentId) {\n const id = useId();\n const tree = useFloatingTree();\n const reactParentId = useFloatingParentNodeId();\n const parentId = customParentId || reactParentId;\n useIsoLayoutEffect(() => {\n if (!id) {\n return undefined;\n }\n const node = {\n id,\n parentId\n };\n tree?.addNode(node);\n return () => {\n tree?.removeNode(node);\n };\n }, [tree, id, parentId]);\n return id;\n}\n/**\n * Provides parent node context for nested floating elements.\n * @see https://floating-ui.com/docs/FloatingTree\n * @internal\n */\nexport function FloatingNode(props) {\n const {\n children,\n id\n } = props;\n const parentId = useFloatingParentNodeId();\n return /*#__PURE__*/_jsx(FloatingNodeContext.Provider, {\n value: React.useMemo(() => ({\n id,\n parentId\n }), [id, parentId]),\n children: children\n });\n}\n/**\n * Provides context for nested floating elements when they are not children of\n * each other on the DOM.\n * This is not necessary in all cases, except when there must be explicit communication between parent and child floating elements. It is necessary for:\n * - The `bubbles` option in the `useDismiss()` Hook\n * - Nested virtual list navigation\n * - Nested floating elements that each open on hover\n * - Custom communication between parent and child floating elements\n * @see https://floating-ui.com/docs/FloatingTree\n * @internal\n */\nexport function FloatingTree(props) {\n const {\n children\n } = props;\n const nodesRef = React.useRef([]);\n const addNode = React.useCallback(node => {\n nodesRef.current = [...nodesRef.current, node];\n }, []);\n const removeNode = React.useCallback(node => {\n nodesRef.current = nodesRef.current.filter(n => n !== node);\n }, []);\n const [events] = React.useState(() => createEventEmitter());\n return /*#__PURE__*/_jsx(FloatingTreeContext.Provider, {\n value: React.useMemo(() => ({\n nodesRef,\n addNode,\n removeNode,\n events\n }), [addNode, removeNode, events]),\n children: children\n });\n}","import * as React from 'react';\nimport { isElement } from '@floating-ui/utils/dom';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useId } from '@base-ui-components/utils/useId';\nimport { createEventEmitter } from \"../utils/createEventEmitter.js\";\nimport { useFloatingParentNodeId } from \"../components/FloatingTree.js\";\nexport function useFloatingRootContext(options) {\n const {\n open = false,\n onOpenChange: onOpenChangeProp,\n elements: elementsProp\n } = options;\n const floatingId = useId();\n const dataRef = React.useRef({});\n const [events] = React.useState(() => createEventEmitter());\n const nested = useFloatingParentNodeId() != null;\n if (process.env.NODE_ENV !== 'production') {\n const optionDomReference = elementsProp.reference;\n if (optionDomReference && !isElement(optionDomReference)) {\n console.error('Cannot pass a virtual element to the `elements.reference` option,', 'as it must be a real DOM element. Use `refs.setPositionReference()`', 'instead.');\n }\n }\n const [positionReference, setPositionReference] = React.useState(elementsProp.reference);\n const onOpenChange = useEventCallback((newOpen, event, reason) => {\n dataRef.current.openEvent = newOpen ? event : undefined;\n events.emit('openchange', {\n open: newOpen,\n event,\n reason,\n nested\n });\n onOpenChangeProp?.(newOpen, event, reason);\n });\n const refs = React.useMemo(() => ({\n setPositionReference\n }), []);\n const elements = React.useMemo(() => ({\n reference: positionReference || elementsProp.reference || null,\n floating: elementsProp.floating || null,\n domReference: elementsProp.reference\n }), [positionReference, elementsProp.reference, elementsProp.floating]);\n return React.useMemo(() => ({\n dataRef,\n open,\n onOpenChange,\n elements,\n events,\n floatingId,\n refs\n }), [open, onOpenChange, elements, events, floatingId, refs]);\n}","function hasWindow() {\n return typeof window !== 'undefined';\n}\nfunction getNodeName(node) {\n if (isNode(node)) {\n return (node.nodeName || '').toLowerCase();\n }\n // Mocked nodes in testing environments may not be instances of Node. By\n // returning `#document` an infinite loop won't occur.\n // https://github.com/floating-ui/floating-ui/issues/2317\n return '#document';\n}\nfunction getWindow(node) {\n var _node$ownerDocument;\n return (node == null || (_node$ownerDocument = node.ownerDocument) == null ? void 0 : _node$ownerDocument.defaultView) || window;\n}\nfunction getDocumentElement(node) {\n var _ref;\n return (_ref = (isNode(node) ? node.ownerDocument : node.document) || window.document) == null ? void 0 : _ref.documentElement;\n}\nfunction isNode(value) {\n if (!hasWindow()) {\n return false;\n }\n return value instanceof Node || value instanceof getWindow(value).Node;\n}\nfunction isElement(value) {\n if (!hasWindow()) {\n return false;\n }\n return value instanceof Element || value instanceof getWindow(value).Element;\n}\nfunction isHTMLElement(value) {\n if (!hasWindow()) {\n return false;\n }\n return value instanceof HTMLElement || value instanceof getWindow(value).HTMLElement;\n}\nfunction isShadowRoot(value) {\n if (!hasWindow() || typeof ShadowRoot === 'undefined') {\n return false;\n }\n return value instanceof ShadowRoot || value instanceof getWindow(value).ShadowRoot;\n}\nconst invalidOverflowDisplayValues = /*#__PURE__*/new Set(['inline', 'contents']);\nfunction isOverflowElement(element) {\n const {\n overflow,\n overflowX,\n overflowY,\n display\n } = getComputedStyle(element);\n return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !invalidOverflowDisplayValues.has(display);\n}\nconst tableElements = /*#__PURE__*/new Set(['table', 'td', 'th']);\nfunction isTableElement(element) {\n return tableElements.has(getNodeName(element));\n}\nconst topLayerSelectors = [':popover-open', ':modal'];\nfunction isTopLayer(element) {\n return topLayerSelectors.some(selector => {\n try {\n return element.matches(selector);\n } catch (_e) {\n return false;\n }\n });\n}\nconst transformProperties = ['transform', 'translate', 'scale', 'rotate', 'perspective'];\nconst willChangeValues = ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'];\nconst containValues = ['paint', 'layout', 'strict', 'content'];\nfunction isContainingBlock(elementOrCss) {\n const webkit = isWebKit();\n const css = isElement(elementOrCss) ? getComputedStyle(elementOrCss) : elementOrCss;\n\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n // https://drafts.csswg.org/css-transforms-2/#individual-transforms\n return transformProperties.some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || willChangeValues.some(value => (css.willChange || '').includes(value)) || containValues.some(value => (css.contain || '').includes(value));\n}\nfunction getContainingBlock(element) {\n let currentNode = getParentNode(element);\n while (isHTMLElement(currentNode) && !isLastTraversableNode(currentNode)) {\n if (isContainingBlock(currentNode)) {\n return currentNode;\n } else if (isTopLayer(currentNode)) {\n return null;\n }\n currentNode = getParentNode(currentNode);\n }\n return null;\n}\nfunction isWebKit() {\n if (typeof CSS === 'undefined' || !CSS.supports) return false;\n return CSS.supports('-webkit-backdrop-filter', 'none');\n}\nconst lastTraversableNodeNames = /*#__PURE__*/new Set(['html', 'body', '#document']);\nfunction isLastTraversableNode(node) {\n return lastTraversableNodeNames.has(getNodeName(node));\n}\nfunction getComputedStyle(element) {\n return getWindow(element).getComputedStyle(element);\n}\nfunction getNodeScroll(element) {\n if (isElement(element)) {\n return {\n scrollLeft: element.scrollLeft,\n scrollTop: element.scrollTop\n };\n }\n return {\n scrollLeft: element.scrollX,\n scrollTop: element.scrollY\n };\n}\nfunction getParentNode(node) {\n if (getNodeName(node) === 'html') {\n return node;\n }\n const result =\n // Step into the shadow DOM of the parent of a slotted node.\n node.assignedSlot ||\n // DOM Element detected.\n node.parentNode ||\n // ShadowRoot detected.\n isShadowRoot(node) && node.host ||\n // Fallback.\n getDocumentElement(node);\n return isShadowRoot(result) ? result.host : result;\n}\nfunction getNearestOverflowAncestor(node) {\n const parentNode = getParentNode(node);\n if (isLastTraversableNode(parentNode)) {\n return node.ownerDocument ? node.ownerDocument.body : node.body;\n }\n if (isHTMLElement(parentNode) && isOverflowElement(parentNode)) {\n return parentNode;\n }\n return getNearestOverflowAncestor(parentNode);\n}\nfunction getOverflowAncestors(node, list, traverseIframes) {\n var _node$ownerDocument2;\n if (list === void 0) {\n list = [];\n }\n if (traverseIframes === void 0) {\n traverseIframes = true;\n }\n const scrollableAncestor = getNearestOverflowAncestor(node);\n const isBody = scrollableAncestor === ((_node$ownerDocument2 = node.ownerDocument) == null ? void 0 : _node$ownerDocument2.body);\n const win = getWindow(scrollableAncestor);\n if (isBody) {\n const frameElement = getFrameElement(win);\n return list.concat(win, win.visualViewport || [], isOverflowElement(scrollableAncestor) ? scrollableAncestor : [], frameElement && traverseIframes ? getOverflowAncestors(frameElement) : []);\n }\n return list.concat(scrollableAncestor, getOverflowAncestors(scrollableAncestor, [], traverseIframes));\n}\nfunction getFrameElement(win) {\n return win.parent && Object.getPrototypeOf(win.parent) ? win.frameElement : null;\n}\n\nexport { getComputedStyle, getContainingBlock, getDocumentElement, getFrameElement, getNearestOverflowAncestor, getNodeName, getNodeScroll, getOverflowAncestors, getParentNode, getWindow, isContainingBlock, isElement, isHTMLElement, isLastTraversableNode, isNode, isOverflowElement, isShadowRoot, isTableElement, isTopLayer, isWebKit };\n","'use client';\n\nimport { useIsoLayoutEffect } from \"./useIsoLayoutEffect.js\";\nimport { useRefWithInit } from \"./useRefWithInit.js\";\nexport function useLatestRef(value) {\n const latest = useRefWithInit(createLatestRef, value).current;\n latest.next = value;\n\n // eslint-disable-next-line react-hooks/exhaustive-deps\n useIsoLayoutEffect(latest.effect);\n return latest;\n}\nfunction createLatestRef(value) {\n const latest = {\n current: value,\n next: value,\n effect: () => {\n latest.current = latest.next;\n }\n };\n return latest;\n}","const hasNavigator = typeof navigator !== 'undefined';\nconst nav = getNavigatorData();\nconst platform = getPlatform();\nconst userAgent = getUserAgent();\nexport const isWebKit = typeof CSS === 'undefined' || !CSS.supports ? false : CSS.supports('-webkit-backdrop-filter:none');\nexport const isIOS =\n// iPads can claim to be MacIntel\nnav.platform === 'MacIntel' && nav.maxTouchPoints > 1 ? true : /iP(hone|ad|od)|iOS/.test(nav.platform);\nexport const isFirefox = hasNavigator && /firefox/i.test(userAgent);\nexport const isSafari = hasNavigator && /apple/i.test(navigator.vendor);\nexport const isAndroid = hasNavigator && /android/i.test(platform) || /android/i.test(userAgent);\nexport const isMac = hasNavigator && platform.toLowerCase().startsWith('mac') && !navigator.maxTouchPoints;\nexport const isJSDOM = userAgent.includes('jsdom/');\n\n// Avoid Chrome DevTools blue warning.\nfunction getNavigatorData() {\n if (!hasNavigator) {\n return {\n platform: '',\n maxTouchPoints: -1\n };\n }\n const uaData = navigator.userAgentData;\n if (uaData?.platform) {\n return {\n platform: uaData.platform,\n maxTouchPoints: navigator.maxTouchPoints\n };\n }\n return {\n platform: navigator.platform ?? '',\n maxTouchPoints: navigator.maxTouchPoints ?? -1\n };\n}\nfunction getUserAgent() {\n if (!hasNavigator) {\n return '';\n }\n const uaData = navigator.userAgentData;\n if (uaData && Array.isArray(uaData.brands)) {\n return uaData.brands.map(({\n brand,\n version\n }) => `${brand}/${version}`).join(' ');\n }\n return navigator.userAgent;\n}\nfunction getPlatform() {\n if (!hasNavigator) {\n return '';\n }\n const uaData = navigator.userAgentData;\n if (uaData?.platform) {\n return uaData.platform;\n }\n return navigator.platform ?? '';\n}","import { isAndroid, isJSDOM } from '@base-ui-components/utils/detectBrowser';\nexport function stopEvent(event) {\n event.preventDefault();\n event.stopPropagation();\n}\nexport function isReactEvent(event) {\n return 'nativeEvent' in event;\n}\n\n// License: https://github.com/adobe/react-spectrum/blob/b35d5c02fe900badccd0cf1a8f23bb593419f238/packages/@react-aria/utils/src/isVirtualEvent.ts\nexport function isVirtualClick(event) {\n // FIXME: Firefox is now emitting a deprecation warning for `mozInputSource`.\n // Try to find a workaround for this. `react-aria` source still has the check.\n if (event.mozInputSource === 0 && event.isTrusted) {\n return true;\n }\n if (isAndroid && event.pointerType) {\n return event.type === 'click' && event.buttons === 1;\n }\n return event.detail === 0 && !event.pointerType;\n}\nexport function isVirtualPointerEvent(event) {\n if (isJSDOM) {\n return false;\n }\n return !isAndroid && event.width === 0 && event.height === 0 || isAndroid && event.width === 1 && event.height === 1 && event.pressure === 0 && event.detail === 0 && event.pointerType === 'mouse' ||\n // iOS VoiceOver returns 0.333• for width/height.\n event.width < 1 && event.height < 1 && event.pressure === 0 && event.detail === 0 && event.pointerType === 'touch';\n}\nexport function isMouseLikePointerType(pointerType, strict) {\n // On some Linux machines with Chromium, mouse inputs return a `pointerType`\n // of \"pen\": https://github.com/floating-ui/floating-ui/issues/2015\n const values = ['mouse', 'pen'];\n if (!strict) {\n values.push('', undefined);\n }\n return values.includes(pointerType);\n}","export const FOCUSABLE_ATTRIBUTE = 'data-base-ui-focusable';\nexport const ACTIVE_KEY = 'active';\nexport const SELECTED_KEY = 'selected';\nexport const TYPEABLE_SELECTOR = \"input:not([type='hidden']):not([disabled]),\" + \"[contenteditable]:not([contenteditable='false']),textarea:not([disabled])\";\nexport const ARROW_LEFT = 'ArrowLeft';\nexport const ARROW_RIGHT = 'ArrowRight';\nexport const ARROW_UP = 'ArrowUp';\nexport const ARROW_DOWN = 'ArrowDown';","import { isHTMLElement, isShadowRoot } from '@floating-ui/utils/dom';\nimport { isJSDOM } from '@base-ui-components/utils/detectBrowser';\nimport { FOCUSABLE_ATTRIBUTE, TYPEABLE_SELECTOR } from \"./constants.js\";\nexport function activeElement(doc) {\n let element = doc.activeElement;\n while (element?.shadowRoot?.activeElement != null) {\n element = element.shadowRoot.activeElement;\n }\n return element;\n}\nexport function contains(parent, child) {\n if (!parent || !child) {\n return false;\n }\n const rootNode = child.getRootNode?.();\n\n // First, attempt with faster native method\n if (parent.contains(child)) {\n return true;\n }\n\n // then fallback to custom implementation with Shadow DOM support\n if (rootNode && isShadowRoot(rootNode)) {\n let next = child;\n while (next) {\n if (parent === next) {\n return true;\n }\n // @ts-ignore\n next = next.parentNode || next.host;\n }\n }\n\n // Give up, the result is false\n return false;\n}\nexport function getTarget(event) {\n if ('composedPath' in event) {\n return event.composedPath()[0];\n }\n\n // TS thinks `event` is of type never as it assumes all browsers support\n // `composedPath()`, but browsers without shadow DOM don't.\n return event.target;\n}\nexport function isEventTargetWithin(event, node) {\n if (node == null) {\n return false;\n }\n if ('composedPath' in event) {\n return event.composedPath().includes(node);\n }\n\n // TS thinks `event` is of type never as it assumes all browsers support composedPath, but browsers without shadow dom don't\n const eventAgain = event;\n return eventAgain.target != null && node.contains(eventAgain.target);\n}\nexport function isRootElement(element) {\n return element.matches('html,body');\n}\nexport function getDocument(node) {\n return node?.ownerDocument || document;\n}\nexport function isTypeableElement(element) {\n return isHTMLElement(element) && element.matches(TYPEABLE_SELECTOR);\n}\nexport function isTypeableCombobox(element) {\n if (!element) {\n return false;\n }\n return element.getAttribute('role') === 'combobox' && isTypeableElement(element);\n}\nexport function matchesFocusVisible(element) {\n // We don't want to block focus from working with `visibleOnly`\n // (JSDOM doesn't match `:focus-visible` when the element has `:focus`)\n if (!element || isJSDOM) {\n return true;\n }\n try {\n return element.matches(':focus-visible');\n } catch (_e) {\n return true;\n }\n}\nexport function getFloatingFocusElement(floatingElement) {\n if (!floatingElement) {\n return null;\n }\n // Try to find the element that has `{...getFloatingProps()}` spread on it.\n // This indicates the floating element is acting as a positioning wrapper, and\n // so focus should be managed on the child element with the event handlers and\n // aria props.\n return floatingElement.hasAttribute(FOCUSABLE_ATTRIBUTE) ? floatingElement : floatingElement.querySelector(`[${FOCUSABLE_ATTRIBUTE}]`) || floatingElement;\n}","export function createAttribute(name) {\n return `data-base-ui-${name}`;\n}","import * as React from 'react';\nimport { isElement } from '@floating-ui/utils/dom';\nimport { useTimeout } from '@base-ui-components/utils/useTimeout';\nimport { useLatestRef } from '@base-ui-components/utils/useLatestRef';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { contains, getDocument, isMouseLikePointerType } from \"../utils.js\";\nimport { useFloatingParentNodeId, useFloatingTree } from \"../components/FloatingTree.js\";\nimport { createAttribute } from \"../utils/createAttribute.js\";\nconst safePolygonIdentifier = createAttribute('safe-polygon');\nexport function getDelay(value, prop, pointerType) {\n if (pointerType && !isMouseLikePointerType(pointerType)) {\n return 0;\n }\n if (typeof value === 'number') {\n return value;\n }\n if (typeof value === 'function') {\n const result = value();\n if (typeof result === 'number') {\n return result;\n }\n return result?.[prop];\n }\n return value?.[prop];\n}\nfunction getRestMs(value) {\n if (typeof value === 'function') {\n return value();\n }\n return value;\n}\n/**\n * Opens the floating element while hovering over the reference element, like\n * CSS `:hover`.\n * @see https://floating-ui.com/docs/useHover\n */\nexport function useHover(context, props = {}) {\n const {\n open,\n onOpenChange,\n dataRef,\n events,\n elements\n } = context;\n const {\n enabled = true,\n delay = 0,\n handleClose = null,\n mouseOnly = false,\n restMs = 0,\n move = true\n } = props;\n const tree = useFloatingTree();\n const parentId = useFloatingParentNodeId();\n const handleCloseRef = useLatestRef(handleClose);\n const delayRef = useLatestRef(delay);\n const openRef = useLatestRef(open);\n const restMsRef = useLatestRef(restMs);\n const pointerTypeRef = React.useRef(undefined);\n const timeout = useTimeout();\n const handlerRef = React.useRef(undefined);\n const restTimeout = useTimeout();\n const blockMouseMoveRef = React.useRef(true);\n const performedPointerEventsMutationRef = React.useRef(false);\n const unbindMouseMoveRef = React.useRef(() => {});\n const restTimeoutPendingRef = React.useRef(false);\n const isHoverOpen = useEventCallback(() => {\n const type = dataRef.current.openEvent?.type;\n return type?.includes('mouse') && type !== 'mousedown';\n });\n\n // When closing before opening, clear the delay timeouts to cancel it\n // from showing.\n React.useEffect(() => {\n if (!enabled) {\n return undefined;\n }\n function onOpenChangeLocal({\n open: newOpen\n }) {\n if (!newOpen) {\n timeout.clear();\n restTimeout.clear();\n blockMouseMoveRef.current = true;\n restTimeoutPendingRef.current = false;\n }\n }\n events.on('openchange', onOpenChangeLocal);\n return () => {\n events.off('openchange', onOpenChangeLocal);\n };\n }, [enabled, events, timeout, restTimeout]);\n React.useEffect(() => {\n if (!enabled) {\n return undefined;\n }\n if (!handleCloseRef.current) {\n return undefined;\n }\n if (!open) {\n return undefined;\n }\n function onLeave(event) {\n if (isHoverOpen()) {\n onOpenChange(false, event, 'hover');\n }\n }\n const html = getDocument(elements.floating).documentElement;\n html.addEventListener('mouseleave', onLeave);\n return () => {\n html.removeEventListener('mouseleave', onLeave);\n };\n }, [elements.floating, open, onOpenChange, enabled, handleCloseRef, isHoverOpen]);\n const closeWithDelay = React.useCallback((event, runElseBranch = true, reason = 'hover') => {\n const closeDelay = getDelay(delayRef.current, 'close', pointerTypeRef.current);\n if (closeDelay && !handlerRef.current) {\n timeout.start(closeDelay, () => onOpenChange(false, event, reason));\n } else if (runElseBranch) {\n timeout.clear();\n onOpenChange(false, event, reason);\n }\n }, [delayRef, onOpenChange, timeout]);\n const cleanupMouseMoveHandler = useEventCallback(() => {\n unbindMouseMoveRef.current();\n handlerRef.current = undefined;\n });\n const clearPointerEvents = useEventCallback(() => {\n if (performedPointerEventsMutationRef.current) {\n const body = getDocument(elements.floating).body;\n body.style.pointerEvents = '';\n body.removeAttribute(safePolygonIdentifier);\n performedPointerEventsMutationRef.current = false;\n }\n });\n const isClickLikeOpenEvent = useEventCallback(() => {\n return dataRef.current.openEvent ? ['click', 'mousedown'].includes(dataRef.current.openEvent.type) : false;\n });\n\n // Registering the mouse events on the reference directly to bypass React's\n // delegation system. If the cursor was on a disabled element and then entered\n // the reference (no gap), `mouseenter` doesn't fire in the delegation system.\n React.useEffect(() => {\n if (!enabled) {\n return undefined;\n }\n function onReferenceMouseEnter(event) {\n timeout.clear();\n blockMouseMoveRef.current = false;\n if (mouseOnly && !isMouseLikePointerType(pointerTypeRef.current) || getRestMs(restMsRef.current) > 0 && !getDelay(delayRef.current, 'open')) {\n return;\n }\n const openDelay = getDelay(delayRef.current, 'open', pointerTypeRef.current);\n if (openDelay) {\n timeout.start(openDelay, () => {\n if (!openRef.current) {\n onOpenChange(true, event, 'hover');\n }\n });\n } else if (!open) {\n onOpenChange(true, event, 'hover');\n }\n }\n function onReferenceMouseLeave(event) {\n if (isClickLikeOpenEvent()) {\n clearPointerEvents();\n return;\n }\n unbindMouseMoveRef.current();\n const doc = getDocument(elements.floating);\n restTimeout.clear();\n restTimeoutPendingRef.current = false;\n if (handleCloseRef.current && dataRef.current.floatingContext) {\n // Prevent clearing `onScrollMouseLeave` timeout.\n if (!open) {\n timeout.clear();\n }\n handlerRef.current = handleCloseRef.current({\n ...dataRef.current.floatingContext,\n tree,\n x: event.clientX,\n y: event.clientY,\n onClose() {\n clearPointerEvents();\n cleanupMouseMoveHandler();\n if (!isClickLikeOpenEvent()) {\n closeWithDelay(event, true, 'safe-polygon');\n }\n }\n });\n const handler = handlerRef.current;\n doc.addEventListener('mousemove', handler);\n unbindMouseMoveRef.current = () => {\n doc.removeEventListener('mousemove', handler);\n };\n return;\n }\n\n // Allow interactivity without `safePolygon` on touch devices. With a\n // pointer, a short close delay is an alternative, so it should work\n // consistently.\n const shouldClose = pointerTypeRef.current === 'touch' ? !contains(elements.floating, event.relatedTarget) : true;\n if (shouldClose) {\n closeWithDelay(event);\n }\n }\n\n // Ensure the floating element closes after scrolling even if the pointer\n // did not move.\n // https://github.com/floating-ui/floating-ui/discussions/1692\n function onScrollMouseLeave(event) {\n if (isClickLikeOpenEvent()) {\n return;\n }\n if (!dataRef.current.floatingContext) {\n return;\n }\n handleCloseRef.current?.({\n ...dataRef.current.floatingContext,\n tree,\n x: event.clientX,\n y: event.clientY,\n onClose() {\n clearPointerEvents();\n cleanupMouseMoveHandler();\n if (!isClickLikeOpenEvent()) {\n closeWithDelay(event);\n }\n }\n })(event);\n }\n function onFloatingMouseEnter() {\n timeout.clear();\n }\n function onFloatingMouseLeave(event) {\n if (!isClickLikeOpenEvent()) {\n closeWithDelay(event, false);\n }\n }\n if (isElement(elements.domReference)) {\n const reference = elements.domReference;\n const floating = elements.floating;\n if (open) {\n reference.addEventListener('mouseleave', onScrollMouseLeave);\n }\n if (move) {\n reference.addEventListener('mousemove', onReferenceMouseEnter, {\n once: true\n });\n }\n reference.addEventListener('mouseenter', onReferenceMouseEnter);\n reference.addEventListener('mouseleave', onReferenceMouseLeave);\n if (floating) {\n floating.addEventListener('mouseleave', onScrollMouseLeave);\n floating.addEventListener('mouseenter', onFloatingMouseEnter);\n floating.addEventListener('mouseleave', onFloatingMouseLeave);\n }\n return () => {\n if (open) {\n reference.removeEventListener('mouseleave', onScrollMouseLeave);\n }\n if (move) {\n reference.removeEventListener('mousemove', onReferenceMouseEnter);\n }\n reference.removeEventListener('mouseenter', onReferenceMouseEnter);\n reference.removeEventListener('mouseleave', onReferenceMouseLeave);\n if (floating) {\n floating.removeEventListener('mouseleave', onScrollMouseLeave);\n floating.removeEventListener('mouseenter', onFloatingMouseEnter);\n floating.removeEventListener('mouseleave', onFloatingMouseLeave);\n }\n };\n }\n return undefined;\n }, [elements, enabled, context, mouseOnly, move, closeWithDelay, cleanupMouseMoveHandler, clearPointerEvents, onOpenChange, open, openRef, tree, delayRef, handleCloseRef, dataRef, isClickLikeOpenEvent, restMsRef, timeout, restTimeout]);\n\n // Block pointer-events of every element other than the reference and floating\n // while the floating element is open and has a `handleClose` handler. Also\n // handles nested floating elements.\n // https://github.com/floating-ui/floating-ui/issues/1722\n useIsoLayoutEffect(() => {\n if (!enabled) {\n return undefined;\n }\n\n // eslint-disable-next-line no-underscore-dangle\n if (open && handleCloseRef.current?.__options?.blockPointerEvents && isHoverOpen()) {\n performedPointerEventsMutationRef.current = true;\n const floatingEl = elements.floating;\n if (isElement(elements.domReference) && floatingEl) {\n const body = getDocument(elements.floating).body;\n body.setAttribute(safePolygonIdentifier, '');\n const ref = elements.domReference;\n const parentFloating = tree?.nodesRef.current.find(node => node.id === parentId)?.context?.elements.floating;\n if (parentFloating) {\n parentFloating.style.pointerEvents = '';\n }\n body.style.pointerEvents = 'none';\n ref.style.pointerEvents = 'auto';\n floatingEl.style.pointerEvents = 'auto';\n return () => {\n body.style.pointerEvents = '';\n ref.style.pointerEvents = '';\n floatingEl.style.pointerEvents = '';\n };\n }\n }\n return undefined;\n }, [enabled, open, parentId, elements, tree, handleCloseRef, isHoverOpen]);\n useIsoLayoutEffect(() => {\n if (!open) {\n pointerTypeRef.current = undefined;\n restTimeoutPendingRef.current = false;\n cleanupMouseMoveHandler();\n clearPointerEvents();\n }\n }, [open, cleanupMouseMoveHandler, clearPointerEvents]);\n React.useEffect(() => {\n return () => {\n cleanupMouseMoveHandler();\n timeout.clear();\n restTimeout.clear();\n clearPointerEvents();\n };\n }, [enabled, elements.domReference, cleanupMouseMoveHandler, clearPointerEvents, timeout, restTimeout]);\n const reference = React.useMemo(() => {\n function setPointerRef(event) {\n pointerTypeRef.current = event.pointerType;\n }\n return {\n onPointerDown: setPointerRef,\n onPointerEnter: setPointerRef,\n onMouseMove(event) {\n const {\n nativeEvent\n } = event;\n function handleMouseMove() {\n if (!blockMouseMoveRef.current && !openRef.current) {\n onOpenChange(true, nativeEvent, 'hover');\n }\n }\n if (mouseOnly && !isMouseLikePointerType(pointerTypeRef.current)) {\n return;\n }\n if (open || getRestMs(restMsRef.current) === 0) {\n return;\n }\n\n // Ignore insignificant movements to account for tremors.\n if (restTimeoutPendingRef.current && event.movementX ** 2 + event.movementY ** 2 < 2) {\n return;\n }\n restTimeout.clear();\n if (pointerTypeRef.current === 'touch') {\n handleMouseMove();\n } else {\n restTimeoutPendingRef.current = true;\n restTimeout.start(getRestMs(restMsRef.current), handleMouseMove);\n }\n }\n };\n }, [mouseOnly, onOpenChange, open, openRef, restMsRef, restTimeout]);\n return React.useMemo(() => enabled ? {\n reference\n } : {}, [enabled, reference]);\n}","/* eslint-disable @typescript-eslint/no-loop-func */\n\nexport function getNodeChildren(nodes, id, onlyOpenChildren = true) {\n const directChildren = nodes.filter(node => node.parentId === id && (!onlyOpenChildren || node.context?.open));\n return directChildren.flatMap(child => [child, ...getNodeChildren(nodes, child.id, onlyOpenChildren)]);\n}\nexport function getDeepestNode(nodes, id) {\n let deepestNodeId;\n let maxDepth = -1;\n function findDeepest(nodeId, depth) {\n if (depth > maxDepth) {\n deepestNodeId = nodeId;\n maxDepth = depth;\n }\n const children = getNodeChildren(nodes, nodeId);\n children.forEach(child => {\n findDeepest(child.id, depth + 1);\n });\n }\n findDeepest(id, 0);\n return nodes.find(node => node.id === deepestNodeId);\n}\nexport function getNodeAncestors(nodes, id) {\n let allAncestors = [];\n let currentParentId = nodes.find(node => node.id === id)?.parentId;\n while (currentParentId) {\n const currentNode = nodes.find(node => node.id === currentParentId);\n currentParentId = currentNode?.parentId;\n if (currentNode) {\n allAncestors = allAncestors.concat(currentNode);\n }\n }\n return allAncestors;\n}","import { isElement } from '@floating-ui/utils/dom';\nimport { Timeout } from '@base-ui-components/utils/useTimeout';\nimport { contains, getTarget } from \"./utils/element.js\";\nimport { getNodeChildren } from \"./utils/nodes.js\";\n\n/* eslint-disable no-nested-ternary */\n\nfunction isPointInPolygon(point, polygon) {\n const [x, y] = point;\n let isInsideValue = false;\n const length = polygon.length;\n // eslint-disable-next-line no-plusplus\n for (let i = 0, j = length - 1; i < length; j = i++) {\n const [xi, yi] = polygon[i] || [0, 0];\n const [xj, yj] = polygon[j] || [0, 0];\n const intersect = yi >= y !== yj >= y && x <= (xj - xi) * (y - yi) / (yj - yi) + xi;\n if (intersect) {\n isInsideValue = !isInsideValue;\n }\n }\n return isInsideValue;\n}\nfunction isInside(point, rect) {\n return point[0] >= rect.x && point[0] <= rect.x + rect.width && point[1] >= rect.y && point[1] <= rect.y + rect.height;\n}\n/**\n * Generates a safe polygon area that the user can traverse without closing the\n * floating element once leaving the reference element.\n * @see https://floating-ui.com/docs/useHover#safepolygon\n */\nexport function safePolygon(options = {}) {\n const {\n buffer = 0.5,\n blockPointerEvents = false,\n requireIntent = true\n } = options;\n const timeout = new Timeout();\n let hasLanded = false;\n let lastX = null;\n let lastY = null;\n let lastCursorTime = typeof performance !== 'undefined' ? performance.now() : 0;\n function getCursorSpeed(x, y) {\n const currentTime = performance.now();\n const elapsedTime = currentTime - lastCursorTime;\n if (lastX === null || lastY === null || elapsedTime === 0) {\n lastX = x;\n lastY = y;\n lastCursorTime = currentTime;\n return null;\n }\n const deltaX = x - lastX;\n const deltaY = y - lastY;\n const distance = Math.sqrt(deltaX * deltaX + deltaY * deltaY);\n const speed = distance / elapsedTime; // px / ms\n\n lastX = x;\n lastY = y;\n lastCursorTime = currentTime;\n return speed;\n }\n const fn = ({\n x,\n y,\n placement,\n elements,\n onClose,\n nodeId,\n tree\n }) => {\n return function onMouseMove(event) {\n function close() {\n timeout.clear();\n onClose();\n }\n timeout.clear();\n if (!elements.domReference || !elements.floating || placement == null || x == null || y == null) {\n return undefined;\n }\n const {\n clientX,\n clientY\n } = event;\n const clientPoint = [clientX, clientY];\n const target = getTarget(event);\n const isLeave = event.type === 'mouseleave';\n const isOverFloatingEl = contains(elements.floating, target);\n const isOverReferenceEl = contains(elements.domReference, target);\n const refRect = elements.domReference.getBoundingClientRect();\n const rect = elements.floating.getBoundingClientRect();\n const side = placement.split('-')[0];\n const cursorLeaveFromRight = x > rect.right - rect.width / 2;\n const cursorLeaveFromBottom = y > rect.bottom - rect.height / 2;\n const isOverReferenceRect = isInside(clientPoint, refRect);\n const isFloatingWider = rect.width > refRect.width;\n const isFloatingTaller = rect.height > refRect.height;\n const left = (isFloatingWider ? refRect : rect).left;\n const right = (isFloatingWider ? refRect : rect).right;\n const top = (isFloatingTaller ? refRect : rect).top;\n const bottom = (isFloatingTaller ? refRect : rect).bottom;\n if (isOverFloatingEl) {\n hasLanded = true;\n if (!isLeave) {\n return undefined;\n }\n }\n if (isOverReferenceEl) {\n hasLanded = false;\n }\n if (isOverReferenceEl && !isLeave) {\n hasLanded = true;\n return undefined;\n }\n\n // Prevent overlapping floating element from being stuck in an open-close\n // loop: https://github.com/floating-ui/floating-ui/issues/1910\n if (isLeave && isElement(event.relatedTarget) && contains(elements.floating, event.relatedTarget)) {\n return undefined;\n }\n\n // If any nested child is open, abort.\n if (tree && getNodeChildren(tree.nodesRef.current, nodeId).some(({\n context\n }) => context?.open)) {\n return undefined;\n }\n\n // If the pointer is leaving from the opposite side, the \"buffer\" logic\n // creates a point where the floating element remains open, but should be\n // ignored.\n // A constant of 1 handles floating point rounding errors.\n if (side === 'top' && y >= refRect.bottom - 1 || side === 'bottom' && y <= refRect.top + 1 || side === 'left' && x >= refRect.right - 1 || side === 'right' && x <= refRect.left + 1) {\n return close();\n }\n\n // Ignore when the cursor is within the rectangular trough between the\n // two elements. Since the triangle is created from the cursor point,\n // which can start beyond the ref element's edge, traversing back and\n // forth from the ref to the floating element can cause it to close. This\n // ensures it always remains open in that case.\n let rectPoly = [];\n switch (side) {\n case 'top':\n rectPoly = [[left, refRect.top + 1], [left, rect.bottom - 1], [right, rect.bottom - 1], [right, refRect.top + 1]];\n break;\n case 'bottom':\n rectPoly = [[left, rect.top + 1], [left, refRect.bottom - 1], [right, refRect.bottom - 1], [right, rect.top + 1]];\n break;\n case 'left':\n rectPoly = [[rect.right - 1, bottom], [rect.right - 1, top], [refRect.left + 1, top], [refRect.left + 1, bottom]];\n break;\n case 'right':\n rectPoly = [[refRect.right - 1, bottom], [refRect.right - 1, top], [rect.left + 1, top], [rect.left + 1, bottom]];\n break;\n default:\n }\n function getPolygon([px, py]) {\n switch (side) {\n case 'top':\n {\n const cursorPointOne = [isFloatingWider ? px + buffer / 2 : cursorLeaveFromRight ? px + buffer * 4 : px - buffer * 4, py + buffer + 1];\n const cursorPointTwo = [isFloatingWider ? px - buffer / 2 : cursorLeaveFromRight ? px + buffer * 4 : px - buffer * 4, py + buffer + 1];\n const commonPoints = [[rect.left, cursorLeaveFromRight ? rect.bottom - buffer : isFloatingWider ? rect.bottom - buffer : rect.top], [rect.right, cursorLeaveFromRight ? isFloatingWider ? rect.bottom - buffer : rect.top : rect.bottom - buffer]];\n return [cursorPointOne, cursorPointTwo, ...commonPoints];\n }\n case 'bottom':\n {\n const cursorPointOne = [isFloatingWider ? px + buffer / 2 : cursorLeaveFromRight ? px + buffer * 4 : px - buffer * 4, py - buffer];\n const cursorPointTwo = [isFloatingWider ? px - buffer / 2 : cursorLeaveFromRight ? px + buffer * 4 : px - buffer * 4, py - buffer];\n const commonPoints = [[rect.left, cursorLeaveFromRight ? rect.top + buffer : isFloatingWider ? rect.top + buffer : rect.bottom], [rect.right, cursorLeaveFromRight ? isFloatingWider ? rect.top + buffer : rect.bottom : rect.top + buffer]];\n return [cursorPointOne, cursorPointTwo, ...commonPoints];\n }\n case 'left':\n {\n const cursorPointOne = [px + buffer + 1, isFloatingTaller ? py + buffer / 2 : cursorLeaveFromBottom ? py + buffer * 4 : py - buffer * 4];\n const cursorPointTwo = [px + buffer + 1, isFloatingTaller ? py - buffer / 2 : cursorLeaveFromBottom ? py + buffer * 4 : py - buffer * 4];\n const commonPoints = [[cursorLeaveFromBottom ? rect.right - buffer : isFloatingTaller ? rect.right - buffer : rect.left, rect.top], [cursorLeaveFromBottom ? isFloatingTaller ? rect.right - buffer : rect.left : rect.right - buffer, rect.bottom]];\n return [...commonPoints, cursorPointOne, cursorPointTwo];\n }\n case 'right':\n {\n const cursorPointOne = [px - buffer, isFloatingTaller ? py + buffer / 2 : cursorLeaveFromBottom ? py + buffer * 4 : py - buffer * 4];\n const cursorPointTwo = [px - buffer, isFloatingTaller ? py - buffer / 2 : cursorLeaveFromBottom ? py + buffer * 4 : py - buffer * 4];\n const commonPoints = [[cursorLeaveFromBottom ? rect.left + buffer : isFloatingTaller ? rect.left + buffer : rect.right, rect.top], [cursorLeaveFromBottom ? isFloatingTaller ? rect.left + buffer : rect.right : rect.left + buffer, rect.bottom]];\n return [cursorPointOne, cursorPointTwo, ...commonPoints];\n }\n default:\n return [];\n }\n }\n if (isPointInPolygon([clientX, clientY], rectPoly)) {\n return undefined;\n }\n if (hasLanded && !isOverReferenceRect) {\n return close();\n }\n if (!isLeave && requireIntent) {\n const cursorSpeed = getCursorSpeed(event.clientX, event.clientY);\n const cursorSpeedThreshold = 0.1;\n if (cursorSpeed !== null && cursorSpeed < cursorSpeedThreshold) {\n return close();\n }\n }\n if (!isPointInPolygon([clientX, clientY], getPolygon([x, y]))) {\n close();\n } else if (!hasLanded && requireIntent) {\n timeout.start(40, close);\n }\n return undefined;\n };\n };\n\n // eslint-disable-next-line no-underscore-dangle\n fn.__options = {\n blockPointerEvents\n };\n return fn;\n}","import * as React from 'react';\nimport { getWindow, isElement, isHTMLElement } from '@floating-ui/utils/dom';\nimport { isMac, isSafari } from '@base-ui-components/utils/detectBrowser';\nimport { useTimeout } from '@base-ui-components/utils/useTimeout';\nimport { activeElement, contains, getDocument, getTarget, isTypeableElement, matchesFocusVisible } from \"../utils.js\";\nimport { createAttribute } from \"../utils/createAttribute.js\";\nconst isMacSafari = isMac && isSafari;\n/**\n * Opens the floating element while the reference element has focus, like CSS\n * `:focus`.\n * @see https://floating-ui.com/docs/useFocus\n */\nexport function useFocus(context, props = {}) {\n const {\n open,\n onOpenChange,\n events,\n dataRef,\n elements\n } = context;\n const {\n enabled = true,\n visibleOnly = true\n } = props;\n const blockFocusRef = React.useRef(false);\n const timeout = useTimeout();\n const keyboardModalityRef = React.useRef(true);\n React.useEffect(() => {\n if (!enabled) {\n return undefined;\n }\n const win = getWindow(elements.domReference);\n\n // If the reference was focused and the user left the tab/window, and the\n // floating element was not open, the focus should be blocked when they\n // return to the tab/window.\n function onBlur() {\n if (!open && isHTMLElement(elements.domReference) && elements.domReference === activeElement(getDocument(elements.domReference))) {\n blockFocusRef.current = true;\n }\n }\n function onKeyDown() {\n keyboardModalityRef.current = true;\n }\n function onPointerDown() {\n keyboardModalityRef.current = false;\n }\n win.addEventListener('blur', onBlur);\n if (isMacSafari) {\n win.addEventListener('keydown', onKeyDown, true);\n win.addEventListener('pointerdown', onPointerDown, true);\n }\n return () => {\n win.removeEventListener('blur', onBlur);\n if (isMacSafari) {\n win.removeEventListener('keydown', onKeyDown, true);\n win.removeEventListener('pointerdown', onPointerDown, true);\n }\n };\n }, [elements.domReference, open, enabled]);\n React.useEffect(() => {\n if (!enabled) {\n return undefined;\n }\n function onOpenChangeLocal({\n reason\n }) {\n if (reason === 'reference-press' || reason === 'escape-key') {\n blockFocusRef.current = true;\n }\n }\n events.on('openchange', onOpenChangeLocal);\n return () => {\n events.off('openchange', onOpenChangeLocal);\n };\n }, [events, enabled]);\n const reference = React.useMemo(() => ({\n onMouseLeave() {\n blockFocusRef.current = false;\n },\n onFocus(event) {\n if (blockFocusRef.current) {\n return;\n }\n const target = getTarget(event.nativeEvent);\n if (visibleOnly && isElement(target)) {\n // Safari fails to match `:focus-visible` if focus was initially\n // outside the document.\n if (isMacSafari && !event.relatedTarget) {\n if (!keyboardModalityRef.current && !isTypeableElement(target)) {\n return;\n }\n } else if (!matchesFocusVisible(target)) {\n return;\n }\n }\n onOpenChange(true, event.nativeEvent, 'focus');\n },\n onBlur(event) {\n blockFocusRef.current = false;\n const relatedTarget = event.relatedTarget;\n const nativeEvent = event.nativeEvent;\n\n // Hit the non-modal focus management portal guard. Focus will be\n // moved into the floating element immediately after.\n const movedToFocusGuard = isElement(relatedTarget) && relatedTarget.hasAttribute(createAttribute('focus-guard')) && relatedTarget.getAttribute('data-type') === 'outside';\n\n // Wait for the window blur listener to fire.\n timeout.start(0, () => {\n const activeEl = activeElement(elements.domReference ? elements.domReference.ownerDocument : document);\n\n // Focus left the page, keep it open.\n if (!relatedTarget && activeEl === elements.domReference) {\n return;\n }\n\n // When focusing the reference element (e.g. regular click), then\n // clicking into the floating element, prevent it from hiding.\n // Note: it must be focusable, e.g. `tabindex=\"-1\"`.\n // We can not rely on relatedTarget to point to the correct element\n // as it will only point to the shadow host of the newly focused element\n // and not the element that actually has received focus if it is located\n // inside a shadow root.\n if (contains(dataRef.current.floatingContext?.refs.floating.current, activeEl) || contains(elements.domReference, activeEl) || movedToFocusGuard) {\n return;\n }\n onOpenChange(false, nativeEvent, 'focus');\n });\n }\n }), [dataRef, elements.domReference, onOpenChange, visibleOnly, timeout]);\n return React.useMemo(() => enabled ? {\n reference\n } : {}, [enabled, reference]);\n}","'use client';\n\nimport { useRefWithInit } from \"./useRefWithInit.js\";\nimport { useOnMount } from \"./useOnMount.js\";\n/** Unlike `setTimeout`, rAF doesn't guarantee a positive integer return value, so we can't have\n * a monomorphic `uint` type with `0` meaning empty.\n * See warning note at:\n * https://developer.mozilla.org/en-US/docs/Web/API/Window/requestAnimationFrame#return_value */\nconst EMPTY = null;\nlet LAST_RAF = globalThis.requestAnimationFrame;\nclass Scheduler {\n /* This implementation uses an array as a backing data-structure for frame callbacks.\n * It allows `O(1)` callback cancelling by inserting a `null` in the array, though it\n * never calls the native `cancelAnimationFrame` if there are no frames left. This can\n * be much more efficient if there is a call pattern that alterns as\n * \"request-cancel-request-cancel-…\".\n * But in the case of \"request-request-…-cancel-cancel-…\", it leaves the final animation\n * frame to run anyway. We turn that frame into a `O(1)` no-op via `callbacksCount`. */\n\n callbacks = (() => [])();\n callbacksCount = 0;\n nextId = 1;\n startId = 1;\n isScheduled = false;\n tick = timestamp => {\n this.isScheduled = false;\n const currentCallbacks = this.callbacks;\n const currentCallbacksCount = this.callbacksCount;\n\n // Update these before iterating, callbacks could call `requestAnimationFrame` again.\n this.callbacks = [];\n this.callbacksCount = 0;\n this.startId = this.nextId;\n if (currentCallbacksCount > 0) {\n for (let i = 0; i < currentCallbacks.length; i += 1) {\n currentCallbacks[i]?.(timestamp);\n }\n }\n };\n request(fn) {\n const id = this.nextId;\n this.nextId += 1;\n this.callbacks.push(fn);\n this.callbacksCount += 1;\n\n /* In a test environment with fake timers, a fake `requestAnimationFrame` can be called\n * but there's no guarantee that the animation frame will actually run before the fake\n * timers are teared, which leaves `isScheduled` set, but won't run our `tick()`. */\n const didRAFChange = process.env.NODE_ENV === 'test' && LAST_RAF !== requestAnimationFrame && (LAST_RAF = requestAnimationFrame, true);\n if (!this.isScheduled || didRAFChange) {\n requestAnimationFrame(this.tick);\n this.isScheduled = true;\n }\n return id;\n }\n cancel(id) {\n const index = id - this.startId;\n if (index < 0 || index >= this.callbacks.length) {\n return;\n }\n this.callbacks[index] = null;\n this.callbacksCount -= 1;\n }\n}\nconst scheduler = new Scheduler();\nexport class AnimationFrame {\n static create() {\n return new AnimationFrame();\n }\n static request(fn) {\n return scheduler.request(fn);\n }\n static cancel(id) {\n return scheduler.cancel(id);\n }\n currentId = (() => EMPTY)();\n\n /**\n * Executes `fn` after `delay`, clearing any previously scheduled call.\n */\n request(fn) {\n this.cancel();\n this.currentId = scheduler.request(() => {\n this.currentId = EMPTY;\n fn();\n });\n }\n cancel = () => {\n if (this.currentId !== EMPTY) {\n scheduler.cancel(this.currentId);\n this.currentId = EMPTY;\n }\n };\n disposeEffect = () => {\n return this.cancel;\n };\n}\n\n/**\n * A `requestAnimationFrame` with automatic cleanup and guard.\n */\nexport function useAnimationFrame() {\n const timeout = useRefWithInit(AnimationFrame.create).current;\n useOnMount(timeout.disposeEffect);\n return timeout;\n}","export const TYPEAHEAD_RESET_MS = 500;\nexport const PATIENT_CLICK_THRESHOLD = 500;\nexport const DISABLED_TRANSITIONS_STYLE = {\n style: {\n transition: 'none'\n }\n};\nexport const EMPTY_OBJECT = {};\nexport const EMPTY_ARRAY = [];\nexport const CLICK_TRIGGER_IDENTIFIER = 'data-base-ui-click-trigger';\n\n/**\n * Used for dropdowns that usually strictly prefer top/bottom placements and\n * use `var(--available-height)` to limit their height.\n */\nexport const DROPDOWN_COLLISION_AVOIDANCE = {\n fallbackAxisSide: 'none'\n};\n\n/**\n * Used by regular popups that usually aren't scrollable and are allowed to\n * freely flip to any axis of placement.\n */\nexport const POPUP_COLLISION_AVOIDANCE = {\n fallbackAxisSide: 'end'\n};","import * as React from 'react';\nimport { getOverflowAncestors } from '@floating-ui/react-dom';\nimport { getComputedStyle, getParentNode, isElement, isHTMLElement, isLastTraversableNode, isWebKit } from '@floating-ui/utils/dom';\nimport { Timeout, useTimeout } from '@base-ui-components/utils/useTimeout';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { contains, getDocument, getTarget, isEventTargetWithin, isReactEvent, isRootElement, getNodeChildren } from \"../utils.js\";\n\n/* eslint-disable no-underscore-dangle */\n\nimport { useFloatingTree } from \"../components/FloatingTree.js\";\nimport { createAttribute } from \"../utils/createAttribute.js\";\nconst bubbleHandlerKeys = {\n intentional: 'onClick',\n sloppy: 'onPointerDown'\n};\nexport function normalizeProp(normalizable) {\n return {\n escapeKey: typeof normalizable === 'boolean' ? normalizable : normalizable?.escapeKey ?? false,\n outsidePress: typeof normalizable === 'boolean' ? normalizable : normalizable?.outsidePress ?? true\n };\n}\n/**\n * Closes the floating element when a dismissal is requested — by default, when\n * the user presses the `escape` key or outside of the floating element.\n * @see https://floating-ui.com/docs/useDismiss\n */\nexport function useDismiss(context, props = {}) {\n const {\n open,\n onOpenChange,\n elements,\n dataRef\n } = context;\n const {\n enabled = true,\n escapeKey = true,\n outsidePress: outsidePressProp = true,\n outsidePressEvent = 'sloppy',\n referencePress = false,\n referencePressEvent = 'sloppy',\n ancestorScroll = false,\n bubbles,\n capture\n } = props;\n const tree = useFloatingTree();\n const outsidePressFn = useEventCallback(typeof outsidePressProp === 'function' ? outsidePressProp : () => false);\n const outsidePress = typeof outsidePressProp === 'function' ? outsidePressFn : outsidePressProp;\n const endedOrStartedInsideRef = React.useRef(false);\n const {\n escapeKey: escapeKeyBubbles,\n outsidePress: outsidePressBubbles\n } = normalizeProp(bubbles);\n const {\n escapeKey: escapeKeyCapture,\n outsidePress: outsidePressCapture\n } = normalizeProp(capture);\n const touchStateRef = React.useRef(null);\n const cancelDismissOnEndTimeout = useTimeout();\n const insideReactTreeTimeout = useTimeout();\n const isComposingRef = React.useRef(false);\n const currentPointerTypeRef = React.useRef('');\n const trackPointerType = useEventCallback(event => {\n currentPointerTypeRef.current = event.pointerType;\n });\n const getOutsidePressEvent = useEventCallback(() => {\n const type = currentPointerTypeRef.current;\n const computedType = type === 'pen' || !type ? 'mouse' : type;\n if (typeof outsidePressEvent === 'string') {\n return outsidePressEvent;\n }\n return outsidePressEvent[computedType];\n });\n const closeOnEscapeKeyDown = useEventCallback(event => {\n if (!open || !enabled || !escapeKey || event.key !== 'Escape') {\n return;\n }\n\n // Wait until IME is settled. Pressing `Escape` while composing should\n // close the compose menu, but not the floating element.\n if (isComposingRef.current) {\n return;\n }\n const nodeId = dataRef.current.floatingContext?.nodeId;\n const children = tree ? getNodeChildren(tree.nodesRef.current, nodeId) : [];\n if (!escapeKeyBubbles) {\n event.stopPropagation();\n if (children.length > 0) {\n let shouldDismiss = true;\n children.forEach(child => {\n if (child.context?.open && !child.context.dataRef.current.__escapeKeyBubbles) {\n shouldDismiss = false;\n }\n });\n if (!shouldDismiss) {\n return;\n }\n }\n }\n onOpenChange(false, isReactEvent(event) ? event.nativeEvent : event, 'escape-key');\n });\n const shouldIgnoreEvent = useEventCallback(event => {\n const computedOutsidePressEvent = getOutsidePressEvent();\n return computedOutsidePressEvent === 'intentional' && event.type !== 'click' || computedOutsidePressEvent === 'sloppy' && event.type === 'click';\n });\n const closeOnEscapeKeyDownCapture = useEventCallback(event => {\n const callback = () => {\n closeOnEscapeKeyDown(event);\n getTarget(event)?.removeEventListener('keydown', callback);\n };\n getTarget(event)?.addEventListener('keydown', callback);\n });\n const closeOnPressOutside = useEventCallback(event => {\n if (shouldIgnoreEvent(event)) {\n return;\n }\n\n // Given developers can stop the propagation of the synthetic event,\n // we can only be confident with a positive value.\n const insideReactTree = dataRef.current.insideReactTree;\n dataRef.current.insideReactTree = false;\n\n // When click outside is lazy (`up` event), handle dragging.\n // Don't close if:\n // - The click started inside the floating element.\n // - The click ended inside the floating element.\n const endedOrStartedInside = endedOrStartedInsideRef.current;\n endedOrStartedInsideRef.current = false;\n if (getOutsidePressEvent() === 'intentional' && endedOrStartedInside) {\n return;\n }\n if (insideReactTree) {\n return;\n }\n if (typeof outsidePress === 'function' && !outsidePress(event)) {\n return;\n }\n const target = getTarget(event);\n const inertSelector = `[${createAttribute('inert')}]`;\n const markers = getDocument(elements.floating).querySelectorAll(inertSelector);\n let targetRootAncestor = isElement(target) ? target : null;\n while (targetRootAncestor && !isLastTraversableNode(targetRootAncestor)) {\n const nextParent = getParentNode(targetRootAncestor);\n if (isLastTraversableNode(nextParent) || !isElement(nextParent)) {\n break;\n }\n targetRootAncestor = nextParent;\n }\n\n // Check if the click occurred on a third-party element injected after the\n // floating element rendered.\n if (markers.length && isElement(target) && !isRootElement(target) &&\n // Clicked on a direct ancestor (e.g. FloatingOverlay).\n !contains(target, elements.floating) &&\n // If the target root element contains none of the markers, then the\n // element was injected after the floating element rendered.\n Array.from(markers).every(marker => !contains(targetRootAncestor, marker))) {\n return;\n }\n\n // Check if the click occurred on the scrollbar\n if (isHTMLElement(target)) {\n const lastTraversableNode = isLastTraversableNode(target);\n const style = getComputedStyle(target);\n const scrollRe = /auto|scroll/;\n const isScrollableX = lastTraversableNode || scrollRe.test(style.overflowX);\n const isScrollableY = lastTraversableNode || scrollRe.test(style.overflowY);\n const canScrollX = isScrollableX && target.clientWidth > 0 && target.scrollWidth > target.clientWidth;\n const canScrollY = isScrollableY && target.clientHeight > 0 && target.scrollHeight > target.clientHeight;\n const isRTL = style.direction === 'rtl';\n\n // Check click position relative to scrollbar.\n // In some browsers it is possible to change the <body> (or window)\n // scrollbar to the left side, but is very rare and is difficult to\n // check for. Plus, for modal dialogs with backdrops, it is more\n // important that the backdrop is checked but not so much the window.\n const pressedVerticalScrollbar = canScrollY && (isRTL ? event.offsetX <= target.offsetWidth - target.clientWidth : event.offsetX > target.clientWidth);\n const pressedHorizontalScrollbar = canScrollX && event.offsetY > target.clientHeight;\n if (pressedVerticalScrollbar || pressedHorizontalScrollbar) {\n return;\n }\n }\n const nodeId = dataRef.current.floatingContext?.nodeId;\n const targetIsInsideChildren = tree && getNodeChildren(tree.nodesRef.current, nodeId).some(node => isEventTargetWithin(event, node.context?.elements.floating));\n if (isEventTargetWithin(event, elements.floating) || isEventTargetWithin(event, elements.domReference) || targetIsInsideChildren) {\n return;\n }\n const children = tree ? getNodeChildren(tree.nodesRef.current, nodeId) : [];\n if (children.length > 0) {\n let shouldDismiss = true;\n children.forEach(child => {\n if (child.context?.open && !child.context.dataRef.current.__outsidePressBubbles) {\n shouldDismiss = false;\n }\n });\n if (!shouldDismiss) {\n return;\n }\n }\n onOpenChange(false, event, 'outside-press');\n });\n const handlePointerDown = useEventCallback(event => {\n if (getOutsidePressEvent() !== 'sloppy' || !open || !enabled || isEventTargetWithin(event, elements.floating) || isEventTargetWithin(event, elements.domReference)) {\n return;\n }\n if (event.pointerType === 'touch') {\n touchStateRef.current = {\n startTime: Date.now(),\n startX: event.clientX,\n startY: event.clientY,\n dismissOnPointerUp: false,\n dismissOnMouseDown: true\n };\n cancelDismissOnEndTimeout.start(1000, () => {\n if (touchStateRef.current) {\n touchStateRef.current.dismissOnPointerUp = false;\n touchStateRef.current.dismissOnMouseDown = false;\n }\n });\n return;\n }\n closeOnPressOutside(event);\n });\n const closeOnPressOutsideCapture = useEventCallback(event => {\n if (shouldIgnoreEvent(event)) {\n return;\n }\n cancelDismissOnEndTimeout.clear();\n if (event.type === 'mousedown' && touchStateRef.current && !touchStateRef.current.dismissOnMouseDown) {\n return;\n }\n const callback = () => {\n if (event.type === 'pointerdown') {\n handlePointerDown(event);\n } else {\n closeOnPressOutside(event);\n }\n getTarget(event)?.removeEventListener(event.type, callback);\n };\n getTarget(event)?.addEventListener(event.type, callback);\n });\n const handlePointerMove = useEventCallback(event => {\n if (getOutsidePressEvent() !== 'sloppy' || event.pointerType !== 'touch' || !touchStateRef.current || isEventTargetWithin(event, elements.floating) || isEventTargetWithin(event, elements.domReference)) {\n return;\n }\n const deltaX = Math.abs(event.clientX - touchStateRef.current.startX);\n const deltaY = Math.abs(event.clientY - touchStateRef.current.startY);\n const distance = Math.sqrt(deltaX * deltaX + deltaY * deltaY);\n if (distance > 5) {\n touchStateRef.current.dismissOnPointerUp = true;\n }\n if (distance > 10) {\n closeOnPressOutside(event);\n cancelDismissOnEndTimeout.clear();\n touchStateRef.current = null;\n }\n });\n const handlePointerUp = useEventCallback(event => {\n if (getOutsidePressEvent() !== 'sloppy' || event.pointerType !== 'touch' || !touchStateRef.current || isEventTargetWithin(event, elements.floating) || isEventTargetWithin(event, elements.domReference)) {\n return;\n }\n if (touchStateRef.current.dismissOnPointerUp) {\n closeOnPressOutside(event);\n }\n cancelDismissOnEndTimeout.clear();\n touchStateRef.current = null;\n });\n React.useEffect(() => {\n if (!open || !enabled) {\n return undefined;\n }\n dataRef.current.__escapeKeyBubbles = escapeKeyBubbles;\n dataRef.current.__outsidePressBubbles = outsidePressBubbles;\n const compositionTimeout = new Timeout();\n function onScroll(event) {\n onOpenChange(false, event, 'ancestor-scroll');\n }\n function handleCompositionStart() {\n compositionTimeout.clear();\n isComposingRef.current = true;\n }\n function handleCompositionEnd() {\n // Safari fires `compositionend` before `keydown`, so we need to wait\n // until the next tick to set `isComposing` to `false`.\n // https://bugs.webkit.org/show_bug.cgi?id=165004\n compositionTimeout.start(\n // 0ms or 1ms don't work in Safari. 5ms appears to consistently work.\n // Only apply to WebKit for the test to remain 0ms.\n isWebKit() ? 5 : 0, () => {\n isComposingRef.current = false;\n });\n }\n const doc = getDocument(elements.floating);\n doc.addEventListener('pointerdown', trackPointerType, true);\n if (escapeKey) {\n doc.addEventListener('keydown', escapeKeyCapture ? closeOnEscapeKeyDownCapture : closeOnEscapeKeyDown, escapeKeyCapture);\n doc.addEventListener('compositionstart', handleCompositionStart);\n doc.addEventListener('compositionend', handleCompositionEnd);\n }\n if (outsidePress) {\n doc.addEventListener('click', outsidePressCapture ? closeOnPressOutsideCapture : closeOnPressOutside, outsidePressCapture);\n doc.addEventListener('pointerdown', outsidePressCapture ? closeOnPressOutsideCapture : closeOnPressOutside, outsidePressCapture);\n doc.addEventListener('pointermove', handlePointerMove, outsidePressCapture);\n doc.addEventListener('pointerup', handlePointerUp, outsidePressCapture);\n doc.addEventListener('mousedown', closeOnPressOutsideCapture, outsidePressCapture);\n }\n let ancestors = [];\n if (ancestorScroll) {\n if (isElement(elements.domReference)) {\n ancestors = getOverflowAncestors(elements.domReference);\n }\n if (isElement(elements.floating)) {\n ancestors = ancestors.concat(getOverflowAncestors(elements.floating));\n }\n if (!isElement(elements.reference) && elements.reference && elements.reference.contextElement) {\n ancestors = ancestors.concat(getOverflowAncestors(elements.reference.contextElement));\n }\n }\n\n // Ignore the visual viewport for scrolling dismissal (allow pinch-zoom)\n ancestors = ancestors.filter(ancestor => ancestor !== doc.defaultView?.visualViewport);\n ancestors.forEach(ancestor => {\n ancestor.addEventListener('scroll', onScroll, {\n passive: true\n });\n });\n return () => {\n doc.removeEventListener('pointerdown', trackPointerType, true);\n if (escapeKey) {\n doc.removeEventListener('keydown', escapeKeyCapture ? closeOnEscapeKeyDownCapture : closeOnEscapeKeyDown, escapeKeyCapture);\n doc.removeEventListener('compositionstart', handleCompositionStart);\n doc.removeEventListener('compositionend', handleCompositionEnd);\n }\n if (outsidePress) {\n doc.removeEventListener('click', outsidePressCapture ? closeOnPressOutsideCapture : closeOnPressOutside, outsidePressCapture);\n doc.removeEventListener('pointerdown', outsidePressCapture ? closeOnPressOutsideCapture : closeOnPressOutside, outsidePressCapture);\n doc.removeEventListener('pointermove', handlePointerMove, outsidePressCapture);\n doc.removeEventListener('pointerup', handlePointerUp, outsidePressCapture);\n doc.removeEventListener('mousedown', closeOnPressOutsideCapture, outsidePressCapture);\n }\n ancestors.forEach(ancestor => {\n ancestor.removeEventListener('scroll', onScroll);\n });\n compositionTimeout.clear();\n };\n }, [dataRef, elements, escapeKey, outsidePress, outsidePressEvent, open, onOpenChange, ancestorScroll, enabled, escapeKeyBubbles, outsidePressBubbles, closeOnEscapeKeyDown, escapeKeyCapture, closeOnEscapeKeyDownCapture, closeOnPressOutside, outsidePressCapture, closeOnPressOutsideCapture, handlePointerDown, handlePointerMove, handlePointerUp, trackPointerType]);\n React.useEffect(() => {\n dataRef.current.insideReactTree = false;\n }, [dataRef, outsidePress]);\n const reference = React.useMemo(() => ({\n onKeyDown: closeOnEscapeKeyDown,\n ...(referencePress && {\n [bubbleHandlerKeys[referencePressEvent]]: event => {\n onOpenChange(false, event.nativeEvent, 'reference-press');\n },\n ...(referencePressEvent !== 'intentional' && {\n onClick(event) {\n onOpenChange(false, event.nativeEvent, 'reference-press');\n }\n })\n })\n }), [closeOnEscapeKeyDown, onOpenChange, referencePress, referencePressEvent]);\n const handlePressedInside = useEventCallback(event => {\n const target = getTarget(event.nativeEvent);\n if (!contains(elements.floating, target)) {\n return;\n }\n endedOrStartedInsideRef.current = true;\n });\n const handleCaptureInside = useEventCallback(() => {\n dataRef.current.insideReactTree = true;\n insideReactTreeTimeout.start(0, () => {\n dataRef.current.insideReactTree = false;\n });\n });\n const floating = React.useMemo(() => ({\n onKeyDown: closeOnEscapeKeyDown,\n onMouseDown: handlePressedInside,\n onMouseUp: handlePressedInside,\n onPointerDownCapture: handleCaptureInside,\n onMouseDownCapture: handleCaptureInside,\n onClickCapture: handleCaptureInside\n }), [closeOnEscapeKeyDown, handlePressedInside, handleCaptureInside]);\n return React.useMemo(() => enabled ? {\n reference,\n floating\n } : {}, [enabled, reference, floating]);\n}","import * as React from 'react';\nimport { useId } from '@base-ui-components/utils/useId';\nimport { getFloatingFocusElement } from \"../utils.js\";\nimport { useFloatingParentNodeId } from \"../components/FloatingTree.js\";\nconst componentRoleToAriaRoleMap = new Map([['select', 'listbox'], ['combobox', 'listbox'], ['label', false]]);\n\n/**\n * Adds base screen reader props to the reference and floating elements for a\n * given floating element `role`.\n * @see https://floating-ui.com/docs/useRole\n */\nexport function useRole(context, props = {}) {\n const {\n open,\n elements,\n floatingId: defaultFloatingId\n } = context;\n const {\n enabled = true,\n role = 'dialog'\n } = props;\n const defaultReferenceId = useId();\n const referenceId = elements.domReference?.id || defaultReferenceId;\n const floatingId = React.useMemo(() => getFloatingFocusElement(elements.floating)?.id || defaultFloatingId, [elements.floating, defaultFloatingId]);\n const ariaRole = componentRoleToAriaRoleMap.get(role) ?? role;\n const parentId = useFloatingParentNodeId();\n const isNested = parentId != null;\n const reference = React.useMemo(() => {\n if (ariaRole === 'tooltip' || role === 'label') {\n return {\n [`aria-${role === 'label' ? 'labelledby' : 'describedby'}`]: open ? floatingId : undefined\n };\n }\n return {\n 'aria-expanded': open ? 'true' : 'false',\n 'aria-haspopup': ariaRole === 'alertdialog' ? 'dialog' : ariaRole,\n 'aria-controls': open ? floatingId : undefined,\n ...(ariaRole === 'listbox' && {\n role: 'combobox'\n }),\n ...(ariaRole === 'menu' && {\n id: referenceId\n }),\n ...(ariaRole === 'menu' && isNested && {\n role: 'menuitem'\n }),\n ...(role === 'select' && {\n 'aria-autocomplete': 'none'\n }),\n ...(role === 'combobox' && {\n 'aria-autocomplete': 'list'\n })\n };\n }, [ariaRole, floatingId, isNested, open, referenceId, role]);\n const floating = React.useMemo(() => {\n const floatingProps = {\n id: floatingId,\n ...(ariaRole && {\n role: ariaRole\n })\n };\n if (ariaRole === 'tooltip' || role === 'label') {\n return floatingProps;\n }\n return {\n ...floatingProps,\n ...(ariaRole === 'menu' && {\n 'aria-labelledby': referenceId\n })\n };\n }, [ariaRole, floatingId, referenceId, role]);\n const item = React.useCallback(({\n active,\n selected\n }) => {\n const commonProps = {\n role: 'option',\n ...(active && {\n id: `${floatingId}-fui-option`\n })\n };\n\n // For `menu`, we are unable to tell if the item is a `menuitemradio`\n // or `menuitemcheckbox`. For backwards-compatibility reasons, also\n // avoid defaulting to `menuitem` as it may overwrite custom role props.\n switch (role) {\n case 'select':\n case 'combobox':\n return {\n ...commonProps,\n 'aria-selected': selected\n };\n default:\n }\n return {};\n }, [floatingId, role]);\n return React.useMemo(() => enabled ? {\n reference,\n floating,\n item\n } : {}, [enabled, reference, floating, item]);\n}","/**\n * Custom positioning reference element.\n * @see https://floating-ui.com/docs/virtual-elements\n */\n\nconst sides = ['top', 'right', 'bottom', 'left'];\nconst alignments = ['start', 'end'];\nconst placements = /*#__PURE__*/sides.reduce((acc, side) => acc.concat(side, side + \"-\" + alignments[0], side + \"-\" + alignments[1]), []);\nconst min = Math.min;\nconst max = Math.max;\nconst round = Math.round;\nconst floor = Math.floor;\nconst createCoords = v => ({\n x: v,\n y: v\n});\nconst oppositeSideMap = {\n left: 'right',\n right: 'left',\n bottom: 'top',\n top: 'bottom'\n};\nconst oppositeAlignmentMap = {\n start: 'end',\n end: 'start'\n};\nfunction clamp(start, value, end) {\n return max(start, min(value, end));\n}\nfunction evaluate(value, param) {\n return typeof value === 'function' ? value(param) : value;\n}\nfunction getSide(placement) {\n return placement.split('-')[0];\n}\nfunction getAlignment(placement) {\n return placement.split('-')[1];\n}\nfunction getOppositeAxis(axis) {\n return axis === 'x' ? 'y' : 'x';\n}\nfunction getAxisLength(axis) {\n return axis === 'y' ? 'height' : 'width';\n}\nconst yAxisSides = /*#__PURE__*/new Set(['top', 'bottom']);\nfunction getSideAxis(placement) {\n return yAxisSides.has(getSide(placement)) ? 'y' : 'x';\n}\nfunction getAlignmentAxis(placement) {\n return getOppositeAxis(getSideAxis(placement));\n}\nfunction getAlignmentSides(placement, rects, rtl) {\n if (rtl === void 0) {\n rtl = false;\n }\n const alignment = getAlignment(placement);\n const alignmentAxis = getAlignmentAxis(placement);\n const length = getAxisLength(alignmentAxis);\n let mainAlignmentSide = alignmentAxis === 'x' ? alignment === (rtl ? 'end' : 'start') ? 'right' : 'left' : alignment === 'start' ? 'bottom' : 'top';\n if (rects.reference[length] > rects.floating[length]) {\n mainAlignmentSide = getOppositePlacement(mainAlignmentSide);\n }\n return [mainAlignmentSide, getOppositePlacement(mainAlignmentSide)];\n}\nfunction getExpandedPlacements(placement) {\n const oppositePlacement = getOppositePlacement(placement);\n return [getOppositeAlignmentPlacement(placement), oppositePlacement, getOppositeAlignmentPlacement(oppositePlacement)];\n}\nfunction getOppositeAlignmentPlacement(placement) {\n return placement.replace(/start|end/g, alignment => oppositeAlignmentMap[alignment]);\n}\nconst lrPlacement = ['left', 'right'];\nconst rlPlacement = ['right', 'left'];\nconst tbPlacement = ['top', 'bottom'];\nconst btPlacement = ['bottom', 'top'];\nfunction getSideList(side, isStart, rtl) {\n switch (side) {\n case 'top':\n case 'bottom':\n if (rtl) return isStart ? rlPlacement : lrPlacement;\n return isStart ? lrPlacement : rlPlacement;\n case 'left':\n case 'right':\n return isStart ? tbPlacement : btPlacement;\n default:\n return [];\n }\n}\nfunction getOppositeAxisPlacements(placement, flipAlignment, direction, rtl) {\n const alignment = getAlignment(placement);\n let list = getSideList(getSide(placement), direction === 'start', rtl);\n if (alignment) {\n list = list.map(side => side + \"-\" + alignment);\n if (flipAlignment) {\n list = list.concat(list.map(getOppositeAlignmentPlacement));\n }\n }\n return list;\n}\nfunction getOppositePlacement(placement) {\n return placement.replace(/left|right|bottom|top/g, side => oppositeSideMap[side]);\n}\nfunction expandPaddingObject(padding) {\n return {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n ...padding\n };\n}\nfunction getPaddingObject(padding) {\n return typeof padding !== 'number' ? expandPaddingObject(padding) : {\n top: padding,\n right: padding,\n bottom: padding,\n left: padding\n };\n}\nfunction rectToClientRect(rect) {\n const {\n x,\n y,\n width,\n height\n } = rect;\n return {\n width,\n height,\n top: y,\n left: x,\n right: x + width,\n bottom: y + height,\n x,\n y\n };\n}\n\nexport { alignments, clamp, createCoords, evaluate, expandPaddingObject, floor, getAlignment, getAlignmentAxis, getAlignmentSides, getAxisLength, getExpandedPlacements, getOppositeAlignmentPlacement, getOppositeAxis, getOppositeAxisPlacements, getOppositePlacement, getPaddingObject, getSide, getSideAxis, max, min, placements, rectToClientRect, round, sides };\n","import { floor } from '@floating-ui/utils';\nimport { stopEvent } from \"./event.js\";\nimport { ARROW_DOWN, ARROW_LEFT, ARROW_RIGHT, ARROW_UP } from \"./constants.js\";\nexport function isDifferentGridRow(index, cols, prevRow) {\n return Math.floor(index / cols) !== prevRow;\n}\nexport function isIndexOutOfListBounds(listRef, index) {\n return index < 0 || index >= listRef.current.length;\n}\nexport function getMinListIndex(listRef, disabledIndices) {\n return findNonDisabledListIndex(listRef, {\n disabledIndices\n });\n}\nexport function getMaxListIndex(listRef, disabledIndices) {\n return findNonDisabledListIndex(listRef, {\n decrement: true,\n startingIndex: listRef.current.length,\n disabledIndices\n });\n}\nexport function findNonDisabledListIndex(listRef, {\n startingIndex = -1,\n decrement = false,\n disabledIndices,\n amount = 1\n} = {}) {\n let index = startingIndex;\n do {\n index += decrement ? -amount : amount;\n } while (index >= 0 && index <= listRef.current.length - 1 && isListIndexDisabled(listRef, index, disabledIndices));\n return index;\n}\nexport function getGridNavigatedIndex(listRef, {\n event,\n orientation,\n loop,\n rtl,\n cols,\n disabledIndices,\n minIndex,\n maxIndex,\n prevIndex,\n stopEvent: stop = false\n}) {\n let nextIndex = prevIndex;\n if (event.key === ARROW_UP) {\n if (stop) {\n stopEvent(event);\n }\n if (prevIndex === -1) {\n nextIndex = maxIndex;\n } else {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: nextIndex,\n amount: cols,\n decrement: true,\n disabledIndices\n });\n if (loop && (prevIndex - cols < minIndex || nextIndex < 0)) {\n const col = prevIndex % cols;\n const maxCol = maxIndex % cols;\n const offset = maxIndex - (maxCol - col);\n if (maxCol === col) {\n nextIndex = maxIndex;\n } else {\n nextIndex = maxCol > col ? offset : offset - cols;\n }\n }\n }\n if (isIndexOutOfListBounds(listRef, nextIndex)) {\n nextIndex = prevIndex;\n }\n }\n if (event.key === ARROW_DOWN) {\n if (stop) {\n stopEvent(event);\n }\n if (prevIndex === -1) {\n nextIndex = minIndex;\n } else {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex,\n amount: cols,\n disabledIndices\n });\n if (loop && prevIndex + cols > maxIndex) {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex % cols - cols,\n amount: cols,\n disabledIndices\n });\n }\n }\n if (isIndexOutOfListBounds(listRef, nextIndex)) {\n nextIndex = prevIndex;\n }\n }\n\n // Remains on the same row/column.\n if (orientation === 'both') {\n const prevRow = floor(prevIndex / cols);\n if (event.key === (rtl ? ARROW_LEFT : ARROW_RIGHT)) {\n if (stop) {\n stopEvent(event);\n }\n if (prevIndex % cols !== cols - 1) {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex,\n disabledIndices\n });\n if (loop && isDifferentGridRow(nextIndex, cols, prevRow)) {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex - prevIndex % cols - 1,\n disabledIndices\n });\n }\n } else if (loop) {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex - prevIndex % cols - 1,\n disabledIndices\n });\n }\n if (isDifferentGridRow(nextIndex, cols, prevRow)) {\n nextIndex = prevIndex;\n }\n }\n if (event.key === (rtl ? ARROW_RIGHT : ARROW_LEFT)) {\n if (stop) {\n stopEvent(event);\n }\n if (prevIndex % cols !== 0) {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex,\n decrement: true,\n disabledIndices\n });\n if (loop && isDifferentGridRow(nextIndex, cols, prevRow)) {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex + (cols - prevIndex % cols),\n decrement: true,\n disabledIndices\n });\n }\n } else if (loop) {\n nextIndex = findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex + (cols - prevIndex % cols),\n decrement: true,\n disabledIndices\n });\n }\n if (isDifferentGridRow(nextIndex, cols, prevRow)) {\n nextIndex = prevIndex;\n }\n }\n const lastRow = floor(maxIndex / cols) === prevRow;\n if (isIndexOutOfListBounds(listRef, nextIndex)) {\n if (loop && lastRow) {\n nextIndex = event.key === (rtl ? ARROW_RIGHT : ARROW_LEFT) ? maxIndex : findNonDisabledListIndex(listRef, {\n startingIndex: prevIndex - prevIndex % cols - 1,\n disabledIndices\n });\n } else {\n nextIndex = prevIndex;\n }\n }\n }\n return nextIndex;\n}\n\n/** For each cell index, gets the item index that occupies that cell */\nexport function createGridCellMap(sizes, cols, dense) {\n const cellMap = [];\n let startIndex = 0;\n sizes.forEach(({\n width,\n height\n }, index) => {\n if (width > cols) {\n if (process.env.NODE_ENV !== 'production') {\n throw new Error(`[Floating UI]: Invalid grid - item width at index ${index} is greater than grid columns`);\n }\n }\n let itemPlaced = false;\n if (dense) {\n startIndex = 0;\n }\n while (!itemPlaced) {\n const targetCells = [];\n for (let i = 0; i < width; i += 1) {\n for (let j = 0; j < height; j += 1) {\n targetCells.push(startIndex + i + j * cols);\n }\n }\n if (startIndex % cols + width <= cols && targetCells.every(cell => cellMap[cell] == null)) {\n targetCells.forEach(cell => {\n cellMap[cell] = index;\n });\n itemPlaced = true;\n } else {\n startIndex += 1;\n }\n }\n });\n\n // convert into a non-sparse array\n return [...cellMap];\n}\n\n/** Gets cell index of an item's corner or -1 when index is -1. */\nexport function getGridCellIndexOfCorner(index, sizes, cellMap, cols, corner) {\n if (index === -1) {\n return -1;\n }\n const firstCellIndex = cellMap.indexOf(index);\n const sizeItem = sizes[index];\n switch (corner) {\n case 'tl':\n return firstCellIndex;\n case 'tr':\n if (!sizeItem) {\n return firstCellIndex;\n }\n return firstCellIndex + sizeItem.width - 1;\n case 'bl':\n if (!sizeItem) {\n return firstCellIndex;\n }\n return firstCellIndex + (sizeItem.height - 1) * cols;\n case 'br':\n return cellMap.lastIndexOf(index);\n default:\n return -1;\n }\n}\n\n/** Gets all cell indices that correspond to the specified indices */\nexport function getGridCellIndices(indices, cellMap) {\n return cellMap.flatMap((index, cellIndex) => indices.includes(index) ? [cellIndex] : []);\n}\nexport function isListIndexDisabled(listRef, index, disabledIndices) {\n if (typeof disabledIndices === 'function') {\n return disabledIndices(index);\n }\n if (disabledIndices) {\n return disabledIndices.includes(index);\n }\n const element = listRef.current[index];\n return element == null || element.hasAttribute('disabled') || element.getAttribute('aria-disabled') === 'true';\n}","let rafId = 0;\nexport function enqueueFocus(el, options = {}) {\n const {\n preventScroll = false,\n cancelPrevious = true,\n sync = false\n } = options;\n if (cancelPrevious) {\n cancelAnimationFrame(rafId);\n }\n const exec = () => el?.focus({\n preventScroll\n });\n if (sync) {\n exec();\n } else {\n rafId = requestAnimationFrame(exec);\n }\n}","import * as React from 'react';\nimport { isHTMLElement } from '@floating-ui/utils/dom';\nimport { useLatestRef } from '@base-ui-components/utils/useLatestRef';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { activeElement, contains, getDocument, isTypeableCombobox, isVirtualClick, isVirtualPointerEvent, stopEvent, getFloatingFocusElement, isIndexOutOfListBounds, getMinListIndex, getMaxListIndex, getGridNavigatedIndex, isListIndexDisabled, createGridCellMap, getGridCellIndices, getGridCellIndexOfCorner, findNonDisabledListIndex } from \"../utils.js\";\nimport { useFloatingParentNodeId, useFloatingTree } from \"../components/FloatingTree.js\";\nimport { enqueueFocus } from \"../utils/enqueueFocus.js\";\nimport { ARROW_UP, ARROW_DOWN, ARROW_RIGHT, ARROW_LEFT } from \"../utils/constants.js\";\nexport const ESCAPE = 'Escape';\nfunction doSwitch(orientation, vertical, horizontal) {\n switch (orientation) {\n case 'vertical':\n return vertical;\n case 'horizontal':\n return horizontal;\n default:\n return vertical || horizontal;\n }\n}\nfunction isMainOrientationKey(key, orientation) {\n const vertical = key === ARROW_UP || key === ARROW_DOWN;\n const horizontal = key === ARROW_LEFT || key === ARROW_RIGHT;\n return doSwitch(orientation, vertical, horizontal);\n}\nfunction isMainOrientationToEndKey(key, orientation, rtl) {\n const vertical = key === ARROW_DOWN;\n const horizontal = rtl ? key === ARROW_LEFT : key === ARROW_RIGHT;\n return doSwitch(orientation, vertical, horizontal) || key === 'Enter' || key === ' ' || key === '';\n}\nfunction isCrossOrientationOpenKey(key, orientation, rtl) {\n const vertical = rtl ? key === ARROW_LEFT : key === ARROW_RIGHT;\n const horizontal = key === ARROW_DOWN;\n return doSwitch(orientation, vertical, horizontal);\n}\nfunction isCrossOrientationCloseKey(key, orientation, rtl, cols) {\n const vertical = rtl ? key === ARROW_RIGHT : key === ARROW_LEFT;\n const horizontal = key === ARROW_UP;\n if (orientation === 'both' || orientation === 'horizontal' && cols && cols > 1) {\n return key === ESCAPE;\n }\n return doSwitch(orientation, vertical, horizontal);\n}\n/**\n * Adds arrow key-based navigation of a list of items, either using real DOM\n * focus or virtual focus.\n * @see https://floating-ui.com/docs/useListNavigation\n */\nexport function useListNavigation(context, props) {\n const {\n open,\n onOpenChange,\n elements,\n floatingId\n } = context;\n const {\n listRef,\n activeIndex,\n onNavigate: onNavigateProp = () => {},\n enabled = true,\n selectedIndex = null,\n allowEscape = false,\n loop = false,\n nested = false,\n rtl = false,\n virtual = false,\n focusItemOnOpen = 'auto',\n focusItemOnHover = true,\n openOnArrowKeyDown = true,\n disabledIndices = undefined,\n orientation = 'vertical',\n parentOrientation,\n cols = 1,\n scrollItemIntoView = true,\n virtualItemRef,\n itemSizes,\n dense = false\n } = props;\n if (process.env.NODE_ENV !== 'production') {\n if (allowEscape) {\n if (!loop) {\n console.warn('`useListNavigation` looping must be enabled to allow escaping.');\n }\n if (!virtual) {\n console.warn('`useListNavigation` must be virtual to allow escaping.');\n }\n }\n if (orientation === 'vertical' && cols > 1) {\n console.warn('In grid list navigation mode (`cols` > 1), the `orientation` should', 'be either \"horizontal\" or \"both\".');\n }\n }\n const floatingFocusElement = getFloatingFocusElement(elements.floating);\n const floatingFocusElementRef = useLatestRef(floatingFocusElement);\n const parentId = useFloatingParentNodeId();\n const tree = useFloatingTree();\n useIsoLayoutEffect(() => {\n context.dataRef.current.orientation = orientation;\n }, [context, orientation]);\n const typeableComboboxReference = isTypeableCombobox(elements.domReference);\n const focusItemOnOpenRef = React.useRef(focusItemOnOpen);\n const indexRef = React.useRef(selectedIndex ?? -1);\n const keyRef = React.useRef(null);\n const isPointerModalityRef = React.useRef(true);\n const onNavigate = useEventCallback(() => {\n onNavigateProp(indexRef.current === -1 ? null : indexRef.current);\n });\n const previousOnNavigateRef = React.useRef(onNavigate);\n const previousMountedRef = React.useRef(!!elements.floating);\n const previousOpenRef = React.useRef(open);\n const forceSyncFocusRef = React.useRef(false);\n const forceScrollIntoViewRef = React.useRef(false);\n const disabledIndicesRef = useLatestRef(disabledIndices);\n const latestOpenRef = useLatestRef(open);\n const scrollItemIntoViewRef = useLatestRef(scrollItemIntoView);\n const selectedIndexRef = useLatestRef(selectedIndex);\n const [activeId, setActiveId] = React.useState();\n const focusItem = useEventCallback(() => {\n function runFocus(item) {\n if (virtual) {\n if (item.id?.endsWith('-fui-option')) {\n item.id = `${floatingId}-${Math.random().toString(16).slice(2, 10)}`;\n }\n setActiveId(item.id);\n tree?.events.emit('virtualfocus', item);\n if (virtualItemRef) {\n virtualItemRef.current = item;\n }\n } else {\n enqueueFocus(item, {\n sync: forceSyncFocusRef.current,\n preventScroll: true\n });\n }\n }\n const initialItem = listRef.current[indexRef.current];\n const forceScrollIntoView = forceScrollIntoViewRef.current;\n if (initialItem) {\n runFocus(initialItem);\n }\n const scheduler = forceSyncFocusRef.current ? v => v() : requestAnimationFrame;\n scheduler(() => {\n const waitedItem = listRef.current[indexRef.current] || initialItem;\n if (!waitedItem) {\n return;\n }\n if (!initialItem) {\n runFocus(waitedItem);\n }\n const scrollIntoViewOptions = scrollItemIntoViewRef.current;\n const shouldScrollIntoView =\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n scrollIntoViewOptions && item && (forceScrollIntoView || !isPointerModalityRef.current);\n if (shouldScrollIntoView) {\n // JSDOM doesn't support `.scrollIntoView()` but it's widely supported\n // by all browsers.\n waitedItem.scrollIntoView?.(typeof scrollIntoViewOptions === 'boolean' ? {\n block: 'nearest',\n inline: 'nearest'\n } : scrollIntoViewOptions);\n }\n });\n });\n\n // Sync `selectedIndex` to be the `activeIndex` upon opening the floating\n // element. Also, reset `activeIndex` upon closing the floating element.\n useIsoLayoutEffect(() => {\n if (!enabled) {\n return;\n }\n if (open && elements.floating) {\n if (focusItemOnOpenRef.current && selectedIndex != null) {\n // Regardless of the pointer modality, we want to ensure the selected\n // item comes into view when the floating element is opened.\n forceScrollIntoViewRef.current = true;\n indexRef.current = selectedIndex;\n onNavigate();\n }\n } else if (previousMountedRef.current) {\n // Since the user can specify `onNavigate` conditionally\n // (onNavigate: open ? setActiveIndex : setSelectedIndex),\n // we store and call the previous function.\n indexRef.current = -1;\n previousOnNavigateRef.current();\n }\n }, [enabled, open, elements.floating, selectedIndex, onNavigate]);\n\n // Sync `activeIndex` to be the focused item while the floating element is\n // open.\n useIsoLayoutEffect(() => {\n if (!enabled) {\n return;\n }\n if (!open) {\n return;\n }\n if (!elements.floating) {\n return;\n }\n if (activeIndex == null) {\n forceSyncFocusRef.current = false;\n if (selectedIndexRef.current != null) {\n return;\n }\n\n // Reset while the floating element was open (e.g. the list changed).\n if (previousMountedRef.current) {\n indexRef.current = -1;\n focusItem();\n }\n\n // Initial sync.\n if ((!previousOpenRef.current || !previousMountedRef.current) && focusItemOnOpenRef.current && (keyRef.current != null || focusItemOnOpenRef.current === true && keyRef.current == null)) {\n let runs = 0;\n const waitForListPopulated = () => {\n if (listRef.current[0] == null) {\n // Avoid letting the browser paint if possible on the first try,\n // otherwise use rAF. Don't try more than twice, since something\n // is wrong otherwise.\n if (runs < 2) {\n const scheduler = runs ? requestAnimationFrame : queueMicrotask;\n scheduler(waitForListPopulated);\n }\n runs += 1;\n } else {\n indexRef.current = keyRef.current == null || isMainOrientationToEndKey(keyRef.current, orientation, rtl) || nested ? getMinListIndex(listRef, disabledIndicesRef.current) : getMaxListIndex(listRef, disabledIndicesRef.current);\n keyRef.current = null;\n onNavigate();\n }\n };\n waitForListPopulated();\n }\n } else if (!isIndexOutOfListBounds(listRef, activeIndex)) {\n indexRef.current = activeIndex;\n focusItem();\n forceScrollIntoViewRef.current = false;\n }\n }, [enabled, open, elements.floating, activeIndex, selectedIndexRef, nested, listRef, orientation, rtl, onNavigate, focusItem, disabledIndicesRef]);\n\n // Ensure the parent floating element has focus when a nested child closes\n // to allow arrow key navigation to work after the pointer leaves the child.\n useIsoLayoutEffect(() => {\n if (!enabled || elements.floating || !tree || virtual || !previousMountedRef.current) {\n return;\n }\n const nodes = tree.nodesRef.current;\n const parent = nodes.find(node => node.id === parentId)?.context?.elements.floating;\n const activeEl = activeElement(getDocument(elements.floating));\n const treeContainsActiveEl = nodes.some(node => node.context && contains(node.context.elements.floating, activeEl));\n if (parent && !treeContainsActiveEl && isPointerModalityRef.current) {\n parent.focus({\n preventScroll: true\n });\n }\n }, [enabled, elements.floating, tree, parentId, virtual]);\n useIsoLayoutEffect(() => {\n previousOnNavigateRef.current = onNavigate;\n previousOpenRef.current = open;\n previousMountedRef.current = !!elements.floating;\n });\n useIsoLayoutEffect(() => {\n if (!open) {\n keyRef.current = null;\n focusItemOnOpenRef.current = focusItemOnOpen;\n }\n }, [open, focusItemOnOpen]);\n const hasActiveIndex = activeIndex != null;\n const item = React.useMemo(() => {\n function syncCurrentTarget(currentTarget) {\n if (!latestOpenRef.current) {\n return;\n }\n const index = listRef.current.indexOf(currentTarget);\n if (index !== -1 && indexRef.current !== index) {\n indexRef.current = index;\n onNavigate();\n }\n }\n const itemProps = {\n onFocus({\n currentTarget\n }) {\n forceSyncFocusRef.current = true;\n syncCurrentTarget(currentTarget);\n },\n onClick: ({\n currentTarget\n }) => currentTarget.focus({\n preventScroll: true\n }),\n // Safari\n onMouseMove({\n currentTarget\n }) {\n forceSyncFocusRef.current = true;\n forceScrollIntoViewRef.current = false;\n if (focusItemOnHover) {\n syncCurrentTarget(currentTarget);\n }\n },\n onPointerLeave({\n pointerType\n }) {\n if (!isPointerModalityRef.current || pointerType === 'touch') {\n return;\n }\n forceSyncFocusRef.current = true;\n if (!focusItemOnHover) {\n return;\n }\n indexRef.current = -1;\n onNavigate();\n if (!virtual) {\n floatingFocusElementRef.current?.focus({\n preventScroll: true\n });\n }\n }\n };\n return itemProps;\n }, [latestOpenRef, floatingFocusElementRef, focusItemOnHover, listRef, onNavigate, virtual]);\n const getParentOrientation = React.useCallback(() => {\n return parentOrientation ?? tree?.nodesRef.current.find(node => node.id === parentId)?.context?.dataRef?.current.orientation;\n }, [parentId, tree, parentOrientation]);\n const commonOnKeyDown = useEventCallback(event => {\n isPointerModalityRef.current = false;\n forceSyncFocusRef.current = true;\n\n // When composing a character, Chrome fires ArrowDown twice. Firefox/Safari\n // don't appear to suffer from this. `event.isComposing` is avoided due to\n // Safari not supporting it properly (although it's not needed in the first\n // place for Safari, just avoiding any possible issues).\n if (event.which === 229) {\n return;\n }\n\n // If the floating element is animating out, ignore navigation. Otherwise,\n // the `activeIndex` gets set to 0 despite not being open so the next time\n // the user ArrowDowns, the first item won't be focused.\n if (!latestOpenRef.current && event.currentTarget === floatingFocusElementRef.current) {\n return;\n }\n if (nested && isCrossOrientationCloseKey(event.key, orientation, rtl, cols)) {\n // If the nested list's close key is also the parent navigation key,\n // let the parent navigate. Otherwise, stop propagating the event.\n if (!isMainOrientationKey(event.key, getParentOrientation())) {\n stopEvent(event);\n }\n onOpenChange(false, event.nativeEvent, 'list-navigation');\n if (isHTMLElement(elements.domReference)) {\n if (virtual) {\n tree?.events.emit('virtualfocus', elements.domReference);\n } else {\n elements.domReference.focus();\n }\n }\n return;\n }\n const currentIndex = indexRef.current;\n const minIndex = getMinListIndex(listRef, disabledIndices);\n const maxIndex = getMaxListIndex(listRef, disabledIndices);\n if (!typeableComboboxReference) {\n if (event.key === 'Home') {\n stopEvent(event);\n indexRef.current = minIndex;\n onNavigate();\n }\n if (event.key === 'End') {\n stopEvent(event);\n indexRef.current = maxIndex;\n onNavigate();\n }\n }\n\n // Grid navigation.\n if (cols > 1) {\n const sizes = itemSizes || Array.from({\n length: listRef.current.length\n }, () => ({\n width: 1,\n height: 1\n }));\n // To calculate movements on the grid, we use hypothetical cell indices\n // as if every item was 1x1, then convert back to real indices.\n const cellMap = createGridCellMap(sizes, cols, dense);\n const minGridIndex = cellMap.findIndex(index => index != null && !isListIndexDisabled(listRef, index, disabledIndices));\n // last enabled index\n const maxGridIndex = cellMap.reduce((foundIndex, index, cellIndex) => index != null && !isListIndexDisabled(listRef, index, disabledIndices) ? cellIndex : foundIndex, -1);\n const index = cellMap[getGridNavigatedIndex({\n current: cellMap.map(itemIndex => itemIndex != null ? listRef.current[itemIndex] : null)\n }, {\n event,\n orientation,\n loop,\n rtl,\n cols,\n // treat undefined (empty grid spaces) as disabled indices so we\n // don't end up in them\n disabledIndices: getGridCellIndices([...((typeof disabledIndices !== 'function' ? disabledIndices : null) || listRef.current.map((_, listIndex) => isListIndexDisabled(listRef, listIndex, disabledIndices) ? listIndex : undefined)), undefined], cellMap),\n minIndex: minGridIndex,\n maxIndex: maxGridIndex,\n prevIndex: getGridCellIndexOfCorner(indexRef.current > maxIndex ? minIndex : indexRef.current, sizes, cellMap, cols,\n // use a corner matching the edge closest to the direction\n // we're moving in so we don't end up in the same item. Prefer\n // top/left over bottom/right.\n // eslint-disable-next-line no-nested-ternary\n event.key === ARROW_DOWN ? 'bl' : event.key === (rtl ? ARROW_LEFT : ARROW_RIGHT) ? 'tr' : 'tl'),\n stopEvent: true\n })];\n if (index != null) {\n indexRef.current = index;\n onNavigate();\n }\n if (orientation === 'both') {\n return;\n }\n }\n if (isMainOrientationKey(event.key, orientation)) {\n stopEvent(event);\n\n // Reset the index if no item is focused.\n if (open && !virtual && activeElement(event.currentTarget.ownerDocument) === event.currentTarget) {\n indexRef.current = isMainOrientationToEndKey(event.key, orientation, rtl) ? minIndex : maxIndex;\n onNavigate();\n return;\n }\n if (isMainOrientationToEndKey(event.key, orientation, rtl)) {\n if (loop) {\n indexRef.current =\n // eslint-disable-next-line no-nested-ternary\n currentIndex >= maxIndex ? allowEscape && currentIndex !== listRef.current.length ? -1 : minIndex : findNonDisabledListIndex(listRef, {\n startingIndex: currentIndex,\n disabledIndices\n });\n } else {\n indexRef.current = Math.min(maxIndex, findNonDisabledListIndex(listRef, {\n startingIndex: currentIndex,\n disabledIndices\n }));\n }\n } else if (loop) {\n indexRef.current =\n // eslint-disable-next-line no-nested-ternary\n currentIndex <= minIndex ? allowEscape && currentIndex !== -1 ? listRef.current.length : maxIndex : findNonDisabledListIndex(listRef, {\n startingIndex: currentIndex,\n decrement: true,\n disabledIndices\n });\n } else {\n indexRef.current = Math.max(minIndex, findNonDisabledListIndex(listRef, {\n startingIndex: currentIndex,\n decrement: true,\n disabledIndices\n }));\n }\n if (isIndexOutOfListBounds(listRef, indexRef.current)) {\n indexRef.current = -1;\n }\n onNavigate();\n }\n });\n const ariaActiveDescendantProp = React.useMemo(() => {\n return virtual && open && hasActiveIndex && {\n 'aria-activedescendant': activeId\n };\n }, [virtual, open, hasActiveIndex, activeId]);\n const floating = React.useMemo(() => {\n return {\n 'aria-orientation': orientation === 'both' ? undefined : orientation,\n ...(!typeableComboboxReference ? ariaActiveDescendantProp : {}),\n onKeyDown(event) {\n // Close submenu on Shift+Tab\n if (event.key === 'Tab' && event.shiftKey && open && !virtual) {\n stopEvent(event);\n onOpenChange(false, event.nativeEvent, 'list-navigation');\n if (isHTMLElement(elements.domReference)) {\n elements.domReference.focus();\n }\n return;\n }\n commonOnKeyDown(event);\n },\n onPointerMove() {\n isPointerModalityRef.current = true;\n }\n };\n }, [ariaActiveDescendantProp, commonOnKeyDown, orientation, typeableComboboxReference, onOpenChange, open, virtual, elements.domReference]);\n const reference = React.useMemo(() => {\n function checkVirtualMouse(event) {\n if (focusItemOnOpen === 'auto' && isVirtualClick(event.nativeEvent)) {\n focusItemOnOpenRef.current = true;\n }\n }\n function checkVirtualPointer(event) {\n // `pointerdown` fires first, reset the state then perform the checks.\n focusItemOnOpenRef.current = focusItemOnOpen;\n if (focusItemOnOpen === 'auto' && isVirtualPointerEvent(event.nativeEvent)) {\n focusItemOnOpenRef.current = true;\n }\n }\n return {\n ...ariaActiveDescendantProp,\n onKeyDown(event) {\n isPointerModalityRef.current = false;\n const isArrowKey = event.key.startsWith('Arrow');\n const isParentCrossOpenKey = isCrossOrientationOpenKey(event.key, getParentOrientation(), rtl);\n const isMainKey = isMainOrientationKey(event.key, orientation);\n const isNavigationKey = (nested ? isParentCrossOpenKey : isMainKey) || event.key === 'Enter' || event.key.trim() === '';\n if (virtual && open) {\n return commonOnKeyDown(event);\n }\n\n // If a floating element should not open on arrow key down, avoid\n // setting `activeIndex` while it's closed.\n if (!open && !openOnArrowKeyDown && isArrowKey) {\n return undefined;\n }\n if (isNavigationKey) {\n const isParentMainKey = isMainOrientationKey(event.key, getParentOrientation());\n keyRef.current = nested && isParentMainKey ? null : event.key;\n }\n if (nested) {\n if (isParentCrossOpenKey) {\n stopEvent(event);\n if (open) {\n indexRef.current = getMinListIndex(listRef, disabledIndicesRef.current);\n onNavigate();\n } else {\n onOpenChange(true, event.nativeEvent, 'list-navigation');\n }\n }\n return undefined;\n }\n if (isMainKey) {\n if (selectedIndex != null) {\n indexRef.current = selectedIndex;\n }\n stopEvent(event);\n if (!open && openOnArrowKeyDown) {\n onOpenChange(true, event.nativeEvent, 'list-navigation');\n } else {\n commonOnKeyDown(event);\n }\n if (open) {\n onNavigate();\n }\n }\n return undefined;\n },\n onFocus() {\n if (open && !virtual) {\n indexRef.current = -1;\n onNavigate();\n }\n },\n onPointerDown: checkVirtualPointer,\n onPointerEnter: checkVirtualPointer,\n onMouseDown: checkVirtualMouse,\n onClick: checkVirtualMouse\n };\n }, [ariaActiveDescendantProp, commonOnKeyDown, disabledIndicesRef, focusItemOnOpen, listRef, nested, onNavigate, onOpenChange, open, openOnArrowKeyDown, orientation, getParentOrientation, rtl, selectedIndex, virtual]);\n return React.useMemo(() => enabled ? {\n reference,\n floating,\n item\n } : {}, [enabled, reference, floating, item]);\n}","import * as React from 'react';\nimport { ACTIVE_KEY, FOCUSABLE_ATTRIBUTE, SELECTED_KEY } from \"../utils/constants.js\";\n/**\n * Merges an array of interaction hooks' props into prop getters, allowing\n * event handler functions to be composed together without overwriting one\n * another.\n * @see https://floating-ui.com/docs/useInteractions\n */\nexport function useInteractions(propsList = []) {\n const referenceDeps = propsList.map(key => key?.reference);\n const floatingDeps = propsList.map(key => key?.floating);\n const itemDeps = propsList.map(key => key?.item);\n const getReferenceProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'reference'),\n // eslint-disable-next-line react-hooks/exhaustive-deps\n referenceDeps);\n const getFloatingProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'floating'),\n // eslint-disable-next-line react-hooks/exhaustive-deps\n floatingDeps);\n const getItemProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'item'),\n // eslint-disable-next-line react-hooks/exhaustive-deps\n itemDeps);\n return React.useMemo(() => ({\n getReferenceProps,\n getFloatingProps,\n getItemProps\n }), [getReferenceProps, getFloatingProps, getItemProps]);\n}\n\n/* eslint-disable guard-for-in */\n\nfunction mergeProps(userProps, propsList, elementKey) {\n const eventHandlers = new Map();\n const isItem = elementKey === 'item';\n const outputProps = {};\n if (elementKey === 'floating') {\n outputProps.tabIndex = -1;\n outputProps[FOCUSABLE_ATTRIBUTE] = '';\n }\n for (const key in userProps) {\n if (isItem && userProps) {\n if (key === ACTIVE_KEY || key === SELECTED_KEY) {\n continue;\n }\n }\n outputProps[key] = userProps[key];\n }\n for (let i = 0; i < propsList.length; i += 1) {\n let props;\n const propsOrGetProps = propsList[i]?.[elementKey];\n if (typeof propsOrGetProps === 'function') {\n props = userProps ? propsOrGetProps(userProps) : null;\n } else {\n props = propsOrGetProps;\n }\n if (!props) {\n continue;\n }\n mutablyMergeProps(outputProps, props, isItem, eventHandlers);\n }\n mutablyMergeProps(outputProps, userProps, isItem, eventHandlers);\n return outputProps;\n}\nfunction mutablyMergeProps(outputProps, props, isItem, eventHandlers) {\n for (const key in props) {\n const value = props[key];\n if (isItem && (key === ACTIVE_KEY || key === SELECTED_KEY)) {\n continue;\n }\n if (!key.startsWith('on')) {\n outputProps[key] = value;\n } else {\n if (!eventHandlers.has(key)) {\n eventHandlers.set(key, []);\n }\n if (typeof value === 'function') {\n eventHandlers.get(key)?.push(value);\n outputProps[key] = (...args) => {\n return eventHandlers.get(key)?.map(fn => fn(...args)).find(val => val !== undefined);\n };\n }\n }\n }\n}","'use client';\n\nimport * as React from 'react';\nexport const MenuRootContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") MenuRootContext.displayName = \"MenuRootContext\";\nexport function useMenuRootContext(optional) {\n const context = React.useContext(MenuRootContext);\n if (context === undefined && !optional) {\n throw new Error('Base UI: MenuRootContext is missing. Menu parts must be placed within <Menu.Root>.');\n }\n return context;\n}","'use client';\n\nimport * as React from 'react';\nexport const MenubarContext = /*#__PURE__*/React.createContext(null);\nif (process.env.NODE_ENV !== \"production\") MenubarContext.displayName = \"MenubarContext\";\nexport function useMenubarContext(optional) {\n const context = React.useContext(MenubarContext);\n if (context === null && !optional) {\n throw new Error('Base UI: MenubarContext is missing. Menubar parts must be placed within <Menubar>.');\n }\n return context;\n}","'use client';\n\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { AnimationFrame } from '@base-ui-components/utils/useAnimationFrame';\n/**\n * Provides a status string for CSS animations.\n * @param open - a boolean that determines if the element is open.\n * @param enableIdleState - a boolean that enables the `'idle'` state between `'starting'` and `'ending'`\n */\nexport function useTransitionStatus(open, enableIdleState = false, deferEndingState = false) {\n const [transitionStatus, setTransitionStatus] = React.useState(open && enableIdleState ? 'idle' : undefined);\n const [mounted, setMounted] = React.useState(open);\n if (open && !mounted) {\n setMounted(true);\n setTransitionStatus('starting');\n }\n if (!open && mounted && transitionStatus !== 'ending' && !deferEndingState) {\n setTransitionStatus('ending');\n }\n if (!open && !mounted && transitionStatus === 'ending') {\n setTransitionStatus(undefined);\n }\n useIsoLayoutEffect(() => {\n if (!open && mounted && transitionStatus !== 'ending' && deferEndingState) {\n const frame = AnimationFrame.request(() => {\n setTransitionStatus('ending');\n });\n return () => {\n AnimationFrame.cancel(frame);\n };\n }\n return undefined;\n }, [open, mounted, transitionStatus, deferEndingState]);\n useIsoLayoutEffect(() => {\n if (!open || enableIdleState) {\n return undefined;\n }\n const frame = AnimationFrame.request(() => {\n ReactDOM.flushSync(() => {\n setTransitionStatus(undefined);\n });\n });\n return () => {\n AnimationFrame.cancel(frame);\n };\n }, [enableIdleState, open]);\n useIsoLayoutEffect(() => {\n if (!open || !enableIdleState) {\n return undefined;\n }\n if (open && mounted && transitionStatus !== 'idle') {\n setTransitionStatus('starting');\n }\n const frame = AnimationFrame.request(() => {\n setTransitionStatus('idle');\n });\n return () => {\n AnimationFrame.cancel(frame);\n };\n }, [enableIdleState, open, mounted, setTransitionStatus, transitionStatus]);\n return React.useMemo(() => ({\n mounted,\n setMounted,\n transitionStatus\n }), [mounted, transitionStatus]);\n}","'use client';\n\nimport * as React from 'react';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useLatestRef } from '@base-ui-components/utils/useLatestRef';\nimport { useAnimationsFinished } from \"./useAnimationsFinished.js\";\n\n/**\n * Calls the provided function when the CSS open/close animation or transition completes.\n */\nexport function useOpenChangeComplete(parameters) {\n const {\n enabled = true,\n open,\n ref,\n onComplete: onCompleteParam\n } = parameters;\n const openRef = useLatestRef(open);\n const onComplete = useEventCallback(onCompleteParam);\n const runOnceAnimationsFinish = useAnimationsFinished(ref, open);\n React.useEffect(() => {\n if (!enabled) {\n return;\n }\n runOnceAnimationsFinish(() => {\n if (open === openRef.current) {\n onComplete();\n }\n });\n }, [enabled, open, onComplete, runOnceAnimationsFinish, openRef]);\n}","'use client';\n\nimport * as ReactDOM from 'react-dom';\nimport { useAnimationFrame } from '@base-ui-components/utils/useAnimationFrame';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\n\n/**\n * Executes a function once all animations have finished on the provided element.\n * @param elementOrRef - The element to watch for animations.\n * @param waitForNextTick - Whether to wait for the next tick before checking for animations.\n */\nexport function useAnimationsFinished(elementOrRef, waitForNextTick = false) {\n const frame = useAnimationFrame();\n return useEventCallback((fnToExecute,\n /**\n * An optional [AbortSignal](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) that\n * can be used to abort `fnToExecute` before all the animations have finished.\n * @default null\n */\n signal = null) => {\n frame.cancel();\n if (elementOrRef == null) {\n return;\n }\n let element;\n if ('current' in elementOrRef) {\n if (elementOrRef.current == null) {\n return;\n }\n element = elementOrRef.current;\n } else {\n element = elementOrRef;\n }\n if (typeof element.getAnimations !== 'function' || globalThis.BASE_UI_ANIMATIONS_DISABLED) {\n fnToExecute();\n } else {\n frame.request(() => {\n function exec() {\n if (!element) {\n return;\n }\n Promise.allSettled(element.getAnimations().map(anim => anim.finished)).then(() => {\n if (signal != null && signal.aborted) {\n return;\n }\n // Synchronously flush the unmounting of the component so that the browser doesn't\n // paint: https://github.com/mui/base-ui/issues/979\n ReactDOM.flushSync(fnToExecute);\n });\n }\n\n // `open: true` animations need to wait for the next tick to be detected\n if (waitForNextTick) {\n frame.request(exec);\n } else {\n exec();\n }\n });\n }\n });\n}","'use client';\n\nimport * as React from 'react';\n/**\n * @internal\n */\nexport const DirectionContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") DirectionContext.displayName = \"DirectionContext\";\nexport function useDirection(optional = true) {\n const context = React.useContext(DirectionContext);\n if (context === undefined && !optional) {\n throw new Error('Base UI: DirectionContext is missing.');\n }\n return context?.direction ?? 'ltr';\n}","export { getWindow as ownerWindow } from '@floating-ui/utils/dom';\nexport function ownerDocument(node) {\n return node?.ownerDocument || document;\n}","export const NOOP = () => {};","import { isIOS, isWebKit } from '@base-ui-components/utils/detectBrowser';\nimport { ownerDocument, ownerWindow } from '@base-ui-components/utils/owner';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { Timeout } from '@base-ui-components/utils/useTimeout';\nimport { AnimationFrame } from '@base-ui-components/utils/useAnimationFrame';\nimport { NOOP } from \"./noop.js\";\n\n/* eslint-disable lines-between-class-members */\n\nlet originalHtmlStyles = {};\nlet originalBodyStyles = {};\nlet originalHtmlScrollBehavior = '';\nfunction hasInsetScrollbars(referenceElement) {\n if (typeof document === 'undefined') {\n return false;\n }\n const doc = ownerDocument(referenceElement);\n const win = ownerWindow(doc);\n return win.innerWidth - doc.documentElement.clientWidth > 0;\n}\nfunction preventScrollBasic(referenceElement) {\n const doc = ownerDocument(referenceElement);\n const html = doc.documentElement;\n const originalOverflow = html.style.overflow;\n html.style.overflow = 'hidden';\n return () => {\n html.style.overflow = originalOverflow;\n };\n}\nfunction preventScrollStandard(referenceElement) {\n const doc = ownerDocument(referenceElement);\n const html = doc.documentElement;\n const body = doc.body;\n const win = ownerWindow(html);\n let scrollTop = 0;\n let scrollLeft = 0;\n const resizeFrame = AnimationFrame.create();\n\n // Pinch-zoom in Safari causes a shift. Just don't lock scroll if there's any pinch-zoom.\n if (isWebKit && (win.visualViewport?.scale ?? 1) !== 1) {\n return () => {};\n }\n function lockScroll() {\n /* DOM reads: */\n\n const htmlStyles = win.getComputedStyle(html);\n const bodyStyles = win.getComputedStyle(body);\n scrollTop = html.scrollTop;\n scrollLeft = html.scrollLeft;\n originalHtmlStyles = {\n scrollbarGutter: html.style.scrollbarGutter,\n overflowY: html.style.overflowY,\n overflowX: html.style.overflowX\n };\n originalHtmlScrollBehavior = html.style.scrollBehavior;\n originalBodyStyles = {\n position: body.style.position,\n height: body.style.height,\n width: body.style.width,\n boxSizing: body.style.boxSizing,\n overflowY: body.style.overflowY,\n overflowX: body.style.overflowX,\n scrollBehavior: body.style.scrollBehavior\n };\n\n // Handle `scrollbar-gutter` in Chrome when there is no scrollable content.\n const supportsStableScrollbarGutter = typeof CSS !== 'undefined' && CSS.supports?.('scrollbar-gutter', 'stable');\n const isScrollableY = html.scrollHeight > html.clientHeight;\n const isScrollableX = html.scrollWidth > html.clientWidth;\n const hasConstantOverflowY = htmlStyles.overflowY === 'scroll' || bodyStyles.overflowY === 'scroll';\n const hasConstantOverflowX = htmlStyles.overflowX === 'scroll' || bodyStyles.overflowX === 'scroll';\n\n // Values can be negative in Firefox\n const scrollbarWidth = Math.max(0, win.innerWidth - html.clientWidth);\n const scrollbarHeight = Math.max(0, win.innerHeight - html.clientHeight);\n\n // Avoid shift due to the default <body> margin. This does cause elements to be clipped\n // with whitespace. Warn if <body> has margins?\n const marginY = parseFloat(bodyStyles.marginTop) + parseFloat(bodyStyles.marginBottom);\n const marginX = parseFloat(bodyStyles.marginLeft) + parseFloat(bodyStyles.marginRight);\n\n /*\n * DOM writes:\n * Do not read the DOM past this point!\n */\n\n Object.assign(html.style, {\n scrollbarGutter: 'stable',\n overflowY: !supportsStableScrollbarGutter && (isScrollableY || hasConstantOverflowY) ? 'scroll' : 'hidden',\n overflowX: !supportsStableScrollbarGutter && (isScrollableX || hasConstantOverflowX) ? 'scroll' : 'hidden'\n });\n Object.assign(body.style, {\n position: 'relative',\n height: marginY || scrollbarHeight ? `calc(100dvh - ${marginY + scrollbarHeight}px)` : '100dvh',\n width: marginX || scrollbarWidth ? `calc(100vw - ${marginX + scrollbarWidth}px)` : '100vw',\n boxSizing: 'border-box',\n overflow: 'hidden',\n scrollBehavior: 'unset'\n });\n body.scrollTop = scrollTop;\n body.scrollLeft = scrollLeft;\n html.setAttribute('data-base-ui-scroll-locked', '');\n html.style.scrollBehavior = 'unset';\n }\n function cleanup() {\n Object.assign(html.style, originalHtmlStyles);\n Object.assign(body.style, originalBodyStyles);\n html.scrollTop = scrollTop;\n html.scrollLeft = scrollLeft;\n html.removeAttribute('data-base-ui-scroll-locked');\n html.style.scrollBehavior = originalHtmlScrollBehavior;\n }\n function handleResize() {\n cleanup();\n resizeFrame.request(lockScroll);\n }\n lockScroll();\n win.addEventListener('resize', handleResize);\n return () => {\n resizeFrame.cancel();\n cleanup();\n win.removeEventListener('resize', handleResize);\n };\n}\nclass ScrollLocker {\n lockCount = 0;\n restore = (() => null)();\n timeoutLock = (() => Timeout.create())();\n timeoutUnlock = (() => Timeout.create())();\n acquire(referenceElement) {\n this.lockCount += 1;\n if (this.lockCount === 1 && this.restore === null) {\n this.timeoutLock.start(0, () => this.lock(referenceElement));\n }\n return this.release;\n }\n release = () => {\n this.lockCount -= 1;\n if (this.lockCount === 0 && this.restore) {\n this.timeoutUnlock.start(0, this.unlock);\n }\n };\n unlock = () => {\n if (this.lockCount === 0 && this.restore) {\n this.restore?.();\n this.restore = null;\n }\n };\n lock(referenceElement) {\n if (this.lockCount === 0 || this.restore !== null) {\n return;\n }\n const doc = ownerDocument(referenceElement);\n const html = doc.documentElement;\n const htmlOverflowY = ownerWindow(html).getComputedStyle(html).overflowY;\n\n // If the site author already hid overflow on <html>, respect it and bail out.\n if (htmlOverflowY === 'hidden' || htmlOverflowY === 'clip') {\n this.restore = NOOP;\n return;\n }\n const isOverflowHiddenLock = isIOS || !hasInsetScrollbars(referenceElement);\n\n // On iOS, scroll locking does not work if the navbar is collapsed. Due to numerous\n // side effects and bugs that arise on iOS, it must be researched extensively before\n // being enabled to ensure it doesn't cause the following issues:\n // - Textboxes must scroll into view when focused, nor cause a glitchy scroll animation.\n // - The navbar must not force itself into view and cause layout shift.\n // - Scroll containers must not flicker upon closing a popup when it has an exit animation.\n this.restore = isOverflowHiddenLock ? preventScrollBasic(referenceElement) : preventScrollStandard(referenceElement);\n }\n}\nconst SCROLL_LOCKER = new ScrollLocker();\n\n/**\n * Locks the scroll of the document when enabled.\n *\n * @param enabled - Whether to enable the scroll lock.\n */\nexport function useScrollLock(params) {\n const {\n enabled = true,\n mounted,\n open,\n referenceElement = null\n } = params;\n\n // https://github.com/mui/base-ui/issues/1135\n useIsoLayoutEffect(() => {\n if (enabled && isWebKit && mounted && !open) {\n const doc = ownerDocument(referenceElement);\n const originalUserSelect = doc.body.style.userSelect;\n const originalWebkitUserSelect = doc.body.style.webkitUserSelect;\n doc.body.style.userSelect = 'none';\n doc.body.style.webkitUserSelect = 'none';\n return () => {\n doc.body.style.userSelect = originalUserSelect;\n doc.body.style.webkitUserSelect = originalWebkitUserSelect;\n };\n }\n return undefined;\n }, [enabled, mounted, open, referenceElement]);\n useIsoLayoutEffect(() => {\n if (!enabled) {\n return undefined;\n }\n return SCROLL_LOCKER.acquire(referenceElement);\n }, [enabled, referenceElement]);\n}","export function translateOpenChangeReason(nativeReason) {\n if (!nativeReason) {\n return undefined;\n }\n return {\n // Identical mappings\n 'focus-out': 'focus-out',\n 'escape-key': 'escape-key',\n 'outside-press': 'outside-press',\n 'list-navigation': 'list-navigation',\n // New mappings\n click: 'trigger-press',\n hover: 'trigger-hover',\n focus: 'trigger-focus',\n 'reference-press': 'trigger-press',\n 'safe-polygon': 'trigger-hover',\n 'ancestor-scroll': undefined // Not supported\n }[nativeReason];\n}","import * as React from 'react';\nexport const ContextMenuRootContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") ContextMenuRootContext.displayName = \"ContextMenuRootContext\";\nexport function useContextMenuRootContext(optional = true) {\n const context = React.useContext(ContextMenuRootContext);\n if (context === undefined && !optional) {\n throw new Error('Base UI: ContextMenuRootContext is missing. ContextMenu parts must be placed within <ContextMenu.Root>.');\n }\n return context;\n}","import * as React from 'react';\nexport const MenuSubmenuRootContext = /*#__PURE__*/React.createContext(false);\nif (process.env.NODE_ENV !== \"production\") MenuSubmenuRootContext.displayName = \"MenuSubmenuRootContext\";\nexport function useMenuSubmenuRootContext() {\n return React.useContext(MenuSubmenuRootContext);\n}","export function mergeObjects(a, b) {\n if (a && !b) {\n return a;\n }\n if (!a && b) {\n return b;\n }\n if (a || b) {\n return {\n ...a,\n ...b\n };\n }\n return undefined;\n}","import { mergeObjects } from '@base-ui-components/utils/mergeObjects';\nconst EMPTY_PROPS = {};\n\n/**\n * Merges multiple sets of React props. It follows the Object.assign pattern where the rightmost object's fields overwrite\n * the conflicting ones from others. This doesn't apply to event handlers, `className` and `style` props.\n * Event handlers are merged such that they are called in sequence (the rightmost one being called first),\n * and allows the user to prevent the subsequent event handlers from being\n * executed by attaching a `preventBaseUIHandler` method.\n * It also merges the `className` and `style` props, whereby the classes are concatenated\n * and the rightmost styles overwrite the subsequent ones.\n *\n * Props can either be provided as objects or as functions that take the previous props as an argument.\n * The function will receive the merged props up to that point (going from left to right):\n * so in the case of `(obj1, obj2, fn, obj3)`, `fn` will receive the merged props of `obj1` and `obj2`.\n * The function is responsible for chaining event handlers if needed (i.e. we don't run the merge logic).\n *\n * Event handlers returned by the functions are not automatically prevented when `preventBaseUIHandler` is called.\n * They must check `event.baseUIHandlerPrevented` themselves and bail out if it's true.\n *\n * @important **`ref` is not merged.**\n * @param props props to merge.\n * @returns the merged props.\n */\n/* eslint-disable id-denylist */\n\nexport function mergeProps(a, b, c, d, e) {\n // We need to mutably own `merged`\n let merged = {\n ...resolvePropsGetter(a, EMPTY_PROPS)\n };\n if (b) {\n merged = mergeOne(merged, b);\n }\n if (c) {\n merged = mergeOne(merged, c);\n }\n if (d) {\n merged = mergeOne(merged, d);\n }\n if (e) {\n merged = mergeOne(merged, e);\n }\n return merged;\n}\n/* eslint-enable id-denylist */\n\nexport function mergePropsN(props) {\n if (props.length === 0) {\n return EMPTY_PROPS;\n }\n if (props.length === 1) {\n return resolvePropsGetter(props[0], EMPTY_PROPS);\n }\n\n // We need to mutably own `merged`\n let merged = {\n ...resolvePropsGetter(props[0], EMPTY_PROPS)\n };\n for (let i = 1; i < props.length; i += 1) {\n merged = mergeOne(merged, props[i]);\n }\n return merged;\n}\nfunction mergeOne(merged, inputProps) {\n if (isPropsGetter(inputProps)) {\n return inputProps(merged);\n }\n return mutablyMergeInto(merged, inputProps);\n}\n\n/**\n * Merges two sets of props. In case of conflicts, the external props take precedence.\n */\nfunction mutablyMergeInto(mergedProps, externalProps) {\n if (!externalProps) {\n return mergedProps;\n }\n\n // eslint-disable-next-line guard-for-in\n for (const propName in externalProps) {\n const externalPropValue = externalProps[propName];\n switch (propName) {\n case 'style':\n {\n mergedProps[propName] = mergeObjects(mergedProps.style, externalPropValue);\n break;\n }\n case 'className':\n {\n mergedProps[propName] = mergeClassNames(mergedProps.className, externalPropValue);\n break;\n }\n default:\n {\n if (isEventHandler(propName, externalPropValue)) {\n mergedProps[propName] = mergeEventHandlers(mergedProps[propName], externalPropValue);\n } else {\n mergedProps[propName] = externalPropValue;\n }\n }\n }\n }\n return mergedProps;\n}\nfunction isEventHandler(key, value) {\n // This approach is more efficient than using a regex.\n const code0 = key.charCodeAt(0);\n const code1 = key.charCodeAt(1);\n const code2 = key.charCodeAt(2);\n return code0 === 111 /* o */ && code1 === 110 /* n */ && code2 >= 65 /* A */ && code2 <= 90 /* Z */ && (typeof value === 'function' || typeof value === 'undefined');\n}\nfunction isPropsGetter(inputProps) {\n return typeof inputProps === 'function';\n}\nfunction resolvePropsGetter(inputProps, previousProps) {\n if (isPropsGetter(inputProps)) {\n return inputProps(previousProps);\n }\n return inputProps ?? EMPTY_PROPS;\n}\nfunction mergeEventHandlers(ourHandler, theirHandler) {\n if (!theirHandler) {\n return ourHandler;\n }\n if (!ourHandler) {\n return theirHandler;\n }\n return event => {\n if (isSyntheticEvent(event)) {\n const baseUIEvent = event;\n makeEventPreventable(baseUIEvent);\n const result = theirHandler(baseUIEvent);\n if (!baseUIEvent.baseUIHandlerPrevented) {\n ourHandler?.(baseUIEvent);\n }\n return result;\n }\n const result = theirHandler(event);\n ourHandler?.(event);\n return result;\n };\n}\nexport function makeEventPreventable(event) {\n event.preventBaseUIHandler = () => {\n event.baseUIHandlerPrevented = true;\n };\n return event;\n}\nexport function mergeClassNames(ourClassName, theirClassName) {\n if (theirClassName) {\n if (ourClassName) {\n // eslint-disable-next-line prefer-template\n return theirClassName + ' ' + ourClassName;\n }\n return theirClassName;\n }\n return ourClassName;\n}\nfunction isSyntheticEvent(event) {\n return event != null && typeof event === 'object' && 'nativeEvent' in event;\n}","'use client';\n\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { useTimeout } from '@base-ui-components/utils/useTimeout';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useControlled } from '@base-ui-components/utils/useControlled';\nimport { useId } from '@base-ui-components/utils/useId';\nimport { FloatingTree, useClick, useDismiss, useFloatingRootContext, useFocus, useHover, useInteractions, useListNavigation, useRole, useTypeahead, safePolygon } from \"../../floating-ui-react/index.js\";\nimport { MenuRootContext, useMenuRootContext } from \"./MenuRootContext.js\";\nimport { useMenubarContext } from \"../../menubar/MenubarContext.js\";\nimport { useTransitionStatus } from \"../../utils/useTransitionStatus.js\";\nimport { PATIENT_CLICK_THRESHOLD, TYPEAHEAD_RESET_MS } from \"../../utils/constants.js\";\nimport { useOpenChangeComplete } from \"../../utils/useOpenChangeComplete.js\";\nimport { useDirection } from \"../../direction-provider/DirectionContext.js\";\nimport { useScrollLock } from \"../../utils/useScrollLock.js\";\nimport { useOpenInteractionType } from \"../../utils/useOpenInteractionType.js\";\nimport { translateOpenChangeReason } from \"../../utils/translateOpenChangeReason.js\";\nimport { useContextMenuRootContext } from \"../../context-menu/root/ContextMenuRootContext.js\";\nimport { useMenuSubmenuRootContext } from \"../submenu-root/MenuSubmenuRootContext.js\";\nimport { useMixedToggleClickHandler } from \"../../utils/useMixedToggleClickHander.js\";\nimport { mergeProps } from \"../../merge-props/index.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst EMPTY_ARRAY = [];\nconst EMPTY_REF = {\n current: false\n};\n\n/**\n * Groups all parts of the menu.\n * Doesn’t render its own HTML element.\n *\n * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)\n */\nexport const MenuRoot = function MenuRoot(props) {\n const {\n children,\n open: openProp,\n onOpenChange,\n onOpenChangeComplete,\n defaultOpen = false,\n disabled = false,\n modal: modalProp,\n loop = true,\n orientation = 'vertical',\n actionsRef,\n openOnHover: openOnHoverProp,\n delay = 100,\n closeDelay = 0,\n closeParentOnEsc = true\n } = props;\n const [triggerElement, setTriggerElement] = React.useState(null);\n const [positionerElement, setPositionerElementUnwrapped] = React.useState(null);\n const [instantType, setInstantType] = React.useState();\n const [hoverEnabled, setHoverEnabled] = React.useState(true);\n const [activeIndex, setActiveIndex] = React.useState(null);\n const [lastOpenChangeReason, setLastOpenChangeReason] = React.useState(null);\n const [stickIfOpen, setStickIfOpen] = React.useState(true);\n const [allowMouseEnterState, setAllowMouseEnterState] = React.useState(false);\n const openEventRef = React.useRef(null);\n const popupRef = React.useRef(null);\n const positionerRef = React.useRef(null);\n const itemDomElements = React.useRef([]);\n const itemLabels = React.useRef([]);\n const stickIfOpenTimeout = useTimeout();\n const contextMenuContext = useContextMenuRootContext(true);\n const isSubmenu = useMenuSubmenuRootContext();\n let parent;\n {\n const parentContext = useMenuRootContext(true);\n const menubarContext = useMenubarContext(true);\n if (isSubmenu && parentContext) {\n parent = {\n type: 'menu',\n context: parentContext\n };\n } else if (menubarContext) {\n parent = {\n type: 'menubar',\n context: menubarContext\n };\n } else if (contextMenuContext) {\n parent = {\n type: 'context-menu',\n context: contextMenuContext\n };\n } else {\n parent = {\n type: undefined\n };\n }\n }\n let rootId = useId();\n if (parent.type !== undefined) {\n rootId = parent.context.rootId;\n }\n const modal = (parent.type === undefined || parent.type === 'context-menu') && (modalProp ?? true);\n\n // If this menu is a submenu, it should inherit `allowMouseEnter` from its\n // parent. Otherwise it manages the state on its own.\n const allowMouseEnter = parent.type === 'menu' ? parent.context.allowMouseEnter : allowMouseEnterState;\n const setAllowMouseEnter = parent.type === 'menu' ? parent.context.setAllowMouseEnter : setAllowMouseEnterState;\n if (process.env.NODE_ENV !== 'production') {\n if (parent.type !== undefined && modalProp !== undefined) {\n console.warn('Base UI: The `modal` prop is not supported on nested menus. It will be ignored.');\n }\n }\n const openOnHover = openOnHoverProp ?? (parent.type === 'menu' || parent.type === 'menubar' && parent.context.hasSubmenuOpen);\n const [open, setOpenUnwrapped] = useControlled({\n controlled: openProp,\n default: defaultOpen,\n name: 'MenuRoot',\n state: 'open'\n });\n const allowOutsidePressDismissalRef = React.useRef(parent.type !== 'context-menu');\n const allowOutsidePressDismissalTimeout = useTimeout();\n React.useEffect(() => {\n if (!open) {\n openEventRef.current = null;\n }\n if (parent.type !== 'context-menu') {\n return;\n }\n if (!open) {\n allowOutsidePressDismissalTimeout.clear();\n allowOutsidePressDismissalRef.current = false;\n return;\n }\n\n // With `mousedown` outside press events and long press touch input, there\n // needs to be a grace period after opening to ensure the dismissal event\n // doesn't fire immediately after open.\n allowOutsidePressDismissalTimeout.start(500, () => {\n allowOutsidePressDismissalRef.current = true;\n });\n }, [allowOutsidePressDismissalTimeout, open, parent.type]);\n const setPositionerElement = React.useCallback(value => {\n positionerRef.current = value;\n setPositionerElementUnwrapped(value);\n }, []);\n const {\n mounted,\n setMounted,\n transitionStatus\n } = useTransitionStatus(open);\n const {\n openMethod,\n triggerProps: interactionTypeProps,\n reset: resetOpenInteractionType\n } = useOpenInteractionType(open);\n useScrollLock({\n enabled: open && modal && lastOpenChangeReason !== 'trigger-hover' && openMethod !== 'touch',\n mounted,\n open,\n referenceElement: positionerElement\n });\n if (!open && !hoverEnabled) {\n setHoverEnabled(true);\n }\n const handleUnmount = useEventCallback(() => {\n setMounted(false);\n setStickIfOpen(true);\n setAllowMouseEnter(false);\n onOpenChangeComplete?.(false);\n resetOpenInteractionType();\n });\n useOpenChangeComplete({\n enabled: !actionsRef,\n open,\n ref: popupRef,\n onComplete() {\n if (!open) {\n handleUnmount();\n }\n }\n });\n const allowTouchToCloseRef = React.useRef(true);\n const allowTouchToCloseTimeout = useTimeout();\n const setOpen = useEventCallback((nextOpen, event, reason) => {\n if (open === nextOpen) {\n return;\n }\n if (nextOpen === false && event?.type === 'click' && event.pointerType === 'touch' && !allowTouchToCloseRef.current) {\n return;\n }\n\n // Workaround `enableFocusInside` in Floating UI setting `tabindex=0` of a non-highlighted\n // option upon close when tabbing out due to `keepMounted=true`:\n // https://github.com/floating-ui/floating-ui/pull/3004/files#diff-962a7439cdeb09ea98d4b622a45d517bce07ad8c3f866e089bda05f4b0bbd875R194-R199\n // This otherwise causes options to retain `tabindex=0` incorrectly when the popup is closed\n // when tabbing outside.\n if (!nextOpen && activeIndex !== null) {\n const activeOption = itemDomElements.current[activeIndex];\n // Wait for Floating UI's focus effect to have fired\n queueMicrotask(() => {\n activeOption?.setAttribute('tabindex', '-1');\n });\n }\n\n // Prevent the menu from closing on mobile devices that have a delayed click event.\n // In some cases the menu, when tapped, will fire the focus event first and then the click event.\n // Without this guard, the menu will close immediately after opening.\n if (nextOpen && reason === 'trigger-focus') {\n allowTouchToCloseRef.current = false;\n allowTouchToCloseTimeout.start(300, () => {\n allowTouchToCloseRef.current = true;\n });\n } else {\n allowTouchToCloseRef.current = true;\n allowTouchToCloseTimeout.clear();\n }\n const isKeyboardClick = (reason === 'trigger-press' || reason === 'item-press') && event.detail === 0 && event?.isTrusted;\n const isDismissClose = !nextOpen && (reason === 'escape-key' || reason == null);\n function changeState() {\n onOpenChange?.(nextOpen, event, reason);\n setOpenUnwrapped(nextOpen);\n setLastOpenChangeReason(reason ?? null);\n openEventRef.current = event ?? null;\n }\n if (reason === 'trigger-hover') {\n // Only allow \"patient\" clicks to close the menu if it's open.\n // If they clicked within 500ms of the menu opening, keep it open.\n setStickIfOpen(true);\n stickIfOpenTimeout.start(PATIENT_CLICK_THRESHOLD, () => {\n setStickIfOpen(false);\n });\n ReactDOM.flushSync(changeState);\n } else {\n changeState();\n }\n if (parent.type === 'menubar' && (reason === 'trigger-focus' || reason === 'focus-out' || reason === 'trigger-hover' || reason === 'list-navigation' || reason === 'sibling-open')) {\n setInstantType('group');\n } else if (isKeyboardClick || isDismissClose) {\n setInstantType(isKeyboardClick ? 'click' : 'dismiss');\n } else {\n setInstantType(undefined);\n }\n });\n React.useImperativeHandle(actionsRef, () => ({\n unmount: handleUnmount\n }), [handleUnmount]);\n let ctx;\n if (parent.type === 'context-menu') {\n ctx = parent.context;\n }\n React.useImperativeHandle(ctx?.positionerRef, () => positionerElement, [positionerElement]);\n React.useImperativeHandle(ctx?.actionsRef, () => ({\n setOpen\n }), [setOpen]);\n React.useEffect(() => {\n if (!open) {\n stickIfOpenTimeout.clear();\n }\n }, [stickIfOpenTimeout, open]);\n const floatingRootContext = useFloatingRootContext({\n elements: {\n reference: triggerElement,\n floating: positionerElement\n },\n open,\n onOpenChange(openValue, eventValue, reasonValue) {\n setOpen(openValue, eventValue, translateOpenChangeReason(reasonValue));\n }\n });\n const hover = useHover(floatingRootContext, {\n enabled: hoverEnabled && openOnHover && !disabled && parent.type !== 'context-menu' && (parent.type !== 'menubar' || parent.context.hasSubmenuOpen && !open),\n handleClose: safePolygon({\n blockPointerEvents: true\n }),\n mouseOnly: true,\n move: parent.type === 'menu',\n restMs: parent.type === undefined || parent.type === 'menu' && allowMouseEnter ? delay : undefined,\n delay: parent.type === 'menu' ? {\n open: allowMouseEnter ? delay : 10 ** 10,\n close: closeDelay\n } : {\n close: closeDelay\n }\n });\n const focus = useFocus(floatingRootContext, {\n enabled: !disabled && !open && parent.type === 'menubar' && parent.context.hasSubmenuOpen && !contextMenuContext\n });\n const click = useClick(floatingRootContext, {\n enabled: !disabled && parent.type !== 'context-menu',\n event: open && parent.type === 'menubar' ? 'click' : 'mousedown',\n toggle: !openOnHover || parent.type !== 'menu',\n ignoreMouse: openOnHover && parent.type === 'menu',\n stickIfOpen: parent.type === undefined ? stickIfOpen : false\n });\n const dismiss = useDismiss(floatingRootContext, {\n enabled: !disabled,\n bubbles: closeParentOnEsc && parent.type === 'menu',\n outsidePress() {\n if (parent.type !== 'context-menu' || openEventRef.current?.type === 'contextmenu') {\n return true;\n }\n return allowOutsidePressDismissalRef.current;\n }\n });\n const role = useRole(floatingRootContext, {\n role: 'menu'\n });\n const direction = useDirection();\n const listNavigation = useListNavigation(floatingRootContext, {\n enabled: !disabled,\n listRef: itemDomElements,\n activeIndex,\n nested: parent.type !== undefined,\n loop,\n orientation,\n parentOrientation: parent.type === 'menubar' ? parent.context.orientation : undefined,\n rtl: direction === 'rtl',\n disabledIndices: EMPTY_ARRAY,\n onNavigate: setActiveIndex,\n openOnArrowKeyDown: parent.type !== 'context-menu'\n });\n const typingRef = React.useRef(false);\n const onTypingChange = React.useCallback(nextTyping => {\n typingRef.current = nextTyping;\n }, []);\n const typeahead = useTypeahead(floatingRootContext, {\n listRef: itemLabels,\n activeIndex,\n resetMs: TYPEAHEAD_RESET_MS,\n onMatch: index => {\n if (open && index !== activeIndex) {\n setActiveIndex(index);\n }\n },\n onTypingChange\n });\n const {\n getReferenceProps,\n getFloatingProps,\n getItemProps\n } = useInteractions([hover, click, dismiss, focus, role, listNavigation, typeahead]);\n const mixedToggleHandlers = useMixedToggleClickHandler({\n open,\n enabled: parent.type === 'menubar',\n mouseDownAction: 'open'\n });\n const triggerProps = React.useMemo(() => {\n const referenceProps = mergeProps(getReferenceProps(), {\n onMouseEnter() {\n setHoverEnabled(true);\n },\n onMouseMove() {\n setAllowMouseEnter(true);\n }\n }, interactionTypeProps, mixedToggleHandlers);\n delete referenceProps.role;\n return referenceProps;\n }, [getReferenceProps, mixedToggleHandlers, setAllowMouseEnter, interactionTypeProps]);\n const popupProps = React.useMemo(() => getFloatingProps({\n onMouseEnter() {\n if (!openOnHover || parent.type === 'menu') {\n setHoverEnabled(false);\n }\n },\n onMouseMove() {\n setAllowMouseEnter(true);\n },\n onClick() {\n if (openOnHover) {\n setHoverEnabled(false);\n }\n }\n }), [getFloatingProps, openOnHover, parent.type, setAllowMouseEnter]);\n const itemProps = React.useMemo(() => getItemProps(), [getItemProps]);\n const context = React.useMemo(() => ({\n activeIndex,\n setActiveIndex,\n allowMouseUpTriggerRef: parent.type ? parent.context.allowMouseUpTriggerRef : EMPTY_REF,\n floatingRootContext,\n itemProps,\n popupProps,\n triggerProps,\n itemDomElements,\n itemLabels,\n mounted,\n open,\n popupRef,\n positionerRef,\n setOpen,\n setPositionerElement,\n triggerElement,\n setTriggerElement,\n transitionStatus,\n lastOpenChangeReason,\n instantType,\n onOpenChangeComplete,\n setHoverEnabled,\n typingRef,\n modal,\n disabled,\n parent,\n rootId,\n allowMouseEnter,\n setAllowMouseEnter\n }), [activeIndex, floatingRootContext, itemProps, popupProps, triggerProps, itemDomElements, itemLabels, mounted, open, positionerRef, setOpen, transitionStatus, triggerElement, setPositionerElement, lastOpenChangeReason, instantType, onOpenChangeComplete, modal, disabled, parent, rootId, allowMouseEnter, setAllowMouseEnter]);\n const content = /*#__PURE__*/_jsx(MenuRootContext.Provider, {\n value: context,\n children: children\n });\n if (parent.type === undefined || parent.type === 'context-menu') {\n // set up a FloatingTree to provide the context to nested menus\n return /*#__PURE__*/_jsx(FloatingTree, {\n children: content\n });\n }\n return content;\n};","'use client';\n\nimport * as React from 'react';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useEnhancedClickHandler } from '@base-ui-components/utils/useEnhancedClickHandler';\n\n/**\n * Determines the interaction type (keyboard, mouse, touch, etc.) that opened the component.\n *\n * @param open The open state of the component.\n */\nexport function useOpenInteractionType(open) {\n const [openMethod, setOpenMethod] = React.useState(null);\n const handleTriggerClick = useEventCallback((_, interactionType) => {\n if (!open) {\n setOpenMethod(interactionType);\n }\n });\n const reset = useEventCallback(() => {\n setOpenMethod(null);\n });\n const {\n onClick,\n onPointerDown\n } = useEnhancedClickHandler(handleTriggerClick);\n return React.useMemo(() => ({\n openMethod,\n reset,\n triggerProps: {\n onClick,\n onPointerDown\n }\n }), [openMethod, reset, onClick, onPointerDown]);\n}","import * as React from 'react';\n/**\n * Provides a cross-browser way to determine the type of the pointer used to click.\n * Safari and Firefox do not provide the PointerEvent to the click handler (they use MouseEvent) yet.\n * Additionally, this implementation detects if the click was triggered by the keyboard.\n *\n * @param handler The function to be called when the button is clicked. The first parameter is the original event and the second parameter is the pointer type.\n */\nexport function useEnhancedClickHandler(handler) {\n const lastClickInteractionTypeRef = React.useRef('');\n const handlePointerDown = React.useCallback(event => {\n if (event.defaultPrevented) {\n return;\n }\n lastClickInteractionTypeRef.current = event.pointerType;\n handler(event, event.pointerType);\n }, [handler]);\n const handleClick = React.useCallback(event => {\n // event.detail has the number of clicks performed on the element. 0 means it was triggered by the keyboard.\n if (event.detail === 0) {\n handler(event, 'keyboard');\n return;\n }\n if ('pointerType' in event) {\n // Chrome and Edge correctly use PointerEvent\n handler(event, event.pointerType);\n }\n handler(event, lastClickInteractionTypeRef.current);\n lastClickInteractionTypeRef.current = '';\n }, [handler]);\n return {\n onClick: handleClick,\n onPointerDown: handlePointerDown\n };\n}","'use client';\n\nimport * as React from 'react';\nimport { useAnimationFrame } from '@base-ui-components/utils/useAnimationFrame';\nimport { EMPTY_OBJECT } from \"../../utils/constants.js\";\nimport { isMouseLikePointerType } from \"../utils.js\";\n/**\n * Opens or closes the floating element when clicking the reference element.\n * @see https://floating-ui.com/docs/useClick\n */\nexport function useClick(context, props = {}) {\n const {\n open,\n onOpenChange,\n dataRef\n } = context;\n const {\n enabled = true,\n event: eventOption = 'click',\n toggle = true,\n ignoreMouse = false,\n stickIfOpen = true\n } = props;\n const pointerTypeRef = React.useRef(undefined);\n const frame = useAnimationFrame();\n const reference = React.useMemo(() => ({\n onPointerDown(event) {\n pointerTypeRef.current = event.pointerType;\n },\n onMouseDown(event) {\n const pointerType = pointerTypeRef.current;\n const nativeEvent = event.nativeEvent;\n\n // Ignore all buttons except for the \"main\" button.\n // https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n if (event.button !== 0 || eventOption === 'click' || isMouseLikePointerType(pointerType, true) && ignoreMouse) {\n return;\n }\n const openEvent = dataRef.current.openEvent;\n const openEventType = openEvent?.type;\n const nextOpen = !(open && toggle && (openEvent && stickIfOpen ? openEventType === 'click' || openEventType === 'mousedown' : true));\n // Wait until focus is set on the element. This is an alternative to\n // `event.preventDefault()` to avoid :focus-visible from appearing when using a pointer.\n frame.request(() => {\n onOpenChange(nextOpen, nativeEvent, 'click');\n });\n },\n onClick(event) {\n const pointerType = pointerTypeRef.current;\n if (eventOption === 'mousedown' && pointerType) {\n pointerTypeRef.current = undefined;\n return;\n }\n if (isMouseLikePointerType(pointerType, true) && ignoreMouse) {\n return;\n }\n const openEvent = dataRef.current.openEvent;\n const openEventType = openEvent?.type;\n const nextOpen = !(open && toggle && (openEvent && stickIfOpen ? openEventType === 'click' || openEventType === 'mousedown' || openEventType === 'keydown' || openEventType === 'keyup' : true));\n onOpenChange(nextOpen, event.nativeEvent, 'click');\n },\n onKeyDown() {\n pointerTypeRef.current = undefined;\n }\n }), [dataRef, eventOption, ignoreMouse, onOpenChange, open, stickIfOpen, toggle, frame]);\n return React.useMemo(() => enabled ? {\n reference\n } : EMPTY_OBJECT, [enabled, reference]);\n}","import * as React from 'react';\nimport { useLatestRef } from '@base-ui-components/utils/useLatestRef';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { useTimeout } from '@base-ui-components/utils/useTimeout';\nimport { stopEvent } from \"../utils.js\";\n/**\n * Provides a matching callback that can be used to focus an item as the user\n * types, often used in tandem with `useListNavigation()`.\n * @see https://floating-ui.com/docs/useTypeahead\n */\nexport function useTypeahead(context, props) {\n const {\n open,\n dataRef\n } = context;\n const {\n listRef,\n activeIndex,\n onMatch: onMatchProp,\n onTypingChange: onTypingChangeProp,\n enabled = true,\n findMatch = null,\n resetMs = 750,\n ignoreKeys = [],\n selectedIndex = null\n } = props;\n const timeout = useTimeout();\n const stringRef = React.useRef('');\n const prevIndexRef = React.useRef(selectedIndex ?? activeIndex ?? -1);\n const matchIndexRef = React.useRef(null);\n const onMatch = useEventCallback(onMatchProp);\n const onTypingChange = useEventCallback(onTypingChangeProp);\n const findMatchRef = useLatestRef(findMatch);\n const ignoreKeysRef = useLatestRef(ignoreKeys);\n useIsoLayoutEffect(() => {\n if (open) {\n timeout.clear();\n matchIndexRef.current = null;\n stringRef.current = '';\n }\n }, [open, timeout]);\n useIsoLayoutEffect(() => {\n // Sync arrow key navigation but not typeahead navigation.\n if (open && stringRef.current === '') {\n prevIndexRef.current = selectedIndex ?? activeIndex ?? -1;\n }\n }, [open, selectedIndex, activeIndex]);\n const setTypingChange = useEventCallback(value => {\n if (value) {\n if (!dataRef.current.typing) {\n dataRef.current.typing = value;\n onTypingChange(value);\n }\n } else if (dataRef.current.typing) {\n dataRef.current.typing = value;\n onTypingChange(value);\n }\n });\n const onKeyDown = useEventCallback(event => {\n function getMatchingIndex(list, orderedList, string) {\n const str = findMatchRef.current ? findMatchRef.current(orderedList, string) : orderedList.find(text => text?.toLocaleLowerCase().indexOf(string.toLocaleLowerCase()) === 0);\n return str ? list.indexOf(str) : -1;\n }\n const listContent = listRef.current;\n if (stringRef.current.length > 0 && stringRef.current[0] !== ' ') {\n if (getMatchingIndex(listContent, listContent, stringRef.current) === -1) {\n setTypingChange(false);\n } else if (event.key === ' ') {\n stopEvent(event);\n }\n }\n if (listContent == null || ignoreKeysRef.current.includes(event.key) ||\n // Character key.\n event.key.length !== 1 ||\n // Modifier key.\n event.ctrlKey || event.metaKey || event.altKey) {\n return;\n }\n if (open && event.key !== ' ') {\n stopEvent(event);\n setTypingChange(true);\n }\n\n // Bail out if the list contains a word like \"llama\" or \"aaron\". TODO:\n // allow it in this case, too.\n const allowRapidSuccessionOfFirstLetter = listContent.every(text => text ? text[0]?.toLocaleLowerCase() !== text[1]?.toLocaleLowerCase() : true);\n\n // Allows the user to cycle through items that start with the same letter\n // in rapid succession.\n if (allowRapidSuccessionOfFirstLetter && stringRef.current === event.key) {\n stringRef.current = '';\n prevIndexRef.current = matchIndexRef.current;\n }\n stringRef.current += event.key;\n timeout.start(resetMs, () => {\n stringRef.current = '';\n prevIndexRef.current = matchIndexRef.current;\n setTypingChange(false);\n });\n const prevIndex = prevIndexRef.current;\n const index = getMatchingIndex(listContent, [...listContent.slice((prevIndex || 0) + 1), ...listContent.slice(0, (prevIndex || 0) + 1)], stringRef.current);\n if (index !== -1) {\n onMatch(index);\n matchIndexRef.current = index;\n } else if (event.key !== ' ') {\n stringRef.current = '';\n setTypingChange(false);\n }\n });\n const reference = React.useMemo(() => ({\n onKeyDown\n }), [onKeyDown]);\n const floating = React.useMemo(() => {\n return {\n onKeyDown,\n onKeyUp(event) {\n if (event.key === ' ') {\n setTypingChange(false);\n }\n }\n };\n }, [onKeyDown, setTypingChange]);\n return React.useMemo(() => enabled ? {\n reference,\n floating\n } : {}, [enabled, reference, floating]);\n}","import * as React from 'react';\nimport { ownerDocument } from '@base-ui-components/utils/owner';\nimport { EMPTY_OBJECT } from \"./constants.js\";\n\n/**\n * Returns `click` and `mousedown` handlers that fix the behavior of triggers of popups that are toggled by different events.\n * For example, a button that opens a popup on mousedown and closes it on click.\n * This hook prevents the popup from closing immediately after the mouse button is released.\n */\nexport function useMixedToggleClickHandler(params) {\n const {\n enabled = true,\n mouseDownAction,\n open\n } = params;\n const ignoreClickRef = React.useRef(false);\n return React.useMemo(() => {\n if (!enabled) {\n return EMPTY_OBJECT;\n }\n return {\n onMouseDown: event => {\n if (mouseDownAction === 'open' && !open || mouseDownAction === 'close' && open) {\n ignoreClickRef.current = true;\n ownerDocument(event.currentTarget).addEventListener('click', () => {\n ignoreClickRef.current = false;\n }, {\n once: true\n });\n }\n },\n onClick: event => {\n if (ignoreClickRef.current) {\n ignoreClickRef.current = false;\n event.preventBaseUIHandler();\n }\n }\n };\n }, [enabled, mouseDownAction, open]);\n}","import { useRefWithInit } from \"./useRefWithInit.js\";\n\n/**\n * Merges refs into a single memoized callback ref or `null`.\n * This makes sure multiple refs are updated together and have the same value.\n *\n * This function accepts up to four refs. If you need to merge more, or have an unspecified number of refs to merge,\n * use `useMergedRefsN` instead.\n */\n\nexport function useMergedRefs(a, b, c, d) {\n const forkRef = useRefWithInit(createForkRef).current;\n if (didChange(forkRef, a, b, c, d)) {\n update(forkRef, [a, b, c, d]);\n }\n return forkRef.callback;\n}\n\n/**\n * Merges an array of refs into a single memoized callback ref or `null`.\n *\n * If you need to merge a fixed number (up to four) of refs, use `useMergedRefs` instead for better performance.\n */\nexport function useMergedRefsN(refs) {\n const forkRef = useRefWithInit(createForkRef).current;\n if (didChangeN(forkRef, refs)) {\n update(forkRef, refs);\n }\n return forkRef.callback;\n}\nfunction createForkRef() {\n return {\n callback: null,\n cleanup: null,\n refs: []\n };\n}\nfunction didChange(forkRef, a, b, c, d) {\n // prettier-ignore\n return forkRef.refs[0] !== a || forkRef.refs[1] !== b || forkRef.refs[2] !== c || forkRef.refs[3] !== d;\n}\nfunction didChangeN(forkRef, newRefs) {\n return forkRef.refs.length !== newRefs.length || forkRef.refs.some((ref, index) => ref !== newRefs[index]);\n}\nfunction update(forkRef, refs) {\n forkRef.refs = refs;\n if (refs.every(ref => ref == null)) {\n forkRef.callback = null;\n return;\n }\n forkRef.callback = instance => {\n if (forkRef.cleanup) {\n forkRef.cleanup();\n forkRef.cleanup = null;\n }\n if (instance != null) {\n const cleanupCallbacks = Array(refs.length).fill(null);\n for (let i = 0; i < refs.length; i += 1) {\n const ref = refs[i];\n if (ref == null) {\n continue;\n }\n switch (typeof ref) {\n case 'function':\n {\n const refCleanup = ref(instance);\n if (typeof refCleanup === 'function') {\n cleanupCallbacks[i] = refCleanup;\n }\n break;\n }\n case 'object':\n {\n ref.current = instance;\n break;\n }\n default:\n }\n }\n forkRef.cleanup = () => {\n for (let i = 0; i < refs.length; i += 1) {\n const ref = refs[i];\n if (ref == null) {\n continue;\n }\n switch (typeof ref) {\n case 'function':\n {\n const cleanupCallback = cleanupCallbacks[i];\n if (typeof cleanupCallback === 'function') {\n cleanupCallback();\n } else {\n ref(null);\n }\n break;\n }\n case 'object':\n {\n ref.current = null;\n break;\n }\n default:\n }\n }\n };\n }\n };\n}","import * as React from 'react';\nconst majorVersion = parseInt(React.version, 10);\nexport function isReactVersionAtLeast(reactVersionToCheck) {\n return majorVersion >= reactVersionToCheck;\n}","import * as React from 'react';\nimport { useMergedRefs, useMergedRefsN } from '@base-ui-components/utils/useMergedRefs';\nimport { isReactVersionAtLeast } from '@base-ui-components/utils/reactVersion';\nimport { mergeObjects } from '@base-ui-components/utils/mergeObjects';\nimport { getStyleHookProps } from \"./getStyleHookProps.js\";\nimport { resolveClassName } from \"./resolveClassName.js\";\nimport { mergeProps, mergePropsN, mergeClassNames } from \"../merge-props/index.js\";\nimport { EMPTY_OBJECT } from \"./constants.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\n/**\n * Renders a Base UI element.\n *\n * @param element The default HTML element to render. Can be overridden by the `render` prop.\n * @param componentProps An object containing the `render` and `className` props to be used for element customization. Other props are ignored.\n * @param params Additional parameters for rendering the element.\n */\nexport function useRenderElement(element, componentProps, params = {}) {\n const renderProp = componentProps.render;\n const outProps = useRenderElementProps(componentProps, params);\n if (params.enabled === false) {\n return null;\n }\n const state = params.state ?? EMPTY_OBJECT;\n return evaluateRenderProp(element, renderProp, outProps, state);\n}\n\n/**\n * Computes render element final props.\n */\nfunction useRenderElementProps(componentProps, params = {}) {\n const {\n className: classNameProp,\n render: renderProp\n } = componentProps;\n const {\n state = EMPTY_OBJECT,\n ref,\n props,\n disableStyleHooks,\n customStyleHookMapping,\n enabled = true\n } = params;\n const className = enabled ? resolveClassName(classNameProp, state) : undefined;\n let styleHooks;\n if (disableStyleHooks !== true) {\n // SAFETY: We use typings to ensure `disableStyleHooks` is either always set or\n // always unset, so this `if` block is stable across renders.\n /* eslint-disable-next-line react-hooks/rules-of-hooks */\n styleHooks = React.useMemo(() => enabled ? getStyleHookProps(state, customStyleHookMapping) : EMPTY_OBJECT, [state, customStyleHookMapping, enabled]);\n }\n const outProps = enabled ? mergeObjects(styleHooks, Array.isArray(props) ? mergePropsN(props) : props) ?? EMPTY_OBJECT : EMPTY_OBJECT;\n\n // SAFETY: The `useMergedRefs` functions use a single hook to store the same value,\n // switching between them at runtime is safe. If this assertion fails, React will\n // throw at runtime anyway.\n // This also skips the `useMergedRefs` call on the server, which is fine because\n // refs are not used on the server side.\n /* eslint-disable react-hooks/rules-of-hooks */\n if (typeof document !== 'undefined') {\n if (!enabled) {\n useMergedRefs(null, null);\n } else if (Array.isArray(ref)) {\n outProps.ref = useMergedRefsN([outProps.ref, getChildRef(renderProp), ...ref]);\n } else {\n outProps.ref = useMergedRefs(outProps.ref, getChildRef(renderProp), ref);\n }\n }\n if (!enabled) {\n return EMPTY_OBJECT;\n }\n if (className !== undefined) {\n outProps.className = mergeClassNames(outProps.className, className);\n }\n return outProps;\n}\nfunction evaluateRenderProp(element, render, props, state) {\n if (render) {\n if (typeof render === 'function') {\n return render(props, state);\n }\n const mergedProps = mergeProps(props, render.props);\n mergedProps.ref = props.ref;\n return /*#__PURE__*/React.cloneElement(render, mergedProps);\n }\n if (element) {\n if (typeof element === 'string') {\n return renderTag(element, props);\n }\n }\n // Unreachable, but the typings on `useRenderElement` need to be reworked\n // to annotate it correctly.\n throw new Error('Base UI: Render element or function are not defined.');\n}\nfunction renderTag(Tag, props) {\n if (Tag === 'button') {\n return /*#__PURE__*/_jsx(\"button\", {\n type: \"button\",\n ...props\n });\n }\n if (Tag === 'img') {\n return /*#__PURE__*/_jsx(\"img\", {\n alt: \"\",\n ...props\n });\n }\n return /*#__PURE__*/React.createElement(Tag, props);\n}\nfunction getChildRef(render) {\n if (render && typeof render !== 'function') {\n return isReactVersionAtLeast(19) ? render.props.ref : render.ref;\n }\n return null;\n}","/**\n * If the provided className is a string, it will be returned as is.\n * Otherwise, the function will call the className function with the state as the first argument.\n *\n * @param className\n * @param state\n */\nexport function resolveClassName(className, state) {\n return typeof className === 'function' ? className(state) : className;\n}","export function getStyleHookProps(state, customMapping) {\n const props = {};\n\n /* eslint-disable-next-line guard-for-in */\n for (const key in state) {\n const value = state[key];\n if (customMapping?.hasOwnProperty(key)) {\n const customProps = customMapping[key](value);\n if (customProps != null) {\n Object.assign(props, customProps);\n }\n continue;\n }\n if (value === true) {\n props[`data-${key.toLowerCase()}`] = '';\n } else if (value) {\n props[`data-${key.toLowerCase()}`] = value.toString();\n }\n }\n return props;\n}","'use client';\n\nimport * as React from 'react';\nexport const CompositeRootContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") CompositeRootContext.displayName = \"CompositeRootContext\";\nexport function useCompositeRootContext(optional = false) {\n const context = React.useContext(CompositeRootContext);\n if (context === undefined && !optional) {\n throw new Error('Base UI: CompositeRootContext is missing. Composite parts must be placed within <Composite.Root>.');\n }\n return context;\n}","'use client';\n\nimport * as React from 'react';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { error } from '@base-ui-components/utils/error';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { makeEventPreventable, mergeProps } from \"../merge-props/index.js\";\nimport { useCompositeRootContext } from \"../composite/root/CompositeRootContext.js\";\nimport { useFocusableWhenDisabled } from \"../utils/useFocusableWhenDisabled.js\";\nexport function useButton(parameters = {}) {\n const {\n disabled = false,\n focusableWhenDisabled,\n tabIndex = 0,\n native: isNativeButton = true\n } = parameters;\n const buttonRef = React.useRef(null);\n const isCompositeItem = useCompositeRootContext(true) !== undefined;\n const isValidLink = useEventCallback(() => {\n const element = buttonRef.current;\n return Boolean(element?.tagName === 'A' && element?.href);\n });\n const {\n props: focusableWhenDisabledProps\n } = useFocusableWhenDisabled({\n focusableWhenDisabled,\n disabled,\n composite: isCompositeItem,\n tabIndex,\n isNativeButton\n });\n if (process.env.NODE_ENV !== 'production') {\n // eslint-disable-next-line react-hooks/rules-of-hooks\n React.useEffect(() => {\n if (!buttonRef.current) {\n return;\n }\n const isButtonTag = buttonRef.current.tagName === 'BUTTON';\n if (isNativeButton) {\n if (!isButtonTag) {\n error('A component that acts as a button was not rendered as a native <button>, which does not match the default. Ensure that the element passed to the `render` prop of the component is a real <button>, or set the `nativeButton` prop on the component to `false`.');\n }\n } else if (isButtonTag) {\n error('A component that acts as a button was rendered as a native <button>, which does not match the default. Ensure that the element passed to the `render` prop of the component is not a real <button>, or set the `nativeButton` prop on the component to `true`.');\n }\n }, [isNativeButton]);\n }\n\n // handles a disabled composite button rendering another button, e.g.\n // <Toolbar.Button disabled render={<Menu.Trigger />} />\n // the `disabled` prop needs to pass through 2 `useButton`s then finally\n // delete the `disabled` attribute from DOM\n useIsoLayoutEffect(() => {\n const element = buttonRef.current;\n if (!(element instanceof HTMLButtonElement)) {\n return;\n }\n if (isCompositeItem && disabled && focusableWhenDisabledProps.disabled === undefined && element.disabled) {\n element.disabled = false;\n }\n }, [disabled, focusableWhenDisabledProps.disabled, isCompositeItem]);\n const getButtonProps = React.useCallback((externalProps = {}) => {\n const {\n onClick: externalOnClick,\n onMouseDown: externalOnMouseDown,\n onKeyUp: externalOnKeyUp,\n onKeyDown: externalOnKeyDown,\n onPointerDown: externalOnPointerDown,\n ...otherExternalProps\n } = externalProps;\n const type = isNativeButton ? 'button' : undefined;\n return mergeProps({\n type,\n onClick(event) {\n if (disabled) {\n event.preventDefault();\n return;\n }\n externalOnClick?.(event);\n },\n onMouseDown(event) {\n if (!disabled) {\n externalOnMouseDown?.(event);\n }\n },\n onKeyDown(event) {\n if (!disabled) {\n makeEventPreventable(event);\n externalOnKeyDown?.(event);\n }\n if (event.baseUIHandlerPrevented) {\n return;\n }\n const shouldClick = event.target === event.currentTarget && !isNativeButton && !isValidLink() && !disabled;\n const isEnterKey = event.key === 'Enter';\n const isSpaceKey = event.key === ' ';\n\n // Keyboard accessibility for non interactive elements\n if (shouldClick) {\n if (isSpaceKey || isEnterKey) {\n event.preventDefault();\n }\n if (isEnterKey) {\n externalOnClick?.(event);\n }\n }\n },\n onKeyUp(event) {\n // calling preventDefault in keyUp on a <button> will not dispatch a click event if Space is pressed\n // https://codesandbox.io/p/sandbox/button-keyup-preventdefault-dn7f0\n // Keyboard accessibility for non interactive elements\n if (!disabled) {\n makeEventPreventable(event);\n externalOnKeyUp?.(event);\n }\n if (event.baseUIHandlerPrevented) {\n return;\n }\n if (event.target === event.currentTarget && !isNativeButton && !disabled && event.key === ' ') {\n externalOnClick?.(event);\n }\n },\n onPointerDown(event) {\n if (disabled) {\n event.preventDefault();\n return;\n }\n externalOnPointerDown?.(event);\n }\n }, !isNativeButton ? {\n role: 'button'\n } : undefined, focusableWhenDisabledProps, otherExternalProps);\n }, [disabled, focusableWhenDisabledProps, isNativeButton, isValidLink]);\n return {\n getButtonProps,\n buttonRef\n };\n}","'use client';\n\nimport * as React from 'react';\nexport function useFocusableWhenDisabled(parameters) {\n const {\n focusableWhenDisabled,\n disabled,\n composite = false,\n tabIndex: tabIndexProp = 0,\n isNativeButton\n } = parameters;\n const isFocusableComposite = composite && focusableWhenDisabled !== false;\n const isNonFocusableComposite = composite && focusableWhenDisabled === false;\n\n // we can't explicitly assign `undefined` to any of these props because it\n // would otherwise prevent subsequently merged props from setting them\n const props = React.useMemo(() => {\n const additionalProps = {\n // allow Tabbing away from focusableWhenDisabled elements\n onKeyDown(event) {\n if (disabled && focusableWhenDisabled && event.key !== 'Tab') {\n event.preventDefault();\n }\n }\n };\n if (!composite) {\n additionalProps.tabIndex = tabIndexProp;\n if (!isNativeButton && disabled) {\n additionalProps.tabIndex = focusableWhenDisabled ? tabIndexProp : -1;\n }\n }\n if (isNativeButton && (focusableWhenDisabled || isFocusableComposite) || !isNativeButton && disabled) {\n additionalProps['aria-disabled'] = disabled;\n }\n if (isNativeButton && (!focusableWhenDisabled || isNonFocusableComposite)) {\n additionalProps.disabled = disabled;\n }\n return additionalProps;\n }, [composite, disabled, focusableWhenDisabled, isFocusableComposite, isNonFocusableComposite, isNativeButton, tabIndexProp]);\n return {\n props\n };\n}","'use client';\n\nimport * as React from 'react';\nexport const CompositeListContext = /*#__PURE__*/React.createContext({\n register: () => {},\n unregister: () => {},\n subscribeMapChange: () => {\n return () => {};\n },\n elementsRef: {\n current: []\n },\n nextIndexRef: {\n current: 0\n }\n});\nif (process.env.NODE_ENV !== \"production\") CompositeListContext.displayName = \"CompositeListContext\";\nexport function useCompositeListContext() {\n return React.useContext(CompositeListContext);\n}","'use client';\n\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { useCompositeItem } from \"./useCompositeItem.js\";\nimport { EMPTY_OBJECT, EMPTY_ARRAY } from \"../../utils/constants.js\";\n/**\n * @internal\n */\nexport function CompositeItem(componentProps) {\n const {\n render,\n className,\n state = EMPTY_OBJECT,\n props = EMPTY_ARRAY,\n refs = EMPTY_ARRAY,\n metadata,\n customStyleHookMapping,\n tag = 'div',\n ...elementProps\n } = componentProps;\n const {\n compositeProps,\n compositeRef\n } = useCompositeItem({\n metadata\n });\n return useRenderElement(tag, componentProps, {\n state,\n ref: [...refs, compositeRef],\n props: [compositeProps, ...props, elementProps],\n customStyleHookMapping\n });\n}","'use client';\n\nimport * as React from 'react';\nimport { useMergedRefs } from '@base-ui-components/utils/useMergedRefs';\nimport { useCompositeRootContext } from \"../root/CompositeRootContext.js\";\nimport { useCompositeListItem } from \"../list/useCompositeListItem.js\";\nexport function useCompositeItem(params = {}) {\n const {\n highlightItemOnHover,\n highlightedIndex,\n onHighlightedIndexChange\n } = useCompositeRootContext();\n const {\n ref,\n index\n } = useCompositeListItem(params);\n const isHighlighted = highlightedIndex === index;\n const itemRef = React.useRef(null);\n const mergedRef = useMergedRefs(ref, itemRef);\n const compositeProps = React.useMemo(() => ({\n tabIndex: isHighlighted ? 0 : -1,\n onFocus() {\n onHighlightedIndexChange(index);\n },\n onMouseMove() {\n const item = itemRef.current;\n if (!highlightItemOnHover || !item) {\n return;\n }\n const disabled = item.hasAttribute('disabled') || item.ariaDisabled === 'true';\n if (!isHighlighted && !disabled) {\n item.focus();\n }\n }\n }), [isHighlighted, onHighlightedIndexChange, index, highlightItemOnHover]);\n return {\n compositeProps,\n compositeRef: mergedRef,\n index\n };\n}","'use client';\n\nimport * as React from 'react';\nimport { getParentNode, isHTMLElement, isLastTraversableNode } from '@floating-ui/utils/dom';\nimport { useMergedRefs } from '@base-ui-components/utils/useMergedRefs';\nimport { useTimeout } from '@base-ui-components/utils/useTimeout';\nimport { ownerDocument } from '@base-ui-components/utils/owner';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { contains } from \"../../floating-ui-react/utils.js\";\nimport { useFloatingTree } from \"../../floating-ui-react/index.js\";\nimport { useMenuRootContext } from \"../root/MenuRootContext.js\";\nimport { pressableTriggerOpenStateMapping } from \"../../utils/popupStateMapping.js\";\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { mergeProps } from \"../../merge-props/index.js\";\nimport { useButton } from \"../../use-button/useButton.js\";\nimport { getPseudoElementBounds } from \"../../utils/getPseudoElementBounds.js\";\nimport { CompositeItem } from \"../../composite/item/CompositeItem.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst BOUNDARY_OFFSET = 2;\n\n/**\n * A button that opens the menu.\n * Renders a `<button>` element.\n *\n * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)\n */\nexport const MenuTrigger = /*#__PURE__*/React.forwardRef(function MenuTrigger(componentProps, forwardedRef) {\n const {\n render,\n className,\n disabled: disabledProp = false,\n nativeButton = true,\n ...elementProps\n } = componentProps;\n const {\n triggerProps: rootTriggerProps,\n disabled: menuDisabled,\n setTriggerElement,\n open,\n allowMouseUpTriggerRef,\n positionerRef,\n parent,\n lastOpenChangeReason,\n rootId\n } = useMenuRootContext();\n const disabled = disabledProp || menuDisabled;\n const triggerRef = React.useRef(null);\n const allowMouseUpTriggerTimeout = useTimeout();\n const {\n getButtonProps,\n buttonRef\n } = useButton({\n disabled,\n native: nativeButton\n });\n const handleRef = useMergedRefs(buttonRef, setTriggerElement);\n const {\n events: menuEvents\n } = useFloatingTree();\n React.useEffect(() => {\n if (!open && parent.type === undefined) {\n allowMouseUpTriggerRef.current = false;\n }\n }, [allowMouseUpTriggerRef, open, parent.type]);\n const handleDocumentMouseUp = useEventCallback(mouseEvent => {\n if (!triggerRef.current) {\n return;\n }\n allowMouseUpTriggerTimeout.clear();\n allowMouseUpTriggerRef.current = false;\n const mouseUpTarget = mouseEvent.target;\n if (contains(triggerRef.current, mouseUpTarget) || contains(positionerRef.current, mouseUpTarget) || mouseUpTarget === triggerRef.current) {\n return;\n }\n if (mouseUpTarget != null && findRootOwnerId(mouseUpTarget) === rootId) {\n return;\n }\n const bounds = getPseudoElementBounds(triggerRef.current);\n if (mouseEvent.clientX >= bounds.left - BOUNDARY_OFFSET && mouseEvent.clientX <= bounds.right + BOUNDARY_OFFSET && mouseEvent.clientY >= bounds.top - BOUNDARY_OFFSET && mouseEvent.clientY <= bounds.bottom + BOUNDARY_OFFSET) {\n return;\n }\n menuEvents.emit('close', {\n domEvent: mouseEvent,\n reason: 'cancel-open'\n });\n });\n React.useEffect(() => {\n if (open && lastOpenChangeReason === 'trigger-hover') {\n const doc = ownerDocument(triggerRef.current);\n doc.addEventListener('mouseup', handleDocumentMouseUp, {\n once: true\n });\n }\n }, [open, handleDocumentMouseUp, lastOpenChangeReason]);\n const isMenubar = parent.type === 'menubar';\n const getTriggerProps = React.useCallback(externalProps => {\n return mergeProps(isMenubar ? {\n role: 'menuitem'\n } : {}, {\n 'aria-haspopup': 'menu',\n ref: handleRef,\n onMouseDown: event => {\n if (open) {\n return;\n }\n\n // mousedown -> mouseup on menu item should not trigger it within 200ms.\n allowMouseUpTriggerTimeout.start(200, () => {\n allowMouseUpTriggerRef.current = true;\n });\n const doc = ownerDocument(event.currentTarget);\n doc.addEventListener('mouseup', handleDocumentMouseUp, {\n once: true\n });\n }\n }, externalProps, getButtonProps);\n }, [getButtonProps, handleRef, open, allowMouseUpTriggerRef, allowMouseUpTriggerTimeout, handleDocumentMouseUp, isMenubar]);\n const state = React.useMemo(() => ({\n disabled,\n open\n }), [disabled, open]);\n const ref = [triggerRef, forwardedRef, buttonRef];\n const props = [rootTriggerProps, elementProps, getTriggerProps];\n const element = useRenderElement('button', componentProps, {\n enabled: !isMenubar,\n customStyleHookMapping: pressableTriggerOpenStateMapping,\n state,\n ref,\n props\n });\n if (isMenubar) {\n return /*#__PURE__*/_jsx(CompositeItem, {\n tag: \"button\",\n render: render,\n className: className,\n state: state,\n refs: ref,\n props: props,\n customStyleHookMapping: pressableTriggerOpenStateMapping\n });\n }\n return element;\n});\nif (process.env.NODE_ENV !== \"production\") MenuTrigger.displayName = \"MenuTrigger\";\nfunction findRootOwnerId(node) {\n if (isHTMLElement(node) && node.hasAttribute('data-rootownerid')) {\n return node.getAttribute('data-rootownerid') ?? undefined;\n }\n if (isLastTraversableNode(node)) {\n return undefined;\n }\n return findRootOwnerId(getParentNode(node));\n}","export function getPseudoElementBounds(element) {\n const elementRect = element.getBoundingClientRect();\n\n // Avoid \"Not implemented: window.getComputedStyle(elt, pseudoElt)\"\n if (process.env.NODE_ENV === 'test') {\n return elementRect;\n }\n const beforeStyles = window.getComputedStyle(element, '::before');\n const afterStyles = window.getComputedStyle(element, '::after');\n const hasPseudoElements = beforeStyles.content !== 'none' || afterStyles.content !== 'none';\n if (!hasPseudoElements) {\n return elementRect;\n }\n\n // Get dimensions of pseudo-elements\n const beforeWidth = parseFloat(beforeStyles.width) || 0;\n const beforeHeight = parseFloat(beforeStyles.height) || 0;\n const afterWidth = parseFloat(afterStyles.width) || 0;\n const afterHeight = parseFloat(afterStyles.height) || 0;\n\n // Calculate max dimensions including pseudo-elements\n const totalWidth = Math.max(elementRect.width, beforeWidth, afterWidth);\n const totalHeight = Math.max(elementRect.height, beforeHeight, afterHeight);\n\n // Calculate the differences to extend the bounds\n const widthDiff = totalWidth - elementRect.width;\n const heightDiff = totalHeight - elementRect.height;\n return {\n left: elementRect.left - widthDiff / 2,\n right: elementRect.right + widthDiff / 2,\n top: elementRect.top - heightDiff / 2,\n bottom: elementRect.bottom + heightDiff / 2\n };\n}","export const visuallyHidden = {\n clip: 'rect(0 0 0 0)',\n overflow: 'hidden',\n whiteSpace: 'nowrap',\n position: 'fixed',\n top: 0,\n left: 0,\n border: 0,\n padding: 0,\n width: 1,\n height: 1,\n margin: -1\n};","'use client';\n\nimport * as React from 'react';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { isSafari } from '@base-ui-components/utils/detectBrowser';\nimport { visuallyHidden } from '@base-ui-components/utils/visuallyHidden';\n\n/**\n * @internal\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport const FocusGuard = /*#__PURE__*/React.forwardRef(function FocusGuard(props, ref) {\n const [role, setRole] = React.useState();\n useIsoLayoutEffect(() => {\n if (isSafari) {\n // Unlike other screen readers such as NVDA and JAWS, the virtual cursor\n // on VoiceOver does trigger the onFocus event, so we can use the focus\n // trap element. On Safari, only buttons trigger the onFocus event.\n setRole('button');\n }\n }, []);\n const restProps = {\n ref,\n tabIndex: 0,\n // Role is only for VoiceOver\n role,\n 'aria-hidden': role ? undefined : true,\n style: visuallyHidden\n };\n return /*#__PURE__*/_jsx(\"span\", {\n ...props,\n ...restProps,\n \"data-base-ui-focus-guard\": \"\"\n });\n});\nif (process.env.NODE_ENV !== \"production\") FocusGuard.displayName = \"FocusGuard\";","// NOTE: separate `:not()` selectors has broader browser support than the newer\n// `:not([inert], [inert] *)` (Feb 2023)\n// CAREFUL: JSDom does not support `:not([inert] *)` as a selector; using it causes\n// the entire query to fail, resulting in no nodes found, which will break a lot\n// of things... so we have to rely on JS to identify nodes inside an inert container\nconst candidateSelectors = [\n 'input:not([inert])',\n 'select:not([inert])',\n 'textarea:not([inert])',\n 'a[href]:not([inert])',\n 'button:not([inert])',\n '[tabindex]:not(slot):not([inert])',\n 'audio[controls]:not([inert])',\n 'video[controls]:not([inert])',\n '[contenteditable]:not([contenteditable=\"false\"]):not([inert])',\n 'details>summary:first-of-type:not([inert])',\n 'details:not([inert])',\n];\nconst candidateSelector = /* #__PURE__ */ candidateSelectors.join(',');\n\nconst NoElement = typeof Element === 'undefined';\n\nconst matches = NoElement\n ? function () {}\n : Element.prototype.matches ||\n Element.prototype.msMatchesSelector ||\n Element.prototype.webkitMatchesSelector;\n\nconst getRootNode =\n !NoElement && Element.prototype.getRootNode\n ? (element) => element?.getRootNode?.()\n : (element) => element?.ownerDocument;\n\n/**\n * Determines if a node is inert or in an inert ancestor.\n * @param {Element} [node]\n * @param {boolean} [lookUp] If true and `node` is not inert, looks up at ancestors to\n * see if any of them are inert. If false, only `node` itself is considered.\n * @returns {boolean} True if inert itself or by way of being in an inert ancestor.\n * False if `node` is falsy.\n */\nconst isInert = function (node, lookUp = true) {\n // CAREFUL: JSDom does not support inert at all, so we can't use the `HTMLElement.inert`\n // JS API property; we have to check the attribute, which can either be empty or 'true';\n // if it's `null` (not specified) or 'false', it's an active element\n const inertAtt = node?.getAttribute?.('inert');\n const inert = inertAtt === '' || inertAtt === 'true';\n\n // NOTE: this could also be handled with `node.matches('[inert], :is([inert] *)')`\n // if it weren't for `matches()` not being a function on shadow roots; the following\n // code works for any kind of node\n // CAREFUL: JSDom does not appear to support certain selectors like `:not([inert] *)`\n // so it likely would not support `:is([inert] *)` either...\n const result = inert || (lookUp && node && isInert(node.parentNode)); // recursive\n\n return result;\n};\n\n/**\n * Determines if a node's content is editable.\n * @param {Element} [node]\n * @returns True if it's content-editable; false if it's not or `node` is falsy.\n */\nconst isContentEditable = function (node) {\n // CAREFUL: JSDom does not support the `HTMLElement.isContentEditable` API so we have\n // to use the attribute directly to check for this, which can either be empty or 'true';\n // if it's `null` (not specified) or 'false', it's a non-editable element\n const attValue = node?.getAttribute?.('contenteditable');\n return attValue === '' || attValue === 'true';\n};\n\n/**\n * @param {Element} el container to check in\n * @param {boolean} includeContainer add container to check\n * @param {(node: Element) => boolean} filter filter candidates\n * @returns {Element[]}\n */\nconst getCandidates = function (el, includeContainer, filter) {\n // even if `includeContainer=false`, we still have to check it for inertness because\n // if it's inert, all its children are inert\n if (isInert(el)) {\n return [];\n }\n\n let candidates = Array.prototype.slice.apply(\n el.querySelectorAll(candidateSelector)\n );\n if (includeContainer && matches.call(el, candidateSelector)) {\n candidates.unshift(el);\n }\n candidates = candidates.filter(filter);\n return candidates;\n};\n\n/**\n * @callback GetShadowRoot\n * @param {Element} element to check for shadow root\n * @returns {ShadowRoot|boolean} ShadowRoot if available or boolean indicating if a shadowRoot is attached but not available.\n */\n\n/**\n * @callback ShadowRootFilter\n * @param {Element} shadowHostNode the element which contains shadow content\n * @returns {boolean} true if a shadow root could potentially contain valid candidates.\n */\n\n/**\n * @typedef {Object} CandidateScope\n * @property {Element} scopeParent contains inner candidates\n * @property {Element[]} candidates list of candidates found in the scope parent\n */\n\n/**\n * @typedef {Object} IterativeOptions\n * @property {GetShadowRoot|boolean} getShadowRoot true if shadow support is enabled; falsy if not;\n * if a function, implies shadow support is enabled and either returns the shadow root of an element\n * or a boolean stating if it has an undisclosed shadow root\n * @property {(node: Element) => boolean} filter filter candidates\n * @property {boolean} flatten if true then result will flatten any CandidateScope into the returned list\n * @property {ShadowRootFilter} shadowRootFilter filter shadow roots;\n */\n\n/**\n * @param {Element[]} elements list of element containers to match candidates from\n * @param {boolean} includeContainer add container list to check\n * @param {IterativeOptions} options\n * @returns {Array.<Element|CandidateScope>}\n */\nconst getCandidatesIteratively = function (\n elements,\n includeContainer,\n options\n) {\n const candidates = [];\n const elementsToCheck = Array.from(elements);\n while (elementsToCheck.length) {\n const element = elementsToCheck.shift();\n if (isInert(element, false)) {\n // no need to look up since we're drilling down\n // anything inside this container will also be inert\n continue;\n }\n\n if (element.tagName === 'SLOT') {\n // add shadow dom slot scope (slot itself cannot be focusable)\n const assigned = element.assignedElements();\n const content = assigned.length ? assigned : element.children;\n const nestedCandidates = getCandidatesIteratively(content, true, options);\n if (options.flatten) {\n candidates.push(...nestedCandidates);\n } else {\n candidates.push({\n scopeParent: element,\n candidates: nestedCandidates,\n });\n }\n } else {\n // check candidate element\n const validCandidate = matches.call(element, candidateSelector);\n if (\n validCandidate &&\n options.filter(element) &&\n (includeContainer || !elements.includes(element))\n ) {\n candidates.push(element);\n }\n\n // iterate over shadow content if possible\n const shadowRoot =\n element.shadowRoot ||\n // check for an undisclosed shadow\n (typeof options.getShadowRoot === 'function' &&\n options.getShadowRoot(element));\n\n // no inert look up because we're already drilling down and checking for inertness\n // on the way down, so all containers to this root node should have already been\n // vetted as non-inert\n const validShadowRoot =\n !isInert(shadowRoot, false) &&\n (!options.shadowRootFilter || options.shadowRootFilter(element));\n\n if (shadowRoot && validShadowRoot) {\n // add shadow dom scope IIF a shadow root node was given; otherwise, an undisclosed\n // shadow exists, so look at light dom children as fallback BUT create a scope for any\n // child candidates found because they're likely slotted elements (elements that are\n // children of the web component element (which has the shadow), in the light dom, but\n // slotted somewhere _inside_ the undisclosed shadow) -- the scope is created below,\n // _after_ we return from this recursive call\n const nestedCandidates = getCandidatesIteratively(\n shadowRoot === true ? element.children : shadowRoot.children,\n true,\n options\n );\n\n if (options.flatten) {\n candidates.push(...nestedCandidates);\n } else {\n candidates.push({\n scopeParent: element,\n candidates: nestedCandidates,\n });\n }\n } else {\n // there's not shadow so just dig into the element's (light dom) children\n // __without__ giving the element special scope treatment\n elementsToCheck.unshift(...element.children);\n }\n }\n }\n return candidates;\n};\n\n/**\n * @private\n * Determines if the node has an explicitly specified `tabindex` attribute.\n * @param {HTMLElement} node\n * @returns {boolean} True if so; false if not.\n */\nconst hasTabIndex = function (node) {\n return !isNaN(parseInt(node.getAttribute('tabindex'), 10));\n};\n\n/**\n * Determine the tab index of a given node.\n * @param {HTMLElement} node\n * @returns {number} Tab order (negative, 0, or positive number).\n * @throws {Error} If `node` is falsy.\n */\nconst getTabIndex = function (node) {\n if (!node) {\n throw new Error('No node provided');\n }\n\n if (node.tabIndex < 0) {\n // in Chrome, <details/>, <audio controls/> and <video controls/> elements get a default\n // `tabIndex` of -1 when the 'tabindex' attribute isn't specified in the DOM,\n // yet they are still part of the regular tab order; in FF, they get a default\n // `tabIndex` of 0; since Chrome still puts those elements in the regular tab\n // order, consider their tab index to be 0.\n // Also browsers do not return `tabIndex` correctly for contentEditable nodes;\n // so if they don't have a tabindex attribute specifically set, assume it's 0.\n if (\n (/^(AUDIO|VIDEO|DETAILS)$/.test(node.tagName) ||\n isContentEditable(node)) &&\n !hasTabIndex(node)\n ) {\n return 0;\n }\n }\n\n return node.tabIndex;\n};\n\n/**\n * Determine the tab index of a given node __for sort order purposes__.\n * @param {HTMLElement} node\n * @param {boolean} [isScope] True for a custom element with shadow root or slot that, by default,\n * has tabIndex -1, but needs to be sorted by document order in order for its content to be\n * inserted into the correct sort position.\n * @returns {number} Tab order (negative, 0, or positive number).\n */\nconst getSortOrderTabIndex = function (node, isScope) {\n const tabIndex = getTabIndex(node);\n\n if (tabIndex < 0 && isScope && !hasTabIndex(node)) {\n return 0;\n }\n\n return tabIndex;\n};\n\nconst sortOrderedTabbables = function (a, b) {\n return a.tabIndex === b.tabIndex\n ? a.documentOrder - b.documentOrder\n : a.tabIndex - b.tabIndex;\n};\n\nconst isInput = function (node) {\n return node.tagName === 'INPUT';\n};\n\nconst isHiddenInput = function (node) {\n return isInput(node) && node.type === 'hidden';\n};\n\nconst isDetailsWithSummary = function (node) {\n const r =\n node.tagName === 'DETAILS' &&\n Array.prototype.slice\n .apply(node.children)\n .some((child) => child.tagName === 'SUMMARY');\n return r;\n};\n\nconst getCheckedRadio = function (nodes, form) {\n for (let i = 0; i < nodes.length; i++) {\n if (nodes[i].checked && nodes[i].form === form) {\n return nodes[i];\n }\n }\n};\n\nconst isTabbableRadio = function (node) {\n if (!node.name) {\n return true;\n }\n const radioScope = node.form || getRootNode(node);\n const queryRadios = function (name) {\n return radioScope.querySelectorAll(\n 'input[type=\"radio\"][name=\"' + name + '\"]'\n );\n };\n\n let radioSet;\n if (\n typeof window !== 'undefined' &&\n typeof window.CSS !== 'undefined' &&\n typeof window.CSS.escape === 'function'\n ) {\n radioSet = queryRadios(window.CSS.escape(node.name));\n } else {\n try {\n radioSet = queryRadios(node.name);\n } catch (err) {\n // eslint-disable-next-line no-console\n console.error(\n 'Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s',\n err.message\n );\n return false;\n }\n }\n\n const checked = getCheckedRadio(radioSet, node.form);\n return !checked || checked === node;\n};\n\nconst isRadio = function (node) {\n return isInput(node) && node.type === 'radio';\n};\n\nconst isNonTabbableRadio = function (node) {\n return isRadio(node) && !isTabbableRadio(node);\n};\n\n// determines if a node is ultimately attached to the window's document\nconst isNodeAttached = function (node) {\n // The root node is the shadow root if the node is in a shadow DOM; some document otherwise\n // (but NOT _the_ document; see second 'If' comment below for more).\n // If rootNode is shadow root, it'll have a host, which is the element to which the shadow\n // is attached, and the one we need to check if it's in the document or not (because the\n // shadow, and all nodes it contains, is never considered in the document since shadows\n // behave like self-contained DOMs; but if the shadow's HOST, which is part of the document,\n // is hidden, or is not in the document itself but is detached, it will affect the shadow's\n // visibility, including all the nodes it contains). The host could be any normal node,\n // or a custom element (i.e. web component). Either way, that's the one that is considered\n // part of the document, not the shadow root, nor any of its children (i.e. the node being\n // tested).\n // To further complicate things, we have to look all the way up until we find a shadow HOST\n // that is attached (or find none) because the node might be in nested shadows...\n // If rootNode is not a shadow root, it won't have a host, and so rootNode should be the\n // document (per the docs) and while it's a Document-type object, that document does not\n // appear to be the same as the node's `ownerDocument` for some reason, so it's safer\n // to ignore the rootNode at this point, and use `node.ownerDocument`. Otherwise,\n // using `rootNode.contains(node)` will _always_ be true we'll get false-positives when\n // node is actually detached.\n // NOTE: If `nodeRootHost` or `node` happens to be the `document` itself (which is possible\n // if a tabbable/focusable node was quickly added to the DOM, focused, and then removed\n // from the DOM as in https://github.com/focus-trap/focus-trap-react/issues/905), then\n // `ownerDocument` will be `null`, hence the optional chaining on it.\n let nodeRoot = node && getRootNode(node);\n let nodeRootHost = nodeRoot?.host;\n\n // in some cases, a detached node will return itself as the root instead of a document or\n // shadow root object, in which case, we shouldn't try to look further up the host chain\n let attached = false;\n if (nodeRoot && nodeRoot !== node) {\n attached = !!(\n nodeRootHost?.ownerDocument?.contains(nodeRootHost) ||\n node?.ownerDocument?.contains(node)\n );\n\n while (!attached && nodeRootHost) {\n // since it's not attached and we have a root host, the node MUST be in a nested shadow DOM,\n // which means we need to get the host's host and check if that parent host is contained\n // in (i.e. attached to) the document\n nodeRoot = getRootNode(nodeRootHost);\n nodeRootHost = nodeRoot?.host;\n attached = !!nodeRootHost?.ownerDocument?.contains(nodeRootHost);\n }\n }\n\n return attached;\n};\n\nconst isZeroArea = function (node) {\n const { width, height } = node.getBoundingClientRect();\n return width === 0 && height === 0;\n};\nconst isHidden = function (node, { displayCheck, getShadowRoot }) {\n // NOTE: visibility will be `undefined` if node is detached from the document\n // (see notes about this further down), which means we will consider it visible\n // (this is legacy behavior from a very long way back)\n // NOTE: we check this regardless of `displayCheck=\"none\"` because this is a\n // _visibility_ check, not a _display_ check\n if (getComputedStyle(node).visibility === 'hidden') {\n return true;\n }\n\n const isDirectSummary = matches.call(node, 'details>summary:first-of-type');\n const nodeUnderDetails = isDirectSummary ? node.parentElement : node;\n if (matches.call(nodeUnderDetails, 'details:not([open]) *')) {\n return true;\n }\n\n if (\n !displayCheck ||\n displayCheck === 'full' ||\n displayCheck === 'legacy-full'\n ) {\n if (typeof getShadowRoot === 'function') {\n // figure out if we should consider the node to be in an undisclosed shadow and use the\n // 'non-zero-area' fallback\n const originalNode = node;\n while (node) {\n const parentElement = node.parentElement;\n const rootNode = getRootNode(node);\n if (\n parentElement &&\n !parentElement.shadowRoot &&\n getShadowRoot(parentElement) === true // check if there's an undisclosed shadow\n ) {\n // node has an undisclosed shadow which means we can only treat it as a black box, so we\n // fall back to a non-zero-area test\n return isZeroArea(node);\n } else if (node.assignedSlot) {\n // iterate up slot\n node = node.assignedSlot;\n } else if (!parentElement && rootNode !== node.ownerDocument) {\n // cross shadow boundary\n node = rootNode.host;\n } else {\n // iterate up normal dom\n node = parentElement;\n }\n }\n\n node = originalNode;\n }\n // else, `getShadowRoot` might be true, but all that does is enable shadow DOM support\n // (i.e. it does not also presume that all nodes might have undisclosed shadows); or\n // it might be a falsy value, which means shadow DOM support is disabled\n\n // Since we didn't find it sitting in an undisclosed shadow (or shadows are disabled)\n // now we can just test to see if it would normally be visible or not, provided it's\n // attached to the main document.\n // NOTE: We must consider case where node is inside a shadow DOM and given directly to\n // `isTabbable()` or `isFocusable()` -- regardless of `getShadowRoot` option setting.\n\n if (isNodeAttached(node)) {\n // this works wherever the node is: if there's at least one client rect, it's\n // somehow displayed; it also covers the CSS 'display: contents' case where the\n // node itself is hidden in place of its contents; and there's no need to search\n // up the hierarchy either\n return !node.getClientRects().length;\n }\n\n // Else, the node isn't attached to the document, which means the `getClientRects()`\n // API will __always__ return zero rects (this can happen, for example, if React\n // is used to render nodes onto a detached tree, as confirmed in this thread:\n // https://github.com/facebook/react/issues/9117#issuecomment-284228870)\n //\n // It also means that even window.getComputedStyle(node).display will return `undefined`\n // because styles are only computed for nodes that are in the document.\n //\n // NOTE: THIS HAS BEEN THE CASE FOR YEARS. It is not new, nor is it caused by tabbable\n // somehow. Though it was never stated officially, anyone who has ever used tabbable\n // APIs on nodes in detached containers has actually implicitly used tabbable in what\n // was later (as of v5.2.0 on Apr 9, 2021) called `displayCheck=\"none\"` mode -- essentially\n // considering __everything__ to be visible because of the innability to determine styles.\n //\n // v6.0.0: As of this major release, the default 'full' option __no longer treats detached\n // nodes as visible with the 'none' fallback.__\n if (displayCheck !== 'legacy-full') {\n return true; // hidden\n }\n // else, fallback to 'none' mode and consider the node visible\n } else if (displayCheck === 'non-zero-area') {\n // NOTE: Even though this tests that the node's client rect is non-zero to determine\n // whether it's displayed, and that a detached node will __always__ have a zero-area\n // client rect, we don't special-case for whether the node is attached or not. In\n // this mode, we do want to consider nodes that have a zero area to be hidden at all\n // times, and that includes attached or not.\n return isZeroArea(node);\n }\n\n // visible, as far as we can tell, or per current `displayCheck=none` mode, we assume\n // it's visible\n return false;\n};\n\n// form fields (nested) inside a disabled fieldset are not focusable/tabbable\n// unless they are in the _first_ <legend> element of the top-most disabled\n// fieldset\nconst isDisabledFromFieldset = function (node) {\n if (/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(node.tagName)) {\n let parentNode = node.parentElement;\n // check if `node` is contained in a disabled <fieldset>\n while (parentNode) {\n if (parentNode.tagName === 'FIELDSET' && parentNode.disabled) {\n // look for the first <legend> among the children of the disabled <fieldset>\n for (let i = 0; i < parentNode.children.length; i++) {\n const child = parentNode.children.item(i);\n // when the first <legend> (in document order) is found\n if (child.tagName === 'LEGEND') {\n // if its parent <fieldset> is not nested in another disabled <fieldset>,\n // return whether `node` is a descendant of its first <legend>\n return matches.call(parentNode, 'fieldset[disabled] *')\n ? true\n : !child.contains(node);\n }\n }\n // the disabled <fieldset> containing `node` has no <legend>\n return true;\n }\n parentNode = parentNode.parentElement;\n }\n }\n\n // else, node's tabbable/focusable state should not be affected by a fieldset's\n // enabled/disabled state\n return false;\n};\n\nconst isNodeMatchingSelectorFocusable = function (options, node) {\n if (\n node.disabled ||\n // we must do an inert look up to filter out any elements inside an inert ancestor\n // because we're limited in the type of selectors we can use in JSDom (see related\n // note related to `candidateSelectors`)\n isInert(node) ||\n isHiddenInput(node) ||\n isHidden(node, options) ||\n // For a details element with a summary, the summary element gets the focus\n isDetailsWithSummary(node) ||\n isDisabledFromFieldset(node)\n ) {\n return false;\n }\n return true;\n};\n\nconst isNodeMatchingSelectorTabbable = function (options, node) {\n if (\n isNonTabbableRadio(node) ||\n getTabIndex(node) < 0 ||\n !isNodeMatchingSelectorFocusable(options, node)\n ) {\n return false;\n }\n return true;\n};\n\nconst isValidShadowRootTabbable = function (shadowHostNode) {\n const tabIndex = parseInt(shadowHostNode.getAttribute('tabindex'), 10);\n if (isNaN(tabIndex) || tabIndex >= 0) {\n return true;\n }\n // If a custom element has an explicit negative tabindex,\n // browsers will not allow tab targeting said element's children.\n return false;\n};\n\n/**\n * @param {Array.<Element|CandidateScope>} candidates\n * @returns Element[]\n */\nconst sortByOrder = function (candidates) {\n const regularTabbables = [];\n const orderedTabbables = [];\n candidates.forEach(function (item, i) {\n const isScope = !!item.scopeParent;\n const element = isScope ? item.scopeParent : item;\n const candidateTabindex = getSortOrderTabIndex(element, isScope);\n const elements = isScope ? sortByOrder(item.candidates) : element;\n if (candidateTabindex === 0) {\n isScope\n ? regularTabbables.push(...elements)\n : regularTabbables.push(element);\n } else {\n orderedTabbables.push({\n documentOrder: i,\n tabIndex: candidateTabindex,\n item: item,\n isScope: isScope,\n content: elements,\n });\n }\n });\n\n return orderedTabbables\n .sort(sortOrderedTabbables)\n .reduce((acc, sortable) => {\n sortable.isScope\n ? acc.push(...sortable.content)\n : acc.push(sortable.content);\n return acc;\n }, [])\n .concat(regularTabbables);\n};\n\nconst tabbable = function (container, options) {\n options = options || {};\n\n let candidates;\n if (options.getShadowRoot) {\n candidates = getCandidatesIteratively(\n [container],\n options.includeContainer,\n {\n filter: isNodeMatchingSelectorTabbable.bind(null, options),\n flatten: false,\n getShadowRoot: options.getShadowRoot,\n shadowRootFilter: isValidShadowRootTabbable,\n }\n );\n } else {\n candidates = getCandidates(\n container,\n options.includeContainer,\n isNodeMatchingSelectorTabbable.bind(null, options)\n );\n }\n return sortByOrder(candidates);\n};\n\nconst focusable = function (container, options) {\n options = options || {};\n\n let candidates;\n if (options.getShadowRoot) {\n candidates = getCandidatesIteratively(\n [container],\n options.includeContainer,\n {\n filter: isNodeMatchingSelectorFocusable.bind(null, options),\n flatten: true,\n getShadowRoot: options.getShadowRoot,\n }\n );\n } else {\n candidates = getCandidates(\n container,\n options.includeContainer,\n isNodeMatchingSelectorFocusable.bind(null, options)\n );\n }\n\n return candidates;\n};\n\nconst isTabbable = function (node, options) {\n options = options || {};\n if (!node) {\n throw new Error('No node provided');\n }\n if (matches.call(node, candidateSelector) === false) {\n return false;\n }\n return isNodeMatchingSelectorTabbable(options, node);\n};\n\nconst focusableCandidateSelector = /* #__PURE__ */ candidateSelectors\n .concat('iframe')\n .join(',');\n\nconst isFocusable = function (node, options) {\n options = options || {};\n if (!node) {\n throw new Error('No node provided');\n }\n if (matches.call(node, focusableCandidateSelector) === false) {\n return false;\n }\n return isNodeMatchingSelectorFocusable(options, node);\n};\n\nexport { tabbable, focusable, isTabbable, isFocusable, getTabIndex };\n","import { tabbable } from 'tabbable';\nimport { activeElement, contains, getDocument } from \"./element.js\";\nexport const getTabbableOptions = () => ({\n getShadowRoot: true,\n displayCheck:\n // JSDOM does not support the `tabbable` library. To solve this we can\n // check if `ResizeObserver` is a real function (not polyfilled), which\n // determines if the current environment is JSDOM-like.\n typeof ResizeObserver === 'function' && ResizeObserver.toString().includes('[native code]') ? 'full' : 'none'\n});\nfunction getTabbableIn(container, dir) {\n const list = tabbable(container, getTabbableOptions());\n const len = list.length;\n if (len === 0) {\n return undefined;\n }\n const active = activeElement(getDocument(container));\n const index = list.indexOf(active);\n // eslint-disable-next-line no-nested-ternary\n const nextIndex = index === -1 ? dir === 1 ? 0 : len - 1 : index + dir;\n return list[nextIndex];\n}\nexport function getNextTabbable(referenceElement) {\n return getTabbableIn(getDocument(referenceElement).body, 1) || referenceElement;\n}\nexport function getPreviousTabbable(referenceElement) {\n return getTabbableIn(getDocument(referenceElement).body, -1) || referenceElement;\n}\nexport function isOutsideEvent(event, container) {\n const containerElement = container || event.currentTarget;\n const relatedTarget = event.relatedTarget;\n return !relatedTarget || !contains(containerElement, relatedTarget);\n}\nexport function disableFocusInside(container) {\n const tabbableElements = tabbable(container, getTabbableOptions());\n tabbableElements.forEach(element => {\n element.dataset.tabindex = element.getAttribute('tabindex') || '';\n element.setAttribute('tabindex', '-1');\n });\n}\nexport function enableFocusInside(container) {\n const elements = container.querySelectorAll('[data-tabindex]');\n elements.forEach(element => {\n const tabindex = element.dataset.tabindex;\n delete element.dataset.tabindex;\n if (tabindex) {\n element.setAttribute('tabindex', tabindex);\n } else {\n element.removeAttribute('tabindex');\n }\n });\n}","import * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { isNode } from '@floating-ui/utils/dom';\nimport { useId } from '@base-ui-components/utils/useId';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { visuallyHidden } from '@base-ui-components/utils/visuallyHidden';\nimport { FocusGuard } from \"../../utils/FocusGuard.js\";\nimport { enableFocusInside, disableFocusInside, getPreviousTabbable, getNextTabbable, isOutsideEvent } from \"../utils.js\";\nimport { createAttribute } from \"../utils/createAttribute.js\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst PortalContext = /*#__PURE__*/React.createContext(null);\nif (process.env.NODE_ENV !== \"production\") PortalContext.displayName = \"PortalContext\";\nexport const usePortalContext = () => React.useContext(PortalContext);\nconst attr = createAttribute('portal');\n/**\n * @see https://floating-ui.com/docs/FloatingPortal#usefloatingportalnode\n */\nexport function useFloatingPortalNode(props = {}) {\n const {\n id,\n root\n } = props;\n const uniqueId = useId();\n const portalContext = usePortalContext();\n const [portalNode, setPortalNode] = React.useState(null);\n const portalNodeRef = React.useRef(null);\n useIsoLayoutEffect(() => {\n return () => {\n portalNode?.remove();\n // Allow the subsequent layout effects to create a new node on updates.\n // The portal node will still be cleaned up on unmount.\n // https://github.com/floating-ui/floating-ui/issues/2454\n queueMicrotask(() => {\n portalNodeRef.current = null;\n });\n };\n }, [portalNode]);\n useIsoLayoutEffect(() => {\n // Wait for the uniqueId to be generated before creating the portal node in\n // React <18 (using `useFloatingId` instead of the native `useId`).\n // https://github.com/floating-ui/floating-ui/issues/2778\n if (!uniqueId) {\n return;\n }\n if (portalNodeRef.current) {\n return;\n }\n const existingIdRoot = id ? document.getElementById(id) : null;\n if (!existingIdRoot) {\n return;\n }\n const subRoot = document.createElement('div');\n subRoot.id = uniqueId;\n subRoot.setAttribute(attr, '');\n existingIdRoot.appendChild(subRoot);\n portalNodeRef.current = subRoot;\n setPortalNode(subRoot);\n }, [id, uniqueId]);\n useIsoLayoutEffect(() => {\n // Wait for the root to exist before creating the portal node. The root must\n // be stored in state, not a ref, for this to work reactively.\n if (root === null) {\n return;\n }\n if (!uniqueId) {\n return;\n }\n if (portalNodeRef.current) {\n return;\n }\n let container = root || portalContext?.portalNode;\n if (container && !isNode(container)) {\n container = container.current;\n }\n container = container || document.body;\n let idWrapper = null;\n if (id) {\n idWrapper = document.createElement('div');\n idWrapper.id = id;\n container.appendChild(idWrapper);\n }\n const subRoot = document.createElement('div');\n subRoot.id = uniqueId;\n subRoot.setAttribute(attr, '');\n container = idWrapper || container;\n container.appendChild(subRoot);\n portalNodeRef.current = subRoot;\n setPortalNode(subRoot);\n }, [id, root, uniqueId, portalContext]);\n return portalNode;\n}\n/**\n * Portals the floating element into a given container element — by default,\n * outside of the app root and into the body.\n * This is necessary to ensure the floating element can appear outside any\n * potential parent containers that cause clipping (such as `overflow: hidden`),\n * while retaining its location in the React tree.\n * @see https://floating-ui.com/docs/FloatingPortal\n * @internal\n */\nexport function FloatingPortal(props) {\n const {\n children,\n id,\n root,\n preserveTabOrder = true\n } = props;\n const portalNode = useFloatingPortalNode({\n id,\n root\n });\n const [focusManagerState, setFocusManagerState] = React.useState(null);\n const beforeOutsideRef = React.useRef(null);\n const afterOutsideRef = React.useRef(null);\n const beforeInsideRef = React.useRef(null);\n const afterInsideRef = React.useRef(null);\n const modal = focusManagerState?.modal;\n const open = focusManagerState?.open;\n const shouldRenderGuards =\n // The FocusManager and therefore floating element are currently open/\n // rendered.\n !!focusManagerState &&\n // Guards are only for non-modal focus management.\n !focusManagerState.modal &&\n // Don't render if unmount is transitioning.\n focusManagerState.open && preserveTabOrder && !!(root || portalNode);\n\n // https://codesandbox.io/s/tabbable-portal-f4tng?file=/src/TabbablePortal.tsx\n React.useEffect(() => {\n if (!portalNode || !preserveTabOrder || modal) {\n return undefined;\n }\n\n // Make sure elements inside the portal element are tabbable only when the\n // portal has already been focused, either by tabbing into a focus trap\n // element outside or using the mouse.\n function onFocus(event) {\n if (portalNode && isOutsideEvent(event)) {\n const focusing = event.type === 'focusin';\n const manageFocus = focusing ? enableFocusInside : disableFocusInside;\n manageFocus(portalNode);\n }\n }\n // Listen to the event on the capture phase so they run before the focus\n // trap elements onFocus prop is called.\n portalNode.addEventListener('focusin', onFocus, true);\n portalNode.addEventListener('focusout', onFocus, true);\n return () => {\n portalNode.removeEventListener('focusin', onFocus, true);\n portalNode.removeEventListener('focusout', onFocus, true);\n };\n }, [portalNode, preserveTabOrder, modal]);\n React.useEffect(() => {\n if (!portalNode) {\n return;\n }\n if (open) {\n return;\n }\n enableFocusInside(portalNode);\n }, [open, portalNode]);\n return /*#__PURE__*/_jsxs(PortalContext.Provider, {\n value: React.useMemo(() => ({\n preserveTabOrder,\n beforeOutsideRef,\n afterOutsideRef,\n beforeInsideRef,\n afterInsideRef,\n portalNode,\n setFocusManagerState\n }), [preserveTabOrder, portalNode]),\n children: [shouldRenderGuards && portalNode && /*#__PURE__*/_jsx(FocusGuard, {\n \"data-type\": \"outside\",\n ref: beforeOutsideRef,\n onFocus: event => {\n if (isOutsideEvent(event, portalNode)) {\n beforeInsideRef.current?.focus();\n } else {\n const domReference = focusManagerState ? focusManagerState.domReference : null;\n const prevTabbable = getPreviousTabbable(domReference);\n prevTabbable?.focus();\n }\n }\n }), shouldRenderGuards && portalNode && /*#__PURE__*/_jsx(\"span\", {\n \"aria-owns\": portalNode.id,\n style: visuallyHidden\n }), portalNode && /*#__PURE__*/ReactDOM.createPortal(children, portalNode), shouldRenderGuards && portalNode && /*#__PURE__*/_jsx(FocusGuard, {\n \"data-type\": \"outside\",\n ref: afterOutsideRef,\n onFocus: event => {\n if (isOutsideEvent(event, portalNode)) {\n afterInsideRef.current?.focus();\n } else {\n const domReference = focusManagerState ? focusManagerState.domReference : null;\n const nextTabbable = getNextTabbable(domReference);\n nextTabbable?.focus();\n if (focusManagerState?.closeOnFocusOut) {\n focusManagerState?.onOpenChange(false, event.nativeEvent, 'focus-out');\n }\n }\n }\n })]\n });\n}","import * as React from 'react';\nexport const MenuPortalContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") MenuPortalContext.displayName = \"MenuPortalContext\";\nexport function useMenuPortalContext() {\n const value = React.useContext(MenuPortalContext);\n if (value === undefined) {\n throw new Error('Base UI: <Menu.Portal> is missing.');\n }\n return value;\n}","'use client';\n\nimport * as React from 'react';\nimport { FloatingPortal } from \"../../floating-ui-react/index.js\";\nimport { useMenuRootContext } from \"../root/MenuRootContext.js\";\nimport { MenuPortalContext } from \"./MenuPortalContext.js\";\n\n/**\n * A portal element that moves the popup to a different part of the DOM.\n * By default, the portal element is appended to `<body>`.\n *\n * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport function MenuPortal(props) {\n const {\n children,\n keepMounted = false,\n container\n } = props;\n const {\n mounted\n } = useMenuRootContext();\n const shouldRender = mounted || keepMounted;\n if (!shouldRender) {\n return null;\n }\n return /*#__PURE__*/_jsx(MenuPortalContext.Provider, {\n value: keepMounted,\n children: /*#__PURE__*/_jsx(FloatingPortal, {\n root: container,\n children: children\n })\n });\n}","'use client';\n\nimport * as React from 'react';\nexport const MenuPositionerContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") MenuPositionerContext.displayName = \"MenuPositionerContext\";\nexport function useMenuPositionerContext() {\n const context = React.useContext(MenuPositionerContext);\n if (context === undefined) {\n throw new Error('Base UI: MenuPositionerContext is missing. MenuPositioner parts must be placed within <Menu.Positioner>.');\n }\n return context;\n}","import { getSideAxis, getAlignmentAxis, getAxisLength, getSide, getAlignment, evaluate, getPaddingObject, rectToClientRect, min, clamp, placements, getAlignmentSides, getOppositeAlignmentPlacement, getOppositePlacement, getExpandedPlacements, getOppositeAxisPlacements, sides, max, getOppositeAxis } from '@floating-ui/utils';\nexport { rectToClientRect } from '@floating-ui/utils';\n\nfunction computeCoordsFromPlacement(_ref, placement, rtl) {\n let {\n reference,\n floating\n } = _ref;\n const sideAxis = getSideAxis(placement);\n const alignmentAxis = getAlignmentAxis(placement);\n const alignLength = getAxisLength(alignmentAxis);\n const side = getSide(placement);\n const isVertical = sideAxis === 'y';\n const commonX = reference.x + reference.width / 2 - floating.width / 2;\n const commonY = reference.y + reference.height / 2 - floating.height / 2;\n const commonAlign = reference[alignLength] / 2 - floating[alignLength] / 2;\n let coords;\n switch (side) {\n case 'top':\n coords = {\n x: commonX,\n y: reference.y - floating.height\n };\n break;\n case 'bottom':\n coords = {\n x: commonX,\n y: reference.y + reference.height\n };\n break;\n case 'right':\n coords = {\n x: reference.x + reference.width,\n y: commonY\n };\n break;\n case 'left':\n coords = {\n x: reference.x - floating.width,\n y: commonY\n };\n break;\n default:\n coords = {\n x: reference.x,\n y: reference.y\n };\n }\n switch (getAlignment(placement)) {\n case 'start':\n coords[alignmentAxis] -= commonAlign * (rtl && isVertical ? -1 : 1);\n break;\n case 'end':\n coords[alignmentAxis] += commonAlign * (rtl && isVertical ? -1 : 1);\n break;\n }\n return coords;\n}\n\n/**\n * Computes the `x` and `y` coordinates that will place the floating element\n * next to a given reference element.\n *\n * This export does not have any `platform` interface logic. You will need to\n * write one for the platform you are using Floating UI with.\n */\nconst computePosition = async (reference, floating, config) => {\n const {\n placement = 'bottom',\n strategy = 'absolute',\n middleware = [],\n platform\n } = config;\n const validMiddleware = middleware.filter(Boolean);\n const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(floating));\n let rects = await platform.getElementRects({\n reference,\n floating,\n strategy\n });\n let {\n x,\n y\n } = computeCoordsFromPlacement(rects, placement, rtl);\n let statefulPlacement = placement;\n let middlewareData = {};\n let resetCount = 0;\n for (let i = 0; i < validMiddleware.length; i++) {\n const {\n name,\n fn\n } = validMiddleware[i];\n const {\n x: nextX,\n y: nextY,\n data,\n reset\n } = await fn({\n x,\n y,\n initialPlacement: placement,\n placement: statefulPlacement,\n strategy,\n middlewareData,\n rects,\n platform,\n elements: {\n reference,\n floating\n }\n });\n x = nextX != null ? nextX : x;\n y = nextY != null ? nextY : y;\n middlewareData = {\n ...middlewareData,\n [name]: {\n ...middlewareData[name],\n ...data\n }\n };\n if (reset && resetCount <= 50) {\n resetCount++;\n if (typeof reset === 'object') {\n if (reset.placement) {\n statefulPlacement = reset.placement;\n }\n if (reset.rects) {\n rects = reset.rects === true ? await platform.getElementRects({\n reference,\n floating,\n strategy\n }) : reset.rects;\n }\n ({\n x,\n y\n } = computeCoordsFromPlacement(rects, statefulPlacement, rtl));\n }\n i = -1;\n }\n }\n return {\n x,\n y,\n placement: statefulPlacement,\n strategy,\n middlewareData\n };\n};\n\n/**\n * Resolves with an object of overflow side offsets that determine how much the\n * element is overflowing a given clipping boundary on each side.\n * - positive = overflowing the boundary by that number of pixels\n * - negative = how many pixels left before it will overflow\n * - 0 = lies flush with the boundary\n * @see https://floating-ui.com/docs/detectOverflow\n */\nasync function detectOverflow(state, options) {\n var _await$platform$isEle;\n if (options === void 0) {\n options = {};\n }\n const {\n x,\n y,\n platform,\n rects,\n elements,\n strategy\n } = state;\n const {\n boundary = 'clippingAncestors',\n rootBoundary = 'viewport',\n elementContext = 'floating',\n altBoundary = false,\n padding = 0\n } = evaluate(options, state);\n const paddingObject = getPaddingObject(padding);\n const altContext = elementContext === 'floating' ? 'reference' : 'floating';\n const element = elements[altBoundary ? altContext : elementContext];\n const clippingClientRect = rectToClientRect(await platform.getClippingRect({\n element: ((_await$platform$isEle = await (platform.isElement == null ? void 0 : platform.isElement(element))) != null ? _await$platform$isEle : true) ? element : element.contextElement || (await (platform.getDocumentElement == null ? void 0 : platform.getDocumentElement(elements.floating))),\n boundary,\n rootBoundary,\n strategy\n }));\n const rect = elementContext === 'floating' ? {\n x,\n y,\n width: rects.floating.width,\n height: rects.floating.height\n } : rects.reference;\n const offsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(elements.floating));\n const offsetScale = (await (platform.isElement == null ? void 0 : platform.isElement(offsetParent))) ? (await (platform.getScale == null ? void 0 : platform.getScale(offsetParent))) || {\n x: 1,\n y: 1\n } : {\n x: 1,\n y: 1\n };\n const elementClientRect = rectToClientRect(platform.convertOffsetParentRelativeRectToViewportRelativeRect ? await platform.convertOffsetParentRelativeRectToViewportRelativeRect({\n elements,\n rect,\n offsetParent,\n strategy\n }) : rect);\n return {\n top: (clippingClientRect.top - elementClientRect.top + paddingObject.top) / offsetScale.y,\n bottom: (elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom) / offsetScale.y,\n left: (clippingClientRect.left - elementClientRect.left + paddingObject.left) / offsetScale.x,\n right: (elementClientRect.right - clippingClientRect.right + paddingObject.right) / offsetScale.x\n };\n}\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow = options => ({\n name: 'arrow',\n options,\n async fn(state) {\n const {\n x,\n y,\n placement,\n rects,\n platform,\n elements,\n middlewareData\n } = state;\n // Since `element` is required, we don't Partial<> the type.\n const {\n element,\n padding = 0\n } = evaluate(options, state) || {};\n if (element == null) {\n return {};\n }\n const paddingObject = getPaddingObject(padding);\n const coords = {\n x,\n y\n };\n const axis = getAlignmentAxis(placement);\n const length = getAxisLength(axis);\n const arrowDimensions = await platform.getDimensions(element);\n const isYAxis = axis === 'y';\n const minProp = isYAxis ? 'top' : 'left';\n const maxProp = isYAxis ? 'bottom' : 'right';\n const clientProp = isYAxis ? 'clientHeight' : 'clientWidth';\n const endDiff = rects.reference[length] + rects.reference[axis] - coords[axis] - rects.floating[length];\n const startDiff = coords[axis] - rects.reference[axis];\n const arrowOffsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(element));\n let clientSize = arrowOffsetParent ? arrowOffsetParent[clientProp] : 0;\n\n // DOM platform can return `window` as the `offsetParent`.\n if (!clientSize || !(await (platform.isElement == null ? void 0 : platform.isElement(arrowOffsetParent)))) {\n clientSize = elements.floating[clientProp] || rects.floating[length];\n }\n const centerToReference = endDiff / 2 - startDiff / 2;\n\n // If the padding is large enough that it causes the arrow to no longer be\n // centered, modify the padding so that it is centered.\n const largestPossiblePadding = clientSize / 2 - arrowDimensions[length] / 2 - 1;\n const minPadding = min(paddingObject[minProp], largestPossiblePadding);\n const maxPadding = min(paddingObject[maxProp], largestPossiblePadding);\n\n // Make sure the arrow doesn't overflow the floating element if the center\n // point is outside the floating element's bounds.\n const min$1 = minPadding;\n const max = clientSize - arrowDimensions[length] - maxPadding;\n const center = clientSize / 2 - arrowDimensions[length] / 2 + centerToReference;\n const offset = clamp(min$1, center, max);\n\n // If the reference is small enough that the arrow's padding causes it to\n // to point to nothing for an aligned placement, adjust the offset of the\n // floating element itself. To ensure `shift()` continues to take action,\n // a single reset is performed when this is true.\n const shouldAddOffset = !middlewareData.arrow && getAlignment(placement) != null && center !== offset && rects.reference[length] / 2 - (center < min$1 ? minPadding : maxPadding) - arrowDimensions[length] / 2 < 0;\n const alignmentOffset = shouldAddOffset ? center < min$1 ? center - min$1 : center - max : 0;\n return {\n [axis]: coords[axis] + alignmentOffset,\n data: {\n [axis]: offset,\n centerOffset: center - offset - alignmentOffset,\n ...(shouldAddOffset && {\n alignmentOffset\n })\n },\n reset: shouldAddOffset\n };\n }\n});\n\nfunction getPlacementList(alignment, autoAlignment, allowedPlacements) {\n const allowedPlacementsSortedByAlignment = alignment ? [...allowedPlacements.filter(placement => getAlignment(placement) === alignment), ...allowedPlacements.filter(placement => getAlignment(placement) !== alignment)] : allowedPlacements.filter(placement => getSide(placement) === placement);\n return allowedPlacementsSortedByAlignment.filter(placement => {\n if (alignment) {\n return getAlignment(placement) === alignment || (autoAlignment ? getOppositeAlignmentPlacement(placement) !== placement : false);\n }\n return true;\n });\n}\n/**\n * Optimizes the visibility of the floating element by choosing the placement\n * that has the most space available automatically, without needing to specify a\n * preferred placement. Alternative to `flip`.\n * @see https://floating-ui.com/docs/autoPlacement\n */\nconst autoPlacement = function (options) {\n if (options === void 0) {\n options = {};\n }\n return {\n name: 'autoPlacement',\n options,\n async fn(state) {\n var _middlewareData$autoP, _middlewareData$autoP2, _placementsThatFitOnE;\n const {\n rects,\n middlewareData,\n placement,\n platform,\n elements\n } = state;\n const {\n crossAxis = false,\n alignment,\n allowedPlacements = placements,\n autoAlignment = true,\n ...detectOverflowOptions\n } = evaluate(options, state);\n const placements$1 = alignment !== undefined || allowedPlacements === placements ? getPlacementList(alignment || null, autoAlignment, allowedPlacements) : allowedPlacements;\n const overflow = await detectOverflow(state, detectOverflowOptions);\n const currentIndex = ((_middlewareData$autoP = middlewareData.autoPlacement) == null ? void 0 : _middlewareData$autoP.index) || 0;\n const currentPlacement = placements$1[currentIndex];\n if (currentPlacement == null) {\n return {};\n }\n const alignmentSides = getAlignmentSides(currentPlacement, rects, await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating)));\n\n // Make `computeCoords` start from the right place.\n if (placement !== currentPlacement) {\n return {\n reset: {\n placement: placements$1[0]\n }\n };\n }\n const currentOverflows = [overflow[getSide(currentPlacement)], overflow[alignmentSides[0]], overflow[alignmentSides[1]]];\n const allOverflows = [...(((_middlewareData$autoP2 = middlewareData.autoPlacement) == null ? void 0 : _middlewareData$autoP2.overflows) || []), {\n placement: currentPlacement,\n overflows: currentOverflows\n }];\n const nextPlacement = placements$1[currentIndex + 1];\n\n // There are more placements to check.\n if (nextPlacement) {\n return {\n data: {\n index: currentIndex + 1,\n overflows: allOverflows\n },\n reset: {\n placement: nextPlacement\n }\n };\n }\n const placementsSortedByMostSpace = allOverflows.map(d => {\n const alignment = getAlignment(d.placement);\n return [d.placement, alignment && crossAxis ?\n // Check along the mainAxis and main crossAxis side.\n d.overflows.slice(0, 2).reduce((acc, v) => acc + v, 0) :\n // Check only the mainAxis.\n d.overflows[0], d.overflows];\n }).sort((a, b) => a[1] - b[1]);\n const placementsThatFitOnEachSide = placementsSortedByMostSpace.filter(d => d[2].slice(0,\n // Aligned placements should not check their opposite crossAxis\n // side.\n getAlignment(d[0]) ? 2 : 3).every(v => v <= 0));\n const resetPlacement = ((_placementsThatFitOnE = placementsThatFitOnEachSide[0]) == null ? void 0 : _placementsThatFitOnE[0]) || placementsSortedByMostSpace[0][0];\n if (resetPlacement !== placement) {\n return {\n data: {\n index: currentIndex + 1,\n overflows: allOverflows\n },\n reset: {\n placement: resetPlacement\n }\n };\n }\n return {};\n }\n };\n};\n\n/**\n * Optimizes the visibility of the floating element by flipping the `placement`\n * in order to keep it in view when the preferred placement(s) will overflow the\n * clipping boundary. Alternative to `autoPlacement`.\n * @see https://floating-ui.com/docs/flip\n */\nconst flip = function (options) {\n if (options === void 0) {\n options = {};\n }\n return {\n name: 'flip',\n options,\n async fn(state) {\n var _middlewareData$arrow, _middlewareData$flip;\n const {\n placement,\n middlewareData,\n rects,\n initialPlacement,\n platform,\n elements\n } = state;\n const {\n mainAxis: checkMainAxis = true,\n crossAxis: checkCrossAxis = true,\n fallbackPlacements: specifiedFallbackPlacements,\n fallbackStrategy = 'bestFit',\n fallbackAxisSideDirection = 'none',\n flipAlignment = true,\n ...detectOverflowOptions\n } = evaluate(options, state);\n\n // If a reset by the arrow was caused due to an alignment offset being\n // added, we should skip any logic now since `flip()` has already done its\n // work.\n // https://github.com/floating-ui/floating-ui/issues/2549#issuecomment-1719601643\n if ((_middlewareData$arrow = middlewareData.arrow) != null && _middlewareData$arrow.alignmentOffset) {\n return {};\n }\n const side = getSide(placement);\n const initialSideAxis = getSideAxis(initialPlacement);\n const isBasePlacement = getSide(initialPlacement) === initialPlacement;\n const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating));\n const fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipAlignment ? [getOppositePlacement(initialPlacement)] : getExpandedPlacements(initialPlacement));\n const hasFallbackAxisSideDirection = fallbackAxisSideDirection !== 'none';\n if (!specifiedFallbackPlacements && hasFallbackAxisSideDirection) {\n fallbackPlacements.push(...getOppositeAxisPlacements(initialPlacement, flipAlignment, fallbackAxisSideDirection, rtl));\n }\n const placements = [initialPlacement, ...fallbackPlacements];\n const overflow = await detectOverflow(state, detectOverflowOptions);\n const overflows = [];\n let overflowsData = ((_middlewareData$flip = middlewareData.flip) == null ? void 0 : _middlewareData$flip.overflows) || [];\n if (checkMainAxis) {\n overflows.push(overflow[side]);\n }\n if (checkCrossAxis) {\n const sides = getAlignmentSides(placement, rects, rtl);\n overflows.push(overflow[sides[0]], overflow[sides[1]]);\n }\n overflowsData = [...overflowsData, {\n placement,\n overflows\n }];\n\n // One or more sides is overflowing.\n if (!overflows.every(side => side <= 0)) {\n var _middlewareData$flip2, _overflowsData$filter;\n const nextIndex = (((_middlewareData$flip2 = middlewareData.flip) == null ? void 0 : _middlewareData$flip2.index) || 0) + 1;\n const nextPlacement = placements[nextIndex];\n if (nextPlacement) {\n const ignoreCrossAxisOverflow = checkCrossAxis === 'alignment' ? initialSideAxis !== getSideAxis(nextPlacement) : false;\n if (!ignoreCrossAxisOverflow ||\n // We leave the current main axis only if every placement on that axis\n // overflows the main axis.\n overflowsData.every(d => getSideAxis(d.placement) === initialSideAxis ? d.overflows[0] > 0 : true)) {\n // Try next placement and re-run the lifecycle.\n return {\n data: {\n index: nextIndex,\n overflows: overflowsData\n },\n reset: {\n placement: nextPlacement\n }\n };\n }\n }\n\n // First, find the candidates that fit on the mainAxis side of overflow,\n // then find the placement that fits the best on the main crossAxis side.\n let resetPlacement = (_overflowsData$filter = overflowsData.filter(d => d.overflows[0] <= 0).sort((a, b) => a.overflows[1] - b.overflows[1])[0]) == null ? void 0 : _overflowsData$filter.placement;\n\n // Otherwise fallback.\n if (!resetPlacement) {\n switch (fallbackStrategy) {\n case 'bestFit':\n {\n var _overflowsData$filter2;\n const placement = (_overflowsData$filter2 = overflowsData.filter(d => {\n if (hasFallbackAxisSideDirection) {\n const currentSideAxis = getSideAxis(d.placement);\n return currentSideAxis === initialSideAxis ||\n // Create a bias to the `y` side axis due to horizontal\n // reading directions favoring greater width.\n currentSideAxis === 'y';\n }\n return true;\n }).map(d => [d.placement, d.overflows.filter(overflow => overflow > 0).reduce((acc, overflow) => acc + overflow, 0)]).sort((a, b) => a[1] - b[1])[0]) == null ? void 0 : _overflowsData$filter2[0];\n if (placement) {\n resetPlacement = placement;\n }\n break;\n }\n case 'initialPlacement':\n resetPlacement = initialPlacement;\n break;\n }\n }\n if (placement !== resetPlacement) {\n return {\n reset: {\n placement: resetPlacement\n }\n };\n }\n }\n return {};\n }\n };\n};\n\nfunction getSideOffsets(overflow, rect) {\n return {\n top: overflow.top - rect.height,\n right: overflow.right - rect.width,\n bottom: overflow.bottom - rect.height,\n left: overflow.left - rect.width\n };\n}\nfunction isAnySideFullyClipped(overflow) {\n return sides.some(side => overflow[side] >= 0);\n}\n/**\n * Provides data to hide the floating element in applicable situations, such as\n * when it is not in the same clipping context as the reference element.\n * @see https://floating-ui.com/docs/hide\n */\nconst hide = function (options) {\n if (options === void 0) {\n options = {};\n }\n return {\n name: 'hide',\n options,\n async fn(state) {\n const {\n rects\n } = state;\n const {\n strategy = 'referenceHidden',\n ...detectOverflowOptions\n } = evaluate(options, state);\n switch (strategy) {\n case 'referenceHidden':\n {\n const overflow = await detectOverflow(state, {\n ...detectOverflowOptions,\n elementContext: 'reference'\n });\n const offsets = getSideOffsets(overflow, rects.reference);\n return {\n data: {\n referenceHiddenOffsets: offsets,\n referenceHidden: isAnySideFullyClipped(offsets)\n }\n };\n }\n case 'escaped':\n {\n const overflow = await detectOverflow(state, {\n ...detectOverflowOptions,\n altBoundary: true\n });\n const offsets = getSideOffsets(overflow, rects.floating);\n return {\n data: {\n escapedOffsets: offsets,\n escaped: isAnySideFullyClipped(offsets)\n }\n };\n }\n default:\n {\n return {};\n }\n }\n }\n };\n};\n\nfunction getBoundingRect(rects) {\n const minX = min(...rects.map(rect => rect.left));\n const minY = min(...rects.map(rect => rect.top));\n const maxX = max(...rects.map(rect => rect.right));\n const maxY = max(...rects.map(rect => rect.bottom));\n return {\n x: minX,\n y: minY,\n width: maxX - minX,\n height: maxY - minY\n };\n}\nfunction getRectsByLine(rects) {\n const sortedRects = rects.slice().sort((a, b) => a.y - b.y);\n const groups = [];\n let prevRect = null;\n for (let i = 0; i < sortedRects.length; i++) {\n const rect = sortedRects[i];\n if (!prevRect || rect.y - prevRect.y > prevRect.height / 2) {\n groups.push([rect]);\n } else {\n groups[groups.length - 1].push(rect);\n }\n prevRect = rect;\n }\n return groups.map(rect => rectToClientRect(getBoundingRect(rect)));\n}\n/**\n * Provides improved positioning for inline reference elements that can span\n * over multiple lines, such as hyperlinks or range selections.\n * @see https://floating-ui.com/docs/inline\n */\nconst inline = function (options) {\n if (options === void 0) {\n options = {};\n }\n return {\n name: 'inline',\n options,\n async fn(state) {\n const {\n placement,\n elements,\n rects,\n platform,\n strategy\n } = state;\n // A MouseEvent's client{X,Y} coords can be up to 2 pixels off a\n // ClientRect's bounds, despite the event listener being triggered. A\n // padding of 2 seems to handle this issue.\n const {\n padding = 2,\n x,\n y\n } = evaluate(options, state);\n const nativeClientRects = Array.from((await (platform.getClientRects == null ? void 0 : platform.getClientRects(elements.reference))) || []);\n const clientRects = getRectsByLine(nativeClientRects);\n const fallback = rectToClientRect(getBoundingRect(nativeClientRects));\n const paddingObject = getPaddingObject(padding);\n function getBoundingClientRect() {\n // There are two rects and they are disjoined.\n if (clientRects.length === 2 && clientRects[0].left > clientRects[1].right && x != null && y != null) {\n // Find the first rect in which the point is fully inside.\n return clientRects.find(rect => x > rect.left - paddingObject.left && x < rect.right + paddingObject.right && y > rect.top - paddingObject.top && y < rect.bottom + paddingObject.bottom) || fallback;\n }\n\n // There are 2 or more connected rects.\n if (clientRects.length >= 2) {\n if (getSideAxis(placement) === 'y') {\n const firstRect = clientRects[0];\n const lastRect = clientRects[clientRects.length - 1];\n const isTop = getSide(placement) === 'top';\n const top = firstRect.top;\n const bottom = lastRect.bottom;\n const left = isTop ? firstRect.left : lastRect.left;\n const right = isTop ? firstRect.right : lastRect.right;\n const width = right - left;\n const height = bottom - top;\n return {\n top,\n bottom,\n left,\n right,\n width,\n height,\n x: left,\n y: top\n };\n }\n const isLeftSide = getSide(placement) === 'left';\n const maxRight = max(...clientRects.map(rect => rect.right));\n const minLeft = min(...clientRects.map(rect => rect.left));\n const measureRects = clientRects.filter(rect => isLeftSide ? rect.left === minLeft : rect.right === maxRight);\n const top = measureRects[0].top;\n const bottom = measureRects[measureRects.length - 1].bottom;\n const left = minLeft;\n const right = maxRight;\n const width = right - left;\n const height = bottom - top;\n return {\n top,\n bottom,\n left,\n right,\n width,\n height,\n x: left,\n y: top\n };\n }\n return fallback;\n }\n const resetRects = await platform.getElementRects({\n reference: {\n getBoundingClientRect\n },\n floating: elements.floating,\n strategy\n });\n if (rects.reference.x !== resetRects.reference.x || rects.reference.y !== resetRects.reference.y || rects.reference.width !== resetRects.reference.width || rects.reference.height !== resetRects.reference.height) {\n return {\n reset: {\n rects: resetRects\n }\n };\n }\n return {};\n }\n };\n};\n\nconst originSides = /*#__PURE__*/new Set(['left', 'top']);\n\n// For type backwards-compatibility, the `OffsetOptions` type was also\n// Derivable.\n\nasync function convertValueToCoords(state, options) {\n const {\n placement,\n platform,\n elements\n } = state;\n const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating));\n const side = getSide(placement);\n const alignment = getAlignment(placement);\n const isVertical = getSideAxis(placement) === 'y';\n const mainAxisMulti = originSides.has(side) ? -1 : 1;\n const crossAxisMulti = rtl && isVertical ? -1 : 1;\n const rawValue = evaluate(options, state);\n\n // eslint-disable-next-line prefer-const\n let {\n mainAxis,\n crossAxis,\n alignmentAxis\n } = typeof rawValue === 'number' ? {\n mainAxis: rawValue,\n crossAxis: 0,\n alignmentAxis: null\n } : {\n mainAxis: rawValue.mainAxis || 0,\n crossAxis: rawValue.crossAxis || 0,\n alignmentAxis: rawValue.alignmentAxis\n };\n if (alignment && typeof alignmentAxis === 'number') {\n crossAxis = alignment === 'end' ? alignmentAxis * -1 : alignmentAxis;\n }\n return isVertical ? {\n x: crossAxis * crossAxisMulti,\n y: mainAxis * mainAxisMulti\n } : {\n x: mainAxis * mainAxisMulti,\n y: crossAxis * crossAxisMulti\n };\n}\n\n/**\n * Modifies the placement by translating the floating element along the\n * specified axes.\n * A number (shorthand for `mainAxis` or distance), or an axes configuration\n * object may be passed.\n * @see https://floating-ui.com/docs/offset\n */\nconst offset = function (options) {\n if (options === void 0) {\n options = 0;\n }\n return {\n name: 'offset',\n options,\n async fn(state) {\n var _middlewareData$offse, _middlewareData$arrow;\n const {\n x,\n y,\n placement,\n middlewareData\n } = state;\n const diffCoords = await convertValueToCoords(state, options);\n\n // If the placement is the same and the arrow caused an alignment offset\n // then we don't need to change the positioning coordinates.\n if (placement === ((_middlewareData$offse = middlewareData.offset) == null ? void 0 : _middlewareData$offse.placement) && (_middlewareData$arrow = middlewareData.arrow) != null && _middlewareData$arrow.alignmentOffset) {\n return {};\n }\n return {\n x: x + diffCoords.x,\n y: y + diffCoords.y,\n data: {\n ...diffCoords,\n placement\n }\n };\n }\n };\n};\n\n/**\n * Optimizes the visibility of the floating element by shifting it in order to\n * keep it in view when it will overflow the clipping boundary.\n * @see https://floating-ui.com/docs/shift\n */\nconst shift = function (options) {\n if (options === void 0) {\n options = {};\n }\n return {\n name: 'shift',\n options,\n async fn(state) {\n const {\n x,\n y,\n placement\n } = state;\n const {\n mainAxis: checkMainAxis = true,\n crossAxis: checkCrossAxis = false,\n limiter = {\n fn: _ref => {\n let {\n x,\n y\n } = _ref;\n return {\n x,\n y\n };\n }\n },\n ...detectOverflowOptions\n } = evaluate(options, state);\n const coords = {\n x,\n y\n };\n const overflow = await detectOverflow(state, detectOverflowOptions);\n const crossAxis = getSideAxis(getSide(placement));\n const mainAxis = getOppositeAxis(crossAxis);\n let mainAxisCoord = coords[mainAxis];\n let crossAxisCoord = coords[crossAxis];\n if (checkMainAxis) {\n const minSide = mainAxis === 'y' ? 'top' : 'left';\n const maxSide = mainAxis === 'y' ? 'bottom' : 'right';\n const min = mainAxisCoord + overflow[minSide];\n const max = mainAxisCoord - overflow[maxSide];\n mainAxisCoord = clamp(min, mainAxisCoord, max);\n }\n if (checkCrossAxis) {\n const minSide = crossAxis === 'y' ? 'top' : 'left';\n const maxSide = crossAxis === 'y' ? 'bottom' : 'right';\n const min = crossAxisCoord + overflow[minSide];\n const max = crossAxisCoord - overflow[maxSide];\n crossAxisCoord = clamp(min, crossAxisCoord, max);\n }\n const limitedCoords = limiter.fn({\n ...state,\n [mainAxis]: mainAxisCoord,\n [crossAxis]: crossAxisCoord\n });\n return {\n ...limitedCoords,\n data: {\n x: limitedCoords.x - x,\n y: limitedCoords.y - y,\n enabled: {\n [mainAxis]: checkMainAxis,\n [crossAxis]: checkCrossAxis\n }\n }\n };\n }\n };\n};\n/**\n * Built-in `limiter` that will stop `shift()` at a certain point.\n */\nconst limitShift = function (options) {\n if (options === void 0) {\n options = {};\n }\n return {\n options,\n fn(state) {\n const {\n x,\n y,\n placement,\n rects,\n middlewareData\n } = state;\n const {\n offset = 0,\n mainAxis: checkMainAxis = true,\n crossAxis: checkCrossAxis = true\n } = evaluate(options, state);\n const coords = {\n x,\n y\n };\n const crossAxis = getSideAxis(placement);\n const mainAxis = getOppositeAxis(crossAxis);\n let mainAxisCoord = coords[mainAxis];\n let crossAxisCoord = coords[crossAxis];\n const rawOffset = evaluate(offset, state);\n const computedOffset = typeof rawOffset === 'number' ? {\n mainAxis: rawOffset,\n crossAxis: 0\n } : {\n mainAxis: 0,\n crossAxis: 0,\n ...rawOffset\n };\n if (checkMainAxis) {\n const len = mainAxis === 'y' ? 'height' : 'width';\n const limitMin = rects.reference[mainAxis] - rects.floating[len] + computedOffset.mainAxis;\n const limitMax = rects.reference[mainAxis] + rects.reference[len] - computedOffset.mainAxis;\n if (mainAxisCoord < limitMin) {\n mainAxisCoord = limitMin;\n } else if (mainAxisCoord > limitMax) {\n mainAxisCoord = limitMax;\n }\n }\n if (checkCrossAxis) {\n var _middlewareData$offse, _middlewareData$offse2;\n const len = mainAxis === 'y' ? 'width' : 'height';\n const isOriginSide = originSides.has(getSide(placement));\n const limitMin = rects.reference[crossAxis] - rects.floating[len] + (isOriginSide ? ((_middlewareData$offse = middlewareData.offset) == null ? void 0 : _middlewareData$offse[crossAxis]) || 0 : 0) + (isOriginSide ? 0 : computedOffset.crossAxis);\n const limitMax = rects.reference[crossAxis] + rects.reference[len] + (isOriginSide ? 0 : ((_middlewareData$offse2 = middlewareData.offset) == null ? void 0 : _middlewareData$offse2[crossAxis]) || 0) - (isOriginSide ? computedOffset.crossAxis : 0);\n if (crossAxisCoord < limitMin) {\n crossAxisCoord = limitMin;\n } else if (crossAxisCoord > limitMax) {\n crossAxisCoord = limitMax;\n }\n }\n return {\n [mainAxis]: mainAxisCoord,\n [crossAxis]: crossAxisCoord\n };\n }\n };\n};\n\n/**\n * Provides data that allows you to change the size of the floating element —\n * for instance, prevent it from overflowing the clipping boundary or match the\n * width of the reference element.\n * @see https://floating-ui.com/docs/size\n */\nconst size = function (options) {\n if (options === void 0) {\n options = {};\n }\n return {\n name: 'size',\n options,\n async fn(state) {\n var _state$middlewareData, _state$middlewareData2;\n const {\n placement,\n rects,\n platform,\n elements\n } = state;\n const {\n apply = () => {},\n ...detectOverflowOptions\n } = evaluate(options, state);\n const overflow = await detectOverflow(state, detectOverflowOptions);\n const side = getSide(placement);\n const alignment = getAlignment(placement);\n const isYAxis = getSideAxis(placement) === 'y';\n const {\n width,\n height\n } = rects.floating;\n let heightSide;\n let widthSide;\n if (side === 'top' || side === 'bottom') {\n heightSide = side;\n widthSide = alignment === ((await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating))) ? 'start' : 'end') ? 'left' : 'right';\n } else {\n widthSide = side;\n heightSide = alignment === 'end' ? 'top' : 'bottom';\n }\n const maximumClippingHeight = height - overflow.top - overflow.bottom;\n const maximumClippingWidth = width - overflow.left - overflow.right;\n const overflowAvailableHeight = min(height - overflow[heightSide], maximumClippingHeight);\n const overflowAvailableWidth = min(width - overflow[widthSide], maximumClippingWidth);\n const noShift = !state.middlewareData.shift;\n let availableHeight = overflowAvailableHeight;\n let availableWidth = overflowAvailableWidth;\n if ((_state$middlewareData = state.middlewareData.shift) != null && _state$middlewareData.enabled.x) {\n availableWidth = maximumClippingWidth;\n }\n if ((_state$middlewareData2 = state.middlewareData.shift) != null && _state$middlewareData2.enabled.y) {\n availableHeight = maximumClippingHeight;\n }\n if (noShift && !alignment) {\n const xMin = max(overflow.left, 0);\n const xMax = max(overflow.right, 0);\n const yMin = max(overflow.top, 0);\n const yMax = max(overflow.bottom, 0);\n if (isYAxis) {\n availableWidth = width - 2 * (xMin !== 0 || xMax !== 0 ? xMin + xMax : max(overflow.left, overflow.right));\n } else {\n availableHeight = height - 2 * (yMin !== 0 || yMax !== 0 ? yMin + yMax : max(overflow.top, overflow.bottom));\n }\n }\n await apply({\n ...state,\n availableWidth,\n availableHeight\n });\n const nextDimensions = await platform.getDimensions(elements.floating);\n if (width !== nextDimensions.width || height !== nextDimensions.height) {\n return {\n reset: {\n rects: true\n }\n };\n }\n return {};\n }\n };\n};\n\nexport { arrow, autoPlacement, computePosition, detectOverflow, flip, hide, inline, limitShift, offset, shift, size };\n","import { rectToClientRect, arrow as arrow$1, autoPlacement as autoPlacement$1, detectOverflow as detectOverflow$1, flip as flip$1, hide as hide$1, inline as inline$1, limitShift as limitShift$1, offset as offset$1, shift as shift$1, size as size$1, computePosition as computePosition$1 } from '@floating-ui/core';\nimport { round, createCoords, max, min, floor } from '@floating-ui/utils';\nimport { getComputedStyle, isHTMLElement, isElement, getWindow, isWebKit, getFrameElement, getNodeScroll, getDocumentElement, isTopLayer, getNodeName, isOverflowElement, getOverflowAncestors, getParentNode, isLastTraversableNode, isContainingBlock, isTableElement, getContainingBlock } from '@floating-ui/utils/dom';\nexport { getOverflowAncestors } from '@floating-ui/utils/dom';\n\nfunction getCssDimensions(element) {\n const css = getComputedStyle(element);\n // In testing environments, the `width` and `height` properties are empty\n // strings for SVG elements, returning NaN. Fallback to `0` in this case.\n let width = parseFloat(css.width) || 0;\n let height = parseFloat(css.height) || 0;\n const hasOffset = isHTMLElement(element);\n const offsetWidth = hasOffset ? element.offsetWidth : width;\n const offsetHeight = hasOffset ? element.offsetHeight : height;\n const shouldFallback = round(width) !== offsetWidth || round(height) !== offsetHeight;\n if (shouldFallback) {\n width = offsetWidth;\n height = offsetHeight;\n }\n return {\n width,\n height,\n $: shouldFallback\n };\n}\n\nfunction unwrapElement(element) {\n return !isElement(element) ? element.contextElement : element;\n}\n\nfunction getScale(element) {\n const domElement = unwrapElement(element);\n if (!isHTMLElement(domElement)) {\n return createCoords(1);\n }\n const rect = domElement.getBoundingClientRect();\n const {\n width,\n height,\n $\n } = getCssDimensions(domElement);\n let x = ($ ? round(rect.width) : rect.width) / width;\n let y = ($ ? round(rect.height) : rect.height) / height;\n\n // 0, NaN, or Infinity should always fallback to 1.\n\n if (!x || !Number.isFinite(x)) {\n x = 1;\n }\n if (!y || !Number.isFinite(y)) {\n y = 1;\n }\n return {\n x,\n y\n };\n}\n\nconst noOffsets = /*#__PURE__*/createCoords(0);\nfunction getVisualOffsets(element) {\n const win = getWindow(element);\n if (!isWebKit() || !win.visualViewport) {\n return noOffsets;\n }\n return {\n x: win.visualViewport.offsetLeft,\n y: win.visualViewport.offsetTop\n };\n}\nfunction shouldAddVisualOffsets(element, isFixed, floatingOffsetParent) {\n if (isFixed === void 0) {\n isFixed = false;\n }\n if (!floatingOffsetParent || isFixed && floatingOffsetParent !== getWindow(element)) {\n return false;\n }\n return isFixed;\n}\n\nfunction getBoundingClientRect(element, includeScale, isFixedStrategy, offsetParent) {\n if (includeScale === void 0) {\n includeScale = false;\n }\n if (isFixedStrategy === void 0) {\n isFixedStrategy = false;\n }\n const clientRect = element.getBoundingClientRect();\n const domElement = unwrapElement(element);\n let scale = createCoords(1);\n if (includeScale) {\n if (offsetParent) {\n if (isElement(offsetParent)) {\n scale = getScale(offsetParent);\n }\n } else {\n scale = getScale(element);\n }\n }\n const visualOffsets = shouldAddVisualOffsets(domElement, isFixedStrategy, offsetParent) ? getVisualOffsets(domElement) : createCoords(0);\n let x = (clientRect.left + visualOffsets.x) / scale.x;\n let y = (clientRect.top + visualOffsets.y) / scale.y;\n let width = clientRect.width / scale.x;\n let height = clientRect.height / scale.y;\n if (domElement) {\n const win = getWindow(domElement);\n const offsetWin = offsetParent && isElement(offsetParent) ? getWindow(offsetParent) : offsetParent;\n let currentWin = win;\n let currentIFrame = getFrameElement(currentWin);\n while (currentIFrame && offsetParent && offsetWin !== currentWin) {\n const iframeScale = getScale(currentIFrame);\n const iframeRect = currentIFrame.getBoundingClientRect();\n const css = getComputedStyle(currentIFrame);\n const left = iframeRect.left + (currentIFrame.clientLeft + parseFloat(css.paddingLeft)) * iframeScale.x;\n const top = iframeRect.top + (currentIFrame.clientTop + parseFloat(css.paddingTop)) * iframeScale.y;\n x *= iframeScale.x;\n y *= iframeScale.y;\n width *= iframeScale.x;\n height *= iframeScale.y;\n x += left;\n y += top;\n currentWin = getWindow(currentIFrame);\n currentIFrame = getFrameElement(currentWin);\n }\n }\n return rectToClientRect({\n width,\n height,\n x,\n y\n });\n}\n\n// If <html> has a CSS width greater than the viewport, then this will be\n// incorrect for RTL.\nfunction getWindowScrollBarX(element, rect) {\n const leftScroll = getNodeScroll(element).scrollLeft;\n if (!rect) {\n return getBoundingClientRect(getDocumentElement(element)).left + leftScroll;\n }\n return rect.left + leftScroll;\n}\n\nfunction getHTMLOffset(documentElement, scroll, ignoreScrollbarX) {\n if (ignoreScrollbarX === void 0) {\n ignoreScrollbarX = false;\n }\n const htmlRect = documentElement.getBoundingClientRect();\n const x = htmlRect.left + scroll.scrollLeft - (ignoreScrollbarX ? 0 :\n // RTL <body> scrollbar.\n getWindowScrollBarX(documentElement, htmlRect));\n const y = htmlRect.top + scroll.scrollTop;\n return {\n x,\n y\n };\n}\n\nfunction convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {\n let {\n elements,\n rect,\n offsetParent,\n strategy\n } = _ref;\n const isFixed = strategy === 'fixed';\n const documentElement = getDocumentElement(offsetParent);\n const topLayer = elements ? isTopLayer(elements.floating) : false;\n if (offsetParent === documentElement || topLayer && isFixed) {\n return rect;\n }\n let scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n let scale = createCoords(1);\n const offsets = createCoords(0);\n const isOffsetParentAnElement = isHTMLElement(offsetParent);\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {\n scroll = getNodeScroll(offsetParent);\n }\n if (isHTMLElement(offsetParent)) {\n const offsetRect = getBoundingClientRect(offsetParent);\n scale = getScale(offsetParent);\n offsets.x = offsetRect.x + offsetParent.clientLeft;\n offsets.y = offsetRect.y + offsetParent.clientTop;\n }\n }\n const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll, true) : createCoords(0);\n return {\n width: rect.width * scale.x,\n height: rect.height * scale.y,\n x: rect.x * scale.x - scroll.scrollLeft * scale.x + offsets.x + htmlOffset.x,\n y: rect.y * scale.y - scroll.scrollTop * scale.y + offsets.y + htmlOffset.y\n };\n}\n\nfunction getClientRects(element) {\n return Array.from(element.getClientRects());\n}\n\n// Gets the entire size of the scrollable document area, even extending outside\n// of the `<html>` and `<body>` rect bounds if horizontally scrollable.\nfunction getDocumentRect(element) {\n const html = getDocumentElement(element);\n const scroll = getNodeScroll(element);\n const body = element.ownerDocument.body;\n const width = max(html.scrollWidth, html.clientWidth, body.scrollWidth, body.clientWidth);\n const height = max(html.scrollHeight, html.clientHeight, body.scrollHeight, body.clientHeight);\n let x = -scroll.scrollLeft + getWindowScrollBarX(element);\n const y = -scroll.scrollTop;\n if (getComputedStyle(body).direction === 'rtl') {\n x += max(html.clientWidth, body.clientWidth) - width;\n }\n return {\n width,\n height,\n x,\n y\n };\n}\n\nfunction getViewportRect(element, strategy) {\n const win = getWindow(element);\n const html = getDocumentElement(element);\n const visualViewport = win.visualViewport;\n let width = html.clientWidth;\n let height = html.clientHeight;\n let x = 0;\n let y = 0;\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height;\n const visualViewportBased = isWebKit();\n if (!visualViewportBased || visualViewportBased && strategy === 'fixed') {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n return {\n width,\n height,\n x,\n y\n };\n}\n\nconst absoluteOrFixed = /*#__PURE__*/new Set(['absolute', 'fixed']);\n// Returns the inner client rect, subtracting scrollbars if present.\nfunction getInnerBoundingClientRect(element, strategy) {\n const clientRect = getBoundingClientRect(element, true, strategy === 'fixed');\n const top = clientRect.top + element.clientTop;\n const left = clientRect.left + element.clientLeft;\n const scale = isHTMLElement(element) ? getScale(element) : createCoords(1);\n const width = element.clientWidth * scale.x;\n const height = element.clientHeight * scale.y;\n const x = left * scale.x;\n const y = top * scale.y;\n return {\n width,\n height,\n x,\n y\n };\n}\nfunction getClientRectFromClippingAncestor(element, clippingAncestor, strategy) {\n let rect;\n if (clippingAncestor === 'viewport') {\n rect = getViewportRect(element, strategy);\n } else if (clippingAncestor === 'document') {\n rect = getDocumentRect(getDocumentElement(element));\n } else if (isElement(clippingAncestor)) {\n rect = getInnerBoundingClientRect(clippingAncestor, strategy);\n } else {\n const visualOffsets = getVisualOffsets(element);\n rect = {\n x: clippingAncestor.x - visualOffsets.x,\n y: clippingAncestor.y - visualOffsets.y,\n width: clippingAncestor.width,\n height: clippingAncestor.height\n };\n }\n return rectToClientRect(rect);\n}\nfunction hasFixedPositionAncestor(element, stopNode) {\n const parentNode = getParentNode(element);\n if (parentNode === stopNode || !isElement(parentNode) || isLastTraversableNode(parentNode)) {\n return false;\n }\n return getComputedStyle(parentNode).position === 'fixed' || hasFixedPositionAncestor(parentNode, stopNode);\n}\n\n// A \"clipping ancestor\" is an `overflow` element with the characteristic of\n// clipping (or hiding) child elements. This returns all clipping ancestors\n// of the given element up the tree.\nfunction getClippingElementAncestors(element, cache) {\n const cachedResult = cache.get(element);\n if (cachedResult) {\n return cachedResult;\n }\n let result = getOverflowAncestors(element, [], false).filter(el => isElement(el) && getNodeName(el) !== 'body');\n let currentContainingBlockComputedStyle = null;\n const elementIsFixed = getComputedStyle(element).position === 'fixed';\n let currentNode = elementIsFixed ? getParentNode(element) : element;\n\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n while (isElement(currentNode) && !isLastTraversableNode(currentNode)) {\n const computedStyle = getComputedStyle(currentNode);\n const currentNodeIsContaining = isContainingBlock(currentNode);\n if (!currentNodeIsContaining && computedStyle.position === 'fixed') {\n currentContainingBlockComputedStyle = null;\n }\n const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && absoluteOrFixed.has(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);\n if (shouldDropCurrentNode) {\n // Drop non-containing blocks.\n result = result.filter(ancestor => ancestor !== currentNode);\n } else {\n // Record last containing block for next iteration.\n currentContainingBlockComputedStyle = computedStyle;\n }\n currentNode = getParentNode(currentNode);\n }\n cache.set(element, result);\n return result;\n}\n\n// Gets the maximum area that the element is visible in due to any number of\n// clipping ancestors.\nfunction getClippingRect(_ref) {\n let {\n element,\n boundary,\n rootBoundary,\n strategy\n } = _ref;\n const elementClippingAncestors = boundary === 'clippingAncestors' ? isTopLayer(element) ? [] : getClippingElementAncestors(element, this._c) : [].concat(boundary);\n const clippingAncestors = [...elementClippingAncestors, rootBoundary];\n const firstClippingAncestor = clippingAncestors[0];\n const clippingRect = clippingAncestors.reduce((accRect, clippingAncestor) => {\n const rect = getClientRectFromClippingAncestor(element, clippingAncestor, strategy);\n accRect.top = max(rect.top, accRect.top);\n accRect.right = min(rect.right, accRect.right);\n accRect.bottom = min(rect.bottom, accRect.bottom);\n accRect.left = max(rect.left, accRect.left);\n return accRect;\n }, getClientRectFromClippingAncestor(element, firstClippingAncestor, strategy));\n return {\n width: clippingRect.right - clippingRect.left,\n height: clippingRect.bottom - clippingRect.top,\n x: clippingRect.left,\n y: clippingRect.top\n };\n}\n\nfunction getDimensions(element) {\n const {\n width,\n height\n } = getCssDimensions(element);\n return {\n width,\n height\n };\n}\n\nfunction getRectRelativeToOffsetParent(element, offsetParent, strategy) {\n const isOffsetParentAnElement = isHTMLElement(offsetParent);\n const documentElement = getDocumentElement(offsetParent);\n const isFixed = strategy === 'fixed';\n const rect = getBoundingClientRect(element, true, isFixed, offsetParent);\n let scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n const offsets = createCoords(0);\n\n // If the <body> scrollbar appears on the left (e.g. RTL systems). Use\n // Firefox with layout.scrollbar.side = 3 in about:config to test this.\n function setLeftRTLScrollbarOffset() {\n offsets.x = getWindowScrollBarX(documentElement);\n }\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if (getNodeName(offsetParent) !== 'body' || isOverflowElement(documentElement)) {\n scroll = getNodeScroll(offsetParent);\n }\n if (isOffsetParentAnElement) {\n const offsetRect = getBoundingClientRect(offsetParent, true, isFixed, offsetParent);\n offsets.x = offsetRect.x + offsetParent.clientLeft;\n offsets.y = offsetRect.y + offsetParent.clientTop;\n } else if (documentElement) {\n setLeftRTLScrollbarOffset();\n }\n }\n if (isFixed && !isOffsetParentAnElement && documentElement) {\n setLeftRTLScrollbarOffset();\n }\n const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : createCoords(0);\n const x = rect.left + scroll.scrollLeft - offsets.x - htmlOffset.x;\n const y = rect.top + scroll.scrollTop - offsets.y - htmlOffset.y;\n return {\n x,\n y,\n width: rect.width,\n height: rect.height\n };\n}\n\nfunction isStaticPositioned(element) {\n return getComputedStyle(element).position === 'static';\n}\n\nfunction getTrueOffsetParent(element, polyfill) {\n if (!isHTMLElement(element) || getComputedStyle(element).position === 'fixed') {\n return null;\n }\n if (polyfill) {\n return polyfill(element);\n }\n let rawOffsetParent = element.offsetParent;\n\n // Firefox returns the <html> element as the offsetParent if it's non-static,\n // while Chrome and Safari return the <body> element. The <body> element must\n // be used to perform the correct calculations even if the <html> element is\n // non-static.\n if (getDocumentElement(element) === rawOffsetParent) {\n rawOffsetParent = rawOffsetParent.ownerDocument.body;\n }\n return rawOffsetParent;\n}\n\n// Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\nfunction getOffsetParent(element, polyfill) {\n const win = getWindow(element);\n if (isTopLayer(element)) {\n return win;\n }\n if (!isHTMLElement(element)) {\n let svgOffsetParent = getParentNode(element);\n while (svgOffsetParent && !isLastTraversableNode(svgOffsetParent)) {\n if (isElement(svgOffsetParent) && !isStaticPositioned(svgOffsetParent)) {\n return svgOffsetParent;\n }\n svgOffsetParent = getParentNode(svgOffsetParent);\n }\n return win;\n }\n let offsetParent = getTrueOffsetParent(element, polyfill);\n while (offsetParent && isTableElement(offsetParent) && isStaticPositioned(offsetParent)) {\n offsetParent = getTrueOffsetParent(offsetParent, polyfill);\n }\n if (offsetParent && isLastTraversableNode(offsetParent) && isStaticPositioned(offsetParent) && !isContainingBlock(offsetParent)) {\n return win;\n }\n return offsetParent || getContainingBlock(element) || win;\n}\n\nconst getElementRects = async function (data) {\n const getOffsetParentFn = this.getOffsetParent || getOffsetParent;\n const getDimensionsFn = this.getDimensions;\n const floatingDimensions = await getDimensionsFn(data.floating);\n return {\n reference: getRectRelativeToOffsetParent(data.reference, await getOffsetParentFn(data.floating), data.strategy),\n floating: {\n x: 0,\n y: 0,\n width: floatingDimensions.width,\n height: floatingDimensions.height\n }\n };\n};\n\nfunction isRTL(element) {\n return getComputedStyle(element).direction === 'rtl';\n}\n\nconst platform = {\n convertOffsetParentRelativeRectToViewportRelativeRect,\n getDocumentElement,\n getClippingRect,\n getOffsetParent,\n getElementRects,\n getClientRects,\n getDimensions,\n getScale,\n isElement,\n isRTL\n};\n\nfunction rectsAreEqual(a, b) {\n return a.x === b.x && a.y === b.y && a.width === b.width && a.height === b.height;\n}\n\n// https://samthor.au/2021/observing-dom/\nfunction observeMove(element, onMove) {\n let io = null;\n let timeoutId;\n const root = getDocumentElement(element);\n function cleanup() {\n var _io;\n clearTimeout(timeoutId);\n (_io = io) == null || _io.disconnect();\n io = null;\n }\n function refresh(skip, threshold) {\n if (skip === void 0) {\n skip = false;\n }\n if (threshold === void 0) {\n threshold = 1;\n }\n cleanup();\n const elementRectForRootMargin = element.getBoundingClientRect();\n const {\n left,\n top,\n width,\n height\n } = elementRectForRootMargin;\n if (!skip) {\n onMove();\n }\n if (!width || !height) {\n return;\n }\n const insetTop = floor(top);\n const insetRight = floor(root.clientWidth - (left + width));\n const insetBottom = floor(root.clientHeight - (top + height));\n const insetLeft = floor(left);\n const rootMargin = -insetTop + \"px \" + -insetRight + \"px \" + -insetBottom + \"px \" + -insetLeft + \"px\";\n const options = {\n rootMargin,\n threshold: max(0, min(1, threshold)) || 1\n };\n let isFirstUpdate = true;\n function handleObserve(entries) {\n const ratio = entries[0].intersectionRatio;\n if (ratio !== threshold) {\n if (!isFirstUpdate) {\n return refresh();\n }\n if (!ratio) {\n // If the reference is clipped, the ratio is 0. Throttle the refresh\n // to prevent an infinite loop of updates.\n timeoutId = setTimeout(() => {\n refresh(false, 1e-7);\n }, 1000);\n } else {\n refresh(false, ratio);\n }\n }\n if (ratio === 1 && !rectsAreEqual(elementRectForRootMargin, element.getBoundingClientRect())) {\n // It's possible that even though the ratio is reported as 1, the\n // element is not actually fully within the IntersectionObserver's root\n // area anymore. This can happen under performance constraints. This may\n // be a bug in the browser's IntersectionObserver implementation. To\n // work around this, we compare the element's bounding rect now with\n // what it was at the time we created the IntersectionObserver. If they\n // are not equal then the element moved, so we refresh.\n refresh();\n }\n isFirstUpdate = false;\n }\n\n // Older browsers don't support a `document` as the root and will throw an\n // error.\n try {\n io = new IntersectionObserver(handleObserve, {\n ...options,\n // Handle <iframe>s\n root: root.ownerDocument\n });\n } catch (_e) {\n io = new IntersectionObserver(handleObserve, options);\n }\n io.observe(element);\n }\n refresh(true);\n return cleanup;\n}\n\n/**\n * Automatically updates the position of the floating element when necessary.\n * Should only be called when the floating element is mounted on the DOM or\n * visible on the screen.\n * @returns cleanup function that should be invoked when the floating element is\n * removed from the DOM or hidden from the screen.\n * @see https://floating-ui.com/docs/autoUpdate\n */\nfunction autoUpdate(reference, floating, update, options) {\n if (options === void 0) {\n options = {};\n }\n const {\n ancestorScroll = true,\n ancestorResize = true,\n elementResize = typeof ResizeObserver === 'function',\n layoutShift = typeof IntersectionObserver === 'function',\n animationFrame = false\n } = options;\n const referenceEl = unwrapElement(reference);\n const ancestors = ancestorScroll || ancestorResize ? [...(referenceEl ? getOverflowAncestors(referenceEl) : []), ...getOverflowAncestors(floating)] : [];\n ancestors.forEach(ancestor => {\n ancestorScroll && ancestor.addEventListener('scroll', update, {\n passive: true\n });\n ancestorResize && ancestor.addEventListener('resize', update);\n });\n const cleanupIo = referenceEl && layoutShift ? observeMove(referenceEl, update) : null;\n let reobserveFrame = -1;\n let resizeObserver = null;\n if (elementResize) {\n resizeObserver = new ResizeObserver(_ref => {\n let [firstEntry] = _ref;\n if (firstEntry && firstEntry.target === referenceEl && resizeObserver) {\n // Prevent update loops when using the `size` middleware.\n // https://github.com/floating-ui/floating-ui/issues/1740\n resizeObserver.unobserve(floating);\n cancelAnimationFrame(reobserveFrame);\n reobserveFrame = requestAnimationFrame(() => {\n var _resizeObserver;\n (_resizeObserver = resizeObserver) == null || _resizeObserver.observe(floating);\n });\n }\n update();\n });\n if (referenceEl && !animationFrame) {\n resizeObserver.observe(referenceEl);\n }\n resizeObserver.observe(floating);\n }\n let frameId;\n let prevRefRect = animationFrame ? getBoundingClientRect(reference) : null;\n if (animationFrame) {\n frameLoop();\n }\n function frameLoop() {\n const nextRefRect = getBoundingClientRect(reference);\n if (prevRefRect && !rectsAreEqual(prevRefRect, nextRefRect)) {\n update();\n }\n prevRefRect = nextRefRect;\n frameId = requestAnimationFrame(frameLoop);\n }\n update();\n return () => {\n var _resizeObserver2;\n ancestors.forEach(ancestor => {\n ancestorScroll && ancestor.removeEventListener('scroll', update);\n ancestorResize && ancestor.removeEventListener('resize', update);\n });\n cleanupIo == null || cleanupIo();\n (_resizeObserver2 = resizeObserver) == null || _resizeObserver2.disconnect();\n resizeObserver = null;\n if (animationFrame) {\n cancelAnimationFrame(frameId);\n }\n };\n}\n\n/**\n * Resolves with an object of overflow side offsets that determine how much the\n * element is overflowing a given clipping boundary on each side.\n * - positive = overflowing the boundary by that number of pixels\n * - negative = how many pixels left before it will overflow\n * - 0 = lies flush with the boundary\n * @see https://floating-ui.com/docs/detectOverflow\n */\nconst detectOverflow = detectOverflow$1;\n\n/**\n * Modifies the placement by translating the floating element along the\n * specified axes.\n * A number (shorthand for `mainAxis` or distance), or an axes configuration\n * object may be passed.\n * @see https://floating-ui.com/docs/offset\n */\nconst offset = offset$1;\n\n/**\n * Optimizes the visibility of the floating element by choosing the placement\n * that has the most space available automatically, without needing to specify a\n * preferred placement. Alternative to `flip`.\n * @see https://floating-ui.com/docs/autoPlacement\n */\nconst autoPlacement = autoPlacement$1;\n\n/**\n * Optimizes the visibility of the floating element by shifting it in order to\n * keep it in view when it will overflow the clipping boundary.\n * @see https://floating-ui.com/docs/shift\n */\nconst shift = shift$1;\n\n/**\n * Optimizes the visibility of the floating element by flipping the `placement`\n * in order to keep it in view when the preferred placement(s) will overflow the\n * clipping boundary. Alternative to `autoPlacement`.\n * @see https://floating-ui.com/docs/flip\n */\nconst flip = flip$1;\n\n/**\n * Provides data that allows you to change the size of the floating element —\n * for instance, prevent it from overflowing the clipping boundary or match the\n * width of the reference element.\n * @see https://floating-ui.com/docs/size\n */\nconst size = size$1;\n\n/**\n * Provides data to hide the floating element in applicable situations, such as\n * when it is not in the same clipping context as the reference element.\n * @see https://floating-ui.com/docs/hide\n */\nconst hide = hide$1;\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow = arrow$1;\n\n/**\n * Provides improved positioning for inline reference elements that can span\n * over multiple lines, such as hyperlinks or range selections.\n * @see https://floating-ui.com/docs/inline\n */\nconst inline = inline$1;\n\n/**\n * Built-in `limiter` that will stop `shift()` at a certain point.\n */\nconst limitShift = limitShift$1;\n\n/**\n * Computes the `x` and `y` coordinates that will place the floating element\n * next to a given reference element.\n */\nconst computePosition = (reference, floating, options) => {\n // This caches the expensive `getClippingElementAncestors` function so that\n // multiple lifecycle resets re-use the same result. It only lives for a\n // single call. If other functions become expensive, we can add them as well.\n const cache = new Map();\n const mergedOptions = {\n platform,\n ...options\n };\n const platformWithCache = {\n ...mergedOptions.platform,\n _c: cache\n };\n return computePosition$1(reference, floating, {\n ...mergedOptions,\n platform: platformWithCache\n });\n};\n\nexport { arrow, autoPlacement, autoUpdate, computePosition, detectOverflow, flip, hide, inline, limitShift, offset, platform, shift, size };\n","import { computePosition, arrow as arrow$2, autoPlacement as autoPlacement$1, flip as flip$1, hide as hide$1, inline as inline$1, limitShift as limitShift$1, offset as offset$1, shift as shift$1, size as size$1 } from '@floating-ui/dom';\nexport { autoUpdate, computePosition, detectOverflow, getOverflowAncestors, platform } from '@floating-ui/dom';\nimport * as React from 'react';\nimport { useLayoutEffect } from 'react';\nimport * as ReactDOM from 'react-dom';\n\nvar isClient = typeof document !== 'undefined';\n\nvar noop = function noop() {};\nvar index = isClient ? useLayoutEffect : noop;\n\n// Fork of `fast-deep-equal` that only does the comparisons we need and compares\n// functions\nfunction deepEqual(a, b) {\n if (a === b) {\n return true;\n }\n if (typeof a !== typeof b) {\n return false;\n }\n if (typeof a === 'function' && a.toString() === b.toString()) {\n return true;\n }\n let length;\n let i;\n let keys;\n if (a && b && typeof a === 'object') {\n if (Array.isArray(a)) {\n length = a.length;\n if (length !== b.length) return false;\n for (i = length; i-- !== 0;) {\n if (!deepEqual(a[i], b[i])) {\n return false;\n }\n }\n return true;\n }\n keys = Object.keys(a);\n length = keys.length;\n if (length !== Object.keys(b).length) {\n return false;\n }\n for (i = length; i-- !== 0;) {\n if (!{}.hasOwnProperty.call(b, keys[i])) {\n return false;\n }\n }\n for (i = length; i-- !== 0;) {\n const key = keys[i];\n if (key === '_owner' && a.$$typeof) {\n continue;\n }\n if (!deepEqual(a[key], b[key])) {\n return false;\n }\n }\n return true;\n }\n return a !== a && b !== b;\n}\n\nfunction getDPR(element) {\n if (typeof window === 'undefined') {\n return 1;\n }\n const win = element.ownerDocument.defaultView || window;\n return win.devicePixelRatio || 1;\n}\n\nfunction roundByDPR(element, value) {\n const dpr = getDPR(element);\n return Math.round(value * dpr) / dpr;\n}\n\nfunction useLatestRef(value) {\n const ref = React.useRef(value);\n index(() => {\n ref.current = value;\n });\n return ref;\n}\n\n/**\n * Provides data to position a floating element.\n * @see https://floating-ui.com/docs/useFloating\n */\nfunction useFloating(options) {\n if (options === void 0) {\n options = {};\n }\n const {\n placement = 'bottom',\n strategy = 'absolute',\n middleware = [],\n platform,\n elements: {\n reference: externalReference,\n floating: externalFloating\n } = {},\n transform = true,\n whileElementsMounted,\n open\n } = options;\n const [data, setData] = React.useState({\n x: 0,\n y: 0,\n strategy,\n placement,\n middlewareData: {},\n isPositioned: false\n });\n const [latestMiddleware, setLatestMiddleware] = React.useState(middleware);\n if (!deepEqual(latestMiddleware, middleware)) {\n setLatestMiddleware(middleware);\n }\n const [_reference, _setReference] = React.useState(null);\n const [_floating, _setFloating] = React.useState(null);\n const setReference = React.useCallback(node => {\n if (node !== referenceRef.current) {\n referenceRef.current = node;\n _setReference(node);\n }\n }, []);\n const setFloating = React.useCallback(node => {\n if (node !== floatingRef.current) {\n floatingRef.current = node;\n _setFloating(node);\n }\n }, []);\n const referenceEl = externalReference || _reference;\n const floatingEl = externalFloating || _floating;\n const referenceRef = React.useRef(null);\n const floatingRef = React.useRef(null);\n const dataRef = React.useRef(data);\n const hasWhileElementsMounted = whileElementsMounted != null;\n const whileElementsMountedRef = useLatestRef(whileElementsMounted);\n const platformRef = useLatestRef(platform);\n const openRef = useLatestRef(open);\n const update = React.useCallback(() => {\n if (!referenceRef.current || !floatingRef.current) {\n return;\n }\n const config = {\n placement,\n strategy,\n middleware: latestMiddleware\n };\n if (platformRef.current) {\n config.platform = platformRef.current;\n }\n computePosition(referenceRef.current, floatingRef.current, config).then(data => {\n const fullData = {\n ...data,\n // The floating element's position may be recomputed while it's closed\n // but still mounted (such as when transitioning out). To ensure\n // `isPositioned` will be `false` initially on the next open, avoid\n // setting it to `true` when `open === false` (must be specified).\n isPositioned: openRef.current !== false\n };\n if (isMountedRef.current && !deepEqual(dataRef.current, fullData)) {\n dataRef.current = fullData;\n ReactDOM.flushSync(() => {\n setData(fullData);\n });\n }\n });\n }, [latestMiddleware, placement, strategy, platformRef, openRef]);\n index(() => {\n if (open === false && dataRef.current.isPositioned) {\n dataRef.current.isPositioned = false;\n setData(data => ({\n ...data,\n isPositioned: false\n }));\n }\n }, [open]);\n const isMountedRef = React.useRef(false);\n index(() => {\n isMountedRef.current = true;\n return () => {\n isMountedRef.current = false;\n };\n }, []);\n index(() => {\n if (referenceEl) referenceRef.current = referenceEl;\n if (floatingEl) floatingRef.current = floatingEl;\n if (referenceEl && floatingEl) {\n if (whileElementsMountedRef.current) {\n return whileElementsMountedRef.current(referenceEl, floatingEl, update);\n }\n update();\n }\n }, [referenceEl, floatingEl, update, whileElementsMountedRef, hasWhileElementsMounted]);\n const refs = React.useMemo(() => ({\n reference: referenceRef,\n floating: floatingRef,\n setReference,\n setFloating\n }), [setReference, setFloating]);\n const elements = React.useMemo(() => ({\n reference: referenceEl,\n floating: floatingEl\n }), [referenceEl, floatingEl]);\n const floatingStyles = React.useMemo(() => {\n const initialStyles = {\n position: strategy,\n left: 0,\n top: 0\n };\n if (!elements.floating) {\n return initialStyles;\n }\n const x = roundByDPR(elements.floating, data.x);\n const y = roundByDPR(elements.floating, data.y);\n if (transform) {\n return {\n ...initialStyles,\n transform: \"translate(\" + x + \"px, \" + y + \"px)\",\n ...(getDPR(elements.floating) >= 1.5 && {\n willChange: 'transform'\n })\n };\n }\n return {\n position: strategy,\n left: x,\n top: y\n };\n }, [strategy, transform, elements.floating, data.x, data.y]);\n return React.useMemo(() => ({\n ...data,\n update,\n refs,\n elements,\n floatingStyles\n }), [data, update, refs, elements, floatingStyles]);\n}\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * This wraps the core `arrow` middleware to allow React refs as the element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow$1 = options => {\n function isRef(value) {\n return {}.hasOwnProperty.call(value, 'current');\n }\n return {\n name: 'arrow',\n options,\n fn(state) {\n const {\n element,\n padding\n } = typeof options === 'function' ? options(state) : options;\n if (element && isRef(element)) {\n if (element.current != null) {\n return arrow$2({\n element: element.current,\n padding\n }).fn(state);\n }\n return {};\n }\n if (element) {\n return arrow$2({\n element,\n padding\n }).fn(state);\n }\n return {};\n }\n };\n};\n\n/**\n * Modifies the placement by translating the floating element along the\n * specified axes.\n * A number (shorthand for `mainAxis` or distance), or an axes configuration\n * object may be passed.\n * @see https://floating-ui.com/docs/offset\n */\nconst offset = (options, deps) => ({\n ...offset$1(options),\n options: [options, deps]\n});\n\n/**\n * Optimizes the visibility of the floating element by shifting it in order to\n * keep it in view when it will overflow the clipping boundary.\n * @see https://floating-ui.com/docs/shift\n */\nconst shift = (options, deps) => ({\n ...shift$1(options),\n options: [options, deps]\n});\n\n/**\n * Built-in `limiter` that will stop `shift()` at a certain point.\n */\nconst limitShift = (options, deps) => ({\n ...limitShift$1(options),\n options: [options, deps]\n});\n\n/**\n * Optimizes the visibility of the floating element by flipping the `placement`\n * in order to keep it in view when the preferred placement(s) will overflow the\n * clipping boundary. Alternative to `autoPlacement`.\n * @see https://floating-ui.com/docs/flip\n */\nconst flip = (options, deps) => ({\n ...flip$1(options),\n options: [options, deps]\n});\n\n/**\n * Provides data that allows you to change the size of the floating element —\n * for instance, prevent it from overflowing the clipping boundary or match the\n * width of the reference element.\n * @see https://floating-ui.com/docs/size\n */\nconst size = (options, deps) => ({\n ...size$1(options),\n options: [options, deps]\n});\n\n/**\n * Optimizes the visibility of the floating element by choosing the placement\n * that has the most space available automatically, without needing to specify a\n * preferred placement. Alternative to `flip`.\n * @see https://floating-ui.com/docs/autoPlacement\n */\nconst autoPlacement = (options, deps) => ({\n ...autoPlacement$1(options),\n options: [options, deps]\n});\n\n/**\n * Provides data to hide the floating element in applicable situations, such as\n * when it is not in the same clipping context as the reference element.\n * @see https://floating-ui.com/docs/hide\n */\nconst hide = (options, deps) => ({\n ...hide$1(options),\n options: [options, deps]\n});\n\n/**\n * Provides improved positioning for inline reference elements that can span\n * over multiple lines, such as hyperlinks or range selections.\n * @see https://floating-ui.com/docs/inline\n */\nconst inline = (options, deps) => ({\n ...inline$1(options),\n options: [options, deps]\n});\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * This wraps the core `arrow` middleware to allow React refs as the element.\n * @see https://floating-ui.com/docs/arrow\n */\nconst arrow = (options, deps) => ({\n ...arrow$1(options),\n options: [options, deps]\n});\n\nexport { arrow, autoPlacement, flip, hide, inline, limitShift, offset, shift, size, useFloating };\n","'use client';\n\nimport * as React from 'react';\nimport { getSide, getAlignment, getSideAxis } from '@floating-ui/utils';\nimport { ownerDocument } from '@base-ui-components/utils/owner';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { useLatestRef } from '@base-ui-components/utils/useLatestRef';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { autoUpdate, flip, limitShift, offset, shift, useFloating, size, hide } from \"../floating-ui-react/index.js\";\nimport { useDirection } from \"../direction-provider/DirectionContext.js\";\nimport { arrow } from \"../floating-ui-react/middleware/arrow.js\";\nfunction getLogicalSide(sideParam, renderedSide, isRtl) {\n const isLogicalSideParam = sideParam === 'inline-start' || sideParam === 'inline-end';\n const logicalRight = isRtl ? 'inline-start' : 'inline-end';\n const logicalLeft = isRtl ? 'inline-end' : 'inline-start';\n return {\n top: 'top',\n right: isLogicalSideParam ? logicalRight : 'right',\n bottom: 'bottom',\n left: isLogicalSideParam ? logicalLeft : 'left'\n }[renderedSide];\n}\nfunction getOffsetData(state, sideParam, isRtl) {\n const {\n rects,\n placement\n } = state;\n const data = {\n side: getLogicalSide(sideParam, getSide(placement), isRtl),\n align: getAlignment(placement) || 'center',\n anchor: {\n width: rects.reference.width,\n height: rects.reference.height\n },\n positioner: {\n width: rects.floating.width,\n height: rects.floating.height\n }\n };\n return data;\n}\n/**\n * Provides standardized anchor positioning behavior for floating elements. Wraps Floating UI's\n * `useFloating` hook.\n */\nexport function useAnchorPositioning(params) {\n const {\n // Public parameters\n anchor,\n positionMethod = 'absolute',\n side: sideParam = 'bottom',\n sideOffset = 0,\n align = 'center',\n alignOffset = 0,\n collisionBoundary,\n collisionPadding = 5,\n sticky = false,\n arrowPadding = 5,\n trackAnchor = true,\n // Private parameters\n keepMounted = false,\n floatingRootContext,\n mounted,\n collisionAvoidance,\n shiftCrossAxis = false,\n nodeId,\n adaptiveOrigin\n } = params;\n const collisionAvoidanceSide = collisionAvoidance.side || 'flip';\n const collisionAvoidanceAlign = collisionAvoidance.align || 'flip';\n const collisionAvoidanceFallbackAxisSide = collisionAvoidance.fallbackAxisSide || 'end';\n const anchorFn = typeof anchor === 'function' ? anchor : undefined;\n const anchorFnCallback = useEventCallback(anchorFn);\n const anchorDep = anchorFn ? anchorFnCallback : anchor;\n const anchorValueRef = useLatestRef(anchor);\n const direction = useDirection();\n const isRtl = direction === 'rtl';\n const side = {\n top: 'top',\n right: 'right',\n bottom: 'bottom',\n left: 'left',\n 'inline-end': isRtl ? 'left' : 'right',\n 'inline-start': isRtl ? 'right' : 'left'\n }[sideParam];\n const placement = align === 'center' ? side : `${side}-${align}`;\n const commonCollisionProps = {\n boundary: collisionBoundary === 'clipping-ancestors' ? 'clippingAncestors' : collisionBoundary,\n padding: collisionPadding\n };\n\n // Using a ref assumes that the arrow element is always present in the DOM for the lifetime of the\n // popup. If this assumption ends up being false, we can switch to state to manage the arrow's\n // presence.\n const arrowRef = React.useRef(null);\n\n // Keep these reactive if they're not functions\n const sideOffsetRef = useLatestRef(sideOffset);\n const alignOffsetRef = useLatestRef(alignOffset);\n const sideOffsetDep = typeof sideOffset !== 'function' ? sideOffset : 0;\n const alignOffsetDep = typeof alignOffset !== 'function' ? alignOffset : 0;\n const middleware = [offset(state => {\n const data = getOffsetData(state, sideParam, isRtl);\n const sideAxis = typeof sideOffsetRef.current === 'function' ? sideOffsetRef.current(data) : sideOffsetRef.current;\n const alignAxis = typeof alignOffsetRef.current === 'function' ? alignOffsetRef.current(data) : alignOffsetRef.current;\n return {\n mainAxis: sideAxis,\n crossAxis: alignAxis,\n alignmentAxis: alignAxis\n };\n }, [sideOffsetDep, alignOffsetDep, isRtl, sideParam])];\n const shiftDisabled = collisionAvoidanceAlign === 'none' && collisionAvoidanceSide !== 'shift';\n const crossAxisShiftEnabled = !shiftDisabled && (sticky || shiftCrossAxis || collisionAvoidanceSide === 'shift');\n const flipMiddleware = collisionAvoidanceSide === 'none' ? null : flip({\n ...commonCollisionProps,\n mainAxis: !shiftCrossAxis && collisionAvoidanceSide === 'flip',\n crossAxis: collisionAvoidanceAlign === 'flip' ? 'alignment' : false,\n fallbackAxisSideDirection: collisionAvoidanceFallbackAxisSide\n });\n const shiftMiddleware = shiftDisabled ? null : shift(data => {\n const html = ownerDocument(data.elements.floating).documentElement;\n return {\n ...commonCollisionProps,\n // Use the Layout Viewport to avoid shifting around when pinch-zooming\n // for context menus.\n rootBoundary: shiftCrossAxis ? {\n x: 0,\n y: 0,\n width: html.clientWidth,\n height: html.clientHeight\n } : undefined,\n mainAxis: collisionAvoidanceAlign !== 'none',\n crossAxis: crossAxisShiftEnabled,\n limiter: sticky || shiftCrossAxis ? undefined : limitShift(() => {\n if (!arrowRef.current) {\n return {};\n }\n const {\n height\n } = arrowRef.current.getBoundingClientRect();\n return {\n offset: height / 2 + (typeof collisionPadding === 'number' ? collisionPadding : 0)\n };\n })\n };\n }, [commonCollisionProps, sticky, shiftCrossAxis, collisionPadding, collisionAvoidanceAlign]);\n\n // https://floating-ui.com/docs/flip#combining-with-shift\n if (collisionAvoidanceSide === 'shift' || collisionAvoidanceAlign === 'shift' || align === 'center') {\n middleware.push(shiftMiddleware, flipMiddleware);\n } else {\n middleware.push(flipMiddleware, shiftMiddleware);\n }\n middleware.push(size({\n ...commonCollisionProps,\n apply({\n elements: {\n floating\n },\n rects: {\n reference\n },\n availableWidth,\n availableHeight\n }) {\n Object.entries({\n '--available-width': `${availableWidth}px`,\n '--available-height': `${availableHeight}px`,\n '--anchor-width': `${reference.width}px`,\n '--anchor-height': `${reference.height}px`\n }).forEach(([key, value]) => {\n floating.style.setProperty(key, value);\n });\n }\n }), arrow(() => ({\n // `transform-origin` calculations rely on an element existing. If the arrow hasn't been set,\n // we'll create a fake element.\n element: arrowRef.current || document.createElement('div'),\n padding: arrowPadding,\n offsetParent: 'floating'\n }), [arrowPadding]), hide(), {\n name: 'transformOrigin',\n fn(state) {\n const {\n elements,\n middlewareData,\n placement: renderedPlacement,\n rects,\n y\n } = state;\n const currentRenderedSide = getSide(renderedPlacement);\n const currentRenderedAxis = getSideAxis(currentRenderedSide);\n const arrowEl = arrowRef.current;\n const arrowX = middlewareData.arrow?.x || 0;\n const arrowY = middlewareData.arrow?.y || 0;\n const arrowWidth = arrowEl?.clientWidth || 0;\n const arrowHeight = arrowEl?.clientHeight || 0;\n const transformX = arrowX + arrowWidth / 2;\n const transformY = arrowY + arrowHeight / 2;\n const shiftY = Math.abs(middlewareData.shift?.y || 0);\n const halfAnchorHeight = rects.reference.height / 2;\n const isOverlappingAnchor = shiftY > (typeof sideOffset === 'function' ? sideOffset(getOffsetData(state, sideParam, isRtl)) : sideOffset);\n const adjacentTransformOrigin = {\n top: `${transformX}px calc(100% + ${sideOffset}px)`,\n bottom: `${transformX}px ${-sideOffset}px`,\n left: `calc(100% + ${sideOffset}px) ${transformY}px`,\n right: `${-sideOffset}px ${transformY}px`\n }[currentRenderedSide];\n const overlapTransformOrigin = `${transformX}px ${rects.reference.y + halfAnchorHeight - y}px`;\n elements.floating.style.setProperty('--transform-origin', crossAxisShiftEnabled && currentRenderedAxis === 'y' && isOverlappingAnchor ? overlapTransformOrigin : adjacentTransformOrigin);\n return {};\n }\n }, adaptiveOrigin);\n\n // Ensure positioning doesn't run initially for `keepMounted` elements that\n // aren't initially open.\n let rootContext = floatingRootContext;\n if (!mounted && floatingRootContext) {\n rootContext = {\n ...floatingRootContext,\n elements: {\n reference: null,\n floating: null,\n domReference: null\n }\n };\n }\n const autoUpdateOptions = React.useMemo(() => ({\n elementResize: trackAnchor && typeof ResizeObserver !== 'undefined',\n layoutShift: trackAnchor && typeof IntersectionObserver !== 'undefined'\n }), [trackAnchor]);\n const {\n refs,\n elements,\n x,\n y,\n middlewareData,\n update,\n placement: renderedPlacement,\n context,\n isPositioned,\n floatingStyles: originalFloatingStyles\n } = useFloating({\n rootContext,\n placement,\n middleware,\n strategy: positionMethod,\n whileElementsMounted: keepMounted ? undefined : (...args) => autoUpdate(...args, autoUpdateOptions),\n nodeId\n });\n const {\n sideX,\n sideY\n } = middlewareData.adaptiveOrigin || {};\n const floatingStyles = React.useMemo(() => adaptiveOrigin ? {\n position: positionMethod,\n [sideX]: `${x}px`,\n [sideY]: `${y}px`\n } : originalFloatingStyles, [adaptiveOrigin, sideX, sideY, positionMethod, x, y, originalFloatingStyles]);\n const registeredPositionReferenceRef = React.useRef(null);\n useIsoLayoutEffect(() => {\n if (!mounted) {\n return;\n }\n const anchorValue = anchorValueRef.current;\n const resolvedAnchor = typeof anchorValue === 'function' ? anchorValue() : anchorValue;\n const unwrappedElement = (isRef(resolvedAnchor) ? resolvedAnchor.current : resolvedAnchor) || null;\n const finalAnchor = unwrappedElement || null;\n if (finalAnchor !== registeredPositionReferenceRef.current) {\n refs.setPositionReference(finalAnchor);\n registeredPositionReferenceRef.current = finalAnchor;\n }\n }, [mounted, refs, anchorDep, anchorValueRef]);\n React.useEffect(() => {\n if (!mounted) {\n return;\n }\n const anchorValue = anchorValueRef.current;\n\n // Refs from parent components are set after useLayoutEffect runs and are available in useEffect.\n // Therefore, if the anchor is a ref, we need to update the position reference in useEffect.\n if (typeof anchorValue === 'function') {\n return;\n }\n if (isRef(anchorValue) && anchorValue.current !== registeredPositionReferenceRef.current) {\n refs.setPositionReference(anchorValue.current);\n registeredPositionReferenceRef.current = anchorValue.current;\n }\n }, [mounted, refs, anchorDep, anchorValueRef]);\n React.useEffect(() => {\n if (keepMounted && mounted && elements.domReference && elements.floating) {\n return autoUpdate(elements.domReference, elements.floating, update, autoUpdateOptions);\n }\n return undefined;\n }, [keepMounted, mounted, elements, update, autoUpdateOptions]);\n const renderedSide = getSide(renderedPlacement);\n const logicalRenderedSide = getLogicalSide(sideParam, renderedSide, isRtl);\n const renderedAlign = getAlignment(renderedPlacement) || 'center';\n const anchorHidden = Boolean(middlewareData.hide?.referenceHidden);\n const arrowStyles = React.useMemo(() => ({\n position: 'absolute',\n top: middlewareData.arrow?.y,\n left: middlewareData.arrow?.x\n }), [middlewareData.arrow]);\n const arrowUncentered = middlewareData.arrow?.centerOffset !== 0;\n return React.useMemo(() => ({\n positionerStyles: floatingStyles,\n arrowStyles,\n arrowRef,\n arrowUncentered,\n side: logicalRenderedSide,\n align: renderedAlign,\n anchorHidden,\n refs,\n context,\n isPositioned,\n update\n }), [floatingStyles, arrowStyles, arrowRef, arrowUncentered, logicalRenderedSide, renderedAlign, anchorHidden, refs, context, isPositioned, update]);\n}\nfunction isRef(param) {\n return param != null && 'current' in param;\n}","import { clamp, evaluate, getAlignment, getAlignmentAxis, getAxisLength, getPaddingObject } from '@floating-ui/utils';\n/**\n * Fork of the original `arrow` middleware from Floating UI that allows\n * configuring the offset parent.\n */\nexport const baseArrow = options => ({\n name: 'arrow',\n options,\n async fn(state) {\n const {\n x,\n y,\n placement,\n rects,\n platform,\n elements,\n middlewareData\n } = state;\n // Since `element` is required, we don't Partial<> the type.\n const {\n element,\n padding = 0,\n offsetParent = 'real'\n } = evaluate(options, state) || {};\n if (element == null) {\n return {};\n }\n const paddingObject = getPaddingObject(padding);\n const coords = {\n x,\n y\n };\n const axis = getAlignmentAxis(placement);\n const length = getAxisLength(axis);\n const arrowDimensions = await platform.getDimensions(element);\n const isYAxis = axis === 'y';\n const minProp = isYAxis ? 'top' : 'left';\n const maxProp = isYAxis ? 'bottom' : 'right';\n const clientProp = isYAxis ? 'clientHeight' : 'clientWidth';\n const endDiff = rects.reference[length] + rects.reference[axis] - coords[axis] - rects.floating[length];\n const startDiff = coords[axis] - rects.reference[axis];\n const arrowOffsetParent = offsetParent === 'real' ? await platform.getOffsetParent?.(element) : elements.floating;\n let clientSize = elements.floating[clientProp] || rects.floating[length];\n\n // DOM platform can return `window` as the `offsetParent`.\n if (!clientSize || !(await platform.isElement?.(arrowOffsetParent))) {\n clientSize = elements.floating[clientProp] || rects.floating[length];\n }\n const centerToReference = endDiff / 2 - startDiff / 2;\n\n // If the padding is large enough that it causes the arrow to no longer be\n // centered, modify the padding so that it is centered.\n const largestPossiblePadding = clientSize / 2 - arrowDimensions[length] / 2 - 1;\n const minPadding = Math.min(paddingObject[minProp], largestPossiblePadding);\n const maxPadding = Math.min(paddingObject[maxProp], largestPossiblePadding);\n\n // Make sure the arrow doesn't overflow the floating element if the center\n // point is outside the floating element's bounds.\n const min = minPadding;\n const max = clientSize - arrowDimensions[length] - maxPadding;\n const center = clientSize / 2 - arrowDimensions[length] / 2 + centerToReference;\n const offset = clamp(min, center, max);\n\n // If the reference is small enough that the arrow's padding causes it to\n // to point to nothing for an aligned placement, adjust the offset of the\n // floating element itself. To ensure `shift()` continues to take action,\n // a single reset is performed when this is true.\n const shouldAddOffset = !middlewareData.arrow && getAlignment(placement) != null && center !== offset && rects.reference[length] / 2 - (center < min ? minPadding : maxPadding) - arrowDimensions[length] / 2 < 0;\n // eslint-disable-next-line no-nested-ternary\n const alignmentOffset = shouldAddOffset ? center < min ? center - min : center - max : 0;\n return {\n [axis]: coords[axis] + alignmentOffset,\n data: {\n [axis]: offset,\n centerOffset: center - offset - alignmentOffset,\n ...(shouldAddOffset && {\n alignmentOffset\n })\n },\n reset: shouldAddOffset\n };\n }\n});\n\n/**\n * Provides data to position an inner element of the floating element so that it\n * appears centered to the reference element.\n * This wraps the core `arrow` middleware to allow React refs as the element.\n * @see https://floating-ui.com/docs/arrow\n */\nexport const arrow = (options, deps) => ({\n ...baseArrow(options),\n options: [options, deps]\n});","import * as React from 'react';\nimport { useFloating as usePosition } from '@floating-ui/react-dom';\nimport { isElement } from '@floating-ui/utils/dom';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { useFloatingTree } from \"../components/FloatingTree.js\";\nimport { useFloatingRootContext } from \"./useFloatingRootContext.js\";\n\n/**\n * Provides data to position a floating element and context to add interactions.\n * @see https://floating-ui.com/docs/useFloating\n */\nexport function useFloating(options = {}) {\n const {\n nodeId\n } = options;\n const internalRootContext = useFloatingRootContext({\n ...options,\n elements: {\n reference: null,\n floating: null,\n ...options.elements\n }\n });\n const rootContext = options.rootContext || internalRootContext;\n const computedElements = rootContext.elements;\n const [domReferenceState, setDomReference] = React.useState(null);\n const [positionReference, setPositionReferenceRaw] = React.useState(null);\n const optionDomReference = computedElements?.domReference;\n const domReference = optionDomReference || domReferenceState;\n const domReferenceRef = React.useRef(null);\n const tree = useFloatingTree();\n useIsoLayoutEffect(() => {\n if (domReference) {\n domReferenceRef.current = domReference;\n }\n }, [domReference]);\n const position = usePosition({\n ...options,\n elements: {\n ...computedElements,\n ...(positionReference && {\n reference: positionReference\n })\n }\n });\n const setPositionReference = React.useCallback(node => {\n const computedPositionReference = isElement(node) ? {\n getBoundingClientRect: () => node.getBoundingClientRect(),\n getClientRects: () => node.getClientRects(),\n contextElement: node\n } : node;\n // Store the positionReference in state if the DOM reference is specified externally via the\n // `elements.reference` option. This ensures that it won't be overridden on future renders.\n setPositionReferenceRaw(computedPositionReference);\n position.refs.setReference(computedPositionReference);\n }, [position.refs]);\n const setReference = React.useCallback(node => {\n if (isElement(node) || node === null) {\n domReferenceRef.current = node;\n setDomReference(node);\n }\n\n // Backwards-compatibility for passing a virtual element to `reference`\n // after it has set the DOM reference.\n if (isElement(position.refs.reference.current) || position.refs.reference.current === null ||\n // Don't allow setting virtual elements using the old technique back to\n // `null` to support `positionReference` + an unstable `reference`\n // callback ref.\n node !== null && !isElement(node)) {\n position.refs.setReference(node);\n }\n }, [position.refs]);\n const refs = React.useMemo(() => ({\n ...position.refs,\n setReference,\n setPositionReference,\n domReference: domReferenceRef\n }), [position.refs, setReference, setPositionReference]);\n const elements = React.useMemo(() => ({\n ...position.elements,\n domReference\n }), [position.elements, domReference]);\n const context = React.useMemo(() => ({\n ...position,\n ...rootContext,\n refs,\n elements,\n nodeId\n }), [position, refs, elements, nodeId, rootContext]);\n useIsoLayoutEffect(() => {\n rootContext.dataRef.current.floatingContext = context;\n const node = tree?.nodesRef.current.find(n => n.id === nodeId);\n if (node) {\n node.context = context;\n }\n });\n return React.useMemo(() => ({\n ...position,\n context,\n refs,\n elements\n }), [position, refs, elements, context]);\n}","/* eslint-disable no-bitwise */\n'use client';\n\nimport * as React from 'react';\nimport { useRefWithInit } from '@base-ui-components/utils/useRefWithInit';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { CompositeListContext } from \"./CompositeListContext.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\n/**\n * Provides context for a list of items in a composite component.\n * @internal\n */\nexport function CompositeList(props) {\n const {\n children,\n elementsRef,\n labelsRef,\n onMapChange\n } = props;\n const nextIndexRef = React.useRef(0);\n const listeners = useRefWithInit(createListeners).current;\n\n // We use a stable `map` to avoid O(n^2) re-allocation costs for large lists.\n // `mapTick` is our re-render trigger mechanism. We also need to update the\n // elements and label refs, but there's a lot of async work going on and sometimes\n // the effect that handles `onMapChange` gets called after those refs have been\n // filled, and we don't want to lose those values by setting their lengths to `0`.\n // We also need to have them at the proper length because floating-ui uses that\n // information for list navigation.\n\n const map = useRefWithInit(createMap).current;\n const [mapTick, setMapTick] = React.useState(0);\n const lastTickRef = React.useRef(mapTick);\n const register = useEventCallback((node, metadata) => {\n map.set(node, metadata ?? null);\n lastTickRef.current += 1;\n setMapTick(lastTickRef.current);\n });\n const unregister = useEventCallback(node => {\n map.delete(node);\n lastTickRef.current += 1;\n setMapTick(lastTickRef.current);\n });\n const sortedMap = React.useMemo(() => {\n // `mapTick` is the `useMemo` trigger as `map` is stable.\n disableEslintWarning(mapTick);\n const newMap = new Map();\n const sortedNodes = Array.from(map.keys()).sort(sortByDocumentPosition);\n sortedNodes.forEach((node, index) => {\n const metadata = map.get(node) ?? {};\n newMap.set(node, {\n ...metadata,\n index\n });\n });\n return newMap;\n }, [map, mapTick]);\n useIsoLayoutEffect(() => {\n const shouldUpdateLengths = lastTickRef.current === mapTick;\n if (shouldUpdateLengths) {\n if (elementsRef.current.length !== sortedMap.size) {\n elementsRef.current.length = sortedMap.size;\n }\n if (labelsRef && labelsRef.current.length !== sortedMap.size) {\n labelsRef.current.length = sortedMap.size;\n }\n }\n onMapChange?.(sortedMap);\n }, [onMapChange, sortedMap, elementsRef, labelsRef, mapTick, lastTickRef]);\n const subscribeMapChange = useEventCallback(fn => {\n listeners.add(fn);\n return () => {\n listeners.delete(fn);\n };\n });\n useIsoLayoutEffect(() => {\n listeners.forEach(l => l(sortedMap));\n }, [listeners, sortedMap]);\n const contextValue = React.useMemo(() => ({\n register,\n unregister,\n subscribeMapChange,\n elementsRef,\n labelsRef,\n nextIndexRef\n }), [register, unregister, subscribeMapChange, elementsRef, labelsRef, nextIndexRef]);\n return /*#__PURE__*/_jsx(CompositeListContext.Provider, {\n value: contextValue,\n children: children\n });\n}\nfunction createMap() {\n return new Map();\n}\nfunction createListeners() {\n return new Set();\n}\nfunction sortByDocumentPosition(a, b) {\n const position = a.compareDocumentPosition(b);\n if (position & Node.DOCUMENT_POSITION_FOLLOWING || position & Node.DOCUMENT_POSITION_CONTAINED_BY) {\n return -1;\n }\n if (position & Node.DOCUMENT_POSITION_PRECEDING || position & Node.DOCUMENT_POSITION_CONTAINS) {\n return 1;\n }\n return 0;\n}\nfunction disableEslintWarning(_) {}","import * as React from 'react';\n\n/**\n * @internal\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport const InternalBackdrop = /*#__PURE__*/React.forwardRef(function InternalBackdrop(props, ref) {\n const {\n cutout,\n ...otherProps\n } = props;\n let clipPath;\n if (cutout) {\n const rect = cutout?.getBoundingClientRect();\n clipPath = `polygon(\n 0% 0%,\n 100% 0%,\n 100% 100%,\n 0% 100%,\n 0% 0%,\n ${rect.left}px ${rect.top}px,\n ${rect.left}px ${rect.bottom}px,\n ${rect.right}px ${rect.bottom}px,\n ${rect.right}px ${rect.top}px,\n ${rect.left}px ${rect.top}px\n )`;\n }\n return /*#__PURE__*/_jsx(\"div\", {\n ref: ref,\n role: \"presentation\"\n // Ensures Floating UI's outside press detection runs, as it considers\n // it an element that existed when the popup rendered.\n ,\n \"data-base-ui-inert\": \"\",\n ...otherProps,\n style: {\n position: 'fixed',\n inset: 0,\n userSelect: 'none',\n WebkitUserSelect: 'none',\n clipPath\n }\n });\n});\nif (process.env.NODE_ENV !== \"production\") InternalBackdrop.displayName = \"InternalBackdrop\";","'use client';\n\nimport * as React from 'react';\nimport { inertValue } from '@base-ui-components/utils/inertValue';\nimport { FloatingNode, useFloatingNodeId, useFloatingParentNodeId, useFloatingTree } from \"../../floating-ui-react/index.js\";\nimport { MenuPositionerContext } from \"./MenuPositionerContext.js\";\nimport { useMenuRootContext } from \"../root/MenuRootContext.js\";\nimport { useAnchorPositioning } from \"../../utils/useAnchorPositioning.js\";\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { popupStateMapping } from \"../../utils/popupStateMapping.js\";\nimport { CompositeList } from \"../../composite/list/CompositeList.js\";\nimport { InternalBackdrop } from \"../../utils/InternalBackdrop.js\";\nimport { useMenuPortalContext } from \"../portal/MenuPortalContext.js\";\nimport { DROPDOWN_COLLISION_AVOIDANCE } from \"../../utils/constants.js\";\nimport { useContextMenuRootContext } from \"../../context-menu/root/ContextMenuRootContext.js\";\n\n/**\n * Positions the menu popup against the trigger.\n * Renders a `<div>` element.\n *\n * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)\n */\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nexport const MenuPositioner = /*#__PURE__*/React.forwardRef(function MenuPositioner(componentProps, forwardedRef) {\n const {\n anchor: anchorProp,\n positionMethod: positionMethodProp = 'absolute',\n className,\n render,\n side,\n align: alignProp,\n sideOffset: sideOffsetProp = 0,\n alignOffset: alignOffsetProp = 0,\n collisionBoundary = 'clipping-ancestors',\n collisionPadding = 5,\n arrowPadding = 5,\n sticky = false,\n trackAnchor = true,\n collisionAvoidance = DROPDOWN_COLLISION_AVOIDANCE,\n ...elementProps\n } = componentProps;\n const {\n open,\n setOpen,\n floatingRootContext,\n setPositionerElement,\n itemDomElements,\n itemLabels,\n mounted,\n modal,\n lastOpenChangeReason,\n parent,\n setHoverEnabled,\n triggerElement\n } = useMenuRootContext();\n const keepMounted = useMenuPortalContext();\n const nodeId = useFloatingNodeId();\n const parentNodeId = useFloatingParentNodeId();\n const contextMenuContext = useContextMenuRootContext(true);\n let anchor = anchorProp;\n let sideOffset = sideOffsetProp;\n let alignOffset = alignOffsetProp;\n let align = alignProp;\n if (parent.type === 'context-menu') {\n anchor = parent.context?.anchor ?? anchorProp;\n align = componentProps.align ?? 'start';\n alignOffset = componentProps.alignOffset ?? 2;\n sideOffset = componentProps.sideOffset ?? -5;\n }\n let computedSide = side;\n let computedAlign = align;\n if (parent.type === 'menu') {\n computedSide = computedSide ?? 'inline-end';\n computedAlign = computedAlign ?? 'start';\n } else if (parent.type === 'menubar') {\n computedSide = computedSide ?? 'bottom';\n computedAlign = computedAlign ?? 'start';\n }\n const contextMenu = parent.type === 'context-menu';\n const positioner = useAnchorPositioning({\n anchor,\n floatingRootContext,\n positionMethod: contextMenuContext ? 'fixed' : positionMethodProp,\n mounted,\n side: computedSide,\n sideOffset,\n align: computedAlign,\n alignOffset,\n arrowPadding: contextMenu ? 0 : arrowPadding,\n collisionBoundary,\n collisionPadding,\n sticky,\n nodeId,\n keepMounted,\n trackAnchor,\n collisionAvoidance,\n shiftCrossAxis: contextMenu\n });\n const {\n events: menuEvents\n } = useFloatingTree();\n const positionerProps = React.useMemo(() => {\n const hiddenStyles = {};\n if (!open) {\n hiddenStyles.pointerEvents = 'none';\n }\n return {\n role: 'presentation',\n hidden: !mounted,\n style: {\n ...positioner.positionerStyles,\n ...hiddenStyles\n }\n };\n }, [open, mounted, positioner.positionerStyles]);\n React.useEffect(() => {\n function onMenuOpenChange(event) {\n if (event.open) {\n if (event.parentNodeId === nodeId) {\n setHoverEnabled(false);\n }\n if (event.nodeId !== nodeId && event.parentNodeId === parentNodeId) {\n setOpen(false, undefined, 'sibling-open');\n }\n } else if (event.parentNodeId === nodeId) {\n setHoverEnabled(true);\n }\n }\n menuEvents.on('openchange', onMenuOpenChange);\n return () => {\n menuEvents.off('openchange', onMenuOpenChange);\n };\n }, [menuEvents, nodeId, parentNodeId, setOpen, setHoverEnabled]);\n React.useEffect(() => {\n menuEvents.emit('openchange', {\n open,\n nodeId,\n parentNodeId\n });\n }, [menuEvents, open, nodeId, parentNodeId]);\n const state = React.useMemo(() => ({\n open,\n side: positioner.side,\n align: positioner.align,\n anchorHidden: positioner.anchorHidden,\n nested: parent.type === 'menu'\n }), [open, positioner.side, positioner.align, positioner.anchorHidden, parent.type]);\n const contextValue = React.useMemo(() => ({\n side: positioner.side,\n align: positioner.align,\n arrowRef: positioner.arrowRef,\n arrowUncentered: positioner.arrowUncentered,\n arrowStyles: positioner.arrowStyles,\n floatingContext: positioner.context\n }), [positioner.side, positioner.align, positioner.arrowRef, positioner.arrowUncentered, positioner.arrowStyles, positioner.context]);\n const element = useRenderElement('div', componentProps, {\n state,\n customStyleHookMapping: popupStateMapping,\n ref: [forwardedRef, setPositionerElement],\n props: {\n ...positionerProps,\n ...elementProps\n }\n });\n const shouldRenderBackdrop = mounted && parent.type !== 'menu' && (parent.type !== 'menubar' && modal && lastOpenChangeReason !== 'trigger-hover' || parent.type === 'menubar' && parent.context.modal);\n\n // cuts a hole in the backdrop to allow pointer interaction with the menubar or dropdown menu trigger element\n let backdropCutout = null;\n if (parent.type === 'menubar') {\n backdropCutout = parent.context.contentElement;\n } else if (parent.type === undefined) {\n backdropCutout = triggerElement;\n }\n return /*#__PURE__*/_jsxs(MenuPositionerContext.Provider, {\n value: contextValue,\n children: [shouldRenderBackdrop && /*#__PURE__*/_jsx(InternalBackdrop, {\n ref: parent.type === 'context-menu' || parent.type === 'nested-context-menu' ? parent.context.internalBackdropRef : null,\n inert: inertValue(!open),\n cutout: backdropCutout\n }), /*#__PURE__*/_jsx(FloatingNode, {\n id: nodeId,\n children: /*#__PURE__*/_jsx(CompositeList, {\n elementsRef: itemDomElements,\n labelsRef: itemLabels,\n children: element\n })\n })]\n });\n});\nif (process.env.NODE_ENV !== \"production\") MenuPositioner.displayName = \"MenuPositioner\";","import { isReactVersionAtLeast } from \"./reactVersion.js\";\nexport function inertValue(value) {\n if (isReactVersionAtLeast(19)) {\n return value;\n }\n // compatibility with React < 19\n return value ? 'true' : undefined;\n}","// Modified to add conditional `aria-hidden` support:\n// https://github.com/theKashey/aria-hidden/blob/9220c8f4a4fd35f63bee5510a9f41a37264382d4/src/index.ts\nimport { getNodeName } from '@floating-ui/utils/dom';\nimport { getDocument } from \"./element.js\";\nconst counters = {\n inert: new WeakMap(),\n 'aria-hidden': new WeakMap(),\n none: new WeakMap()\n};\nfunction getCounterMap(control) {\n if (control === 'inert') {\n return counters.inert;\n }\n if (control === 'aria-hidden') {\n return counters['aria-hidden'];\n }\n return counters.none;\n}\nlet uncontrolledElementsSet = new WeakSet();\nlet markerMap = {};\nlet lockCount = 0;\nexport const supportsInert = () => typeof HTMLElement !== 'undefined' && 'inert' in HTMLElement.prototype;\nconst unwrapHost = node => node && (node.host || unwrapHost(node.parentNode));\nconst correctElements = (parent, targets) => targets.map(target => {\n if (parent.contains(target)) {\n return target;\n }\n const correctedTarget = unwrapHost(target);\n if (parent.contains(correctedTarget)) {\n return correctedTarget;\n }\n return null;\n}).filter(x => x != null);\nfunction applyAttributeToOthers(uncorrectedAvoidElements, body, ariaHidden, inert) {\n const markerName = 'data-base-ui-inert';\n // eslint-disable-next-line no-nested-ternary\n const controlAttribute = inert ? 'inert' : ariaHidden ? 'aria-hidden' : null;\n const avoidElements = correctElements(body, uncorrectedAvoidElements);\n const elementsToKeep = new Set();\n const elementsToStop = new Set(avoidElements);\n const hiddenElements = [];\n if (!markerMap[markerName]) {\n markerMap[markerName] = new WeakMap();\n }\n const markerCounter = markerMap[markerName];\n avoidElements.forEach(keep);\n deep(body);\n elementsToKeep.clear();\n function keep(el) {\n if (!el || elementsToKeep.has(el)) {\n return;\n }\n elementsToKeep.add(el);\n if (el.parentNode) {\n keep(el.parentNode);\n }\n }\n function deep(parent) {\n if (!parent || elementsToStop.has(parent)) {\n return;\n }\n [].forEach.call(parent.children, node => {\n if (getNodeName(node) === 'script') {\n return;\n }\n if (elementsToKeep.has(node)) {\n deep(node);\n } else {\n const attr = controlAttribute ? node.getAttribute(controlAttribute) : null;\n const alreadyHidden = attr !== null && attr !== 'false';\n const counterMap = getCounterMap(controlAttribute);\n const counterValue = (counterMap.get(node) || 0) + 1;\n const markerValue = (markerCounter.get(node) || 0) + 1;\n counterMap.set(node, counterValue);\n markerCounter.set(node, markerValue);\n hiddenElements.push(node);\n if (counterValue === 1 && alreadyHidden) {\n uncontrolledElementsSet.add(node);\n }\n if (markerValue === 1) {\n node.setAttribute(markerName, '');\n }\n if (!alreadyHidden && controlAttribute) {\n node.setAttribute(controlAttribute, controlAttribute === 'inert' ? '' : 'true');\n }\n }\n });\n }\n lockCount += 1;\n return () => {\n hiddenElements.forEach(element => {\n const counterMap = getCounterMap(controlAttribute);\n const currentCounterValue = counterMap.get(element) || 0;\n const counterValue = currentCounterValue - 1;\n const markerValue = (markerCounter.get(element) || 0) - 1;\n counterMap.set(element, counterValue);\n markerCounter.set(element, markerValue);\n if (!counterValue) {\n if (!uncontrolledElementsSet.has(element) && controlAttribute) {\n element.removeAttribute(controlAttribute);\n }\n uncontrolledElementsSet.delete(element);\n }\n if (!markerValue) {\n element.removeAttribute(markerName);\n }\n });\n lockCount -= 1;\n if (!lockCount) {\n counters.inert = new WeakMap();\n counters['aria-hidden'] = new WeakMap();\n counters.none = new WeakMap();\n uncontrolledElementsSet = new WeakSet();\n markerMap = {};\n }\n };\n}\nexport function markOthers(avoidElements, ariaHidden = false, inert = false) {\n const body = getDocument(avoidElements[0]).body;\n return applyAttributeToOthers(avoidElements.concat(Array.from(body.querySelectorAll('[aria-live]'))), body, ariaHidden, inert);\n}","import * as React from 'react';\nimport { tabbable, isTabbable, focusable } from 'tabbable';\nimport { getNodeName, isHTMLElement } from '@floating-ui/utils/dom';\nimport { useMergedRefs } from '@base-ui-components/utils/useMergedRefs';\nimport { useLatestRef } from '@base-ui-components/utils/useLatestRef';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { visuallyHidden } from '@base-ui-components/utils/visuallyHidden';\nimport { useTimeout } from '@base-ui-components/utils/useTimeout';\nimport { FocusGuard } from \"../../utils/FocusGuard.js\";\nimport { activeElement, contains, getDocument, getTarget, isTypeableCombobox, isVirtualClick, isVirtualPointerEvent, stopEvent, getNodeAncestors, getNodeChildren, getFloatingFocusElement, getTabbableOptions, isOutsideEvent, getNextTabbable, getPreviousTabbable } from \"../utils.js\";\nimport { createAttribute } from \"../utils/createAttribute.js\";\nimport { enqueueFocus } from \"../utils/enqueueFocus.js\";\nimport { markOthers } from \"../utils/markOthers.js\";\nimport { usePortalContext } from \"./FloatingPortal.js\";\nimport { useFloatingTree } from \"./FloatingTree.js\";\nimport { CLICK_TRIGGER_IDENTIFIER } from \"../../utils/constants.js\";\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nconst LIST_LIMIT = 20;\nlet previouslyFocusedElements = [];\nfunction clearDisconnectedPreviouslyFocusedElements() {\n previouslyFocusedElements = previouslyFocusedElements.filter(el => el.isConnected);\n}\nfunction addPreviouslyFocusedElement(element) {\n clearDisconnectedPreviouslyFocusedElements();\n if (element && getNodeName(element) !== 'body') {\n previouslyFocusedElements.push(element);\n if (previouslyFocusedElements.length > LIST_LIMIT) {\n previouslyFocusedElements = previouslyFocusedElements.slice(-LIST_LIMIT);\n }\n }\n}\nfunction getPreviouslyFocusedElement() {\n clearDisconnectedPreviouslyFocusedElements();\n return previouslyFocusedElements[previouslyFocusedElements.length - 1];\n}\nfunction getFirstTabbableElement(container) {\n const tabbableOptions = getTabbableOptions();\n if (isTabbable(container, tabbableOptions)) {\n return container;\n }\n return tabbable(container, tabbableOptions)[0] || container;\n}\nfunction handleTabIndex(floatingFocusElement, orderRef) {\n if (!orderRef.current.includes('floating') && !floatingFocusElement.getAttribute('role')?.includes('dialog')) {\n return;\n }\n const options = getTabbableOptions();\n const focusableElements = focusable(floatingFocusElement, options);\n const tabbableContent = focusableElements.filter(element => {\n const dataTabIndex = element.getAttribute('data-tabindex') || '';\n return isTabbable(element, options) || element.hasAttribute('data-tabindex') && !dataTabIndex.startsWith('-');\n });\n const tabIndex = floatingFocusElement.getAttribute('tabindex');\n if (orderRef.current.includes('floating') || tabbableContent.length === 0) {\n if (tabIndex !== '0') {\n floatingFocusElement.setAttribute('tabindex', '0');\n }\n } else if (tabIndex !== '-1' || floatingFocusElement.hasAttribute('data-tabindex') && floatingFocusElement.getAttribute('data-tabindex') !== '-1') {\n floatingFocusElement.setAttribute('tabindex', '-1');\n floatingFocusElement.setAttribute('data-tabindex', '-1');\n }\n}\n/**\n * Provides focus management for the floating element.\n * @see https://floating-ui.com/docs/FloatingFocusManager\n * @internal\n */\nexport function FloatingFocusManager(props) {\n const {\n context,\n children,\n disabled = false,\n order = ['content'],\n initialFocus = 0,\n returnFocus = true,\n restoreFocus = false,\n modal = true,\n closeOnFocusOut = true,\n getInsideElements: getInsideElementsProp = () => []\n } = props;\n const {\n open,\n onOpenChange,\n events,\n dataRef,\n elements: {\n domReference,\n floating\n }\n } = context;\n const getNodeId = useEventCallback(() => dataRef.current.floatingContext?.nodeId);\n const getInsideElements = useEventCallback(getInsideElementsProp);\n const ignoreInitialFocus = typeof initialFocus === 'number' && initialFocus < 0;\n // If the reference is a combobox and is typeable (e.g. input/textarea),\n // there are different focus semantics. The guards should not be rendered, but\n // aria-hidden should be applied to all nodes still. Further, the visually\n // hidden dismiss button should only appear at the end of the list, not the\n // start.\n const isUntrappedTypeableCombobox = isTypeableCombobox(domReference) && ignoreInitialFocus;\n const orderRef = useLatestRef(order);\n const initialFocusRef = useLatestRef(initialFocus);\n const returnFocusRef = useLatestRef(returnFocus);\n const tree = useFloatingTree();\n const portalContext = usePortalContext();\n const startDismissButtonRef = React.useRef(null);\n const endDismissButtonRef = React.useRef(null);\n const preventReturnFocusRef = React.useRef(false);\n const isPointerDownRef = React.useRef(false);\n const tabbableIndexRef = React.useRef(-1);\n const blurTimeout = useTimeout();\n const isInsidePortal = portalContext != null;\n const floatingFocusElement = getFloatingFocusElement(floating);\n const getTabbableContent = useEventCallback((container = floatingFocusElement) => {\n return container ? tabbable(container, getTabbableOptions()) : [];\n });\n const getTabbableElements = useEventCallback(container => {\n const content = getTabbableContent(container);\n return orderRef.current.map(() => content).filter(Boolean).flat();\n });\n React.useEffect(() => {\n if (disabled) {\n return undefined;\n }\n if (!modal) {\n return undefined;\n }\n function onKeyDown(event) {\n if (event.key === 'Tab') {\n // The focus guards have nothing to focus, so we need to stop the event.\n if (contains(floatingFocusElement, activeElement(getDocument(floatingFocusElement))) && getTabbableContent().length === 0 && !isUntrappedTypeableCombobox) {\n stopEvent(event);\n }\n }\n }\n const doc = getDocument(floatingFocusElement);\n doc.addEventListener('keydown', onKeyDown);\n return () => {\n doc.removeEventListener('keydown', onKeyDown);\n };\n }, [disabled, domReference, floatingFocusElement, modal, orderRef, isUntrappedTypeableCombobox, getTabbableContent, getTabbableElements]);\n React.useEffect(() => {\n if (disabled) {\n return undefined;\n }\n if (!floating) {\n return undefined;\n }\n function handleFocusIn(event) {\n const target = getTarget(event);\n const tabbableContent = getTabbableContent();\n const tabbableIndex = tabbableContent.indexOf(target);\n if (tabbableIndex !== -1) {\n tabbableIndexRef.current = tabbableIndex;\n }\n }\n floating.addEventListener('focusin', handleFocusIn);\n return () => {\n floating.removeEventListener('focusin', handleFocusIn);\n };\n }, [disabled, floating, getTabbableContent]);\n React.useEffect(() => {\n if (disabled) {\n return undefined;\n }\n if (!closeOnFocusOut) {\n return undefined;\n }\n\n // In Safari, buttons lose focus when pressing them.\n function handlePointerDown() {\n isPointerDownRef.current = true;\n }\n function handleFocusOutside(event) {\n const relatedTarget = event.relatedTarget;\n const currentTarget = event.currentTarget;\n const target = getTarget(event);\n queueMicrotask(() => {\n const nodeId = getNodeId();\n const movedToUnrelatedNode = !(contains(domReference, relatedTarget) || contains(floating, relatedTarget) || contains(relatedTarget, floating) || contains(portalContext?.portalNode, relatedTarget) || relatedTarget?.hasAttribute(createAttribute('focus-guard')) || tree && (getNodeChildren(tree.nodesRef.current, nodeId).find(node => contains(node.context?.elements.floating, relatedTarget) || contains(node.context?.elements.domReference, relatedTarget)) || getNodeAncestors(tree.nodesRef.current, nodeId).find(node => [node.context?.elements.floating, getFloatingFocusElement(node.context?.elements.floating)].includes(relatedTarget) || node.context?.elements.domReference === relatedTarget)));\n if (currentTarget === domReference && floatingFocusElement) {\n handleTabIndex(floatingFocusElement, orderRef);\n }\n\n // Restore focus to the previous tabbable element index to prevent\n // focus from being lost outside the floating tree.\n if (restoreFocus && currentTarget !== domReference && !target?.isConnected && activeElement(getDocument(floatingFocusElement)) === getDocument(floatingFocusElement).body) {\n // Let `FloatingPortal` effect knows that focus is still inside the\n // floating tree.\n if (isHTMLElement(floatingFocusElement)) {\n floatingFocusElement.focus();\n }\n const prevTabbableIndex = tabbableIndexRef.current;\n const tabbableContent = getTabbableContent();\n const nodeToFocus = tabbableContent[prevTabbableIndex] || tabbableContent[tabbableContent.length - 1] || floatingFocusElement;\n if (isHTMLElement(nodeToFocus)) {\n nodeToFocus.focus();\n }\n }\n\n // https://github.com/floating-ui/floating-ui/issues/3060\n if (dataRef.current.insideReactTree) {\n dataRef.current.insideReactTree = false;\n return;\n }\n if (isPointerDownRef.current) {\n isPointerDownRef.current = false;\n return;\n }\n\n // Focus did not move inside the floating tree, and there are no tabbable\n // portal guards to handle closing.\n if ((isUntrappedTypeableCombobox ? true : !modal) && relatedTarget && movedToUnrelatedNode &&\n // Fix React 18 Strict Mode returnFocus due to double rendering.\n relatedTarget !== getPreviouslyFocusedElement()) {\n preventReturnFocusRef.current = true;\n onOpenChange(false, event, 'focus-out');\n }\n });\n }\n const shouldHandleBlurCapture = Boolean(!tree && portalContext);\n function markInsideReactTree() {\n dataRef.current.insideReactTree = true;\n blurTimeout.start(0, () => {\n dataRef.current.insideReactTree = false;\n });\n }\n if (floating && isHTMLElement(domReference)) {\n domReference.addEventListener('focusout', handleFocusOutside);\n domReference.addEventListener('pointerdown', handlePointerDown);\n floating.addEventListener('focusout', handleFocusOutside);\n if (shouldHandleBlurCapture) {\n floating.addEventListener('focusout', markInsideReactTree, true);\n }\n return () => {\n domReference.removeEventListener('focusout', handleFocusOutside);\n domReference.removeEventListener('pointerdown', handlePointerDown);\n floating.removeEventListener('focusout', handleFocusOutside);\n if (shouldHandleBlurCapture) {\n floating.removeEventListener('focusout', markInsideReactTree, true);\n }\n };\n }\n return undefined;\n }, [disabled, domReference, floating, floatingFocusElement, modal, tree, portalContext, onOpenChange, closeOnFocusOut, restoreFocus, getTabbableContent, isUntrappedTypeableCombobox, getNodeId, orderRef, dataRef, blurTimeout]);\n const beforeGuardRef = React.useRef(null);\n const afterGuardRef = React.useRef(null);\n const mergedBeforeGuardRef = useMergedRefs(beforeGuardRef, portalContext?.beforeInsideRef);\n const mergedAfterGuardRef = useMergedRefs(afterGuardRef, portalContext?.afterInsideRef);\n React.useEffect(() => {\n if (disabled) {\n return undefined;\n }\n if (!floating) {\n return undefined;\n }\n\n // Don't hide portals nested within the parent portal.\n const portalNodes = Array.from(portalContext?.portalNode?.querySelectorAll(`[${createAttribute('portal')}]`) || []);\n const ancestors = tree ? getNodeAncestors(tree.nodesRef.current, getNodeId()) : [];\n const rootAncestorComboboxDomReference = ancestors.find(node => isTypeableCombobox(node.context?.elements.domReference || null))?.context?.elements.domReference;\n const insideElements = [floating, rootAncestorComboboxDomReference, ...portalNodes, ...getInsideElements(), startDismissButtonRef.current, endDismissButtonRef.current, beforeGuardRef.current, afterGuardRef.current, portalContext?.beforeOutsideRef.current, portalContext?.afterOutsideRef.current, isUntrappedTypeableCombobox ? domReference : null].filter(x => x != null);\n const cleanup = markOthers(insideElements, modal || isUntrappedTypeableCombobox);\n return () => {\n cleanup();\n };\n }, [disabled, domReference, floating, modal, orderRef, portalContext, isUntrappedTypeableCombobox, tree, getNodeId, getInsideElements]);\n useIsoLayoutEffect(() => {\n if (disabled || !isHTMLElement(floatingFocusElement)) {\n return;\n }\n const doc = getDocument(floatingFocusElement);\n const previouslyFocusedElement = activeElement(doc);\n\n // Wait for any layout effect state setters to execute to set `tabIndex`.\n queueMicrotask(() => {\n const focusableElements = getTabbableElements(floatingFocusElement);\n const initialFocusValue = initialFocusRef.current;\n const elToFocus = (typeof initialFocusValue === 'number' ? focusableElements[initialFocusValue] : initialFocusValue.current) || floatingFocusElement;\n const focusAlreadyInsideFloatingEl = contains(floatingFocusElement, previouslyFocusedElement);\n if (!ignoreInitialFocus && !focusAlreadyInsideFloatingEl && open) {\n enqueueFocus(elToFocus, {\n preventScroll: elToFocus === floatingFocusElement\n });\n }\n });\n }, [disabled, open, floatingFocusElement, ignoreInitialFocus, getTabbableElements, initialFocusRef]);\n useIsoLayoutEffect(() => {\n if (disabled || !floatingFocusElement) {\n return undefined;\n }\n const doc = getDocument(floatingFocusElement);\n const previouslyFocusedElement = activeElement(doc);\n addPreviouslyFocusedElement(previouslyFocusedElement);\n\n // Dismissing via outside press should always ignore `returnFocus` to\n // prevent unwanted scrolling.\n function onOpenChangeLocal({\n reason,\n event,\n nested\n }) {\n if (['hover', 'safe-polygon'].includes(reason) && event.type === 'mouseleave') {\n preventReturnFocusRef.current = true;\n }\n if (reason !== 'outside-press') {\n return;\n }\n if (nested) {\n preventReturnFocusRef.current = false;\n } else if (isVirtualClick(event) || isVirtualPointerEvent(event)) {\n preventReturnFocusRef.current = false;\n } else {\n let isPreventScrollSupported = false;\n document.createElement('div').focus({\n get preventScroll() {\n isPreventScrollSupported = true;\n return false;\n }\n });\n if (isPreventScrollSupported) {\n preventReturnFocusRef.current = false;\n } else {\n preventReturnFocusRef.current = true;\n }\n }\n }\n events.on('openchange', onOpenChangeLocal);\n const fallbackEl = doc.createElement('span');\n fallbackEl.setAttribute('tabindex', '-1');\n fallbackEl.setAttribute('aria-hidden', 'true');\n Object.assign(fallbackEl.style, visuallyHidden);\n if (isInsidePortal && domReference) {\n domReference.insertAdjacentElement('afterend', fallbackEl);\n }\n function getReturnElement() {\n if (typeof returnFocusRef.current === 'boolean') {\n const el = domReference || getPreviouslyFocusedElement();\n return el && el.isConnected ? el : fallbackEl;\n }\n return returnFocusRef.current.current || fallbackEl;\n }\n return () => {\n events.off('openchange', onOpenChangeLocal);\n const activeEl = activeElement(doc);\n const isFocusInsideFloatingTree = contains(floating, activeEl) || tree && getNodeChildren(tree.nodesRef.current, getNodeId(), false).some(node => contains(node.context?.elements.floating, activeEl));\n const returnElement = getReturnElement();\n queueMicrotask(() => {\n // This is `returnElement`, if it's tabbable, or its first tabbable child.\n const tabbableReturnElement = getFirstTabbableElement(returnElement);\n if (\n // eslint-disable-next-line react-hooks/exhaustive-deps\n returnFocusRef.current && !preventReturnFocusRef.current && isHTMLElement(tabbableReturnElement) && (\n // If the focus moved somewhere else after mount, avoid returning focus\n // since it likely entered a different element which should be\n // respected: https://github.com/floating-ui/floating-ui/issues/2607\n tabbableReturnElement !== activeEl && activeEl !== doc.body ? isFocusInsideFloatingTree : true)) {\n tabbableReturnElement.focus({\n preventScroll: true\n });\n }\n fallbackEl.remove();\n });\n };\n }, [disabled, floating, floatingFocusElement, returnFocusRef, dataRef, events, tree, isInsidePortal, domReference, getNodeId]);\n React.useEffect(() => {\n // The `returnFocus` cleanup behavior is inside a microtask; ensure we\n // wait for it to complete before resetting the flag.\n queueMicrotask(() => {\n preventReturnFocusRef.current = false;\n });\n }, [disabled]);\n React.useEffect(() => {\n if (disabled || !open) {\n return undefined;\n }\n function handlePointerDown(event) {\n const target = getTarget(event);\n if (target?.closest(`[${CLICK_TRIGGER_IDENTIFIER}]`)) {\n isPointerDownRef.current = true;\n }\n }\n const doc = getDocument(floatingFocusElement);\n doc.addEventListener('pointerdown', handlePointerDown, true);\n return () => {\n doc.removeEventListener('pointerdown', handlePointerDown, true);\n };\n }, [disabled, open, floatingFocusElement]);\n\n // Synchronize the `context` & `modal` value to the FloatingPortal context.\n // It will decide whether or not it needs to render its own guards.\n useIsoLayoutEffect(() => {\n if (disabled) {\n return undefined;\n }\n if (!portalContext) {\n return undefined;\n }\n portalContext.setFocusManagerState({\n modal,\n closeOnFocusOut,\n open,\n onOpenChange,\n domReference\n });\n return () => {\n portalContext.setFocusManagerState(null);\n };\n }, [disabled, portalContext, modal, open, onOpenChange, closeOnFocusOut, domReference]);\n useIsoLayoutEffect(() => {\n if (disabled || !floatingFocusElement) {\n return undefined;\n }\n handleTabIndex(floatingFocusElement, orderRef);\n return () => {\n queueMicrotask(clearDisconnectedPreviouslyFocusedElements);\n };\n }, [disabled, floatingFocusElement, orderRef]);\n const shouldRenderGuards = !disabled && (modal ? !isUntrappedTypeableCombobox : true) && (isInsidePortal || modal);\n return /*#__PURE__*/_jsxs(React.Fragment, {\n children: [shouldRenderGuards && /*#__PURE__*/_jsx(FocusGuard, {\n \"data-type\": \"inside\",\n ref: mergedBeforeGuardRef,\n onFocus: event => {\n if (modal) {\n const els = getTabbableElements();\n enqueueFocus(els[els.length - 1]);\n } else if (portalContext?.preserveTabOrder && portalContext.portalNode) {\n preventReturnFocusRef.current = false;\n if (isOutsideEvent(event, portalContext.portalNode)) {\n const nextTabbable = getNextTabbable(domReference);\n nextTabbable?.focus();\n } else {\n portalContext.beforeOutsideRef.current?.focus();\n }\n }\n }\n }), children, shouldRenderGuards && /*#__PURE__*/_jsx(FocusGuard, {\n \"data-type\": \"inside\",\n ref: mergedAfterGuardRef,\n onFocus: event => {\n if (modal) {\n enqueueFocus(getTabbableElements()[0]);\n } else if (portalContext?.preserveTabOrder && portalContext.portalNode) {\n if (closeOnFocusOut) {\n preventReturnFocusRef.current = true;\n }\n if (isOutsideEvent(event, portalContext.portalNode)) {\n const prevTabbable = getPreviousTabbable(domReference);\n prevTabbable?.focus();\n } else {\n portalContext.afterOutsideRef.current?.focus();\n }\n }\n }\n })]\n });\n}","'use client';\n\nimport * as React from 'react';\nimport { FloatingFocusManager, useFloatingTree } from \"../../floating-ui-react/index.js\";\nimport { useMenuRootContext } from \"../root/MenuRootContext.js\";\nimport { useMenuPositionerContext } from \"../positioner/MenuPositionerContext.js\";\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { popupStateMapping as baseMapping } from \"../../utils/popupStateMapping.js\";\nimport { transitionStatusMapping } from \"../../utils/styleHookMapping.js\";\nimport { useOpenChangeComplete } from \"../../utils/useOpenChangeComplete.js\";\nimport { EMPTY_OBJECT, DISABLED_TRANSITIONS_STYLE } from \"../../utils/constants.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst customStyleHookMapping = {\n ...baseMapping,\n ...transitionStatusMapping\n};\n\n/**\n * A container for the menu items.\n * Renders a `<div>` element.\n *\n * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)\n */\nexport const MenuPopup = /*#__PURE__*/React.forwardRef(function MenuPopup(componentProps, forwardedRef) {\n const {\n render,\n className,\n finalFocus,\n ...elementProps\n } = componentProps;\n const {\n open,\n setOpen,\n popupRef,\n transitionStatus,\n popupProps,\n mounted,\n instantType,\n onOpenChangeComplete,\n parent,\n lastOpenChangeReason,\n rootId\n } = useMenuRootContext();\n const {\n side,\n align,\n floatingContext\n } = useMenuPositionerContext();\n useOpenChangeComplete({\n open,\n ref: popupRef,\n onComplete() {\n if (open) {\n onOpenChangeComplete?.(true);\n }\n }\n });\n const {\n events: menuEvents\n } = useFloatingTree();\n React.useEffect(() => {\n function handleClose(event) {\n setOpen(false, event.domEvent, event.reason);\n }\n menuEvents.on('close', handleClose);\n return () => {\n menuEvents.off('close', handleClose);\n };\n }, [menuEvents, setOpen]);\n const state = React.useMemo(() => ({\n transitionStatus,\n side,\n align,\n open,\n nested: parent.type === 'menu',\n instant: instantType\n }), [transitionStatus, side, align, open, parent.type, instantType]);\n const element = useRenderElement('div', componentProps, {\n state,\n ref: [forwardedRef, popupRef],\n customStyleHookMapping,\n props: [popupProps, transitionStatus === 'starting' ? DISABLED_TRANSITIONS_STYLE : EMPTY_OBJECT, elementProps, {\n 'data-rootownerid': rootId\n }]\n });\n let returnFocus = parent.type === undefined || parent.type === 'context-menu';\n if (parent.type === 'menubar' && lastOpenChangeReason !== 'outside-press') {\n returnFocus = true;\n }\n return /*#__PURE__*/_jsx(FloatingFocusManager, {\n context: floatingContext,\n modal: false,\n disabled: !mounted,\n returnFocus: finalFocus || returnFocus,\n initialFocus: parent.type === 'menu' ? -1 : 0,\n restoreFocus: true,\n children: element\n });\n});\nif (process.env.NODE_ENV !== \"production\") MenuPopup.displayName = \"MenuPopup\";","import * as React from 'react';\nexport const MenuGroupContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") MenuGroupContext.displayName = \"MenuGroupContext\";\nexport function useMenuGroupRootContext() {\n const context = React.useContext(MenuGroupContext);\n if (context === undefined) {\n throw new Error('Base UI: MenuGroupRootContext is missing. Menu group parts must be used within <Menu.Group>.');\n }\n return context;\n}","'use client';\n\nimport * as React from 'react';\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { MenuGroupContext } from \"./MenuGroupContext.js\";\n\n/**\n * Groups related menu items with the corresponding label.\n * Renders a `<div>` element.\n *\n * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport const MenuGroup = /*#__PURE__*/React.forwardRef(function MenuGroup(componentProps, forwardedRef) {\n const {\n render,\n className,\n ...elementProps\n } = componentProps;\n const [labelId, setLabelId] = React.useState(undefined);\n const context = React.useMemo(() => ({\n setLabelId\n }), [setLabelId]);\n const element = useRenderElement('div', componentProps, {\n ref: forwardedRef,\n props: {\n role: 'group',\n 'aria-labelledby': labelId,\n ...elementProps\n }\n });\n return /*#__PURE__*/_jsx(MenuGroupContext.Provider, {\n value: context,\n children: element\n });\n});\nif (process.env.NODE_ENV !== \"production\") MenuGroup.displayName = \"MenuGroup\";","'use client';\n\nimport { useId } from '@base-ui-components/utils/useId';\n\n/**\n * Wraps `useId` and prefixes generated `id`s with `base-ui-`\n * @param {string | undefined} idOverride overrides the generated id when provided\n * @returns {string | undefined}\n */\nexport function useBaseUiId(idOverride) {\n return useId(idOverride, 'base-ui');\n}","'use client';\n\nimport * as React from 'react';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { useBaseUiId } from \"../../utils/useBaseUiId.js\";\nimport { useMenuGroupRootContext } from \"../group/MenuGroupContext.js\";\n\n/**\n * An accessible label that is automatically associated with its parent group.\n * Renders a `<div>` element.\n *\n * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)\n */\nexport const MenuGroupLabel = /*#__PURE__*/React.forwardRef(function MenuGroupLabelComponent(componentProps, forwardedRef) {\n const {\n className,\n render,\n id: idProp,\n ...elementProps\n } = componentProps;\n const id = useBaseUiId(idProp);\n const {\n setLabelId\n } = useMenuGroupRootContext();\n useIsoLayoutEffect(() => {\n setLabelId(id);\n return () => {\n setLabelId(undefined);\n };\n }, [setLabelId, id]);\n return useRenderElement('div', componentProps, {\n ref: forwardedRef,\n props: {\n id,\n role: 'presentation',\n ...elementProps\n }\n });\n});\nif (process.env.NODE_ENV !== \"production\") MenuGroupLabel.displayName = \"MenuGroupLabel\";","'use client';\n\nimport * as React from 'react';\nimport { useMergedRefs } from '@base-ui-components/utils/useMergedRefs';\nimport { useButton } from \"../../use-button/index.js\";\nimport { mergeProps } from \"../../merge-props/index.js\";\nexport const REGULAR_ITEM = {\n type: 'regular-item'\n};\nexport function useMenuItem(params) {\n const {\n closeOnClick,\n disabled = false,\n highlighted,\n id,\n menuEvents,\n allowMouseUpTriggerRef,\n typingRef,\n nativeButton,\n itemMetadata\n } = params;\n const itemRef = React.useRef(null);\n const {\n getButtonProps,\n buttonRef\n } = useButton({\n disabled,\n focusableWhenDisabled: true,\n native: nativeButton\n });\n const getItemProps = React.useCallback(externalProps => {\n return mergeProps({\n id,\n role: 'menuitem',\n tabIndex: highlighted ? 0 : -1,\n onMouseEnter() {\n if (itemMetadata.type !== 'submenu-trigger') {\n return;\n }\n itemMetadata.setActive();\n },\n onKeyUp: event => {\n if (event.key === ' ' && typingRef.current) {\n event.preventBaseUIHandler();\n }\n },\n onClick: event => {\n if (closeOnClick) {\n menuEvents.emit('close', {\n domEvent: event,\n reason: 'item-press'\n });\n }\n },\n onMouseUp: () => {\n if (itemRef.current && allowMouseUpTriggerRef.current) {\n // This fires whenever the user clicks on the trigger, moves the cursor, and releases it over the item.\n // We trigger the click and override the `closeOnClick` preference to always close the menu.\n if (itemMetadata.type === 'regular-item') {\n itemRef.current.click();\n }\n }\n }\n }, externalProps, getButtonProps);\n }, [id, highlighted, getButtonProps, typingRef, closeOnClick, menuEvents, allowMouseUpTriggerRef, itemMetadata]);\n const mergedRef = useMergedRefs(itemRef, buttonRef);\n return React.useMemo(() => ({\n getItemProps,\n itemRef: mergedRef\n }), [getItemProps, mergedRef]);\n}","'use client';\n\nimport * as React from 'react';\nimport { useMergedRefs } from '@base-ui-components/utils/useMergedRefs';\nimport { useFloatingTree } from \"../../floating-ui-react/index.js\";\nimport { REGULAR_ITEM, useMenuItem } from \"./useMenuItem.js\";\nimport { useMenuRootContext } from \"../root/MenuRootContext.js\";\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { useBaseUiId } from \"../../utils/useBaseUiId.js\";\nimport { useCompositeListItem } from \"../../composite/list/useCompositeListItem.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst InnerMenuItem = /*#__PURE__*/React.memo(/*#__PURE__*/React.forwardRef(function InnerMenuItem(componentProps, forwardedRef) {\n const {\n className,\n closeOnClick = true,\n disabled = false,\n highlighted,\n id,\n menuEvents,\n itemProps,\n render,\n allowMouseUpTriggerRef,\n typingRef,\n nativeButton,\n ...elementProps\n } = componentProps;\n const {\n getItemProps,\n itemRef\n } = useMenuItem({\n closeOnClick,\n disabled,\n highlighted,\n id,\n menuEvents,\n allowMouseUpTriggerRef,\n typingRef,\n nativeButton,\n itemMetadata: REGULAR_ITEM\n });\n const state = React.useMemo(() => ({\n disabled,\n highlighted\n }), [disabled, highlighted]);\n return useRenderElement('div', componentProps, {\n state,\n ref: [itemRef, forwardedRef],\n props: [itemProps, elementProps, getItemProps]\n });\n}));\n\n/**\n * An individual interactive item in the menu.\n * Renders a `<div>` element.\n *\n * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu)\n */\nif (process.env.NODE_ENV !== \"production\") InnerMenuItem.displayName = \"InnerMenuItem\";\nexport const MenuItem = /*#__PURE__*/React.forwardRef(function MenuItem(props, forwardedRef) {\n const {\n id: idProp,\n label,\n nativeButton = false,\n ...other\n } = props;\n const itemRef = React.useRef(null);\n const listItem = useCompositeListItem({\n label\n });\n const mergedRef = useMergedRefs(forwardedRef, listItem.ref, itemRef);\n const {\n itemProps,\n activeIndex,\n allowMouseUpTriggerRef,\n typingRef\n } = useMenuRootContext();\n const id = useBaseUiId(idProp);\n const highlighted = listItem.index === activeIndex;\n const {\n events: menuEvents\n } = useFloatingTree();\n\n // This wrapper component is used as a performance optimization.\n // MenuItem reads the context and re-renders the actual MenuItem\n // only when it needs to.\n\n return /*#__PURE__*/_jsx(InnerMenuItem, {\n ...other,\n id: id,\n ref: mergedRef,\n highlighted: highlighted,\n menuEvents: menuEvents,\n itemProps: itemProps,\n allowMouseUpTriggerRef: allowMouseUpTriggerRef,\n typingRef: typingRef,\n nativeButton: nativeButton\n });\n});\nif (process.env.NODE_ENV !== \"production\") MenuItem.displayName = \"MenuItem\";","import type { LoaderTree } from '../lib/app-dir-module'\n\nexport const BUILTIN_PREFIX = '__next_builtin__'\n\nconst nextInternalPrefixRegex =\n /^(.*[\\\\/])?next[\\\\/]dist[\\\\/]client[\\\\/]components[\\\\/]builtin[\\\\/]/\n\nexport function normalizeConventionFilePath(\n projectDir: string,\n conventionPath: string | undefined\n) {\n // Turbopack project path is formed as: \"<project root>/<cwd>\".\n // When project root is not the working directory, we can extract the relative project root path.\n // This is mostly used for running Next.js inside a monorepo.\n const cwd = process.env.NEXT_RUNTIME === 'edge' ? '' : process.cwd()\n const relativeProjectRoot = projectDir.replace(cwd, '')\n\n let relativePath = (conventionPath || '')\n // remove turbopack [project] prefix\n .replace(/^\\[project\\]/, '')\n // remove turbopack relative project path, everything after [project] and before the working directory.\n .replace(relativeProjectRoot, '')\n // remove the project root from the path\n .replace(projectDir, '')\n // remove cwd prefix\n .replace(cwd, '')\n // remove /(src/)?app/ dir prefix\n .replace(/^([\\\\/])*(src[\\\\/])?app[\\\\/]/, '')\n\n // If it's internal file only keep the filename, strip nextjs internal prefix\n if (nextInternalPrefixRegex.test(relativePath)) {\n relativePath = relativePath.replace(nextInternalPrefixRegex, '')\n // Add a special prefix to let segment explorer know it's a built-in component\n relativePath = `${BUILTIN_PREFIX}${relativePath}`\n }\n\n return relativePath.replace(/\\\\/g, '/')\n}\n\n// if a filepath is a builtin file. e.g.\n// .../project/node_modules/next/dist/client/components/builtin/global-error.js -> true\n// .../project/app/global-error.js -> false\nexport const isNextjsBuiltinFilePath = (filePath: string) => {\n return nextInternalPrefixRegex.test(filePath)\n}\n\nexport const BOUNDARY_SUFFIX = '@boundary'\nexport function normalizeBoundaryFilename(filename: string) {\n return filename\n .replace(new RegExp(`^${BUILTIN_PREFIX}`), '')\n .replace(new RegExp(`${BOUNDARY_SUFFIX}$`), '')\n}\n\nexport const BOUNDARY_PREFIX = 'boundary:'\nexport function isBoundaryFile(fileType: string) {\n return fileType.startsWith(BOUNDARY_PREFIX)\n}\n\n// if a filename is a builtin file.\n// __next_builtin__global-error.js -> true\n// page.js -> false\nexport function isBuiltinBoundaryFile(fileType: string) {\n return fileType.startsWith(BUILTIN_PREFIX)\n}\n\nexport function getBoundaryOriginFileType(fileType: string) {\n return fileType.replace(BOUNDARY_PREFIX, '')\n}\n\nexport function getConventionPathByType(\n tree: LoaderTree,\n dir: string,\n conventionType:\n | 'layout'\n | 'template'\n | 'page'\n | 'not-found'\n | 'error'\n | 'loading'\n | 'forbidden'\n | 'unauthorized'\n | 'defaultPage'\n | 'global-error'\n) {\n const modules = tree[2]\n const conventionPath = modules[conventionType]\n ? modules[conventionType][1]\n : undefined\n if (conventionPath) {\n return normalizeConventionFilePath(dir, conventionPath)\n }\n return undefined\n}\n","import './segment-boundary-trigger.css'\nimport { useCallback, useState, useRef, useMemo } from 'react'\nimport { Menu } from '@base-ui-components/react/menu'\nimport { useDevOverlayContext } from '../../../dev-overlay.browser'\nimport type {\n SegmentBoundaryType,\n SegmentNodeState,\n} from '../../../userspace/app/segment-explorer-node'\nimport { normalizeBoundaryFilename } from '../../../../server/app-render/segment-explorer-path'\nimport { useClickOutsideAndEscape } from '../errors/dev-tools-indicator/utils'\n\nconst composeRefs = (...refs: (React.Ref<HTMLButtonElement> | undefined)[]) => {\n return (node: HTMLButtonElement | null) => {\n refs.forEach((ref) => {\n if (typeof ref === 'function') {\n ref(node)\n } else if (ref) {\n ref.current = node\n }\n })\n }\n}\n\nexport function SegmentBoundaryTrigger({\n nodeState,\n boundaries,\n}: {\n nodeState: SegmentNodeState\n boundaries: Record<SegmentBoundaryType, string | null>\n}) {\n const currNode = nodeState\n const { pagePath, boundaryType, setBoundaryType: onSelectBoundary } = currNode\n\n const [isOpen, setIsOpen] = useState(false)\n const { shadowRoot } = useDevOverlayContext()\n const triggerRef = useRef<HTMLButtonElement>(null)\n const popupRef = useRef<HTMLDivElement>(null)\n\n // Click outside of popup should close the menu\n useClickOutsideAndEscape(\n popupRef,\n triggerRef,\n isOpen,\n () => {\n setIsOpen(false)\n },\n // eslint-disable-next-line react-hooks/refs -- TODO\n triggerRef.current?.ownerDocument\n )\n\n const firstDefinedBoundary = Object.values(boundaries).find((v) => v !== null)\n const possibleExtension =\n (firstDefinedBoundary || '').split('.').pop() || 'js'\n\n const fileNames = useMemo(() => {\n return Object.fromEntries(\n Object.entries(boundaries).map(([key, filePath]) => {\n const fileName = normalizeBoundaryFilename(\n (filePath || '').split('/').pop() || `${key}.${possibleExtension}`\n )\n return [key, fileName]\n })\n ) as Record<keyof typeof boundaries, string>\n }, [boundaries, possibleExtension])\n\n const fileName = (pagePath || '').split('/').pop() || ''\n const pageFileName = normalizeBoundaryFilename(\n boundaryType\n ? `page.${possibleExtension}`\n : fileName || `page.${possibleExtension}`\n )\n\n const triggerOptions = [\n {\n label: fileNames.loading,\n value: 'loading',\n icon: <LoadingIcon />,\n disabled: !boundaries.loading,\n },\n {\n label: fileNames.error,\n value: 'error',\n icon: <ErrorIcon />,\n disabled: !boundaries.error,\n },\n {\n label: fileNames['not-found'],\n value: 'not-found',\n icon: <NotFoundIcon />,\n disabled: !boundaries['not-found'],\n },\n ]\n\n const resetOption = {\n label: boundaryType ? 'Reset' : pageFileName,\n value: 'reset',\n icon: <ResetIcon />,\n disabled: boundaryType === null,\n }\n\n const openInEditor = useCallback(({ filePath }: { filePath: string }) => {\n const params = new URLSearchParams({\n file: filePath,\n isAppRelativePath: '1',\n })\n fetch(\n `${\n process.env.__NEXT_ROUTER_BASEPATH || ''\n }/__nextjs_launch-editor?${params.toString()}`\n // Log the failures to console, not track them as console errors in error overlay\n ).catch(console.warn)\n }, [])\n\n const handleSelect = useCallback(\n (value: string) => {\n switch (value) {\n case 'not-found':\n case 'loading':\n case 'error':\n onSelectBoundary(value)\n break\n case 'reset':\n onSelectBoundary(null)\n break\n case 'open-editor':\n if (pagePath) {\n openInEditor({ filePath: pagePath })\n }\n break\n default:\n break\n }\n },\n [onSelectBoundary, pagePath, openInEditor]\n )\n\n const MergedRefTrigger = (\n triggerProps: React.ComponentProps<'button'> & {\n ref?: React.Ref<HTMLButtonElement>\n }\n ) => {\n const mergedRef = composeRefs(triggerProps.ref, triggerRef)\n return <Trigger {...triggerProps} ref={mergedRef} />\n }\n\n const hasBoundary = useMemo(() => {\n const hasPageOrBoundary =\n nodeState.type !== 'layout' && nodeState.type !== 'template'\n return (\n hasPageOrBoundary && Object.values(boundaries).some((v) => v !== null)\n )\n }, [nodeState.type, boundaries])\n\n return (\n <Menu.Root delay={0} modal={false} open={isOpen} onOpenChange={setIsOpen}>\n <Menu.Trigger\n className=\"segment-boundary-trigger\"\n data-nextjs-dev-overlay-segment-boundary-trigger-button\n render={MergedRefTrigger}\n disabled={!hasBoundary}\n />\n\n <Menu.Portal container={shadowRoot}>\n <Menu.Positioner\n className=\"segment-boundary-dropdown-positioner\"\n side=\"bottom\"\n align=\"center\"\n sideOffset={6}\n arrowPadding={8}\n ref={popupRef}\n >\n <Menu.Popup className=\"segment-boundary-dropdown\">\n {\n <Menu.Group>\n <Menu.GroupLabel className=\"segment-boundary-group-label\">\n Toggle Overrides\n </Menu.GroupLabel>\n {triggerOptions.map((option) => (\n <Menu.Item\n key={option.value}\n className=\"segment-boundary-dropdown-item\"\n onClick={() => handleSelect(option.value)}\n disabled={option.disabled}\n >\n {option.icon}\n {option.label}\n </Menu.Item>\n ))}\n </Menu.Group>\n }\n\n <Menu.Group>\n {\n <Menu.Item\n key={resetOption.value}\n className=\"segment-boundary-dropdown-item\"\n onClick={() => handleSelect(resetOption.value)}\n disabled={resetOption.disabled}\n >\n {resetOption.icon}\n {resetOption.label}\n </Menu.Item>\n }\n </Menu.Group>\n </Menu.Popup>\n </Menu.Positioner>\n </Menu.Portal>\n </Menu.Root>\n )\n}\n\nfunction LoadingIcon() {\n return (\n <svg\n width=\"20px\"\n height=\"20px\"\n viewBox=\"0 0 20 20\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <g clipPath=\"url(#clip0_2759_1866)\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10 3.5C13.5899 3.5 16.5 6.41015 16.5 10C16.5 13.5899 13.5899 16.5 10 16.5C6.41015 16.5 3.5 13.5899 3.5 10C3.5 6.41015 6.41015 3.5 10 3.5ZM2 10C2 14.4183 5.58172 18 10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10ZM10.75 9.62402V6H9.25V9.875C9.25 10.1898 9.39858 10.486 9.65039 10.6748L11.5498 12.0996L12.1504 12.5498L13.0498 11.3496L12.4502 10.9004L10.75 9.62402Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_2759_1866\">\n <rect\n width=\"16\"\n height=\"16\"\n fill=\"white\"\n transform=\"translate(2 2)\"\n />\n </clipPath>\n </defs>\n </svg>\n )\n}\n\nfunction ErrorIcon() {\n return (\n <svg\n width=\"20\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <g clipPath=\"url(#clip0_2759_1881)\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3.5 7.30762V12.6924L7.30762 16.5H12.6924L16.5 12.6924V7.30762L12.6924 3.5H7.30762L3.5 7.30762ZM18 12.8994L17.9951 12.998C17.9724 13.2271 17.8712 13.4423 17.707 13.6064L13.6064 17.707L13.5332 17.7734C13.3806 17.8985 13.1944 17.9757 12.998 17.9951L12.8994 18H7.10059L7.00195 17.9951C6.80562 17.9757 6.6194 17.8985 6.4668 17.7734L6.39355 17.707L2.29297 13.6064C2.12883 13.4423 2.02756 13.2271 2.00488 12.998L2 12.8994V7.10059C2 6.83539 2.10546 6.58109 2.29297 6.39355L6.39355 2.29297C6.55771 2.12883 6.77294 2.02756 7.00195 2.00488L7.10059 2H12.8994L12.998 2.00488C13.2271 2.02756 13.4423 2.12883 13.6064 2.29297L17.707 6.39355C17.8945 6.58109 18 6.83539 18 7.10059V12.8994ZM9.25 5.75H10.75L10.75 10.75H9.25L9.25 5.75ZM10 14C10.5523 14 11 13.5523 11 13C11 12.4477 10.5523 12 10 12C9.44772 12 9 12.4477 9 13C9 13.5523 9.44772 14 10 14Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_2759_1881\">\n <rect\n width=\"16\"\n height=\"16\"\n fill=\"white\"\n transform=\"translate(2 2)\"\n />\n </clipPath>\n </defs>\n </svg>\n )\n}\n\nfunction NotFoundIcon() {\n return (\n <svg\n width=\"20px\"\n height=\"20px\"\n viewBox=\"0 0 20 20\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M10.5586 2.5C11.1341 2.50004 11.6588 2.8294 11.9091 3.34766L17.8076 15.5654C18.1278 16.2292 17.6442 16.9997 16.9072 17H3.09274C2.35574 16.9997 1.8721 16.2292 2.19235 15.5654L8.09079 3.34766C8.34109 2.8294 8.86583 2.50004 9.44137 2.5H10.5586ZM3.89059 15.5H16.1093L10.5586 4H9.44137L3.89059 15.5ZM9.24997 6.75H10.75L10.75 10.75H9.24997L9.24997 6.75ZM9.99997 14C10.5523 14 11 13.5523 11 13C11 12.4477 10.5523 12 9.99997 12C9.44768 12 8.99997 12.4477 8.99997 13C8.99997 13.5523 9.44768 14 9.99997 14Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n\nfunction ResetIcon() {\n return (\n <svg\n width=\"20\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M9.96484 3C13.8463 3.00018 17 6.13012 17 10C17 13.8699 13.8463 16.9998 9.96484 17C7.62404 17 5.54877 15.8617 4.27051 14.1123L3.82812 13.5068L5.03906 12.6221L5.48145 13.2275C6.48815 14.6053 8.12092 15.5 9.96484 15.5C13.0259 15.4998 15.5 13.0335 15.5 10C15.5 6.96654 13.0259 4.50018 9.96484 4.5C7.42905 4.5 5.29544 6.19429 4.63867 8.5H8V10H2.75C2.33579 10 2 9.66421 2 9.25V4H3.5V7.2373C4.57781 4.74376 7.06749 3 9.96484 3Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n\nfunction SwitchIcon(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg strokeLinejoin=\"round\" viewBox=\"0 0 16 16\" {...props}>\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8.7071 2.39644C8.31658 2.00592 7.68341 2.00592 7.29289 2.39644L4.46966 5.21966L3.93933 5.74999L4.99999 6.81065L5.53032 6.28032L7.99999 3.81065L10.4697 6.28032L11 6.81065L12.0607 5.74999L11.5303 5.21966L8.7071 2.39644ZM5.53032 9.71966L4.99999 9.18933L3.93933 10.25L4.46966 10.7803L7.29289 13.6035C7.68341 13.9941 8.31658 13.9941 8.7071 13.6035L11.5303 10.7803L12.0607 10.25L11 9.18933L10.4697 9.71966L7.99999 12.1893L5.53032 9.71966Z\"\n fill=\"currentColor\"\n ></path>\n </svg>\n )\n}\n\nfunction Trigger(props: React.ComponentProps<'button'>) {\n return (\n <button {...props}>\n <span className=\"segment-boundary-trigger-text\">\n <SwitchIcon className=\"plus-icon\" />\n </span>\n </button>\n )\n}\n","'use client';\n\nimport * as React from 'react';\nexport const TooltipRootContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") TooltipRootContext.displayName = \"TooltipRootContext\";\nexport function useTooltipRootContext() {\n const context = React.useContext(TooltipRootContext);\n if (context === undefined) {\n throw new Error('Base UI: TooltipRootContext is missing. Tooltip parts must be placed within <Tooltip.Root>.');\n }\n return context;\n}","'use client';\n\nimport * as React from 'react';\nimport { useTooltipRootContext } from \"../root/TooltipRootContext.js\";\nimport { triggerOpenStateMapping } from \"../../utils/popupStateMapping.js\";\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\n\n/**\n * An element to attach the tooltip to.\n * Renders a `<button>` element.\n *\n * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip)\n */\nexport const TooltipTrigger = /*#__PURE__*/React.forwardRef(function TooltipTrigger(componentProps, forwardedRef) {\n const {\n className,\n render,\n ...elementProps\n } = componentProps;\n const {\n open,\n setTriggerElement,\n triggerProps\n } = useTooltipRootContext();\n const state = React.useMemo(() => ({\n open\n }), [open]);\n const element = useRenderElement('button', componentProps, {\n state,\n ref: [forwardedRef, setTriggerElement],\n props: [triggerProps, elementProps],\n customStyleHookMapping: triggerOpenStateMapping\n });\n return element;\n});\nif (process.env.NODE_ENV !== \"production\") TooltipTrigger.displayName = \"TooltipTrigger\";","'use client';\n\nimport * as React from 'react';\nexport const TooltipPositionerContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") TooltipPositionerContext.displayName = \"TooltipPositionerContext\";\nexport function useTooltipPositionerContext() {\n const context = React.useContext(TooltipPositionerContext);\n if (context === undefined) {\n throw new Error('Base UI: TooltipPositionerContext is missing. TooltipPositioner parts must be placed within <Tooltip.Positioner>.');\n }\n return context;\n}","'use client';\n\nimport * as React from 'react';\nimport { useTooltipPositionerContext } from \"../positioner/TooltipPositionerContext.js\";\nimport { popupStateMapping } from \"../../utils/popupStateMapping.js\";\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\n\n/**\n * Displays an element positioned against the tooltip anchor.\n * Renders a `<div>` element.\n *\n * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip)\n */\nexport const TooltipArrow = /*#__PURE__*/React.forwardRef(function TooltipArrow(componentProps, forwardedRef) {\n const {\n className,\n render,\n ...elementProps\n } = componentProps;\n const {\n open,\n arrowRef,\n side,\n align,\n arrowUncentered,\n arrowStyles\n } = useTooltipPositionerContext();\n const state = React.useMemo(() => ({\n open,\n side,\n align,\n uncentered: arrowUncentered\n }), [open, side, align, arrowUncentered]);\n const element = useRenderElement('div', componentProps, {\n state,\n ref: [forwardedRef, arrowRef],\n props: [{\n style: arrowStyles,\n 'aria-hidden': true\n }, elementProps],\n customStyleHookMapping: popupStateMapping\n });\n return element;\n});\nif (process.env.NODE_ENV !== \"production\") TooltipArrow.displayName = \"TooltipArrow\";","'use client';\n\nimport * as React from 'react';\nimport { useTooltipRootContext } from \"../root/TooltipRootContext.js\";\nimport { useTooltipPositionerContext } from \"../positioner/TooltipPositionerContext.js\";\nimport { popupStateMapping as baseMapping } from \"../../utils/popupStateMapping.js\";\nimport { transitionStatusMapping } from \"../../utils/styleHookMapping.js\";\nimport { useOpenChangeComplete } from \"../../utils/useOpenChangeComplete.js\";\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { EMPTY_OBJECT, DISABLED_TRANSITIONS_STYLE } from \"../../utils/constants.js\";\nconst customStyleHookMapping = {\n ...baseMapping,\n ...transitionStatusMapping\n};\n\n/**\n * A container for the tooltip contents.\n * Renders a `<div>` element.\n *\n * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip)\n */\nexport const TooltipPopup = /*#__PURE__*/React.forwardRef(function TooltipPopup(componentProps, forwardedRef) {\n const {\n className,\n render,\n ...elementProps\n } = componentProps;\n const {\n open,\n instantType,\n transitionStatus,\n popupProps,\n popupRef,\n onOpenChangeComplete\n } = useTooltipRootContext();\n const {\n side,\n align\n } = useTooltipPositionerContext();\n useOpenChangeComplete({\n open,\n ref: popupRef,\n onComplete() {\n if (open) {\n onOpenChangeComplete?.(true);\n }\n }\n });\n const state = React.useMemo(() => ({\n open,\n side,\n align,\n instant: instantType,\n transitionStatus\n }), [open, side, align, instantType, transitionStatus]);\n const element = useRenderElement('div', componentProps, {\n state,\n ref: [forwardedRef, popupRef],\n props: [popupProps, transitionStatus === 'starting' ? DISABLED_TRANSITIONS_STYLE : EMPTY_OBJECT, elementProps],\n customStyleHookMapping\n });\n return element;\n});\nif (process.env.NODE_ENV !== \"production\") TooltipPopup.displayName = \"TooltipPopup\";","import * as React from 'react';\nexport const TooltipPortalContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") TooltipPortalContext.displayName = \"TooltipPortalContext\";\nexport function useTooltipPortalContext() {\n const value = React.useContext(TooltipPortalContext);\n if (value === undefined) {\n throw new Error('Base UI: <Tooltip.Portal> is missing.');\n }\n return value;\n}","'use client';\n\nimport * as React from 'react';\nimport { useTooltipRootContext } from \"../root/TooltipRootContext.js\";\nimport { TooltipPositionerContext } from \"./TooltipPositionerContext.js\";\nimport { useAnchorPositioning } from \"../../utils/useAnchorPositioning.js\";\nimport { popupStateMapping } from \"../../utils/popupStateMapping.js\";\nimport { useTooltipPortalContext } from \"../portal/TooltipPortalContext.js\";\nimport { useRenderElement } from \"../../utils/useRenderElement.js\";\nimport { POPUP_COLLISION_AVOIDANCE } from \"../../utils/constants.js\";\n\n/**\n * Positions the tooltip against the trigger.\n * Renders a `<div>` element.\n *\n * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip)\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport const TooltipPositioner = /*#__PURE__*/React.forwardRef(function TooltipPositioner(componentProps, forwardedRef) {\n const {\n render,\n className,\n anchor,\n positionMethod = 'absolute',\n side = 'top',\n align = 'center',\n sideOffset = 0,\n alignOffset = 0,\n collisionBoundary = 'clipping-ancestors',\n collisionPadding = 5,\n arrowPadding = 5,\n sticky = false,\n trackAnchor = true,\n collisionAvoidance = POPUP_COLLISION_AVOIDANCE,\n ...elementProps\n } = componentProps;\n const {\n open,\n setPositionerElement,\n mounted,\n floatingRootContext,\n trackCursorAxis,\n hoverable\n } = useTooltipRootContext();\n const keepMounted = useTooltipPortalContext();\n const positioning = useAnchorPositioning({\n anchor,\n positionMethod,\n floatingRootContext,\n mounted,\n side,\n sideOffset,\n align,\n alignOffset,\n collisionBoundary,\n collisionPadding,\n sticky,\n arrowPadding,\n trackAnchor,\n keepMounted,\n collisionAvoidance\n });\n const defaultProps = React.useMemo(() => {\n const hiddenStyles = {};\n if (!open || trackCursorAxis === 'both' || !hoverable) {\n hiddenStyles.pointerEvents = 'none';\n }\n return {\n role: 'presentation',\n hidden: !mounted,\n style: {\n ...positioning.positionerStyles,\n ...hiddenStyles\n }\n };\n }, [open, trackCursorAxis, hoverable, mounted, positioning.positionerStyles]);\n const positioner = React.useMemo(() => ({\n props: defaultProps,\n ...positioning\n }), [defaultProps, positioning]);\n const state = React.useMemo(() => ({\n open,\n side: positioner.side,\n align: positioner.align,\n anchorHidden: positioner.anchorHidden\n }), [open, positioner.side, positioner.align, positioner.anchorHidden]);\n const contextValue = React.useMemo(() => ({\n ...state,\n arrowRef: positioner.arrowRef,\n arrowStyles: positioner.arrowStyles,\n arrowUncentered: positioner.arrowUncentered\n }), [state, positioner.arrowRef, positioner.arrowStyles, positioner.arrowUncentered]);\n const element = useRenderElement('div', componentProps, {\n state,\n props: [positioner.props, elementProps],\n ref: [forwardedRef, setPositionerElement],\n customStyleHookMapping: popupStateMapping\n });\n return /*#__PURE__*/_jsx(TooltipPositionerContext.Provider, {\n value: contextValue,\n children: element\n });\n});\nif (process.env.NODE_ENV !== \"production\") TooltipPositioner.displayName = \"TooltipPositioner\";","'use client';\n\nimport * as ReactDOM from 'react-dom';\nimport { useFloatingPortalNode } from \"../floating-ui-react/index.js\";\n\n/**\n * `FloatingPortal` includes tabbable logic handling for focus management.\n * For components that don't need tabbable logic, use `FloatingPortalLite`.\n * @internal\n */\nexport function FloatingPortalLite(props) {\n const node = useFloatingPortalNode({\n root: props.root\n });\n return node && /*#__PURE__*/ReactDOM.createPortal(props.children, node);\n}","'use client';\n\nimport * as React from 'react';\nimport { useTooltipRootContext } from \"../root/TooltipRootContext.js\";\nimport { TooltipPortalContext } from \"./TooltipPortalContext.js\";\nimport { FloatingPortalLite } from \"../../utils/FloatingPortalLite.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\n/**\n * A portal element that moves the popup to a different part of the DOM.\n * By default, the portal element is appended to `<body>`.\n *\n * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip)\n */\nexport function TooltipPortal(props) {\n const {\n children,\n keepMounted = false,\n container\n } = props;\n const {\n mounted\n } = useTooltipRootContext();\n const shouldRender = mounted || keepMounted;\n if (!shouldRender) {\n return null;\n }\n return /*#__PURE__*/_jsx(TooltipPortalContext.Provider, {\n value: keepMounted,\n children: /*#__PURE__*/_jsx(FloatingPortalLite, {\n root: container,\n children: children\n })\n });\n}","import * as React from 'react';\nimport { useTimeout, Timeout } from '@base-ui-components/utils/useTimeout';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { getDelay } from \"../hooks/useHover.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nconst FloatingDelayGroupContext = /*#__PURE__*/React.createContext({\n hasProvider: false,\n timeoutMs: 0,\n delayRef: {\n current: 0\n },\n initialDelayRef: {\n current: 0\n },\n timeout: new Timeout(),\n currentIdRef: {\n current: null\n },\n currentContextRef: {\n current: null\n }\n});\nif (process.env.NODE_ENV !== \"production\") FloatingDelayGroupContext.displayName = \"FloatingDelayGroupContext\";\n/**\n * Experimental next version of `FloatingDelayGroup` to become the default\n * in the future. This component is not yet stable.\n * Provides context for a group of floating elements that should share a\n * `delay`. Unlike `FloatingDelayGroup`, `useDelayGroup` with this\n * component does not cause a re-render of unrelated consumers of the\n * context when the delay changes.\n * @see https://floating-ui.com/docs/FloatingDelayGroup\n * @internal\n */\nexport function FloatingDelayGroup(props) {\n const {\n children,\n delay,\n timeoutMs = 0\n } = props;\n const delayRef = React.useRef(delay);\n const initialDelayRef = React.useRef(delay);\n const currentIdRef = React.useRef(null);\n const currentContextRef = React.useRef(null);\n const timeout = useTimeout();\n return /*#__PURE__*/_jsx(FloatingDelayGroupContext.Provider, {\n value: React.useMemo(() => ({\n hasProvider: true,\n delayRef,\n initialDelayRef,\n currentIdRef,\n timeoutMs,\n currentContextRef,\n timeout\n }), [timeoutMs, timeout]),\n children: children\n });\n}\n/**\n * Enables grouping when called inside a component that's a child of a\n * `FloatingDelayGroup`.\n * @see https://floating-ui.com/docs/FloatingDelayGroup\n * @internal\n */\nexport function useDelayGroup(context, options = {}) {\n const {\n open,\n onOpenChange,\n floatingId\n } = context;\n const {\n enabled = true\n } = options;\n const groupContext = React.useContext(FloatingDelayGroupContext);\n const {\n currentIdRef,\n delayRef,\n timeoutMs,\n initialDelayRef,\n currentContextRef,\n hasProvider,\n timeout\n } = groupContext;\n const [isInstantPhase, setIsInstantPhase] = React.useState(false);\n useIsoLayoutEffect(() => {\n function unset() {\n setIsInstantPhase(false);\n currentContextRef.current?.setIsInstantPhase(false);\n currentIdRef.current = null;\n currentContextRef.current = null;\n delayRef.current = initialDelayRef.current;\n }\n if (!enabled) {\n return undefined;\n }\n if (!currentIdRef.current) {\n return undefined;\n }\n if (!open && currentIdRef.current === floatingId) {\n setIsInstantPhase(false);\n if (timeoutMs) {\n timeout.start(timeoutMs, unset);\n return () => {\n timeout.clear();\n };\n }\n unset();\n }\n return undefined;\n }, [enabled, open, floatingId, currentIdRef, delayRef, timeoutMs, initialDelayRef, currentContextRef, timeout]);\n useIsoLayoutEffect(() => {\n if (!enabled) {\n return;\n }\n if (!open) {\n return;\n }\n const prevContext = currentContextRef.current;\n const prevId = currentIdRef.current;\n currentContextRef.current = {\n onOpenChange,\n setIsInstantPhase\n };\n currentIdRef.current = floatingId;\n delayRef.current = {\n open: 0,\n close: getDelay(initialDelayRef.current, 'close')\n };\n if (prevId !== null && prevId !== floatingId) {\n timeout.clear();\n setIsInstantPhase(true);\n prevContext?.setIsInstantPhase(true);\n prevContext?.onOpenChange(false);\n } else {\n setIsInstantPhase(false);\n prevContext?.setIsInstantPhase(false);\n }\n }, [enabled, open, floatingId, onOpenChange, currentIdRef, delayRef, timeoutMs, initialDelayRef, currentContextRef, timeout]);\n useIsoLayoutEffect(() => {\n return () => {\n currentContextRef.current = null;\n };\n }, [currentContextRef]);\n return React.useMemo(() => ({\n hasProvider,\n delayRef,\n isInstantPhase\n }), [hasProvider, delayRef, isInstantPhase]);\n}","import * as React from 'react';\nexport const TooltipProviderContext = /*#__PURE__*/React.createContext(undefined);\nif (process.env.NODE_ENV !== \"production\") TooltipProviderContext.displayName = \"TooltipProviderContext\";\nexport function useTooltipProviderContext() {\n return React.useContext(TooltipProviderContext);\n}","'use client';\n\nimport * as React from 'react';\nimport { FloatingDelayGroup } from \"../../floating-ui-react/index.js\";\nimport { TooltipProviderContext } from \"./TooltipProviderContext.js\";\n\n/**\n * Provides a shared delay for multiple tooltips. The grouping logic ensures that\n * once a tooltip becomes visible, the adjacent tooltips will be shown instantly.\n *\n * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip)\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport const TooltipProvider = function TooltipProvider(props) {\n const {\n delay,\n closeDelay,\n timeout = 400\n } = props;\n const contextValue = React.useMemo(() => ({\n delay,\n closeDelay\n }), [delay, closeDelay]);\n const delayValue = React.useMemo(() => ({\n open: delay,\n close: closeDelay\n }), [delay, closeDelay]);\n return /*#__PURE__*/_jsx(TooltipProviderContext.Provider, {\n value: contextValue,\n children: /*#__PURE__*/_jsx(FloatingDelayGroup, {\n delay: delayValue,\n timeoutMs: timeout,\n children: props.children\n })\n });\n};\nif (process.env.NODE_ENV !== \"production\") TooltipProvider.displayName = \"TooltipProvider\";","import * as React from 'react';\nimport { getWindow } from '@floating-ui/utils/dom';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { useIsoLayoutEffect } from '@base-ui-components/utils/useIsoLayoutEffect';\nimport { contains, getTarget, isMouseLikePointerType } from \"../utils.js\";\nfunction createVirtualElement(domElement, data) {\n let offsetX = null;\n let offsetY = null;\n let isAutoUpdateEvent = false;\n return {\n contextElement: domElement || undefined,\n getBoundingClientRect() {\n const domRect = domElement?.getBoundingClientRect() || {\n width: 0,\n height: 0,\n x: 0,\n y: 0\n };\n const isXAxis = data.axis === 'x' || data.axis === 'both';\n const isYAxis = data.axis === 'y' || data.axis === 'both';\n const canTrackCursorOnAutoUpdate = ['mouseenter', 'mousemove'].includes(data.dataRef.current.openEvent?.type || '') && data.pointerType !== 'touch';\n let width = domRect.width;\n let height = domRect.height;\n let x = domRect.x;\n let y = domRect.y;\n if (offsetX == null && data.x && isXAxis) {\n offsetX = domRect.x - data.x;\n }\n if (offsetY == null && data.y && isYAxis) {\n offsetY = domRect.y - data.y;\n }\n x -= offsetX || 0;\n y -= offsetY || 0;\n width = 0;\n height = 0;\n if (!isAutoUpdateEvent || canTrackCursorOnAutoUpdate) {\n width = data.axis === 'y' ? domRect.width : 0;\n height = data.axis === 'x' ? domRect.height : 0;\n x = isXAxis && data.x != null ? data.x : x;\n y = isYAxis && data.y != null ? data.y : y;\n } else if (isAutoUpdateEvent && !canTrackCursorOnAutoUpdate) {\n height = data.axis === 'x' ? domRect.height : height;\n width = data.axis === 'y' ? domRect.width : width;\n }\n isAutoUpdateEvent = true;\n return {\n width,\n height,\n x,\n y,\n top: y,\n right: x + width,\n bottom: y + height,\n left: x\n };\n }\n };\n}\nfunction isMouseBasedEvent(event) {\n return event != null && event.clientX != null;\n}\n/**\n * Positions the floating element relative to a client point (in the viewport),\n * such as the mouse position. By default, it follows the mouse cursor.\n * @see https://floating-ui.com/docs/useClientPoint\n */\nexport function useClientPoint(context, props = {}) {\n const {\n open,\n dataRef,\n elements: {\n floating,\n domReference\n },\n refs\n } = context;\n const {\n enabled = true,\n axis = 'both',\n x = null,\n y = null\n } = props;\n const initialRef = React.useRef(false);\n const cleanupListenerRef = React.useRef(null);\n const [pointerType, setPointerType] = React.useState();\n const [reactive, setReactive] = React.useState([]);\n const setReference = useEventCallback((newX, newY) => {\n if (initialRef.current) {\n return;\n }\n\n // Prevent setting if the open event was not a mouse-like one\n // (e.g. focus to open, then hover over the reference element).\n // Only apply if the event exists.\n if (dataRef.current.openEvent && !isMouseBasedEvent(dataRef.current.openEvent)) {\n return;\n }\n refs.setPositionReference(createVirtualElement(domReference, {\n x: newX,\n y: newY,\n axis,\n dataRef,\n pointerType\n }));\n });\n const handleReferenceEnterOrMove = useEventCallback(event => {\n if (x != null || y != null) {\n return;\n }\n if (!open) {\n setReference(event.clientX, event.clientY);\n } else if (!cleanupListenerRef.current) {\n // If there's no cleanup, there's no listener, but we want to ensure\n // we add the listener if the cursor landed on the floating element and\n // then back on the reference (i.e. it's interactive).\n setReactive([]);\n }\n });\n\n // If the pointer is a mouse-like pointer, we want to continue following the\n // mouse even if the floating element is transitioning out. On touch\n // devices, this is undesirable because the floating element will move to\n // the dismissal touch point.\n const openCheck = isMouseLikePointerType(pointerType) ? floating : open;\n const addListener = React.useCallback(() => {\n // Explicitly specified `x`/`y` coordinates shouldn't add a listener.\n if (!openCheck || !enabled || x != null || y != null) {\n return undefined;\n }\n const win = getWindow(floating);\n function handleMouseMove(event) {\n const target = getTarget(event);\n if (!contains(floating, target)) {\n setReference(event.clientX, event.clientY);\n } else {\n win.removeEventListener('mousemove', handleMouseMove);\n cleanupListenerRef.current = null;\n }\n }\n if (!dataRef.current.openEvent || isMouseBasedEvent(dataRef.current.openEvent)) {\n win.addEventListener('mousemove', handleMouseMove);\n const cleanup = () => {\n win.removeEventListener('mousemove', handleMouseMove);\n cleanupListenerRef.current = null;\n };\n cleanupListenerRef.current = cleanup;\n return cleanup;\n }\n refs.setPositionReference(domReference);\n return undefined;\n }, [openCheck, enabled, x, y, floating, dataRef, refs, domReference, setReference]);\n React.useEffect(() => {\n return addListener();\n }, [addListener, reactive]);\n React.useEffect(() => {\n if (enabled && !floating) {\n initialRef.current = false;\n }\n }, [enabled, floating]);\n React.useEffect(() => {\n if (!enabled && open) {\n initialRef.current = true;\n }\n }, [enabled, open]);\n useIsoLayoutEffect(() => {\n if (enabled && (x != null || y != null)) {\n initialRef.current = false;\n setReference(x, y);\n }\n }, [enabled, x, y, setReference]);\n const reference = React.useMemo(() => {\n function setPointerTypeRef(event) {\n setPointerType(event.pointerType);\n }\n return {\n onPointerDown: setPointerTypeRef,\n onPointerEnter: setPointerTypeRef,\n onMouseMove: handleReferenceEnterOrMove,\n onMouseEnter: handleReferenceEnterOrMove\n };\n }, [handleReferenceEnterOrMove]);\n return React.useMemo(() => enabled ? {\n reference\n } : {}, [enabled, reference]);\n}","'use client';\n\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { useControlled } from '@base-ui-components/utils/useControlled';\nimport { useEventCallback } from '@base-ui-components/utils/useEventCallback';\nimport { TooltipRootContext } from \"./TooltipRootContext.js\";\nimport { useClientPoint, useDelayGroup, useDismiss, useFloatingRootContext, useFocus, useHover, useInteractions, safePolygon } from \"../../floating-ui-react/index.js\";\nimport { useTransitionStatus } from \"../../utils/useTransitionStatus.js\";\nimport { OPEN_DELAY } from \"../utils/constants.js\";\nimport { translateOpenChangeReason } from \"../../utils/translateOpenChangeReason.js\";\nimport { useOpenChangeComplete } from \"../../utils/useOpenChangeComplete.js\";\nimport { useTooltipProviderContext } from \"../provider/TooltipProviderContext.js\";\n\n/**\n * Groups all parts of the tooltip.\n * Doesn’t render its own HTML element.\n *\n * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip)\n */\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport function TooltipRoot(props) {\n const {\n disabled = false,\n defaultOpen = false,\n onOpenChange,\n open: openProp,\n delay,\n closeDelay,\n hoverable = true,\n trackCursorAxis = 'none',\n actionsRef,\n onOpenChangeComplete\n } = props;\n const delayWithDefault = delay ?? OPEN_DELAY;\n const closeDelayWithDefault = closeDelay ?? 0;\n const [triggerElement, setTriggerElement] = React.useState(null);\n const [positionerElement, setPositionerElement] = React.useState(null);\n const [instantTypeState, setInstantTypeState] = React.useState();\n const popupRef = React.useRef(null);\n const [openState, setOpenState] = useControlled({\n controlled: openProp,\n default: defaultOpen,\n name: 'Tooltip',\n state: 'open'\n });\n const open = !disabled && openState;\n function setOpenUnwrapped(nextOpen, event, reason) {\n const isHover = reason === 'trigger-hover';\n const isFocusOpen = nextOpen && reason === 'trigger-focus';\n const isDismissClose = !nextOpen && (reason === 'trigger-press' || reason === 'escape-key');\n function changeState() {\n onOpenChange?.(nextOpen, event, reason);\n setOpenState(nextOpen);\n }\n if (isHover) {\n // If a hover reason is provided, we need to flush the state synchronously. This ensures\n // `node.getAnimations()` knows about the new state.\n ReactDOM.flushSync(changeState);\n } else {\n changeState();\n }\n if (isFocusOpen || isDismissClose) {\n setInstantTypeState(isFocusOpen ? 'focus' : 'dismiss');\n } else if (reason === 'trigger-hover') {\n setInstantTypeState(undefined);\n }\n }\n const setOpen = useEventCallback(setOpenUnwrapped);\n if (openState && disabled) {\n setOpenUnwrapped(false, undefined, 'disabled');\n }\n const {\n mounted,\n setMounted,\n transitionStatus\n } = useTransitionStatus(open);\n const handleUnmount = useEventCallback(() => {\n setMounted(false);\n onOpenChangeComplete?.(false);\n });\n useOpenChangeComplete({\n enabled: !actionsRef,\n open,\n ref: popupRef,\n onComplete() {\n if (!open) {\n handleUnmount();\n }\n }\n });\n React.useImperativeHandle(actionsRef, () => ({\n unmount: handleUnmount\n }), [handleUnmount]);\n const floatingRootContext = useFloatingRootContext({\n elements: {\n reference: triggerElement,\n floating: positionerElement\n },\n open,\n onOpenChange(openValue, eventValue, reasonValue) {\n setOpen(openValue, eventValue, translateOpenChangeReason(reasonValue));\n }\n });\n const providerContext = useTooltipProviderContext();\n const {\n delayRef,\n isInstantPhase,\n hasProvider\n } = useDelayGroup(floatingRootContext);\n const instantType = isInstantPhase ? 'delay' : instantTypeState;\n const hover = useHover(floatingRootContext, {\n enabled: !disabled,\n mouseOnly: true,\n move: false,\n handleClose: hoverable && trackCursorAxis !== 'both' ? safePolygon() : null,\n restMs() {\n const providerDelay = providerContext?.delay;\n const groupOpenValue = typeof delayRef.current === 'object' ? delayRef.current.open : undefined;\n let computedRestMs = delayWithDefault;\n if (hasProvider) {\n if (groupOpenValue !== 0) {\n computedRestMs = delay ?? providerDelay ?? delayWithDefault;\n } else {\n computedRestMs = 0;\n }\n }\n return computedRestMs;\n },\n delay() {\n const closeValue = typeof delayRef.current === 'object' ? delayRef.current.close : undefined;\n let computedCloseDelay = closeDelayWithDefault;\n if (closeDelay == null && hasProvider) {\n computedCloseDelay = closeValue;\n }\n return {\n close: computedCloseDelay\n };\n }\n });\n const focus = useFocus(floatingRootContext, {\n enabled: !disabled\n });\n const dismiss = useDismiss(floatingRootContext, {\n enabled: !disabled,\n referencePress: true\n });\n const clientPoint = useClientPoint(floatingRootContext, {\n enabled: !disabled && trackCursorAxis !== 'none',\n axis: trackCursorAxis === 'none' ? undefined : trackCursorAxis\n });\n const {\n getReferenceProps,\n getFloatingProps\n } = useInteractions([hover, focus, dismiss, clientPoint]);\n const tooltipRoot = React.useMemo(() => ({\n open,\n setOpen,\n mounted,\n setMounted,\n setTriggerElement,\n positionerElement,\n setPositionerElement,\n popupRef,\n triggerProps: getReferenceProps(),\n popupProps: getFloatingProps(),\n floatingRootContext,\n instantType,\n transitionStatus,\n onOpenChangeComplete\n }), [open, setOpen, mounted, setMounted, setTriggerElement, positionerElement, setPositionerElement, popupRef, getReferenceProps, getFloatingProps, floatingRootContext, instantType, transitionStatus, onOpenChangeComplete]);\n const contextValue = React.useMemo(() => ({\n ...tooltipRoot,\n delay: delayWithDefault,\n closeDelay: closeDelayWithDefault,\n trackCursorAxis,\n hoverable\n }), [tooltipRoot, delayWithDefault, closeDelayWithDefault, trackCursorAxis, hoverable]);\n return /*#__PURE__*/_jsx(TooltipRootContext.Provider, {\n value: contextValue,\n children: props.children\n });\n}","export const OPEN_DELAY = 600;","\n import API from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./tooltip.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./tooltip.css\";\n export default content && content.locals ? content.locals : undefined;\n","import { forwardRef } from 'react'\nimport { Tooltip as BaseTooltip } from '@base-ui-components/react/tooltip'\nimport { useDevOverlayContext } from '../../../dev-overlay.browser'\nimport { cx } from '../../utils/cx'\nimport './tooltip.css'\n\ntype TooltipDirection = 'top' | 'bottom' | 'left' | 'right'\n\ninterface TooltipProps {\n children: React.ReactNode\n title: string | null\n direction?: TooltipDirection\n arrowSize?: number\n offset?: number\n className?: string\n}\n\nexport const Tooltip = forwardRef<HTMLDivElement, TooltipProps>(\n function Tooltip(\n {\n className,\n children,\n title,\n direction = 'top',\n arrowSize = 6,\n offset = 8,\n },\n ref\n ) {\n const { shadowRoot } = useDevOverlayContext()\n if (!title) {\n return children\n }\n return (\n <BaseTooltip.Provider>\n <BaseTooltip.Root delay={400}>\n <BaseTooltip.Trigger\n ref={ref}\n render={(triggerProps) => {\n return <span {...triggerProps}>{children}</span>\n }}\n />\n\n <BaseTooltip.Portal container={shadowRoot}>\n <BaseTooltip.Positioner\n side={direction}\n sideOffset={offset + arrowSize}\n className=\"tooltip-positioner\"\n style={\n {\n '--anchor-width': `${arrowSize}px`,\n '--anchor-height': `${arrowSize}px`,\n } as React.CSSProperties\n }\n >\n <BaseTooltip.Popup\n className={cx('tooltip', className)}\n style={\n {\n '--arrow-size': `${arrowSize}px`,\n } as React.CSSProperties\n }\n >\n {title}\n <BaseTooltip.Arrow\n className={cx('tooltip-arrow', `tooltip-arrow--${direction}`)}\n style={\n {\n '--arrow-size': `${arrowSize}px`,\n } as React.CSSProperties\n }\n />\n </BaseTooltip.Popup>\n </BaseTooltip.Positioner>\n </BaseTooltip.Portal>\n </BaseTooltip.Root>\n </BaseTooltip.Provider>\n )\n }\n)\n","import { Tooltip } from '../tooltip/tooltip'\nimport { InfoIcon } from './segment-explorer'\n\nexport function SegmentSuggestion({\n possibleExtension,\n missingGlobalError,\n}: {\n possibleExtension: string\n missingGlobalError: boolean\n}) {\n const tooltip = missingGlobalError\n ? `No global-error.${possibleExtension} found: Add one to ensure users see a helpful message when an unexpected error occurs.`\n : null\n return (\n <span className=\"segment-explorer-suggestions\">\n <Tooltip className=\"segment-explorer-suggestions-tooltip\" title={tooltip}>\n <InfoIcon />\n </Tooltip>\n </span>\n )\n}\n","import './segment-explorer.css'\nimport {\n useSegmentTree,\n type SegmentTrieNode,\n} from '../../segment-explorer-trie'\nimport { cx } from '../../utils/cx'\nimport { SegmentBoundaryTrigger } from './segment-boundary-trigger'\nimport { Tooltip } from '../tooltip/tooltip'\nimport { useCallback, useMemo } from 'react'\nimport {\n BUILTIN_PREFIX,\n getBoundaryOriginFileType,\n isBoundaryFile,\n isBuiltinBoundaryFile,\n normalizeBoundaryFilename,\n} from '../../../../server/app-render/segment-explorer-path'\nimport { SegmentSuggestion } from './segment-suggestion'\nimport type { SegmentBoundaryType } from '../../../userspace/app/segment-explorer-node'\n\nconst isFileNode = (node: SegmentTrieNode) => {\n return !!node.value?.type && !!node.value?.pagePath\n}\n\n// Utility functions for global boundary management\nfunction traverseTreeAndResetBoundaries(node: SegmentTrieNode) {\n // Reset this node's boundary if it has setBoundaryType function\n if (node.value?.setBoundaryType) {\n node.value.setBoundaryType(null)\n }\n\n // Recursively traverse children\n Object.values(node.children).forEach((child) => {\n if (child) {\n traverseTreeAndResetBoundaries(child)\n }\n })\n}\n\nfunction countActiveBoundaries(node: SegmentTrieNode): number {\n let count = 0\n\n // Count this node's boundary override if it's active\n // Only count when there's a non \":boundary\" type and it has an active override (boundaryType is not null)\n // This means the file is showing an overridden boundary instead of its original file\n if (\n node.value?.setBoundaryType &&\n node.value.boundaryType !== null &&\n !isBoundaryFile(node.value.type)\n ) {\n count++\n }\n\n // Recursively count children\n Object.values(node.children).forEach((child) => {\n if (child) {\n count += countActiveBoundaries(child)\n }\n })\n\n return count\n}\n\nfunction PageRouteBar({ page }: { page: string }) {\n return (\n <div className=\"segment-explorer-page-route-bar\">\n <BackArrowIcon />\n <span className=\"segment-explorer-page-route-bar-path\">{page}</span>\n </div>\n )\n}\n\nfunction SegmentExplorerFooter({\n activeBoundariesCount,\n onGlobalReset,\n}: {\n activeBoundariesCount: number\n onGlobalReset: () => void\n}) {\n const hasActiveOverrides = activeBoundariesCount > 0\n\n return (\n <div className=\"segment-explorer-footer\">\n <button\n className={`segment-explorer-footer-button ${!hasActiveOverrides ? 'segment-explorer-footer-button--disabled' : ''}`}\n onClick={hasActiveOverrides ? onGlobalReset : undefined}\n disabled={!hasActiveOverrides}\n type=\"button\"\n >\n <span className=\"segment-explorer-footer-text\">\n Clear Segment Overrides\n </span>\n {hasActiveOverrides && (\n <span className=\"segment-explorer-footer-badge\">\n {activeBoundariesCount}\n </span>\n )}\n </button>\n </div>\n )\n}\n\nfunction FilePill({\n type,\n isBuiltin,\n isOverridden,\n filePath,\n fileName,\n}: {\n type: string\n isBuiltin: boolean\n isOverridden: boolean\n filePath: string\n fileName: string\n}) {\n return (\n <span\n className={cx(\n 'segment-explorer-file-label',\n `segment-explorer-file-label--${type}`,\n isBuiltin && 'segment-explorer-file-label--builtin',\n isOverridden && 'segment-explorer-file-label--overridden'\n )}\n onClick={() => {\n openInEditor({ filePath })\n }}\n >\n <span className=\"segment-explorer-file-label-text\">{fileName}</span>\n {isBuiltin ? <InfoIcon /> : <CodeIcon className=\"code-icon\" />}\n </span>\n )\n}\n\nexport function PageSegmentTree({ page }: { page: string }) {\n const tree = useSegmentTree()\n\n // Count active boundaries for the badge\n const activeBoundariesCount = useMemo(() => {\n return countActiveBoundaries(tree)\n }, [tree])\n\n // Global reset handler\n const handleGlobalReset = useCallback(() => {\n traverseTreeAndResetBoundaries(tree)\n }, [tree])\n\n return (\n <div\n data-nextjs-devtools-panel-segments-explorer\n style={{\n display: 'flex',\n flexDirection: 'column',\n height: '100%',\n }}\n >\n <PageRouteBar page={page} />\n <div\n className=\"segment-explorer-content\"\n data-nextjs-devtool-segment-explorer\n style={{\n flex: '1 1 auto',\n overflow: 'auto',\n }}\n >\n <PageSegmentTreeLayerPresentation node={tree} level={0} segment=\"\" />\n </div>\n <SegmentExplorerFooter\n activeBoundariesCount={activeBoundariesCount}\n onGlobalReset={handleGlobalReset}\n />\n </div>\n )\n}\n\nconst GLOBAL_ERROR_BOUNDARY_TYPE = 'global-error'\n\nfunction PageSegmentTreeLayerPresentation({\n segment,\n node,\n level,\n}: {\n segment: string\n node: SegmentTrieNode\n level: number\n}) {\n const childrenKeys = useMemo(\n () => Object.keys(node.children),\n [node.children]\n )\n\n const missingGlobalError = useMemo(() => {\n const existingBoundaries: string[] = []\n childrenKeys.forEach((key) => {\n const childNode = node.children[key]\n if (!childNode || !childNode.value) return\n const boundaryType = getBoundaryOriginFileType(childNode.value.type)\n const isGlobalConvention = boundaryType === GLOBAL_ERROR_BOUNDARY_TYPE\n if (\n // If global-* convention is not built-in, it's existed\n (isGlobalConvention &&\n !isBuiltinBoundaryFile(childNode.value.pagePath)) ||\n (!isGlobalConvention &&\n // If it's non global boundary, we check if file is boundary type\n isBoundaryFile(childNode.value.type))\n ) {\n existingBoundaries.push(boundaryType)\n }\n })\n\n return (\n level === 0 && !existingBoundaries.includes(GLOBAL_ERROR_BOUNDARY_TYPE)\n )\n }, [node.children, childrenKeys, level])\n\n const sortedChildrenKeys = childrenKeys.sort((a, b) => {\n // Prioritize files with extensions over directories\n const aHasExt = a.includes('.')\n const bHasExt = b.includes('.')\n if (aHasExt && !bHasExt) return -1\n if (!aHasExt && bHasExt) return 1\n\n // For files, sort by priority: layout > template > page > boundaries > others\n if (aHasExt && bHasExt) {\n const aType = node.children[a]?.value?.type\n const bType = node.children[b]?.value?.type\n\n // Define priority order\n const getTypePriority = (type: string | undefined): number => {\n if (!type) return 5\n if (type === 'layout') return 1\n if (type === 'template') return 2\n if (type === 'page') return 3\n if (isBoundaryFile(type)) return 4\n return 5\n }\n\n const aPriority = getTypePriority(aType)\n const bPriority = getTypePriority(bType)\n\n // Sort by priority first\n if (aPriority !== bPriority) {\n return aPriority - bPriority\n }\n\n // If same priority, sort by file path\n const aFilePath = node.children[a]?.value?.pagePath || ''\n const bFilePath = node.children[b]?.value?.pagePath || ''\n return aFilePath.localeCompare(bFilePath)\n }\n\n // For directories, sort alphabetically\n return a.localeCompare(b)\n })\n\n // If it's the 1st level and contains a file, use 'app' as the folder name\n const folderName = level === 0 && !segment ? 'app' : segment\n\n const folderChildrenKeys: string[] = []\n const filesChildrenKeys: string[] = []\n\n for (const childKey of sortedChildrenKeys) {\n const childNode = node.children[childKey]\n if (!childNode) continue\n\n // If it's a file node, add it to filesChildrenKeys\n if (isFileNode(childNode)) {\n filesChildrenKeys.push(childKey)\n continue\n }\n\n // Otherwise, it's a folder node, add it to folderChildrenKeys\n folderChildrenKeys.push(childKey)\n }\n\n const possibleExtension =\n normalizeBoundaryFilename(filesChildrenKeys[0] || '')\n .split('.')\n .pop() || 'js'\n\n let firstChild = null\n\n for (let i = sortedChildrenKeys.length - 1; i >= 0; i--) {\n const childNode = node.children[sortedChildrenKeys[i]]\n if (!childNode || !childNode.value) continue\n\n const isBoundary = isBoundaryFile(childNode.value.type)\n\n if (!firstChild && !isBoundary) {\n firstChild = childNode\n break\n }\n }\n let firstBoundaryChild = null\n for (const childKey of sortedChildrenKeys) {\n const childNode = node.children[childKey]\n if (!childNode || !childNode.value) continue\n if (isBoundaryFile(childNode.value.type)) {\n firstBoundaryChild = childNode\n break\n }\n }\n firstChild = firstChild || firstBoundaryChild\n\n const hasFilesChildren = filesChildrenKeys.length > 0\n const boundaries: Record<SegmentBoundaryType, string | null> = {\n 'not-found': null,\n loading: null,\n error: null,\n 'global-error': null,\n }\n\n filesChildrenKeys.forEach((childKey) => {\n const childNode = node.children[childKey]\n if (!childNode || !childNode.value) return\n if (isBoundaryFile(childNode.value.type)) {\n const boundaryType = getBoundaryOriginFileType(childNode.value.type)\n\n if (boundaryType in boundaries) {\n boundaries[boundaryType as keyof typeof boundaries] =\n childNode.value.pagePath || null\n }\n }\n })\n\n return (\n <>\n {hasFilesChildren && (\n <div\n className=\"segment-explorer-item\"\n data-nextjs-devtool-segment-explorer-segment={segment + '-' + level}\n >\n <div\n className=\"segment-explorer-item-row\"\n style={{\n // If it's children levels, show indents if there's any file at that level.\n // Otherwise it's empty folder, no need to show indents.\n ...{ paddingLeft: `${(level + 1) * 8}px` },\n }}\n >\n <div className=\"segment-explorer-item-row-main\">\n <div className=\"segment-explorer-filename\">\n {folderName && (\n <span className=\"segment-explorer-filename--path\">\n {folderName}\n {/* hidden slashes for testing snapshots */}\n <small>{'/'}</small>\n </span>\n )}\n {missingGlobalError && (\n <SegmentSuggestion\n possibleExtension={possibleExtension}\n missingGlobalError={missingGlobalError}\n />\n )}\n {/* display all the file segments in this level */}\n {filesChildrenKeys.length > 0 && (\n <span className=\"segment-explorer-files\">\n {filesChildrenKeys.map((fileChildSegment) => {\n const childNode = node.children[fileChildSegment]\n if (!childNode || !childNode.value) {\n return null\n }\n // If it's boundary node, which marks the existence of the boundary not the rendered status,\n // we don't need to present in the rendered files.\n if (isBoundaryFile(childNode.value.type)) {\n return null\n }\n // If it's a page/default file, don't show it as a separate label since it's represented by the dropdown button\n // if (\n // childNode.value.type === 'page' ||\n // childNode.value.type === 'default'\n // ) {\n // return null\n // }\n const filePath = childNode.value.pagePath\n const lastSegment = filePath.split('/').pop() || ''\n const isBuiltin = filePath.startsWith(BUILTIN_PREFIX)\n const fileName = normalizeBoundaryFilename(lastSegment)\n\n const tooltipMessage = isBuiltin\n ? `The default Next.js ${childNode.value.type} is being shown. You can customize this page by adding your own ${fileName} file to the app/ directory.`\n : null\n\n const isOverridden = childNode.value.boundaryType !== null\n\n return (\n <Tooltip\n key={fileChildSegment}\n className={\n 'segment-explorer-file-label-tooltip--' +\n (isBuiltin ? 'lg' : 'sm')\n }\n direction={isBuiltin ? 'right' : 'top'}\n title={tooltipMessage}\n offset={12}\n >\n <FilePill\n type={childNode.value.type}\n isBuiltin={isBuiltin}\n isOverridden={isOverridden}\n filePath={filePath}\n fileName={fileName}\n />\n </Tooltip>\n )\n })}\n </span>\n )}\n {firstChild && firstChild.value && (\n <SegmentBoundaryTrigger\n nodeState={firstChild.value}\n boundaries={boundaries}\n />\n )}\n </div>\n </div>\n </div>\n </div>\n )}\n\n {folderChildrenKeys.map((childSegment) => {\n const child = node.children[childSegment]\n if (!child) {\n return null\n }\n\n // If it's an folder segment without any files under it,\n // merge it with the segment in the next level.\n const nextSegment = hasFilesChildren\n ? childSegment\n : segment + ' / ' + childSegment\n return (\n <PageSegmentTreeLayerPresentation\n key={childSegment}\n segment={nextSegment}\n node={child}\n level={hasFilesChildren ? level + 1 : level}\n />\n )\n })}\n </>\n )\n}\n\nfunction openInEditor({ filePath }: { filePath: string }) {\n const params = new URLSearchParams({\n file: filePath,\n // Mark the file path is relative to the app directory,\n // The editor launcher will complete the full path for it.\n isAppRelativePath: '1',\n })\n fetch(\n `${\n process.env.__NEXT_ROUTER_BASEPATH || ''\n }/__nextjs_launch-editor?${params.toString()}`\n )\n}\n\nexport function InfoIcon(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path\n d=\"M14 8C14 11.3137 11.3137 14 8 14C4.68629 14 2 11.3137 2 8C2 4.68629 4.68629 2 8 2C11.3137 2 14 4.68629 14 8Z\"\n fill=\"var(--color-gray-400)\"\n />\n <path\n d=\"M7.75 7C8.30228 7.00001 8.75 7.44772 8.75 8V11.25H7.25V8.5H6.25V7H7.75ZM8 4C8.55228 4 9 4.44772 9 5C9 5.55228 8.55228 6 8 6C7.44772 6 7 5.55228 7 5C7 4.44772 7.44772 4 8 4Z\"\n fill=\"var(--color-gray-900)\"\n />\n </svg>\n )\n}\n\nfunction BackArrowIcon() {\n return (\n <svg\n width=\"20\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n fill=\"var(--color-gray-600)\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M4.5 11.25C4.5 11.3881 4.61193 11.5 4.75 11.5H14.4395L11.9395 9L13 7.93945L16.7803 11.7197L16.832 11.7764C17.0723 12.0709 17.0549 12.5057 16.7803 12.7803L13 16.5605L11.9395 15.5L14.4395 13H4.75C3.7835 13 3 12.2165 3 11.25V4.25H4.5V11.25Z\" />\n </svg>\n )\n}\n\nfunction CodeIcon(props: React.SVGProps<SVGSVGElement>) {\n return (\n <svg\n width=\"12\"\n height=\"12\"\n strokeLinejoin=\"round\"\n viewBox=\"0 0 16 16\"\n fill=\"currentColor\"\n {...props}\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M7.22763 14.1819L10.2276 2.18193L10.4095 1.45432L8.95432 1.09052L8.77242 1.81812L5.77242 13.8181L5.59051 14.5457L7.04573 14.9095L7.22763 14.1819ZM3.75002 12.0607L3.21969 11.5304L0.39647 8.70713C0.00594559 8.31661 0.00594559 7.68344 0.39647 7.29292L3.21969 4.46969L3.75002 3.93936L4.81068 5.00002L4.28035 5.53035L1.81068 8.00003L4.28035 10.4697L4.81068 11L3.75002 12.0607ZM12.25 12.0607L12.7804 11.5304L15.6036 8.70713C15.9941 8.31661 15.9941 7.68344 15.6036 7.29292L12.7804 4.46969L12.25 3.93936L11.1894 5.00002L11.7197 5.53035L14.1894 8.00003L11.7197 10.4697L11.1894 11L12.25 12.0607Z\"\n fill=\"currentColor\"\n />\n </svg>\n )\n}\n","import React, { useLayoutEffect, useRef } from 'react'\nimport { usePanelRouterContext } from '../../../../menu/context'\nimport { css } from '../../../../utils/css'\n\ninterface DevToolsHeaderProps {\n title: React.ReactNode\n children?: React.ReactNode\n}\nexport function DevToolsHeader({\n title,\n children,\n ref,\n}: DevToolsHeaderProps & { ref?: React.Ref<HTMLDivElement> }) {\n const { setPanel } = usePanelRouterContext()\n const buttonRef = useRef<HTMLButtonElement>(null)\n useLayoutEffect(() => {\n buttonRef.current?.focus()\n }, [])\n\n return (\n <div\n style={{\n width: '100%',\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'space-between',\n padding: '8px 20px',\n userSelect: 'none',\n WebkitUserSelect: 'none',\n borderBottom: '1px solid var(--color-gray-alpha-400)',\n }}\n ref={ref}\n >\n <h3\n style={{\n margin: 0,\n fontSize: '14px',\n color: 'var(--color-text-primary)',\n fontWeight: 'normal',\n }}\n >\n {title}\n </h3>\n {children}\n <button\n ref={buttonRef}\n id=\"_next-devtools-panel-close\"\n className=\"dev-tools-info-close-button\"\n onClick={() => {\n setPanel('panel-selector')\n }}\n aria-label=\"Close devtools panel\"\n style={{\n background: 'none',\n border: 'none',\n cursor: 'pointer',\n padding: '4px',\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n borderRadius: '4px',\n color: 'var(--color-gray-900)',\n }}\n >\n <XIcon />\n </button>\n <style>{css`\n .dev-tools-info-close-button:focus-visible {\n outline: var(--focus-ring);\n }\n `}</style>\n </div>\n )\n}\n\nfunction XIcon({ size = 22 }: { size?: number }) {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n >\n <path d=\"M18 6 6 18\" />\n <path d=\"m6 6 12 12\" />\n </svg>\n )\n}\n","export default function GearIcon() {\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 20 20\"\n fill=\"none\"\n >\n <path\n fill=\"currentColor\"\n fillRule=\"evenodd\"\n d=\"m9.7 3.736.045-.236h.51l.044.236a2.024 2.024 0 0 0 1.334 1.536c.19.066.375.143.554.23.618.301 1.398.29 2.03-.143l.199-.136.36.361-.135.199a2.024 2.024 0 0 0-.143 2.03c.087.179.164.364.23.554.224.65.783 1.192 1.536 1.334l.236.044v.51l-.236.044a2.024 2.024 0 0 0-1.536 1.334 4.95 4.95 0 0 1-.23.554 2.024 2.024 0 0 0 .143 2.03l.136.199-.361.36-.199-.135a2.024 2.024 0 0 0-2.03-.143c-.179.087-.364.164-.554.23a2.024 2.024 0 0 0-1.334 1.536l-.044.236h-.51l-.044-.236a2.024 2.024 0 0 0-1.334-1.536 4.952 4.952 0 0 1-.554-.23 2.024 2.024 0 0 0-2.03.143l-.199.136-.36-.361.135-.199a2.024 2.024 0 0 0 .143-2.03 4.958 4.958 0 0 1-.23-.554 2.024 2.024 0 0 0-1.536-1.334l-.236-.044v-.51l.236-.044a2.024 2.024 0 0 0 1.536-1.334 4.96 4.96 0 0 1 .23-.554 2.024 2.024 0 0 0-.143-2.03l-.136-.199.361-.36.199.135a2.024 2.024 0 0 0 2.03.143c.179-.087.364-.164.554-.23a2.024 2.024 0 0 0 1.334-1.536ZM8.5 2h3l.274 1.46c.034.185.17.333.348.394.248.086.49.186.722.3.17.082.37.074.526-.033l1.226-.839 2.122 2.122-.84 1.226a.524.524 0 0 0-.032.526c.114.233.214.474.3.722.061.177.21.314.394.348L18 8.5v3l-1.46.274a.524.524 0 0 0-.394.348 6.47 6.47 0 0 1-.3.722.524.524 0 0 0 .033.526l.839 1.226-2.122 2.122-1.226-.84a.524.524 0 0 0-.526-.032 6.477 6.477 0 0 1-.722.3.524.524 0 0 0-.348.394L11.5 18h-3l-.274-1.46a.524.524 0 0 0-.348-.394 6.477 6.477 0 0 1-.722-.3.524.524 0 0 0-.526.033l-1.226.839-2.122-2.122.84-1.226a.524.524 0 0 0 .032-.526 6.453 6.453 0 0 1-.3-.722.524.524 0 0 0-.394-.348L2 11.5v-3l1.46-.274a.524.524 0 0 0 .394-.348c.086-.248.186-.49.3-.722a.524.524 0 0 0-.033-.526l-.839-1.226 2.122-2.122 1.226.84a.524.524 0 0 0 .526.032 6.46 6.46 0 0 1 .722-.3.524.524 0 0 0 .348-.394L8.5 2Zm3 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm1.5 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\"\n clipRule=\"evenodd\"\n />\n </svg>\n )\n}\n","export function LoadingIcon() {\n return (\n <svg\n width=\"20px\"\n height=\"20px\"\n viewBox=\"0 0 20 20\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <circle\n cx=\"10\"\n cy=\"10\"\n r=\"7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeDasharray=\"32 12\"\n opacity=\"0.8\"\n >\n <animateTransform\n attributeName=\"transform\"\n type=\"rotate\"\n from=\"0 10 10\"\n to=\"360 10 10\"\n dur=\"1s\"\n repeatCount=\"indefinite\"\n />\n </circle>\n </svg>\n )\n}\n","\n import API from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\";\n import domAPI from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleDomAPI.js\";\n import insertFn from \"../../../build/webpack/loaders/devtool/devtool-style-inject.js\";\n import setAttributes from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\";\n import insertStyleElement from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/insertStyleElement.js\";\n import styleTagTransformFn from \"!../../../../../../node_modules/.pnpm/style-loader@4.0.0_webpack@5.98.0_@swc+core@1.11.24_@swc+helpers@0.5.15__esbuild@0.25.9_/node_modules/style-loader/dist/runtime/styleTagTransform.js\";\n import content, * as namedExport from \"!!../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./panel-router.css\";\n \n \n\nvar options = {};\n\noptions.styleTagTransform = styleTagTransformFn;\noptions.setAttributes = setAttributes;\noptions.insert = insertFn;\noptions.domAPI = domAPI;\noptions.insertStyleElement = insertStyleElement;\n\nvar update = API(content, options);\n\n\n\nexport * from \"!!../../../../../../node_modules/.pnpm/css-loader@7.1.2_@rspack+core@1.6.7_@swc+helpers@0.5.15__webpack@5.98.0_@swc+core@1.11.24_@sw_bx7gx6l2cs2trwgqreijicltyy/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./panel-router.css\";\n export default content && content.locals ? content.locals : undefined;\n","import { usePanelRouterContext, type PanelStateKind } from './context'\nimport { ChevronRight, DevtoolMenu, IssueCount } from './dev-overlay-menu'\nimport { DynamicPanel } from '../panel/dynamic-panel'\nimport {\n learnMoreLink,\n RouteInfoBody,\n} from '../components/errors/dev-tools-indicator/dev-tools-info/route-info'\nimport { PageSegmentTree } from '../components/overview/segment-explorer'\nimport { DevToolsHeader } from '../components/errors/dev-tools-indicator/dev-tools-info/dev-tools-header'\nimport { useDelayedRender } from '../hooks/use-delayed-render'\nimport {\n MENU_CURVE,\n MENU_DURATION_MS,\n} from '../components/errors/dev-tools-indicator/utils'\nimport { useDevOverlayContext } from '../../dev-overlay.browser'\nimport { createContext, useContext } from 'react'\nimport { useRenderErrorContext } from '../dev-overlay'\nimport {\n ACTION_DEV_INDICATOR_SET,\n ACTION_DEVTOOLS_POSITION,\n ACTION_DEVTOOLS_SCALE,\n ACTION_ERROR_OVERLAY_CLOSE,\n ACTION_ERROR_OVERLAY_OPEN,\n} from '../shared'\nimport GearIcon from '../icons/gear-icon'\nimport { LoadingIcon } from '../icons/loading-icon'\nimport { UserPreferencesBody } from '../components/errors/dev-tools-indicator/dev-tools-info/user-preferences'\nimport { useShortcuts } from '../hooks/use-shortcuts'\nimport { useUpdateAllPanelPositions } from '../components/devtools-indicator/devtools-indicator'\nimport { saveDevToolsConfig } from '../utils/save-devtools-config'\nimport './panel-router.css'\n\nconst MenuPanel = () => {\n const { setPanel, setSelectedIndex } = usePanelRouterContext()\n const { state, dispatch } = useDevOverlayContext()\n const { totalErrorCount } = useRenderErrorContext()\n const isAppRouter = state.routerType === 'app'\n\n return (\n <DevtoolMenu\n items={[\n totalErrorCount > 0 && {\n title: `${totalErrorCount} ${totalErrorCount === 1 ? 'issue' : 'issues'} found. Click to view details in the dev overlay.`,\n label: 'Issues',\n value: <IssueCount>{totalErrorCount}</IssueCount>,\n onClick: () => {\n if (state.isErrorOverlayOpen) {\n dispatch({\n type: ACTION_ERROR_OVERLAY_CLOSE,\n })\n setPanel(null)\n return\n }\n setPanel(null)\n setSelectedIndex(-1)\n if (totalErrorCount > 0) {\n dispatch({\n type: ACTION_ERROR_OVERLAY_OPEN,\n })\n }\n },\n },\n state.staticIndicator === 'disabled'\n ? undefined\n : state.staticIndicator === 'pending'\n ? {\n title: 'Loading...',\n label: 'Route',\n value: <LoadingIcon />,\n }\n : {\n title: `Current route is ${state.staticIndicator}.`,\n label: 'Route',\n value:\n state.staticIndicator === 'static' ? 'Static' : 'Dynamic',\n onClick: () => setPanel('route-type'),\n attributes: {\n 'data-nextjs-route-type': state.staticIndicator,\n },\n },\n !!process.env.TURBOPACK\n ? {\n title: 'Turbopack is enabled.',\n label: 'Bundler',\n value: 'Turbopack',\n }\n : {\n title:\n 'Learn about Turbopack and how to enable it in your application.',\n label: 'Bundler',\n value: (\n <a\n href=\"https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack\"\n target=\"_blank\"\n rel=\"noreferrer noopener\"\n className=\"turbopack-upgrade-link\"\n >\n {process.env.__NEXT_BUNDLER || 'Turbopack'}\n </a>\n ),\n },\n !!process.env.__NEXT_CACHE_COMPONENTS && {\n title: 'Cache Components is enabled.',\n label: 'Cache Components',\n value: 'Enabled',\n },\n isAppRouter && {\n label: 'Route Info',\n value: <ChevronRight />,\n onClick: () => setPanel('segment-explorer'),\n attributes: {\n 'data-segment-explorer': true,\n },\n },\n {\n label: 'Preferences',\n value: <GearIcon />,\n onClick: () => setPanel('preferences'),\n footer: true,\n attributes: {\n 'data-preferences': true,\n },\n },\n ]}\n />\n )\n}\n\n// a little hacky but it does the trick\nconst useToggleDevtoolsVisibility = () => {\n const { state, dispatch, shadowRoot } = useDevOverlayContext()\n return () => {\n dispatch({\n type: ACTION_DEV_INDICATOR_SET,\n disabled: !state.disableDevIndicator,\n })\n\n const menuElement = shadowRoot.getElementById('panel-route') as HTMLElement\n const indicatorElement = shadowRoot.getElementById(\n 'data-devtools-indicator'\n ) as HTMLElement\n\n if (menuElement && menuElement.firstElementChild) {\n const firstChild = menuElement.firstElementChild as HTMLElement\n const isCurrentlyHidden = firstChild.style.display === 'none'\n firstChild.style.display = isCurrentlyHidden ? '' : 'none'\n }\n\n if (indicatorElement) {\n const isCurrentlyHidden = indicatorElement.style.display === 'none'\n indicatorElement.style.display = isCurrentlyHidden ? '' : 'none'\n }\n }\n}\n\nexport const PanelRouter = () => {\n const { state } = useDevOverlayContext()\n const { triggerRef } = usePanelRouterContext()\n const toggleDevtools = useToggleDevtoolsVisibility()\n const isAppRouter = state.routerType === 'app'\n\n useShortcuts(\n state.hideShortcut ? { [state.hideShortcut]: toggleDevtools } : {},\n triggerRef\n )\n\n return (\n <>\n <PanelRoute name=\"panel-selector\">\n <MenuPanel />\n </PanelRoute>\n\n {/* TODO: NEXT-4644 */}\n <PanelRoute name=\"preferences\">\n <DynamicPanel\n sharePanelSizeGlobally={false}\n sizeConfig={{\n kind: 'fixed',\n height: 500 / state.scale,\n width: 480 + 32,\n }}\n closeOnClickOutside\n header={<DevToolsHeader title=\"Preferences\" />}\n >\n <UserPreferencesWrapper />\n </DynamicPanel>\n </PanelRoute>\n\n {state.staticIndicator !== 'disabled' &&\n state.staticIndicator !== 'pending' && (\n <PanelRoute name=\"route-type\">\n <DynamicPanel\n key={state.staticIndicator}\n sharePanelSizeGlobally={false}\n sizeConfig={{\n kind: 'fixed',\n height:\n state.staticIndicator === 'static'\n ? 300 / state.scale\n : 325 / state.scale,\n width: 400 / state.scale,\n }}\n closeOnClickOutside\n header={\n <DevToolsHeader\n title={`${state.staticIndicator === 'static' ? 'Static' : 'Dynamic'} Route`}\n />\n }\n >\n <div className=\"panel-content\">\n <RouteInfoBody\n routerType={state.routerType}\n isStaticRoute={state.staticIndicator === 'static'}\n />\n <InfoFooter\n href={learnMoreLink[state.routerType][state.staticIndicator]}\n />\n </div>\n </DynamicPanel>\n </PanelRoute>\n )}\n\n {isAppRouter && (\n <PanelRoute name=\"segment-explorer\">\n <DynamicPanel\n sharePanelSizeGlobally={false}\n sharePanelPositionGlobally={false}\n draggable\n sizeConfig={{\n kind: 'resizable',\n maxHeight: '90vh',\n maxWidth: '90vw',\n minHeight: 200 / state.scale,\n minWidth: 250 / state.scale,\n initialSize: {\n height: 375 / state.scale,\n width: 400 / state.scale,\n },\n }}\n header={<DevToolsHeader title=\"Route Info\" />}\n >\n <PageSegmentTree page={state.page} />\n </DynamicPanel>\n </PanelRoute>\n )}\n </>\n )\n}\n\nconst InfoFooter = ({ href }: { href: string }) => {\n return (\n <div className=\"dev-tools-info-button-container\">\n <a\n className=\"dev-tools-info-learn-more-button\"\n href={href}\n target=\"_blank\"\n rel=\"noreferrer noopener\"\n >\n Learn More\n </a>\n </div>\n )\n}\n\nconst UserPreferencesWrapper = () => {\n const { dispatch, state } = useDevOverlayContext()\n const { setPanel, setSelectedIndex } = usePanelRouterContext()\n const updateAllPanelPositions = useUpdateAllPanelPositions()\n\n return (\n <div className=\"user-preferences-wrapper\">\n <UserPreferencesBody\n theme={state.theme}\n position={state.devToolsPosition}\n scale={state.scale}\n setScale={(scale) => {\n dispatch({\n type: ACTION_DEVTOOLS_SCALE,\n scale,\n })\n }}\n setPosition={(devToolsPosition) => {\n dispatch({\n type: ACTION_DEVTOOLS_POSITION,\n devToolsPosition,\n })\n updateAllPanelPositions(devToolsPosition)\n }}\n hideShortcut={state.hideShortcut}\n setHideShortcut={(value) => {\n saveDevToolsConfig({ hideShortcut: value })\n }}\n hide={() => {\n dispatch({\n type: ACTION_DEV_INDICATOR_SET,\n disabled: true,\n })\n setSelectedIndex(-1)\n setPanel(null)\n fetch('/__nextjs_disable_dev_indicator', {\n method: 'POST',\n })\n }}\n />\n </div>\n )\n}\n\nexport const usePanelContext = () => useContext(PanelContext)\nconst PanelContext = createContext<{\n name: PanelStateKind\n mounted: boolean\n}>(null!)\n// this router can be enhanced by Activity and ViewTransition trivially when we want to use them\nfunction PanelRoute({\n children,\n name,\n}: {\n children: React.ReactNode\n name: PanelStateKind\n}) {\n const { panel } = usePanelRouterContext()\n const { mounted, rendered } = useDelayedRender(name === panel, {\n enterDelay: 0,\n exitDelay: MENU_DURATION_MS,\n })\n\n if (!mounted) return null\n\n return (\n <PanelContext\n value={{\n name,\n mounted,\n }}\n >\n <div\n id=\"panel-route\"\n className=\"panel-route\"\n style={\n {\n '--panel-opacity': rendered ? 1 : 0,\n '--panel-transition': `opacity ${MENU_DURATION_MS}ms ${MENU_CURVE}`,\n } as React.CSSProperties\n }\n >\n {children}\n </div>\n </PanelContext>\n )\n}\n","import { useEffect } from 'react'\nimport { getActiveElement } from '../components/errors/dev-tools-indicator/utils'\n\nexport function useShortcuts(\n shortcuts: Record<string, () => void>,\n rootRef: React.RefObject<HTMLElement | null>\n) {\n useEffect(() => {\n function handleKeyDown(e: KeyboardEvent) {\n if (isFocusedOnElement(rootRef)) return\n\n const keys = []\n\n if (e.metaKey) keys.push('Meta')\n if (e.ctrlKey) keys.push('Control')\n if (e.altKey) keys.push('Alt')\n if (e.shiftKey) keys.push('Shift')\n\n if (\n e.key !== 'Meta' &&\n e.key !== 'Control' &&\n e.key !== 'Alt' &&\n e.key !== 'Shift'\n ) {\n keys.push(e.code)\n }\n\n const shortcut = keys.join('+')\n\n if (shortcuts[shortcut]) {\n e.preventDefault()\n shortcuts[shortcut]()\n }\n }\n\n window.addEventListener('keydown', handleKeyDown)\n return () => window.removeEventListener('keydown', handleKeyDown)\n }, [rootRef, shortcuts])\n}\n\nfunction isFocusedOnElement(rootRef: React.RefObject<HTMLElement | null>) {\n const el = getActiveElement(rootRef.current)\n\n if (!el) return false\n\n if (\n el.contentEditable === 'true' ||\n el.tagName === 'INPUT' ||\n el.tagName === 'TEXTAREA' ||\n el.tagName === 'SELECT' ||\n el.dataset['shortcut-recorder'] === 'true'\n ) {\n // It's okay to trigger global keybinds from readonly inputs\n if (el.hasAttribute('readonly')) {\n return false\n }\n return true\n }\n\n return false\n}\n","import { createContext, useContext, useRef, useState } from 'react'\nimport { ShadowPortal } from './components/shadow-portal'\nimport { ComponentStyles } from './styles/component-styles'\nimport { ErrorOverlay } from './components/errors/error-overlay/error-overlay'\nimport { RenderError } from './container/runtime-error/render-error'\nimport { ScaleUpdater } from './styles/scale-updater'\nimport type { ReadyRuntimeError } from './utils/get-error-by-type'\nimport { DevToolsIndicator } from './components/devtools-indicator/devtools-indicator'\nimport { PanelRouter } from './menu/panel-router'\nimport { PanelRouterContext, type PanelStateKind } from './menu/context'\nimport { useDevOverlayContext } from '../dev-overlay.browser'\n\nexport const RenderErrorContext = createContext<{\n runtimeErrors: ReadyRuntimeError[]\n totalErrorCount: number\n}>(null!)\n\nexport const useRenderErrorContext = () => useContext(RenderErrorContext)\n\nexport function DevOverlay() {\n const [panel, setPanel] = useState<null | PanelStateKind>(null)\n const [selectedIndex, setSelectedIndex] = useState(-1)\n const { state, dispatch, getSquashedHydrationErrorDetails } =\n useDevOverlayContext()\n\n const triggerRef = useRef<HTMLButtonElement>(null)\n return (\n <ShadowPortal>\n <ScaleUpdater />\n <ComponentStyles />\n\n <RenderError state={state} isAppDir={true}>\n {({ runtimeErrors, totalErrorCount }) => {\n return (\n <>\n {state.showIndicator ? (\n <>\n <RenderErrorContext\n value={{ runtimeErrors, totalErrorCount }}\n >\n <PanelRouterContext\n value={{\n panel,\n setPanel,\n triggerRef,\n selectedIndex,\n setSelectedIndex,\n }}\n >\n <ErrorOverlay\n state={state}\n dispatch={dispatch}\n getSquashedHydrationErrorDetails={\n getSquashedHydrationErrorDetails\n }\n runtimeErrors={runtimeErrors}\n errorCount={totalErrorCount}\n />\n <PanelRouter />\n <DevToolsIndicator />\n </PanelRouterContext>\n </RenderErrorContext>\n </>\n ) : null}\n </>\n )\n }}\n </RenderError>\n </ShadowPortal>\n )\n}\n","import {\n ACTION_BEFORE_REFRESH,\n ACTION_BUILD_ERROR,\n ACTION_BUILD_OK,\n ACTION_DEBUG_INFO,\n ACTION_DEV_INDICATOR,\n ACTION_REFRESH,\n ACTION_ERROR_OVERLAY_CLOSE,\n ACTION_ERROR_OVERLAY_OPEN,\n ACTION_ERROR_OVERLAY_TOGGLE,\n ACTION_STATIC_INDICATOR,\n ACTION_UNHANDLED_ERROR,\n ACTION_UNHANDLED_REJECTION,\n ACTION_VERSION_INFO,\n useErrorOverlayReducer,\n ACTION_BUILDING_INDICATOR_HIDE,\n ACTION_BUILDING_INDICATOR_SHOW,\n ACTION_RENDERING_INDICATOR_HIDE,\n ACTION_RENDERING_INDICATOR_SHOW,\n ACTION_DEVTOOL_UPDATE_ROUTE_STATE,\n ACTION_DEVTOOLS_CONFIG,\n type OverlayState,\n type DispatcherEvent,\n ACTION_CACHE_INDICATOR,\n} from './dev-overlay/shared'\n\nimport {\n createContext,\n startTransition,\n useContext,\n useEffect,\n useInsertionEffect,\n useLayoutEffect,\n type ActionDispatch,\n} from 'react'\nimport { createRoot } from 'react-dom/client'\nimport type { CacheIndicatorState } from './dev-overlay/cache-indicator'\nimport { FontStyles } from './dev-overlay/font/font-styles'\nimport type { HydrationErrorState } from './shared/hydration-error'\nimport type { DebugInfo } from './shared/types'\nimport { DevOverlay } from './dev-overlay/dev-overlay'\nimport type { DevIndicatorServerState } from '../server/dev/dev-indicator-server-state'\nimport type { VersionInfo } from '../server/dev/parse-version-info'\nimport {\n insertSegmentNode,\n removeSegmentNode,\n getSegmentTrieRoot,\n} from './dev-overlay/segment-explorer-trie'\nimport type { SegmentNodeState } from './userspace/app/segment-explorer-node'\nimport type { DevToolsConfig } from './dev-overlay/shared'\nimport type { SegmentTrieData } from '../shared/lib/mcp-page-metadata-types'\n\nexport interface Dispatcher {\n onBuildOk(): void\n onBuildError(message: string): void\n onVersionInfo(versionInfo: VersionInfo): void\n onDebugInfo(debugInfo: DebugInfo): void\n onBeforeRefresh(): void\n onRefresh(): void\n onCacheIndicator(status: CacheIndicatorState): void\n onStaticIndicator(status: 'pending' | 'static' | 'dynamic' | 'disabled'): void\n onDevIndicator(devIndicator: DevIndicatorServerState): void\n onDevToolsConfig(config: DevToolsConfig): void\n onUnhandledError(reason: Error): void\n onUnhandledRejection(reason: Error): void\n openErrorOverlay(): void\n closeErrorOverlay(): void\n toggleErrorOverlay(): void\n buildingIndicatorHide(): void\n buildingIndicatorShow(): void\n renderingIndicatorHide(): void\n renderingIndicatorShow(): void\n segmentExplorerNodeAdd(nodeState: SegmentNodeState): void\n segmentExplorerNodeRemove(nodeState: SegmentNodeState): void\n segmentExplorerUpdateRouteState(page: string): void\n}\n\ntype Dispatch = ReturnType<typeof useErrorOverlayReducer>[1]\nlet maybeDispatch: Dispatch | null = null\nconst queue: Array<(dispatch: Dispatch) => void> = []\n\n// Global state store for accessing current overlay state from outside React context\ntype OverlayStateWithRouter = OverlayState & { routerType: 'pages' | 'app' }\n\nlet currentOverlayState: OverlayStateWithRouter | null = null\n\nexport function getSerializedOverlayState(): OverlayStateWithRouter | null {\n // Serialize error objects properly since Error properties are non-enumerable\n // This is used when sending state via HMR/JSON.stringify\n if (!currentOverlayState) return null\n\n return {\n ...currentOverlayState,\n errors: currentOverlayState.errors.map((errorEvent: any) => ({\n ...errorEvent,\n error: errorEvent.error\n ? {\n name: errorEvent.error.name,\n message: errorEvent.error.message,\n stack: errorEvent.error.stack,\n }\n : null,\n })),\n }\n}\n\nexport function getSegmentTrieData(): SegmentTrieData | null {\n if (!currentOverlayState) {\n return null\n }\n const trieRoot = getSegmentTrieRoot()\n return {\n segmentTrie: trieRoot,\n routerType: currentOverlayState.routerType,\n }\n}\n\n// Events might be dispatched before we get a `dispatch` from React (e.g. console.error during module eval).\n// We need to queue them until we have a `dispatch` function available.\nfunction createQueuable<Args extends any[]>(\n queueableFunction: (dispatch: Dispatch, ...args: Args) => void\n) {\n return (...args: Args) => {\n if (maybeDispatch) {\n queueableFunction(maybeDispatch, ...args)\n } else {\n queue.push((dispatch: Dispatch) => {\n queueableFunction(dispatch, ...args)\n })\n }\n }\n}\n\n// TODO: Extract into separate functions that are imported\nexport const dispatcher: Dispatcher = {\n onBuildOk: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_BUILD_OK })\n }),\n onBuildError: createQueuable((dispatch: Dispatch, message: string) => {\n dispatch({ type: ACTION_BUILD_ERROR, message })\n }),\n onBeforeRefresh: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_BEFORE_REFRESH })\n }),\n onRefresh: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_REFRESH })\n }),\n onVersionInfo: createQueuable(\n (dispatch: Dispatch, versionInfo: VersionInfo) => {\n dispatch({ type: ACTION_VERSION_INFO, versionInfo })\n }\n ),\n onCacheIndicator: createQueuable(\n (dispatch: Dispatch, status: CacheIndicatorState) => {\n dispatch({ type: ACTION_CACHE_INDICATOR, cacheIndicator: status })\n }\n ),\n onStaticIndicator: createQueuable(\n (\n dispatch: Dispatch,\n status: 'pending' | 'static' | 'dynamic' | 'disabled'\n ) => {\n dispatch({ type: ACTION_STATIC_INDICATOR, staticIndicator: status })\n }\n ),\n onDebugInfo: createQueuable((dispatch: Dispatch, debugInfo: DebugInfo) => {\n dispatch({ type: ACTION_DEBUG_INFO, debugInfo })\n }),\n onDevIndicator: createQueuable(\n (dispatch: Dispatch, devIndicator: DevIndicatorServerState) => {\n dispatch({ type: ACTION_DEV_INDICATOR, devIndicator })\n }\n ),\n onDevToolsConfig: createQueuable(\n (dispatch: Dispatch, devToolsConfig: DevToolsConfig) => {\n dispatch({ type: ACTION_DEVTOOLS_CONFIG, devToolsConfig })\n }\n ),\n onUnhandledError: createQueuable((dispatch: Dispatch, error: Error) => {\n dispatch({\n type: ACTION_UNHANDLED_ERROR,\n reason: error,\n })\n }),\n onUnhandledRejection: createQueuable((dispatch: Dispatch, error: Error) => {\n dispatch({\n type: ACTION_UNHANDLED_REJECTION,\n reason: error,\n })\n }),\n openErrorOverlay: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_ERROR_OVERLAY_OPEN })\n }),\n closeErrorOverlay: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_ERROR_OVERLAY_CLOSE })\n }),\n toggleErrorOverlay: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_ERROR_OVERLAY_TOGGLE })\n }),\n buildingIndicatorHide: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_BUILDING_INDICATOR_HIDE })\n }),\n buildingIndicatorShow: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_BUILDING_INDICATOR_SHOW })\n }),\n renderingIndicatorHide: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_RENDERING_INDICATOR_HIDE })\n }),\n renderingIndicatorShow: createQueuable((dispatch: Dispatch) => {\n dispatch({ type: ACTION_RENDERING_INDICATOR_SHOW })\n }),\n segmentExplorerNodeAdd: createQueuable(\n (_: Dispatch, nodeState: SegmentNodeState) => {\n insertSegmentNode(nodeState)\n }\n ),\n segmentExplorerNodeRemove: createQueuable(\n (_: Dispatch, nodeState: SegmentNodeState) => {\n removeSegmentNode(nodeState)\n }\n ),\n segmentExplorerUpdateRouteState: createQueuable(\n (dispatch: Dispatch, page: string) => {\n dispatch({ type: ACTION_DEVTOOL_UPDATE_ROUTE_STATE, page })\n }\n ),\n}\n\nfunction replayQueuedEvents(dispatch: NonNullable<typeof maybeDispatch>) {\n try {\n for (const queuedFunction of queue) {\n queuedFunction(dispatch)\n }\n } finally {\n // TODO: What to do with failed events?\n queue.length = 0\n }\n}\n\nfunction DevOverlayRoot({\n enableCacheIndicator,\n getOwnerStack,\n getSquashedHydrationErrorDetails,\n isRecoverableError,\n routerType,\n shadowRoot,\n}: {\n enableCacheIndicator: boolean\n getOwnerStack: (error: Error) => string | null | undefined\n getSquashedHydrationErrorDetails: (error: Error) => HydrationErrorState | null\n isRecoverableError: (error: Error) => boolean\n routerType: 'app' | 'pages'\n shadowRoot: ShadowRoot\n}) {\n const [state, dispatch] = useErrorOverlayReducer(\n routerType,\n getOwnerStack,\n isRecoverableError,\n enableCacheIndicator\n )\n\n useEffect(() => {\n currentOverlayState = { ...state, routerType }\n }, [state, routerType])\n\n useLayoutEffect(() => {\n const portalNode = shadowRoot.host\n if (state.theme === 'dark') {\n portalNode.classList.add('dark')\n portalNode.classList.remove('light')\n } else if (state.theme === 'light') {\n portalNode.classList.add('light')\n portalNode.classList.remove('dark')\n } else {\n portalNode.classList.remove('dark')\n portalNode.classList.remove('light')\n }\n }, [shadowRoot, state.theme])\n\n useInsertionEffect(() => {\n maybeDispatch = dispatch\n\n // Can't schedule updates from useInsertionEffect, so we need to defer.\n // Could move this into a passive Effect but we don't want replaying when\n // we reconnect.\n const replayTimeout = setTimeout(() => {\n replayQueuedEvents(dispatch)\n })\n\n return () => {\n maybeDispatch = null\n clearTimeout(replayTimeout)\n }\n }, [])\n\n return (\n <>\n {/* Fonts can only be loaded outside the Shadow DOM. */}\n <FontStyles />\n <DevOverlayContext\n value={{\n dispatch,\n getSquashedHydrationErrorDetails,\n shadowRoot,\n state,\n }}\n >\n <DevOverlay />\n </DevOverlayContext>\n </>\n )\n}\nexport const DevOverlayContext = createContext<{\n shadowRoot: ShadowRoot\n state: OverlayState & {\n routerType: 'pages' | 'app'\n }\n dispatch: ActionDispatch<[action: DispatcherEvent]>\n getSquashedHydrationErrorDetails: (error: Error) => HydrationErrorState | null\n}>(null!)\nexport const useDevOverlayContext = () => useContext(DevOverlayContext)\n\nlet isPagesMounted = false\nlet isAppMounted = false\n\nfunction getSquashedHydrationErrorDetailsApp() {\n // We don't squash hydration errors in the App Router.\n return null\n}\n\nexport function renderAppDevOverlay(\n getOwnerStack: (error: Error) => string | null | undefined,\n isRecoverableError: (error: Error) => boolean,\n enableCacheIndicator: boolean\n): void {\n if (isPagesMounted) {\n // Switching between App and Pages Router is always a hard navigation\n // TODO: Support soft navigation between App and Pages Router\n throw new Error(\n 'Next DevTools: Pages Dev Overlay is already mounted. This is a bug in Next.js'\n )\n }\n\n if (!isAppMounted) {\n // React 19 will not throw away `<script>` elements in a container it owns.\n // This ensures the actual user-space React does not unmount the Dev Overlay.\n const script = document.createElement('script')\n script.style.display = 'block'\n // Although the style applied to the shadow host is isolated,\n // the element that attached the shadow host (i.e. \"script\")\n // is still affected by the parent's style (e.g. \"body\"). This may\n // occur style conflicts like \"display: flex\", with other children\n // elements therefore give the shadow host an absolute position.\n script.style.position = 'absolute'\n script.setAttribute('data-nextjs-dev-overlay', 'true')\n\n const container = document.createElement('nextjs-portal')\n\n script.appendChild(container)\n document.body.appendChild(script)\n\n const root = createRoot(container, {\n identifierPrefix: 'ndt-',\n // We don't have design for a default Transition indicator for the NDT frontend.\n // So we disable React's built-in one to not conflict with the one for the actual Next.js app.\n onDefaultTransitionIndicator: () => () => {},\n })\n\n const shadowRoot = container.attachShadow({ mode: 'open' })\n\n startTransition(() => {\n // TODO: Dedicated error boundary or root error callbacks?\n // At least it won't unmount any user code if it errors.\n root.render(\n <DevOverlayRoot\n enableCacheIndicator={enableCacheIndicator}\n getOwnerStack={getOwnerStack}\n getSquashedHydrationErrorDetails={getSquashedHydrationErrorDetailsApp}\n isRecoverableError={isRecoverableError}\n routerType=\"app\"\n shadowRoot={shadowRoot}\n />\n )\n })\n\n isAppMounted = true\n }\n}\n\nexport function renderPagesDevOverlay(\n getOwnerStack: (error: Error) => string | null | undefined,\n getSquashedHydrationErrorDetails: (\n error: Error\n ) => HydrationErrorState | null,\n isRecoverableError: (error: Error) => boolean\n): void {\n if (isAppMounted) {\n // Switching between App and Pages Router is always a hard navigation\n // TODO: Support soft navigation between App and Pages Router\n throw new Error(\n 'Next DevTools: App Dev Overlay is already mounted. This is a bug in Next.js'\n )\n }\n\n if (!isPagesMounted) {\n const container = document.createElement('nextjs-portal')\n // Although the style applied to the shadow host is isolated,\n // the element that attached the shadow host (i.e. \"script\")\n // is still affected by the parent's style (e.g. \"body\"). This may\n // occur style conflicts like \"display: flex\", with other children\n // elements therefore give the shadow host an absolute position.\n container.style.position = 'absolute'\n\n // Pages Router runs with React 18 or 19 so we can't use the same trick as with\n // App Router. We just reconnect the container if React wipes it e.g. when\n // we recover from a shell error via createRoot()\n new MutationObserver((records) => {\n for (const record of records) {\n if (record.type === 'childList') {\n for (const node of record.removedNodes) {\n if (node === container) {\n // Reconnect the container to the body\n document.body.appendChild(container)\n }\n }\n }\n }\n }).observe(document.body, {\n childList: true,\n })\n document.body.appendChild(container)\n\n const root = createRoot(container, { identifierPrefix: 'ndt-' })\n\n const shadowRoot = container.attachShadow({ mode: 'open' })\n\n startTransition(() => {\n // TODO: Dedicated error boundary or root error callbacks?\n // At least it won't unmount any user code if it errors.\n root.render(\n <DevOverlayRoot\n // Pages Router does not support Cache Components\n enableCacheIndicator={false}\n getOwnerStack={getOwnerStack}\n getSquashedHydrationErrorDetails={getSquashedHydrationErrorDetails}\n isRecoverableError={isRecoverableError}\n routerType=\"pages\"\n shadowRoot={shadowRoot}\n />\n )\n })\n\n isPagesMounted = true\n }\n}\n"],"names":["i","c","o","document","btoa","unescape","encodeURIComponent","JSON","e","n","Object","TypeError","l","parseInt","isNaN","arguments","Error","t","Symbol","R","Array","Reflect","s","Math","window","Map","Set","RegExp","Date","String","reportError","process","console","WeakMap","AbortController","r","u","d","a","setTimeout","p","WeakSet","matchMedia","Promise","performance","navigator","clearTimeout","getComputedStyle","FormData","queueMicrotask","CSS","DOMRect","HTMLElement","Node","devicePixelRatio","navigation","__REACT_DEVTOOLS_GLOBAL_HOOK__","setImmediate","MessageChannel","__nccwpck_require__","MutationObserver","Number","URL","atob","BigInt","Z","__webpack_require__","previousBodyPaddingRight","previousBodyOverflowSetting","regexNextStatic","digestSym","for","NEXT_DEV_TOOLS_SCALE","Small","BASE_SIZE","Medium","Large","ACTION_CACHE_INDICATOR","ACTION_STATIC_INDICATOR","ACTION_BUILD_OK","ACTION_BUILD_ERROR","ACTION_BEFORE_REFRESH","ACTION_REFRESH","ACTION_VERSION_INFO","ACTION_UNHANDLED_ERROR","ACTION_UNHANDLED_REJECTION","ACTION_DEBUG_INFO","ACTION_DEV_INDICATOR","ACTION_DEV_INDICATOR_SET","ACTION_ERROR_OVERLAY_OPEN","ACTION_ERROR_OVERLAY_CLOSE","ACTION_ERROR_OVERLAY_TOGGLE","ACTION_BUILDING_INDICATOR_SHOW","ACTION_BUILDING_INDICATOR_HIDE","ACTION_RENDERING_INDICATOR_SHOW","ACTION_RENDERING_INDICATOR_HIDE","ACTION_DEVTOOLS_POSITION","ACTION_DEVTOOLS_PANEL_POSITION","ACTION_DEVTOOLS_SCALE","ACTION_DEVTOOLS_CONFIG","STORAGE_KEY_PANEL_POSITION_PREFIX","STORE_KEY_PANEL_SIZE_PREFIX","STORE_KEY_SHARED_PANEL_SIZE","STORE_KEY_SHARED_PANEL_LOCATION","ACTION_DEVTOOL_UPDATE_ROUTE_STATE","REACT_ERROR_STACK_BOTTOM_FRAME_REGEX","getStackIgnoringStrictMode","stack","split","shouldDisableDevIndicator","env","__NEXT_DEV_INDICATOR","toString","devToolsInitialPositionFromNextConfig","__NEXT_DEV_INDICATOR_POSITION","INITIAL_OVERLAY_STATE","nextId","buildError","errors","notFound","renderingIndicator","cacheIndicator","staticIndicator","showIndicator","disableDevIndicator","buildingIndicator","refreshState","type","versionInfo","installed","staleness","debugInfo","devtoolsFrontendUrl","undefined","devToolsPosition","devToolsPanelPosition","devToolsPanelSize","scale","page","theme","hideShortcut","css","strings","keys","lastIndex","length","str","slice","reduce","replace","trim","FontStyles","t0","$","_c","useInsertionEffect","_temp","style","createElement","textContent","head","appendChild","removeChild","ShadowPortal","t1","children","useDevOverlayContext","shadowRoot","createPortal","decodeHex","hexStr","num","fromCodePoint","DECODE_REGEX","MAGIC_IDENTIFIER_REGEX","deobfuscateModuleId","moduleId","linkRegex","HotlinkedText","props","text","matcher","deobfuscatedParts","deobfuscateTextParts","withoutFreeCall","parts","regex","source","match","exec","matchStart","index","matchEnd","ident","rawText","substring","push","decoded","decodeMagicIdentifier","identifier","matches","inner","output","mode","Mode","buffer","char","importedModuleMatch","modulePathWithMetadata","cleaned","t2","outerIndex","part","map","rawPart","test","href","link","linkClassName","replacementRegExes","isWebpackInternalResource","file","formatFrameSourceFile","getOriginalStackFrame","response","resolve","error","reason","external","sourceStackFrame","originalStackFrame","originalCodeFrame","ignored","_getOriginalStackFrame","body","status","value","catch","err","message","getOriginalStackFrames","frames","isAppDir","res","data","req","isServer","isEdgeServer","isAppDirectory","fetch","method","stringify","ok","json","all","frame","getFrameSource","isWebpackFrame","parsedPath","location","globalThis","origin","protocol","pathname","line1","column1","useOpenInEditor","params","URLSearchParams","append","self","__NEXT_ROUTER_BASEPATH","then","cause","ExternalIcon","SourceMappingErrorIcon","FileIcon","lang","toLowerCase","Json","Js","Ts","File","React","formatCodeFrame","codeFrame","lines","miniLeadingSpacesLength","line","stripAnsi","filter","Boolean","v","pop","min","NaN","indexOf","join","CodeFrame","stackFrame","parsedLineStates","useMemo","decodedLines","groupCodeFrameLines","formattedFrame","Anser","use_classes","remove_empty","token","content","includes","segments","segment","AnserJsonEntry","lineNumberToken","parsedLine","lineNumber","isErroredLine","open","fileExtension","methodName","lineIndex","lineNumberProps","entry","entryIndex","color","fg","decoration","fontWeight","fontStyle","DialogBody","className","DialogContent","styles","cx","args","state","action","_temp3","_temp2","useCopy","t3","t4","clipboard","writeText","copyState","dispatch","isPending","copy","reset","CopyButton","actionLabel","disabled","getContent","icon","rest","successLabel","t5","t7","t8","t10","warn","timeoutId","isDisabled","label","renderedIcon","t6","t9","CopyIcon","CopySuccessIcon","NodeJsIcon","t11","t12","maskType","NodeJsDisabledIcon","NodejsInspectorButton","defaultDevtoolsFrontendUrl","statusText","devtoolsFrontendUrlState","attachDebuggerAction","isAttachingDebugger","useActionState","useEffect","attachDebugger","startTransition","CopyErrorButton","generateErrorInfo","REACT_HYDRATION_ERROR_LINK","NEXTJS_HYDRATION_ERROR_LINK","errorMessagesWithComponentStackDiff","isErrorMessageWithComponentStackDiff","msg","some","docsURLAllowlist","docsLinkMatcher","url","startsWith","DocsLinkButton","errorMessage","getDocsURLFromErrorMessage","matcherFunc","links","urls","from","matchAll","docsURL","DocsIcon","ErrorOverlayToolbar","feedbackButton","ThumbsUp","ThumbsDown","ErrorFeedback","errorCode","votedMap","setVotedMap","useState","Record","voted","__NEXT_TELEMETRY_DISABLED","handleFeedback","useCallback","wasHelpful","prev","hasVoted","translate","ErrorOverlayFooter","ErrorMessage","errorType","isExpanded","setIsExpanded","isTooTall","setIsTooTall","messageRef","useRef","current","scrollHeight","useLayoutEffect","shouldTruncate","ErrorTypeLabel","LeftArrow","title","RightArrow","ErrorOverlayPagination","t13","t15","t16","t19","t20","t21","runtimeErrors","activeIdx","onActiveIndexChange","max","handlePrevious","handleNext","buttonLeft","buttonRight","nav","setNav","el","onNav","root","getRootNode","handler","key","preventDefault","stopPropagation","addEventListener","removeEventListener","root_0","ShadowRoot","activeElement","blur","t14","t17","t18","EclipseIcon","VersionStalenessInfo","bundlerName","bb0","getStaleness","expected","indicatorClass","versionLabel","isTurbopack","T0","ErrorOverlayNav","setActiveIndex","__NEXT_BUNDLER","Notch","side","Tail","CSS_SELECTORS_TO_EXCLUDE_ON_CLICK_OUTSIDE","Dialog","cssSelectorsToExclude","ariaDescribedBy","ariaLabelledBy","onClose","dialogRef","hasFocus","role","setRole","element","listener","contains","target","cssSelector","closest","passive","handleFocus","dialog","initialActiveElement","focus","e_0","ErrorOverlayDialog","footer","DialogHeader","ErrorOverlayDialogHeader","ErrorOverlayDialogBody","activeLocks","Overlay","paddingRight","overflow","scrollBarGap","innerWidth","documentElement","clientWidth","ErrorOverlayOverlay","OVERLAY_STYLES","ErrorOverlayBottomStack","stackCount","errorCount","EnvironmentNameLabel","environmentName","getActiveElement","node","useClickOutsideAndEscape","rootRef","triggerRef","active","close","ownerDocument","ownerDocumentEl","handleClickOutside","event","getBoundingClientRect","clientX","left","right","clientY","top","bottom","handleKeyDown","event_0","MENU_CURVE","Fader","forwardRef","ref","stop","height","Resizer","resizerRef","measure","setHeight","measuring","setMeasuring","setElement","timerId","observer","ResizeObserver","contentRect","observe","disconnect","useMeasureHeight","transition","OverlayBackdrop","fixed","ErrorOverlayLayout","fireOpenFocus","t23","t24","t25","t26","t27","isBuildError","dialogResizerRef","rendered","transitionDurationMs","animationProps","animating","setAnimating","faderRef","hasFooter","onOpenFocus","rootNode","useEffectEvent","rootNode_0","onTab","focusableElements","getFocusableNodes","querySelectorAll","firstFocusableNode","lastFocusableNode","shiftKey","id","opacity","currentTarget","scrollTop","onScroll","propertyName","onTransitionEnd","t22","EditorLink","column","Terminal","importTraceFiles","getFile","contentFileName","shift","fileName","parsedColumn","hasLocation","getImportTraceFiles","files","unshift","importTraceFile","getErrorTextFromBuildErrorMessage","multiLineMessage","BuildError","formattedMessage","decodedOutput","noop","CallStackFrame","f","hasSource","fileSource","ChevronUpDownIcon","CallStack","isIgnoreListOpen","ignoredFramesTally","onToggleIgnoreList","frameIndex","CALL_STACK_STYLES","ErrorOverlayCallStack","initialDialogHeight","setIsIgnoreListOpen","tally","currentHeight","CollapseIcon","collapsed","transform","fill","PseudoHtmlDiff","componentStacks","reactOutputComponentDiff","isDiffCollapsed","toggleCollapseHtml","reactComponentDiffLines","forEach","isDiffLine","isHighlightedLine","hasSign","sign","signIndex","prefix","suffix","htmlComponents","symbolError","getErrorSource","useFrames","RuntimeError","firstFirstPartyFrameIndex","findIndex","firstFrame","matchLinkType","HydrationErrorDescription","GenericErrorDescription","envPrefix","DynamicMetadataErrorDescription","variant","BlockingPageLoadErrorDescription","refinement","noErrorDetails","Errors","getSquashedHydrationErrorDetails","useActiveRuntimeError","ReadyRuntimeError","isLoading","activeError","errorDetails","useErrorDetails","getHydrationErrorDetails","pagesRouterErrorDetails","warning","notes","diff","diffLog","maybeComponentStackDiff","trimmedMessage","diffs","displayedMessage","getHydrationErrorStackInfo","hydrationErrorDetails","isRuntimeData","blockingRouteErrorDetails","__NEXT_ERROR_CODE","digest","find","name","visibleFrames","stackLines","decodedCodeFrame","isServerError","maybeNotes","maybeDiff","EyeIcon","LightIcon","DarkIcon","SystemIcon","modifierKeys","ShortcutRecorder","onChange","pristine","setPristine","show","setShow","setKeys","success","setSuccess","timeoutRef","buttonRef","hasShortcut","handleValidation","next","code","existingNonModifierIndex","next_0","next_1","next_2","keyOrderIndex","insertIndex","splice","clear","onBlur","onStart","e_1","key_0","BottomArrow","Kbd","toUpperCase","renderKey","isSymbol","parseKeyCode","codeToKeyMap","Minus","Equal","BracketLeft","BracketRight","Backslash","Semicolon","Quote","Comma","Period","Backquote","Space","Slash","IntlBackslash","MetaKey","isApple","isMac","testPlatform","maxTouchPoints","minWidth","display","IconCross","SHORTCUT_RECORDER_STYLES","re","platform","devToolsConfigSchema","z","optional","width","nullable","queuedConfigPatch","timer","flushPatch","headers","keepalive","saveDevToolsConfig","patch","validation","deepMerge","isArray","result","sourceValue","targetValue","UserPreferencesBody","setIsPending","t28","t29","t30","t31","t32","t33","t34","t35","hide","setHideShortcut","setPosition","setScale","position","useRestartServer","invalidateFileSystemCache","serverRestarted","executionId","log","curId","restartRes","resolveTimeout","reload","restartServer","host","portal","classList","remove","add","handleThemeChange","handlePositionChange","handleSizeChange","entries","__NEXT_BUNDLER_HAS_PERSISTENT_CACHE","value_0","Select","ThemeIcon","DEV_TOOLS_INFO_USER_PREFERENCES_STYLES","ChevronDownIcon","ComponentStyles","overlay","errorLayout","containerRuntimeErrorStyles","useDelayedRender","options","mounted","setMounted","setRendered","enterDelay","exitDelay","renderTimeout","unmountTimeout","ErrorOverlay","TURBOPACK","isErrorOverlayOpen","commonProps","RenderError","RenderRuntimeError","lookups","setLookups","ready","idx","nextError","getErrorByType","promiseFactory","cachedPromise","baseError","runtime","resolved","m","RenderBuildError","totalErrorCount","ScaleUpdater","setProperty","Cross","Warning","PanelRouterContext","createContext","usePanelRouterContext","useContext","getIndicatorOffset","INDICATOR_PADDING","BASE_LOGO_SIZE","Status","StatusIndicator","onClick","statusDotColor","backgroundColor","AnimateStatusText","showEllipsis","NextLogo","issueCount","animationDurationMs","lastUpdatedTimeStamp","animate","setAnimate","setWidth","buttonProps","onTriggerClick","useRenderErrorContext","SIZE","panel","isMenuOpen","hasError","isErrorExpanded","setIsErrorExpanded","previousHasError","setPreviousHasError","dismissed","setDismissed","newErrorDetected","deltaMs","now","isCacheFilling","isCacheBypassing","shouldShowStatus","showStatusIndicator","measuredWidth","currentStatus","displayStatus","setPanel","AnimateCount","count","CacheBypassBadge","NextMark","Toast","DragContext","DragContextValue","DragProvider","handlesRef","register","unregister","delete","handles","useDragContext","DragHandle","internalRef","ctx","HTMLDivElement","setRef","cursor","Draggable","avoidZone","currentCorner","dragHandleSelector","onDragStart","padding","setCurrentCorner","disableDrag","machine","cleanup","x","y","translation","lastTimestamp","velocities","cancel","releasePointerCapture","pointerId","removeProperty","set","corner","onAnimationEnd","onPointerMove","dx","dy","sqrt","threshold","setPointerCapture","userSelect","webkitUserSelect","currentPosition","shouldAddToHistory","timestamp","onDrag","onPointerUp","velocity","calculateVelocity","history","oldestPoint","latestPoint","timeDelta","velocityX","velocityY","onDragEnd","button","isValidDragHandle","size","has","parentElement","offset","triggerWidth","triggerHeight","scrollbarWidth","getAbsolutePosition","basePosition","rel","allCorners","distances","nearest","distance","project","offsetWidth","offsetHeight","corner_0","isRight","isBottom","x_0","y_0","innerHeight","delta","square","pos","translation_0","d_0","useDrag","drag","initialVelocity","decelerationRate","DevToolsIndicator","updateAllPanelPositions","useUpdateAllPanelPositions","vertical","horizontal","boxShadow","setSelectedIndex","newPanel","panelPositionKeys","panelPositionPatch","MenuContext","MenuItem","isInteractive","closeMenu","selectedIndex","selected","click","DevtoolMenu","closeOnClickOutside","items","usePanelContext","menuRef","fireInitialSelectMenuItem","selectMenuItem","indicatorOffset","indicatorVertical","indicatorHorizontal","verticalOffset","positionStyle","definedItems","item","itemsAboveFooter","itemsBelowFooter","totalClickableItems","clickableItems","ctrlKey","outline","WebkitFontSmoothing","flexDirection","alignItems","background","backgroundClip","borderRadius","fontFamily","zIndex","border","getAdjustedIndex","attributes","adjustedIndex","targetIndex","IssueCount","ChevronRight","getAttribute","querySelector","ResizeContext","constrainDimensions","maxWidth","maxHeight","minHeight","ResizeProvider","draggingDirection","setDraggingDirection","storageKey","resizeRef","dim","applyConstrainedDimensions","initialSize","height_0","width_0","fireInitialConstrainDimensions","useResize","context","ResizeHandle","direction","borderWidths","setBorderWidths","computedStyle","parseFloat","borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth","mouseDownEvent","element_0","initialRect","startX","startY","handleMouseMove","mouseMoveEvent","newWidth","getNewDimensions","newHeight","handleMouseUp","handleMouseDown","getOppositeCorner","totalHorizontalBorder","totalVerticalBorder","isCornerHandle","deltaX","deltaY","effectiveMaxWidth","effectiveMaxHeight","resolveCSSValue","dimension","temp","visibility","pixels","DynamicPanel","dimensions","setDimensions","header","draggable","sizeConfig","kind","containerProps","resizeStorageKey","sharePanelSizeGlobally","positionStorageKey","sharePanelPositionGlobally","devtoolsPanelPosition","panelVertical","panelHorizontal","resizeContainerRef","isResizable","resolvedDimensions","updateDimensions","panelSizeKey","panelSize","sides","StaticRouteContent","routerType","DynamicRouteContent","learnMoreLink","pages","static","dynamic","app","RouteInfoBody","isStaticRoute","listeners","callback","getSnapshot","trie","getRoot","getServerSnapshot","createTrie","getCharacters","compare","b","markUpdated","currentNode","found","parentNode","pagePath","boundaryType","insertSegmentNode","insert","removeSegmentNode","getSegmentTrieRoot","Element","is","requestAnimationFrame","cancelAnimationFrame","HTMLButtonElement","candidateSelector","candidateSelectors","NoElement","prototype","msMatchesSelector","webkitMatchesSelector","_element$getRootNode","call","isInert","lookUp","_node$getAttribute","inertAtt","inert","isContentEditable","_node$getAttribute2","attValue","getCandidates","includeContainer","candidates","apply","getCandidatesIteratively","elements","elementsToCheck","tagName","assigned","assignedElements","nestedCandidates","flatten","scopeParent","validCandidate","getShadowRoot","validShadowRoot","shadowRootFilter","hasTabIndex","getTabIndex","tabIndex","getSortOrderTabIndex","isScope","sortOrderedTabbables","documentOrder","isInput","getCheckedRadio","nodes","form","checked","isTabbableRadio","radioSet","radioScope","queryRadios","escape","isNonTabbableRadio","isRadio","isNodeAttached","_nodeRoot","_nodeRootHost","_nodeRootHost$ownerDo","_node$ownerDocument","_nodeRoot2","_nodeRootHost2","_nodeRootHost2$ownerD","nodeRoot","nodeRootHost","attached","isZeroArea","_node$getBoundingClie","isHidden","_ref","displayCheck","nodeUnderDetails","isDirectSummary","originalNode","assignedSlot","getClientRects","isDisabledFromFieldset","child","isNodeMatchingSelectorFocusable","isNodeMatchingSelectorTabbable","isValidShadowRootTabbable","shadowHostNode","sortByOrder","regularTabbables","orderedTabbables","candidateTabindex","sort","acc","sortable","concat","tabbable","container","bind","focusable","isTabbable","h","IntersectionObserver","BUILTIN_PREFIX","normalizeBoundaryFilename","filename","BOUNDARY_PREFIX","isBoundaryFile","fileType","getBoundaryOriginFileType","composeRefs","refs","Ref","SegmentBoundaryTrigger","nodeState","boundaries","currNode","onSelectBoundary","setBoundaryType","isOpen","setIsOpen","popupRef","possibleExtension","firstDefinedBoundary","values","fileNames","fromEntries","filePath","pageFileName","triggerOptions","loading","resetOption","openInEditor","isAppRelativePath","handleSelect","hasBoundary","hasPageOrBoundary","MergedRefTrigger","triggerProps","mergedRef","option","LoadingIcon","ErrorIcon","NotFoundIcon","ResetIcon","SwitchIcon","Trigger","Tooltip","arrowSize","SegmentSuggestion","tooltip","missingGlobalError","isFileNode","PageRouteBar","SegmentExplorerFooter","activeBoundariesCount","onGlobalReset","hasActiveOverrides","FilePill","isBuiltin","isOverridden","PageSegmentTree","tree","useSyncExternalStore","countActiveBoundaries","traverseTreeAndResetBoundaries","handleGlobalReset","flex","GLOBAL_ERROR_BOUNDARY_TYPE","PageSegmentTreeLayerPresentation","level","childrenKeys","existingBoundaries","childNode","isGlobalConvention","sortedChildrenKeys","aHasExt","bHasExt","aType","bType","getTypePriority","aPriority","bPriority","aFilePath","bFilePath","localeCompare","folderName","folderChildrenKeys","filesChildrenKeys","childKey","firstChild","isBoundary","firstBoundaryChild","hasFilesChildren","paddingLeft","fileChildSegment","lastSegment","tooltipMessage","childSegment","nextSegment","InfoIcon","BackArrowIcon","CodeIcon","DevToolsHeader","justifyContent","WebkitUserSelect","borderBottom","margin","fontSize","XIcon","GearIcon","MenuPanel","isAppRouter","__NEXT_CACHE_COMPONENTS","useToggleDevtoolsVisibility","menuElement","getElementById","indicatorElement","firstElementChild","isCurrentlyHidden","isCurrentlyHidden_0","PanelRouter","shortcuts","toggleDevtools","contentEditable","dataset","hasAttribute","metaKey","altKey","shortcut","InfoFooter","UserPreferencesWrapper","PanelContext","PanelRoute","RenderErrorContext","DevOverlay","maybeDispatch","queue","currentOverlayState","getSerializedOverlayState","errorEvent","getSegmentTrieData","segmentTrie","createQueuable","queueableFunction","dispatcher","onBuildOk","onBuildError","onBeforeRefresh","onRefresh","onVersionInfo","onCacheIndicator","onStaticIndicator","onDebugInfo","onDevIndicator","Dispatch","devIndicator","onDevToolsConfig","devToolsConfig","onUnhandledError","onUnhandledRejection","openErrorOverlay","closeErrorOverlay","toggleErrorOverlay","buildingIndicatorHide","buildingIndicatorShow","renderingIndicatorHide","renderingIndicatorShow","segmentExplorerNodeAdd","_","segmentExplorerNodeRemove","segmentExplorerUpdateRouteState","DevOverlayRoot","getOwnerStack","isRecoverableError","enableCacheIndicator","pushErrorFilterDuplicates","events","ownerStack","parseStack","distDir","__NEXT_DIST_DIR","parse","effectiveDistDir","search","pendingEvent","isConsoleError","pendingEvents","disabledUntil","useReducer","portalNode","replayTimeout","replayQueuedEvents","queuedFunction","DevOverlayContext","isPagesMounted","isAppMounted","getSquashedHydrationErrorDetailsApp","renderAppDevOverlay","script","setAttribute","createRoot","identifierPrefix","onDefaultTransitionIndicator","attachShadow","render","renderPagesDevOverlay","records","record","removedNodes","childList"],"mappings":";;;;uwBAGI,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,8uBCpJX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,4uBCtKX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,ouBCnHX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,stBC3MX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,0tBClBX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,kwDC7DX,EAA0B,IAA4B,KAC1D,EAAwB,CAAC,CAAC,GAAiC,EAC3D,EAAwB,CAAC,CAAC,GAAiC,EAC3D,EAAwB,CAAC,CAAC,GAAiC,EAC3D,EAAwB,CAAC,CAAC,GAAiC,EAE3D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,itBCrDX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,ysBC5BX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,mtBCjXX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,6sBCtCX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,itBC1IX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,CAAE,GAAG,EAEN,MAAe,C,otBCrNX,EAA0B,A,SAA4B,KAE1D,EAAwB,IAAI,CAAC,CAAC,EAAO,EAAE,CAAE,CAAC;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA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","ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js deleted file mode 100644 index ab5d68e..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js +++ /dev/null @@ -1,16537 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * @license React - * react-dom.development.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ "use strict"; -"production" !== ("TURBOPACK compile-time value", "development") && function() { - function noop() {} - function testStringCoercion(value) { - return "" + value; - } - function createPortal$1(children, containerInfo, implementation) { - var key = 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null; - if (null == key) key = null; - else if (key === REACT_OPTIMISTIC_KEY) key = REACT_OPTIMISTIC_KEY; - else { - try { - testStringCoercion(key); - var JSCompiler_inline_result = !1; - } catch (e) { - JSCompiler_inline_result = !0; - } - JSCompiler_inline_result && (console.error("The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", "function" === typeof Symbol && Symbol.toStringTag && key[Symbol.toStringTag] || key.constructor.name || "Object"), testStringCoercion(key)); - key = "" + key; - } - return { - $$typeof: REACT_PORTAL_TYPE, - key: key, - children: children, - containerInfo: containerInfo, - implementation: implementation - }; - } - function getCrossOriginStringAs(as, input) { - if ("font" === as) return ""; - if ("string" === typeof input) return "use-credentials" === input ? input : ""; - } - function getValueDescriptorExpectingObjectForWarning(thing) { - return null === thing ? "`null`" : void 0 === thing ? "`undefined`" : "" === thing ? "an empty string" : 'something with type "' + typeof thing + '"'; - } - function getValueDescriptorExpectingEnumForWarning(thing) { - return null === thing ? "`null`" : void 0 === thing ? "`undefined`" : "" === thing ? "an empty string" : "string" === typeof thing ? JSON.stringify(thing) : "number" === typeof thing ? "`" + thing + "`" : 'something with type "' + typeof thing + '"'; - } - function resolveDispatcher() { - var dispatcher = ReactSharedInternals.H; - null === dispatcher && console.error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."); - return dispatcher; - } - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()); - var React = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"), Internals = { - d: { - f: noop, - r: function() { - throw Error("Invalid form element. requestFormReset must be passed a form that was rendered by React."); - }, - D: noop, - C: noop, - L: noop, - m: noop, - X: noop, - S: noop, - M: noop - }, - p: 0, - findDOMNode: null - }, REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_OPTIMISTIC_KEY = Symbol.for("react.optimistic_key"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE; - "function" === typeof Map && null != Map.prototype && "function" === typeof Map.prototype.forEach && "function" === typeof Set && null != Set.prototype && "function" === typeof Set.prototype.clear && "function" === typeof Set.prototype.forEach || console.error("React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"); - exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = Internals; - exports.createPortal = function(children, container) { - var key = 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null; - if (!container || 1 !== container.nodeType && 9 !== container.nodeType && 11 !== container.nodeType) throw Error("Target container is not a DOM element."); - return createPortal$1(children, container, null, key); - }; - exports.flushSync = function(fn) { - var previousTransition = ReactSharedInternals.T, previousUpdatePriority = Internals.p; - try { - if (ReactSharedInternals.T = null, Internals.p = 2, fn) return fn(); - } finally{ - ReactSharedInternals.T = previousTransition, Internals.p = previousUpdatePriority, Internals.d.f() && console.error("flushSync was called from inside a lifecycle method. React cannot flush when React is already rendering. Consider moving this call to a scheduler task or micro task."); - } - }; - exports.preconnect = function(href, options) { - "string" === typeof href && href ? null != options && "object" !== typeof options ? console.error("ReactDOM.preconnect(): Expected the `options` argument (second) to be an object but encountered %s instead. The only supported option at this time is `crossOrigin` which accepts a string.", getValueDescriptorExpectingEnumForWarning(options)) : null != options && "string" !== typeof options.crossOrigin && console.error("ReactDOM.preconnect(): Expected the `crossOrigin` option (second argument) to be a string but encountered %s instead. Try removing this option or passing a string value instead.", getValueDescriptorExpectingObjectForWarning(options.crossOrigin)) : console.error("ReactDOM.preconnect(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.", getValueDescriptorExpectingObjectForWarning(href)); - "string" === typeof href && (options ? (options = options.crossOrigin, options = "string" === typeof options ? "use-credentials" === options ? options : "" : void 0) : options = null, Internals.d.C(href, options)); - }; - exports.prefetchDNS = function(href) { - if ("string" !== typeof href || !href) console.error("ReactDOM.prefetchDNS(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.", getValueDescriptorExpectingObjectForWarning(href)); - else if (1 < arguments.length) { - var options = arguments[1]; - "object" === typeof options && options.hasOwnProperty("crossOrigin") ? console.error("ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. It looks like the you are attempting to set a crossOrigin property for this DNS lookup hint. Browsers do not perform DNS queries using CORS and setting this attribute on the resource hint has no effect. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.", getValueDescriptorExpectingEnumForWarning(options)) : console.error("ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.", getValueDescriptorExpectingEnumForWarning(options)); - } - "string" === typeof href && Internals.d.D(href); - }; - exports.preinit = function(href, options) { - "string" === typeof href && href ? null == options || "object" !== typeof options ? console.error("ReactDOM.preinit(): Expected the `options` argument (second) to be an object with an `as` property describing the type of resource to be preinitialized but encountered %s instead.", getValueDescriptorExpectingEnumForWarning(options)) : "style" !== options.as && "script" !== options.as && console.error('ReactDOM.preinit(): Expected the `as` property in the `options` argument (second) to contain a valid value describing the type of resource to be preinitialized but encountered %s instead. Valid values for `as` are "style" and "script".', getValueDescriptorExpectingEnumForWarning(options.as)) : console.error("ReactDOM.preinit(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.", getValueDescriptorExpectingObjectForWarning(href)); - if ("string" === typeof href && options && "string" === typeof options.as) { - var as = options.as, crossOrigin = getCrossOriginStringAs(as, options.crossOrigin), integrity = "string" === typeof options.integrity ? options.integrity : void 0, fetchPriority = "string" === typeof options.fetchPriority ? options.fetchPriority : void 0; - "style" === as ? Internals.d.S(href, "string" === typeof options.precedence ? options.precedence : void 0, { - crossOrigin: crossOrigin, - integrity: integrity, - fetchPriority: fetchPriority - }) : "script" === as && Internals.d.X(href, { - crossOrigin: crossOrigin, - integrity: integrity, - fetchPriority: fetchPriority, - nonce: "string" === typeof options.nonce ? options.nonce : void 0 - }); - } - }; - exports.preinitModule = function(href, options) { - var encountered = ""; - "string" === typeof href && href || (encountered += " The `href` argument encountered was " + getValueDescriptorExpectingObjectForWarning(href) + "."); - void 0 !== options && "object" !== typeof options ? encountered += " The `options` argument encountered was " + getValueDescriptorExpectingObjectForWarning(options) + "." : options && "as" in options && "script" !== options.as && (encountered += " The `as` option encountered was " + getValueDescriptorExpectingEnumForWarning(options.as) + "."); - if (encountered) console.error("ReactDOM.preinitModule(): Expected up to two arguments, a non-empty `href` string and, optionally, an `options` object with a valid `as` property.%s", encountered); - else switch(encountered = options && "string" === typeof options.as ? options.as : "script", encountered){ - case "script": - break; - default: - encountered = getValueDescriptorExpectingEnumForWarning(encountered), console.error('ReactDOM.preinitModule(): Currently the only supported "as" type for this function is "script" but received "%s" instead. This warning was generated for `href` "%s". In the future other module types will be supported, aligning with the import-attributes proposal. Learn more here: (https://github.com/tc39/proposal-import-attributes)', encountered, href); - } - if ("string" === typeof href) if ("object" === typeof options && null !== options) { - if (null == options.as || "script" === options.as) encountered = getCrossOriginStringAs(options.as, options.crossOrigin), Internals.d.M(href, { - crossOrigin: encountered, - integrity: "string" === typeof options.integrity ? options.integrity : void 0, - nonce: "string" === typeof options.nonce ? options.nonce : void 0 - }); - } else null == options && Internals.d.M(href); - }; - exports.preload = function(href, options) { - var encountered = ""; - "string" === typeof href && href || (encountered += " The `href` argument encountered was " + getValueDescriptorExpectingObjectForWarning(href) + "."); - null == options || "object" !== typeof options ? encountered += " The `options` argument encountered was " + getValueDescriptorExpectingObjectForWarning(options) + "." : "string" === typeof options.as && options.as || (encountered += " The `as` option encountered was " + getValueDescriptorExpectingObjectForWarning(options.as) + "."); - encountered && console.error('ReactDOM.preload(): Expected two arguments, a non-empty `href` string and an `options` object with an `as` property valid for a `<link rel="preload" as="..." />` tag.%s', encountered); - if ("string" === typeof href && "object" === typeof options && null !== options && "string" === typeof options.as) { - encountered = options.as; - var crossOrigin = getCrossOriginStringAs(encountered, options.crossOrigin); - Internals.d.L(href, encountered, { - crossOrigin: crossOrigin, - integrity: "string" === typeof options.integrity ? options.integrity : void 0, - nonce: "string" === typeof options.nonce ? options.nonce : void 0, - type: "string" === typeof options.type ? options.type : void 0, - fetchPriority: "string" === typeof options.fetchPriority ? options.fetchPriority : void 0, - referrerPolicy: "string" === typeof options.referrerPolicy ? options.referrerPolicy : void 0, - imageSrcSet: "string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0, - imageSizes: "string" === typeof options.imageSizes ? options.imageSizes : void 0, - media: "string" === typeof options.media ? options.media : void 0 - }); - } - }; - exports.preloadModule = function(href, options) { - var encountered = ""; - "string" === typeof href && href || (encountered += " The `href` argument encountered was " + getValueDescriptorExpectingObjectForWarning(href) + "."); - void 0 !== options && "object" !== typeof options ? encountered += " The `options` argument encountered was " + getValueDescriptorExpectingObjectForWarning(options) + "." : options && "as" in options && "string" !== typeof options.as && (encountered += " The `as` option encountered was " + getValueDescriptorExpectingObjectForWarning(options.as) + "."); - encountered && console.error('ReactDOM.preloadModule(): Expected two arguments, a non-empty `href` string and, optionally, an `options` object with an `as` property valid for a `<link rel="modulepreload" as="..." />` tag.%s', encountered); - "string" === typeof href && (options ? (encountered = getCrossOriginStringAs(options.as, options.crossOrigin), Internals.d.m(href, { - as: "string" === typeof options.as && "script" !== options.as ? options.as : void 0, - crossOrigin: encountered, - integrity: "string" === typeof options.integrity ? options.integrity : void 0 - })) : Internals.d.m(href)); - }; - exports.requestFormReset = function(form) { - Internals.d.r(form); - }; - exports.unstable_batchedUpdates = function(fn, a) { - return fn(a); - }; - exports.useFormState = function(action, initialState, permalink) { - return resolveDispatcher().useFormState(action, initialState, permalink); - }; - exports.useFormStatus = function() { - return resolveDispatcher().useHostTransitionStatus(); - }; - exports.version = "19.3.0-canary-f93b9fd4-20251217"; - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error()); -}(); -}), -"[project]/node_modules/next/dist/compiled/react-dom/index.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use strict'; -function checkDCE() { - /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' || typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function') { - return; - } - if ("TURBOPACK compile-time truthy", 1) { - // This branch is unreachable because this function is only called - // in production, but the condition is true only in development. - // Therefore if the branch is still here, dead code elimination wasn't - // properly applied. - // Don't change the message. React DevTools relies on it. Also make sure - // this message doesn't occur elsewhere in this function, or it will cause - // a false positive. - throw new Error('^_^'); - } - try { - // Verify that the code above has been dead code eliminated (DCE'd). - __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE); - } catch (err) { - // DevTools shouldn't crash React, no matter what. - // We should still report in case we break this code. - console.error(err); - } -} -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js [app-client] (ecmascript)"); -} -}), -"[project]/node_modules/next/dist/compiled/react-dom/cjs/react-dom-client.development.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * @license React - * react-dom-client.development.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ /* - Modernizr 3.0.0pre (Custom Build) | MIT -*/ "use strict"; -"production" !== ("TURBOPACK compile-time value", "development") && function() { - function findHook(fiber, id) { - for(fiber = fiber.memoizedState; null !== fiber && 0 < id;)fiber = fiber.next, id--; - return fiber; - } - function copyWithSetImpl(obj, path, index, value) { - if (index >= path.length) return value; - var key = path[index], updated = isArrayImpl(obj) ? obj.slice() : assign({}, obj); - updated[key] = copyWithSetImpl(obj[key], path, index + 1, value); - return updated; - } - function copyWithRename(obj, oldPath, newPath) { - if (oldPath.length !== newPath.length) console.warn("copyWithRename() expects paths of the same length"); - else { - for(var i = 0; i < newPath.length - 1; i++)if (oldPath[i] !== newPath[i]) { - console.warn("copyWithRename() expects paths to be the same except for the deepest key"); - return; - } - return copyWithRenameImpl(obj, oldPath, newPath, 0); - } - } - function copyWithRenameImpl(obj, oldPath, newPath, index) { - var oldKey = oldPath[index], updated = isArrayImpl(obj) ? obj.slice() : assign({}, obj); - index + 1 === oldPath.length ? (updated[newPath[index]] = updated[oldKey], isArrayImpl(updated) ? updated.splice(oldKey, 1) : delete updated[oldKey]) : updated[oldKey] = copyWithRenameImpl(obj[oldKey], oldPath, newPath, index + 1); - return updated; - } - function copyWithDeleteImpl(obj, path, index) { - var key = path[index], updated = isArrayImpl(obj) ? obj.slice() : assign({}, obj); - if (index + 1 === path.length) return isArrayImpl(updated) ? updated.splice(key, 1) : delete updated[key], updated; - updated[key] = copyWithDeleteImpl(obj[key], path, index + 1); - return updated; - } - function shouldSuspendImpl() { - return !1; - } - function shouldErrorImpl() { - return null; - } - function warnInvalidHookAccess() { - console.error("Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://react.dev/link/rules-of-hooks"); - } - function warnInvalidContextAccess() { - console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."); - } - function noop() {} - function warnForMissingKey() {} - function setToSortedString(set) { - var array = []; - set.forEach(function(value) { - array.push(value); - }); - return array.sort().join(", "); - } - function createFiber(tag, pendingProps, key, mode) { - return new FiberNode(tag, pendingProps, key, mode); - } - function scheduleRoot(root, element) { - root.context === emptyContextObject && (updateContainerImpl(root.current, 2, element, root, null, null), flushSyncWork$1()); - } - function scheduleRefresh(root, update) { - if (null !== resolveFamily) { - var staleFamilies = update.staleFamilies; - update = update.updatedFamilies; - flushPendingEffects(); - scheduleFibersWithFamiliesRecursively(root.current, update, staleFamilies); - flushSyncWork$1(); - } - } - function setRefreshHandler(handler) { - resolveFamily = handler; - } - function isValidContainer(node) { - return !(!node || 1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType); - } - function getNearestMountedFiber(fiber) { - var node = fiber, nearestMounted = fiber; - if (fiber.alternate) for(; node.return;)node = node.return; - else { - fiber = node; - do node = fiber, 0 !== (node.flags & 4098) && (nearestMounted = node.return), fiber = node.return; - while (fiber) - } - return 3 === node.tag ? nearestMounted : null; - } - function getSuspenseInstanceFromFiber(fiber) { - if (13 === fiber.tag) { - var suspenseState = fiber.memoizedState; - null === suspenseState && (fiber = fiber.alternate, null !== fiber && (suspenseState = fiber.memoizedState)); - if (null !== suspenseState) return suspenseState.dehydrated; - } - return null; - } - function getActivityInstanceFromFiber(fiber) { - if (31 === fiber.tag) { - var activityState = fiber.memoizedState; - null === activityState && (fiber = fiber.alternate, null !== fiber && (activityState = fiber.memoizedState)); - if (null !== activityState) return activityState.dehydrated; - } - return null; - } - function assertIsMounted(fiber) { - if (getNearestMountedFiber(fiber) !== fiber) throw Error("Unable to find node on an unmounted component."); - } - function findCurrentFiberUsingSlowPath(fiber) { - var alternate = fiber.alternate; - if (!alternate) { - alternate = getNearestMountedFiber(fiber); - if (null === alternate) throw Error("Unable to find node on an unmounted component."); - return alternate !== fiber ? null : fiber; - } - for(var a = fiber, b = alternate;;){ - var parentA = a.return; - if (null === parentA) break; - var parentB = parentA.alternate; - if (null === parentB) { - b = parentA.return; - if (null !== b) { - a = b; - continue; - } - break; - } - if (parentA.child === parentB.child) { - for(parentB = parentA.child; parentB;){ - if (parentB === a) return assertIsMounted(parentA), fiber; - if (parentB === b) return assertIsMounted(parentA), alternate; - parentB = parentB.sibling; - } - throw Error("Unable to find node on an unmounted component."); - } - if (a.return !== b.return) a = parentA, b = parentB; - else { - for(var didFindChild = !1, _child = parentA.child; _child;){ - if (_child === a) { - didFindChild = !0; - a = parentA; - b = parentB; - break; - } - if (_child === b) { - didFindChild = !0; - b = parentA; - a = parentB; - break; - } - _child = _child.sibling; - } - if (!didFindChild) { - for(_child = parentB.child; _child;){ - if (_child === a) { - didFindChild = !0; - a = parentB; - b = parentA; - break; - } - if (_child === b) { - didFindChild = !0; - b = parentB; - a = parentA; - break; - } - _child = _child.sibling; - } - if (!didFindChild) throw Error("Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue."); - } - } - if (a.alternate !== b) throw Error("Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue."); - } - if (3 !== a.tag) throw Error("Unable to find node on an unmounted component."); - return a.stateNode.current === a ? fiber : alternate; - } - function findCurrentHostFiberImpl(node) { - var tag = node.tag; - if (5 === tag || 26 === tag || 27 === tag || 6 === tag) return node; - for(node = node.child; null !== node;){ - tag = findCurrentHostFiberImpl(node); - if (null !== tag) return tag; - node = node.sibling; - } - return null; - } - function traverseVisibleHostChildren(child, searchWithinHosts, fn, a, b, c) { - for(; null !== child;){ - if (5 === child.tag && fn(child, a, b, c) || (22 !== child.tag || null === child.memoizedState) && (searchWithinHosts || 5 !== child.tag) && traverseVisibleHostChildren(child.child, searchWithinHosts, fn, a, b, c)) return !0; - child = child.sibling; - } - return !1; - } - function getFragmentParentHostFiber(fiber) { - for(fiber = fiber.return; null !== fiber;){ - if (3 === fiber.tag || 5 === fiber.tag) return fiber; - fiber = fiber.return; - } - return null; - } - function findFragmentInstanceSiblings(result, self, child) { - for(var foundSelf = 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : !1; null !== child;){ - if (child === self) if (foundSelf = !0, child.sibling) child = child.sibling; - else return !0; - if (5 === child.tag) { - if (foundSelf) return result[1] = child, !0; - result[0] = child; - } else if ((22 !== child.tag || null === child.memoizedState) && findFragmentInstanceSiblings(result, self, child.child, foundSelf)) return !0; - child = child.sibling; - } - return !1; - } - function getInstanceFromHostFiber(fiber) { - switch(fiber.tag){ - case 5: - return fiber.stateNode; - case 3: - return fiber.stateNode.containerInfo; - default: - throw Error("Expected to find a host node. This is a bug in React."); - } - } - function findNextSibling(child) { - searchTarget = child; - return !0; - } - function isFiberPrecedingCheck(child, target, boundary) { - return child === boundary ? !0 : child === target ? (searchTarget = child, !0) : !1; - } - function isFiberFollowingCheck(child, target, boundary) { - return child === boundary ? (searchBoundary = child, !1) : child === target ? (null !== searchBoundary && (searchTarget = child), !0) : !1; - } - function getParentForFragmentAncestors(inst) { - if (null === inst) return null; - do inst = null === inst ? null : inst.return; - while (inst && 5 !== inst.tag && 27 !== inst.tag && 3 !== inst.tag) - return inst ? inst : null; - } - function getLowestCommonAncestor(instA, instB, getParent) { - for(var depthA = 0, tempA = instA; tempA; tempA = getParent(tempA))depthA++; - tempA = 0; - for(var tempB = instB; tempB; tempB = getParent(tempB))tempA++; - for(; 0 < depthA - tempA;)instA = getParent(instA), depthA--; - for(; 0 < tempA - depthA;)instB = getParent(instB), tempA--; - for(; depthA--;){ - if (instA === instB || null !== instB && instA === instB.alternate) return instA; - instA = getParent(instA); - instB = getParent(instB); - } - return null; - } - function getIteratorFn(maybeIterable) { - if (null === maybeIterable || "object" !== typeof maybeIterable) return null; - maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; - return "function" === typeof maybeIterable ? maybeIterable : null; - } - function getComponentNameFromType(type) { - if (null == type) return null; - if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null; - if ("string" === typeof type) return type; - switch(type){ - case REACT_FRAGMENT_TYPE: - return "Fragment"; - case REACT_PROFILER_TYPE: - return "Profiler"; - case REACT_STRICT_MODE_TYPE: - return "StrictMode"; - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_ACTIVITY_TYPE: - return "Activity"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof){ - case REACT_PORTAL_TYPE: - return "Portal"; - case REACT_CONTEXT_TYPE: - return type.displayName || "Context"; - case REACT_CONSUMER_TYPE: - return (type._context.displayName || "Context") + ".Consumer"; - case REACT_FORWARD_REF_TYPE: - var innerType = type.render; - type = type.displayName; - type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"); - return type; - case REACT_MEMO_TYPE: - return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo"; - case REACT_LAZY_TYPE: - innerType = type._payload; - type = type._init; - try { - return getComponentNameFromType(type(innerType)); - } catch (x) {} - } - return null; - } - function getComponentNameFromOwner(owner) { - return "number" === typeof owner.tag ? getComponentNameFromFiber(owner) : "string" === typeof owner.name ? owner.name : null; - } - function getComponentNameFromFiber(fiber) { - var type = fiber.type; - switch(fiber.tag){ - case 31: - return "Activity"; - case 24: - return "Cache"; - case 9: - return (type._context.displayName || "Context") + ".Consumer"; - case 10: - return type.displayName || "Context"; - case 18: - return "DehydratedFragment"; - case 11: - return fiber = type.render, fiber = fiber.displayName || fiber.name || "", type.displayName || ("" !== fiber ? "ForwardRef(" + fiber + ")" : "ForwardRef"); - case 7: - return "Fragment"; - case 26: - case 27: - case 5: - return type; - case 4: - return "Portal"; - case 3: - return "Root"; - case 6: - return "Text"; - case 16: - return getComponentNameFromType(type); - case 8: - return type === REACT_STRICT_MODE_TYPE ? "StrictMode" : "Mode"; - case 22: - return "Offscreen"; - case 12: - return "Profiler"; - case 21: - return "Scope"; - case 13: - return "Suspense"; - case 19: - return "SuspenseList"; - case 25: - return "TracingMarker"; - case 30: - return "ViewTransition"; - case 1: - case 0: - case 14: - case 15: - if ("function" === typeof type) return type.displayName || type.name || null; - if ("string" === typeof type) return type; - break; - case 29: - type = fiber._debugInfo; - if (null != type) { - for(var i = type.length - 1; 0 <= i; i--)if ("string" === typeof type[i].name) return type[i].name; - } - if (null !== fiber.return) return getComponentNameFromFiber(fiber.return); - } - return null; - } - function createCursor(defaultValue) { - return { - current: defaultValue - }; - } - function pop(cursor, fiber) { - 0 > index$jscomp$0 ? console.error("Unexpected pop.") : (fiber !== fiberStack[index$jscomp$0] && console.error("Unexpected Fiber popped."), cursor.current = valueStack[index$jscomp$0], valueStack[index$jscomp$0] = null, fiberStack[index$jscomp$0] = null, index$jscomp$0--); - } - function push(cursor, value, fiber) { - index$jscomp$0++; - valueStack[index$jscomp$0] = cursor.current; - fiberStack[index$jscomp$0] = fiber; - cursor.current = value; - } - function requiredContext(c) { - null === c && console.error("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue."); - return c; - } - function pushHostContainer(fiber, nextRootInstance) { - push(rootInstanceStackCursor, nextRootInstance, fiber); - push(contextFiberStackCursor, fiber, fiber); - push(contextStackCursor, null, fiber); - var nextRootContext = nextRootInstance.nodeType; - switch(nextRootContext){ - case 9: - case 11: - nextRootContext = 9 === nextRootContext ? "#document" : "#fragment"; - nextRootInstance = (nextRootInstance = nextRootInstance.documentElement) ? (nextRootInstance = nextRootInstance.namespaceURI) ? getOwnHostContext(nextRootInstance) : HostContextNamespaceNone : HostContextNamespaceNone; - break; - default: - if (nextRootContext = nextRootInstance.tagName, nextRootInstance = nextRootInstance.namespaceURI) nextRootInstance = getOwnHostContext(nextRootInstance), nextRootInstance = getChildHostContextProd(nextRootInstance, nextRootContext); - else switch(nextRootContext){ - case "svg": - nextRootInstance = HostContextNamespaceSvg; - break; - case "math": - nextRootInstance = HostContextNamespaceMath; - break; - default: - nextRootInstance = HostContextNamespaceNone; - } - } - nextRootContext = nextRootContext.toLowerCase(); - nextRootContext = updatedAncestorInfoDev(null, nextRootContext); - nextRootContext = { - context: nextRootInstance, - ancestorInfo: nextRootContext - }; - pop(contextStackCursor, fiber); - push(contextStackCursor, nextRootContext, fiber); - } - function popHostContainer(fiber) { - pop(contextStackCursor, fiber); - pop(contextFiberStackCursor, fiber); - pop(rootInstanceStackCursor, fiber); - } - function getHostContext() { - return requiredContext(contextStackCursor.current); - } - function pushHostContext(fiber) { - var stateHook = fiber.memoizedState; - null !== stateHook && (HostTransitionContext._currentValue = stateHook.memoizedState, push(hostTransitionProviderCursor, fiber, fiber)); - stateHook = requiredContext(contextStackCursor.current); - var type = fiber.type; - var nextContext = getChildHostContextProd(stateHook.context, type); - type = updatedAncestorInfoDev(stateHook.ancestorInfo, type); - nextContext = { - context: nextContext, - ancestorInfo: type - }; - stateHook !== nextContext && (push(contextFiberStackCursor, fiber, fiber), push(contextStackCursor, nextContext, fiber)); - } - function popHostContext(fiber) { - contextFiberStackCursor.current === fiber && (pop(contextStackCursor, fiber), pop(contextFiberStackCursor, fiber)); - hostTransitionProviderCursor.current === fiber && (pop(hostTransitionProviderCursor, fiber), HostTransitionContext._currentValue = NotPendingTransition); - } - function disabledLog() {} - function disableLogs() { - if (0 === disabledDepth) { - prevLog = console.log; - prevInfo = console.info; - prevWarn = console.warn; - prevError = console.error; - prevGroup = console.group; - prevGroupCollapsed = console.groupCollapsed; - prevGroupEnd = console.groupEnd; - var props = { - configurable: !0, - enumerable: !0, - value: disabledLog, - writable: !0 - }; - Object.defineProperties(console, { - info: props, - log: props, - warn: props, - error: props, - group: props, - groupCollapsed: props, - groupEnd: props - }); - } - disabledDepth++; - } - function reenableLogs() { - disabledDepth--; - if (0 === disabledDepth) { - var props = { - configurable: !0, - enumerable: !0, - writable: !0 - }; - Object.defineProperties(console, { - log: assign({}, props, { - value: prevLog - }), - info: assign({}, props, { - value: prevInfo - }), - warn: assign({}, props, { - value: prevWarn - }), - error: assign({}, props, { - value: prevError - }), - group: assign({}, props, { - value: prevGroup - }), - groupCollapsed: assign({}, props, { - value: prevGroupCollapsed - }), - groupEnd: assign({}, props, { - value: prevGroupEnd - }) - }); - } - 0 > disabledDepth && console.error("disabledDepth fell below zero. This is a bug in React. Please file an issue."); - } - function formatOwnerStack(error) { - var prevPrepareStackTrace = Error.prepareStackTrace; - Error.prepareStackTrace = void 0; - error = error.stack; - Error.prepareStackTrace = prevPrepareStackTrace; - error.startsWith("Error: react-stack-top-frame\n") && (error = error.slice(29)); - prevPrepareStackTrace = error.indexOf("\n"); - -1 !== prevPrepareStackTrace && (error = error.slice(prevPrepareStackTrace + 1)); - prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame"); - -1 !== prevPrepareStackTrace && (prevPrepareStackTrace = error.lastIndexOf("\n", prevPrepareStackTrace)); - if (-1 !== prevPrepareStackTrace) error = error.slice(0, prevPrepareStackTrace); - else return ""; - return error; - } - function describeBuiltInComponentFrame(name) { - if (void 0 === prefix) try { - throw Error(); - } catch (x) { - var match = x.stack.trim().match(/\n( *(at )?)/); - prefix = match && match[1] || ""; - suffix = -1 < x.stack.indexOf("\n at") ? " (<anonymous>)" : -1 < x.stack.indexOf("@") ? "@unknown:0:0" : ""; - } - return "\n" + prefix + name + suffix; - } - function describeNativeComponentFrame(fn, construct) { - if (!fn || reentry) return ""; - var frame = componentFrameCache.get(fn); - if (void 0 !== frame) return frame; - reentry = !0; - frame = Error.prepareStackTrace; - Error.prepareStackTrace = void 0; - var previousDispatcher = null; - previousDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = null; - disableLogs(); - try { - var RunInRootFrame = { - DetermineComponentFrameRoot: function() { - try { - if (construct) { - var Fake = function() { - throw Error(); - }; - Object.defineProperty(Fake.prototype, "props", { - set: function() { - throw Error(); - } - }); - if ("object" === typeof Reflect && Reflect.construct) { - try { - Reflect.construct(Fake, []); - } catch (x) { - var control = x; - } - Reflect.construct(fn, [], Fake); - } else { - try { - Fake.call(); - } catch (x$0) { - control = x$0; - } - fn.call(Fake.prototype); - } - } else { - try { - throw Error(); - } catch (x$1) { - control = x$1; - } - (Fake = fn()) && "function" === typeof Fake.catch && Fake.catch(function() {}); - } - } catch (sample) { - if (sample && control && "string" === typeof sample.stack) return [ - sample.stack, - control.stack - ]; - } - return [ - null, - null - ]; - } - }; - RunInRootFrame.DetermineComponentFrameRoot.displayName = "DetermineComponentFrameRoot"; - var namePropDescriptor = Object.getOwnPropertyDescriptor(RunInRootFrame.DetermineComponentFrameRoot, "name"); - namePropDescriptor && namePropDescriptor.configurable && Object.defineProperty(RunInRootFrame.DetermineComponentFrameRoot, "name", { - value: "DetermineComponentFrameRoot" - }); - var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(), sampleStack = _RunInRootFrame$Deter[0], controlStack = _RunInRootFrame$Deter[1]; - if (sampleStack && controlStack) { - var sampleLines = sampleStack.split("\n"), controlLines = controlStack.split("\n"); - for(_RunInRootFrame$Deter = namePropDescriptor = 0; namePropDescriptor < sampleLines.length && !sampleLines[namePropDescriptor].includes("DetermineComponentFrameRoot");)namePropDescriptor++; - for(; _RunInRootFrame$Deter < controlLines.length && !controlLines[_RunInRootFrame$Deter].includes("DetermineComponentFrameRoot");)_RunInRootFrame$Deter++; - if (namePropDescriptor === sampleLines.length || _RunInRootFrame$Deter === controlLines.length) for(namePropDescriptor = sampleLines.length - 1, _RunInRootFrame$Deter = controlLines.length - 1; 1 <= namePropDescriptor && 0 <= _RunInRootFrame$Deter && sampleLines[namePropDescriptor] !== controlLines[_RunInRootFrame$Deter];)_RunInRootFrame$Deter--; - for(; 1 <= namePropDescriptor && 0 <= _RunInRootFrame$Deter; namePropDescriptor--, _RunInRootFrame$Deter--)if (sampleLines[namePropDescriptor] !== controlLines[_RunInRootFrame$Deter]) { - if (1 !== namePropDescriptor || 1 !== _RunInRootFrame$Deter) { - do if (namePropDescriptor--, _RunInRootFrame$Deter--, 0 > _RunInRootFrame$Deter || sampleLines[namePropDescriptor] !== controlLines[_RunInRootFrame$Deter]) { - var _frame = "\n" + sampleLines[namePropDescriptor].replace(" at new ", " at "); - fn.displayName && _frame.includes("<anonymous>") && (_frame = _frame.replace("<anonymous>", fn.displayName)); - "function" === typeof fn && componentFrameCache.set(fn, _frame); - return _frame; - } - while (1 <= namePropDescriptor && 0 <= _RunInRootFrame$Deter) - } - break; - } - } - } finally{ - reentry = !1, ReactSharedInternals.H = previousDispatcher, reenableLogs(), Error.prepareStackTrace = frame; - } - sampleLines = (sampleLines = fn ? fn.displayName || fn.name : "") ? describeBuiltInComponentFrame(sampleLines) : ""; - "function" === typeof fn && componentFrameCache.set(fn, sampleLines); - return sampleLines; - } - function describeFiber(fiber, childFiber) { - switch(fiber.tag){ - case 26: - case 27: - case 5: - return describeBuiltInComponentFrame(fiber.type); - case 16: - return describeBuiltInComponentFrame("Lazy"); - case 13: - return fiber.child !== childFiber && null !== childFiber ? describeBuiltInComponentFrame("Suspense Fallback") : describeBuiltInComponentFrame("Suspense"); - case 19: - return describeBuiltInComponentFrame("SuspenseList"); - case 0: - case 15: - return describeNativeComponentFrame(fiber.type, !1); - case 11: - return describeNativeComponentFrame(fiber.type.render, !1); - case 1: - return describeNativeComponentFrame(fiber.type, !0); - case 31: - return describeBuiltInComponentFrame("Activity"); - case 30: - return describeBuiltInComponentFrame("ViewTransition"); - default: - return ""; - } - } - function getStackByFiberInDevAndProd(workInProgress) { - try { - var info = "", previous = null; - do { - info += describeFiber(workInProgress, previous); - var debugInfo = workInProgress._debugInfo; - if (debugInfo) for(var i = debugInfo.length - 1; 0 <= i; i--){ - var entry = debugInfo[i]; - if ("string" === typeof entry.name) { - var JSCompiler_temp_const = info; - a: { - var name = entry.name, env = entry.env, location = entry.debugLocation; - if (null != location) { - var childStack = formatOwnerStack(location), idx = childStack.lastIndexOf("\n"), lastLine = -1 === idx ? childStack : childStack.slice(idx + 1); - if (-1 !== lastLine.indexOf(name)) { - var JSCompiler_inline_result = "\n" + lastLine; - break a; - } - } - JSCompiler_inline_result = describeBuiltInComponentFrame(name + (env ? " [" + env + "]" : "")); - } - info = JSCompiler_temp_const + JSCompiler_inline_result; - } - } - previous = workInProgress; - workInProgress = workInProgress.return; - }while (workInProgress) - return info; - } catch (x) { - return "\nError generating stack: " + x.message + "\n" + x.stack; - } - } - function describeFunctionComponentFrameWithoutLineNumber(fn) { - return (fn = fn ? fn.displayName || fn.name : "") ? describeBuiltInComponentFrame(fn) : ""; - } - function getCurrentFiberOwnerNameInDevOrNull() { - if (null === current) return null; - var owner = current._debugOwner; - return null != owner ? getComponentNameFromOwner(owner) : null; - } - function getCurrentFiberStackInDev() { - if (null === current) return ""; - var workInProgress = current; - try { - var info = ""; - 6 === workInProgress.tag && (workInProgress = workInProgress.return); - switch(workInProgress.tag){ - case 26: - case 27: - case 5: - info += describeBuiltInComponentFrame(workInProgress.type); - break; - case 13: - info += describeBuiltInComponentFrame("Suspense"); - break; - case 19: - info += describeBuiltInComponentFrame("SuspenseList"); - break; - case 31: - info += describeBuiltInComponentFrame("Activity"); - break; - case 30: - info += describeBuiltInComponentFrame("ViewTransition"); - break; - case 0: - case 15: - case 1: - workInProgress._debugOwner || "" !== info || (info += describeFunctionComponentFrameWithoutLineNumber(workInProgress.type)); - break; - case 11: - workInProgress._debugOwner || "" !== info || (info += describeFunctionComponentFrameWithoutLineNumber(workInProgress.type.render)); - } - for(; workInProgress;)if ("number" === typeof workInProgress.tag) { - var fiber = workInProgress; - workInProgress = fiber._debugOwner; - var debugStack = fiber._debugStack; - if (workInProgress && debugStack) { - var formattedStack = formatOwnerStack(debugStack); - "" !== formattedStack && (info += "\n" + formattedStack); - } - } else if (null != workInProgress.debugStack) { - var ownerStack = workInProgress.debugStack; - (workInProgress = workInProgress.owner) && ownerStack && (info += "\n" + formatOwnerStack(ownerStack)); - } else break; - var JSCompiler_inline_result = info; - } catch (x) { - JSCompiler_inline_result = "\nError generating stack: " + x.message + "\n" + x.stack; - } - return JSCompiler_inline_result; - } - function runWithFiberInDEV(fiber, callback, arg0, arg1, arg2, arg3, arg4) { - var previousFiber = current; - setCurrentFiber(fiber); - try { - return null !== fiber && fiber._debugTask ? fiber._debugTask.run(callback.bind(null, arg0, arg1, arg2, arg3, arg4)) : callback(arg0, arg1, arg2, arg3, arg4); - } finally{ - setCurrentFiber(previousFiber); - } - throw Error("runWithFiberInDEV should never be called in production. This is a bug in React."); - } - function setCurrentFiber(fiber) { - ReactSharedInternals.getCurrentStack = null === fiber ? null : getCurrentFiberStackInDev; - isRendering = !1; - current = fiber; - } - function typeName(value) { - return "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object"; - } - function willCoercionThrow(value) { - try { - return testStringCoercion(value), !1; - } catch (e) { - return !0; - } - } - function testStringCoercion(value) { - return "" + value; - } - function checkAttributeStringCoercion(value, attributeName) { - if (willCoercionThrow(value)) return console.error("The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before using it here.", attributeName, typeName(value)), testStringCoercion(value); - } - function checkCSSPropertyStringCoercion(value, propName) { - if (willCoercionThrow(value)) return console.error("The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before using it here.", propName, typeName(value)), testStringCoercion(value); - } - function checkFormFieldValueStringCoercion(value) { - if (willCoercionThrow(value)) return console.error("Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before using it here.", typeName(value)), testStringCoercion(value); - } - function injectInternals(internals) { - if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) return !1; - var hook = __REACT_DEVTOOLS_GLOBAL_HOOK__; - if (hook.isDisabled) return !0; - if (!hook.supportsFiber) return console.error("The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://react.dev/link/react-devtools"), !0; - try { - rendererID = hook.inject(internals), injectedHook = hook; - } catch (err) { - console.error("React instrumentation encountered an error: %o.", err); - } - return hook.checkDCE ? !0 : !1; - } - function setIsStrictModeForDevtools(newIsStrictMode) { - "function" === typeof log$1 && unstable_setDisableYieldValue(newIsStrictMode); - if (injectedHook && "function" === typeof injectedHook.setStrictMode) try { - injectedHook.setStrictMode(rendererID, newIsStrictMode); - } catch (err) { - hasLoggedError || (hasLoggedError = !0, console.error("React instrumentation encountered an error: %o", err)); - } - } - function clz32Fallback(x) { - x >>>= 0; - return 0 === x ? 32 : 31 - (log(x) / LN2 | 0) | 0; - } - function getHighestPriorityLanes(lanes) { - var pendingSyncLanes = lanes & 42; - if (0 !== pendingSyncLanes) return pendingSyncLanes; - switch(lanes & -lanes){ - case 1: - return 1; - case 2: - return 2; - case 4: - return 4; - case 8: - return 8; - case 16: - return 16; - case 32: - return 32; - case 64: - return 64; - case 128: - return 128; - case 256: - case 512: - case 1024: - case 2048: - case 4096: - case 8192: - case 16384: - case 32768: - case 65536: - case 131072: - return lanes & 261888; - case 262144: - case 524288: - case 1048576: - case 2097152: - return lanes & 3932160; - case 4194304: - case 8388608: - case 16777216: - case 33554432: - return lanes & 62914560; - case 67108864: - return 67108864; - case 134217728: - return 134217728; - case 268435456: - return 268435456; - case 536870912: - return 536870912; - case 1073741824: - return 0; - default: - return console.error("Should have found matching lanes. This is a bug in React."), lanes; - } - } - function getNextLanes(root, wipLanes, rootHasPendingCommit) { - var pendingLanes = root.pendingLanes; - if (0 === pendingLanes) return 0; - var nextLanes = 0, suspendedLanes = root.suspendedLanes, pingedLanes = root.pingedLanes; - root = root.warmLanes; - var nonIdlePendingLanes = pendingLanes & 134217727; - 0 !== nonIdlePendingLanes ? (pendingLanes = nonIdlePendingLanes & ~suspendedLanes, 0 !== pendingLanes ? nextLanes = getHighestPriorityLanes(pendingLanes) : (pingedLanes &= nonIdlePendingLanes, 0 !== pingedLanes ? nextLanes = getHighestPriorityLanes(pingedLanes) : rootHasPendingCommit || (rootHasPendingCommit = nonIdlePendingLanes & ~root, 0 !== rootHasPendingCommit && (nextLanes = getHighestPriorityLanes(rootHasPendingCommit))))) : (nonIdlePendingLanes = pendingLanes & ~suspendedLanes, 0 !== nonIdlePendingLanes ? nextLanes = getHighestPriorityLanes(nonIdlePendingLanes) : 0 !== pingedLanes ? nextLanes = getHighestPriorityLanes(pingedLanes) : rootHasPendingCommit || (rootHasPendingCommit = pendingLanes & ~root, 0 !== rootHasPendingCommit && (nextLanes = getHighestPriorityLanes(rootHasPendingCommit)))); - return 0 === nextLanes ? 0 : 0 !== wipLanes && wipLanes !== nextLanes && 0 === (wipLanes & suspendedLanes) && (suspendedLanes = nextLanes & -nextLanes, rootHasPendingCommit = wipLanes & -wipLanes, suspendedLanes >= rootHasPendingCommit || 32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)) ? wipLanes : nextLanes; - } - function checkIfRootIsPrerendering(root, renderLanes) { - return 0 === (root.pendingLanes & ~(root.suspendedLanes & ~root.pingedLanes) & renderLanes); - } - function computeExpirationTime(lane, currentTime) { - switch(lane){ - case 1: - case 2: - case 4: - case 8: - case 64: - return currentTime + 250; - case 16: - case 32: - case 128: - case 256: - case 512: - case 1024: - case 2048: - case 4096: - case 8192: - case 16384: - case 32768: - case 65536: - case 131072: - case 262144: - case 524288: - case 1048576: - case 2097152: - return currentTime + 5e3; - case 4194304: - case 8388608: - case 16777216: - case 33554432: - return -1; - case 67108864: - case 134217728: - case 268435456: - case 536870912: - case 1073741824: - return -1; - default: - return console.error("Should have found matching lanes. This is a bug in React."), -1; - } - } - function claimNextRetryLane() { - var lane = nextRetryLane; - nextRetryLane <<= 1; - 0 === (nextRetryLane & 62914560) && (nextRetryLane = 4194304); - return lane; - } - function createLaneMap(initial) { - for(var laneMap = [], i = 0; 31 > i; i++)laneMap.push(initial); - return laneMap; - } - function markRootUpdated$1(root, updateLane) { - root.pendingLanes |= updateLane; - 268435456 !== updateLane && (root.suspendedLanes = 0, root.pingedLanes = 0, root.warmLanes = 0); - } - function markRootFinished(root, finishedLanes, remainingLanes, spawnedLane, updatedLanes, suspendedRetryLanes) { - var previouslyPendingLanes = root.pendingLanes; - root.pendingLanes = remainingLanes; - root.suspendedLanes = 0; - root.pingedLanes = 0; - root.warmLanes = 0; - root.expiredLanes &= remainingLanes; - root.entangledLanes &= remainingLanes; - root.errorRecoveryDisabledLanes &= remainingLanes; - root.shellSuspendCounter = 0; - var entanglements = root.entanglements, expirationTimes = root.expirationTimes, hiddenUpdates = root.hiddenUpdates; - for(remainingLanes = previouslyPendingLanes & ~remainingLanes; 0 < remainingLanes;){ - var index = 31 - clz32(remainingLanes), lane = 1 << index; - entanglements[index] = 0; - expirationTimes[index] = -1; - var hiddenUpdatesForLane = hiddenUpdates[index]; - if (null !== hiddenUpdatesForLane) for(hiddenUpdates[index] = null, index = 0; index < hiddenUpdatesForLane.length; index++){ - var update = hiddenUpdatesForLane[index]; - null !== update && (update.lane &= -536870913); - } - remainingLanes &= ~lane; - } - 0 !== spawnedLane && markSpawnedDeferredLane(root, spawnedLane, 0); - 0 !== suspendedRetryLanes && 0 === updatedLanes && 0 !== root.tag && (root.suspendedLanes |= suspendedRetryLanes & ~(previouslyPendingLanes & ~finishedLanes)); - } - function markSpawnedDeferredLane(root, spawnedLane, entangledLanes) { - root.pendingLanes |= spawnedLane; - root.suspendedLanes &= ~spawnedLane; - var spawnedLaneIndex = 31 - clz32(spawnedLane); - root.entangledLanes |= spawnedLane; - root.entanglements[spawnedLaneIndex] = root.entanglements[spawnedLaneIndex] | 1073741824 | entangledLanes & 261930; - } - function markRootEntangled(root, entangledLanes) { - var rootEntangledLanes = root.entangledLanes |= entangledLanes; - for(root = root.entanglements; rootEntangledLanes;){ - var index = 31 - clz32(rootEntangledLanes), lane = 1 << index; - lane & entangledLanes | root[index] & entangledLanes && (root[index] |= entangledLanes); - rootEntangledLanes &= ~lane; - } - } - function getBumpedLaneForHydration(root, renderLanes) { - var renderLane = renderLanes & -renderLanes; - renderLane = 0 !== (renderLane & 42) ? 1 : getBumpedLaneForHydrationByLane(renderLane); - return 0 !== (renderLane & (root.suspendedLanes | renderLanes)) ? 0 : renderLane; - } - function getBumpedLaneForHydrationByLane(lane) { - switch(lane){ - case 2: - lane = 1; - break; - case 8: - lane = 4; - break; - case 32: - lane = 16; - break; - case 256: - case 512: - case 1024: - case 2048: - case 4096: - case 8192: - case 16384: - case 32768: - case 65536: - case 131072: - case 262144: - case 524288: - case 1048576: - case 2097152: - case 4194304: - case 8388608: - case 16777216: - case 33554432: - lane = 128; - break; - case 268435456: - lane = 134217728; - break; - default: - lane = 0; - } - return lane; - } - function addFiberToLanesMap(root, fiber, lanes) { - if (isDevToolsPresent) for(root = root.pendingUpdatersLaneMap; 0 < lanes;){ - var index = 31 - clz32(lanes), lane = 1 << index; - root[index].add(fiber); - lanes &= ~lane; - } - } - function movePendingFibersToMemoized(root, lanes) { - if (isDevToolsPresent) for(var pendingUpdatersLaneMap = root.pendingUpdatersLaneMap, memoizedUpdaters = root.memoizedUpdaters; 0 < lanes;){ - var index = 31 - clz32(lanes); - root = 1 << index; - index = pendingUpdatersLaneMap[index]; - 0 < index.size && (index.forEach(function(fiber) { - var alternate = fiber.alternate; - null !== alternate && memoizedUpdaters.has(alternate) || memoizedUpdaters.add(fiber); - }), index.clear()); - lanes &= ~root; - } - } - function lanesToEventPriority(lanes) { - lanes &= -lanes; - return 0 !== DiscreteEventPriority && DiscreteEventPriority < lanes ? 0 !== ContinuousEventPriority && ContinuousEventPriority < lanes ? 0 !== (lanes & 134217727) ? DefaultEventPriority : IdleEventPriority : ContinuousEventPriority : DiscreteEventPriority; - } - function resolveUpdatePriority() { - var updatePriority = ReactDOMSharedInternals.p; - if (0 !== updatePriority) return updatePriority; - updatePriority = window.event; - return void 0 === updatePriority ? DefaultEventPriority : getEventPriority(updatePriority.type); - } - function runWithPriority(priority, fn) { - var previousPriority = ReactDOMSharedInternals.p; - try { - return ReactDOMSharedInternals.p = priority, fn(); - } finally{ - ReactDOMSharedInternals.p = previousPriority; - } - } - function detachDeletedInstance(node) { - delete node[internalInstanceKey]; - delete node[internalPropsKey]; - delete node[internalEventHandlersKey]; - delete node[internalEventHandlerListenersKey]; - delete node[internalEventHandlesSetKey]; - } - function getClosestInstanceFromNode(targetNode) { - var targetInst; - if (targetInst = targetNode[internalInstanceKey]) return targetInst; - for(var parentNode = targetNode.parentNode; parentNode;){ - if (targetInst = parentNode[internalContainerInstanceKey] || parentNode[internalInstanceKey]) { - parentNode = targetInst.alternate; - if (null !== targetInst.child || null !== parentNode && null !== parentNode.child) for(targetNode = getParentHydrationBoundary(targetNode); null !== targetNode;){ - if (parentNode = targetNode[internalInstanceKey]) return parentNode; - targetNode = getParentHydrationBoundary(targetNode); - } - return targetInst; - } - targetNode = parentNode; - parentNode = targetNode.parentNode; - } - return null; - } - function getInstanceFromNode(node) { - if (node = node[internalInstanceKey] || node[internalContainerInstanceKey]) { - var tag = node.tag; - if (5 === tag || 6 === tag || 13 === tag || 31 === tag || 26 === tag || 27 === tag || 3 === tag) return node; - } - return null; - } - function getNodeFromInstance(inst) { - var tag = inst.tag; - if (5 === tag || 26 === tag || 27 === tag || 6 === tag) return inst.stateNode; - throw Error("getNodeFromInstance: Invalid argument."); - } - function getResourcesFromRoot(root) { - var resources = root[internalRootNodeResourcesKey]; - resources || (resources = root[internalRootNodeResourcesKey] = { - hoistableStyles: new Map(), - hoistableScripts: new Map() - }); - return resources; - } - function markNodeAsHoistable(node) { - node[internalHoistableMarker] = !0; - } - function registerTwoPhaseEvent(registrationName, dependencies) { - registerDirectEvent(registrationName, dependencies); - registerDirectEvent(registrationName + "Capture", dependencies); - } - function registerDirectEvent(registrationName, dependencies) { - registrationNameDependencies[registrationName] && console.error("EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.", registrationName); - registrationNameDependencies[registrationName] = dependencies; - var lowerCasedName = registrationName.toLowerCase(); - possibleRegistrationNames[lowerCasedName] = registrationName; - "onDoubleClick" === registrationName && (possibleRegistrationNames.ondblclick = registrationName); - for(registrationName = 0; registrationName < dependencies.length; registrationName++)allNativeEvents.add(dependencies[registrationName]); - } - function checkControlledValueProps(tagName, props) { - hasReadOnlyValue[props.type] || props.onChange || props.onInput || props.readOnly || props.disabled || null == props.value || ("select" === tagName ? console.error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set `onChange`.") : console.error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.")); - props.onChange || props.readOnly || props.disabled || null == props.checked || console.error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`."); - } - function isAttributeNameSafe(attributeName) { - if (hasOwnProperty.call(validatedAttributeNameCache, attributeName)) return !0; - if (hasOwnProperty.call(illegalAttributeNameCache, attributeName)) return !1; - if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) return validatedAttributeNameCache[attributeName] = !0; - illegalAttributeNameCache[attributeName] = !0; - console.error("Invalid attribute name: `%s`", attributeName); - return !1; - } - function pushMutationContext() { - var prev = viewTransitionMutationContext; - viewTransitionMutationContext = !1; - return prev; - } - function getValueForAttributeOnCustomComponent(node, name, expected) { - if (isAttributeNameSafe(name)) { - if (!node.hasAttribute(name)) { - switch(typeof expected){ - case "symbol": - case "object": - return expected; - case "function": - return expected; - case "boolean": - if (!1 === expected) return expected; - } - return void 0 === expected ? void 0 : null; - } - node = node.getAttribute(name); - if ("" === node && !0 === expected) return !0; - checkAttributeStringCoercion(expected, name); - return node === "" + expected ? expected : node; - } - } - function setValueForAttribute(node, name, value) { - if (isAttributeNameSafe(name)) if (null === value) node.removeAttribute(name); - else { - switch(typeof value){ - case "undefined": - case "function": - case "symbol": - node.removeAttribute(name); - return; - case "boolean": - var prefix = name.toLowerCase().slice(0, 5); - if ("data-" !== prefix && "aria-" !== prefix) { - node.removeAttribute(name); - return; - } - } - checkAttributeStringCoercion(value, name); - node.setAttribute(name, "" + value); - } - } - function setValueForKnownAttribute(node, name, value) { - if (null === value) node.removeAttribute(name); - else { - switch(typeof value){ - case "undefined": - case "function": - case "symbol": - case "boolean": - node.removeAttribute(name); - return; - } - checkAttributeStringCoercion(value, name); - node.setAttribute(name, "" + value); - } - } - function setValueForNamespacedAttribute(node, namespace, name, value) { - if (null === value) node.removeAttribute(name); - else { - switch(typeof value){ - case "undefined": - case "function": - case "symbol": - case "boolean": - node.removeAttribute(name); - return; - } - checkAttributeStringCoercion(value, name); - node.setAttributeNS(namespace, name, "" + value); - } - } - function getToStringValue(value) { - switch(typeof value){ - case "bigint": - case "boolean": - case "number": - case "string": - case "undefined": - return value; - case "object": - return checkFormFieldValueStringCoercion(value), value; - default: - return ""; - } - } - function isCheckable(elem) { - var type = elem.type; - return (elem = elem.nodeName) && "input" === elem.toLowerCase() && ("checkbox" === type || "radio" === type); - } - function trackValueOnNode(node, valueField, currentValue) { - var descriptor = Object.getOwnPropertyDescriptor(node.constructor.prototype, valueField); - if (!node.hasOwnProperty(valueField) && "undefined" !== typeof descriptor && "function" === typeof descriptor.get && "function" === typeof descriptor.set) { - var get = descriptor.get, set = descriptor.set; - Object.defineProperty(node, valueField, { - configurable: !0, - get: function() { - return get.call(this); - }, - set: function(value) { - checkFormFieldValueStringCoercion(value); - currentValue = "" + value; - set.call(this, value); - } - }); - Object.defineProperty(node, valueField, { - enumerable: descriptor.enumerable - }); - return { - getValue: function() { - return currentValue; - }, - setValue: function(value) { - checkFormFieldValueStringCoercion(value); - currentValue = "" + value; - }, - stopTracking: function() { - node._valueTracker = null; - delete node[valueField]; - } - }; - } - } - function track(node) { - if (!node._valueTracker) { - var valueField = isCheckable(node) ? "checked" : "value"; - node._valueTracker = trackValueOnNode(node, valueField, "" + node[valueField]); - } - } - function updateValueIfChanged(node) { - if (!node) return !1; - var tracker = node._valueTracker; - if (!tracker) return !0; - var lastValue = tracker.getValue(); - var value = ""; - node && (value = isCheckable(node) ? node.checked ? "true" : "false" : node.value); - node = value; - return node !== lastValue ? (tracker.setValue(node), !0) : !1; - } - function getActiveElement(doc) { - doc = doc || ("undefined" !== typeof document ? document : void 0); - if ("undefined" === typeof doc) return null; - try { - return doc.activeElement || doc.body; - } catch (e) { - return doc.body; - } - } - function escapeSelectorAttributeValueInsideDoubleQuotes(value) { - return value.replace(escapeSelectorAttributeValueInsideDoubleQuotesRegex, function(ch) { - return "\\" + ch.charCodeAt(0).toString(16) + " "; - }); - } - function validateInputProps(element, props) { - void 0 === props.checked || void 0 === props.defaultChecked || didWarnCheckedDefaultChecked || (console.error("%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components", getCurrentFiberOwnerNameInDevOrNull() || "A component", props.type), didWarnCheckedDefaultChecked = !0); - void 0 === props.value || void 0 === props.defaultValue || didWarnValueDefaultValue$1 || (console.error("%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components", getCurrentFiberOwnerNameInDevOrNull() || "A component", props.type), didWarnValueDefaultValue$1 = !0); - } - function updateInput(element, value, defaultValue, lastDefaultValue, checked, defaultChecked, type, name) { - element.name = ""; - null != type && "function" !== typeof type && "symbol" !== typeof type && "boolean" !== typeof type ? (checkAttributeStringCoercion(type, "type"), element.type = type) : element.removeAttribute("type"); - if (null != value) if ("number" === type) { - if (0 === value && "" === element.value || element.value != value) element.value = "" + getToStringValue(value); - } else element.value !== "" + getToStringValue(value) && (element.value = "" + getToStringValue(value)); - else "submit" !== type && "reset" !== type || element.removeAttribute("value"); - null != value ? setDefaultValue(element, type, getToStringValue(value)) : null != defaultValue ? setDefaultValue(element, type, getToStringValue(defaultValue)) : null != lastDefaultValue && element.removeAttribute("value"); - null == checked && null != defaultChecked && (element.defaultChecked = !!defaultChecked); - null != checked && (element.checked = checked && "function" !== typeof checked && "symbol" !== typeof checked); - null != name && "function" !== typeof name && "symbol" !== typeof name && "boolean" !== typeof name ? (checkAttributeStringCoercion(name, "name"), element.name = "" + getToStringValue(name)) : element.removeAttribute("name"); - } - function initInput(element, value, defaultValue, checked, defaultChecked, type, name, isHydrating) { - null != type && "function" !== typeof type && "symbol" !== typeof type && "boolean" !== typeof type && (checkAttributeStringCoercion(type, "type"), element.type = type); - if (null != value || null != defaultValue) { - if (!("submit" !== type && "reset" !== type || void 0 !== value && null !== value)) { - track(element); - return; - } - defaultValue = null != defaultValue ? "" + getToStringValue(defaultValue) : ""; - value = null != value ? "" + getToStringValue(value) : defaultValue; - isHydrating || value === element.value || (element.value = value); - element.defaultValue = value; - } - checked = null != checked ? checked : defaultChecked; - checked = "function" !== typeof checked && "symbol" !== typeof checked && !!checked; - element.checked = isHydrating ? element.checked : !!checked; - element.defaultChecked = !!checked; - null != name && "function" !== typeof name && "symbol" !== typeof name && "boolean" !== typeof name && (checkAttributeStringCoercion(name, "name"), element.name = name); - track(element); - } - function setDefaultValue(node, type, value) { - "number" === type && getActiveElement(node.ownerDocument) === node || node.defaultValue === "" + value || (node.defaultValue = "" + value); - } - function validateOptionProps(element, props) { - null == props.value && ("object" === typeof props.children && null !== props.children ? React.Children.forEach(props.children, function(child) { - null == child || "string" === typeof child || "number" === typeof child || "bigint" === typeof child || didWarnInvalidChild || (didWarnInvalidChild = !0, console.error("Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to <option>.")); - }) : null == props.dangerouslySetInnerHTML || didWarnInvalidInnerHTML || (didWarnInvalidInnerHTML = !0, console.error("Pass a `value` prop if you set dangerouslyInnerHTML so React knows which value should be selected."))); - null == props.selected || didWarnSelectedSetOnOption || (console.error("Use the `defaultValue` or `value` props on <select> instead of setting `selected` on <option>."), didWarnSelectedSetOnOption = !0); - } - function getDeclarationErrorAddendum() { - var ownerName = getCurrentFiberOwnerNameInDevOrNull(); - return ownerName ? "\n\nCheck the render method of `" + ownerName + "`." : ""; - } - function updateOptions(node, multiple, propValue, setDefaultSelected) { - node = node.options; - if (multiple) { - multiple = {}; - for(var i = 0; i < propValue.length; i++)multiple["$" + propValue[i]] = !0; - for(propValue = 0; propValue < node.length; propValue++)i = multiple.hasOwnProperty("$" + node[propValue].value), node[propValue].selected !== i && (node[propValue].selected = i), i && setDefaultSelected && (node[propValue].defaultSelected = !0); - } else { - propValue = "" + getToStringValue(propValue); - multiple = null; - for(i = 0; i < node.length; i++){ - if (node[i].value === propValue) { - node[i].selected = !0; - setDefaultSelected && (node[i].defaultSelected = !0); - return; - } - null !== multiple || node[i].disabled || (multiple = node[i]); - } - null !== multiple && (multiple.selected = !0); - } - } - function validateSelectProps(element, props) { - for(element = 0; element < valuePropNames.length; element++){ - var propName = valuePropNames[element]; - if (null != props[propName]) { - var propNameIsArray = isArrayImpl(props[propName]); - props.multiple && !propNameIsArray ? console.error("The `%s` prop supplied to <select> must be an array if `multiple` is true.%s", propName, getDeclarationErrorAddendum()) : !props.multiple && propNameIsArray && console.error("The `%s` prop supplied to <select> must be a scalar value if `multiple` is false.%s", propName, getDeclarationErrorAddendum()); - } - } - void 0 === props.value || void 0 === props.defaultValue || didWarnValueDefaultValue || (console.error("Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://react.dev/link/controlled-components"), didWarnValueDefaultValue = !0); - } - function validateTextareaProps(element, props) { - void 0 === props.value || void 0 === props.defaultValue || didWarnValDefaultVal || (console.error("%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://react.dev/link/controlled-components", getCurrentFiberOwnerNameInDevOrNull() || "A component"), didWarnValDefaultVal = !0); - null != props.children && null == props.value && console.error("Use the `defaultValue` or `value` props instead of setting children on <textarea>."); - } - function updateTextarea(element, value, defaultValue) { - if (null != value && (value = "" + getToStringValue(value), value !== element.value && (element.value = value), null == defaultValue)) { - element.defaultValue !== value && (element.defaultValue = value); - return; - } - element.defaultValue = null != defaultValue ? "" + getToStringValue(defaultValue) : ""; - } - function initTextarea(element, value, defaultValue, children) { - if (null == value) { - if (null != children) { - if (null != defaultValue) throw Error("If you supply `defaultValue` on a <textarea>, do not pass children."); - if (isArrayImpl(children)) { - if (1 < children.length) throw Error("<textarea> can only have at most one child."); - children = children[0]; - } - defaultValue = children; - } - null == defaultValue && (defaultValue = ""); - value = defaultValue; - } - defaultValue = getToStringValue(value); - element.defaultValue = defaultValue; - children = element.textContent; - children === defaultValue && "" !== children && null !== children && (element.value = children); - track(element); - } - function findNotableNode(node, indent) { - return void 0 === node.serverProps && 0 === node.serverTail.length && 1 === node.children.length && 3 < node.distanceFromLeaf && node.distanceFromLeaf > 15 - indent ? findNotableNode(node.children[0], indent) : node; - } - function indentation(indent) { - return " " + " ".repeat(indent); - } - function added(indent) { - return "+ " + " ".repeat(indent); - } - function removed(indent) { - return "- " + " ".repeat(indent); - } - function describeFiberType(fiber) { - switch(fiber.tag){ - case 26: - case 27: - case 5: - return fiber.type; - case 16: - return "Lazy"; - case 31: - return "Activity"; - case 13: - return "Suspense"; - case 19: - return "SuspenseList"; - case 0: - case 15: - return fiber = fiber.type, fiber.displayName || fiber.name || null; - case 11: - return fiber = fiber.type.render, fiber.displayName || fiber.name || null; - case 1: - return fiber = fiber.type, fiber.displayName || fiber.name || null; - default: - return null; - } - } - function describeTextNode(content, maxLength) { - return needsEscaping.test(content) ? (content = JSON.stringify(content), content.length > maxLength - 2 ? 8 > maxLength ? '{"..."}' : "{" + content.slice(0, maxLength - 7) + '..."}' : "{" + content + "}") : content.length > maxLength ? 5 > maxLength ? '{"..."}' : content.slice(0, maxLength - 3) + "..." : content; - } - function describeTextDiff(clientText, serverProps, indent) { - var maxLength = 120 - 2 * indent; - if (null === serverProps) return added(indent) + describeTextNode(clientText, maxLength) + "\n"; - if ("string" === typeof serverProps) { - for(var firstDiff = 0; firstDiff < serverProps.length && firstDiff < clientText.length && serverProps.charCodeAt(firstDiff) === clientText.charCodeAt(firstDiff); firstDiff++); - firstDiff > maxLength - 8 && 10 < firstDiff && (clientText = "..." + clientText.slice(firstDiff - 8), serverProps = "..." + serverProps.slice(firstDiff - 8)); - return added(indent) + describeTextNode(clientText, maxLength) + "\n" + removed(indent) + describeTextNode(serverProps, maxLength) + "\n"; - } - return indentation(indent) + describeTextNode(clientText, maxLength) + "\n"; - } - function objectName(object) { - return Object.prototype.toString.call(object).replace(/^\[object (.*)\]$/, function(m, p0) { - return p0; - }); - } - function describeValue(value, maxLength) { - switch(typeof value){ - case "string": - return value = JSON.stringify(value), value.length > maxLength ? 5 > maxLength ? '"..."' : value.slice(0, maxLength - 4) + '..."' : value; - case "object": - if (null === value) return "null"; - if (isArrayImpl(value)) return "[...]"; - if (value.$$typeof === REACT_ELEMENT_TYPE) return (maxLength = getComponentNameFromType(value.type)) ? "<" + maxLength + ">" : "<...>"; - var name = objectName(value); - if ("Object" === name) { - name = ""; - maxLength -= 2; - for(var propName in value)if (value.hasOwnProperty(propName)) { - var jsonPropName = JSON.stringify(propName); - jsonPropName !== '"' + propName + '"' && (propName = jsonPropName); - maxLength -= propName.length - 2; - jsonPropName = describeValue(value[propName], 15 > maxLength ? maxLength : 15); - maxLength -= jsonPropName.length; - if (0 > maxLength) { - name += "" === name ? "..." : ", ..."; - break; - } - name += ("" === name ? "" : ",") + propName + ":" + jsonPropName; - } - return "{" + name + "}"; - } - return name; - case "function": - return (maxLength = value.displayName || value.name) ? "function " + maxLength : "function"; - default: - return String(value); - } - } - function describePropValue(value, maxLength) { - return "string" !== typeof value || needsEscaping.test(value) ? "{" + describeValue(value, maxLength - 2) + "}" : value.length > maxLength - 2 ? 5 > maxLength ? '"..."' : '"' + value.slice(0, maxLength - 5) + '..."' : '"' + value + '"'; - } - function describeExpandedElement(type, props, rowPrefix) { - var remainingRowLength = 120 - rowPrefix.length - type.length, properties = [], propName; - for(propName in props)if (props.hasOwnProperty(propName) && "children" !== propName) { - var propValue = describePropValue(props[propName], 120 - rowPrefix.length - propName.length - 1); - remainingRowLength -= propName.length + propValue.length + 2; - properties.push(propName + "=" + propValue); - } - return 0 === properties.length ? rowPrefix + "<" + type + ">\n" : 0 < remainingRowLength ? rowPrefix + "<" + type + " " + properties.join(" ") + ">\n" : rowPrefix + "<" + type + "\n" + rowPrefix + " " + properties.join("\n" + rowPrefix + " ") + "\n" + rowPrefix + ">\n"; - } - function describePropertiesDiff(clientObject, serverObject, indent) { - var properties = "", remainingServerProperties = assign({}, serverObject), propName; - for(propName in clientObject)if (clientObject.hasOwnProperty(propName)) { - delete remainingServerProperties[propName]; - var maxLength = 120 - 2 * indent - propName.length - 2, clientPropValue = describeValue(clientObject[propName], maxLength); - serverObject.hasOwnProperty(propName) ? (maxLength = describeValue(serverObject[propName], maxLength), properties += added(indent) + propName + ": " + clientPropValue + "\n", properties += removed(indent) + propName + ": " + maxLength + "\n") : properties += added(indent) + propName + ": " + clientPropValue + "\n"; - } - for(var _propName in remainingServerProperties)remainingServerProperties.hasOwnProperty(_propName) && (clientObject = describeValue(remainingServerProperties[_propName], 120 - 2 * indent - _propName.length - 2), properties += removed(indent) + _propName + ": " + clientObject + "\n"); - return properties; - } - function describeElementDiff(type, clientProps, serverProps, indent) { - var content = "", serverPropNames = new Map(); - for(propName$jscomp$0 in serverProps)serverProps.hasOwnProperty(propName$jscomp$0) && serverPropNames.set(propName$jscomp$0.toLowerCase(), propName$jscomp$0); - if (1 === serverPropNames.size && serverPropNames.has("children")) content += describeExpandedElement(type, clientProps, indentation(indent)); - else { - for(var _propName2 in clientProps)if (clientProps.hasOwnProperty(_propName2) && "children" !== _propName2) { - var maxLength$jscomp$0 = 120 - 2 * (indent + 1) - _propName2.length - 1, serverPropName = serverPropNames.get(_propName2.toLowerCase()); - if (void 0 !== serverPropName) { - serverPropNames.delete(_propName2.toLowerCase()); - var propName$jscomp$0 = clientProps[_propName2]; - serverPropName = serverProps[serverPropName]; - var clientPropValue = describePropValue(propName$jscomp$0, maxLength$jscomp$0); - maxLength$jscomp$0 = describePropValue(serverPropName, maxLength$jscomp$0); - "object" === typeof propName$jscomp$0 && null !== propName$jscomp$0 && "object" === typeof serverPropName && null !== serverPropName && "Object" === objectName(propName$jscomp$0) && "Object" === objectName(serverPropName) && (2 < Object.keys(propName$jscomp$0).length || 2 < Object.keys(serverPropName).length || -1 < clientPropValue.indexOf("...") || -1 < maxLength$jscomp$0.indexOf("...")) ? content += indentation(indent + 1) + _propName2 + "={{\n" + describePropertiesDiff(propName$jscomp$0, serverPropName, indent + 2) + indentation(indent + 1) + "}}\n" : (content += added(indent + 1) + _propName2 + "=" + clientPropValue + "\n", content += removed(indent + 1) + _propName2 + "=" + maxLength$jscomp$0 + "\n"); - } else content += indentation(indent + 1) + _propName2 + "=" + describePropValue(clientProps[_propName2], maxLength$jscomp$0) + "\n"; - } - serverPropNames.forEach(function(propName) { - if ("children" !== propName) { - var maxLength = 120 - 2 * (indent + 1) - propName.length - 1; - content += removed(indent + 1) + propName + "=" + describePropValue(serverProps[propName], maxLength) + "\n"; - } - }); - content = "" === content ? indentation(indent) + "<" + type + ">\n" : indentation(indent) + "<" + type + "\n" + content + indentation(indent) + ">\n"; - } - type = serverProps.children; - clientProps = clientProps.children; - if ("string" === typeof type || "number" === typeof type || "bigint" === typeof type) { - serverPropNames = ""; - if ("string" === typeof clientProps || "number" === typeof clientProps || "bigint" === typeof clientProps) serverPropNames = "" + clientProps; - content += describeTextDiff(serverPropNames, "" + type, indent + 1); - } else if ("string" === typeof clientProps || "number" === typeof clientProps || "bigint" === typeof clientProps) content = null == type ? content + describeTextDiff("" + clientProps, null, indent + 1) : content + describeTextDiff("" + clientProps, void 0, indent + 1); - return content; - } - function describeSiblingFiber(fiber, indent) { - var type = describeFiberType(fiber); - if (null === type) { - type = ""; - for(fiber = fiber.child; fiber;)type += describeSiblingFiber(fiber, indent), fiber = fiber.sibling; - return type; - } - return indentation(indent) + "<" + type + ">\n"; - } - function describeNode(node, indent) { - var skipToNode = findNotableNode(node, indent); - if (skipToNode !== node && (1 !== node.children.length || node.children[0] !== skipToNode)) return indentation(indent) + "...\n" + describeNode(skipToNode, indent + 1); - skipToNode = ""; - var debugInfo = node.fiber._debugInfo; - if (debugInfo) for(var i = 0; i < debugInfo.length; i++){ - var serverComponentName = debugInfo[i].name; - "string" === typeof serverComponentName && (skipToNode += indentation(indent) + "<" + serverComponentName + ">\n", indent++); - } - debugInfo = ""; - i = node.fiber.pendingProps; - if (6 === node.fiber.tag) debugInfo = describeTextDiff(i, node.serverProps, indent), indent++; - else if (serverComponentName = describeFiberType(node.fiber), null !== serverComponentName) if (void 0 === node.serverProps) { - debugInfo = indent; - var maxLength = 120 - 2 * debugInfo - serverComponentName.length - 2, content = ""; - for(propName in i)if (i.hasOwnProperty(propName) && "children" !== propName) { - var propValue = describePropValue(i[propName], 15); - maxLength -= propName.length + propValue.length + 2; - if (0 > maxLength) { - content += " ..."; - break; - } - content += " " + propName + "=" + propValue; - } - debugInfo = indentation(debugInfo) + "<" + serverComponentName + content + ">\n"; - indent++; - } else null === node.serverProps ? (debugInfo = describeExpandedElement(serverComponentName, i, added(indent)), indent++) : "string" === typeof node.serverProps ? console.error("Should not have matched a non HostText fiber to a Text node. This is a bug in React.") : (debugInfo = describeElementDiff(serverComponentName, i, node.serverProps, indent), indent++); - var propName = ""; - i = node.fiber.child; - for(serverComponentName = 0; i && serverComponentName < node.children.length;)maxLength = node.children[serverComponentName], maxLength.fiber === i ? (propName += describeNode(maxLength, indent), serverComponentName++) : propName += describeSiblingFiber(i, indent), i = i.sibling; - i && 0 < node.children.length && (propName += indentation(indent) + "...\n"); - i = node.serverTail; - null === node.serverProps && indent--; - for(node = 0; node < i.length; node++)serverComponentName = i[node], propName = "string" === typeof serverComponentName ? propName + (removed(indent) + describeTextNode(serverComponentName, 120 - 2 * indent) + "\n") : propName + describeExpandedElement(serverComponentName.type, serverComponentName.props, removed(indent)); - return skipToNode + debugInfo + propName; - } - function describeDiff(rootNode) { - try { - return "\n\n" + describeNode(rootNode, 0); - } catch (x) { - return ""; - } - } - function describeAncestors(ancestor, child, props) { - for(var fiber = child, node = null, distanceFromLeaf = 0; fiber;)fiber === ancestor && (distanceFromLeaf = 0), node = { - fiber: fiber, - children: null !== node ? [ - node - ] : [], - serverProps: fiber === child ? props : fiber === ancestor ? null : void 0, - serverTail: [], - distanceFromLeaf: distanceFromLeaf - }, distanceFromLeaf++, fiber = fiber.return; - return null !== node ? describeDiff(node).replaceAll(/^[+-]/gm, ">") : ""; - } - function updatedAncestorInfoDev(oldInfo, tag) { - var ancestorInfo = assign({}, oldInfo || emptyAncestorInfoDev), info = { - tag: tag - }; - -1 !== inScopeTags.indexOf(tag) && (ancestorInfo.aTagInScope = null, ancestorInfo.buttonTagInScope = null, ancestorInfo.nobrTagInScope = null); - -1 !== buttonScopeTags.indexOf(tag) && (ancestorInfo.pTagInButtonScope = null); - -1 !== specialTags.indexOf(tag) && "address" !== tag && "div" !== tag && "p" !== tag && (ancestorInfo.listItemTagAutoclosing = null, ancestorInfo.dlItemTagAutoclosing = null); - ancestorInfo.current = info; - "form" === tag && (ancestorInfo.formTag = info); - "a" === tag && (ancestorInfo.aTagInScope = info); - "button" === tag && (ancestorInfo.buttonTagInScope = info); - "nobr" === tag && (ancestorInfo.nobrTagInScope = info); - "p" === tag && (ancestorInfo.pTagInButtonScope = info); - "li" === tag && (ancestorInfo.listItemTagAutoclosing = info); - if ("dd" === tag || "dt" === tag) ancestorInfo.dlItemTagAutoclosing = info; - "#document" === tag || "html" === tag ? ancestorInfo.containerTagInScope = null : ancestorInfo.containerTagInScope || (ancestorInfo.containerTagInScope = info); - null !== oldInfo || "#document" !== tag && "html" !== tag && "body" !== tag ? !0 === ancestorInfo.implicitRootScope && (ancestorInfo.implicitRootScope = !1) : ancestorInfo.implicitRootScope = !0; - return ancestorInfo; - } - function isTagValidWithParent(tag, parentTag, implicitRootScope) { - switch(parentTag){ - case "select": - return "hr" === tag || "option" === tag || "optgroup" === tag || "script" === tag || "template" === tag || "#text" === tag; - case "optgroup": - return "option" === tag || "#text" === tag; - case "option": - return "#text" === tag; - case "tr": - return "th" === tag || "td" === tag || "style" === tag || "script" === tag || "template" === tag; - case "tbody": - case "thead": - case "tfoot": - return "tr" === tag || "style" === tag || "script" === tag || "template" === tag; - case "colgroup": - return "col" === tag || "template" === tag; - case "table": - return "caption" === tag || "colgroup" === tag || "tbody" === tag || "tfoot" === tag || "thead" === tag || "style" === tag || "script" === tag || "template" === tag; - case "head": - return "base" === tag || "basefont" === tag || "bgsound" === tag || "link" === tag || "meta" === tag || "title" === tag || "noscript" === tag || "noframes" === tag || "style" === tag || "script" === tag || "template" === tag; - case "html": - if (implicitRootScope) break; - return "head" === tag || "body" === tag || "frameset" === tag; - case "frameset": - return "frame" === tag; - case "#document": - if (!implicitRootScope) return "html" === tag; - } - switch(tag){ - case "h1": - case "h2": - case "h3": - case "h4": - case "h5": - case "h6": - return "h1" !== parentTag && "h2" !== parentTag && "h3" !== parentTag && "h4" !== parentTag && "h5" !== parentTag && "h6" !== parentTag; - case "rp": - case "rt": - return -1 === impliedEndTags.indexOf(parentTag); - case "caption": - case "col": - case "colgroup": - case "frameset": - case "frame": - case "tbody": - case "td": - case "tfoot": - case "th": - case "thead": - case "tr": - return null == parentTag; - case "head": - return implicitRootScope || null === parentTag; - case "html": - return implicitRootScope && "#document" === parentTag || null === parentTag; - case "body": - return implicitRootScope && ("#document" === parentTag || "html" === parentTag) || null === parentTag; - } - return !0; - } - function findInvalidAncestorForTag(tag, ancestorInfo) { - switch(tag){ - case "address": - case "article": - case "aside": - case "blockquote": - case "center": - case "details": - case "dialog": - case "dir": - case "div": - case "dl": - case "fieldset": - case "figcaption": - case "figure": - case "footer": - case "header": - case "hgroup": - case "main": - case "menu": - case "nav": - case "ol": - case "p": - case "section": - case "summary": - case "ul": - case "pre": - case "listing": - case "table": - case "hr": - case "xmp": - case "h1": - case "h2": - case "h3": - case "h4": - case "h5": - case "h6": - return ancestorInfo.pTagInButtonScope; - case "form": - return ancestorInfo.formTag || ancestorInfo.pTagInButtonScope; - case "li": - return ancestorInfo.listItemTagAutoclosing; - case "dd": - case "dt": - return ancestorInfo.dlItemTagAutoclosing; - case "button": - return ancestorInfo.buttonTagInScope; - case "a": - return ancestorInfo.aTagInScope; - case "nobr": - return ancestorInfo.nobrTagInScope; - } - return null; - } - function findAncestor(parent, tagName) { - for(; parent;){ - switch(parent.tag){ - case 5: - case 26: - case 27: - if (parent.type === tagName) return parent; - } - parent = parent.return; - } - return null; - } - function validateDOMNesting(childTag, ancestorInfo) { - ancestorInfo = ancestorInfo || emptyAncestorInfoDev; - var parentInfo = ancestorInfo.current; - ancestorInfo = (parentInfo = isTagValidWithParent(childTag, parentInfo && parentInfo.tag, ancestorInfo.implicitRootScope) ? null : parentInfo) ? null : findInvalidAncestorForTag(childTag, ancestorInfo); - ancestorInfo = parentInfo || ancestorInfo; - if (!ancestorInfo) return !0; - var ancestorTag = ancestorInfo.tag; - ancestorInfo = String(!!parentInfo) + "|" + childTag + "|" + ancestorTag; - if (didWarn[ancestorInfo]) return !1; - didWarn[ancestorInfo] = !0; - var ancestor = (ancestorInfo = current) ? findAncestor(ancestorInfo.return, ancestorTag) : null, ancestorDescription = null !== ancestorInfo && null !== ancestor ? describeAncestors(ancestor, ancestorInfo, null) : "", tagDisplayName = "<" + childTag + ">"; - parentInfo ? (parentInfo = "", "table" === ancestorTag && "tr" === childTag && (parentInfo += " Add a <tbody>, <thead> or <tfoot> to your code to match the DOM tree generated by the browser."), console.error("In HTML, %s cannot be a child of <%s>.%s\nThis will cause a hydration error.%s", tagDisplayName, ancestorTag, parentInfo, ancestorDescription)) : console.error("In HTML, %s cannot be a descendant of <%s>.\nThis will cause a hydration error.%s", tagDisplayName, ancestorTag, ancestorDescription); - ancestorInfo && (childTag = ancestorInfo.return, null === ancestor || null === childTag || ancestor === childTag && childTag._debugOwner === ancestorInfo._debugOwner || runWithFiberInDEV(ancestor, function() { - console.error("<%s> cannot contain a nested %s.\nSee this log for the ancestor stack trace.", ancestorTag, tagDisplayName); - })); - return !1; - } - function validateTextNesting(childText, parentTag, implicitRootScope) { - if (implicitRootScope || isTagValidWithParent("#text", parentTag, !1)) return !0; - implicitRootScope = "#text|" + parentTag; - if (didWarn[implicitRootScope]) return !1; - didWarn[implicitRootScope] = !0; - var ancestor = (implicitRootScope = current) ? findAncestor(implicitRootScope, parentTag) : null; - implicitRootScope = null !== implicitRootScope && null !== ancestor ? describeAncestors(ancestor, implicitRootScope, 6 !== implicitRootScope.tag ? { - children: null - } : null) : ""; - /\S/.test(childText) ? console.error("In HTML, text nodes cannot be a child of <%s>.\nThis will cause a hydration error.%s", parentTag, implicitRootScope) : console.error("In HTML, whitespace text nodes cannot be a child of <%s>. Make sure you don't have any extra whitespace between tags on each line of your source code.\nThis will cause a hydration error.%s", parentTag, implicitRootScope); - return !1; - } - function setTextContent(node, text) { - if (text) { - var firstChild = node.firstChild; - if (firstChild && firstChild === node.lastChild && 3 === firstChild.nodeType) { - firstChild.nodeValue = text; - return; - } - } - node.textContent = text; - } - function camelize(string) { - return string.replace(hyphenPattern, function(_, character) { - return character.toUpperCase(); - }); - } - function setValueForStyle(style, styleName, value) { - var isCustomProperty = 0 === styleName.indexOf("--"); - isCustomProperty || (-1 < styleName.indexOf("-") ? warnedStyleNames.hasOwnProperty(styleName) && warnedStyleNames[styleName] || (warnedStyleNames[styleName] = !0, console.error("Unsupported style property %s. Did you mean %s?", styleName, camelize(styleName.replace(msPattern, "ms-")))) : badVendoredStyleNamePattern.test(styleName) ? warnedStyleNames.hasOwnProperty(styleName) && warnedStyleNames[styleName] || (warnedStyleNames[styleName] = !0, console.error("Unsupported vendor-prefixed style property %s. Did you mean %s?", styleName, styleName.charAt(0).toUpperCase() + styleName.slice(1))) : !badStyleValueWithSemicolonPattern.test(value) || warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value] || (warnedStyleValues[value] = !0, console.error('Style property values shouldn\'t contain a semicolon. Try "%s: %s" instead.', styleName, value.replace(badStyleValueWithSemicolonPattern, ""))), "number" === typeof value && (isNaN(value) ? warnedForNaNValue || (warnedForNaNValue = !0, console.error("`NaN` is an invalid value for the `%s` css style property.", styleName)) : isFinite(value) || warnedForInfinityValue || (warnedForInfinityValue = !0, console.error("`Infinity` is an invalid value for the `%s` css style property.", styleName)))); - null == value || "boolean" === typeof value || "" === value ? isCustomProperty ? style.setProperty(styleName, "") : "float" === styleName ? style.cssFloat = "" : style[styleName] = "" : isCustomProperty ? style.setProperty(styleName, value) : "number" !== typeof value || 0 === value || unitlessNumbers.has(styleName) ? "float" === styleName ? style.cssFloat = value : (checkCSSPropertyStringCoercion(value, styleName), style[styleName] = ("" + value).trim()) : style[styleName] = value + "px"; - } - function setValueForStyles(node, styles, prevStyles) { - if (null != styles && "object" !== typeof styles) throw Error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX."); - styles && Object.freeze(styles); - node = node.style; - if (null != prevStyles) { - if (styles) { - var expandedUpdates = {}; - if (prevStyles) { - for(var key in prevStyles)if (prevStyles.hasOwnProperty(key) && !styles.hasOwnProperty(key)) for(var longhands = shorthandToLonghand[key] || [ - key - ], i = 0; i < longhands.length; i++)expandedUpdates[longhands[i]] = key; - } - for(var _key in styles)if (styles.hasOwnProperty(_key) && (!prevStyles || prevStyles[_key] !== styles[_key])) for(key = shorthandToLonghand[_key] || [ - _key - ], longhands = 0; longhands < key.length; longhands++)expandedUpdates[key[longhands]] = _key; - _key = {}; - for(var key$jscomp$0 in styles)for(key = shorthandToLonghand[key$jscomp$0] || [ - key$jscomp$0 - ], longhands = 0; longhands < key.length; longhands++)_key[key[longhands]] = key$jscomp$0; - key$jscomp$0 = {}; - for(var _key2 in expandedUpdates)if (key = expandedUpdates[_key2], (longhands = _key[_key2]) && key !== longhands && (i = key + "," + longhands, !key$jscomp$0[i])) { - key$jscomp$0[i] = !0; - i = console; - var value = styles[key]; - i.error.call(i, "%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.", null == value || "boolean" === typeof value || "" === value ? "Removing" : "Updating", key, longhands); - } - } - for(var styleName in prevStyles)!prevStyles.hasOwnProperty(styleName) || null != styles && styles.hasOwnProperty(styleName) || (0 === styleName.indexOf("--") ? node.setProperty(styleName, "") : "float" === styleName ? node.cssFloat = "" : node[styleName] = "", viewTransitionMutationContext = !0); - for(var _styleName in styles)_key2 = styles[_styleName], styles.hasOwnProperty(_styleName) && prevStyles[_styleName] !== _key2 && (setValueForStyle(node, _styleName, _key2), viewTransitionMutationContext = !0); - } else for(expandedUpdates in styles)styles.hasOwnProperty(expandedUpdates) && setValueForStyle(node, expandedUpdates, styles[expandedUpdates]); - } - function isCustomElement(tagName) { - if (-1 === tagName.indexOf("-")) return !1; - switch(tagName){ - case "annotation-xml": - case "color-profile": - case "font-face": - case "font-face-src": - case "font-face-uri": - case "font-face-format": - case "font-face-name": - case "missing-glyph": - return !1; - default: - return !0; - } - } - function getAttributeAlias(name) { - return aliases.get(name) || name; - } - function validateProperty$1(tagName, name) { - if (hasOwnProperty.call(warnedProperties$1, name) && warnedProperties$1[name]) return !0; - if (rARIACamel$1.test(name)) { - tagName = "aria-" + name.slice(4).toLowerCase(); - tagName = ariaProperties.hasOwnProperty(tagName) ? tagName : null; - if (null == tagName) return console.error("Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.", name), warnedProperties$1[name] = !0; - if (name !== tagName) return console.error("Invalid ARIA attribute `%s`. Did you mean `%s`?", name, tagName), warnedProperties$1[name] = !0; - } - if (rARIA$1.test(name)) { - tagName = name.toLowerCase(); - tagName = ariaProperties.hasOwnProperty(tagName) ? tagName : null; - if (null == tagName) return warnedProperties$1[name] = !0, !1; - name !== tagName && (console.error("Unknown ARIA attribute `%s`. Did you mean `%s`?", name, tagName), warnedProperties$1[name] = !0); - } - return !0; - } - function validateProperties$2(type, props) { - var invalidProps = [], key; - for(key in props)validateProperty$1(type, key) || invalidProps.push(key); - props = invalidProps.map(function(prop) { - return "`" + prop + "`"; - }).join(", "); - 1 === invalidProps.length ? console.error("Invalid aria prop %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props", props, type) : 1 < invalidProps.length && console.error("Invalid aria props %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props", props, type); - } - function validateProperty(tagName, name, value, eventRegistry) { - if (hasOwnProperty.call(warnedProperties, name) && warnedProperties[name]) return !0; - var lowerCasedName = name.toLowerCase(); - if ("onfocusin" === lowerCasedName || "onfocusout" === lowerCasedName) return console.error("React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React."), warnedProperties[name] = !0; - if ("function" === typeof value && ("form" === tagName && "action" === name || "input" === tagName && "formAction" === name || "button" === tagName && "formAction" === name)) return !0; - if (null != eventRegistry) { - tagName = eventRegistry.possibleRegistrationNames; - if (eventRegistry.registrationNameDependencies.hasOwnProperty(name)) return !0; - eventRegistry = tagName.hasOwnProperty(lowerCasedName) ? tagName[lowerCasedName] : null; - if (null != eventRegistry) return console.error("Invalid event handler property `%s`. Did you mean `%s`?", name, eventRegistry), warnedProperties[name] = !0; - if (EVENT_NAME_REGEX.test(name)) return console.error("Unknown event handler property `%s`. It will be ignored.", name), warnedProperties[name] = !0; - } else if (EVENT_NAME_REGEX.test(name)) return INVALID_EVENT_NAME_REGEX.test(name) && console.error("Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.", name), warnedProperties[name] = !0; - if (rARIA.test(name) || rARIACamel.test(name)) return !0; - if ("innerhtml" === lowerCasedName) return console.error("Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`."), warnedProperties[name] = !0; - if ("aria" === lowerCasedName) return console.error("The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead."), warnedProperties[name] = !0; - if ("is" === lowerCasedName && null !== value && void 0 !== value && "string" !== typeof value) return console.error("Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.", typeof value), warnedProperties[name] = !0; - if ("number" === typeof value && isNaN(value)) return console.error("Received NaN for the `%s` attribute. If this is expected, cast the value to a string.", name), warnedProperties[name] = !0; - if (possibleStandardNames.hasOwnProperty(lowerCasedName)) { - if (lowerCasedName = possibleStandardNames[lowerCasedName], lowerCasedName !== name) return console.error("Invalid DOM property `%s`. Did you mean `%s`?", name, lowerCasedName), warnedProperties[name] = !0; - } else if (name !== lowerCasedName) return console.error("React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.", name, lowerCasedName), warnedProperties[name] = !0; - switch(name){ - case "dangerouslySetInnerHTML": - case "children": - case "style": - case "suppressContentEditableWarning": - case "suppressHydrationWarning": - case "defaultValue": - case "defaultChecked": - case "innerHTML": - case "ref": - return !0; - case "innerText": - case "textContent": - return !0; - } - switch(typeof value){ - case "boolean": - switch(name){ - case "autoFocus": - case "checked": - case "multiple": - case "muted": - case "selected": - case "contentEditable": - case "spellCheck": - case "draggable": - case "value": - case "autoReverse": - case "externalResourcesRequired": - case "focusable": - case "preserveAlpha": - case "allowFullScreen": - case "async": - case "autoPlay": - case "controls": - case "default": - case "defer": - case "disabled": - case "disablePictureInPicture": - case "disableRemotePlayback": - case "formNoValidate": - case "hidden": - case "loop": - case "noModule": - case "noValidate": - case "open": - case "playsInline": - case "readOnly": - case "required": - case "reversed": - case "scoped": - case "seamless": - case "itemScope": - case "capture": - case "download": - case "inert": - return !0; - default: - lowerCasedName = name.toLowerCase().slice(0, 5); - if ("data-" === lowerCasedName || "aria-" === lowerCasedName) return !0; - value ? console.error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.', value, name, name, value, name) : console.error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.', value, name, name, value, name, name, name); - return warnedProperties[name] = !0; - } - case "function": - case "symbol": - return warnedProperties[name] = !0, !1; - case "string": - if ("false" === value || "true" === value) { - switch(name){ - case "checked": - case "selected": - case "multiple": - case "muted": - case "allowFullScreen": - case "async": - case "autoPlay": - case "controls": - case "default": - case "defer": - case "disabled": - case "disablePictureInPicture": - case "disableRemotePlayback": - case "formNoValidate": - case "hidden": - case "loop": - case "noModule": - case "noValidate": - case "open": - case "playsInline": - case "readOnly": - case "required": - case "reversed": - case "scoped": - case "seamless": - case "itemScope": - case "inert": - break; - default: - return !0; - } - console.error("Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?", value, name, "false" === value ? "The browser will interpret it as a truthy value." : 'Although this works, it will not work as expected if you pass the string "false".', name, value); - warnedProperties[name] = !0; - } - } - return !0; - } - function warnUnknownProperties(type, props, eventRegistry) { - var unknownProps = [], key; - for(key in props)validateProperty(type, key, props[key], eventRegistry) || unknownProps.push(key); - props = unknownProps.map(function(prop) { - return "`" + prop + "`"; - }).join(", "); - 1 === unknownProps.length ? console.error("Invalid value for prop %s on <%s> tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://react.dev/link/attribute-behavior ", props, type) : 1 < unknownProps.length && console.error("Invalid values for props %s on <%s> tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://react.dev/link/attribute-behavior ", props, type); - } - function sanitizeURL(url) { - return isJavaScriptProtocol.test("" + url) ? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')" : url; - } - function noop$1() {} - function getEventTarget(nativeEvent) { - nativeEvent = nativeEvent.target || nativeEvent.srcElement || window; - nativeEvent.correspondingUseElement && (nativeEvent = nativeEvent.correspondingUseElement); - return 3 === nativeEvent.nodeType ? nativeEvent.parentNode : nativeEvent; - } - function restoreStateOfTarget(target) { - var internalInstance = getInstanceFromNode(target); - if (internalInstance && (target = internalInstance.stateNode)) { - var props = target[internalPropsKey] || null; - a: switch(target = internalInstance.stateNode, internalInstance.type){ - case "input": - updateInput(target, props.value, props.defaultValue, props.defaultValue, props.checked, props.defaultChecked, props.type, props.name); - internalInstance = props.name; - if ("radio" === props.type && null != internalInstance) { - for(props = target; props.parentNode;)props = props.parentNode; - checkAttributeStringCoercion(internalInstance, "name"); - props = props.querySelectorAll('input[name="' + escapeSelectorAttributeValueInsideDoubleQuotes("" + internalInstance) + '"][type="radio"]'); - for(internalInstance = 0; internalInstance < props.length; internalInstance++){ - var otherNode = props[internalInstance]; - if (otherNode !== target && otherNode.form === target.form) { - var otherProps = otherNode[internalPropsKey] || null; - if (!otherProps) throw Error("ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported."); - updateInput(otherNode, otherProps.value, otherProps.defaultValue, otherProps.defaultValue, otherProps.checked, otherProps.defaultChecked, otherProps.type, otherProps.name); - } - } - for(internalInstance = 0; internalInstance < props.length; internalInstance++)otherNode = props[internalInstance], otherNode.form === target.form && updateValueIfChanged(otherNode); - } - break a; - case "textarea": - updateTextarea(target, props.value, props.defaultValue); - break a; - case "select": - internalInstance = props.value, null != internalInstance && updateOptions(target, !!props.multiple, internalInstance, !1); - } - } - } - function batchedUpdates$1(fn, a, b) { - if (isInsideEventHandler) return fn(a, b); - isInsideEventHandler = !0; - try { - var JSCompiler_inline_result = fn(a); - return JSCompiler_inline_result; - } finally{ - if (isInsideEventHandler = !1, null !== restoreTarget || null !== restoreQueue) { - if (flushSyncWork$1(), restoreTarget && (a = restoreTarget, fn = restoreQueue, restoreQueue = restoreTarget = null, restoreStateOfTarget(a), fn)) for(a = 0; a < fn.length; a++)restoreStateOfTarget(fn[a]); - } - } - } - function getListener(inst, registrationName) { - var stateNode = inst.stateNode; - if (null === stateNode) return null; - var props = stateNode[internalPropsKey] || null; - if (null === props) return null; - stateNode = props[registrationName]; - a: switch(registrationName){ - case "onClick": - case "onClickCapture": - case "onDoubleClick": - case "onDoubleClickCapture": - case "onMouseDown": - case "onMouseDownCapture": - case "onMouseMove": - case "onMouseMoveCapture": - case "onMouseUp": - case "onMouseUpCapture": - case "onMouseEnter": - (props = !props.disabled) || (inst = inst.type, props = !("button" === inst || "input" === inst || "select" === inst || "textarea" === inst)); - inst = !props; - break a; - default: - inst = !1; - } - if (inst) return null; - if (stateNode && "function" !== typeof stateNode) throw Error("Expected `" + registrationName + "` listener to be a function, instead got a value of `" + typeof stateNode + "` type."); - return stateNode; - } - function getData() { - if (fallbackText) return fallbackText; - var start, startValue = startText, startLength = startValue.length, end, endValue = "value" in root ? root.value : root.textContent, endLength = endValue.length; - for(start = 0; start < startLength && startValue[start] === endValue[start]; start++); - var minEnd = startLength - start; - for(end = 1; end <= minEnd && startValue[startLength - end] === endValue[endLength - end]; end++); - return fallbackText = endValue.slice(start, 1 < end ? 1 - end : void 0); - } - function getEventCharCode(nativeEvent) { - var keyCode = nativeEvent.keyCode; - "charCode" in nativeEvent ? (nativeEvent = nativeEvent.charCode, 0 === nativeEvent && 13 === keyCode && (nativeEvent = 13)) : nativeEvent = keyCode; - 10 === nativeEvent && (nativeEvent = 13); - return 32 <= nativeEvent || 13 === nativeEvent ? nativeEvent : 0; - } - function functionThatReturnsTrue() { - return !0; - } - function functionThatReturnsFalse() { - return !1; - } - function createSyntheticEvent(Interface) { - function SyntheticBaseEvent(reactName, reactEventType, targetInst, nativeEvent, nativeEventTarget) { - this._reactName = reactName; - this._targetInst = targetInst; - this.type = reactEventType; - this.nativeEvent = nativeEvent; - this.target = nativeEventTarget; - this.currentTarget = null; - for(var propName in Interface)Interface.hasOwnProperty(propName) && (reactName = Interface[propName], this[propName] = reactName ? reactName(nativeEvent) : nativeEvent[propName]); - this.isDefaultPrevented = (null != nativeEvent.defaultPrevented ? nativeEvent.defaultPrevented : !1 === nativeEvent.returnValue) ? functionThatReturnsTrue : functionThatReturnsFalse; - this.isPropagationStopped = functionThatReturnsFalse; - return this; - } - assign(SyntheticBaseEvent.prototype, { - preventDefault: function() { - this.defaultPrevented = !0; - var event = this.nativeEvent; - event && (event.preventDefault ? event.preventDefault() : "unknown" !== typeof event.returnValue && (event.returnValue = !1), this.isDefaultPrevented = functionThatReturnsTrue); - }, - stopPropagation: function() { - var event = this.nativeEvent; - event && (event.stopPropagation ? event.stopPropagation() : "unknown" !== typeof event.cancelBubble && (event.cancelBubble = !0), this.isPropagationStopped = functionThatReturnsTrue); - }, - persist: function() {}, - isPersistent: functionThatReturnsTrue - }); - return SyntheticBaseEvent; - } - function modifierStateGetter(keyArg) { - var nativeEvent = this.nativeEvent; - return nativeEvent.getModifierState ? nativeEvent.getModifierState(keyArg) : (keyArg = modifierKeyToProp[keyArg]) ? !!nativeEvent[keyArg] : !1; - } - function getEventModifierState() { - return modifierStateGetter; - } - function isFallbackCompositionEnd(domEventName, nativeEvent) { - switch(domEventName){ - case "keyup": - return -1 !== END_KEYCODES.indexOf(nativeEvent.keyCode); - case "keydown": - return nativeEvent.keyCode !== START_KEYCODE; - case "keypress": - case "mousedown": - case "focusout": - return !0; - default: - return !1; - } - } - function getDataFromCustomEvent(nativeEvent) { - nativeEvent = nativeEvent.detail; - return "object" === typeof nativeEvent && "data" in nativeEvent ? nativeEvent.data : null; - } - function getNativeBeforeInputChars(domEventName, nativeEvent) { - switch(domEventName){ - case "compositionend": - return getDataFromCustomEvent(nativeEvent); - case "keypress": - if (nativeEvent.which !== SPACEBAR_CODE) return null; - hasSpaceKeypress = !0; - return SPACEBAR_CHAR; - case "textInput": - return domEventName = nativeEvent.data, domEventName === SPACEBAR_CHAR && hasSpaceKeypress ? null : domEventName; - default: - return null; - } - } - function getFallbackBeforeInputChars(domEventName, nativeEvent) { - if (isComposing) return "compositionend" === domEventName || !canUseCompositionEvent && isFallbackCompositionEnd(domEventName, nativeEvent) ? (domEventName = getData(), fallbackText = startText = root = null, isComposing = !1, domEventName) : null; - switch(domEventName){ - case "paste": - return null; - case "keypress": - if (!(nativeEvent.ctrlKey || nativeEvent.altKey || nativeEvent.metaKey) || nativeEvent.ctrlKey && nativeEvent.altKey) { - if (nativeEvent.char && 1 < nativeEvent.char.length) return nativeEvent.char; - if (nativeEvent.which) return String.fromCharCode(nativeEvent.which); - } - return null; - case "compositionend": - return useFallbackCompositionData && "ko" !== nativeEvent.locale ? null : nativeEvent.data; - default: - return null; - } - } - function isTextInputElement(elem) { - var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); - return "input" === nodeName ? !!supportedInputTypes[elem.type] : "textarea" === nodeName ? !0 : !1; - } - function isEventSupported(eventNameSuffix) { - if (!canUseDOM) return !1; - eventNameSuffix = "on" + eventNameSuffix; - var isSupported = eventNameSuffix in document; - isSupported || (isSupported = document.createElement("div"), isSupported.setAttribute(eventNameSuffix, "return;"), isSupported = "function" === typeof isSupported[eventNameSuffix]); - return isSupported; - } - function createAndAccumulateChangeEvent(dispatchQueue, inst, nativeEvent, target) { - restoreTarget ? restoreQueue ? restoreQueue.push(target) : restoreQueue = [ - target - ] : restoreTarget = target; - inst = accumulateTwoPhaseListeners(inst, "onChange"); - 0 < inst.length && (nativeEvent = new SyntheticEvent("onChange", "change", null, nativeEvent, target), dispatchQueue.push({ - event: nativeEvent, - listeners: inst - })); - } - function runEventInBatch(dispatchQueue) { - processDispatchQueue(dispatchQueue, 0); - } - function getInstIfValueChanged(targetInst) { - var targetNode = getNodeFromInstance(targetInst); - if (updateValueIfChanged(targetNode)) return targetInst; - } - function getTargetInstForChangeEvent(domEventName, targetInst) { - if ("change" === domEventName) return targetInst; - } - function stopWatchingForValueChange() { - activeElement$1 && (activeElement$1.detachEvent("onpropertychange", handlePropertyChange), activeElementInst$1 = activeElement$1 = null); - } - function handlePropertyChange(nativeEvent) { - if ("value" === nativeEvent.propertyName && getInstIfValueChanged(activeElementInst$1)) { - var dispatchQueue = []; - createAndAccumulateChangeEvent(dispatchQueue, activeElementInst$1, nativeEvent, getEventTarget(nativeEvent)); - batchedUpdates$1(runEventInBatch, dispatchQueue); - } - } - function handleEventsForInputEventPolyfill(domEventName, target, targetInst) { - "focusin" === domEventName ? (stopWatchingForValueChange(), activeElement$1 = target, activeElementInst$1 = targetInst, activeElement$1.attachEvent("onpropertychange", handlePropertyChange)) : "focusout" === domEventName && stopWatchingForValueChange(); - } - function getTargetInstForInputEventPolyfill(domEventName) { - if ("selectionchange" === domEventName || "keyup" === domEventName || "keydown" === domEventName) return getInstIfValueChanged(activeElementInst$1); - } - function getTargetInstForClickEvent(domEventName, targetInst) { - if ("click" === domEventName) return getInstIfValueChanged(targetInst); - } - function getTargetInstForInputOrChangeEvent(domEventName, targetInst) { - if ("input" === domEventName || "change" === domEventName) return getInstIfValueChanged(targetInst); - } - function is(x, y) { - return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y; - } - function shallowEqual(objA, objB) { - if (objectIs(objA, objB)) return !0; - if ("object" !== typeof objA || null === objA || "object" !== typeof objB || null === objB) return !1; - var keysA = Object.keys(objA), keysB = Object.keys(objB); - if (keysA.length !== keysB.length) return !1; - for(keysB = 0; keysB < keysA.length; keysB++){ - var currentKey = keysA[keysB]; - if (!hasOwnProperty.call(objB, currentKey) || !objectIs(objA[currentKey], objB[currentKey])) return !1; - } - return !0; - } - function getLeafNode(node) { - for(; node && node.firstChild;)node = node.firstChild; - return node; - } - function getNodeForCharacterOffset(root, offset) { - var node = getLeafNode(root); - root = 0; - for(var nodeEnd; node;){ - if (3 === node.nodeType) { - nodeEnd = root + node.textContent.length; - if (root <= offset && nodeEnd >= offset) return { - node: node, - offset: offset - root - }; - root = nodeEnd; - } - a: { - for(; node;){ - if (node.nextSibling) { - node = node.nextSibling; - break a; - } - node = node.parentNode; - } - node = void 0; - } - node = getLeafNode(node); - } - } - function containsNode(outerNode, innerNode) { - return outerNode && innerNode ? outerNode === innerNode ? !0 : outerNode && 3 === outerNode.nodeType ? !1 : innerNode && 3 === innerNode.nodeType ? containsNode(outerNode, innerNode.parentNode) : "contains" in outerNode ? outerNode.contains(innerNode) : outerNode.compareDocumentPosition ? !!(outerNode.compareDocumentPosition(innerNode) & 16) : !1 : !1; - } - function getActiveElementDeep(containerInfo) { - containerInfo = null != containerInfo && null != containerInfo.ownerDocument && null != containerInfo.ownerDocument.defaultView ? containerInfo.ownerDocument.defaultView : window; - for(var element = getActiveElement(containerInfo.document); element instanceof containerInfo.HTMLIFrameElement;){ - try { - var JSCompiler_inline_result = "string" === typeof element.contentWindow.location.href; - } catch (err) { - JSCompiler_inline_result = !1; - } - if (JSCompiler_inline_result) containerInfo = element.contentWindow; - else break; - element = getActiveElement(containerInfo.document); - } - return element; - } - function hasSelectionCapabilities(elem) { - var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); - return nodeName && ("input" === nodeName && ("text" === elem.type || "search" === elem.type || "tel" === elem.type || "url" === elem.type || "password" === elem.type) || "textarea" === nodeName || "true" === elem.contentEditable); - } - function constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget) { - var doc = nativeEventTarget.window === nativeEventTarget ? nativeEventTarget.document : 9 === nativeEventTarget.nodeType ? nativeEventTarget : nativeEventTarget.ownerDocument; - mouseDown || null == activeElement || activeElement !== getActiveElement(doc) || (doc = activeElement, "selectionStart" in doc && hasSelectionCapabilities(doc) ? doc = { - start: doc.selectionStart, - end: doc.selectionEnd - } : (doc = (doc.ownerDocument && doc.ownerDocument.defaultView || window).getSelection(), doc = { - anchorNode: doc.anchorNode, - anchorOffset: doc.anchorOffset, - focusNode: doc.focusNode, - focusOffset: doc.focusOffset - }), lastSelection && shallowEqual(lastSelection, doc) || (lastSelection = doc, doc = accumulateTwoPhaseListeners(activeElementInst, "onSelect"), 0 < doc.length && (nativeEvent = new SyntheticEvent("onSelect", "select", null, nativeEvent, nativeEventTarget), dispatchQueue.push({ - event: nativeEvent, - listeners: doc - }), nativeEvent.target = activeElement))); - } - function makePrefixMap(styleProp, eventName) { - var prefixes = {}; - prefixes[styleProp.toLowerCase()] = eventName.toLowerCase(); - prefixes["Webkit" + styleProp] = "webkit" + eventName; - prefixes["Moz" + styleProp] = "moz" + eventName; - return prefixes; - } - function getVendorPrefixedEventName(eventName) { - if (prefixedEventNames[eventName]) return prefixedEventNames[eventName]; - if (!vendorPrefixes[eventName]) return eventName; - var prefixMap = vendorPrefixes[eventName], styleProp; - for(styleProp in prefixMap)if (prefixMap.hasOwnProperty(styleProp) && styleProp in style) return prefixedEventNames[eventName] = prefixMap[styleProp]; - return eventName; - } - function registerSimpleEvent(domEventName, reactName) { - topLevelEventsToReactNames.set(domEventName, reactName); - registerTwoPhaseEvent(reactName, [ - domEventName - ]); - } - function getViewTransitionName(props, instance) { - if (null != props.name && "auto" !== props.name) return props.name; - if (null !== instance.autoName) return instance.autoName; - props = pendingEffectsRoot.identifierPrefix; - var globalClientId = globalClientIdCounter$1++; - props = "_" + props + "t_" + globalClientId.toString(32) + "_"; - return instance.autoName = props; - } - function getClassNameByType(classByType) { - if (null == classByType || "string" === typeof classByType) return classByType; - var className = null, activeTypes = pendingTransitionTypes; - if (null !== activeTypes) for(var i = 0; i < activeTypes.length; i++){ - var match = classByType[activeTypes[i]]; - if (null != match) { - if ("none" === match) return "none"; - className = null == className ? match : className + (" " + match); - } - } - return null == className ? classByType.default : className; - } - function getViewTransitionClassName(defaultClass, eventClass) { - defaultClass = getClassNameByType(defaultClass); - eventClass = getClassNameByType(eventClass); - return null == eventClass ? "auto" === defaultClass ? null : defaultClass : "auto" === eventClass ? null : eventClass; - } - function getArrayKind(array) { - for(var kind = EMPTY_ARRAY, i = 0; i < array.length && i < OBJECT_WIDTH_LIMIT; i++){ - var value = array[i]; - if ("object" === typeof value && null !== value) if (isArrayImpl(value) && 2 === value.length && "string" === typeof value[0]) { - if (kind !== EMPTY_ARRAY && kind !== ENTRIES_ARRAY) return COMPLEX_ARRAY; - kind = ENTRIES_ARRAY; - } else return COMPLEX_ARRAY; - else { - if ("function" === typeof value || "string" === typeof value && 50 < value.length || kind !== EMPTY_ARRAY && kind !== PRIMITIVE_ARRAY) return COMPLEX_ARRAY; - kind = PRIMITIVE_ARRAY; - } - } - return kind; - } - function addObjectToProperties(object, properties, indent, prefix) { - var addedProperties = 0, key; - for(key in object)if (hasOwnProperty.call(object, key) && "_" !== key[0] && (addedProperties++, addValueToProperties(key, object[key], properties, indent, prefix), addedProperties >= OBJECT_WIDTH_LIMIT)) { - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + "Only " + OBJECT_WIDTH_LIMIT + " properties are shown. React will not log more properties of this object.", - "" - ]); - break; - } - } - function addValueToProperties(propertyName, value, properties, indent, prefix) { - switch(typeof value){ - case "object": - if (null === value) { - value = "null"; - break; - } else { - if (value.$$typeof === REACT_ELEMENT_TYPE) { - var typeName = getComponentNameFromType(value.type) || "\u2026", key = value.key; - value = value.props; - var propsKeys = Object.keys(value), propsLength = propsKeys.length; - if (null == key && 0 === propsLength) { - value = "<" + typeName + " />"; - break; - } - if (3 > indent || 1 === propsLength && "children" === propsKeys[0] && null == key) { - value = "<" + typeName + " \u2026 />"; - break; - } - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "<" + typeName - ]); - null !== key && addValueToProperties("key", key, properties, indent + 1, prefix); - propertyName = !1; - key = 0; - for(var propKey in value)if (key++, "children" === propKey ? null != value.children && (!isArrayImpl(value.children) || 0 < value.children.length) && (propertyName = !0) : hasOwnProperty.call(value, propKey) && "_" !== propKey[0] && addValueToProperties(propKey, value[propKey], properties, indent + 1, prefix), key >= OBJECT_WIDTH_LIMIT) break; - properties.push([ - "", - propertyName ? ">\u2026</" + typeName + ">" : "/>" - ]); - return; - } - typeName = Object.prototype.toString.call(value); - propKey = typeName.slice(8, typeName.length - 1); - if ("Array" === propKey) { - if (typeName = value.length > OBJECT_WIDTH_LIMIT, key = getArrayKind(value), key === PRIMITIVE_ARRAY || key === EMPTY_ARRAY) { - value = JSON.stringify(typeName ? value.slice(0, OBJECT_WIDTH_LIMIT).concat("\u2026") : value); - break; - } else if (key === ENTRIES_ARRAY) { - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "" - ]); - for(propertyName = 0; propertyName < value.length && propertyName < OBJECT_WIDTH_LIMIT; propertyName++)propKey = value[propertyName], addValueToProperties(propKey[0], propKey[1], properties, indent + 1, prefix); - typeName && addValueToProperties(OBJECT_WIDTH_LIMIT.toString(), "\u2026", properties, indent + 1, prefix); - return; - } - } - if ("Promise" === propKey) { - if ("fulfilled" === value.status) { - if (typeName = properties.length, addValueToProperties(propertyName, value.value, properties, indent, prefix), properties.length > typeName) { - properties = properties[typeName]; - properties[1] = "Promise<" + (properties[1] || "Object") + ">"; - return; - } - } else if ("rejected" === value.status && (typeName = properties.length, addValueToProperties(propertyName, value.reason, properties, indent, prefix), properties.length > typeName)) { - properties = properties[typeName]; - properties[1] = "Rejected Promise<" + properties[1] + ">"; - return; - } - properties.push([ - "\u00a0\u00a0".repeat(indent) + propertyName, - "Promise" - ]); - return; - } - "Object" === propKey && (typeName = Object.getPrototypeOf(value)) && "function" === typeof typeName.constructor && (propKey = typeName.constructor.name); - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "Object" === propKey ? 3 > indent ? "" : "\u2026" : propKey - ]); - 3 > indent && addObjectToProperties(value, properties, indent + 1, prefix); - return; - } - case "function": - value = "" === value.name ? "() => {}" : value.name + "() {}"; - break; - case "string": - value = value === OMITTED_PROP_ERROR ? "\u2026" : JSON.stringify(value); - break; - case "undefined": - value = "undefined"; - break; - case "boolean": - value = value ? "true" : "false"; - break; - default: - value = String(value); - } - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - value - ]); - } - function addObjectDiffToProperties(prev, next, properties, indent) { - var isDeeplyEqual = !0, prevPropertiesChecked = 0; - for(key in prev){ - if (prevPropertiesChecked > OBJECT_WIDTH_LIMIT) { - properties.push([ - "Previous object has more than " + OBJECT_WIDTH_LIMIT + " properties. React will not attempt to diff objects with too many properties.", - "" - ]); - isDeeplyEqual = !1; - break; - } - key in next || (properties.push([ - REMOVED + "\u00a0\u00a0".repeat(indent) + key, - "\u2026" - ]), isDeeplyEqual = !1); - prevPropertiesChecked++; - } - prevPropertiesChecked = 0; - for(var _key in next){ - if (prevPropertiesChecked > OBJECT_WIDTH_LIMIT) { - properties.push([ - "Next object has more than " + OBJECT_WIDTH_LIMIT + " properties. React will not attempt to diff objects with too many properties.", - "" - ]); - isDeeplyEqual = !1; - break; - } - if (_key in prev) { - var key = prev[_key]; - var nextValue = next[_key]; - if (key !== nextValue) { - if (0 === indent && "children" === _key) { - isDeeplyEqual = "\u00a0\u00a0".repeat(indent) + _key; - properties.push([ - REMOVED + isDeeplyEqual, - "\u2026" - ], [ - ADDED + isDeeplyEqual, - "\u2026" - ]); - isDeeplyEqual = !1; - continue; - } - if (!(3 <= indent)) { - if ("object" === typeof key && "object" === typeof nextValue && null !== key && null !== nextValue && key.$$typeof === nextValue.$$typeof) if (nextValue.$$typeof === REACT_ELEMENT_TYPE) { - if (key.type === nextValue.type && key.key === nextValue.key) { - key = getComponentNameFromType(nextValue.type) || "\u2026"; - isDeeplyEqual = "\u00a0\u00a0".repeat(indent) + _key; - key = "<" + key + " \u2026 />"; - properties.push([ - REMOVED + isDeeplyEqual, - key - ], [ - ADDED + isDeeplyEqual, - key - ]); - isDeeplyEqual = !1; - continue; - } - } else { - var prevKind = Object.prototype.toString.call(key), nextKind = Object.prototype.toString.call(nextValue); - if (prevKind === nextKind && ("[object Object]" === nextKind || "[object Array]" === nextKind)) { - prevKind = [ - UNCHANGED + "\u00a0\u00a0".repeat(indent) + _key, - "[object Array]" === nextKind ? "Array" : "" - ]; - properties.push(prevKind); - nextKind = properties.length; - addObjectDiffToProperties(key, nextValue, properties, indent + 1) ? nextKind === properties.length && (prevKind[1] = "Referentially unequal but deeply equal objects. Consider memoization.") : isDeeplyEqual = !1; - continue; - } - } - else if ("function" === typeof key && "function" === typeof nextValue && key.name === nextValue.name && key.length === nextValue.length && (prevKind = Function.prototype.toString.call(key), nextKind = Function.prototype.toString.call(nextValue), prevKind === nextKind)) { - key = "" === nextValue.name ? "() => {}" : nextValue.name + "() {}"; - properties.push([ - UNCHANGED + "\u00a0\u00a0".repeat(indent) + _key, - key + " Referentially unequal function closure. Consider memoization." - ]); - continue; - } - } - addValueToProperties(_key, key, properties, indent, REMOVED); - addValueToProperties(_key, nextValue, properties, indent, ADDED); - isDeeplyEqual = !1; - } - } else properties.push([ - ADDED + "\u00a0\u00a0".repeat(indent) + _key, - "\u2026" - ]), isDeeplyEqual = !1; - prevPropertiesChecked++; - } - return isDeeplyEqual; - } - function setCurrentTrackFromLanes(lanes) { - currentTrack = lanes & 63 ? "Blocking" : lanes & 64 ? "Gesture" : lanes & 4194176 ? "Transition" : lanes & 62914560 ? "Suspense" : lanes & 2080374784 ? "Idle" : "Other"; - } - function logComponentTrigger(fiber, startTime, endTime, trigger) { - supportsUserTiming && (reusableComponentOptions.start = startTime, reusableComponentOptions.end = endTime, reusableComponentDevToolDetails.color = "warning", reusableComponentDevToolDetails.tooltipText = trigger, reusableComponentDevToolDetails.properties = null, (fiber = fiber._debugTask) ? fiber.run(performance.measure.bind(performance, trigger, reusableComponentOptions)) : performance.measure(trigger, reusableComponentOptions), performance.clearMeasures(trigger)); - } - function logComponentReappeared(fiber, startTime, endTime) { - logComponentTrigger(fiber, startTime, endTime, "Reconnect"); - } - function logComponentRender(fiber, startTime, endTime, wasHydrated, committedLanes) { - var name = getComponentNameFromFiber(fiber); - if (null !== name && supportsUserTiming) { - var alternate = fiber.alternate, selfTime = fiber.actualDuration; - if (null === alternate || alternate.child !== fiber.child) for(var child = fiber.child; null !== child; child = child.sibling)selfTime -= child.actualDuration; - selfTime = 0.5 > selfTime ? wasHydrated ? "tertiary-light" : "primary-light" : 10 > selfTime ? wasHydrated ? "tertiary" : "primary" : 100 > selfTime ? wasHydrated ? "tertiary-dark" : "primary-dark" : "error"; - var props = fiber.memoizedProps; - wasHydrated = fiber._debugTask; - null !== props && null !== alternate && alternate.memoizedProps !== props ? (child = [ - reusableChangedPropsEntry - ], props = addObjectDiffToProperties(alternate.memoizedProps, props, child, 0), 1 < child.length ? (props && !alreadyWarnedForDeepEquality && 0 === (alternate.lanes & committedLanes) && 100 < fiber.actualDuration ? (alreadyWarnedForDeepEquality = !0, child[0] = reusableDeeplyEqualPropsEntry, reusableComponentDevToolDetails.color = "warning", reusableComponentDevToolDetails.tooltipText = DEEP_EQUALITY_WARNING) : (reusableComponentDevToolDetails.color = selfTime, reusableComponentDevToolDetails.tooltipText = name), reusableComponentDevToolDetails.properties = child, reusableComponentOptions.start = startTime, reusableComponentOptions.end = endTime, fiber = "\u200b" + name, null != wasHydrated ? wasHydrated.run(performance.measure.bind(performance, fiber, reusableComponentOptions)) : performance.measure(fiber, reusableComponentOptions), performance.clearMeasures(fiber)) : null != wasHydrated ? wasHydrated.run(console.timeStamp.bind(console, name, startTime, endTime, COMPONENTS_TRACK, void 0, selfTime)) : console.timeStamp(name, startTime, endTime, COMPONENTS_TRACK, void 0, selfTime)) : null != wasHydrated ? wasHydrated.run(console.timeStamp.bind(console, name, startTime, endTime, COMPONENTS_TRACK, void 0, selfTime)) : console.timeStamp(name, startTime, endTime, COMPONENTS_TRACK, void 0, selfTime); - } - } - function logComponentErrored(fiber, startTime, endTime, errors) { - if (supportsUserTiming) { - var name = getComponentNameFromFiber(fiber); - if (null !== name) { - for(var debugTask = null, properties = [], i = 0; i < errors.length; i++){ - var capturedValue = errors[i]; - null == debugTask && null !== capturedValue.source && (debugTask = capturedValue.source._debugTask); - capturedValue = capturedValue.value; - properties.push([ - "Error", - "object" === typeof capturedValue && null !== capturedValue && "string" === typeof capturedValue.message ? String(capturedValue.message) : String(capturedValue) - ]); - } - null !== fiber.key && addValueToProperties("key", fiber.key, properties, 0, ""); - null !== fiber.memoizedProps && addObjectToProperties(fiber.memoizedProps, properties, 0, ""); - null == debugTask && (debugTask = fiber._debugTask); - fiber = { - start: startTime, - end: endTime, - detail: { - devtools: { - color: "error", - track: COMPONENTS_TRACK, - tooltipText: 13 === fiber.tag ? "Hydration failed" : "Error boundary caught an error", - properties: properties - } - } - }; - name = "\u200b" + name; - debugTask ? debugTask.run(performance.measure.bind(performance, name, fiber)) : performance.measure(name, fiber); - performance.clearMeasures(name); - } - } - } - function logComponentEffect(fiber, startTime, endTime, selfTime, errors) { - if (null !== errors) { - if (supportsUserTiming) { - var name = getComponentNameFromFiber(fiber); - if (null !== name) { - selfTime = []; - for(var i = 0; i < errors.length; i++){ - var error = errors[i].value; - selfTime.push([ - "Error", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ]); - } - null !== fiber.key && addValueToProperties("key", fiber.key, selfTime, 0, ""); - null !== fiber.memoizedProps && addObjectToProperties(fiber.memoizedProps, selfTime, 0, ""); - startTime = { - start: startTime, - end: endTime, - detail: { - devtools: { - color: "error", - track: COMPONENTS_TRACK, - tooltipText: "A lifecycle or effect errored", - properties: selfTime - } - } - }; - fiber = fiber._debugTask; - endTime = "\u200b" + name; - fiber ? fiber.run(performance.measure.bind(performance, endTime, startTime)) : performance.measure(endTime, startTime); - performance.clearMeasures(endTime); - } - } - } else name = getComponentNameFromFiber(fiber), null !== name && supportsUserTiming && (errors = 1 > selfTime ? "secondary-light" : 100 > selfTime ? "secondary" : 500 > selfTime ? "secondary-dark" : "error", (fiber = fiber._debugTask) ? fiber.run(console.timeStamp.bind(console, name, startTime, endTime, COMPONENTS_TRACK, void 0, errors)) : console.timeStamp(name, startTime, endTime, COMPONENTS_TRACK, void 0, errors)); - } - function logRenderPhase(startTime, endTime, lanes, debugTask) { - if (supportsUserTiming && !(endTime <= startTime)) { - var color = (lanes & 738197653) === lanes ? "tertiary-dark" : "primary-dark"; - lanes = (lanes & 536870912) === lanes ? "Prepared" : (lanes & 201326741) === lanes ? "Hydrated" : "Render"; - debugTask ? debugTask.run(console.timeStamp.bind(console, lanes, startTime, endTime, currentTrack, LANES_TRACK_GROUP, color)) : console.timeStamp(lanes, startTime, endTime, currentTrack, LANES_TRACK_GROUP, color); - } - } - function logSuspendedRenderPhase(startTime, endTime, lanes, debugTask) { - !supportsUserTiming || endTime <= startTime || (lanes = (lanes & 738197653) === lanes ? "tertiary-dark" : "primary-dark", debugTask ? debugTask.run(console.timeStamp.bind(console, "Prewarm", startTime, endTime, currentTrack, LANES_TRACK_GROUP, lanes)) : console.timeStamp("Prewarm", startTime, endTime, currentTrack, LANES_TRACK_GROUP, lanes)); - } - function logSuspendedWithDelayPhase(startTime, endTime, lanes, debugTask) { - !supportsUserTiming || endTime <= startTime || (lanes = (lanes & 738197653) === lanes ? "tertiary-dark" : "primary-dark", debugTask ? debugTask.run(console.timeStamp.bind(console, "Suspended", startTime, endTime, currentTrack, LANES_TRACK_GROUP, lanes)) : console.timeStamp("Suspended", startTime, endTime, currentTrack, LANES_TRACK_GROUP, lanes)); - } - function logRecoveredRenderPhase(startTime, endTime, lanes, recoverableErrors, hydrationFailed, debugTask) { - if (supportsUserTiming && !(endTime <= startTime)) { - lanes = []; - for(var i = 0; i < recoverableErrors.length; i++){ - var error = recoverableErrors[i].value; - lanes.push([ - "Recoverable Error", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ]); - } - startTime = { - start: startTime, - end: endTime, - detail: { - devtools: { - color: "primary-dark", - track: currentTrack, - trackGroup: LANES_TRACK_GROUP, - tooltipText: hydrationFailed ? "Hydration Failed" : "Recovered after Error", - properties: lanes - } - } - }; - debugTask ? debugTask.run(performance.measure.bind(performance, "Recovered", startTime)) : performance.measure("Recovered", startTime); - performance.clearMeasures("Recovered"); - } - } - function logErroredRenderPhase(startTime, endTime, lanes, debugTask) { - !supportsUserTiming || endTime <= startTime || (debugTask ? debugTask.run(console.timeStamp.bind(console, "Errored", startTime, endTime, currentTrack, LANES_TRACK_GROUP, "error")) : console.timeStamp("Errored", startTime, endTime, currentTrack, LANES_TRACK_GROUP, "error")); - } - function logSuspendedCommitPhase(startTime, endTime, reason, debugTask) { - !supportsUserTiming || endTime <= startTime || (debugTask ? debugTask.run(console.timeStamp.bind(console, reason, startTime, endTime, currentTrack, LANES_TRACK_GROUP, "secondary-light")) : console.timeStamp(reason, startTime, endTime, currentTrack, LANES_TRACK_GROUP, "secondary-light")); - } - function logCommitErrored(startTime, endTime, errors, passive, debugTask) { - if (supportsUserTiming && !(endTime <= startTime)) { - for(var properties = [], i = 0; i < errors.length; i++){ - var error = errors[i].value; - properties.push([ - "Error", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ]); - } - startTime = { - start: startTime, - end: endTime, - detail: { - devtools: { - color: "error", - track: currentTrack, - trackGroup: LANES_TRACK_GROUP, - tooltipText: passive ? "Remaining Effects Errored" : "Commit Errored", - properties: properties - } - } - }; - debugTask ? debugTask.run(performance.measure.bind(performance, "Errored", startTime)) : performance.measure("Errored", startTime); - performance.clearMeasures("Errored"); - } - } - function logCommitPhase(startTime, endTime, errors, abortedViewTransition, debugTask) { - null !== errors ? logCommitErrored(startTime, endTime, errors, !1, debugTask) : !supportsUserTiming || endTime <= startTime || (debugTask ? debugTask.run(console.timeStamp.bind(console, abortedViewTransition ? "Commit Interrupted View Transition" : "Commit", startTime, endTime, currentTrack, LANES_TRACK_GROUP, abortedViewTransition ? "error" : "secondary-dark")) : console.timeStamp(abortedViewTransition ? "Commit Interrupted View Transition" : "Commit", startTime, endTime, currentTrack, LANES_TRACK_GROUP, abortedViewTransition ? "error" : "secondary-dark")); - } - function logAnimatingPhase(startTime, endTime, debugTask) { - !supportsUserTiming || endTime <= startTime || (debugTask ? debugTask.run(console.timeStamp.bind(console, "Animating", startTime, endTime, currentTrack, LANES_TRACK_GROUP, "secondary-dark")) : console.timeStamp("Animating", startTime, endTime, currentTrack, LANES_TRACK_GROUP, "secondary-dark")); - } - function finishQueueingConcurrentUpdates() { - for(var endIndex = concurrentQueuesIndex, i = concurrentlyUpdatedLanes = concurrentQueuesIndex = 0; i < endIndex;){ - var fiber = concurrentQueues[i]; - concurrentQueues[i++] = null; - var queue = concurrentQueues[i]; - concurrentQueues[i++] = null; - var update = concurrentQueues[i]; - concurrentQueues[i++] = null; - var lane = concurrentQueues[i]; - concurrentQueues[i++] = null; - if (null !== queue && null !== update) { - var pending = queue.pending; - null === pending ? update.next = update : (update.next = pending.next, pending.next = update); - queue.pending = update; - } - 0 !== lane && markUpdateLaneFromFiberToRoot(fiber, update, lane); - } - } - function enqueueUpdate$1(fiber, queue, update, lane) { - concurrentQueues[concurrentQueuesIndex++] = fiber; - concurrentQueues[concurrentQueuesIndex++] = queue; - concurrentQueues[concurrentQueuesIndex++] = update; - concurrentQueues[concurrentQueuesIndex++] = lane; - concurrentlyUpdatedLanes |= lane; - fiber.lanes |= lane; - fiber = fiber.alternate; - null !== fiber && (fiber.lanes |= lane); - } - function enqueueConcurrentHookUpdate(fiber, queue, update, lane) { - enqueueUpdate$1(fiber, queue, update, lane); - return getRootForUpdatedFiber(fiber); - } - function enqueueConcurrentRenderForLane(fiber, lane) { - enqueueUpdate$1(fiber, null, null, lane); - return getRootForUpdatedFiber(fiber); - } - function markUpdateLaneFromFiberToRoot(sourceFiber, update, lane) { - sourceFiber.lanes |= lane; - var alternate = sourceFiber.alternate; - null !== alternate && (alternate.lanes |= lane); - for(var isHidden = !1, parent = sourceFiber.return; null !== parent;)parent.childLanes |= lane, alternate = parent.alternate, null !== alternate && (alternate.childLanes |= lane), 22 === parent.tag && (sourceFiber = parent.stateNode, null === sourceFiber || sourceFiber._visibility & OffscreenVisible || (isHidden = !0)), sourceFiber = parent, parent = parent.return; - return 3 === sourceFiber.tag ? (parent = sourceFiber.stateNode, isHidden && null !== update && (isHidden = 31 - clz32(lane), sourceFiber = parent.hiddenUpdates, alternate = sourceFiber[isHidden], null === alternate ? sourceFiber[isHidden] = [ - update - ] : alternate.push(update), update.lane = lane | 536870912), parent) : null; - } - function getRootForUpdatedFiber(sourceFiber) { - if (nestedUpdateCount > NESTED_UPDATE_LIMIT) throw nestedPassiveUpdateCount = nestedUpdateCount = 0, rootWithPassiveNestedUpdates = rootWithNestedUpdates = null, Error("Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops."); - nestedPassiveUpdateCount > NESTED_PASSIVE_UPDATE_LIMIT && (nestedPassiveUpdateCount = 0, rootWithPassiveNestedUpdates = null, console.error("Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn't have a dependency array, or one of the dependencies changes on every render.")); - null === sourceFiber.alternate && 0 !== (sourceFiber.flags & 4098) && warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber); - for(var node = sourceFiber, parent = node.return; null !== parent;)null === node.alternate && 0 !== (node.flags & 4098) && warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber), node = parent, parent = node.return; - return 3 === node.tag ? node.stateNode : null; - } - function resolveFunctionForHotReloading(type) { - if (null === resolveFamily) return type; - var family = resolveFamily(type); - return void 0 === family ? type : family.current; - } - function resolveForwardRefForHotReloading(type) { - if (null === resolveFamily) return type; - var family = resolveFamily(type); - return void 0 === family ? null !== type && void 0 !== type && "function" === typeof type.render && (family = resolveFunctionForHotReloading(type.render), type.render !== family) ? (family = { - $$typeof: REACT_FORWARD_REF_TYPE, - render: family - }, void 0 !== type.displayName && (family.displayName = type.displayName), family) : type : family.current; - } - function isCompatibleFamilyForHotReloading(fiber, element) { - if (null === resolveFamily) return !1; - var prevType = fiber.elementType; - element = element.type; - var needsCompareFamilies = !1, $$typeofNextType = "object" === typeof element && null !== element ? element.$$typeof : null; - switch(fiber.tag){ - case 1: - "function" === typeof element && (needsCompareFamilies = !0); - break; - case 0: - "function" === typeof element ? needsCompareFamilies = !0 : $$typeofNextType === REACT_LAZY_TYPE && (needsCompareFamilies = !0); - break; - case 11: - $$typeofNextType === REACT_FORWARD_REF_TYPE ? needsCompareFamilies = !0 : $$typeofNextType === REACT_LAZY_TYPE && (needsCompareFamilies = !0); - break; - case 14: - case 15: - $$typeofNextType === REACT_MEMO_TYPE ? needsCompareFamilies = !0 : $$typeofNextType === REACT_LAZY_TYPE && (needsCompareFamilies = !0); - break; - default: - return !1; - } - return needsCompareFamilies && (fiber = resolveFamily(prevType), void 0 !== fiber && fiber === resolveFamily(element)) ? !0 : !1; - } - function markFailedErrorBoundaryForHotReloading(fiber) { - null !== resolveFamily && "function" === typeof WeakSet && (null === failedBoundaries && (failedBoundaries = new WeakSet()), failedBoundaries.add(fiber)); - } - function scheduleFibersWithFamiliesRecursively(fiber, updatedFamilies, staleFamilies) { - do { - var _fiber = fiber, alternate = _fiber.alternate, child = _fiber.child, sibling = _fiber.sibling, tag = _fiber.tag; - _fiber = _fiber.type; - var candidateType = null; - switch(tag){ - case 0: - case 15: - case 1: - candidateType = _fiber; - break; - case 11: - candidateType = _fiber.render; - } - if (null === resolveFamily) throw Error("Expected resolveFamily to be set during hot reload."); - var needsRender = !1; - _fiber = !1; - null !== candidateType && (candidateType = resolveFamily(candidateType), void 0 !== candidateType && (staleFamilies.has(candidateType) ? _fiber = !0 : updatedFamilies.has(candidateType) && (1 === tag ? _fiber = !0 : needsRender = !0))); - null !== failedBoundaries && (failedBoundaries.has(fiber) || null !== alternate && failedBoundaries.has(alternate)) && (_fiber = !0); - _fiber && (fiber._debugNeedsRemount = !0); - if (_fiber || needsRender) alternate = enqueueConcurrentRenderForLane(fiber, 2), null !== alternate && scheduleUpdateOnFiber(alternate, fiber, 2); - null === child || _fiber || scheduleFibersWithFamiliesRecursively(child, updatedFamilies, staleFamilies); - if (null === sibling) break; - fiber = sibling; - }while (1) - } - function FiberNode(tag, pendingProps, key, mode) { - this.tag = tag; - this.key = key; - this.sibling = this.child = this.return = this.stateNode = this.type = this.elementType = null; - this.index = 0; - this.refCleanup = this.ref = null; - this.pendingProps = pendingProps; - this.dependencies = this.memoizedState = this.updateQueue = this.memoizedProps = null; - this.mode = mode; - this.subtreeFlags = this.flags = 0; - this.deletions = null; - this.childLanes = this.lanes = 0; - this.alternate = null; - this.actualDuration = -0; - this.actualStartTime = -1.1; - this.treeBaseDuration = this.selfBaseDuration = -0; - this._debugTask = this._debugStack = this._debugOwner = this._debugInfo = null; - this._debugNeedsRemount = !1; - this._debugHookTypes = null; - hasBadMapPolyfill || "function" !== typeof Object.preventExtensions || Object.preventExtensions(this); - } - function shouldConstruct(Component) { - Component = Component.prototype; - return !(!Component || !Component.isReactComponent); - } - function createWorkInProgress(current, pendingProps) { - var workInProgress = current.alternate; - null === workInProgress ? (workInProgress = createFiber(current.tag, pendingProps, current.key, current.mode), workInProgress.elementType = current.elementType, workInProgress.type = current.type, workInProgress.stateNode = current.stateNode, workInProgress._debugOwner = current._debugOwner, workInProgress._debugStack = current._debugStack, workInProgress._debugTask = current._debugTask, workInProgress._debugHookTypes = current._debugHookTypes, workInProgress.alternate = current, current.alternate = workInProgress) : (workInProgress.pendingProps = pendingProps, workInProgress.type = current.type, workInProgress.flags = 0, workInProgress.subtreeFlags = 0, workInProgress.deletions = null, workInProgress.actualDuration = -0, workInProgress.actualStartTime = -1.1); - workInProgress.flags = current.flags & 132120576; - workInProgress.childLanes = current.childLanes; - workInProgress.lanes = current.lanes; - workInProgress.child = current.child; - workInProgress.memoizedProps = current.memoizedProps; - workInProgress.memoizedState = current.memoizedState; - workInProgress.updateQueue = current.updateQueue; - pendingProps = current.dependencies; - workInProgress.dependencies = null === pendingProps ? null : { - lanes: pendingProps.lanes, - firstContext: pendingProps.firstContext, - _debugThenableState: pendingProps._debugThenableState - }; - workInProgress.sibling = current.sibling; - workInProgress.index = current.index; - workInProgress.ref = current.ref; - workInProgress.refCleanup = current.refCleanup; - workInProgress.selfBaseDuration = current.selfBaseDuration; - workInProgress.treeBaseDuration = current.treeBaseDuration; - workInProgress._debugInfo = current._debugInfo; - workInProgress._debugNeedsRemount = current._debugNeedsRemount; - switch(workInProgress.tag){ - case 0: - case 15: - workInProgress.type = resolveFunctionForHotReloading(current.type); - break; - case 1: - workInProgress.type = resolveFunctionForHotReloading(current.type); - break; - case 11: - workInProgress.type = resolveForwardRefForHotReloading(current.type); - } - return workInProgress; - } - function resetWorkInProgress(workInProgress, renderLanes) { - workInProgress.flags &= 132120578; - var current = workInProgress.alternate; - null === current ? (workInProgress.childLanes = 0, workInProgress.lanes = renderLanes, workInProgress.child = null, workInProgress.subtreeFlags = 0, workInProgress.memoizedProps = null, workInProgress.memoizedState = null, workInProgress.updateQueue = null, workInProgress.dependencies = null, workInProgress.stateNode = null, workInProgress.selfBaseDuration = 0, workInProgress.treeBaseDuration = 0) : (workInProgress.childLanes = current.childLanes, workInProgress.lanes = current.lanes, workInProgress.child = current.child, workInProgress.subtreeFlags = 0, workInProgress.deletions = null, workInProgress.memoizedProps = current.memoizedProps, workInProgress.memoizedState = current.memoizedState, workInProgress.updateQueue = current.updateQueue, workInProgress.type = current.type, renderLanes = current.dependencies, workInProgress.dependencies = null === renderLanes ? null : { - lanes: renderLanes.lanes, - firstContext: renderLanes.firstContext, - _debugThenableState: renderLanes._debugThenableState - }, workInProgress.selfBaseDuration = current.selfBaseDuration, workInProgress.treeBaseDuration = current.treeBaseDuration); - return workInProgress; - } - function createFiberFromTypeAndProps(type, key, pendingProps, owner, mode, lanes) { - var fiberTag = 0, resolvedType = type; - if ("function" === typeof type) shouldConstruct(type) && (fiberTag = 1), resolvedType = resolveFunctionForHotReloading(resolvedType); - else if ("string" === typeof type) fiberTag = getHostContext(), fiberTag = isHostHoistableType(type, pendingProps, fiberTag) ? 26 : "html" === type || "head" === type || "body" === type ? 27 : 5; - else a: switch(type){ - case REACT_ACTIVITY_TYPE: - return key = createFiber(31, pendingProps, key, mode), key.elementType = REACT_ACTIVITY_TYPE, key.lanes = lanes, key; - case REACT_FRAGMENT_TYPE: - return createFiberFromFragment(pendingProps.children, mode, lanes, key); - case REACT_STRICT_MODE_TYPE: - fiberTag = 8; - mode |= StrictLegacyMode; - mode |= StrictEffectsMode; - break; - case REACT_PROFILER_TYPE: - return type = pendingProps, owner = mode, "string" !== typeof type.id && console.error('Profiler must specify an "id" of type `string` as a prop. Received the type `%s` instead.', typeof type.id), key = createFiber(12, type, key, owner | ProfileMode), key.elementType = REACT_PROFILER_TYPE, key.lanes = lanes, key.stateNode = { - effectDuration: 0, - passiveEffectDuration: 0 - }, key; - case REACT_SUSPENSE_TYPE: - return key = createFiber(13, pendingProps, key, mode), key.elementType = REACT_SUSPENSE_TYPE, key.lanes = lanes, key; - case REACT_SUSPENSE_LIST_TYPE: - return key = createFiber(19, pendingProps, key, mode), key.elementType = REACT_SUSPENSE_LIST_TYPE, key.lanes = lanes, key; - case REACT_LEGACY_HIDDEN_TYPE: - case REACT_VIEW_TRANSITION_TYPE: - return type = mode | SuspenseyImagesMode, key = createFiber(30, pendingProps, key, type), key.elementType = REACT_VIEW_TRANSITION_TYPE, key.lanes = lanes, key.stateNode = { - autoName: null, - paired: null, - clones: null, - ref: null - }, key; - default: - if ("object" === typeof type && null !== type) switch(type.$$typeof){ - case REACT_CONTEXT_TYPE: - fiberTag = 10; - break a; - case REACT_CONSUMER_TYPE: - fiberTag = 9; - break a; - case REACT_FORWARD_REF_TYPE: - fiberTag = 11; - resolvedType = resolveForwardRefForHotReloading(resolvedType); - break a; - case REACT_MEMO_TYPE: - fiberTag = 14; - break a; - case REACT_LAZY_TYPE: - fiberTag = 16; - resolvedType = null; - break a; - } - pendingProps = ""; - if (void 0 === type || "object" === typeof type && null !== type && 0 === Object.keys(type).length) pendingProps += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."; - null === type ? resolvedType = "null" : isArrayImpl(type) ? resolvedType = "array" : void 0 !== type && type.$$typeof === REACT_ELEMENT_TYPE ? (resolvedType = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />", pendingProps = " Did you accidentally export a JSX literal instead of a component?") : resolvedType = typeof type; - (fiberTag = owner ? getComponentNameFromOwner(owner) : null) && (pendingProps += "\n\nCheck the render method of `" + fiberTag + "`."); - fiberTag = 29; - pendingProps = Error("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: " + (resolvedType + "." + pendingProps)); - resolvedType = null; - } - key = createFiber(fiberTag, pendingProps, key, mode); - key.elementType = type; - key.type = resolvedType; - key.lanes = lanes; - key._debugOwner = owner; - return key; - } - function createFiberFromElement(element, mode, lanes) { - mode = createFiberFromTypeAndProps(element.type, element.key, element.props, element._owner, mode, lanes); - mode._debugOwner = element._owner; - mode._debugStack = element._debugStack; - mode._debugTask = element._debugTask; - return mode; - } - function createFiberFromFragment(elements, mode, lanes, key) { - elements = createFiber(7, elements, key, mode); - elements.lanes = lanes; - return elements; - } - function createFiberFromText(content, mode, lanes) { - content = createFiber(6, content, null, mode); - content.lanes = lanes; - return content; - } - function createFiberFromDehydratedFragment(dehydratedNode) { - var fiber = createFiber(18, null, null, NoMode); - fiber.stateNode = dehydratedNode; - return fiber; - } - function createFiberFromPortal(portal, mode, lanes) { - mode = createFiber(4, null !== portal.children ? portal.children : [], portal.key, mode); - mode.lanes = lanes; - mode.stateNode = { - containerInfo: portal.containerInfo, - pendingChildren: null, - implementation: portal.implementation - }; - return mode; - } - function createCapturedValueAtFiber(value, source) { - if ("object" === typeof value && null !== value) { - var existing = CapturedStacks.get(value); - if (void 0 !== existing) return existing; - source = { - value: value, - source: source, - stack: getStackByFiberInDevAndProd(source) - }; - CapturedStacks.set(value, source); - return source; - } - return { - value: value, - source: source, - stack: getStackByFiberInDevAndProd(source) - }; - } - function pushTreeFork(workInProgress, totalChildren) { - warnIfNotHydrating(); - forkStack[forkStackIndex++] = treeForkCount; - forkStack[forkStackIndex++] = treeForkProvider; - treeForkProvider = workInProgress; - treeForkCount = totalChildren; - } - function pushTreeId(workInProgress, totalChildren, index) { - warnIfNotHydrating(); - idStack[idStackIndex++] = treeContextId; - idStack[idStackIndex++] = treeContextOverflow; - idStack[idStackIndex++] = treeContextProvider; - treeContextProvider = workInProgress; - var baseIdWithLeadingBit = treeContextId; - workInProgress = treeContextOverflow; - var baseLength = 32 - clz32(baseIdWithLeadingBit) - 1; - baseIdWithLeadingBit &= ~(1 << baseLength); - index += 1; - var length = 32 - clz32(totalChildren) + baseLength; - if (30 < length) { - var numberOfOverflowBits = baseLength - baseLength % 5; - length = (baseIdWithLeadingBit & (1 << numberOfOverflowBits) - 1).toString(32); - baseIdWithLeadingBit >>= numberOfOverflowBits; - baseLength -= numberOfOverflowBits; - treeContextId = 1 << 32 - clz32(totalChildren) + baseLength | index << baseLength | baseIdWithLeadingBit; - treeContextOverflow = length + workInProgress; - } else treeContextId = 1 << length | index << baseLength | baseIdWithLeadingBit, treeContextOverflow = workInProgress; - } - function pushMaterializedTreeId(workInProgress) { - warnIfNotHydrating(); - null !== workInProgress.return && (pushTreeFork(workInProgress, 1), pushTreeId(workInProgress, 1, 0)); - } - function popTreeContext(workInProgress) { - for(; workInProgress === treeForkProvider;)treeForkProvider = forkStack[--forkStackIndex], forkStack[forkStackIndex] = null, treeForkCount = forkStack[--forkStackIndex], forkStack[forkStackIndex] = null; - for(; workInProgress === treeContextProvider;)treeContextProvider = idStack[--idStackIndex], idStack[idStackIndex] = null, treeContextOverflow = idStack[--idStackIndex], idStack[idStackIndex] = null, treeContextId = idStack[--idStackIndex], idStack[idStackIndex] = null; - } - function getSuspendedTreeContext() { - warnIfNotHydrating(); - return null !== treeContextProvider ? { - id: treeContextId, - overflow: treeContextOverflow - } : null; - } - function restoreSuspendedTreeContext(workInProgress, suspendedContext) { - warnIfNotHydrating(); - idStack[idStackIndex++] = treeContextId; - idStack[idStackIndex++] = treeContextOverflow; - idStack[idStackIndex++] = treeContextProvider; - treeContextId = suspendedContext.id; - treeContextOverflow = suspendedContext.overflow; - treeContextProvider = workInProgress; - } - function warnIfNotHydrating() { - isHydrating || console.error("Expected to be hydrating. This is a bug in React. Please file an issue."); - } - function buildHydrationDiffNode(fiber, distanceFromLeaf) { - if (null === fiber.return) { - if (null === hydrationDiffRootDEV) hydrationDiffRootDEV = { - fiber: fiber, - children: [], - serverProps: void 0, - serverTail: [], - distanceFromLeaf: distanceFromLeaf - }; - else { - if (hydrationDiffRootDEV.fiber !== fiber) throw Error("Saw multiple hydration diff roots in a pass. This is a bug in React."); - hydrationDiffRootDEV.distanceFromLeaf > distanceFromLeaf && (hydrationDiffRootDEV.distanceFromLeaf = distanceFromLeaf); - } - return hydrationDiffRootDEV; - } - var siblings = buildHydrationDiffNode(fiber.return, distanceFromLeaf + 1).children; - if (0 < siblings.length && siblings[siblings.length - 1].fiber === fiber) return siblings = siblings[siblings.length - 1], siblings.distanceFromLeaf > distanceFromLeaf && (siblings.distanceFromLeaf = distanceFromLeaf), siblings; - distanceFromLeaf = { - fiber: fiber, - children: [], - serverProps: void 0, - serverTail: [], - distanceFromLeaf: distanceFromLeaf - }; - siblings.push(distanceFromLeaf); - return distanceFromLeaf; - } - function warnIfHydrating() { - isHydrating && console.error("We should not be hydrating here. This is a bug in React. Please file a bug."); - } - function warnNonHydratedInstance(fiber, rejectedCandidate) { - didSuspendOrErrorDEV || (fiber = buildHydrationDiffNode(fiber, 0), fiber.serverProps = null, null !== rejectedCandidate && (rejectedCandidate = describeHydratableInstanceForDevWarnings(rejectedCandidate), fiber.serverTail.push(rejectedCandidate))); - } - function throwOnHydrationMismatch(fiber) { - var fromText = 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : !1, diff = "", diffRoot = hydrationDiffRootDEV; - null !== diffRoot && (hydrationDiffRootDEV = null, diff = describeDiff(diffRoot)); - queueHydrationError(createCapturedValueAtFiber(Error("Hydration failed because the server rendered " + (fromText ? "text" : "HTML") + " didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:\n\n- A server/client branch `if (typeof window !== 'undefined')`.\n- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.\n- Date formatting in a user's locale which doesn't match the server.\n- External changing data without sending a snapshot of it along with the HTML.\n- Invalid HTML tag nesting.\n\nIt can also happen if the client has a browser extension installed which messes with the HTML before React loaded.\n\nhttps://react.dev/link/hydration-mismatch" + diff), fiber)); - throw HydrationMismatchException; - } - function prepareToHydrateHostInstance(fiber) { - var didHydrate = fiber.stateNode; - var type = fiber.type, props = fiber.memoizedProps; - didHydrate[internalInstanceKey] = fiber; - didHydrate[internalPropsKey] = props; - validatePropertiesInDevelopment(type, props); - switch(type){ - case "dialog": - listenToNonDelegatedEvent("cancel", didHydrate); - listenToNonDelegatedEvent("close", didHydrate); - break; - case "iframe": - case "object": - case "embed": - listenToNonDelegatedEvent("load", didHydrate); - break; - case "video": - case "audio": - for(type = 0; type < mediaEventTypes.length; type++)listenToNonDelegatedEvent(mediaEventTypes[type], didHydrate); - break; - case "source": - listenToNonDelegatedEvent("error", didHydrate); - break; - case "img": - case "image": - case "link": - listenToNonDelegatedEvent("error", didHydrate); - listenToNonDelegatedEvent("load", didHydrate); - break; - case "details": - listenToNonDelegatedEvent("toggle", didHydrate); - break; - case "input": - checkControlledValueProps("input", props); - listenToNonDelegatedEvent("invalid", didHydrate); - validateInputProps(didHydrate, props); - initInput(didHydrate, props.value, props.defaultValue, props.checked, props.defaultChecked, props.type, props.name, !0); - break; - case "option": - validateOptionProps(didHydrate, props); - break; - case "select": - checkControlledValueProps("select", props); - listenToNonDelegatedEvent("invalid", didHydrate); - validateSelectProps(didHydrate, props); - break; - case "textarea": - checkControlledValueProps("textarea", props), listenToNonDelegatedEvent("invalid", didHydrate), validateTextareaProps(didHydrate, props), initTextarea(didHydrate, props.value, props.defaultValue, props.children); - } - type = props.children; - "string" !== typeof type && "number" !== typeof type && "bigint" !== typeof type || didHydrate.textContent === "" + type || !0 === props.suppressHydrationWarning || checkForUnmatchedText(didHydrate.textContent, type) ? (null != props.popover && (listenToNonDelegatedEvent("beforetoggle", didHydrate), listenToNonDelegatedEvent("toggle", didHydrate)), null != props.onScroll && listenToNonDelegatedEvent("scroll", didHydrate), null != props.onScrollEnd && listenToNonDelegatedEvent("scrollend", didHydrate), null != props.onClick && (didHydrate.onclick = noop$1), didHydrate = !0) : didHydrate = !1; - didHydrate || throwOnHydrationMismatch(fiber, !0); - } - function popToNextHostParent(fiber) { - for(hydrationParentFiber = fiber.return; hydrationParentFiber;)switch(hydrationParentFiber.tag){ - case 5: - case 31: - case 13: - rootOrSingletonContext = !1; - return; - case 27: - case 3: - rootOrSingletonContext = !0; - return; - default: - hydrationParentFiber = hydrationParentFiber.return; - } - } - function popHydrationState(fiber) { - if (fiber !== hydrationParentFiber) return !1; - if (!isHydrating) return popToNextHostParent(fiber), isHydrating = !0, !1; - var tag = fiber.tag, JSCompiler_temp; - if (JSCompiler_temp = 3 !== tag && 27 !== tag) { - if (JSCompiler_temp = 5 === tag) JSCompiler_temp = fiber.type, JSCompiler_temp = !("form" !== JSCompiler_temp && "button" !== JSCompiler_temp) || shouldSetTextContent(fiber.type, fiber.memoizedProps); - JSCompiler_temp = !JSCompiler_temp; - } - if (JSCompiler_temp && nextHydratableInstance) { - for(JSCompiler_temp = nextHydratableInstance; JSCompiler_temp;){ - var diffNode = buildHydrationDiffNode(fiber, 0), description = describeHydratableInstanceForDevWarnings(JSCompiler_temp); - diffNode.serverTail.push(description); - JSCompiler_temp = "Suspense" === description.type ? getNextHydratableInstanceAfterHydrationBoundary(JSCompiler_temp) : getNextHydratable(JSCompiler_temp.nextSibling); - } - throwOnHydrationMismatch(fiber); - } - popToNextHostParent(fiber); - if (13 === tag) { - fiber = fiber.memoizedState; - fiber = null !== fiber ? fiber.dehydrated : null; - if (!fiber) throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue."); - nextHydratableInstance = getNextHydratableInstanceAfterHydrationBoundary(fiber); - } else if (31 === tag) { - fiber = fiber.memoizedState; - fiber = null !== fiber ? fiber.dehydrated : null; - if (!fiber) throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue."); - nextHydratableInstance = getNextHydratableInstanceAfterHydrationBoundary(fiber); - } else 27 === tag ? (tag = nextHydratableInstance, isSingletonScope(fiber.type) ? (fiber = previousHydratableOnEnteringScopedSingleton, previousHydratableOnEnteringScopedSingleton = null, nextHydratableInstance = fiber) : nextHydratableInstance = tag) : nextHydratableInstance = hydrationParentFiber ? getNextHydratable(fiber.stateNode.nextSibling) : null; - return !0; - } - function resetHydrationState() { - nextHydratableInstance = hydrationParentFiber = null; - didSuspendOrErrorDEV = isHydrating = !1; - } - function upgradeHydrationErrorsToRecoverable() { - var queuedErrors = hydrationErrors; - null !== queuedErrors && (null === workInProgressRootRecoverableErrors ? workInProgressRootRecoverableErrors = queuedErrors : workInProgressRootRecoverableErrors.push.apply(workInProgressRootRecoverableErrors, queuedErrors), hydrationErrors = null); - return queuedErrors; - } - function queueHydrationError(error) { - null === hydrationErrors ? hydrationErrors = [ - error - ] : hydrationErrors.push(error); - } - function emitPendingHydrationWarnings() { - var diffRoot = hydrationDiffRootDEV; - if (null !== diffRoot) { - hydrationDiffRootDEV = null; - for(var diff = describeDiff(diffRoot); 0 < diffRoot.children.length;)diffRoot = diffRoot.children[0]; - runWithFiberInDEV(diffRoot.fiber, function() { - console.error("A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Component used:\n\n- A server/client branch `if (typeof window !== 'undefined')`.\n- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.\n- Date formatting in a user's locale which doesn't match the server.\n- External changing data without sending a snapshot of it along with the HTML.\n- Invalid HTML tag nesting.\n\nIt can also happen if the client has a browser extension installed which messes with the HTML before React loaded.\n\n%s%s", "https://react.dev/link/hydration-mismatch", diff); - }); - } - } - function resetContextDependencies() { - lastContextDependency = currentlyRenderingFiber$1 = null; - isDisallowedContextReadInDEV = !1; - } - function pushProvider(providerFiber, context, nextValue) { - push(valueCursor, context._currentValue, providerFiber); - context._currentValue = nextValue; - push(rendererCursorDEV, context._currentRenderer, providerFiber); - void 0 !== context._currentRenderer && null !== context._currentRenderer && context._currentRenderer !== rendererSigil && console.error("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported."); - context._currentRenderer = rendererSigil; - } - function popProvider(context, providerFiber) { - context._currentValue = valueCursor.current; - var currentRenderer = rendererCursorDEV.current; - pop(rendererCursorDEV, providerFiber); - context._currentRenderer = currentRenderer; - pop(valueCursor, providerFiber); - } - function scheduleContextWorkOnParentPath(parent, renderLanes, propagationRoot) { - for(; null !== parent;){ - var alternate = parent.alternate; - (parent.childLanes & renderLanes) !== renderLanes ? (parent.childLanes |= renderLanes, null !== alternate && (alternate.childLanes |= renderLanes)) : null !== alternate && (alternate.childLanes & renderLanes) !== renderLanes && (alternate.childLanes |= renderLanes); - if (parent === propagationRoot) break; - parent = parent.return; - } - parent !== propagationRoot && console.error("Expected to find the propagation root when scheduling context work. This error is likely caused by a bug in React. Please file an issue."); - } - function propagateContextChanges(workInProgress, contexts, renderLanes, forcePropagateEntireTree) { - var fiber = workInProgress.child; - null !== fiber && (fiber.return = workInProgress); - for(; null !== fiber;){ - var list = fiber.dependencies; - if (null !== list) { - var nextFiber = fiber.child; - list = list.firstContext; - a: for(; null !== list;){ - var dependency = list; - list = fiber; - for(var i = 0; i < contexts.length; i++)if (dependency.context === contexts[i]) { - list.lanes |= renderLanes; - dependency = list.alternate; - null !== dependency && (dependency.lanes |= renderLanes); - scheduleContextWorkOnParentPath(list.return, renderLanes, workInProgress); - forcePropagateEntireTree || (nextFiber = null); - break a; - } - list = dependency.next; - } - } else if (18 === fiber.tag) { - nextFiber = fiber.return; - if (null === nextFiber) throw Error("We just came from a parent so we must have had a parent. This is a bug in React."); - nextFiber.lanes |= renderLanes; - list = nextFiber.alternate; - null !== list && (list.lanes |= renderLanes); - scheduleContextWorkOnParentPath(nextFiber, renderLanes, workInProgress); - nextFiber = null; - } else nextFiber = fiber.child; - if (null !== nextFiber) nextFiber.return = fiber; - else for(nextFiber = fiber; null !== nextFiber;){ - if (nextFiber === workInProgress) { - nextFiber = null; - break; - } - fiber = nextFiber.sibling; - if (null !== fiber) { - fiber.return = nextFiber.return; - nextFiber = fiber; - break; - } - nextFiber = nextFiber.return; - } - fiber = nextFiber; - } - } - function propagateParentContextChanges(current, workInProgress, renderLanes, forcePropagateEntireTree) { - current = null; - for(var parent = workInProgress, isInsidePropagationBailout = !1; null !== parent;){ - if (!isInsidePropagationBailout) { - if (0 !== (parent.flags & 524288)) isInsidePropagationBailout = !0; - else if (0 !== (parent.flags & 262144)) break; - } - if (10 === parent.tag) { - var currentParent = parent.alternate; - if (null === currentParent) throw Error("Should have a current fiber. This is a bug in React."); - currentParent = currentParent.memoizedProps; - if (null !== currentParent) { - var context = parent.type; - objectIs(parent.pendingProps.value, currentParent.value) || (null !== current ? current.push(context) : current = [ - context - ]); - } - } else if (parent === hostTransitionProviderCursor.current) { - currentParent = parent.alternate; - if (null === currentParent) throw Error("Should have a current fiber. This is a bug in React."); - currentParent.memoizedState.memoizedState !== parent.memoizedState.memoizedState && (null !== current ? current.push(HostTransitionContext) : current = [ - HostTransitionContext - ]); - } - parent = parent.return; - } - null !== current && propagateContextChanges(workInProgress, current, renderLanes, forcePropagateEntireTree); - workInProgress.flags |= 262144; - } - function checkIfContextChanged(currentDependencies) { - for(currentDependencies = currentDependencies.firstContext; null !== currentDependencies;){ - if (!objectIs(currentDependencies.context._currentValue, currentDependencies.memoizedValue)) return !0; - currentDependencies = currentDependencies.next; - } - return !1; - } - function prepareToReadContext(workInProgress) { - currentlyRenderingFiber$1 = workInProgress; - lastContextDependency = null; - workInProgress = workInProgress.dependencies; - null !== workInProgress && (workInProgress.firstContext = null); - } - function readContext(context) { - isDisallowedContextReadInDEV && console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."); - return readContextForConsumer(currentlyRenderingFiber$1, context); - } - function readContextDuringReconciliation(consumer, context) { - null === currentlyRenderingFiber$1 && prepareToReadContext(consumer); - return readContextForConsumer(consumer, context); - } - function readContextForConsumer(consumer, context) { - var value = context._currentValue; - context = { - context: context, - memoizedValue: value, - next: null - }; - if (null === lastContextDependency) { - if (null === consumer) throw Error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."); - lastContextDependency = context; - consumer.dependencies = { - lanes: 0, - firstContext: context, - _debugThenableState: null - }; - consumer.flags |= 524288; - } else lastContextDependency = lastContextDependency.next = context; - return value; - } - function createCache() { - return { - controller: new AbortControllerLocal(), - data: new Map(), - refCount: 0 - }; - } - function retainCache(cache) { - cache.controller.signal.aborted && console.warn("A cache instance was retained after it was already freed. This likely indicates a bug in React."); - cache.refCount++; - } - function releaseCache(cache) { - cache.refCount--; - 0 > cache.refCount && console.warn("A cache instance was released after it was already freed. This likely indicates a bug in React."); - 0 === cache.refCount && scheduleCallback$2(NormalPriority, function() { - cache.controller.abort(); - }); - } - function queueTransitionTypes(root, transitionTypes) { - if (0 !== (root.pendingLanes & 4194048)) { - var queued = root.transitionTypes; - null === queued && (queued = root.transitionTypes = []); - for(root = 0; root < transitionTypes.length; root++){ - var transitionType = transitionTypes[root]; - -1 === queued.indexOf(transitionType) && queued.push(transitionType); - } - } - } - function claimQueuedTransitionTypes(root) { - var claimed = root.transitionTypes; - root.transitionTypes = null; - return claimed; - } - function startUpdateTimerByLane(lane, method, fiber) { - if (0 !== (lane & 127)) 0 > blockingUpdateTime && (blockingUpdateTime = now(), blockingUpdateTask = createTask(method), blockingUpdateMethodName = method, null != fiber && (blockingUpdateComponentName = getComponentNameFromFiber(fiber)), (executionContext & (RenderContext | CommitContext)) !== NoContext && (componentEffectSpawnedUpdate = !0, blockingUpdateType = SPAWNED_UPDATE), lane = resolveEventTimeStamp(), method = resolveEventType(), lane !== blockingEventRepeatTime || method !== blockingEventType ? blockingEventRepeatTime = -1.1 : null !== method && (blockingUpdateType = SPAWNED_UPDATE), blockingEventTime = lane, blockingEventType = method); - else if (0 !== (lane & 4194048) && 0 > transitionUpdateTime && (transitionUpdateTime = now(), transitionUpdateTask = createTask(method), transitionUpdateMethodName = method, null != fiber && (transitionUpdateComponentName = getComponentNameFromFiber(fiber)), 0 > transitionStartTime)) { - lane = resolveEventTimeStamp(); - method = resolveEventType(); - if (lane !== transitionEventRepeatTime || method !== transitionEventType) transitionEventRepeatTime = -1.1; - transitionEventTime = lane; - transitionEventType = method; - } - } - function startHostActionTimer(fiber) { - if (0 > blockingUpdateTime) { - blockingUpdateTime = now(); - blockingUpdateTask = null != fiber._debugTask ? fiber._debugTask : null; - (executionContext & (RenderContext | CommitContext)) !== NoContext && (blockingUpdateType = SPAWNED_UPDATE); - var newEventTime = resolveEventTimeStamp(), newEventType = resolveEventType(); - newEventTime !== blockingEventRepeatTime || newEventType !== blockingEventType ? blockingEventRepeatTime = -1.1 : null !== newEventType && (blockingUpdateType = SPAWNED_UPDATE); - blockingEventTime = newEventTime; - blockingEventType = newEventType; - } - if (0 > transitionUpdateTime && (transitionUpdateTime = now(), transitionUpdateTask = null != fiber._debugTask ? fiber._debugTask : null, 0 > transitionStartTime)) { - fiber = resolveEventTimeStamp(); - newEventTime = resolveEventType(); - if (fiber !== transitionEventRepeatTime || newEventTime !== transitionEventType) transitionEventRepeatTime = -1.1; - transitionEventTime = fiber; - transitionEventType = newEventTime; - } - } - function pushNestedEffectDurations() { - var prevEffectDuration = profilerEffectDuration; - profilerEffectDuration = 0; - return prevEffectDuration; - } - function popNestedEffectDurations(prevEffectDuration) { - var elapsedTime = profilerEffectDuration; - profilerEffectDuration = prevEffectDuration; - return elapsedTime; - } - function bubbleNestedEffectDurations(prevEffectDuration) { - var elapsedTime = profilerEffectDuration; - profilerEffectDuration += prevEffectDuration; - return elapsedTime; - } - function resetComponentEffectTimers() { - componentEffectEndTime = componentEffectStartTime = -1.1; - } - function pushComponentEffectStart() { - var prevEffectStart = componentEffectStartTime; - componentEffectStartTime = -1.1; - return prevEffectStart; - } - function popComponentEffectStart(prevEffectStart) { - 0 <= prevEffectStart && (componentEffectStartTime = prevEffectStart); - } - function pushComponentEffectDuration() { - var prevEffectDuration = componentEffectDuration; - componentEffectDuration = -0; - return prevEffectDuration; - } - function popComponentEffectDuration(prevEffectDuration) { - 0 <= prevEffectDuration && (componentEffectDuration = prevEffectDuration); - } - function pushComponentEffectErrors() { - var prevErrors = componentEffectErrors; - componentEffectErrors = null; - return prevErrors; - } - function pushComponentEffectDidSpawnUpdate() { - var prev = componentEffectSpawnedUpdate; - componentEffectSpawnedUpdate = !1; - return prev; - } - function startProfilerTimer(fiber) { - profilerStartTime = now(); - 0 > fiber.actualStartTime && (fiber.actualStartTime = profilerStartTime); - } - function stopProfilerTimerIfRunningAndRecordDuration(fiber) { - if (0 <= profilerStartTime) { - var elapsedTime = now() - profilerStartTime; - fiber.actualDuration += elapsedTime; - fiber.selfBaseDuration = elapsedTime; - profilerStartTime = -1; - } - } - function stopProfilerTimerIfRunningAndRecordIncompleteDuration(fiber) { - if (0 <= profilerStartTime) { - var elapsedTime = now() - profilerStartTime; - fiber.actualDuration += elapsedTime; - profilerStartTime = -1; - } - } - function recordEffectDuration() { - if (0 <= profilerStartTime) { - var endTime = now(), elapsedTime = endTime - profilerStartTime; - profilerStartTime = -1; - profilerEffectDuration += elapsedTime; - componentEffectDuration += elapsedTime; - componentEffectEndTime = endTime; - } - } - function recordEffectError(errorInfo) { - null === componentEffectErrors && (componentEffectErrors = []); - componentEffectErrors.push(errorInfo); - null === commitErrors && (commitErrors = []); - commitErrors.push(errorInfo); - } - function startEffectTimer() { - profilerStartTime = now(); - 0 > componentEffectStartTime && (componentEffectStartTime = profilerStartTime); - } - function transferActualDuration(fiber) { - for(var child = fiber.child; child;)fiber.actualDuration += child.actualDuration, child = child.sibling; - } - function entangleAsyncAction(transition, thenable) { - if (null === currentEntangledListeners) { - var entangledListeners = currentEntangledListeners = []; - currentEntangledPendingCount = 0; - currentEntangledLane = requestTransitionLane(); - currentEntangledActionThenable = { - status: "pending", - value: void 0, - then: function(resolve) { - entangledListeners.push(resolve); - } - }; - } - currentEntangledPendingCount++; - thenable.then(pingEngtangledActionScope, pingEngtangledActionScope); - return thenable; - } - function pingEngtangledActionScope() { - if (0 === --currentEntangledPendingCount && (-1 < transitionUpdateTime || (transitionStartTime = -1.1), entangledTransitionTypes = null, null !== currentEntangledListeners)) { - null !== currentEntangledActionThenable && (currentEntangledActionThenable.status = "fulfilled"); - var listeners = currentEntangledListeners; - currentEntangledListeners = null; - currentEntangledLane = 0; - currentEntangledActionThenable = null; - for(var i = 0; i < listeners.length; i++)(0, listeners[i])(); - } - } - function chainThenableValue(thenable, result) { - var listeners = [], thenableWithOverride = { - status: "pending", - value: null, - reason: null, - then: function(resolve) { - listeners.push(resolve); - } - }; - thenable.then(function() { - thenableWithOverride.status = "fulfilled"; - thenableWithOverride.value = result; - for(var i = 0; i < listeners.length; i++)(0, listeners[i])(result); - }, function(error) { - thenableWithOverride.status = "rejected"; - thenableWithOverride.reason = error; - for(error = 0; error < listeners.length; error++)(0, listeners[error])(void 0); - }); - return thenableWithOverride; - } - function peekCacheFromPool() { - var cacheResumedFromPreviousRender = resumedCache.current; - return null !== cacheResumedFromPreviousRender ? cacheResumedFromPreviousRender : workInProgressRoot.pooledCache; - } - function pushTransition(offscreenWorkInProgress, prevCachePool) { - null === prevCachePool ? push(resumedCache, resumedCache.current, offscreenWorkInProgress) : push(resumedCache, prevCachePool.pool, offscreenWorkInProgress); - } - function getSuspendedCache() { - var cacheFromPool = peekCacheFromPool(); - return null === cacheFromPool ? null : { - parent: CacheContext._currentValue, - pool: cacheFromPool - }; - } - function createThenableState() { - return { - didWarnAboutUncachedPromise: !1, - thenables: [] - }; - } - function isThenableResolved(thenable) { - thenable = thenable.status; - return "fulfilled" === thenable || "rejected" === thenable; - } - function trackUsedThenable(thenableState, thenable, index) { - null !== ReactSharedInternals.actQueue && (ReactSharedInternals.didUsePromise = !0); - var trackedThenables = thenableState.thenables; - index = trackedThenables[index]; - void 0 === index ? trackedThenables.push(thenable) : index !== thenable && (thenableState.didWarnAboutUncachedPromise || (thenableState.didWarnAboutUncachedPromise = !0, console.error("A component was suspended by an uncached promise. Creating promises inside a Client Component or hook is not yet supported, except via a Suspense-compatible library or framework.")), thenable.then(noop$1, noop$1), thenable = index); - if (void 0 === thenable._debugInfo) { - thenableState = performance.now(); - trackedThenables = thenable.displayName; - var ioInfo = { - name: "string" === typeof trackedThenables ? trackedThenables : "Promise", - start: thenableState, - end: thenableState, - value: thenable - }; - thenable._debugInfo = [ - { - awaited: ioInfo - } - ]; - "fulfilled" !== thenable.status && "rejected" !== thenable.status && (thenableState = function() { - ioInfo.end = performance.now(); - }, thenable.then(thenableState, thenableState)); - } - switch(thenable.status){ - case "fulfilled": - return thenable.value; - case "rejected": - throw thenableState = thenable.reason, checkIfUseWrappedInAsyncCatch(thenableState), thenableState; - default: - if ("string" === typeof thenable.status) thenable.then(noop$1, noop$1); - else { - thenableState = workInProgressRoot; - if (null !== thenableState && 100 < thenableState.shellSuspendCounter) throw Error("An unknown Component is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server."); - thenableState = thenable; - thenableState.status = "pending"; - thenableState.then(function(fulfilledValue) { - if ("pending" === thenable.status) { - var fulfilledThenable = thenable; - fulfilledThenable.status = "fulfilled"; - fulfilledThenable.value = fulfilledValue; - } - }, function(error) { - if ("pending" === thenable.status) { - var rejectedThenable = thenable; - rejectedThenable.status = "rejected"; - rejectedThenable.reason = error; - } - }); - } - switch(thenable.status){ - case "fulfilled": - return thenable.value; - case "rejected": - throw thenableState = thenable.reason, checkIfUseWrappedInAsyncCatch(thenableState), thenableState; - } - suspendedThenable = thenable; - needsToResetSuspendedThenableDEV = !0; - throw SuspenseException; - } - } - function resolveLazy(lazyType) { - try { - return callLazyInitInDEV(lazyType); - } catch (x) { - if (null !== x && "object" === typeof x && "function" === typeof x.then) throw suspendedThenable = x, needsToResetSuspendedThenableDEV = !0, SuspenseException; - throw x; - } - } - function getSuspendedThenable() { - if (null === suspendedThenable) throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue."); - var thenable = suspendedThenable; - suspendedThenable = null; - needsToResetSuspendedThenableDEV = !1; - return thenable; - } - function checkIfUseWrappedInAsyncCatch(rejectedReason) { - if (rejectedReason === SuspenseException || rejectedReason === SuspenseActionException) throw Error("Hooks are not supported inside an async component. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server."); - } - function pushDebugInfo(debugInfo) { - var previousDebugInfo = currentDebugInfo; - null != debugInfo && (currentDebugInfo = null === previousDebugInfo ? debugInfo : previousDebugInfo.concat(debugInfo)); - return previousDebugInfo; - } - function getCurrentDebugTask() { - var debugInfo = currentDebugInfo; - if (null != debugInfo) { - for(var i = debugInfo.length - 1; 0 <= i; i--)if (null != debugInfo[i].name) { - var debugTask = debugInfo[i].debugTask; - if (null != debugTask) return debugTask; - } - } - return null; - } - function validateFragmentProps(element, fiber, returnFiber) { - for(var keys = Object.keys(element.props), i = 0; i < keys.length; i++){ - var key = keys[i]; - if ("children" !== key && "key" !== key && "ref" !== key) { - null === fiber && (fiber = createFiberFromElement(element, returnFiber.mode, 0), fiber._debugInfo = currentDebugInfo, fiber.return = returnFiber); - runWithFiberInDEV(fiber, function(erroredKey) { - console.error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key`, `ref`, and `children` props.", erroredKey); - }, key); - break; - } - } - } - function unwrapThenable(thenable) { - var index = thenableIndexCounter$1; - thenableIndexCounter$1 += 1; - null === thenableState$1 && (thenableState$1 = createThenableState()); - return trackUsedThenable(thenableState$1, thenable, index); - } - function coerceRef(workInProgress, element) { - element = element.props.ref; - workInProgress.ref = void 0 !== element ? element : null; - } - function throwOnInvalidObjectTypeImpl(returnFiber, newChild) { - if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE) throw Error('A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'); - returnFiber = Object.prototype.toString.call(newChild); - throw Error("Objects are not valid as a React child (found: " + ("[object Object]" === returnFiber ? "object with keys {" + Object.keys(newChild).join(", ") + "}" : returnFiber) + "). If you meant to render a collection of children, use an array instead."); - } - function throwOnInvalidObjectType(returnFiber, newChild) { - var debugTask = getCurrentDebugTask(); - null !== debugTask ? debugTask.run(throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)) : throwOnInvalidObjectTypeImpl(returnFiber, newChild); - } - function warnOnFunctionTypeImpl(returnFiber, invalidChild) { - var parentName = getComponentNameFromFiber(returnFiber) || "Component"; - ownerHasFunctionTypeWarning[parentName] || (ownerHasFunctionTypeWarning[parentName] = !0, invalidChild = invalidChild.displayName || invalidChild.name || "Component", 3 === returnFiber.tag ? console.error("Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.\n root.render(%s)", invalidChild, invalidChild, invalidChild) : console.error("Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.\n <%s>{%s}</%s>", invalidChild, invalidChild, parentName, invalidChild, parentName)); - } - function warnOnFunctionType(returnFiber, invalidChild) { - var debugTask = getCurrentDebugTask(); - null !== debugTask ? debugTask.run(warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)) : warnOnFunctionTypeImpl(returnFiber, invalidChild); - } - function warnOnSymbolTypeImpl(returnFiber, invalidChild) { - var parentName = getComponentNameFromFiber(returnFiber) || "Component"; - ownerHasSymbolTypeWarning[parentName] || (ownerHasSymbolTypeWarning[parentName] = !0, invalidChild = String(invalidChild), 3 === returnFiber.tag ? console.error("Symbols are not valid as a React child.\n root.render(%s)", invalidChild) : console.error("Symbols are not valid as a React child.\n <%s>%s</%s>", parentName, invalidChild, parentName)); - } - function warnOnSymbolType(returnFiber, invalidChild) { - var debugTask = getCurrentDebugTask(); - null !== debugTask ? debugTask.run(warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)) : warnOnSymbolTypeImpl(returnFiber, invalidChild); - } - function createChildReconciler(shouldTrackSideEffects) { - function deleteChild(returnFiber, childToDelete) { - if (shouldTrackSideEffects) { - var deletions = returnFiber.deletions; - null === deletions ? (returnFiber.deletions = [ - childToDelete - ], returnFiber.flags |= 16) : deletions.push(childToDelete); - } - } - function deleteRemainingChildren(returnFiber, currentFirstChild) { - if (!shouldTrackSideEffects) return null; - for(; null !== currentFirstChild;)deleteChild(returnFiber, currentFirstChild), currentFirstChild = currentFirstChild.sibling; - return null; - } - function mapRemainingChildren(currentFirstChild) { - for(var existingChildren = new Map(); null !== currentFirstChild;)null === currentFirstChild.key ? existingChildren.set(currentFirstChild.index, currentFirstChild) : existingChildren.set(currentFirstChild.key, currentFirstChild), currentFirstChild = currentFirstChild.sibling; - return existingChildren; - } - function useFiber(fiber, pendingProps) { - fiber = createWorkInProgress(fiber, pendingProps); - fiber.index = 0; - fiber.sibling = null; - return fiber; - } - function placeChild(newFiber, lastPlacedIndex, newIndex) { - newFiber.index = newIndex; - if (!shouldTrackSideEffects) return newFiber.flags |= 1048576, lastPlacedIndex; - newIndex = newFiber.alternate; - if (null !== newIndex) return newIndex = newIndex.index, newIndex < lastPlacedIndex ? (newFiber.flags |= 134217730, lastPlacedIndex) : newIndex; - newFiber.flags |= 134217730; - return lastPlacedIndex; - } - function placeSingleChild(newFiber) { - shouldTrackSideEffects && null === newFiber.alternate && (newFiber.flags |= 134217730); - return newFiber; - } - function updateTextNode(returnFiber, current, textContent, lanes) { - if (null === current || 6 !== current.tag) return current = createFiberFromText(textContent, returnFiber.mode, lanes), current.return = returnFiber, current._debugOwner = returnFiber, current._debugTask = returnFiber._debugTask, current._debugInfo = currentDebugInfo, current; - current = useFiber(current, textContent); - current.return = returnFiber; - current._debugInfo = currentDebugInfo; - return current; - } - function updateElement(returnFiber, current, element, lanes) { - var elementType = element.type; - if (elementType === REACT_FRAGMENT_TYPE) return current = updateFragment(returnFiber, current, element.props.children, lanes, element.key), coerceRef(current, element), validateFragmentProps(element, current, returnFiber), current; - if (null !== current && (current.elementType === elementType || isCompatibleFamilyForHotReloading(current, element) || "object" === typeof elementType && null !== elementType && elementType.$$typeof === REACT_LAZY_TYPE && resolveLazy(elementType) === current.type)) return current = useFiber(current, element.props), coerceRef(current, element), current.return = returnFiber, current._debugOwner = element._owner, current._debugInfo = currentDebugInfo, current; - current = createFiberFromElement(element, returnFiber.mode, lanes); - coerceRef(current, element); - current.return = returnFiber; - current._debugInfo = currentDebugInfo; - return current; - } - function updatePortal(returnFiber, current, portal, lanes) { - if (null === current || 4 !== current.tag || current.stateNode.containerInfo !== portal.containerInfo || current.stateNode.implementation !== portal.implementation) return current = createFiberFromPortal(portal, returnFiber.mode, lanes), current.return = returnFiber, current._debugInfo = currentDebugInfo, current; - current = useFiber(current, portal.children || []); - current.return = returnFiber; - current._debugInfo = currentDebugInfo; - return current; - } - function updateFragment(returnFiber, current, fragment, lanes, key) { - if (null === current || 7 !== current.tag) return current = createFiberFromFragment(fragment, returnFiber.mode, lanes, key), current.return = returnFiber, current._debugOwner = returnFiber, current._debugTask = returnFiber._debugTask, current._debugInfo = currentDebugInfo, current; - current = useFiber(current, fragment); - current.return = returnFiber; - current._debugInfo = currentDebugInfo; - return current; - } - function createChild(returnFiber, newChild, lanes) { - if ("string" === typeof newChild && "" !== newChild || "number" === typeof newChild || "bigint" === typeof newChild) return newChild = createFiberFromText("" + newChild, returnFiber.mode, lanes), newChild.return = returnFiber, newChild._debugOwner = returnFiber, newChild._debugTask = returnFiber._debugTask, newChild._debugInfo = currentDebugInfo, newChild; - if ("object" === typeof newChild && null !== newChild) { - switch(newChild.$$typeof){ - case REACT_ELEMENT_TYPE: - return lanes = createFiberFromElement(newChild, returnFiber.mode, lanes), coerceRef(lanes, newChild), lanes.return = returnFiber, returnFiber = pushDebugInfo(newChild._debugInfo), lanes._debugInfo = currentDebugInfo, currentDebugInfo = returnFiber, lanes; - case REACT_PORTAL_TYPE: - return newChild = createFiberFromPortal(newChild, returnFiber.mode, lanes), newChild.return = returnFiber, newChild._debugInfo = currentDebugInfo, newChild; - case REACT_LAZY_TYPE: - var _prevDebugInfo = pushDebugInfo(newChild._debugInfo); - newChild = resolveLazy(newChild); - returnFiber = createChild(returnFiber, newChild, lanes); - currentDebugInfo = _prevDebugInfo; - return returnFiber; - } - if (isArrayImpl(newChild) || getIteratorFn(newChild)) return lanes = createFiberFromFragment(newChild, returnFiber.mode, lanes, null), lanes.return = returnFiber, lanes._debugOwner = returnFiber, lanes._debugTask = returnFiber._debugTask, returnFiber = pushDebugInfo(newChild._debugInfo), lanes._debugInfo = currentDebugInfo, currentDebugInfo = returnFiber, lanes; - if ("function" === typeof newChild.then) return _prevDebugInfo = pushDebugInfo(newChild._debugInfo), returnFiber = createChild(returnFiber, unwrapThenable(newChild), lanes), currentDebugInfo = _prevDebugInfo, returnFiber; - if (newChild.$$typeof === REACT_CONTEXT_TYPE) return createChild(returnFiber, readContextDuringReconciliation(returnFiber, newChild), lanes); - throwOnInvalidObjectType(returnFiber, newChild); - } - "function" === typeof newChild && warnOnFunctionType(returnFiber, newChild); - "symbol" === typeof newChild && warnOnSymbolType(returnFiber, newChild); - return null; - } - function updateSlot(returnFiber, oldFiber, newChild, lanes) { - var key = null !== oldFiber ? oldFiber.key : null; - if ("string" === typeof newChild && "" !== newChild || "number" === typeof newChild || "bigint" === typeof newChild) return null !== key ? null : updateTextNode(returnFiber, oldFiber, "" + newChild, lanes); - if ("object" === typeof newChild && null !== newChild) { - switch(newChild.$$typeof){ - case REACT_ELEMENT_TYPE: - return newChild.key === key ? (key = pushDebugInfo(newChild._debugInfo), returnFiber = updateElement(returnFiber, oldFiber, newChild, lanes), currentDebugInfo = key, returnFiber) : null; - case REACT_PORTAL_TYPE: - return newChild.key === key ? updatePortal(returnFiber, oldFiber, newChild, lanes) : null; - case REACT_LAZY_TYPE: - return key = pushDebugInfo(newChild._debugInfo), newChild = resolveLazy(newChild), returnFiber = updateSlot(returnFiber, oldFiber, newChild, lanes), currentDebugInfo = key, returnFiber; - } - if (isArrayImpl(newChild) || getIteratorFn(newChild)) { - if (null !== key) return null; - key = pushDebugInfo(newChild._debugInfo); - returnFiber = updateFragment(returnFiber, oldFiber, newChild, lanes, null); - currentDebugInfo = key; - return returnFiber; - } - if ("function" === typeof newChild.then) return key = pushDebugInfo(newChild._debugInfo), returnFiber = updateSlot(returnFiber, oldFiber, unwrapThenable(newChild), lanes), currentDebugInfo = key, returnFiber; - if (newChild.$$typeof === REACT_CONTEXT_TYPE) return updateSlot(returnFiber, oldFiber, readContextDuringReconciliation(returnFiber, newChild), lanes); - throwOnInvalidObjectType(returnFiber, newChild); - } - "function" === typeof newChild && warnOnFunctionType(returnFiber, newChild); - "symbol" === typeof newChild && warnOnSymbolType(returnFiber, newChild); - return null; - } - function updateFromMap(existingChildren, returnFiber, newIdx, newChild, lanes) { - if ("string" === typeof newChild && "" !== newChild || "number" === typeof newChild || "bigint" === typeof newChild) return existingChildren = existingChildren.get(newIdx) || null, updateTextNode(returnFiber, existingChildren, "" + newChild, lanes); - if ("object" === typeof newChild && null !== newChild) { - switch(newChild.$$typeof){ - case REACT_ELEMENT_TYPE: - return newIdx = existingChildren.get(null === newChild.key ? newIdx : newChild.key) || null, existingChildren = pushDebugInfo(newChild._debugInfo), returnFiber = updateElement(returnFiber, newIdx, newChild, lanes), currentDebugInfo = existingChildren, returnFiber; - case REACT_PORTAL_TYPE: - return existingChildren = existingChildren.get(null === newChild.key ? newIdx : newChild.key) || null, updatePortal(returnFiber, existingChildren, newChild, lanes); - case REACT_LAZY_TYPE: - var _prevDebugInfo7 = pushDebugInfo(newChild._debugInfo); - newChild = resolveLazy(newChild); - returnFiber = updateFromMap(existingChildren, returnFiber, newIdx, newChild, lanes); - currentDebugInfo = _prevDebugInfo7; - return returnFiber; - } - if (isArrayImpl(newChild) || getIteratorFn(newChild)) return newIdx = existingChildren.get(newIdx) || null, existingChildren = pushDebugInfo(newChild._debugInfo), returnFiber = updateFragment(returnFiber, newIdx, newChild, lanes, null), currentDebugInfo = existingChildren, returnFiber; - if ("function" === typeof newChild.then) return _prevDebugInfo7 = pushDebugInfo(newChild._debugInfo), returnFiber = updateFromMap(existingChildren, returnFiber, newIdx, unwrapThenable(newChild), lanes), currentDebugInfo = _prevDebugInfo7, returnFiber; - if (newChild.$$typeof === REACT_CONTEXT_TYPE) return updateFromMap(existingChildren, returnFiber, newIdx, readContextDuringReconciliation(returnFiber, newChild), lanes); - throwOnInvalidObjectType(returnFiber, newChild); - } - "function" === typeof newChild && warnOnFunctionType(returnFiber, newChild); - "symbol" === typeof newChild && warnOnSymbolType(returnFiber, newChild); - return null; - } - function warnOnInvalidKey(returnFiber, workInProgress, child, knownKeys) { - if ("object" !== typeof child || null === child) return knownKeys; - switch(child.$$typeof){ - case REACT_ELEMENT_TYPE: - case REACT_PORTAL_TYPE: - warnForMissingKey(returnFiber, workInProgress, child); - var key = child.key; - if ("string" !== typeof key) break; - if (null === knownKeys) { - knownKeys = new Set(); - knownKeys.add(key); - break; - } - if (!knownKeys.has(key)) { - knownKeys.add(key); - break; - } - runWithFiberInDEV(workInProgress, function() { - console.error("Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted \u2014 the behavior is unsupported and could change in a future version.", key); - }); - break; - case REACT_LAZY_TYPE: - child = resolveLazy(child), warnOnInvalidKey(returnFiber, workInProgress, child, knownKeys); - } - return knownKeys; - } - function reconcileChildrenArray(returnFiber, currentFirstChild, newChildren, lanes) { - for(var knownKeys = null, resultingFirstChild = null, previousNewFiber = null, oldFiber = currentFirstChild, newIdx = currentFirstChild = 0, nextOldFiber = null; null !== oldFiber && newIdx < newChildren.length; newIdx++){ - oldFiber.index > newIdx ? (nextOldFiber = oldFiber, oldFiber = null) : nextOldFiber = oldFiber.sibling; - var newFiber = updateSlot(returnFiber, oldFiber, newChildren[newIdx], lanes); - if (null === newFiber) { - null === oldFiber && (oldFiber = nextOldFiber); - break; - } - knownKeys = warnOnInvalidKey(returnFiber, newFiber, newChildren[newIdx], knownKeys); - shouldTrackSideEffects && oldFiber && null === newFiber.alternate && deleteChild(returnFiber, oldFiber); - currentFirstChild = placeChild(newFiber, currentFirstChild, newIdx); - null === previousNewFiber ? resultingFirstChild = newFiber : previousNewFiber.sibling = newFiber; - previousNewFiber = newFiber; - oldFiber = nextOldFiber; - } - if (newIdx === newChildren.length) return deleteRemainingChildren(returnFiber, oldFiber), isHydrating && pushTreeFork(returnFiber, newIdx), resultingFirstChild; - if (null === oldFiber) { - for(; newIdx < newChildren.length; newIdx++)oldFiber = createChild(returnFiber, newChildren[newIdx], lanes), null !== oldFiber && (knownKeys = warnOnInvalidKey(returnFiber, oldFiber, newChildren[newIdx], knownKeys), currentFirstChild = placeChild(oldFiber, currentFirstChild, newIdx), null === previousNewFiber ? resultingFirstChild = oldFiber : previousNewFiber.sibling = oldFiber, previousNewFiber = oldFiber); - isHydrating && pushTreeFork(returnFiber, newIdx); - return resultingFirstChild; - } - for(oldFiber = mapRemainingChildren(oldFiber); newIdx < newChildren.length; newIdx++)nextOldFiber = updateFromMap(oldFiber, returnFiber, newIdx, newChildren[newIdx], lanes), null !== nextOldFiber && (knownKeys = warnOnInvalidKey(returnFiber, nextOldFiber, newChildren[newIdx], knownKeys), shouldTrackSideEffects && (newFiber = nextOldFiber.alternate, null !== newFiber && oldFiber.delete(null === newFiber.key ? newIdx : newFiber.key)), currentFirstChild = placeChild(nextOldFiber, currentFirstChild, newIdx), null === previousNewFiber ? resultingFirstChild = nextOldFiber : previousNewFiber.sibling = nextOldFiber, previousNewFiber = nextOldFiber); - shouldTrackSideEffects && oldFiber.forEach(function(child) { - return deleteChild(returnFiber, child); - }); - isHydrating && pushTreeFork(returnFiber, newIdx); - return resultingFirstChild; - } - function reconcileChildrenIterator(returnFiber, currentFirstChild, newChildren, lanes) { - if (null == newChildren) throw Error("An iterable object provided no iterator."); - for(var resultingFirstChild = null, previousNewFiber = null, oldFiber = currentFirstChild, newIdx = currentFirstChild = 0, nextOldFiber = null, knownKeys = null, step = newChildren.next(); null !== oldFiber && !step.done; newIdx++, step = newChildren.next()){ - oldFiber.index > newIdx ? (nextOldFiber = oldFiber, oldFiber = null) : nextOldFiber = oldFiber.sibling; - var newFiber = updateSlot(returnFiber, oldFiber, step.value, lanes); - if (null === newFiber) { - null === oldFiber && (oldFiber = nextOldFiber); - break; - } - knownKeys = warnOnInvalidKey(returnFiber, newFiber, step.value, knownKeys); - shouldTrackSideEffects && oldFiber && null === newFiber.alternate && deleteChild(returnFiber, oldFiber); - currentFirstChild = placeChild(newFiber, currentFirstChild, newIdx); - null === previousNewFiber ? resultingFirstChild = newFiber : previousNewFiber.sibling = newFiber; - previousNewFiber = newFiber; - oldFiber = nextOldFiber; - } - if (step.done) return deleteRemainingChildren(returnFiber, oldFiber), isHydrating && pushTreeFork(returnFiber, newIdx), resultingFirstChild; - if (null === oldFiber) { - for(; !step.done; newIdx++, step = newChildren.next())oldFiber = createChild(returnFiber, step.value, lanes), null !== oldFiber && (knownKeys = warnOnInvalidKey(returnFiber, oldFiber, step.value, knownKeys), currentFirstChild = placeChild(oldFiber, currentFirstChild, newIdx), null === previousNewFiber ? resultingFirstChild = oldFiber : previousNewFiber.sibling = oldFiber, previousNewFiber = oldFiber); - isHydrating && pushTreeFork(returnFiber, newIdx); - return resultingFirstChild; - } - for(oldFiber = mapRemainingChildren(oldFiber); !step.done; newIdx++, step = newChildren.next())nextOldFiber = updateFromMap(oldFiber, returnFiber, newIdx, step.value, lanes), null !== nextOldFiber && (knownKeys = warnOnInvalidKey(returnFiber, nextOldFiber, step.value, knownKeys), shouldTrackSideEffects && (step = nextOldFiber.alternate, null !== step && oldFiber.delete(null === step.key ? newIdx : step.key)), currentFirstChild = placeChild(nextOldFiber, currentFirstChild, newIdx), null === previousNewFiber ? resultingFirstChild = nextOldFiber : previousNewFiber.sibling = nextOldFiber, previousNewFiber = nextOldFiber); - shouldTrackSideEffects && oldFiber.forEach(function(child) { - return deleteChild(returnFiber, child); - }); - isHydrating && pushTreeFork(returnFiber, newIdx); - return resultingFirstChild; - } - function reconcileChildFibersImpl(returnFiber, currentFirstChild, newChild, lanes) { - "object" === typeof newChild && null !== newChild && newChild.type === REACT_FRAGMENT_TYPE && null === newChild.key && void 0 === newChild.props.ref && (validateFragmentProps(newChild, null, returnFiber), newChild = newChild.props.children); - if ("object" === typeof newChild && null !== newChild) { - switch(newChild.$$typeof){ - case REACT_ELEMENT_TYPE: - var prevDebugInfo = pushDebugInfo(newChild._debugInfo); - a: { - for(var key = newChild.key; null !== currentFirstChild;){ - if (currentFirstChild.key === key) { - key = newChild.type; - if (key === REACT_FRAGMENT_TYPE) { - if (7 === currentFirstChild.tag) { - deleteRemainingChildren(returnFiber, currentFirstChild.sibling); - lanes = useFiber(currentFirstChild, newChild.props.children); - coerceRef(lanes, newChild); - lanes.return = returnFiber; - lanes._debugOwner = newChild._owner; - lanes._debugInfo = currentDebugInfo; - validateFragmentProps(newChild, lanes, returnFiber); - returnFiber = lanes; - break a; - } - } else if (currentFirstChild.elementType === key || isCompatibleFamilyForHotReloading(currentFirstChild, newChild) || "object" === typeof key && null !== key && key.$$typeof === REACT_LAZY_TYPE && resolveLazy(key) === currentFirstChild.type) { - deleteRemainingChildren(returnFiber, currentFirstChild.sibling); - lanes = useFiber(currentFirstChild, newChild.props); - coerceRef(lanes, newChild); - lanes.return = returnFiber; - lanes._debugOwner = newChild._owner; - lanes._debugInfo = currentDebugInfo; - returnFiber = lanes; - break a; - } - deleteRemainingChildren(returnFiber, currentFirstChild); - break; - } else deleteChild(returnFiber, currentFirstChild); - currentFirstChild = currentFirstChild.sibling; - } - newChild.type === REACT_FRAGMENT_TYPE ? (lanes = createFiberFromFragment(newChild.props.children, returnFiber.mode, lanes, newChild.key), coerceRef(lanes, newChild), lanes.return = returnFiber, lanes._debugOwner = returnFiber, lanes._debugTask = returnFiber._debugTask, lanes._debugInfo = currentDebugInfo, validateFragmentProps(newChild, lanes, returnFiber), returnFiber = lanes) : (lanes = createFiberFromElement(newChild, returnFiber.mode, lanes), coerceRef(lanes, newChild), lanes.return = returnFiber, lanes._debugInfo = currentDebugInfo, returnFiber = lanes); - } - returnFiber = placeSingleChild(returnFiber); - currentDebugInfo = prevDebugInfo; - return returnFiber; - case REACT_PORTAL_TYPE: - a: { - prevDebugInfo = newChild; - for(newChild = prevDebugInfo.key; null !== currentFirstChild;){ - if (currentFirstChild.key === newChild) if (4 === currentFirstChild.tag && currentFirstChild.stateNode.containerInfo === prevDebugInfo.containerInfo && currentFirstChild.stateNode.implementation === prevDebugInfo.implementation) { - deleteRemainingChildren(returnFiber, currentFirstChild.sibling); - lanes = useFiber(currentFirstChild, prevDebugInfo.children || []); - lanes.return = returnFiber; - returnFiber = lanes; - break a; - } else { - deleteRemainingChildren(returnFiber, currentFirstChild); - break; - } - else deleteChild(returnFiber, currentFirstChild); - currentFirstChild = currentFirstChild.sibling; - } - lanes = createFiberFromPortal(prevDebugInfo, returnFiber.mode, lanes); - lanes.return = returnFiber; - returnFiber = lanes; - } - return placeSingleChild(returnFiber); - case REACT_LAZY_TYPE: - return prevDebugInfo = pushDebugInfo(newChild._debugInfo), newChild = resolveLazy(newChild), returnFiber = reconcileChildFibersImpl(returnFiber, currentFirstChild, newChild, lanes), currentDebugInfo = prevDebugInfo, returnFiber; - } - if (isArrayImpl(newChild)) return prevDebugInfo = pushDebugInfo(newChild._debugInfo), returnFiber = reconcileChildrenArray(returnFiber, currentFirstChild, newChild, lanes), currentDebugInfo = prevDebugInfo, returnFiber; - if (getIteratorFn(newChild)) { - prevDebugInfo = pushDebugInfo(newChild._debugInfo); - key = getIteratorFn(newChild); - if ("function" !== typeof key) throw Error("An object is not an iterable. This error is likely caused by a bug in React. Please file an issue."); - var newChildren = key.call(newChild); - if (newChildren === newChild) { - if (0 !== returnFiber.tag || "[object GeneratorFunction]" !== Object.prototype.toString.call(returnFiber.type) || "[object Generator]" !== Object.prototype.toString.call(newChildren)) didWarnAboutGenerators || console.error("Using Iterators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. You can also use an Iterable that can iterate multiple times over the same items."), didWarnAboutGenerators = !0; - } else newChild.entries !== key || didWarnAboutMaps || (console.error("Using Maps as children is not supported. Use an array of keyed ReactElements instead."), didWarnAboutMaps = !0); - returnFiber = reconcileChildrenIterator(returnFiber, currentFirstChild, newChildren, lanes); - currentDebugInfo = prevDebugInfo; - return returnFiber; - } - if ("function" === typeof newChild.then) return prevDebugInfo = pushDebugInfo(newChild._debugInfo), returnFiber = reconcileChildFibersImpl(returnFiber, currentFirstChild, unwrapThenable(newChild), lanes), currentDebugInfo = prevDebugInfo, returnFiber; - if (newChild.$$typeof === REACT_CONTEXT_TYPE) return reconcileChildFibersImpl(returnFiber, currentFirstChild, readContextDuringReconciliation(returnFiber, newChild), lanes); - throwOnInvalidObjectType(returnFiber, newChild); - } - if ("string" === typeof newChild && "" !== newChild || "number" === typeof newChild || "bigint" === typeof newChild) return prevDebugInfo = "" + newChild, null !== currentFirstChild && 6 === currentFirstChild.tag ? (deleteRemainingChildren(returnFiber, currentFirstChild.sibling), lanes = useFiber(currentFirstChild, prevDebugInfo), lanes.return = returnFiber, returnFiber = lanes) : (deleteRemainingChildren(returnFiber, currentFirstChild), lanes = createFiberFromText(prevDebugInfo, returnFiber.mode, lanes), lanes.return = returnFiber, lanes._debugOwner = returnFiber, lanes._debugTask = returnFiber._debugTask, lanes._debugInfo = currentDebugInfo, returnFiber = lanes), placeSingleChild(returnFiber); - "function" === typeof newChild && warnOnFunctionType(returnFiber, newChild); - "symbol" === typeof newChild && warnOnSymbolType(returnFiber, newChild); - return deleteRemainingChildren(returnFiber, currentFirstChild); - } - return function(returnFiber, currentFirstChild, newChild, lanes) { - var prevDebugInfo = currentDebugInfo; - currentDebugInfo = null; - try { - thenableIndexCounter$1 = 0; - var firstChildFiber = reconcileChildFibersImpl(returnFiber, currentFirstChild, newChild, lanes); - thenableState$1 = null; - return firstChildFiber; - } catch (x) { - if (x === SuspenseException || x === SuspenseActionException) throw x; - var fiber = createFiber(29, x, null, returnFiber.mode); - fiber.lanes = lanes; - fiber.return = returnFiber; - var debugInfo = fiber._debugInfo = currentDebugInfo; - fiber._debugOwner = returnFiber._debugOwner; - fiber._debugTask = returnFiber._debugTask; - if (null != debugInfo) { - for(var i = debugInfo.length - 1; 0 <= i; i--)if ("string" === typeof debugInfo[i].stack) { - fiber._debugOwner = debugInfo[i]; - fiber._debugTask = debugInfo[i].debugTask; - break; - } - } - return fiber; - } finally{ - currentDebugInfo = prevDebugInfo; - } - }; - } - function validateSuspenseListNestedChild(childSlot, index) { - var isAnArray = isArrayImpl(childSlot); - childSlot = !isAnArray && "function" === typeof getIteratorFn(childSlot); - return isAnArray || childSlot ? (isAnArray = isAnArray ? "array" : "iterable", console.error("A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>", isAnArray, index, isAnArray), !1) : !0; - } - function initializeUpdateQueue(fiber) { - fiber.updateQueue = { - baseState: fiber.memoizedState, - firstBaseUpdate: null, - lastBaseUpdate: null, - shared: { - pending: null, - lanes: 0, - hiddenCallbacks: null - }, - callbacks: null - }; - } - function cloneUpdateQueue(current, workInProgress) { - current = current.updateQueue; - workInProgress.updateQueue === current && (workInProgress.updateQueue = { - baseState: current.baseState, - firstBaseUpdate: current.firstBaseUpdate, - lastBaseUpdate: current.lastBaseUpdate, - shared: current.shared, - callbacks: null - }); - } - function createUpdate(lane) { - return { - lane: lane, - tag: UpdateState, - payload: null, - callback: null, - next: null - }; - } - function enqueueUpdate(fiber, update, lane) { - var updateQueue = fiber.updateQueue; - if (null === updateQueue) return null; - updateQueue = updateQueue.shared; - if (currentlyProcessingQueue === updateQueue && !didWarnUpdateInsideUpdate) { - var componentName = getComponentNameFromFiber(fiber); - console.error("An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.\n\nPlease update the following component: %s", componentName); - didWarnUpdateInsideUpdate = !0; - } - if ((executionContext & RenderContext) !== NoContext) return componentName = updateQueue.pending, null === componentName ? update.next = update : (update.next = componentName.next, componentName.next = update), updateQueue.pending = update, update = getRootForUpdatedFiber(fiber), markUpdateLaneFromFiberToRoot(fiber, null, lane), update; - enqueueUpdate$1(fiber, updateQueue, update, lane); - return getRootForUpdatedFiber(fiber); - } - function entangleTransitions(root, fiber, lane) { - fiber = fiber.updateQueue; - if (null !== fiber && (fiber = fiber.shared, 0 !== (lane & 4194048))) { - var queueLanes = fiber.lanes; - queueLanes &= root.pendingLanes; - lane |= queueLanes; - fiber.lanes = lane; - markRootEntangled(root, lane); - } - } - function enqueueCapturedUpdate(workInProgress, capturedUpdate) { - var queue = workInProgress.updateQueue, current = workInProgress.alternate; - if (null !== current && (current = current.updateQueue, queue === current)) { - var newFirst = null, newLast = null; - queue = queue.firstBaseUpdate; - if (null !== queue) { - do { - var clone = { - lane: queue.lane, - tag: queue.tag, - payload: queue.payload, - callback: null, - next: null - }; - null === newLast ? newFirst = newLast = clone : newLast = newLast.next = clone; - queue = queue.next; - }while (null !== queue) - null === newLast ? newFirst = newLast = capturedUpdate : newLast = newLast.next = capturedUpdate; - } else newFirst = newLast = capturedUpdate; - queue = { - baseState: current.baseState, - firstBaseUpdate: newFirst, - lastBaseUpdate: newLast, - shared: current.shared, - callbacks: current.callbacks - }; - workInProgress.updateQueue = queue; - return; - } - workInProgress = queue.lastBaseUpdate; - null === workInProgress ? queue.firstBaseUpdate = capturedUpdate : workInProgress.next = capturedUpdate; - queue.lastBaseUpdate = capturedUpdate; - } - function suspendIfUpdateReadFromEntangledAsyncAction() { - if (didReadFromEntangledAsyncAction) { - var entangledActionThenable = currentEntangledActionThenable; - if (null !== entangledActionThenable) throw entangledActionThenable; - } - } - function processUpdateQueue(workInProgress, props, instance$jscomp$0, renderLanes) { - didReadFromEntangledAsyncAction = !1; - var queue = workInProgress.updateQueue; - hasForceUpdate = !1; - currentlyProcessingQueue = queue.shared; - var firstBaseUpdate = queue.firstBaseUpdate, lastBaseUpdate = queue.lastBaseUpdate, pendingQueue = queue.shared.pending; - if (null !== pendingQueue) { - queue.shared.pending = null; - var lastPendingUpdate = pendingQueue, firstPendingUpdate = lastPendingUpdate.next; - lastPendingUpdate.next = null; - null === lastBaseUpdate ? firstBaseUpdate = firstPendingUpdate : lastBaseUpdate.next = firstPendingUpdate; - lastBaseUpdate = lastPendingUpdate; - var current = workInProgress.alternate; - null !== current && (current = current.updateQueue, pendingQueue = current.lastBaseUpdate, pendingQueue !== lastBaseUpdate && (null === pendingQueue ? current.firstBaseUpdate = firstPendingUpdate : pendingQueue.next = firstPendingUpdate, current.lastBaseUpdate = lastPendingUpdate)); - } - if (null !== firstBaseUpdate) { - var newState = queue.baseState; - lastBaseUpdate = 0; - current = firstPendingUpdate = lastPendingUpdate = null; - pendingQueue = firstBaseUpdate; - do { - var updateLane = pendingQueue.lane & -536870913, isHiddenUpdate = updateLane !== pendingQueue.lane; - if (isHiddenUpdate ? (workInProgressRootRenderLanes & updateLane) === updateLane : (renderLanes & updateLane) === updateLane) { - 0 !== updateLane && updateLane === currentEntangledLane && (didReadFromEntangledAsyncAction = !0); - null !== current && (current = current.next = { - lane: 0, - tag: pendingQueue.tag, - payload: pendingQueue.payload, - callback: null, - next: null - }); - a: { - updateLane = workInProgress; - var partialState = pendingQueue; - var nextProps = props, instance = instance$jscomp$0; - switch(partialState.tag){ - case ReplaceState: - partialState = partialState.payload; - if ("function" === typeof partialState) { - isDisallowedContextReadInDEV = !0; - var nextState = partialState.call(instance, newState, nextProps); - if (updateLane.mode & StrictLegacyMode) { - setIsStrictModeForDevtools(!0); - try { - partialState.call(instance, newState, nextProps); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - isDisallowedContextReadInDEV = !1; - newState = nextState; - break a; - } - newState = partialState; - break a; - case CaptureUpdate: - updateLane.flags = updateLane.flags & -65537 | 128; - case UpdateState: - nextState = partialState.payload; - if ("function" === typeof nextState) { - isDisallowedContextReadInDEV = !0; - partialState = nextState.call(instance, newState, nextProps); - if (updateLane.mode & StrictLegacyMode) { - setIsStrictModeForDevtools(!0); - try { - nextState.call(instance, newState, nextProps); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - isDisallowedContextReadInDEV = !1; - } else partialState = nextState; - if (null === partialState || void 0 === partialState) break a; - newState = assign({}, newState, partialState); - break a; - case ForceUpdate: - hasForceUpdate = !0; - } - } - updateLane = pendingQueue.callback; - null !== updateLane && (workInProgress.flags |= 64, isHiddenUpdate && (workInProgress.flags |= 8192), isHiddenUpdate = queue.callbacks, null === isHiddenUpdate ? queue.callbacks = [ - updateLane - ] : isHiddenUpdate.push(updateLane)); - } else isHiddenUpdate = { - lane: updateLane, - tag: pendingQueue.tag, - payload: pendingQueue.payload, - callback: pendingQueue.callback, - next: null - }, null === current ? (firstPendingUpdate = current = isHiddenUpdate, lastPendingUpdate = newState) : current = current.next = isHiddenUpdate, lastBaseUpdate |= updateLane; - pendingQueue = pendingQueue.next; - if (null === pendingQueue) if (pendingQueue = queue.shared.pending, null === pendingQueue) break; - else isHiddenUpdate = pendingQueue, pendingQueue = isHiddenUpdate.next, isHiddenUpdate.next = null, queue.lastBaseUpdate = isHiddenUpdate, queue.shared.pending = null; - }while (1) - null === current && (lastPendingUpdate = newState); - queue.baseState = lastPendingUpdate; - queue.firstBaseUpdate = firstPendingUpdate; - queue.lastBaseUpdate = current; - null === firstBaseUpdate && (queue.shared.lanes = 0); - workInProgressRootSkippedLanes |= lastBaseUpdate; - workInProgress.lanes = lastBaseUpdate; - workInProgress.memoizedState = newState; - } - currentlyProcessingQueue = null; - } - function callCallback(callback, context) { - if ("function" !== typeof callback) throw Error("Invalid argument passed as callback. Expected a function. Instead received: " + callback); - callback.call(context); - } - function commitHiddenCallbacks(updateQueue, context) { - var hiddenCallbacks = updateQueue.shared.hiddenCallbacks; - if (null !== hiddenCallbacks) for(updateQueue.shared.hiddenCallbacks = null, updateQueue = 0; updateQueue < hiddenCallbacks.length; updateQueue++)callCallback(hiddenCallbacks[updateQueue], context); - } - function commitCallbacks(updateQueue, context) { - var callbacks = updateQueue.callbacks; - if (null !== callbacks) for(updateQueue.callbacks = null, updateQueue = 0; updateQueue < callbacks.length; updateQueue++)callCallback(callbacks[updateQueue], context); - } - function pushHiddenContext(fiber, context) { - var prevEntangledRenderLanes = entangledRenderLanes; - push(prevEntangledRenderLanesCursor, prevEntangledRenderLanes, fiber); - push(currentTreeHiddenStackCursor, context, fiber); - entangledRenderLanes = prevEntangledRenderLanes | context.baseLanes; - } - function reuseHiddenContextOnStack(fiber) { - push(prevEntangledRenderLanesCursor, entangledRenderLanes, fiber); - push(currentTreeHiddenStackCursor, currentTreeHiddenStackCursor.current, fiber); - } - function popHiddenContext(fiber) { - entangledRenderLanes = prevEntangledRenderLanesCursor.current; - pop(currentTreeHiddenStackCursor, fiber); - pop(prevEntangledRenderLanesCursor, fiber); - } - function pushPrimaryTreeSuspenseHandler(handler) { - var current = handler.alternate; - push(suspenseStackCursor, suspenseStackCursor.current & SubtreeSuspenseContextMask, handler); - push(suspenseHandlerStackCursor, handler, handler); - null === shellBoundary && (null === current || null !== currentTreeHiddenStackCursor.current ? shellBoundary = handler : null !== current.memoizedState && (shellBoundary = handler)); - } - function pushDehydratedActivitySuspenseHandler(fiber) { - push(suspenseStackCursor, suspenseStackCursor.current, fiber); - push(suspenseHandlerStackCursor, fiber, fiber); - null === shellBoundary && (shellBoundary = fiber); - } - function pushOffscreenSuspenseHandler(fiber) { - 22 === fiber.tag ? (push(suspenseStackCursor, suspenseStackCursor.current, fiber), push(suspenseHandlerStackCursor, fiber, fiber), null === shellBoundary && (shellBoundary = fiber)) : reuseSuspenseHandlerOnStack(fiber); - } - function reuseSuspenseHandlerOnStack(fiber) { - push(suspenseStackCursor, suspenseStackCursor.current, fiber); - push(suspenseHandlerStackCursor, suspenseHandlerStackCursor.current, fiber); - } - function popSuspenseHandler(fiber) { - pop(suspenseHandlerStackCursor, fiber); - shellBoundary === fiber && (shellBoundary = null); - pop(suspenseStackCursor, fiber); - } - function pushSuspenseListContext(fiber, newContext) { - push(suspenseHandlerStackCursor, suspenseHandlerStackCursor.current, fiber); - push(suspenseStackCursor, newContext, fiber); - } - function popSuspenseListContext(fiber) { - pop(suspenseStackCursor, fiber); - pop(suspenseHandlerStackCursor, fiber); - shellBoundary === fiber && (shellBoundary = null); - } - function findFirstSuspended(row) { - for(var node = row; null !== node;){ - if (13 === node.tag) { - var state = node.memoizedState; - if (null !== state && (state = state.dehydrated, null === state || isSuspenseInstancePending(state) || isSuspenseInstanceFallback(state))) return node; - } else if (19 === node.tag && "independent" !== node.memoizedProps.revealOrder) { - if (0 !== (node.flags & 128)) return node; - } else if (null !== node.child) { - node.child.return = node; - node = node.child; - continue; - } - if (node === row) break; - for(; null === node.sibling;){ - if (null === node.return || node.return === row) return null; - node = node.return; - } - node.sibling.return = node.return; - node = node.sibling; - } - return null; - } - function mountHookTypesDev() { - var hookName = currentHookNameInDev; - null === hookTypesDev ? hookTypesDev = [ - hookName - ] : hookTypesDev.push(hookName); - } - function updateHookTypesDev() { - var hookName = currentHookNameInDev; - if (null !== hookTypesDev && (hookTypesUpdateIndexDev++, hookTypesDev[hookTypesUpdateIndexDev] !== hookName)) { - var componentName = getComponentNameFromFiber(currentlyRenderingFiber); - if (!didWarnAboutMismatchedHooksForComponent.has(componentName) && (didWarnAboutMismatchedHooksForComponent.add(componentName), null !== hookTypesDev)) { - for(var table = "", i = 0; i <= hookTypesUpdateIndexDev; i++){ - var oldHookName = hookTypesDev[i], newHookName = i === hookTypesUpdateIndexDev ? hookName : oldHookName; - for(oldHookName = i + 1 + ". " + oldHookName; 30 > oldHookName.length;)oldHookName += " "; - oldHookName += newHookName + "\n"; - table += oldHookName; - } - console.error("React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://react.dev/link/rules-of-hooks\n\n Previous render Next render\n ------------------------------------------------------\n%s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", componentName, table); - } - } - } - function checkDepsAreArrayDev(deps) { - void 0 === deps || null === deps || isArrayImpl(deps) || console.error("%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.", currentHookNameInDev, typeof deps); - } - function warnOnUseFormStateInDev() { - var componentName = getComponentNameFromFiber(currentlyRenderingFiber); - didWarnAboutUseFormState.has(componentName) || (didWarnAboutUseFormState.add(componentName), console.error("ReactDOM.useFormState has been renamed to React.useActionState. Please update %s to use React.useActionState.", componentName)); - } - function throwInvalidHookError() { - throw Error("Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."); - } - function areHookInputsEqual(nextDeps, prevDeps) { - if (ignorePreviousDependencies) return !1; - if (null === prevDeps) return console.error("%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.", currentHookNameInDev), !1; - nextDeps.length !== prevDeps.length && console.error("The final argument passed to %s changed size between renders. The order and size of this array must remain constant.\n\nPrevious: %s\nIncoming: %s", currentHookNameInDev, "[" + prevDeps.join(", ") + "]", "[" + nextDeps.join(", ") + "]"); - for(var i = 0; i < prevDeps.length && i < nextDeps.length; i++)if (!objectIs(nextDeps[i], prevDeps[i])) return !1; - return !0; - } - function renderWithHooks(current, workInProgress, Component, props, secondArg, nextRenderLanes) { - renderLanes = nextRenderLanes; - currentlyRenderingFiber = workInProgress; - hookTypesDev = null !== current ? current._debugHookTypes : null; - hookTypesUpdateIndexDev = -1; - ignorePreviousDependencies = null !== current && current.type !== workInProgress.type; - if ("[object AsyncFunction]" === Object.prototype.toString.call(Component) || "[object AsyncGeneratorFunction]" === Object.prototype.toString.call(Component)) nextRenderLanes = getComponentNameFromFiber(currentlyRenderingFiber), didWarnAboutAsyncClientComponent.has(nextRenderLanes) || (didWarnAboutAsyncClientComponent.add(nextRenderLanes), console.error("%s is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.", null === nextRenderLanes ? "An unknown Component" : "<" + nextRenderLanes + ">")); - workInProgress.memoizedState = null; - workInProgress.updateQueue = null; - workInProgress.lanes = 0; - ReactSharedInternals.H = null !== current && null !== current.memoizedState ? HooksDispatcherOnUpdateInDEV : null !== hookTypesDev ? HooksDispatcherOnMountWithHookTypesInDEV : HooksDispatcherOnMountInDEV; - shouldDoubleInvokeUserFnsInHooksDEV = nextRenderLanes = (workInProgress.mode & StrictLegacyMode) !== NoMode; - var children = callComponentInDEV(Component, props, secondArg); - shouldDoubleInvokeUserFnsInHooksDEV = !1; - didScheduleRenderPhaseUpdateDuringThisPass && (children = renderWithHooksAgain(workInProgress, Component, props, secondArg)); - if (nextRenderLanes) { - setIsStrictModeForDevtools(!0); - try { - children = renderWithHooksAgain(workInProgress, Component, props, secondArg); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - finishRenderingHooks(current, workInProgress); - return children; - } - function finishRenderingHooks(current, workInProgress) { - workInProgress._debugHookTypes = hookTypesDev; - null === workInProgress.dependencies ? null !== thenableState && (workInProgress.dependencies = { - lanes: 0, - firstContext: null, - _debugThenableState: thenableState - }) : workInProgress.dependencies._debugThenableState = thenableState; - ReactSharedInternals.H = ContextOnlyDispatcher; - var didRenderTooFewHooks = null !== currentHook && null !== currentHook.next; - renderLanes = 0; - hookTypesDev = currentHookNameInDev = workInProgressHook = currentHook = currentlyRenderingFiber = null; - hookTypesUpdateIndexDev = -1; - null !== current && (current.flags & 132120576) !== (workInProgress.flags & 132120576) && console.error("Internal React error: Expected static flag was missing. Please notify the React team."); - didScheduleRenderPhaseUpdate = !1; - thenableIndexCounter = 0; - thenableState = null; - if (didRenderTooFewHooks) throw Error("Rendered fewer hooks than expected. This may be caused by an accidental early return statement."); - null === current || didReceiveUpdate || (current = current.dependencies, null !== current && checkIfContextChanged(current) && (didReceiveUpdate = !0)); - needsToResetSuspendedThenableDEV ? (needsToResetSuspendedThenableDEV = !1, current = !0) : current = !1; - current && (workInProgress = getComponentNameFromFiber(workInProgress) || "Unknown", didWarnAboutUseWrappedInTryCatch.has(workInProgress) || didWarnAboutAsyncClientComponent.has(workInProgress) || (didWarnAboutUseWrappedInTryCatch.add(workInProgress), console.error("`use` was called from inside a try/catch block. This is not allowed and can lead to unexpected behavior. To handle errors triggered by `use`, wrap your component in a error boundary."))); - } - function renderWithHooksAgain(workInProgress, Component, props, secondArg) { - currentlyRenderingFiber = workInProgress; - var numberOfReRenders = 0; - do { - didScheduleRenderPhaseUpdateDuringThisPass && (thenableState = null); - thenableIndexCounter = 0; - didScheduleRenderPhaseUpdateDuringThisPass = !1; - if (numberOfReRenders >= RE_RENDER_LIMIT) throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop."); - numberOfReRenders += 1; - ignorePreviousDependencies = !1; - workInProgressHook = currentHook = null; - if (null != workInProgress.updateQueue) { - var children = workInProgress.updateQueue; - children.lastEffect = null; - children.events = null; - children.stores = null; - null != children.memoCache && (children.memoCache.index = 0); - } - hookTypesUpdateIndexDev = -1; - ReactSharedInternals.H = HooksDispatcherOnRerenderInDEV; - children = callComponentInDEV(Component, props, secondArg); - }while (didScheduleRenderPhaseUpdateDuringThisPass) - return children; - } - function TransitionAwareHostComponent() { - var dispatcher = ReactSharedInternals.H, maybeThenable = dispatcher.useState()[0]; - maybeThenable = "function" === typeof maybeThenable.then ? useThenable(maybeThenable) : maybeThenable; - dispatcher = dispatcher.useState()[0]; - (null !== currentHook ? currentHook.memoizedState : null) !== dispatcher && (currentlyRenderingFiber.flags |= 1024); - return maybeThenable; - } - function checkDidRenderIdHook() { - var didRenderIdHook = 0 !== localIdCounter; - localIdCounter = 0; - return didRenderIdHook; - } - function bailoutHooks(current, workInProgress, lanes) { - workInProgress.updateQueue = current.updateQueue; - workInProgress.flags = (workInProgress.mode & StrictEffectsMode) !== NoMode ? workInProgress.flags & -805308421 : workInProgress.flags & -2053; - current.lanes &= ~lanes; - } - function resetHooksOnUnwind(workInProgress) { - if (didScheduleRenderPhaseUpdate) { - for(workInProgress = workInProgress.memoizedState; null !== workInProgress;){ - var queue = workInProgress.queue; - null !== queue && (queue.pending = null); - workInProgress = workInProgress.next; - } - didScheduleRenderPhaseUpdate = !1; - } - renderLanes = 0; - hookTypesDev = workInProgressHook = currentHook = currentlyRenderingFiber = null; - hookTypesUpdateIndexDev = -1; - currentHookNameInDev = null; - didScheduleRenderPhaseUpdateDuringThisPass = !1; - thenableIndexCounter = localIdCounter = 0; - thenableState = null; - } - function mountWorkInProgressHook() { - var hook = { - memoizedState: null, - baseState: null, - baseQueue: null, - queue: null, - next: null - }; - null === workInProgressHook ? currentlyRenderingFiber.memoizedState = workInProgressHook = hook : workInProgressHook = workInProgressHook.next = hook; - return workInProgressHook; - } - function updateWorkInProgressHook() { - if (null === currentHook) { - var nextCurrentHook = currentlyRenderingFiber.alternate; - nextCurrentHook = null !== nextCurrentHook ? nextCurrentHook.memoizedState : null; - } else nextCurrentHook = currentHook.next; - var nextWorkInProgressHook = null === workInProgressHook ? currentlyRenderingFiber.memoizedState : workInProgressHook.next; - if (null !== nextWorkInProgressHook) workInProgressHook = nextWorkInProgressHook, currentHook = nextCurrentHook; - else { - if (null === nextCurrentHook) { - if (null === currentlyRenderingFiber.alternate) throw Error("Update hook called on initial render. This is likely a bug in React. Please file an issue."); - throw Error("Rendered more hooks than during the previous render."); - } - currentHook = nextCurrentHook; - nextCurrentHook = { - memoizedState: currentHook.memoizedState, - baseState: currentHook.baseState, - baseQueue: currentHook.baseQueue, - queue: currentHook.queue, - next: null - }; - null === workInProgressHook ? currentlyRenderingFiber.memoizedState = workInProgressHook = nextCurrentHook : workInProgressHook = workInProgressHook.next = nextCurrentHook; - } - return workInProgressHook; - } - function createFunctionComponentUpdateQueue() { - return { - lastEffect: null, - events: null, - stores: null, - memoCache: null - }; - } - function useThenable(thenable) { - var index = thenableIndexCounter; - thenableIndexCounter += 1; - null === thenableState && (thenableState = createThenableState()); - thenable = trackUsedThenable(thenableState, thenable, index); - index = currentlyRenderingFiber; - null === (null === workInProgressHook ? index.memoizedState : workInProgressHook.next) && (index = index.alternate, ReactSharedInternals.H = null !== index && null !== index.memoizedState ? HooksDispatcherOnUpdateInDEV : HooksDispatcherOnMountInDEV); - return thenable; - } - function use(usable) { - if (null !== usable && "object" === typeof usable) { - if ("function" === typeof usable.then) return useThenable(usable); - if (usable.$$typeof === REACT_CONTEXT_TYPE) return readContext(usable); - } - throw Error("An unsupported type was passed to use(): " + String(usable)); - } - function useMemoCache(size) { - var memoCache = null, updateQueue = currentlyRenderingFiber.updateQueue; - null !== updateQueue && (memoCache = updateQueue.memoCache); - if (null == memoCache) { - var current = currentlyRenderingFiber.alternate; - null !== current && (current = current.updateQueue, null !== current && (current = current.memoCache, null != current && (memoCache = { - data: current.data.map(function(array) { - return array.slice(); - }), - index: 0 - }))); - } - null == memoCache && (memoCache = { - data: [], - index: 0 - }); - null === updateQueue && (updateQueue = createFunctionComponentUpdateQueue(), currentlyRenderingFiber.updateQueue = updateQueue); - updateQueue.memoCache = memoCache; - updateQueue = memoCache.data[memoCache.index]; - if (void 0 === updateQueue || ignorePreviousDependencies) for(updateQueue = memoCache.data[memoCache.index] = Array(size), current = 0; current < size; current++)updateQueue[current] = REACT_MEMO_CACHE_SENTINEL; - else updateQueue.length !== size && console.error("Expected a constant size argument for each invocation of useMemoCache. The previous cache was allocated with size %s but size %s was requested.", updateQueue.length, size); - memoCache.index++; - return updateQueue; - } - function basicStateReducer(state, action) { - return "function" === typeof action ? action(state) : action; - } - function mountReducer(reducer, initialArg, init) { - var hook = mountWorkInProgressHook(); - if (void 0 !== init) { - var initialState = init(initialArg); - if (shouldDoubleInvokeUserFnsInHooksDEV) { - setIsStrictModeForDevtools(!0); - try { - init(initialArg); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - } else initialState = initialArg; - hook.memoizedState = hook.baseState = initialState; - reducer = { - pending: null, - lanes: 0, - dispatch: null, - lastRenderedReducer: reducer, - lastRenderedState: initialState - }; - hook.queue = reducer; - reducer = reducer.dispatch = dispatchReducerAction.bind(null, currentlyRenderingFiber, reducer); - return [ - hook.memoizedState, - reducer - ]; - } - function updateReducer(reducer) { - var hook = updateWorkInProgressHook(); - return updateReducerImpl(hook, currentHook, reducer); - } - function updateReducerImpl(hook, current, reducer) { - var queue = hook.queue; - if (null === queue) throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)"); - queue.lastRenderedReducer = reducer; - var baseQueue = hook.baseQueue, pendingQueue = queue.pending; - if (null !== pendingQueue) { - if (null !== baseQueue) { - var baseFirst = baseQueue.next; - baseQueue.next = pendingQueue.next; - pendingQueue.next = baseFirst; - } - current.baseQueue !== baseQueue && console.error("Internal error: Expected work-in-progress queue to be a clone. This is a bug in React."); - current.baseQueue = baseQueue = pendingQueue; - queue.pending = null; - } - pendingQueue = hook.baseState; - if (null === baseQueue) hook.memoizedState = pendingQueue; - else { - current = baseQueue.next; - var newBaseQueueFirst = baseFirst = null, newBaseQueueLast = null, update = current, didReadFromEntangledAsyncAction = !1; - do { - var updateLane = update.lane & -536870913; - if (updateLane !== update.lane ? (workInProgressRootRenderLanes & updateLane) === updateLane : (renderLanes & updateLane) === updateLane) { - var revertLane = update.revertLane; - if (0 === revertLane) null !== newBaseQueueLast && (newBaseQueueLast = newBaseQueueLast.next = { - lane: 0, - revertLane: 0, - gesture: null, - action: update.action, - hasEagerState: update.hasEagerState, - eagerState: update.eagerState, - next: null - }), updateLane === currentEntangledLane && (didReadFromEntangledAsyncAction = !0); - else if ((renderLanes & revertLane) === revertLane) { - update = update.next; - revertLane === currentEntangledLane && (didReadFromEntangledAsyncAction = !0); - continue; - } else updateLane = { - lane: 0, - revertLane: update.revertLane, - gesture: null, - action: update.action, - hasEagerState: update.hasEagerState, - eagerState: update.eagerState, - next: null - }, null === newBaseQueueLast ? (newBaseQueueFirst = newBaseQueueLast = updateLane, baseFirst = pendingQueue) : newBaseQueueLast = newBaseQueueLast.next = updateLane, currentlyRenderingFiber.lanes |= revertLane, workInProgressRootSkippedLanes |= revertLane; - updateLane = update.action; - shouldDoubleInvokeUserFnsInHooksDEV && reducer(pendingQueue, updateLane); - pendingQueue = update.hasEagerState ? update.eagerState : reducer(pendingQueue, updateLane); - } else revertLane = { - lane: updateLane, - revertLane: update.revertLane, - gesture: update.gesture, - action: update.action, - hasEagerState: update.hasEagerState, - eagerState: update.eagerState, - next: null - }, null === newBaseQueueLast ? (newBaseQueueFirst = newBaseQueueLast = revertLane, baseFirst = pendingQueue) : newBaseQueueLast = newBaseQueueLast.next = revertLane, currentlyRenderingFiber.lanes |= updateLane, workInProgressRootSkippedLanes |= updateLane; - update = update.next; - }while (null !== update && update !== current) - null === newBaseQueueLast ? baseFirst = pendingQueue : newBaseQueueLast.next = newBaseQueueFirst; - if (!objectIs(pendingQueue, hook.memoizedState) && (didReceiveUpdate = !0, didReadFromEntangledAsyncAction && (reducer = currentEntangledActionThenable, null !== reducer))) throw reducer; - hook.memoizedState = pendingQueue; - hook.baseState = baseFirst; - hook.baseQueue = newBaseQueueLast; - queue.lastRenderedState = pendingQueue; - } - null === baseQueue && (queue.lanes = 0); - return [ - hook.memoizedState, - queue.dispatch - ]; - } - function rerenderReducer(reducer) { - var hook = updateWorkInProgressHook(), queue = hook.queue; - if (null === queue) throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)"); - queue.lastRenderedReducer = reducer; - var dispatch = queue.dispatch, lastRenderPhaseUpdate = queue.pending, newState = hook.memoizedState; - if (null !== lastRenderPhaseUpdate) { - queue.pending = null; - var update = lastRenderPhaseUpdate = lastRenderPhaseUpdate.next; - do newState = reducer(newState, update.action), update = update.next; - while (update !== lastRenderPhaseUpdate) - objectIs(newState, hook.memoizedState) || (didReceiveUpdate = !0); - hook.memoizedState = newState; - null === hook.baseQueue && (hook.baseState = newState); - queue.lastRenderedState = newState; - } - return [ - newState, - dispatch - ]; - } - function mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { - var fiber = currentlyRenderingFiber, hook = mountWorkInProgressHook(); - if (isHydrating) { - if (void 0 === getServerSnapshot) throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering."); - var nextSnapshot = getServerSnapshot(); - didWarnUncachedGetSnapshot || nextSnapshot === getServerSnapshot() || (console.error("The result of getServerSnapshot should be cached to avoid an infinite loop"), didWarnUncachedGetSnapshot = !0); - } else { - nextSnapshot = getSnapshot(); - didWarnUncachedGetSnapshot || (getServerSnapshot = getSnapshot(), objectIs(nextSnapshot, getServerSnapshot) || (console.error("The result of getSnapshot should be cached to avoid an infinite loop"), didWarnUncachedGetSnapshot = !0)); - if (null === workInProgressRoot) throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue."); - 0 !== (workInProgressRootRenderLanes & 127) || pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot); - } - hook.memoizedState = nextSnapshot; - getServerSnapshot = { - value: nextSnapshot, - getSnapshot: getSnapshot - }; - hook.queue = getServerSnapshot; - mountEffect(subscribeToStore.bind(null, fiber, getServerSnapshot, subscribe), [ - subscribe - ]); - fiber.flags |= 2048; - pushSimpleEffect(HasEffect | Passive, { - destroy: void 0 - }, updateStoreInstance.bind(null, fiber, getServerSnapshot, nextSnapshot, getSnapshot), null); - return nextSnapshot; - } - function updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) { - var fiber = currentlyRenderingFiber, hook = updateWorkInProgressHook(), isHydrating$jscomp$0 = isHydrating; - if (isHydrating$jscomp$0) { - if (void 0 === getServerSnapshot) throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering."); - getServerSnapshot = getServerSnapshot(); - } else if (getServerSnapshot = getSnapshot(), !didWarnUncachedGetSnapshot) { - var cachedSnapshot = getSnapshot(); - objectIs(getServerSnapshot, cachedSnapshot) || (console.error("The result of getSnapshot should be cached to avoid an infinite loop"), didWarnUncachedGetSnapshot = !0); - } - if (cachedSnapshot = !objectIs((currentHook || hook).memoizedState, getServerSnapshot)) hook.memoizedState = getServerSnapshot, didReceiveUpdate = !0; - hook = hook.queue; - var create = subscribeToStore.bind(null, fiber, hook, subscribe); - updateEffectImpl(2048, Passive, create, [ - subscribe - ]); - if (hook.getSnapshot !== getSnapshot || cachedSnapshot || null !== workInProgressHook && workInProgressHook.memoizedState.tag & HasEffect) { - fiber.flags |= 2048; - pushSimpleEffect(HasEffect | Passive, { - destroy: void 0 - }, updateStoreInstance.bind(null, fiber, hook, getServerSnapshot, getSnapshot), null); - if (null === workInProgressRoot) throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue."); - isHydrating$jscomp$0 || 0 !== (renderLanes & 127) || pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot); - } - return getServerSnapshot; - } - function pushStoreConsistencyCheck(fiber, getSnapshot, renderedSnapshot) { - fiber.flags |= 16384; - fiber = { - getSnapshot: getSnapshot, - value: renderedSnapshot - }; - getSnapshot = currentlyRenderingFiber.updateQueue; - null === getSnapshot ? (getSnapshot = createFunctionComponentUpdateQueue(), currentlyRenderingFiber.updateQueue = getSnapshot, getSnapshot.stores = [ - fiber - ]) : (renderedSnapshot = getSnapshot.stores, null === renderedSnapshot ? getSnapshot.stores = [ - fiber - ] : renderedSnapshot.push(fiber)); - } - function updateStoreInstance(fiber, inst, nextSnapshot, getSnapshot) { - inst.value = nextSnapshot; - inst.getSnapshot = getSnapshot; - checkIfSnapshotChanged(inst) && forceStoreRerender(fiber); - } - function subscribeToStore(fiber, inst, subscribe) { - return subscribe(function() { - checkIfSnapshotChanged(inst) && (startUpdateTimerByLane(2, "updateSyncExternalStore()", fiber), forceStoreRerender(fiber)); - }); - } - function checkIfSnapshotChanged(inst) { - var latestGetSnapshot = inst.getSnapshot; - inst = inst.value; - try { - var nextValue = latestGetSnapshot(); - return !objectIs(inst, nextValue); - } catch (error) { - return !0; - } - } - function forceStoreRerender(fiber) { - var root = enqueueConcurrentRenderForLane(fiber, 2); - null !== root && scheduleUpdateOnFiber(root, fiber, 2); - } - function mountStateImpl(initialState) { - var hook = mountWorkInProgressHook(); - if ("function" === typeof initialState) { - var initialStateInitializer = initialState; - initialState = initialStateInitializer(); - if (shouldDoubleInvokeUserFnsInHooksDEV) { - setIsStrictModeForDevtools(!0); - try { - initialStateInitializer(); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - } - hook.memoizedState = hook.baseState = initialState; - hook.queue = { - pending: null, - lanes: 0, - dispatch: null, - lastRenderedReducer: basicStateReducer, - lastRenderedState: initialState - }; - return hook; - } - function mountState(initialState) { - initialState = mountStateImpl(initialState); - var queue = initialState.queue, dispatch = dispatchSetState.bind(null, currentlyRenderingFiber, queue); - queue.dispatch = dispatch; - return [ - initialState.memoizedState, - dispatch - ]; - } - function mountOptimistic(passthrough) { - var hook = mountWorkInProgressHook(); - hook.memoizedState = hook.baseState = passthrough; - var queue = { - pending: null, - lanes: 0, - dispatch: null, - lastRenderedReducer: null, - lastRenderedState: null - }; - hook.queue = queue; - hook = dispatchOptimisticSetState.bind(null, currentlyRenderingFiber, !0, queue); - queue.dispatch = hook; - return [ - passthrough, - hook - ]; - } - function updateOptimistic(passthrough, reducer) { - var hook = updateWorkInProgressHook(); - return updateOptimisticImpl(hook, currentHook, passthrough, reducer); - } - function updateOptimisticImpl(hook, current, passthrough, reducer) { - hook.baseState = passthrough; - return updateReducerImpl(hook, currentHook, "function" === typeof reducer ? reducer : basicStateReducer); - } - function rerenderOptimistic(passthrough, reducer) { - var hook = updateWorkInProgressHook(); - if (null !== currentHook) return updateOptimisticImpl(hook, currentHook, passthrough, reducer); - hook.baseState = passthrough; - return [ - passthrough, - hook.queue.dispatch - ]; - } - function dispatchActionState(fiber, actionQueue, setPendingState, setState, payload) { - if (isRenderPhaseUpdate(fiber)) throw Error("Cannot update form state while rendering."); - fiber = actionQueue.action; - if (null !== fiber) { - var actionNode = { - payload: payload, - action: fiber, - next: null, - isTransition: !0, - status: "pending", - value: null, - reason: null, - listeners: [], - then: function(listener) { - actionNode.listeners.push(listener); - } - }; - null !== ReactSharedInternals.T ? setPendingState(!0) : actionNode.isTransition = !1; - setState(actionNode); - setPendingState = actionQueue.pending; - null === setPendingState ? (actionNode.next = actionQueue.pending = actionNode, runActionStateAction(actionQueue, actionNode)) : (actionNode.next = setPendingState.next, actionQueue.pending = setPendingState.next = actionNode); - } - } - function runActionStateAction(actionQueue, node) { - var action = node.action, payload = node.payload, prevState = actionQueue.state; - if (node.isTransition) { - var prevTransition = ReactSharedInternals.T, currentTransition = {}; - currentTransition.types = null !== prevTransition ? prevTransition.types : null; - currentTransition._updatedFibers = new Set(); - ReactSharedInternals.T = currentTransition; - try { - var returnValue = action(prevState, payload), onStartTransitionFinish = ReactSharedInternals.S; - null !== onStartTransitionFinish && onStartTransitionFinish(currentTransition, returnValue); - handleActionReturnValue(actionQueue, node, returnValue); - } catch (error) { - onActionError(actionQueue, node, error); - } finally{ - null !== prevTransition && null !== currentTransition.types && (null !== prevTransition.types && prevTransition.types !== currentTransition.types && console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."), prevTransition.types = currentTransition.types), ReactSharedInternals.T = prevTransition, null === prevTransition && currentTransition._updatedFibers && (actionQueue = currentTransition._updatedFibers.size, currentTransition._updatedFibers.clear(), 10 < actionQueue && console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.")); - } - } else try { - currentTransition = action(prevState, payload), handleActionReturnValue(actionQueue, node, currentTransition); - } catch (error$4) { - onActionError(actionQueue, node, error$4); - } - } - function handleActionReturnValue(actionQueue, node, returnValue) { - null !== returnValue && "object" === typeof returnValue && "function" === typeof returnValue.then ? (ReactSharedInternals.asyncTransitions++, returnValue.then(releaseAsyncTransition, releaseAsyncTransition), returnValue.then(function(nextState) { - onActionSuccess(actionQueue, node, nextState); - }, function(error) { - return onActionError(actionQueue, node, error); - }), node.isTransition || console.error("An async function with useActionState was called outside of a transition. This is likely not what you intended (for example, isPending will not update correctly). Either call the returned function inside startTransition, or pass it to an `action` or `formAction` prop.")) : onActionSuccess(actionQueue, node, returnValue); - } - function onActionSuccess(actionQueue, actionNode, nextState) { - actionNode.status = "fulfilled"; - actionNode.value = nextState; - notifyActionListeners(actionNode); - actionQueue.state = nextState; - actionNode = actionQueue.pending; - null !== actionNode && (nextState = actionNode.next, nextState === actionNode ? actionQueue.pending = null : (nextState = nextState.next, actionNode.next = nextState, runActionStateAction(actionQueue, nextState))); - } - function onActionError(actionQueue, actionNode, error) { - var last = actionQueue.pending; - actionQueue.pending = null; - if (null !== last) { - last = last.next; - do actionNode.status = "rejected", actionNode.reason = error, notifyActionListeners(actionNode), actionNode = actionNode.next; - while (actionNode !== last) - } - actionQueue.action = null; - } - function notifyActionListeners(actionNode) { - actionNode = actionNode.listeners; - for(var i = 0; i < actionNode.length; i++)(0, actionNode[i])(); - } - function actionStateReducer(oldState, newState) { - return newState; - } - function mountActionState(action, initialStateProp) { - if (isHydrating) { - var ssrFormState = workInProgressRoot.formState; - if (null !== ssrFormState) { - a: { - var isMatching = currentlyRenderingFiber; - if (isHydrating) { - if (nextHydratableInstance) { - b: { - var markerInstance = nextHydratableInstance; - for(var inRootOrSingleton = rootOrSingletonContext; 8 !== markerInstance.nodeType;){ - if (!inRootOrSingleton) { - markerInstance = null; - break b; - } - markerInstance = getNextHydratable(markerInstance.nextSibling); - if (null === markerInstance) { - markerInstance = null; - break b; - } - } - inRootOrSingleton = markerInstance.data; - markerInstance = inRootOrSingleton === FORM_STATE_IS_MATCHING || inRootOrSingleton === FORM_STATE_IS_NOT_MATCHING ? markerInstance : null; - } - if (markerInstance) { - nextHydratableInstance = getNextHydratable(markerInstance.nextSibling); - isMatching = markerInstance.data === FORM_STATE_IS_MATCHING; - break a; - } - } - throwOnHydrationMismatch(isMatching); - } - isMatching = !1; - } - isMatching && (initialStateProp = ssrFormState[0]); - } - } - ssrFormState = mountWorkInProgressHook(); - ssrFormState.memoizedState = ssrFormState.baseState = initialStateProp; - isMatching = { - pending: null, - lanes: 0, - dispatch: null, - lastRenderedReducer: actionStateReducer, - lastRenderedState: initialStateProp - }; - ssrFormState.queue = isMatching; - ssrFormState = dispatchSetState.bind(null, currentlyRenderingFiber, isMatching); - isMatching.dispatch = ssrFormState; - isMatching = mountStateImpl(!1); - inRootOrSingleton = dispatchOptimisticSetState.bind(null, currentlyRenderingFiber, !1, isMatching.queue); - isMatching = mountWorkInProgressHook(); - markerInstance = { - state: initialStateProp, - dispatch: null, - action: action, - pending: null - }; - isMatching.queue = markerInstance; - ssrFormState = dispatchActionState.bind(null, currentlyRenderingFiber, markerInstance, inRootOrSingleton, ssrFormState); - markerInstance.dispatch = ssrFormState; - isMatching.memoizedState = action; - return [ - initialStateProp, - ssrFormState, - !1 - ]; - } - function updateActionState(action) { - var stateHook = updateWorkInProgressHook(); - return updateActionStateImpl(stateHook, currentHook, action); - } - function updateActionStateImpl(stateHook, currentStateHook, action) { - currentStateHook = updateReducerImpl(stateHook, currentStateHook, actionStateReducer)[0]; - stateHook = updateReducer(basicStateReducer)[0]; - if ("object" === typeof currentStateHook && null !== currentStateHook && "function" === typeof currentStateHook.then) try { - var state = useThenable(currentStateHook); - } catch (x) { - if (x === SuspenseException) throw SuspenseActionException; - throw x; - } - else state = currentStateHook; - currentStateHook = updateWorkInProgressHook(); - var actionQueue = currentStateHook.queue, dispatch = actionQueue.dispatch; - action !== currentStateHook.memoizedState && (currentlyRenderingFiber.flags |= 2048, pushSimpleEffect(HasEffect | Passive, { - destroy: void 0 - }, actionStateActionEffect.bind(null, actionQueue, action), null)); - return [ - state, - dispatch, - stateHook - ]; - } - function actionStateActionEffect(actionQueue, action) { - actionQueue.action = action; - } - function rerenderActionState(action) { - var stateHook = updateWorkInProgressHook(), currentStateHook = currentHook; - if (null !== currentStateHook) return updateActionStateImpl(stateHook, currentStateHook, action); - updateWorkInProgressHook(); - stateHook = stateHook.memoizedState; - currentStateHook = updateWorkInProgressHook(); - var dispatch = currentStateHook.queue.dispatch; - currentStateHook.memoizedState = action; - return [ - stateHook, - dispatch, - !1 - ]; - } - function pushSimpleEffect(tag, inst, create, deps) { - tag = { - tag: tag, - create: create, - deps: deps, - inst: inst, - next: null - }; - inst = currentlyRenderingFiber.updateQueue; - null === inst && (inst = createFunctionComponentUpdateQueue(), currentlyRenderingFiber.updateQueue = inst); - create = inst.lastEffect; - null === create ? inst.lastEffect = tag.next = tag : (deps = create.next, create.next = tag, tag.next = deps, inst.lastEffect = tag); - return tag; - } - function mountRef(initialValue) { - var hook = mountWorkInProgressHook(); - initialValue = { - current: initialValue - }; - return hook.memoizedState = initialValue; - } - function mountEffectImpl(fiberFlags, hookFlags, create, deps) { - var hook = mountWorkInProgressHook(); - currentlyRenderingFiber.flags |= fiberFlags; - hook.memoizedState = pushSimpleEffect(HasEffect | hookFlags, { - destroy: void 0 - }, create, void 0 === deps ? null : deps); - } - function updateEffectImpl(fiberFlags, hookFlags, create, deps) { - var hook = updateWorkInProgressHook(); - deps = void 0 === deps ? null : deps; - var inst = hook.memoizedState.inst; - null !== currentHook && null !== deps && areHookInputsEqual(deps, currentHook.memoizedState.deps) ? hook.memoizedState = pushSimpleEffect(hookFlags, inst, create, deps) : (currentlyRenderingFiber.flags |= fiberFlags, hook.memoizedState = pushSimpleEffect(HasEffect | hookFlags, inst, create, deps)); - } - function mountEffect(create, deps) { - (currentlyRenderingFiber.mode & StrictEffectsMode) !== NoMode ? mountEffectImpl(545261568, Passive, create, deps) : mountEffectImpl(8390656, Passive, create, deps); - } - function useEffectEventImpl(payload) { - currentlyRenderingFiber.flags |= 4; - var componentUpdateQueue = currentlyRenderingFiber.updateQueue; - if (null === componentUpdateQueue) componentUpdateQueue = createFunctionComponentUpdateQueue(), currentlyRenderingFiber.updateQueue = componentUpdateQueue, componentUpdateQueue.events = [ - payload - ]; - else { - var events = componentUpdateQueue.events; - null === events ? componentUpdateQueue.events = [ - payload - ] : events.push(payload); - } - } - function mountEvent(callback) { - var hook = mountWorkInProgressHook(), ref = { - impl: callback - }; - hook.memoizedState = ref; - return function() { - if ((executionContext & RenderContext) !== NoContext) throw Error("A function wrapped in useEffectEvent can't be called during rendering."); - return ref.impl.apply(void 0, arguments); - }; - } - function updateEvent(callback) { - var ref = updateWorkInProgressHook().memoizedState; - useEffectEventImpl({ - ref: ref, - nextImpl: callback - }); - return function() { - if ((executionContext & RenderContext) !== NoContext) throw Error("A function wrapped in useEffectEvent can't be called during rendering."); - return ref.impl.apply(void 0, arguments); - }; - } - function mountLayoutEffect(create, deps) { - var fiberFlags = 4194308; - (currentlyRenderingFiber.mode & StrictEffectsMode) !== NoMode && (fiberFlags |= 268435456); - return mountEffectImpl(fiberFlags, Layout, create, deps); - } - function imperativeHandleEffect(create, ref) { - if ("function" === typeof ref) { - create = create(); - var refCleanup = ref(create); - return function() { - "function" === typeof refCleanup ? refCleanup() : ref(null); - }; - } - if (null !== ref && void 0 !== ref) return ref.hasOwnProperty("current") || console.error("Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.", "an object with keys {" + Object.keys(ref).join(", ") + "}"), create = create(), ref.current = create, function() { - ref.current = null; - }; - } - function mountImperativeHandle(ref, create, deps) { - "function" !== typeof create && console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.", null !== create ? typeof create : "null"); - deps = null !== deps && void 0 !== deps ? deps.concat([ - ref - ]) : null; - var fiberFlags = 4194308; - (currentlyRenderingFiber.mode & StrictEffectsMode) !== NoMode && (fiberFlags |= 268435456); - mountEffectImpl(fiberFlags, Layout, imperativeHandleEffect.bind(null, create, ref), deps); - } - function updateImperativeHandle(ref, create, deps) { - "function" !== typeof create && console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.", null !== create ? typeof create : "null"); - deps = null !== deps && void 0 !== deps ? deps.concat([ - ref - ]) : null; - updateEffectImpl(4, Layout, imperativeHandleEffect.bind(null, create, ref), deps); - } - function mountCallback(callback, deps) { - mountWorkInProgressHook().memoizedState = [ - callback, - void 0 === deps ? null : deps - ]; - return callback; - } - function updateCallback(callback, deps) { - var hook = updateWorkInProgressHook(); - deps = void 0 === deps ? null : deps; - var prevState = hook.memoizedState; - if (null !== deps && areHookInputsEqual(deps, prevState[1])) return prevState[0]; - hook.memoizedState = [ - callback, - deps - ]; - return callback; - } - function mountMemo(nextCreate, deps) { - var hook = mountWorkInProgressHook(); - deps = void 0 === deps ? null : deps; - var nextValue = nextCreate(); - if (shouldDoubleInvokeUserFnsInHooksDEV) { - setIsStrictModeForDevtools(!0); - try { - nextCreate(); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - hook.memoizedState = [ - nextValue, - deps - ]; - return nextValue; - } - function updateMemo(nextCreate, deps) { - var hook = updateWorkInProgressHook(); - deps = void 0 === deps ? null : deps; - var prevState = hook.memoizedState; - if (null !== deps && areHookInputsEqual(deps, prevState[1])) return prevState[0]; - prevState = nextCreate(); - if (shouldDoubleInvokeUserFnsInHooksDEV) { - setIsStrictModeForDevtools(!0); - try { - nextCreate(); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - hook.memoizedState = [ - prevState, - deps - ]; - return prevState; - } - function mountDeferredValue(value, initialValue) { - var hook = mountWorkInProgressHook(); - return mountDeferredValueImpl(hook, value, initialValue); - } - function updateDeferredValue(value, initialValue) { - var hook = updateWorkInProgressHook(); - return updateDeferredValueImpl(hook, currentHook.memoizedState, value, initialValue); - } - function rerenderDeferredValue(value, initialValue) { - var hook = updateWorkInProgressHook(); - return null === currentHook ? mountDeferredValueImpl(hook, value, initialValue) : updateDeferredValueImpl(hook, currentHook.memoizedState, value, initialValue); - } - function mountDeferredValueImpl(hook, value, initialValue) { - if (void 0 === initialValue || 0 !== (renderLanes & 1073741824) && 0 === (workInProgressRootRenderLanes & 261930)) return hook.memoizedState = value; - hook.memoizedState = initialValue; - hook = requestDeferredLane(); - currentlyRenderingFiber.lanes |= hook; - workInProgressRootSkippedLanes |= hook; - return initialValue; - } - function updateDeferredValueImpl(hook, prevValue, value, initialValue) { - if (objectIs(value, prevValue)) return value; - if (null !== currentTreeHiddenStackCursor.current) return hook = mountDeferredValueImpl(hook, value, initialValue), objectIs(hook, prevValue) || (didReceiveUpdate = !0), hook; - if (0 === (renderLanes & 42) || 0 !== (renderLanes & 1073741824) && 0 === (workInProgressRootRenderLanes & 261930)) return didReceiveUpdate = !0, hook.memoizedState = value; - hook = requestDeferredLane(); - currentlyRenderingFiber.lanes |= hook; - workInProgressRootSkippedLanes |= hook; - return prevValue; - } - function releaseAsyncTransition() { - ReactSharedInternals.asyncTransitions--; - } - function startTransition(fiber, queue, pendingState, finishedState, callback) { - var previousPriority = ReactDOMSharedInternals.p; - ReactDOMSharedInternals.p = 0 !== previousPriority && previousPriority < ContinuousEventPriority ? previousPriority : ContinuousEventPriority; - var prevTransition = ReactSharedInternals.T, currentTransition = {}; - currentTransition.types = null !== prevTransition ? prevTransition.types : null; - currentTransition._updatedFibers = new Set(); - ReactSharedInternals.T = currentTransition; - dispatchOptimisticSetState(fiber, !1, queue, pendingState); - try { - var returnValue = callback(), onStartTransitionFinish = ReactSharedInternals.S; - null !== onStartTransitionFinish && onStartTransitionFinish(currentTransition, returnValue); - if (null !== returnValue && "object" === typeof returnValue && "function" === typeof returnValue.then) { - ReactSharedInternals.asyncTransitions++; - returnValue.then(releaseAsyncTransition, releaseAsyncTransition); - var thenableForFinishedState = chainThenableValue(returnValue, finishedState); - dispatchSetStateInternal(fiber, queue, thenableForFinishedState, requestUpdateLane(fiber)); - } else dispatchSetStateInternal(fiber, queue, finishedState, requestUpdateLane(fiber)); - } catch (error) { - dispatchSetStateInternal(fiber, queue, { - then: function() {}, - status: "rejected", - reason: error - }, requestUpdateLane(fiber)); - } finally{ - ReactDOMSharedInternals.p = previousPriority, null !== prevTransition && null !== currentTransition.types && (null !== prevTransition.types && prevTransition.types !== currentTransition.types && console.error("We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."), prevTransition.types = currentTransition.types), ReactSharedInternals.T = prevTransition, null === prevTransition && currentTransition._updatedFibers && (fiber = currentTransition._updatedFibers.size, currentTransition._updatedFibers.clear(), 10 < fiber && console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.")); - } - } - function startHostTransition(formFiber, pendingState, action, formData) { - if (5 !== formFiber.tag) throw Error("Expected the form instance to be a HostComponent. This is a bug in React."); - var queue = ensureFormComponentIsStateful(formFiber).queue; - startHostActionTimer(formFiber); - startTransition(formFiber, queue, pendingState, NotPendingTransition, null === action ? noop : function() { - requestFormReset$1(formFiber); - return action(formData); - }); - } - function ensureFormComponentIsStateful(formFiber) { - var existingStateHook = formFiber.memoizedState; - if (null !== existingStateHook) return existingStateHook; - existingStateHook = { - memoizedState: NotPendingTransition, - baseState: NotPendingTransition, - baseQueue: null, - queue: { - pending: null, - lanes: 0, - dispatch: null, - lastRenderedReducer: basicStateReducer, - lastRenderedState: NotPendingTransition - }, - next: null - }; - var initialResetState = {}; - existingStateHook.next = { - memoizedState: initialResetState, - baseState: initialResetState, - baseQueue: null, - queue: { - pending: null, - lanes: 0, - dispatch: null, - lastRenderedReducer: basicStateReducer, - lastRenderedState: initialResetState - }, - next: null - }; - formFiber.memoizedState = existingStateHook; - formFiber = formFiber.alternate; - null !== formFiber && (formFiber.memoizedState = existingStateHook); - return existingStateHook; - } - function requestFormReset$1(formFiber) { - null === ReactSharedInternals.T && console.error("requestFormReset was called outside a transition or action. To fix, move to an action, or wrap with startTransition."); - var stateHook = ensureFormComponentIsStateful(formFiber); - null === stateHook.next && (stateHook = formFiber.alternate.memoizedState); - dispatchSetStateInternal(formFiber, stateHook.next.queue, {}, requestUpdateLane(formFiber)); - } - function mountTransition() { - var stateHook = mountStateImpl(!1); - stateHook = startTransition.bind(null, currentlyRenderingFiber, stateHook.queue, !0, !1); - mountWorkInProgressHook().memoizedState = stateHook; - return [ - !1, - stateHook - ]; - } - function updateTransition() { - var booleanOrThenable = updateReducer(basicStateReducer)[0], start = updateWorkInProgressHook().memoizedState; - return [ - "boolean" === typeof booleanOrThenable ? booleanOrThenable : useThenable(booleanOrThenable), - start - ]; - } - function rerenderTransition() { - var booleanOrThenable = rerenderReducer(basicStateReducer)[0], start = updateWorkInProgressHook().memoizedState; - return [ - "boolean" === typeof booleanOrThenable ? booleanOrThenable : useThenable(booleanOrThenable), - start - ]; - } - function useHostTransitionStatus() { - return readContext(HostTransitionContext); - } - function mountId() { - var hook = mountWorkInProgressHook(), identifierPrefix = workInProgressRoot.identifierPrefix; - if (isHydrating) { - var treeId = treeContextOverflow; - var idWithLeadingBit = treeContextId; - treeId = (idWithLeadingBit & ~(1 << 32 - clz32(idWithLeadingBit) - 1)).toString(32) + treeId; - identifierPrefix = "_" + identifierPrefix + "R_" + treeId; - treeId = localIdCounter++; - 0 < treeId && (identifierPrefix += "H" + treeId.toString(32)); - identifierPrefix += "_"; - } else treeId = globalClientIdCounter++, identifierPrefix = "_" + identifierPrefix + "r_" + treeId.toString(32) + "_"; - return hook.memoizedState = identifierPrefix; - } - function mountRefresh() { - return mountWorkInProgressHook().memoizedState = refreshCache.bind(null, currentlyRenderingFiber); - } - function refreshCache(fiber, seedKey) { - for(var provider = fiber.return; null !== provider;){ - switch(provider.tag){ - case 24: - case 3: - var lane = requestUpdateLane(provider), refreshUpdate = createUpdate(lane), root = enqueueUpdate(provider, refreshUpdate, lane); - null !== root && (startUpdateTimerByLane(lane, "refresh()", fiber), scheduleUpdateOnFiber(root, provider, lane), entangleTransitions(root, provider, lane)); - fiber = createCache(); - null !== seedKey && void 0 !== seedKey && null !== root && console.error("The seed argument is not enabled outside experimental channels."); - refreshUpdate.payload = { - cache: fiber - }; - return; - } - provider = provider.return; - } - } - function dispatchReducerAction(fiber, queue, action) { - var args = arguments; - "function" === typeof args[3] && console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."); - args = requestUpdateLane(fiber); - var update = { - lane: args, - revertLane: 0, - gesture: null, - action: action, - hasEagerState: !1, - eagerState: null, - next: null - }; - isRenderPhaseUpdate(fiber) ? enqueueRenderPhaseUpdate(queue, update) : (update = enqueueConcurrentHookUpdate(fiber, queue, update, args), null !== update && (startUpdateTimerByLane(args, "dispatch()", fiber), scheduleUpdateOnFiber(update, fiber, args), entangleTransitionUpdate(update, queue, args))); - } - function dispatchSetState(fiber, queue, action) { - var args = arguments; - "function" === typeof args[3] && console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."); - args = requestUpdateLane(fiber); - dispatchSetStateInternal(fiber, queue, action, args) && startUpdateTimerByLane(args, "setState()", fiber); - } - function dispatchSetStateInternal(fiber, queue, action, lane) { - var update = { - lane: lane, - revertLane: 0, - gesture: null, - action: action, - hasEagerState: !1, - eagerState: null, - next: null - }; - if (isRenderPhaseUpdate(fiber)) enqueueRenderPhaseUpdate(queue, update); - else { - var alternate = fiber.alternate; - if (0 === fiber.lanes && (null === alternate || 0 === alternate.lanes) && (alternate = queue.lastRenderedReducer, null !== alternate)) { - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - var currentState = queue.lastRenderedState, eagerState = alternate(currentState, action); - update.hasEagerState = !0; - update.eagerState = eagerState; - if (objectIs(eagerState, currentState)) return enqueueUpdate$1(fiber, queue, update, 0), null === workInProgressRoot && finishQueueingConcurrentUpdates(), !1; - } catch (error) {} finally{ - ReactSharedInternals.H = prevDispatcher; - } - } - action = enqueueConcurrentHookUpdate(fiber, queue, update, lane); - if (null !== action) return scheduleUpdateOnFiber(action, fiber, lane), entangleTransitionUpdate(action, queue, lane), !0; - } - return !1; - } - function dispatchOptimisticSetState(fiber, throwIfDuringRender, queue, action) { - null === ReactSharedInternals.T && 0 === currentEntangledLane && console.error("An optimistic state update occurred outside a transition or action. To fix, move the update to an action, or wrap with startTransition."); - action = { - lane: 2, - revertLane: requestTransitionLane(), - gesture: null, - action: action, - hasEagerState: !1, - eagerState: null, - next: null - }; - if (isRenderPhaseUpdate(fiber)) { - if (throwIfDuringRender) throw Error("Cannot update optimistic state while rendering."); - console.error("Cannot call startTransition while rendering."); - } else throwIfDuringRender = enqueueConcurrentHookUpdate(fiber, queue, action, 2), null !== throwIfDuringRender && (startUpdateTimerByLane(2, "setOptimistic()", fiber), scheduleUpdateOnFiber(throwIfDuringRender, fiber, 2)); - } - function isRenderPhaseUpdate(fiber) { - var alternate = fiber.alternate; - return fiber === currentlyRenderingFiber || null !== alternate && alternate === currentlyRenderingFiber; - } - function enqueueRenderPhaseUpdate(queue, update) { - didScheduleRenderPhaseUpdateDuringThisPass = didScheduleRenderPhaseUpdate = !0; - var pending = queue.pending; - null === pending ? update.next = update : (update.next = pending.next, pending.next = update); - queue.pending = update; - } - function entangleTransitionUpdate(root, queue, lane) { - if (0 !== (lane & 4194048)) { - var queueLanes = queue.lanes; - queueLanes &= root.pendingLanes; - lane |= queueLanes; - queue.lanes = lane; - markRootEntangled(root, lane); - } - } - function warnOnInvalidCallback(callback) { - if (null !== callback && "function" !== typeof callback) { - var key = String(callback); - didWarnOnInvalidCallback.has(key) || (didWarnOnInvalidCallback.add(key), console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.", callback)); - } - } - function applyDerivedStateFromProps(workInProgress, ctor, getDerivedStateFromProps, nextProps) { - var prevState = workInProgress.memoizedState, partialState = getDerivedStateFromProps(nextProps, prevState); - if (workInProgress.mode & StrictLegacyMode) { - setIsStrictModeForDevtools(!0); - try { - partialState = getDerivedStateFromProps(nextProps, prevState); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - void 0 === partialState && (ctor = getComponentNameFromType(ctor) || "Component", didWarnAboutUndefinedDerivedState.has(ctor) || (didWarnAboutUndefinedDerivedState.add(ctor), console.error("%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.", ctor))); - prevState = null === partialState || void 0 === partialState ? prevState : assign({}, prevState, partialState); - workInProgress.memoizedState = prevState; - 0 === workInProgress.lanes && (workInProgress.updateQueue.baseState = prevState); - } - function checkShouldComponentUpdate(workInProgress, ctor, oldProps, newProps, oldState, newState, nextContext) { - var instance = workInProgress.stateNode; - if ("function" === typeof instance.shouldComponentUpdate) { - oldProps = instance.shouldComponentUpdate(newProps, newState, nextContext); - if (workInProgress.mode & StrictLegacyMode) { - setIsStrictModeForDevtools(!0); - try { - oldProps = instance.shouldComponentUpdate(newProps, newState, nextContext); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - void 0 === oldProps && console.error("%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.", getComponentNameFromType(ctor) || "Component"); - return oldProps; - } - return ctor.prototype && ctor.prototype.isPureReactComponent ? !shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState) : !0; - } - function callComponentWillReceiveProps(workInProgress, instance, newProps, nextContext) { - var oldState = instance.state; - "function" === typeof instance.componentWillReceiveProps && instance.componentWillReceiveProps(newProps, nextContext); - "function" === typeof instance.UNSAFE_componentWillReceiveProps && instance.UNSAFE_componentWillReceiveProps(newProps, nextContext); - instance.state !== oldState && (workInProgress = getComponentNameFromFiber(workInProgress) || "Component", didWarnAboutStateAssignmentForComponent.has(workInProgress) || (didWarnAboutStateAssignmentForComponent.add(workInProgress), console.error("%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.", workInProgress)), classComponentUpdater.enqueueReplaceState(instance, instance.state, null)); - } - function resolveClassComponentProps(Component, baseProps) { - var newProps = baseProps; - if ("ref" in baseProps) { - newProps = {}; - for(var propName in baseProps)"ref" !== propName && (newProps[propName] = baseProps[propName]); - } - if (Component = Component.defaultProps) { - newProps === baseProps && (newProps = assign({}, newProps)); - for(var _propName in Component)void 0 === newProps[_propName] && (newProps[_propName] = Component[_propName]); - } - return newProps; - } - function defaultOnUncaughtError(error) { - reportGlobalError(error); - console.warn("%s\n\n%s\n", componentName ? "An error occurred in the <" + componentName + "> component." : "An error occurred in one of your React components.", "Consider adding an error boundary to your tree to customize error handling behavior.\nVisit https://react.dev/link/error-boundaries to learn more about error boundaries."); - } - function defaultOnCaughtError(error) { - var componentNameMessage = componentName ? "The above error occurred in the <" + componentName + "> component." : "The above error occurred in one of your React components.", recreateMessage = "React will try to recreate this component tree from scratch using the error boundary you provided, " + ((errorBoundaryName || "Anonymous") + "."); - if ("object" === typeof error && null !== error && "string" === typeof error.environmentName) { - var JSCompiler_inline_result = error.environmentName; - error = [ - "%o\n\n%s\n\n%s\n", - error, - componentNameMessage, - recreateMessage - ].slice(0); - "string" === typeof error[0] ? error.splice(0, 1, badgeFormat + " " + error[0], badgeStyle, pad + JSCompiler_inline_result + pad, resetStyle) : error.splice(0, 0, badgeFormat, badgeStyle, pad + JSCompiler_inline_result + pad, resetStyle); - error.unshift(console); - JSCompiler_inline_result = bind.apply(console.error, error); - JSCompiler_inline_result(); - } else console.error("%o\n\n%s\n\n%s\n", error, componentNameMessage, recreateMessage); - } - function defaultOnRecoverableError(error) { - reportGlobalError(error); - } - function logUncaughtError(root, errorInfo) { - try { - componentName = errorInfo.source ? getComponentNameFromFiber(errorInfo.source) : null; - errorBoundaryName = null; - var error = errorInfo.value; - if (null !== ReactSharedInternals.actQueue) ReactSharedInternals.thrownErrors.push(error); - else { - var onUncaughtError = root.onUncaughtError; - onUncaughtError(error, { - componentStack: errorInfo.stack - }); - } - } catch (e$5) { - setTimeout(function() { - throw e$5; - }); - } - } - function logCaughtError(root, boundary, errorInfo) { - try { - componentName = errorInfo.source ? getComponentNameFromFiber(errorInfo.source) : null; - errorBoundaryName = getComponentNameFromFiber(boundary); - var onCaughtError = root.onCaughtError; - onCaughtError(errorInfo.value, { - componentStack: errorInfo.stack, - errorBoundary: 1 === boundary.tag ? boundary.stateNode : null - }); - } catch (e$6) { - setTimeout(function() { - throw e$6; - }); - } - } - function createRootErrorUpdate(root, errorInfo, lane) { - lane = createUpdate(lane); - lane.tag = CaptureUpdate; - lane.payload = { - element: null - }; - lane.callback = function() { - runWithFiberInDEV(errorInfo.source, logUncaughtError, root, errorInfo); - }; - return lane; - } - function createClassErrorUpdate(lane) { - lane = createUpdate(lane); - lane.tag = CaptureUpdate; - return lane; - } - function initializeClassErrorUpdate(update, root, fiber, errorInfo) { - var getDerivedStateFromError = fiber.type.getDerivedStateFromError; - if ("function" === typeof getDerivedStateFromError) { - var error = errorInfo.value; - update.payload = function() { - return getDerivedStateFromError(error); - }; - update.callback = function() { - markFailedErrorBoundaryForHotReloading(fiber); - runWithFiberInDEV(errorInfo.source, logCaughtError, root, fiber, errorInfo); - }; - } - var inst = fiber.stateNode; - null !== inst && "function" === typeof inst.componentDidCatch && (update.callback = function() { - markFailedErrorBoundaryForHotReloading(fiber); - runWithFiberInDEV(errorInfo.source, logCaughtError, root, fiber, errorInfo); - "function" !== typeof getDerivedStateFromError && (null === legacyErrorBoundariesThatAlreadyFailed ? legacyErrorBoundariesThatAlreadyFailed = new Set([ - this - ]) : legacyErrorBoundariesThatAlreadyFailed.add(this)); - callComponentDidCatchInDEV(this, errorInfo); - "function" === typeof getDerivedStateFromError || 0 === (fiber.lanes & 2) && console.error("%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.", getComponentNameFromFiber(fiber) || "Unknown"); - }); - } - function throwException(root, returnFiber, sourceFiber, value, rootRenderLanes) { - sourceFiber.flags |= 32768; - isDevToolsPresent && restorePendingUpdaters(root, rootRenderLanes); - if (null !== value && "object" === typeof value && "function" === typeof value.then) { - returnFiber = sourceFiber.alternate; - null !== returnFiber && propagateParentContextChanges(returnFiber, sourceFiber, rootRenderLanes, !0); - isHydrating && (didSuspendOrErrorDEV = !0); - sourceFiber = suspenseHandlerStackCursor.current; - if (null !== sourceFiber) { - switch(sourceFiber.tag){ - case 31: - case 13: - case 19: - return null === shellBoundary ? renderDidSuspendDelayIfPossible() : null === sourceFiber.alternate && workInProgressRootExitStatus === RootInProgress && (workInProgressRootExitStatus = RootSuspended), sourceFiber.flags &= -257, sourceFiber.flags |= 65536, sourceFiber.lanes = rootRenderLanes, value === noopSuspenseyCommitThenable ? sourceFiber.flags |= 16384 : (returnFiber = sourceFiber.updateQueue, null === returnFiber ? sourceFiber.updateQueue = new Set([ - value - ]) : returnFiber.add(value), attachPingListener(root, value, rootRenderLanes)), !1; - case 22: - return sourceFiber.flags |= 65536, value === noopSuspenseyCommitThenable ? sourceFiber.flags |= 16384 : (returnFiber = sourceFiber.updateQueue, null === returnFiber ? (returnFiber = { - transitions: null, - markerInstances: null, - retryQueue: new Set([ - value - ]) - }, sourceFiber.updateQueue = returnFiber) : (sourceFiber = returnFiber.retryQueue, null === sourceFiber ? returnFiber.retryQueue = new Set([ - value - ]) : sourceFiber.add(value)), attachPingListener(root, value, rootRenderLanes)), !1; - } - throw Error("Unexpected Suspense handler tag (" + sourceFiber.tag + "). This is a bug in React."); - } - attachPingListener(root, value, rootRenderLanes); - renderDidSuspendDelayIfPossible(); - return !1; - } - if (isHydrating) return didSuspendOrErrorDEV = !0, returnFiber = suspenseHandlerStackCursor.current, null !== returnFiber ? (19 === returnFiber.tag && console.error("SuspenseList should never catch while hydrating. This is a bug in React."), 0 === (returnFiber.flags & 65536) && (returnFiber.flags |= 256), returnFiber.flags |= 65536, returnFiber.lanes = rootRenderLanes, value !== HydrationMismatchException && queueHydrationError(createCapturedValueAtFiber(Error("There was an error while hydrating but React was able to recover by instead client rendering from the nearest Suspense boundary.", { - cause: value - }), sourceFiber))) : (value !== HydrationMismatchException && queueHydrationError(createCapturedValueAtFiber(Error("There was an error while hydrating but React was able to recover by instead client rendering the entire root.", { - cause: value - }), sourceFiber)), root = root.current.alternate, root.flags |= 65536, rootRenderLanes &= -rootRenderLanes, root.lanes |= rootRenderLanes, value = createCapturedValueAtFiber(value, sourceFiber), rootRenderLanes = createRootErrorUpdate(root.stateNode, value, rootRenderLanes), enqueueCapturedUpdate(root, rootRenderLanes), workInProgressRootExitStatus !== RootSuspendedWithDelay && (workInProgressRootExitStatus = RootErrored)), !1; - var error = createCapturedValueAtFiber(Error("There was an error during concurrent rendering but React was able to recover by instead synchronously rendering the entire root.", { - cause: value - }), sourceFiber); - null === workInProgressRootConcurrentErrors ? workInProgressRootConcurrentErrors = [ - error - ] : workInProgressRootConcurrentErrors.push(error); - workInProgressRootExitStatus !== RootSuspendedWithDelay && (workInProgressRootExitStatus = RootErrored); - if (null === returnFiber) return !0; - value = createCapturedValueAtFiber(value, sourceFiber); - sourceFiber = returnFiber; - do { - switch(sourceFiber.tag){ - case 3: - return sourceFiber.flags |= 65536, root = rootRenderLanes & -rootRenderLanes, sourceFiber.lanes |= root, root = createRootErrorUpdate(sourceFiber.stateNode, value, root), enqueueCapturedUpdate(sourceFiber, root), !1; - case 1: - returnFiber = sourceFiber.type; - error = sourceFiber.stateNode; - if (0 === (sourceFiber.flags & 128) && ("function" === typeof returnFiber.getDerivedStateFromError || null !== error && "function" === typeof error.componentDidCatch && (null === legacyErrorBoundariesThatAlreadyFailed || !legacyErrorBoundariesThatAlreadyFailed.has(error)))) return sourceFiber.flags |= 65536, rootRenderLanes &= -rootRenderLanes, sourceFiber.lanes |= rootRenderLanes, rootRenderLanes = createClassErrorUpdate(rootRenderLanes), initializeClassErrorUpdate(rootRenderLanes, root, sourceFiber, value), enqueueCapturedUpdate(sourceFiber, rootRenderLanes), !1; - break; - case 22: - if (null !== sourceFiber.memoizedState) return sourceFiber.flags |= 65536, !1; - } - sourceFiber = sourceFiber.return; - }while (null !== sourceFiber) - return !1; - } - function reconcileChildren(current, workInProgress, nextChildren, renderLanes) { - workInProgress.child = null === current ? mountChildFibers(workInProgress, null, nextChildren, renderLanes) : reconcileChildFibers(workInProgress, current.child, nextChildren, renderLanes); - } - function updateForwardRef(current, workInProgress, Component, nextProps, renderLanes) { - Component = Component.render; - var ref = workInProgress.ref; - if ("ref" in nextProps) { - var propsWithoutRef = {}; - for(var key in nextProps)"ref" !== key && (propsWithoutRef[key] = nextProps[key]); - } else propsWithoutRef = nextProps; - prepareToReadContext(workInProgress); - nextProps = renderWithHooks(current, workInProgress, Component, propsWithoutRef, ref, renderLanes); - key = checkDidRenderIdHook(); - if (null !== current && !didReceiveUpdate) return bailoutHooks(current, workInProgress, renderLanes), bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - isHydrating && key && pushMaterializedTreeId(workInProgress); - workInProgress.flags |= 1; - reconcileChildren(current, workInProgress, nextProps, renderLanes); - return workInProgress.child; - } - function updateMemoComponent(current, workInProgress, Component, nextProps, renderLanes) { - if (null === current) { - var type = Component.type; - if ("function" === typeof type && !shouldConstruct(type) && void 0 === type.defaultProps && null === Component.compare) return Component = resolveFunctionForHotReloading(type), workInProgress.tag = 15, workInProgress.type = Component, validateFunctionComponentInDev(workInProgress, type), updateSimpleMemoComponent(current, workInProgress, Component, nextProps, renderLanes); - current = createFiberFromTypeAndProps(Component.type, null, nextProps, workInProgress, workInProgress.mode, renderLanes); - current.ref = workInProgress.ref; - current.return = workInProgress; - return workInProgress.child = current; - } - type = current.child; - if (!checkScheduledUpdateOrContext(current, renderLanes)) { - var prevProps = type.memoizedProps; - Component = Component.compare; - Component = null !== Component ? Component : shallowEqual; - if (Component(prevProps, nextProps) && current.ref === workInProgress.ref) return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - } - workInProgress.flags |= 1; - current = createWorkInProgress(type, nextProps); - current.ref = workInProgress.ref; - current.return = workInProgress; - return workInProgress.child = current; - } - function updateSimpleMemoComponent(current, workInProgress, Component, nextProps, renderLanes) { - if (null !== current) { - var prevProps = current.memoizedProps; - if (shallowEqual(prevProps, nextProps) && current.ref === workInProgress.ref && workInProgress.type === current.type) if (didReceiveUpdate = !1, workInProgress.pendingProps = nextProps = prevProps, checkScheduledUpdateOrContext(current, renderLanes)) 0 !== (current.flags & 131072) && (didReceiveUpdate = !0); - else return workInProgress.lanes = current.lanes, bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - } - return updateFunctionComponent(current, workInProgress, Component, nextProps, renderLanes); - } - function updateOffscreenComponent(current, workInProgress, renderLanes, nextProps) { - var nextChildren = nextProps.children, prevState = null !== current ? current.memoizedState : null; - null === current && null === workInProgress.stateNode && (workInProgress.stateNode = { - _visibility: OffscreenVisible, - _pendingMarkers: null, - _retryCache: null, - _transitions: null - }); - if ("hidden" === nextProps.mode) { - if (0 !== (workInProgress.flags & 128)) { - prevState = null !== prevState ? prevState.baseLanes | renderLanes : renderLanes; - if (null !== current) { - nextProps = workInProgress.child = current.child; - for(nextChildren = 0; null !== nextProps;)nextChildren = nextChildren | nextProps.lanes | nextProps.childLanes, nextProps = nextProps.sibling; - nextProps = nextChildren & ~prevState; - } else nextProps = 0, workInProgress.child = null; - return deferHiddenOffscreenComponent(current, workInProgress, prevState, renderLanes, nextProps); - } - if (0 !== (renderLanes & 536870912)) workInProgress.memoizedState = { - baseLanes: 0, - cachePool: null - }, null !== current && pushTransition(workInProgress, null !== prevState ? prevState.cachePool : null), null !== prevState ? pushHiddenContext(workInProgress, prevState) : reuseHiddenContextOnStack(workInProgress), pushOffscreenSuspenseHandler(workInProgress); - else return nextProps = workInProgress.lanes = 536870912, deferHiddenOffscreenComponent(current, workInProgress, null !== prevState ? prevState.baseLanes | renderLanes : renderLanes, renderLanes, nextProps); - } else null !== prevState ? (pushTransition(workInProgress, prevState.cachePool), pushHiddenContext(workInProgress, prevState), reuseSuspenseHandlerOnStack(workInProgress), workInProgress.memoizedState = null) : (null !== current && pushTransition(workInProgress, null), reuseHiddenContextOnStack(workInProgress), reuseSuspenseHandlerOnStack(workInProgress)); - reconcileChildren(current, workInProgress, nextChildren, renderLanes); - return workInProgress.child; - } - function bailoutOffscreenComponent(current, workInProgress) { - null !== current && 22 === current.tag || null !== workInProgress.stateNode || (workInProgress.stateNode = { - _visibility: OffscreenVisible, - _pendingMarkers: null, - _retryCache: null, - _transitions: null - }); - return workInProgress.sibling; - } - function deferHiddenOffscreenComponent(current, workInProgress, nextBaseLanes, renderLanes, remainingChildLanes) { - var JSCompiler_inline_result = peekCacheFromPool(); - JSCompiler_inline_result = null === JSCompiler_inline_result ? null : { - parent: CacheContext._currentValue, - pool: JSCompiler_inline_result - }; - workInProgress.memoizedState = { - baseLanes: nextBaseLanes, - cachePool: JSCompiler_inline_result - }; - null !== current && pushTransition(workInProgress, null); - reuseHiddenContextOnStack(workInProgress); - pushOffscreenSuspenseHandler(workInProgress); - null !== current && propagateParentContextChanges(current, workInProgress, renderLanes, !0); - workInProgress.childLanes = remainingChildLanes; - return null; - } - function mountActivityChildren(workInProgress, nextProps) { - var hiddenProp = nextProps.hidden; - void 0 !== hiddenProp && console.error('<Activity> doesn\'t accept a hidden prop. Use mode="hidden" instead.\n- <Activity %s>\n+ <Activity %s>', !0 === hiddenProp ? "hidden" : !1 === hiddenProp ? "hidden={false}" : "hidden={...}", hiddenProp ? 'mode="hidden"' : 'mode="visible"'); - nextProps = mountWorkInProgressOffscreenFiber({ - mode: nextProps.mode, - children: nextProps.children - }, workInProgress.mode); - nextProps.ref = workInProgress.ref; - workInProgress.child = nextProps; - nextProps.return = workInProgress; - return nextProps; - } - function retryActivityComponentWithoutHydrating(current, workInProgress, renderLanes) { - reconcileChildFibers(workInProgress, current.child, null, renderLanes); - current = mountActivityChildren(workInProgress, workInProgress.pendingProps); - current.flags |= 2; - popSuspenseHandler(workInProgress); - workInProgress.memoizedState = null; - return current; - } - function updateActivityComponent(current, workInProgress, renderLanes) { - var nextProps = workInProgress.pendingProps, didSuspend = 0 !== (workInProgress.flags & 128); - workInProgress.flags &= -129; - if (null === current) { - if (isHydrating) { - if ("hidden" === nextProps.mode) return current = mountActivityChildren(workInProgress, nextProps), workInProgress.lanes = 536870912, bailoutOffscreenComponent(null, current); - pushDehydratedActivitySuspenseHandler(workInProgress); - (current = nextHydratableInstance) ? (renderLanes = canHydrateHydrationBoundary(current, rootOrSingletonContext), renderLanes = null !== renderLanes && renderLanes.data === ACTIVITY_START_DATA ? renderLanes : null, null !== renderLanes && (nextProps = { - dehydrated: renderLanes, - treeContext: getSuspendedTreeContext(), - retryLane: 536870912, - hydrationErrors: null - }, workInProgress.memoizedState = nextProps, nextProps = createFiberFromDehydratedFragment(renderLanes), nextProps.return = workInProgress, workInProgress.child = nextProps, hydrationParentFiber = workInProgress, nextHydratableInstance = null)) : renderLanes = null; - if (null === renderLanes) throw warnNonHydratedInstance(workInProgress, current), throwOnHydrationMismatch(workInProgress); - workInProgress.lanes = 536870912; - return null; - } - return mountActivityChildren(workInProgress, nextProps); - } - var prevState = current.memoizedState; - if (null !== prevState) { - var activityInstance = prevState.dehydrated; - pushDehydratedActivitySuspenseHandler(workInProgress); - if (didSuspend) if (workInProgress.flags & 256) workInProgress.flags &= -257, workInProgress = retryActivityComponentWithoutHydrating(current, workInProgress, renderLanes); - else if (null !== workInProgress.memoizedState) workInProgress.child = current.child, workInProgress.flags |= 128, workInProgress = null; - else throw Error("Client rendering an Activity suspended it again. This is a bug in React."); - else if (warnIfHydrating(), 0 !== (renderLanes & 536870912) && markRenderDerivedCause(workInProgress), didReceiveUpdate || propagateParentContextChanges(current, workInProgress, renderLanes, !1), didSuspend = 0 !== (renderLanes & current.childLanes), didReceiveUpdate || didSuspend) { - nextProps = workInProgressRoot; - if (null !== nextProps && (activityInstance = getBumpedLaneForHydration(nextProps, renderLanes), 0 !== activityInstance && activityInstance !== prevState.retryLane)) throw prevState.retryLane = activityInstance, enqueueConcurrentRenderForLane(current, activityInstance), scheduleUpdateOnFiber(nextProps, current, activityInstance), SelectiveHydrationException; - renderDidSuspendDelayIfPossible(); - workInProgress = retryActivityComponentWithoutHydrating(current, workInProgress, renderLanes); - } else current = prevState.treeContext, nextHydratableInstance = getNextHydratable(activityInstance.nextSibling), hydrationParentFiber = workInProgress, isHydrating = !0, hydrationErrors = null, didSuspendOrErrorDEV = !1, hydrationDiffRootDEV = null, rootOrSingletonContext = !1, null !== current && restoreSuspendedTreeContext(workInProgress, current), workInProgress = mountActivityChildren(workInProgress, nextProps), workInProgress.flags |= 4096; - return workInProgress; - } - prevState = current.child; - nextProps = { - mode: nextProps.mode, - children: nextProps.children - }; - 0 !== (renderLanes & 536870912) && 0 !== (renderLanes & current.lanes) && markRenderDerivedCause(workInProgress); - current = createWorkInProgress(prevState, nextProps); - current.ref = workInProgress.ref; - workInProgress.child = current; - current.return = workInProgress; - return current; - } - function markRef(current, workInProgress) { - var ref = workInProgress.ref; - if (null === ref) null !== current && null !== current.ref && (workInProgress.flags |= 4194816); - else { - if ("function" !== typeof ref && "object" !== typeof ref) throw Error("Expected ref to be a function, an object returned by React.createRef(), or undefined/null."); - if (null === current || current.ref !== ref) workInProgress.flags |= 4194816; - } - } - function updateFunctionComponent(current, workInProgress, Component, nextProps, renderLanes) { - if (Component.prototype && "function" === typeof Component.prototype.render) { - var componentName = getComponentNameFromType(Component) || "Unknown"; - didWarnAboutBadClass[componentName] || (console.error("The <%s /> component appears to have a render method, but doesn't extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.", componentName, componentName), didWarnAboutBadClass[componentName] = !0); - } - workInProgress.mode & StrictLegacyMode && ReactStrictModeWarnings.recordLegacyContextWarning(workInProgress, null); - null === current && (validateFunctionComponentInDev(workInProgress, workInProgress.type), Component.contextTypes && (componentName = getComponentNameFromType(Component) || "Unknown", didWarnAboutContextTypes[componentName] || (didWarnAboutContextTypes[componentName] = !0, console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with React.useContext() instead. (https://react.dev/link/legacy-context)", componentName)))); - prepareToReadContext(workInProgress); - Component = renderWithHooks(current, workInProgress, Component, nextProps, void 0, renderLanes); - nextProps = checkDidRenderIdHook(); - if (null !== current && !didReceiveUpdate) return bailoutHooks(current, workInProgress, renderLanes), bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - isHydrating && nextProps && pushMaterializedTreeId(workInProgress); - workInProgress.flags |= 1; - reconcileChildren(current, workInProgress, Component, renderLanes); - return workInProgress.child; - } - function replayFunctionComponent(current, workInProgress, nextProps, Component, secondArg, renderLanes) { - prepareToReadContext(workInProgress); - hookTypesUpdateIndexDev = -1; - ignorePreviousDependencies = null !== current && current.type !== workInProgress.type; - workInProgress.updateQueue = null; - nextProps = renderWithHooksAgain(workInProgress, Component, nextProps, secondArg); - finishRenderingHooks(current, workInProgress); - Component = checkDidRenderIdHook(); - if (null !== current && !didReceiveUpdate) return bailoutHooks(current, workInProgress, renderLanes), bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - isHydrating && Component && pushMaterializedTreeId(workInProgress); - workInProgress.flags |= 1; - reconcileChildren(current, workInProgress, nextProps, renderLanes); - return workInProgress.child; - } - function updateClassComponent(current, workInProgress, Component, nextProps, renderLanes) { - switch(shouldErrorImpl(workInProgress)){ - case !1: - var _instance = workInProgress.stateNode, state = new workInProgress.type(workInProgress.memoizedProps, _instance.context).state; - _instance.updater.enqueueSetState(_instance, state, null); - break; - case !0: - workInProgress.flags |= 128; - workInProgress.flags |= 65536; - _instance = Error("Simulated error coming from DevTools"); - var lane = renderLanes & -renderLanes; - workInProgress.lanes |= lane; - state = workInProgressRoot; - if (null === state) throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue."); - lane = createClassErrorUpdate(lane); - initializeClassErrorUpdate(lane, state, workInProgress, createCapturedValueAtFiber(_instance, workInProgress)); - enqueueCapturedUpdate(workInProgress, lane); - } - prepareToReadContext(workInProgress); - if (null === workInProgress.stateNode) { - state = emptyContextObject; - _instance = Component.contextType; - "contextType" in Component && null !== _instance && (void 0 === _instance || _instance.$$typeof !== REACT_CONTEXT_TYPE) && !didWarnAboutInvalidateContextType.has(Component) && (didWarnAboutInvalidateContextType.add(Component), lane = void 0 === _instance ? " However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file." : "object" !== typeof _instance ? " However, it is set to a " + typeof _instance + "." : _instance.$$typeof === REACT_CONSUMER_TYPE ? " Did you accidentally pass the Context.Consumer instead?" : " However, it is set to an object with keys {" + Object.keys(_instance).join(", ") + "}.", console.error("%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s", getComponentNameFromType(Component) || "Component", lane)); - "object" === typeof _instance && null !== _instance && (state = readContext(_instance)); - _instance = new Component(nextProps, state); - if (workInProgress.mode & StrictLegacyMode) { - setIsStrictModeForDevtools(!0); - try { - _instance = new Component(nextProps, state); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - state = workInProgress.memoizedState = null !== _instance.state && void 0 !== _instance.state ? _instance.state : null; - _instance.updater = classComponentUpdater; - workInProgress.stateNode = _instance; - _instance._reactInternals = workInProgress; - _instance._reactInternalInstance = fakeInternalInstance; - "function" === typeof Component.getDerivedStateFromProps && null === state && (state = getComponentNameFromType(Component) || "Component", didWarnAboutUninitializedState.has(state) || (didWarnAboutUninitializedState.add(state), console.error("`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.", state, null === _instance.state ? "null" : "undefined", state))); - if ("function" === typeof Component.getDerivedStateFromProps || "function" === typeof _instance.getSnapshotBeforeUpdate) { - var foundWillUpdateName = lane = state = null; - "function" === typeof _instance.componentWillMount && !0 !== _instance.componentWillMount.__suppressDeprecationWarning ? state = "componentWillMount" : "function" === typeof _instance.UNSAFE_componentWillMount && (state = "UNSAFE_componentWillMount"); - "function" === typeof _instance.componentWillReceiveProps && !0 !== _instance.componentWillReceiveProps.__suppressDeprecationWarning ? lane = "componentWillReceiveProps" : "function" === typeof _instance.UNSAFE_componentWillReceiveProps && (lane = "UNSAFE_componentWillReceiveProps"); - "function" === typeof _instance.componentWillUpdate && !0 !== _instance.componentWillUpdate.__suppressDeprecationWarning ? foundWillUpdateName = "componentWillUpdate" : "function" === typeof _instance.UNSAFE_componentWillUpdate && (foundWillUpdateName = "UNSAFE_componentWillUpdate"); - if (null !== state || null !== lane || null !== foundWillUpdateName) { - _instance = getComponentNameFromType(Component) || "Component"; - var newApiName = "function" === typeof Component.getDerivedStateFromProps ? "getDerivedStateFromProps()" : "getSnapshotBeforeUpdate()"; - didWarnAboutLegacyLifecyclesAndDerivedState.has(_instance) || (didWarnAboutLegacyLifecyclesAndDerivedState.add(_instance), console.error("Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n%s uses %s but also contains the following legacy lifecycles:%s%s%s\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://react.dev/link/unsafe-component-lifecycles", _instance, newApiName, null !== state ? "\n " + state : "", null !== lane ? "\n " + lane : "", null !== foundWillUpdateName ? "\n " + foundWillUpdateName : "")); - } - } - _instance = workInProgress.stateNode; - state = getComponentNameFromType(Component) || "Component"; - _instance.render || (Component.prototype && "function" === typeof Component.prototype.render ? console.error("No `render` method found on the %s instance: did you accidentally return an object from the constructor?", state) : console.error("No `render` method found on the %s instance: you may have forgotten to define `render`.", state)); - !_instance.getInitialState || _instance.getInitialState.isReactClassApproved || _instance.state || console.error("getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?", state); - _instance.getDefaultProps && !_instance.getDefaultProps.isReactClassApproved && console.error("getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.", state); - _instance.contextType && console.error("contextType was defined as an instance property on %s. Use a static property to define contextType instead.", state); - Component.childContextTypes && !didWarnAboutChildContextTypes.has(Component) && (didWarnAboutChildContextTypes.add(Component), console.error("%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead. (https://react.dev/link/legacy-context)", state)); - Component.contextTypes && !didWarnAboutContextTypes$1.has(Component) && (didWarnAboutContextTypes$1.add(Component), console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead. (https://react.dev/link/legacy-context)", state)); - "function" === typeof _instance.componentShouldUpdate && console.error("%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.", state); - Component.prototype && Component.prototype.isPureReactComponent && "undefined" !== typeof _instance.shouldComponentUpdate && console.error("%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.", getComponentNameFromType(Component) || "A pure component"); - "function" === typeof _instance.componentDidUnmount && console.error("%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?", state); - "function" === typeof _instance.componentDidReceiveProps && console.error("%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().", state); - "function" === typeof _instance.componentWillRecieveProps && console.error("%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?", state); - "function" === typeof _instance.UNSAFE_componentWillRecieveProps && console.error("%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?", state); - lane = _instance.props !== nextProps; - void 0 !== _instance.props && lane && console.error("When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed.", state); - _instance.defaultProps && console.error("Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.", state, state); - "function" !== typeof _instance.getSnapshotBeforeUpdate || "function" === typeof _instance.componentDidUpdate || didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate.has(Component) || (didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate.add(Component), console.error("%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.", getComponentNameFromType(Component))); - "function" === typeof _instance.getDerivedStateFromProps && console.error("%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.", state); - "function" === typeof _instance.getDerivedStateFromError && console.error("%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.", state); - "function" === typeof Component.getSnapshotBeforeUpdate && console.error("%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.", state); - (lane = _instance.state) && ("object" !== typeof lane || isArrayImpl(lane)) && console.error("%s.state: must be set to an object or null", state); - "function" === typeof _instance.getChildContext && "object" !== typeof Component.childContextTypes && console.error("%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().", state); - _instance = workInProgress.stateNode; - _instance.props = nextProps; - _instance.state = workInProgress.memoizedState; - _instance.refs = {}; - initializeUpdateQueue(workInProgress); - state = Component.contextType; - _instance.context = "object" === typeof state && null !== state ? readContext(state) : emptyContextObject; - _instance.state === nextProps && (state = getComponentNameFromType(Component) || "Component", didWarnAboutDirectlyAssigningPropsToState.has(state) || (didWarnAboutDirectlyAssigningPropsToState.add(state), console.error("%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly.", state))); - workInProgress.mode & StrictLegacyMode && ReactStrictModeWarnings.recordLegacyContextWarning(workInProgress, _instance); - ReactStrictModeWarnings.recordUnsafeLifecycleWarnings(workInProgress, _instance); - _instance.state = workInProgress.memoizedState; - state = Component.getDerivedStateFromProps; - "function" === typeof state && (applyDerivedStateFromProps(workInProgress, Component, state, nextProps), _instance.state = workInProgress.memoizedState); - "function" === typeof Component.getDerivedStateFromProps || "function" === typeof _instance.getSnapshotBeforeUpdate || "function" !== typeof _instance.UNSAFE_componentWillMount && "function" !== typeof _instance.componentWillMount || (state = _instance.state, "function" === typeof _instance.componentWillMount && _instance.componentWillMount(), "function" === typeof _instance.UNSAFE_componentWillMount && _instance.UNSAFE_componentWillMount(), state !== _instance.state && (console.error("%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.", getComponentNameFromFiber(workInProgress) || "Component"), classComponentUpdater.enqueueReplaceState(_instance, _instance.state, null)), processUpdateQueue(workInProgress, nextProps, _instance, renderLanes), suspendIfUpdateReadFromEntangledAsyncAction(), _instance.state = workInProgress.memoizedState); - "function" === typeof _instance.componentDidMount && (workInProgress.flags |= 4194308); - (workInProgress.mode & StrictEffectsMode) !== NoMode && (workInProgress.flags |= 268435456); - _instance = !0; - } else if (null === current) { - _instance = workInProgress.stateNode; - var unresolvedOldProps = workInProgress.memoizedProps; - lane = resolveClassComponentProps(Component, unresolvedOldProps); - _instance.props = lane; - var oldContext = _instance.context; - foundWillUpdateName = Component.contextType; - state = emptyContextObject; - "object" === typeof foundWillUpdateName && null !== foundWillUpdateName && (state = readContext(foundWillUpdateName)); - newApiName = Component.getDerivedStateFromProps; - foundWillUpdateName = "function" === typeof newApiName || "function" === typeof _instance.getSnapshotBeforeUpdate; - unresolvedOldProps = workInProgress.pendingProps !== unresolvedOldProps; - foundWillUpdateName || "function" !== typeof _instance.UNSAFE_componentWillReceiveProps && "function" !== typeof _instance.componentWillReceiveProps || (unresolvedOldProps || oldContext !== state) && callComponentWillReceiveProps(workInProgress, _instance, nextProps, state); - hasForceUpdate = !1; - var oldState = workInProgress.memoizedState; - _instance.state = oldState; - processUpdateQueue(workInProgress, nextProps, _instance, renderLanes); - suspendIfUpdateReadFromEntangledAsyncAction(); - oldContext = workInProgress.memoizedState; - unresolvedOldProps || oldState !== oldContext || hasForceUpdate ? ("function" === typeof newApiName && (applyDerivedStateFromProps(workInProgress, Component, newApiName, nextProps), oldContext = workInProgress.memoizedState), (lane = hasForceUpdate || checkShouldComponentUpdate(workInProgress, Component, lane, nextProps, oldState, oldContext, state)) ? (foundWillUpdateName || "function" !== typeof _instance.UNSAFE_componentWillMount && "function" !== typeof _instance.componentWillMount || ("function" === typeof _instance.componentWillMount && _instance.componentWillMount(), "function" === typeof _instance.UNSAFE_componentWillMount && _instance.UNSAFE_componentWillMount()), "function" === typeof _instance.componentDidMount && (workInProgress.flags |= 4194308), (workInProgress.mode & StrictEffectsMode) !== NoMode && (workInProgress.flags |= 268435456)) : ("function" === typeof _instance.componentDidMount && (workInProgress.flags |= 4194308), (workInProgress.mode & StrictEffectsMode) !== NoMode && (workInProgress.flags |= 268435456), workInProgress.memoizedProps = nextProps, workInProgress.memoizedState = oldContext), _instance.props = nextProps, _instance.state = oldContext, _instance.context = state, _instance = lane) : ("function" === typeof _instance.componentDidMount && (workInProgress.flags |= 4194308), (workInProgress.mode & StrictEffectsMode) !== NoMode && (workInProgress.flags |= 268435456), _instance = !1); - } else { - _instance = workInProgress.stateNode; - cloneUpdateQueue(current, workInProgress); - state = workInProgress.memoizedProps; - foundWillUpdateName = resolveClassComponentProps(Component, state); - _instance.props = foundWillUpdateName; - newApiName = workInProgress.pendingProps; - oldState = _instance.context; - oldContext = Component.contextType; - lane = emptyContextObject; - "object" === typeof oldContext && null !== oldContext && (lane = readContext(oldContext)); - unresolvedOldProps = Component.getDerivedStateFromProps; - (oldContext = "function" === typeof unresolvedOldProps || "function" === typeof _instance.getSnapshotBeforeUpdate) || "function" !== typeof _instance.UNSAFE_componentWillReceiveProps && "function" !== typeof _instance.componentWillReceiveProps || (state !== newApiName || oldState !== lane) && callComponentWillReceiveProps(workInProgress, _instance, nextProps, lane); - hasForceUpdate = !1; - oldState = workInProgress.memoizedState; - _instance.state = oldState; - processUpdateQueue(workInProgress, nextProps, _instance, renderLanes); - suspendIfUpdateReadFromEntangledAsyncAction(); - var newState = workInProgress.memoizedState; - state !== newApiName || oldState !== newState || hasForceUpdate || null !== current && null !== current.dependencies && checkIfContextChanged(current.dependencies) ? ("function" === typeof unresolvedOldProps && (applyDerivedStateFromProps(workInProgress, Component, unresolvedOldProps, nextProps), newState = workInProgress.memoizedState), (foundWillUpdateName = hasForceUpdate || checkShouldComponentUpdate(workInProgress, Component, foundWillUpdateName, nextProps, oldState, newState, lane) || null !== current && null !== current.dependencies && checkIfContextChanged(current.dependencies)) ? (oldContext || "function" !== typeof _instance.UNSAFE_componentWillUpdate && "function" !== typeof _instance.componentWillUpdate || ("function" === typeof _instance.componentWillUpdate && _instance.componentWillUpdate(nextProps, newState, lane), "function" === typeof _instance.UNSAFE_componentWillUpdate && _instance.UNSAFE_componentWillUpdate(nextProps, newState, lane)), "function" === typeof _instance.componentDidUpdate && (workInProgress.flags |= 4), "function" === typeof _instance.getSnapshotBeforeUpdate && (workInProgress.flags |= 1024)) : ("function" !== typeof _instance.componentDidUpdate || state === current.memoizedProps && oldState === current.memoizedState || (workInProgress.flags |= 4), "function" !== typeof _instance.getSnapshotBeforeUpdate || state === current.memoizedProps && oldState === current.memoizedState || (workInProgress.flags |= 1024), workInProgress.memoizedProps = nextProps, workInProgress.memoizedState = newState), _instance.props = nextProps, _instance.state = newState, _instance.context = lane, _instance = foundWillUpdateName) : ("function" !== typeof _instance.componentDidUpdate || state === current.memoizedProps && oldState === current.memoizedState || (workInProgress.flags |= 4), "function" !== typeof _instance.getSnapshotBeforeUpdate || state === current.memoizedProps && oldState === current.memoizedState || (workInProgress.flags |= 1024), _instance = !1); - } - lane = _instance; - markRef(current, workInProgress); - state = 0 !== (workInProgress.flags & 128); - if (lane || state) { - lane = workInProgress.stateNode; - setCurrentFiber(workInProgress); - if (state && "function" !== typeof Component.getDerivedStateFromError) Component = null, profilerStartTime = -1; - else if (Component = callRenderInDEV(lane), workInProgress.mode & StrictLegacyMode) { - setIsStrictModeForDevtools(!0); - try { - callRenderInDEV(lane); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - workInProgress.flags |= 1; - null !== current && state ? (workInProgress.child = reconcileChildFibers(workInProgress, current.child, null, renderLanes), workInProgress.child = reconcileChildFibers(workInProgress, null, Component, renderLanes)) : reconcileChildren(current, workInProgress, Component, renderLanes); - workInProgress.memoizedState = lane.state; - current = workInProgress.child; - } else current = bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - renderLanes = workInProgress.stateNode; - _instance && renderLanes.props !== nextProps && (didWarnAboutReassigningProps || console.error("It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.", getComponentNameFromFiber(workInProgress) || "a component"), didWarnAboutReassigningProps = !0); - return current; - } - function mountHostRootWithoutHydrating(current, workInProgress, nextChildren, renderLanes) { - resetHydrationState(); - workInProgress.flags |= 256; - reconcileChildren(current, workInProgress, nextChildren, renderLanes); - return workInProgress.child; - } - function validateFunctionComponentInDev(workInProgress, Component) { - Component && Component.childContextTypes && console.error("childContextTypes cannot be defined on a function component.\n %s.childContextTypes = ...", Component.displayName || Component.name || "Component"); - "function" === typeof Component.getDerivedStateFromProps && (workInProgress = getComponentNameFromType(Component) || "Unknown", didWarnAboutGetDerivedStateOnFunctionComponent[workInProgress] || (console.error("%s: Function components do not support getDerivedStateFromProps.", workInProgress), didWarnAboutGetDerivedStateOnFunctionComponent[workInProgress] = !0)); - "object" === typeof Component.contextType && null !== Component.contextType && (Component = getComponentNameFromType(Component) || "Unknown", didWarnAboutContextTypeOnFunctionComponent[Component] || (console.error("%s: Function components do not support contextType.", Component), didWarnAboutContextTypeOnFunctionComponent[Component] = !0)); - } - function mountSuspenseOffscreenState(renderLanes) { - return { - baseLanes: renderLanes, - cachePool: getSuspendedCache() - }; - } - function getRemainingWorkInPrimaryTree(current, primaryTreeDidDefer, renderLanes) { - current = null !== current ? current.childLanes & ~renderLanes : 0; - primaryTreeDidDefer && (current |= workInProgressDeferredLane); - return current; - } - function updateSuspenseComponent(current, workInProgress, renderLanes) { - var JSCompiler_object_inline_digest_2939; - var JSCompiler_object_inline_stack_2940 = workInProgress.pendingProps; - shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128); - var JSCompiler_object_inline_message_2938 = !1; - var didSuspend = 0 !== (workInProgress.flags & 128); - (JSCompiler_object_inline_digest_2939 = didSuspend) || (JSCompiler_object_inline_digest_2939 = null !== current && null === current.memoizedState ? !1 : 0 !== (suspenseStackCursor.current & ForceSuspenseFallback)); - JSCompiler_object_inline_digest_2939 && (JSCompiler_object_inline_message_2938 = !0, workInProgress.flags &= -129); - JSCompiler_object_inline_digest_2939 = 0 !== (workInProgress.flags & 32); - workInProgress.flags &= -33; - if (null === current) { - if (isHydrating) { - JSCompiler_object_inline_message_2938 ? pushPrimaryTreeSuspenseHandler(workInProgress) : reuseSuspenseHandlerOnStack(workInProgress); - (current = nextHydratableInstance) ? (renderLanes = canHydrateHydrationBoundary(current, rootOrSingletonContext), renderLanes = null !== renderLanes && renderLanes.data !== ACTIVITY_START_DATA ? renderLanes : null, null !== renderLanes && (JSCompiler_object_inline_digest_2939 = { - dehydrated: renderLanes, - treeContext: getSuspendedTreeContext(), - retryLane: 536870912, - hydrationErrors: null - }, workInProgress.memoizedState = JSCompiler_object_inline_digest_2939, JSCompiler_object_inline_digest_2939 = createFiberFromDehydratedFragment(renderLanes), JSCompiler_object_inline_digest_2939.return = workInProgress, workInProgress.child = JSCompiler_object_inline_digest_2939, hydrationParentFiber = workInProgress, nextHydratableInstance = null)) : renderLanes = null; - if (null === renderLanes) throw warnNonHydratedInstance(workInProgress, current), throwOnHydrationMismatch(workInProgress); - isSuspenseInstanceFallback(renderLanes) ? workInProgress.lanes = 32 : workInProgress.lanes = 536870912; - return null; - } - var nextPrimaryChildren = JSCompiler_object_inline_stack_2940.children; - JSCompiler_object_inline_stack_2940 = JSCompiler_object_inline_stack_2940.fallback; - if (JSCompiler_object_inline_message_2938) { - reuseSuspenseHandlerOnStack(workInProgress); - var mode = workInProgress.mode; - nextPrimaryChildren = mountWorkInProgressOffscreenFiber({ - mode: "hidden", - children: nextPrimaryChildren - }, mode); - JSCompiler_object_inline_stack_2940 = createFiberFromFragment(JSCompiler_object_inline_stack_2940, mode, renderLanes, null); - nextPrimaryChildren.return = workInProgress; - JSCompiler_object_inline_stack_2940.return = workInProgress; - nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2940; - workInProgress.child = nextPrimaryChildren; - JSCompiler_object_inline_stack_2940 = workInProgress.child; - JSCompiler_object_inline_stack_2940.memoizedState = mountSuspenseOffscreenState(renderLanes); - JSCompiler_object_inline_stack_2940.childLanes = getRemainingWorkInPrimaryTree(current, JSCompiler_object_inline_digest_2939, renderLanes); - workInProgress.memoizedState = SUSPENDED_MARKER; - return bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2940); - } - pushPrimaryTreeSuspenseHandler(workInProgress); - return mountSuspensePrimaryChildren(workInProgress, nextPrimaryChildren); - } - var prevState = current.memoizedState; - if (null !== prevState) { - var JSCompiler_object_inline_componentStack_2941 = prevState.dehydrated; - if (null !== JSCompiler_object_inline_componentStack_2941) { - if (didSuspend) workInProgress.flags & 256 ? (pushPrimaryTreeSuspenseHandler(workInProgress), workInProgress.flags &= -257, workInProgress = retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes)) : null !== workInProgress.memoizedState ? (reuseSuspenseHandlerOnStack(workInProgress), workInProgress.child = current.child, workInProgress.flags |= 128, workInProgress = null) : (reuseSuspenseHandlerOnStack(workInProgress), nextPrimaryChildren = JSCompiler_object_inline_stack_2940.fallback, mode = workInProgress.mode, JSCompiler_object_inline_stack_2940 = mountWorkInProgressOffscreenFiber({ - mode: "visible", - children: JSCompiler_object_inline_stack_2940.children - }, mode), nextPrimaryChildren = createFiberFromFragment(nextPrimaryChildren, mode, renderLanes, null), nextPrimaryChildren.flags |= 2, JSCompiler_object_inline_stack_2940.return = workInProgress, nextPrimaryChildren.return = workInProgress, JSCompiler_object_inline_stack_2940.sibling = nextPrimaryChildren, workInProgress.child = JSCompiler_object_inline_stack_2940, reconcileChildFibers(workInProgress, current.child, null, renderLanes), JSCompiler_object_inline_stack_2940 = workInProgress.child, JSCompiler_object_inline_stack_2940.memoizedState = mountSuspenseOffscreenState(renderLanes), JSCompiler_object_inline_stack_2940.childLanes = getRemainingWorkInPrimaryTree(current, JSCompiler_object_inline_digest_2939, renderLanes), workInProgress.memoizedState = SUSPENDED_MARKER, workInProgress = bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2940)); - else if (pushPrimaryTreeSuspenseHandler(workInProgress), warnIfHydrating(), 0 !== (renderLanes & 536870912) && markRenderDerivedCause(workInProgress), isSuspenseInstanceFallback(JSCompiler_object_inline_componentStack_2941)) { - JSCompiler_object_inline_digest_2939 = JSCompiler_object_inline_componentStack_2941.nextSibling && JSCompiler_object_inline_componentStack_2941.nextSibling.dataset; - if (JSCompiler_object_inline_digest_2939) { - nextPrimaryChildren = JSCompiler_object_inline_digest_2939.dgst; - var message = JSCompiler_object_inline_digest_2939.msg; - mode = JSCompiler_object_inline_digest_2939.stck; - var componentStack = JSCompiler_object_inline_digest_2939.cstck; - } - JSCompiler_object_inline_message_2938 = message; - JSCompiler_object_inline_digest_2939 = nextPrimaryChildren; - JSCompiler_object_inline_stack_2940 = mode; - JSCompiler_object_inline_componentStack_2941 = componentStack; - nextPrimaryChildren = JSCompiler_object_inline_message_2938; - mode = JSCompiler_object_inline_componentStack_2941; - nextPrimaryChildren = nextPrimaryChildren ? Error(nextPrimaryChildren) : Error("The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."); - nextPrimaryChildren.stack = JSCompiler_object_inline_stack_2940 || ""; - nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2939; - JSCompiler_object_inline_digest_2939 = void 0 === mode ? null : mode; - JSCompiler_object_inline_stack_2940 = { - value: nextPrimaryChildren, - source: null, - stack: JSCompiler_object_inline_digest_2939 - }; - "string" === typeof JSCompiler_object_inline_digest_2939 && CapturedStacks.set(nextPrimaryChildren, JSCompiler_object_inline_stack_2940); - queueHydrationError(JSCompiler_object_inline_stack_2940); - workInProgress = retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes); - } else if (didReceiveUpdate || propagateParentContextChanges(current, workInProgress, renderLanes, !1), JSCompiler_object_inline_digest_2939 = 0 !== (renderLanes & current.childLanes), didReceiveUpdate || JSCompiler_object_inline_digest_2939) { - JSCompiler_object_inline_digest_2939 = workInProgressRoot; - if (null !== JSCompiler_object_inline_digest_2939 && (JSCompiler_object_inline_stack_2940 = getBumpedLaneForHydration(JSCompiler_object_inline_digest_2939, renderLanes), 0 !== JSCompiler_object_inline_stack_2940 && JSCompiler_object_inline_stack_2940 !== prevState.retryLane)) throw prevState.retryLane = JSCompiler_object_inline_stack_2940, enqueueConcurrentRenderForLane(current, JSCompiler_object_inline_stack_2940), scheduleUpdateOnFiber(JSCompiler_object_inline_digest_2939, current, JSCompiler_object_inline_stack_2940), SelectiveHydrationException; - isSuspenseInstancePending(JSCompiler_object_inline_componentStack_2941) || renderDidSuspendDelayIfPossible(); - workInProgress = retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes); - } else isSuspenseInstancePending(JSCompiler_object_inline_componentStack_2941) ? (workInProgress.flags |= 192, workInProgress.child = current.child, workInProgress = null) : (current = prevState.treeContext, nextHydratableInstance = getNextHydratable(JSCompiler_object_inline_componentStack_2941.nextSibling), hydrationParentFiber = workInProgress, isHydrating = !0, hydrationErrors = null, didSuspendOrErrorDEV = !1, hydrationDiffRootDEV = null, rootOrSingletonContext = !1, null !== current && restoreSuspendedTreeContext(workInProgress, current), workInProgress = mountSuspensePrimaryChildren(workInProgress, JSCompiler_object_inline_stack_2940.children), workInProgress.flags |= 4096); - return workInProgress; - } - } - if (JSCompiler_object_inline_message_2938) return reuseSuspenseHandlerOnStack(workInProgress), nextPrimaryChildren = JSCompiler_object_inline_stack_2940.fallback, mode = workInProgress.mode, componentStack = current.child, JSCompiler_object_inline_componentStack_2941 = componentStack.sibling, JSCompiler_object_inline_stack_2940 = createWorkInProgress(componentStack, { - mode: "hidden", - children: JSCompiler_object_inline_stack_2940.children - }), JSCompiler_object_inline_stack_2940.subtreeFlags = componentStack.subtreeFlags & 132120576, null !== JSCompiler_object_inline_componentStack_2941 ? nextPrimaryChildren = createWorkInProgress(JSCompiler_object_inline_componentStack_2941, nextPrimaryChildren) : (nextPrimaryChildren = createFiberFromFragment(nextPrimaryChildren, mode, renderLanes, null), nextPrimaryChildren.flags |= 2), nextPrimaryChildren.return = workInProgress, JSCompiler_object_inline_stack_2940.return = workInProgress, JSCompiler_object_inline_stack_2940.sibling = nextPrimaryChildren, workInProgress.child = JSCompiler_object_inline_stack_2940, bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2940), JSCompiler_object_inline_stack_2940 = workInProgress.child, nextPrimaryChildren = current.child.memoizedState, null === nextPrimaryChildren ? nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes) : (mode = nextPrimaryChildren.cachePool, null !== mode ? (componentStack = CacheContext._currentValue, mode = mode.parent !== componentStack ? { - parent: componentStack, - pool: componentStack - } : mode) : mode = getSuspendedCache(), nextPrimaryChildren = { - baseLanes: nextPrimaryChildren.baseLanes | renderLanes, - cachePool: mode - }), JSCompiler_object_inline_stack_2940.memoizedState = nextPrimaryChildren, JSCompiler_object_inline_stack_2940.childLanes = getRemainingWorkInPrimaryTree(current, JSCompiler_object_inline_digest_2939, renderLanes), workInProgress.memoizedState = SUSPENDED_MARKER, bailoutOffscreenComponent(current.child, JSCompiler_object_inline_stack_2940); - null !== prevState && (renderLanes & 62914560) === renderLanes && 0 !== (renderLanes & current.lanes) && markRenderDerivedCause(workInProgress); - pushPrimaryTreeSuspenseHandler(workInProgress); - renderLanes = current.child; - current = renderLanes.sibling; - renderLanes = createWorkInProgress(renderLanes, { - mode: "visible", - children: JSCompiler_object_inline_stack_2940.children - }); - renderLanes.return = workInProgress; - renderLanes.sibling = null; - null !== current && (JSCompiler_object_inline_digest_2939 = workInProgress.deletions, null === JSCompiler_object_inline_digest_2939 ? (workInProgress.deletions = [ - current - ], workInProgress.flags |= 16) : JSCompiler_object_inline_digest_2939.push(current)); - workInProgress.child = renderLanes; - workInProgress.memoizedState = null; - return renderLanes; - } - function mountSuspensePrimaryChildren(workInProgress, primaryChildren) { - primaryChildren = mountWorkInProgressOffscreenFiber({ - mode: "visible", - children: primaryChildren - }, workInProgress.mode); - primaryChildren.return = workInProgress; - return workInProgress.child = primaryChildren; - } - function mountWorkInProgressOffscreenFiber(offscreenProps, mode) { - offscreenProps = createFiber(22, offscreenProps, null, mode); - offscreenProps.lanes = 0; - return offscreenProps; - } - function retrySuspenseComponentWithoutHydrating(current, workInProgress, renderLanes) { - reconcileChildFibers(workInProgress, current.child, null, renderLanes); - current = mountSuspensePrimaryChildren(workInProgress, workInProgress.pendingProps.children); - current.flags |= 2; - workInProgress.memoizedState = null; - return current; - } - function scheduleSuspenseWorkOnFiber(fiber, renderLanes, propagationRoot) { - fiber.lanes |= renderLanes; - var alternate = fiber.alternate; - null !== alternate && (alternate.lanes |= renderLanes); - scheduleContextWorkOnParentPath(fiber.return, renderLanes, propagationRoot); - } - function findLastContentRow(firstChild) { - for(var lastContentRow = null; null !== firstChild;){ - var currentRow = firstChild.alternate; - null !== currentRow && null === findFirstSuspended(currentRow) && (lastContentRow = firstChild); - firstChild = firstChild.sibling; - } - return lastContentRow; - } - function initSuspenseListRenderState(workInProgress, isBackwards, tail, lastContentRow, tailMode, treeForkCount) { - var renderState = workInProgress.memoizedState; - null === renderState ? workInProgress.memoizedState = { - isBackwards: isBackwards, - rendering: null, - renderingStartTime: 0, - last: lastContentRow, - tail: tail, - tailMode: tailMode, - treeForkCount: treeForkCount - } : (renderState.isBackwards = isBackwards, renderState.rendering = null, renderState.renderingStartTime = 0, renderState.last = lastContentRow, renderState.tail = tail, renderState.tailMode = tailMode, renderState.treeForkCount = treeForkCount); - } - function reverseChildren(fiber) { - var row = fiber.child; - for(fiber.child = null; null !== row;){ - var nextRow = row.sibling; - row.sibling = fiber.child; - fiber.child = row; - row = nextRow; - } - } - function updateSuspenseListComponent(current, workInProgress, renderLanes) { - var nextProps = workInProgress.pendingProps, revealOrder = nextProps.revealOrder, tailMode = nextProps.tail, newChildren = nextProps.children, suspenseContext = suspenseStackCursor.current; - if (workInProgress.flags & 128) return pushSuspenseListContext(workInProgress, suspenseContext), null; - (nextProps = 0 !== (suspenseContext & ForceSuspenseFallback)) ? (suspenseContext = suspenseContext & SubtreeSuspenseContextMask | ForceSuspenseFallback, workInProgress.flags |= 128) : suspenseContext &= SubtreeSuspenseContextMask; - pushSuspenseListContext(workInProgress, suspenseContext); - suspenseContext = null == revealOrder ? "null" : revealOrder; - if (null != revealOrder && "forwards" !== revealOrder && "backwards" !== revealOrder && "unstable_legacy-backwards" !== revealOrder && "together" !== revealOrder && "independent" !== revealOrder && !didWarnAboutRevealOrder[suspenseContext]) if (didWarnAboutRevealOrder[suspenseContext] = !0, "string" === typeof revealOrder) switch(revealOrder.toLowerCase()){ - case "together": - case "forwards": - case "backwards": - case "independent": - console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. Use lowercase "%s" instead.', revealOrder, revealOrder.toLowerCase()); - break; - case "forward": - case "backward": - console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. React uses the -s suffix in the spelling. Use "%ss" instead.', revealOrder, revealOrder.toLowerCase()); - break; - default: - console.error('"%s" is not a supported revealOrder on <SuspenseList />. Did you mean "independent", "together", "forwards" or "backwards"?', revealOrder); - } - else console.error('%s is not a supported value for revealOrder on <SuspenseList />. Did you mean "independent", "together", "forwards" or "backwards"?', revealOrder); - suspenseContext = null == tailMode ? "null" : tailMode; - didWarnAboutTailOptions[suspenseContext] || null == tailMode || ("visible" !== tailMode && "collapsed" !== tailMode && "hidden" !== tailMode ? (didWarnAboutTailOptions[suspenseContext] = !0, console.error('"%s" is not a supported value for tail on <SuspenseList />. Did you mean "visible", "collapsed" or "hidden"?', tailMode)) : null != revealOrder && "forwards" !== revealOrder && "backwards" !== revealOrder && "unstable_legacy-backwards" !== revealOrder && (didWarnAboutTailOptions[suspenseContext] = !0, console.error('<SuspenseList tail="%s" /> is only valid if revealOrder is "forwards" (default) or "backwards". Did you mean to specify revealOrder="forwards"?', tailMode))); - a: if ((null == revealOrder || "forwards" === revealOrder || "backwards" === revealOrder || "unstable_legacy-backwards" === revealOrder) && void 0 !== newChildren && null !== newChildren && !1 !== newChildren) if (isArrayImpl(newChildren)) for(suspenseContext = 0; suspenseContext < newChildren.length; suspenseContext++){ - if (!validateSuspenseListNestedChild(newChildren[suspenseContext], suspenseContext)) break a; - } - else if (suspenseContext = getIteratorFn(newChildren), "function" === typeof suspenseContext) { - if (suspenseContext = suspenseContext.call(newChildren)) for(var step = suspenseContext.next(), _i = 0; !step.done; step = suspenseContext.next()){ - if (!validateSuspenseListNestedChild(step.value, _i)) break a; - _i++; - } - } else console.error('A single row was passed to a <SuspenseList revealOrder="%s" />. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?', revealOrder); - "backwards" === revealOrder && null !== current ? (reverseChildren(current), reconcileChildren(current, workInProgress, newChildren, renderLanes), reverseChildren(current)) : reconcileChildren(current, workInProgress, newChildren, renderLanes); - isHydrating ? (warnIfNotHydrating(), newChildren = treeForkCount) : newChildren = 0; - if (!nextProps && null !== current && 0 !== (current.flags & 128)) a: for(current = workInProgress.child; null !== current;){ - if (13 === current.tag) null !== current.memoizedState && scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress); - else if (19 === current.tag) scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress); - else if (null !== current.child) { - current.child.return = current; - current = current.child; - continue; - } - if (current === workInProgress) break a; - for(; null === current.sibling;){ - if (null === current.return || current.return === workInProgress) break a; - current = current.return; - } - current.sibling.return = current.return; - current = current.sibling; - } - switch(revealOrder){ - case "backwards": - renderLanes = findLastContentRow(workInProgress.child); - null === renderLanes ? (revealOrder = workInProgress.child, workInProgress.child = null) : (revealOrder = renderLanes.sibling, renderLanes.sibling = null, reverseChildren(workInProgress)); - initSuspenseListRenderState(workInProgress, !0, revealOrder, null, tailMode, newChildren); - break; - case "unstable_legacy-backwards": - renderLanes = null; - revealOrder = workInProgress.child; - for(workInProgress.child = null; null !== revealOrder;){ - current = revealOrder.alternate; - if (null !== current && null === findFirstSuspended(current)) { - workInProgress.child = revealOrder; - break; - } - current = revealOrder.sibling; - revealOrder.sibling = renderLanes; - renderLanes = revealOrder; - revealOrder = current; - } - initSuspenseListRenderState(workInProgress, !0, renderLanes, null, tailMode, newChildren); - break; - case "together": - initSuspenseListRenderState(workInProgress, !1, null, null, void 0, newChildren); - break; - case "independent": - workInProgress.memoizedState = null; - break; - default: - renderLanes = findLastContentRow(workInProgress.child), null === renderLanes ? (revealOrder = workInProgress.child, workInProgress.child = null) : (revealOrder = renderLanes.sibling, renderLanes.sibling = null), initSuspenseListRenderState(workInProgress, !1, revealOrder, renderLanes, tailMode, newChildren); - } - return workInProgress.child; - } - function bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes) { - null !== current && (workInProgress.dependencies = current.dependencies); - profilerStartTime = -1; - workInProgressRootSkippedLanes |= workInProgress.lanes; - if (0 === (renderLanes & workInProgress.childLanes)) if (null !== current) { - if (propagateParentContextChanges(current, workInProgress, renderLanes, !1), 0 === (renderLanes & workInProgress.childLanes)) return null; - } else return null; - if (null !== current && workInProgress.child !== current.child) throw Error("Resuming work not yet implemented."); - if (null !== workInProgress.child) { - current = workInProgress.child; - renderLanes = createWorkInProgress(current, current.pendingProps); - workInProgress.child = renderLanes; - for(renderLanes.return = workInProgress; null !== current.sibling;)current = current.sibling, renderLanes = renderLanes.sibling = createWorkInProgress(current, current.pendingProps), renderLanes.return = workInProgress; - renderLanes.sibling = null; - } - return workInProgress.child; - } - function checkScheduledUpdateOrContext(current, renderLanes) { - if (0 !== (current.lanes & renderLanes)) return !0; - current = current.dependencies; - return null !== current && checkIfContextChanged(current) ? !0 : !1; - } - function attemptEarlyBailoutIfNoScheduledUpdate(current, workInProgress, renderLanes) { - switch(workInProgress.tag){ - case 3: - pushHostContainer(workInProgress, workInProgress.stateNode.containerInfo); - pushProvider(workInProgress, CacheContext, current.memoizedState.cache); - resetHydrationState(); - break; - case 27: - case 5: - pushHostContext(workInProgress); - break; - case 4: - pushHostContainer(workInProgress, workInProgress.stateNode.containerInfo); - break; - case 10: - pushProvider(workInProgress, workInProgress.type, workInProgress.memoizedProps.value); - break; - case 12: - 0 !== (renderLanes & workInProgress.childLanes) && (workInProgress.flags |= 4); - workInProgress.flags |= 2048; - var stateNode = workInProgress.stateNode; - stateNode.effectDuration = -0; - stateNode.passiveEffectDuration = -0; - break; - case 31: - if (null !== workInProgress.memoizedState) return workInProgress.flags |= 128, pushDehydratedActivitySuspenseHandler(workInProgress), null; - break; - case 13: - stateNode = workInProgress.memoizedState; - if (null !== stateNode) { - if (null !== stateNode.dehydrated) return pushPrimaryTreeSuspenseHandler(workInProgress), workInProgress.flags |= 128, null; - if (0 !== (renderLanes & workInProgress.child.childLanes)) return updateSuspenseComponent(current, workInProgress, renderLanes); - pushPrimaryTreeSuspenseHandler(workInProgress); - current = bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - return null !== current ? current.sibling : null; - } - pushPrimaryTreeSuspenseHandler(workInProgress); - break; - case 19: - if (workInProgress.flags & 128) return updateSuspenseListComponent(current, workInProgress, renderLanes); - var didSuspendBefore = 0 !== (current.flags & 128); - stateNode = 0 !== (renderLanes & workInProgress.childLanes); - stateNode || (propagateParentContextChanges(current, workInProgress, renderLanes, !1), stateNode = 0 !== (renderLanes & workInProgress.childLanes)); - if (didSuspendBefore) { - if (stateNode) return updateSuspenseListComponent(current, workInProgress, renderLanes); - workInProgress.flags |= 128; - } - didSuspendBefore = workInProgress.memoizedState; - null !== didSuspendBefore && (didSuspendBefore.rendering = null, didSuspendBefore.tail = null, didSuspendBefore.lastEffect = null); - pushSuspenseListContext(workInProgress, suspenseStackCursor.current); - if (stateNode) break; - else return null; - case 22: - return workInProgress.lanes = 0, updateOffscreenComponent(current, workInProgress, renderLanes, workInProgress.pendingProps); - case 24: - pushProvider(workInProgress, CacheContext, current.memoizedState.cache); - } - return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - } - function beginWork(current, workInProgress, renderLanes) { - if (workInProgress._debugNeedsRemount && null !== current) { - renderLanes = createFiberFromTypeAndProps(workInProgress.type, workInProgress.key, workInProgress.pendingProps, workInProgress._debugOwner || null, workInProgress.mode, workInProgress.lanes); - renderLanes._debugStack = workInProgress._debugStack; - renderLanes._debugTask = workInProgress._debugTask; - var returnFiber = workInProgress.return; - if (null === returnFiber) throw Error("Cannot swap the root fiber."); - current.alternate = null; - workInProgress.alternate = null; - renderLanes.index = workInProgress.index; - renderLanes.sibling = workInProgress.sibling; - renderLanes.return = workInProgress.return; - renderLanes.ref = workInProgress.ref; - renderLanes._debugInfo = workInProgress._debugInfo; - if (workInProgress === returnFiber.child) returnFiber.child = renderLanes; - else { - var prevSibling = returnFiber.child; - if (null === prevSibling) throw Error("Expected parent to have a child."); - for(; prevSibling.sibling !== workInProgress;)if (prevSibling = prevSibling.sibling, null === prevSibling) throw Error("Expected to find the previous sibling."); - prevSibling.sibling = renderLanes; - } - workInProgress = returnFiber.deletions; - null === workInProgress ? (returnFiber.deletions = [ - current - ], returnFiber.flags |= 16) : workInProgress.push(current); - renderLanes.flags |= 2; - return renderLanes; - } - if (null !== current) if (current.memoizedProps !== workInProgress.pendingProps || workInProgress.type !== current.type) didReceiveUpdate = !0; - else { - if (!checkScheduledUpdateOrContext(current, renderLanes) && 0 === (workInProgress.flags & 128)) return didReceiveUpdate = !1, attemptEarlyBailoutIfNoScheduledUpdate(current, workInProgress, renderLanes); - didReceiveUpdate = 0 !== (current.flags & 131072) ? !0 : !1; - } - else { - didReceiveUpdate = !1; - if (returnFiber = isHydrating) warnIfNotHydrating(), returnFiber = 0 !== (workInProgress.flags & 1048576); - returnFiber && (returnFiber = workInProgress.index, warnIfNotHydrating(), pushTreeId(workInProgress, treeForkCount, returnFiber)); - } - workInProgress.lanes = 0; - switch(workInProgress.tag){ - case 16: - a: if (returnFiber = workInProgress.pendingProps, current = resolveLazy(workInProgress.elementType), workInProgress.type = current, "function" === typeof current) shouldConstruct(current) ? (returnFiber = resolveClassComponentProps(current, returnFiber), workInProgress.tag = 1, workInProgress.type = current = resolveFunctionForHotReloading(current), workInProgress = updateClassComponent(null, workInProgress, current, returnFiber, renderLanes)) : (workInProgress.tag = 0, validateFunctionComponentInDev(workInProgress, current), workInProgress.type = current = resolveFunctionForHotReloading(current), workInProgress = updateFunctionComponent(null, workInProgress, current, returnFiber, renderLanes)); - else { - if (void 0 !== current && null !== current) { - if (prevSibling = current.$$typeof, prevSibling === REACT_FORWARD_REF_TYPE) { - workInProgress.tag = 11; - workInProgress.type = current = resolveForwardRefForHotReloading(current); - workInProgress = updateForwardRef(null, workInProgress, current, returnFiber, renderLanes); - break a; - } else if (prevSibling === REACT_MEMO_TYPE) { - workInProgress.tag = 14; - workInProgress = updateMemoComponent(null, workInProgress, current, returnFiber, renderLanes); - break a; - } - } - workInProgress = ""; - null !== current && "object" === typeof current && current.$$typeof === REACT_LAZY_TYPE && (workInProgress = " Did you wrap a component in React.lazy() more than once?"); - renderLanes = getComponentNameFromType(current) || current; - throw Error("Element type is invalid. Received a promise that resolves to: " + renderLanes + ". Lazy element type must resolve to a class or function." + workInProgress); - } - return workInProgress; - case 0: - return updateFunctionComponent(current, workInProgress, workInProgress.type, workInProgress.pendingProps, renderLanes); - case 1: - return returnFiber = workInProgress.type, prevSibling = resolveClassComponentProps(returnFiber, workInProgress.pendingProps), updateClassComponent(current, workInProgress, returnFiber, prevSibling, renderLanes); - case 3: - a: { - pushHostContainer(workInProgress, workInProgress.stateNode.containerInfo); - if (null === current) throw Error("Should have a current fiber. This is a bug in React."); - returnFiber = workInProgress.pendingProps; - var prevState = workInProgress.memoizedState; - prevSibling = prevState.element; - cloneUpdateQueue(current, workInProgress); - processUpdateQueue(workInProgress, returnFiber, null, renderLanes); - var nextState = workInProgress.memoizedState; - returnFiber = nextState.cache; - pushProvider(workInProgress, CacheContext, returnFiber); - returnFiber !== prevState.cache && propagateContextChanges(workInProgress, [ - CacheContext - ], renderLanes, !0); - suspendIfUpdateReadFromEntangledAsyncAction(); - returnFiber = nextState.element; - if (prevState.isDehydrated) if (prevState = { - element: returnFiber, - isDehydrated: !1, - cache: nextState.cache - }, workInProgress.updateQueue.baseState = prevState, workInProgress.memoizedState = prevState, workInProgress.flags & 256) { - workInProgress = mountHostRootWithoutHydrating(current, workInProgress, returnFiber, renderLanes); - break a; - } else if (returnFiber !== prevSibling) { - prevSibling = createCapturedValueAtFiber(Error("This root received an early update, before anything was able hydrate. Switched the entire root to client rendering."), workInProgress); - queueHydrationError(prevSibling); - workInProgress = mountHostRootWithoutHydrating(current, workInProgress, returnFiber, renderLanes); - break a; - } else { - current = workInProgress.stateNode.containerInfo; - switch(current.nodeType){ - case 9: - current = current.body; - break; - default: - current = "HTML" === current.nodeName ? current.ownerDocument.body : current; - } - nextHydratableInstance = getNextHydratable(current.firstChild); - hydrationParentFiber = workInProgress; - isHydrating = !0; - hydrationErrors = null; - didSuspendOrErrorDEV = !1; - hydrationDiffRootDEV = null; - rootOrSingletonContext = !0; - renderLanes = mountChildFibers(workInProgress, null, returnFiber, renderLanes); - for(workInProgress.child = renderLanes; renderLanes;)renderLanes.flags = renderLanes.flags & -3 | 4096, renderLanes = renderLanes.sibling; - } - else { - resetHydrationState(); - if (returnFiber === prevSibling) { - workInProgress = bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes); - break a; - } - reconcileChildren(current, workInProgress, returnFiber, renderLanes); - } - workInProgress = workInProgress.child; - } - return workInProgress; - case 26: - return markRef(current, workInProgress), null === current ? (renderLanes = getResource(workInProgress.type, null, workInProgress.pendingProps, null)) ? workInProgress.memoizedState = renderLanes : isHydrating || (renderLanes = workInProgress.type, current = workInProgress.pendingProps, returnFiber = requiredContext(rootInstanceStackCursor.current), returnFiber = getOwnerDocumentFromRootContainer(returnFiber).createElement(renderLanes), returnFiber[internalInstanceKey] = workInProgress, returnFiber[internalPropsKey] = current, setInitialProperties(returnFiber, renderLanes, current), markNodeAsHoistable(returnFiber), workInProgress.stateNode = returnFiber) : workInProgress.memoizedState = getResource(workInProgress.type, current.memoizedProps, workInProgress.pendingProps, current.memoizedState), null; - case 27: - return pushHostContext(workInProgress), null === current && isHydrating && (returnFiber = requiredContext(rootInstanceStackCursor.current), prevSibling = getHostContext(), returnFiber = workInProgress.stateNode = resolveSingletonInstance(workInProgress.type, workInProgress.pendingProps, returnFiber, prevSibling, !1), didSuspendOrErrorDEV || (prevSibling = diffHydratedProperties(returnFiber, workInProgress.type, workInProgress.pendingProps, prevSibling), null !== prevSibling && (buildHydrationDiffNode(workInProgress, 0).serverProps = prevSibling)), hydrationParentFiber = workInProgress, rootOrSingletonContext = !0, prevSibling = nextHydratableInstance, isSingletonScope(workInProgress.type) ? (previousHydratableOnEnteringScopedSingleton = prevSibling, nextHydratableInstance = getNextHydratable(returnFiber.firstChild)) : nextHydratableInstance = prevSibling), reconcileChildren(current, workInProgress, workInProgress.pendingProps.children, renderLanes), markRef(current, workInProgress), null === current && (workInProgress.flags |= 4194304), workInProgress.child; - case 5: - return null === current && isHydrating && (prevState = getHostContext(), returnFiber = validateDOMNesting(workInProgress.type, prevState.ancestorInfo), prevSibling = nextHydratableInstance, (nextState = !prevSibling) || (nextState = canHydrateInstance(prevSibling, workInProgress.type, workInProgress.pendingProps, rootOrSingletonContext), null !== nextState ? (workInProgress.stateNode = nextState, didSuspendOrErrorDEV || (prevState = diffHydratedProperties(nextState, workInProgress.type, workInProgress.pendingProps, prevState), null !== prevState && (buildHydrationDiffNode(workInProgress, 0).serverProps = prevState)), hydrationParentFiber = workInProgress, nextHydratableInstance = getNextHydratable(nextState.firstChild), rootOrSingletonContext = !1, prevState = !0) : prevState = !1, nextState = !prevState), nextState && (returnFiber && warnNonHydratedInstance(workInProgress, prevSibling), throwOnHydrationMismatch(workInProgress))), pushHostContext(workInProgress), prevSibling = workInProgress.type, prevState = workInProgress.pendingProps, nextState = null !== current ? current.memoizedProps : null, returnFiber = prevState.children, shouldSetTextContent(prevSibling, prevState) ? returnFiber = null : null !== nextState && shouldSetTextContent(prevSibling, nextState) && (workInProgress.flags |= 32), null !== workInProgress.memoizedState && (prevSibling = renderWithHooks(current, workInProgress, TransitionAwareHostComponent, null, null, renderLanes), HostTransitionContext._currentValue = prevSibling), markRef(current, workInProgress), reconcileChildren(current, workInProgress, returnFiber, renderLanes), workInProgress.child; - case 6: - return null === current && isHydrating && (renderLanes = workInProgress.pendingProps, current = getHostContext(), returnFiber = current.ancestorInfo.current, renderLanes = null != returnFiber ? validateTextNesting(renderLanes, returnFiber.tag, current.ancestorInfo.implicitRootScope) : !0, current = nextHydratableInstance, (returnFiber = !current) || (returnFiber = canHydrateTextInstance(current, workInProgress.pendingProps, rootOrSingletonContext), null !== returnFiber ? (workInProgress.stateNode = returnFiber, hydrationParentFiber = workInProgress, nextHydratableInstance = null, returnFiber = !0) : returnFiber = !1, returnFiber = !returnFiber), returnFiber && (renderLanes && warnNonHydratedInstance(workInProgress, current), throwOnHydrationMismatch(workInProgress))), null; - case 13: - return updateSuspenseComponent(current, workInProgress, renderLanes); - case 4: - return pushHostContainer(workInProgress, workInProgress.stateNode.containerInfo), returnFiber = workInProgress.pendingProps, null === current ? workInProgress.child = reconcileChildFibers(workInProgress, null, returnFiber, renderLanes) : reconcileChildren(current, workInProgress, returnFiber, renderLanes), workInProgress.child; - case 11: - return updateForwardRef(current, workInProgress, workInProgress.type, workInProgress.pendingProps, renderLanes); - case 7: - return returnFiber = workInProgress.pendingProps, markRef(current, workInProgress), reconcileChildren(current, workInProgress, returnFiber, renderLanes), workInProgress.child; - case 8: - return reconcileChildren(current, workInProgress, workInProgress.pendingProps.children, renderLanes), workInProgress.child; - case 12: - return workInProgress.flags |= 4, workInProgress.flags |= 2048, returnFiber = workInProgress.stateNode, returnFiber.effectDuration = -0, returnFiber.passiveEffectDuration = -0, reconcileChildren(current, workInProgress, workInProgress.pendingProps.children, renderLanes), workInProgress.child; - case 10: - return returnFiber = workInProgress.type, prevSibling = workInProgress.pendingProps, prevState = prevSibling.value, "value" in prevSibling || hasWarnedAboutUsingNoValuePropOnContextProvider || (hasWarnedAboutUsingNoValuePropOnContextProvider = !0, console.error("The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?")), pushProvider(workInProgress, returnFiber, prevState), reconcileChildren(current, workInProgress, prevSibling.children, renderLanes), workInProgress.child; - case 9: - return prevSibling = workInProgress.type._context, returnFiber = workInProgress.pendingProps.children, "function" !== typeof returnFiber && console.error("A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."), prepareToReadContext(workInProgress), prevSibling = readContext(prevSibling), returnFiber = callComponentInDEV(returnFiber, prevSibling, void 0), workInProgress.flags |= 1, reconcileChildren(current, workInProgress, returnFiber, renderLanes), workInProgress.child; - case 14: - return updateMemoComponent(current, workInProgress, workInProgress.type, workInProgress.pendingProps, renderLanes); - case 15: - return updateSimpleMemoComponent(current, workInProgress, workInProgress.type, workInProgress.pendingProps, renderLanes); - case 19: - return updateSuspenseListComponent(current, workInProgress, renderLanes); - case 31: - return updateActivityComponent(current, workInProgress, renderLanes); - case 22: - return updateOffscreenComponent(current, workInProgress, renderLanes, workInProgress.pendingProps); - case 24: - return prepareToReadContext(workInProgress), returnFiber = readContext(CacheContext), null === current ? (prevSibling = peekCacheFromPool(), null === prevSibling && (prevSibling = workInProgressRoot, prevState = createCache(), prevSibling.pooledCache = prevState, retainCache(prevState), null !== prevState && (prevSibling.pooledCacheLanes |= renderLanes), prevSibling = prevState), workInProgress.memoizedState = { - parent: returnFiber, - cache: prevSibling - }, initializeUpdateQueue(workInProgress), pushProvider(workInProgress, CacheContext, prevSibling)) : (0 !== (current.lanes & renderLanes) && (cloneUpdateQueue(current, workInProgress), processUpdateQueue(workInProgress, null, null, renderLanes), suspendIfUpdateReadFromEntangledAsyncAction()), prevSibling = current.memoizedState, prevState = workInProgress.memoizedState, prevSibling.parent !== returnFiber ? (prevSibling = { - parent: returnFiber, - cache: returnFiber - }, workInProgress.memoizedState = prevSibling, 0 === workInProgress.lanes && (workInProgress.memoizedState = workInProgress.updateQueue.baseState = prevSibling), pushProvider(workInProgress, CacheContext, returnFiber)) : (returnFiber = prevState.cache, pushProvider(workInProgress, CacheContext, returnFiber), returnFiber !== prevSibling.cache && propagateContextChanges(workInProgress, [ - CacheContext - ], renderLanes, !0))), reconcileChildren(current, workInProgress, workInProgress.pendingProps.children, renderLanes), workInProgress.child; - case 30: - return returnFiber = workInProgress.pendingProps, null != returnFiber.name && "auto" !== returnFiber.name ? workInProgress.flags |= null === current ? 18882560 : 18874368 : isHydrating && pushMaterializedTreeId(workInProgress), void 0 !== returnFiber.className && (prevSibling = "string" === typeof returnFiber.className ? JSON.stringify(returnFiber.className) : "{...}", didWarnAboutClassNameOnViewTransition[prevSibling] || (didWarnAboutClassNameOnViewTransition[prevSibling] = !0, console.error('<ViewTransition> doesn\'t accept a "className" prop. It has been renamed to "default".\n- <ViewTransition className=%s>\n+ <ViewTransition default=%s>', prevSibling, prevSibling))), null !== current && current.memoizedProps.name !== returnFiber.name ? workInProgress.flags |= 4194816 : markRef(current, workInProgress), reconcileChildren(current, workInProgress, returnFiber.children, renderLanes), workInProgress.child; - case 29: - throw workInProgress.pendingProps; - } - throw Error("Unknown unit of work tag (" + workInProgress.tag + "). This error is likely caused by a bug in React. Please file an issue."); - } - function markUpdate(workInProgress) { - workInProgress.flags |= 4; - } - function preloadInstanceAndSuspendIfNeeded(workInProgress, type, oldProps, newProps, renderLanes) { - var JSCompiler_temp; - if (JSCompiler_temp = (workInProgress.mode & SuspenseyImagesMode) !== NoMode) JSCompiler_temp = null === oldProps ? maySuspendCommit(type, newProps) : maySuspendCommit(type, newProps) && (newProps.src !== oldProps.src || newProps.srcSet !== oldProps.srcSet); - if (JSCompiler_temp) { - if (workInProgress.flags |= 16777216, (renderLanes & 335544128) === renderLanes) if (workInProgress.stateNode.complete) workInProgress.flags |= 8192; - else if (shouldRemainOnPreviousScreen()) workInProgress.flags |= 8192; - else throw suspendedThenable = noopSuspenseyCommitThenable, SuspenseyCommitException; - } else workInProgress.flags &= -16777217; - } - function preloadResourceAndSuspendIfNeeded(workInProgress, resource) { - if ("stylesheet" !== resource.type || (resource.state.loading & Inserted) !== NotLoaded) workInProgress.flags &= -16777217; - else if (workInProgress.flags |= 16777216, !preloadResource(resource)) if (shouldRemainOnPreviousScreen()) workInProgress.flags |= 8192; - else throw suspendedThenable = noopSuspenseyCommitThenable, SuspenseyCommitException; - } - function scheduleRetryEffect(workInProgress, retryQueue) { - null !== retryQueue && (workInProgress.flags |= 4); - workInProgress.flags & 16384 && (retryQueue = 22 !== workInProgress.tag ? claimNextRetryLane() : 536870912, workInProgress.lanes |= retryQueue, workInProgressSuspendedRetryLanes |= retryQueue); - } - function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) { - if (!isHydrating) switch(renderState.tailMode){ - case "visible": - break; - case "collapsed": - for(var tailNode = renderState.tail, lastTailNode = null; null !== tailNode;)null !== tailNode.alternate && (lastTailNode = tailNode), tailNode = tailNode.sibling; - null === lastTailNode ? hasRenderedATailFallback || null === renderState.tail ? renderState.tail = null : renderState.tail.sibling = null : lastTailNode.sibling = null; - break; - default: - hasRenderedATailFallback = renderState.tail; - for(tailNode = null; null !== hasRenderedATailFallback;)null !== hasRenderedATailFallback.alternate && (tailNode = hasRenderedATailFallback), hasRenderedATailFallback = hasRenderedATailFallback.sibling; - null === tailNode ? renderState.tail = null : tailNode.sibling = null; - } - } - function bubbleProperties(completedWork) { - var didBailout = null !== completedWork.alternate && completedWork.alternate.child === completedWork.child, newChildLanes = 0, subtreeFlags = 0; - if (didBailout) if ((completedWork.mode & ProfileMode) !== NoMode) { - for(var _treeBaseDuration = completedWork.selfBaseDuration, _child2 = completedWork.child; null !== _child2;)newChildLanes |= _child2.lanes | _child2.childLanes, subtreeFlags |= _child2.subtreeFlags & 132120576, subtreeFlags |= _child2.flags & 132120576, _treeBaseDuration += _child2.treeBaseDuration, _child2 = _child2.sibling; - completedWork.treeBaseDuration = _treeBaseDuration; - } else for(_treeBaseDuration = completedWork.child; null !== _treeBaseDuration;)newChildLanes |= _treeBaseDuration.lanes | _treeBaseDuration.childLanes, subtreeFlags |= _treeBaseDuration.subtreeFlags & 132120576, subtreeFlags |= _treeBaseDuration.flags & 132120576, _treeBaseDuration.return = completedWork, _treeBaseDuration = _treeBaseDuration.sibling; - else if ((completedWork.mode & ProfileMode) !== NoMode) { - _treeBaseDuration = completedWork.actualDuration; - _child2 = completedWork.selfBaseDuration; - for(var child = completedWork.child; null !== child;)newChildLanes |= child.lanes | child.childLanes, subtreeFlags |= child.subtreeFlags, subtreeFlags |= child.flags, _treeBaseDuration += child.actualDuration, _child2 += child.treeBaseDuration, child = child.sibling; - completedWork.actualDuration = _treeBaseDuration; - completedWork.treeBaseDuration = _child2; - } else for(_treeBaseDuration = completedWork.child; null !== _treeBaseDuration;)newChildLanes |= _treeBaseDuration.lanes | _treeBaseDuration.childLanes, subtreeFlags |= _treeBaseDuration.subtreeFlags, subtreeFlags |= _treeBaseDuration.flags, _treeBaseDuration.return = completedWork, _treeBaseDuration = _treeBaseDuration.sibling; - completedWork.subtreeFlags |= subtreeFlags; - completedWork.childLanes = newChildLanes; - return didBailout; - } - function completeWork(current, workInProgress, renderLanes) { - var newProps = workInProgress.pendingProps; - popTreeContext(workInProgress); - switch(workInProgress.tag){ - case 16: - case 15: - case 0: - case 11: - case 7: - case 8: - case 12: - case 9: - case 14: - return bubbleProperties(workInProgress), null; - case 1: - return bubbleProperties(workInProgress), null; - case 3: - renderLanes = workInProgress.stateNode; - newProps = null; - null !== current && (newProps = current.memoizedState.cache); - workInProgress.memoizedState.cache !== newProps && (workInProgress.flags |= 2048); - popProvider(CacheContext, workInProgress); - popHostContainer(workInProgress); - renderLanes.pendingContext && (renderLanes.context = renderLanes.pendingContext, renderLanes.pendingContext = null); - if (null === current || null === current.child) popHydrationState(workInProgress) ? (emitPendingHydrationWarnings(), markUpdate(workInProgress)) : null === current || current.memoizedState.isDehydrated && 0 === (workInProgress.flags & 256) || (workInProgress.flags |= 1024, upgradeHydrationErrorsToRecoverable()); - bubbleProperties(workInProgress); - return null; - case 26: - var type = workInProgress.type, nextResource = workInProgress.memoizedState; - null === current ? (markUpdate(workInProgress), null !== nextResource ? (bubbleProperties(workInProgress), preloadResourceAndSuspendIfNeeded(workInProgress, nextResource)) : (bubbleProperties(workInProgress), preloadInstanceAndSuspendIfNeeded(workInProgress, type, null, newProps, renderLanes))) : nextResource ? nextResource !== current.memoizedState ? (markUpdate(workInProgress), bubbleProperties(workInProgress), preloadResourceAndSuspendIfNeeded(workInProgress, nextResource)) : (bubbleProperties(workInProgress), workInProgress.flags &= -16777217) : (current = current.memoizedProps, current !== newProps && markUpdate(workInProgress), bubbleProperties(workInProgress), preloadInstanceAndSuspendIfNeeded(workInProgress, type, current, newProps, renderLanes)); - return null; - case 27: - popHostContext(workInProgress); - renderLanes = requiredContext(rootInstanceStackCursor.current); - type = workInProgress.type; - if (null !== current && null != workInProgress.stateNode) current.memoizedProps !== newProps && markUpdate(workInProgress); - else { - if (!newProps) { - if (null === workInProgress.stateNode) throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue."); - bubbleProperties(workInProgress); - workInProgress.subtreeFlags &= -33554433; - return null; - } - current = getHostContext(); - popHydrationState(workInProgress) ? prepareToHydrateHostInstance(workInProgress, current) : (current = resolveSingletonInstance(type, newProps, renderLanes, current, !0), workInProgress.stateNode = current, markUpdate(workInProgress)); - } - bubbleProperties(workInProgress); - workInProgress.subtreeFlags &= -33554433; - return null; - case 5: - popHostContext(workInProgress); - type = workInProgress.type; - if (null !== current && null != workInProgress.stateNode) current.memoizedProps !== newProps && markUpdate(workInProgress); - else { - if (!newProps) { - if (null === workInProgress.stateNode) throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue."); - bubbleProperties(workInProgress); - workInProgress.subtreeFlags &= -33554433; - return null; - } - var _currentHostContext = getHostContext(); - if (popHydrationState(workInProgress)) prepareToHydrateHostInstance(workInProgress, _currentHostContext); - else { - nextResource = requiredContext(rootInstanceStackCursor.current); - validateDOMNesting(type, _currentHostContext.ancestorInfo); - _currentHostContext = _currentHostContext.context; - nextResource = getOwnerDocumentFromRootContainer(nextResource); - switch(_currentHostContext){ - case HostContextNamespaceSvg: - nextResource = nextResource.createElementNS(SVG_NAMESPACE, type); - break; - case HostContextNamespaceMath: - nextResource = nextResource.createElementNS(MATH_NAMESPACE, type); - break; - default: - switch(type){ - case "svg": - nextResource = nextResource.createElementNS(SVG_NAMESPACE, type); - break; - case "math": - nextResource = nextResource.createElementNS(MATH_NAMESPACE, type); - break; - case "script": - nextResource = nextResource.createElement("div"); - nextResource.innerHTML = "<script>\x3c/script>"; - nextResource = nextResource.removeChild(nextResource.firstChild); - break; - case "select": - nextResource = "string" === typeof newProps.is ? nextResource.createElement("select", { - is: newProps.is - }) : nextResource.createElement("select"); - newProps.multiple ? nextResource.multiple = !0 : newProps.size && (nextResource.size = newProps.size); - break; - default: - nextResource = "string" === typeof newProps.is ? nextResource.createElement(type, { - is: newProps.is - }) : nextResource.createElement(type), -1 === type.indexOf("-") && (type !== type.toLowerCase() && console.error("<%s /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.", type), "[object HTMLUnknownElement]" !== Object.prototype.toString.call(nextResource) || hasOwnProperty.call(warnedUnknownTags, type) || (warnedUnknownTags[type] = !0, console.error("The tag <%s> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.", type))); - } - } - nextResource[internalInstanceKey] = workInProgress; - nextResource[internalPropsKey] = newProps; - a: for(_currentHostContext = workInProgress.child; null !== _currentHostContext;){ - if (5 === _currentHostContext.tag || 6 === _currentHostContext.tag) nextResource.appendChild(_currentHostContext.stateNode); - else if (4 !== _currentHostContext.tag && 27 !== _currentHostContext.tag && null !== _currentHostContext.child) { - _currentHostContext.child.return = _currentHostContext; - _currentHostContext = _currentHostContext.child; - continue; - } - if (_currentHostContext === workInProgress) break a; - for(; null === _currentHostContext.sibling;){ - if (null === _currentHostContext.return || _currentHostContext.return === workInProgress) break a; - _currentHostContext = _currentHostContext.return; - } - _currentHostContext.sibling.return = _currentHostContext.return; - _currentHostContext = _currentHostContext.sibling; - } - workInProgress.stateNode = nextResource; - a: switch(setInitialProperties(nextResource, type, newProps), type){ - case "button": - case "input": - case "select": - case "textarea": - newProps = !!newProps.autoFocus; - break a; - case "img": - newProps = !0; - break a; - default: - newProps = !1; - } - newProps && markUpdate(workInProgress); - } - } - bubbleProperties(workInProgress); - workInProgress.subtreeFlags &= -33554433; - preloadInstanceAndSuspendIfNeeded(workInProgress, workInProgress.type, null === current ? null : current.memoizedProps, workInProgress.pendingProps, renderLanes); - return null; - case 6: - if (current && null != workInProgress.stateNode) current.memoizedProps !== newProps && markUpdate(workInProgress); - else { - if ("string" !== typeof newProps && null === workInProgress.stateNode) throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue."); - current = requiredContext(rootInstanceStackCursor.current); - renderLanes = getHostContext(); - if (popHydrationState(workInProgress)) { - current = workInProgress.stateNode; - renderLanes = workInProgress.memoizedProps; - type = !didSuspendOrErrorDEV; - newProps = null; - nextResource = hydrationParentFiber; - if (null !== nextResource) switch(nextResource.tag){ - case 3: - type && (type = diffHydratedTextForDevWarnings(current, renderLanes, newProps), null !== type && (buildHydrationDiffNode(workInProgress, 0).serverProps = type)); - break; - case 27: - case 5: - newProps = nextResource.memoizedProps, type && (type = diffHydratedTextForDevWarnings(current, renderLanes, newProps), null !== type && (buildHydrationDiffNode(workInProgress, 0).serverProps = type)); - } - current[internalInstanceKey] = workInProgress; - current = current.nodeValue === renderLanes || null !== newProps && !0 === newProps.suppressHydrationWarning || checkForUnmatchedText(current.nodeValue, renderLanes) ? !0 : !1; - current || throwOnHydrationMismatch(workInProgress, !0); - } else type = renderLanes.ancestorInfo.current, null != type && validateTextNesting(newProps, type.tag, renderLanes.ancestorInfo.implicitRootScope), current = getOwnerDocumentFromRootContainer(current).createTextNode(newProps), current[internalInstanceKey] = workInProgress, workInProgress.stateNode = current; - } - bubbleProperties(workInProgress); - return null; - case 31: - renderLanes = workInProgress.memoizedState; - if (null === current || null !== current.memoizedState) { - newProps = popHydrationState(workInProgress); - if (null !== renderLanes) { - if (null === current) { - if (!newProps) throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React."); - current = workInProgress.memoizedState; - current = null !== current ? current.dehydrated : null; - if (!current) throw Error("Expected to have a hydrated activity instance. This error is likely caused by a bug in React. Please file an issue."); - current[internalInstanceKey] = workInProgress; - bubbleProperties(workInProgress); - (workInProgress.mode & ProfileMode) !== NoMode && null !== renderLanes && (current = workInProgress.child, null !== current && (workInProgress.treeBaseDuration -= current.treeBaseDuration)); - } else emitPendingHydrationWarnings(), resetHydrationState(), 0 === (workInProgress.flags & 128) && (renderLanes = workInProgress.memoizedState = null), workInProgress.flags |= 4, bubbleProperties(workInProgress), (workInProgress.mode & ProfileMode) !== NoMode && null !== renderLanes && (current = workInProgress.child, null !== current && (workInProgress.treeBaseDuration -= current.treeBaseDuration)); - current = !1; - } else renderLanes = upgradeHydrationErrorsToRecoverable(), null !== current && null !== current.memoizedState && (current.memoizedState.hydrationErrors = renderLanes), current = !0; - if (!current) { - if (workInProgress.flags & 256) return popSuspenseHandler(workInProgress), workInProgress; - popSuspenseHandler(workInProgress); - return null; - } - if (0 !== (workInProgress.flags & 128)) throw Error("Client rendering an Activity suspended it again. This is a bug in React."); - } - bubbleProperties(workInProgress); - return null; - case 13: - newProps = workInProgress.memoizedState; - if (null === current || null !== current.memoizedState && null !== current.memoizedState.dehydrated) { - type = newProps; - nextResource = popHydrationState(workInProgress); - if (null !== type && null !== type.dehydrated) { - if (null === current) { - if (!nextResource) throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React."); - nextResource = workInProgress.memoizedState; - nextResource = null !== nextResource ? nextResource.dehydrated : null; - if (!nextResource) throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue."); - nextResource[internalInstanceKey] = workInProgress; - bubbleProperties(workInProgress); - (workInProgress.mode & ProfileMode) !== NoMode && null !== type && (type = workInProgress.child, null !== type && (workInProgress.treeBaseDuration -= type.treeBaseDuration)); - } else emitPendingHydrationWarnings(), resetHydrationState(), 0 === (workInProgress.flags & 128) && (type = workInProgress.memoizedState = null), workInProgress.flags |= 4, bubbleProperties(workInProgress), (workInProgress.mode & ProfileMode) !== NoMode && null !== type && (type = workInProgress.child, null !== type && (workInProgress.treeBaseDuration -= type.treeBaseDuration)); - type = !1; - } else type = upgradeHydrationErrorsToRecoverable(), null !== current && null !== current.memoizedState && (current.memoizedState.hydrationErrors = type), type = !0; - if (!type) { - if (workInProgress.flags & 256) return popSuspenseHandler(workInProgress), workInProgress; - popSuspenseHandler(workInProgress); - return null; - } - } - popSuspenseHandler(workInProgress); - if (0 !== (workInProgress.flags & 128)) return workInProgress.lanes = renderLanes, (workInProgress.mode & ProfileMode) !== NoMode && transferActualDuration(workInProgress), workInProgress; - renderLanes = null !== newProps; - current = null !== current && null !== current.memoizedState; - renderLanes && (newProps = workInProgress.child, type = null, null !== newProps.alternate && null !== newProps.alternate.memoizedState && null !== newProps.alternate.memoizedState.cachePool && (type = newProps.alternate.memoizedState.cachePool.pool), nextResource = null, null !== newProps.memoizedState && null !== newProps.memoizedState.cachePool && (nextResource = newProps.memoizedState.cachePool.pool), nextResource !== type && (newProps.flags |= 2048)); - renderLanes !== current && renderLanes && (workInProgress.child.flags |= 8192); - scheduleRetryEffect(workInProgress, workInProgress.updateQueue); - bubbleProperties(workInProgress); - (workInProgress.mode & ProfileMode) !== NoMode && renderLanes && (current = workInProgress.child, null !== current && (workInProgress.treeBaseDuration -= current.treeBaseDuration)); - return null; - case 4: - return popHostContainer(workInProgress), null === current && listenToAllSupportedEvents(workInProgress.stateNode.containerInfo), workInProgress.flags |= 67108864, bubbleProperties(workInProgress), null; - case 10: - return popProvider(workInProgress.type, workInProgress), bubbleProperties(workInProgress), null; - case 19: - popSuspenseListContext(workInProgress); - newProps = workInProgress.memoizedState; - if (null === newProps) return bubbleProperties(workInProgress), null; - type = 0 !== (workInProgress.flags & 128); - nextResource = newProps.rendering; - if (null === nextResource) if (type) cutOffTailIfNeeded(newProps, !1); - else { - if (workInProgressRootExitStatus !== RootInProgress || null !== current && 0 !== (current.flags & 128)) for(current = workInProgress.child; null !== current;){ - nextResource = findFirstSuspended(current); - if (null !== nextResource) { - workInProgress.flags |= 128; - cutOffTailIfNeeded(newProps, !1); - current = nextResource.updateQueue; - workInProgress.updateQueue = current; - scheduleRetryEffect(workInProgress, current); - workInProgress.subtreeFlags = 0; - current = renderLanes; - for(renderLanes = workInProgress.child; null !== renderLanes;)resetWorkInProgress(renderLanes, current), renderLanes = renderLanes.sibling; - pushSuspenseListContext(workInProgress, suspenseStackCursor.current & SubtreeSuspenseContextMask | ForceSuspenseFallback); - isHydrating && pushTreeFork(workInProgress, newProps.treeForkCount); - return workInProgress.child; - } - current = current.sibling; - } - null !== newProps.tail && now$1() > workInProgressRootRenderTargetTime && (workInProgress.flags |= 128, type = !0, cutOffTailIfNeeded(newProps, !1), workInProgress.lanes = 4194304); - } - else { - if (!type) if (current = findFirstSuspended(nextResource), null !== current) { - if (workInProgress.flags |= 128, type = !0, current = current.updateQueue, workInProgress.updateQueue = current, scheduleRetryEffect(workInProgress, current), cutOffTailIfNeeded(newProps, !0), null === newProps.tail && "collapsed" !== newProps.tailMode && "visible" !== newProps.tailMode && !nextResource.alternate && !isHydrating) return bubbleProperties(workInProgress), null; - } else 2 * now$1() - newProps.renderingStartTime > workInProgressRootRenderTargetTime && 536870912 !== renderLanes && (workInProgress.flags |= 128, type = !0, cutOffTailIfNeeded(newProps, !1), workInProgress.lanes = 4194304); - newProps.isBackwards ? (nextResource.sibling = workInProgress.child, workInProgress.child = nextResource) : (current = newProps.last, null !== current ? current.sibling = nextResource : workInProgress.child = nextResource, newProps.last = nextResource); - } - if (null !== newProps.tail) { - current = newProps.tail; - a: { - for(renderLanes = current; null !== renderLanes;){ - if (null !== renderLanes.alternate) { - renderLanes = !1; - break a; - } - renderLanes = renderLanes.sibling; - } - renderLanes = !0; - } - newProps.rendering = current; - newProps.tail = current.sibling; - newProps.renderingStartTime = now$1(); - current.sibling = null; - nextResource = suspenseStackCursor.current; - nextResource = type ? nextResource & SubtreeSuspenseContextMask | ForceSuspenseFallback : nextResource & SubtreeSuspenseContextMask; - "visible" === newProps.tailMode || "collapsed" === newProps.tailMode || !renderLanes || isHydrating ? pushSuspenseListContext(workInProgress, nextResource) : (renderLanes = nextResource, push(suspenseHandlerStackCursor, workInProgress, workInProgress), push(suspenseStackCursor, renderLanes, workInProgress), null === shellBoundary && (shellBoundary = workInProgress)); - isHydrating && pushTreeFork(workInProgress, newProps.treeForkCount); - return current; - } - bubbleProperties(workInProgress); - return null; - case 22: - case 23: - return popSuspenseHandler(workInProgress), popHiddenContext(workInProgress), newProps = null !== workInProgress.memoizedState, null !== current ? null !== current.memoizedState !== newProps && (workInProgress.flags |= 8192) : newProps && (workInProgress.flags |= 8192), newProps ? 0 !== (renderLanes & 536870912) && 0 === (workInProgress.flags & 128) && (bubbleProperties(workInProgress), workInProgress.subtreeFlags & 6 && (workInProgress.flags |= 8192)) : bubbleProperties(workInProgress), renderLanes = workInProgress.updateQueue, null !== renderLanes && scheduleRetryEffect(workInProgress, renderLanes.retryQueue), renderLanes = null, null !== current && null !== current.memoizedState && null !== current.memoizedState.cachePool && (renderLanes = current.memoizedState.cachePool.pool), newProps = null, null !== workInProgress.memoizedState && null !== workInProgress.memoizedState.cachePool && (newProps = workInProgress.memoizedState.cachePool.pool), newProps !== renderLanes && (workInProgress.flags |= 2048), null !== current && pop(resumedCache, workInProgress), null; - case 24: - return renderLanes = null, null !== current && (renderLanes = current.memoizedState.cache), workInProgress.memoizedState.cache !== renderLanes && (workInProgress.flags |= 2048), popProvider(CacheContext, workInProgress), bubbleProperties(workInProgress), null; - case 25: - return null; - case 30: - return workInProgress.flags |= 33554432, bubbleProperties(workInProgress), null; - } - throw Error("Unknown unit of work tag (" + workInProgress.tag + "). This error is likely caused by a bug in React. Please file an issue."); - } - function unwindWork(current, workInProgress) { - popTreeContext(workInProgress); - switch(workInProgress.tag){ - case 1: - return current = workInProgress.flags, current & 65536 ? (workInProgress.flags = current & -65537 | 128, (workInProgress.mode & ProfileMode) !== NoMode && transferActualDuration(workInProgress), workInProgress) : null; - case 3: - return popProvider(CacheContext, workInProgress), popHostContainer(workInProgress), current = workInProgress.flags, 0 !== (current & 65536) && 0 === (current & 128) ? (workInProgress.flags = current & -65537 | 128, workInProgress) : null; - case 26: - case 27: - case 5: - return popHostContext(workInProgress), null; - case 31: - if (null !== workInProgress.memoizedState) { - popSuspenseHandler(workInProgress); - if (null === workInProgress.alternate) throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue."); - resetHydrationState(); - } - current = workInProgress.flags; - return current & 65536 ? (workInProgress.flags = current & -65537 | 128, (workInProgress.mode & ProfileMode) !== NoMode && transferActualDuration(workInProgress), workInProgress) : null; - case 13: - popSuspenseHandler(workInProgress); - current = workInProgress.memoizedState; - if (null !== current && null !== current.dehydrated) { - if (null === workInProgress.alternate) throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue."); - resetHydrationState(); - } - current = workInProgress.flags; - return current & 65536 ? (workInProgress.flags = current & -65537 | 128, (workInProgress.mode & ProfileMode) !== NoMode && transferActualDuration(workInProgress), workInProgress) : null; - case 19: - return popSuspenseListContext(workInProgress), current = workInProgress.flags, current & 65536 ? (workInProgress.flags = current & -65537 | 128, current = workInProgress.memoizedState, null !== current && (current.rendering = null, current.tail = null), workInProgress.flags |= 4, workInProgress) : null; - case 4: - return popHostContainer(workInProgress), null; - case 10: - return popProvider(workInProgress.type, workInProgress), null; - case 22: - case 23: - return popSuspenseHandler(workInProgress), popHiddenContext(workInProgress), null !== current && pop(resumedCache, workInProgress), current = workInProgress.flags, current & 65536 ? (workInProgress.flags = current & -65537 | 128, (workInProgress.mode & ProfileMode) !== NoMode && transferActualDuration(workInProgress), workInProgress) : null; - case 24: - return popProvider(CacheContext, workInProgress), null; - case 25: - return null; - default: - return null; - } - } - function unwindInterruptedWork(current, interruptedWork) { - popTreeContext(interruptedWork); - switch(interruptedWork.tag){ - case 3: - popProvider(CacheContext, interruptedWork); - popHostContainer(interruptedWork); - break; - case 26: - case 27: - case 5: - popHostContext(interruptedWork); - break; - case 4: - popHostContainer(interruptedWork); - break; - case 31: - null !== interruptedWork.memoizedState && popSuspenseHandler(interruptedWork); - break; - case 13: - popSuspenseHandler(interruptedWork); - break; - case 19: - popSuspenseListContext(interruptedWork); - break; - case 10: - popProvider(interruptedWork.type, interruptedWork); - break; - case 22: - case 23: - popSuspenseHandler(interruptedWork); - popHiddenContext(interruptedWork); - null !== current && pop(resumedCache, interruptedWork); - break; - case 24: - popProvider(CacheContext, interruptedWork); - } - } - function shouldProfile(current) { - return (current.mode & ProfileMode) !== NoMode; - } - function commitHookLayoutEffects(finishedWork, hookFlags) { - shouldProfile(finishedWork) ? (startEffectTimer(), commitHookEffectListMount(hookFlags, finishedWork), recordEffectDuration()) : commitHookEffectListMount(hookFlags, finishedWork); - } - function commitHookLayoutUnmountEffects(finishedWork, nearestMountedAncestor, hookFlags) { - shouldProfile(finishedWork) ? (startEffectTimer(), commitHookEffectListUnmount(hookFlags, finishedWork, nearestMountedAncestor), recordEffectDuration()) : commitHookEffectListUnmount(hookFlags, finishedWork, nearestMountedAncestor); - } - function commitHookEffectListMount(flags, finishedWork) { - try { - var updateQueue = finishedWork.updateQueue, lastEffect = null !== updateQueue ? updateQueue.lastEffect : null; - if (null !== lastEffect) { - var firstEffect = lastEffect.next; - updateQueue = firstEffect; - do { - if ((updateQueue.tag & flags) === flags && (lastEffect = void 0, (flags & Insertion) !== NoFlags && (isRunningInsertionEffect = !0), lastEffect = runWithFiberInDEV(finishedWork, callCreateInDEV, updateQueue), (flags & Insertion) !== NoFlags && (isRunningInsertionEffect = !1), void 0 !== lastEffect && "function" !== typeof lastEffect)) { - var hookName = void 0; - hookName = 0 !== (updateQueue.tag & Layout) ? "useLayoutEffect" : 0 !== (updateQueue.tag & Insertion) ? "useInsertionEffect" : "useEffect"; - var addendum = void 0; - addendum = null === lastEffect ? " You returned null. If your effect does not require clean up, return undefined (or nothing)." : "function" === typeof lastEffect.then ? "\n\nIt looks like you wrote " + hookName + "(async () => ...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:\n\n" + hookName + "(() => {\n async function fetchData() {\n // You can await here\n const response = await MyAPI.getData(someId);\n // ...\n }\n fetchData();\n}, [someId]); // Or [] if effect doesn't need props or state\n\nLearn more about data fetching with Hooks: https://react.dev/link/hooks-data-fetching" : " You returned: " + lastEffect; - runWithFiberInDEV(finishedWork, function(n, a) { - console.error("%s must not return anything besides a function, which is used for clean-up.%s", n, a); - }, hookName, addendum); - } - updateQueue = updateQueue.next; - }while (updateQueue !== firstEffect) - } - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - function commitHookEffectListUnmount(flags, finishedWork, nearestMountedAncestor) { - try { - var updateQueue = finishedWork.updateQueue, lastEffect = null !== updateQueue ? updateQueue.lastEffect : null; - if (null !== lastEffect) { - var firstEffect = lastEffect.next; - updateQueue = firstEffect; - do { - if ((updateQueue.tag & flags) === flags) { - var inst = updateQueue.inst, destroy = inst.destroy; - void 0 !== destroy && (inst.destroy = void 0, (flags & Insertion) !== NoFlags && (isRunningInsertionEffect = !0), lastEffect = finishedWork, runWithFiberInDEV(lastEffect, callDestroyInDEV, lastEffect, nearestMountedAncestor, destroy), (flags & Insertion) !== NoFlags && (isRunningInsertionEffect = !1)); - } - updateQueue = updateQueue.next; - }while (updateQueue !== firstEffect) - } - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - function commitHookPassiveMountEffects(finishedWork, hookFlags) { - shouldProfile(finishedWork) ? (startEffectTimer(), commitHookEffectListMount(hookFlags, finishedWork), recordEffectDuration()) : commitHookEffectListMount(hookFlags, finishedWork); - } - function commitHookPassiveUnmountEffects(finishedWork, nearestMountedAncestor, hookFlags) { - shouldProfile(finishedWork) ? (startEffectTimer(), commitHookEffectListUnmount(hookFlags, finishedWork, nearestMountedAncestor), recordEffectDuration()) : commitHookEffectListUnmount(hookFlags, finishedWork, nearestMountedAncestor); - } - function commitClassCallbacks(finishedWork) { - var updateQueue = finishedWork.updateQueue; - if (null !== updateQueue) { - var instance = finishedWork.stateNode; - finishedWork.type.defaultProps || "ref" in finishedWork.memoizedProps || didWarnAboutReassigningProps || (instance.props !== finishedWork.memoizedProps && console.error("Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance"), instance.state !== finishedWork.memoizedState && console.error("Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance")); - try { - runWithFiberInDEV(finishedWork, commitCallbacks, updateQueue, instance); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - } - function callGetSnapshotBeforeUpdates(instance, prevProps, prevState) { - return instance.getSnapshotBeforeUpdate(prevProps, prevState); - } - function commitClassSnapshot(finishedWork, current) { - var prevProps = current.memoizedProps, prevState = current.memoizedState; - current = finishedWork.stateNode; - finishedWork.type.defaultProps || "ref" in finishedWork.memoizedProps || didWarnAboutReassigningProps || (current.props !== finishedWork.memoizedProps && console.error("Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance"), current.state !== finishedWork.memoizedState && console.error("Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance")); - try { - var resolvedPrevProps = resolveClassComponentProps(finishedWork.type, prevProps); - var snapshot = runWithFiberInDEV(finishedWork, callGetSnapshotBeforeUpdates, current, resolvedPrevProps, prevState); - prevProps = didWarnAboutUndefinedSnapshotBeforeUpdate; - void 0 !== snapshot || prevProps.has(finishedWork.type) || (prevProps.add(finishedWork.type), runWithFiberInDEV(finishedWork, function() { - console.error("%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.", getComponentNameFromFiber(finishedWork)); - })); - current.__reactInternalSnapshotBeforeUpdate = snapshot; - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - function safelyCallComponentWillUnmount(current, nearestMountedAncestor, instance) { - instance.props = resolveClassComponentProps(current.type, current.memoizedProps); - instance.state = current.memoizedState; - shouldProfile(current) ? (startEffectTimer(), runWithFiberInDEV(current, callComponentWillUnmountInDEV, current, nearestMountedAncestor, instance), recordEffectDuration()) : runWithFiberInDEV(current, callComponentWillUnmountInDEV, current, nearestMountedAncestor, instance); - } - function commitAttachRef(finishedWork) { - var ref = finishedWork.ref; - if (null !== ref) { - switch(finishedWork.tag){ - case 26: - case 27: - case 5: - var instanceToUse = finishedWork.stateNode; - break; - case 30: - instanceToUse = finishedWork.stateNode; - var name = getViewTransitionName(finishedWork.memoizedProps, instanceToUse); - if (null === instanceToUse.ref || instanceToUse.ref.name !== name) instanceToUse.ref = createViewTransitionInstance(name); - instanceToUse = instanceToUse.ref; - break; - case 7: - null === finishedWork.stateNode && (instanceToUse = new FragmentInstance(finishedWork), finishedWork.stateNode = instanceToUse); - instanceToUse = finishedWork.stateNode; - break; - default: - instanceToUse = finishedWork.stateNode; - } - if ("function" === typeof ref) if (shouldProfile(finishedWork)) try { - startEffectTimer(), finishedWork.refCleanup = ref(instanceToUse); - } finally{ - recordEffectDuration(); - } - else finishedWork.refCleanup = ref(instanceToUse); - else "string" === typeof ref ? console.error("String refs are no longer supported.") : ref.hasOwnProperty("current") || console.error("Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().", getComponentNameFromFiber(finishedWork)), ref.current = instanceToUse; - } - } - function safelyAttachRef(current, nearestMountedAncestor) { - try { - runWithFiberInDEV(current, commitAttachRef, current); - } catch (error) { - captureCommitPhaseError(current, nearestMountedAncestor, error); - } - } - function safelyDetachRef(current, nearestMountedAncestor) { - var ref = current.ref, refCleanup = current.refCleanup; - if (null !== ref) if ("function" === typeof refCleanup) try { - if (shouldProfile(current)) try { - startEffectTimer(), runWithFiberInDEV(current, refCleanup); - } finally{ - recordEffectDuration(current); - } - else runWithFiberInDEV(current, refCleanup); - } catch (error) { - captureCommitPhaseError(current, nearestMountedAncestor, error); - } finally{ - current.refCleanup = null, current = current.alternate, null != current && (current.refCleanup = null); - } - else if ("function" === typeof ref) try { - if (shouldProfile(current)) try { - startEffectTimer(), runWithFiberInDEV(current, ref, null); - } finally{ - recordEffectDuration(current); - } - else runWithFiberInDEV(current, ref, null); - } catch (error$7) { - captureCommitPhaseError(current, nearestMountedAncestor, error$7); - } - else ref.current = null; - } - function commitProfiler(finishedWork, current, commitStartTime, effectDuration) { - var _finishedWork$memoize = finishedWork.memoizedProps, id = _finishedWork$memoize.id, onCommit = _finishedWork$memoize.onCommit; - _finishedWork$memoize = _finishedWork$memoize.onRender; - current = null === current ? "mount" : "update"; - currentUpdateIsNested && (current = "nested-update"); - "function" === typeof _finishedWork$memoize && _finishedWork$memoize(id, current, finishedWork.actualDuration, finishedWork.treeBaseDuration, finishedWork.actualStartTime, commitStartTime); - "function" === typeof onCommit && onCommit(id, current, effectDuration, commitStartTime); - } - function commitProfilerPostCommitImpl(finishedWork, current, commitStartTime, passiveEffectDuration) { - var _finishedWork$memoize2 = finishedWork.memoizedProps; - finishedWork = _finishedWork$memoize2.id; - _finishedWork$memoize2 = _finishedWork$memoize2.onPostCommit; - current = null === current ? "mount" : "update"; - currentUpdateIsNested && (current = "nested-update"); - "function" === typeof _finishedWork$memoize2 && _finishedWork$memoize2(finishedWork, current, passiveEffectDuration, commitStartTime); - } - function commitHostMount(finishedWork) { - var type = finishedWork.type, props = finishedWork.memoizedProps, instance = finishedWork.stateNode; - try { - runWithFiberInDEV(finishedWork, commitMount, instance, type, props, finishedWork); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - function commitHostUpdate(finishedWork, newProps, oldProps) { - try { - runWithFiberInDEV(finishedWork, commitUpdate, finishedWork.stateNode, finishedWork.type, oldProps, newProps, finishedWork); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - function commitNewChildToFragmentInstances(fiber, parentFragmentInstances) { - if (5 === fiber.tag && null === fiber.alternate && null !== parentFragmentInstances) for(var i = 0; i < parentFragmentInstances.length; i++)commitNewChildToFragmentInstance(fiber.stateNode, parentFragmentInstances[i]); - } - function commitFragmentInstanceDeletionEffects(fiber) { - for(var parent = fiber.return; null !== parent;){ - if (isFragmentInstanceParent(parent)) { - var childInstance = fiber.stateNode, eventListeners = parent.stateNode._eventListeners; - if (null !== eventListeners) for(var i = 0; i < eventListeners.length; i++){ - var _eventListeners$i3 = eventListeners[i]; - childInstance.removeEventListener(_eventListeners$i3.type, _eventListeners$i3.listener, _eventListeners$i3.optionsOrUseCapture); - } - } - if (isHostParent(parent)) break; - parent = parent.return; - } - } - function isHostParent(fiber) { - return 5 === fiber.tag || 3 === fiber.tag || 26 === fiber.tag || 27 === fiber.tag && isSingletonScope(fiber.type) || 4 === fiber.tag; - } - function isFragmentInstanceParent(fiber) { - return fiber && 7 === fiber.tag && null !== fiber.stateNode; - } - function getHostSibling(fiber) { - a: for(;;){ - for(; null === fiber.sibling;){ - if (null === fiber.return || isHostParent(fiber.return)) return null; - fiber = fiber.return; - } - fiber.sibling.return = fiber.return; - for(fiber = fiber.sibling; 5 !== fiber.tag && 6 !== fiber.tag && 18 !== fiber.tag;){ - if (27 === fiber.tag && isSingletonScope(fiber.type)) continue a; - if (fiber.flags & 2) continue a; - if (null === fiber.child || 4 === fiber.tag) continue a; - else fiber.child.return = fiber, fiber = fiber.child; - } - if (!(fiber.flags & 2)) return fiber.stateNode; - } - } - function insertOrAppendPlacementNodeIntoContainer(node, before, parent, parentFragmentInstances) { - var tag = node.tag; - if (5 === tag || 6 === tag) tag = node.stateNode, before ? (warnForReactChildrenConflict(parent), (9 === parent.nodeType ? parent.body : "HTML" === parent.nodeName ? parent.ownerDocument.body : parent).insertBefore(tag, before)) : (warnForReactChildrenConflict(parent), before = 9 === parent.nodeType ? parent.body : "HTML" === parent.nodeName ? parent.ownerDocument.body : parent, before.appendChild(tag), tag = parent._reactRootContainer, null !== tag && void 0 !== tag || null !== before.onclick || (before.onclick = noop$1)), commitNewChildToFragmentInstances(node, parentFragmentInstances), viewTransitionMutationContext = !0; - else if (4 !== tag && (27 === tag && isSingletonScope(node.type) && (parent = node.stateNode, before = null), node = node.child, null !== node)) for(insertOrAppendPlacementNodeIntoContainer(node, before, parent, parentFragmentInstances), node = node.sibling; null !== node;)insertOrAppendPlacementNodeIntoContainer(node, before, parent, parentFragmentInstances), node = node.sibling; - } - function insertOrAppendPlacementNode(node, before, parent, parentFragmentInstances) { - var tag = node.tag; - if (5 === tag || 6 === tag) tag = node.stateNode, before ? parent.insertBefore(tag, before) : parent.appendChild(tag), commitNewChildToFragmentInstances(node, parentFragmentInstances), viewTransitionMutationContext = !0; - else if (4 !== tag && (27 === tag && isSingletonScope(node.type) && (parent = node.stateNode), node = node.child, null !== node)) for(insertOrAppendPlacementNode(node, before, parent, parentFragmentInstances), node = node.sibling; null !== node;)insertOrAppendPlacementNode(node, before, parent, parentFragmentInstances), node = node.sibling; - } - function commitPlacement(finishedWork) { - for(var hostParentFiber, parentFragmentInstances = null, parentFiber = finishedWork.return; null !== parentFiber;){ - if (isFragmentInstanceParent(parentFiber)) { - var fragmentInstance = parentFiber.stateNode; - null === parentFragmentInstances ? parentFragmentInstances = [ - fragmentInstance - ] : parentFragmentInstances.push(fragmentInstance); - } - if (isHostParent(parentFiber)) { - hostParentFiber = parentFiber; - break; - } - parentFiber = parentFiber.return; - } - if (null == hostParentFiber) throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue."); - switch(hostParentFiber.tag){ - case 27: - hostParentFiber = hostParentFiber.stateNode; - parentFiber = getHostSibling(finishedWork); - insertOrAppendPlacementNode(finishedWork, parentFiber, hostParentFiber, parentFragmentInstances); - break; - case 5: - parentFiber = hostParentFiber.stateNode; - hostParentFiber.flags & 32 && (resetTextContent(parentFiber), hostParentFiber.flags &= -33); - hostParentFiber = getHostSibling(finishedWork); - insertOrAppendPlacementNode(finishedWork, hostParentFiber, parentFiber, parentFragmentInstances); - break; - case 3: - case 4: - hostParentFiber = hostParentFiber.stateNode.containerInfo; - parentFiber = getHostSibling(finishedWork); - insertOrAppendPlacementNodeIntoContainer(finishedWork, parentFiber, hostParentFiber, parentFragmentInstances); - break; - default: - throw Error("Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue."); - } - } - function commitHostSingletonAcquisition(finishedWork) { - var singleton = finishedWork.stateNode, props = finishedWork.memoizedProps; - try { - runWithFiberInDEV(finishedWork, acquireSingletonInstance, finishedWork.type, props, singleton, finishedWork); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - function trackEnterViewTransitions(placement) { - if (30 === placement.tag || 0 !== (placement.subtreeFlags & 33554432)) shouldStartViewTransition = !0; - } - function pushViewTransitionCancelableScope() { - var prevChildren = viewTransitionCancelableChildren; - viewTransitionCancelableChildren = null; - return prevChildren; - } - function applyViewTransitionToHostInstances(fiber, name, className, collectMeasurements, stopAtNestedViewTransitions) { - viewTransitionHostInstanceIdx = 0; - (name = applyViewTransitionToHostInstancesRecursive(fiber.child, name, className, collectMeasurements, stopAtNestedViewTransitions)) && null != fiber._debugTask && null === animatingTask && (animatingTask = fiber._debugTask); - return name; - } - function applyViewTransitionToHostInstancesRecursive(child, name, className, collectMeasurements, stopAtNestedViewTransitions) { - for(var inViewport = !1; null !== child;){ - if (5 === child.tag) { - var instance = child.stateNode; - if (null !== collectMeasurements) { - var measurement = measureInstance(instance); - collectMeasurements.push(measurement); - measurement.view && (inViewport = !0); - } else inViewport || measureInstance(instance).view && (inViewport = !0); - shouldStartViewTransition = !0; - applyViewTransitionName(instance, 0 === viewTransitionHostInstanceIdx ? name : name + "_" + viewTransitionHostInstanceIdx, className); - viewTransitionHostInstanceIdx++; - } else if (22 !== child.tag || null === child.memoizedState) 30 === child.tag && stopAtNestedViewTransitions || applyViewTransitionToHostInstancesRecursive(child.child, name, className, collectMeasurements, stopAtNestedViewTransitions) && (inViewport = !0); - child = child.sibling; - } - return inViewport; - } - function restoreViewTransitionOnHostInstances(child, stopAtNestedViewTransitions) { - for(; null !== child;){ - if (5 === child.tag) restoreViewTransitionName(child.stateNode, child.memoizedProps); - else if (22 !== child.tag || null === child.memoizedState) 30 === child.tag && stopAtNestedViewTransitions || restoreViewTransitionOnHostInstances(child.child, stopAtNestedViewTransitions); - child = child.sibling; - } - } - function commitAppearingPairViewTransitions(placement) { - if (0 !== (placement.subtreeFlags & 18874368)) for(placement = placement.child; null !== placement;){ - if (22 !== placement.tag || null === placement.memoizedState) { - if (commitAppearingPairViewTransitions(placement), 30 === placement.tag && 0 !== (placement.flags & 18874368) && placement.stateNode.paired) { - var props = placement.memoizedProps; - if (null == props.name || "auto" === props.name) throw Error("Found a pair with an auto name. This is a bug in React."); - var name = props.name; - props = getViewTransitionClassName(props.default, props.share); - "none" !== props && (applyViewTransitionToHostInstances(placement, name, props, null, !1) || restoreViewTransitionOnHostInstances(placement.child, !1)); - } - } - placement = placement.sibling; - } - } - function commitEnterViewTransitions(placement, gesture) { - if (30 === placement.tag) { - var state = placement.stateNode, props = placement.memoizedProps, name = getViewTransitionName(props, state), className = getViewTransitionClassName(props.default, state.paired ? props.share : props.enter); - "none" !== className ? applyViewTransitionToHostInstances(placement, name, className, null, !1) ? (commitAppearingPairViewTransitions(placement), state.paired || gesture || scheduleViewTransitionEvent(placement, props.onEnter)) : restoreViewTransitionOnHostInstances(placement.child, !1) : commitAppearingPairViewTransitions(placement); - } else if (0 !== (placement.subtreeFlags & 33554432)) for(placement = placement.child; null !== placement;)commitEnterViewTransitions(placement, gesture), placement = placement.sibling; - else commitAppearingPairViewTransitions(placement); - } - function commitDeletedPairViewTransitions(deletion) { - if (null !== appearingViewTransitions && 0 !== appearingViewTransitions.size) { - var pairs = appearingViewTransitions; - if (0 !== (deletion.subtreeFlags & 18874368)) for(deletion = deletion.child; null !== deletion;){ - if (22 !== deletion.tag || null === deletion.memoizedState) { - if (30 === deletion.tag && 0 !== (deletion.flags & 18874368)) { - var props = deletion.memoizedProps, name = props.name; - if (null != name && "auto" !== name) { - var pair = pairs.get(name); - if (void 0 !== pair) { - var className = getViewTransitionClassName(props.default, props.share); - "none" !== className && (applyViewTransitionToHostInstances(deletion, name, className, null, !1) ? (className = deletion.stateNode, pair.paired = className, className.paired = pair, scheduleViewTransitionEvent(deletion, props.onShare)) : restoreViewTransitionOnHostInstances(deletion.child, !1)); - pairs.delete(name); - if (0 === pairs.size) break; - } - } - } - commitDeletedPairViewTransitions(deletion); - } - deletion = deletion.sibling; - } - } - } - function commitExitViewTransitions(deletion) { - if (30 === deletion.tag) { - var props = deletion.memoizedProps, name = getViewTransitionName(props, deletion.stateNode), pair = null !== appearingViewTransitions ? appearingViewTransitions.get(name) : void 0, className = getViewTransitionClassName(props.default, void 0 !== pair ? props.share : props.exit); - "none" !== className && (applyViewTransitionToHostInstances(deletion, name, className, null, !1) ? void 0 !== pair ? (className = deletion.stateNode, pair.paired = className, className.paired = pair, appearingViewTransitions.delete(name), scheduleViewTransitionEvent(deletion, props.onShare)) : scheduleViewTransitionEvent(deletion, props.onExit) : restoreViewTransitionOnHostInstances(deletion.child, !1)); - null !== appearingViewTransitions && commitDeletedPairViewTransitions(deletion); - } else if (0 !== (deletion.subtreeFlags & 33554432)) for(deletion = deletion.child; null !== deletion;)commitExitViewTransitions(deletion), deletion = deletion.sibling; - else null !== appearingViewTransitions && commitDeletedPairViewTransitions(deletion); - } - function commitNestedViewTransitions(changedParent) { - for(changedParent = changedParent.child; null !== changedParent;){ - if (30 === changedParent.tag) { - var props = changedParent.memoizedProps, name = getViewTransitionName(props, changedParent.stateNode); - props = getViewTransitionClassName(props.default, props.update); - changedParent.flags &= -5; - "none" !== props && applyViewTransitionToHostInstances(changedParent, name, props, changedParent.memoizedState = [], !1); - } else 0 !== (changedParent.subtreeFlags & 33554432) && commitNestedViewTransitions(changedParent); - changedParent = changedParent.sibling; - } - } - function restorePairedViewTransitions(parent) { - if (0 !== (parent.subtreeFlags & 18874368)) for(parent = parent.child; null !== parent;){ - if (22 !== parent.tag || null === parent.memoizedState) { - if (30 === parent.tag && 0 !== (parent.flags & 18874368)) { - var instance = parent.stateNode; - null !== instance.paired && (instance.paired = null, restoreViewTransitionOnHostInstances(parent.child, !1)); - } - restorePairedViewTransitions(parent); - } - parent = parent.sibling; - } - } - function restoreEnterOrExitViewTransitions(fiber) { - if (30 === fiber.tag) fiber.stateNode.paired = null, restoreViewTransitionOnHostInstances(fiber.child, !1), restorePairedViewTransitions(fiber); - else if (0 !== (fiber.subtreeFlags & 33554432)) for(fiber = fiber.child; null !== fiber;)restoreEnterOrExitViewTransitions(fiber), fiber = fiber.sibling; - else restorePairedViewTransitions(fiber); - } - function restoreNestedViewTransitions(changedParent) { - for(changedParent = changedParent.child; null !== changedParent;)30 === changedParent.tag ? restoreViewTransitionOnHostInstances(changedParent.child, !1) : 0 !== (changedParent.subtreeFlags & 33554432) && restoreNestedViewTransitions(changedParent), changedParent = changedParent.sibling; - } - function measureViewTransitionHostInstancesRecursive(parentViewTransition, child, newName, oldName, className, previousMeasurements, stopAtNestedViewTransitions) { - for(var inViewport = !1; null !== child;){ - if (5 === child.tag) { - var instance = child.stateNode; - if (null !== previousMeasurements && viewTransitionHostInstanceIdx < previousMeasurements.length) { - var previousMeasurement = previousMeasurements[viewTransitionHostInstanceIdx], nextMeasurement = measureInstance(instance); - if (previousMeasurement.view || nextMeasurement.view) inViewport = !0; - var JSCompiler_temp; - if (JSCompiler_temp = 0 === (parentViewTransition.flags & 4)) if (nextMeasurement.clip) JSCompiler_temp = !0; - else { - JSCompiler_temp = previousMeasurement.rect; - var newRect = nextMeasurement.rect; - JSCompiler_temp = JSCompiler_temp.y !== newRect.y || JSCompiler_temp.x !== newRect.x || JSCompiler_temp.height !== newRect.height || JSCompiler_temp.width !== newRect.width; - } - JSCompiler_temp && (parentViewTransition.flags |= 4); - nextMeasurement.abs ? nextMeasurement = !previousMeasurement.abs : (previousMeasurement = previousMeasurement.rect, nextMeasurement = nextMeasurement.rect, nextMeasurement = previousMeasurement.height !== nextMeasurement.height || previousMeasurement.width !== nextMeasurement.width); - nextMeasurement && (parentViewTransition.flags |= 32); - } else parentViewTransition.flags |= 32; - 0 !== (parentViewTransition.flags & 4) && applyViewTransitionName(instance, 0 === viewTransitionHostInstanceIdx ? newName : newName + "_" + viewTransitionHostInstanceIdx, className); - inViewport && 0 !== (parentViewTransition.flags & 4) || (null === viewTransitionCancelableChildren && (viewTransitionCancelableChildren = []), viewTransitionCancelableChildren.push(instance, oldName, child.memoizedProps)); - viewTransitionHostInstanceIdx++; - } else if (22 !== child.tag || null === child.memoizedState) 30 === child.tag && stopAtNestedViewTransitions ? parentViewTransition.flags |= child.flags & 32 : measureViewTransitionHostInstancesRecursive(parentViewTransition, child.child, newName, oldName, className, previousMeasurements, stopAtNestedViewTransitions) && (inViewport = !0); - child = child.sibling; - } - return inViewport; - } - function measureNestedViewTransitions(changedParent, gesture) { - for(changedParent = changedParent.child; null !== changedParent;){ - if (30 === changedParent.tag) { - var props = changedParent.memoizedProps, state = changedParent.stateNode, name = getViewTransitionName(props, state), className = getViewTransitionClassName(props.default, props.update); - if (gesture) { - state = state.clones; - var previousMeasurements = null === state ? null : state.map(measureClonedInstance); - } else previousMeasurements = changedParent.memoizedState, changedParent.memoizedState = null; - state = changedParent; - var child = changedParent.child, newName = name; - viewTransitionHostInstanceIdx = 0; - className = measureViewTransitionHostInstancesRecursive(state, child, newName, name, className, previousMeasurements, !1); - 0 !== (changedParent.flags & 4) && className && (gesture || scheduleViewTransitionEvent(changedParent, props.onUpdate)); - } else 0 !== (changedParent.subtreeFlags & 33554432) && measureNestedViewTransitions(changedParent, gesture); - changedParent = changedParent.sibling; - } - } - function trackNamedViewTransition(fiber) { - var name = fiber.memoizedProps.name; - if (null != name && "auto" !== name) { - var existing = mountedNamedViewTransitions.get(name); - if (void 0 !== existing) { - if (existing !== fiber && existing !== fiber.alternate && !didWarnAboutName[name]) { - didWarnAboutName[name] = !0; - var stringifiedName = JSON.stringify(name); - runWithFiberInDEV(fiber, function() { - console.error("There are two <ViewTransition name=%s> components with the same name mounted at the same time. This is not supported and will cause View Transitions to error. Try to use a more unique name e.g. by using a namespace prefix and adding the id of an item to the name.", stringifiedName); - }); - runWithFiberInDEV(existing, function() { - console.error("The existing <ViewTransition name=%s> duplicate has this stack trace.", stringifiedName); - }); - } - } else mountedNamedViewTransitions.set(name, fiber); - } - } - function untrackNamedViewTransition(fiber) { - var name = fiber.memoizedProps.name; - if (null != name && "auto" !== name) { - var existing = mountedNamedViewTransitions.get(name); - void 0 === existing || existing !== fiber && existing !== fiber.alternate || mountedNamedViewTransitions.delete(name); - } - } - function isHydratingParent(current, finishedWork) { - return 31 === finishedWork.tag ? (finishedWork = finishedWork.memoizedState, null !== current.memoizedState && null === finishedWork) : 13 === finishedWork.tag ? (current = current.memoizedState, finishedWork = finishedWork.memoizedState, null !== current && null !== current.dehydrated && (null === finishedWork || null === finishedWork.dehydrated)) : 3 === finishedWork.tag ? current.memoizedState.isDehydrated && 0 === (finishedWork.flags & 256) : !1; - } - function commitBeforeMutationEffects(root, firstChild, committedLanes) { - root = root.containerInfo; - eventsEnabled = _enabled; - root = getActiveElementDeep(root); - if (hasSelectionCapabilities(root)) { - if ("selectionStart" in root) var JSCompiler_temp = { - start: root.selectionStart, - end: root.selectionEnd - }; - else a: { - JSCompiler_temp = (JSCompiler_temp = root.ownerDocument) && JSCompiler_temp.defaultView || window; - var selection = JSCompiler_temp.getSelection && JSCompiler_temp.getSelection(); - if (selection && 0 !== selection.rangeCount) { - JSCompiler_temp = selection.anchorNode; - var anchorOffset = selection.anchorOffset, focusNode = selection.focusNode; - selection = selection.focusOffset; - try { - JSCompiler_temp.nodeType, focusNode.nodeType; - } catch (e$2) { - JSCompiler_temp = null; - break a; - } - var length = 0, start = -1, end = -1, indexWithinAnchor = 0, indexWithinFocus = 0, node = root, parentNode = null; - b: for(;;){ - for(var next;;){ - node !== JSCompiler_temp || 0 !== anchorOffset && 3 !== node.nodeType || (start = length + anchorOffset); - node !== focusNode || 0 !== selection && 3 !== node.nodeType || (end = length + selection); - 3 === node.nodeType && (length += node.nodeValue.length); - if (null === (next = node.firstChild)) break; - parentNode = node; - node = next; - } - for(;;){ - if (node === root) break b; - parentNode === JSCompiler_temp && ++indexWithinAnchor === anchorOffset && (start = length); - parentNode === focusNode && ++indexWithinFocus === selection && (end = length); - if (null !== (next = node.nextSibling)) break; - node = parentNode; - parentNode = node.parentNode; - } - node = next; - } - JSCompiler_temp = -1 === start || -1 === end ? null : { - start: start, - end: end - }; - } else JSCompiler_temp = null; - } - JSCompiler_temp = JSCompiler_temp || { - start: 0, - end: 0 - }; - } else JSCompiler_temp = null; - selectionInformation = { - focusedElem: root, - selectionRange: JSCompiler_temp - }; - _enabled = !1; - committedLanes = (committedLanes & 335544064) === committedLanes; - nextEffect = firstChild; - for(firstChild = committedLanes ? 9270 : 1028; null !== nextEffect;){ - root = nextEffect; - if (committedLanes && (JSCompiler_temp = root.deletions, null !== JSCompiler_temp)) for(anchorOffset = 0; anchorOffset < JSCompiler_temp.length; anchorOffset++)committedLanes && commitExitViewTransitions(JSCompiler_temp[anchorOffset]); - if (null === root.alternate && 0 !== (root.flags & 2)) committedLanes && trackEnterViewTransitions(root), commitBeforeMutationEffects_complete(committedLanes); - else { - if (22 === root.tag) { - if (JSCompiler_temp = root.alternate, null !== root.memoizedState) { - null !== JSCompiler_temp && null === JSCompiler_temp.memoizedState && committedLanes && commitExitViewTransitions(JSCompiler_temp); - commitBeforeMutationEffects_complete(committedLanes); - continue; - } else if (null !== JSCompiler_temp && null !== JSCompiler_temp.memoizedState) { - committedLanes && trackEnterViewTransitions(root); - commitBeforeMutationEffects_complete(committedLanes); - continue; - } - } - JSCompiler_temp = root.child; - 0 !== (root.subtreeFlags & firstChild) && null !== JSCompiler_temp ? (JSCompiler_temp.return = root, nextEffect = JSCompiler_temp) : (committedLanes && commitNestedViewTransitions(root), commitBeforeMutationEffects_complete(committedLanes)); - } - } - appearingViewTransitions = null; - } - function commitBeforeMutationEffects_complete(isViewTransitionEligible$jscomp$0) { - for(; null !== nextEffect;){ - var fiber = nextEffect, finishedWork = fiber, isViewTransitionEligible = isViewTransitionEligible$jscomp$0, current = finishedWork.alternate, flags = finishedWork.flags; - switch(finishedWork.tag){ - case 0: - case 11: - case 15: - if (0 !== (flags & 4) && (isViewTransitionEligible = finishedWork.updateQueue, isViewTransitionEligible = null !== isViewTransitionEligible ? isViewTransitionEligible.events : null, null !== isViewTransitionEligible)) for(finishedWork = 0; finishedWork < isViewTransitionEligible.length; finishedWork++)current = isViewTransitionEligible[finishedWork], current.ref.impl = current.nextImpl; - break; - case 1: - 0 !== (flags & 1024) && null !== current && commitClassSnapshot(finishedWork, current); - break; - case 3: - if (0 !== (flags & 1024)) { - if (isViewTransitionEligible = finishedWork.stateNode.containerInfo, finishedWork = isViewTransitionEligible.nodeType, 9 === finishedWork) clearContainerSparingly(isViewTransitionEligible); - else if (1 === finishedWork) switch(isViewTransitionEligible.nodeName){ - case "HEAD": - case "HTML": - case "BODY": - clearContainerSparingly(isViewTransitionEligible); - break; - default: - isViewTransitionEligible.textContent = ""; - } - } - break; - case 5: - case 26: - case 27: - case 6: - case 4: - case 17: - break; - case 30: - isViewTransitionEligible && null !== current && (isViewTransitionEligible = current, current = finishedWork, finishedWork = getViewTransitionName(isViewTransitionEligible.memoizedProps, isViewTransitionEligible.stateNode), current = current.memoizedProps, current = getViewTransitionClassName(current.default, current.update), "none" !== current && applyViewTransitionToHostInstances(isViewTransitionEligible, finishedWork, current, isViewTransitionEligible.memoizedState = [], !0)); - break; - default: - if (0 !== (flags & 1024)) throw Error("This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue."); - } - isViewTransitionEligible = fiber.sibling; - if (null !== isViewTransitionEligible) { - isViewTransitionEligible.return = fiber.return; - nextEffect = isViewTransitionEligible; - break; - } - nextEffect = fiber.return; - } - } - function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) { - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(), flags = finishedWork.flags; - switch(finishedWork.tag){ - case 0: - case 11: - case 15: - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - flags & 4 && commitHookLayoutEffects(finishedWork, Layout | HasEffect); - break; - case 1: - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - if (flags & 4) if (finishedRoot = finishedWork.stateNode, null === current) finishedWork.type.defaultProps || "ref" in finishedWork.memoizedProps || didWarnAboutReassigningProps || (finishedRoot.props !== finishedWork.memoizedProps && console.error("Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance"), finishedRoot.state !== finishedWork.memoizedState && console.error("Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance")), shouldProfile(finishedWork) ? (startEffectTimer(), runWithFiberInDEV(finishedWork, callComponentDidMountInDEV, finishedWork, finishedRoot), recordEffectDuration()) : runWithFiberInDEV(finishedWork, callComponentDidMountInDEV, finishedWork, finishedRoot); - else { - var prevProps = resolveClassComponentProps(finishedWork.type, current.memoizedProps); - current = current.memoizedState; - finishedWork.type.defaultProps || "ref" in finishedWork.memoizedProps || didWarnAboutReassigningProps || (finishedRoot.props !== finishedWork.memoizedProps && console.error("Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance"), finishedRoot.state !== finishedWork.memoizedState && console.error("Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", getComponentNameFromFiber(finishedWork) || "instance")); - shouldProfile(finishedWork) ? (startEffectTimer(), runWithFiberInDEV(finishedWork, callComponentDidUpdateInDEV, finishedWork, finishedRoot, prevProps, current, finishedRoot.__reactInternalSnapshotBeforeUpdate), recordEffectDuration()) : runWithFiberInDEV(finishedWork, callComponentDidUpdateInDEV, finishedWork, finishedRoot, prevProps, current, finishedRoot.__reactInternalSnapshotBeforeUpdate); - } - flags & 64 && commitClassCallbacks(finishedWork); - flags & 512 && safelyAttachRef(finishedWork, finishedWork.return); - break; - case 3: - current = pushNestedEffectDurations(); - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - if (flags & 64 && (flags = finishedWork.updateQueue, null !== flags)) { - prevProps = null; - if (null !== finishedWork.child) switch(finishedWork.child.tag){ - case 27: - case 5: - prevProps = finishedWork.child.stateNode; - break; - case 1: - prevProps = finishedWork.child.stateNode; - } - try { - runWithFiberInDEV(finishedWork, commitCallbacks, flags, prevProps); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - finishedRoot.effectDuration += popNestedEffectDurations(current); - break; - case 27: - null === current && flags & 4 && commitHostSingletonAcquisition(finishedWork); - case 26: - case 5: - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - if (null === current) { - if (flags & 4) commitHostMount(finishedWork); - else if (flags & 64) { - finishedRoot = finishedWork.type; - current = finishedWork.memoizedProps; - prevProps = finishedWork.stateNode; - try { - runWithFiberInDEV(finishedWork, commitHydratedInstance, prevProps, finishedRoot, current, finishedWork); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - } - flags & 512 && safelyAttachRef(finishedWork, finishedWork.return); - break; - case 12: - if (flags & 4) { - flags = pushNestedEffectDurations(); - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - finishedRoot = finishedWork.stateNode; - finishedRoot.effectDuration += bubbleNestedEffectDurations(flags); - try { - runWithFiberInDEV(finishedWork, commitProfiler, finishedWork, current, commitStartTime, finishedRoot.effectDuration); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } else recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - break; - case 31: - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - flags & 4 && commitActivityHydrationCallbacks(finishedRoot, finishedWork); - break; - case 13: - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - flags & 4 && commitSuspenseHydrationCallbacks(finishedRoot, finishedWork); - flags & 64 && (finishedRoot = finishedWork.memoizedState, null !== finishedRoot && (finishedRoot = finishedRoot.dehydrated, null !== finishedRoot && (flags = retryDehydratedSuspenseBoundary.bind(null, finishedWork), registerSuspenseInstanceRetry(finishedRoot, flags)))); - break; - case 22: - flags = null !== finishedWork.memoizedState || offscreenSubtreeIsHidden; - if (!flags) { - current = null !== current && null !== current.memoizedState || offscreenSubtreeWasHidden; - prevProps = offscreenSubtreeIsHidden; - var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden; - offscreenSubtreeIsHidden = flags; - (offscreenSubtreeWasHidden = current) && !prevOffscreenSubtreeWasHidden ? (recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, 0 !== (finishedWork.subtreeFlags & 8772)), (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentReappeared(finishedWork, componentEffectStartTime, componentEffectEndTime)) : recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - offscreenSubtreeIsHidden = prevProps; - offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden; - } - break; - case 30: - flags & 18874368 && trackNamedViewTransition(finishedWork); - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - flags & 512 && safelyAttachRef(finishedWork, finishedWork.return); - break; - case 7: - flags & 512 && safelyAttachRef(finishedWork, finishedWork.return); - default: - recursivelyTraverseLayoutEffects(finishedRoot, finishedWork); - } - (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && ((componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(finishedWork, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors), null === finishedWork.alternate && null !== finishedWork.return && null !== finishedWork.return.alternate && 0.05 < componentEffectEndTime - componentEffectStartTime && (isHydratingParent(finishedWork.return.alternate, finishedWork.return) || logComponentTrigger(finishedWork, componentEffectStartTime, componentEffectEndTime, "Mount"))); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectErrors = prevEffectErrors; - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - } - function hideOrUnhideAllChildren(parentFiber, isHidden) { - for(parentFiber = parentFiber.child; null !== parentFiber;)hideOrUnhideAllChildrenOnFiber(parentFiber, isHidden), parentFiber = parentFiber.sibling; - } - function hideOrUnhideAllChildrenOnFiber(fiber, isHidden) { - switch(fiber.tag){ - case 5: - case 26: - try { - var instance = fiber.stateNode; - isHidden ? runWithFiberInDEV(fiber, hideInstance, instance) : runWithFiberInDEV(fiber, unhideInstance, fiber.stateNode, fiber.memoizedProps); - } catch (error) { - captureCommitPhaseError(fiber, fiber.return, error); - } - hideOrUnhideNearestPortals(fiber, isHidden); - break; - case 6: - try { - var instance$jscomp$0 = fiber.stateNode; - isHidden ? runWithFiberInDEV(fiber, hideTextInstance, instance$jscomp$0) : runWithFiberInDEV(fiber, unhideTextInstance, instance$jscomp$0, fiber.memoizedProps); - viewTransitionMutationContext = !0; - } catch (error) { - captureCommitPhaseError(fiber, fiber.return, error); - } - break; - case 18: - try { - var instance$jscomp$1 = fiber.stateNode; - isHidden ? runWithFiberInDEV(fiber, hideDehydratedBoundary, instance$jscomp$1) : runWithFiberInDEV(fiber, unhideDehydratedBoundary, fiber.stateNode); - } catch (error) { - captureCommitPhaseError(fiber, fiber.return, error); - } - break; - case 22: - case 23: - null === fiber.memoizedState && hideOrUnhideAllChildren(fiber, isHidden); - break; - default: - hideOrUnhideAllChildren(fiber, isHidden); - } - } - function hideOrUnhideNearestPortals(parentFiber, isHidden$jscomp$0) { - if (parentFiber.subtreeFlags & 67108864) for(parentFiber = parentFiber.child; null !== parentFiber;){ - a: { - var fiber = parentFiber, isHidden = isHidden$jscomp$0; - switch(fiber.tag){ - case 4: - hideOrUnhideAllChildrenOnFiber(fiber, isHidden); - break a; - case 22: - null === fiber.memoizedState && hideOrUnhideNearestPortals(fiber, isHidden); - break a; - default: - hideOrUnhideNearestPortals(fiber, isHidden); - } - } - parentFiber = parentFiber.sibling; - } - } - function detachFiberAfterEffects(fiber) { - var alternate = fiber.alternate; - null !== alternate && (fiber.alternate = null, detachFiberAfterEffects(alternate)); - fiber.child = null; - fiber.deletions = null; - fiber.sibling = null; - 5 === fiber.tag && (alternate = fiber.stateNode, null !== alternate && detachDeletedInstance(alternate)); - fiber.stateNode = null; - fiber._debugOwner = null; - fiber.return = null; - fiber.dependencies = null; - fiber.memoizedProps = null; - fiber.memoizedState = null; - fiber.pendingProps = null; - fiber.stateNode = null; - fiber.updateQueue = null; - } - function recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, parent) { - for(parent = parent.child; null !== parent;)commitDeletionEffectsOnFiber(finishedRoot, nearestMountedAncestor, parent), parent = parent.sibling; - } - function commitDeletionEffectsOnFiber(finishedRoot, nearestMountedAncestor, deletedFiber) { - if (injectedHook && "function" === typeof injectedHook.onCommitFiberUnmount) try { - injectedHook.onCommitFiberUnmount(rendererID, deletedFiber); - } catch (err) { - hasLoggedError || (hasLoggedError = !0, console.error("React instrumentation encountered an error: %o", err)); - } - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(); - switch(deletedFiber.tag){ - case 26: - offscreenSubtreeWasHidden || safelyDetachRef(deletedFiber, nearestMountedAncestor); - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - deletedFiber.memoizedState ? deletedFiber.memoizedState.count-- : deletedFiber.stateNode && (finishedRoot = deletedFiber.stateNode, finishedRoot.parentNode.removeChild(finishedRoot)); - break; - case 27: - offscreenSubtreeWasHidden || safelyDetachRef(deletedFiber, nearestMountedAncestor); - var prevHostParent = hostParent, prevHostParentIsContainer = hostParentIsContainer; - isSingletonScope(deletedFiber.type) && (hostParent = deletedFiber.stateNode, hostParentIsContainer = !1); - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - runWithFiberInDEV(deletedFiber, releaseSingletonInstance, deletedFiber.stateNode); - hostParent = prevHostParent; - hostParentIsContainer = prevHostParentIsContainer; - break; - case 5: - offscreenSubtreeWasHidden || safelyDetachRef(deletedFiber, nearestMountedAncestor), 5 === deletedFiber.tag && commitFragmentInstanceDeletionEffects(deletedFiber); - case 6: - prevHostParent = hostParent; - prevHostParentIsContainer = hostParentIsContainer; - hostParent = null; - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - hostParent = prevHostParent; - hostParentIsContainer = prevHostParentIsContainer; - if (null !== hostParent) if (hostParentIsContainer) try { - runWithFiberInDEV(deletedFiber, removeChildFromContainer, hostParent, deletedFiber.stateNode), viewTransitionMutationContext = !0; - } catch (error) { - captureCommitPhaseError(deletedFiber, nearestMountedAncestor, error); - } - else try { - runWithFiberInDEV(deletedFiber, removeChild, hostParent, deletedFiber.stateNode), viewTransitionMutationContext = !0; - } catch (error) { - captureCommitPhaseError(deletedFiber, nearestMountedAncestor, error); - } - break; - case 18: - null !== hostParent && (hostParentIsContainer ? (finishedRoot = hostParent, clearHydrationBoundary(9 === finishedRoot.nodeType ? finishedRoot.body : "HTML" === finishedRoot.nodeName ? finishedRoot.ownerDocument.body : finishedRoot, deletedFiber.stateNode), retryIfBlockedOn(finishedRoot)) : clearHydrationBoundary(hostParent, deletedFiber.stateNode)); - break; - case 4: - prevHostParent = hostParent; - prevHostParentIsContainer = hostParentIsContainer; - hostParent = deletedFiber.stateNode.containerInfo; - hostParentIsContainer = !0; - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - hostParent = prevHostParent; - hostParentIsContainer = prevHostParentIsContainer; - break; - case 0: - case 11: - case 14: - case 15: - commitHookEffectListUnmount(Insertion, deletedFiber, nearestMountedAncestor); - offscreenSubtreeWasHidden || commitHookLayoutUnmountEffects(deletedFiber, nearestMountedAncestor, Layout); - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - break; - case 1: - offscreenSubtreeWasHidden || (safelyDetachRef(deletedFiber, nearestMountedAncestor), prevHostParent = deletedFiber.stateNode, "function" === typeof prevHostParent.componentWillUnmount && safelyCallComponentWillUnmount(deletedFiber, nearestMountedAncestor, prevHostParent)); - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - break; - case 21: - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - break; - case 22: - offscreenSubtreeWasHidden = (prevHostParent = offscreenSubtreeWasHidden) || null !== deletedFiber.memoizedState; - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - offscreenSubtreeWasHidden = prevHostParent; - break; - case 30: - deletedFiber.flags & 18874368 && untrackNamedViewTransition(deletedFiber); - safelyDetachRef(deletedFiber, nearestMountedAncestor); - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - break; - case 7: - offscreenSubtreeWasHidden || safelyDetachRef(deletedFiber, nearestMountedAncestor); - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - break; - default: - recursivelyTraverseDeletionEffects(finishedRoot, nearestMountedAncestor, deletedFiber); - } - (deletedFiber.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(deletedFiber, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectErrors = prevEffectErrors; - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - } - function commitActivityHydrationCallbacks(finishedRoot, finishedWork) { - if (null === finishedWork.memoizedState && (finishedRoot = finishedWork.alternate, null !== finishedRoot && (finishedRoot = finishedRoot.memoizedState, null !== finishedRoot))) { - finishedRoot = finishedRoot.dehydrated; - try { - runWithFiberInDEV(finishedWork, commitHydratedActivityInstance, finishedRoot); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - } - function commitSuspenseHydrationCallbacks(finishedRoot, finishedWork) { - if (null === finishedWork.memoizedState && (finishedRoot = finishedWork.alternate, null !== finishedRoot && (finishedRoot = finishedRoot.memoizedState, null !== finishedRoot && (finishedRoot = finishedRoot.dehydrated, null !== finishedRoot)))) try { - runWithFiberInDEV(finishedWork, commitHydratedSuspenseInstance, finishedRoot); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - function getRetryCache(finishedWork) { - switch(finishedWork.tag){ - case 31: - case 13: - case 19: - var retryCache = finishedWork.stateNode; - null === retryCache && (retryCache = finishedWork.stateNode = new PossiblyWeakSet()); - return retryCache; - case 22: - return finishedWork = finishedWork.stateNode, retryCache = finishedWork._retryCache, null === retryCache && (retryCache = finishedWork._retryCache = new PossiblyWeakSet()), retryCache; - default: - throw Error("Unexpected Suspense handler tag (" + finishedWork.tag + "). This is a bug in React."); - } - } - function attachSuspenseRetryListeners(finishedWork, wakeables) { - var retryCache = getRetryCache(finishedWork); - wakeables.forEach(function(wakeable) { - if (!retryCache.has(wakeable)) { - retryCache.add(wakeable); - if (isDevToolsPresent) if (null !== inProgressLanes && null !== inProgressRoot) restorePendingUpdaters(inProgressRoot, inProgressLanes); - else throw Error("Expected finished root and lanes to be set. This is a bug in React."); - var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable); - wakeable.then(retry, retry); - } - }); - } - function recursivelyTraverseMutationEffects(root$jscomp$0, parentFiber, lanes) { - var deletions = parentFiber.deletions; - if (null !== deletions) for(var i = 0; i < deletions.length; i++){ - var root = root$jscomp$0, returnFiber = parentFiber, deletedFiber = deletions[i], prevEffectStart = pushComponentEffectStart(), parent = returnFiber; - a: for(; null !== parent;){ - switch(parent.tag){ - case 27: - if (isSingletonScope(parent.type)) { - hostParent = parent.stateNode; - hostParentIsContainer = !1; - break a; - } - break; - case 5: - hostParent = parent.stateNode; - hostParentIsContainer = !1; - break a; - case 3: - case 4: - hostParent = parent.stateNode.containerInfo; - hostParentIsContainer = !0; - break a; - } - parent = parent.return; - } - if (null === hostParent) throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue."); - commitDeletionEffectsOnFiber(root, returnFiber, deletedFiber); - hostParent = null; - hostParentIsContainer = !1; - (deletedFiber.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentTrigger(deletedFiber, componentEffectStartTime, componentEffectEndTime, "Unmount"); - popComponentEffectStart(prevEffectStart); - root = deletedFiber; - returnFiber = root.alternate; - null !== returnFiber && (returnFiber.return = null); - root.return = null; - } - if (parentFiber.subtreeFlags & 13886) for(parentFiber = parentFiber.child; null !== parentFiber;)commitMutationEffectsOnFiber(parentFiber, root$jscomp$0, lanes), parentFiber = parentFiber.sibling; - } - function commitMutationEffectsOnFiber(finishedWork, root, lanes) { - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(), current = finishedWork.alternate, flags = finishedWork.flags; - switch(finishedWork.tag){ - case 0: - case 11: - case 14: - case 15: - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - flags & 4 && (commitHookEffectListUnmount(Insertion | HasEffect, finishedWork, finishedWork.return), commitHookEffectListMount(Insertion | HasEffect, finishedWork), commitHookLayoutUnmountEffects(finishedWork, finishedWork.return, Layout | HasEffect)); - break; - case 1: - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - flags & 512 && (offscreenSubtreeWasHidden || null === current || safelyDetachRef(current, current.return)); - flags & 64 && offscreenSubtreeIsHidden && (current = finishedWork.updateQueue, null !== current && (root = current.callbacks, null !== root && (lanes = current.shared.hiddenCallbacks, current.shared.hiddenCallbacks = null === lanes ? root : lanes.concat(root)))); - break; - case 26: - var hoistableRoot = currentHoistableRoot; - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - flags & 512 && (offscreenSubtreeWasHidden || null === current || safelyDetachRef(current, current.return)); - if (flags & 4) if (lanes = null !== current ? current.memoizedState : null, root = finishedWork.memoizedState, null === current) if (null === root) if (null === finishedWork.stateNode) { - a: { - current = finishedWork.type; - root = finishedWork.memoizedProps; - lanes = hoistableRoot.ownerDocument || hoistableRoot; - b: switch(current){ - case "title": - flags = lanes.getElementsByTagName("title")[0]; - if (!flags || flags[internalHoistableMarker] || flags[internalInstanceKey] || flags.namespaceURI === SVG_NAMESPACE || flags.hasAttribute("itemprop")) flags = lanes.createElement(current), lanes.head.insertBefore(flags, lanes.querySelector("head > title")); - setInitialProperties(flags, current, root); - flags[internalInstanceKey] = finishedWork; - markNodeAsHoistable(flags); - current = flags; - break a; - case "link": - if (hoistableRoot = getHydratableHoistableCache("link", "href", lanes).get(current + (root.href || ""))) { - for(var i = 0; i < hoistableRoot.length; i++)if (flags = hoistableRoot[i], flags.getAttribute("href") === (null == root.href || "" === root.href ? null : root.href) && flags.getAttribute("rel") === (null == root.rel ? null : root.rel) && flags.getAttribute("title") === (null == root.title ? null : root.title) && flags.getAttribute("crossorigin") === (null == root.crossOrigin ? null : root.crossOrigin)) { - hoistableRoot.splice(i, 1); - break b; - } - } - flags = lanes.createElement(current); - setInitialProperties(flags, current, root); - lanes.head.appendChild(flags); - break; - case "meta": - if (hoistableRoot = getHydratableHoistableCache("meta", "content", lanes).get(current + (root.content || ""))) { - for(i = 0; i < hoistableRoot.length; i++)if (flags = hoistableRoot[i], checkAttributeStringCoercion(root.content, "content"), flags.getAttribute("content") === (null == root.content ? null : "" + root.content) && flags.getAttribute("name") === (null == root.name ? null : root.name) && flags.getAttribute("property") === (null == root.property ? null : root.property) && flags.getAttribute("http-equiv") === (null == root.httpEquiv ? null : root.httpEquiv) && flags.getAttribute("charset") === (null == root.charSet ? null : root.charSet)) { - hoistableRoot.splice(i, 1); - break b; - } - } - flags = lanes.createElement(current); - setInitialProperties(flags, current, root); - lanes.head.appendChild(flags); - break; - default: - throw Error('getNodesForType encountered a type it did not expect: "' + current + '". This is a bug in React.'); - } - flags[internalInstanceKey] = finishedWork; - markNodeAsHoistable(flags); - current = flags; - } - finishedWork.stateNode = current; - } else mountHoistable(hoistableRoot, finishedWork.type, finishedWork.stateNode); - else finishedWork.stateNode = acquireResource(hoistableRoot, root, finishedWork.memoizedProps); - else lanes !== root ? (null === lanes ? null !== current.stateNode && (current = current.stateNode, current.parentNode.removeChild(current)) : lanes.count--, null === root ? mountHoistable(hoistableRoot, finishedWork.type, finishedWork.stateNode) : acquireResource(hoistableRoot, root, finishedWork.memoizedProps)) : null === root && null !== finishedWork.stateNode && commitHostUpdate(finishedWork, finishedWork.memoizedProps, current.memoizedProps); - break; - case 27: - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - flags & 512 && (offscreenSubtreeWasHidden || null === current || safelyDetachRef(current, current.return)); - null !== current && flags & 4 && commitHostUpdate(finishedWork, finishedWork.memoizedProps, current.memoizedProps); - break; - case 5: - hoistableRoot = offscreenDirectParentIsHidden; - offscreenDirectParentIsHidden = !1; - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - offscreenDirectParentIsHidden = hoistableRoot; - commitReconciliationEffects(finishedWork); - flags & 512 && (offscreenSubtreeWasHidden || null === current || safelyDetachRef(current, current.return)); - if (finishedWork.flags & 32) { - root = finishedWork.stateNode; - try { - runWithFiberInDEV(finishedWork, resetTextContent, root), viewTransitionMutationContext = !0; - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - flags & 4 && null != finishedWork.stateNode && (root = finishedWork.memoizedProps, commitHostUpdate(finishedWork, root, null !== current ? current.memoizedProps : root)); - flags & 1024 && (needsFormReset = !0, "form" !== finishedWork.type && console.error("Unexpected host component type. Expected a form. This is a bug in React.")); - break; - case 6: - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - if (flags & 4) { - if (null === finishedWork.stateNode) throw Error("This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue."); - root = finishedWork.memoizedProps; - current = null !== current ? current.memoizedProps : root; - lanes = finishedWork.stateNode; - try { - runWithFiberInDEV(finishedWork, commitTextUpdate, lanes, current, root), viewTransitionMutationContext = !0; - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - break; - case 3: - hoistableRoot = pushNestedEffectDurations(); - viewTransitionMutationContext = !1; - tagCaches = null; - i = currentHoistableRoot; - currentHoistableRoot = getHoistableRoot(root.containerInfo); - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - currentHoistableRoot = i; - commitReconciliationEffects(finishedWork); - if (flags & 4 && null !== current && current.memoizedState.isDehydrated) try { - runWithFiberInDEV(finishedWork, commitHydratedContainer, root.containerInfo); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - needsFormReset && (needsFormReset = !1, recursivelyResetForms(finishedWork)); - root.effectDuration += popNestedEffectDurations(hoistableRoot); - viewTransitionMutationContext = !1; - break; - case 4: - current = offscreenDirectParentIsHidden; - offscreenDirectParentIsHidden = offscreenSubtreeIsHidden; - flags = pushMutationContext(); - hoistableRoot = currentHoistableRoot; - currentHoistableRoot = getHoistableRoot(finishedWork.stateNode.containerInfo); - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - currentHoistableRoot = hoistableRoot; - viewTransitionMutationContext && inUpdateViewTransition && (rootViewTransitionAffected = !0); - viewTransitionMutationContext = flags; - offscreenDirectParentIsHidden = current; - break; - case 12: - current = pushNestedEffectDurations(); - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - finishedWork.stateNode.effectDuration += bubbleNestedEffectDurations(current); - break; - case 31: - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - flags & 4 && (current = finishedWork.updateQueue, null !== current && (finishedWork.updateQueue = null, attachSuspenseRetryListeners(finishedWork, current))); - break; - case 13: - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - finishedWork.child.flags & 8192 && null !== finishedWork.memoizedState !== (null !== current && null !== current.memoizedState) && (globalMostRecentFallbackTime = now$1()); - flags & 4 && (current = finishedWork.updateQueue, null !== current && (finishedWork.updateQueue = null, attachSuspenseRetryListeners(finishedWork, current))); - break; - case 22: - hoistableRoot = null !== finishedWork.memoizedState; - i = null !== current && null !== current.memoizedState; - var prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden, prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden, _prevOffscreenDirectParentIsHidden2 = offscreenDirectParentIsHidden; - offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden || hoistableRoot; - offscreenDirectParentIsHidden = _prevOffscreenDirectParentIsHidden2 || hoistableRoot; - offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || i; - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden; - offscreenDirectParentIsHidden = _prevOffscreenDirectParentIsHidden2; - offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden; - i && !hoistableRoot && !prevOffscreenSubtreeIsHidden && !prevOffscreenSubtreeWasHidden && (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentReappeared(finishedWork, componentEffectStartTime, componentEffectEndTime); - commitReconciliationEffects(finishedWork); - flags & 8192 && (root = finishedWork.stateNode, root._visibility = hoistableRoot ? root._visibility & ~OffscreenVisible : root._visibility | OffscreenVisible, !hoistableRoot || null === current || i || offscreenSubtreeIsHidden || offscreenSubtreeWasHidden || (recursivelyTraverseDisappearLayoutEffects(finishedWork), (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentTrigger(finishedWork, componentEffectStartTime, componentEffectEndTime, "Disconnect")), !hoistableRoot && offscreenDirectParentIsHidden || hideOrUnhideAllChildren(finishedWork, hoistableRoot)); - flags & 4 && (current = finishedWork.updateQueue, null !== current && (root = current.retryQueue, null !== root && (current.retryQueue = null, attachSuspenseRetryListeners(finishedWork, root)))); - break; - case 19: - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - flags & 4 && (current = finishedWork.updateQueue, null !== current && (finishedWork.updateQueue = null, attachSuspenseRetryListeners(finishedWork, current))); - break; - case 30: - flags & 512 && (offscreenSubtreeWasHidden || null === current || safelyDetachRef(current, current.return)); - flags = pushMutationContext(); - hoistableRoot = inUpdateViewTransition; - i = (lanes & 335544064) === lanes; - prevOffscreenSubtreeIsHidden = finishedWork.memoizedProps; - inUpdateViewTransition = i && "none" !== getViewTransitionClassName(prevOffscreenSubtreeIsHidden.default, prevOffscreenSubtreeIsHidden.update); - recursivelyTraverseMutationEffects(root, finishedWork, lanes); - commitReconciliationEffects(finishedWork); - i && null !== current && viewTransitionMutationContext && (finishedWork.flags |= 4); - inUpdateViewTransition = hoistableRoot; - viewTransitionMutationContext = flags; - break; - case 21: - break; - case 7: - current && null !== current.stateNode && (current.stateNode._fragmentFiber = finishedWork); - default: - recursivelyTraverseMutationEffects(root, finishedWork, lanes), commitReconciliationEffects(finishedWork); - } - (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && ((componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(finishedWork, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors), null === finishedWork.alternate && null !== finishedWork.return && null !== finishedWork.return.alternate && 0.05 < componentEffectEndTime - componentEffectStartTime && (isHydratingParent(finishedWork.return.alternate, finishedWork.return) || logComponentTrigger(finishedWork, componentEffectStartTime, componentEffectEndTime, "Mount"))); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectErrors = prevEffectErrors; - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - } - function commitReconciliationEffects(finishedWork) { - var flags = finishedWork.flags; - if (flags & 2) { - try { - runWithFiberInDEV(finishedWork, commitPlacement, finishedWork); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - finishedWork.flags &= -3; - } - flags & 4096 && (finishedWork.flags &= -4097); - } - function recursivelyResetForms(parentFiber) { - if (parentFiber.subtreeFlags & 1024) for(parentFiber = parentFiber.child; null !== parentFiber;){ - var fiber = parentFiber; - recursivelyResetForms(fiber); - 5 === fiber.tag && fiber.flags & 1024 && fiber.stateNode.reset(); - parentFiber = parentFiber.sibling; - } - } - function recursivelyTraverseAfterMutationEffects(root, parentFiber) { - if (parentFiber.subtreeFlags & 9270) for(parentFiber = parentFiber.child; null !== parentFiber;)commitAfterMutationEffectsOnFiber(parentFiber, root), parentFiber = parentFiber.sibling; - else measureNestedViewTransitions(parentFiber, !1); - } - function commitAfterMutationEffectsOnFiber(finishedWork, root) { - var current = finishedWork.alternate; - if (null === current) commitEnterViewTransitions(finishedWork, !1); - else switch(finishedWork.tag){ - case 3: - rootViewTransitionNameCanceled = viewTransitionContextChanged = !1; - pushViewTransitionCancelableScope(); - recursivelyTraverseAfterMutationEffects(root, finishedWork); - if (!viewTransitionContextChanged && !rootViewTransitionAffected) { - finishedWork = viewTransitionCancelableChildren; - if (null !== finishedWork) for(var i = 0; i < finishedWork.length; i += 3){ - current = finishedWork[i]; - var oldName = finishedWork[i + 1]; - restoreViewTransitionName(current, finishedWork[i + 2]); - current = current.ownerDocument.documentElement; - null !== current && current.animate({ - opacity: [ - 0, - 0 - ], - pointerEvents: [ - "none", - "none" - ] - }, { - duration: 0, - fill: "forwards", - pseudoElement: "::view-transition-group(" + oldName + ")" - }); - } - finishedWork = root.containerInfo; - finishedWork = 9 === finishedWork.nodeType ? finishedWork.documentElement : finishedWork.ownerDocument.documentElement; - null !== finishedWork && "" === finishedWork.style.viewTransitionName && (finishedWork.style.viewTransitionName = "none", finishedWork.animate({ - opacity: [ - 0, - 0 - ], - pointerEvents: [ - "none", - "none" - ] - }, { - duration: 0, - fill: "forwards", - pseudoElement: "::view-transition-group(root)" - }), finishedWork.animate({ - width: [ - 0, - 0 - ], - height: [ - 0, - 0 - ] - }, { - duration: 0, - fill: "forwards", - pseudoElement: "::view-transition" - })); - rootViewTransitionNameCanceled = !0; - } - viewTransitionCancelableChildren = null; - break; - case 5: - recursivelyTraverseAfterMutationEffects(root, finishedWork); - break; - case 4: - i = viewTransitionContextChanged; - viewTransitionContextChanged = !1; - recursivelyTraverseAfterMutationEffects(root, finishedWork); - viewTransitionContextChanged && (rootViewTransitionAffected = !0); - viewTransitionContextChanged = i; - break; - case 22: - null === finishedWork.memoizedState && (null !== current.memoizedState ? commitEnterViewTransitions(finishedWork, !1) : recursivelyTraverseAfterMutationEffects(root, finishedWork)); - break; - case 30: - i = viewTransitionContextChanged; - oldName = pushViewTransitionCancelableScope(); - viewTransitionContextChanged = !1; - recursivelyTraverseAfterMutationEffects(root, finishedWork); - viewTransitionContextChanged && (finishedWork.flags |= 4); - var props = finishedWork.memoizedProps, state = finishedWork.stateNode; - root = getViewTransitionName(props, state); - state = getViewTransitionName(current.memoizedProps, state); - var className = getViewTransitionClassName(props.default, props.update); - "none" === className ? root = !1 : (props = current.memoizedState, current.memoizedState = null, current = finishedWork.child, viewTransitionHostInstanceIdx = 0, root = measureViewTransitionHostInstancesRecursive(finishedWork, current, root, state, className, props, !0), viewTransitionHostInstanceIdx !== (null === props ? 0 : props.length) && (finishedWork.flags |= 32)); - 0 !== (finishedWork.flags & 4) && root ? (scheduleViewTransitionEvent(finishedWork, finishedWork.memoizedProps.onUpdate), viewTransitionCancelableChildren = oldName) : null !== oldName && (oldName.push.apply(oldName, viewTransitionCancelableChildren), viewTransitionCancelableChildren = oldName); - viewTransitionContextChanged = 0 !== (finishedWork.flags & 32) ? !0 : i; - break; - default: - recursivelyTraverseAfterMutationEffects(root, finishedWork); - } - } - function recursivelyTraverseLayoutEffects(root, parentFiber) { - if (parentFiber.subtreeFlags & 8772) for(parentFiber = parentFiber.child; null !== parentFiber;)commitLayoutEffectOnFiber(root, parentFiber.alternate, parentFiber), parentFiber = parentFiber.sibling; - } - function disappearLayoutEffects(finishedWork) { - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(); - switch(finishedWork.tag){ - case 0: - case 11: - case 14: - case 15: - commitHookLayoutUnmountEffects(finishedWork, finishedWork.return, Layout); - recursivelyTraverseDisappearLayoutEffects(finishedWork); - break; - case 1: - safelyDetachRef(finishedWork, finishedWork.return); - var instance = finishedWork.stateNode; - "function" === typeof instance.componentWillUnmount && safelyCallComponentWillUnmount(finishedWork, finishedWork.return, instance); - recursivelyTraverseDisappearLayoutEffects(finishedWork); - break; - case 27: - runWithFiberInDEV(finishedWork, releaseSingletonInstance, finishedWork.stateNode); - case 26: - case 5: - safelyDetachRef(finishedWork, finishedWork.return); - 5 === finishedWork.tag && commitFragmentInstanceDeletionEffects(finishedWork); - recursivelyTraverseDisappearLayoutEffects(finishedWork); - break; - case 22: - null === finishedWork.memoizedState && recursivelyTraverseDisappearLayoutEffects(finishedWork); - break; - case 30: - finishedWork.flags & 18874368 && untrackNamedViewTransition(finishedWork); - safelyDetachRef(finishedWork, finishedWork.return); - recursivelyTraverseDisappearLayoutEffects(finishedWork); - break; - case 7: - safelyDetachRef(finishedWork, finishedWork.return); - default: - recursivelyTraverseDisappearLayoutEffects(finishedWork); - } - (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(finishedWork, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectErrors = prevEffectErrors; - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - } - function recursivelyTraverseDisappearLayoutEffects(parentFiber) { - for(parentFiber = parentFiber.child; null !== parentFiber;)disappearLayoutEffects(parentFiber), parentFiber = parentFiber.sibling; - } - function reappearLayoutEffects(finishedRoot, current, finishedWork, includeWorkInProgressEffects) { - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(), flags = finishedWork.flags; - switch(finishedWork.tag){ - case 0: - case 11: - case 15: - recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - commitHookLayoutEffects(finishedWork, Layout); - break; - case 1: - recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - current = finishedWork.stateNode; - "function" === typeof current.componentDidMount && runWithFiberInDEV(finishedWork, callComponentDidMountInDEV, finishedWork, current); - current = finishedWork.updateQueue; - if (null !== current) { - finishedRoot = finishedWork.stateNode; - try { - runWithFiberInDEV(finishedWork, commitHiddenCallbacks, current, finishedRoot); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - includeWorkInProgressEffects && flags & 64 && commitClassCallbacks(finishedWork); - safelyAttachRef(finishedWork, finishedWork.return); - break; - case 27: - commitHostSingletonAcquisition(finishedWork); - case 26: - case 5: - if (5 === finishedWork.tag) a: for(var parent = finishedWork.return; null !== parent;){ - isFragmentInstanceParent(parent) && commitNewChildToFragmentInstance(finishedWork.stateNode, parent.stateNode); - if (isHostParent(parent)) break a; - parent = parent.return; - } - recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - includeWorkInProgressEffects && null === current && flags & 4 && commitHostMount(finishedWork); - safelyAttachRef(finishedWork, finishedWork.return); - break; - case 12: - if (includeWorkInProgressEffects && flags & 4) { - flags = pushNestedEffectDurations(); - recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - includeWorkInProgressEffects = finishedWork.stateNode; - includeWorkInProgressEffects.effectDuration += bubbleNestedEffectDurations(flags); - try { - runWithFiberInDEV(finishedWork, commitProfiler, finishedWork, current, commitStartTime, includeWorkInProgressEffects.effectDuration); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } else recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - break; - case 31: - recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - includeWorkInProgressEffects && flags & 4 && commitActivityHydrationCallbacks(finishedRoot, finishedWork); - break; - case 13: - recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - includeWorkInProgressEffects && flags & 4 && commitSuspenseHydrationCallbacks(finishedRoot, finishedWork); - break; - case 22: - null === finishedWork.memoizedState && recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - safelyAttachRef(finishedWork, finishedWork.return); - break; - case 30: - recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - flags & 18874368 && trackNamedViewTransition(finishedWork); - safelyAttachRef(finishedWork, finishedWork.return); - break; - case 7: - safelyAttachRef(finishedWork, finishedWork.return); - default: - recursivelyTraverseReappearLayoutEffects(finishedRoot, finishedWork, includeWorkInProgressEffects); - } - (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(finishedWork, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectErrors = prevEffectErrors; - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - } - function recursivelyTraverseReappearLayoutEffects(finishedRoot, parentFiber, includeWorkInProgressEffects) { - includeWorkInProgressEffects = includeWorkInProgressEffects && 0 !== (parentFiber.subtreeFlags & 8772); - for(parentFiber = parentFiber.child; null !== parentFiber;)reappearLayoutEffects(finishedRoot, parentFiber.alternate, parentFiber, includeWorkInProgressEffects), parentFiber = parentFiber.sibling; - } - function commitOffscreenPassiveMountEffects(current, finishedWork) { - var previousCache = null; - null !== current && null !== current.memoizedState && null !== current.memoizedState.cachePool && (previousCache = current.memoizedState.cachePool.pool); - current = null; - null !== finishedWork.memoizedState && null !== finishedWork.memoizedState.cachePool && (current = finishedWork.memoizedState.cachePool.pool); - current !== previousCache && (null != current && retainCache(current), null != previousCache && releaseCache(previousCache)); - } - function commitCachePassiveMountEffect(current, finishedWork) { - current = null; - null !== finishedWork.alternate && (current = finishedWork.alternate.memoizedState.cache); - finishedWork = finishedWork.memoizedState.cache; - finishedWork !== current && (retainCache(finishedWork), null != current && releaseCache(current)); - } - function recursivelyTraversePassiveMountEffects(root, parentFiber, committedLanes, committedTransitions, endTime) { - var isViewTransitionEligible = (committedLanes & 335544064) === committedLanes; - if (parentFiber.subtreeFlags & (isViewTransitionEligible ? 10262 : 10256) || 0 !== parentFiber.actualDuration && (null === parentFiber.alternate || parentFiber.alternate.child !== parentFiber.child)) for(parentFiber = parentFiber.child; null !== parentFiber;)isViewTransitionEligible = parentFiber.sibling, commitPassiveMountOnFiber(root, parentFiber, committedLanes, committedTransitions, null !== isViewTransitionEligible ? isViewTransitionEligible.actualStartTime : endTime), parentFiber = isViewTransitionEligible; - else isViewTransitionEligible && restoreNestedViewTransitions(parentFiber); - } - function commitPassiveMountOnFiber(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime) { - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(), prevDeepEquality = alreadyWarnedForDeepEquality, isViewTransitionEligible = (committedLanes & 335544064) === committedLanes; - isViewTransitionEligible && null === finishedWork.alternate && null !== finishedWork.return && null !== finishedWork.return.alternate && restoreEnterOrExitViewTransitions(finishedWork); - var flags = finishedWork.flags; - switch(finishedWork.tag){ - case 0: - case 11: - case 15: - (finishedWork.mode & ProfileMode) !== NoMode && 0 < finishedWork.actualStartTime && 0 !== (finishedWork.flags & 1) && logComponentRender(finishedWork, finishedWork.actualStartTime, endTime, inHydratedSubtree, committedLanes); - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - flags & 2048 && commitHookPassiveMountEffects(finishedWork, Passive | HasEffect); - break; - case 1: - (finishedWork.mode & ProfileMode) !== NoMode && 0 < finishedWork.actualStartTime && (0 !== (finishedWork.flags & 128) ? logComponentErrored(finishedWork, finishedWork.actualStartTime, endTime, []) : 0 !== (finishedWork.flags & 1) && logComponentRender(finishedWork, finishedWork.actualStartTime, endTime, inHydratedSubtree, committedLanes)); - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - break; - case 3: - var prevProfilerEffectDuration = pushNestedEffectDurations(), wasInHydratedSubtree = inHydratedSubtree; - inHydratedSubtree = null !== finishedWork.alternate && finishedWork.alternate.memoizedState.isDehydrated && 0 === (finishedWork.flags & 256); - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - inHydratedSubtree = wasInHydratedSubtree; - isViewTransitionEligible && rootViewTransitionNameCanceled && (committedLanes = finishedRoot.containerInfo, committedLanes = 9 === committedLanes.nodeType ? committedLanes.body : "HTML" === committedLanes.nodeName ? committedLanes.ownerDocument.body : committedLanes, "root" === committedLanes.style.viewTransitionName && (committedLanes.style.viewTransitionName = ""), committedLanes = committedLanes.ownerDocument.documentElement, null !== committedLanes && "none" === committedLanes.style.viewTransitionName && (committedLanes.style.viewTransitionName = "")); - flags & 2048 && (committedLanes = null, null !== finishedWork.alternate && (committedLanes = finishedWork.alternate.memoizedState.cache), committedTransitions = finishedWork.memoizedState.cache, committedTransitions !== committedLanes && (retainCache(committedTransitions), null != committedLanes && releaseCache(committedLanes))); - finishedRoot.passiveEffectDuration += popNestedEffectDurations(prevProfilerEffectDuration); - break; - case 12: - if (flags & 2048) { - flags = pushNestedEffectDurations(); - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - finishedRoot = finishedWork.stateNode; - finishedRoot.passiveEffectDuration += bubbleNestedEffectDurations(flags); - try { - runWithFiberInDEV(finishedWork, commitProfilerPostCommitImpl, finishedWork, finishedWork.alternate, commitStartTime, finishedRoot.passiveEffectDuration); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } else recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - break; - case 31: - flags = inHydratedSubtree; - prevProfilerEffectDuration = null !== finishedWork.alternate ? finishedWork.alternate.memoizedState : null; - isViewTransitionEligible = finishedWork.memoizedState; - null !== prevProfilerEffectDuration && null === isViewTransitionEligible ? (isViewTransitionEligible = finishedWork.deletions, null !== isViewTransitionEligible && 0 < isViewTransitionEligible.length && 18 === isViewTransitionEligible[0].tag ? (inHydratedSubtree = !1, prevProfilerEffectDuration = prevProfilerEffectDuration.hydrationErrors, null !== prevProfilerEffectDuration && logComponentErrored(finishedWork, finishedWork.actualStartTime, endTime, prevProfilerEffectDuration)) : inHydratedSubtree = !0) : inHydratedSubtree = !1; - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - inHydratedSubtree = flags; - break; - case 13: - flags = inHydratedSubtree; - prevProfilerEffectDuration = null !== finishedWork.alternate ? finishedWork.alternate.memoizedState : null; - isViewTransitionEligible = finishedWork.memoizedState; - null === prevProfilerEffectDuration || null === prevProfilerEffectDuration.dehydrated || null !== isViewTransitionEligible && null !== isViewTransitionEligible.dehydrated ? inHydratedSubtree = !1 : (isViewTransitionEligible = finishedWork.deletions, null !== isViewTransitionEligible && 0 < isViewTransitionEligible.length && 18 === isViewTransitionEligible[0].tag ? (inHydratedSubtree = !1, prevProfilerEffectDuration = prevProfilerEffectDuration.hydrationErrors, null !== prevProfilerEffectDuration && logComponentErrored(finishedWork, finishedWork.actualStartTime, endTime, prevProfilerEffectDuration)) : inHydratedSubtree = !0); - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - inHydratedSubtree = flags; - break; - case 23: - break; - case 22: - wasInHydratedSubtree = finishedWork.stateNode; - prevProfilerEffectDuration = finishedWork.alternate; - null !== finishedWork.memoizedState ? (isViewTransitionEligible && null !== prevProfilerEffectDuration && null === prevProfilerEffectDuration.memoizedState && restoreEnterOrExitViewTransitions(prevProfilerEffectDuration), wasInHydratedSubtree._visibility & OffscreenPassiveEffectsConnected ? recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime) : recursivelyTraverseAtomicPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime)) : (isViewTransitionEligible && null !== prevProfilerEffectDuration && null !== prevProfilerEffectDuration.memoizedState && restoreEnterOrExitViewTransitions(finishedWork), wasInHydratedSubtree._visibility & OffscreenPassiveEffectsConnected ? recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime) : (wasInHydratedSubtree._visibility |= OffscreenPassiveEffectsConnected, recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, 0 !== (finishedWork.subtreeFlags & 10256) || 0 !== finishedWork.actualDuration && (null === finishedWork.alternate || finishedWork.alternate.child !== finishedWork.child), endTime), (finishedWork.mode & ProfileMode) === NoMode || inHydratedSubtree || (finishedRoot = finishedWork.actualStartTime, 0 <= finishedRoot && 0.05 < endTime - finishedRoot && logComponentReappeared(finishedWork, finishedRoot, endTime), 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentReappeared(finishedWork, componentEffectStartTime, componentEffectEndTime)))); - flags & 2048 && commitOffscreenPassiveMountEffects(prevProfilerEffectDuration, finishedWork); - break; - case 24: - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - flags & 2048 && commitCachePassiveMountEffect(finishedWork.alternate, finishedWork); - break; - case 30: - isViewTransitionEligible && (flags = finishedWork.alternate, null !== flags && (restoreViewTransitionOnHostInstances(flags.child, !0), restoreViewTransitionOnHostInstances(finishedWork.child, !0))); - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - break; - default: - recursivelyTraversePassiveMountEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime); - } - if ((finishedWork.mode & ProfileMode) !== NoMode) { - if (finishedRoot = !inHydratedSubtree && null === finishedWork.alternate && null !== finishedWork.return && null !== finishedWork.return.alternate) committedLanes = finishedWork.actualStartTime, 0 <= committedLanes && 0.05 < endTime - committedLanes && logComponentTrigger(finishedWork, committedLanes, endTime, "Mount"); - 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && ((componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(finishedWork, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors), finishedRoot && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentTrigger(finishedWork, componentEffectStartTime, componentEffectEndTime, "Mount")); - } - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectErrors = prevEffectErrors; - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - alreadyWarnedForDeepEquality = prevDeepEquality; - } - function recursivelyTraverseReconnectPassiveEffects(finishedRoot, parentFiber, committedLanes, committedTransitions, includeWorkInProgressEffects, endTime) { - includeWorkInProgressEffects = includeWorkInProgressEffects && (0 !== (parentFiber.subtreeFlags & 10256) || 0 !== parentFiber.actualDuration && (null === parentFiber.alternate || parentFiber.alternate.child !== parentFiber.child)); - for(parentFiber = parentFiber.child; null !== parentFiber;){ - var nextSibling = parentFiber.sibling; - reconnectPassiveEffects(finishedRoot, parentFiber, committedLanes, committedTransitions, includeWorkInProgressEffects, null !== nextSibling ? nextSibling.actualStartTime : endTime); - parentFiber = nextSibling; - } - } - function reconnectPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, includeWorkInProgressEffects, endTime) { - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(), prevDeepEquality = alreadyWarnedForDeepEquality; - includeWorkInProgressEffects && (finishedWork.mode & ProfileMode) !== NoMode && 0 < finishedWork.actualStartTime && 0 !== (finishedWork.flags & 1) && logComponentRender(finishedWork, finishedWork.actualStartTime, endTime, inHydratedSubtree, committedLanes); - var flags = finishedWork.flags; - switch(finishedWork.tag){ - case 0: - case 11: - case 15: - recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, includeWorkInProgressEffects, endTime); - commitHookPassiveMountEffects(finishedWork, Passive); - break; - case 23: - break; - case 22: - var _instance2 = finishedWork.stateNode; - null !== finishedWork.memoizedState ? _instance2._visibility & OffscreenPassiveEffectsConnected ? recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, includeWorkInProgressEffects, endTime) : recursivelyTraverseAtomicPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, endTime) : (_instance2._visibility |= OffscreenPassiveEffectsConnected, recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, includeWorkInProgressEffects, endTime)); - includeWorkInProgressEffects && flags & 2048 && commitOffscreenPassiveMountEffects(finishedWork.alternate, finishedWork); - break; - case 24: - recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, includeWorkInProgressEffects, endTime); - includeWorkInProgressEffects && flags & 2048 && commitCachePassiveMountEffect(finishedWork.alternate, finishedWork); - break; - default: - recursivelyTraverseReconnectPassiveEffects(finishedRoot, finishedWork, committedLanes, committedTransitions, includeWorkInProgressEffects, endTime); - } - (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(finishedWork, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectErrors = prevEffectErrors; - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - alreadyWarnedForDeepEquality = prevDeepEquality; - } - function recursivelyTraverseAtomicPassiveEffects(finishedRoot$jscomp$0, parentFiber, committedLanes$jscomp$0, committedTransitions$jscomp$0, endTime$jscomp$0) { - if (parentFiber.subtreeFlags & 10256 || 0 !== parentFiber.actualDuration && (null === parentFiber.alternate || parentFiber.alternate.child !== parentFiber.child)) for(var child = parentFiber.child; null !== child;){ - parentFiber = child.sibling; - var finishedRoot = finishedRoot$jscomp$0, committedLanes = committedLanes$jscomp$0, committedTransitions = committedTransitions$jscomp$0, endTime = null !== parentFiber ? parentFiber.actualStartTime : endTime$jscomp$0, prevDeepEquality = alreadyWarnedForDeepEquality; - (child.mode & ProfileMode) !== NoMode && 0 < child.actualStartTime && 0 !== (child.flags & 1) && logComponentRender(child, child.actualStartTime, endTime, inHydratedSubtree, committedLanes); - var flags = child.flags; - switch(child.tag){ - case 22: - recursivelyTraverseAtomicPassiveEffects(finishedRoot, child, committedLanes, committedTransitions, endTime); - flags & 2048 && commitOffscreenPassiveMountEffects(child.alternate, child); - break; - case 24: - recursivelyTraverseAtomicPassiveEffects(finishedRoot, child, committedLanes, committedTransitions, endTime); - flags & 2048 && commitCachePassiveMountEffect(child.alternate, child); - break; - default: - recursivelyTraverseAtomicPassiveEffects(finishedRoot, child, committedLanes, committedTransitions, endTime); - } - alreadyWarnedForDeepEquality = prevDeepEquality; - child = parentFiber; - } - } - function recursivelyAccumulateSuspenseyCommit(parentFiber, committedLanes, suspendedState) { - if (parentFiber.subtreeFlags & suspenseyCommitFlag) for(parentFiber = parentFiber.child; null !== parentFiber;)accumulateSuspenseyCommitOnFiber(parentFiber, committedLanes, suspendedState), parentFiber = parentFiber.sibling; - } - function accumulateSuspenseyCommitOnFiber(fiber, committedLanes, suspendedState) { - switch(fiber.tag){ - case 26: - recursivelyAccumulateSuspenseyCommit(fiber, committedLanes, suspendedState); - fiber.flags & suspenseyCommitFlag && (null !== fiber.memoizedState ? suspendResource(suspendedState, currentHoistableRoot, fiber.memoizedState, fiber.memoizedProps) : (fiber = fiber.stateNode, (committedLanes & 335544128) === committedLanes && suspendInstance(suspendedState, fiber))); - break; - case 5: - recursivelyAccumulateSuspenseyCommit(fiber, committedLanes, suspendedState); - fiber.flags & suspenseyCommitFlag && (fiber = fiber.stateNode, (committedLanes & 335544128) === committedLanes && suspendInstance(suspendedState, fiber)); - break; - case 3: - case 4: - var previousHoistableRoot = currentHoistableRoot; - currentHoistableRoot = getHoistableRoot(fiber.stateNode.containerInfo); - recursivelyAccumulateSuspenseyCommit(fiber, committedLanes, suspendedState); - currentHoistableRoot = previousHoistableRoot; - break; - case 22: - null === fiber.memoizedState && (previousHoistableRoot = fiber.alternate, null !== previousHoistableRoot && null !== previousHoistableRoot.memoizedState ? (previousHoistableRoot = suspenseyCommitFlag, suspenseyCommitFlag = 16777216, recursivelyAccumulateSuspenseyCommit(fiber, committedLanes, suspendedState), suspenseyCommitFlag = previousHoistableRoot) : recursivelyAccumulateSuspenseyCommit(fiber, committedLanes, suspendedState)); - break; - case 30: - if (0 !== (fiber.flags & suspenseyCommitFlag) && (previousHoistableRoot = fiber.memoizedProps.name, null != previousHoistableRoot && "auto" !== previousHoistableRoot)) { - var state = fiber.stateNode; - state.paired = null; - null === appearingViewTransitions && (appearingViewTransitions = new Map()); - appearingViewTransitions.set(previousHoistableRoot, state); - } - recursivelyAccumulateSuspenseyCommit(fiber, committedLanes, suspendedState); - break; - default: - recursivelyAccumulateSuspenseyCommit(fiber, committedLanes, suspendedState); - } - } - function detachAlternateSiblings(parentFiber) { - var previousFiber = parentFiber.alternate; - if (null !== previousFiber && (parentFiber = previousFiber.child, null !== parentFiber)) { - previousFiber.child = null; - do previousFiber = parentFiber.sibling, parentFiber.sibling = null, parentFiber = previousFiber; - while (null !== parentFiber) - } - } - function recursivelyTraversePassiveUnmountEffects(parentFiber) { - var deletions = parentFiber.deletions; - if (0 !== (parentFiber.flags & 16)) { - if (null !== deletions) for(var i = 0; i < deletions.length; i++){ - var childToDelete = deletions[i], prevEffectStart = pushComponentEffectStart(); - nextEffect = childToDelete; - commitPassiveUnmountEffectsInsideOfDeletedTree_begin(childToDelete, parentFiber); - (childToDelete.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentTrigger(childToDelete, componentEffectStartTime, componentEffectEndTime, "Unmount"); - popComponentEffectStart(prevEffectStart); - } - detachAlternateSiblings(parentFiber); - } - if (parentFiber.subtreeFlags & 10256) for(parentFiber = parentFiber.child; null !== parentFiber;)commitPassiveUnmountOnFiber(parentFiber), parentFiber = parentFiber.sibling; - } - function commitPassiveUnmountOnFiber(finishedWork) { - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(); - switch(finishedWork.tag){ - case 0: - case 11: - case 15: - recursivelyTraversePassiveUnmountEffects(finishedWork); - finishedWork.flags & 2048 && commitHookPassiveUnmountEffects(finishedWork, finishedWork.return, Passive | HasEffect); - break; - case 3: - var prevProfilerEffectDuration = pushNestedEffectDurations(); - recursivelyTraversePassiveUnmountEffects(finishedWork); - finishedWork.stateNode.passiveEffectDuration += popNestedEffectDurations(prevProfilerEffectDuration); - break; - case 12: - prevProfilerEffectDuration = pushNestedEffectDurations(); - recursivelyTraversePassiveUnmountEffects(finishedWork); - finishedWork.stateNode.passiveEffectDuration += bubbleNestedEffectDurations(prevProfilerEffectDuration); - break; - case 22: - prevProfilerEffectDuration = finishedWork.stateNode; - null !== finishedWork.memoizedState && prevProfilerEffectDuration._visibility & OffscreenPassiveEffectsConnected && (null === finishedWork.return || 13 !== finishedWork.return.tag) ? (prevProfilerEffectDuration._visibility &= ~OffscreenPassiveEffectsConnected, recursivelyTraverseDisconnectPassiveEffects(finishedWork), (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentTrigger(finishedWork, componentEffectStartTime, componentEffectEndTime, "Disconnect")) : recursivelyTraversePassiveUnmountEffects(finishedWork); - break; - default: - recursivelyTraversePassiveUnmountEffects(finishedWork); - } - (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(finishedWork, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - componentEffectErrors = prevEffectErrors; - } - function recursivelyTraverseDisconnectPassiveEffects(parentFiber) { - var deletions = parentFiber.deletions; - if (0 !== (parentFiber.flags & 16)) { - if (null !== deletions) for(var i = 0; i < deletions.length; i++){ - var childToDelete = deletions[i], prevEffectStart = pushComponentEffectStart(); - nextEffect = childToDelete; - commitPassiveUnmountEffectsInsideOfDeletedTree_begin(childToDelete, parentFiber); - (childToDelete.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && 0.05 < componentEffectEndTime - componentEffectStartTime && logComponentTrigger(childToDelete, componentEffectStartTime, componentEffectEndTime, "Unmount"); - popComponentEffectStart(prevEffectStart); - } - detachAlternateSiblings(parentFiber); - } - for(parentFiber = parentFiber.child; null !== parentFiber;)disconnectPassiveEffect(parentFiber), parentFiber = parentFiber.sibling; - } - function disconnectPassiveEffect(finishedWork) { - var prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(); - switch(finishedWork.tag){ - case 0: - case 11: - case 15: - commitHookPassiveUnmountEffects(finishedWork, finishedWork.return, Passive); - recursivelyTraverseDisconnectPassiveEffects(finishedWork); - break; - case 22: - var instance = finishedWork.stateNode; - instance._visibility & OffscreenPassiveEffectsConnected && (instance._visibility &= ~OffscreenPassiveEffectsConnected, recursivelyTraverseDisconnectPassiveEffects(finishedWork)); - break; - default: - recursivelyTraverseDisconnectPassiveEffects(finishedWork); - } - (finishedWork.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(finishedWork, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - componentEffectErrors = prevEffectErrors; - } - function commitPassiveUnmountEffectsInsideOfDeletedTree_begin(deletedSubtreeRoot, nearestMountedAncestor$jscomp$0) { - for(; null !== nextEffect;){ - var fiber = nextEffect, current = fiber, nearestMountedAncestor = nearestMountedAncestor$jscomp$0, prevEffectStart = pushComponentEffectStart(), prevEffectDuration = pushComponentEffectDuration(), prevEffectErrors = pushComponentEffectErrors(), prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(); - switch(current.tag){ - case 0: - case 11: - case 15: - commitHookPassiveUnmountEffects(current, nearestMountedAncestor, Passive); - break; - case 23: - case 22: - null !== current.memoizedState && null !== current.memoizedState.cachePool && (nearestMountedAncestor = current.memoizedState.cachePool.pool, null != nearestMountedAncestor && retainCache(nearestMountedAncestor)); - break; - case 24: - releaseCache(current.memoizedState.cache); - } - (current.mode & ProfileMode) !== NoMode && 0 <= componentEffectStartTime && 0 <= componentEffectEndTime && (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) && logComponentEffect(current, componentEffectStartTime, componentEffectEndTime, componentEffectDuration, componentEffectErrors); - popComponentEffectStart(prevEffectStart); - popComponentEffectDuration(prevEffectDuration); - componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate; - componentEffectErrors = prevEffectErrors; - current = fiber.child; - if (null !== current) current.return = fiber, nextEffect = current; - else a: for(fiber = deletedSubtreeRoot; null !== nextEffect;){ - current = nextEffect; - prevEffectStart = current.sibling; - prevEffectDuration = current.return; - detachFiberAfterEffects(current); - if (current === fiber) { - nextEffect = null; - break a; - } - if (null !== prevEffectStart) { - prevEffectStart.return = prevEffectDuration; - nextEffect = prevEffectStart; - break a; - } - nextEffect = prevEffectDuration; - } - } - } - function onCommitRoot() { - commitHooks.forEach(function(commitHook) { - return commitHook(); - }); - } - function isConcurrentActEnvironment() { - var isReactActEnvironmentGlobal = "undefined" !== typeof IS_REACT_ACT_ENVIRONMENT ? IS_REACT_ACT_ENVIRONMENT : void 0; - isReactActEnvironmentGlobal || null === ReactSharedInternals.actQueue || console.error("The current testing environment is not configured to support act(...)"); - return isReactActEnvironmentGlobal; - } - function requestUpdateLane(fiber) { - if ((executionContext & RenderContext) !== NoContext && 0 !== workInProgressRootRenderLanes) return workInProgressRootRenderLanes & -workInProgressRootRenderLanes; - var transition = ReactSharedInternals.T; - return null !== transition ? (transition._updatedFibers || (transition._updatedFibers = new Set()), transition._updatedFibers.add(fiber), requestTransitionLane()) : resolveUpdatePriority(); - } - function requestDeferredLane() { - if (0 === workInProgressDeferredLane) if (0 === (workInProgressRootRenderLanes & 536870912) || isHydrating) { - var lane = nextTransitionDeferredLane; - nextTransitionDeferredLane <<= 1; - 0 === (nextTransitionDeferredLane & 3932160) && (nextTransitionDeferredLane = 262144); - workInProgressDeferredLane = lane; - } else workInProgressDeferredLane = 536870912; - lane = suspenseHandlerStackCursor.current; - null !== lane && (lane.flags |= 32); - return workInProgressDeferredLane; - } - function scheduleViewTransitionEvent(fiber, callback) { - if (null != callback) { - var state = fiber.stateNode, instance = state.ref; - null === instance && (instance = state.ref = createViewTransitionInstance(getViewTransitionName(fiber.memoizedProps, state))); - null === pendingViewTransitionEvents && (pendingViewTransitionEvents = []); - pendingViewTransitionEvents.push(callback.bind(null, instance)); - } - } - function scheduleUpdateOnFiber(root, fiber, lane) { - isRunningInsertionEffect && console.error("useInsertionEffect must not schedule updates."); - isFlushingPassiveEffects && (didScheduleUpdateDuringPassiveEffects = !0); - if (root === workInProgressRoot && (workInProgressSuspendedReason === SuspendedOnData || workInProgressSuspendedReason === SuspendedOnAction) || null !== root.cancelPendingCommit) prepareFreshStack(root, 0), markRootSuspended(root, workInProgressRootRenderLanes, workInProgressDeferredLane, !1); - markRootUpdated$1(root, lane); - if ((executionContext & RenderContext) !== NoContext && root === workInProgressRoot) { - if (isRendering) switch(fiber.tag){ - case 0: - case 11: - case 15: - root = workInProgress && getComponentNameFromFiber(workInProgress) || "Unknown"; - didWarnAboutUpdateInRenderForAnotherComponent.has(root) || (didWarnAboutUpdateInRenderForAnotherComponent.add(root), fiber = getComponentNameFromFiber(fiber) || "Unknown", console.error("Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://react.dev/link/setstate-in-render", fiber, root, root)); - break; - case 1: - didWarnAboutUpdateInRender || (console.error("Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state."), didWarnAboutUpdateInRender = !0); - } - } else isDevToolsPresent && addFiberToLanesMap(root, fiber, lane), warnIfUpdatesNotWrappedWithActDEV(fiber), root === workInProgressRoot && ((executionContext & RenderContext) === NoContext && (workInProgressRootInterleavedUpdatedLanes |= lane), workInProgressRootExitStatus === RootSuspendedWithDelay && markRootSuspended(root, workInProgressRootRenderLanes, workInProgressDeferredLane, !1)), ensureRootIsScheduled(root); - } - function performWorkOnRoot(root, lanes, forceSync) { - if ((executionContext & (RenderContext | CommitContext)) !== NoContext) throw Error("Should not already be working."); - if (0 !== workInProgressRootRenderLanes && null !== workInProgress) { - var yieldedFiber = workInProgress, yieldEndTime = now$1(); - switch(yieldReason){ - case SuspendedOnImmediate: - case SuspendedOnData: - var startTime = yieldStartTime; - supportsUserTiming && ((yieldedFiber = yieldedFiber._debugTask) ? yieldedFiber.run(console.timeStamp.bind(console, "Suspended", startTime, yieldEndTime, COMPONENTS_TRACK, void 0, "primary-light")) : console.timeStamp("Suspended", startTime, yieldEndTime, COMPONENTS_TRACK, void 0, "primary-light")); - break; - case SuspendedOnAction: - startTime = yieldStartTime; - supportsUserTiming && ((yieldedFiber = yieldedFiber._debugTask) ? yieldedFiber.run(console.timeStamp.bind(console, "Action", startTime, yieldEndTime, COMPONENTS_TRACK, void 0, "primary-light")) : console.timeStamp("Action", startTime, yieldEndTime, COMPONENTS_TRACK, void 0, "primary-light")); - break; - default: - supportsUserTiming && (yieldedFiber = yieldEndTime - yieldStartTime, 3 > yieldedFiber || console.timeStamp("Blocked", yieldStartTime, yieldEndTime, COMPONENTS_TRACK, void 0, 5 > yieldedFiber ? "primary-light" : 10 > yieldedFiber ? "primary" : 100 > yieldedFiber ? "primary-dark" : "error")); - } - } - startTime = (forceSync = !forceSync && 0 === (lanes & 127) && 0 === (lanes & root.expiredLanes) || checkIfRootIsPrerendering(root, lanes)) ? renderRootConcurrent(root, lanes) : renderRootSync(root, lanes, !0); - var renderWasConcurrent = forceSync; - do { - if (startTime === RootInProgress) { - workInProgressRootIsPrerendering && !forceSync && markRootSuspended(root, lanes, 0, !1); - lanes = workInProgressSuspendedReason; - yieldStartTime = now(); - yieldReason = lanes; - break; - } else { - yieldedFiber = now$1(); - yieldEndTime = root.current.alternate; - if (renderWasConcurrent && !isRenderConsistentWithExternalStores(yieldEndTime)) { - setCurrentTrackFromLanes(lanes); - yieldEndTime = renderStartTime; - startTime = yieldedFiber; - !supportsUserTiming || startTime <= yieldEndTime || (workInProgressUpdateTask ? workInProgressUpdateTask.run(console.timeStamp.bind(console, "Teared Render", yieldEndTime, startTime, currentTrack, LANES_TRACK_GROUP, "error")) : console.timeStamp("Teared Render", yieldEndTime, startTime, currentTrack, LANES_TRACK_GROUP, "error")); - finalizeRender(lanes, yieldedFiber); - startTime = renderRootSync(root, lanes, !1); - renderWasConcurrent = !1; - continue; - } - if (startTime === RootErrored) { - renderWasConcurrent = lanes; - if (root.errorRecoveryDisabledLanes & renderWasConcurrent) var errorRetryLanes = 0; - else errorRetryLanes = root.pendingLanes & -536870913, errorRetryLanes = 0 !== errorRetryLanes ? errorRetryLanes : errorRetryLanes & 536870912 ? 536870912 : 0; - if (0 !== errorRetryLanes) { - setCurrentTrackFromLanes(lanes); - logErroredRenderPhase(renderStartTime, yieldedFiber, lanes, workInProgressUpdateTask); - finalizeRender(lanes, yieldedFiber); - lanes = errorRetryLanes; - a: { - yieldedFiber = root; - startTime = renderWasConcurrent; - renderWasConcurrent = workInProgressRootConcurrentErrors; - var wasRootDehydrated = yieldedFiber.current.memoizedState.isDehydrated; - wasRootDehydrated && (prepareFreshStack(yieldedFiber, errorRetryLanes).flags |= 256); - errorRetryLanes = renderRootSync(yieldedFiber, errorRetryLanes, !1); - if (errorRetryLanes !== RootErrored) { - if (workInProgressRootDidAttachPingListener && !wasRootDehydrated) { - yieldedFiber.errorRecoveryDisabledLanes |= startTime; - workInProgressRootInterleavedUpdatedLanes |= startTime; - startTime = RootSuspendedWithDelay; - break a; - } - yieldedFiber = workInProgressRootRecoverableErrors; - workInProgressRootRecoverableErrors = renderWasConcurrent; - null !== yieldedFiber && (null === workInProgressRootRecoverableErrors ? workInProgressRootRecoverableErrors = yieldedFiber : workInProgressRootRecoverableErrors.push.apply(workInProgressRootRecoverableErrors, yieldedFiber)); - } - startTime = errorRetryLanes; - } - renderWasConcurrent = !1; - if (startTime !== RootErrored) continue; - else yieldedFiber = now$1(); - } - } - if (startTime === RootFatalErrored) { - setCurrentTrackFromLanes(lanes); - logErroredRenderPhase(renderStartTime, yieldedFiber, lanes, workInProgressUpdateTask); - finalizeRender(lanes, yieldedFiber); - prepareFreshStack(root, 0); - markRootSuspended(root, lanes, 0, !0); - break; - } - a: { - forceSync = root; - switch(startTime){ - case RootInProgress: - case RootFatalErrored: - throw Error("Root did not complete. This is a bug in React."); - case RootSuspendedWithDelay: - if ((lanes & 4194048) !== lanes && (lanes & 62914560) !== lanes) break; - case RootSuspendedAtTheShell: - setCurrentTrackFromLanes(lanes); - logSuspendedRenderPhase(renderStartTime, yieldedFiber, lanes, workInProgressUpdateTask); - finalizeRender(lanes, yieldedFiber); - yieldEndTime = lanes; - 0 !== (yieldEndTime & 127) ? blockingSuspendedTime = yieldedFiber : 0 !== (yieldEndTime & 4194048) && (transitionSuspendedTime = yieldedFiber); - markRootSuspended(forceSync, lanes, workInProgressDeferredLane, !workInProgressRootDidSkipSuspendedSiblings); - break a; - case RootErrored: - workInProgressRootRecoverableErrors = null; - break; - case RootSuspended: - case RootCompleted: - break; - default: - throw Error("Unknown root exit status."); - } - if (null !== ReactSharedInternals.actQueue) commitRoot(forceSync, yieldEndTime, lanes, workInProgressRootRecoverableErrors, workInProgressTransitions, workInProgressRootDidIncludeRecursiveRenderUpdate, workInProgressDeferredLane, workInProgressRootInterleavedUpdatedLanes, workInProgressSuspendedRetryLanes, startTime, null, null, renderStartTime, yieldedFiber); - else { - if ((lanes & 62914560) === lanes && (renderWasConcurrent = globalMostRecentFallbackTime + FALLBACK_THROTTLE_MS - now$1(), 10 < renderWasConcurrent)) { - markRootSuspended(forceSync, lanes, workInProgressDeferredLane, !workInProgressRootDidSkipSuspendedSiblings); - if (0 !== getNextLanes(forceSync, 0, !0)) break a; - pendingEffectsLanes = lanes; - forceSync.timeoutHandle = scheduleTimeout(commitRootWhenReady.bind(null, forceSync, yieldEndTime, workInProgressRootRecoverableErrors, workInProgressTransitions, workInProgressRootDidIncludeRecursiveRenderUpdate, lanes, workInProgressDeferredLane, workInProgressRootInterleavedUpdatedLanes, workInProgressSuspendedRetryLanes, workInProgressRootDidSkipSuspendedSiblings, startTime, "Throttled", renderStartTime, yieldedFiber), renderWasConcurrent); - break a; - } - commitRootWhenReady(forceSync, yieldEndTime, workInProgressRootRecoverableErrors, workInProgressTransitions, workInProgressRootDidIncludeRecursiveRenderUpdate, lanes, workInProgressDeferredLane, workInProgressRootInterleavedUpdatedLanes, workInProgressSuspendedRetryLanes, workInProgressRootDidSkipSuspendedSiblings, startTime, null, renderStartTime, yieldedFiber); - } - } - } - break; - }while (1) - ensureRootIsScheduled(root); - } - function commitRootWhenReady(root, finishedWork, recoverableErrors, transitions, didIncludeRenderPhaseUpdate, lanes, spawnedLane, updatedLanes, suspendedRetryLanes, didSkipSuspendedSiblings, exitStatus, suspendedCommitReason, completedRenderStartTime, completedRenderEndTime) { - root.timeoutHandle = noTimeout; - var subtreeFlags = finishedWork.subtreeFlags, isViewTransitionEligible = (lanes & 335544064) === lanes, suspendedState = null; - if (isViewTransitionEligible || subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) { - if (suspendedState = { - stylesheets: null, - count: 0, - imgCount: 0, - imgBytes: 0, - suspenseyImages: [], - waitingForImages: !0, - waitingForViewTransition: !1, - unsuspend: noop$1 - }, appearingViewTransitions = null, accumulateSuspenseyCommitOnFiber(finishedWork, lanes, suspendedState), isViewTransitionEligible && (subtreeFlags = suspendedState, isViewTransitionEligible = root.containerInfo, isViewTransitionEligible = (9 === isViewTransitionEligible.nodeType ? isViewTransitionEligible : isViewTransitionEligible.ownerDocument).__reactViewTransition, null != isViewTransitionEligible && (subtreeFlags.count++, subtreeFlags.waitingForViewTransition = !0, subtreeFlags = onUnsuspend.bind(subtreeFlags), isViewTransitionEligible.finished.then(subtreeFlags, subtreeFlags))), subtreeFlags = (lanes & 62914560) === lanes ? globalMostRecentFallbackTime - now$1() : (lanes & 4194048) === lanes ? globalMostRecentTransitionTime - now$1() : 0, subtreeFlags = waitForCommitToBeReady(suspendedState, subtreeFlags), null !== subtreeFlags) { - pendingEffectsLanes = lanes; - root.cancelPendingCommit = subtreeFlags(commitRoot.bind(null, root, finishedWork, lanes, recoverableErrors, transitions, didIncludeRenderPhaseUpdate, spawnedLane, updatedLanes, suspendedRetryLanes, exitStatus, suspendedState, suspendedState.waitingForViewTransition ? "Waiting for the previous Animation" : 0 < suspendedState.count ? 0 < suspendedState.imgCount ? "Suspended on CSS and Images" : "Suspended on CSS" : 1 === suspendedState.imgCount ? "Suspended on an Image" : 0 < suspendedState.imgCount ? "Suspended on Images" : null, completedRenderStartTime, completedRenderEndTime)); - markRootSuspended(root, lanes, spawnedLane, !didSkipSuspendedSiblings); - return; - } - } - commitRoot(root, finishedWork, lanes, recoverableErrors, transitions, didIncludeRenderPhaseUpdate, spawnedLane, updatedLanes, suspendedRetryLanes, exitStatus, suspendedState, suspendedCommitReason, completedRenderStartTime, completedRenderEndTime); - } - function isRenderConsistentWithExternalStores(finishedWork) { - for(var node = finishedWork;;){ - var tag = node.tag; - if ((0 === tag || 11 === tag || 15 === tag) && node.flags & 16384 && (tag = node.updateQueue, null !== tag && (tag = tag.stores, null !== tag))) for(var i = 0; i < tag.length; i++){ - var check = tag[i], getSnapshot = check.getSnapshot; - check = check.value; - try { - if (!objectIs(getSnapshot(), check)) return !1; - } catch (error) { - return !1; - } - } - tag = node.child; - if (node.subtreeFlags & 16384 && null !== tag) tag.return = node, node = tag; - else { - if (node === finishedWork) break; - for(; null === node.sibling;){ - if (null === node.return || node.return === finishedWork) return !0; - node = node.return; - } - node.sibling.return = node.return; - node = node.sibling; - } - } - return !0; - } - function markRootSuspended(root, suspendedLanes, spawnedLane, didAttemptEntireTree) { - suspendedLanes &= ~workInProgressRootPingedLanes; - suspendedLanes &= ~workInProgressRootInterleavedUpdatedLanes; - root.suspendedLanes |= suspendedLanes; - root.pingedLanes &= ~suspendedLanes; - didAttemptEntireTree && (root.warmLanes |= suspendedLanes); - didAttemptEntireTree = root.expirationTimes; - for(var lanes = suspendedLanes; 0 < lanes;){ - var index = 31 - clz32(lanes), lane = 1 << index; - didAttemptEntireTree[index] = -1; - lanes &= ~lane; - } - 0 !== spawnedLane && markSpawnedDeferredLane(root, spawnedLane, suspendedLanes); - } - function flushSyncWork$1() { - return (executionContext & (RenderContext | CommitContext)) === NoContext ? (flushSyncWorkAcrossRoots_impl(0, !1), !1) : !0; - } - function resetWorkInProgressStack() { - if (null !== workInProgress) { - if (workInProgressSuspendedReason === NotSuspended) var interruptedWork = workInProgress.return; - else interruptedWork = workInProgress, resetContextDependencies(), resetHooksOnUnwind(interruptedWork), thenableState$1 = null, thenableIndexCounter$1 = 0, interruptedWork = workInProgress; - for(; null !== interruptedWork;)unwindInterruptedWork(interruptedWork.alternate, interruptedWork), interruptedWork = interruptedWork.return; - workInProgress = null; - } - } - function finalizeRender(lanes, finalizationTime) { - 0 !== (lanes & 127) && (blockingClampTime = finalizationTime); - 0 !== (lanes & 4194048) && (transitionClampTime = finalizationTime); - 0 !== (lanes & 62914560) && (retryClampTime = finalizationTime); - 0 !== (lanes & 2080374784) && (idleClampTime = finalizationTime); - } - function prepareFreshStack(root, lanes) { - supportsUserTiming && (console.timeStamp("Blocking Track", 0.003, 0.003, "Blocking", LANES_TRACK_GROUP, "primary-light"), console.timeStamp("Transition Track", 0.003, 0.003, "Transition", LANES_TRACK_GROUP, "primary-light"), console.timeStamp("Suspense Track", 0.003, 0.003, "Suspense", LANES_TRACK_GROUP, "primary-light"), console.timeStamp("Idle Track", 0.003, 0.003, "Idle", LANES_TRACK_GROUP, "primary-light")); - var previousRenderStartTime = renderStartTime; - renderStartTime = now(); - if (0 !== workInProgressRootRenderLanes && 0 < previousRenderStartTime) { - setCurrentTrackFromLanes(workInProgressRootRenderLanes); - if (workInProgressRootExitStatus === RootSuspended || workInProgressRootExitStatus === RootSuspendedWithDelay) logSuspendedRenderPhase(previousRenderStartTime, renderStartTime, lanes, workInProgressUpdateTask); - else { - var endTime = renderStartTime, debugTask = workInProgressUpdateTask; - if (supportsUserTiming && !(endTime <= previousRenderStartTime)) { - var color = (lanes & 738197653) === lanes ? "tertiary-dark" : "primary-dark", label = (lanes & 536870912) === lanes ? "Prewarm" : (lanes & 201326741) === lanes ? "Interrupted Hydration" : "Interrupted Render"; - debugTask ? debugTask.run(console.timeStamp.bind(console, label, previousRenderStartTime, endTime, currentTrack, LANES_TRACK_GROUP, color)) : console.timeStamp(label, previousRenderStartTime, endTime, currentTrack, LANES_TRACK_GROUP, color); - } - } - finalizeRender(workInProgressRootRenderLanes, renderStartTime); - } - previousRenderStartTime = workInProgressUpdateTask; - workInProgressUpdateTask = null; - if (0 !== (lanes & 127)) { - workInProgressUpdateTask = blockingUpdateTask; - debugTask = 0 <= blockingUpdateTime && blockingUpdateTime < blockingClampTime ? blockingClampTime : blockingUpdateTime; - endTime = 0 <= blockingEventTime && blockingEventTime < blockingClampTime ? blockingClampTime : blockingEventTime; - color = 0 <= endTime ? endTime : 0 <= debugTask ? debugTask : renderStartTime; - 0 <= blockingSuspendedTime ? (setCurrentTrackFromLanes(2), logSuspendedWithDelayPhase(blockingSuspendedTime, color, lanes, previousRenderStartTime)) : 0 !== (animatingLanes & 127) && (setCurrentTrackFromLanes(2), logAnimatingPhase(blockingClampTime, color, animatingTask)); - previousRenderStartTime = debugTask; - var eventTime = endTime, eventType = blockingEventType, eventIsRepeat = 0 < blockingEventRepeatTime, isSpawnedUpdate = blockingUpdateType === SPAWNED_UPDATE, isPingedUpdate = blockingUpdateType === PINGED_UPDATE; - debugTask = renderStartTime; - endTime = blockingUpdateTask; - color = blockingUpdateMethodName; - label = blockingUpdateComponentName; - if (supportsUserTiming) { - currentTrack = "Blocking"; - 0 < previousRenderStartTime ? previousRenderStartTime > debugTask && (previousRenderStartTime = debugTask) : previousRenderStartTime = debugTask; - 0 < eventTime ? eventTime > previousRenderStartTime && (eventTime = previousRenderStartTime) : eventTime = previousRenderStartTime; - if (null !== eventType && previousRenderStartTime > eventTime) { - var color$jscomp$0 = eventIsRepeat ? "secondary-light" : "warning"; - endTime ? endTime.run(console.timeStamp.bind(console, eventIsRepeat ? "Consecutive" : "Event: " + eventType, eventTime, previousRenderStartTime, currentTrack, LANES_TRACK_GROUP, color$jscomp$0)) : console.timeStamp(eventIsRepeat ? "Consecutive" : "Event: " + eventType, eventTime, previousRenderStartTime, currentTrack, LANES_TRACK_GROUP, color$jscomp$0); - } - debugTask > previousRenderStartTime && (eventTime = isSpawnedUpdate ? "error" : (lanes & 738197653) === lanes ? "tertiary-light" : "primary-light", isSpawnedUpdate = isPingedUpdate ? "Promise Resolved" : isSpawnedUpdate ? "Cascading Update" : 5 < debugTask - previousRenderStartTime ? "Update Blocked" : "Update", isPingedUpdate = [], null != label && isPingedUpdate.push([ - "Component name", - label - ]), null != color && isPingedUpdate.push([ - "Method name", - color - ]), previousRenderStartTime = { - start: previousRenderStartTime, - end: debugTask, - detail: { - devtools: { - properties: isPingedUpdate, - track: currentTrack, - trackGroup: LANES_TRACK_GROUP, - color: eventTime - } - } - }, endTime ? endTime.run(performance.measure.bind(performance, isSpawnedUpdate, previousRenderStartTime)) : performance.measure(isSpawnedUpdate, previousRenderStartTime), performance.clearMeasures(isSpawnedUpdate)); - } - blockingUpdateTime = -1.1; - blockingUpdateType = 0; - blockingUpdateComponentName = blockingUpdateMethodName = null; - blockingSuspendedTime = -1.1; - blockingEventRepeatTime = blockingEventTime; - blockingEventTime = -1.1; - blockingClampTime = now(); - } - 0 !== (lanes & 4194048) && (workInProgressUpdateTask = transitionUpdateTask, debugTask = 0 <= transitionStartTime && transitionStartTime < transitionClampTime ? transitionClampTime : transitionStartTime, previousRenderStartTime = 0 <= transitionUpdateTime && transitionUpdateTime < transitionClampTime ? transitionClampTime : transitionUpdateTime, endTime = 0 <= transitionEventTime && transitionEventTime < transitionClampTime ? transitionClampTime : transitionEventTime, color = 0 <= endTime ? endTime : 0 <= previousRenderStartTime ? previousRenderStartTime : renderStartTime, 0 <= transitionSuspendedTime ? (setCurrentTrackFromLanes(256), logSuspendedWithDelayPhase(transitionSuspendedTime, color, lanes, workInProgressUpdateTask)) : 0 !== (animatingLanes & 4194048) && (setCurrentTrackFromLanes(256), logAnimatingPhase(transitionClampTime, color, animatingTask)), isPingedUpdate = endTime, eventTime = transitionEventType, eventType = 0 < transitionEventRepeatTime, eventIsRepeat = transitionUpdateType === PINGED_UPDATE, color = renderStartTime, endTime = transitionUpdateTask, label = transitionUpdateMethodName, isSpawnedUpdate = transitionUpdateComponentName, supportsUserTiming && (currentTrack = "Transition", 0 < previousRenderStartTime ? previousRenderStartTime > color && (previousRenderStartTime = color) : previousRenderStartTime = color, 0 < debugTask ? debugTask > previousRenderStartTime && (debugTask = previousRenderStartTime) : debugTask = previousRenderStartTime, 0 < isPingedUpdate ? isPingedUpdate > debugTask && (isPingedUpdate = debugTask) : isPingedUpdate = debugTask, debugTask > isPingedUpdate && null !== eventTime && (color$jscomp$0 = eventType ? "secondary-light" : "warning", endTime ? endTime.run(console.timeStamp.bind(console, eventType ? "Consecutive" : "Event: " + eventTime, isPingedUpdate, debugTask, currentTrack, LANES_TRACK_GROUP, color$jscomp$0)) : console.timeStamp(eventType ? "Consecutive" : "Event: " + eventTime, isPingedUpdate, debugTask, currentTrack, LANES_TRACK_GROUP, color$jscomp$0)), previousRenderStartTime > debugTask && (endTime ? endTime.run(console.timeStamp.bind(console, "Action", debugTask, previousRenderStartTime, currentTrack, LANES_TRACK_GROUP, "primary-dark")) : console.timeStamp("Action", debugTask, previousRenderStartTime, currentTrack, LANES_TRACK_GROUP, "primary-dark")), color > previousRenderStartTime && (debugTask = eventIsRepeat ? "Promise Resolved" : 5 < color - previousRenderStartTime ? "Update Blocked" : "Update", isPingedUpdate = [], null != isSpawnedUpdate && isPingedUpdate.push([ - "Component name", - isSpawnedUpdate - ]), null != label && isPingedUpdate.push([ - "Method name", - label - ]), previousRenderStartTime = { - start: previousRenderStartTime, - end: color, - detail: { - devtools: { - properties: isPingedUpdate, - track: currentTrack, - trackGroup: LANES_TRACK_GROUP, - color: "primary-light" - } - } - }, endTime ? endTime.run(performance.measure.bind(performance, debugTask, previousRenderStartTime)) : performance.measure(debugTask, previousRenderStartTime), performance.clearMeasures(debugTask))), transitionUpdateTime = transitionStartTime = -1.1, transitionUpdateType = 0, transitionSuspendedTime = -1.1, transitionEventRepeatTime = transitionEventTime, transitionEventTime = -1.1, transitionClampTime = now()); - 0 !== (lanes & 62914560) && 0 !== (animatingLanes & 62914560) && (setCurrentTrackFromLanes(4194304), logAnimatingPhase(retryClampTime, renderStartTime, animatingTask)); - 0 !== (lanes & 2080374784) && 0 !== (animatingLanes & 2080374784) && (setCurrentTrackFromLanes(268435456), logAnimatingPhase(idleClampTime, renderStartTime, animatingTask)); - previousRenderStartTime = root.timeoutHandle; - previousRenderStartTime !== noTimeout && (root.timeoutHandle = noTimeout, cancelTimeout(previousRenderStartTime)); - previousRenderStartTime = root.cancelPendingCommit; - null !== previousRenderStartTime && (root.cancelPendingCommit = null, previousRenderStartTime()); - pendingEffectsLanes = 0; - resetWorkInProgressStack(); - workInProgressRoot = root; - workInProgress = previousRenderStartTime = createWorkInProgress(root.current, null); - workInProgressRootRenderLanes = lanes; - workInProgressSuspendedReason = NotSuspended; - workInProgressThrownValue = null; - workInProgressRootDidSkipSuspendedSiblings = !1; - workInProgressRootIsPrerendering = checkIfRootIsPrerendering(root, lanes); - workInProgressRootDidAttachPingListener = !1; - workInProgressRootExitStatus = RootInProgress; - workInProgressSuspendedRetryLanes = workInProgressDeferredLane = workInProgressRootPingedLanes = workInProgressRootInterleavedUpdatedLanes = workInProgressRootSkippedLanes = 0; - workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors = null; - workInProgressRootDidIncludeRecursiveRenderUpdate = !1; - 0 !== (lanes & 8) && (lanes |= lanes & 32); - endTime = root.entangledLanes; - if (0 !== endTime) for(root = root.entanglements, endTime &= lanes; 0 < endTime;)debugTask = 31 - clz32(endTime), color = 1 << debugTask, lanes |= root[debugTask], endTime &= ~color; - entangledRenderLanes = lanes; - finishQueueingConcurrentUpdates(); - root = getCurrentTime(); - 1e3 < root - lastResetTime && (ReactSharedInternals.recentlyCreatedOwnerStacks = 0, lastResetTime = root); - ReactStrictModeWarnings.discardPendingWarnings(); - return previousRenderStartTime; - } - function handleThrow(root, thrownValue) { - currentlyRenderingFiber = null; - ReactSharedInternals.H = ContextOnlyDispatcher; - ReactSharedInternals.getCurrentStack = null; - isRendering = !1; - current = null; - thrownValue === SuspenseException || thrownValue === SuspenseActionException ? (thrownValue = getSuspendedThenable(), workInProgressSuspendedReason = SuspendedOnImmediate) : thrownValue === SuspenseyCommitException ? (thrownValue = getSuspendedThenable(), workInProgressSuspendedReason = SuspendedOnInstance) : workInProgressSuspendedReason = thrownValue === SelectiveHydrationException ? SuspendedOnHydration : null !== thrownValue && "object" === typeof thrownValue && "function" === typeof thrownValue.then ? SuspendedOnDeprecatedThrowPromise : SuspendedOnError; - workInProgressThrownValue = thrownValue; - var erroredWork = workInProgress; - null === erroredWork ? (workInProgressRootExitStatus = RootFatalErrored, logUncaughtError(root, createCapturedValueAtFiber(thrownValue, root.current))) : erroredWork.mode & ProfileMode && stopProfilerTimerIfRunningAndRecordDuration(erroredWork); - } - function shouldRemainOnPreviousScreen() { - var handler = suspenseHandlerStackCursor.current; - return null === handler ? !0 : (workInProgressRootRenderLanes & 4194048) === workInProgressRootRenderLanes ? null === shellBoundary ? !0 : !1 : (workInProgressRootRenderLanes & 62914560) === workInProgressRootRenderLanes || 0 !== (workInProgressRootRenderLanes & 536870912) ? handler === shellBoundary : !1; - } - function pushDispatcher() { - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = ContextOnlyDispatcher; - return null === prevDispatcher ? ContextOnlyDispatcher : prevDispatcher; - } - function pushAsyncDispatcher() { - var prevAsyncDispatcher = ReactSharedInternals.A; - ReactSharedInternals.A = DefaultAsyncDispatcher; - return prevAsyncDispatcher; - } - function markRenderDerivedCause(fiber) { - null === workInProgressUpdateTask && (workInProgressUpdateTask = null == fiber._debugTask ? null : fiber._debugTask); - } - function renderDidSuspendDelayIfPossible() { - workInProgressRootExitStatus = RootSuspendedWithDelay; - workInProgressRootDidSkipSuspendedSiblings || (workInProgressRootRenderLanes & 4194048) !== workInProgressRootRenderLanes && null !== suspenseHandlerStackCursor.current || (workInProgressRootIsPrerendering = !0); - 0 === (workInProgressRootSkippedLanes & 134217727) && 0 === (workInProgressRootInterleavedUpdatedLanes & 134217727) || null === workInProgressRoot || markRootSuspended(workInProgressRoot, workInProgressRootRenderLanes, workInProgressDeferredLane, !1); - } - function renderRootSync(root, lanes, shouldYieldForPrerendering) { - var prevExecutionContext = executionContext; - executionContext |= RenderContext; - var prevDispatcher = pushDispatcher(), prevAsyncDispatcher = pushAsyncDispatcher(); - if (workInProgressRoot !== root || workInProgressRootRenderLanes !== lanes) { - if (isDevToolsPresent) { - var memoizedUpdaters = root.memoizedUpdaters; - 0 < memoizedUpdaters.size && (restorePendingUpdaters(root, workInProgressRootRenderLanes), memoizedUpdaters.clear()); - movePendingFibersToMemoized(root, lanes); - } - workInProgressTransitions = null; - prepareFreshStack(root, lanes); - } - lanes = !1; - memoizedUpdaters = workInProgressRootExitStatus; - a: do try { - if (workInProgressSuspendedReason !== NotSuspended && null !== workInProgress) { - var unitOfWork = workInProgress, thrownValue = workInProgressThrownValue; - switch(workInProgressSuspendedReason){ - case SuspendedOnHydration: - resetWorkInProgressStack(); - memoizedUpdaters = RootSuspendedAtTheShell; - break a; - case SuspendedOnImmediate: - case SuspendedOnData: - case SuspendedOnAction: - case SuspendedOnDeprecatedThrowPromise: - null === suspenseHandlerStackCursor.current && (lanes = !0); - var reason = workInProgressSuspendedReason; - workInProgressSuspendedReason = NotSuspended; - workInProgressThrownValue = null; - throwAndUnwindWorkLoop(root, unitOfWork, thrownValue, reason); - if (shouldYieldForPrerendering && workInProgressRootIsPrerendering) { - memoizedUpdaters = RootInProgress; - break a; - } - break; - default: - reason = workInProgressSuspendedReason, workInProgressSuspendedReason = NotSuspended, workInProgressThrownValue = null, throwAndUnwindWorkLoop(root, unitOfWork, thrownValue, reason); - } - } - workLoopSync(); - memoizedUpdaters = workInProgressRootExitStatus; - break; - } catch (thrownValue$8) { - handleThrow(root, thrownValue$8); - } - while (1) - lanes && root.shellSuspendCounter++; - resetContextDependencies(); - executionContext = prevExecutionContext; - ReactSharedInternals.H = prevDispatcher; - ReactSharedInternals.A = prevAsyncDispatcher; - null === workInProgress && (workInProgressRoot = null, workInProgressRootRenderLanes = 0, finishQueueingConcurrentUpdates()); - return memoizedUpdaters; - } - function workLoopSync() { - for(; null !== workInProgress;)performUnitOfWork(workInProgress); - } - function renderRootConcurrent(root, lanes) { - var prevExecutionContext = executionContext; - executionContext |= RenderContext; - var prevDispatcher = pushDispatcher(), prevAsyncDispatcher = pushAsyncDispatcher(); - if (workInProgressRoot !== root || workInProgressRootRenderLanes !== lanes) { - if (isDevToolsPresent) { - var memoizedUpdaters = root.memoizedUpdaters; - 0 < memoizedUpdaters.size && (restorePendingUpdaters(root, workInProgressRootRenderLanes), memoizedUpdaters.clear()); - movePendingFibersToMemoized(root, lanes); - } - workInProgressTransitions = null; - workInProgressRootRenderTargetTime = now$1() + RENDER_TIMEOUT_MS; - prepareFreshStack(root, lanes); - } else workInProgressRootIsPrerendering = checkIfRootIsPrerendering(root, lanes); - a: do try { - if (workInProgressSuspendedReason !== NotSuspended && null !== workInProgress) b: switch(lanes = workInProgress, memoizedUpdaters = workInProgressThrownValue, workInProgressSuspendedReason){ - case SuspendedOnError: - workInProgressSuspendedReason = NotSuspended; - workInProgressThrownValue = null; - throwAndUnwindWorkLoop(root, lanes, memoizedUpdaters, SuspendedOnError); - break; - case SuspendedOnData: - case SuspendedOnAction: - if (isThenableResolved(memoizedUpdaters)) { - workInProgressSuspendedReason = NotSuspended; - workInProgressThrownValue = null; - replaySuspendedUnitOfWork(lanes); - break; - } - lanes = function() { - workInProgressSuspendedReason !== SuspendedOnData && workInProgressSuspendedReason !== SuspendedOnAction || workInProgressRoot !== root || (workInProgressSuspendedReason = SuspendedAndReadyToContinue); - ensureRootIsScheduled(root); - }; - memoizedUpdaters.then(lanes, lanes); - break a; - case SuspendedOnImmediate: - workInProgressSuspendedReason = SuspendedAndReadyToContinue; - break a; - case SuspendedOnInstance: - workInProgressSuspendedReason = SuspendedOnInstanceAndReadyToContinue; - break a; - case SuspendedAndReadyToContinue: - isThenableResolved(memoizedUpdaters) ? (workInProgressSuspendedReason = NotSuspended, workInProgressThrownValue = null, replaySuspendedUnitOfWork(lanes)) : (workInProgressSuspendedReason = NotSuspended, workInProgressThrownValue = null, throwAndUnwindWorkLoop(root, lanes, memoizedUpdaters, SuspendedAndReadyToContinue)); - break; - case SuspendedOnInstanceAndReadyToContinue: - var resource = null; - switch(workInProgress.tag){ - case 26: - resource = workInProgress.memoizedState; - case 5: - case 27: - var hostFiber = workInProgress; - if (resource ? preloadResource(resource) : hostFiber.stateNode.complete) { - workInProgressSuspendedReason = NotSuspended; - workInProgressThrownValue = null; - var sibling = hostFiber.sibling; - if (null !== sibling) workInProgress = sibling; - else { - var returnFiber = hostFiber.return; - null !== returnFiber ? (workInProgress = returnFiber, completeUnitOfWork(returnFiber)) : workInProgress = null; - } - break b; - } - break; - default: - console.error("Unexpected type of fiber triggered a suspensey commit. This is a bug in React."); - } - workInProgressSuspendedReason = NotSuspended; - workInProgressThrownValue = null; - throwAndUnwindWorkLoop(root, lanes, memoizedUpdaters, SuspendedOnInstanceAndReadyToContinue); - break; - case SuspendedOnDeprecatedThrowPromise: - workInProgressSuspendedReason = NotSuspended; - workInProgressThrownValue = null; - throwAndUnwindWorkLoop(root, lanes, memoizedUpdaters, SuspendedOnDeprecatedThrowPromise); - break; - case SuspendedOnHydration: - resetWorkInProgressStack(); - workInProgressRootExitStatus = RootSuspendedAtTheShell; - break a; - default: - throw Error("Unexpected SuspendedReason. This is a bug in React."); - } - null !== ReactSharedInternals.actQueue ? workLoopSync() : workLoopConcurrentByScheduler(); - break; - } catch (thrownValue$9) { - handleThrow(root, thrownValue$9); - } - while (1) - resetContextDependencies(); - ReactSharedInternals.H = prevDispatcher; - ReactSharedInternals.A = prevAsyncDispatcher; - executionContext = prevExecutionContext; - if (null !== workInProgress) return RootInProgress; - workInProgressRoot = null; - workInProgressRootRenderLanes = 0; - finishQueueingConcurrentUpdates(); - return workInProgressRootExitStatus; - } - function workLoopConcurrentByScheduler() { - for(; null !== workInProgress && !shouldYield();)performUnitOfWork(workInProgress); - } - function performUnitOfWork(unitOfWork) { - var current = unitOfWork.alternate; - (unitOfWork.mode & ProfileMode) !== NoMode ? (startProfilerTimer(unitOfWork), current = runWithFiberInDEV(unitOfWork, beginWork, current, unitOfWork, entangledRenderLanes), stopProfilerTimerIfRunningAndRecordDuration(unitOfWork)) : current = runWithFiberInDEV(unitOfWork, beginWork, current, unitOfWork, entangledRenderLanes); - unitOfWork.memoizedProps = unitOfWork.pendingProps; - null === current ? completeUnitOfWork(unitOfWork) : workInProgress = current; - } - function replaySuspendedUnitOfWork(unitOfWork) { - var next = runWithFiberInDEV(unitOfWork, replayBeginWork, unitOfWork); - unitOfWork.memoizedProps = unitOfWork.pendingProps; - null === next ? completeUnitOfWork(unitOfWork) : workInProgress = next; - } - function replayBeginWork(unitOfWork) { - var current = unitOfWork.alternate, isProfilingMode = (unitOfWork.mode & ProfileMode) !== NoMode; - isProfilingMode && startProfilerTimer(unitOfWork); - switch(unitOfWork.tag){ - case 15: - case 0: - current = replayFunctionComponent(current, unitOfWork, unitOfWork.pendingProps, unitOfWork.type, void 0, workInProgressRootRenderLanes); - break; - case 11: - current = replayFunctionComponent(current, unitOfWork, unitOfWork.pendingProps, unitOfWork.type.render, unitOfWork.ref, workInProgressRootRenderLanes); - break; - case 5: - resetHooksOnUnwind(unitOfWork); - default: - unwindInterruptedWork(current, unitOfWork), unitOfWork = workInProgress = resetWorkInProgress(unitOfWork, entangledRenderLanes), current = beginWork(current, unitOfWork, entangledRenderLanes); - } - isProfilingMode && stopProfilerTimerIfRunningAndRecordDuration(unitOfWork); - return current; - } - function throwAndUnwindWorkLoop(root, unitOfWork, thrownValue, suspendedReason) { - resetContextDependencies(); - resetHooksOnUnwind(unitOfWork); - thenableState$1 = null; - thenableIndexCounter$1 = 0; - var returnFiber = unitOfWork.return; - try { - if (throwException(root, returnFiber, unitOfWork, thrownValue, workInProgressRootRenderLanes)) { - workInProgressRootExitStatus = RootFatalErrored; - logUncaughtError(root, createCapturedValueAtFiber(thrownValue, root.current)); - workInProgress = null; - return; - } - } catch (error) { - if (null !== returnFiber) throw workInProgress = returnFiber, error; - workInProgressRootExitStatus = RootFatalErrored; - logUncaughtError(root, createCapturedValueAtFiber(thrownValue, root.current)); - workInProgress = null; - return; - } - if (unitOfWork.flags & 32768) { - if (isHydrating || suspendedReason === SuspendedOnError) root = !0; - else if (workInProgressRootIsPrerendering || 0 !== (workInProgressRootRenderLanes & 536870912)) root = !1; - else if (workInProgressRootDidSkipSuspendedSiblings = root = !0, suspendedReason === SuspendedOnData || suspendedReason === SuspendedOnAction || suspendedReason === SuspendedOnImmediate || suspendedReason === SuspendedOnDeprecatedThrowPromise) suspendedReason = suspenseHandlerStackCursor.current, null !== suspendedReason && 13 === suspendedReason.tag && (suspendedReason.flags |= 16384); - unwindUnitOfWork(unitOfWork, root); - } else completeUnitOfWork(unitOfWork); - } - function completeUnitOfWork(unitOfWork) { - var completedWork = unitOfWork; - do { - if (0 !== (completedWork.flags & 32768)) { - unwindUnitOfWork(completedWork, workInProgressRootDidSkipSuspendedSiblings); - return; - } - var current = completedWork.alternate; - unitOfWork = completedWork.return; - startProfilerTimer(completedWork); - current = runWithFiberInDEV(completedWork, completeWork, current, completedWork, entangledRenderLanes); - (completedWork.mode & ProfileMode) !== NoMode && stopProfilerTimerIfRunningAndRecordIncompleteDuration(completedWork); - if (null !== current) { - workInProgress = current; - return; - } - completedWork = completedWork.sibling; - if (null !== completedWork) { - workInProgress = completedWork; - return; - } - workInProgress = completedWork = unitOfWork; - }while (null !== completedWork) - workInProgressRootExitStatus === RootInProgress && (workInProgressRootExitStatus = RootCompleted); - } - function unwindUnitOfWork(unitOfWork, skipSiblings) { - do { - var next = unwindWork(unitOfWork.alternate, unitOfWork); - if (null !== next) { - next.flags &= 32767; - workInProgress = next; - return; - } - if ((unitOfWork.mode & ProfileMode) !== NoMode) { - stopProfilerTimerIfRunningAndRecordIncompleteDuration(unitOfWork); - next = unitOfWork.actualDuration; - for(var child = unitOfWork.child; null !== child;)next += child.actualDuration, child = child.sibling; - unitOfWork.actualDuration = next; - } - next = unitOfWork.return; - null !== next && (next.flags |= 32768, next.subtreeFlags = 0, next.deletions = null); - if (!skipSiblings && (unitOfWork = unitOfWork.sibling, null !== unitOfWork)) { - workInProgress = unitOfWork; - return; - } - workInProgress = unitOfWork = next; - }while (null !== unitOfWork) - workInProgressRootExitStatus = RootSuspendedAtTheShell; - workInProgress = null; - } - function commitRoot(root, finishedWork, lanes, recoverableErrors, transitions, didIncludeRenderPhaseUpdate, spawnedLane, updatedLanes, suspendedRetryLanes, exitStatus, suspendedState, suspendedCommitReason, completedRenderStartTime, completedRenderEndTime) { - root.cancelPendingCommit = null; - do flushPendingEffects(); - while (pendingEffectsStatus !== NO_PENDING_EFFECTS) - ReactStrictModeWarnings.flushLegacyContextWarning(); - ReactStrictModeWarnings.flushPendingUnsafeLifecycleWarnings(); - if ((executionContext & (RenderContext | CommitContext)) !== NoContext) throw Error("Should not already be working."); - setCurrentTrackFromLanes(lanes); - exitStatus === RootErrored ? logErroredRenderPhase(completedRenderStartTime, completedRenderEndTime, lanes, workInProgressUpdateTask) : null !== recoverableErrors ? logRecoveredRenderPhase(completedRenderStartTime, completedRenderEndTime, lanes, recoverableErrors, null !== finishedWork && null !== finishedWork.alternate && finishedWork.alternate.memoizedState.isDehydrated && 0 !== (finishedWork.flags & 256), workInProgressUpdateTask) : logRenderPhase(completedRenderStartTime, completedRenderEndTime, lanes, workInProgressUpdateTask); - if (null !== finishedWork) { - 0 === lanes && console.error("finishedLanes should not be empty during a commit. This is a bug in React."); - if (finishedWork === root.current) throw Error("Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue."); - didIncludeRenderPhaseUpdate = finishedWork.lanes | finishedWork.childLanes; - didIncludeRenderPhaseUpdate |= concurrentlyUpdatedLanes; - markRootFinished(root, lanes, didIncludeRenderPhaseUpdate, spawnedLane, updatedLanes, suspendedRetryLanes); - root === workInProgressRoot && (workInProgress = workInProgressRoot = null, workInProgressRootRenderLanes = 0); - pendingFinishedWork = finishedWork; - pendingEffectsRoot = root; - pendingEffectsLanes = lanes; - pendingEffectsRemainingLanes = didIncludeRenderPhaseUpdate; - pendingPassiveTransitions = transitions; - pendingRecoverableErrors = recoverableErrors; - pendingEffectsRenderEndTime = completedRenderEndTime; - pendingSuspendedCommitReason = suspendedCommitReason; - pendingDelayedCommitReason = IMMEDIATE_COMMIT; - pendingViewTransitionEvents = pendingSuspendedViewTransitionReason = null; - (lanes & 335544064) === lanes ? (pendingTransitionTypes = claimQueuedTransitionTypes(root), recoverableErrors = 10262) : (pendingTransitionTypes = null, recoverableErrors = 10256); - 0 !== finishedWork.actualDuration || 0 !== (finishedWork.subtreeFlags & recoverableErrors) || 0 !== (finishedWork.flags & recoverableErrors) ? (root.callbackNode = null, root.callbackPriority = 0, scheduleCallback$1(NormalPriority$1, function() { - schedulerEvent = window.event; - pendingDelayedCommitReason === IMMEDIATE_COMMIT && (pendingDelayedCommitReason = DELAYED_PASSIVE_COMMIT); - flushPassiveEffects(); - return null; - })) : (root.callbackNode = null, root.callbackPriority = 0); - commitErrors = null; - commitStartTime = now(); - null !== suspendedCommitReason && logSuspendedCommitPhase(completedRenderEndTime, commitStartTime, suspendedCommitReason, workInProgressUpdateTask); - shouldStartViewTransition = !1; - suspendedCommitReason = 0 !== (finishedWork.flags & 13878); - if (0 !== (finishedWork.subtreeFlags & 13878) || suspendedCommitReason) { - suspendedCommitReason = ReactSharedInternals.T; - ReactSharedInternals.T = null; - completedRenderEndTime = ReactDOMSharedInternals.p; - ReactDOMSharedInternals.p = DiscreteEventPriority; - recoverableErrors = executionContext; - executionContext |= CommitContext; - try { - commitBeforeMutationEffects(root, finishedWork, lanes); - } finally{ - executionContext = recoverableErrors, ReactDOMSharedInternals.p = completedRenderEndTime, ReactSharedInternals.T = suspendedCommitReason; - } - } - finishedWork = shouldStartViewTransition; - pendingEffectsStatus = PENDING_MUTATION_PHASE; - finishedWork ? (animatingLanes |= lanes, animatingTask = null, pendingViewTransition = startViewTransition(suspendedState, root.containerInfo, pendingTransitionTypes, flushMutationEffects, flushLayoutEffects, flushAfterMutationEffects, flushSpawnedWork, flushPassiveEffects, reportViewTransitionError, suspendedViewTransition, finishedViewTransition.bind(null, lanes))) : (flushMutationEffects(), flushLayoutEffects(), flushSpawnedWork()); - } - } - function reportViewTransitionError(error) { - if (pendingEffectsStatus !== NO_PENDING_EFFECTS) { - var onRecoverableError = pendingEffectsRoot.onRecoverableError; - onRecoverableError(error, makeErrorInfo(null)); - } - } - function suspendedViewTransition(reason) { - commitEndTime = now(); - logCommitPhase(null === pendingSuspendedCommitReason ? pendingEffectsRenderEndTime : commitStartTime, commitEndTime, commitErrors, pendingDelayedCommitReason === ABORTED_VIEW_TRANSITION_COMMIT, workInProgressUpdateTask); - pendingSuspendedCommitReason = pendingSuspendedViewTransitionReason = reason; - } - function finishedViewTransition(lanes) { - if (0 !== (animatingLanes & lanes)) { - var task = animatingTask; - animatingLanes &= ~lanes; - animatingTask = null; - 0 !== (lanes & 4194048) && 0 === (workInProgressRootRenderLanes & 4194048) && 0 === (pendingEffectsLanes & 4194048) && (setCurrentTrackFromLanes(256), logAnimatingPhase(transitionClampTime, now$1(), task)); - 0 !== (lanes & 62914560) && 0 === (workInProgressRootRenderLanes & 62914560) && 0 === (pendingEffectsLanes & 62914560) && (setCurrentTrackFromLanes(4194304), logAnimatingPhase(retryClampTime, now$1(), task)); - 0 !== (lanes & 2080374784) && 0 === (workInProgressRootRenderLanes & 2080374784) && 0 === (pendingEffectsLanes & 2080374784) && (setCurrentTrackFromLanes(268435456), logAnimatingPhase(idleClampTime, now$1(), task)); - } - } - function flushAfterMutationEffects() { - pendingEffectsStatus === PENDING_AFTER_MUTATION_PHASE && (pendingEffectsStatus = NO_PENDING_EFFECTS, commitAfterMutationEffectsOnFiber(pendingFinishedWork, pendingEffectsRoot), pendingEffectsStatus = PENDING_SPAWNED_WORK); - } - function flushMutationEffects() { - if (pendingEffectsStatus === PENDING_MUTATION_PHASE) { - pendingEffectsStatus = NO_PENDING_EFFECTS; - var root = pendingEffectsRoot, finishedWork = pendingFinishedWork, lanes = pendingEffectsLanes, rootMutationHasEffect = 0 !== (finishedWork.flags & 13878); - if (0 !== (finishedWork.subtreeFlags & 13878) || rootMutationHasEffect) { - rootMutationHasEffect = ReactSharedInternals.T; - ReactSharedInternals.T = null; - var previousPriority = ReactDOMSharedInternals.p; - ReactDOMSharedInternals.p = DiscreteEventPriority; - var prevExecutionContext = executionContext; - executionContext |= CommitContext; - try { - inProgressLanes = lanes; - inProgressRoot = root; - inUpdateViewTransition = rootViewTransitionAffected = !1; - resetComponentEffectTimers(); - commitMutationEffectsOnFiber(finishedWork, root, lanes); - inProgressRoot = inProgressLanes = null; - lanes = selectionInformation; - var curFocusedElem = getActiveElementDeep(root.containerInfo), priorFocusedElem = lanes.focusedElem, priorSelectionRange = lanes.selectionRange; - if (curFocusedElem !== priorFocusedElem && priorFocusedElem && priorFocusedElem.ownerDocument && containsNode(priorFocusedElem.ownerDocument.documentElement, priorFocusedElem)) { - if (null !== priorSelectionRange && hasSelectionCapabilities(priorFocusedElem)) { - var start = priorSelectionRange.start, end = priorSelectionRange.end; - void 0 === end && (end = start); - if ("selectionStart" in priorFocusedElem) priorFocusedElem.selectionStart = start, priorFocusedElem.selectionEnd = Math.min(end, priorFocusedElem.value.length); - else { - var doc = priorFocusedElem.ownerDocument || document, win = doc && doc.defaultView || window; - if (win.getSelection) { - var selection = win.getSelection(), length = priorFocusedElem.textContent.length, start$jscomp$0 = Math.min(priorSelectionRange.start, length), end$jscomp$0 = void 0 === priorSelectionRange.end ? start$jscomp$0 : Math.min(priorSelectionRange.end, length); - !selection.extend && start$jscomp$0 > end$jscomp$0 && (curFocusedElem = end$jscomp$0, end$jscomp$0 = start$jscomp$0, start$jscomp$0 = curFocusedElem); - var startMarker = getNodeForCharacterOffset(priorFocusedElem, start$jscomp$0), endMarker = getNodeForCharacterOffset(priorFocusedElem, end$jscomp$0); - if (startMarker && endMarker && (1 !== selection.rangeCount || selection.anchorNode !== startMarker.node || selection.anchorOffset !== startMarker.offset || selection.focusNode !== endMarker.node || selection.focusOffset !== endMarker.offset)) { - var range = doc.createRange(); - range.setStart(startMarker.node, startMarker.offset); - selection.removeAllRanges(); - start$jscomp$0 > end$jscomp$0 ? (selection.addRange(range), selection.extend(endMarker.node, endMarker.offset)) : (range.setEnd(endMarker.node, endMarker.offset), selection.addRange(range)); - } - } - } - } - doc = []; - for(selection = priorFocusedElem; selection = selection.parentNode;)1 === selection.nodeType && doc.push({ - element: selection, - left: selection.scrollLeft, - top: selection.scrollTop - }); - "function" === typeof priorFocusedElem.focus && priorFocusedElem.focus(); - for(priorFocusedElem = 0; priorFocusedElem < doc.length; priorFocusedElem++){ - var info = doc[priorFocusedElem]; - info.element.scrollLeft = info.left; - info.element.scrollTop = info.top; - } - } - _enabled = !!eventsEnabled; - selectionInformation = eventsEnabled = null; - } finally{ - executionContext = prevExecutionContext, ReactDOMSharedInternals.p = previousPriority, ReactSharedInternals.T = rootMutationHasEffect; - } - } - root.current = finishedWork; - pendingEffectsStatus = PENDING_LAYOUT_PHASE; - } - } - function flushLayoutEffects() { - if (pendingEffectsStatus === PENDING_LAYOUT_PHASE) { - pendingEffectsStatus = NO_PENDING_EFFECTS; - var suspendedViewTransitionReason = pendingSuspendedViewTransitionReason; - if (null !== suspendedViewTransitionReason) { - commitStartTime = now(); - var startTime = commitEndTime, endTime = commitStartTime; - !supportsUserTiming || endTime <= startTime || (animatingTask ? animatingTask.run(console.timeStamp.bind(console, suspendedViewTransitionReason, startTime, endTime, currentTrack, LANES_TRACK_GROUP, "secondary-light")) : console.timeStamp(suspendedViewTransitionReason, startTime, endTime, currentTrack, LANES_TRACK_GROUP, "secondary-light")); - } - suspendedViewTransitionReason = pendingEffectsRoot; - startTime = pendingFinishedWork; - endTime = pendingEffectsLanes; - var rootHasLayoutEffect = 0 !== (startTime.flags & 8772); - if (0 !== (startTime.subtreeFlags & 8772) || rootHasLayoutEffect) { - rootHasLayoutEffect = ReactSharedInternals.T; - ReactSharedInternals.T = null; - var _previousPriority = ReactDOMSharedInternals.p; - ReactDOMSharedInternals.p = DiscreteEventPriority; - var _prevExecutionContext = executionContext; - executionContext |= CommitContext; - try { - inProgressLanes = endTime, inProgressRoot = suspendedViewTransitionReason, resetComponentEffectTimers(), commitLayoutEffectOnFiber(suspendedViewTransitionReason, startTime.alternate, startTime), inProgressRoot = inProgressLanes = null; - } finally{ - executionContext = _prevExecutionContext, ReactDOMSharedInternals.p = _previousPriority, ReactSharedInternals.T = rootHasLayoutEffect; - } - } - suspendedViewTransitionReason = pendingEffectsRenderEndTime; - startTime = pendingSuspendedCommitReason; - commitEndTime = now(); - logCommitPhase(null === startTime ? suspendedViewTransitionReason : commitStartTime, commitEndTime, commitErrors, pendingDelayedCommitReason === ABORTED_VIEW_TRANSITION_COMMIT, workInProgressUpdateTask); - pendingEffectsStatus = PENDING_AFTER_MUTATION_PHASE; - } - } - function flushSpawnedWork() { - if (pendingEffectsStatus === PENDING_SPAWNED_WORK || pendingEffectsStatus === PENDING_AFTER_MUTATION_PHASE) { - if (pendingEffectsStatus === PENDING_SPAWNED_WORK) { - var startViewTransitionStartTime = commitEndTime; - commitEndTime = now(); - var endTime = commitEndTime, abortedViewTransition = pendingDelayedCommitReason === ABORTED_VIEW_TRANSITION_COMMIT; - !supportsUserTiming || endTime <= startViewTransitionStartTime || (animatingTask ? animatingTask.run(console.timeStamp.bind(console, abortedViewTransition ? "Interrupted View Transition" : "Starting Animation", startViewTransitionStartTime, endTime, currentTrack, LANES_TRACK_GROUP, abortedViewTransition ? "error" : "secondary-light")) : console.timeStamp(abortedViewTransition ? "Interrupted View Transition" : "Starting Animation", startViewTransitionStartTime, endTime, currentTrack, LANES_TRACK_GROUP, abortedViewTransition ? " error" : "secondary-light")); - pendingDelayedCommitReason !== ABORTED_VIEW_TRANSITION_COMMIT && (pendingDelayedCommitReason = ANIMATION_STARTED_COMMIT); - } - pendingEffectsStatus = NO_PENDING_EFFECTS; - pendingViewTransition = null; - requestPaint(); - startViewTransitionStartTime = pendingEffectsRoot; - var finishedWork = pendingFinishedWork; - endTime = pendingEffectsLanes; - var recoverableErrors = pendingRecoverableErrors; - abortedViewTransition = (endTime & 335544064) === endTime ? 10262 : 10256; - (abortedViewTransition = 0 !== finishedWork.actualDuration || 0 !== (finishedWork.subtreeFlags & abortedViewTransition) || 0 !== (finishedWork.flags & abortedViewTransition)) ? pendingEffectsStatus = PENDING_PASSIVE_PHASE : (pendingEffectsStatus = NO_PENDING_EFFECTS, pendingFinishedWork = pendingEffectsRoot = null, releaseRootPooledCache(startViewTransitionStartTime, startViewTransitionStartTime.pendingLanes), nestedPassiveUpdateCount = 0, rootWithPassiveNestedUpdates = null); - var remainingLanes = startViewTransitionStartTime.pendingLanes; - 0 === remainingLanes && (legacyErrorBoundariesThatAlreadyFailed = null); - abortedViewTransition || commitDoubleInvokeEffectsInDEV(startViewTransitionStartTime); - remainingLanes = lanesToEventPriority(endTime); - finishedWork = finishedWork.stateNode; - if (injectedHook && "function" === typeof injectedHook.onCommitFiberRoot) try { - var didError = 128 === (finishedWork.current.flags & 128); - switch(remainingLanes){ - case DiscreteEventPriority: - var schedulerPriority = ImmediatePriority; - break; - case ContinuousEventPriority: - schedulerPriority = UserBlockingPriority; - break; - case DefaultEventPriority: - schedulerPriority = NormalPriority$1; - break; - case IdleEventPriority: - schedulerPriority = IdlePriority; - break; - default: - schedulerPriority = NormalPriority$1; - } - injectedHook.onCommitFiberRoot(rendererID, finishedWork, schedulerPriority, didError); - } catch (err) { - hasLoggedError || (hasLoggedError = !0, console.error("React instrumentation encountered an error: %o", err)); - } - isDevToolsPresent && startViewTransitionStartTime.memoizedUpdaters.clear(); - onCommitRoot(); - if (null !== recoverableErrors) { - didError = ReactSharedInternals.T; - schedulerPriority = ReactDOMSharedInternals.p; - ReactDOMSharedInternals.p = DiscreteEventPriority; - ReactSharedInternals.T = null; - try { - var onRecoverableError = startViewTransitionStartTime.onRecoverableError; - for(finishedWork = 0; finishedWork < recoverableErrors.length; finishedWork++){ - var recoverableError = recoverableErrors[finishedWork], errorInfo = makeErrorInfo(recoverableError.stack); - runWithFiberInDEV(recoverableError.source, onRecoverableError, recoverableError.value, errorInfo); - } - } finally{ - ReactSharedInternals.T = didError, ReactDOMSharedInternals.p = schedulerPriority; - } - } - onRecoverableError = pendingViewTransitionEvents; - recoverableError = pendingTransitionTypes; - pendingTransitionTypes = null; - if (null !== onRecoverableError) for(pendingViewTransitionEvents = null, null === recoverableError && (recoverableError = []), errorInfo = 0; errorInfo < onRecoverableError.length; errorInfo++)(0, onRecoverableError[errorInfo])(recoverableError); - 0 !== (pendingEffectsLanes & 3) && flushPendingEffects(); - ensureRootIsScheduled(startViewTransitionStartTime); - remainingLanes = startViewTransitionStartTime.pendingLanes; - 0 !== (endTime & 261930) && 0 !== (remainingLanes & 42) ? (nestedUpdateScheduled = !0, startViewTransitionStartTime === rootWithNestedUpdates ? nestedUpdateCount++ : (nestedUpdateCount = 0, rootWithNestedUpdates = startViewTransitionStartTime)) : nestedUpdateCount = 0; - abortedViewTransition || finalizeRender(endTime, commitEndTime); - flushSyncWorkAcrossRoots_impl(0, !1); - } - } - function makeErrorInfo(componentStack) { - componentStack = { - componentStack: componentStack - }; - Object.defineProperty(componentStack, "digest", { - get: function() { - console.error('You are accessing "digest" from the errorInfo object passed to onRecoverableError. This property is no longer provided as part of errorInfo but can be accessed as a property of the Error instance itself.'); - } - }); - return componentStack; - } - function releaseRootPooledCache(root, remainingLanes) { - 0 === (root.pooledCacheLanes &= remainingLanes) && (remainingLanes = root.pooledCache, null != remainingLanes && (root.pooledCache = null, releaseCache(remainingLanes))); - } - function flushPendingEffects() { - null !== pendingViewTransition && (pendingViewTransition.skipTransition(), didWarnAboutInterruptedViewTransitions || (didWarnAboutInterruptedViewTransitions = !0, console.warn("A flushSync update cancelled a View Transition because it was called while the View Transition was still preparing. To preserve the synchronous semantics, React had to skip the View Transition. If you can, try to avoid flushSync() in a scenario that's likely to interfere.")), pendingViewTransition = null, pendingDelayedCommitReason = ABORTED_VIEW_TRANSITION_COMMIT); - flushMutationEffects(); - flushLayoutEffects(); - flushSpawnedWork(); - return flushPassiveEffects(); - } - function flushPassiveEffects() { - if (pendingEffectsStatus !== PENDING_PASSIVE_PHASE) return !1; - var root = pendingEffectsRoot, remainingLanes = pendingEffectsRemainingLanes; - pendingEffectsRemainingLanes = 0; - var renderPriority = lanesToEventPriority(pendingEffectsLanes), priority = 0 === DefaultEventPriority || DefaultEventPriority > renderPriority ? DefaultEventPriority : renderPriority; - renderPriority = ReactSharedInternals.T; - var previousPriority = ReactDOMSharedInternals.p; - try { - ReactDOMSharedInternals.p = priority; - ReactSharedInternals.T = null; - var transitions = pendingPassiveTransitions; - pendingPassiveTransitions = null; - priority = pendingEffectsRoot; - var lanes = pendingEffectsLanes; - pendingEffectsStatus = NO_PENDING_EFFECTS; - pendingFinishedWork = pendingEffectsRoot = null; - pendingEffectsLanes = 0; - if ((executionContext & (RenderContext | CommitContext)) !== NoContext) throw Error("Cannot flush passive effects while already rendering."); - setCurrentTrackFromLanes(lanes); - isFlushingPassiveEffects = !0; - didScheduleUpdateDuringPassiveEffects = !1; - var passiveEffectStartTime = 0; - commitErrors = null; - passiveEffectStartTime = now$1(); - if (pendingDelayedCommitReason === ANIMATION_STARTED_COMMIT) logAnimatingPhase(commitEndTime, passiveEffectStartTime, animatingTask); - else { - var startTime = commitEndTime, endTime = passiveEffectStartTime, delayedUntilPaint = pendingDelayedCommitReason === DELAYED_PASSIVE_COMMIT; - !supportsUserTiming || endTime <= startTime || (workInProgressUpdateTask ? workInProgressUpdateTask.run(console.timeStamp.bind(console, delayedUntilPaint ? "Waiting for Paint" : "Waiting", startTime, endTime, currentTrack, LANES_TRACK_GROUP, "secondary-light")) : console.timeStamp(delayedUntilPaint ? "Waiting for Paint" : "Waiting", startTime, endTime, currentTrack, LANES_TRACK_GROUP, "secondary-light")); - } - startTime = executionContext; - executionContext |= CommitContext; - var finishedWork = priority.current; - resetComponentEffectTimers(); - commitPassiveUnmountOnFiber(finishedWork); - var finishedWork$jscomp$0 = priority.current; - finishedWork = pendingEffectsRenderEndTime; - resetComponentEffectTimers(); - commitPassiveMountOnFiber(priority, finishedWork$jscomp$0, lanes, transitions, finishedWork); - commitDoubleInvokeEffectsInDEV(priority); - executionContext = startTime; - var passiveEffectsEndTime = now$1(); - finishedWork$jscomp$0 = passiveEffectStartTime; - finishedWork = workInProgressUpdateTask; - null !== commitErrors ? logCommitErrored(finishedWork$jscomp$0, passiveEffectsEndTime, commitErrors, !0, finishedWork) : !supportsUserTiming || passiveEffectsEndTime <= finishedWork$jscomp$0 || (finishedWork ? finishedWork.run(console.timeStamp.bind(console, "Remaining Effects", finishedWork$jscomp$0, passiveEffectsEndTime, currentTrack, LANES_TRACK_GROUP, "secondary-dark")) : console.timeStamp("Remaining Effects", finishedWork$jscomp$0, passiveEffectsEndTime, currentTrack, LANES_TRACK_GROUP, "secondary-dark")); - finalizeRender(lanes, passiveEffectsEndTime); - flushSyncWorkAcrossRoots_impl(0, !1); - didScheduleUpdateDuringPassiveEffects ? priority === rootWithPassiveNestedUpdates ? nestedPassiveUpdateCount++ : (nestedPassiveUpdateCount = 0, rootWithPassiveNestedUpdates = priority) : nestedPassiveUpdateCount = 0; - didScheduleUpdateDuringPassiveEffects = isFlushingPassiveEffects = !1; - if (injectedHook && "function" === typeof injectedHook.onPostCommitFiberRoot) try { - injectedHook.onPostCommitFiberRoot(rendererID, priority); - } catch (err) { - hasLoggedError || (hasLoggedError = !0, console.error("React instrumentation encountered an error: %o", err)); - } - var stateNode = priority.current.stateNode; - stateNode.effectDuration = 0; - stateNode.passiveEffectDuration = 0; - return !0; - } finally{ - ReactDOMSharedInternals.p = previousPriority, ReactSharedInternals.T = renderPriority, releaseRootPooledCache(root, remainingLanes); - } - } - function captureCommitPhaseErrorOnRoot(rootFiber, sourceFiber, error) { - sourceFiber = createCapturedValueAtFiber(error, sourceFiber); - recordEffectError(sourceFiber); - sourceFiber = createRootErrorUpdate(rootFiber.stateNode, sourceFiber, 2); - rootFiber = enqueueUpdate(rootFiber, sourceFiber, 2); - null !== rootFiber && (markRootUpdated$1(rootFiber, 2), ensureRootIsScheduled(rootFiber)); - } - function captureCommitPhaseError(sourceFiber, nearestMountedAncestor, error) { - isRunningInsertionEffect = !1; - if (3 === sourceFiber.tag) captureCommitPhaseErrorOnRoot(sourceFiber, sourceFiber, error); - else { - for(; null !== nearestMountedAncestor;){ - if (3 === nearestMountedAncestor.tag) { - captureCommitPhaseErrorOnRoot(nearestMountedAncestor, sourceFiber, error); - return; - } - if (1 === nearestMountedAncestor.tag) { - var instance = nearestMountedAncestor.stateNode; - if ("function" === typeof nearestMountedAncestor.type.getDerivedStateFromError || "function" === typeof instance.componentDidCatch && (null === legacyErrorBoundariesThatAlreadyFailed || !legacyErrorBoundariesThatAlreadyFailed.has(instance))) { - sourceFiber = createCapturedValueAtFiber(error, sourceFiber); - recordEffectError(sourceFiber); - error = createClassErrorUpdate(2); - instance = enqueueUpdate(nearestMountedAncestor, error, 2); - null !== instance && (initializeClassErrorUpdate(error, instance, nearestMountedAncestor, sourceFiber), markRootUpdated$1(instance, 2), ensureRootIsScheduled(instance)); - return; - } - } - nearestMountedAncestor = nearestMountedAncestor.return; - } - console.error("Internal React error: Attempted to capture a commit phase error inside a detached tree. This indicates a bug in React. Potential causes include deleting the same fiber more than once, committing an already-finished tree, or an inconsistent return pointer.\n\nError message:\n\n%s", error); - } - } - function attachPingListener(root, wakeable, lanes) { - var pingCache = root.pingCache; - if (null === pingCache) { - pingCache = root.pingCache = new PossiblyWeakMap(); - var threadIDs = new Set(); - pingCache.set(wakeable, threadIDs); - } else threadIDs = pingCache.get(wakeable), void 0 === threadIDs && (threadIDs = new Set(), pingCache.set(wakeable, threadIDs)); - threadIDs.has(lanes) || (workInProgressRootDidAttachPingListener = !0, threadIDs.add(lanes), pingCache = pingSuspendedRoot.bind(null, root, wakeable, lanes), isDevToolsPresent && restorePendingUpdaters(root, lanes), wakeable.then(pingCache, pingCache)); - } - function pingSuspendedRoot(root, wakeable, pingedLanes) { - var pingCache = root.pingCache; - null !== pingCache && pingCache.delete(wakeable); - root.pingedLanes |= root.suspendedLanes & pingedLanes; - root.warmLanes &= ~pingedLanes; - 0 !== (pingedLanes & 127) ? 0 > blockingUpdateTime && (blockingClampTime = blockingUpdateTime = now(), blockingUpdateTask = createTask("Promise Resolved"), blockingUpdateType = PINGED_UPDATE) : 0 !== (pingedLanes & 4194048) && 0 > transitionUpdateTime && (transitionClampTime = transitionUpdateTime = now(), transitionUpdateTask = createTask("Promise Resolved"), transitionUpdateType = PINGED_UPDATE); - isConcurrentActEnvironment() && null === ReactSharedInternals.actQueue && console.error("A suspended resource finished loading inside a test, but the event was not wrapped in act(...).\n\nWhen testing, code that resolves suspended data should be wrapped into act(...):\n\nact(() => {\n /* finish loading suspended data */\n});\n/* assert on the output */\n\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act"); - workInProgressRoot === root && (workInProgressRootRenderLanes & pingedLanes) === pingedLanes && (workInProgressRootExitStatus === RootSuspendedWithDelay || workInProgressRootExitStatus === RootSuspended && (workInProgressRootRenderLanes & 62914560) === workInProgressRootRenderLanes && now$1() - globalMostRecentFallbackTime < FALLBACK_THROTTLE_MS ? (executionContext & RenderContext) === NoContext && prepareFreshStack(root, 0) : workInProgressRootPingedLanes |= pingedLanes, workInProgressSuspendedRetryLanes === workInProgressRootRenderLanes && (workInProgressSuspendedRetryLanes = 0)); - ensureRootIsScheduled(root); - } - function retryTimedOutBoundary(boundaryFiber, retryLane) { - 0 === retryLane && (retryLane = claimNextRetryLane()); - boundaryFiber = enqueueConcurrentRenderForLane(boundaryFiber, retryLane); - null !== boundaryFiber && (markRootUpdated$1(boundaryFiber, retryLane), ensureRootIsScheduled(boundaryFiber)); - } - function retryDehydratedSuspenseBoundary(boundaryFiber) { - var suspenseState = boundaryFiber.memoizedState, retryLane = 0; - null !== suspenseState && (retryLane = suspenseState.retryLane); - retryTimedOutBoundary(boundaryFiber, retryLane); - } - function resolveRetryWakeable(boundaryFiber, wakeable) { - var retryLane = 0; - switch(boundaryFiber.tag){ - case 31: - case 13: - var retryCache = boundaryFiber.stateNode; - var suspenseState = boundaryFiber.memoizedState; - null !== suspenseState && (retryLane = suspenseState.retryLane); - break; - case 19: - retryCache = boundaryFiber.stateNode; - break; - case 22: - retryCache = boundaryFiber.stateNode._retryCache; - break; - default: - throw Error("Pinged unknown suspense boundary type. This is probably a bug in React."); - } - null !== retryCache && retryCache.delete(wakeable); - retryTimedOutBoundary(boundaryFiber, retryLane); - } - function recursivelyTraverseAndDoubleInvokeEffectsInDEV(root$jscomp$0, parentFiber, isInStrictMode) { - if (0 !== (parentFiber.subtreeFlags & 134225920)) for(parentFiber = parentFiber.child; null !== parentFiber;){ - var root = root$jscomp$0, fiber = parentFiber, isStrictModeFiber = fiber.type === REACT_STRICT_MODE_TYPE; - isStrictModeFiber = isInStrictMode || isStrictModeFiber; - 22 !== fiber.tag ? fiber.flags & 134217728 ? isStrictModeFiber && runWithFiberInDEV(fiber, doubleInvokeEffectsOnFiber, root, fiber) : recursivelyTraverseAndDoubleInvokeEffectsInDEV(root, fiber, isStrictModeFiber) : null === fiber.memoizedState && (isStrictModeFiber && fiber.flags & 8192 ? runWithFiberInDEV(fiber, doubleInvokeEffectsOnFiber, root, fiber) : fiber.subtreeFlags & 134217728 && runWithFiberInDEV(fiber, recursivelyTraverseAndDoubleInvokeEffectsInDEV, root, fiber, isStrictModeFiber)); - parentFiber = parentFiber.sibling; - } - } - function doubleInvokeEffectsOnFiber(root, fiber) { - setIsStrictModeForDevtools(!0); - try { - disappearLayoutEffects(fiber), disconnectPassiveEffect(fiber), reappearLayoutEffects(root, fiber.alternate, fiber, !1), reconnectPassiveEffects(root, fiber, 0, null, !1, 0); - } finally{ - setIsStrictModeForDevtools(!1); - } - } - function commitDoubleInvokeEffectsInDEV(root) { - var doubleInvokeEffects = !0; - root.current.mode & (StrictLegacyMode | StrictEffectsMode) || (doubleInvokeEffects = !1); - recursivelyTraverseAndDoubleInvokeEffectsInDEV(root, root.current, doubleInvokeEffects); - } - function warnAboutUpdateOnNotYetMountedFiberInDEV(fiber) { - if ((executionContext & RenderContext) === NoContext) { - var tag = fiber.tag; - if (3 === tag || 1 === tag || 0 === tag || 11 === tag || 14 === tag || 15 === tag) { - tag = getComponentNameFromFiber(fiber) || "ReactComponent"; - if (null !== didWarnStateUpdateForNotYetMountedComponent) { - if (didWarnStateUpdateForNotYetMountedComponent.has(tag)) return; - didWarnStateUpdateForNotYetMountedComponent.add(tag); - } else didWarnStateUpdateForNotYetMountedComponent = new Set([ - tag - ]); - runWithFiberInDEV(fiber, function() { - console.error("Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously tries to update the component. Move this work to useEffect instead."); - }); - } - } - } - function restorePendingUpdaters(root, lanes) { - isDevToolsPresent && root.memoizedUpdaters.forEach(function(schedulingFiber) { - addFiberToLanesMap(root, schedulingFiber, lanes); - }); - } - function scheduleCallback$1(priorityLevel, callback) { - var actQueue = ReactSharedInternals.actQueue; - return null !== actQueue ? (actQueue.push(callback), fakeActCallbackNode$1) : scheduleCallback$3(priorityLevel, callback); - } - function warnIfUpdatesNotWrappedWithActDEV(fiber) { - isConcurrentActEnvironment() && null === ReactSharedInternals.actQueue && runWithFiberInDEV(fiber, function() { - console.error("An update to %s inside a test was not wrapped in act(...).\n\nWhen testing, code that causes React state updates should be wrapped into act(...):\n\nact(() => {\n /* fire events that update state */\n});\n/* assert on the output */\n\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act", getComponentNameFromFiber(fiber)); - }); - } - function ensureRootIsScheduled(root) { - root !== lastScheduledRoot && null === root.next && (null === lastScheduledRoot ? firstScheduledRoot = lastScheduledRoot = root : lastScheduledRoot = lastScheduledRoot.next = root); - mightHavePendingSyncWork = !0; - null !== ReactSharedInternals.actQueue ? didScheduleMicrotask_act || (didScheduleMicrotask_act = !0, scheduleImmediateRootScheduleTask()) : didScheduleMicrotask || (didScheduleMicrotask = !0, scheduleImmediateRootScheduleTask()); - } - function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { - if (!isFlushingWork && mightHavePendingSyncWork) { - isFlushingWork = !0; - do { - var didPerformSomeWork = !1; - for(var root = firstScheduledRoot; null !== root;){ - if (!onlyLegacy) if (0 !== syncTransitionLanes) { - var pendingLanes = root.pendingLanes; - if (0 === pendingLanes) var nextLanes = 0; - else { - var suspendedLanes = root.suspendedLanes, pingedLanes = root.pingedLanes; - nextLanes = (1 << 31 - clz32(42 | syncTransitionLanes) + 1) - 1; - nextLanes &= pendingLanes & ~(suspendedLanes & ~pingedLanes); - nextLanes = nextLanes & 201326741 ? nextLanes & 201326741 | 1 : nextLanes ? nextLanes | 2 : 0; - } - 0 !== nextLanes && (didPerformSomeWork = !0, performSyncWorkOnRoot(root, nextLanes)); - } else nextLanes = workInProgressRootRenderLanes, nextLanes = getNextLanes(root, root === workInProgressRoot ? nextLanes : 0, null !== root.cancelPendingCommit || root.timeoutHandle !== noTimeout), 0 === (nextLanes & 3) || checkIfRootIsPrerendering(root, nextLanes) || (didPerformSomeWork = !0, performSyncWorkOnRoot(root, nextLanes)); - root = root.next; - } - }while (didPerformSomeWork) - isFlushingWork = !1; - } - } - function processRootScheduleInImmediateTask() { - schedulerEvent = window.event; - processRootScheduleInMicrotask(); - } - function processRootScheduleInMicrotask() { - mightHavePendingSyncWork = didScheduleMicrotask_act = didScheduleMicrotask = !1; - var syncTransitionLanes = 0; - 0 !== currentEventTransitionLane && shouldAttemptEagerTransition() && (syncTransitionLanes = currentEventTransitionLane); - for(var currentTime = now$1(), prev = null, root = firstScheduledRoot; null !== root;){ - var next = root.next, nextLanes = scheduleTaskForRootDuringMicrotask(root, currentTime); - if (0 === nextLanes) root.next = null, null === prev ? firstScheduledRoot = next : prev.next = next, null === next && (lastScheduledRoot = prev); - else if (prev = root, 0 !== syncTransitionLanes || 0 !== (nextLanes & 3)) mightHavePendingSyncWork = !0; - root = next; - } - pendingEffectsStatus !== NO_PENDING_EFFECTS && pendingEffectsStatus !== PENDING_PASSIVE_PHASE || flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1); - 0 !== currentEventTransitionLane && (currentEventTransitionLane = 0); - } - function scheduleTaskForRootDuringMicrotask(root, currentTime) { - for(var suspendedLanes = root.suspendedLanes, pingedLanes = root.pingedLanes, expirationTimes = root.expirationTimes, lanes = root.pendingLanes & -62914561; 0 < lanes;){ - var index = 31 - clz32(lanes), lane = 1 << index, expirationTime = expirationTimes[index]; - if (-1 === expirationTime) { - if (0 === (lane & suspendedLanes) || 0 !== (lane & pingedLanes)) expirationTimes[index] = computeExpirationTime(lane, currentTime); - } else expirationTime <= currentTime && (root.expiredLanes |= lane); - lanes &= ~lane; - } - currentTime = workInProgressRoot; - suspendedLanes = workInProgressRootRenderLanes; - suspendedLanes = getNextLanes(root, root === currentTime ? suspendedLanes : 0, null !== root.cancelPendingCommit || root.timeoutHandle !== noTimeout); - pingedLanes = root.callbackNode; - if (0 === suspendedLanes || root === currentTime && (workInProgressSuspendedReason === SuspendedOnData || workInProgressSuspendedReason === SuspendedOnAction) || null !== root.cancelPendingCommit) return null !== pingedLanes && cancelCallback(pingedLanes), root.callbackNode = null, root.callbackPriority = 0; - if (0 === (suspendedLanes & 3) || checkIfRootIsPrerendering(root, suspendedLanes)) { - currentTime = suspendedLanes & -suspendedLanes; - if (currentTime !== root.callbackPriority || null !== ReactSharedInternals.actQueue && pingedLanes !== fakeActCallbackNode) cancelCallback(pingedLanes); - else return currentTime; - switch(lanesToEventPriority(suspendedLanes)){ - case DiscreteEventPriority: - case ContinuousEventPriority: - suspendedLanes = UserBlockingPriority; - break; - case DefaultEventPriority: - suspendedLanes = NormalPriority$1; - break; - case IdleEventPriority: - suspendedLanes = IdlePriority; - break; - default: - suspendedLanes = NormalPriority$1; - } - pingedLanes = performWorkOnRootViaSchedulerTask.bind(null, root); - null !== ReactSharedInternals.actQueue ? (ReactSharedInternals.actQueue.push(pingedLanes), suspendedLanes = fakeActCallbackNode) : suspendedLanes = scheduleCallback$3(suspendedLanes, pingedLanes); - root.callbackPriority = currentTime; - root.callbackNode = suspendedLanes; - return currentTime; - } - null !== pingedLanes && cancelCallback(pingedLanes); - root.callbackPriority = 2; - root.callbackNode = null; - return 2; - } - function performWorkOnRootViaSchedulerTask(root, didTimeout) { - nestedUpdateScheduled = currentUpdateIsNested = !1; - schedulerEvent = window.event; - if (pendingEffectsStatus !== NO_PENDING_EFFECTS && pendingEffectsStatus !== PENDING_PASSIVE_PHASE) return root.callbackNode = null, root.callbackPriority = 0, null; - var originalCallbackNode = root.callbackNode; - pendingDelayedCommitReason === IMMEDIATE_COMMIT && (pendingDelayedCommitReason = DELAYED_PASSIVE_COMMIT); - if (flushPendingEffects() && root.callbackNode !== originalCallbackNode) return null; - var workInProgressRootRenderLanes$jscomp$0 = workInProgressRootRenderLanes; - workInProgressRootRenderLanes$jscomp$0 = getNextLanes(root, root === workInProgressRoot ? workInProgressRootRenderLanes$jscomp$0 : 0, null !== root.cancelPendingCommit || root.timeoutHandle !== noTimeout); - if (0 === workInProgressRootRenderLanes$jscomp$0) return null; - performWorkOnRoot(root, workInProgressRootRenderLanes$jscomp$0, didTimeout); - scheduleTaskForRootDuringMicrotask(root, now$1()); - return null != root.callbackNode && root.callbackNode === originalCallbackNode ? performWorkOnRootViaSchedulerTask.bind(null, root) : null; - } - function performSyncWorkOnRoot(root, lanes) { - if (flushPendingEffects()) return null; - currentUpdateIsNested = nestedUpdateScheduled; - nestedUpdateScheduled = !1; - performWorkOnRoot(root, lanes, !0); - } - function cancelCallback(callbackNode) { - callbackNode !== fakeActCallbackNode && null !== callbackNode && cancelCallback$1(callbackNode); - } - function scheduleImmediateRootScheduleTask() { - null !== ReactSharedInternals.actQueue && ReactSharedInternals.actQueue.push(function() { - processRootScheduleInMicrotask(); - return null; - }); - scheduleMicrotask(function() { - (executionContext & (RenderContext | CommitContext)) !== NoContext ? scheduleCallback$3(ImmediatePriority, processRootScheduleInImmediateTask) : processRootScheduleInMicrotask(); - }); - } - function requestTransitionLane() { - if (0 === currentEventTransitionLane) { - var actionScopeLane = currentEntangledLane; - 0 === actionScopeLane && (actionScopeLane = nextTransitionUpdateLane, nextTransitionUpdateLane <<= 1, 0 === (nextTransitionUpdateLane & 261888) && (nextTransitionUpdateLane = 256)); - currentEventTransitionLane = actionScopeLane; - } - return currentEventTransitionLane; - } - function coerceFormActionProp(actionProp) { - if (null == actionProp || "symbol" === typeof actionProp || "boolean" === typeof actionProp) return null; - if ("function" === typeof actionProp) return actionProp; - checkAttributeStringCoercion(actionProp, "action"); - return sanitizeURL("" + actionProp); - } - function createFormDataWithSubmitter(form, submitter) { - var temp = submitter.ownerDocument.createElement("input"); - temp.name = submitter.name; - temp.value = submitter.value; - form.id && temp.setAttribute("form", form.id); - submitter.parentNode.insertBefore(temp, submitter); - form = new FormData(form); - temp.parentNode.removeChild(temp); - return form; - } - function extractEvents$1(dispatchQueue, domEventName, maybeTargetInst, nativeEvent, nativeEventTarget) { - if ("submit" === domEventName && maybeTargetInst && maybeTargetInst.stateNode === nativeEventTarget) { - var action = coerceFormActionProp((nativeEventTarget[internalPropsKey] || null).action), submitter = nativeEvent.submitter; - submitter && (domEventName = (domEventName = submitter[internalPropsKey] || null) ? coerceFormActionProp(domEventName.formAction) : submitter.getAttribute("formAction"), null !== domEventName && (action = domEventName, submitter = null)); - var event = new SyntheticEvent("action", "action", null, nativeEvent, nativeEventTarget); - dispatchQueue.push({ - event: event, - listeners: [ - { - instance: null, - listener: function() { - if (nativeEvent.defaultPrevented) { - if (0 !== currentEventTransitionLane) { - var formData = submitter ? createFormDataWithSubmitter(nativeEventTarget, submitter) : new FormData(nativeEventTarget), pendingState = { - pending: !0, - data: formData, - method: nativeEventTarget.method, - action: action - }; - Object.freeze(pendingState); - startHostTransition(maybeTargetInst, pendingState, null, formData); - } - } else "function" === typeof action && (event.preventDefault(), formData = submitter ? createFormDataWithSubmitter(nativeEventTarget, submitter) : new FormData(nativeEventTarget), pendingState = { - pending: !0, - data: formData, - method: nativeEventTarget.method, - action: action - }, Object.freeze(pendingState), startHostTransition(maybeTargetInst, pendingState, action, formData)); - }, - currentTarget: nativeEventTarget - } - ] - }); - } - } - function executeDispatch(event, listener, currentTarget) { - event.currentTarget = currentTarget; - try { - listener(event); - } catch (error) { - reportGlobalError(error); - } - event.currentTarget = null; - } - function processDispatchQueue(dispatchQueue, eventSystemFlags) { - eventSystemFlags = 0 !== (eventSystemFlags & 4); - for(var i = 0; i < dispatchQueue.length; i++){ - var _dispatchQueue$i = dispatchQueue[i]; - a: { - var previousInstance = void 0, event = _dispatchQueue$i.event; - _dispatchQueue$i = _dispatchQueue$i.listeners; - if (eventSystemFlags) for(var i$jscomp$0 = _dispatchQueue$i.length - 1; 0 <= i$jscomp$0; i$jscomp$0--){ - var _dispatchListeners$i = _dispatchQueue$i[i$jscomp$0], instance = _dispatchListeners$i.instance, currentTarget = _dispatchListeners$i.currentTarget; - _dispatchListeners$i = _dispatchListeners$i.listener; - if (instance !== previousInstance && event.isPropagationStopped()) break a; - null !== instance ? runWithFiberInDEV(instance, executeDispatch, event, _dispatchListeners$i, currentTarget) : executeDispatch(event, _dispatchListeners$i, currentTarget); - previousInstance = instance; - } - else for(i$jscomp$0 = 0; i$jscomp$0 < _dispatchQueue$i.length; i$jscomp$0++){ - _dispatchListeners$i = _dispatchQueue$i[i$jscomp$0]; - instance = _dispatchListeners$i.instance; - currentTarget = _dispatchListeners$i.currentTarget; - _dispatchListeners$i = _dispatchListeners$i.listener; - if (instance !== previousInstance && event.isPropagationStopped()) break a; - null !== instance ? runWithFiberInDEV(instance, executeDispatch, event, _dispatchListeners$i, currentTarget) : executeDispatch(event, _dispatchListeners$i, currentTarget); - previousInstance = instance; - } - } - } - } - function listenToNonDelegatedEvent(domEventName, targetElement) { - nonDelegatedEvents.has(domEventName) || console.error('Did not expect a listenToNonDelegatedEvent() call for "%s". This is a bug in React. Please file an issue.', domEventName); - var listenerSet = targetElement[internalEventHandlersKey]; - void 0 === listenerSet && (listenerSet = targetElement[internalEventHandlersKey] = new Set()); - var listenerSetKey = domEventName + "__bubble"; - listenerSet.has(listenerSetKey) || (addTrappedEventListener(targetElement, domEventName, 2, !1), listenerSet.add(listenerSetKey)); - } - function listenToNativeEvent(domEventName, isCapturePhaseListener, target) { - nonDelegatedEvents.has(domEventName) && !isCapturePhaseListener && console.error('Did not expect a listenToNativeEvent() call for "%s" in the bubble phase. This is a bug in React. Please file an issue.', domEventName); - var eventSystemFlags = 0; - isCapturePhaseListener && (eventSystemFlags |= 4); - addTrappedEventListener(target, domEventName, eventSystemFlags, isCapturePhaseListener); - } - function listenToAllSupportedEvents(rootContainerElement) { - if (!rootContainerElement[listeningMarker]) { - rootContainerElement[listeningMarker] = !0; - allNativeEvents.forEach(function(domEventName) { - "selectionchange" !== domEventName && (nonDelegatedEvents.has(domEventName) || listenToNativeEvent(domEventName, !1, rootContainerElement), listenToNativeEvent(domEventName, !0, rootContainerElement)); - }); - var ownerDocument = 9 === rootContainerElement.nodeType ? rootContainerElement : rootContainerElement.ownerDocument; - null === ownerDocument || ownerDocument[listeningMarker] || (ownerDocument[listeningMarker] = !0, listenToNativeEvent("selectionchange", !1, ownerDocument)); - } - } - function addTrappedEventListener(targetContainer, domEventName, eventSystemFlags, isCapturePhaseListener) { - switch(getEventPriority(domEventName)){ - case DiscreteEventPriority: - var listenerWrapper = dispatchDiscreteEvent; - break; - case ContinuousEventPriority: - listenerWrapper = dispatchContinuousEvent; - break; - default: - listenerWrapper = dispatchEvent; - } - eventSystemFlags = listenerWrapper.bind(null, domEventName, eventSystemFlags, targetContainer); - listenerWrapper = void 0; - !passiveBrowserEventsSupported || "touchstart" !== domEventName && "touchmove" !== domEventName && "wheel" !== domEventName || (listenerWrapper = !0); - isCapturePhaseListener ? void 0 !== listenerWrapper ? targetContainer.addEventListener(domEventName, eventSystemFlags, { - capture: !0, - passive: listenerWrapper - }) : targetContainer.addEventListener(domEventName, eventSystemFlags, !0) : void 0 !== listenerWrapper ? targetContainer.addEventListener(domEventName, eventSystemFlags, { - passive: listenerWrapper - }) : targetContainer.addEventListener(domEventName, eventSystemFlags, !1); - } - function dispatchEventForPluginEventSystem(domEventName, eventSystemFlags, nativeEvent, targetInst$jscomp$0, targetContainer) { - var ancestorInst = targetInst$jscomp$0; - if (0 === (eventSystemFlags & 1) && 0 === (eventSystemFlags & 2) && null !== targetInst$jscomp$0) a: for(;;){ - if (null === targetInst$jscomp$0) return; - var nodeTag = targetInst$jscomp$0.tag; - if (3 === nodeTag || 4 === nodeTag) { - var container = targetInst$jscomp$0.stateNode.containerInfo; - if (container === targetContainer) break; - if (4 === nodeTag) for(nodeTag = targetInst$jscomp$0.return; null !== nodeTag;){ - var grandTag = nodeTag.tag; - if ((3 === grandTag || 4 === grandTag) && nodeTag.stateNode.containerInfo === targetContainer) return; - nodeTag = nodeTag.return; - } - for(; null !== container;){ - nodeTag = getClosestInstanceFromNode(container); - if (null === nodeTag) return; - grandTag = nodeTag.tag; - if (5 === grandTag || 6 === grandTag || 26 === grandTag || 27 === grandTag) { - targetInst$jscomp$0 = ancestorInst = nodeTag; - continue a; - } - container = container.parentNode; - } - } - targetInst$jscomp$0 = targetInst$jscomp$0.return; - } - batchedUpdates$1(function() { - var targetInst = ancestorInst, nativeEventTarget = getEventTarget(nativeEvent), dispatchQueue = []; - a: { - var reactName = topLevelEventsToReactNames.get(domEventName); - if (void 0 !== reactName) { - var SyntheticEventCtor = SyntheticEvent, reactEventType = domEventName; - switch(domEventName){ - case "keypress": - if (0 === getEventCharCode(nativeEvent)) break a; - case "keydown": - case "keyup": - SyntheticEventCtor = SyntheticKeyboardEvent; - break; - case "focusin": - reactEventType = "focus"; - SyntheticEventCtor = SyntheticFocusEvent; - break; - case "focusout": - reactEventType = "blur"; - SyntheticEventCtor = SyntheticFocusEvent; - break; - case "beforeblur": - case "afterblur": - SyntheticEventCtor = SyntheticFocusEvent; - break; - case "click": - if (2 === nativeEvent.button) break a; - case "auxclick": - case "dblclick": - case "mousedown": - case "mousemove": - case "mouseup": - case "mouseout": - case "mouseover": - case "contextmenu": - SyntheticEventCtor = SyntheticMouseEvent; - break; - case "drag": - case "dragend": - case "dragenter": - case "dragexit": - case "dragleave": - case "dragover": - case "dragstart": - case "drop": - SyntheticEventCtor = SyntheticDragEvent; - break; - case "touchcancel": - case "touchend": - case "touchmove": - case "touchstart": - SyntheticEventCtor = SyntheticTouchEvent; - break; - case ANIMATION_END: - case ANIMATION_ITERATION: - case ANIMATION_START: - SyntheticEventCtor = SyntheticAnimationEvent; - break; - case TRANSITION_END: - SyntheticEventCtor = SyntheticTransitionEvent; - break; - case "scroll": - case "scrollend": - SyntheticEventCtor = SyntheticUIEvent; - break; - case "wheel": - SyntheticEventCtor = SyntheticWheelEvent; - break; - case "copy": - case "cut": - case "paste": - SyntheticEventCtor = SyntheticClipboardEvent; - break; - case "gotpointercapture": - case "lostpointercapture": - case "pointercancel": - case "pointerdown": - case "pointermove": - case "pointerout": - case "pointerover": - case "pointerup": - SyntheticEventCtor = SyntheticPointerEvent; - break; - case "toggle": - case "beforetoggle": - SyntheticEventCtor = SyntheticToggleEvent; - } - var inCapturePhase = 0 !== (eventSystemFlags & 4), accumulateTargetOnly = !inCapturePhase && ("scroll" === domEventName || "scrollend" === domEventName), reactEventName = inCapturePhase ? null !== reactName ? reactName + "Capture" : null : reactName; - inCapturePhase = []; - for(var instance = targetInst, lastHostComponent; null !== instance;){ - var _instance2 = instance; - lastHostComponent = _instance2.stateNode; - _instance2 = _instance2.tag; - 5 !== _instance2 && 26 !== _instance2 && 27 !== _instance2 || null === lastHostComponent || null === reactEventName || (_instance2 = getListener(instance, reactEventName), null != _instance2 && inCapturePhase.push(createDispatchListener(instance, _instance2, lastHostComponent))); - if (accumulateTargetOnly) break; - instance = instance.return; - } - 0 < inCapturePhase.length && (reactName = new SyntheticEventCtor(reactName, reactEventType, null, nativeEvent, nativeEventTarget), dispatchQueue.push({ - event: reactName, - listeners: inCapturePhase - })); - } - } - if (0 === (eventSystemFlags & 7)) { - a: { - SyntheticEventCtor = "mouseover" === domEventName || "pointerover" === domEventName; - reactName = "mouseout" === domEventName || "pointerout" === domEventName; - if (SyntheticEventCtor && nativeEvent !== currentReplayingEvent && (reactEventType = nativeEvent.relatedTarget || nativeEvent.fromElement) && (getClosestInstanceFromNode(reactEventType) || reactEventType[internalContainerInstanceKey])) break a; - if (reactName || SyntheticEventCtor) { - reactEventType = nativeEventTarget.window === nativeEventTarget ? nativeEventTarget : (SyntheticEventCtor = nativeEventTarget.ownerDocument) ? SyntheticEventCtor.defaultView || SyntheticEventCtor.parentWindow : window; - if (reactName) { - if (SyntheticEventCtor = nativeEvent.relatedTarget || nativeEvent.toElement, reactName = targetInst, SyntheticEventCtor = SyntheticEventCtor ? getClosestInstanceFromNode(SyntheticEventCtor) : null, null !== SyntheticEventCtor && (accumulateTargetOnly = getNearestMountedFiber(SyntheticEventCtor), inCapturePhase = SyntheticEventCtor.tag, SyntheticEventCtor !== accumulateTargetOnly || 5 !== inCapturePhase && 27 !== inCapturePhase && 6 !== inCapturePhase)) SyntheticEventCtor = null; - } else reactName = null, SyntheticEventCtor = targetInst; - if (reactName !== SyntheticEventCtor) { - inCapturePhase = SyntheticMouseEvent; - _instance2 = "onMouseLeave"; - reactEventName = "onMouseEnter"; - instance = "mouse"; - if ("pointerout" === domEventName || "pointerover" === domEventName) inCapturePhase = SyntheticPointerEvent, _instance2 = "onPointerLeave", reactEventName = "onPointerEnter", instance = "pointer"; - accumulateTargetOnly = null == reactName ? reactEventType : getNodeFromInstance(reactName); - lastHostComponent = null == SyntheticEventCtor ? reactEventType : getNodeFromInstance(SyntheticEventCtor); - reactEventType = new inCapturePhase(_instance2, instance + "leave", reactName, nativeEvent, nativeEventTarget); - reactEventType.target = accumulateTargetOnly; - reactEventType.relatedTarget = lastHostComponent; - _instance2 = null; - getClosestInstanceFromNode(nativeEventTarget) === targetInst && (inCapturePhase = new inCapturePhase(reactEventName, instance + "enter", SyntheticEventCtor, nativeEvent, nativeEventTarget), inCapturePhase.target = lastHostComponent, inCapturePhase.relatedTarget = accumulateTargetOnly, _instance2 = inCapturePhase); - accumulateTargetOnly = _instance2; - inCapturePhase = reactName && SyntheticEventCtor ? getLowestCommonAncestor(reactName, SyntheticEventCtor, getParent) : null; - null !== reactName && accumulateEnterLeaveListenersForEvent(dispatchQueue, reactEventType, reactName, inCapturePhase, !1); - null !== SyntheticEventCtor && null !== accumulateTargetOnly && accumulateEnterLeaveListenersForEvent(dispatchQueue, accumulateTargetOnly, SyntheticEventCtor, inCapturePhase, !0); - } - } - } - a: { - reactName = targetInst ? getNodeFromInstance(targetInst) : window; - SyntheticEventCtor = reactName.nodeName && reactName.nodeName.toLowerCase(); - if ("select" === SyntheticEventCtor || "input" === SyntheticEventCtor && "file" === reactName.type) var getTargetInstFunc = getTargetInstForChangeEvent; - else if (isTextInputElement(reactName)) if (isInputEventSupported) getTargetInstFunc = getTargetInstForInputOrChangeEvent; - else { - getTargetInstFunc = getTargetInstForInputEventPolyfill; - var handleEventFunc = handleEventsForInputEventPolyfill; - } - else SyntheticEventCtor = reactName.nodeName, !SyntheticEventCtor || "input" !== SyntheticEventCtor.toLowerCase() || "checkbox" !== reactName.type && "radio" !== reactName.type ? targetInst && isCustomElement(targetInst.elementType) && (getTargetInstFunc = getTargetInstForChangeEvent) : getTargetInstFunc = getTargetInstForClickEvent; - if (getTargetInstFunc && (getTargetInstFunc = getTargetInstFunc(domEventName, targetInst))) { - createAndAccumulateChangeEvent(dispatchQueue, getTargetInstFunc, nativeEvent, nativeEventTarget); - break a; - } - handleEventFunc && handleEventFunc(domEventName, reactName, targetInst); - "focusout" === domEventName && targetInst && "number" === reactName.type && null != targetInst.memoizedProps.value && setDefaultValue(reactName, "number", reactName.value); - } - handleEventFunc = targetInst ? getNodeFromInstance(targetInst) : window; - switch(domEventName){ - case "focusin": - if (isTextInputElement(handleEventFunc) || "true" === handleEventFunc.contentEditable) activeElement = handleEventFunc, activeElementInst = targetInst, lastSelection = null; - break; - case "focusout": - lastSelection = activeElementInst = activeElement = null; - break; - case "mousedown": - mouseDown = !0; - break; - case "contextmenu": - case "mouseup": - case "dragend": - mouseDown = !1; - constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget); - break; - case "selectionchange": - if (skipSelectionChangeEvent) break; - case "keydown": - case "keyup": - constructSelectEvent(dispatchQueue, nativeEvent, nativeEventTarget); - } - var fallbackData; - if (canUseCompositionEvent) b: { - switch(domEventName){ - case "compositionstart": - var eventType = "onCompositionStart"; - break b; - case "compositionend": - eventType = "onCompositionEnd"; - break b; - case "compositionupdate": - eventType = "onCompositionUpdate"; - break b; - } - eventType = void 0; - } - else isComposing ? isFallbackCompositionEnd(domEventName, nativeEvent) && (eventType = "onCompositionEnd") : "keydown" === domEventName && nativeEvent.keyCode === START_KEYCODE && (eventType = "onCompositionStart"); - eventType && (useFallbackCompositionData && "ko" !== nativeEvent.locale && (isComposing || "onCompositionStart" !== eventType ? "onCompositionEnd" === eventType && isComposing && (fallbackData = getData()) : (root = nativeEventTarget, startText = "value" in root ? root.value : root.textContent, isComposing = !0)), handleEventFunc = accumulateTwoPhaseListeners(targetInst, eventType), 0 < handleEventFunc.length && (eventType = new SyntheticCompositionEvent(eventType, domEventName, null, nativeEvent, nativeEventTarget), dispatchQueue.push({ - event: eventType, - listeners: handleEventFunc - }), fallbackData ? eventType.data = fallbackData : (fallbackData = getDataFromCustomEvent(nativeEvent), null !== fallbackData && (eventType.data = fallbackData)))); - if (fallbackData = canUseTextInputEvent ? getNativeBeforeInputChars(domEventName, nativeEvent) : getFallbackBeforeInputChars(domEventName, nativeEvent)) eventType = accumulateTwoPhaseListeners(targetInst, "onBeforeInput"), 0 < eventType.length && (handleEventFunc = new SyntheticInputEvent("onBeforeInput", "beforeinput", null, nativeEvent, nativeEventTarget), dispatchQueue.push({ - event: handleEventFunc, - listeners: eventType - }), handleEventFunc.data = fallbackData); - extractEvents$1(dispatchQueue, domEventName, targetInst, nativeEvent, nativeEventTarget); - } - processDispatchQueue(dispatchQueue, eventSystemFlags); - }); - } - function createDispatchListener(instance, listener, currentTarget) { - return { - instance: instance, - listener: listener, - currentTarget: currentTarget - }; - } - function accumulateTwoPhaseListeners(targetFiber, reactName) { - for(var captureName = reactName + "Capture", listeners = []; null !== targetFiber;){ - var _instance3 = targetFiber, stateNode = _instance3.stateNode; - _instance3 = _instance3.tag; - 5 !== _instance3 && 26 !== _instance3 && 27 !== _instance3 || null === stateNode || (_instance3 = getListener(targetFiber, captureName), null != _instance3 && listeners.unshift(createDispatchListener(targetFiber, _instance3, stateNode)), _instance3 = getListener(targetFiber, reactName), null != _instance3 && listeners.push(createDispatchListener(targetFiber, _instance3, stateNode))); - if (3 === targetFiber.tag) return listeners; - targetFiber = targetFiber.return; - } - return []; - } - function getParent(inst) { - if (null === inst) return null; - do inst = inst.return; - while (inst && 5 !== inst.tag && 27 !== inst.tag) - return inst ? inst : null; - } - function accumulateEnterLeaveListenersForEvent(dispatchQueue, event, target, common, inCapturePhase) { - for(var registrationName = event._reactName, listeners = []; null !== target && target !== common;){ - var _instance4 = target, alternate = _instance4.alternate, stateNode = _instance4.stateNode; - _instance4 = _instance4.tag; - if (null !== alternate && alternate === common) break; - 5 !== _instance4 && 26 !== _instance4 && 27 !== _instance4 || null === stateNode || (alternate = stateNode, inCapturePhase ? (stateNode = getListener(target, registrationName), null != stateNode && listeners.unshift(createDispatchListener(target, stateNode, alternate))) : inCapturePhase || (stateNode = getListener(target, registrationName), null != stateNode && listeners.push(createDispatchListener(target, stateNode, alternate)))); - target = target.return; - } - 0 !== listeners.length && dispatchQueue.push({ - event: event, - listeners: listeners - }); - } - function validatePropertiesInDevelopment(type, props) { - validateProperties$2(type, props); - "input" !== type && "textarea" !== type && "select" !== type || null == props || null !== props.value || didWarnValueNull || (didWarnValueNull = !0, "select" === type && props.multiple ? console.error("`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.", type) : console.error("`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.", type)); - var eventRegistry = { - registrationNameDependencies: registrationNameDependencies, - possibleRegistrationNames: possibleRegistrationNames - }; - isCustomElement(type) || "string" === typeof props.is || warnUnknownProperties(type, props, eventRegistry); - props.contentEditable && !props.suppressContentEditableWarning && null != props.children && console.error("A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional."); - } - function warnForPropDifference(propName, serverValue, clientValue, serverDifferences) { - serverValue !== clientValue && (clientValue = normalizeMarkupForTextOrAttribute(clientValue), normalizeMarkupForTextOrAttribute(serverValue) !== clientValue && (serverDifferences[propName] = serverValue)); - } - function hasViewTransition(htmlElement) { - return !!(htmlElement.getAttribute("vt-share") || htmlElement.getAttribute("vt-exit") || htmlElement.getAttribute("vt-enter") || htmlElement.getAttribute("vt-update")); - } - function isExpectedViewTransitionName(htmlElement) { - if (!hasViewTransition(htmlElement)) return !1; - var expectedVtName = htmlElement.getAttribute("vt-name"); - htmlElement = htmlElement.style["view-transition-name"]; - return expectedVtName ? expectedVtName === htmlElement : htmlElement.startsWith("_T_"); - } - function warnForExtraAttributes(domElement, attributeNames, serverDifferences) { - attributeNames.forEach(function(attributeName) { - "style" === attributeName ? "" !== domElement.getAttribute(attributeName) && (attributeName = domElement.style, (1 === attributeName.length && "view-transition-name" === attributeName[0] || 2 === attributeName.length && "view-transition-class" === attributeName[0] && "view-transition-name" === attributeName[1]) && isExpectedViewTransitionName(domElement) || (serverDifferences.style = getStylesObjectFromElement(domElement))) : serverDifferences[getPropNameFromAttributeName(attributeName)] = domElement.getAttribute(attributeName); - }); - } - function warnForInvalidEventListener(registrationName, listener) { - !1 === listener ? console.error("Expected `%s` listener to be a function, instead got `false`.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.", registrationName, registrationName, registrationName) : console.error("Expected `%s` listener to be a function, instead got a value of `%s` type.", registrationName, typeof listener); - } - function normalizeHTML(parent, html) { - parent = parent.namespaceURI === MATH_NAMESPACE || parent.namespaceURI === SVG_NAMESPACE ? parent.ownerDocument.createElementNS(parent.namespaceURI, parent.tagName) : parent.ownerDocument.createElement(parent.tagName); - parent.innerHTML = html; - return parent.innerHTML; - } - function normalizeMarkupForTextOrAttribute(markup) { - willCoercionThrow(markup) && (console.error("The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before using it here.", typeName(markup)), testStringCoercion(markup)); - return ("string" === typeof markup ? markup : "" + markup).replace(NORMALIZE_NEWLINES_REGEX, "\n").replace(NORMALIZE_NULL_AND_REPLACEMENT_REGEX, ""); - } - function checkForUnmatchedText(serverText, clientText) { - clientText = normalizeMarkupForTextOrAttribute(clientText); - return normalizeMarkupForTextOrAttribute(serverText) === clientText ? !0 : !1; - } - function setProp(domElement, tag, key, value, props, prevValue) { - switch(key){ - case "children": - if ("string" === typeof value) validateTextNesting(value, tag, !1), "body" === tag || "textarea" === tag && "" === value || setTextContent(domElement, value); - else if ("number" === typeof value || "bigint" === typeof value) validateTextNesting("" + value, tag, !1), "body" !== tag && setTextContent(domElement, "" + value); - else return; - break; - case "className": - setValueForKnownAttribute(domElement, "class", value); - break; - case "tabIndex": - setValueForKnownAttribute(domElement, "tabindex", value); - break; - case "dir": - case "role": - case "viewBox": - case "width": - case "height": - setValueForKnownAttribute(domElement, key, value); - break; - case "style": - setValueForStyles(domElement, value, prevValue); - return; - case "data": - if ("object" !== tag) { - setValueForKnownAttribute(domElement, "data", value); - break; - } - case "src": - case "href": - if ("" === value && ("a" !== tag || "href" !== key)) { - "src" === key ? console.error('An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', key, key) : console.error('An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', key, key); - domElement.removeAttribute(key); - break; - } - if (null == value || "function" === typeof value || "symbol" === typeof value || "boolean" === typeof value) { - domElement.removeAttribute(key); - break; - } - checkAttributeStringCoercion(value, key); - value = sanitizeURL("" + value); - domElement.setAttribute(key, value); - break; - case "action": - case "formAction": - null != value && ("form" === tag ? "formAction" === key ? console.error("You can only pass the formAction prop to <input> or <button>. Use the action prop on <form>.") : "function" === typeof value && (null == props.encType && null == props.method || didWarnFormActionMethod || (didWarnFormActionMethod = !0, console.error("Cannot specify a encType or method for a form that specifies a function as the action. React provides those automatically. They will get overridden.")), null == props.target || didWarnFormActionTarget || (didWarnFormActionTarget = !0, console.error("Cannot specify a target for a form that specifies a function as the action. The function will always be executed in the same window."))) : "input" === tag || "button" === tag ? "action" === key ? console.error("You can only pass the action prop to <form>. Use the formAction prop on <input> or <button>.") : "input" !== tag || "submit" === props.type || "image" === props.type || didWarnFormActionType ? "button" !== tag || null == props.type || "submit" === props.type || didWarnFormActionType ? "function" === typeof value && (null == props.name || didWarnFormActionName || (didWarnFormActionName = !0, console.error('Cannot specify a "name" prop for a button that specifies a function as a formAction. React needs it to encode which action should be invoked. It will get overridden.')), null == props.formEncType && null == props.formMethod || didWarnFormActionMethod || (didWarnFormActionMethod = !0, console.error("Cannot specify a formEncType or formMethod for a button that specifies a function as a formAction. React provides those automatically. They will get overridden.")), null == props.formTarget || didWarnFormActionTarget || (didWarnFormActionTarget = !0, console.error("Cannot specify a formTarget for a button that specifies a function as a formAction. The function will always be executed in the same window."))) : (didWarnFormActionType = !0, console.error('A button can only specify a formAction along with type="submit" or no type.')) : (didWarnFormActionType = !0, console.error('An input can only specify a formAction along with type="submit" or type="image".')) : "action" === key ? console.error("You can only pass the action prop to <form>.") : console.error("You can only pass the formAction prop to <input> or <button>.")); - if ("function" === typeof value) { - domElement.setAttribute(key, "javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')"); - break; - } else "function" === typeof prevValue && ("formAction" === key ? ("input" !== tag && setProp(domElement, tag, "name", props.name, props, null), setProp(domElement, tag, "formEncType", props.formEncType, props, null), setProp(domElement, tag, "formMethod", props.formMethod, props, null), setProp(domElement, tag, "formTarget", props.formTarget, props, null)) : (setProp(domElement, tag, "encType", props.encType, props, null), setProp(domElement, tag, "method", props.method, props, null), setProp(domElement, tag, "target", props.target, props, null))); - if (null == value || "symbol" === typeof value || "boolean" === typeof value) { - domElement.removeAttribute(key); - break; - } - checkAttributeStringCoercion(value, key); - value = sanitizeURL("" + value); - domElement.setAttribute(key, value); - break; - case "onClick": - null != value && ("function" !== typeof value && warnForInvalidEventListener(key, value), domElement.onclick = noop$1); - return; - case "onScroll": - null != value && ("function" !== typeof value && warnForInvalidEventListener(key, value), listenToNonDelegatedEvent("scroll", domElement)); - return; - case "onScrollEnd": - null != value && ("function" !== typeof value && warnForInvalidEventListener(key, value), listenToNonDelegatedEvent("scrollend", domElement)); - return; - case "dangerouslySetInnerHTML": - if (null != value) { - if ("object" !== typeof value || !("__html" in value)) throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information."); - key = value.__html; - if (null != key) { - if (null != props.children) throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`."); - domElement.innerHTML = key; - } - } - break; - case "multiple": - domElement.multiple = value && "function" !== typeof value && "symbol" !== typeof value; - break; - case "muted": - domElement.muted = value && "function" !== typeof value && "symbol" !== typeof value; - break; - case "suppressContentEditableWarning": - case "suppressHydrationWarning": - case "defaultValue": - case "defaultChecked": - case "innerHTML": - case "ref": - break; - case "autoFocus": - break; - case "xlinkHref": - if (null == value || "function" === typeof value || "boolean" === typeof value || "symbol" === typeof value) { - domElement.removeAttribute("xlink:href"); - break; - } - checkAttributeStringCoercion(value, key); - key = sanitizeURL("" + value); - domElement.setAttributeNS(xlinkNamespace, "xlink:href", key); - break; - case "contentEditable": - case "spellCheck": - case "draggable": - case "value": - case "autoReverse": - case "externalResourcesRequired": - case "focusable": - case "preserveAlpha": - null != value && "function" !== typeof value && "symbol" !== typeof value ? (checkAttributeStringCoercion(value, key), domElement.setAttribute(key, "" + value)) : domElement.removeAttribute(key); - break; - case "inert": - "" !== value || didWarnForNewBooleanPropsWithEmptyValue[key] || (didWarnForNewBooleanPropsWithEmptyValue[key] = !0, console.error("Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.", key)); - case "allowFullScreen": - case "async": - case "autoPlay": - case "controls": - case "default": - case "defer": - case "disabled": - case "disablePictureInPicture": - case "disableRemotePlayback": - case "formNoValidate": - case "hidden": - case "loop": - case "noModule": - case "noValidate": - case "open": - case "playsInline": - case "readOnly": - case "required": - case "reversed": - case "scoped": - case "seamless": - case "itemScope": - value && "function" !== typeof value && "symbol" !== typeof value ? domElement.setAttribute(key, "") : domElement.removeAttribute(key); - break; - case "capture": - case "download": - !0 === value ? domElement.setAttribute(key, "") : !1 !== value && null != value && "function" !== typeof value && "symbol" !== typeof value ? (checkAttributeStringCoercion(value, key), domElement.setAttribute(key, value)) : domElement.removeAttribute(key); - break; - case "cols": - case "rows": - case "size": - case "span": - null != value && "function" !== typeof value && "symbol" !== typeof value && !isNaN(value) && 1 <= value ? (checkAttributeStringCoercion(value, key), domElement.setAttribute(key, value)) : domElement.removeAttribute(key); - break; - case "rowSpan": - case "start": - null == value || "function" === typeof value || "symbol" === typeof value || isNaN(value) ? domElement.removeAttribute(key) : (checkAttributeStringCoercion(value, key), domElement.setAttribute(key, value)); - break; - case "popover": - listenToNonDelegatedEvent("beforetoggle", domElement); - listenToNonDelegatedEvent("toggle", domElement); - setValueForAttribute(domElement, "popover", value); - break; - case "xlinkActuate": - setValueForNamespacedAttribute(domElement, xlinkNamespace, "xlink:actuate", value); - break; - case "xlinkArcrole": - setValueForNamespacedAttribute(domElement, xlinkNamespace, "xlink:arcrole", value); - break; - case "xlinkRole": - setValueForNamespacedAttribute(domElement, xlinkNamespace, "xlink:role", value); - break; - case "xlinkShow": - setValueForNamespacedAttribute(domElement, xlinkNamespace, "xlink:show", value); - break; - case "xlinkTitle": - setValueForNamespacedAttribute(domElement, xlinkNamespace, "xlink:title", value); - break; - case "xlinkType": - setValueForNamespacedAttribute(domElement, xlinkNamespace, "xlink:type", value); - break; - case "xmlBase": - setValueForNamespacedAttribute(domElement, xmlNamespace, "xml:base", value); - break; - case "xmlLang": - setValueForNamespacedAttribute(domElement, xmlNamespace, "xml:lang", value); - break; - case "xmlSpace": - setValueForNamespacedAttribute(domElement, xmlNamespace, "xml:space", value); - break; - case "is": - null != prevValue && console.error('Cannot update the "is" prop after it has been initialized.'); - setValueForAttribute(domElement, "is", value); - break; - case "innerText": - case "textContent": - return; - case "popoverTarget": - didWarnPopoverTargetObject || null == value || "object" !== typeof value || (didWarnPopoverTargetObject = !0, console.error("The `popoverTarget` prop expects the ID of an Element as a string. Received %s instead.", value)); - default: - if (!(2 < key.length) || "o" !== key[0] && "O" !== key[0] || "n" !== key[1] && "N" !== key[1]) key = getAttributeAlias(key), setValueForAttribute(domElement, key, value); - else { - registrationNameDependencies.hasOwnProperty(key) && null != value && "function" !== typeof value && warnForInvalidEventListener(key, value); - return; - } - } - viewTransitionMutationContext = !0; - } - function setPropOnCustomElement(domElement, tag, key, value, props, prevValue) { - switch(key){ - case "style": - setValueForStyles(domElement, value, prevValue); - return; - case "dangerouslySetInnerHTML": - if (null != value) { - if ("object" !== typeof value || !("__html" in value)) throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information."); - key = value.__html; - if (null != key) { - if (null != props.children) throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`."); - domElement.innerHTML = key; - } - } - break; - case "children": - if ("string" === typeof value) setTextContent(domElement, value); - else if ("number" === typeof value || "bigint" === typeof value) setTextContent(domElement, "" + value); - else return; - break; - case "onScroll": - null != value && ("function" !== typeof value && warnForInvalidEventListener(key, value), listenToNonDelegatedEvent("scroll", domElement)); - return; - case "onScrollEnd": - null != value && ("function" !== typeof value && warnForInvalidEventListener(key, value), listenToNonDelegatedEvent("scrollend", domElement)); - return; - case "onClick": - null != value && ("function" !== typeof value && warnForInvalidEventListener(key, value), domElement.onclick = noop$1); - return; - case "suppressContentEditableWarning": - case "suppressHydrationWarning": - case "innerHTML": - case "ref": - return; - case "innerText": - case "textContent": - return; - default: - if (registrationNameDependencies.hasOwnProperty(key)) null != value && "function" !== typeof value && warnForInvalidEventListener(key, value); - else a: { - if ("o" === key[0] && "n" === key[1] && (props = key.endsWith("Capture"), tag = key.slice(2, props ? key.length - 7 : void 0), prevValue = domElement[internalPropsKey] || null, prevValue = null != prevValue ? prevValue[key] : null, "function" === typeof prevValue && domElement.removeEventListener(tag, prevValue, props), "function" === typeof value)) { - "function" !== typeof prevValue && null !== prevValue && (key in domElement ? domElement[key] = null : domElement.hasAttribute(key) && domElement.removeAttribute(key)); - domElement.addEventListener(tag, value, props); - break a; - } - viewTransitionMutationContext = !0; - key in domElement ? domElement[key] = value : !0 === value ? domElement.setAttribute(key, "") : setValueForAttribute(domElement, key, value); - } - return; - } - viewTransitionMutationContext = !0; - } - function setInitialProperties(domElement, tag, props) { - validatePropertiesInDevelopment(tag, props); - switch(tag){ - case "div": - case "span": - case "svg": - case "path": - case "a": - case "g": - case "p": - case "li": - break; - case "img": - listenToNonDelegatedEvent("error", domElement); - listenToNonDelegatedEvent("load", domElement); - var hasSrc = !1, hasSrcSet = !1, propKey; - for(propKey in props)if (props.hasOwnProperty(propKey)) { - var propValue = props[propKey]; - if (null != propValue) switch(propKey){ - case "src": - hasSrc = !0; - break; - case "srcSet": - hasSrcSet = !0; - break; - case "children": - case "dangerouslySetInnerHTML": - throw Error(tag + " is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); - default: - setProp(domElement, tag, propKey, propValue, props, null); - } - } - hasSrcSet && setProp(domElement, tag, "srcSet", props.srcSet, props, null); - hasSrc && setProp(domElement, tag, "src", props.src, props, null); - return; - case "input": - checkControlledValueProps("input", props); - listenToNonDelegatedEvent("invalid", domElement); - var defaultValue = propKey = propValue = hasSrcSet = null, checked = null, defaultChecked = null; - for(hasSrc in props)if (props.hasOwnProperty(hasSrc)) { - var _propValue = props[hasSrc]; - if (null != _propValue) switch(hasSrc){ - case "name": - hasSrcSet = _propValue; - break; - case "type": - propValue = _propValue; - break; - case "checked": - checked = _propValue; - break; - case "defaultChecked": - defaultChecked = _propValue; - break; - case "value": - propKey = _propValue; - break; - case "defaultValue": - defaultValue = _propValue; - break; - case "children": - case "dangerouslySetInnerHTML": - if (null != _propValue) throw Error(tag + " is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); - break; - default: - setProp(domElement, tag, hasSrc, _propValue, props, null); - } - } - validateInputProps(domElement, props); - initInput(domElement, propKey, defaultValue, checked, defaultChecked, propValue, hasSrcSet, !1); - return; - case "select": - checkControlledValueProps("select", props); - listenToNonDelegatedEvent("invalid", domElement); - hasSrc = propValue = propKey = null; - for(hasSrcSet in props)if (props.hasOwnProperty(hasSrcSet) && (defaultValue = props[hasSrcSet], null != defaultValue)) switch(hasSrcSet){ - case "value": - propKey = defaultValue; - break; - case "defaultValue": - propValue = defaultValue; - break; - case "multiple": - hasSrc = defaultValue; - default: - setProp(domElement, tag, hasSrcSet, defaultValue, props, null); - } - validateSelectProps(domElement, props); - tag = propKey; - props = propValue; - domElement.multiple = !!hasSrc; - null != tag ? updateOptions(domElement, !!hasSrc, tag, !1) : null != props && updateOptions(domElement, !!hasSrc, props, !0); - return; - case "textarea": - checkControlledValueProps("textarea", props); - listenToNonDelegatedEvent("invalid", domElement); - propKey = hasSrcSet = hasSrc = null; - for(propValue in props)if (props.hasOwnProperty(propValue) && (defaultValue = props[propValue], null != defaultValue)) switch(propValue){ - case "value": - hasSrc = defaultValue; - break; - case "defaultValue": - hasSrcSet = defaultValue; - break; - case "children": - propKey = defaultValue; - break; - case "dangerouslySetInnerHTML": - if (null != defaultValue) throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>."); - break; - default: - setProp(domElement, tag, propValue, defaultValue, props, null); - } - validateTextareaProps(domElement, props); - initTextarea(domElement, hasSrc, hasSrcSet, propKey); - return; - case "option": - validateOptionProps(domElement, props); - for(checked in props)if (props.hasOwnProperty(checked) && (hasSrc = props[checked], null != hasSrc)) switch(checked){ - case "selected": - domElement.selected = hasSrc && "function" !== typeof hasSrc && "symbol" !== typeof hasSrc; - break; - default: - setProp(domElement, tag, checked, hasSrc, props, null); - } - return; - case "dialog": - listenToNonDelegatedEvent("beforetoggle", domElement); - listenToNonDelegatedEvent("toggle", domElement); - listenToNonDelegatedEvent("cancel", domElement); - listenToNonDelegatedEvent("close", domElement); - break; - case "iframe": - case "object": - listenToNonDelegatedEvent("load", domElement); - break; - case "video": - case "audio": - for(hasSrc = 0; hasSrc < mediaEventTypes.length; hasSrc++)listenToNonDelegatedEvent(mediaEventTypes[hasSrc], domElement); - break; - case "image": - listenToNonDelegatedEvent("error", domElement); - listenToNonDelegatedEvent("load", domElement); - break; - case "details": - listenToNonDelegatedEvent("toggle", domElement); - break; - case "embed": - case "source": - case "link": - listenToNonDelegatedEvent("error", domElement), listenToNonDelegatedEvent("load", domElement); - case "area": - case "base": - case "br": - case "col": - case "hr": - case "keygen": - case "meta": - case "param": - case "track": - case "wbr": - case "menuitem": - for(defaultChecked in props)if (props.hasOwnProperty(defaultChecked) && (hasSrc = props[defaultChecked], null != hasSrc)) switch(defaultChecked){ - case "children": - case "dangerouslySetInnerHTML": - throw Error(tag + " is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); - default: - setProp(domElement, tag, defaultChecked, hasSrc, props, null); - } - return; - default: - if (isCustomElement(tag)) { - for(_propValue in props)props.hasOwnProperty(_propValue) && (hasSrc = props[_propValue], void 0 !== hasSrc && setPropOnCustomElement(domElement, tag, _propValue, hasSrc, props, void 0)); - return; - } - } - for(defaultValue in props)props.hasOwnProperty(defaultValue) && (hasSrc = props[defaultValue], null != hasSrc && setProp(domElement, tag, defaultValue, hasSrc, props, null)); - } - function updateProperties(domElement, tag, lastProps, nextProps) { - validatePropertiesInDevelopment(tag, nextProps); - switch(tag){ - case "div": - case "span": - case "svg": - case "path": - case "a": - case "g": - case "p": - case "li": - break; - case "input": - var name = null, type = null, value = null, defaultValue = null, lastDefaultValue = null, checked = null, defaultChecked = null; - for(propKey in lastProps){ - var lastProp = lastProps[propKey]; - if (lastProps.hasOwnProperty(propKey) && null != lastProp) switch(propKey){ - case "checked": - break; - case "value": - break; - case "defaultValue": - lastDefaultValue = lastProp; - default: - nextProps.hasOwnProperty(propKey) || setProp(domElement, tag, propKey, null, nextProps, lastProp); - } - } - for(var _propKey8 in nextProps){ - var propKey = nextProps[_propKey8]; - lastProp = lastProps[_propKey8]; - if (nextProps.hasOwnProperty(_propKey8) && (null != propKey || null != lastProp)) switch(_propKey8){ - case "type": - propKey !== lastProp && (viewTransitionMutationContext = !0); - type = propKey; - break; - case "name": - propKey !== lastProp && (viewTransitionMutationContext = !0); - name = propKey; - break; - case "checked": - propKey !== lastProp && (viewTransitionMutationContext = !0); - checked = propKey; - break; - case "defaultChecked": - propKey !== lastProp && (viewTransitionMutationContext = !0); - defaultChecked = propKey; - break; - case "value": - propKey !== lastProp && (viewTransitionMutationContext = !0); - value = propKey; - break; - case "defaultValue": - propKey !== lastProp && (viewTransitionMutationContext = !0); - defaultValue = propKey; - break; - case "children": - case "dangerouslySetInnerHTML": - if (null != propKey) throw Error(tag + " is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); - break; - default: - propKey !== lastProp && setProp(domElement, tag, _propKey8, propKey, nextProps, lastProp); - } - } - tag = "checkbox" === lastProps.type || "radio" === lastProps.type ? null != lastProps.checked : null != lastProps.value; - nextProps = "checkbox" === nextProps.type || "radio" === nextProps.type ? null != nextProps.checked : null != nextProps.value; - tag || !nextProps || didWarnUncontrolledToControlled || (console.error("A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components"), didWarnUncontrolledToControlled = !0); - !tag || nextProps || didWarnControlledToUncontrolled || (console.error("A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components"), didWarnControlledToUncontrolled = !0); - updateInput(domElement, value, defaultValue, lastDefaultValue, checked, defaultChecked, type, name); - return; - case "select": - propKey = value = defaultValue = _propKey8 = null; - for(type in lastProps)if (lastDefaultValue = lastProps[type], lastProps.hasOwnProperty(type) && null != lastDefaultValue) switch(type){ - case "value": - break; - case "multiple": - propKey = lastDefaultValue; - default: - nextProps.hasOwnProperty(type) || setProp(domElement, tag, type, null, nextProps, lastDefaultValue); - } - for(name in nextProps)if (type = nextProps[name], lastDefaultValue = lastProps[name], nextProps.hasOwnProperty(name) && (null != type || null != lastDefaultValue)) switch(name){ - case "value": - type !== lastDefaultValue && (viewTransitionMutationContext = !0); - _propKey8 = type; - break; - case "defaultValue": - type !== lastDefaultValue && (viewTransitionMutationContext = !0); - defaultValue = type; - break; - case "multiple": - type !== lastDefaultValue && (viewTransitionMutationContext = !0), value = type; - default: - type !== lastDefaultValue && setProp(domElement, tag, name, type, nextProps, lastDefaultValue); - } - nextProps = defaultValue; - tag = value; - lastProps = propKey; - null != _propKey8 ? updateOptions(domElement, !!tag, _propKey8, !1) : !!lastProps !== !!tag && (null != nextProps ? updateOptions(domElement, !!tag, nextProps, !0) : updateOptions(domElement, !!tag, tag ? [] : "", !1)); - return; - case "textarea": - propKey = _propKey8 = null; - for(defaultValue in lastProps)if (name = lastProps[defaultValue], lastProps.hasOwnProperty(defaultValue) && null != name && !nextProps.hasOwnProperty(defaultValue)) switch(defaultValue){ - case "value": - break; - case "children": - break; - default: - setProp(domElement, tag, defaultValue, null, nextProps, name); - } - for(value in nextProps)if (name = nextProps[value], type = lastProps[value], nextProps.hasOwnProperty(value) && (null != name || null != type)) switch(value){ - case "value": - name !== type && (viewTransitionMutationContext = !0); - _propKey8 = name; - break; - case "defaultValue": - name !== type && (viewTransitionMutationContext = !0); - propKey = name; - break; - case "children": - break; - case "dangerouslySetInnerHTML": - if (null != name) throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>."); - break; - default: - name !== type && setProp(domElement, tag, value, name, nextProps, type); - } - updateTextarea(domElement, _propKey8, propKey); - return; - case "option": - for(var _propKey13 in lastProps)if (_propKey8 = lastProps[_propKey13], lastProps.hasOwnProperty(_propKey13) && null != _propKey8 && !nextProps.hasOwnProperty(_propKey13)) switch(_propKey13){ - case "selected": - domElement.selected = !1; - break; - default: - setProp(domElement, tag, _propKey13, null, nextProps, _propKey8); - } - for(lastDefaultValue in nextProps)if (_propKey8 = nextProps[lastDefaultValue], propKey = lastProps[lastDefaultValue], nextProps.hasOwnProperty(lastDefaultValue) && _propKey8 !== propKey && (null != _propKey8 || null != propKey)) switch(lastDefaultValue){ - case "selected": - _propKey8 !== propKey && (viewTransitionMutationContext = !0); - domElement.selected = _propKey8 && "function" !== typeof _propKey8 && "symbol" !== typeof _propKey8; - break; - default: - setProp(domElement, tag, lastDefaultValue, _propKey8, nextProps, propKey); - } - return; - case "img": - case "link": - case "area": - case "base": - case "br": - case "col": - case "embed": - case "hr": - case "keygen": - case "meta": - case "param": - case "source": - case "track": - case "wbr": - case "menuitem": - for(var _propKey15 in lastProps)_propKey8 = lastProps[_propKey15], lastProps.hasOwnProperty(_propKey15) && null != _propKey8 && !nextProps.hasOwnProperty(_propKey15) && setProp(domElement, tag, _propKey15, null, nextProps, _propKey8); - for(checked in nextProps)if (_propKey8 = nextProps[checked], propKey = lastProps[checked], nextProps.hasOwnProperty(checked) && _propKey8 !== propKey && (null != _propKey8 || null != propKey)) switch(checked){ - case "children": - case "dangerouslySetInnerHTML": - if (null != _propKey8) throw Error(tag + " is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`."); - break; - default: - setProp(domElement, tag, checked, _propKey8, nextProps, propKey); - } - return; - default: - if (isCustomElement(tag)) { - for(var _propKey17 in lastProps)_propKey8 = lastProps[_propKey17], lastProps.hasOwnProperty(_propKey17) && void 0 !== _propKey8 && !nextProps.hasOwnProperty(_propKey17) && setPropOnCustomElement(domElement, tag, _propKey17, void 0, nextProps, _propKey8); - for(defaultChecked in nextProps)_propKey8 = nextProps[defaultChecked], propKey = lastProps[defaultChecked], !nextProps.hasOwnProperty(defaultChecked) || _propKey8 === propKey || void 0 === _propKey8 && void 0 === propKey || setPropOnCustomElement(domElement, tag, defaultChecked, _propKey8, nextProps, propKey); - return; - } - } - for(var _propKey19 in lastProps)_propKey8 = lastProps[_propKey19], lastProps.hasOwnProperty(_propKey19) && null != _propKey8 && !nextProps.hasOwnProperty(_propKey19) && setProp(domElement, tag, _propKey19, null, nextProps, _propKey8); - for(lastProp in nextProps)_propKey8 = nextProps[lastProp], propKey = lastProps[lastProp], !nextProps.hasOwnProperty(lastProp) || _propKey8 === propKey || null == _propKey8 && null == propKey || setProp(domElement, tag, lastProp, _propKey8, nextProps, propKey); - } - function getPropNameFromAttributeName(attrName) { - switch(attrName){ - case "class": - return "className"; - case "for": - return "htmlFor"; - default: - return attrName; - } - } - function getStylesObjectFromElement(domElement) { - for(var serverValueInObjectForm = {}, style = domElement.style, i = 0; i < style.length; i++){ - var styleName = style[i]; - "view-transition-name" === styleName && isExpectedViewTransitionName(domElement) || (serverValueInObjectForm[styleName] = style.getPropertyValue(styleName)); - } - return serverValueInObjectForm; - } - function diffHydratedStyles(domElement, value$jscomp$0, serverDifferences) { - if (null != value$jscomp$0 && "object" !== typeof value$jscomp$0) console.error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX."); - else { - var clientValue; - var delimiter = clientValue = "", styleName; - for(styleName in value$jscomp$0)if (value$jscomp$0.hasOwnProperty(styleName)) { - var value = value$jscomp$0[styleName]; - null != value && "boolean" !== typeof value && "" !== value && (0 === styleName.indexOf("--") ? (checkCSSPropertyStringCoercion(value, styleName), clientValue += delimiter + styleName + ":" + ("" + value).trim()) : "number" !== typeof value || 0 === value || unitlessNumbers.has(styleName) ? (checkCSSPropertyStringCoercion(value, styleName), clientValue += delimiter + styleName.replace(uppercasePattern, "-$1").toLowerCase().replace(msPattern$1, "-ms-") + ":" + ("" + value).trim()) : clientValue += delimiter + styleName.replace(uppercasePattern, "-$1").toLowerCase().replace(msPattern$1, "-ms-") + ":" + value + "px", delimiter = ";"); - } - clientValue = clientValue || null; - value$jscomp$0 = domElement.getAttribute("style"); - value$jscomp$0 !== clientValue && (clientValue = normalizeMarkupForTextOrAttribute(clientValue), value$jscomp$0 = normalizeMarkupForTextOrAttribute(value$jscomp$0), value$jscomp$0 === clientValue || ";" === value$jscomp$0[value$jscomp$0.length - 1] && hasViewTransition(domElement) || (serverDifferences.style = getStylesObjectFromElement(domElement))); - } - } - function hydrateAttribute(domElement, propKey, attributeName, value, extraAttributes, serverDifferences) { - extraAttributes.delete(attributeName); - domElement = domElement.getAttribute(attributeName); - if (null === domElement) switch(typeof value){ - case "undefined": - case "function": - case "symbol": - case "boolean": - return; - } - else if (null != value) switch(typeof value){ - case "function": - case "symbol": - case "boolean": - break; - default: - if (checkAttributeStringCoercion(value, propKey), domElement === "" + value) return; - } - warnForPropDifference(propKey, domElement, value, serverDifferences); - } - function hydrateBooleanAttribute(domElement, propKey, attributeName, value, extraAttributes, serverDifferences) { - extraAttributes.delete(attributeName); - domElement = domElement.getAttribute(attributeName); - if (null === domElement) { - switch(typeof value){ - case "function": - case "symbol": - return; - } - if (!value) return; - } else switch(typeof value){ - case "function": - case "symbol": - break; - default: - if (value) return; - } - warnForPropDifference(propKey, domElement, value, serverDifferences); - } - function hydrateBooleanishAttribute(domElement, propKey, attributeName, value, extraAttributes, serverDifferences) { - extraAttributes.delete(attributeName); - domElement = domElement.getAttribute(attributeName); - if (null === domElement) switch(typeof value){ - case "undefined": - case "function": - case "symbol": - return; - } - else if (null != value) switch(typeof value){ - case "function": - case "symbol": - break; - default: - if (checkAttributeStringCoercion(value, attributeName), domElement === "" + value) return; - } - warnForPropDifference(propKey, domElement, value, serverDifferences); - } - function hydrateNumericAttribute(domElement, propKey, attributeName, value, extraAttributes, serverDifferences) { - extraAttributes.delete(attributeName); - domElement = domElement.getAttribute(attributeName); - if (null === domElement) switch(typeof value){ - case "undefined": - case "function": - case "symbol": - case "boolean": - return; - default: - if (isNaN(value)) return; - } - else if (null != value) switch(typeof value){ - case "function": - case "symbol": - case "boolean": - break; - default: - if (!isNaN(value) && (checkAttributeStringCoercion(value, propKey), domElement === "" + value)) return; - } - warnForPropDifference(propKey, domElement, value, serverDifferences); - } - function hydrateSanitizedAttribute(domElement, propKey, attributeName, value, extraAttributes, serverDifferences) { - extraAttributes.delete(attributeName); - domElement = domElement.getAttribute(attributeName); - if (null === domElement) switch(typeof value){ - case "undefined": - case "function": - case "symbol": - case "boolean": - return; - } - else if (null != value) switch(typeof value){ - case "function": - case "symbol": - case "boolean": - break; - default: - if (checkAttributeStringCoercion(value, propKey), attributeName = sanitizeURL("" + value), domElement === attributeName) return; - } - warnForPropDifference(propKey, domElement, value, serverDifferences); - } - function diffHydratedProperties(domElement, tag, props, hostContext) { - for(var serverDifferences = {}, extraAttributes = new Set(), attributes = domElement.attributes, i = 0; i < attributes.length; i++)switch(attributes[i].name.toLowerCase()){ - case "value": - break; - case "checked": - break; - case "selected": - break; - case "vt-name": - case "vt-update": - case "vt-enter": - case "vt-exit": - case "vt-share": - break; - default: - extraAttributes.add(attributes[i].name); - } - if (isCustomElement(tag)) for(var propKey in props){ - if (props.hasOwnProperty(propKey)) { - var value = props[propKey]; - if (null != value) { - if (registrationNameDependencies.hasOwnProperty(propKey)) "function" !== typeof value && warnForInvalidEventListener(propKey, value); - else if (!0 !== props.suppressHydrationWarning) switch(propKey){ - case "children": - "string" !== typeof value && "number" !== typeof value || warnForPropDifference("children", domElement.textContent, value, serverDifferences); - continue; - case "suppressContentEditableWarning": - case "suppressHydrationWarning": - case "defaultValue": - case "defaultChecked": - case "innerHTML": - case "ref": - continue; - case "dangerouslySetInnerHTML": - attributes = domElement.innerHTML; - value = value ? value.__html : void 0; - null != value && (value = normalizeHTML(domElement, value), warnForPropDifference(propKey, attributes, value, serverDifferences)); - continue; - case "style": - extraAttributes.delete(propKey); - diffHydratedStyles(domElement, value, serverDifferences); - continue; - case "offsetParent": - case "offsetTop": - case "offsetLeft": - case "offsetWidth": - case "offsetHeight": - case "isContentEditable": - case "outerText": - case "outerHTML": - extraAttributes.delete(propKey.toLowerCase()); - console.error("Assignment to read-only property will result in a no-op: `%s`", propKey); - continue; - case "className": - extraAttributes.delete("class"); - attributes = getValueForAttributeOnCustomComponent(domElement, "class", value); - warnForPropDifference("className", attributes, value, serverDifferences); - continue; - default: - hostContext.context === HostContextNamespaceNone && "svg" !== tag && "math" !== tag ? extraAttributes.delete(propKey.toLowerCase()) : extraAttributes.delete(propKey), attributes = getValueForAttributeOnCustomComponent(domElement, propKey, value), warnForPropDifference(propKey, attributes, value, serverDifferences); - } - } - } - } - else for(value in props)if (props.hasOwnProperty(value) && (propKey = props[value], null != propKey)) { - if (registrationNameDependencies.hasOwnProperty(value)) "function" !== typeof propKey && warnForInvalidEventListener(value, propKey); - else if (!0 !== props.suppressHydrationWarning) switch(value){ - case "children": - "string" !== typeof propKey && "number" !== typeof propKey || warnForPropDifference("children", domElement.textContent, propKey, serverDifferences); - continue; - case "suppressContentEditableWarning": - case "suppressHydrationWarning": - case "value": - case "checked": - case "selected": - case "defaultValue": - case "defaultChecked": - case "innerHTML": - case "ref": - continue; - case "dangerouslySetInnerHTML": - attributes = domElement.innerHTML; - propKey = propKey ? propKey.__html : void 0; - null != propKey && (propKey = normalizeHTML(domElement, propKey), attributes !== propKey && (serverDifferences[value] = { - __html: attributes - })); - continue; - case "className": - hydrateAttribute(domElement, value, "class", propKey, extraAttributes, serverDifferences); - continue; - case "tabIndex": - hydrateAttribute(domElement, value, "tabindex", propKey, extraAttributes, serverDifferences); - continue; - case "style": - extraAttributes.delete(value); - diffHydratedStyles(domElement, propKey, serverDifferences); - continue; - case "multiple": - extraAttributes.delete(value); - warnForPropDifference(value, domElement.multiple, propKey, serverDifferences); - continue; - case "muted": - extraAttributes.delete(value); - warnForPropDifference(value, domElement.muted, propKey, serverDifferences); - continue; - case "autoFocus": - extraAttributes.delete("autofocus"); - warnForPropDifference(value, domElement.autofocus, propKey, serverDifferences); - continue; - case "data": - if ("object" !== tag) { - extraAttributes.delete(value); - attributes = domElement.getAttribute("data"); - warnForPropDifference(value, attributes, propKey, serverDifferences); - continue; - } - case "src": - case "href": - if (!("" !== propKey || "a" === tag && "href" === value || "object" === tag && "data" === value)) { - "src" === value ? console.error('An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', value, value) : console.error('An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.', value, value); - continue; - } - hydrateSanitizedAttribute(domElement, value, value, propKey, extraAttributes, serverDifferences); - continue; - case "action": - case "formAction": - attributes = domElement.getAttribute(value); - if ("function" === typeof propKey) { - extraAttributes.delete(value.toLowerCase()); - "formAction" === value ? (extraAttributes.delete("name"), extraAttributes.delete("formenctype"), extraAttributes.delete("formmethod"), extraAttributes.delete("formtarget")) : (extraAttributes.delete("enctype"), extraAttributes.delete("method"), extraAttributes.delete("target")); - continue; - } else if (attributes === EXPECTED_FORM_ACTION_URL) { - extraAttributes.delete(value.toLowerCase()); - warnForPropDifference(value, "function", propKey, serverDifferences); - continue; - } - hydrateSanitizedAttribute(domElement, value, value.toLowerCase(), propKey, extraAttributes, serverDifferences); - continue; - case "xlinkHref": - hydrateSanitizedAttribute(domElement, value, "xlink:href", propKey, extraAttributes, serverDifferences); - continue; - case "contentEditable": - hydrateBooleanishAttribute(domElement, value, "contenteditable", propKey, extraAttributes, serverDifferences); - continue; - case "spellCheck": - hydrateBooleanishAttribute(domElement, value, "spellcheck", propKey, extraAttributes, serverDifferences); - continue; - case "draggable": - case "autoReverse": - case "externalResourcesRequired": - case "focusable": - case "preserveAlpha": - hydrateBooleanishAttribute(domElement, value, value, propKey, extraAttributes, serverDifferences); - continue; - case "allowFullScreen": - case "async": - case "autoPlay": - case "controls": - case "default": - case "defer": - case "disabled": - case "disablePictureInPicture": - case "disableRemotePlayback": - case "formNoValidate": - case "hidden": - case "loop": - case "noModule": - case "noValidate": - case "open": - case "playsInline": - case "readOnly": - case "required": - case "reversed": - case "scoped": - case "seamless": - case "itemScope": - hydrateBooleanAttribute(domElement, value, value.toLowerCase(), propKey, extraAttributes, serverDifferences); - continue; - case "capture": - case "download": - a: { - i = domElement; - var attributeName = attributes = value, serverDifferences$jscomp$0 = serverDifferences; - extraAttributes.delete(attributeName); - i = i.getAttribute(attributeName); - if (null === i) switch(typeof propKey){ - case "undefined": - case "function": - case "symbol": - break a; - default: - if (!1 === propKey) break a; - } - else if (null != propKey) switch(typeof propKey){ - case "function": - case "symbol": - break; - case "boolean": - if (!0 === propKey && "" === i) break a; - break; - default: - if (checkAttributeStringCoercion(propKey, attributes), i === "" + propKey) break a; - } - warnForPropDifference(attributes, i, propKey, serverDifferences$jscomp$0); - } - continue; - case "cols": - case "rows": - case "size": - case "span": - a: { - i = domElement; - attributeName = attributes = value; - serverDifferences$jscomp$0 = serverDifferences; - extraAttributes.delete(attributeName); - i = i.getAttribute(attributeName); - if (null === i) switch(typeof propKey){ - case "undefined": - case "function": - case "symbol": - case "boolean": - break a; - default: - if (isNaN(propKey) || 1 > propKey) break a; - } - else if (null != propKey) switch(typeof propKey){ - case "function": - case "symbol": - case "boolean": - break; - default: - if (!(isNaN(propKey) || 1 > propKey) && (checkAttributeStringCoercion(propKey, attributes), i === "" + propKey)) break a; - } - warnForPropDifference(attributes, i, propKey, serverDifferences$jscomp$0); - } - continue; - case "rowSpan": - hydrateNumericAttribute(domElement, value, "rowspan", propKey, extraAttributes, serverDifferences); - continue; - case "start": - hydrateNumericAttribute(domElement, value, value, propKey, extraAttributes, serverDifferences); - continue; - case "xHeight": - hydrateAttribute(domElement, value, "x-height", propKey, extraAttributes, serverDifferences); - continue; - case "xlinkActuate": - hydrateAttribute(domElement, value, "xlink:actuate", propKey, extraAttributes, serverDifferences); - continue; - case "xlinkArcrole": - hydrateAttribute(domElement, value, "xlink:arcrole", propKey, extraAttributes, serverDifferences); - continue; - case "xlinkRole": - hydrateAttribute(domElement, value, "xlink:role", propKey, extraAttributes, serverDifferences); - continue; - case "xlinkShow": - hydrateAttribute(domElement, value, "xlink:show", propKey, extraAttributes, serverDifferences); - continue; - case "xlinkTitle": - hydrateAttribute(domElement, value, "xlink:title", propKey, extraAttributes, serverDifferences); - continue; - case "xlinkType": - hydrateAttribute(domElement, value, "xlink:type", propKey, extraAttributes, serverDifferences); - continue; - case "xmlBase": - hydrateAttribute(domElement, value, "xml:base", propKey, extraAttributes, serverDifferences); - continue; - case "xmlLang": - hydrateAttribute(domElement, value, "xml:lang", propKey, extraAttributes, serverDifferences); - continue; - case "xmlSpace": - hydrateAttribute(domElement, value, "xml:space", propKey, extraAttributes, serverDifferences); - continue; - case "inert": - "" !== propKey || didWarnForNewBooleanPropsWithEmptyValue[value] || (didWarnForNewBooleanPropsWithEmptyValue[value] = !0, console.error("Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.", value)); - hydrateBooleanAttribute(domElement, value, value, propKey, extraAttributes, serverDifferences); - continue; - default: - if (!(2 < value.length) || "o" !== value[0] && "O" !== value[0] || "n" !== value[1] && "N" !== value[1]) { - i = getAttributeAlias(value); - attributes = !1; - hostContext.context === HostContextNamespaceNone && "svg" !== tag && "math" !== tag ? extraAttributes.delete(i.toLowerCase()) : (attributeName = value.toLowerCase(), attributeName = possibleStandardNames.hasOwnProperty(attributeName) ? possibleStandardNames[attributeName] || null : null, null !== attributeName && attributeName !== value && (attributes = !0, extraAttributes.delete(attributeName)), extraAttributes.delete(i)); - a: if (attributeName = domElement, serverDifferences$jscomp$0 = i, i = propKey, isAttributeNameSafe(serverDifferences$jscomp$0)) if (attributeName.hasAttribute(serverDifferences$jscomp$0)) attributeName = attributeName.getAttribute(serverDifferences$jscomp$0), checkAttributeStringCoercion(i, serverDifferences$jscomp$0), i = attributeName === "" + i ? i : attributeName; - else { - switch(typeof i){ - case "function": - case "symbol": - break a; - case "boolean": - if (attributeName = serverDifferences$jscomp$0.toLowerCase().slice(0, 5), "data-" !== attributeName && "aria-" !== attributeName) break a; - } - i = void 0 === i ? void 0 : null; - } - else i = void 0; - attributes || warnForPropDifference(value, i, propKey, serverDifferences); - } - } - } - 0 < extraAttributes.size && !0 !== props.suppressHydrationWarning && warnForExtraAttributes(domElement, extraAttributes, serverDifferences); - return 0 === Object.keys(serverDifferences).length ? null : serverDifferences; - } - function propNamesListJoin(list, combinator) { - switch(list.length){ - case 0: - return ""; - case 1: - return list[0]; - case 2: - return list[0] + " " + combinator + " " + list[1]; - default: - return list.slice(0, -1).join(", ") + ", " + combinator + " " + list[list.length - 1]; - } - } - function isLikelyStaticResource(initiatorType) { - switch(initiatorType){ - case "css": - case "script": - case "font": - case "img": - case "image": - case "input": - case "link": - return !0; - default: - return !1; - } - } - function estimateBandwidth() { - if ("function" === typeof performance.getEntriesByType) { - for(var count = 0, bits = 0, resourceEntries = performance.getEntriesByType("resource"), i = 0; i < resourceEntries.length; i++){ - var entry = resourceEntries[i], transferSize = entry.transferSize, initiatorType = entry.initiatorType, duration = entry.duration; - if (transferSize && duration && isLikelyStaticResource(initiatorType)) { - initiatorType = 0; - duration = entry.responseEnd; - for(i += 1; i < resourceEntries.length; i++){ - var overlapEntry = resourceEntries[i], overlapStartTime = overlapEntry.startTime; - if (overlapStartTime > duration) break; - var overlapTransferSize = overlapEntry.transferSize, overlapInitiatorType = overlapEntry.initiatorType; - overlapTransferSize && isLikelyStaticResource(overlapInitiatorType) && (overlapEntry = overlapEntry.responseEnd, initiatorType += overlapTransferSize * (overlapEntry < duration ? 1 : (duration - overlapStartTime) / (overlapEntry - overlapStartTime))); - } - --i; - bits += 8 * (transferSize + initiatorType) / (entry.duration / 1e3); - count++; - if (10 < count) break; - } - } - if (0 < count) return bits / count / 1e6; - } - return navigator.connection && (count = navigator.connection.downlink, "number" === typeof count) ? count : 5; - } - function getOwnerDocumentFromRootContainer(rootContainerElement) { - return 9 === rootContainerElement.nodeType ? rootContainerElement : rootContainerElement.ownerDocument; - } - function getOwnHostContext(namespaceURI) { - switch(namespaceURI){ - case SVG_NAMESPACE: - return HostContextNamespaceSvg; - case MATH_NAMESPACE: - return HostContextNamespaceMath; - default: - return HostContextNamespaceNone; - } - } - function getChildHostContextProd(parentNamespace, type) { - if (parentNamespace === HostContextNamespaceNone) switch(type){ - case "svg": - return HostContextNamespaceSvg; - case "math": - return HostContextNamespaceMath; - default: - return HostContextNamespaceNone; - } - return parentNamespace === HostContextNamespaceSvg && "foreignObject" === type ? HostContextNamespaceNone : parentNamespace; - } - function shouldSetTextContent(type, props) { - return "textarea" === type || "noscript" === type || "string" === typeof props.children || "number" === typeof props.children || "bigint" === typeof props.children || "object" === typeof props.dangerouslySetInnerHTML && null !== props.dangerouslySetInnerHTML && null != props.dangerouslySetInnerHTML.__html; - } - function shouldAttemptEagerTransition() { - var event = window.event; - if (event && "popstate" === event.type) { - if (event === currentPopstateTransitionEvent) return !1; - currentPopstateTransitionEvent = event; - return !0; - } - currentPopstateTransitionEvent = null; - return !1; - } - function resolveEventType() { - var event = window.event; - return event && event !== schedulerEvent ? event.type : null; - } - function resolveEventTimeStamp() { - var event = window.event; - return event && event !== schedulerEvent ? event.timeStamp : -1.1; - } - function handleErrorInNextTick(error) { - setTimeout(function() { - throw error; - }); - } - function commitMount(domElement, type, newProps) { - switch(type){ - case "button": - case "input": - case "select": - case "textarea": - newProps.autoFocus && domElement.focus(); - break; - case "img": - newProps.src ? domElement.src = newProps.src : newProps.srcSet && (domElement.srcset = newProps.srcSet); - } - } - function commitHydratedInstance() {} - function commitUpdate(domElement, type, oldProps, newProps) { - updateProperties(domElement, type, oldProps, newProps); - domElement[internalPropsKey] = newProps; - } - function resetTextContent(domElement) { - setTextContent(domElement, ""); - } - function commitTextUpdate(textInstance, oldText, newText) { - textInstance.nodeValue = newText; - } - function warnForReactChildrenConflict(container) { - if (!container.__reactWarnedAboutChildrenConflict) { - var props = container[internalPropsKey] || null; - if (null !== props) { - var fiber = getInstanceFromNode(container); - null !== fiber && ("string" === typeof props.children || "number" === typeof props.children ? (container.__reactWarnedAboutChildrenConflict = !0, runWithFiberInDEV(fiber, function() { - console.error('Cannot use a ref on a React element as a container to `createRoot` or `createPortal` if that element also sets "children" text content using React. It should be a leaf with no children. Otherwise it\'s ambiguous which children should be used.'); - })) : null != props.dangerouslySetInnerHTML && (container.__reactWarnedAboutChildrenConflict = !0, runWithFiberInDEV(fiber, function() { - console.error('Cannot use a ref on a React element as a container to `createRoot` or `createPortal` if that element also sets "dangerouslySetInnerHTML" using React. It should be a leaf with no children. Otherwise it\'s ambiguous which children should be used.'); - }))); - } - } - } - function isSingletonScope(type) { - return "head" === type; - } - function removeChild(parentInstance, child) { - parentInstance.removeChild(child); - } - function removeChildFromContainer(container, child) { - (9 === container.nodeType ? container.body : "HTML" === container.nodeName ? container.ownerDocument.body : container).removeChild(child); - } - function clearHydrationBoundary(parentInstance, hydrationInstance) { - var node = hydrationInstance, depth = 0; - do { - var nextNode = node.nextSibling; - parentInstance.removeChild(node); - if (nextNode && 8 === nextNode.nodeType) if (node = nextNode.data, node === SUSPENSE_END_DATA || node === ACTIVITY_END_DATA) { - if (0 === depth) { - parentInstance.removeChild(nextNode); - retryIfBlockedOn(hydrationInstance); - return; - } - depth--; - } else if (node === SUSPENSE_START_DATA || node === SUSPENSE_PENDING_START_DATA || node === SUSPENSE_QUEUED_START_DATA || node === SUSPENSE_FALLBACK_START_DATA || node === ACTIVITY_START_DATA) depth++; - else if (node === PREAMBLE_CONTRIBUTION_HTML) releaseSingletonInstance(parentInstance.ownerDocument.documentElement); - else if (node === PREAMBLE_CONTRIBUTION_HEAD) { - node = parentInstance.ownerDocument.head; - releaseSingletonInstance(node); - for(var node$jscomp$0 = node.firstChild; node$jscomp$0;){ - var nextNode$jscomp$0 = node$jscomp$0.nextSibling, nodeName = node$jscomp$0.nodeName; - node$jscomp$0[internalHoistableMarker] || "SCRIPT" === nodeName || "STYLE" === nodeName || "LINK" === nodeName && "stylesheet" === node$jscomp$0.rel.toLowerCase() || node.removeChild(node$jscomp$0); - node$jscomp$0 = nextNode$jscomp$0; - } - } else node === PREAMBLE_CONTRIBUTION_BODY && releaseSingletonInstance(parentInstance.ownerDocument.body); - node = nextNode; - }while (node) - retryIfBlockedOn(hydrationInstance); - } - function hideOrUnhideDehydratedBoundary(suspenseInstance, isHidden) { - var node = suspenseInstance; - suspenseInstance = 0; - do { - var nextNode = node.nextSibling; - 1 === node.nodeType ? isHidden ? (node._stashedDisplay = node.style.display, node.style.display = "none") : (node.style.display = node._stashedDisplay || "", "" === node.getAttribute("style") && node.removeAttribute("style")) : 3 === node.nodeType && (isHidden ? (node._stashedText = node.nodeValue, node.nodeValue = "") : node.nodeValue = node._stashedText || ""); - if (nextNode && 8 === nextNode.nodeType) if (node = nextNode.data, node === SUSPENSE_END_DATA) if (0 === suspenseInstance) break; - else suspenseInstance--; - else node !== SUSPENSE_START_DATA && node !== SUSPENSE_PENDING_START_DATA && node !== SUSPENSE_QUEUED_START_DATA && node !== SUSPENSE_FALLBACK_START_DATA || suspenseInstance++; - node = nextNode; - }while (node) - } - function hideDehydratedBoundary(suspenseInstance) { - hideOrUnhideDehydratedBoundary(suspenseInstance, !0); - } - function hideInstance(instance) { - instance = instance.style; - "function" === typeof instance.setProperty ? instance.setProperty("display", "none", "important") : instance.display = "none"; - } - function hideTextInstance(textInstance) { - textInstance.nodeValue = ""; - } - function unhideDehydratedBoundary(dehydratedInstance) { - hideOrUnhideDehydratedBoundary(dehydratedInstance, !1); - } - function unhideInstance(instance, props) { - props = props[STYLE]; - props = void 0 !== props && null !== props && props.hasOwnProperty("display") ? props.display : null; - instance.style.display = null == props || "boolean" === typeof props ? "" : ("" + props).trim(); - } - function unhideTextInstance(textInstance, text) { - textInstance.nodeValue = text; - } - function warnForBlockInsideInline(instance) { - for(var nextNode = instance.firstChild; null != nextNode;){ - if (1 === nextNode.nodeType && "block" === getComputedStyle(nextNode).display) { - var fiber = getInstanceFromNode(nextNode) || getInstanceFromNode(instance); - runWithFiberInDEV(fiber, function(parentTag, childTag) { - console.error("You're about to start a <ViewTransition> around a display: inline element <%s>, which itself has a display: block element <%s> inside it. This might trigger a bug in Safari which causes the View Transition to be skipped with a duplicate name error.\nhttps://bugs.webkit.org/show_bug.cgi?id=290923", parentTag.toLocaleLowerCase(), childTag.toLocaleLowerCase()); - }, instance.tagName, nextNode.tagName); - break; - } - if (null != nextNode.firstChild) nextNode = nextNode.firstChild; - else { - if (nextNode === instance) break; - for(; null == nextNode.nextSibling && null != nextNode.parentNode && nextNode.parentNode !== instance;)nextNode = nextNode.parentNode; - nextNode = nextNode.nextSibling; - } - } - } - function applyViewTransitionName(instance, name, className) { - name = CSS.escape(name) !== name ? "r-" + btoa(name).replace(/=/g, "") : name; - instance.style.viewTransitionName = name; - null != className && (instance.style.viewTransitionClass = className); - className = getComputedStyle(instance); - if ("inline" === className.display) { - name = instance.getClientRects(); - if (1 === name.length) var JSCompiler_inline_result = 1; - else for(var i = JSCompiler_inline_result = 0; i < name.length; i++){ - var rect = name[i]; - 0 < rect.width && 0 < rect.height && JSCompiler_inline_result++; - } - 1 === JSCompiler_inline_result ? (instance = instance.style, instance.display = 1 === name.length ? "inline-block" : "block", instance.marginTop = "-" + className.paddingTop, instance.marginBottom = "-" + className.paddingBottom) : warnForBlockInsideInline(instance); - } - } - function restoreViewTransitionName(instance, props) { - instance = instance.style; - props = props[STYLE]; - var viewTransitionName = null != props ? props.hasOwnProperty("viewTransitionName") ? props.viewTransitionName : props.hasOwnProperty("view-transition-name") ? props["view-transition-name"] : null : null; - instance.viewTransitionName = null == viewTransitionName || "boolean" === typeof viewTransitionName ? "" : ("" + viewTransitionName).trim(); - viewTransitionName = null != props ? props.hasOwnProperty("viewTransitionClass") ? props.viewTransitionClass : props.hasOwnProperty("view-transition-class") ? props["view-transition-class"] : null : null; - instance.viewTransitionClass = null == viewTransitionName || "boolean" === typeof viewTransitionName ? "" : ("" + viewTransitionName).trim(); - "inline-block" === instance.display && (null == props ? instance.display = instance.margin = "" : (viewTransitionName = props.display, instance.display = null == viewTransitionName || "boolean" === typeof viewTransitionName ? "" : viewTransitionName, viewTransitionName = props.margin, null != viewTransitionName ? instance.margin = viewTransitionName : (viewTransitionName = props.hasOwnProperty("marginTop") ? props.marginTop : props["margin-top"], instance.marginTop = null == viewTransitionName || "boolean" === typeof viewTransitionName ? "" : viewTransitionName, props = props.hasOwnProperty("marginBottom") ? props.marginBottom : props["margin-bottom"], instance.marginBottom = null == props || "boolean" === typeof props ? "" : props))); - } - function createMeasurement(rect, computedStyle, element) { - element = element.ownerDocument.defaultView; - return { - rect: rect, - abs: "absolute" === computedStyle.position || "fixed" === computedStyle.position, - clip: "none" !== computedStyle.clipPath || "visible" !== computedStyle.overflow || "none" !== computedStyle.filter || "none" !== computedStyle.mask || "none" !== computedStyle.mask || "0px" !== computedStyle.borderRadius, - view: 0 <= rect.bottom && 0 <= rect.right && rect.top <= element.innerHeight && rect.left <= element.innerWidth - }; - } - function measureInstance(instance) { - var rect = instance.getBoundingClientRect(), computedStyle = getComputedStyle(instance); - return createMeasurement(rect, computedStyle, instance); - } - function measureClonedInstance(instance) { - var measuredRect = instance.getBoundingClientRect(); - measuredRect = new DOMRect(measuredRect.x + 2e4, measuredRect.y + 2e4, measuredRect.width, measuredRect.height); - var computedStyle = getComputedStyle(instance); - return createMeasurement(measuredRect, computedStyle, instance); - } - function customizeViewTransitionError(error, ignoreAbort) { - if ("object" === typeof error && null !== error) switch(error.name){ - case "TimeoutError": - return Error("A ViewTransition timed out because a Navigation stalled. This can happen if a Navigation is blocked on React itself. Such as if it's resolved inside useEffect. This can be solved by moving the resolution to useLayoutEffect.", { - cause: error - }); - case "AbortError": - return ignoreAbort ? null : Error("A ViewTransition was aborted early. This might be because you have other View Transition libraries on the page and only one can run at a time. To avoid this, use only React's built-in <ViewTransition> to coordinate.", { - cause: error - }); - case "InvalidStateError": - if ("View transition was skipped because document visibility state is hidden." === error.message || "Skipping view transition because document visibility state has become hidden." === error.message || "Skipping view transition because viewport size changed." === error.message || "Transition was aborted because of invalid state" === error.message) return null; - } - return error; - } - function forceLayout(ownerDocument) { - return ownerDocument.documentElement.clientHeight; - } - function waitForImageToLoad(resolve) { - this.addEventListener("load", resolve); - this.addEventListener("error", resolve); - } - function startViewTransition(suspendedState, rootContainer, transitionTypes, mutationCallback, layoutCallback, afterMutationCallback, spawnedWorkCallback, passiveCallback, errorCallback, blockedCallback, finishedAnimation) { - var ownerDocument = 9 === rootContainer.nodeType ? rootContainer : rootContainer.ownerDocument; - try { - var transition = ownerDocument.startViewTransition({ - update: function() { - var ownerWindow = ownerDocument.defaultView, pendingNavigation = ownerWindow.navigation && ownerWindow.navigation.transition, previousFontLoadingStatus = ownerDocument.fonts.status; - mutationCallback(); - var blockingPromises = []; - "loaded" === previousFontLoadingStatus && (forceLayout(ownerDocument), "loading" === ownerDocument.fonts.status && blockingPromises.push(ownerDocument.fonts.ready)); - previousFontLoadingStatus = blockingPromises.length; - if (null !== suspendedState) for(var suspenseyImages = suspendedState.suspenseyImages, imgBytes = 0, i = 0; i < suspenseyImages.length; i++){ - var suspenseyImage = suspenseyImages[i]; - if (!suspenseyImage.complete) { - var rect = suspenseyImage.getBoundingClientRect(); - if (0 < rect.bottom && 0 < rect.right && rect.top < ownerWindow.innerHeight && rect.left < ownerWindow.innerWidth) { - imgBytes += estimateImageBytes(suspenseyImage); - if (imgBytes > estimatedBytesWithinLimit) { - blockingPromises.length = previousFontLoadingStatus; - break; - } - suspenseyImage = new Promise(waitForImageToLoad.bind(suspenseyImage)); - blockingPromises.push(suspenseyImage); - } - } - } - if (0 < blockingPromises.length) return blockedCallback(0 < previousFontLoadingStatus ? blockingPromises.length > previousFontLoadingStatus ? "Waiting on Fonts and Images" : "Waiting on Fonts" : "Waiting on Images"), ownerWindow = Promise.race([ - Promise.all(blockingPromises), - new Promise(function(resolve) { - return setTimeout(resolve, SUSPENSEY_FONT_AND_IMAGE_TIMEOUT); - }) - ]).then(layoutCallback, layoutCallback), (pendingNavigation ? Promise.allSettled([ - pendingNavigation.finished, - ownerWindow - ]) : ownerWindow).then(afterMutationCallback, afterMutationCallback); - layoutCallback(); - if (pendingNavigation) return pendingNavigation.finished.then(afterMutationCallback, afterMutationCallback); - afterMutationCallback(); - }, - types: transitionTypes - }); - ownerDocument.__reactViewTransition = transition; - var viewTransitionAnimations = []; - transition.ready.then(function() { - for(var animations = ownerDocument.documentElement.getAnimations({ - subtree: !0 - }), i = 0; i < animations.length; i++){ - var animation = animations[i], effect = animation.effect, pseudoElement = effect.pseudoElement; - if (null != pseudoElement && pseudoElement.startsWith("::view-transition")) { - viewTransitionAnimations.push(animation); - animation = effect.getKeyframes(); - for(var height = pseudoElement = void 0, unchangedDimensions = !0, j = 0; j < animation.length; j++){ - var keyframe = animation[j], w = keyframe.width; - if (void 0 === pseudoElement) pseudoElement = w; - else if (pseudoElement !== w) { - unchangedDimensions = !1; - break; - } - w = keyframe.height; - if (void 0 === height) height = w; - else if (height !== w) { - unchangedDimensions = !1; - break; - } - delete keyframe.width; - delete keyframe.height; - "none" === keyframe.transform && delete keyframe.transform; - } - unchangedDimensions && void 0 !== pseudoElement && void 0 !== height && (effect.setKeyframes(animation), unchangedDimensions = getComputedStyle(effect.target, effect.pseudoElement), unchangedDimensions.width !== pseudoElement || unchangedDimensions.height !== height) && (unchangedDimensions = animation[0], unchangedDimensions.width = pseudoElement, unchangedDimensions.height = height, unchangedDimensions = animation[animation.length - 1], unchangedDimensions.width = pseudoElement, unchangedDimensions.height = height, effect.setKeyframes(animation)); - } - } - spawnedWorkCallback(); - }, function(error) { - ownerDocument.__reactViewTransition === transition && (ownerDocument.__reactViewTransition = null); - try { - error = customizeViewTransitionError(error, !1), null !== error && errorCallback(error); - } finally{ - mutationCallback(), layoutCallback(), spawnedWorkCallback(), finishedAnimation(); - } - }); - transition.finished.finally(function() { - for(var i = 0; i < viewTransitionAnimations.length; i++)viewTransitionAnimations[i].cancel(); - ownerDocument.__reactViewTransition === transition && (ownerDocument.__reactViewTransition = null); - finishedAnimation(); - passiveCallback(); - }); - return transition; - } catch (x) { - return mutationCallback(), layoutCallback(), finishedAnimation(), spawnedWorkCallback(), null; - } - } - function ViewTransitionPseudoElement(pseudo, name) { - this._scope = document.documentElement; - this._selector = "::view-transition-" + pseudo + "(" + name + ")"; - } - function createViewTransitionInstance(name) { - return { - name: name, - group: new ViewTransitionPseudoElement("group", name), - imagePair: new ViewTransitionPseudoElement("image-pair", name), - old: new ViewTransitionPseudoElement("old", name), - new: new ViewTransitionPseudoElement("new", name) - }; - } - function FragmentInstance(fragmentFiber) { - this._fragmentFiber = fragmentFiber; - this._observers = this._eventListeners = null; - } - function addEventListenerToChild(child, type, listener, optionsOrUseCapture) { - getInstanceFromHostFiber(child).addEventListener(type, listener, optionsOrUseCapture); - return !1; - } - function removeEventListenerFromChild(child, type, listener, optionsOrUseCapture) { - getInstanceFromHostFiber(child).removeEventListener(type, listener, optionsOrUseCapture); - return !1; - } - function normalizeListenerOptions(opts) { - return null == opts ? "0" : "boolean" === typeof opts ? "c=" + (opts ? "1" : "0") : "c=" + (opts.capture ? "1" : "0") + "&o=" + (opts.once ? "1" : "0") + "&p=" + (opts.passive ? "1" : "0"); - } - function indexOfEventListener(eventListeners, type, listener, optionsOrUseCapture) { - for(var i = 0; i < eventListeners.length; i++){ - var item = eventListeners[i]; - if (item.type === type && item.listener === listener && normalizeListenerOptions(item.optionsOrUseCapture) === normalizeListenerOptions(optionsOrUseCapture)) return i; - } - return -1; - } - function setFocusOnFiberIfFocusable(fiber, focusOptions) { - fiber = getInstanceFromHostFiber(fiber); - return setFocusIfFocusable(fiber, focusOptions); - } - function collectChildren(child, collection) { - collection.push(child); - return !1; - } - function blurActiveElementWithinFragment(child) { - child = getInstanceFromHostFiber(child); - return child === child.ownerDocument.activeElement ? (child.blur(), !0) : !1; - } - function observeChild(child, observer) { - child = getInstanceFromHostFiber(child); - observer.observe(child); - return !1; - } - function unobserveChild(child, observer) { - child = getInstanceFromHostFiber(child); - observer.unobserve(child); - return !1; - } - function collectClientRects(child, rects) { - child = getInstanceFromHostFiber(child); - rects.push.apply(rects, child.getClientRects()); - return !1; - } - function validateDocumentPositionWithFiberTree(documentPosition, fragmentFiber, precedingBoundaryFiber, followingBoundaryFiber, otherNode) { - var otherFiber = getClosestInstanceFromNode(otherNode); - if (documentPosition & Node.DOCUMENT_POSITION_CONTAINED_BY) { - if (precedingBoundaryFiber = !!otherFiber) a: { - for(; null !== otherFiber;){ - if (7 === otherFiber.tag && (otherFiber === fragmentFiber || otherFiber.alternate === fragmentFiber)) { - precedingBoundaryFiber = !0; - break a; - } - otherFiber = otherFiber.return; - } - precedingBoundaryFiber = !1; - } - return precedingBoundaryFiber; - } - if (documentPosition & Node.DOCUMENT_POSITION_CONTAINS) { - if (null === otherFiber) return otherFiber = otherNode.ownerDocument, otherNode === otherFiber || otherNode === otherFiber.body; - a: { - otherFiber = fragmentFiber; - for(fragmentFiber = getFragmentParentHostFiber(fragmentFiber); null !== otherFiber;){ - if (!(5 !== otherFiber.tag && 3 !== otherFiber.tag || otherFiber !== fragmentFiber && otherFiber.alternate !== fragmentFiber)) { - otherFiber = !0; - break a; - } - otherFiber = otherFiber.return; - } - otherFiber = !1; - } - return otherFiber; - } - return documentPosition & Node.DOCUMENT_POSITION_PRECEDING ? ((fragmentFiber = !!otherFiber) && !(fragmentFiber = otherFiber === precedingBoundaryFiber) && (fragmentFiber = getLowestCommonAncestor(precedingBoundaryFiber, otherFiber, getParentForFragmentAncestors), null === fragmentFiber ? fragmentFiber = !1 : (traverseVisibleHostChildren(fragmentFiber, !0, isFiberPrecedingCheck, otherFiber, precedingBoundaryFiber), otherFiber = searchTarget, searchTarget = null, fragmentFiber = null !== otherFiber)), fragmentFiber) : documentPosition & Node.DOCUMENT_POSITION_FOLLOWING ? ((fragmentFiber = !!otherFiber) && !(fragmentFiber = otherFiber === followingBoundaryFiber) && (fragmentFiber = getLowestCommonAncestor(followingBoundaryFiber, otherFiber, getParentForFragmentAncestors), null === fragmentFiber ? fragmentFiber = !1 : (traverseVisibleHostChildren(fragmentFiber, !0, isFiberFollowingCheck, otherFiber, followingBoundaryFiber), otherFiber = searchTarget, searchBoundary = searchTarget = null, fragmentFiber = null !== otherFiber)), fragmentFiber) : !1; - } - function commitNewChildToFragmentInstance(childInstance, fragmentInstance) { - var eventListeners = fragmentInstance._eventListeners; - if (null !== eventListeners) for(var i = 0; i < eventListeners.length; i++){ - var _eventListeners$i2 = eventListeners[i]; - childInstance.addEventListener(_eventListeners$i2.type, _eventListeners$i2.listener, _eventListeners$i2.optionsOrUseCapture); - } - null !== fragmentInstance._observers && fragmentInstance._observers.forEach(function(observer) { - observer.observe(childInstance); - }); - } - function clearContainerSparingly(container) { - var nextNode = container.firstChild; - nextNode && 10 === nextNode.nodeType && (nextNode = nextNode.nextSibling); - for(; nextNode;){ - var node = nextNode; - nextNode = nextNode.nextSibling; - switch(node.nodeName){ - case "HTML": - case "HEAD": - case "BODY": - clearContainerSparingly(node); - detachDeletedInstance(node); - continue; - case "SCRIPT": - case "STYLE": - continue; - case "LINK": - if ("stylesheet" === node.rel.toLowerCase()) continue; - } - container.removeChild(node); - } - } - function canHydrateInstance(instance, type, props, inRootOrSingleton) { - for(; 1 === instance.nodeType;){ - var anyProps = props; - if (instance.nodeName.toLowerCase() !== type.toLowerCase()) { - if (!inRootOrSingleton && ("INPUT" !== instance.nodeName || "hidden" !== instance.type)) break; - } else if (!inRootOrSingleton) if ("input" === type && "hidden" === instance.type) { - checkAttributeStringCoercion(anyProps.name, "name"); - var name = null == anyProps.name ? null : "" + anyProps.name; - if ("hidden" === anyProps.type && instance.getAttribute("name") === name) return instance; - } else return instance; - else if (!instance[internalHoistableMarker]) switch(type){ - case "meta": - if (!instance.hasAttribute("itemprop")) break; - return instance; - case "link": - name = instance.getAttribute("rel"); - if ("stylesheet" === name && instance.hasAttribute("data-precedence")) break; - else if (name !== anyProps.rel || instance.getAttribute("href") !== (null == anyProps.href || "" === anyProps.href ? null : anyProps.href) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null : anyProps.crossOrigin) || instance.getAttribute("title") !== (null == anyProps.title ? null : anyProps.title)) break; - return instance; - case "style": - if (instance.hasAttribute("data-precedence")) break; - return instance; - case "script": - name = instance.getAttribute("src"); - if ((name !== (null == anyProps.src ? null : anyProps.src) || instance.getAttribute("type") !== (null == anyProps.type ? null : anyProps.type) || instance.getAttribute("crossorigin") !== (null == anyProps.crossOrigin ? null : anyProps.crossOrigin)) && name && instance.hasAttribute("async") && !instance.hasAttribute("itemprop")) break; - return instance; - default: - return instance; - } - instance = getNextHydratable(instance.nextSibling); - if (null === instance) break; - } - return null; - } - function canHydrateTextInstance(instance, text, inRootOrSingleton) { - if ("" === text) return null; - for(; 3 !== instance.nodeType;){ - if ((1 !== instance.nodeType || "INPUT" !== instance.nodeName || "hidden" !== instance.type) && !inRootOrSingleton) return null; - instance = getNextHydratable(instance.nextSibling); - if (null === instance) return null; - } - return instance; - } - function canHydrateHydrationBoundary(instance, inRootOrSingleton) { - for(; 8 !== instance.nodeType;){ - if ((1 !== instance.nodeType || "INPUT" !== instance.nodeName || "hidden" !== instance.type) && !inRootOrSingleton) return null; - instance = getNextHydratable(instance.nextSibling); - if (null === instance) return null; - } - return instance; - } - function isSuspenseInstancePending(instance) { - return instance.data === SUSPENSE_PENDING_START_DATA || instance.data === SUSPENSE_QUEUED_START_DATA; - } - function isSuspenseInstanceFallback(instance) { - return instance.data === SUSPENSE_FALLBACK_START_DATA || instance.data === SUSPENSE_PENDING_START_DATA && instance.ownerDocument.readyState !== DOCUMENT_READY_STATE_LOADING; - } - function registerSuspenseInstanceRetry(instance, callback) { - var ownerDocument = instance.ownerDocument; - if (instance.data === SUSPENSE_QUEUED_START_DATA) instance._reactRetry = callback; - else if (instance.data !== SUSPENSE_PENDING_START_DATA || ownerDocument.readyState !== DOCUMENT_READY_STATE_LOADING) callback(); - else { - var listener = function() { - callback(); - ownerDocument.removeEventListener("DOMContentLoaded", listener); - }; - ownerDocument.addEventListener("DOMContentLoaded", listener); - instance._reactRetry = listener; - } - } - function getNextHydratable(node) { - for(; null != node; node = node.nextSibling){ - var nodeType = node.nodeType; - if (1 === nodeType || 3 === nodeType) break; - if (8 === nodeType) { - nodeType = node.data; - if (nodeType === SUSPENSE_START_DATA || nodeType === SUSPENSE_FALLBACK_START_DATA || nodeType === SUSPENSE_PENDING_START_DATA || nodeType === SUSPENSE_QUEUED_START_DATA || nodeType === ACTIVITY_START_DATA || nodeType === FORM_STATE_IS_MATCHING || nodeType === FORM_STATE_IS_NOT_MATCHING) break; - if (nodeType === SUSPENSE_END_DATA || nodeType === ACTIVITY_END_DATA) return null; - } - } - return node; - } - function describeHydratableInstanceForDevWarnings(instance) { - if (1 === instance.nodeType) { - for(var JSCompiler_temp_const = instance.nodeName.toLowerCase(), serverDifferences = {}, attributes = instance.attributes, i = 0; i < attributes.length; i++){ - var attr = attributes[i]; - serverDifferences[getPropNameFromAttributeName(attr.name)] = "style" === attr.name.toLowerCase() ? getStylesObjectFromElement(instance) : attr.value; - } - return { - type: JSCompiler_temp_const, - props: serverDifferences - }; - } - return 8 === instance.nodeType ? instance.data === ACTIVITY_START_DATA ? { - type: "Activity", - props: {} - } : { - type: "Suspense", - props: {} - } : instance.nodeValue; - } - function diffHydratedTextForDevWarnings(textInstance, text, parentProps) { - return null === parentProps || !0 !== parentProps[SUPPRESS_HYDRATION_WARNING] ? (textInstance.nodeValue === text ? textInstance = null : (text = normalizeMarkupForTextOrAttribute(text), textInstance = normalizeMarkupForTextOrAttribute(textInstance.nodeValue) === text ? null : textInstance.nodeValue), textInstance) : null; - } - function getNextHydratableInstanceAfterHydrationBoundary(hydrationInstance) { - hydrationInstance = hydrationInstance.nextSibling; - for(var depth = 0; hydrationInstance;){ - if (8 === hydrationInstance.nodeType) { - var data = hydrationInstance.data; - if (data === SUSPENSE_END_DATA || data === ACTIVITY_END_DATA) { - if (0 === depth) return getNextHydratable(hydrationInstance.nextSibling); - depth--; - } else data !== SUSPENSE_START_DATA && data !== SUSPENSE_FALLBACK_START_DATA && data !== SUSPENSE_PENDING_START_DATA && data !== SUSPENSE_QUEUED_START_DATA && data !== ACTIVITY_START_DATA || depth++; - } - hydrationInstance = hydrationInstance.nextSibling; - } - return null; - } - function getParentHydrationBoundary(targetInstance) { - targetInstance = targetInstance.previousSibling; - for(var depth = 0; targetInstance;){ - if (8 === targetInstance.nodeType) { - var data = targetInstance.data; - if (data === SUSPENSE_START_DATA || data === SUSPENSE_FALLBACK_START_DATA || data === SUSPENSE_PENDING_START_DATA || data === SUSPENSE_QUEUED_START_DATA || data === ACTIVITY_START_DATA) { - if (0 === depth) return targetInstance; - depth--; - } else data !== SUSPENSE_END_DATA && data !== ACTIVITY_END_DATA || depth++; - } - targetInstance = targetInstance.previousSibling; - } - return null; - } - function commitHydratedContainer(container) { - retryIfBlockedOn(container); - } - function commitHydratedActivityInstance(activityInstance) { - retryIfBlockedOn(activityInstance); - } - function commitHydratedSuspenseInstance(suspenseInstance) { - retryIfBlockedOn(suspenseInstance); - } - function setFocusIfFocusable(node, focusOptions) { - function handleFocus() { - didFocus = !0; - } - var didFocus = !1; - try { - node.addEventListener("focus", handleFocus), (node.focus || HTMLElement.prototype.focus).call(node, focusOptions); - } finally{ - node.removeEventListener("focus", handleFocus); - } - return didFocus; - } - function resolveSingletonInstance(type, props, rootContainerInstance, hostContext, validateDOMNestingDev) { - validateDOMNestingDev && validateDOMNesting(type, hostContext.ancestorInfo); - props = getOwnerDocumentFromRootContainer(rootContainerInstance); - switch(type){ - case "html": - type = props.documentElement; - if (!type) throw Error("React expected an <html> element (document.documentElement) to exist in the Document but one was not found. React never removes the documentElement for any Document it renders into so the cause is likely in some other script running on this page."); - return type; - case "head": - type = props.head; - if (!type) throw Error("React expected a <head> element (document.head) to exist in the Document but one was not found. React never removes the head for any Document it renders into so the cause is likely in some other script running on this page."); - return type; - case "body": - type = props.body; - if (!type) throw Error("React expected a <body> element (document.body) to exist in the Document but one was not found. React never removes the body for any Document it renders into so the cause is likely in some other script running on this page."); - return type; - default: - throw Error("resolveSingletonInstance was called with an element type that is not supported. This is a bug in React."); - } - } - function acquireSingletonInstance(type, props, instance, internalInstanceHandle) { - if (!instance[internalContainerInstanceKey] && getInstanceFromNode(instance)) { - var tagName = instance.tagName.toLowerCase(); - console.error("You are mounting a new %s component when a previous one has not first unmounted. It is an error to render more than one %s component at a time and attributes and children of these components will likely fail in unpredictable ways. Please only render a single instance of <%s> and if you need to mount a new one, ensure any previous ones have unmounted first.", tagName, tagName, tagName); - } - switch(type){ - case "html": - case "head": - case "body": - break; - default: - console.error("acquireSingletonInstance was called with an element type that is not supported. This is a bug in React."); - } - for(tagName = instance.attributes; tagName.length;)instance.removeAttributeNode(tagName[0]); - setInitialProperties(instance, type, props); - instance[internalInstanceKey] = internalInstanceHandle; - instance[internalPropsKey] = props; - } - function releaseSingletonInstance(instance) { - for(var attributes = instance.attributes; attributes.length;)instance.removeAttributeNode(attributes[0]); - detachDeletedInstance(instance); - } - function getHoistableRoot(container) { - return "function" === typeof container.getRootNode ? container.getRootNode() : 9 === container.nodeType ? container : container.ownerDocument; - } - function preconnectAs(rel, href, crossOrigin) { - var ownerDocument = globalDocument; - if (ownerDocument && "string" === typeof href && href) { - var limitedEscapedHref = escapeSelectorAttributeValueInsideDoubleQuotes(href); - limitedEscapedHref = 'link[rel="' + rel + '"][href="' + limitedEscapedHref + '"]'; - "string" === typeof crossOrigin && (limitedEscapedHref += '[crossorigin="' + crossOrigin + '"]'); - preconnectsSet.has(limitedEscapedHref) || (preconnectsSet.add(limitedEscapedHref), rel = { - rel: rel, - crossOrigin: crossOrigin, - href: href - }, null === ownerDocument.querySelector(limitedEscapedHref) && (href = ownerDocument.createElement("link"), setInitialProperties(href, "link", rel), markNodeAsHoistable(href), ownerDocument.head.appendChild(href))); - } - } - function getResource(type, currentProps, pendingProps, currentResource) { - var resourceRoot = (resourceRoot = rootInstanceStackCursor.current) ? getHoistableRoot(resourceRoot) : null; - if (!resourceRoot) throw Error('"resourceRoot" was expected to exist. This is a bug in React.'); - switch(type){ - case "meta": - case "title": - return null; - case "style": - return "string" === typeof pendingProps.precedence && "string" === typeof pendingProps.href ? (pendingProps = getStyleKey(pendingProps.href), currentProps = getResourcesFromRoot(resourceRoot).hoistableStyles, currentResource = currentProps.get(pendingProps), currentResource || (currentResource = { - type: "style", - instance: null, - count: 0, - state: null - }, currentProps.set(pendingProps, currentResource)), currentResource) : { - type: "void", - instance: null, - count: 0, - state: null - }; - case "link": - if ("stylesheet" === pendingProps.rel && "string" === typeof pendingProps.href && "string" === typeof pendingProps.precedence) { - type = getStyleKey(pendingProps.href); - var _styles = getResourcesFromRoot(resourceRoot).hoistableStyles, _resource = _styles.get(type); - if (!_resource && (resourceRoot = resourceRoot.ownerDocument || resourceRoot, _resource = { - type: "stylesheet", - instance: null, - count: 0, - state: { - loading: NotLoaded, - preload: null - } - }, _styles.set(type, _resource), (_styles = resourceRoot.querySelector(getStylesheetSelectorFromKey(type))) && !_styles._p && (_resource.instance = _styles, _resource.state.loading = Loaded | Inserted), !preloadPropsMap.has(type))) { - var preloadProps = { - rel: "preload", - as: "style", - href: pendingProps.href, - crossOrigin: pendingProps.crossOrigin, - integrity: pendingProps.integrity, - media: pendingProps.media, - hrefLang: pendingProps.hrefLang, - referrerPolicy: pendingProps.referrerPolicy - }; - preloadPropsMap.set(type, preloadProps); - _styles || preloadStylesheet(resourceRoot, type, preloadProps, _resource.state); - } - if (currentProps && null === currentResource) throw pendingProps = "\n\n - " + describeLinkForResourceErrorDEV(currentProps) + "\n + " + describeLinkForResourceErrorDEV(pendingProps), Error("Expected <link> not to update to be updated to a stylesheet with precedence. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key." + pendingProps); - return _resource; - } - if (currentProps && null !== currentResource) throw pendingProps = "\n\n - " + describeLinkForResourceErrorDEV(currentProps) + "\n + " + describeLinkForResourceErrorDEV(pendingProps), Error("Expected stylesheet with precedence to not be updated to a different kind of <link>. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key." + pendingProps); - return null; - case "script": - return currentProps = pendingProps.async, pendingProps = pendingProps.src, "string" === typeof pendingProps && currentProps && "function" !== typeof currentProps && "symbol" !== typeof currentProps ? (pendingProps = getScriptKey(pendingProps), currentProps = getResourcesFromRoot(resourceRoot).hoistableScripts, currentResource = currentProps.get(pendingProps), currentResource || (currentResource = { - type: "script", - instance: null, - count: 0, - state: null - }, currentProps.set(pendingProps, currentResource)), currentResource) : { - type: "void", - instance: null, - count: 0, - state: null - }; - default: - throw Error('getResource encountered a type it did not expect: "' + type + '". this is a bug in React.'); - } - } - function describeLinkForResourceErrorDEV(props) { - var describedProps = 0, description = "<link"; - "string" === typeof props.rel ? (describedProps++, description += ' rel="' + props.rel + '"') : hasOwnProperty.call(props, "rel") && (describedProps++, description += ' rel="' + (null === props.rel ? "null" : "invalid type " + typeof props.rel) + '"'); - "string" === typeof props.href ? (describedProps++, description += ' href="' + props.href + '"') : hasOwnProperty.call(props, "href") && (describedProps++, description += ' href="' + (null === props.href ? "null" : "invalid type " + typeof props.href) + '"'); - "string" === typeof props.precedence ? (describedProps++, description += ' precedence="' + props.precedence + '"') : hasOwnProperty.call(props, "precedence") && (describedProps++, description += " precedence={" + (null === props.precedence ? "null" : "invalid type " + typeof props.precedence) + "}"); - Object.getOwnPropertyNames(props).length > describedProps && (description += " ..."); - return description + " />"; - } - function getStyleKey(href) { - return 'href="' + escapeSelectorAttributeValueInsideDoubleQuotes(href) + '"'; - } - function getStylesheetSelectorFromKey(key) { - return 'link[rel="stylesheet"][' + key + "]"; - } - function stylesheetPropsFromRawProps(rawProps) { - return assign({}, rawProps, { - "data-precedence": rawProps.precedence, - precedence: null - }); - } - function preloadStylesheet(ownerDocument, key, preloadProps, state) { - ownerDocument.querySelector('link[rel="preload"][as="style"][' + key + "]") ? state.loading = Loaded : (key = ownerDocument.createElement("link"), state.preload = key, key.addEventListener("load", function() { - return state.loading |= Loaded; - }), key.addEventListener("error", function() { - return state.loading |= Errored; - }), setInitialProperties(key, "link", preloadProps), markNodeAsHoistable(key), ownerDocument.head.appendChild(key)); - } - function getScriptKey(src) { - return '[src="' + escapeSelectorAttributeValueInsideDoubleQuotes(src) + '"]'; - } - function getScriptSelectorFromKey(key) { - return "script[async]" + key; - } - function acquireResource(hoistableRoot, resource, props) { - resource.count++; - if (null === resource.instance) switch(resource.type){ - case "style": - var instance = hoistableRoot.querySelector('style[data-href~="' + escapeSelectorAttributeValueInsideDoubleQuotes(props.href) + '"]'); - if (instance) return resource.instance = instance, markNodeAsHoistable(instance), instance; - var styleProps = assign({}, props, { - "data-href": props.href, - "data-precedence": props.precedence, - href: null, - precedence: null - }); - instance = (hoistableRoot.ownerDocument || hoistableRoot).createElement("style"); - markNodeAsHoistable(instance); - setInitialProperties(instance, "style", styleProps); - insertStylesheet(instance, props.precedence, hoistableRoot); - return resource.instance = instance; - case "stylesheet": - styleProps = getStyleKey(props.href); - var _instance = hoistableRoot.querySelector(getStylesheetSelectorFromKey(styleProps)); - if (_instance) return resource.state.loading |= Inserted, resource.instance = _instance, markNodeAsHoistable(_instance), _instance; - instance = stylesheetPropsFromRawProps(props); - (styleProps = preloadPropsMap.get(styleProps)) && adoptPreloadPropsForStylesheet(instance, styleProps); - _instance = (hoistableRoot.ownerDocument || hoistableRoot).createElement("link"); - markNodeAsHoistable(_instance); - var linkInstance = _instance; - linkInstance._p = new Promise(function(resolve, reject) { - linkInstance.onload = resolve; - linkInstance.onerror = reject; - }); - setInitialProperties(_instance, "link", instance); - resource.state.loading |= Inserted; - insertStylesheet(_instance, props.precedence, hoistableRoot); - return resource.instance = _instance; - case "script": - _instance = getScriptKey(props.src); - if (styleProps = hoistableRoot.querySelector(getScriptSelectorFromKey(_instance))) return resource.instance = styleProps, markNodeAsHoistable(styleProps), styleProps; - instance = props; - if (styleProps = preloadPropsMap.get(_instance)) instance = assign({}, props), adoptPreloadPropsForScript(instance, styleProps); - hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot; - styleProps = hoistableRoot.createElement("script"); - markNodeAsHoistable(styleProps); - setInitialProperties(styleProps, "link", instance); - hoistableRoot.head.appendChild(styleProps); - return resource.instance = styleProps; - case "void": - return null; - default: - throw Error('acquireResource encountered a resource type it did not expect: "' + resource.type + '". this is a bug in React.'); - } - else "stylesheet" === resource.type && (resource.state.loading & Inserted) === NotLoaded && (instance = resource.instance, resource.state.loading |= Inserted, insertStylesheet(instance, props.precedence, hoistableRoot)); - return resource.instance; - } - function insertStylesheet(instance, precedence, root) { - for(var nodes = root.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'), last = nodes.length ? nodes[nodes.length - 1] : null, prior = last, i = 0; i < nodes.length; i++){ - var node = nodes[i]; - if (node.dataset.precedence === precedence) prior = node; - else if (prior !== last) break; - } - prior ? prior.parentNode.insertBefore(instance, prior.nextSibling) : (precedence = 9 === root.nodeType ? root.head : root, precedence.insertBefore(instance, precedence.firstChild)); - } - function adoptPreloadPropsForStylesheet(stylesheetProps, preloadProps) { - null == stylesheetProps.crossOrigin && (stylesheetProps.crossOrigin = preloadProps.crossOrigin); - null == stylesheetProps.referrerPolicy && (stylesheetProps.referrerPolicy = preloadProps.referrerPolicy); - null == stylesheetProps.title && (stylesheetProps.title = preloadProps.title); - } - function adoptPreloadPropsForScript(scriptProps, preloadProps) { - null == scriptProps.crossOrigin && (scriptProps.crossOrigin = preloadProps.crossOrigin); - null == scriptProps.referrerPolicy && (scriptProps.referrerPolicy = preloadProps.referrerPolicy); - null == scriptProps.integrity && (scriptProps.integrity = preloadProps.integrity); - } - function getHydratableHoistableCache(type, keyAttribute, ownerDocument) { - if (null === tagCaches) { - var cache = new Map(); - var caches = tagCaches = new Map(); - caches.set(ownerDocument, cache); - } else caches = tagCaches, cache = caches.get(ownerDocument), cache || (cache = new Map(), caches.set(ownerDocument, cache)); - if (cache.has(type)) return cache; - cache.set(type, null); - ownerDocument = ownerDocument.getElementsByTagName(type); - for(caches = 0; caches < ownerDocument.length; caches++){ - var node = ownerDocument[caches]; - if (!(node[internalHoistableMarker] || node[internalInstanceKey] || "link" === type && "stylesheet" === node.getAttribute("rel")) && node.namespaceURI !== SVG_NAMESPACE) { - var nodeKey = node.getAttribute(keyAttribute) || ""; - nodeKey = type + nodeKey; - var existing = cache.get(nodeKey); - existing ? existing.push(node) : cache.set(nodeKey, [ - node - ]); - } - } - return cache; - } - function mountHoistable(hoistableRoot, type, instance) { - hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot; - hoistableRoot.head.insertBefore(instance, "title" === type ? hoistableRoot.querySelector("head > title") : null); - } - function isHostHoistableType(type, props, hostContext) { - var outsideHostContainerContext = !hostContext.ancestorInfo.containerTagInScope; - if (hostContext.context === HostContextNamespaceSvg || null != props.itemProp) return !outsideHostContainerContext || null == props.itemProp || "meta" !== type && "title" !== type && "style" !== type && "link" !== type && "script" !== type || console.error("Cannot render a <%s> outside the main document if it has an `itemProp` prop. `itemProp` suggests the tag belongs to an `itemScope` which can appear anywhere in the DOM. If you were intending for React to hoist this <%s> remove the `itemProp` prop. Otherwise, try moving this tag into the <head> or <body> of the Document.", type, type), !1; - switch(type){ - case "meta": - case "title": - return !0; - case "style": - if ("string" !== typeof props.precedence || "string" !== typeof props.href || "" === props.href) { - outsideHostContainerContext && console.error('Cannot render a <style> outside the main document without knowing its precedence and a unique href key. React can hoist and deduplicate <style> tags if you provide a `precedence` prop along with an `href` prop that does not conflict with the `href` values used in any other hoisted <style> or <link rel="stylesheet" ...> tags. Note that hoisting <style> tags is considered an advanced feature that most will not use directly. Consider moving the <style> tag to the <head> or consider adding a `precedence="default"` and `href="some unique resource identifier"`.'); - break; - } - return !0; - case "link": - if ("string" !== typeof props.rel || "string" !== typeof props.href || "" === props.href || props.onLoad || props.onError) { - if ("stylesheet" === props.rel && "string" === typeof props.precedence) { - type = props.href; - var onError = props.onError, disabled = props.disabled; - hostContext = []; - props.onLoad && hostContext.push("`onLoad`"); - onError && hostContext.push("`onError`"); - null != disabled && hostContext.push("`disabled`"); - onError = propNamesListJoin(hostContext, "and"); - onError += 1 === hostContext.length ? " prop" : " props"; - disabled = 1 === hostContext.length ? "an " + onError : "the " + onError; - hostContext.length && console.error('React encountered a <link rel="stylesheet" href="%s" ... /> with a `precedence` prop that also included %s. The presence of loading and error handlers indicates an intent to manage the stylesheet loading state from your from your Component code and React will not hoist or deduplicate this stylesheet. If your intent was to have React hoist and deduplciate this stylesheet using the `precedence` prop remove the %s, otherwise remove the `precedence` prop.', type, disabled, onError); - } - outsideHostContainerContext && ("string" !== typeof props.rel || "string" !== typeof props.href || "" === props.href ? console.error("Cannot render a <link> outside the main document without a `rel` and `href` prop. Try adding a `rel` and/or `href` prop to this <link> or moving the link into the <head> tag") : (props.onError || props.onLoad) && console.error("Cannot render a <link> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>.")); - break; - } - switch(props.rel){ - case "stylesheet": - return type = props.precedence, props = props.disabled, "string" !== typeof type && outsideHostContainerContext && console.error('Cannot render a <link rel="stylesheet" /> outside the main document without knowing its precedence. Consider adding precedence="default" or moving it into the root <head> tag.'), "string" === typeof type && null == props; - default: - return !0; - } - case "script": - type = props.async && "function" !== typeof props.async && "symbol" !== typeof props.async; - if (!type || props.onLoad || props.onError || !props.src || "string" !== typeof props.src) { - outsideHostContainerContext && (type ? props.onLoad || props.onError ? console.error("Cannot render a <script> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>.") : console.error("Cannot render a <script> outside the main document without `async={true}` and a non-empty `src` prop. Ensure there is a valid `src` and either make the script async or move it into the root <head> tag or somewhere in the <body>.") : console.error('Cannot render a sync or defer <script> outside the main document without knowing its order. Try adding async="" or moving it into the root <head> tag.')); - break; - } - return !0; - case "noscript": - case "template": - outsideHostContainerContext && console.error("Cannot render <%s> outside the main document. Try moving it into the root <head> tag.", type); - } - return !1; - } - function maySuspendCommit(type, props) { - return "img" === type && null != props.src && "" !== props.src && null == props.onLoad && "lazy" !== props.loading; - } - function preloadResource(resource) { - return "stylesheet" === resource.type && (resource.state.loading & Settled) === NotLoaded ? !1 : !0; - } - function estimateImageBytes(instance) { - return (instance.width || 100) * (instance.height || 100) * ("number" === typeof devicePixelRatio ? devicePixelRatio : 1) * 0.25; - } - function suspendInstance(state, instance) { - "function" === typeof instance.decode && (state.imgCount++, instance.complete || (state.imgBytes += estimateImageBytes(instance), state.suspenseyImages.push(instance)), state = onUnsuspendImg.bind(state), instance.decode().then(state, state)); - } - function suspendResource(state, hoistableRoot, resource, props) { - if ("stylesheet" === resource.type && ("string" !== typeof props.media || !1 !== matchMedia(props.media).matches) && (resource.state.loading & Inserted) === NotLoaded) { - if (null === resource.instance) { - var key = getStyleKey(props.href), instance = hoistableRoot.querySelector(getStylesheetSelectorFromKey(key)); - if (instance) { - hoistableRoot = instance._p; - null !== hoistableRoot && "object" === typeof hoistableRoot && "function" === typeof hoistableRoot.then && (state.count++, state = onUnsuspend.bind(state), hoistableRoot.then(state, state)); - resource.state.loading |= Inserted; - resource.instance = instance; - markNodeAsHoistable(instance); - return; - } - instance = hoistableRoot.ownerDocument || hoistableRoot; - props = stylesheetPropsFromRawProps(props); - (key = preloadPropsMap.get(key)) && adoptPreloadPropsForStylesheet(props, key); - instance = instance.createElement("link"); - markNodeAsHoistable(instance); - var linkInstance = instance; - linkInstance._p = new Promise(function(resolve, reject) { - linkInstance.onload = resolve; - linkInstance.onerror = reject; - }); - setInitialProperties(instance, "link", props); - resource.instance = instance; - } - null === state.stylesheets && (state.stylesheets = new Map()); - state.stylesheets.set(resource, hoistableRoot); - (hoistableRoot = resource.state.preload) && (resource.state.loading & Settled) === NotLoaded && (state.count++, resource = onUnsuspend.bind(state), hoistableRoot.addEventListener("load", resource), hoistableRoot.addEventListener("error", resource)); - } - } - function waitForCommitToBeReady(state, timeoutOffset) { - state.stylesheets && 0 === state.count && insertSuspendedStylesheets(state, state.stylesheets); - return 0 < state.count || 0 < state.imgCount ? function(commit) { - var stylesheetTimer = setTimeout(function() { - state.stylesheets && insertSuspendedStylesheets(state, state.stylesheets); - if (state.unsuspend) { - var unsuspend = state.unsuspend; - state.unsuspend = null; - unsuspend(); - } - }, SUSPENSEY_STYLESHEET_TIMEOUT + timeoutOffset); - 0 < state.imgBytes && 0 === estimatedBytesWithinLimit && (estimatedBytesWithinLimit = 125 * estimateBandwidth() * SUSPENSEY_IMAGE_TIME_ESTIMATE); - var imgTimer = setTimeout(function() { - state.waitingForImages = !1; - if (0 === state.count && (state.stylesheets && insertSuspendedStylesheets(state, state.stylesheets), state.unsuspend)) { - var unsuspend = state.unsuspend; - state.unsuspend = null; - unsuspend(); - } - }, (state.imgBytes > estimatedBytesWithinLimit ? 50 : SUSPENSEY_IMAGE_TIMEOUT) + timeoutOffset); - state.unsuspend = commit; - return function() { - state.unsuspend = null; - clearTimeout(stylesheetTimer); - clearTimeout(imgTimer); - }; - } : null; - } - function checkIfFullyUnsuspended(state) { - if (0 === state.count && (0 === state.imgCount || !state.waitingForImages)) { - if (state.stylesheets) insertSuspendedStylesheets(state, state.stylesheets); - else if (state.unsuspend) { - var unsuspend = state.unsuspend; - state.unsuspend = null; - unsuspend(); - } - } - } - function onUnsuspend() { - this.count--; - checkIfFullyUnsuspended(this); - } - function onUnsuspendImg() { - this.imgCount--; - checkIfFullyUnsuspended(this); - } - function insertSuspendedStylesheets(state, resources) { - state.stylesheets = null; - null !== state.unsuspend && (state.count++, precedencesByRoot = new Map(), resources.forEach(insertStylesheetIntoRoot, state), precedencesByRoot = null, onUnsuspend.call(state)); - } - function insertStylesheetIntoRoot(root, resource) { - if (!(resource.state.loading & Inserted)) { - var precedences = precedencesByRoot.get(root); - if (precedences) var last = precedences.get(LAST_PRECEDENCE); - else { - precedences = new Map(); - precedencesByRoot.set(root, precedences); - for(var nodes = root.querySelectorAll("link[data-precedence],style[data-precedence]"), i = 0; i < nodes.length; i++){ - var node = nodes[i]; - if ("LINK" === node.nodeName || "not all" !== node.getAttribute("media")) precedences.set(node.dataset.precedence, node), last = node; - } - last && precedences.set(LAST_PRECEDENCE, last); - } - nodes = resource.instance; - node = nodes.getAttribute("data-precedence"); - i = precedences.get(node) || last; - i === last && precedences.set(LAST_PRECEDENCE, nodes); - precedences.set(node, nodes); - this.count++; - last = onUnsuspend.bind(this); - nodes.addEventListener("load", last); - nodes.addEventListener("error", last); - i ? i.parentNode.insertBefore(nodes, i.nextSibling) : (root = 9 === root.nodeType ? root.head : root, root.insertBefore(nodes, root.firstChild)); - resource.state.loading |= Inserted; - } - } - function FiberRootNode(containerInfo, tag, hydrate, identifierPrefix, onUncaughtError, onCaughtError, onRecoverableError, onDefaultTransitionIndicator, formState) { - this.tag = 1; - this.containerInfo = containerInfo; - this.pingCache = this.current = this.pendingChildren = null; - this.timeoutHandle = noTimeout; - this.callbackNode = this.next = this.pendingContext = this.context = this.cancelPendingCommit = null; - this.callbackPriority = 0; - this.expirationTimes = createLaneMap(-1); - this.entangledLanes = this.shellSuspendCounter = this.errorRecoveryDisabledLanes = this.expiredLanes = this.warmLanes = this.pingedLanes = this.suspendedLanes = this.pendingLanes = 0; - this.entanglements = createLaneMap(0); - this.hiddenUpdates = createLaneMap(null); - this.identifierPrefix = identifierPrefix; - this.onUncaughtError = onUncaughtError; - this.onCaughtError = onCaughtError; - this.onRecoverableError = onRecoverableError; - this.pooledCache = null; - this.pooledCacheLanes = 0; - this.formState = formState; - this.transitionTypes = null; - this.incompleteTransitions = new Map(); - this.passiveEffectDuration = this.effectDuration = -0; - this.memoizedUpdaters = new Set(); - containerInfo = this.pendingUpdatersLaneMap = []; - for(tag = 0; 31 > tag; tag++)containerInfo.push(new Set()); - this._debugRootType = hydrate ? "hydrateRoot()" : "createRoot()"; - } - function createFiberRoot(containerInfo, tag, hydrate, initialChildren, hydrationCallbacks, isStrictMode, identifierPrefix, formState, onUncaughtError, onCaughtError, onRecoverableError, onDefaultTransitionIndicator) { - containerInfo = new FiberRootNode(containerInfo, tag, hydrate, identifierPrefix, onUncaughtError, onCaughtError, onRecoverableError, onDefaultTransitionIndicator, formState); - tag = ConcurrentMode; - !0 === isStrictMode && (tag |= StrictLegacyMode | StrictEffectsMode); - tag |= ProfileMode; - isStrictMode = createFiber(3, null, null, tag); - containerInfo.current = isStrictMode; - isStrictMode.stateNode = containerInfo; - tag = createCache(); - retainCache(tag); - containerInfo.pooledCache = tag; - retainCache(tag); - isStrictMode.memoizedState = { - element: initialChildren, - isDehydrated: hydrate, - cache: tag - }; - initializeUpdateQueue(isStrictMode); - return containerInfo; - } - function getContextForSubtree(parentComponent) { - if (!parentComponent) return emptyContextObject; - parentComponent = emptyContextObject; - return parentComponent; - } - function updateContainerImpl(rootFiber, lane, element, container, parentComponent, callback) { - if (injectedHook && "function" === typeof injectedHook.onScheduleFiberRoot) try { - injectedHook.onScheduleFiberRoot(rendererID, container, element); - } catch (err) { - hasLoggedError || (hasLoggedError = !0, console.error("React instrumentation encountered an error: %o", err)); - } - parentComponent = getContextForSubtree(parentComponent); - null === container.context ? container.context = parentComponent : container.pendingContext = parentComponent; - isRendering && null !== current && !didWarnAboutNestedUpdates && (didWarnAboutNestedUpdates = !0, console.error("Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.\n\nCheck the render method of %s.", getComponentNameFromFiber(current) || "Unknown")); - container = createUpdate(lane); - container.payload = { - element: element - }; - callback = void 0 === callback ? null : callback; - null !== callback && ("function" !== typeof callback && console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.", callback), container.callback = callback); - element = enqueueUpdate(rootFiber, container, lane); - null !== element && (startUpdateTimerByLane(lane, "root.render()", null), scheduleUpdateOnFiber(element, rootFiber, lane), entangleTransitions(element, rootFiber, lane)); - } - function markRetryLaneImpl(fiber, retryLane) { - fiber = fiber.memoizedState; - if (null !== fiber && null !== fiber.dehydrated) { - var a = fiber.retryLane; - fiber.retryLane = 0 !== a && a < retryLane ? a : retryLane; - } - } - function markRetryLaneIfNotHydrated(fiber, retryLane) { - markRetryLaneImpl(fiber, retryLane); - (fiber = fiber.alternate) && markRetryLaneImpl(fiber, retryLane); - } - function attemptContinuousHydration(fiber) { - if (13 === fiber.tag || 31 === fiber.tag) { - var root = enqueueConcurrentRenderForLane(fiber, 67108864); - null !== root && scheduleUpdateOnFiber(root, fiber, 67108864); - markRetryLaneIfNotHydrated(fiber, 67108864); - } - } - function attemptHydrationAtCurrentPriority(fiber) { - if (13 === fiber.tag || 31 === fiber.tag) { - var lane = requestUpdateLane(fiber); - lane = getBumpedLaneForHydrationByLane(lane); - var root = enqueueConcurrentRenderForLane(fiber, lane); - null !== root && scheduleUpdateOnFiber(root, fiber, lane); - markRetryLaneIfNotHydrated(fiber, lane); - } - } - function getCurrentFiberForDevTools() { - return current; - } - function dispatchDiscreteEvent(domEventName, eventSystemFlags, container, nativeEvent) { - var prevTransition = ReactSharedInternals.T; - ReactSharedInternals.T = null; - var previousPriority = ReactDOMSharedInternals.p; - try { - ReactDOMSharedInternals.p = DiscreteEventPriority, dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent); - } finally{ - ReactDOMSharedInternals.p = previousPriority, ReactSharedInternals.T = prevTransition; - } - } - function dispatchContinuousEvent(domEventName, eventSystemFlags, container, nativeEvent) { - var prevTransition = ReactSharedInternals.T; - ReactSharedInternals.T = null; - var previousPriority = ReactDOMSharedInternals.p; - try { - ReactDOMSharedInternals.p = ContinuousEventPriority, dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent); - } finally{ - ReactDOMSharedInternals.p = previousPriority, ReactSharedInternals.T = prevTransition; - } - } - function dispatchEvent(domEventName, eventSystemFlags, targetContainer, nativeEvent) { - if (_enabled) { - var blockedOn = findInstanceBlockingEvent(nativeEvent); - if (null === blockedOn) dispatchEventForPluginEventSystem(domEventName, eventSystemFlags, nativeEvent, return_targetInst, targetContainer), clearIfContinuousEvent(domEventName, nativeEvent); - else if (queueIfContinuousEvent(blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent)) nativeEvent.stopPropagation(); - else if (clearIfContinuousEvent(domEventName, nativeEvent), eventSystemFlags & 4 && -1 < discreteReplayableEvents.indexOf(domEventName)) { - for(; null !== blockedOn;){ - var fiber = getInstanceFromNode(blockedOn); - if (null !== fiber) switch(fiber.tag){ - case 3: - fiber = fiber.stateNode; - if (fiber.current.memoizedState.isDehydrated) { - var lanes = getHighestPriorityLanes(fiber.pendingLanes); - if (0 !== lanes) { - var root = fiber; - root.pendingLanes |= 2; - for(root.entangledLanes |= 2; lanes;){ - var lane = 1 << 31 - clz32(lanes); - root.entanglements[1] |= lane; - lanes &= ~lane; - } - ensureRootIsScheduled(fiber); - (executionContext & (RenderContext | CommitContext)) === NoContext && (workInProgressRootRenderTargetTime = now$1() + RENDER_TIMEOUT_MS, flushSyncWorkAcrossRoots_impl(0, !1)); - } - } - break; - case 31: - case 13: - root = enqueueConcurrentRenderForLane(fiber, 2), null !== root && scheduleUpdateOnFiber(root, fiber, 2), flushSyncWork$1(), markRetryLaneIfNotHydrated(fiber, 2); - } - fiber = findInstanceBlockingEvent(nativeEvent); - null === fiber && dispatchEventForPluginEventSystem(domEventName, eventSystemFlags, nativeEvent, return_targetInst, targetContainer); - if (fiber === blockedOn) break; - blockedOn = fiber; - } - null !== blockedOn && nativeEvent.stopPropagation(); - } else dispatchEventForPluginEventSystem(domEventName, eventSystemFlags, nativeEvent, null, targetContainer); - } - } - function findInstanceBlockingEvent(nativeEvent) { - nativeEvent = getEventTarget(nativeEvent); - return findInstanceBlockingTarget(nativeEvent); - } - function findInstanceBlockingTarget(targetNode) { - return_targetInst = null; - targetNode = getClosestInstanceFromNode(targetNode); - if (null !== targetNode) { - var nearestMounted = getNearestMountedFiber(targetNode); - if (null === nearestMounted) targetNode = null; - else { - var tag = nearestMounted.tag; - if (13 === tag) { - targetNode = getSuspenseInstanceFromFiber(nearestMounted); - if (null !== targetNode) return targetNode; - targetNode = null; - } else if (31 === tag) { - targetNode = getActivityInstanceFromFiber(nearestMounted); - if (null !== targetNode) return targetNode; - targetNode = null; - } else if (3 === tag) { - if (nearestMounted.stateNode.current.memoizedState.isDehydrated) return 3 === nearestMounted.tag ? nearestMounted.stateNode.containerInfo : null; - targetNode = null; - } else nearestMounted !== targetNode && (targetNode = null); - } - } - return_targetInst = targetNode; - return null; - } - function getEventPriority(domEventName) { - switch(domEventName){ - case "beforetoggle": - case "cancel": - case "click": - case "close": - case "contextmenu": - case "copy": - case "cut": - case "auxclick": - case "dblclick": - case "dragend": - case "dragstart": - case "drop": - case "focusin": - case "focusout": - case "input": - case "invalid": - case "keydown": - case "keypress": - case "keyup": - case "mousedown": - case "mouseup": - case "paste": - case "pause": - case "play": - case "pointercancel": - case "pointerdown": - case "pointerup": - case "ratechange": - case "reset": - case "seeked": - case "submit": - case "toggle": - case "touchcancel": - case "touchend": - case "touchstart": - case "volumechange": - case "change": - case "selectionchange": - case "textInput": - case "compositionstart": - case "compositionend": - case "compositionupdate": - case "beforeblur": - case "afterblur": - case "beforeinput": - case "blur": - case "fullscreenchange": - case "focus": - case "hashchange": - case "popstate": - case "select": - case "selectstart": - return DiscreteEventPriority; - case "drag": - case "dragenter": - case "dragexit": - case "dragleave": - case "dragover": - case "mousemove": - case "mouseout": - case "mouseover": - case "pointermove": - case "pointerout": - case "pointerover": - case "resize": - case "scroll": - case "touchmove": - case "wheel": - case "mouseenter": - case "mouseleave": - case "pointerenter": - case "pointerleave": - return ContinuousEventPriority; - case "message": - switch(getCurrentPriorityLevel()){ - case ImmediatePriority: - return DiscreteEventPriority; - case UserBlockingPriority: - return ContinuousEventPriority; - case NormalPriority$1: - case LowPriority: - return DefaultEventPriority; - case IdlePriority: - return IdleEventPriority; - default: - return DefaultEventPriority; - } - default: - return DefaultEventPriority; - } - } - function clearIfContinuousEvent(domEventName, nativeEvent) { - switch(domEventName){ - case "focusin": - case "focusout": - queuedFocus = null; - break; - case "dragenter": - case "dragleave": - queuedDrag = null; - break; - case "mouseover": - case "mouseout": - queuedMouse = null; - break; - case "pointerover": - case "pointerout": - queuedPointers.delete(nativeEvent.pointerId); - break; - case "gotpointercapture": - case "lostpointercapture": - queuedPointerCaptures.delete(nativeEvent.pointerId); - } - } - function accumulateOrCreateContinuousQueuedReplayableEvent(existingQueuedEvent, blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent) { - if (null === existingQueuedEvent || existingQueuedEvent.nativeEvent !== nativeEvent) return existingQueuedEvent = { - blockedOn: blockedOn, - domEventName: domEventName, - eventSystemFlags: eventSystemFlags, - nativeEvent: nativeEvent, - targetContainers: [ - targetContainer - ] - }, null !== blockedOn && (blockedOn = getInstanceFromNode(blockedOn), null !== blockedOn && attemptContinuousHydration(blockedOn)), existingQueuedEvent; - existingQueuedEvent.eventSystemFlags |= eventSystemFlags; - blockedOn = existingQueuedEvent.targetContainers; - null !== targetContainer && -1 === blockedOn.indexOf(targetContainer) && blockedOn.push(targetContainer); - return existingQueuedEvent; - } - function queueIfContinuousEvent(blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent) { - switch(domEventName){ - case "focusin": - return queuedFocus = accumulateOrCreateContinuousQueuedReplayableEvent(queuedFocus, blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent), !0; - case "dragenter": - return queuedDrag = accumulateOrCreateContinuousQueuedReplayableEvent(queuedDrag, blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent), !0; - case "mouseover": - return queuedMouse = accumulateOrCreateContinuousQueuedReplayableEvent(queuedMouse, blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent), !0; - case "pointerover": - var pointerId = nativeEvent.pointerId; - queuedPointers.set(pointerId, accumulateOrCreateContinuousQueuedReplayableEvent(queuedPointers.get(pointerId) || null, blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent)); - return !0; - case "gotpointercapture": - return pointerId = nativeEvent.pointerId, queuedPointerCaptures.set(pointerId, accumulateOrCreateContinuousQueuedReplayableEvent(queuedPointerCaptures.get(pointerId) || null, blockedOn, domEventName, eventSystemFlags, targetContainer, nativeEvent)), !0; - } - return !1; - } - function attemptExplicitHydrationTarget(queuedTarget) { - var targetInst = getClosestInstanceFromNode(queuedTarget.target); - if (null !== targetInst) { - var nearestMounted = getNearestMountedFiber(targetInst); - if (null !== nearestMounted) { - if (targetInst = nearestMounted.tag, 13 === targetInst) { - if (targetInst = getSuspenseInstanceFromFiber(nearestMounted), null !== targetInst) { - queuedTarget.blockedOn = targetInst; - runWithPriority(queuedTarget.priority, function() { - attemptHydrationAtCurrentPriority(nearestMounted); - }); - return; - } - } else if (31 === targetInst) { - if (targetInst = getActivityInstanceFromFiber(nearestMounted), null !== targetInst) { - queuedTarget.blockedOn = targetInst; - runWithPriority(queuedTarget.priority, function() { - attemptHydrationAtCurrentPriority(nearestMounted); - }); - return; - } - } else if (3 === targetInst && nearestMounted.stateNode.current.memoizedState.isDehydrated) { - queuedTarget.blockedOn = 3 === nearestMounted.tag ? nearestMounted.stateNode.containerInfo : null; - return; - } - } - } - queuedTarget.blockedOn = null; - } - function attemptReplayContinuousQueuedEvent(queuedEvent) { - if (null !== queuedEvent.blockedOn) return !1; - for(var targetContainers = queuedEvent.targetContainers; 0 < targetContainers.length;){ - var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent); - if (null === nextBlockedOn) { - nextBlockedOn = queuedEvent.nativeEvent; - var nativeEventClone = new nextBlockedOn.constructor(nextBlockedOn.type, nextBlockedOn), event = nativeEventClone; - null !== currentReplayingEvent && console.error("Expected currently replaying event to be null. This error is likely caused by a bug in React. Please file an issue."); - currentReplayingEvent = event; - nextBlockedOn.target.dispatchEvent(nativeEventClone); - null === currentReplayingEvent && console.error("Expected currently replaying event to not be null. This error is likely caused by a bug in React. Please file an issue."); - currentReplayingEvent = null; - } else return targetContainers = getInstanceFromNode(nextBlockedOn), null !== targetContainers && attemptContinuousHydration(targetContainers), queuedEvent.blockedOn = nextBlockedOn, !1; - targetContainers.shift(); - } - return !0; - } - function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) { - attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key); - } - function replayUnblockedEvents() { - hasScheduledReplayAttempt = !1; - null !== queuedFocus && attemptReplayContinuousQueuedEvent(queuedFocus) && (queuedFocus = null); - null !== queuedDrag && attemptReplayContinuousQueuedEvent(queuedDrag) && (queuedDrag = null); - null !== queuedMouse && attemptReplayContinuousQueuedEvent(queuedMouse) && (queuedMouse = null); - queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap); - queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap); - } - function scheduleCallbackIfUnblocked(queuedEvent, unblocked) { - queuedEvent.blockedOn === unblocked && (queuedEvent.blockedOn = null, hasScheduledReplayAttempt || (hasScheduledReplayAttempt = !0, Scheduler.unstable_scheduleCallback(Scheduler.unstable_NormalPriority, replayUnblockedEvents))); - } - function scheduleReplayQueueIfNeeded(formReplayingQueue) { - lastScheduledReplayQueue !== formReplayingQueue && (lastScheduledReplayQueue = formReplayingQueue, Scheduler.unstable_scheduleCallback(Scheduler.unstable_NormalPriority, function() { - lastScheduledReplayQueue === formReplayingQueue && (lastScheduledReplayQueue = null); - for(var i = 0; i < formReplayingQueue.length; i += 3){ - var form = formReplayingQueue[i], submitterOrAction = formReplayingQueue[i + 1], formData = formReplayingQueue[i + 2]; - if ("function" !== typeof submitterOrAction) if (null === findInstanceBlockingTarget(submitterOrAction || form)) continue; - else break; - var formInst = getInstanceFromNode(form); - null !== formInst && (formReplayingQueue.splice(i, 3), i -= 3, form = { - pending: !0, - data: formData, - method: form.method, - action: submitterOrAction - }, Object.freeze(form), startHostTransition(formInst, form, submitterOrAction, formData)); - } - })); - } - function retryIfBlockedOn(unblocked) { - function unblock(queuedEvent) { - return scheduleCallbackIfUnblocked(queuedEvent, unblocked); - } - null !== queuedFocus && scheduleCallbackIfUnblocked(queuedFocus, unblocked); - null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked); - null !== queuedMouse && scheduleCallbackIfUnblocked(queuedMouse, unblocked); - queuedPointers.forEach(unblock); - queuedPointerCaptures.forEach(unblock); - for(var i = 0; i < queuedExplicitHydrationTargets.length; i++){ - var queuedTarget = queuedExplicitHydrationTargets[i]; - queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null); - } - for(; 0 < queuedExplicitHydrationTargets.length && (i = queuedExplicitHydrationTargets[0], null === i.blockedOn);)attemptExplicitHydrationTarget(i), null === i.blockedOn && queuedExplicitHydrationTargets.shift(); - i = (unblocked.ownerDocument || unblocked).$$reactFormReplay; - if (null != i) for(queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3){ - var form = i[queuedTarget], submitterOrAction = i[queuedTarget + 1], formProps = form[internalPropsKey] || null; - if ("function" === typeof submitterOrAction) formProps || scheduleReplayQueueIfNeeded(i); - else if (formProps) { - var action = null; - if (submitterOrAction && submitterOrAction.hasAttribute("formAction")) if (form = submitterOrAction, formProps = submitterOrAction[internalPropsKey] || null) action = formProps.formAction; - else { - if (null !== findInstanceBlockingTarget(form)) continue; - } - else action = formProps.action; - "function" === typeof action ? i[queuedTarget + 1] = action : (i.splice(queuedTarget, 3), queuedTarget -= 3); - scheduleReplayQueueIfNeeded(i); - } - } - } - function defaultOnDefaultTransitionIndicator() { - function handleNavigate(event) { - event.canIntercept && "react-transition" === event.info && event.intercept({ - handler: function() { - return new Promise(function(resolve) { - return pendingResolve = resolve; - }); - }, - focusReset: "manual", - scroll: "manual" - }); - } - function handleNavigateComplete() { - null !== pendingResolve && (pendingResolve(), pendingResolve = null); - isCancelled || setTimeout(startFakeNavigation, 20); - } - function startFakeNavigation() { - if (!isCancelled && !navigation.transition) { - var currentEntry = navigation.currentEntry; - currentEntry && null != currentEntry.url && navigation.navigate(currentEntry.url, { - state: currentEntry.getState(), - info: "react-transition", - history: "replace" - }); - } - } - if ("object" === typeof navigation) { - var isCancelled = !1, pendingResolve = null; - navigation.addEventListener("navigate", handleNavigate); - navigation.addEventListener("navigatesuccess", handleNavigateComplete); - navigation.addEventListener("navigateerror", handleNavigateComplete); - setTimeout(startFakeNavigation, 100); - return function() { - isCancelled = !0; - navigation.removeEventListener("navigate", handleNavigate); - navigation.removeEventListener("navigatesuccess", handleNavigateComplete); - navigation.removeEventListener("navigateerror", handleNavigateComplete); - null !== pendingResolve && (pendingResolve(), pendingResolve = null); - }; - } - } - function ReactDOMRoot(internalRoot) { - this._internalRoot = internalRoot; - } - function ReactDOMHydrationRoot(internalRoot) { - this._internalRoot = internalRoot; - } - function warnIfReactDOMContainerInDEV(container) { - container[internalContainerInstanceKey] && (container._reactRootContainer ? console.error("You are calling ReactDOMClient.createRoot() on a container that was previously passed to ReactDOM.render(). This is not supported.") : console.error("You are calling ReactDOMClient.createRoot() on a container that has already been passed to createRoot() before. Instead, call root.render() on the existing root instead if you want to update it.")); - } - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()); - var Scheduler = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/scheduler/index.js [app-client] (ecmascript)"), React = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"), ReactDOM = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-dom/index.js [app-client] (ecmascript)"), searchTarget = null, searchBoundary = null, assign = Object.assign, REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"); - Symbol.for("react.scope"); - var REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_LEGACY_HIDDEN_TYPE = Symbol.for("react.legacy_hidden"); - Symbol.for("react.tracing_marker"); - var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator, REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), isArrayImpl = Array.isArray, ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, ReactDOMSharedInternals = ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, NotPending = Object.freeze({ - pending: !1, - data: null, - method: null, - action: null - }), valueStack = []; - var fiberStack = []; - var index$jscomp$0 = -1, contextStackCursor = createCursor(null), contextFiberStackCursor = createCursor(null), rootInstanceStackCursor = createCursor(null), hostTransitionProviderCursor = createCursor(null), disabledDepth = 0, prevLog, prevInfo, prevWarn, prevError, prevGroup, prevGroupCollapsed, prevGroupEnd; - disabledLog.__reactDisabledLog = !0; - var prefix, suffix, reentry = !1; - var componentFrameCache = new ("function" === typeof WeakMap ? WeakMap : Map)(); - var current = null, isRendering = !1, hasOwnProperty = Object.prototype.hasOwnProperty, scheduleCallback$3 = Scheduler.unstable_scheduleCallback, cancelCallback$1 = Scheduler.unstable_cancelCallback, shouldYield = Scheduler.unstable_shouldYield, requestPaint = Scheduler.unstable_requestPaint, now$1 = Scheduler.unstable_now, getCurrentPriorityLevel = Scheduler.unstable_getCurrentPriorityLevel, ImmediatePriority = Scheduler.unstable_ImmediatePriority, UserBlockingPriority = Scheduler.unstable_UserBlockingPriority, NormalPriority$1 = Scheduler.unstable_NormalPriority, LowPriority = Scheduler.unstable_LowPriority, IdlePriority = Scheduler.unstable_IdlePriority, log$1 = Scheduler.log, unstable_setDisableYieldValue = Scheduler.unstable_setDisableYieldValue, rendererID = null, injectedHook = null, hasLoggedError = !1, isDevToolsPresent = "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__, clz32 = Math.clz32 ? Math.clz32 : clz32Fallback, log = Math.log, LN2 = Math.LN2, nextTransitionUpdateLane = 256, nextTransitionDeferredLane = 262144, nextRetryLane = 4194304, DiscreteEventPriority = 2, ContinuousEventPriority = 8, DefaultEventPriority = 32, IdleEventPriority = 268435456, randomKey = Math.random().toString(36).slice(2), internalInstanceKey = "__reactFiber$" + randomKey, internalPropsKey = "__reactProps$" + randomKey, internalContainerInstanceKey = "__reactContainer$" + randomKey, internalEventHandlersKey = "__reactEvents$" + randomKey, internalEventHandlerListenersKey = "__reactListeners$" + randomKey, internalEventHandlesSetKey = "__reactHandles$" + randomKey, internalRootNodeResourcesKey = "__reactResources$" + randomKey, internalHoistableMarker = "__reactMarker$" + randomKey, allNativeEvents = new Set(), registrationNameDependencies = {}, possibleRegistrationNames = {}, hasReadOnlyValue = { - button: !0, - checkbox: !0, - image: !0, - hidden: !0, - radio: !0, - reset: !0, - submit: !0 - }, VALID_ATTRIBUTE_NAME_REGEX = RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"), illegalAttributeNameCache = {}, validatedAttributeNameCache = {}, viewTransitionMutationContext = !1, escapeSelectorAttributeValueInsideDoubleQuotesRegex = /[\n"\\]/g, didWarnValueDefaultValue$1 = !1, didWarnCheckedDefaultChecked = !1, didWarnSelectedSetOnOption = !1, didWarnInvalidChild = !1, didWarnInvalidInnerHTML = !1; - var didWarnValueDefaultValue = !1; - var valuePropNames = [ - "value", - "defaultValue" - ], didWarnValDefaultVal = !1, needsEscaping = /["'&<>\n\t]|^\s|\s$/, specialTags = "address applet area article aside base basefont bgsound blockquote body br button caption center col colgroup dd details dir div dl dt embed fieldset figcaption figure footer form frame frameset h1 h2 h3 h4 h5 h6 head header hgroup hr html iframe img input isindex li link listing main marquee menu menuitem meta nav noembed noframes noscript object ol p param plaintext pre script section select source style summary table tbody td template textarea tfoot th thead title tr track ul wbr xmp".split(" "), inScopeTags = "applet caption html table td th marquee object template foreignObject desc title".split(" "), buttonScopeTags = inScopeTags.concat([ - "button" - ]), impliedEndTags = "dd dt li option optgroup p rp rt".split(" "), emptyAncestorInfoDev = { - current: null, - formTag: null, - aTagInScope: null, - buttonTagInScope: null, - nobrTagInScope: null, - pTagInButtonScope: null, - listItemTagAutoclosing: null, - dlItemTagAutoclosing: null, - containerTagInScope: null, - implicitRootScope: !1 - }, didWarn = {}, shorthandToLonghand = { - animation: "animationDelay animationDirection animationDuration animationFillMode animationIterationCount animationName animationPlayState animationTimingFunction".split(" "), - background: "backgroundAttachment backgroundClip backgroundColor backgroundImage backgroundOrigin backgroundPositionX backgroundPositionY backgroundRepeat backgroundSize".split(" "), - backgroundPosition: [ - "backgroundPositionX", - "backgroundPositionY" - ], - border: "borderBottomColor borderBottomStyle borderBottomWidth borderImageOutset borderImageRepeat borderImageSlice borderImageSource borderImageWidth borderLeftColor borderLeftStyle borderLeftWidth borderRightColor borderRightStyle borderRightWidth borderTopColor borderTopStyle borderTopWidth".split(" "), - borderBlockEnd: [ - "borderBlockEndColor", - "borderBlockEndStyle", - "borderBlockEndWidth" - ], - borderBlockStart: [ - "borderBlockStartColor", - "borderBlockStartStyle", - "borderBlockStartWidth" - ], - borderBottom: [ - "borderBottomColor", - "borderBottomStyle", - "borderBottomWidth" - ], - borderColor: [ - "borderBottomColor", - "borderLeftColor", - "borderRightColor", - "borderTopColor" - ], - borderImage: [ - "borderImageOutset", - "borderImageRepeat", - "borderImageSlice", - "borderImageSource", - "borderImageWidth" - ], - borderInlineEnd: [ - "borderInlineEndColor", - "borderInlineEndStyle", - "borderInlineEndWidth" - ], - borderInlineStart: [ - "borderInlineStartColor", - "borderInlineStartStyle", - "borderInlineStartWidth" - ], - borderLeft: [ - "borderLeftColor", - "borderLeftStyle", - "borderLeftWidth" - ], - borderRadius: [ - "borderBottomLeftRadius", - "borderBottomRightRadius", - "borderTopLeftRadius", - "borderTopRightRadius" - ], - borderRight: [ - "borderRightColor", - "borderRightStyle", - "borderRightWidth" - ], - borderStyle: [ - "borderBottomStyle", - "borderLeftStyle", - "borderRightStyle", - "borderTopStyle" - ], - borderTop: [ - "borderTopColor", - "borderTopStyle", - "borderTopWidth" - ], - borderWidth: [ - "borderBottomWidth", - "borderLeftWidth", - "borderRightWidth", - "borderTopWidth" - ], - columnRule: [ - "columnRuleColor", - "columnRuleStyle", - "columnRuleWidth" - ], - columns: [ - "columnCount", - "columnWidth" - ], - flex: [ - "flexBasis", - "flexGrow", - "flexShrink" - ], - flexFlow: [ - "flexDirection", - "flexWrap" - ], - font: "fontFamily fontFeatureSettings fontKerning fontLanguageOverride fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition fontWeight lineHeight".split(" "), - fontVariant: "fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition".split(" "), - gap: [ - "columnGap", - "rowGap" - ], - grid: "gridAutoColumns gridAutoFlow gridAutoRows gridTemplateAreas gridTemplateColumns gridTemplateRows".split(" "), - gridArea: [ - "gridColumnEnd", - "gridColumnStart", - "gridRowEnd", - "gridRowStart" - ], - gridColumn: [ - "gridColumnEnd", - "gridColumnStart" - ], - gridColumnGap: [ - "columnGap" - ], - gridGap: [ - "columnGap", - "rowGap" - ], - gridRow: [ - "gridRowEnd", - "gridRowStart" - ], - gridRowGap: [ - "rowGap" - ], - gridTemplate: [ - "gridTemplateAreas", - "gridTemplateColumns", - "gridTemplateRows" - ], - listStyle: [ - "listStyleImage", - "listStylePosition", - "listStyleType" - ], - margin: [ - "marginBottom", - "marginLeft", - "marginRight", - "marginTop" - ], - marker: [ - "markerEnd", - "markerMid", - "markerStart" - ], - mask: "maskClip maskComposite maskImage maskMode maskOrigin maskPositionX maskPositionY maskRepeat maskSize".split(" "), - maskPosition: [ - "maskPositionX", - "maskPositionY" - ], - outline: [ - "outlineColor", - "outlineStyle", - "outlineWidth" - ], - overflow: [ - "overflowX", - "overflowY" - ], - padding: [ - "paddingBottom", - "paddingLeft", - "paddingRight", - "paddingTop" - ], - placeContent: [ - "alignContent", - "justifyContent" - ], - placeItems: [ - "alignItems", - "justifyItems" - ], - placeSelf: [ - "alignSelf", - "justifySelf" - ], - textDecoration: [ - "textDecorationColor", - "textDecorationLine", - "textDecorationStyle" - ], - textEmphasis: [ - "textEmphasisColor", - "textEmphasisStyle" - ], - transition: [ - "transitionDelay", - "transitionDuration", - "transitionProperty", - "transitionTimingFunction" - ], - wordWrap: [ - "overflowWrap" - ] - }, uppercasePattern = /([A-Z])/g, msPattern$1 = /^ms-/, badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/, msPattern = /^-ms-/, hyphenPattern = /-(.)/g, badStyleValueWithSemicolonPattern = /;\s*$/, warnedStyleNames = {}, warnedStyleValues = {}, warnedForNaNValue = !1, warnedForInfinityValue = !1, unitlessNumbers = new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" ")), MATH_NAMESPACE = "http://www.w3.org/1998/Math/MathML", SVG_NAMESPACE = "http://www.w3.org/2000/svg", aliases = new Map([ - [ - "acceptCharset", - "accept-charset" - ], - [ - "htmlFor", - "for" - ], - [ - "httpEquiv", - "http-equiv" - ], - [ - "crossOrigin", - "crossorigin" - ], - [ - "accentHeight", - "accent-height" - ], - [ - "alignmentBaseline", - "alignment-baseline" - ], - [ - "arabicForm", - "arabic-form" - ], - [ - "baselineShift", - "baseline-shift" - ], - [ - "capHeight", - "cap-height" - ], - [ - "clipPath", - "clip-path" - ], - [ - "clipRule", - "clip-rule" - ], - [ - "colorInterpolation", - "color-interpolation" - ], - [ - "colorInterpolationFilters", - "color-interpolation-filters" - ], - [ - "colorProfile", - "color-profile" - ], - [ - "colorRendering", - "color-rendering" - ], - [ - "dominantBaseline", - "dominant-baseline" - ], - [ - "enableBackground", - "enable-background" - ], - [ - "fillOpacity", - "fill-opacity" - ], - [ - "fillRule", - "fill-rule" - ], - [ - "floodColor", - "flood-color" - ], - [ - "floodOpacity", - "flood-opacity" - ], - [ - "fontFamily", - "font-family" - ], - [ - "fontSize", - "font-size" - ], - [ - "fontSizeAdjust", - "font-size-adjust" - ], - [ - "fontStretch", - "font-stretch" - ], - [ - "fontStyle", - "font-style" - ], - [ - "fontVariant", - "font-variant" - ], - [ - "fontWeight", - "font-weight" - ], - [ - "glyphName", - "glyph-name" - ], - [ - "glyphOrientationHorizontal", - "glyph-orientation-horizontal" - ], - [ - "glyphOrientationVertical", - "glyph-orientation-vertical" - ], - [ - "horizAdvX", - "horiz-adv-x" - ], - [ - "horizOriginX", - "horiz-origin-x" - ], - [ - "imageRendering", - "image-rendering" - ], - [ - "letterSpacing", - "letter-spacing" - ], - [ - "lightingColor", - "lighting-color" - ], - [ - "markerEnd", - "marker-end" - ], - [ - "markerMid", - "marker-mid" - ], - [ - "markerStart", - "marker-start" - ], - [ - "overlinePosition", - "overline-position" - ], - [ - "overlineThickness", - "overline-thickness" - ], - [ - "paintOrder", - "paint-order" - ], - [ - "panose-1", - "panose-1" - ], - [ - "pointerEvents", - "pointer-events" - ], - [ - "renderingIntent", - "rendering-intent" - ], - [ - "shapeRendering", - "shape-rendering" - ], - [ - "stopColor", - "stop-color" - ], - [ - "stopOpacity", - "stop-opacity" - ], - [ - "strikethroughPosition", - "strikethrough-position" - ], - [ - "strikethroughThickness", - "strikethrough-thickness" - ], - [ - "strokeDasharray", - "stroke-dasharray" - ], - [ - "strokeDashoffset", - "stroke-dashoffset" - ], - [ - "strokeLinecap", - "stroke-linecap" - ], - [ - "strokeLinejoin", - "stroke-linejoin" - ], - [ - "strokeMiterlimit", - "stroke-miterlimit" - ], - [ - "strokeOpacity", - "stroke-opacity" - ], - [ - "strokeWidth", - "stroke-width" - ], - [ - "textAnchor", - "text-anchor" - ], - [ - "textDecoration", - "text-decoration" - ], - [ - "textRendering", - "text-rendering" - ], - [ - "transformOrigin", - "transform-origin" - ], - [ - "underlinePosition", - "underline-position" - ], - [ - "underlineThickness", - "underline-thickness" - ], - [ - "unicodeBidi", - "unicode-bidi" - ], - [ - "unicodeRange", - "unicode-range" - ], - [ - "unitsPerEm", - "units-per-em" - ], - [ - "vAlphabetic", - "v-alphabetic" - ], - [ - "vHanging", - "v-hanging" - ], - [ - "vIdeographic", - "v-ideographic" - ], - [ - "vMathematical", - "v-mathematical" - ], - [ - "vectorEffect", - "vector-effect" - ], - [ - "vertAdvY", - "vert-adv-y" - ], - [ - "vertOriginX", - "vert-origin-x" - ], - [ - "vertOriginY", - "vert-origin-y" - ], - [ - "wordSpacing", - "word-spacing" - ], - [ - "writingMode", - "writing-mode" - ], - [ - "xmlnsXlink", - "xmlns:xlink" - ], - [ - "xHeight", - "x-height" - ] - ]), possibleStandardNames = { - accept: "accept", - acceptcharset: "acceptCharset", - "accept-charset": "acceptCharset", - accesskey: "accessKey", - action: "action", - allowfullscreen: "allowFullScreen", - alt: "alt", - as: "as", - async: "async", - autocapitalize: "autoCapitalize", - autocomplete: "autoComplete", - autocorrect: "autoCorrect", - autofocus: "autoFocus", - autoplay: "autoPlay", - autosave: "autoSave", - capture: "capture", - cellpadding: "cellPadding", - cellspacing: "cellSpacing", - challenge: "challenge", - charset: "charSet", - checked: "checked", - children: "children", - cite: "cite", - class: "className", - classid: "classID", - classname: "className", - cols: "cols", - colspan: "colSpan", - content: "content", - contenteditable: "contentEditable", - contextmenu: "contextMenu", - controls: "controls", - controlslist: "controlsList", - coords: "coords", - crossorigin: "crossOrigin", - dangerouslysetinnerhtml: "dangerouslySetInnerHTML", - data: "data", - datetime: "dateTime", - default: "default", - defaultchecked: "defaultChecked", - defaultvalue: "defaultValue", - defer: "defer", - dir: "dir", - disabled: "disabled", - disablepictureinpicture: "disablePictureInPicture", - disableremoteplayback: "disableRemotePlayback", - download: "download", - draggable: "draggable", - enctype: "encType", - enterkeyhint: "enterKeyHint", - fetchpriority: "fetchPriority", - for: "htmlFor", - form: "form", - formmethod: "formMethod", - formaction: "formAction", - formenctype: "formEncType", - formnovalidate: "formNoValidate", - formtarget: "formTarget", - frameborder: "frameBorder", - headers: "headers", - height: "height", - hidden: "hidden", - high: "high", - href: "href", - hreflang: "hrefLang", - htmlfor: "htmlFor", - httpequiv: "httpEquiv", - "http-equiv": "httpEquiv", - icon: "icon", - id: "id", - imagesizes: "imageSizes", - imagesrcset: "imageSrcSet", - inert: "inert", - innerhtml: "innerHTML", - inputmode: "inputMode", - integrity: "integrity", - is: "is", - itemid: "itemID", - itemprop: "itemProp", - itemref: "itemRef", - itemscope: "itemScope", - itemtype: "itemType", - keyparams: "keyParams", - keytype: "keyType", - kind: "kind", - label: "label", - lang: "lang", - list: "list", - loop: "loop", - low: "low", - manifest: "manifest", - marginwidth: "marginWidth", - marginheight: "marginHeight", - max: "max", - maxlength: "maxLength", - media: "media", - mediagroup: "mediaGroup", - method: "method", - min: "min", - minlength: "minLength", - multiple: "multiple", - muted: "muted", - name: "name", - nomodule: "noModule", - nonce: "nonce", - novalidate: "noValidate", - open: "open", - optimum: "optimum", - pattern: "pattern", - placeholder: "placeholder", - playsinline: "playsInline", - poster: "poster", - preload: "preload", - profile: "profile", - radiogroup: "radioGroup", - readonly: "readOnly", - referrerpolicy: "referrerPolicy", - rel: "rel", - required: "required", - reversed: "reversed", - role: "role", - rows: "rows", - rowspan: "rowSpan", - sandbox: "sandbox", - scope: "scope", - scoped: "scoped", - scrolling: "scrolling", - seamless: "seamless", - selected: "selected", - shape: "shape", - size: "size", - sizes: "sizes", - span: "span", - spellcheck: "spellCheck", - src: "src", - srcdoc: "srcDoc", - srclang: "srcLang", - srcset: "srcSet", - start: "start", - step: "step", - style: "style", - summary: "summary", - tabindex: "tabIndex", - target: "target", - title: "title", - type: "type", - usemap: "useMap", - value: "value", - width: "width", - wmode: "wmode", - wrap: "wrap", - about: "about", - accentheight: "accentHeight", - "accent-height": "accentHeight", - accumulate: "accumulate", - additive: "additive", - alignmentbaseline: "alignmentBaseline", - "alignment-baseline": "alignmentBaseline", - allowreorder: "allowReorder", - alphabetic: "alphabetic", - amplitude: "amplitude", - arabicform: "arabicForm", - "arabic-form": "arabicForm", - ascent: "ascent", - attributename: "attributeName", - attributetype: "attributeType", - autoreverse: "autoReverse", - azimuth: "azimuth", - basefrequency: "baseFrequency", - baselineshift: "baselineShift", - "baseline-shift": "baselineShift", - baseprofile: "baseProfile", - bbox: "bbox", - begin: "begin", - bias: "bias", - by: "by", - calcmode: "calcMode", - capheight: "capHeight", - "cap-height": "capHeight", - clip: "clip", - clippath: "clipPath", - "clip-path": "clipPath", - clippathunits: "clipPathUnits", - cliprule: "clipRule", - "clip-rule": "clipRule", - color: "color", - colorinterpolation: "colorInterpolation", - "color-interpolation": "colorInterpolation", - colorinterpolationfilters: "colorInterpolationFilters", - "color-interpolation-filters": "colorInterpolationFilters", - colorprofile: "colorProfile", - "color-profile": "colorProfile", - colorrendering: "colorRendering", - "color-rendering": "colorRendering", - contentscripttype: "contentScriptType", - contentstyletype: "contentStyleType", - cursor: "cursor", - cx: "cx", - cy: "cy", - d: "d", - datatype: "datatype", - decelerate: "decelerate", - descent: "descent", - diffuseconstant: "diffuseConstant", - direction: "direction", - display: "display", - divisor: "divisor", - dominantbaseline: "dominantBaseline", - "dominant-baseline": "dominantBaseline", - dur: "dur", - dx: "dx", - dy: "dy", - edgemode: "edgeMode", - elevation: "elevation", - enablebackground: "enableBackground", - "enable-background": "enableBackground", - end: "end", - exponent: "exponent", - externalresourcesrequired: "externalResourcesRequired", - fill: "fill", - fillopacity: "fillOpacity", - "fill-opacity": "fillOpacity", - fillrule: "fillRule", - "fill-rule": "fillRule", - filter: "filter", - filterres: "filterRes", - filterunits: "filterUnits", - floodopacity: "floodOpacity", - "flood-opacity": "floodOpacity", - floodcolor: "floodColor", - "flood-color": "floodColor", - focusable: "focusable", - fontfamily: "fontFamily", - "font-family": "fontFamily", - fontsize: "fontSize", - "font-size": "fontSize", - fontsizeadjust: "fontSizeAdjust", - "font-size-adjust": "fontSizeAdjust", - fontstretch: "fontStretch", - "font-stretch": "fontStretch", - fontstyle: "fontStyle", - "font-style": "fontStyle", - fontvariant: "fontVariant", - "font-variant": "fontVariant", - fontweight: "fontWeight", - "font-weight": "fontWeight", - format: "format", - from: "from", - fx: "fx", - fy: "fy", - g1: "g1", - g2: "g2", - glyphname: "glyphName", - "glyph-name": "glyphName", - glyphorientationhorizontal: "glyphOrientationHorizontal", - "glyph-orientation-horizontal": "glyphOrientationHorizontal", - glyphorientationvertical: "glyphOrientationVertical", - "glyph-orientation-vertical": "glyphOrientationVertical", - glyphref: "glyphRef", - gradienttransform: "gradientTransform", - gradientunits: "gradientUnits", - hanging: "hanging", - horizadvx: "horizAdvX", - "horiz-adv-x": "horizAdvX", - horizoriginx: "horizOriginX", - "horiz-origin-x": "horizOriginX", - ideographic: "ideographic", - imagerendering: "imageRendering", - "image-rendering": "imageRendering", - in2: "in2", - in: "in", - inlist: "inlist", - intercept: "intercept", - k1: "k1", - k2: "k2", - k3: "k3", - k4: "k4", - k: "k", - kernelmatrix: "kernelMatrix", - kernelunitlength: "kernelUnitLength", - kerning: "kerning", - keypoints: "keyPoints", - keysplines: "keySplines", - keytimes: "keyTimes", - lengthadjust: "lengthAdjust", - letterspacing: "letterSpacing", - "letter-spacing": "letterSpacing", - lightingcolor: "lightingColor", - "lighting-color": "lightingColor", - limitingconeangle: "limitingConeAngle", - local: "local", - markerend: "markerEnd", - "marker-end": "markerEnd", - markerheight: "markerHeight", - markermid: "markerMid", - "marker-mid": "markerMid", - markerstart: "markerStart", - "marker-start": "markerStart", - markerunits: "markerUnits", - markerwidth: "markerWidth", - mask: "mask", - maskcontentunits: "maskContentUnits", - maskunits: "maskUnits", - mathematical: "mathematical", - mode: "mode", - numoctaves: "numOctaves", - offset: "offset", - opacity: "opacity", - operator: "operator", - order: "order", - orient: "orient", - orientation: "orientation", - origin: "origin", - overflow: "overflow", - overlineposition: "overlinePosition", - "overline-position": "overlinePosition", - overlinethickness: "overlineThickness", - "overline-thickness": "overlineThickness", - paintorder: "paintOrder", - "paint-order": "paintOrder", - panose1: "panose1", - "panose-1": "panose1", - pathlength: "pathLength", - patterncontentunits: "patternContentUnits", - patterntransform: "patternTransform", - patternunits: "patternUnits", - pointerevents: "pointerEvents", - "pointer-events": "pointerEvents", - points: "points", - pointsatx: "pointsAtX", - pointsaty: "pointsAtY", - pointsatz: "pointsAtZ", - popover: "popover", - popovertarget: "popoverTarget", - popovertargetaction: "popoverTargetAction", - prefix: "prefix", - preservealpha: "preserveAlpha", - preserveaspectratio: "preserveAspectRatio", - primitiveunits: "primitiveUnits", - property: "property", - r: "r", - radius: "radius", - refx: "refX", - refy: "refY", - renderingintent: "renderingIntent", - "rendering-intent": "renderingIntent", - repeatcount: "repeatCount", - repeatdur: "repeatDur", - requiredextensions: "requiredExtensions", - requiredfeatures: "requiredFeatures", - resource: "resource", - restart: "restart", - result: "result", - results: "results", - rotate: "rotate", - rx: "rx", - ry: "ry", - scale: "scale", - security: "security", - seed: "seed", - shaperendering: "shapeRendering", - "shape-rendering": "shapeRendering", - slope: "slope", - spacing: "spacing", - specularconstant: "specularConstant", - specularexponent: "specularExponent", - speed: "speed", - spreadmethod: "spreadMethod", - startoffset: "startOffset", - stddeviation: "stdDeviation", - stemh: "stemh", - stemv: "stemv", - stitchtiles: "stitchTiles", - stopcolor: "stopColor", - "stop-color": "stopColor", - stopopacity: "stopOpacity", - "stop-opacity": "stopOpacity", - strikethroughposition: "strikethroughPosition", - "strikethrough-position": "strikethroughPosition", - strikethroughthickness: "strikethroughThickness", - "strikethrough-thickness": "strikethroughThickness", - string: "string", - stroke: "stroke", - strokedasharray: "strokeDasharray", - "stroke-dasharray": "strokeDasharray", - strokedashoffset: "strokeDashoffset", - "stroke-dashoffset": "strokeDashoffset", - strokelinecap: "strokeLinecap", - "stroke-linecap": "strokeLinecap", - strokelinejoin: "strokeLinejoin", - "stroke-linejoin": "strokeLinejoin", - strokemiterlimit: "strokeMiterlimit", - "stroke-miterlimit": "strokeMiterlimit", - strokewidth: "strokeWidth", - "stroke-width": "strokeWidth", - strokeopacity: "strokeOpacity", - "stroke-opacity": "strokeOpacity", - suppresscontenteditablewarning: "suppressContentEditableWarning", - suppresshydrationwarning: "suppressHydrationWarning", - surfacescale: "surfaceScale", - systemlanguage: "systemLanguage", - tablevalues: "tableValues", - targetx: "targetX", - targety: "targetY", - textanchor: "textAnchor", - "text-anchor": "textAnchor", - textdecoration: "textDecoration", - "text-decoration": "textDecoration", - textlength: "textLength", - textrendering: "textRendering", - "text-rendering": "textRendering", - to: "to", - transform: "transform", - transformorigin: "transformOrigin", - "transform-origin": "transformOrigin", - typeof: "typeof", - u1: "u1", - u2: "u2", - underlineposition: "underlinePosition", - "underline-position": "underlinePosition", - underlinethickness: "underlineThickness", - "underline-thickness": "underlineThickness", - unicode: "unicode", - unicodebidi: "unicodeBidi", - "unicode-bidi": "unicodeBidi", - unicoderange: "unicodeRange", - "unicode-range": "unicodeRange", - unitsperem: "unitsPerEm", - "units-per-em": "unitsPerEm", - unselectable: "unselectable", - valphabetic: "vAlphabetic", - "v-alphabetic": "vAlphabetic", - values: "values", - vectoreffect: "vectorEffect", - "vector-effect": "vectorEffect", - version: "version", - vertadvy: "vertAdvY", - "vert-adv-y": "vertAdvY", - vertoriginx: "vertOriginX", - "vert-origin-x": "vertOriginX", - vertoriginy: "vertOriginY", - "vert-origin-y": "vertOriginY", - vhanging: "vHanging", - "v-hanging": "vHanging", - videographic: "vIdeographic", - "v-ideographic": "vIdeographic", - viewbox: "viewBox", - viewtarget: "viewTarget", - visibility: "visibility", - vmathematical: "vMathematical", - "v-mathematical": "vMathematical", - vocab: "vocab", - widths: "widths", - wordspacing: "wordSpacing", - "word-spacing": "wordSpacing", - writingmode: "writingMode", - "writing-mode": "writingMode", - x1: "x1", - x2: "x2", - x: "x", - xchannelselector: "xChannelSelector", - xheight: "xHeight", - "x-height": "xHeight", - xlinkactuate: "xlinkActuate", - "xlink:actuate": "xlinkActuate", - xlinkarcrole: "xlinkArcrole", - "xlink:arcrole": "xlinkArcrole", - xlinkhref: "xlinkHref", - "xlink:href": "xlinkHref", - xlinkrole: "xlinkRole", - "xlink:role": "xlinkRole", - xlinkshow: "xlinkShow", - "xlink:show": "xlinkShow", - xlinktitle: "xlinkTitle", - "xlink:title": "xlinkTitle", - xlinktype: "xlinkType", - "xlink:type": "xlinkType", - xmlbase: "xmlBase", - "xml:base": "xmlBase", - xmllang: "xmlLang", - "xml:lang": "xmlLang", - xmlns: "xmlns", - "xml:space": "xmlSpace", - xmlnsxlink: "xmlnsXlink", - "xmlns:xlink": "xmlnsXlink", - xmlspace: "xmlSpace", - y1: "y1", - y2: "y2", - y: "y", - ychannelselector: "yChannelSelector", - z: "z", - zoomandpan: "zoomAndPan" - }, ariaProperties = { - "aria-current": 0, - "aria-description": 0, - "aria-details": 0, - "aria-disabled": 0, - "aria-hidden": 0, - "aria-invalid": 0, - "aria-keyshortcuts": 0, - "aria-label": 0, - "aria-roledescription": 0, - "aria-autocomplete": 0, - "aria-checked": 0, - "aria-expanded": 0, - "aria-haspopup": 0, - "aria-level": 0, - "aria-modal": 0, - "aria-multiline": 0, - "aria-multiselectable": 0, - "aria-orientation": 0, - "aria-placeholder": 0, - "aria-pressed": 0, - "aria-readonly": 0, - "aria-required": 0, - "aria-selected": 0, - "aria-sort": 0, - "aria-valuemax": 0, - "aria-valuemin": 0, - "aria-valuenow": 0, - "aria-valuetext": 0, - "aria-atomic": 0, - "aria-busy": 0, - "aria-live": 0, - "aria-relevant": 0, - "aria-dropeffect": 0, - "aria-grabbed": 0, - "aria-activedescendant": 0, - "aria-colcount": 0, - "aria-colindex": 0, - "aria-colspan": 0, - "aria-controls": 0, - "aria-describedby": 0, - "aria-errormessage": 0, - "aria-flowto": 0, - "aria-labelledby": 0, - "aria-owns": 0, - "aria-posinset": 0, - "aria-rowcount": 0, - "aria-rowindex": 0, - "aria-rowspan": 0, - "aria-setsize": 0, - "aria-braillelabel": 0, - "aria-brailleroledescription": 0, - "aria-colindextext": 0, - "aria-rowindextext": 0 - }, warnedProperties$1 = {}, rARIA$1 = RegExp("^(aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"), rARIACamel$1 = RegExp("^(aria)[A-Z][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"), didWarnValueNull = !1, warnedProperties = {}, EVENT_NAME_REGEX = /^on./, INVALID_EVENT_NAME_REGEX = /^on[^A-Z]/, rARIA = RegExp("^(aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"), rARIACamel = RegExp("^(aria)[A-Z][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"), isJavaScriptProtocol = /^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i, currentReplayingEvent = null, restoreTarget = null, restoreQueue = null, isInsideEventHandler = !1, canUseDOM = !("undefined" === typeof window || "undefined" === typeof window.document || "undefined" === typeof window.document.createElement), passiveBrowserEventsSupported = !1; - if (canUseDOM) try { - var options$jscomp$0 = {}; - Object.defineProperty(options$jscomp$0, "passive", { - get: function() { - passiveBrowserEventsSupported = !0; - } - }); - window.addEventListener("test", options$jscomp$0, options$jscomp$0); - window.removeEventListener("test", options$jscomp$0, options$jscomp$0); - } catch (e) { - passiveBrowserEventsSupported = !1; - } - var root = null, startText = null, fallbackText = null, EventInterface = { - eventPhase: 0, - bubbles: 0, - cancelable: 0, - timeStamp: function(event) { - return event.timeStamp || Date.now(); - }, - defaultPrevented: 0, - isTrusted: 0 - }, SyntheticEvent = createSyntheticEvent(EventInterface), UIEventInterface = assign({}, EventInterface, { - view: 0, - detail: 0 - }), SyntheticUIEvent = createSyntheticEvent(UIEventInterface), lastMovementX, lastMovementY, lastMouseEvent, MouseEventInterface = assign({}, UIEventInterface, { - screenX: 0, - screenY: 0, - clientX: 0, - clientY: 0, - pageX: 0, - pageY: 0, - ctrlKey: 0, - shiftKey: 0, - altKey: 0, - metaKey: 0, - getModifierState: getEventModifierState, - button: 0, - buttons: 0, - relatedTarget: function(event) { - return void 0 === event.relatedTarget ? event.fromElement === event.srcElement ? event.toElement : event.fromElement : event.relatedTarget; - }, - movementX: function(event) { - if ("movementX" in event) return event.movementX; - event !== lastMouseEvent && (lastMouseEvent && "mousemove" === event.type ? (lastMovementX = event.screenX - lastMouseEvent.screenX, lastMovementY = event.screenY - lastMouseEvent.screenY) : lastMovementY = lastMovementX = 0, lastMouseEvent = event); - return lastMovementX; - }, - movementY: function(event) { - return "movementY" in event ? event.movementY : lastMovementY; - } - }), SyntheticMouseEvent = createSyntheticEvent(MouseEventInterface), DragEventInterface = assign({}, MouseEventInterface, { - dataTransfer: 0 - }), SyntheticDragEvent = createSyntheticEvent(DragEventInterface), FocusEventInterface = assign({}, UIEventInterface, { - relatedTarget: 0 - }), SyntheticFocusEvent = createSyntheticEvent(FocusEventInterface), AnimationEventInterface = assign({}, EventInterface, { - animationName: 0, - elapsedTime: 0, - pseudoElement: 0 - }), SyntheticAnimationEvent = createSyntheticEvent(AnimationEventInterface), ClipboardEventInterface = assign({}, EventInterface, { - clipboardData: function(event) { - return "clipboardData" in event ? event.clipboardData : window.clipboardData; - } - }), SyntheticClipboardEvent = createSyntheticEvent(ClipboardEventInterface), CompositionEventInterface = assign({}, EventInterface, { - data: 0 - }), SyntheticCompositionEvent = createSyntheticEvent(CompositionEventInterface), SyntheticInputEvent = SyntheticCompositionEvent, normalizeKey = { - Esc: "Escape", - Spacebar: " ", - Left: "ArrowLeft", - Up: "ArrowUp", - Right: "ArrowRight", - Down: "ArrowDown", - Del: "Delete", - Win: "OS", - Menu: "ContextMenu", - Apps: "ContextMenu", - Scroll: "ScrollLock", - MozPrintableKey: "Unidentified" - }, translateToKey = { - 8: "Backspace", - 9: "Tab", - 12: "Clear", - 13: "Enter", - 16: "Shift", - 17: "Control", - 18: "Alt", - 19: "Pause", - 20: "CapsLock", - 27: "Escape", - 32: " ", - 33: "PageUp", - 34: "PageDown", - 35: "End", - 36: "Home", - 37: "ArrowLeft", - 38: "ArrowUp", - 39: "ArrowRight", - 40: "ArrowDown", - 45: "Insert", - 46: "Delete", - 112: "F1", - 113: "F2", - 114: "F3", - 115: "F4", - 116: "F5", - 117: "F6", - 118: "F7", - 119: "F8", - 120: "F9", - 121: "F10", - 122: "F11", - 123: "F12", - 144: "NumLock", - 145: "ScrollLock", - 224: "Meta" - }, modifierKeyToProp = { - Alt: "altKey", - Control: "ctrlKey", - Meta: "metaKey", - Shift: "shiftKey" - }, KeyboardEventInterface = assign({}, UIEventInterface, { - key: function(nativeEvent) { - if (nativeEvent.key) { - var key = normalizeKey[nativeEvent.key] || nativeEvent.key; - if ("Unidentified" !== key) return key; - } - return "keypress" === nativeEvent.type ? (nativeEvent = getEventCharCode(nativeEvent), 13 === nativeEvent ? "Enter" : String.fromCharCode(nativeEvent)) : "keydown" === nativeEvent.type || "keyup" === nativeEvent.type ? translateToKey[nativeEvent.keyCode] || "Unidentified" : ""; - }, - code: 0, - location: 0, - ctrlKey: 0, - shiftKey: 0, - altKey: 0, - metaKey: 0, - repeat: 0, - locale: 0, - getModifierState: getEventModifierState, - charCode: function(event) { - return "keypress" === event.type ? getEventCharCode(event) : 0; - }, - keyCode: function(event) { - return "keydown" === event.type || "keyup" === event.type ? event.keyCode : 0; - }, - which: function(event) { - return "keypress" === event.type ? getEventCharCode(event) : "keydown" === event.type || "keyup" === event.type ? event.keyCode : 0; - } - }), SyntheticKeyboardEvent = createSyntheticEvent(KeyboardEventInterface), PointerEventInterface = assign({}, MouseEventInterface, { - pointerId: 0, - width: 0, - height: 0, - pressure: 0, - tangentialPressure: 0, - tiltX: 0, - tiltY: 0, - twist: 0, - pointerType: 0, - isPrimary: 0 - }), SyntheticPointerEvent = createSyntheticEvent(PointerEventInterface), TouchEventInterface = assign({}, UIEventInterface, { - touches: 0, - targetTouches: 0, - changedTouches: 0, - altKey: 0, - metaKey: 0, - ctrlKey: 0, - shiftKey: 0, - getModifierState: getEventModifierState - }), SyntheticTouchEvent = createSyntheticEvent(TouchEventInterface), TransitionEventInterface = assign({}, EventInterface, { - propertyName: 0, - elapsedTime: 0, - pseudoElement: 0 - }), SyntheticTransitionEvent = createSyntheticEvent(TransitionEventInterface), WheelEventInterface = assign({}, MouseEventInterface, { - deltaX: function(event) { - return "deltaX" in event ? event.deltaX : "wheelDeltaX" in event ? -event.wheelDeltaX : 0; - }, - deltaY: function(event) { - return "deltaY" in event ? event.deltaY : "wheelDeltaY" in event ? -event.wheelDeltaY : "wheelDelta" in event ? -event.wheelDelta : 0; - }, - deltaZ: 0, - deltaMode: 0 - }), SyntheticWheelEvent = createSyntheticEvent(WheelEventInterface), ToggleEventInterface = assign({}, EventInterface, { - newState: 0, - oldState: 0 - }), SyntheticToggleEvent = createSyntheticEvent(ToggleEventInterface), END_KEYCODES = [ - 9, - 13, - 27, - 32 - ], START_KEYCODE = 229, canUseCompositionEvent = canUseDOM && "CompositionEvent" in window, documentMode = null; - canUseDOM && "documentMode" in document && (documentMode = document.documentMode); - var canUseTextInputEvent = canUseDOM && "TextEvent" in window && !documentMode, useFallbackCompositionData = canUseDOM && (!canUseCompositionEvent || documentMode && 8 < documentMode && 11 >= documentMode), SPACEBAR_CODE = 32, SPACEBAR_CHAR = String.fromCharCode(SPACEBAR_CODE), hasSpaceKeypress = !1, isComposing = !1, supportedInputTypes = { - color: !0, - date: !0, - datetime: !0, - "datetime-local": !0, - email: !0, - month: !0, - number: !0, - password: !0, - range: !0, - search: !0, - tel: !0, - text: !0, - time: !0, - url: !0, - week: !0 - }, activeElement$1 = null, activeElementInst$1 = null, isInputEventSupported = !1; - canUseDOM && (isInputEventSupported = isEventSupported("input") && (!document.documentMode || 9 < document.documentMode)); - var objectIs = "function" === typeof Object.is ? Object.is : is, skipSelectionChangeEvent = canUseDOM && "documentMode" in document && 11 >= document.documentMode, activeElement = null, activeElementInst = null, lastSelection = null, mouseDown = !1, vendorPrefixes = { - animationend: makePrefixMap("Animation", "AnimationEnd"), - animationiteration: makePrefixMap("Animation", "AnimationIteration"), - animationstart: makePrefixMap("Animation", "AnimationStart"), - transitionrun: makePrefixMap("Transition", "TransitionRun"), - transitionstart: makePrefixMap("Transition", "TransitionStart"), - transitioncancel: makePrefixMap("Transition", "TransitionCancel"), - transitionend: makePrefixMap("Transition", "TransitionEnd") - }, prefixedEventNames = {}, style = {}; - canUseDOM && (style = document.createElement("div").style, "AnimationEvent" in window || (delete vendorPrefixes.animationend.animation, delete vendorPrefixes.animationiteration.animation, delete vendorPrefixes.animationstart.animation), "TransitionEvent" in window || delete vendorPrefixes.transitionend.transition); - var ANIMATION_END = getVendorPrefixedEventName("animationend"), ANIMATION_ITERATION = getVendorPrefixedEventName("animationiteration"), ANIMATION_START = getVendorPrefixedEventName("animationstart"), TRANSITION_RUN = getVendorPrefixedEventName("transitionrun"), TRANSITION_START = getVendorPrefixedEventName("transitionstart"), TRANSITION_CANCEL = getVendorPrefixedEventName("transitioncancel"), TRANSITION_END = getVendorPrefixedEventName("transitionend"), topLevelEventsToReactNames = new Map(), simpleEventPluginEvents = "abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" "); - simpleEventPluginEvents.push("scrollEnd"); - var globalClientIdCounter$1 = 0, lastResetTime = 0; - if ("object" === typeof performance && "function" === typeof performance.now) { - var localPerformance = performance; - var getCurrentTime = function() { - return localPerformance.now(); - }; - } else { - var localDate = Date; - getCurrentTime = function() { - return localDate.now(); - }; - } - var reportGlobalError = "function" === typeof reportError ? reportError : function(error) { - if ("object" === typeof window && "function" === typeof window.ErrorEvent) { - var event = new window.ErrorEvent("error", { - bubbles: !0, - cancelable: !0, - message: "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error), - error: error - }); - if (!window.dispatchEvent(event)) return; - } else if ("object" === typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"] && "function" === typeof __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"].emit) { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"].emit("uncaughtException", error); - return; - } - console.error(error); - }, OMITTED_PROP_ERROR = "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.", EMPTY_ARRAY = 0, COMPLEX_ARRAY = 1, PRIMITIVE_ARRAY = 2, ENTRIES_ARRAY = 3, OBJECT_WIDTH_LIMIT = 100, REMOVED = "\u2013\u00a0", ADDED = "+\u00a0", UNCHANGED = "\u2007\u00a0", supportsUserTiming = "undefined" !== typeof console && "function" === typeof console.timeStamp && "undefined" !== typeof performance && "function" === typeof performance.measure, COMPONENTS_TRACK = "Components \u269b", LANES_TRACK_GROUP = "Scheduler \u269b", currentTrack = "Blocking", alreadyWarnedForDeepEquality = !1, reusableComponentDevToolDetails = { - color: "primary", - properties: null, - tooltipText: "", - track: COMPONENTS_TRACK - }, reusableComponentOptions = { - start: -0, - end: -0, - detail: { - devtools: reusableComponentDevToolDetails - } - }, reusableChangedPropsEntry = [ - "Changed Props", - "" - ], DEEP_EQUALITY_WARNING = "This component received deeply equal props. It might benefit from useMemo or the React Compiler in its owner.", reusableDeeplyEqualPropsEntry = [ - "Changed Props", - DEEP_EQUALITY_WARNING - ], OffscreenVisible = 1, OffscreenPassiveEffectsConnected = 2, concurrentQueues = [], concurrentQueuesIndex = 0, concurrentlyUpdatedLanes = 0, emptyContextObject = {}; - Object.freeze(emptyContextObject); - var resolveFamily = null, failedBoundaries = null, NoMode = 0, ConcurrentMode = 1, ProfileMode = 2, StrictLegacyMode = 8, StrictEffectsMode = 16, SuspenseyImagesMode = 32; - var hasBadMapPolyfill = !1; - try { - var nonExtensibleObject = Object.preventExtensions({}); - new Map([ - [ - nonExtensibleObject, - null - ] - ]); - new Set([ - nonExtensibleObject - ]); - } catch (e$3) { - hasBadMapPolyfill = !0; - } - var CapturedStacks = new WeakMap(), forkStack = [], forkStackIndex = 0, treeForkProvider = null, treeForkCount = 0, idStack = [], idStackIndex = 0, treeContextProvider = null, treeContextId = 1, treeContextOverflow = "", hydrationParentFiber = null, nextHydratableInstance = null, isHydrating = !1, didSuspendOrErrorDEV = !1, hydrationDiffRootDEV = null, hydrationErrors = null, rootOrSingletonContext = !1, HydrationMismatchException = Error("Hydration Mismatch Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."), valueCursor = createCursor(null); - var rendererCursorDEV = createCursor(null); - var rendererSigil = {}; - var currentlyRenderingFiber$1 = null, lastContextDependency = null, isDisallowedContextReadInDEV = !1, AbortControllerLocal = "undefined" !== typeof AbortController ? AbortController : function() { - var listeners = [], signal = this.signal = { - aborted: !1, - addEventListener: function(type, listener) { - listeners.push(listener); - } - }; - this.abort = function() { - signal.aborted = !0; - listeners.forEach(function(listener) { - return listener(); - }); - }; - }, scheduleCallback$2 = Scheduler.unstable_scheduleCallback, NormalPriority = Scheduler.unstable_NormalPriority, CacheContext = { - $$typeof: REACT_CONTEXT_TYPE, - Consumer: null, - Provider: null, - _currentValue: null, - _currentValue2: null, - _threadCount: 0, - _currentRenderer: null, - _currentRenderer2: null - }, entangledTransitionTypes = null, now = Scheduler.unstable_now, createTask = console.createTask ? console.createTask : function() { - return null; - }, SPAWNED_UPDATE = 1, PINGED_UPDATE = 2, renderStartTime = -0, commitStartTime = -0, commitEndTime = -0, commitErrors = null, profilerStartTime = -1.1, profilerEffectDuration = -0, componentEffectDuration = -0, componentEffectStartTime = -1.1, componentEffectEndTime = -1.1, componentEffectErrors = null, componentEffectSpawnedUpdate = !1, blockingClampTime = -0, blockingUpdateTime = -1.1, blockingUpdateTask = null, blockingUpdateType = 0, blockingUpdateMethodName = null, blockingUpdateComponentName = null, blockingEventTime = -1.1, blockingEventType = null, blockingEventRepeatTime = -1.1, blockingSuspendedTime = -1.1, transitionClampTime = -0, transitionStartTime = -1.1, transitionUpdateTime = -1.1, transitionUpdateType = 0, transitionUpdateTask = null, transitionUpdateMethodName = null, transitionUpdateComponentName = null, transitionEventTime = -1.1, transitionEventType = null, transitionEventRepeatTime = -1.1, transitionSuspendedTime = -1.1, retryClampTime = -0, idleClampTime = -0, animatingLanes = 0, animatingTask = null, yieldReason = 0, yieldStartTime = -1.1, currentUpdateIsNested = !1, nestedUpdateScheduled = !1, currentEntangledListeners = null, currentEntangledPendingCount = 0, currentEntangledLane = 0, currentEntangledActionThenable = null, prevOnStartTransitionFinish = ReactSharedInternals.S; - ReactSharedInternals.S = function(transition, returnValue) { - globalMostRecentTransitionTime = now$1(); - if ("object" === typeof returnValue && null !== returnValue && "function" === typeof returnValue.then) { - if (0 > transitionStartTime && 0 > transitionUpdateTime) { - transitionStartTime = now(); - var newEventTime = resolveEventTimeStamp(), newEventType = resolveEventType(); - if (newEventTime !== transitionEventRepeatTime || newEventType !== transitionEventType) transitionEventRepeatTime = -1.1; - transitionEventTime = newEventTime; - transitionEventType = newEventType; - } - entangleAsyncAction(transition, returnValue); - } - if (null !== entangledTransitionTypes) for(newEventTime = firstScheduledRoot; null !== newEventTime;)queueTransitionTypes(newEventTime, entangledTransitionTypes), newEventTime = newEventTime.next; - newEventTime = transition.types; - if (null !== newEventTime) { - for(newEventType = firstScheduledRoot; null !== newEventType;)queueTransitionTypes(newEventType, newEventTime), newEventType = newEventType.next; - if (0 !== currentEntangledLane) { - newEventType = entangledTransitionTypes; - null === newEventType && (newEventType = entangledTransitionTypes = []); - for(var i = 0; i < newEventTime.length; i++){ - var transitionType = newEventTime[i]; - -1 === newEventType.indexOf(transitionType) && newEventType.push(transitionType); - } - } - } - null !== prevOnStartTransitionFinish && prevOnStartTransitionFinish(transition, returnValue); - }; - var resumedCache = createCursor(null), ReactStrictModeWarnings = { - recordUnsafeLifecycleWarnings: function() {}, - flushPendingUnsafeLifecycleWarnings: function() {}, - recordLegacyContextWarning: function() {}, - flushLegacyContextWarning: function() {}, - discardPendingWarnings: function() {} - }, pendingComponentWillMountWarnings = [], pendingUNSAFE_ComponentWillMountWarnings = [], pendingComponentWillReceivePropsWarnings = [], pendingUNSAFE_ComponentWillReceivePropsWarnings = [], pendingComponentWillUpdateWarnings = [], pendingUNSAFE_ComponentWillUpdateWarnings = [], didWarnAboutUnsafeLifecycles = new Set(); - ReactStrictModeWarnings.recordUnsafeLifecycleWarnings = function(fiber, instance) { - didWarnAboutUnsafeLifecycles.has(fiber.type) || ("function" === typeof instance.componentWillMount && !0 !== instance.componentWillMount.__suppressDeprecationWarning && pendingComponentWillMountWarnings.push(fiber), fiber.mode & StrictLegacyMode && "function" === typeof instance.UNSAFE_componentWillMount && pendingUNSAFE_ComponentWillMountWarnings.push(fiber), "function" === typeof instance.componentWillReceiveProps && !0 !== instance.componentWillReceiveProps.__suppressDeprecationWarning && pendingComponentWillReceivePropsWarnings.push(fiber), fiber.mode & StrictLegacyMode && "function" === typeof instance.UNSAFE_componentWillReceiveProps && pendingUNSAFE_ComponentWillReceivePropsWarnings.push(fiber), "function" === typeof instance.componentWillUpdate && !0 !== instance.componentWillUpdate.__suppressDeprecationWarning && pendingComponentWillUpdateWarnings.push(fiber), fiber.mode & StrictLegacyMode && "function" === typeof instance.UNSAFE_componentWillUpdate && pendingUNSAFE_ComponentWillUpdateWarnings.push(fiber)); - }; - ReactStrictModeWarnings.flushPendingUnsafeLifecycleWarnings = function() { - var componentWillMountUniqueNames = new Set(); - 0 < pendingComponentWillMountWarnings.length && (pendingComponentWillMountWarnings.forEach(function(fiber) { - componentWillMountUniqueNames.add(getComponentNameFromFiber(fiber) || "Component"); - didWarnAboutUnsafeLifecycles.add(fiber.type); - }), pendingComponentWillMountWarnings = []); - var UNSAFE_componentWillMountUniqueNames = new Set(); - 0 < pendingUNSAFE_ComponentWillMountWarnings.length && (pendingUNSAFE_ComponentWillMountWarnings.forEach(function(fiber) { - UNSAFE_componentWillMountUniqueNames.add(getComponentNameFromFiber(fiber) || "Component"); - didWarnAboutUnsafeLifecycles.add(fiber.type); - }), pendingUNSAFE_ComponentWillMountWarnings = []); - var componentWillReceivePropsUniqueNames = new Set(); - 0 < pendingComponentWillReceivePropsWarnings.length && (pendingComponentWillReceivePropsWarnings.forEach(function(fiber) { - componentWillReceivePropsUniqueNames.add(getComponentNameFromFiber(fiber) || "Component"); - didWarnAboutUnsafeLifecycles.add(fiber.type); - }), pendingComponentWillReceivePropsWarnings = []); - var UNSAFE_componentWillReceivePropsUniqueNames = new Set(); - 0 < pendingUNSAFE_ComponentWillReceivePropsWarnings.length && (pendingUNSAFE_ComponentWillReceivePropsWarnings.forEach(function(fiber) { - UNSAFE_componentWillReceivePropsUniqueNames.add(getComponentNameFromFiber(fiber) || "Component"); - didWarnAboutUnsafeLifecycles.add(fiber.type); - }), pendingUNSAFE_ComponentWillReceivePropsWarnings = []); - var componentWillUpdateUniqueNames = new Set(); - 0 < pendingComponentWillUpdateWarnings.length && (pendingComponentWillUpdateWarnings.forEach(function(fiber) { - componentWillUpdateUniqueNames.add(getComponentNameFromFiber(fiber) || "Component"); - didWarnAboutUnsafeLifecycles.add(fiber.type); - }), pendingComponentWillUpdateWarnings = []); - var UNSAFE_componentWillUpdateUniqueNames = new Set(); - 0 < pendingUNSAFE_ComponentWillUpdateWarnings.length && (pendingUNSAFE_ComponentWillUpdateWarnings.forEach(function(fiber) { - UNSAFE_componentWillUpdateUniqueNames.add(getComponentNameFromFiber(fiber) || "Component"); - didWarnAboutUnsafeLifecycles.add(fiber.type); - }), pendingUNSAFE_ComponentWillUpdateWarnings = []); - if (0 < UNSAFE_componentWillMountUniqueNames.size) { - var sortedNames = setToSortedString(UNSAFE_componentWillMountUniqueNames); - console.error("Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.\n\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\n\nPlease update the following components: %s", sortedNames); - } - 0 < UNSAFE_componentWillReceivePropsUniqueNames.size && (sortedNames = setToSortedString(UNSAFE_componentWillReceivePropsUniqueNames), console.error("Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state\n\nPlease update the following components: %s", sortedNames)); - 0 < UNSAFE_componentWillUpdateUniqueNames.size && (sortedNames = setToSortedString(UNSAFE_componentWillUpdateUniqueNames), console.error("Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n\nPlease update the following components: %s", sortedNames)); - 0 < componentWillMountUniqueNames.size && (sortedNames = setToSortedString(componentWillMountUniqueNames), console.warn("componentWillMount has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.\n\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\n* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s", sortedNames)); - 0 < componentWillReceivePropsUniqueNames.size && (sortedNames = setToSortedString(componentWillReceivePropsUniqueNames), console.warn("componentWillReceiveProps has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state\n* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s", sortedNames)); - 0 < componentWillUpdateUniqueNames.size && (sortedNames = setToSortedString(componentWillUpdateUniqueNames), console.warn("componentWillUpdate has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s", sortedNames)); - }; - var pendingLegacyContextWarning = new Map(), didWarnAboutLegacyContext = new Set(); - ReactStrictModeWarnings.recordLegacyContextWarning = function(fiber, instance) { - var strictRoot = null; - for(var node = fiber; null !== node;)node.mode & StrictLegacyMode && (strictRoot = node), node = node.return; - null === strictRoot ? console.error("Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue.") : !didWarnAboutLegacyContext.has(fiber.type) && (node = pendingLegacyContextWarning.get(strictRoot), null != fiber.type.contextTypes || null != fiber.type.childContextTypes || null !== instance && "function" === typeof instance.getChildContext) && (void 0 === node && (node = [], pendingLegacyContextWarning.set(strictRoot, node)), node.push(fiber)); - }; - ReactStrictModeWarnings.flushLegacyContextWarning = function() { - pendingLegacyContextWarning.forEach(function(fiberArray) { - if (0 !== fiberArray.length) { - var firstFiber = fiberArray[0], uniqueNames = new Set(); - fiberArray.forEach(function(fiber) { - uniqueNames.add(getComponentNameFromFiber(fiber) || "Component"); - didWarnAboutLegacyContext.add(fiber.type); - }); - var sortedNames = setToSortedString(uniqueNames); - runWithFiberInDEV(firstFiber, function() { - console.error("Legacy context API has been detected within a strict-mode tree.\n\nThe old API will be supported in all 16.x releases, but applications using it should migrate to the new version.\n\nPlease update the following components: %s\n\nLearn more about this warning here: https://react.dev/link/legacy-context", sortedNames); - }); - } - }); - }; - ReactStrictModeWarnings.discardPendingWarnings = function() { - pendingComponentWillMountWarnings = []; - pendingUNSAFE_ComponentWillMountWarnings = []; - pendingComponentWillReceivePropsWarnings = []; - pendingUNSAFE_ComponentWillReceivePropsWarnings = []; - pendingComponentWillUpdateWarnings = []; - pendingUNSAFE_ComponentWillUpdateWarnings = []; - pendingLegacyContextWarning = new Map(); - }; - var callComponent = { - react_stack_bottom_frame: function(Component, props, secondArg) { - var wasRendering = isRendering; - isRendering = !0; - try { - return Component(props, secondArg); - } finally{ - isRendering = wasRendering; - } - } - }, callComponentInDEV = callComponent.react_stack_bottom_frame.bind(callComponent), callRender = { - react_stack_bottom_frame: function(instance) { - var wasRendering = isRendering; - isRendering = !0; - try { - return instance.render(); - } finally{ - isRendering = wasRendering; - } - } - }, callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender), callComponentDidMount = { - react_stack_bottom_frame: function(finishedWork, instance) { - try { - instance.componentDidMount(); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - }, callComponentDidMountInDEV = callComponentDidMount.react_stack_bottom_frame.bind(callComponentDidMount), callComponentDidUpdate = { - react_stack_bottom_frame: function(finishedWork, instance, prevProps, prevState, snapshot) { - try { - instance.componentDidUpdate(prevProps, prevState, snapshot); - } catch (error) { - captureCommitPhaseError(finishedWork, finishedWork.return, error); - } - } - }, callComponentDidUpdateInDEV = callComponentDidUpdate.react_stack_bottom_frame.bind(callComponentDidUpdate), callComponentDidCatch = { - react_stack_bottom_frame: function(instance, errorInfo) { - var stack = errorInfo.stack; - instance.componentDidCatch(errorInfo.value, { - componentStack: null !== stack ? stack : "" - }); - } - }, callComponentDidCatchInDEV = callComponentDidCatch.react_stack_bottom_frame.bind(callComponentDidCatch), callComponentWillUnmount = { - react_stack_bottom_frame: function(current, nearestMountedAncestor, instance) { - try { - instance.componentWillUnmount(); - } catch (error) { - captureCommitPhaseError(current, nearestMountedAncestor, error); - } - } - }, callComponentWillUnmountInDEV = callComponentWillUnmount.react_stack_bottom_frame.bind(callComponentWillUnmount), callCreate = { - react_stack_bottom_frame: function(effect) { - var create = effect.create; - effect = effect.inst; - create = create(); - return effect.destroy = create; - } - }, callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate), callDestroy = { - react_stack_bottom_frame: function(current, nearestMountedAncestor, destroy) { - try { - destroy(); - } catch (error) { - captureCommitPhaseError(current, nearestMountedAncestor, error); - } - } - }, callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy), callLazyInit = { - react_stack_bottom_frame: function(lazy) { - var init = lazy._init; - return init(lazy._payload); - } - }, callLazyInitInDEV = callLazyInit.react_stack_bottom_frame.bind(callLazyInit), SuspenseException = Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."), SuspenseyCommitException = Error("Suspense Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."), SuspenseActionException = Error("Suspense Exception: This is not a real error! It's an implementation detail of `useActionState` to interrupt the current render. You must either rethrow it immediately, or move the `useActionState` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary."), noopSuspenseyCommitThenable = { - then: function() { - console.error('Internal React error: A listener was unexpectedly attached to a "noop" thenable. This is a bug in React. Please file an issue.'); - } - }, suspendedThenable = null, needsToResetSuspendedThenableDEV = !1, thenableState$1 = null, thenableIndexCounter$1 = 0, currentDebugInfo = null, didWarnAboutMaps; - var didWarnAboutGenerators = didWarnAboutMaps = !1; - var ownerHasKeyUseWarning = {}; - var ownerHasFunctionTypeWarning = {}; - var ownerHasSymbolTypeWarning = {}; - warnForMissingKey = function(returnFiber, workInProgress, child) { - if (null !== child && "object" === typeof child && child._store && (!child._store.validated && null == child.key || 2 === child._store.validated)) { - if ("object" !== typeof child._store) throw Error("React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue."); - child._store.validated = 1; - var componentName = getComponentNameFromFiber(returnFiber), componentKey = componentName || "null"; - if (!ownerHasKeyUseWarning[componentKey]) { - ownerHasKeyUseWarning[componentKey] = !0; - child = child._owner; - returnFiber = returnFiber._debugOwner; - var currentComponentErrorInfo = ""; - returnFiber && "number" === typeof returnFiber.tag && (componentKey = getComponentNameFromFiber(returnFiber)) && (currentComponentErrorInfo = "\n\nCheck the render method of `" + componentKey + "`."); - currentComponentErrorInfo || componentName && (currentComponentErrorInfo = "\n\nCheck the top-level render call using <" + componentName + ">."); - var childOwnerAppendix = ""; - null != child && returnFiber !== child && (componentName = null, "number" === typeof child.tag ? componentName = getComponentNameFromFiber(child) : "string" === typeof child.name && (componentName = child.name), componentName && (childOwnerAppendix = " It was passed a child from " + componentName + ".")); - runWithFiberInDEV(workInProgress, function() { - console.error('Each child in a list should have a unique "key" prop.%s%s See https://react.dev/link/warning-keys for more information.', currentComponentErrorInfo, childOwnerAppendix); - }); - } - } - }; - var reconcileChildFibers = createChildReconciler(!0), mountChildFibers = createChildReconciler(!1), UpdateState = 0, ReplaceState = 1, ForceUpdate = 2, CaptureUpdate = 3, hasForceUpdate = !1; - var didWarnUpdateInsideUpdate = !1; - var currentlyProcessingQueue = null; - var didReadFromEntangledAsyncAction = !1, currentTreeHiddenStackCursor = createCursor(null), prevEntangledRenderLanesCursor = createCursor(0), suspenseHandlerStackCursor = createCursor(null), shellBoundary = null, SubtreeSuspenseContextMask = 1, ForceSuspenseFallback = 2, suspenseStackCursor = createCursor(0), NoFlags = 0, HasEffect = 1, Insertion = 2, Layout = 4, Passive = 8, didWarnUncachedGetSnapshot; - var didWarnAboutMismatchedHooksForComponent = new Set(); - var didWarnAboutUseWrappedInTryCatch = new Set(); - var didWarnAboutAsyncClientComponent = new Set(); - var didWarnAboutUseFormState = new Set(); - var renderLanes = 0, currentlyRenderingFiber = null, currentHook = null, workInProgressHook = null, didScheduleRenderPhaseUpdate = !1, didScheduleRenderPhaseUpdateDuringThisPass = !1, shouldDoubleInvokeUserFnsInHooksDEV = !1, localIdCounter = 0, thenableIndexCounter = 0, thenableState = null, globalClientIdCounter = 0, RE_RENDER_LIMIT = 25, currentHookNameInDev = null, hookTypesDev = null, hookTypesUpdateIndexDev = -1, ignorePreviousDependencies = !1, ContextOnlyDispatcher = { - readContext: readContext, - use: use, - useCallback: throwInvalidHookError, - useContext: throwInvalidHookError, - useEffect: throwInvalidHookError, - useImperativeHandle: throwInvalidHookError, - useLayoutEffect: throwInvalidHookError, - useInsertionEffect: throwInvalidHookError, - useMemo: throwInvalidHookError, - useReducer: throwInvalidHookError, - useRef: throwInvalidHookError, - useState: throwInvalidHookError, - useDebugValue: throwInvalidHookError, - useDeferredValue: throwInvalidHookError, - useTransition: throwInvalidHookError, - useSyncExternalStore: throwInvalidHookError, - useId: throwInvalidHookError, - useHostTransitionStatus: throwInvalidHookError, - useFormState: throwInvalidHookError, - useActionState: throwInvalidHookError, - useOptimistic: throwInvalidHookError, - useMemoCache: throwInvalidHookError, - useCacheRefresh: throwInvalidHookError - }; - ContextOnlyDispatcher.useEffectEvent = throwInvalidHookError; - var HooksDispatcherOnMountInDEV = null, HooksDispatcherOnMountWithHookTypesInDEV = null, HooksDispatcherOnUpdateInDEV = null, HooksDispatcherOnRerenderInDEV = null, InvalidNestedHooksDispatcherOnMountInDEV = null, InvalidNestedHooksDispatcherOnUpdateInDEV = null, InvalidNestedHooksDispatcherOnRerenderInDEV = null; - HooksDispatcherOnMountInDEV = { - readContext: function(context) { - return readContext(context); - }, - use: use, - useCallback: function(callback, deps) { - currentHookNameInDev = "useCallback"; - mountHookTypesDev(); - checkDepsAreArrayDev(deps); - return mountCallback(callback, deps); - }, - useContext: function(context) { - currentHookNameInDev = "useContext"; - mountHookTypesDev(); - return readContext(context); - }, - useEffect: function(create, deps) { - currentHookNameInDev = "useEffect"; - mountHookTypesDev(); - checkDepsAreArrayDev(deps); - return mountEffect(create, deps); - }, - useImperativeHandle: function(ref, create, deps) { - currentHookNameInDev = "useImperativeHandle"; - mountHookTypesDev(); - checkDepsAreArrayDev(deps); - return mountImperativeHandle(ref, create, deps); - }, - useInsertionEffect: function(create, deps) { - currentHookNameInDev = "useInsertionEffect"; - mountHookTypesDev(); - checkDepsAreArrayDev(deps); - mountEffectImpl(4, Insertion, create, deps); - }, - useLayoutEffect: function(create, deps) { - currentHookNameInDev = "useLayoutEffect"; - mountHookTypesDev(); - checkDepsAreArrayDev(deps); - return mountLayoutEffect(create, deps); - }, - useMemo: function(create, deps) { - currentHookNameInDev = "useMemo"; - mountHookTypesDev(); - checkDepsAreArrayDev(deps); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountMemo(create, deps); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useReducer: function(reducer, initialArg, init) { - currentHookNameInDev = "useReducer"; - mountHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountReducer(reducer, initialArg, init); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useRef: function(initialValue) { - currentHookNameInDev = "useRef"; - mountHookTypesDev(); - return mountRef(initialValue); - }, - useState: function(initialState) { - currentHookNameInDev = "useState"; - mountHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountState(initialState); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useDebugValue: function() { - currentHookNameInDev = "useDebugValue"; - mountHookTypesDev(); - }, - useDeferredValue: function(value, initialValue) { - currentHookNameInDev = "useDeferredValue"; - mountHookTypesDev(); - return mountDeferredValue(value, initialValue); - }, - useTransition: function() { - currentHookNameInDev = "useTransition"; - mountHookTypesDev(); - return mountTransition(); - }, - useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { - currentHookNameInDev = "useSyncExternalStore"; - mountHookTypesDev(); - return mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); - }, - useId: function() { - currentHookNameInDev = "useId"; - mountHookTypesDev(); - return mountId(); - }, - useFormState: function(action, initialState) { - currentHookNameInDev = "useFormState"; - mountHookTypesDev(); - warnOnUseFormStateInDev(); - return mountActionState(action, initialState); - }, - useActionState: function(action, initialState) { - currentHookNameInDev = "useActionState"; - mountHookTypesDev(); - return mountActionState(action, initialState); - }, - useOptimistic: function(passthrough) { - currentHookNameInDev = "useOptimistic"; - mountHookTypesDev(); - return mountOptimistic(passthrough); - }, - useHostTransitionStatus: useHostTransitionStatus, - useMemoCache: useMemoCache, - useCacheRefresh: function() { - currentHookNameInDev = "useCacheRefresh"; - mountHookTypesDev(); - return mountRefresh(); - }, - useEffectEvent: function(callback) { - currentHookNameInDev = "useEffectEvent"; - mountHookTypesDev(); - return mountEvent(callback); - } - }; - HooksDispatcherOnMountWithHookTypesInDEV = { - readContext: function(context) { - return readContext(context); - }, - use: use, - useCallback: function(callback, deps) { - currentHookNameInDev = "useCallback"; - updateHookTypesDev(); - return mountCallback(callback, deps); - }, - useContext: function(context) { - currentHookNameInDev = "useContext"; - updateHookTypesDev(); - return readContext(context); - }, - useEffect: function(create, deps) { - currentHookNameInDev = "useEffect"; - updateHookTypesDev(); - return mountEffect(create, deps); - }, - useImperativeHandle: function(ref, create, deps) { - currentHookNameInDev = "useImperativeHandle"; - updateHookTypesDev(); - return mountImperativeHandle(ref, create, deps); - }, - useInsertionEffect: function(create, deps) { - currentHookNameInDev = "useInsertionEffect"; - updateHookTypesDev(); - mountEffectImpl(4, Insertion, create, deps); - }, - useLayoutEffect: function(create, deps) { - currentHookNameInDev = "useLayoutEffect"; - updateHookTypesDev(); - return mountLayoutEffect(create, deps); - }, - useMemo: function(create, deps) { - currentHookNameInDev = "useMemo"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountMemo(create, deps); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useReducer: function(reducer, initialArg, init) { - currentHookNameInDev = "useReducer"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountReducer(reducer, initialArg, init); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useRef: function(initialValue) { - currentHookNameInDev = "useRef"; - updateHookTypesDev(); - return mountRef(initialValue); - }, - useState: function(initialState) { - currentHookNameInDev = "useState"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountState(initialState); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useDebugValue: function() { - currentHookNameInDev = "useDebugValue"; - updateHookTypesDev(); - }, - useDeferredValue: function(value, initialValue) { - currentHookNameInDev = "useDeferredValue"; - updateHookTypesDev(); - return mountDeferredValue(value, initialValue); - }, - useTransition: function() { - currentHookNameInDev = "useTransition"; - updateHookTypesDev(); - return mountTransition(); - }, - useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { - currentHookNameInDev = "useSyncExternalStore"; - updateHookTypesDev(); - return mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); - }, - useId: function() { - currentHookNameInDev = "useId"; - updateHookTypesDev(); - return mountId(); - }, - useActionState: function(action, initialState) { - currentHookNameInDev = "useActionState"; - updateHookTypesDev(); - return mountActionState(action, initialState); - }, - useFormState: function(action, initialState) { - currentHookNameInDev = "useFormState"; - updateHookTypesDev(); - warnOnUseFormStateInDev(); - return mountActionState(action, initialState); - }, - useOptimistic: function(passthrough) { - currentHookNameInDev = "useOptimistic"; - updateHookTypesDev(); - return mountOptimistic(passthrough); - }, - useHostTransitionStatus: useHostTransitionStatus, - useMemoCache: useMemoCache, - useCacheRefresh: function() { - currentHookNameInDev = "useCacheRefresh"; - updateHookTypesDev(); - return mountRefresh(); - }, - useEffectEvent: function(callback) { - currentHookNameInDev = "useEffectEvent"; - updateHookTypesDev(); - return mountEvent(callback); - } - }; - HooksDispatcherOnUpdateInDEV = { - readContext: function(context) { - return readContext(context); - }, - use: use, - useCallback: function(callback, deps) { - currentHookNameInDev = "useCallback"; - updateHookTypesDev(); - return updateCallback(callback, deps); - }, - useContext: function(context) { - currentHookNameInDev = "useContext"; - updateHookTypesDev(); - return readContext(context); - }, - useEffect: function(create, deps) { - currentHookNameInDev = "useEffect"; - updateHookTypesDev(); - updateEffectImpl(2048, Passive, create, deps); - }, - useImperativeHandle: function(ref, create, deps) { - currentHookNameInDev = "useImperativeHandle"; - updateHookTypesDev(); - return updateImperativeHandle(ref, create, deps); - }, - useInsertionEffect: function(create, deps) { - currentHookNameInDev = "useInsertionEffect"; - updateHookTypesDev(); - return updateEffectImpl(4, Insertion, create, deps); - }, - useLayoutEffect: function(create, deps) { - currentHookNameInDev = "useLayoutEffect"; - updateHookTypesDev(); - return updateEffectImpl(4, Layout, create, deps); - }, - useMemo: function(create, deps) { - currentHookNameInDev = "useMemo"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return updateMemo(create, deps); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useReducer: function(reducer, initialArg, init) { - currentHookNameInDev = "useReducer"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return updateReducer(reducer, initialArg, init); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useRef: function() { - currentHookNameInDev = "useRef"; - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useState: function() { - currentHookNameInDev = "useState"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return updateReducer(basicStateReducer); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useDebugValue: function() { - currentHookNameInDev = "useDebugValue"; - updateHookTypesDev(); - }, - useDeferredValue: function(value, initialValue) { - currentHookNameInDev = "useDeferredValue"; - updateHookTypesDev(); - return updateDeferredValue(value, initialValue); - }, - useTransition: function() { - currentHookNameInDev = "useTransition"; - updateHookTypesDev(); - return updateTransition(); - }, - useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { - currentHookNameInDev = "useSyncExternalStore"; - updateHookTypesDev(); - return updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); - }, - useId: function() { - currentHookNameInDev = "useId"; - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useFormState: function(action) { - currentHookNameInDev = "useFormState"; - updateHookTypesDev(); - warnOnUseFormStateInDev(); - return updateActionState(action); - }, - useActionState: function(action) { - currentHookNameInDev = "useActionState"; - updateHookTypesDev(); - return updateActionState(action); - }, - useOptimistic: function(passthrough, reducer) { - currentHookNameInDev = "useOptimistic"; - updateHookTypesDev(); - return updateOptimistic(passthrough, reducer); - }, - useHostTransitionStatus: useHostTransitionStatus, - useMemoCache: useMemoCache, - useCacheRefresh: function() { - currentHookNameInDev = "useCacheRefresh"; - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useEffectEvent: function(callback) { - currentHookNameInDev = "useEffectEvent"; - updateHookTypesDev(); - return updateEvent(callback); - } - }; - HooksDispatcherOnRerenderInDEV = { - readContext: function(context) { - return readContext(context); - }, - use: use, - useCallback: function(callback, deps) { - currentHookNameInDev = "useCallback"; - updateHookTypesDev(); - return updateCallback(callback, deps); - }, - useContext: function(context) { - currentHookNameInDev = "useContext"; - updateHookTypesDev(); - return readContext(context); - }, - useEffect: function(create, deps) { - currentHookNameInDev = "useEffect"; - updateHookTypesDev(); - updateEffectImpl(2048, Passive, create, deps); - }, - useImperativeHandle: function(ref, create, deps) { - currentHookNameInDev = "useImperativeHandle"; - updateHookTypesDev(); - return updateImperativeHandle(ref, create, deps); - }, - useInsertionEffect: function(create, deps) { - currentHookNameInDev = "useInsertionEffect"; - updateHookTypesDev(); - return updateEffectImpl(4, Insertion, create, deps); - }, - useLayoutEffect: function(create, deps) { - currentHookNameInDev = "useLayoutEffect"; - updateHookTypesDev(); - return updateEffectImpl(4, Layout, create, deps); - }, - useMemo: function(create, deps) { - currentHookNameInDev = "useMemo"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnRerenderInDEV; - try { - return updateMemo(create, deps); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useReducer: function(reducer, initialArg, init) { - currentHookNameInDev = "useReducer"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnRerenderInDEV; - try { - return rerenderReducer(reducer, initialArg, init); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useRef: function() { - currentHookNameInDev = "useRef"; - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useState: function() { - currentHookNameInDev = "useState"; - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnRerenderInDEV; - try { - return rerenderReducer(basicStateReducer); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useDebugValue: function() { - currentHookNameInDev = "useDebugValue"; - updateHookTypesDev(); - }, - useDeferredValue: function(value, initialValue) { - currentHookNameInDev = "useDeferredValue"; - updateHookTypesDev(); - return rerenderDeferredValue(value, initialValue); - }, - useTransition: function() { - currentHookNameInDev = "useTransition"; - updateHookTypesDev(); - return rerenderTransition(); - }, - useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { - currentHookNameInDev = "useSyncExternalStore"; - updateHookTypesDev(); - return updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); - }, - useId: function() { - currentHookNameInDev = "useId"; - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useFormState: function(action) { - currentHookNameInDev = "useFormState"; - updateHookTypesDev(); - warnOnUseFormStateInDev(); - return rerenderActionState(action); - }, - useActionState: function(action) { - currentHookNameInDev = "useActionState"; - updateHookTypesDev(); - return rerenderActionState(action); - }, - useOptimistic: function(passthrough, reducer) { - currentHookNameInDev = "useOptimistic"; - updateHookTypesDev(); - return rerenderOptimistic(passthrough, reducer); - }, - useHostTransitionStatus: useHostTransitionStatus, - useMemoCache: useMemoCache, - useCacheRefresh: function() { - currentHookNameInDev = "useCacheRefresh"; - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useEffectEvent: function(callback) { - currentHookNameInDev = "useEffectEvent"; - updateHookTypesDev(); - return updateEvent(callback); - } - }; - InvalidNestedHooksDispatcherOnMountInDEV = { - readContext: function(context) { - warnInvalidContextAccess(); - return readContext(context); - }, - use: function(usable) { - warnInvalidHookAccess(); - return use(usable); - }, - useCallback: function(callback, deps) { - currentHookNameInDev = "useCallback"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountCallback(callback, deps); - }, - useContext: function(context) { - currentHookNameInDev = "useContext"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return readContext(context); - }, - useEffect: function(create, deps) { - currentHookNameInDev = "useEffect"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountEffect(create, deps); - }, - useImperativeHandle: function(ref, create, deps) { - currentHookNameInDev = "useImperativeHandle"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountImperativeHandle(ref, create, deps); - }, - useInsertionEffect: function(create, deps) { - currentHookNameInDev = "useInsertionEffect"; - warnInvalidHookAccess(); - mountHookTypesDev(); - mountEffectImpl(4, Insertion, create, deps); - }, - useLayoutEffect: function(create, deps) { - currentHookNameInDev = "useLayoutEffect"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountLayoutEffect(create, deps); - }, - useMemo: function(create, deps) { - currentHookNameInDev = "useMemo"; - warnInvalidHookAccess(); - mountHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountMemo(create, deps); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useReducer: function(reducer, initialArg, init) { - currentHookNameInDev = "useReducer"; - warnInvalidHookAccess(); - mountHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountReducer(reducer, initialArg, init); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useRef: function(initialValue) { - currentHookNameInDev = "useRef"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountRef(initialValue); - }, - useState: function(initialState) { - currentHookNameInDev = "useState"; - warnInvalidHookAccess(); - mountHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV; - try { - return mountState(initialState); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useDebugValue: function() { - currentHookNameInDev = "useDebugValue"; - warnInvalidHookAccess(); - mountHookTypesDev(); - }, - useDeferredValue: function(value, initialValue) { - currentHookNameInDev = "useDeferredValue"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountDeferredValue(value, initialValue); - }, - useTransition: function() { - currentHookNameInDev = "useTransition"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountTransition(); - }, - useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { - currentHookNameInDev = "useSyncExternalStore"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); - }, - useId: function() { - currentHookNameInDev = "useId"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountId(); - }, - useFormState: function(action, initialState) { - currentHookNameInDev = "useFormState"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountActionState(action, initialState); - }, - useActionState: function(action, initialState) { - currentHookNameInDev = "useActionState"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountActionState(action, initialState); - }, - useOptimistic: function(passthrough) { - currentHookNameInDev = "useOptimistic"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountOptimistic(passthrough); - }, - useMemoCache: function(size) { - warnInvalidHookAccess(); - return useMemoCache(size); - }, - useHostTransitionStatus: useHostTransitionStatus, - useCacheRefresh: function() { - currentHookNameInDev = "useCacheRefresh"; - mountHookTypesDev(); - return mountRefresh(); - }, - useEffectEvent: function(callback) { - currentHookNameInDev = "useEffectEvent"; - warnInvalidHookAccess(); - mountHookTypesDev(); - return mountEvent(callback); - } - }; - InvalidNestedHooksDispatcherOnUpdateInDEV = { - readContext: function(context) { - warnInvalidContextAccess(); - return readContext(context); - }, - use: function(usable) { - warnInvalidHookAccess(); - return use(usable); - }, - useCallback: function(callback, deps) { - currentHookNameInDev = "useCallback"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateCallback(callback, deps); - }, - useContext: function(context) { - currentHookNameInDev = "useContext"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return readContext(context); - }, - useEffect: function(create, deps) { - currentHookNameInDev = "useEffect"; - warnInvalidHookAccess(); - updateHookTypesDev(); - updateEffectImpl(2048, Passive, create, deps); - }, - useImperativeHandle: function(ref, create, deps) { - currentHookNameInDev = "useImperativeHandle"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateImperativeHandle(ref, create, deps); - }, - useInsertionEffect: function(create, deps) { - currentHookNameInDev = "useInsertionEffect"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateEffectImpl(4, Insertion, create, deps); - }, - useLayoutEffect: function(create, deps) { - currentHookNameInDev = "useLayoutEffect"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateEffectImpl(4, Layout, create, deps); - }, - useMemo: function(create, deps) { - currentHookNameInDev = "useMemo"; - warnInvalidHookAccess(); - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return updateMemo(create, deps); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useReducer: function(reducer, initialArg, init) { - currentHookNameInDev = "useReducer"; - warnInvalidHookAccess(); - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return updateReducer(reducer, initialArg, init); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useRef: function() { - currentHookNameInDev = "useRef"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useState: function() { - currentHookNameInDev = "useState"; - warnInvalidHookAccess(); - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return updateReducer(basicStateReducer); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useDebugValue: function() { - currentHookNameInDev = "useDebugValue"; - warnInvalidHookAccess(); - updateHookTypesDev(); - }, - useDeferredValue: function(value, initialValue) { - currentHookNameInDev = "useDeferredValue"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateDeferredValue(value, initialValue); - }, - useTransition: function() { - currentHookNameInDev = "useTransition"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateTransition(); - }, - useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { - currentHookNameInDev = "useSyncExternalStore"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); - }, - useId: function() { - currentHookNameInDev = "useId"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useFormState: function(action) { - currentHookNameInDev = "useFormState"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateActionState(action); - }, - useActionState: function(action) { - currentHookNameInDev = "useActionState"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateActionState(action); - }, - useOptimistic: function(passthrough, reducer) { - currentHookNameInDev = "useOptimistic"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateOptimistic(passthrough, reducer); - }, - useMemoCache: function(size) { - warnInvalidHookAccess(); - return useMemoCache(size); - }, - useHostTransitionStatus: useHostTransitionStatus, - useCacheRefresh: function() { - currentHookNameInDev = "useCacheRefresh"; - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useEffectEvent: function(callback) { - currentHookNameInDev = "useEffectEvent"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateEvent(callback); - } - }; - InvalidNestedHooksDispatcherOnRerenderInDEV = { - readContext: function(context) { - warnInvalidContextAccess(); - return readContext(context); - }, - use: function(usable) { - warnInvalidHookAccess(); - return use(usable); - }, - useCallback: function(callback, deps) { - currentHookNameInDev = "useCallback"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateCallback(callback, deps); - }, - useContext: function(context) { - currentHookNameInDev = "useContext"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return readContext(context); - }, - useEffect: function(create, deps) { - currentHookNameInDev = "useEffect"; - warnInvalidHookAccess(); - updateHookTypesDev(); - updateEffectImpl(2048, Passive, create, deps); - }, - useImperativeHandle: function(ref, create, deps) { - currentHookNameInDev = "useImperativeHandle"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateImperativeHandle(ref, create, deps); - }, - useInsertionEffect: function(create, deps) { - currentHookNameInDev = "useInsertionEffect"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateEffectImpl(4, Insertion, create, deps); - }, - useLayoutEffect: function(create, deps) { - currentHookNameInDev = "useLayoutEffect"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateEffectImpl(4, Layout, create, deps); - }, - useMemo: function(create, deps) { - currentHookNameInDev = "useMemo"; - warnInvalidHookAccess(); - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return updateMemo(create, deps); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useReducer: function(reducer, initialArg, init) { - currentHookNameInDev = "useReducer"; - warnInvalidHookAccess(); - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return rerenderReducer(reducer, initialArg, init); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useRef: function() { - currentHookNameInDev = "useRef"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useState: function() { - currentHookNameInDev = "useState"; - warnInvalidHookAccess(); - updateHookTypesDev(); - var prevDispatcher = ReactSharedInternals.H; - ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV; - try { - return rerenderReducer(basicStateReducer); - } finally{ - ReactSharedInternals.H = prevDispatcher; - } - }, - useDebugValue: function() { - currentHookNameInDev = "useDebugValue"; - warnInvalidHookAccess(); - updateHookTypesDev(); - }, - useDeferredValue: function(value, initialValue) { - currentHookNameInDev = "useDeferredValue"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return rerenderDeferredValue(value, initialValue); - }, - useTransition: function() { - currentHookNameInDev = "useTransition"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return rerenderTransition(); - }, - useSyncExternalStore: function(subscribe, getSnapshot, getServerSnapshot) { - currentHookNameInDev = "useSyncExternalStore"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot); - }, - useId: function() { - currentHookNameInDev = "useId"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useFormState: function(action) { - currentHookNameInDev = "useFormState"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return rerenderActionState(action); - }, - useActionState: function(action) { - currentHookNameInDev = "useActionState"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return rerenderActionState(action); - }, - useOptimistic: function(passthrough, reducer) { - currentHookNameInDev = "useOptimistic"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return rerenderOptimistic(passthrough, reducer); - }, - useMemoCache: function(size) { - warnInvalidHookAccess(); - return useMemoCache(size); - }, - useHostTransitionStatus: useHostTransitionStatus, - useCacheRefresh: function() { - currentHookNameInDev = "useCacheRefresh"; - updateHookTypesDev(); - return updateWorkInProgressHook().memoizedState; - }, - useEffectEvent: function(callback) { - currentHookNameInDev = "useEffectEvent"; - warnInvalidHookAccess(); - updateHookTypesDev(); - return updateEvent(callback); - } - }; - var fakeInternalInstance = {}; - var didWarnAboutStateAssignmentForComponent = new Set(); - var didWarnAboutUninitializedState = new Set(); - var didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate = new Set(); - var didWarnAboutLegacyLifecyclesAndDerivedState = new Set(); - var didWarnAboutDirectlyAssigningPropsToState = new Set(); - var didWarnAboutUndefinedDerivedState = new Set(); - var didWarnAboutContextTypes$1 = new Set(); - var didWarnAboutChildContextTypes = new Set(); - var didWarnAboutInvalidateContextType = new Set(); - var didWarnOnInvalidCallback = new Set(); - Object.freeze(fakeInternalInstance); - var classComponentUpdater = { - enqueueSetState: function(inst, payload, callback) { - inst = inst._reactInternals; - var lane = requestUpdateLane(inst), update = createUpdate(lane); - update.payload = payload; - void 0 !== callback && null !== callback && (warnOnInvalidCallback(callback), update.callback = callback); - payload = enqueueUpdate(inst, update, lane); - null !== payload && (startUpdateTimerByLane(lane, "this.setState()", inst), scheduleUpdateOnFiber(payload, inst, lane), entangleTransitions(payload, inst, lane)); - }, - enqueueReplaceState: function(inst, payload, callback) { - inst = inst._reactInternals; - var lane = requestUpdateLane(inst), update = createUpdate(lane); - update.tag = ReplaceState; - update.payload = payload; - void 0 !== callback && null !== callback && (warnOnInvalidCallback(callback), update.callback = callback); - payload = enqueueUpdate(inst, update, lane); - null !== payload && (startUpdateTimerByLane(lane, "this.replaceState()", inst), scheduleUpdateOnFiber(payload, inst, lane), entangleTransitions(payload, inst, lane)); - }, - enqueueForceUpdate: function(inst, callback) { - inst = inst._reactInternals; - var lane = requestUpdateLane(inst), update = createUpdate(lane); - update.tag = ForceUpdate; - void 0 !== callback && null !== callback && (warnOnInvalidCallback(callback), update.callback = callback); - callback = enqueueUpdate(inst, update, lane); - null !== callback && (startUpdateTimerByLane(lane, "this.forceUpdate()", inst), scheduleUpdateOnFiber(callback, inst, lane), entangleTransitions(callback, inst, lane)); - } - }, componentName = null, errorBoundaryName = null, SelectiveHydrationException = Error("This is not a real error. It's an implementation detail of React's selective hydration feature. If this leaks into userspace, it's a bug in React. Please file an issue."), didReceiveUpdate = !1; - var didWarnAboutBadClass = {}; - var didWarnAboutContextTypeOnFunctionComponent = {}; - var didWarnAboutContextTypes = {}; - var didWarnAboutGetDerivedStateOnFunctionComponent = {}; - var didWarnAboutReassigningProps = !1; - var didWarnAboutRevealOrder = {}; - var didWarnAboutTailOptions = {}; - var didWarnAboutClassNameOnViewTransition = {}; - var SUSPENDED_MARKER = { - dehydrated: null, - treeContext: null, - retryLane: 0, - hydrationErrors: null - }, hasWarnedAboutUsingNoValuePropOnContextProvider = !1, didWarnAboutUndefinedSnapshotBeforeUpdate = null; - didWarnAboutUndefinedSnapshotBeforeUpdate = new Set(); - var shouldStartViewTransition = !1, appearingViewTransitions = null, viewTransitionCancelableChildren = null, viewTransitionHostInstanceIdx = 0, mountedNamedViewTransitions = new Map(), didWarnAboutName = {}, offscreenSubtreeIsHidden = !1, offscreenSubtreeWasHidden = !1, offscreenDirectParentIsHidden = !1, needsFormReset = !1, PossiblyWeakSet = "function" === typeof WeakSet ? WeakSet : Set, nextEffect = null, inProgressLanes = null, inProgressRoot = null, viewTransitionContextChanged = !1, inUpdateViewTransition = !1, rootViewTransitionAffected = !1, rootViewTransitionNameCanceled = !1, hostParent = null, hostParentIsContainer = !1, currentHoistableRoot = null, inHydratedSubtree = !1, suspenseyCommitFlag = 8192, DefaultAsyncDispatcher = { - getCacheForType: function(resourceType) { - var cache = readContext(CacheContext), cacheForType = cache.data.get(resourceType); - void 0 === cacheForType && (cacheForType = resourceType(), cache.data.set(resourceType, cacheForType)); - return cacheForType; - }, - cacheSignal: function() { - return readContext(CacheContext).controller.signal; - }, - getOwner: function() { - return current; - } - }; - if ("function" === typeof Symbol && Symbol.for) { - var symbolFor = Symbol.for; - symbolFor("selector.component"); - symbolFor("selector.has_pseudo_class"); - symbolFor("selector.role"); - symbolFor("selector.test_id"); - symbolFor("selector.text"); - } - var commitHooks = [], PossiblyWeakMap = "function" === typeof WeakMap ? WeakMap : Map, NoContext = 0, RenderContext = 2, CommitContext = 4, RootInProgress = 0, RootFatalErrored = 1, RootErrored = 2, RootSuspended = 3, RootSuspendedWithDelay = 4, RootSuspendedAtTheShell = 6, RootCompleted = 5, executionContext = NoContext, workInProgressRoot = null, workInProgress = null, workInProgressRootRenderLanes = 0, NotSuspended = 0, SuspendedOnError = 1, SuspendedOnData = 2, SuspendedOnImmediate = 3, SuspendedOnInstance = 4, SuspendedOnInstanceAndReadyToContinue = 5, SuspendedOnDeprecatedThrowPromise = 6, SuspendedAndReadyToContinue = 7, SuspendedOnHydration = 8, SuspendedOnAction = 9, workInProgressSuspendedReason = NotSuspended, workInProgressThrownValue = null, workInProgressRootDidSkipSuspendedSiblings = !1, workInProgressRootIsPrerendering = !1, workInProgressRootDidAttachPingListener = !1, entangledRenderLanes = 0, workInProgressRootExitStatus = RootInProgress, workInProgressRootSkippedLanes = 0, workInProgressRootInterleavedUpdatedLanes = 0, workInProgressRootPingedLanes = 0, workInProgressDeferredLane = 0, workInProgressSuspendedRetryLanes = 0, workInProgressRootConcurrentErrors = null, workInProgressRootRecoverableErrors = null, workInProgressRootDidIncludeRecursiveRenderUpdate = !1, globalMostRecentFallbackTime = 0, globalMostRecentTransitionTime = 0, FALLBACK_THROTTLE_MS = 300, workInProgressRootRenderTargetTime = Infinity, RENDER_TIMEOUT_MS = 500, workInProgressTransitions = null, workInProgressUpdateTask = null, legacyErrorBoundariesThatAlreadyFailed = null, IMMEDIATE_COMMIT = 0, ABORTED_VIEW_TRANSITION_COMMIT = 1, DELAYED_PASSIVE_COMMIT = 2, ANIMATION_STARTED_COMMIT = 3, NO_PENDING_EFFECTS = 0, PENDING_MUTATION_PHASE = 1, PENDING_LAYOUT_PHASE = 2, PENDING_AFTER_MUTATION_PHASE = 3, PENDING_SPAWNED_WORK = 4, PENDING_PASSIVE_PHASE = 5, pendingEffectsStatus = 0, pendingEffectsRoot = null, pendingFinishedWork = null, pendingEffectsLanes = 0, pendingEffectsRemainingLanes = 0, pendingEffectsRenderEndTime = -0, pendingPassiveTransitions = null, pendingRecoverableErrors = null, pendingViewTransition = null, pendingViewTransitionEvents = null, pendingTransitionTypes = null, pendingSuspendedCommitReason = null, pendingDelayedCommitReason = IMMEDIATE_COMMIT, pendingSuspendedViewTransitionReason = null, NESTED_UPDATE_LIMIT = 50, nestedUpdateCount = 0, rootWithNestedUpdates = null, isFlushingPassiveEffects = !1, didScheduleUpdateDuringPassiveEffects = !1, NESTED_PASSIVE_UPDATE_LIMIT = 50, nestedPassiveUpdateCount = 0, rootWithPassiveNestedUpdates = null, isRunningInsertionEffect = !1, didWarnAboutInterruptedViewTransitions = !1, didWarnStateUpdateForNotYetMountedComponent = null, didWarnAboutUpdateInRender = !1; - var didWarnAboutUpdateInRenderForAnotherComponent = new Set(); - var fakeActCallbackNode$1 = {}, firstScheduledRoot = null, lastScheduledRoot = null, didScheduleMicrotask = !1, didScheduleMicrotask_act = !1, mightHavePendingSyncWork = !1, isFlushingWork = !1, currentEventTransitionLane = 0, fakeActCallbackNode = {}; - (function() { - for(var i = 0; i < simpleEventPluginEvents.length; i++){ - var eventName = simpleEventPluginEvents[i], domEventName = eventName.toLowerCase(); - eventName = eventName[0].toUpperCase() + eventName.slice(1); - registerSimpleEvent(domEventName, "on" + eventName); - } - registerSimpleEvent(ANIMATION_END, "onAnimationEnd"); - registerSimpleEvent(ANIMATION_ITERATION, "onAnimationIteration"); - registerSimpleEvent(ANIMATION_START, "onAnimationStart"); - registerSimpleEvent("dblclick", "onDoubleClick"); - registerSimpleEvent("focusin", "onFocus"); - registerSimpleEvent("focusout", "onBlur"); - registerSimpleEvent(TRANSITION_RUN, "onTransitionRun"); - registerSimpleEvent(TRANSITION_START, "onTransitionStart"); - registerSimpleEvent(TRANSITION_CANCEL, "onTransitionCancel"); - registerSimpleEvent(TRANSITION_END, "onTransitionEnd"); - })(); - registerDirectEvent("onMouseEnter", [ - "mouseout", - "mouseover" - ]); - registerDirectEvent("onMouseLeave", [ - "mouseout", - "mouseover" - ]); - registerDirectEvent("onPointerEnter", [ - "pointerout", - "pointerover" - ]); - registerDirectEvent("onPointerLeave", [ - "pointerout", - "pointerover" - ]); - registerTwoPhaseEvent("onChange", "change click focusin focusout input keydown keyup selectionchange".split(" ")); - registerTwoPhaseEvent("onSelect", "focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")); - registerTwoPhaseEvent("onBeforeInput", [ - "compositionend", - "keypress", - "textInput", - "paste" - ]); - registerTwoPhaseEvent("onCompositionEnd", "compositionend focusout keydown keypress keyup mousedown".split(" ")); - registerTwoPhaseEvent("onCompositionStart", "compositionstart focusout keydown keypress keyup mousedown".split(" ")); - registerTwoPhaseEvent("onCompositionUpdate", "compositionupdate focusout keydown keypress keyup mousedown".split(" ")); - var mediaEventTypes = "abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "), nonDelegatedEvents = new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(mediaEventTypes)), listeningMarker = "_reactListening" + Math.random().toString(36).slice(2), didWarnControlledToUncontrolled = !1, didWarnUncontrolledToControlled = !1, didWarnFormActionType = !1, didWarnFormActionName = !1, didWarnFormActionTarget = !1, didWarnFormActionMethod = !1, didWarnPopoverTargetObject = !1; - var didWarnForNewBooleanPropsWithEmptyValue = {}; - var NORMALIZE_NEWLINES_REGEX = /\r\n?/g, NORMALIZE_NULL_AND_REPLACEMENT_REGEX = /\u0000|\uFFFD/g, xlinkNamespace = "http://www.w3.org/1999/xlink", xmlNamespace = "http://www.w3.org/XML/1998/namespace", EXPECTED_FORM_ACTION_URL = "javascript:throw new Error('React form unexpectedly submitted.')", SUPPRESS_HYDRATION_WARNING = "suppressHydrationWarning", ACTIVITY_START_DATA = "&", ACTIVITY_END_DATA = "/&", SUSPENSE_START_DATA = "$", SUSPENSE_END_DATA = "/$", SUSPENSE_PENDING_START_DATA = "$?", SUSPENSE_QUEUED_START_DATA = "$~", SUSPENSE_FALLBACK_START_DATA = "$!", PREAMBLE_CONTRIBUTION_HTML = "html", PREAMBLE_CONTRIBUTION_BODY = "body", PREAMBLE_CONTRIBUTION_HEAD = "head", FORM_STATE_IS_MATCHING = "F!", FORM_STATE_IS_NOT_MATCHING = "F", DOCUMENT_READY_STATE_LOADING = "loading", STYLE = "style", HostContextNamespaceNone = 0, HostContextNamespaceSvg = 1, HostContextNamespaceMath = 2, eventsEnabled = null, selectionInformation = null, warnedUnknownTags = { - dialog: !0, - webview: !0 - }, currentPopstateTransitionEvent = null, schedulerEvent = void 0, scheduleTimeout = "function" === typeof setTimeout ? setTimeout : void 0, cancelTimeout = "function" === typeof clearTimeout ? clearTimeout : void 0, noTimeout = -1, localPromise = "function" === typeof Promise ? Promise : void 0, scheduleMicrotask = "function" === typeof queueMicrotask ? queueMicrotask : "undefined" !== typeof localPromise ? function(callback) { - return localPromise.resolve(null).then(callback).catch(handleErrorInNextTick); - } : scheduleTimeout, SUSPENSEY_FONT_AND_IMAGE_TIMEOUT = 500; - ViewTransitionPseudoElement.prototype.animate = function(keyframes, options) { - options = "number" === typeof options ? { - duration: options - } : assign({}, options); - options.pseudoElement = this._selector; - return this._scope.animate(keyframes, options); - }; - ViewTransitionPseudoElement.prototype.getAnimations = function() { - for(var scope = this._scope, selector = this._selector, animations = scope.getAnimations({ - subtree: !0 - }), result = [], i = 0; i < animations.length; i++){ - var effect = animations[i].effect; - null !== effect && effect.target === scope && effect.pseudoElement === selector && result.push(animations[i]); - } - return result; - }; - ViewTransitionPseudoElement.prototype.getComputedStyle = function() { - return getComputedStyle(this._scope, this._selector); - }; - FragmentInstance.prototype.addEventListener = function(type, listener, optionsOrUseCapture) { - null === this._eventListeners && (this._eventListeners = []); - var listeners = this._eventListeners; - -1 === indexOfEventListener(listeners, type, listener, optionsOrUseCapture) && (listeners.push({ - type: type, - listener: listener, - optionsOrUseCapture: optionsOrUseCapture - }), traverseVisibleHostChildren(this._fragmentFiber.child, !1, addEventListenerToChild, type, listener, optionsOrUseCapture)); - this._eventListeners = listeners; - }; - FragmentInstance.prototype.removeEventListener = function(type, listener, optionsOrUseCapture) { - var listeners = this._eventListeners; - null !== listeners && "undefined" !== typeof listeners && 0 < listeners.length && (traverseVisibleHostChildren(this._fragmentFiber.child, !1, removeEventListenerFromChild, type, listener, optionsOrUseCapture), type = indexOfEventListener(listeners, type, listener, optionsOrUseCapture), null !== this._eventListeners && this._eventListeners.splice(type, 1)); - }; - FragmentInstance.prototype.dispatchEvent = function(event) { - var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber); - if (null === parentHostFiber) return !0; - parentHostFiber = getInstanceFromHostFiber(parentHostFiber); - var eventListeners = this._eventListeners; - if (null !== eventListeners && 0 < eventListeners.length || !event.bubbles) { - var temp = document.createTextNode(""); - if (eventListeners) for(var i = 0; i < eventListeners.length; i++){ - var _eventListeners$i = eventListeners[i]; - temp.addEventListener(_eventListeners$i.type, _eventListeners$i.listener, _eventListeners$i.optionsOrUseCapture); - } - parentHostFiber.appendChild(temp); - event = temp.dispatchEvent(event); - if (eventListeners) for(i = 0; i < eventListeners.length; i++)_eventListeners$i = eventListeners[i], temp.removeEventListener(_eventListeners$i.type, _eventListeners$i.listener, _eventListeners$i.optionsOrUseCapture); - parentHostFiber.removeChild(temp); - return event; - } - return parentHostFiber.dispatchEvent(event); - }; - FragmentInstance.prototype.focus = function(focusOptions) { - traverseVisibleHostChildren(this._fragmentFiber.child, !0, setFocusOnFiberIfFocusable, focusOptions, void 0, void 0); - }; - FragmentInstance.prototype.focusLast = function(focusOptions) { - var children = []; - traverseVisibleHostChildren(this._fragmentFiber.child, !0, collectChildren, children, void 0, void 0); - for(var i = children.length - 1; 0 <= i && !setFocusOnFiberIfFocusable(children[i], focusOptions); i--); - }; - FragmentInstance.prototype.blur = function() { - traverseVisibleHostChildren(this._fragmentFiber.child, !1, blurActiveElementWithinFragment, void 0, void 0, void 0); - }; - FragmentInstance.prototype.observeUsing = function(observer) { - null === this._observers && (this._observers = new Set()); - this._observers.add(observer); - traverseVisibleHostChildren(this._fragmentFiber.child, !1, observeChild, observer, void 0, void 0); - }; - FragmentInstance.prototype.unobserveUsing = function(observer) { - var observers = this._observers; - null !== observers && observers.has(observer) ? (observers.delete(observer), traverseVisibleHostChildren(this._fragmentFiber.child, !1, unobserveChild, observer, void 0, void 0)) : console.error("You are calling unobserveUsing() with an observer that is not being observed with this fragment instance. First attach the observer with observeUsing()"); - }; - FragmentInstance.prototype.getClientRects = function() { - var rects = []; - traverseVisibleHostChildren(this._fragmentFiber.child, !1, collectClientRects, rects, void 0, void 0); - return rects; - }; - FragmentInstance.prototype.getRootNode = function(getRootNodeOptions) { - var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber); - return null === parentHostFiber ? this : getInstanceFromHostFiber(parentHostFiber).getRootNode(getRootNodeOptions); - }; - FragmentInstance.prototype.compareDocumentPosition = function(otherNode) { - var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber); - if (null === parentHostFiber) return Node.DOCUMENT_POSITION_DISCONNECTED; - var children = []; - traverseVisibleHostChildren(this._fragmentFiber.child, !1, collectChildren, children, void 0, void 0); - var parentHostInstance = getInstanceFromHostFiber(parentHostFiber); - if (0 === children.length) { - children = this._fragmentFiber; - var parentResult = parentHostInstance.compareDocumentPosition(otherNode); - parentHostFiber = parentResult; - parentHostInstance === otherNode ? parentHostFiber = Node.DOCUMENT_POSITION_CONTAINS : parentResult & Node.DOCUMENT_POSITION_CONTAINED_BY && (traverseVisibleHostChildren(children.sibling, !1, findNextSibling), children = searchTarget, searchTarget = null, null === children ? parentHostFiber = Node.DOCUMENT_POSITION_PRECEDING : (otherNode = getInstanceFromHostFiber(children).compareDocumentPosition(otherNode), parentHostFiber = 0 === otherNode || otherNode & Node.DOCUMENT_POSITION_FOLLOWING ? Node.DOCUMENT_POSITION_FOLLOWING : Node.DOCUMENT_POSITION_PRECEDING)); - return parentHostFiber |= Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC; - } - parentHostFiber = getInstanceFromHostFiber(children[0]); - parentResult = getInstanceFromHostFiber(children[children.length - 1]); - for(var firstInstance = getInstanceFromHostFiber(children[0]), foundPortalParent = !1, parent = this._fragmentFiber.return; null !== parent;){ - 4 === parent.tag && (foundPortalParent = !0); - if (3 === parent.tag || 5 === parent.tag) break; - parent = parent.return; - } - firstInstance = foundPortalParent ? firstInstance.parentElement : parentHostInstance; - if (null == firstInstance) return Node.DOCUMENT_POSITION_DISCONNECTED; - parentHostInstance = firstInstance.compareDocumentPosition(parentHostFiber) & Node.DOCUMENT_POSITION_CONTAINED_BY; - firstInstance = firstInstance.compareDocumentPosition(parentResult) & Node.DOCUMENT_POSITION_CONTAINED_BY; - foundPortalParent = parentHostFiber.compareDocumentPosition(otherNode); - var lastResult = parentResult.compareDocumentPosition(otherNode); - parent = foundPortalParent & Node.DOCUMENT_POSITION_CONTAINED_BY || lastResult & Node.DOCUMENT_POSITION_CONTAINED_BY; - lastResult = parentHostInstance && firstInstance && foundPortalParent & Node.DOCUMENT_POSITION_FOLLOWING && lastResult & Node.DOCUMENT_POSITION_PRECEDING; - parentHostFiber = parentHostInstance && parentHostFiber === otherNode || firstInstance && parentResult === otherNode || parent || lastResult ? Node.DOCUMENT_POSITION_CONTAINED_BY : !parentHostInstance && parentHostFiber === otherNode || !firstInstance && parentResult === otherNode ? Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC : foundPortalParent; - return parentHostFiber & Node.DOCUMENT_POSITION_DISCONNECTED || parentHostFiber & Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC || validateDocumentPositionWithFiberTree(parentHostFiber, this._fragmentFiber, children[0], children[children.length - 1], otherNode) ? parentHostFiber : Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC; - }; - FragmentInstance.prototype.scrollIntoView = function(alignToTop) { - if ("object" === typeof alignToTop) throw Error("FragmentInstance.scrollIntoView() does not support scrollIntoViewOptions. Use the alignToTop boolean instead."); - var children = []; - traverseVisibleHostChildren(this._fragmentFiber.child, !1, collectChildren, children, void 0, void 0); - var resolvedAlignToTop = !1 !== alignToTop; - if (0 === children.length) { - children = this._fragmentFiber; - var result = [ - null, - null - ], parentHostFiber = getFragmentParentHostFiber(children); - null !== parentHostFiber && findFragmentInstanceSiblings(result, children, parentHostFiber.child); - resolvedAlignToTop = resolvedAlignToTop ? result[1] || result[0] || getFragmentParentHostFiber(this._fragmentFiber) : result[0] || result[1]; - null === resolvedAlignToTop ? console.warn("You are attempting to scroll a FragmentInstance that has no children, siblings, or parent. No scroll was performed.") : getInstanceFromHostFiber(resolvedAlignToTop).scrollIntoView(alignToTop); - } else for(result = resolvedAlignToTop ? children.length - 1 : 0; result !== (resolvedAlignToTop ? -1 : children.length);)getInstanceFromHostFiber(children[result]).scrollIntoView(alignToTop), result += resolvedAlignToTop ? -1 : 1; - }; - var previousHydratableOnEnteringScopedSingleton = null, NotLoaded = 0, Loaded = 1, Errored = 2, Settled = 3, Inserted = 4, preloadPropsMap = new Map(), preconnectsSet = new Set(), previousDispatcher = ReactDOMSharedInternals.d; - ReactDOMSharedInternals.d = { - f: function() { - var previousWasRendering = previousDispatcher.f(), wasRendering = flushSyncWork$1(); - return previousWasRendering || wasRendering; - }, - r: function(form) { - var formInst = getInstanceFromNode(form); - null !== formInst && 5 === formInst.tag && "form" === formInst.type ? requestFormReset$1(formInst) : previousDispatcher.r(form); - }, - D: function(href) { - previousDispatcher.D(href); - preconnectAs("dns-prefetch", href, null); - }, - C: function(href, crossOrigin) { - previousDispatcher.C(href, crossOrigin); - preconnectAs("preconnect", href, crossOrigin); - }, - L: function(href, as, options) { - previousDispatcher.L(href, as, options); - var ownerDocument = globalDocument; - if (ownerDocument && href && as) { - var preloadSelector = 'link[rel="preload"][as="' + escapeSelectorAttributeValueInsideDoubleQuotes(as) + '"]'; - "image" === as ? options && options.imageSrcSet ? (preloadSelector += '[imagesrcset="' + escapeSelectorAttributeValueInsideDoubleQuotes(options.imageSrcSet) + '"]', "string" === typeof options.imageSizes && (preloadSelector += '[imagesizes="' + escapeSelectorAttributeValueInsideDoubleQuotes(options.imageSizes) + '"]')) : preloadSelector += '[href="' + escapeSelectorAttributeValueInsideDoubleQuotes(href) + '"]' : preloadSelector += '[href="' + escapeSelectorAttributeValueInsideDoubleQuotes(href) + '"]'; - var key = preloadSelector; - switch(as){ - case "style": - key = getStyleKey(href); - break; - case "script": - key = getScriptKey(href); - } - preloadPropsMap.has(key) || (href = assign({ - rel: "preload", - href: "image" === as && options && options.imageSrcSet ? void 0 : href, - as: as - }, options), preloadPropsMap.set(key, href), null !== ownerDocument.querySelector(preloadSelector) || "style" === as && ownerDocument.querySelector(getStylesheetSelectorFromKey(key)) || "script" === as && ownerDocument.querySelector(getScriptSelectorFromKey(key)) || (as = ownerDocument.createElement("link"), setInitialProperties(as, "link", href), markNodeAsHoistable(as), ownerDocument.head.appendChild(as))); - } - }, - m: function(href, options) { - previousDispatcher.m(href, options); - var ownerDocument = globalDocument; - if (ownerDocument && href) { - var as = options && "string" === typeof options.as ? options.as : "script", preloadSelector = 'link[rel="modulepreload"][as="' + escapeSelectorAttributeValueInsideDoubleQuotes(as) + '"][href="' + escapeSelectorAttributeValueInsideDoubleQuotes(href) + '"]', key = preloadSelector; - switch(as){ - case "audioworklet": - case "paintworklet": - case "serviceworker": - case "sharedworker": - case "worker": - case "script": - key = getScriptKey(href); - } - if (!preloadPropsMap.has(key) && (href = assign({ - rel: "modulepreload", - href: href - }, options), preloadPropsMap.set(key, href), null === ownerDocument.querySelector(preloadSelector))) { - switch(as){ - case "audioworklet": - case "paintworklet": - case "serviceworker": - case "sharedworker": - case "worker": - case "script": - if (ownerDocument.querySelector(getScriptSelectorFromKey(key))) return; - } - as = ownerDocument.createElement("link"); - setInitialProperties(as, "link", href); - markNodeAsHoistable(as); - ownerDocument.head.appendChild(as); - } - } - }, - X: function(src, options) { - previousDispatcher.X(src, options); - var ownerDocument = globalDocument; - if (ownerDocument && src) { - var scripts = getResourcesFromRoot(ownerDocument).hoistableScripts, key = getScriptKey(src), resource = scripts.get(key); - resource || (resource = ownerDocument.querySelector(getScriptSelectorFromKey(key)), resource || (src = assign({ - src: src, - async: !0 - }, options), (options = preloadPropsMap.get(key)) && adoptPreloadPropsForScript(src, options), resource = ownerDocument.createElement("script"), markNodeAsHoistable(resource), setInitialProperties(resource, "link", src), ownerDocument.head.appendChild(resource)), resource = { - type: "script", - instance: resource, - count: 1, - state: null - }, scripts.set(key, resource)); - } - }, - S: function(href, precedence, options) { - previousDispatcher.S(href, precedence, options); - var ownerDocument = globalDocument; - if (ownerDocument && href) { - var styles = getResourcesFromRoot(ownerDocument).hoistableStyles, key = getStyleKey(href); - precedence = precedence || "default"; - var resource = styles.get(key); - if (!resource) { - var state = { - loading: NotLoaded, - preload: null - }; - if (resource = ownerDocument.querySelector(getStylesheetSelectorFromKey(key))) state.loading = Loaded | Inserted; - else { - href = assign({ - rel: "stylesheet", - href: href, - "data-precedence": precedence - }, options); - (options = preloadPropsMap.get(key)) && adoptPreloadPropsForStylesheet(href, options); - var link = resource = ownerDocument.createElement("link"); - markNodeAsHoistable(link); - setInitialProperties(link, "link", href); - link._p = new Promise(function(resolve, reject) { - link.onload = resolve; - link.onerror = reject; - }); - link.addEventListener("load", function() { - state.loading |= Loaded; - }); - link.addEventListener("error", function() { - state.loading |= Errored; - }); - state.loading |= Inserted; - insertStylesheet(resource, precedence, ownerDocument); - } - resource = { - type: "stylesheet", - instance: resource, - count: 1, - state: state - }; - styles.set(key, resource); - } - } - }, - M: function(src, options) { - previousDispatcher.M(src, options); - var ownerDocument = globalDocument; - if (ownerDocument && src) { - var scripts = getResourcesFromRoot(ownerDocument).hoistableScripts, key = getScriptKey(src), resource = scripts.get(key); - resource || (resource = ownerDocument.querySelector(getScriptSelectorFromKey(key)), resource || (src = assign({ - src: src, - async: !0, - type: "module" - }, options), (options = preloadPropsMap.get(key)) && adoptPreloadPropsForScript(src, options), resource = ownerDocument.createElement("script"), markNodeAsHoistable(resource), setInitialProperties(resource, "link", src), ownerDocument.head.appendChild(resource)), resource = { - type: "script", - instance: resource, - count: 1, - state: null - }, scripts.set(key, resource)); - } - } - }; - var globalDocument = "undefined" === typeof document ? null : document, tagCaches = null, SUSPENSEY_STYLESHEET_TIMEOUT = 6e4, SUSPENSEY_IMAGE_TIMEOUT = 800, SUSPENSEY_IMAGE_TIME_ESTIMATE = 500, estimatedBytesWithinLimit = 0, LAST_PRECEDENCE = null, precedencesByRoot = null, NotPendingTransition = NotPending, HostTransitionContext = { - $$typeof: REACT_CONTEXT_TYPE, - Provider: null, - Consumer: null, - _currentValue: NotPendingTransition, - _currentValue2: NotPendingTransition, - _threadCount: 0 - }, badgeFormat = "%c%s%c", badgeStyle = "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", resetStyle = "", pad = " ", bind = Function.prototype.bind; - var didWarnAboutNestedUpdates = !1; - var overrideHookState = null, overrideHookStateDeletePath = null, overrideHookStateRenamePath = null, overrideProps = null, overridePropsDeletePath = null, overridePropsRenamePath = null, scheduleUpdate = null, scheduleRetry = null, setErrorHandler = null, setSuspenseHandler = null; - overrideHookState = function(fiber, id, path, value) { - id = findHook(fiber, id); - null !== id && (path = copyWithSetImpl(id.memoizedState, path, 0, value), id.memoizedState = path, id.baseState = path, fiber.memoizedProps = assign({}, fiber.memoizedProps), path = enqueueConcurrentRenderForLane(fiber, 2), null !== path && scheduleUpdateOnFiber(path, fiber, 2)); - }; - overrideHookStateDeletePath = function(fiber, id, path) { - id = findHook(fiber, id); - null !== id && (path = copyWithDeleteImpl(id.memoizedState, path, 0), id.memoizedState = path, id.baseState = path, fiber.memoizedProps = assign({}, fiber.memoizedProps), path = enqueueConcurrentRenderForLane(fiber, 2), null !== path && scheduleUpdateOnFiber(path, fiber, 2)); - }; - overrideHookStateRenamePath = function(fiber, id, oldPath, newPath) { - id = findHook(fiber, id); - null !== id && (oldPath = copyWithRename(id.memoizedState, oldPath, newPath), id.memoizedState = oldPath, id.baseState = oldPath, fiber.memoizedProps = assign({}, fiber.memoizedProps), oldPath = enqueueConcurrentRenderForLane(fiber, 2), null !== oldPath && scheduleUpdateOnFiber(oldPath, fiber, 2)); - }; - overrideProps = function(fiber, path, value) { - fiber.pendingProps = copyWithSetImpl(fiber.memoizedProps, path, 0, value); - fiber.alternate && (fiber.alternate.pendingProps = fiber.pendingProps); - path = enqueueConcurrentRenderForLane(fiber, 2); - null !== path && scheduleUpdateOnFiber(path, fiber, 2); - }; - overridePropsDeletePath = function(fiber, path) { - fiber.pendingProps = copyWithDeleteImpl(fiber.memoizedProps, path, 0); - fiber.alternate && (fiber.alternate.pendingProps = fiber.pendingProps); - path = enqueueConcurrentRenderForLane(fiber, 2); - null !== path && scheduleUpdateOnFiber(path, fiber, 2); - }; - overridePropsRenamePath = function(fiber, oldPath, newPath) { - fiber.pendingProps = copyWithRename(fiber.memoizedProps, oldPath, newPath); - fiber.alternate && (fiber.alternate.pendingProps = fiber.pendingProps); - oldPath = enqueueConcurrentRenderForLane(fiber, 2); - null !== oldPath && scheduleUpdateOnFiber(oldPath, fiber, 2); - }; - scheduleUpdate = function(fiber) { - var root = enqueueConcurrentRenderForLane(fiber, 2); - null !== root && scheduleUpdateOnFiber(root, fiber, 2); - }; - scheduleRetry = function(fiber) { - var lane = claimNextRetryLane(), root = enqueueConcurrentRenderForLane(fiber, lane); - null !== root && scheduleUpdateOnFiber(root, fiber, lane); - }; - setErrorHandler = function(newShouldErrorImpl) { - shouldErrorImpl = newShouldErrorImpl; - }; - setSuspenseHandler = function(newShouldSuspendImpl) { - shouldSuspendImpl = newShouldSuspendImpl; - }; - var _enabled = !0, return_targetInst = null, hasScheduledReplayAttempt = !1, queuedFocus = null, queuedDrag = null, queuedMouse = null, queuedPointers = new Map(), queuedPointerCaptures = new Map(), queuedExplicitHydrationTargets = [], discreteReplayableEvents = "mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" "), lastScheduledReplayQueue = null; - ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render = function(children) { - var root = this._internalRoot; - if (null === root) throw Error("Cannot update an unmounted root."); - var args = arguments; - "function" === typeof args[1] ? console.error("does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().") : isValidContainer(args[1]) ? console.error("You passed a container to the second argument of root.render(...). You don't need to pass it again since you already passed it to create the root.") : "undefined" !== typeof args[1] && console.error("You passed a second argument to root.render(...) but it only accepts one argument."); - args = children; - var current = root.current, lane = requestUpdateLane(current); - updateContainerImpl(current, lane, args, root, null, null); - }; - ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount = function() { - var args = arguments; - "function" === typeof args[0] && console.error("does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect()."); - args = this._internalRoot; - if (null !== args) { - this._internalRoot = null; - var container = args.containerInfo; - (executionContext & (RenderContext | CommitContext)) !== NoContext && console.error("Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition."); - updateContainerImpl(args.current, 2, null, args, null, null); - flushSyncWork$1(); - container[internalContainerInstanceKey] = null; - } - }; - ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function(target) { - if (target) { - var updatePriority = resolveUpdatePriority(); - target = { - blockedOn: null, - target: target, - priority: updatePriority - }; - for(var i = 0; i < queuedExplicitHydrationTargets.length && 0 !== updatePriority && updatePriority < queuedExplicitHydrationTargets[i].priority; i++); - queuedExplicitHydrationTargets.splice(i, 0, target); - 0 === i && attemptExplicitHydrationTarget(target); - } - }; - (function() { - var isomorphicReactPackageVersion = React.version; - if ("19.3.0-canary-f93b9fd4-20251217" !== isomorphicReactPackageVersion) throw Error('Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + "\n - react-dom: 19.3.0-canary-f93b9fd4-20251217\nLearn more: https://react.dev/warnings/version-mismatch")); - })(); - "function" === typeof Map && null != Map.prototype && "function" === typeof Map.prototype.forEach && "function" === typeof Set && null != Set.prototype && "function" === typeof Set.prototype.clear && "function" === typeof Set.prototype.forEach || console.error("React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://react.dev/link/react-polyfills"); - ReactDOMSharedInternals.findDOMNode = function(componentOrElement) { - var fiber = componentOrElement._reactInternals; - if (void 0 === fiber) { - if ("function" === typeof componentOrElement.render) throw Error("Unable to find node on an unmounted component."); - componentOrElement = Object.keys(componentOrElement).join(","); - throw Error("Argument appears to not be a ReactComponent. Keys: " + componentOrElement); - } - componentOrElement = findCurrentFiberUsingSlowPath(fiber); - componentOrElement = null !== componentOrElement ? findCurrentHostFiberImpl(componentOrElement) : null; - componentOrElement = null === componentOrElement ? null : componentOrElement.stateNode; - return componentOrElement; - }; - if (!function() { - var internals = { - bundleType: 1, - version: "19.3.0-canary-f93b9fd4-20251217", - rendererPackageName: "react-dom", - currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-canary-f93b9fd4-20251217" - }; - internals.overrideHookState = overrideHookState; - internals.overrideHookStateDeletePath = overrideHookStateDeletePath; - internals.overrideHookStateRenamePath = overrideHookStateRenamePath; - internals.overrideProps = overrideProps; - internals.overridePropsDeletePath = overridePropsDeletePath; - internals.overridePropsRenamePath = overridePropsRenamePath; - internals.scheduleUpdate = scheduleUpdate; - internals.scheduleRetry = scheduleRetry; - internals.setErrorHandler = setErrorHandler; - internals.setSuspenseHandler = setSuspenseHandler; - internals.scheduleRefresh = scheduleRefresh; - internals.scheduleRoot = scheduleRoot; - internals.setRefreshHandler = setRefreshHandler; - internals.getCurrentFiber = getCurrentFiberForDevTools; - return injectInternals(internals); - }() && canUseDOM && window.top === window.self && (-1 < navigator.userAgent.indexOf("Chrome") && -1 === navigator.userAgent.indexOf("Edge") || -1 < navigator.userAgent.indexOf("Firefox"))) { - var protocol = window.location.protocol; - /^(https?|file):$/.test(protocol) && console.info("%cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools" + ("file:" === protocol ? "\nYou might need to use a local HTTP server (instead of file://): https://react.dev/link/react-devtools-faq" : ""), "font-weight:bold"); - } - exports.createRoot = function(container, options) { - if (!isValidContainer(container)) throw Error("Target container is not a DOM element."); - warnIfReactDOMContainerInDEV(container); - var isStrictMode = !1, identifierPrefix = "", onUncaughtError = defaultOnUncaughtError, onCaughtError = defaultOnCaughtError, onRecoverableError = defaultOnRecoverableError; - null !== options && void 0 !== options && (options.hydrate ? console.warn("hydrate through createRoot is deprecated. Use ReactDOMClient.hydrateRoot(container, <App />) instead.") : "object" === typeof options && null !== options && options.$$typeof === REACT_ELEMENT_TYPE && console.error("You passed a JSX element to createRoot. You probably meant to call root.render instead. Example usage:\n\n let root = createRoot(domContainer);\n root.render(<App />);"), !0 === options.unstable_strictMode && (isStrictMode = !0), void 0 !== options.identifierPrefix && (identifierPrefix = options.identifierPrefix), void 0 !== options.onUncaughtError && (onUncaughtError = options.onUncaughtError), void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError), void 0 !== options.onRecoverableError && (onRecoverableError = options.onRecoverableError)); - options = createFiberRoot(container, 1, !1, null, null, isStrictMode, identifierPrefix, null, onUncaughtError, onCaughtError, onRecoverableError, defaultOnDefaultTransitionIndicator); - container[internalContainerInstanceKey] = options.current; - listenToAllSupportedEvents(container); - return new ReactDOMRoot(options); - }; - exports.hydrateRoot = function(container, initialChildren, options) { - if (!isValidContainer(container)) throw Error("Target container is not a DOM element."); - warnIfReactDOMContainerInDEV(container); - void 0 === initialChildren && console.error("Must provide initial children as second argument to hydrateRoot. Example usage: hydrateRoot(domContainer, <App />)"); - var isStrictMode = !1, identifierPrefix = "", onUncaughtError = defaultOnUncaughtError, onCaughtError = defaultOnCaughtError, onRecoverableError = defaultOnRecoverableError, formState = null; - null !== options && void 0 !== options && (!0 === options.unstable_strictMode && (isStrictMode = !0), void 0 !== options.identifierPrefix && (identifierPrefix = options.identifierPrefix), void 0 !== options.onUncaughtError && (onUncaughtError = options.onUncaughtError), void 0 !== options.onCaughtError && (onCaughtError = options.onCaughtError), void 0 !== options.onRecoverableError && (onRecoverableError = options.onRecoverableError), void 0 !== options.formState && (formState = options.formState)); - initialChildren = createFiberRoot(container, 1, !0, initialChildren, null != options ? options : null, isStrictMode, identifierPrefix, formState, onUncaughtError, onCaughtError, onRecoverableError, defaultOnDefaultTransitionIndicator); - initialChildren.context = getContextForSubtree(null); - options = initialChildren.current; - isStrictMode = requestUpdateLane(options); - isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode); - identifierPrefix = createUpdate(isStrictMode); - identifierPrefix.callback = null; - enqueueUpdate(options, identifierPrefix, isStrictMode); - startUpdateTimerByLane(isStrictMode, "hydrateRoot()", null); - options = isStrictMode; - initialChildren.current.lanes = options; - markRootUpdated$1(initialChildren, options); - ensureRootIsScheduled(initialChildren); - container[internalContainerInstanceKey] = initialChildren.current; - listenToAllSupportedEvents(container); - return new ReactDOMHydrationRoot(initialChildren); - }; - exports.version = "19.3.0-canary-f93b9fd4-20251217"; - "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error()); -}(); -}), -"[project]/node_modules/next/dist/compiled/react-dom/client.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use strict'; -function checkDCE() { - /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */ if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' || typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function') { - return; - } - if ("TURBOPACK compile-time truthy", 1) { - // This branch is unreachable because this function is only called - // in production, but the condition is true only in development. - // Therefore if the branch is still here, dead code elimination wasn't - // properly applied. - // Don't change the message. React DevTools relies on it. Also make sure - // this message doesn't occur elsewhere in this function, or it will cause - // a false positive. - throw new Error('^_^'); - } - try { - // Verify that the code above has been dead code eliminated (DCE'd). - __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE); - } catch (err) { - // DevTools shouldn't crash React, no matter what. - // We should still report in case we break this code. - console.error(err); - } -} -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-dom/cjs/react-dom-client.development.js [app-client] (ecmascript)"); -} -}), -]); - -//# sourceMappingURL=node_modules_next_dist_compiled_react-dom_1e674e59._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js.map deleted file mode 100644 index c8d89d9..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js.map +++ /dev/null @@ -1,9 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js"],"sourcesContent":["/**\n * @license React\n * react-dom.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function noop() {}\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function createPortal$1(children, containerInfo, implementation) {\n var key =\n 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;\n if (null == key) key = null;\n else if (key === REACT_OPTIMISTIC_KEY) key = REACT_OPTIMISTIC_KEY;\n else {\n try {\n testStringCoercion(key);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n JSCompiler_inline_result &&\n (console.error(\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n key[Symbol.toStringTag]) ||\n key.constructor.name ||\n \"Object\"\n ),\n testStringCoercion(key));\n key = \"\" + key;\n }\n return {\n $$typeof: REACT_PORTAL_TYPE,\n key: key,\n children: children,\n containerInfo: containerInfo,\n implementation: implementation\n };\n }\n function getCrossOriginStringAs(as, input) {\n if (\"font\" === as) return \"\";\n if (\"string\" === typeof input)\n return \"use-credentials\" === input ? input : \"\";\n }\n function getValueDescriptorExpectingObjectForWarning(thing) {\n return null === thing\n ? \"`null`\"\n : void 0 === thing\n ? \"`undefined`\"\n : \"\" === thing\n ? \"an empty string\"\n : 'something with type \"' + typeof thing + '\"';\n }\n function getValueDescriptorExpectingEnumForWarning(thing) {\n return null === thing\n ? \"`null`\"\n : void 0 === thing\n ? \"`undefined`\"\n : \"\" === thing\n ? \"an empty string\"\n : \"string\" === typeof thing\n ? JSON.stringify(thing)\n : \"number\" === typeof thing\n ? \"`\" + thing + \"`\"\n : 'something with type \"' + typeof thing + '\"';\n }\n function resolveDispatcher() {\n var dispatcher = ReactSharedInternals.H;\n null === dispatcher &&\n console.error(\n \"Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\\n1. You might have mismatching versions of React and the renderer (such as React DOM)\\n2. You might be breaking the Rules of Hooks\\n3. You might have more than one copy of React in the same app\\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.\"\n );\n return dispatcher;\n }\n \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&\n \"function\" ===\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());\n var React = require(\"next/dist/compiled/react\"),\n Internals = {\n d: {\n f: noop,\n r: function () {\n throw Error(\n \"Invalid form element. requestFormReset must be passed a form that was rendered by React.\"\n );\n },\n D: noop,\n C: noop,\n L: noop,\n m: noop,\n X: noop,\n S: noop,\n M: noop\n },\n p: 0,\n findDOMNode: null\n },\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_OPTIMISTIC_KEY = Symbol.for(\"react.optimistic_key\"),\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;\n (\"function\" === typeof Map &&\n null != Map.prototype &&\n \"function\" === typeof Map.prototype.forEach &&\n \"function\" === typeof Set &&\n null != Set.prototype &&\n \"function\" === typeof Set.prototype.clear &&\n \"function\" === typeof Set.prototype.forEach) ||\n console.error(\n \"React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\"\n );\n exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =\n Internals;\n exports.createPortal = function (children, container) {\n var key =\n 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;\n if (\n !container ||\n (1 !== container.nodeType &&\n 9 !== container.nodeType &&\n 11 !== container.nodeType)\n )\n throw Error(\"Target container is not a DOM element.\");\n return createPortal$1(children, container, null, key);\n };\n exports.flushSync = function (fn) {\n var previousTransition = ReactSharedInternals.T,\n previousUpdatePriority = Internals.p;\n try {\n if (((ReactSharedInternals.T = null), (Internals.p = 2), fn))\n return fn();\n } finally {\n (ReactSharedInternals.T = previousTransition),\n (Internals.p = previousUpdatePriority),\n Internals.d.f() &&\n console.error(\n \"flushSync was called from inside a lifecycle method. React cannot flush when React is already rendering. Consider moving this call to a scheduler task or micro task.\"\n );\n }\n };\n exports.preconnect = function (href, options) {\n \"string\" === typeof href && href\n ? null != options && \"object\" !== typeof options\n ? console.error(\n \"ReactDOM.preconnect(): Expected the `options` argument (second) to be an object but encountered %s instead. The only supported option at this time is `crossOrigin` which accepts a string.\",\n getValueDescriptorExpectingEnumForWarning(options)\n )\n : null != options &&\n \"string\" !== typeof options.crossOrigin &&\n console.error(\n \"ReactDOM.preconnect(): Expected the `crossOrigin` option (second argument) to be a string but encountered %s instead. Try removing this option or passing a string value instead.\",\n getValueDescriptorExpectingObjectForWarning(options.crossOrigin)\n )\n : console.error(\n \"ReactDOM.preconnect(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.\",\n getValueDescriptorExpectingObjectForWarning(href)\n );\n \"string\" === typeof href &&\n (options\n ? ((options = options.crossOrigin),\n (options =\n \"string\" === typeof options\n ? \"use-credentials\" === options\n ? options\n : \"\"\n : void 0))\n : (options = null),\n Internals.d.C(href, options));\n };\n exports.prefetchDNS = function (href) {\n if (\"string\" !== typeof href || !href)\n console.error(\n \"ReactDOM.prefetchDNS(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.\",\n getValueDescriptorExpectingObjectForWarning(href)\n );\n else if (1 < arguments.length) {\n var options = arguments[1];\n \"object\" === typeof options && options.hasOwnProperty(\"crossOrigin\")\n ? console.error(\n \"ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. It looks like the you are attempting to set a crossOrigin property for this DNS lookup hint. Browsers do not perform DNS queries using CORS and setting this attribute on the resource hint has no effect. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.\",\n getValueDescriptorExpectingEnumForWarning(options)\n )\n : console.error(\n \"ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.\",\n getValueDescriptorExpectingEnumForWarning(options)\n );\n }\n \"string\" === typeof href && Internals.d.D(href);\n };\n exports.preinit = function (href, options) {\n \"string\" === typeof href && href\n ? null == options || \"object\" !== typeof options\n ? console.error(\n \"ReactDOM.preinit(): Expected the `options` argument (second) to be an object with an `as` property describing the type of resource to be preinitialized but encountered %s instead.\",\n getValueDescriptorExpectingEnumForWarning(options)\n )\n : \"style\" !== options.as &&\n \"script\" !== options.as &&\n console.error(\n 'ReactDOM.preinit(): Expected the `as` property in the `options` argument (second) to contain a valid value describing the type of resource to be preinitialized but encountered %s instead. Valid values for `as` are \"style\" and \"script\".',\n getValueDescriptorExpectingEnumForWarning(options.as)\n )\n : console.error(\n \"ReactDOM.preinit(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.\",\n getValueDescriptorExpectingObjectForWarning(href)\n );\n if (\n \"string\" === typeof href &&\n options &&\n \"string\" === typeof options.as\n ) {\n var as = options.as,\n crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),\n integrity =\n \"string\" === typeof options.integrity ? options.integrity : void 0,\n fetchPriority =\n \"string\" === typeof options.fetchPriority\n ? options.fetchPriority\n : void 0;\n \"style\" === as\n ? Internals.d.S(\n href,\n \"string\" === typeof options.precedence\n ? options.precedence\n : void 0,\n {\n crossOrigin: crossOrigin,\n integrity: integrity,\n fetchPriority: fetchPriority\n }\n )\n : \"script\" === as &&\n Internals.d.X(href, {\n crossOrigin: crossOrigin,\n integrity: integrity,\n fetchPriority: fetchPriority,\n nonce: \"string\" === typeof options.nonce ? options.nonce : void 0\n });\n }\n };\n exports.preinitModule = function (href, options) {\n var encountered = \"\";\n (\"string\" === typeof href && href) ||\n (encountered +=\n \" The `href` argument encountered was \" +\n getValueDescriptorExpectingObjectForWarning(href) +\n \".\");\n void 0 !== options && \"object\" !== typeof options\n ? (encountered +=\n \" The `options` argument encountered was \" +\n getValueDescriptorExpectingObjectForWarning(options) +\n \".\")\n : options &&\n \"as\" in options &&\n \"script\" !== options.as &&\n (encountered +=\n \" The `as` option encountered was \" +\n getValueDescriptorExpectingEnumForWarning(options.as) +\n \".\");\n if (encountered)\n console.error(\n \"ReactDOM.preinitModule(): Expected up to two arguments, a non-empty `href` string and, optionally, an `options` object with a valid `as` property.%s\",\n encountered\n );\n else\n switch (\n ((encountered =\n options && \"string\" === typeof options.as ? options.as : \"script\"),\n encountered)\n ) {\n case \"script\":\n break;\n default:\n (encountered =\n getValueDescriptorExpectingEnumForWarning(encountered)),\n console.error(\n 'ReactDOM.preinitModule(): Currently the only supported \"as\" type for this function is \"script\" but received \"%s\" instead. This warning was generated for `href` \"%s\". In the future other module types will be supported, aligning with the import-attributes proposal. Learn more here: (https://github.com/tc39/proposal-import-attributes)',\n encountered,\n href\n );\n }\n if (\"string\" === typeof href)\n if (\"object\" === typeof options && null !== options) {\n if (null == options.as || \"script\" === options.as)\n (encountered = getCrossOriginStringAs(\n options.as,\n options.crossOrigin\n )),\n Internals.d.M(href, {\n crossOrigin: encountered,\n integrity:\n \"string\" === typeof options.integrity\n ? options.integrity\n : void 0,\n nonce:\n \"string\" === typeof options.nonce ? options.nonce : void 0\n });\n } else null == options && Internals.d.M(href);\n };\n exports.preload = function (href, options) {\n var encountered = \"\";\n (\"string\" === typeof href && href) ||\n (encountered +=\n \" The `href` argument encountered was \" +\n getValueDescriptorExpectingObjectForWarning(href) +\n \".\");\n null == options || \"object\" !== typeof options\n ? (encountered +=\n \" The `options` argument encountered was \" +\n getValueDescriptorExpectingObjectForWarning(options) +\n \".\")\n : (\"string\" === typeof options.as && options.as) ||\n (encountered +=\n \" The `as` option encountered was \" +\n getValueDescriptorExpectingObjectForWarning(options.as) +\n \".\");\n encountered &&\n console.error(\n 'ReactDOM.preload(): Expected two arguments, a non-empty `href` string and an `options` object with an `as` property valid for a `<link rel=\"preload\" as=\"...\" />` tag.%s',\n encountered\n );\n if (\n \"string\" === typeof href &&\n \"object\" === typeof options &&\n null !== options &&\n \"string\" === typeof options.as\n ) {\n encountered = options.as;\n var crossOrigin = getCrossOriginStringAs(\n encountered,\n options.crossOrigin\n );\n Internals.d.L(href, encountered, {\n crossOrigin: crossOrigin,\n integrity:\n \"string\" === typeof options.integrity ? options.integrity : void 0,\n nonce: \"string\" === typeof options.nonce ? options.nonce : void 0,\n type: \"string\" === typeof options.type ? options.type : void 0,\n fetchPriority:\n \"string\" === typeof options.fetchPriority\n ? options.fetchPriority\n : void 0,\n referrerPolicy:\n \"string\" === typeof options.referrerPolicy\n ? options.referrerPolicy\n : void 0,\n imageSrcSet:\n \"string\" === typeof options.imageSrcSet\n ? options.imageSrcSet\n : void 0,\n imageSizes:\n \"string\" === typeof options.imageSizes\n ? options.imageSizes\n : void 0,\n media: \"string\" === typeof options.media ? options.media : void 0\n });\n }\n };\n exports.preloadModule = function (href, options) {\n var encountered = \"\";\n (\"string\" === typeof href && href) ||\n (encountered +=\n \" The `href` argument encountered was \" +\n getValueDescriptorExpectingObjectForWarning(href) +\n \".\");\n void 0 !== options && \"object\" !== typeof options\n ? (encountered +=\n \" The `options` argument encountered was \" +\n getValueDescriptorExpectingObjectForWarning(options) +\n \".\")\n : options &&\n \"as\" in options &&\n \"string\" !== typeof options.as &&\n (encountered +=\n \" The `as` option encountered was \" +\n getValueDescriptorExpectingObjectForWarning(options.as) +\n \".\");\n encountered &&\n console.error(\n 'ReactDOM.preloadModule(): Expected two arguments, a non-empty `href` string and, optionally, an `options` object with an `as` property valid for a `<link rel=\"modulepreload\" as=\"...\" />` tag.%s',\n encountered\n );\n \"string\" === typeof href &&\n (options\n ? ((encountered = getCrossOriginStringAs(\n options.as,\n options.crossOrigin\n )),\n Internals.d.m(href, {\n as:\n \"string\" === typeof options.as && \"script\" !== options.as\n ? options.as\n : void 0,\n crossOrigin: encountered,\n integrity:\n \"string\" === typeof options.integrity\n ? options.integrity\n : void 0\n }))\n : Internals.d.m(href));\n };\n exports.requestFormReset = function (form) {\n Internals.d.r(form);\n };\n exports.unstable_batchedUpdates = function (fn, a) {\n return fn(a);\n };\n exports.useFormState = function (action, initialState, permalink) {\n return resolveDispatcher().useFormState(action, initialState, permalink);\n };\n exports.useFormStatus = function () {\n return resolveDispatcher().useHostTransitionStatus();\n };\n exports.version = \"19.3.0-canary-f93b9fd4-20251217\";\n \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&\n \"function\" ===\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());\n })();\n"],"names":[],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 187, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-dom/index.js"],"sourcesContent":["'use strict';\n\nfunction checkDCE() {\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\n if (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'\n ) {\n return;\n }\n if (process.env.NODE_ENV !== 'production') {\n // This branch is unreachable because this function is only called\n // in production, but the condition is true only in development.\n // Therefore if the branch is still here, dead code elimination wasn't\n // properly applied.\n // Don't change the message. React DevTools relies on it. Also make sure\n // this message doesn't occur elsewhere in this function, or it will cause\n // a false positive.\n throw new Error('^_^');\n }\n try {\n // Verify that the code above has been dead code eliminated (DCE'd).\n __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);\n } catch (err) {\n // DevTools shouldn't crash React, no matter what.\n // We should still report in case we break this code.\n console.error(err);\n }\n}\n\nif (process.env.NODE_ENV === 'production') {\n // DCE check should happen before ReactDOM bundle executes so that\n // DevTools can report bad minification during injection.\n checkDCE();\n module.exports = require('./cjs/react-dom.production.js');\n} else {\n module.exports = require('./cjs/react-dom.development.js');\n}\n"],"names":[],"mappings":"AA8BI;AA9BJ;AAEA,SAAS;IACP,yCAAyC,GACzC,IACE,OAAO,mCAAmC,eAC1C,OAAO,+BAA+B,QAAQ,KAAK,YACnD;QACA;IACF;IACA,wCAA2C;QACzC,kEAAkE;QAClE,gEAAgE;QAChE,sEAAsE;QACtE,oBAAoB;QACpB,wEAAwE;QACxE,0EAA0E;QAC1E,oBAAoB;QACpB,MAAM,IAAI,MAAM;IAClB;IACA,IAAI;QACF,oEAAoE;QACpE,+BAA+B,QAAQ,CAAC;IAC1C,EAAE,OAAO,KAAK;QACZ,kDAAkD;QAClD,qDAAqD;QACrD,QAAQ,KAAK,CAAC;IAChB;AACF;AAEA;;KAKO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 221, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom-client.development.js"],"sourcesContent":["/**\n * @license React\n * react-dom-client.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n/*\n Modernizr 3.0.0pre (Custom Build) | MIT\n*/\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function findHook(fiber, id) {\n for (fiber = fiber.memoizedState; null !== fiber && 0 < id; )\n (fiber = fiber.next), id--;\n return fiber;\n }\n function copyWithSetImpl(obj, path, index, value) {\n if (index >= path.length) return value;\n var key = path[index],\n updated = isArrayImpl(obj) ? obj.slice() : assign({}, obj);\n updated[key] = copyWithSetImpl(obj[key], path, index + 1, value);\n return updated;\n }\n function copyWithRename(obj, oldPath, newPath) {\n if (oldPath.length !== newPath.length)\n console.warn(\"copyWithRename() expects paths of the same length\");\n else {\n for (var i = 0; i < newPath.length - 1; i++)\n if (oldPath[i] !== newPath[i]) {\n console.warn(\n \"copyWithRename() expects paths to be the same except for the deepest key\"\n );\n return;\n }\n return copyWithRenameImpl(obj, oldPath, newPath, 0);\n }\n }\n function copyWithRenameImpl(obj, oldPath, newPath, index) {\n var oldKey = oldPath[index],\n updated = isArrayImpl(obj) ? obj.slice() : assign({}, obj);\n index + 1 === oldPath.length\n ? ((updated[newPath[index]] = updated[oldKey]),\n isArrayImpl(updated)\n ? updated.splice(oldKey, 1)\n : delete updated[oldKey])\n : (updated[oldKey] = copyWithRenameImpl(\n obj[oldKey],\n oldPath,\n newPath,\n index + 1\n ));\n return updated;\n }\n function copyWithDeleteImpl(obj, path, index) {\n var key = path[index],\n updated = isArrayImpl(obj) ? obj.slice() : assign({}, obj);\n if (index + 1 === path.length)\n return (\n isArrayImpl(updated) ? updated.splice(key, 1) : delete updated[key],\n updated\n );\n updated[key] = copyWithDeleteImpl(obj[key], path, index + 1);\n return updated;\n }\n function shouldSuspendImpl() {\n return !1;\n }\n function shouldErrorImpl() {\n return null;\n }\n function warnInvalidHookAccess() {\n console.error(\n \"Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://react.dev/link/rules-of-hooks\"\n );\n }\n function warnInvalidContextAccess() {\n console.error(\n \"Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().\"\n );\n }\n function noop() {}\n function warnForMissingKey() {}\n function setToSortedString(set) {\n var array = [];\n set.forEach(function (value) {\n array.push(value);\n });\n return array.sort().join(\", \");\n }\n function createFiber(tag, pendingProps, key, mode) {\n return new FiberNode(tag, pendingProps, key, mode);\n }\n function scheduleRoot(root, element) {\n root.context === emptyContextObject &&\n (updateContainerImpl(root.current, 2, element, root, null, null),\n flushSyncWork$1());\n }\n function scheduleRefresh(root, update) {\n if (null !== resolveFamily) {\n var staleFamilies = update.staleFamilies;\n update = update.updatedFamilies;\n flushPendingEffects();\n scheduleFibersWithFamiliesRecursively(\n root.current,\n update,\n staleFamilies\n );\n flushSyncWork$1();\n }\n }\n function setRefreshHandler(handler) {\n resolveFamily = handler;\n }\n function isValidContainer(node) {\n return !(\n !node ||\n (1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)\n );\n }\n function getNearestMountedFiber(fiber) {\n var node = fiber,\n nearestMounted = fiber;\n if (fiber.alternate) for (; node.return; ) node = node.return;\n else {\n fiber = node;\n do\n (node = fiber),\n 0 !== (node.flags & 4098) && (nearestMounted = node.return),\n (fiber = node.return);\n while (fiber);\n }\n return 3 === node.tag ? nearestMounted : null;\n }\n function getSuspenseInstanceFromFiber(fiber) {\n if (13 === fiber.tag) {\n var suspenseState = fiber.memoizedState;\n null === suspenseState &&\n ((fiber = fiber.alternate),\n null !== fiber && (suspenseState = fiber.memoizedState));\n if (null !== suspenseState) return suspenseState.dehydrated;\n }\n return null;\n }\n function getActivityInstanceFromFiber(fiber) {\n if (31 === fiber.tag) {\n var activityState = fiber.memoizedState;\n null === activityState &&\n ((fiber = fiber.alternate),\n null !== fiber && (activityState = fiber.memoizedState));\n if (null !== activityState) return activityState.dehydrated;\n }\n return null;\n }\n function assertIsMounted(fiber) {\n if (getNearestMountedFiber(fiber) !== fiber)\n throw Error(\"Unable to find node on an unmounted component.\");\n }\n function findCurrentFiberUsingSlowPath(fiber) {\n var alternate = fiber.alternate;\n if (!alternate) {\n alternate = getNearestMountedFiber(fiber);\n if (null === alternate)\n throw Error(\"Unable to find node on an unmounted component.\");\n return alternate !== fiber ? null : fiber;\n }\n for (var a = fiber, b = alternate; ; ) {\n var parentA = a.return;\n if (null === parentA) break;\n var parentB = parentA.alternate;\n if (null === parentB) {\n b = parentA.return;\n if (null !== b) {\n a = b;\n continue;\n }\n break;\n }\n if (parentA.child === parentB.child) {\n for (parentB = parentA.child; parentB; ) {\n if (parentB === a) return assertIsMounted(parentA), fiber;\n if (parentB === b) return assertIsMounted(parentA), alternate;\n parentB = parentB.sibling;\n }\n throw Error(\"Unable to find node on an unmounted component.\");\n }\n if (a.return !== b.return) (a = parentA), (b = parentB);\n else {\n for (var didFindChild = !1, _child = parentA.child; _child; ) {\n if (_child === a) {\n didFindChild = !0;\n a = parentA;\n b = parentB;\n break;\n }\n if (_child === b) {\n didFindChild = !0;\n b = parentA;\n a = parentB;\n break;\n }\n _child = _child.sibling;\n }\n if (!didFindChild) {\n for (_child = parentB.child; _child; ) {\n if (_child === a) {\n didFindChild = !0;\n a = parentB;\n b = parentA;\n break;\n }\n if (_child === b) {\n didFindChild = !0;\n b = parentB;\n a = parentA;\n break;\n }\n _child = _child.sibling;\n }\n if (!didFindChild)\n throw Error(\n \"Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.\"\n );\n }\n }\n if (a.alternate !== b)\n throw Error(\n \"Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue.\"\n );\n }\n if (3 !== a.tag)\n throw Error(\"Unable to find node on an unmounted component.\");\n return a.stateNode.current === a ? fiber : alternate;\n }\n function findCurrentHostFiberImpl(node) {\n var tag = node.tag;\n if (5 === tag || 26 === tag || 27 === tag || 6 === tag) return node;\n for (node = node.child; null !== node; ) {\n tag = findCurrentHostFiberImpl(node);\n if (null !== tag) return tag;\n node = node.sibling;\n }\n return null;\n }\n function traverseVisibleHostChildren(\n child,\n searchWithinHosts,\n fn,\n a,\n b,\n c\n ) {\n for (; null !== child; ) {\n if (\n (5 === child.tag && fn(child, a, b, c)) ||\n ((22 !== child.tag || null === child.memoizedState) &&\n (searchWithinHosts || 5 !== child.tag) &&\n traverseVisibleHostChildren(\n child.child,\n searchWithinHosts,\n fn,\n a,\n b,\n c\n ))\n )\n return !0;\n child = child.sibling;\n }\n return !1;\n }\n function getFragmentParentHostFiber(fiber) {\n for (fiber = fiber.return; null !== fiber; ) {\n if (3 === fiber.tag || 5 === fiber.tag) return fiber;\n fiber = fiber.return;\n }\n return null;\n }\n function findFragmentInstanceSiblings(result, self, child) {\n for (\n var foundSelf =\n 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : !1;\n null !== child;\n\n ) {\n if (child === self)\n if (((foundSelf = !0), child.sibling)) child = child.sibling;\n else return !0;\n if (5 === child.tag) {\n if (foundSelf) return (result[1] = child), !0;\n result[0] = child;\n } else if (\n (22 !== child.tag || null === child.memoizedState) &&\n findFragmentInstanceSiblings(result, self, child.child, foundSelf)\n )\n return !0;\n child = child.sibling;\n }\n return !1;\n }\n function getInstanceFromHostFiber(fiber) {\n switch (fiber.tag) {\n case 5:\n return fiber.stateNode;\n case 3:\n return fiber.stateNode.containerInfo;\n default:\n throw Error(\"Expected to find a host node. This is a bug in React.\");\n }\n }\n function findNextSibling(child) {\n searchTarget = child;\n return !0;\n }\n function isFiberPrecedingCheck(child, target, boundary) {\n return child === boundary\n ? !0\n : child === target\n ? ((searchTarget = child), !0)\n : !1;\n }\n function isFiberFollowingCheck(child, target, boundary) {\n return child === boundary\n ? ((searchBoundary = child), !1)\n : child === target\n ? (null !== searchBoundary && (searchTarget = child), !0)\n : !1;\n }\n function getParentForFragmentAncestors(inst) {\n if (null === inst) return null;\n do inst = null === inst ? null : inst.return;\n while (inst && 5 !== inst.tag && 27 !== inst.tag && 3 !== inst.tag);\n return inst ? inst : null;\n }\n function getLowestCommonAncestor(instA, instB, getParent) {\n for (var depthA = 0, tempA = instA; tempA; tempA = getParent(tempA))\n depthA++;\n tempA = 0;\n for (var tempB = instB; tempB; tempB = getParent(tempB)) tempA++;\n for (; 0 < depthA - tempA; ) (instA = getParent(instA)), depthA--;\n for (; 0 < tempA - depthA; ) (instB = getParent(instB)), tempA--;\n for (; depthA--; ) {\n if (instA === instB || (null !== instB && instA === instB.alternate))\n return instA;\n instA = getParent(instA);\n instB = getParent(instB);\n }\n return null;\n }\n function getIteratorFn(maybeIterable) {\n if (null === maybeIterable || \"object\" !== typeof maybeIterable)\n return null;\n maybeIterable =\n (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||\n maybeIterable[\"@@iterator\"];\n return \"function\" === typeof maybeIterable ? maybeIterable : null;\n }\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function getComponentNameFromOwner(owner) {\n return \"number\" === typeof owner.tag\n ? getComponentNameFromFiber(owner)\n : \"string\" === typeof owner.name\n ? owner.name\n : null;\n }\n function getComponentNameFromFiber(fiber) {\n var type = fiber.type;\n switch (fiber.tag) {\n case 31:\n return \"Activity\";\n case 24:\n return \"Cache\";\n case 9:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case 10:\n return type.displayName || \"Context\";\n case 18:\n return \"DehydratedFragment\";\n case 11:\n return (\n (fiber = type.render),\n (fiber = fiber.displayName || fiber.name || \"\"),\n type.displayName ||\n (\"\" !== fiber ? \"ForwardRef(\" + fiber + \")\" : \"ForwardRef\")\n );\n case 7:\n return \"Fragment\";\n case 26:\n case 27:\n case 5:\n return type;\n case 4:\n return \"Portal\";\n case 3:\n return \"Root\";\n case 6:\n return \"Text\";\n case 16:\n return getComponentNameFromType(type);\n case 8:\n return type === REACT_STRICT_MODE_TYPE ? \"StrictMode\" : \"Mode\";\n case 22:\n return \"Offscreen\";\n case 12:\n return \"Profiler\";\n case 21:\n return \"Scope\";\n case 13:\n return \"Suspense\";\n case 19:\n return \"SuspenseList\";\n case 25:\n return \"TracingMarker\";\n case 30:\n return \"ViewTransition\";\n case 1:\n case 0:\n case 14:\n case 15:\n if (\"function\" === typeof type)\n return type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n break;\n case 29:\n type = fiber._debugInfo;\n if (null != type)\n for (var i = type.length - 1; 0 <= i; i--)\n if (\"string\" === typeof type[i].name) return type[i].name;\n if (null !== fiber.return)\n return getComponentNameFromFiber(fiber.return);\n }\n return null;\n }\n function createCursor(defaultValue) {\n return { current: defaultValue };\n }\n function pop(cursor, fiber) {\n 0 > index$jscomp$0\n ? console.error(\"Unexpected pop.\")\n : (fiber !== fiberStack[index$jscomp$0] &&\n console.error(\"Unexpected Fiber popped.\"),\n (cursor.current = valueStack[index$jscomp$0]),\n (valueStack[index$jscomp$0] = null),\n (fiberStack[index$jscomp$0] = null),\n index$jscomp$0--);\n }\n function push(cursor, value, fiber) {\n index$jscomp$0++;\n valueStack[index$jscomp$0] = cursor.current;\n fiberStack[index$jscomp$0] = fiber;\n cursor.current = value;\n }\n function requiredContext(c) {\n null === c &&\n console.error(\n \"Expected host context to exist. This error is likely caused by a bug in React. Please file an issue.\"\n );\n return c;\n }\n function pushHostContainer(fiber, nextRootInstance) {\n push(rootInstanceStackCursor, nextRootInstance, fiber);\n push(contextFiberStackCursor, fiber, fiber);\n push(contextStackCursor, null, fiber);\n var nextRootContext = nextRootInstance.nodeType;\n switch (nextRootContext) {\n case 9:\n case 11:\n nextRootContext = 9 === nextRootContext ? \"#document\" : \"#fragment\";\n nextRootInstance = (nextRootInstance =\n nextRootInstance.documentElement)\n ? (nextRootInstance = nextRootInstance.namespaceURI)\n ? getOwnHostContext(nextRootInstance)\n : HostContextNamespaceNone\n : HostContextNamespaceNone;\n break;\n default:\n if (\n ((nextRootContext = nextRootInstance.tagName),\n (nextRootInstance = nextRootInstance.namespaceURI))\n )\n (nextRootInstance = getOwnHostContext(nextRootInstance)),\n (nextRootInstance = getChildHostContextProd(\n nextRootInstance,\n nextRootContext\n ));\n else\n switch (nextRootContext) {\n case \"svg\":\n nextRootInstance = HostContextNamespaceSvg;\n break;\n case \"math\":\n nextRootInstance = HostContextNamespaceMath;\n break;\n default:\n nextRootInstance = HostContextNamespaceNone;\n }\n }\n nextRootContext = nextRootContext.toLowerCase();\n nextRootContext = updatedAncestorInfoDev(null, nextRootContext);\n nextRootContext = {\n context: nextRootInstance,\n ancestorInfo: nextRootContext\n };\n pop(contextStackCursor, fiber);\n push(contextStackCursor, nextRootContext, fiber);\n }\n function popHostContainer(fiber) {\n pop(contextStackCursor, fiber);\n pop(contextFiberStackCursor, fiber);\n pop(rootInstanceStackCursor, fiber);\n }\n function getHostContext() {\n return requiredContext(contextStackCursor.current);\n }\n function pushHostContext(fiber) {\n var stateHook = fiber.memoizedState;\n null !== stateHook &&\n ((HostTransitionContext._currentValue = stateHook.memoizedState),\n push(hostTransitionProviderCursor, fiber, fiber));\n stateHook = requiredContext(contextStackCursor.current);\n var type = fiber.type;\n var nextContext = getChildHostContextProd(stateHook.context, type);\n type = updatedAncestorInfoDev(stateHook.ancestorInfo, type);\n nextContext = { context: nextContext, ancestorInfo: type };\n stateHook !== nextContext &&\n (push(contextFiberStackCursor, fiber, fiber),\n push(contextStackCursor, nextContext, fiber));\n }\n function popHostContext(fiber) {\n contextFiberStackCursor.current === fiber &&\n (pop(contextStackCursor, fiber), pop(contextFiberStackCursor, fiber));\n hostTransitionProviderCursor.current === fiber &&\n (pop(hostTransitionProviderCursor, fiber),\n (HostTransitionContext._currentValue = NotPendingTransition));\n }\n function disabledLog() {}\n function disableLogs() {\n if (0 === disabledDepth) {\n prevLog = console.log;\n prevInfo = console.info;\n prevWarn = console.warn;\n prevError = console.error;\n prevGroup = console.group;\n prevGroupCollapsed = console.groupCollapsed;\n prevGroupEnd = console.groupEnd;\n var props = {\n configurable: !0,\n enumerable: !0,\n value: disabledLog,\n writable: !0\n };\n Object.defineProperties(console, {\n info: props,\n log: props,\n warn: props,\n error: props,\n group: props,\n groupCollapsed: props,\n groupEnd: props\n });\n }\n disabledDepth++;\n }\n function reenableLogs() {\n disabledDepth--;\n if (0 === disabledDepth) {\n var props = { configurable: !0, enumerable: !0, writable: !0 };\n Object.defineProperties(console, {\n log: assign({}, props, { value: prevLog }),\n info: assign({}, props, { value: prevInfo }),\n warn: assign({}, props, { value: prevWarn }),\n error: assign({}, props, { value: prevError }),\n group: assign({}, props, { value: prevGroup }),\n groupCollapsed: assign({}, props, { value: prevGroupCollapsed }),\n groupEnd: assign({}, props, { value: prevGroupEnd })\n });\n }\n 0 > disabledDepth &&\n console.error(\n \"disabledDepth fell below zero. This is a bug in React. Please file an issue.\"\n );\n }\n function formatOwnerStack(error) {\n var prevPrepareStackTrace = Error.prepareStackTrace;\n Error.prepareStackTrace = void 0;\n error = error.stack;\n Error.prepareStackTrace = prevPrepareStackTrace;\n error.startsWith(\"Error: react-stack-top-frame\\n\") &&\n (error = error.slice(29));\n prevPrepareStackTrace = error.indexOf(\"\\n\");\n -1 !== prevPrepareStackTrace &&\n (error = error.slice(prevPrepareStackTrace + 1));\n prevPrepareStackTrace = error.indexOf(\"react_stack_bottom_frame\");\n -1 !== prevPrepareStackTrace &&\n (prevPrepareStackTrace = error.lastIndexOf(\n \"\\n\",\n prevPrepareStackTrace\n ));\n if (-1 !== prevPrepareStackTrace)\n error = error.slice(0, prevPrepareStackTrace);\n else return \"\";\n return error;\n }\n function describeBuiltInComponentFrame(name) {\n if (void 0 === prefix)\n try {\n throw Error();\n } catch (x) {\n var match = x.stack.trim().match(/\\n( *(at )?)/);\n prefix = (match && match[1]) || \"\";\n suffix =\n -1 < x.stack.indexOf(\"\\n at\")\n ? \" (<anonymous>)\"\n : -1 < x.stack.indexOf(\"@\")\n ? \"@unknown:0:0\"\n : \"\";\n }\n return \"\\n\" + prefix + name + suffix;\n }\n function describeNativeComponentFrame(fn, construct) {\n if (!fn || reentry) return \"\";\n var frame = componentFrameCache.get(fn);\n if (void 0 !== frame) return frame;\n reentry = !0;\n frame = Error.prepareStackTrace;\n Error.prepareStackTrace = void 0;\n var previousDispatcher = null;\n previousDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = null;\n disableLogs();\n try {\n var RunInRootFrame = {\n DetermineComponentFrameRoot: function () {\n try {\n if (construct) {\n var Fake = function () {\n throw Error();\n };\n Object.defineProperty(Fake.prototype, \"props\", {\n set: function () {\n throw Error();\n }\n });\n if (\"object\" === typeof Reflect && Reflect.construct) {\n try {\n Reflect.construct(Fake, []);\n } catch (x) {\n var control = x;\n }\n Reflect.construct(fn, [], Fake);\n } else {\n try {\n Fake.call();\n } catch (x$0) {\n control = x$0;\n }\n fn.call(Fake.prototype);\n }\n } else {\n try {\n throw Error();\n } catch (x$1) {\n control = x$1;\n }\n (Fake = fn()) &&\n \"function\" === typeof Fake.catch &&\n Fake.catch(function () {});\n }\n } catch (sample) {\n if (sample && control && \"string\" === typeof sample.stack)\n return [sample.stack, control.stack];\n }\n return [null, null];\n }\n };\n RunInRootFrame.DetermineComponentFrameRoot.displayName =\n \"DetermineComponentFrameRoot\";\n var namePropDescriptor = Object.getOwnPropertyDescriptor(\n RunInRootFrame.DetermineComponentFrameRoot,\n \"name\"\n );\n namePropDescriptor &&\n namePropDescriptor.configurable &&\n Object.defineProperty(\n RunInRootFrame.DetermineComponentFrameRoot,\n \"name\",\n { value: \"DetermineComponentFrameRoot\" }\n );\n var _RunInRootFrame$Deter =\n RunInRootFrame.DetermineComponentFrameRoot(),\n sampleStack = _RunInRootFrame$Deter[0],\n controlStack = _RunInRootFrame$Deter[1];\n if (sampleStack && controlStack) {\n var sampleLines = sampleStack.split(\"\\n\"),\n controlLines = controlStack.split(\"\\n\");\n for (\n _RunInRootFrame$Deter = namePropDescriptor = 0;\n namePropDescriptor < sampleLines.length &&\n !sampleLines[namePropDescriptor].includes(\n \"DetermineComponentFrameRoot\"\n );\n\n )\n namePropDescriptor++;\n for (\n ;\n _RunInRootFrame$Deter < controlLines.length &&\n !controlLines[_RunInRootFrame$Deter].includes(\n \"DetermineComponentFrameRoot\"\n );\n\n )\n _RunInRootFrame$Deter++;\n if (\n namePropDescriptor === sampleLines.length ||\n _RunInRootFrame$Deter === controlLines.length\n )\n for (\n namePropDescriptor = sampleLines.length - 1,\n _RunInRootFrame$Deter = controlLines.length - 1;\n 1 <= namePropDescriptor &&\n 0 <= _RunInRootFrame$Deter &&\n sampleLines[namePropDescriptor] !==\n controlLines[_RunInRootFrame$Deter];\n\n )\n _RunInRootFrame$Deter--;\n for (\n ;\n 1 <= namePropDescriptor && 0 <= _RunInRootFrame$Deter;\n namePropDescriptor--, _RunInRootFrame$Deter--\n )\n if (\n sampleLines[namePropDescriptor] !==\n controlLines[_RunInRootFrame$Deter]\n ) {\n if (1 !== namePropDescriptor || 1 !== _RunInRootFrame$Deter) {\n do\n if (\n (namePropDescriptor--,\n _RunInRootFrame$Deter--,\n 0 > _RunInRootFrame$Deter ||\n sampleLines[namePropDescriptor] !==\n controlLines[_RunInRootFrame$Deter])\n ) {\n var _frame =\n \"\\n\" +\n sampleLines[namePropDescriptor].replace(\n \" at new \",\n \" at \"\n );\n fn.displayName &&\n _frame.includes(\"<anonymous>\") &&\n (_frame = _frame.replace(\"<anonymous>\", fn.displayName));\n \"function\" === typeof fn &&\n componentFrameCache.set(fn, _frame);\n return _frame;\n }\n while (1 <= namePropDescriptor && 0 <= _RunInRootFrame$Deter);\n }\n break;\n }\n }\n } finally {\n (reentry = !1),\n (ReactSharedInternals.H = previousDispatcher),\n reenableLogs(),\n (Error.prepareStackTrace = frame);\n }\n sampleLines = (sampleLines = fn ? fn.displayName || fn.name : \"\")\n ? describeBuiltInComponentFrame(sampleLines)\n : \"\";\n \"function\" === typeof fn && componentFrameCache.set(fn, sampleLines);\n return sampleLines;\n }\n function describeFiber(fiber, childFiber) {\n switch (fiber.tag) {\n case 26:\n case 27:\n case 5:\n return describeBuiltInComponentFrame(fiber.type);\n case 16:\n return describeBuiltInComponentFrame(\"Lazy\");\n case 13:\n return fiber.child !== childFiber && null !== childFiber\n ? describeBuiltInComponentFrame(\"Suspense Fallback\")\n : describeBuiltInComponentFrame(\"Suspense\");\n case 19:\n return describeBuiltInComponentFrame(\"SuspenseList\");\n case 0:\n case 15:\n return describeNativeComponentFrame(fiber.type, !1);\n case 11:\n return describeNativeComponentFrame(fiber.type.render, !1);\n case 1:\n return describeNativeComponentFrame(fiber.type, !0);\n case 31:\n return describeBuiltInComponentFrame(\"Activity\");\n case 30:\n return describeBuiltInComponentFrame(\"ViewTransition\");\n default:\n return \"\";\n }\n }\n function getStackByFiberInDevAndProd(workInProgress) {\n try {\n var info = \"\",\n previous = null;\n do {\n info += describeFiber(workInProgress, previous);\n var debugInfo = workInProgress._debugInfo;\n if (debugInfo)\n for (var i = debugInfo.length - 1; 0 <= i; i--) {\n var entry = debugInfo[i];\n if (\"string\" === typeof entry.name) {\n var JSCompiler_temp_const = info;\n a: {\n var name = entry.name,\n env = entry.env,\n location = entry.debugLocation;\n if (null != location) {\n var childStack = formatOwnerStack(location),\n idx = childStack.lastIndexOf(\"\\n\"),\n lastLine =\n -1 === idx ? childStack : childStack.slice(idx + 1);\n if (-1 !== lastLine.indexOf(name)) {\n var JSCompiler_inline_result = \"\\n\" + lastLine;\n break a;\n }\n }\n JSCompiler_inline_result = describeBuiltInComponentFrame(\n name + (env ? \" [\" + env + \"]\" : \"\")\n );\n }\n info = JSCompiler_temp_const + JSCompiler_inline_result;\n }\n }\n previous = workInProgress;\n workInProgress = workInProgress.return;\n } while (workInProgress);\n return info;\n } catch (x) {\n return \"\\nError generating stack: \" + x.message + \"\\n\" + x.stack;\n }\n }\n function describeFunctionComponentFrameWithoutLineNumber(fn) {\n return (fn = fn ? fn.displayName || fn.name : \"\")\n ? describeBuiltInComponentFrame(fn)\n : \"\";\n }\n function getCurrentFiberOwnerNameInDevOrNull() {\n if (null === current) return null;\n var owner = current._debugOwner;\n return null != owner ? getComponentNameFromOwner(owner) : null;\n }\n function getCurrentFiberStackInDev() {\n if (null === current) return \"\";\n var workInProgress = current;\n try {\n var info = \"\";\n 6 === workInProgress.tag && (workInProgress = workInProgress.return);\n switch (workInProgress.tag) {\n case 26:\n case 27:\n case 5:\n info += describeBuiltInComponentFrame(workInProgress.type);\n break;\n case 13:\n info += describeBuiltInComponentFrame(\"Suspense\");\n break;\n case 19:\n info += describeBuiltInComponentFrame(\"SuspenseList\");\n break;\n case 31:\n info += describeBuiltInComponentFrame(\"Activity\");\n break;\n case 30:\n info += describeBuiltInComponentFrame(\"ViewTransition\");\n break;\n case 0:\n case 15:\n case 1:\n workInProgress._debugOwner ||\n \"\" !== info ||\n (info += describeFunctionComponentFrameWithoutLineNumber(\n workInProgress.type\n ));\n break;\n case 11:\n workInProgress._debugOwner ||\n \"\" !== info ||\n (info += describeFunctionComponentFrameWithoutLineNumber(\n workInProgress.type.render\n ));\n }\n for (; workInProgress; )\n if (\"number\" === typeof workInProgress.tag) {\n var fiber = workInProgress;\n workInProgress = fiber._debugOwner;\n var debugStack = fiber._debugStack;\n if (workInProgress && debugStack) {\n var formattedStack = formatOwnerStack(debugStack);\n \"\" !== formattedStack && (info += \"\\n\" + formattedStack);\n }\n } else if (null != workInProgress.debugStack) {\n var ownerStack = workInProgress.debugStack;\n (workInProgress = workInProgress.owner) &&\n ownerStack &&\n (info += \"\\n\" + formatOwnerStack(ownerStack));\n } else break;\n var JSCompiler_inline_result = info;\n } catch (x) {\n JSCompiler_inline_result =\n \"\\nError generating stack: \" + x.message + \"\\n\" + x.stack;\n }\n return JSCompiler_inline_result;\n }\n function runWithFiberInDEV(fiber, callback, arg0, arg1, arg2, arg3, arg4) {\n var previousFiber = current;\n setCurrentFiber(fiber);\n try {\n return null !== fiber && fiber._debugTask\n ? fiber._debugTask.run(\n callback.bind(null, arg0, arg1, arg2, arg3, arg4)\n )\n : callback(arg0, arg1, arg2, arg3, arg4);\n } finally {\n setCurrentFiber(previousFiber);\n }\n throw Error(\n \"runWithFiberInDEV should never be called in production. This is a bug in React.\"\n );\n }\n function setCurrentFiber(fiber) {\n ReactSharedInternals.getCurrentStack =\n null === fiber ? null : getCurrentFiberStackInDev;\n isRendering = !1;\n current = fiber;\n }\n function typeName(value) {\n return (\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\"\n );\n }\n function willCoercionThrow(value) {\n try {\n return testStringCoercion(value), !1;\n } catch (e) {\n return !0;\n }\n }\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkAttributeStringCoercion(value, attributeName) {\n if (willCoercionThrow(value))\n return (\n console.error(\n \"The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before using it here.\",\n attributeName,\n typeName(value)\n ),\n testStringCoercion(value)\n );\n }\n function checkCSSPropertyStringCoercion(value, propName) {\n if (willCoercionThrow(value))\n return (\n console.error(\n \"The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before using it here.\",\n propName,\n typeName(value)\n ),\n testStringCoercion(value)\n );\n }\n function checkFormFieldValueStringCoercion(value) {\n if (willCoercionThrow(value))\n return (\n console.error(\n \"Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before using it here.\",\n typeName(value)\n ),\n testStringCoercion(value)\n );\n }\n function injectInternals(internals) {\n if (\"undefined\" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) return !1;\n var hook = __REACT_DEVTOOLS_GLOBAL_HOOK__;\n if (hook.isDisabled) return !0;\n if (!hook.supportsFiber)\n return (\n console.error(\n \"The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://react.dev/link/react-devtools\"\n ),\n !0\n );\n try {\n (rendererID = hook.inject(internals)), (injectedHook = hook);\n } catch (err) {\n console.error(\"React instrumentation encountered an error: %o.\", err);\n }\n return hook.checkDCE ? !0 : !1;\n }\n function setIsStrictModeForDevtools(newIsStrictMode) {\n \"function\" === typeof log$1 &&\n unstable_setDisableYieldValue(newIsStrictMode);\n if (injectedHook && \"function\" === typeof injectedHook.setStrictMode)\n try {\n injectedHook.setStrictMode(rendererID, newIsStrictMode);\n } catch (err) {\n hasLoggedError ||\n ((hasLoggedError = !0),\n console.error(\n \"React instrumentation encountered an error: %o\",\n err\n ));\n }\n }\n function clz32Fallback(x) {\n x >>>= 0;\n return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;\n }\n function getHighestPriorityLanes(lanes) {\n var pendingSyncLanes = lanes & 42;\n if (0 !== pendingSyncLanes) return pendingSyncLanes;\n switch (lanes & -lanes) {\n case 1:\n return 1;\n case 2:\n return 2;\n case 4:\n return 4;\n case 8:\n return 8;\n case 16:\n return 16;\n case 32:\n return 32;\n case 64:\n return 64;\n case 128:\n return 128;\n case 256:\n case 512:\n case 1024:\n case 2048:\n case 4096:\n case 8192:\n case 16384:\n case 32768:\n case 65536:\n case 131072:\n return lanes & 261888;\n case 262144:\n case 524288:\n case 1048576:\n case 2097152:\n return lanes & 3932160;\n case 4194304:\n case 8388608:\n case 16777216:\n case 33554432:\n return lanes & 62914560;\n case 67108864:\n return 67108864;\n case 134217728:\n return 134217728;\n case 268435456:\n return 268435456;\n case 536870912:\n return 536870912;\n case 1073741824:\n return 0;\n default:\n return (\n console.error(\n \"Should have found matching lanes. This is a bug in React.\"\n ),\n lanes\n );\n }\n }\n function getNextLanes(root, wipLanes, rootHasPendingCommit) {\n var pendingLanes = root.pendingLanes;\n if (0 === pendingLanes) return 0;\n var nextLanes = 0,\n suspendedLanes = root.suspendedLanes,\n pingedLanes = root.pingedLanes;\n root = root.warmLanes;\n var nonIdlePendingLanes = pendingLanes & 134217727;\n 0 !== nonIdlePendingLanes\n ? ((pendingLanes = nonIdlePendingLanes & ~suspendedLanes),\n 0 !== pendingLanes\n ? (nextLanes = getHighestPriorityLanes(pendingLanes))\n : ((pingedLanes &= nonIdlePendingLanes),\n 0 !== pingedLanes\n ? (nextLanes = getHighestPriorityLanes(pingedLanes))\n : rootHasPendingCommit ||\n ((rootHasPendingCommit = nonIdlePendingLanes & ~root),\n 0 !== rootHasPendingCommit &&\n (nextLanes =\n getHighestPriorityLanes(rootHasPendingCommit)))))\n : ((nonIdlePendingLanes = pendingLanes & ~suspendedLanes),\n 0 !== nonIdlePendingLanes\n ? (nextLanes = getHighestPriorityLanes(nonIdlePendingLanes))\n : 0 !== pingedLanes\n ? (nextLanes = getHighestPriorityLanes(pingedLanes))\n : rootHasPendingCommit ||\n ((rootHasPendingCommit = pendingLanes & ~root),\n 0 !== rootHasPendingCommit &&\n (nextLanes = getHighestPriorityLanes(rootHasPendingCommit))));\n return 0 === nextLanes\n ? 0\n : 0 !== wipLanes &&\n wipLanes !== nextLanes &&\n 0 === (wipLanes & suspendedLanes) &&\n ((suspendedLanes = nextLanes & -nextLanes),\n (rootHasPendingCommit = wipLanes & -wipLanes),\n suspendedLanes >= rootHasPendingCommit ||\n (32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)))\n ? wipLanes\n : nextLanes;\n }\n function checkIfRootIsPrerendering(root, renderLanes) {\n return (\n 0 ===\n (root.pendingLanes &\n ~(root.suspendedLanes & ~root.pingedLanes) &\n renderLanes)\n );\n }\n function computeExpirationTime(lane, currentTime) {\n switch (lane) {\n case 1:\n case 2:\n case 4:\n case 8:\n case 64:\n return currentTime + 250;\n case 16:\n case 32:\n case 128:\n case 256:\n case 512:\n case 1024:\n case 2048:\n case 4096:\n case 8192:\n case 16384:\n case 32768:\n case 65536:\n case 131072:\n case 262144:\n case 524288:\n case 1048576:\n case 2097152:\n return currentTime + 5e3;\n case 4194304:\n case 8388608:\n case 16777216:\n case 33554432:\n return -1;\n case 67108864:\n case 134217728:\n case 268435456:\n case 536870912:\n case 1073741824:\n return -1;\n default:\n return (\n console.error(\n \"Should have found matching lanes. This is a bug in React.\"\n ),\n -1\n );\n }\n }\n function claimNextRetryLane() {\n var lane = nextRetryLane;\n nextRetryLane <<= 1;\n 0 === (nextRetryLane & 62914560) && (nextRetryLane = 4194304);\n return lane;\n }\n function createLaneMap(initial) {\n for (var laneMap = [], i = 0; 31 > i; i++) laneMap.push(initial);\n return laneMap;\n }\n function markRootUpdated$1(root, updateLane) {\n root.pendingLanes |= updateLane;\n 268435456 !== updateLane &&\n ((root.suspendedLanes = 0),\n (root.pingedLanes = 0),\n (root.warmLanes = 0));\n }\n function markRootFinished(\n root,\n finishedLanes,\n remainingLanes,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes\n ) {\n var previouslyPendingLanes = root.pendingLanes;\n root.pendingLanes = remainingLanes;\n root.suspendedLanes = 0;\n root.pingedLanes = 0;\n root.warmLanes = 0;\n root.expiredLanes &= remainingLanes;\n root.entangledLanes &= remainingLanes;\n root.errorRecoveryDisabledLanes &= remainingLanes;\n root.shellSuspendCounter = 0;\n var entanglements = root.entanglements,\n expirationTimes = root.expirationTimes,\n hiddenUpdates = root.hiddenUpdates;\n for (\n remainingLanes = previouslyPendingLanes & ~remainingLanes;\n 0 < remainingLanes;\n\n ) {\n var index = 31 - clz32(remainingLanes),\n lane = 1 << index;\n entanglements[index] = 0;\n expirationTimes[index] = -1;\n var hiddenUpdatesForLane = hiddenUpdates[index];\n if (null !== hiddenUpdatesForLane)\n for (\n hiddenUpdates[index] = null, index = 0;\n index < hiddenUpdatesForLane.length;\n index++\n ) {\n var update = hiddenUpdatesForLane[index];\n null !== update && (update.lane &= -536870913);\n }\n remainingLanes &= ~lane;\n }\n 0 !== spawnedLane && markSpawnedDeferredLane(root, spawnedLane, 0);\n 0 !== suspendedRetryLanes &&\n 0 === updatedLanes &&\n 0 !== root.tag &&\n (root.suspendedLanes |=\n suspendedRetryLanes & ~(previouslyPendingLanes & ~finishedLanes));\n }\n function markSpawnedDeferredLane(root, spawnedLane, entangledLanes) {\n root.pendingLanes |= spawnedLane;\n root.suspendedLanes &= ~spawnedLane;\n var spawnedLaneIndex = 31 - clz32(spawnedLane);\n root.entangledLanes |= spawnedLane;\n root.entanglements[spawnedLaneIndex] =\n root.entanglements[spawnedLaneIndex] |\n 1073741824 |\n (entangledLanes & 261930);\n }\n function markRootEntangled(root, entangledLanes) {\n var rootEntangledLanes = (root.entangledLanes |= entangledLanes);\n for (root = root.entanglements; rootEntangledLanes; ) {\n var index = 31 - clz32(rootEntangledLanes),\n lane = 1 << index;\n (lane & entangledLanes) | (root[index] & entangledLanes) &&\n (root[index] |= entangledLanes);\n rootEntangledLanes &= ~lane;\n }\n }\n function getBumpedLaneForHydration(root, renderLanes) {\n var renderLane = renderLanes & -renderLanes;\n renderLane =\n 0 !== (renderLane & 42)\n ? 1\n : getBumpedLaneForHydrationByLane(renderLane);\n return 0 !== (renderLane & (root.suspendedLanes | renderLanes))\n ? 0\n : renderLane;\n }\n function getBumpedLaneForHydrationByLane(lane) {\n switch (lane) {\n case 2:\n lane = 1;\n break;\n case 8:\n lane = 4;\n break;\n case 32:\n lane = 16;\n break;\n case 256:\n case 512:\n case 1024:\n case 2048:\n case 4096:\n case 8192:\n case 16384:\n case 32768:\n case 65536:\n case 131072:\n case 262144:\n case 524288:\n case 1048576:\n case 2097152:\n case 4194304:\n case 8388608:\n case 16777216:\n case 33554432:\n lane = 128;\n break;\n case 268435456:\n lane = 134217728;\n break;\n default:\n lane = 0;\n }\n return lane;\n }\n function addFiberToLanesMap(root, fiber, lanes) {\n if (isDevToolsPresent)\n for (root = root.pendingUpdatersLaneMap; 0 < lanes; ) {\n var index = 31 - clz32(lanes),\n lane = 1 << index;\n root[index].add(fiber);\n lanes &= ~lane;\n }\n }\n function movePendingFibersToMemoized(root, lanes) {\n if (isDevToolsPresent)\n for (\n var pendingUpdatersLaneMap = root.pendingUpdatersLaneMap,\n memoizedUpdaters = root.memoizedUpdaters;\n 0 < lanes;\n\n ) {\n var index = 31 - clz32(lanes);\n root = 1 << index;\n index = pendingUpdatersLaneMap[index];\n 0 < index.size &&\n (index.forEach(function (fiber) {\n var alternate = fiber.alternate;\n (null !== alternate && memoizedUpdaters.has(alternate)) ||\n memoizedUpdaters.add(fiber);\n }),\n index.clear());\n lanes &= ~root;\n }\n }\n function lanesToEventPriority(lanes) {\n lanes &= -lanes;\n return 0 !== DiscreteEventPriority && DiscreteEventPriority < lanes\n ? 0 !== ContinuousEventPriority && ContinuousEventPriority < lanes\n ? 0 !== (lanes & 134217727)\n ? DefaultEventPriority\n : IdleEventPriority\n : ContinuousEventPriority\n : DiscreteEventPriority;\n }\n function resolveUpdatePriority() {\n var updatePriority = ReactDOMSharedInternals.p;\n if (0 !== updatePriority) return updatePriority;\n updatePriority = window.event;\n return void 0 === updatePriority\n ? DefaultEventPriority\n : getEventPriority(updatePriority.type);\n }\n function runWithPriority(priority, fn) {\n var previousPriority = ReactDOMSharedInternals.p;\n try {\n return (ReactDOMSharedInternals.p = priority), fn();\n } finally {\n ReactDOMSharedInternals.p = previousPriority;\n }\n }\n function detachDeletedInstance(node) {\n delete node[internalInstanceKey];\n delete node[internalPropsKey];\n delete node[internalEventHandlersKey];\n delete node[internalEventHandlerListenersKey];\n delete node[internalEventHandlesSetKey];\n }\n function getClosestInstanceFromNode(targetNode) {\n var targetInst;\n if ((targetInst = targetNode[internalInstanceKey])) return targetInst;\n for (var parentNode = targetNode.parentNode; parentNode; ) {\n if (\n (targetInst =\n parentNode[internalContainerInstanceKey] ||\n parentNode[internalInstanceKey])\n ) {\n parentNode = targetInst.alternate;\n if (\n null !== targetInst.child ||\n (null !== parentNode && null !== parentNode.child)\n )\n for (\n targetNode = getParentHydrationBoundary(targetNode);\n null !== targetNode;\n\n ) {\n if ((parentNode = targetNode[internalInstanceKey]))\n return parentNode;\n targetNode = getParentHydrationBoundary(targetNode);\n }\n return targetInst;\n }\n targetNode = parentNode;\n parentNode = targetNode.parentNode;\n }\n return null;\n }\n function getInstanceFromNode(node) {\n if (\n (node = node[internalInstanceKey] || node[internalContainerInstanceKey])\n ) {\n var tag = node.tag;\n if (\n 5 === tag ||\n 6 === tag ||\n 13 === tag ||\n 31 === tag ||\n 26 === tag ||\n 27 === tag ||\n 3 === tag\n )\n return node;\n }\n return null;\n }\n function getNodeFromInstance(inst) {\n var tag = inst.tag;\n if (5 === tag || 26 === tag || 27 === tag || 6 === tag)\n return inst.stateNode;\n throw Error(\"getNodeFromInstance: Invalid argument.\");\n }\n function getResourcesFromRoot(root) {\n var resources = root[internalRootNodeResourcesKey];\n resources ||\n (resources = root[internalRootNodeResourcesKey] =\n { hoistableStyles: new Map(), hoistableScripts: new Map() });\n return resources;\n }\n function markNodeAsHoistable(node) {\n node[internalHoistableMarker] = !0;\n }\n function registerTwoPhaseEvent(registrationName, dependencies) {\n registerDirectEvent(registrationName, dependencies);\n registerDirectEvent(registrationName + \"Capture\", dependencies);\n }\n function registerDirectEvent(registrationName, dependencies) {\n registrationNameDependencies[registrationName] &&\n console.error(\n \"EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.\",\n registrationName\n );\n registrationNameDependencies[registrationName] = dependencies;\n var lowerCasedName = registrationName.toLowerCase();\n possibleRegistrationNames[lowerCasedName] = registrationName;\n \"onDoubleClick\" === registrationName &&\n (possibleRegistrationNames.ondblclick = registrationName);\n for (\n registrationName = 0;\n registrationName < dependencies.length;\n registrationName++\n )\n allNativeEvents.add(dependencies[registrationName]);\n }\n function checkControlledValueProps(tagName, props) {\n hasReadOnlyValue[props.type] ||\n props.onChange ||\n props.onInput ||\n props.readOnly ||\n props.disabled ||\n null == props.value ||\n (\"select\" === tagName\n ? console.error(\n \"You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set `onChange`.\"\n )\n : console.error(\n \"You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.\"\n ));\n props.onChange ||\n props.readOnly ||\n props.disabled ||\n null == props.checked ||\n console.error(\n \"You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.\"\n );\n }\n function isAttributeNameSafe(attributeName) {\n if (hasOwnProperty.call(validatedAttributeNameCache, attributeName))\n return !0;\n if (hasOwnProperty.call(illegalAttributeNameCache, attributeName))\n return !1;\n if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName))\n return (validatedAttributeNameCache[attributeName] = !0);\n illegalAttributeNameCache[attributeName] = !0;\n console.error(\"Invalid attribute name: `%s`\", attributeName);\n return !1;\n }\n function pushMutationContext() {\n var prev = viewTransitionMutationContext;\n viewTransitionMutationContext = !1;\n return prev;\n }\n function getValueForAttributeOnCustomComponent(node, name, expected) {\n if (isAttributeNameSafe(name)) {\n if (!node.hasAttribute(name)) {\n switch (typeof expected) {\n case \"symbol\":\n case \"object\":\n return expected;\n case \"function\":\n return expected;\n case \"boolean\":\n if (!1 === expected) return expected;\n }\n return void 0 === expected ? void 0 : null;\n }\n node = node.getAttribute(name);\n if (\"\" === node && !0 === expected) return !0;\n checkAttributeStringCoercion(expected, name);\n return node === \"\" + expected ? expected : node;\n }\n }\n function setValueForAttribute(node, name, value) {\n if (isAttributeNameSafe(name))\n if (null === value) node.removeAttribute(name);\n else {\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n node.removeAttribute(name);\n return;\n case \"boolean\":\n var prefix = name.toLowerCase().slice(0, 5);\n if (\"data-\" !== prefix && \"aria-\" !== prefix) {\n node.removeAttribute(name);\n return;\n }\n }\n checkAttributeStringCoercion(value, name);\n node.setAttribute(name, \"\" + value);\n }\n }\n function setValueForKnownAttribute(node, name, value) {\n if (null === value) node.removeAttribute(name);\n else {\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n node.removeAttribute(name);\n return;\n }\n checkAttributeStringCoercion(value, name);\n node.setAttribute(name, \"\" + value);\n }\n }\n function setValueForNamespacedAttribute(node, namespace, name, value) {\n if (null === value) node.removeAttribute(name);\n else {\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n node.removeAttribute(name);\n return;\n }\n checkAttributeStringCoercion(value, name);\n node.setAttributeNS(namespace, name, \"\" + value);\n }\n }\n function getToStringValue(value) {\n switch (typeof value) {\n case \"bigint\":\n case \"boolean\":\n case \"number\":\n case \"string\":\n case \"undefined\":\n return value;\n case \"object\":\n return checkFormFieldValueStringCoercion(value), value;\n default:\n return \"\";\n }\n }\n function isCheckable(elem) {\n var type = elem.type;\n return (\n (elem = elem.nodeName) &&\n \"input\" === elem.toLowerCase() &&\n (\"checkbox\" === type || \"radio\" === type)\n );\n }\n function trackValueOnNode(node, valueField, currentValue) {\n var descriptor = Object.getOwnPropertyDescriptor(\n node.constructor.prototype,\n valueField\n );\n if (\n !node.hasOwnProperty(valueField) &&\n \"undefined\" !== typeof descriptor &&\n \"function\" === typeof descriptor.get &&\n \"function\" === typeof descriptor.set\n ) {\n var get = descriptor.get,\n set = descriptor.set;\n Object.defineProperty(node, valueField, {\n configurable: !0,\n get: function () {\n return get.call(this);\n },\n set: function (value) {\n checkFormFieldValueStringCoercion(value);\n currentValue = \"\" + value;\n set.call(this, value);\n }\n });\n Object.defineProperty(node, valueField, {\n enumerable: descriptor.enumerable\n });\n return {\n getValue: function () {\n return currentValue;\n },\n setValue: function (value) {\n checkFormFieldValueStringCoercion(value);\n currentValue = \"\" + value;\n },\n stopTracking: function () {\n node._valueTracker = null;\n delete node[valueField];\n }\n };\n }\n }\n function track(node) {\n if (!node._valueTracker) {\n var valueField = isCheckable(node) ? \"checked\" : \"value\";\n node._valueTracker = trackValueOnNode(\n node,\n valueField,\n \"\" + node[valueField]\n );\n }\n }\n function updateValueIfChanged(node) {\n if (!node) return !1;\n var tracker = node._valueTracker;\n if (!tracker) return !0;\n var lastValue = tracker.getValue();\n var value = \"\";\n node &&\n (value = isCheckable(node)\n ? node.checked\n ? \"true\"\n : \"false\"\n : node.value);\n node = value;\n return node !== lastValue ? (tracker.setValue(node), !0) : !1;\n }\n function getActiveElement(doc) {\n doc = doc || (\"undefined\" !== typeof document ? document : void 0);\n if (\"undefined\" === typeof doc) return null;\n try {\n return doc.activeElement || doc.body;\n } catch (e) {\n return doc.body;\n }\n }\n function escapeSelectorAttributeValueInsideDoubleQuotes(value) {\n return value.replace(\n escapeSelectorAttributeValueInsideDoubleQuotesRegex,\n function (ch) {\n return \"\\\\\" + ch.charCodeAt(0).toString(16) + \" \";\n }\n );\n }\n function validateInputProps(element, props) {\n void 0 === props.checked ||\n void 0 === props.defaultChecked ||\n didWarnCheckedDefaultChecked ||\n (console.error(\n \"%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components\",\n getCurrentFiberOwnerNameInDevOrNull() || \"A component\",\n props.type\n ),\n (didWarnCheckedDefaultChecked = !0));\n void 0 === props.value ||\n void 0 === props.defaultValue ||\n didWarnValueDefaultValue$1 ||\n (console.error(\n \"%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components\",\n getCurrentFiberOwnerNameInDevOrNull() || \"A component\",\n props.type\n ),\n (didWarnValueDefaultValue$1 = !0));\n }\n function updateInput(\n element,\n value,\n defaultValue,\n lastDefaultValue,\n checked,\n defaultChecked,\n type,\n name\n ) {\n element.name = \"\";\n null != type &&\n \"function\" !== typeof type &&\n \"symbol\" !== typeof type &&\n \"boolean\" !== typeof type\n ? (checkAttributeStringCoercion(type, \"type\"), (element.type = type))\n : element.removeAttribute(\"type\");\n if (null != value)\n if (\"number\" === type) {\n if ((0 === value && \"\" === element.value) || element.value != value)\n element.value = \"\" + getToStringValue(value);\n } else\n element.value !== \"\" + getToStringValue(value) &&\n (element.value = \"\" + getToStringValue(value));\n else\n (\"submit\" !== type && \"reset\" !== type) ||\n element.removeAttribute(\"value\");\n null != value\n ? setDefaultValue(element, type, getToStringValue(value))\n : null != defaultValue\n ? setDefaultValue(element, type, getToStringValue(defaultValue))\n : null != lastDefaultValue && element.removeAttribute(\"value\");\n null == checked &&\n null != defaultChecked &&\n (element.defaultChecked = !!defaultChecked);\n null != checked &&\n (element.checked =\n checked &&\n \"function\" !== typeof checked &&\n \"symbol\" !== typeof checked);\n null != name &&\n \"function\" !== typeof name &&\n \"symbol\" !== typeof name &&\n \"boolean\" !== typeof name\n ? (checkAttributeStringCoercion(name, \"name\"),\n (element.name = \"\" + getToStringValue(name)))\n : element.removeAttribute(\"name\");\n }\n function initInput(\n element,\n value,\n defaultValue,\n checked,\n defaultChecked,\n type,\n name,\n isHydrating\n ) {\n null != type &&\n \"function\" !== typeof type &&\n \"symbol\" !== typeof type &&\n \"boolean\" !== typeof type &&\n (checkAttributeStringCoercion(type, \"type\"), (element.type = type));\n if (null != value || null != defaultValue) {\n if (\n !(\n (\"submit\" !== type && \"reset\" !== type) ||\n (void 0 !== value && null !== value)\n )\n ) {\n track(element);\n return;\n }\n defaultValue =\n null != defaultValue ? \"\" + getToStringValue(defaultValue) : \"\";\n value = null != value ? \"\" + getToStringValue(value) : defaultValue;\n isHydrating || value === element.value || (element.value = value);\n element.defaultValue = value;\n }\n checked = null != checked ? checked : defaultChecked;\n checked =\n \"function\" !== typeof checked &&\n \"symbol\" !== typeof checked &&\n !!checked;\n element.checked = isHydrating ? element.checked : !!checked;\n element.defaultChecked = !!checked;\n null != name &&\n \"function\" !== typeof name &&\n \"symbol\" !== typeof name &&\n \"boolean\" !== typeof name &&\n (checkAttributeStringCoercion(name, \"name\"), (element.name = name));\n track(element);\n }\n function setDefaultValue(node, type, value) {\n (\"number\" === type && getActiveElement(node.ownerDocument) === node) ||\n node.defaultValue === \"\" + value ||\n (node.defaultValue = \"\" + value);\n }\n function validateOptionProps(element, props) {\n null == props.value &&\n (\"object\" === typeof props.children && null !== props.children\n ? React.Children.forEach(props.children, function (child) {\n null == child ||\n \"string\" === typeof child ||\n \"number\" === typeof child ||\n \"bigint\" === typeof child ||\n didWarnInvalidChild ||\n ((didWarnInvalidChild = !0),\n console.error(\n \"Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to <option>.\"\n ));\n })\n : null == props.dangerouslySetInnerHTML ||\n didWarnInvalidInnerHTML ||\n ((didWarnInvalidInnerHTML = !0),\n console.error(\n \"Pass a `value` prop if you set dangerouslyInnerHTML so React knows which value should be selected.\"\n )));\n null == props.selected ||\n didWarnSelectedSetOnOption ||\n (console.error(\n \"Use the `defaultValue` or `value` props on <select> instead of setting `selected` on <option>.\"\n ),\n (didWarnSelectedSetOnOption = !0));\n }\n function getDeclarationErrorAddendum() {\n var ownerName = getCurrentFiberOwnerNameInDevOrNull();\n return ownerName\n ? \"\\n\\nCheck the render method of `\" + ownerName + \"`.\"\n : \"\";\n }\n function updateOptions(node, multiple, propValue, setDefaultSelected) {\n node = node.options;\n if (multiple) {\n multiple = {};\n for (var i = 0; i < propValue.length; i++)\n multiple[\"$\" + propValue[i]] = !0;\n for (propValue = 0; propValue < node.length; propValue++)\n (i = multiple.hasOwnProperty(\"$\" + node[propValue].value)),\n node[propValue].selected !== i && (node[propValue].selected = i),\n i && setDefaultSelected && (node[propValue].defaultSelected = !0);\n } else {\n propValue = \"\" + getToStringValue(propValue);\n multiple = null;\n for (i = 0; i < node.length; i++) {\n if (node[i].value === propValue) {\n node[i].selected = !0;\n setDefaultSelected && (node[i].defaultSelected = !0);\n return;\n }\n null !== multiple || node[i].disabled || (multiple = node[i]);\n }\n null !== multiple && (multiple.selected = !0);\n }\n }\n function validateSelectProps(element, props) {\n for (element = 0; element < valuePropNames.length; element++) {\n var propName = valuePropNames[element];\n if (null != props[propName]) {\n var propNameIsArray = isArrayImpl(props[propName]);\n props.multiple && !propNameIsArray\n ? console.error(\n \"The `%s` prop supplied to <select> must be an array if `multiple` is true.%s\",\n propName,\n getDeclarationErrorAddendum()\n )\n : !props.multiple &&\n propNameIsArray &&\n console.error(\n \"The `%s` prop supplied to <select> must be a scalar value if `multiple` is false.%s\",\n propName,\n getDeclarationErrorAddendum()\n );\n }\n }\n void 0 === props.value ||\n void 0 === props.defaultValue ||\n didWarnValueDefaultValue ||\n (console.error(\n \"Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://react.dev/link/controlled-components\"\n ),\n (didWarnValueDefaultValue = !0));\n }\n function validateTextareaProps(element, props) {\n void 0 === props.value ||\n void 0 === props.defaultValue ||\n didWarnValDefaultVal ||\n (console.error(\n \"%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://react.dev/link/controlled-components\",\n getCurrentFiberOwnerNameInDevOrNull() || \"A component\"\n ),\n (didWarnValDefaultVal = !0));\n null != props.children &&\n null == props.value &&\n console.error(\n \"Use the `defaultValue` or `value` props instead of setting children on <textarea>.\"\n );\n }\n function updateTextarea(element, value, defaultValue) {\n if (\n null != value &&\n ((value = \"\" + getToStringValue(value)),\n value !== element.value && (element.value = value),\n null == defaultValue)\n ) {\n element.defaultValue !== value && (element.defaultValue = value);\n return;\n }\n element.defaultValue =\n null != defaultValue ? \"\" + getToStringValue(defaultValue) : \"\";\n }\n function initTextarea(element, value, defaultValue, children) {\n if (null == value) {\n if (null != children) {\n if (null != defaultValue)\n throw Error(\n \"If you supply `defaultValue` on a <textarea>, do not pass children.\"\n );\n if (isArrayImpl(children)) {\n if (1 < children.length)\n throw Error(\"<textarea> can only have at most one child.\");\n children = children[0];\n }\n defaultValue = children;\n }\n null == defaultValue && (defaultValue = \"\");\n value = defaultValue;\n }\n defaultValue = getToStringValue(value);\n element.defaultValue = defaultValue;\n children = element.textContent;\n children === defaultValue &&\n \"\" !== children &&\n null !== children &&\n (element.value = children);\n track(element);\n }\n function findNotableNode(node, indent) {\n return void 0 === node.serverProps &&\n 0 === node.serverTail.length &&\n 1 === node.children.length &&\n 3 < node.distanceFromLeaf &&\n node.distanceFromLeaf > 15 - indent\n ? findNotableNode(node.children[0], indent)\n : node;\n }\n function indentation(indent) {\n return \" \" + \" \".repeat(indent);\n }\n function added(indent) {\n return \"+ \" + \" \".repeat(indent);\n }\n function removed(indent) {\n return \"- \" + \" \".repeat(indent);\n }\n function describeFiberType(fiber) {\n switch (fiber.tag) {\n case 26:\n case 27:\n case 5:\n return fiber.type;\n case 16:\n return \"Lazy\";\n case 31:\n return \"Activity\";\n case 13:\n return \"Suspense\";\n case 19:\n return \"SuspenseList\";\n case 0:\n case 15:\n return (fiber = fiber.type), fiber.displayName || fiber.name || null;\n case 11:\n return (\n (fiber = fiber.type.render), fiber.displayName || fiber.name || null\n );\n case 1:\n return (fiber = fiber.type), fiber.displayName || fiber.name || null;\n default:\n return null;\n }\n }\n function describeTextNode(content, maxLength) {\n return needsEscaping.test(content)\n ? ((content = JSON.stringify(content)),\n content.length > maxLength - 2\n ? 8 > maxLength\n ? '{\"...\"}'\n : \"{\" + content.slice(0, maxLength - 7) + '...\"}'\n : \"{\" + content + \"}\")\n : content.length > maxLength\n ? 5 > maxLength\n ? '{\"...\"}'\n : content.slice(0, maxLength - 3) + \"...\"\n : content;\n }\n function describeTextDiff(clientText, serverProps, indent) {\n var maxLength = 120 - 2 * indent;\n if (null === serverProps)\n return added(indent) + describeTextNode(clientText, maxLength) + \"\\n\";\n if (\"string\" === typeof serverProps) {\n for (\n var firstDiff = 0;\n firstDiff < serverProps.length &&\n firstDiff < clientText.length &&\n serverProps.charCodeAt(firstDiff) ===\n clientText.charCodeAt(firstDiff);\n firstDiff++\n );\n firstDiff > maxLength - 8 &&\n 10 < firstDiff &&\n ((clientText = \"...\" + clientText.slice(firstDiff - 8)),\n (serverProps = \"...\" + serverProps.slice(firstDiff - 8)));\n return (\n added(indent) +\n describeTextNode(clientText, maxLength) +\n \"\\n\" +\n removed(indent) +\n describeTextNode(serverProps, maxLength) +\n \"\\n\"\n );\n }\n return (\n indentation(indent) + describeTextNode(clientText, maxLength) + \"\\n\"\n );\n }\n function objectName(object) {\n return Object.prototype.toString\n .call(object)\n .replace(/^\\[object (.*)\\]$/, function (m, p0) {\n return p0;\n });\n }\n function describeValue(value, maxLength) {\n switch (typeof value) {\n case \"string\":\n return (\n (value = JSON.stringify(value)),\n value.length > maxLength\n ? 5 > maxLength\n ? '\"...\"'\n : value.slice(0, maxLength - 4) + '...\"'\n : value\n );\n case \"object\":\n if (null === value) return \"null\";\n if (isArrayImpl(value)) return \"[...]\";\n if (value.$$typeof === REACT_ELEMENT_TYPE)\n return (maxLength = getComponentNameFromType(value.type))\n ? \"<\" + maxLength + \">\"\n : \"<...>\";\n var name = objectName(value);\n if (\"Object\" === name) {\n name = \"\";\n maxLength -= 2;\n for (var propName in value)\n if (value.hasOwnProperty(propName)) {\n var jsonPropName = JSON.stringify(propName);\n jsonPropName !== '\"' + propName + '\"' &&\n (propName = jsonPropName);\n maxLength -= propName.length - 2;\n jsonPropName = describeValue(\n value[propName],\n 15 > maxLength ? maxLength : 15\n );\n maxLength -= jsonPropName.length;\n if (0 > maxLength) {\n name += \"\" === name ? \"...\" : \", ...\";\n break;\n }\n name +=\n (\"\" === name ? \"\" : \",\") + propName + \":\" + jsonPropName;\n }\n return \"{\" + name + \"}\";\n }\n return name;\n case \"function\":\n return (maxLength = value.displayName || value.name)\n ? \"function \" + maxLength\n : \"function\";\n default:\n return String(value);\n }\n }\n function describePropValue(value, maxLength) {\n return \"string\" !== typeof value || needsEscaping.test(value)\n ? \"{\" + describeValue(value, maxLength - 2) + \"}\"\n : value.length > maxLength - 2\n ? 5 > maxLength\n ? '\"...\"'\n : '\"' + value.slice(0, maxLength - 5) + '...\"'\n : '\"' + value + '\"';\n }\n function describeExpandedElement(type, props, rowPrefix) {\n var remainingRowLength = 120 - rowPrefix.length - type.length,\n properties = [],\n propName;\n for (propName in props)\n if (props.hasOwnProperty(propName) && \"children\" !== propName) {\n var propValue = describePropValue(\n props[propName],\n 120 - rowPrefix.length - propName.length - 1\n );\n remainingRowLength -= propName.length + propValue.length + 2;\n properties.push(propName + \"=\" + propValue);\n }\n return 0 === properties.length\n ? rowPrefix + \"<\" + type + \">\\n\"\n : 0 < remainingRowLength\n ? rowPrefix + \"<\" + type + \" \" + properties.join(\" \") + \">\\n\"\n : rowPrefix +\n \"<\" +\n type +\n \"\\n\" +\n rowPrefix +\n \" \" +\n properties.join(\"\\n\" + rowPrefix + \" \") +\n \"\\n\" +\n rowPrefix +\n \">\\n\";\n }\n function describePropertiesDiff(clientObject, serverObject, indent) {\n var properties = \"\",\n remainingServerProperties = assign({}, serverObject),\n propName;\n for (propName in clientObject)\n if (clientObject.hasOwnProperty(propName)) {\n delete remainingServerProperties[propName];\n var maxLength = 120 - 2 * indent - propName.length - 2,\n clientPropValue = describeValue(clientObject[propName], maxLength);\n serverObject.hasOwnProperty(propName)\n ? ((maxLength = describeValue(serverObject[propName], maxLength)),\n (properties +=\n added(indent) + propName + \": \" + clientPropValue + \"\\n\"),\n (properties +=\n removed(indent) + propName + \": \" + maxLength + \"\\n\"))\n : (properties +=\n added(indent) + propName + \": \" + clientPropValue + \"\\n\");\n }\n for (var _propName in remainingServerProperties)\n remainingServerProperties.hasOwnProperty(_propName) &&\n ((clientObject = describeValue(\n remainingServerProperties[_propName],\n 120 - 2 * indent - _propName.length - 2\n )),\n (properties +=\n removed(indent) + _propName + \": \" + clientObject + \"\\n\"));\n return properties;\n }\n function describeElementDiff(type, clientProps, serverProps, indent) {\n var content = \"\",\n serverPropNames = new Map();\n for (propName$jscomp$0 in serverProps)\n serverProps.hasOwnProperty(propName$jscomp$0) &&\n serverPropNames.set(\n propName$jscomp$0.toLowerCase(),\n propName$jscomp$0\n );\n if (1 === serverPropNames.size && serverPropNames.has(\"children\"))\n content += describeExpandedElement(\n type,\n clientProps,\n indentation(indent)\n );\n else {\n for (var _propName2 in clientProps)\n if (\n clientProps.hasOwnProperty(_propName2) &&\n \"children\" !== _propName2\n ) {\n var maxLength$jscomp$0 =\n 120 - 2 * (indent + 1) - _propName2.length - 1,\n serverPropName = serverPropNames.get(_propName2.toLowerCase());\n if (void 0 !== serverPropName) {\n serverPropNames.delete(_propName2.toLowerCase());\n var propName$jscomp$0 = clientProps[_propName2];\n serverPropName = serverProps[serverPropName];\n var clientPropValue = describePropValue(\n propName$jscomp$0,\n maxLength$jscomp$0\n );\n maxLength$jscomp$0 = describePropValue(\n serverPropName,\n maxLength$jscomp$0\n );\n \"object\" === typeof propName$jscomp$0 &&\n null !== propName$jscomp$0 &&\n \"object\" === typeof serverPropName &&\n null !== serverPropName &&\n \"Object\" === objectName(propName$jscomp$0) &&\n \"Object\" === objectName(serverPropName) &&\n (2 < Object.keys(propName$jscomp$0).length ||\n 2 < Object.keys(serverPropName).length ||\n -1 < clientPropValue.indexOf(\"...\") ||\n -1 < maxLength$jscomp$0.indexOf(\"...\"))\n ? (content +=\n indentation(indent + 1) +\n _propName2 +\n \"={{\\n\" +\n describePropertiesDiff(\n propName$jscomp$0,\n serverPropName,\n indent + 2\n ) +\n indentation(indent + 1) +\n \"}}\\n\")\n : ((content +=\n added(indent + 1) +\n _propName2 +\n \"=\" +\n clientPropValue +\n \"\\n\"),\n (content +=\n removed(indent + 1) +\n _propName2 +\n \"=\" +\n maxLength$jscomp$0 +\n \"\\n\"));\n } else\n content +=\n indentation(indent + 1) +\n _propName2 +\n \"=\" +\n describePropValue(clientProps[_propName2], maxLength$jscomp$0) +\n \"\\n\";\n }\n serverPropNames.forEach(function (propName) {\n if (\"children\" !== propName) {\n var maxLength = 120 - 2 * (indent + 1) - propName.length - 1;\n content +=\n removed(indent + 1) +\n propName +\n \"=\" +\n describePropValue(serverProps[propName], maxLength) +\n \"\\n\";\n }\n });\n content =\n \"\" === content\n ? indentation(indent) + \"<\" + type + \">\\n\"\n : indentation(indent) +\n \"<\" +\n type +\n \"\\n\" +\n content +\n indentation(indent) +\n \">\\n\";\n }\n type = serverProps.children;\n clientProps = clientProps.children;\n if (\n \"string\" === typeof type ||\n \"number\" === typeof type ||\n \"bigint\" === typeof type\n ) {\n serverPropNames = \"\";\n if (\n \"string\" === typeof clientProps ||\n \"number\" === typeof clientProps ||\n \"bigint\" === typeof clientProps\n )\n serverPropNames = \"\" + clientProps;\n content += describeTextDiff(serverPropNames, \"\" + type, indent + 1);\n } else if (\n \"string\" === typeof clientProps ||\n \"number\" === typeof clientProps ||\n \"bigint\" === typeof clientProps\n )\n content =\n null == type\n ? content + describeTextDiff(\"\" + clientProps, null, indent + 1)\n : content + describeTextDiff(\"\" + clientProps, void 0, indent + 1);\n return content;\n }\n function describeSiblingFiber(fiber, indent) {\n var type = describeFiberType(fiber);\n if (null === type) {\n type = \"\";\n for (fiber = fiber.child; fiber; )\n (type += describeSiblingFiber(fiber, indent)),\n (fiber = fiber.sibling);\n return type;\n }\n return indentation(indent) + \"<\" + type + \">\\n\";\n }\n function describeNode(node, indent) {\n var skipToNode = findNotableNode(node, indent);\n if (\n skipToNode !== node &&\n (1 !== node.children.length || node.children[0] !== skipToNode)\n )\n return (\n indentation(indent) + \"...\\n\" + describeNode(skipToNode, indent + 1)\n );\n skipToNode = \"\";\n var debugInfo = node.fiber._debugInfo;\n if (debugInfo)\n for (var i = 0; i < debugInfo.length; i++) {\n var serverComponentName = debugInfo[i].name;\n \"string\" === typeof serverComponentName &&\n ((skipToNode +=\n indentation(indent) + \"<\" + serverComponentName + \">\\n\"),\n indent++);\n }\n debugInfo = \"\";\n i = node.fiber.pendingProps;\n if (6 === node.fiber.tag)\n (debugInfo = describeTextDiff(i, node.serverProps, indent)), indent++;\n else if (\n ((serverComponentName = describeFiberType(node.fiber)),\n null !== serverComponentName)\n )\n if (void 0 === node.serverProps) {\n debugInfo = indent;\n var maxLength = 120 - 2 * debugInfo - serverComponentName.length - 2,\n content = \"\";\n for (propName in i)\n if (i.hasOwnProperty(propName) && \"children\" !== propName) {\n var propValue = describePropValue(i[propName], 15);\n maxLength -= propName.length + propValue.length + 2;\n if (0 > maxLength) {\n content += \" ...\";\n break;\n }\n content += \" \" + propName + \"=\" + propValue;\n }\n debugInfo =\n indentation(debugInfo) +\n \"<\" +\n serverComponentName +\n content +\n \">\\n\";\n indent++;\n } else\n null === node.serverProps\n ? ((debugInfo = describeExpandedElement(\n serverComponentName,\n i,\n added(indent)\n )),\n indent++)\n : \"string\" === typeof node.serverProps\n ? console.error(\n \"Should not have matched a non HostText fiber to a Text node. This is a bug in React.\"\n )\n : ((debugInfo = describeElementDiff(\n serverComponentName,\n i,\n node.serverProps,\n indent\n )),\n indent++);\n var propName = \"\";\n i = node.fiber.child;\n for (\n serverComponentName = 0;\n i && serverComponentName < node.children.length;\n\n )\n (maxLength = node.children[serverComponentName]),\n maxLength.fiber === i\n ? ((propName += describeNode(maxLength, indent)),\n serverComponentName++)\n : (propName += describeSiblingFiber(i, indent)),\n (i = i.sibling);\n i &&\n 0 < node.children.length &&\n (propName += indentation(indent) + \"...\\n\");\n i = node.serverTail;\n null === node.serverProps && indent--;\n for (node = 0; node < i.length; node++)\n (serverComponentName = i[node]),\n (propName =\n \"string\" === typeof serverComponentName\n ? propName +\n (removed(indent) +\n describeTextNode(serverComponentName, 120 - 2 * indent) +\n \"\\n\")\n : propName +\n describeExpandedElement(\n serverComponentName.type,\n serverComponentName.props,\n removed(indent)\n ));\n return skipToNode + debugInfo + propName;\n }\n function describeDiff(rootNode) {\n try {\n return \"\\n\\n\" + describeNode(rootNode, 0);\n } catch (x) {\n return \"\";\n }\n }\n function describeAncestors(ancestor, child, props) {\n for (var fiber = child, node = null, distanceFromLeaf = 0; fiber; )\n fiber === ancestor && (distanceFromLeaf = 0),\n (node = {\n fiber: fiber,\n children: null !== node ? [node] : [],\n serverProps:\n fiber === child ? props : fiber === ancestor ? null : void 0,\n serverTail: [],\n distanceFromLeaf: distanceFromLeaf\n }),\n distanceFromLeaf++,\n (fiber = fiber.return);\n return null !== node ? describeDiff(node).replaceAll(/^[+-]/gm, \">\") : \"\";\n }\n function updatedAncestorInfoDev(oldInfo, tag) {\n var ancestorInfo = assign({}, oldInfo || emptyAncestorInfoDev),\n info = { tag: tag };\n -1 !== inScopeTags.indexOf(tag) &&\n ((ancestorInfo.aTagInScope = null),\n (ancestorInfo.buttonTagInScope = null),\n (ancestorInfo.nobrTagInScope = null));\n -1 !== buttonScopeTags.indexOf(tag) &&\n (ancestorInfo.pTagInButtonScope = null);\n -1 !== specialTags.indexOf(tag) &&\n \"address\" !== tag &&\n \"div\" !== tag &&\n \"p\" !== tag &&\n ((ancestorInfo.listItemTagAutoclosing = null),\n (ancestorInfo.dlItemTagAutoclosing = null));\n ancestorInfo.current = info;\n \"form\" === tag && (ancestorInfo.formTag = info);\n \"a\" === tag && (ancestorInfo.aTagInScope = info);\n \"button\" === tag && (ancestorInfo.buttonTagInScope = info);\n \"nobr\" === tag && (ancestorInfo.nobrTagInScope = info);\n \"p\" === tag && (ancestorInfo.pTagInButtonScope = info);\n \"li\" === tag && (ancestorInfo.listItemTagAutoclosing = info);\n if (\"dd\" === tag || \"dt\" === tag)\n ancestorInfo.dlItemTagAutoclosing = info;\n \"#document\" === tag || \"html\" === tag\n ? (ancestorInfo.containerTagInScope = null)\n : ancestorInfo.containerTagInScope ||\n (ancestorInfo.containerTagInScope = info);\n null !== oldInfo ||\n (\"#document\" !== tag && \"html\" !== tag && \"body\" !== tag)\n ? !0 === ancestorInfo.implicitRootScope &&\n (ancestorInfo.implicitRootScope = !1)\n : (ancestorInfo.implicitRootScope = !0);\n return ancestorInfo;\n }\n function isTagValidWithParent(tag, parentTag, implicitRootScope) {\n switch (parentTag) {\n case \"select\":\n return (\n \"hr\" === tag ||\n \"option\" === tag ||\n \"optgroup\" === tag ||\n \"script\" === tag ||\n \"template\" === tag ||\n \"#text\" === tag\n );\n case \"optgroup\":\n return \"option\" === tag || \"#text\" === tag;\n case \"option\":\n return \"#text\" === tag;\n case \"tr\":\n return (\n \"th\" === tag ||\n \"td\" === tag ||\n \"style\" === tag ||\n \"script\" === tag ||\n \"template\" === tag\n );\n case \"tbody\":\n case \"thead\":\n case \"tfoot\":\n return (\n \"tr\" === tag ||\n \"style\" === tag ||\n \"script\" === tag ||\n \"template\" === tag\n );\n case \"colgroup\":\n return \"col\" === tag || \"template\" === tag;\n case \"table\":\n return (\n \"caption\" === tag ||\n \"colgroup\" === tag ||\n \"tbody\" === tag ||\n \"tfoot\" === tag ||\n \"thead\" === tag ||\n \"style\" === tag ||\n \"script\" === tag ||\n \"template\" === tag\n );\n case \"head\":\n return (\n \"base\" === tag ||\n \"basefont\" === tag ||\n \"bgsound\" === tag ||\n \"link\" === tag ||\n \"meta\" === tag ||\n \"title\" === tag ||\n \"noscript\" === tag ||\n \"noframes\" === tag ||\n \"style\" === tag ||\n \"script\" === tag ||\n \"template\" === tag\n );\n case \"html\":\n if (implicitRootScope) break;\n return \"head\" === tag || \"body\" === tag || \"frameset\" === tag;\n case \"frameset\":\n return \"frame\" === tag;\n case \"#document\":\n if (!implicitRootScope) return \"html\" === tag;\n }\n switch (tag) {\n case \"h1\":\n case \"h2\":\n case \"h3\":\n case \"h4\":\n case \"h5\":\n case \"h6\":\n return (\n \"h1\" !== parentTag &&\n \"h2\" !== parentTag &&\n \"h3\" !== parentTag &&\n \"h4\" !== parentTag &&\n \"h5\" !== parentTag &&\n \"h6\" !== parentTag\n );\n case \"rp\":\n case \"rt\":\n return -1 === impliedEndTags.indexOf(parentTag);\n case \"caption\":\n case \"col\":\n case \"colgroup\":\n case \"frameset\":\n case \"frame\":\n case \"tbody\":\n case \"td\":\n case \"tfoot\":\n case \"th\":\n case \"thead\":\n case \"tr\":\n return null == parentTag;\n case \"head\":\n return implicitRootScope || null === parentTag;\n case \"html\":\n return (\n (implicitRootScope && \"#document\" === parentTag) ||\n null === parentTag\n );\n case \"body\":\n return (\n (implicitRootScope &&\n (\"#document\" === parentTag || \"html\" === parentTag)) ||\n null === parentTag\n );\n }\n return !0;\n }\n function findInvalidAncestorForTag(tag, ancestorInfo) {\n switch (tag) {\n case \"address\":\n case \"article\":\n case \"aside\":\n case \"blockquote\":\n case \"center\":\n case \"details\":\n case \"dialog\":\n case \"dir\":\n case \"div\":\n case \"dl\":\n case \"fieldset\":\n case \"figcaption\":\n case \"figure\":\n case \"footer\":\n case \"header\":\n case \"hgroup\":\n case \"main\":\n case \"menu\":\n case \"nav\":\n case \"ol\":\n case \"p\":\n case \"section\":\n case \"summary\":\n case \"ul\":\n case \"pre\":\n case \"listing\":\n case \"table\":\n case \"hr\":\n case \"xmp\":\n case \"h1\":\n case \"h2\":\n case \"h3\":\n case \"h4\":\n case \"h5\":\n case \"h6\":\n return ancestorInfo.pTagInButtonScope;\n case \"form\":\n return ancestorInfo.formTag || ancestorInfo.pTagInButtonScope;\n case \"li\":\n return ancestorInfo.listItemTagAutoclosing;\n case \"dd\":\n case \"dt\":\n return ancestorInfo.dlItemTagAutoclosing;\n case \"button\":\n return ancestorInfo.buttonTagInScope;\n case \"a\":\n return ancestorInfo.aTagInScope;\n case \"nobr\":\n return ancestorInfo.nobrTagInScope;\n }\n return null;\n }\n function findAncestor(parent, tagName) {\n for (; parent; ) {\n switch (parent.tag) {\n case 5:\n case 26:\n case 27:\n if (parent.type === tagName) return parent;\n }\n parent = parent.return;\n }\n return null;\n }\n function validateDOMNesting(childTag, ancestorInfo) {\n ancestorInfo = ancestorInfo || emptyAncestorInfoDev;\n var parentInfo = ancestorInfo.current;\n ancestorInfo = (parentInfo = isTagValidWithParent(\n childTag,\n parentInfo && parentInfo.tag,\n ancestorInfo.implicitRootScope\n )\n ? null\n : parentInfo)\n ? null\n : findInvalidAncestorForTag(childTag, ancestorInfo);\n ancestorInfo = parentInfo || ancestorInfo;\n if (!ancestorInfo) return !0;\n var ancestorTag = ancestorInfo.tag;\n ancestorInfo = String(!!parentInfo) + \"|\" + childTag + \"|\" + ancestorTag;\n if (didWarn[ancestorInfo]) return !1;\n didWarn[ancestorInfo] = !0;\n var ancestor = (ancestorInfo = current)\n ? findAncestor(ancestorInfo.return, ancestorTag)\n : null,\n ancestorDescription =\n null !== ancestorInfo && null !== ancestor\n ? describeAncestors(ancestor, ancestorInfo, null)\n : \"\",\n tagDisplayName = \"<\" + childTag + \">\";\n parentInfo\n ? ((parentInfo = \"\"),\n \"table\" === ancestorTag &&\n \"tr\" === childTag &&\n (parentInfo +=\n \" Add a <tbody>, <thead> or <tfoot> to your code to match the DOM tree generated by the browser.\"),\n console.error(\n \"In HTML, %s cannot be a child of <%s>.%s\\nThis will cause a hydration error.%s\",\n tagDisplayName,\n ancestorTag,\n parentInfo,\n ancestorDescription\n ))\n : console.error(\n \"In HTML, %s cannot be a descendant of <%s>.\\nThis will cause a hydration error.%s\",\n tagDisplayName,\n ancestorTag,\n ancestorDescription\n );\n ancestorInfo &&\n ((childTag = ancestorInfo.return),\n null === ancestor ||\n null === childTag ||\n (ancestor === childTag &&\n childTag._debugOwner === ancestorInfo._debugOwner) ||\n runWithFiberInDEV(ancestor, function () {\n console.error(\n \"<%s> cannot contain a nested %s.\\nSee this log for the ancestor stack trace.\",\n ancestorTag,\n tagDisplayName\n );\n }));\n return !1;\n }\n function validateTextNesting(childText, parentTag, implicitRootScope) {\n if (implicitRootScope || isTagValidWithParent(\"#text\", parentTag, !1))\n return !0;\n implicitRootScope = \"#text|\" + parentTag;\n if (didWarn[implicitRootScope]) return !1;\n didWarn[implicitRootScope] = !0;\n var ancestor = (implicitRootScope = current)\n ? findAncestor(implicitRootScope, parentTag)\n : null;\n implicitRootScope =\n null !== implicitRootScope && null !== ancestor\n ? describeAncestors(\n ancestor,\n implicitRootScope,\n 6 !== implicitRootScope.tag ? { children: null } : null\n )\n : \"\";\n /\\S/.test(childText)\n ? console.error(\n \"In HTML, text nodes cannot be a child of <%s>.\\nThis will cause a hydration error.%s\",\n parentTag,\n implicitRootScope\n )\n : console.error(\n \"In HTML, whitespace text nodes cannot be a child of <%s>. Make sure you don't have any extra whitespace between tags on each line of your source code.\\nThis will cause a hydration error.%s\",\n parentTag,\n implicitRootScope\n );\n return !1;\n }\n function setTextContent(node, text) {\n if (text) {\n var firstChild = node.firstChild;\n if (\n firstChild &&\n firstChild === node.lastChild &&\n 3 === firstChild.nodeType\n ) {\n firstChild.nodeValue = text;\n return;\n }\n }\n node.textContent = text;\n }\n function camelize(string) {\n return string.replace(hyphenPattern, function (_, character) {\n return character.toUpperCase();\n });\n }\n function setValueForStyle(style, styleName, value) {\n var isCustomProperty = 0 === styleName.indexOf(\"--\");\n isCustomProperty ||\n (-1 < styleName.indexOf(\"-\")\n ? (warnedStyleNames.hasOwnProperty(styleName) &&\n warnedStyleNames[styleName]) ||\n ((warnedStyleNames[styleName] = !0),\n console.error(\n \"Unsupported style property %s. Did you mean %s?\",\n styleName,\n camelize(styleName.replace(msPattern, \"ms-\"))\n ))\n : badVendoredStyleNamePattern.test(styleName)\n ? (warnedStyleNames.hasOwnProperty(styleName) &&\n warnedStyleNames[styleName]) ||\n ((warnedStyleNames[styleName] = !0),\n console.error(\n \"Unsupported vendor-prefixed style property %s. Did you mean %s?\",\n styleName,\n styleName.charAt(0).toUpperCase() + styleName.slice(1)\n ))\n : !badStyleValueWithSemicolonPattern.test(value) ||\n (warnedStyleValues.hasOwnProperty(value) &&\n warnedStyleValues[value]) ||\n ((warnedStyleValues[value] = !0),\n console.error(\n 'Style property values shouldn\\'t contain a semicolon. Try \"%s: %s\" instead.',\n styleName,\n value.replace(badStyleValueWithSemicolonPattern, \"\")\n )),\n \"number\" === typeof value &&\n (isNaN(value)\n ? warnedForNaNValue ||\n ((warnedForNaNValue = !0),\n console.error(\n \"`NaN` is an invalid value for the `%s` css style property.\",\n styleName\n ))\n : isFinite(value) ||\n warnedForInfinityValue ||\n ((warnedForInfinityValue = !0),\n console.error(\n \"`Infinity` is an invalid value for the `%s` css style property.\",\n styleName\n ))));\n null == value || \"boolean\" === typeof value || \"\" === value\n ? isCustomProperty\n ? style.setProperty(styleName, \"\")\n : \"float\" === styleName\n ? (style.cssFloat = \"\")\n : (style[styleName] = \"\")\n : isCustomProperty\n ? style.setProperty(styleName, value)\n : \"number\" !== typeof value ||\n 0 === value ||\n unitlessNumbers.has(styleName)\n ? \"float\" === styleName\n ? (style.cssFloat = value)\n : (checkCSSPropertyStringCoercion(value, styleName),\n (style[styleName] = (\"\" + value).trim()))\n : (style[styleName] = value + \"px\");\n }\n function setValueForStyles(node, styles, prevStyles) {\n if (null != styles && \"object\" !== typeof styles)\n throw Error(\n \"The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.\"\n );\n styles && Object.freeze(styles);\n node = node.style;\n if (null != prevStyles) {\n if (styles) {\n var expandedUpdates = {};\n if (prevStyles)\n for (var key in prevStyles)\n if (prevStyles.hasOwnProperty(key) && !styles.hasOwnProperty(key))\n for (\n var longhands = shorthandToLonghand[key] || [key], i = 0;\n i < longhands.length;\n i++\n )\n expandedUpdates[longhands[i]] = key;\n for (var _key in styles)\n if (\n styles.hasOwnProperty(_key) &&\n (!prevStyles || prevStyles[_key] !== styles[_key])\n )\n for (\n key = shorthandToLonghand[_key] || [_key], longhands = 0;\n longhands < key.length;\n longhands++\n )\n expandedUpdates[key[longhands]] = _key;\n _key = {};\n for (var key$jscomp$0 in styles)\n for (\n key = shorthandToLonghand[key$jscomp$0] || [key$jscomp$0],\n longhands = 0;\n longhands < key.length;\n longhands++\n )\n _key[key[longhands]] = key$jscomp$0;\n key$jscomp$0 = {};\n for (var _key2 in expandedUpdates)\n if (\n ((key = expandedUpdates[_key2]),\n (longhands = _key[_key2]) &&\n key !== longhands &&\n ((i = key + \",\" + longhands), !key$jscomp$0[i]))\n ) {\n key$jscomp$0[i] = !0;\n i = console;\n var value = styles[key];\n i.error.call(\n i,\n \"%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.\",\n null == value || \"boolean\" === typeof value || \"\" === value\n ? \"Removing\"\n : \"Updating\",\n key,\n longhands\n );\n }\n }\n for (var styleName in prevStyles)\n !prevStyles.hasOwnProperty(styleName) ||\n (null != styles && styles.hasOwnProperty(styleName)) ||\n (0 === styleName.indexOf(\"--\")\n ? node.setProperty(styleName, \"\")\n : \"float\" === styleName\n ? (node.cssFloat = \"\")\n : (node[styleName] = \"\"),\n (viewTransitionMutationContext = !0));\n for (var _styleName in styles)\n (_key2 = styles[_styleName]),\n styles.hasOwnProperty(_styleName) &&\n prevStyles[_styleName] !== _key2 &&\n (setValueForStyle(node, _styleName, _key2),\n (viewTransitionMutationContext = !0));\n } else\n for (expandedUpdates in styles)\n styles.hasOwnProperty(expandedUpdates) &&\n setValueForStyle(node, expandedUpdates, styles[expandedUpdates]);\n }\n function isCustomElement(tagName) {\n if (-1 === tagName.indexOf(\"-\")) return !1;\n switch (tagName) {\n case \"annotation-xml\":\n case \"color-profile\":\n case \"font-face\":\n case \"font-face-src\":\n case \"font-face-uri\":\n case \"font-face-format\":\n case \"font-face-name\":\n case \"missing-glyph\":\n return !1;\n default:\n return !0;\n }\n }\n function getAttributeAlias(name) {\n return aliases.get(name) || name;\n }\n function validateProperty$1(tagName, name) {\n if (\n hasOwnProperty.call(warnedProperties$1, name) &&\n warnedProperties$1[name]\n )\n return !0;\n if (rARIACamel$1.test(name)) {\n tagName = \"aria-\" + name.slice(4).toLowerCase();\n tagName = ariaProperties.hasOwnProperty(tagName) ? tagName : null;\n if (null == tagName)\n return (\n console.error(\n \"Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.\",\n name\n ),\n (warnedProperties$1[name] = !0)\n );\n if (name !== tagName)\n return (\n console.error(\n \"Invalid ARIA attribute `%s`. Did you mean `%s`?\",\n name,\n tagName\n ),\n (warnedProperties$1[name] = !0)\n );\n }\n if (rARIA$1.test(name)) {\n tagName = name.toLowerCase();\n tagName = ariaProperties.hasOwnProperty(tagName) ? tagName : null;\n if (null == tagName) return (warnedProperties$1[name] = !0), !1;\n name !== tagName &&\n (console.error(\n \"Unknown ARIA attribute `%s`. Did you mean `%s`?\",\n name,\n tagName\n ),\n (warnedProperties$1[name] = !0));\n }\n return !0;\n }\n function validateProperties$2(type, props) {\n var invalidProps = [],\n key;\n for (key in props)\n validateProperty$1(type, key) || invalidProps.push(key);\n props = invalidProps\n .map(function (prop) {\n return \"`\" + prop + \"`\";\n })\n .join(\", \");\n 1 === invalidProps.length\n ? console.error(\n \"Invalid aria prop %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props\",\n props,\n type\n )\n : 1 < invalidProps.length &&\n console.error(\n \"Invalid aria props %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props\",\n props,\n type\n );\n }\n function validateProperty(tagName, name, value, eventRegistry) {\n if (hasOwnProperty.call(warnedProperties, name) && warnedProperties[name])\n return !0;\n var lowerCasedName = name.toLowerCase();\n if (\"onfocusin\" === lowerCasedName || \"onfocusout\" === lowerCasedName)\n return (\n console.error(\n \"React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React.\"\n ),\n (warnedProperties[name] = !0)\n );\n if (\n \"function\" === typeof value &&\n ((\"form\" === tagName && \"action\" === name) ||\n (\"input\" === tagName && \"formAction\" === name) ||\n (\"button\" === tagName && \"formAction\" === name))\n )\n return !0;\n if (null != eventRegistry) {\n tagName = eventRegistry.possibleRegistrationNames;\n if (eventRegistry.registrationNameDependencies.hasOwnProperty(name))\n return !0;\n eventRegistry = tagName.hasOwnProperty(lowerCasedName)\n ? tagName[lowerCasedName]\n : null;\n if (null != eventRegistry)\n return (\n console.error(\n \"Invalid event handler property `%s`. Did you mean `%s`?\",\n name,\n eventRegistry\n ),\n (warnedProperties[name] = !0)\n );\n if (EVENT_NAME_REGEX.test(name))\n return (\n console.error(\n \"Unknown event handler property `%s`. It will be ignored.\",\n name\n ),\n (warnedProperties[name] = !0)\n );\n } else if (EVENT_NAME_REGEX.test(name))\n return (\n INVALID_EVENT_NAME_REGEX.test(name) &&\n console.error(\n \"Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.\",\n name\n ),\n (warnedProperties[name] = !0)\n );\n if (rARIA.test(name) || rARIACamel.test(name)) return !0;\n if (\"innerhtml\" === lowerCasedName)\n return (\n console.error(\n \"Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`.\"\n ),\n (warnedProperties[name] = !0)\n );\n if (\"aria\" === lowerCasedName)\n return (\n console.error(\n \"The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead.\"\n ),\n (warnedProperties[name] = !0)\n );\n if (\n \"is\" === lowerCasedName &&\n null !== value &&\n void 0 !== value &&\n \"string\" !== typeof value\n )\n return (\n console.error(\n \"Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.\",\n typeof value\n ),\n (warnedProperties[name] = !0)\n );\n if (\"number\" === typeof value && isNaN(value))\n return (\n console.error(\n \"Received NaN for the `%s` attribute. If this is expected, cast the value to a string.\",\n name\n ),\n (warnedProperties[name] = !0)\n );\n if (possibleStandardNames.hasOwnProperty(lowerCasedName)) {\n if (\n ((lowerCasedName = possibleStandardNames[lowerCasedName]),\n lowerCasedName !== name)\n )\n return (\n console.error(\n \"Invalid DOM property `%s`. Did you mean `%s`?\",\n name,\n lowerCasedName\n ),\n (warnedProperties[name] = !0)\n );\n } else if (name !== lowerCasedName)\n return (\n console.error(\n \"React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.\",\n name,\n lowerCasedName\n ),\n (warnedProperties[name] = !0)\n );\n switch (name) {\n case \"dangerouslySetInnerHTML\":\n case \"children\":\n case \"style\":\n case \"suppressContentEditableWarning\":\n case \"suppressHydrationWarning\":\n case \"defaultValue\":\n case \"defaultChecked\":\n case \"innerHTML\":\n case \"ref\":\n return !0;\n case \"innerText\":\n case \"textContent\":\n return !0;\n }\n switch (typeof value) {\n case \"boolean\":\n switch (name) {\n case \"autoFocus\":\n case \"checked\":\n case \"multiple\":\n case \"muted\":\n case \"selected\":\n case \"contentEditable\":\n case \"spellCheck\":\n case \"draggable\":\n case \"value\":\n case \"autoReverse\":\n case \"externalResourcesRequired\":\n case \"focusable\":\n case \"preserveAlpha\":\n case \"allowFullScreen\":\n case \"async\":\n case \"autoPlay\":\n case \"controls\":\n case \"default\":\n case \"defer\":\n case \"disabled\":\n case \"disablePictureInPicture\":\n case \"disableRemotePlayback\":\n case \"formNoValidate\":\n case \"hidden\":\n case \"loop\":\n case \"noModule\":\n case \"noValidate\":\n case \"open\":\n case \"playsInline\":\n case \"readOnly\":\n case \"required\":\n case \"reversed\":\n case \"scoped\":\n case \"seamless\":\n case \"itemScope\":\n case \"capture\":\n case \"download\":\n case \"inert\":\n return !0;\n default:\n lowerCasedName = name.toLowerCase().slice(0, 5);\n if (\"data-\" === lowerCasedName || \"aria-\" === lowerCasedName)\n return !0;\n value\n ? console.error(\n 'Received `%s` for a non-boolean attribute `%s`.\\n\\nIf you want to write it to the DOM, pass a string instead: %s=\"%s\" or %s={value.toString()}.',\n value,\n name,\n name,\n value,\n name\n )\n : console.error(\n 'Received `%s` for a non-boolean attribute `%s`.\\n\\nIf you want to write it to the DOM, pass a string instead: %s=\"%s\" or %s={value.toString()}.\\n\\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.',\n value,\n name,\n name,\n value,\n name,\n name,\n name\n );\n return (warnedProperties[name] = !0);\n }\n case \"function\":\n case \"symbol\":\n return (warnedProperties[name] = !0), !1;\n case \"string\":\n if (\"false\" === value || \"true\" === value) {\n switch (name) {\n case \"checked\":\n case \"selected\":\n case \"multiple\":\n case \"muted\":\n case \"allowFullScreen\":\n case \"async\":\n case \"autoPlay\":\n case \"controls\":\n case \"default\":\n case \"defer\":\n case \"disabled\":\n case \"disablePictureInPicture\":\n case \"disableRemotePlayback\":\n case \"formNoValidate\":\n case \"hidden\":\n case \"loop\":\n case \"noModule\":\n case \"noValidate\":\n case \"open\":\n case \"playsInline\":\n case \"readOnly\":\n case \"required\":\n case \"reversed\":\n case \"scoped\":\n case \"seamless\":\n case \"itemScope\":\n case \"inert\":\n break;\n default:\n return !0;\n }\n console.error(\n \"Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?\",\n value,\n name,\n \"false\" === value\n ? \"The browser will interpret it as a truthy value.\"\n : 'Although this works, it will not work as expected if you pass the string \"false\".',\n name,\n value\n );\n warnedProperties[name] = !0;\n }\n }\n return !0;\n }\n function warnUnknownProperties(type, props, eventRegistry) {\n var unknownProps = [],\n key;\n for (key in props)\n validateProperty(type, key, props[key], eventRegistry) ||\n unknownProps.push(key);\n props = unknownProps\n .map(function (prop) {\n return \"`\" + prop + \"`\";\n })\n .join(\", \");\n 1 === unknownProps.length\n ? console.error(\n \"Invalid value for prop %s on <%s> tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://react.dev/link/attribute-behavior \",\n props,\n type\n )\n : 1 < unknownProps.length &&\n console.error(\n \"Invalid values for props %s on <%s> tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://react.dev/link/attribute-behavior \",\n props,\n type\n );\n }\n function sanitizeURL(url) {\n return isJavaScriptProtocol.test(\"\" + url)\n ? \"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')\"\n : url;\n }\n function noop$1() {}\n function getEventTarget(nativeEvent) {\n nativeEvent = nativeEvent.target || nativeEvent.srcElement || window;\n nativeEvent.correspondingUseElement &&\n (nativeEvent = nativeEvent.correspondingUseElement);\n return 3 === nativeEvent.nodeType ? nativeEvent.parentNode : nativeEvent;\n }\n function restoreStateOfTarget(target) {\n var internalInstance = getInstanceFromNode(target);\n if (internalInstance && (target = internalInstance.stateNode)) {\n var props = target[internalPropsKey] || null;\n a: switch (\n ((target = internalInstance.stateNode), internalInstance.type)\n ) {\n case \"input\":\n updateInput(\n target,\n props.value,\n props.defaultValue,\n props.defaultValue,\n props.checked,\n props.defaultChecked,\n props.type,\n props.name\n );\n internalInstance = props.name;\n if (\"radio\" === props.type && null != internalInstance) {\n for (props = target; props.parentNode; ) props = props.parentNode;\n checkAttributeStringCoercion(internalInstance, \"name\");\n props = props.querySelectorAll(\n 'input[name=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(\n \"\" + internalInstance\n ) +\n '\"][type=\"radio\"]'\n );\n for (\n internalInstance = 0;\n internalInstance < props.length;\n internalInstance++\n ) {\n var otherNode = props[internalInstance];\n if (otherNode !== target && otherNode.form === target.form) {\n var otherProps = otherNode[internalPropsKey] || null;\n if (!otherProps)\n throw Error(\n \"ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.\"\n );\n updateInput(\n otherNode,\n otherProps.value,\n otherProps.defaultValue,\n otherProps.defaultValue,\n otherProps.checked,\n otherProps.defaultChecked,\n otherProps.type,\n otherProps.name\n );\n }\n }\n for (\n internalInstance = 0;\n internalInstance < props.length;\n internalInstance++\n )\n (otherNode = props[internalInstance]),\n otherNode.form === target.form &&\n updateValueIfChanged(otherNode);\n }\n break a;\n case \"textarea\":\n updateTextarea(target, props.value, props.defaultValue);\n break a;\n case \"select\":\n (internalInstance = props.value),\n null != internalInstance &&\n updateOptions(target, !!props.multiple, internalInstance, !1);\n }\n }\n }\n function batchedUpdates$1(fn, a, b) {\n if (isInsideEventHandler) return fn(a, b);\n isInsideEventHandler = !0;\n try {\n var JSCompiler_inline_result = fn(a);\n return JSCompiler_inline_result;\n } finally {\n if (\n ((isInsideEventHandler = !1),\n null !== restoreTarget || null !== restoreQueue)\n )\n if (\n (flushSyncWork$1(),\n restoreTarget &&\n ((a = restoreTarget),\n (fn = restoreQueue),\n (restoreQueue = restoreTarget = null),\n restoreStateOfTarget(a),\n fn))\n )\n for (a = 0; a < fn.length; a++) restoreStateOfTarget(fn[a]);\n }\n }\n function getListener(inst, registrationName) {\n var stateNode = inst.stateNode;\n if (null === stateNode) return null;\n var props = stateNode[internalPropsKey] || null;\n if (null === props) return null;\n stateNode = props[registrationName];\n a: switch (registrationName) {\n case \"onClick\":\n case \"onClickCapture\":\n case \"onDoubleClick\":\n case \"onDoubleClickCapture\":\n case \"onMouseDown\":\n case \"onMouseDownCapture\":\n case \"onMouseMove\":\n case \"onMouseMoveCapture\":\n case \"onMouseUp\":\n case \"onMouseUpCapture\":\n case \"onMouseEnter\":\n (props = !props.disabled) ||\n ((inst = inst.type),\n (props = !(\n \"button\" === inst ||\n \"input\" === inst ||\n \"select\" === inst ||\n \"textarea\" === inst\n )));\n inst = !props;\n break a;\n default:\n inst = !1;\n }\n if (inst) return null;\n if (stateNode && \"function\" !== typeof stateNode)\n throw Error(\n \"Expected `\" +\n registrationName +\n \"` listener to be a function, instead got a value of `\" +\n typeof stateNode +\n \"` type.\"\n );\n return stateNode;\n }\n function getData() {\n if (fallbackText) return fallbackText;\n var start,\n startValue = startText,\n startLength = startValue.length,\n end,\n endValue = \"value\" in root ? root.value : root.textContent,\n endLength = endValue.length;\n for (\n start = 0;\n start < startLength && startValue[start] === endValue[start];\n start++\n );\n var minEnd = startLength - start;\n for (\n end = 1;\n end <= minEnd &&\n startValue[startLength - end] === endValue[endLength - end];\n end++\n );\n return (fallbackText = endValue.slice(start, 1 < end ? 1 - end : void 0));\n }\n function getEventCharCode(nativeEvent) {\n var keyCode = nativeEvent.keyCode;\n \"charCode\" in nativeEvent\n ? ((nativeEvent = nativeEvent.charCode),\n 0 === nativeEvent && 13 === keyCode && (nativeEvent = 13))\n : (nativeEvent = keyCode);\n 10 === nativeEvent && (nativeEvent = 13);\n return 32 <= nativeEvent || 13 === nativeEvent ? nativeEvent : 0;\n }\n function functionThatReturnsTrue() {\n return !0;\n }\n function functionThatReturnsFalse() {\n return !1;\n }\n function createSyntheticEvent(Interface) {\n function SyntheticBaseEvent(\n reactName,\n reactEventType,\n targetInst,\n nativeEvent,\n nativeEventTarget\n ) {\n this._reactName = reactName;\n this._targetInst = targetInst;\n this.type = reactEventType;\n this.nativeEvent = nativeEvent;\n this.target = nativeEventTarget;\n this.currentTarget = null;\n for (var propName in Interface)\n Interface.hasOwnProperty(propName) &&\n ((reactName = Interface[propName]),\n (this[propName] = reactName\n ? reactName(nativeEvent)\n : nativeEvent[propName]));\n this.isDefaultPrevented = (\n null != nativeEvent.defaultPrevented\n ? nativeEvent.defaultPrevented\n : !1 === nativeEvent.returnValue\n )\n ? functionThatReturnsTrue\n : functionThatReturnsFalse;\n this.isPropagationStopped = functionThatReturnsFalse;\n return this;\n }\n assign(SyntheticBaseEvent.prototype, {\n preventDefault: function () {\n this.defaultPrevented = !0;\n var event = this.nativeEvent;\n event &&\n (event.preventDefault\n ? event.preventDefault()\n : \"unknown\" !== typeof event.returnValue &&\n (event.returnValue = !1),\n (this.isDefaultPrevented = functionThatReturnsTrue));\n },\n stopPropagation: function () {\n var event = this.nativeEvent;\n event &&\n (event.stopPropagation\n ? event.stopPropagation()\n : \"unknown\" !== typeof event.cancelBubble &&\n (event.cancelBubble = !0),\n (this.isPropagationStopped = functionThatReturnsTrue));\n },\n persist: function () {},\n isPersistent: functionThatReturnsTrue\n });\n return SyntheticBaseEvent;\n }\n function modifierStateGetter(keyArg) {\n var nativeEvent = this.nativeEvent;\n return nativeEvent.getModifierState\n ? nativeEvent.getModifierState(keyArg)\n : (keyArg = modifierKeyToProp[keyArg])\n ? !!nativeEvent[keyArg]\n : !1;\n }\n function getEventModifierState() {\n return modifierStateGetter;\n }\n function isFallbackCompositionEnd(domEventName, nativeEvent) {\n switch (domEventName) {\n case \"keyup\":\n return -1 !== END_KEYCODES.indexOf(nativeEvent.keyCode);\n case \"keydown\":\n return nativeEvent.keyCode !== START_KEYCODE;\n case \"keypress\":\n case \"mousedown\":\n case \"focusout\":\n return !0;\n default:\n return !1;\n }\n }\n function getDataFromCustomEvent(nativeEvent) {\n nativeEvent = nativeEvent.detail;\n return \"object\" === typeof nativeEvent && \"data\" in nativeEvent\n ? nativeEvent.data\n : null;\n }\n function getNativeBeforeInputChars(domEventName, nativeEvent) {\n switch (domEventName) {\n case \"compositionend\":\n return getDataFromCustomEvent(nativeEvent);\n case \"keypress\":\n if (nativeEvent.which !== SPACEBAR_CODE) return null;\n hasSpaceKeypress = !0;\n return SPACEBAR_CHAR;\n case \"textInput\":\n return (\n (domEventName = nativeEvent.data),\n domEventName === SPACEBAR_CHAR && hasSpaceKeypress\n ? null\n : domEventName\n );\n default:\n return null;\n }\n }\n function getFallbackBeforeInputChars(domEventName, nativeEvent) {\n if (isComposing)\n return \"compositionend\" === domEventName ||\n (!canUseCompositionEvent &&\n isFallbackCompositionEnd(domEventName, nativeEvent))\n ? ((domEventName = getData()),\n (fallbackText = startText = root = null),\n (isComposing = !1),\n domEventName)\n : null;\n switch (domEventName) {\n case \"paste\":\n return null;\n case \"keypress\":\n if (\n !(\n nativeEvent.ctrlKey ||\n nativeEvent.altKey ||\n nativeEvent.metaKey\n ) ||\n (nativeEvent.ctrlKey && nativeEvent.altKey)\n ) {\n if (nativeEvent.char && 1 < nativeEvent.char.length)\n return nativeEvent.char;\n if (nativeEvent.which)\n return String.fromCharCode(nativeEvent.which);\n }\n return null;\n case \"compositionend\":\n return useFallbackCompositionData && \"ko\" !== nativeEvent.locale\n ? null\n : nativeEvent.data;\n default:\n return null;\n }\n }\n function isTextInputElement(elem) {\n var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n return \"input\" === nodeName\n ? !!supportedInputTypes[elem.type]\n : \"textarea\" === nodeName\n ? !0\n : !1;\n }\n function isEventSupported(eventNameSuffix) {\n if (!canUseDOM) return !1;\n eventNameSuffix = \"on\" + eventNameSuffix;\n var isSupported = eventNameSuffix in document;\n isSupported ||\n ((isSupported = document.createElement(\"div\")),\n isSupported.setAttribute(eventNameSuffix, \"return;\"),\n (isSupported = \"function\" === typeof isSupported[eventNameSuffix]));\n return isSupported;\n }\n function createAndAccumulateChangeEvent(\n dispatchQueue,\n inst,\n nativeEvent,\n target\n ) {\n restoreTarget\n ? restoreQueue\n ? restoreQueue.push(target)\n : (restoreQueue = [target])\n : (restoreTarget = target);\n inst = accumulateTwoPhaseListeners(inst, \"onChange\");\n 0 < inst.length &&\n ((nativeEvent = new SyntheticEvent(\n \"onChange\",\n \"change\",\n null,\n nativeEvent,\n target\n )),\n dispatchQueue.push({ event: nativeEvent, listeners: inst }));\n }\n function runEventInBatch(dispatchQueue) {\n processDispatchQueue(dispatchQueue, 0);\n }\n function getInstIfValueChanged(targetInst) {\n var targetNode = getNodeFromInstance(targetInst);\n if (updateValueIfChanged(targetNode)) return targetInst;\n }\n function getTargetInstForChangeEvent(domEventName, targetInst) {\n if (\"change\" === domEventName) return targetInst;\n }\n function stopWatchingForValueChange() {\n activeElement$1 &&\n (activeElement$1.detachEvent(\"onpropertychange\", handlePropertyChange),\n (activeElementInst$1 = activeElement$1 = null));\n }\n function handlePropertyChange(nativeEvent) {\n if (\n \"value\" === nativeEvent.propertyName &&\n getInstIfValueChanged(activeElementInst$1)\n ) {\n var dispatchQueue = [];\n createAndAccumulateChangeEvent(\n dispatchQueue,\n activeElementInst$1,\n nativeEvent,\n getEventTarget(nativeEvent)\n );\n batchedUpdates$1(runEventInBatch, dispatchQueue);\n }\n }\n function handleEventsForInputEventPolyfill(\n domEventName,\n target,\n targetInst\n ) {\n \"focusin\" === domEventName\n ? (stopWatchingForValueChange(),\n (activeElement$1 = target),\n (activeElementInst$1 = targetInst),\n activeElement$1.attachEvent(\"onpropertychange\", handlePropertyChange))\n : \"focusout\" === domEventName && stopWatchingForValueChange();\n }\n function getTargetInstForInputEventPolyfill(domEventName) {\n if (\n \"selectionchange\" === domEventName ||\n \"keyup\" === domEventName ||\n \"keydown\" === domEventName\n )\n return getInstIfValueChanged(activeElementInst$1);\n }\n function getTargetInstForClickEvent(domEventName, targetInst) {\n if (\"click\" === domEventName) return getInstIfValueChanged(targetInst);\n }\n function getTargetInstForInputOrChangeEvent(domEventName, targetInst) {\n if (\"input\" === domEventName || \"change\" === domEventName)\n return getInstIfValueChanged(targetInst);\n }\n function is(x, y) {\n return (x === y && (0 !== x || 1 / x === 1 / y)) || (x !== x && y !== y);\n }\n function shallowEqual(objA, objB) {\n if (objectIs(objA, objB)) return !0;\n if (\n \"object\" !== typeof objA ||\n null === objA ||\n \"object\" !== typeof objB ||\n null === objB\n )\n return !1;\n var keysA = Object.keys(objA),\n keysB = Object.keys(objB);\n if (keysA.length !== keysB.length) return !1;\n for (keysB = 0; keysB < keysA.length; keysB++) {\n var currentKey = keysA[keysB];\n if (\n !hasOwnProperty.call(objB, currentKey) ||\n !objectIs(objA[currentKey], objB[currentKey])\n )\n return !1;\n }\n return !0;\n }\n function getLeafNode(node) {\n for (; node && node.firstChild; ) node = node.firstChild;\n return node;\n }\n function getNodeForCharacterOffset(root, offset) {\n var node = getLeafNode(root);\n root = 0;\n for (var nodeEnd; node; ) {\n if (3 === node.nodeType) {\n nodeEnd = root + node.textContent.length;\n if (root <= offset && nodeEnd >= offset)\n return { node: node, offset: offset - root };\n root = nodeEnd;\n }\n a: {\n for (; node; ) {\n if (node.nextSibling) {\n node = node.nextSibling;\n break a;\n }\n node = node.parentNode;\n }\n node = void 0;\n }\n node = getLeafNode(node);\n }\n }\n function containsNode(outerNode, innerNode) {\n return outerNode && innerNode\n ? outerNode === innerNode\n ? !0\n : outerNode && 3 === outerNode.nodeType\n ? !1\n : innerNode && 3 === innerNode.nodeType\n ? containsNode(outerNode, innerNode.parentNode)\n : \"contains\" in outerNode\n ? outerNode.contains(innerNode)\n : outerNode.compareDocumentPosition\n ? !!(outerNode.compareDocumentPosition(innerNode) & 16)\n : !1\n : !1;\n }\n function getActiveElementDeep(containerInfo) {\n containerInfo =\n null != containerInfo &&\n null != containerInfo.ownerDocument &&\n null != containerInfo.ownerDocument.defaultView\n ? containerInfo.ownerDocument.defaultView\n : window;\n for (\n var element = getActiveElement(containerInfo.document);\n element instanceof containerInfo.HTMLIFrameElement;\n\n ) {\n try {\n var JSCompiler_inline_result =\n \"string\" === typeof element.contentWindow.location.href;\n } catch (err) {\n JSCompiler_inline_result = !1;\n }\n if (JSCompiler_inline_result) containerInfo = element.contentWindow;\n else break;\n element = getActiveElement(containerInfo.document);\n }\n return element;\n }\n function hasSelectionCapabilities(elem) {\n var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n return (\n nodeName &&\n ((\"input\" === nodeName &&\n (\"text\" === elem.type ||\n \"search\" === elem.type ||\n \"tel\" === elem.type ||\n \"url\" === elem.type ||\n \"password\" === elem.type)) ||\n \"textarea\" === nodeName ||\n \"true\" === elem.contentEditable)\n );\n }\n function constructSelectEvent(\n dispatchQueue,\n nativeEvent,\n nativeEventTarget\n ) {\n var doc =\n nativeEventTarget.window === nativeEventTarget\n ? nativeEventTarget.document\n : 9 === nativeEventTarget.nodeType\n ? nativeEventTarget\n : nativeEventTarget.ownerDocument;\n mouseDown ||\n null == activeElement ||\n activeElement !== getActiveElement(doc) ||\n ((doc = activeElement),\n \"selectionStart\" in doc && hasSelectionCapabilities(doc)\n ? (doc = { start: doc.selectionStart, end: doc.selectionEnd })\n : ((doc = (\n (doc.ownerDocument && doc.ownerDocument.defaultView) ||\n window\n ).getSelection()),\n (doc = {\n anchorNode: doc.anchorNode,\n anchorOffset: doc.anchorOffset,\n focusNode: doc.focusNode,\n focusOffset: doc.focusOffset\n })),\n (lastSelection && shallowEqual(lastSelection, doc)) ||\n ((lastSelection = doc),\n (doc = accumulateTwoPhaseListeners(activeElementInst, \"onSelect\")),\n 0 < doc.length &&\n ((nativeEvent = new SyntheticEvent(\n \"onSelect\",\n \"select\",\n null,\n nativeEvent,\n nativeEventTarget\n )),\n dispatchQueue.push({ event: nativeEvent, listeners: doc }),\n (nativeEvent.target = activeElement))));\n }\n function makePrefixMap(styleProp, eventName) {\n var prefixes = {};\n prefixes[styleProp.toLowerCase()] = eventName.toLowerCase();\n prefixes[\"Webkit\" + styleProp] = \"webkit\" + eventName;\n prefixes[\"Moz\" + styleProp] = \"moz\" + eventName;\n return prefixes;\n }\n function getVendorPrefixedEventName(eventName) {\n if (prefixedEventNames[eventName]) return prefixedEventNames[eventName];\n if (!vendorPrefixes[eventName]) return eventName;\n var prefixMap = vendorPrefixes[eventName],\n styleProp;\n for (styleProp in prefixMap)\n if (prefixMap.hasOwnProperty(styleProp) && styleProp in style)\n return (prefixedEventNames[eventName] = prefixMap[styleProp]);\n return eventName;\n }\n function registerSimpleEvent(domEventName, reactName) {\n topLevelEventsToReactNames.set(domEventName, reactName);\n registerTwoPhaseEvent(reactName, [domEventName]);\n }\n function getViewTransitionName(props, instance) {\n if (null != props.name && \"auto\" !== props.name) return props.name;\n if (null !== instance.autoName) return instance.autoName;\n props = pendingEffectsRoot.identifierPrefix;\n var globalClientId = globalClientIdCounter$1++;\n props = \"_\" + props + \"t_\" + globalClientId.toString(32) + \"_\";\n return (instance.autoName = props);\n }\n function getClassNameByType(classByType) {\n if (null == classByType || \"string\" === typeof classByType)\n return classByType;\n var className = null,\n activeTypes = pendingTransitionTypes;\n if (null !== activeTypes)\n for (var i = 0; i < activeTypes.length; i++) {\n var match = classByType[activeTypes[i]];\n if (null != match) {\n if (\"none\" === match) return \"none\";\n className = null == className ? match : className + (\" \" + match);\n }\n }\n return null == className ? classByType.default : className;\n }\n function getViewTransitionClassName(defaultClass, eventClass) {\n defaultClass = getClassNameByType(defaultClass);\n eventClass = getClassNameByType(eventClass);\n return null == eventClass\n ? \"auto\" === defaultClass\n ? null\n : defaultClass\n : \"auto\" === eventClass\n ? null\n : eventClass;\n }\n function getArrayKind(array) {\n for (\n var kind = EMPTY_ARRAY, i = 0;\n i < array.length && i < OBJECT_WIDTH_LIMIT;\n i++\n ) {\n var value = array[i];\n if (\"object\" === typeof value && null !== value)\n if (\n isArrayImpl(value) &&\n 2 === value.length &&\n \"string\" === typeof value[0]\n ) {\n if (kind !== EMPTY_ARRAY && kind !== ENTRIES_ARRAY)\n return COMPLEX_ARRAY;\n kind = ENTRIES_ARRAY;\n } else return COMPLEX_ARRAY;\n else {\n if (\n \"function\" === typeof value ||\n (\"string\" === typeof value && 50 < value.length) ||\n (kind !== EMPTY_ARRAY && kind !== PRIMITIVE_ARRAY)\n )\n return COMPLEX_ARRAY;\n kind = PRIMITIVE_ARRAY;\n }\n }\n return kind;\n }\n function addObjectToProperties(object, properties, indent, prefix) {\n var addedProperties = 0,\n key;\n for (key in object)\n if (\n hasOwnProperty.call(object, key) &&\n \"_\" !== key[0] &&\n (addedProperties++,\n addValueToProperties(key, object[key], properties, indent, prefix),\n addedProperties >= OBJECT_WIDTH_LIMIT)\n ) {\n properties.push([\n prefix +\n \"\\u00a0\\u00a0\".repeat(indent) +\n \"Only \" +\n OBJECT_WIDTH_LIMIT +\n \" properties are shown. React will not log more properties of this object.\",\n \"\"\n ]);\n break;\n }\n }\n function addValueToProperties(\n propertyName,\n value,\n properties,\n indent,\n prefix\n ) {\n switch (typeof value) {\n case \"object\":\n if (null === value) {\n value = \"null\";\n break;\n } else {\n if (value.$$typeof === REACT_ELEMENT_TYPE) {\n var typeName = getComponentNameFromType(value.type) || \"\\u2026\",\n key = value.key;\n value = value.props;\n var propsKeys = Object.keys(value),\n propsLength = propsKeys.length;\n if (null == key && 0 === propsLength) {\n value = \"<\" + typeName + \" />\";\n break;\n }\n if (\n 3 > indent ||\n (1 === propsLength &&\n \"children\" === propsKeys[0] &&\n null == key)\n ) {\n value = \"<\" + typeName + \" \\u2026 />\";\n break;\n }\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"<\" + typeName\n ]);\n null !== key &&\n addValueToProperties(\n \"key\",\n key,\n properties,\n indent + 1,\n prefix\n );\n propertyName = !1;\n key = 0;\n for (var propKey in value)\n if (\n (key++,\n \"children\" === propKey\n ? null != value.children &&\n (!isArrayImpl(value.children) ||\n 0 < value.children.length) &&\n (propertyName = !0)\n : hasOwnProperty.call(value, propKey) &&\n \"_\" !== propKey[0] &&\n addValueToProperties(\n propKey,\n value[propKey],\n properties,\n indent + 1,\n prefix\n ),\n key >= OBJECT_WIDTH_LIMIT)\n )\n break;\n properties.push([\n \"\",\n propertyName ? \">\\u2026</\" + typeName + \">\" : \"/>\"\n ]);\n return;\n }\n typeName = Object.prototype.toString.call(value);\n propKey = typeName.slice(8, typeName.length - 1);\n if (\"Array\" === propKey)\n if (\n ((typeName = value.length > OBJECT_WIDTH_LIMIT),\n (key = getArrayKind(value)),\n key === PRIMITIVE_ARRAY || key === EMPTY_ARRAY)\n ) {\n value = JSON.stringify(\n typeName\n ? value.slice(0, OBJECT_WIDTH_LIMIT).concat(\"\\u2026\")\n : value\n );\n break;\n } else if (key === ENTRIES_ARRAY) {\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"\"\n ]);\n for (\n propertyName = 0;\n propertyName < value.length &&\n propertyName < OBJECT_WIDTH_LIMIT;\n propertyName++\n )\n (propKey = value[propertyName]),\n addValueToProperties(\n propKey[0],\n propKey[1],\n properties,\n indent + 1,\n prefix\n );\n typeName &&\n addValueToProperties(\n OBJECT_WIDTH_LIMIT.toString(),\n \"\\u2026\",\n properties,\n indent + 1,\n prefix\n );\n return;\n }\n if (\"Promise\" === propKey) {\n if (\"fulfilled\" === value.status) {\n if (\n ((typeName = properties.length),\n addValueToProperties(\n propertyName,\n value.value,\n properties,\n indent,\n prefix\n ),\n properties.length > typeName)\n ) {\n properties = properties[typeName];\n properties[1] =\n \"Promise<\" + (properties[1] || \"Object\") + \">\";\n return;\n }\n } else if (\n \"rejected\" === value.status &&\n ((typeName = properties.length),\n addValueToProperties(\n propertyName,\n value.reason,\n properties,\n indent,\n prefix\n ),\n properties.length > typeName)\n ) {\n properties = properties[typeName];\n properties[1] = \"Rejected Promise<\" + properties[1] + \">\";\n return;\n }\n properties.push([\n \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"Promise\"\n ]);\n return;\n }\n \"Object\" === propKey &&\n (typeName = Object.getPrototypeOf(value)) &&\n \"function\" === typeof typeName.constructor &&\n (propKey = typeName.constructor.name);\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"Object\" === propKey ? (3 > indent ? \"\" : \"\\u2026\") : propKey\n ]);\n 3 > indent &&\n addObjectToProperties(value, properties, indent + 1, prefix);\n return;\n }\n case \"function\":\n value = \"\" === value.name ? \"() => {}\" : value.name + \"() {}\";\n break;\n case \"string\":\n value =\n value === OMITTED_PROP_ERROR ? \"\\u2026\" : JSON.stringify(value);\n break;\n case \"undefined\":\n value = \"undefined\";\n break;\n case \"boolean\":\n value = value ? \"true\" : \"false\";\n break;\n default:\n value = String(value);\n }\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n value\n ]);\n }\n function addObjectDiffToProperties(prev, next, properties, indent) {\n var isDeeplyEqual = !0,\n prevPropertiesChecked = 0;\n for (key in prev) {\n if (prevPropertiesChecked > OBJECT_WIDTH_LIMIT) {\n properties.push([\n \"Previous object has more than \" +\n OBJECT_WIDTH_LIMIT +\n \" properties. React will not attempt to diff objects with too many properties.\",\n \"\"\n ]);\n isDeeplyEqual = !1;\n break;\n }\n key in next ||\n (properties.push([\n REMOVED + \"\\u00a0\\u00a0\".repeat(indent) + key,\n \"\\u2026\"\n ]),\n (isDeeplyEqual = !1));\n prevPropertiesChecked++;\n }\n prevPropertiesChecked = 0;\n for (var _key in next) {\n if (prevPropertiesChecked > OBJECT_WIDTH_LIMIT) {\n properties.push([\n \"Next object has more than \" +\n OBJECT_WIDTH_LIMIT +\n \" properties. React will not attempt to diff objects with too many properties.\",\n \"\"\n ]);\n isDeeplyEqual = !1;\n break;\n }\n if (_key in prev) {\n var key = prev[_key];\n var nextValue = next[_key];\n if (key !== nextValue) {\n if (0 === indent && \"children\" === _key) {\n isDeeplyEqual = \"\\u00a0\\u00a0\".repeat(indent) + _key;\n properties.push(\n [REMOVED + isDeeplyEqual, \"\\u2026\"],\n [ADDED + isDeeplyEqual, \"\\u2026\"]\n );\n isDeeplyEqual = !1;\n continue;\n }\n if (!(3 <= indent))\n if (\n \"object\" === typeof key &&\n \"object\" === typeof nextValue &&\n null !== key &&\n null !== nextValue &&\n key.$$typeof === nextValue.$$typeof\n )\n if (nextValue.$$typeof === REACT_ELEMENT_TYPE) {\n if (\n key.type === nextValue.type &&\n key.key === nextValue.key\n ) {\n key = getComponentNameFromType(nextValue.type) || \"\\u2026\";\n isDeeplyEqual = \"\\u00a0\\u00a0\".repeat(indent) + _key;\n key = \"<\" + key + \" \\u2026 />\";\n properties.push(\n [REMOVED + isDeeplyEqual, key],\n [ADDED + isDeeplyEqual, key]\n );\n isDeeplyEqual = !1;\n continue;\n }\n } else {\n var prevKind = Object.prototype.toString.call(key),\n nextKind = Object.prototype.toString.call(nextValue);\n if (\n prevKind === nextKind &&\n (\"[object Object]\" === nextKind ||\n \"[object Array]\" === nextKind)\n ) {\n prevKind = [\n UNCHANGED + \"\\u00a0\\u00a0\".repeat(indent) + _key,\n \"[object Array]\" === nextKind ? \"Array\" : \"\"\n ];\n properties.push(prevKind);\n nextKind = properties.length;\n addObjectDiffToProperties(\n key,\n nextValue,\n properties,\n indent + 1\n )\n ? nextKind === properties.length &&\n (prevKind[1] =\n \"Referentially unequal but deeply equal objects. Consider memoization.\")\n : (isDeeplyEqual = !1);\n continue;\n }\n }\n else if (\n \"function\" === typeof key &&\n \"function\" === typeof nextValue &&\n key.name === nextValue.name &&\n key.length === nextValue.length &&\n ((prevKind = Function.prototype.toString.call(key)),\n (nextKind = Function.prototype.toString.call(nextValue)),\n prevKind === nextKind)\n ) {\n key =\n \"\" === nextValue.name ? \"() => {}\" : nextValue.name + \"() {}\";\n properties.push([\n UNCHANGED + \"\\u00a0\\u00a0\".repeat(indent) + _key,\n key +\n \" Referentially unequal function closure. Consider memoization.\"\n ]);\n continue;\n }\n addValueToProperties(_key, key, properties, indent, REMOVED);\n addValueToProperties(_key, nextValue, properties, indent, ADDED);\n isDeeplyEqual = !1;\n }\n } else\n properties.push([\n ADDED + \"\\u00a0\\u00a0\".repeat(indent) + _key,\n \"\\u2026\"\n ]),\n (isDeeplyEqual = !1);\n prevPropertiesChecked++;\n }\n return isDeeplyEqual;\n }\n function setCurrentTrackFromLanes(lanes) {\n currentTrack =\n lanes & 63\n ? \"Blocking\"\n : lanes & 64\n ? \"Gesture\"\n : lanes & 4194176\n ? \"Transition\"\n : lanes & 62914560\n ? \"Suspense\"\n : lanes & 2080374784\n ? \"Idle\"\n : \"Other\";\n }\n function logComponentTrigger(fiber, startTime, endTime, trigger) {\n supportsUserTiming &&\n ((reusableComponentOptions.start = startTime),\n (reusableComponentOptions.end = endTime),\n (reusableComponentDevToolDetails.color = \"warning\"),\n (reusableComponentDevToolDetails.tooltipText = trigger),\n (reusableComponentDevToolDetails.properties = null),\n (fiber = fiber._debugTask)\n ? fiber.run(\n performance.measure.bind(\n performance,\n trigger,\n reusableComponentOptions\n )\n )\n : performance.measure(trigger, reusableComponentOptions),\n performance.clearMeasures(trigger));\n }\n function logComponentReappeared(fiber, startTime, endTime) {\n logComponentTrigger(fiber, startTime, endTime, \"Reconnect\");\n }\n function logComponentRender(\n fiber,\n startTime,\n endTime,\n wasHydrated,\n committedLanes\n ) {\n var name = getComponentNameFromFiber(fiber);\n if (null !== name && supportsUserTiming) {\n var alternate = fiber.alternate,\n selfTime = fiber.actualDuration;\n if (null === alternate || alternate.child !== fiber.child)\n for (var child = fiber.child; null !== child; child = child.sibling)\n selfTime -= child.actualDuration;\n selfTime =\n 0.5 > selfTime\n ? wasHydrated\n ? \"tertiary-light\"\n : \"primary-light\"\n : 10 > selfTime\n ? wasHydrated\n ? \"tertiary\"\n : \"primary\"\n : 100 > selfTime\n ? wasHydrated\n ? \"tertiary-dark\"\n : \"primary-dark\"\n : \"error\";\n var props = fiber.memoizedProps;\n wasHydrated = fiber._debugTask;\n null !== props &&\n null !== alternate &&\n alternate.memoizedProps !== props\n ? ((child = [reusableChangedPropsEntry]),\n (props = addObjectDiffToProperties(\n alternate.memoizedProps,\n props,\n child,\n 0\n )),\n 1 < child.length\n ? (props &&\n !alreadyWarnedForDeepEquality &&\n 0 === (alternate.lanes & committedLanes) &&\n 100 < fiber.actualDuration\n ? ((alreadyWarnedForDeepEquality = !0),\n (child[0] = reusableDeeplyEqualPropsEntry),\n (reusableComponentDevToolDetails.color = \"warning\"),\n (reusableComponentDevToolDetails.tooltipText =\n DEEP_EQUALITY_WARNING))\n : ((reusableComponentDevToolDetails.color = selfTime),\n (reusableComponentDevToolDetails.tooltipText = name)),\n (reusableComponentDevToolDetails.properties = child),\n (reusableComponentOptions.start = startTime),\n (reusableComponentOptions.end = endTime),\n (fiber = \"\\u200b\" + name),\n null != wasHydrated\n ? wasHydrated.run(\n performance.measure.bind(\n performance,\n fiber,\n reusableComponentOptions\n )\n )\n : performance.measure(fiber, reusableComponentOptions),\n performance.clearMeasures(fiber))\n : null != wasHydrated\n ? wasHydrated.run(\n console.timeStamp.bind(\n console,\n name,\n startTime,\n endTime,\n COMPONENTS_TRACK,\n void 0,\n selfTime\n )\n )\n : console.timeStamp(\n name,\n startTime,\n endTime,\n COMPONENTS_TRACK,\n void 0,\n selfTime\n ))\n : null != wasHydrated\n ? wasHydrated.run(\n console.timeStamp.bind(\n console,\n name,\n startTime,\n endTime,\n COMPONENTS_TRACK,\n void 0,\n selfTime\n )\n )\n : console.timeStamp(\n name,\n startTime,\n endTime,\n COMPONENTS_TRACK,\n void 0,\n selfTime\n );\n }\n }\n function logComponentErrored(fiber, startTime, endTime, errors) {\n if (supportsUserTiming) {\n var name = getComponentNameFromFiber(fiber);\n if (null !== name) {\n for (\n var debugTask = null, properties = [], i = 0;\n i < errors.length;\n i++\n ) {\n var capturedValue = errors[i];\n null == debugTask &&\n null !== capturedValue.source &&\n (debugTask = capturedValue.source._debugTask);\n capturedValue = capturedValue.value;\n properties.push([\n \"Error\",\n \"object\" === typeof capturedValue &&\n null !== capturedValue &&\n \"string\" === typeof capturedValue.message\n ? String(capturedValue.message)\n : String(capturedValue)\n ]);\n }\n null !== fiber.key &&\n addValueToProperties(\"key\", fiber.key, properties, 0, \"\");\n null !== fiber.memoizedProps &&\n addObjectToProperties(fiber.memoizedProps, properties, 0, \"\");\n null == debugTask && (debugTask = fiber._debugTask);\n fiber = {\n start: startTime,\n end: endTime,\n detail: {\n devtools: {\n color: \"error\",\n track: COMPONENTS_TRACK,\n tooltipText:\n 13 === fiber.tag\n ? \"Hydration failed\"\n : \"Error boundary caught an error\",\n properties: properties\n }\n }\n };\n name = \"\\u200b\" + name;\n debugTask\n ? debugTask.run(performance.measure.bind(performance, name, fiber))\n : performance.measure(name, fiber);\n performance.clearMeasures(name);\n }\n }\n }\n function logComponentEffect(fiber, startTime, endTime, selfTime, errors) {\n if (null !== errors) {\n if (supportsUserTiming) {\n var name = getComponentNameFromFiber(fiber);\n if (null !== name) {\n selfTime = [];\n for (var i = 0; i < errors.length; i++) {\n var error = errors[i].value;\n selfTime.push([\n \"Error\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]);\n }\n null !== fiber.key &&\n addValueToProperties(\"key\", fiber.key, selfTime, 0, \"\");\n null !== fiber.memoizedProps &&\n addObjectToProperties(fiber.memoizedProps, selfTime, 0, \"\");\n startTime = {\n start: startTime,\n end: endTime,\n detail: {\n devtools: {\n color: \"error\",\n track: COMPONENTS_TRACK,\n tooltipText: \"A lifecycle or effect errored\",\n properties: selfTime\n }\n }\n };\n fiber = fiber._debugTask;\n endTime = \"\\u200b\" + name;\n fiber\n ? fiber.run(\n performance.measure.bind(performance, endTime, startTime)\n )\n : performance.measure(endTime, startTime);\n performance.clearMeasures(endTime);\n }\n }\n } else\n (name = getComponentNameFromFiber(fiber)),\n null !== name &&\n supportsUserTiming &&\n ((errors =\n 1 > selfTime\n ? \"secondary-light\"\n : 100 > selfTime\n ? \"secondary\"\n : 500 > selfTime\n ? \"secondary-dark\"\n : \"error\"),\n (fiber = fiber._debugTask)\n ? fiber.run(\n console.timeStamp.bind(\n console,\n name,\n startTime,\n endTime,\n COMPONENTS_TRACK,\n void 0,\n errors\n )\n )\n : console.timeStamp(\n name,\n startTime,\n endTime,\n COMPONENTS_TRACK,\n void 0,\n errors\n ));\n }\n function logRenderPhase(startTime, endTime, lanes, debugTask) {\n if (supportsUserTiming && !(endTime <= startTime)) {\n var color =\n (lanes & 738197653) === lanes ? \"tertiary-dark\" : \"primary-dark\";\n lanes =\n (lanes & 536870912) === lanes\n ? \"Prepared\"\n : (lanes & 201326741) === lanes\n ? \"Hydrated\"\n : \"Render\";\n debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n lanes,\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n color\n )\n )\n : console.timeStamp(\n lanes,\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n color\n );\n }\n }\n function logSuspendedRenderPhase(startTime, endTime, lanes, debugTask) {\n !supportsUserTiming ||\n endTime <= startTime ||\n ((lanes =\n (lanes & 738197653) === lanes ? \"tertiary-dark\" : \"primary-dark\"),\n debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n \"Prewarm\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n lanes\n )\n )\n : console.timeStamp(\n \"Prewarm\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n lanes\n ));\n }\n function logSuspendedWithDelayPhase(startTime, endTime, lanes, debugTask) {\n !supportsUserTiming ||\n endTime <= startTime ||\n ((lanes =\n (lanes & 738197653) === lanes ? \"tertiary-dark\" : \"primary-dark\"),\n debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n \"Suspended\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n lanes\n )\n )\n : console.timeStamp(\n \"Suspended\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n lanes\n ));\n }\n function logRecoveredRenderPhase(\n startTime,\n endTime,\n lanes,\n recoverableErrors,\n hydrationFailed,\n debugTask\n ) {\n if (supportsUserTiming && !(endTime <= startTime)) {\n lanes = [];\n for (var i = 0; i < recoverableErrors.length; i++) {\n var error = recoverableErrors[i].value;\n lanes.push([\n \"Recoverable Error\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]);\n }\n startTime = {\n start: startTime,\n end: endTime,\n detail: {\n devtools: {\n color: \"primary-dark\",\n track: currentTrack,\n trackGroup: LANES_TRACK_GROUP,\n tooltipText: hydrationFailed\n ? \"Hydration Failed\"\n : \"Recovered after Error\",\n properties: lanes\n }\n }\n };\n debugTask\n ? debugTask.run(\n performance.measure.bind(performance, \"Recovered\", startTime)\n )\n : performance.measure(\"Recovered\", startTime);\n performance.clearMeasures(\"Recovered\");\n }\n }\n function logErroredRenderPhase(startTime, endTime, lanes, debugTask) {\n !supportsUserTiming ||\n endTime <= startTime ||\n (debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n \"Errored\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"error\"\n )\n )\n : console.timeStamp(\n \"Errored\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"error\"\n ));\n }\n function logSuspendedCommitPhase(startTime, endTime, reason, debugTask) {\n !supportsUserTiming ||\n endTime <= startTime ||\n (debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n reason,\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-light\"\n )\n )\n : console.timeStamp(\n reason,\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-light\"\n ));\n }\n function logCommitErrored(startTime, endTime, errors, passive, debugTask) {\n if (supportsUserTiming && !(endTime <= startTime)) {\n for (var properties = [], i = 0; i < errors.length; i++) {\n var error = errors[i].value;\n properties.push([\n \"Error\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]);\n }\n startTime = {\n start: startTime,\n end: endTime,\n detail: {\n devtools: {\n color: \"error\",\n track: currentTrack,\n trackGroup: LANES_TRACK_GROUP,\n tooltipText: passive\n ? \"Remaining Effects Errored\"\n : \"Commit Errored\",\n properties: properties\n }\n }\n };\n debugTask\n ? debugTask.run(\n performance.measure.bind(performance, \"Errored\", startTime)\n )\n : performance.measure(\"Errored\", startTime);\n performance.clearMeasures(\"Errored\");\n }\n }\n function logCommitPhase(\n startTime,\n endTime,\n errors,\n abortedViewTransition,\n debugTask\n ) {\n null !== errors\n ? logCommitErrored(startTime, endTime, errors, !1, debugTask)\n : !supportsUserTiming ||\n endTime <= startTime ||\n (debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n abortedViewTransition\n ? \"Commit Interrupted View Transition\"\n : \"Commit\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n abortedViewTransition ? \"error\" : \"secondary-dark\"\n )\n )\n : console.timeStamp(\n abortedViewTransition\n ? \"Commit Interrupted View Transition\"\n : \"Commit\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n abortedViewTransition ? \"error\" : \"secondary-dark\"\n ));\n }\n function logAnimatingPhase(startTime, endTime, debugTask) {\n !supportsUserTiming ||\n endTime <= startTime ||\n (debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n \"Animating\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-dark\"\n )\n )\n : console.timeStamp(\n \"Animating\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-dark\"\n ));\n }\n function finishQueueingConcurrentUpdates() {\n for (\n var endIndex = concurrentQueuesIndex,\n i = (concurrentlyUpdatedLanes = concurrentQueuesIndex = 0);\n i < endIndex;\n\n ) {\n var fiber = concurrentQueues[i];\n concurrentQueues[i++] = null;\n var queue = concurrentQueues[i];\n concurrentQueues[i++] = null;\n var update = concurrentQueues[i];\n concurrentQueues[i++] = null;\n var lane = concurrentQueues[i];\n concurrentQueues[i++] = null;\n if (null !== queue && null !== update) {\n var pending = queue.pending;\n null === pending\n ? (update.next = update)\n : ((update.next = pending.next), (pending.next = update));\n queue.pending = update;\n }\n 0 !== lane && markUpdateLaneFromFiberToRoot(fiber, update, lane);\n }\n }\n function enqueueUpdate$1(fiber, queue, update, lane) {\n concurrentQueues[concurrentQueuesIndex++] = fiber;\n concurrentQueues[concurrentQueuesIndex++] = queue;\n concurrentQueues[concurrentQueuesIndex++] = update;\n concurrentQueues[concurrentQueuesIndex++] = lane;\n concurrentlyUpdatedLanes |= lane;\n fiber.lanes |= lane;\n fiber = fiber.alternate;\n null !== fiber && (fiber.lanes |= lane);\n }\n function enqueueConcurrentHookUpdate(fiber, queue, update, lane) {\n enqueueUpdate$1(fiber, queue, update, lane);\n return getRootForUpdatedFiber(fiber);\n }\n function enqueueConcurrentRenderForLane(fiber, lane) {\n enqueueUpdate$1(fiber, null, null, lane);\n return getRootForUpdatedFiber(fiber);\n }\n function markUpdateLaneFromFiberToRoot(sourceFiber, update, lane) {\n sourceFiber.lanes |= lane;\n var alternate = sourceFiber.alternate;\n null !== alternate && (alternate.lanes |= lane);\n for (var isHidden = !1, parent = sourceFiber.return; null !== parent; )\n (parent.childLanes |= lane),\n (alternate = parent.alternate),\n null !== alternate && (alternate.childLanes |= lane),\n 22 === parent.tag &&\n ((sourceFiber = parent.stateNode),\n null === sourceFiber ||\n sourceFiber._visibility & OffscreenVisible ||\n (isHidden = !0)),\n (sourceFiber = parent),\n (parent = parent.return);\n return 3 === sourceFiber.tag\n ? ((parent = sourceFiber.stateNode),\n isHidden &&\n null !== update &&\n ((isHidden = 31 - clz32(lane)),\n (sourceFiber = parent.hiddenUpdates),\n (alternate = sourceFiber[isHidden]),\n null === alternate\n ? (sourceFiber[isHidden] = [update])\n : alternate.push(update),\n (update.lane = lane | 536870912)),\n parent)\n : null;\n }\n function getRootForUpdatedFiber(sourceFiber) {\n if (nestedUpdateCount > NESTED_UPDATE_LIMIT)\n throw (\n ((nestedPassiveUpdateCount = nestedUpdateCount = 0),\n (rootWithPassiveNestedUpdates = rootWithNestedUpdates = null),\n Error(\n \"Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.\"\n ))\n );\n nestedPassiveUpdateCount > NESTED_PASSIVE_UPDATE_LIMIT &&\n ((nestedPassiveUpdateCount = 0),\n (rootWithPassiveNestedUpdates = null),\n console.error(\n \"Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn't have a dependency array, or one of the dependencies changes on every render.\"\n ));\n null === sourceFiber.alternate &&\n 0 !== (sourceFiber.flags & 4098) &&\n warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber);\n for (var node = sourceFiber, parent = node.return; null !== parent; )\n null === node.alternate &&\n 0 !== (node.flags & 4098) &&\n warnAboutUpdateOnNotYetMountedFiberInDEV(sourceFiber),\n (node = parent),\n (parent = node.return);\n return 3 === node.tag ? node.stateNode : null;\n }\n function resolveFunctionForHotReloading(type) {\n if (null === resolveFamily) return type;\n var family = resolveFamily(type);\n return void 0 === family ? type : family.current;\n }\n function resolveForwardRefForHotReloading(type) {\n if (null === resolveFamily) return type;\n var family = resolveFamily(type);\n return void 0 === family\n ? null !== type &&\n void 0 !== type &&\n \"function\" === typeof type.render &&\n ((family = resolveFunctionForHotReloading(type.render)),\n type.render !== family)\n ? ((family = { $$typeof: REACT_FORWARD_REF_TYPE, render: family }),\n void 0 !== type.displayName &&\n (family.displayName = type.displayName),\n family)\n : type\n : family.current;\n }\n function isCompatibleFamilyForHotReloading(fiber, element) {\n if (null === resolveFamily) return !1;\n var prevType = fiber.elementType;\n element = element.type;\n var needsCompareFamilies = !1,\n $$typeofNextType =\n \"object\" === typeof element && null !== element\n ? element.$$typeof\n : null;\n switch (fiber.tag) {\n case 1:\n \"function\" === typeof element && (needsCompareFamilies = !0);\n break;\n case 0:\n \"function\" === typeof element\n ? (needsCompareFamilies = !0)\n : $$typeofNextType === REACT_LAZY_TYPE &&\n (needsCompareFamilies = !0);\n break;\n case 11:\n $$typeofNextType === REACT_FORWARD_REF_TYPE\n ? (needsCompareFamilies = !0)\n : $$typeofNextType === REACT_LAZY_TYPE &&\n (needsCompareFamilies = !0);\n break;\n case 14:\n case 15:\n $$typeofNextType === REACT_MEMO_TYPE\n ? (needsCompareFamilies = !0)\n : $$typeofNextType === REACT_LAZY_TYPE &&\n (needsCompareFamilies = !0);\n break;\n default:\n return !1;\n }\n return needsCompareFamilies &&\n ((fiber = resolveFamily(prevType)),\n void 0 !== fiber && fiber === resolveFamily(element))\n ? !0\n : !1;\n }\n function markFailedErrorBoundaryForHotReloading(fiber) {\n null !== resolveFamily &&\n \"function\" === typeof WeakSet &&\n (null === failedBoundaries && (failedBoundaries = new WeakSet()),\n failedBoundaries.add(fiber));\n }\n function scheduleFibersWithFamiliesRecursively(\n fiber,\n updatedFamilies,\n staleFamilies\n ) {\n do {\n var _fiber = fiber,\n alternate = _fiber.alternate,\n child = _fiber.child,\n sibling = _fiber.sibling,\n tag = _fiber.tag;\n _fiber = _fiber.type;\n var candidateType = null;\n switch (tag) {\n case 0:\n case 15:\n case 1:\n candidateType = _fiber;\n break;\n case 11:\n candidateType = _fiber.render;\n }\n if (null === resolveFamily)\n throw Error(\"Expected resolveFamily to be set during hot reload.\");\n var needsRender = !1;\n _fiber = !1;\n null !== candidateType &&\n ((candidateType = resolveFamily(candidateType)),\n void 0 !== candidateType &&\n (staleFamilies.has(candidateType)\n ? (_fiber = !0)\n : updatedFamilies.has(candidateType) &&\n (1 === tag ? (_fiber = !0) : (needsRender = !0))));\n null !== failedBoundaries &&\n (failedBoundaries.has(fiber) ||\n (null !== alternate && failedBoundaries.has(alternate))) &&\n (_fiber = !0);\n _fiber && (fiber._debugNeedsRemount = !0);\n if (_fiber || needsRender)\n (alternate = enqueueConcurrentRenderForLane(fiber, 2)),\n null !== alternate && scheduleUpdateOnFiber(alternate, fiber, 2);\n null === child ||\n _fiber ||\n scheduleFibersWithFamiliesRecursively(\n child,\n updatedFamilies,\n staleFamilies\n );\n if (null === sibling) break;\n fiber = sibling;\n } while (1);\n }\n function FiberNode(tag, pendingProps, key, mode) {\n this.tag = tag;\n this.key = key;\n this.sibling =\n this.child =\n this.return =\n this.stateNode =\n this.type =\n this.elementType =\n null;\n this.index = 0;\n this.refCleanup = this.ref = null;\n this.pendingProps = pendingProps;\n this.dependencies =\n this.memoizedState =\n this.updateQueue =\n this.memoizedProps =\n null;\n this.mode = mode;\n this.subtreeFlags = this.flags = 0;\n this.deletions = null;\n this.childLanes = this.lanes = 0;\n this.alternate = null;\n this.actualDuration = -0;\n this.actualStartTime = -1.1;\n this.treeBaseDuration = this.selfBaseDuration = -0;\n this._debugTask =\n this._debugStack =\n this._debugOwner =\n this._debugInfo =\n null;\n this._debugNeedsRemount = !1;\n this._debugHookTypes = null;\n hasBadMapPolyfill ||\n \"function\" !== typeof Object.preventExtensions ||\n Object.preventExtensions(this);\n }\n function shouldConstruct(Component) {\n Component = Component.prototype;\n return !(!Component || !Component.isReactComponent);\n }\n function createWorkInProgress(current, pendingProps) {\n var workInProgress = current.alternate;\n null === workInProgress\n ? ((workInProgress = createFiber(\n current.tag,\n pendingProps,\n current.key,\n current.mode\n )),\n (workInProgress.elementType = current.elementType),\n (workInProgress.type = current.type),\n (workInProgress.stateNode = current.stateNode),\n (workInProgress._debugOwner = current._debugOwner),\n (workInProgress._debugStack = current._debugStack),\n (workInProgress._debugTask = current._debugTask),\n (workInProgress._debugHookTypes = current._debugHookTypes),\n (workInProgress.alternate = current),\n (current.alternate = workInProgress))\n : ((workInProgress.pendingProps = pendingProps),\n (workInProgress.type = current.type),\n (workInProgress.flags = 0),\n (workInProgress.subtreeFlags = 0),\n (workInProgress.deletions = null),\n (workInProgress.actualDuration = -0),\n (workInProgress.actualStartTime = -1.1));\n workInProgress.flags = current.flags & 132120576;\n workInProgress.childLanes = current.childLanes;\n workInProgress.lanes = current.lanes;\n workInProgress.child = current.child;\n workInProgress.memoizedProps = current.memoizedProps;\n workInProgress.memoizedState = current.memoizedState;\n workInProgress.updateQueue = current.updateQueue;\n pendingProps = current.dependencies;\n workInProgress.dependencies =\n null === pendingProps\n ? null\n : {\n lanes: pendingProps.lanes,\n firstContext: pendingProps.firstContext,\n _debugThenableState: pendingProps._debugThenableState\n };\n workInProgress.sibling = current.sibling;\n workInProgress.index = current.index;\n workInProgress.ref = current.ref;\n workInProgress.refCleanup = current.refCleanup;\n workInProgress.selfBaseDuration = current.selfBaseDuration;\n workInProgress.treeBaseDuration = current.treeBaseDuration;\n workInProgress._debugInfo = current._debugInfo;\n workInProgress._debugNeedsRemount = current._debugNeedsRemount;\n switch (workInProgress.tag) {\n case 0:\n case 15:\n workInProgress.type = resolveFunctionForHotReloading(current.type);\n break;\n case 1:\n workInProgress.type = resolveFunctionForHotReloading(current.type);\n break;\n case 11:\n workInProgress.type = resolveForwardRefForHotReloading(current.type);\n }\n return workInProgress;\n }\n function resetWorkInProgress(workInProgress, renderLanes) {\n workInProgress.flags &= 132120578;\n var current = workInProgress.alternate;\n null === current\n ? ((workInProgress.childLanes = 0),\n (workInProgress.lanes = renderLanes),\n (workInProgress.child = null),\n (workInProgress.subtreeFlags = 0),\n (workInProgress.memoizedProps = null),\n (workInProgress.memoizedState = null),\n (workInProgress.updateQueue = null),\n (workInProgress.dependencies = null),\n (workInProgress.stateNode = null),\n (workInProgress.selfBaseDuration = 0),\n (workInProgress.treeBaseDuration = 0))\n : ((workInProgress.childLanes = current.childLanes),\n (workInProgress.lanes = current.lanes),\n (workInProgress.child = current.child),\n (workInProgress.subtreeFlags = 0),\n (workInProgress.deletions = null),\n (workInProgress.memoizedProps = current.memoizedProps),\n (workInProgress.memoizedState = current.memoizedState),\n (workInProgress.updateQueue = current.updateQueue),\n (workInProgress.type = current.type),\n (renderLanes = current.dependencies),\n (workInProgress.dependencies =\n null === renderLanes\n ? null\n : {\n lanes: renderLanes.lanes,\n firstContext: renderLanes.firstContext,\n _debugThenableState: renderLanes._debugThenableState\n }),\n (workInProgress.selfBaseDuration = current.selfBaseDuration),\n (workInProgress.treeBaseDuration = current.treeBaseDuration));\n return workInProgress;\n }\n function createFiberFromTypeAndProps(\n type,\n key,\n pendingProps,\n owner,\n mode,\n lanes\n ) {\n var fiberTag = 0,\n resolvedType = type;\n if (\"function\" === typeof type)\n shouldConstruct(type) && (fiberTag = 1),\n (resolvedType = resolveFunctionForHotReloading(resolvedType));\n else if (\"string\" === typeof type)\n (fiberTag = getHostContext()),\n (fiberTag = isHostHoistableType(type, pendingProps, fiberTag)\n ? 26\n : \"html\" === type || \"head\" === type || \"body\" === type\n ? 27\n : 5);\n else\n a: switch (type) {\n case REACT_ACTIVITY_TYPE:\n return (\n (key = createFiber(31, pendingProps, key, mode)),\n (key.elementType = REACT_ACTIVITY_TYPE),\n (key.lanes = lanes),\n key\n );\n case REACT_FRAGMENT_TYPE:\n return createFiberFromFragment(\n pendingProps.children,\n mode,\n lanes,\n key\n );\n case REACT_STRICT_MODE_TYPE:\n fiberTag = 8;\n mode |= StrictLegacyMode;\n mode |= StrictEffectsMode;\n break;\n case REACT_PROFILER_TYPE:\n return (\n (type = pendingProps),\n (owner = mode),\n \"string\" !== typeof type.id &&\n console.error(\n 'Profiler must specify an \"id\" of type `string` as a prop. Received the type `%s` instead.',\n typeof type.id\n ),\n (key = createFiber(12, type, key, owner | ProfileMode)),\n (key.elementType = REACT_PROFILER_TYPE),\n (key.lanes = lanes),\n (key.stateNode = { effectDuration: 0, passiveEffectDuration: 0 }),\n key\n );\n case REACT_SUSPENSE_TYPE:\n return (\n (key = createFiber(13, pendingProps, key, mode)),\n (key.elementType = REACT_SUSPENSE_TYPE),\n (key.lanes = lanes),\n key\n );\n case REACT_SUSPENSE_LIST_TYPE:\n return (\n (key = createFiber(19, pendingProps, key, mode)),\n (key.elementType = REACT_SUSPENSE_LIST_TYPE),\n (key.lanes = lanes),\n key\n );\n case REACT_LEGACY_HIDDEN_TYPE:\n case REACT_VIEW_TRANSITION_TYPE:\n return (\n (type = mode | SuspenseyImagesMode),\n (key = createFiber(30, pendingProps, key, type)),\n (key.elementType = REACT_VIEW_TRANSITION_TYPE),\n (key.lanes = lanes),\n (key.stateNode = {\n autoName: null,\n paired: null,\n clones: null,\n ref: null\n }),\n key\n );\n default:\n if (\"object\" === typeof type && null !== type)\n switch (type.$$typeof) {\n case REACT_CONTEXT_TYPE:\n fiberTag = 10;\n break a;\n case REACT_CONSUMER_TYPE:\n fiberTag = 9;\n break a;\n case REACT_FORWARD_REF_TYPE:\n fiberTag = 11;\n resolvedType = resolveForwardRefForHotReloading(resolvedType);\n break a;\n case REACT_MEMO_TYPE:\n fiberTag = 14;\n break a;\n case REACT_LAZY_TYPE:\n fiberTag = 16;\n resolvedType = null;\n break a;\n }\n pendingProps = \"\";\n if (\n void 0 === type ||\n (\"object\" === typeof type &&\n null !== type &&\n 0 === Object.keys(type).length)\n )\n pendingProps +=\n \" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.\";\n null === type\n ? (resolvedType = \"null\")\n : isArrayImpl(type)\n ? (resolvedType = \"array\")\n : void 0 !== type && type.$$typeof === REACT_ELEMENT_TYPE\n ? ((resolvedType =\n \"<\" +\n (getComponentNameFromType(type.type) || \"Unknown\") +\n \" />\"),\n (pendingProps =\n \" Did you accidentally export a JSX literal instead of a component?\"))\n : (resolvedType = typeof type);\n (fiberTag = owner ? getComponentNameFromOwner(owner) : null) &&\n (pendingProps +=\n \"\\n\\nCheck the render method of `\" + fiberTag + \"`.\");\n fiberTag = 29;\n pendingProps = Error(\n \"Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: \" +\n (resolvedType + \".\" + pendingProps)\n );\n resolvedType = null;\n }\n key = createFiber(fiberTag, pendingProps, key, mode);\n key.elementType = type;\n key.type = resolvedType;\n key.lanes = lanes;\n key._debugOwner = owner;\n return key;\n }\n function createFiberFromElement(element, mode, lanes) {\n mode = createFiberFromTypeAndProps(\n element.type,\n element.key,\n element.props,\n element._owner,\n mode,\n lanes\n );\n mode._debugOwner = element._owner;\n mode._debugStack = element._debugStack;\n mode._debugTask = element._debugTask;\n return mode;\n }\n function createFiberFromFragment(elements, mode, lanes, key) {\n elements = createFiber(7, elements, key, mode);\n elements.lanes = lanes;\n return elements;\n }\n function createFiberFromText(content, mode, lanes) {\n content = createFiber(6, content, null, mode);\n content.lanes = lanes;\n return content;\n }\n function createFiberFromDehydratedFragment(dehydratedNode) {\n var fiber = createFiber(18, null, null, NoMode);\n fiber.stateNode = dehydratedNode;\n return fiber;\n }\n function createFiberFromPortal(portal, mode, lanes) {\n mode = createFiber(\n 4,\n null !== portal.children ? portal.children : [],\n portal.key,\n mode\n );\n mode.lanes = lanes;\n mode.stateNode = {\n containerInfo: portal.containerInfo,\n pendingChildren: null,\n implementation: portal.implementation\n };\n return mode;\n }\n function createCapturedValueAtFiber(value, source) {\n if (\"object\" === typeof value && null !== value) {\n var existing = CapturedStacks.get(value);\n if (void 0 !== existing) return existing;\n source = {\n value: value,\n source: source,\n stack: getStackByFiberInDevAndProd(source)\n };\n CapturedStacks.set(value, source);\n return source;\n }\n return {\n value: value,\n source: source,\n stack: getStackByFiberInDevAndProd(source)\n };\n }\n function pushTreeFork(workInProgress, totalChildren) {\n warnIfNotHydrating();\n forkStack[forkStackIndex++] = treeForkCount;\n forkStack[forkStackIndex++] = treeForkProvider;\n treeForkProvider = workInProgress;\n treeForkCount = totalChildren;\n }\n function pushTreeId(workInProgress, totalChildren, index) {\n warnIfNotHydrating();\n idStack[idStackIndex++] = treeContextId;\n idStack[idStackIndex++] = treeContextOverflow;\n idStack[idStackIndex++] = treeContextProvider;\n treeContextProvider = workInProgress;\n var baseIdWithLeadingBit = treeContextId;\n workInProgress = treeContextOverflow;\n var baseLength = 32 - clz32(baseIdWithLeadingBit) - 1;\n baseIdWithLeadingBit &= ~(1 << baseLength);\n index += 1;\n var length = 32 - clz32(totalChildren) + baseLength;\n if (30 < length) {\n var numberOfOverflowBits = baseLength - (baseLength % 5);\n length = (\n baseIdWithLeadingBit &\n ((1 << numberOfOverflowBits) - 1)\n ).toString(32);\n baseIdWithLeadingBit >>= numberOfOverflowBits;\n baseLength -= numberOfOverflowBits;\n treeContextId =\n (1 << (32 - clz32(totalChildren) + baseLength)) |\n (index << baseLength) |\n baseIdWithLeadingBit;\n treeContextOverflow = length + workInProgress;\n } else\n (treeContextId =\n (1 << length) | (index << baseLength) | baseIdWithLeadingBit),\n (treeContextOverflow = workInProgress);\n }\n function pushMaterializedTreeId(workInProgress) {\n warnIfNotHydrating();\n null !== workInProgress.return &&\n (pushTreeFork(workInProgress, 1), pushTreeId(workInProgress, 1, 0));\n }\n function popTreeContext(workInProgress) {\n for (; workInProgress === treeForkProvider; )\n (treeForkProvider = forkStack[--forkStackIndex]),\n (forkStack[forkStackIndex] = null),\n (treeForkCount = forkStack[--forkStackIndex]),\n (forkStack[forkStackIndex] = null);\n for (; workInProgress === treeContextProvider; )\n (treeContextProvider = idStack[--idStackIndex]),\n (idStack[idStackIndex] = null),\n (treeContextOverflow = idStack[--idStackIndex]),\n (idStack[idStackIndex] = null),\n (treeContextId = idStack[--idStackIndex]),\n (idStack[idStackIndex] = null);\n }\n function getSuspendedTreeContext() {\n warnIfNotHydrating();\n return null !== treeContextProvider\n ? { id: treeContextId, overflow: treeContextOverflow }\n : null;\n }\n function restoreSuspendedTreeContext(workInProgress, suspendedContext) {\n warnIfNotHydrating();\n idStack[idStackIndex++] = treeContextId;\n idStack[idStackIndex++] = treeContextOverflow;\n idStack[idStackIndex++] = treeContextProvider;\n treeContextId = suspendedContext.id;\n treeContextOverflow = suspendedContext.overflow;\n treeContextProvider = workInProgress;\n }\n function warnIfNotHydrating() {\n isHydrating ||\n console.error(\n \"Expected to be hydrating. This is a bug in React. Please file an issue.\"\n );\n }\n function buildHydrationDiffNode(fiber, distanceFromLeaf) {\n if (null === fiber.return) {\n if (null === hydrationDiffRootDEV)\n hydrationDiffRootDEV = {\n fiber: fiber,\n children: [],\n serverProps: void 0,\n serverTail: [],\n distanceFromLeaf: distanceFromLeaf\n };\n else {\n if (hydrationDiffRootDEV.fiber !== fiber)\n throw Error(\n \"Saw multiple hydration diff roots in a pass. This is a bug in React.\"\n );\n hydrationDiffRootDEV.distanceFromLeaf > distanceFromLeaf &&\n (hydrationDiffRootDEV.distanceFromLeaf = distanceFromLeaf);\n }\n return hydrationDiffRootDEV;\n }\n var siblings = buildHydrationDiffNode(\n fiber.return,\n distanceFromLeaf + 1\n ).children;\n if (0 < siblings.length && siblings[siblings.length - 1].fiber === fiber)\n return (\n (siblings = siblings[siblings.length - 1]),\n siblings.distanceFromLeaf > distanceFromLeaf &&\n (siblings.distanceFromLeaf = distanceFromLeaf),\n siblings\n );\n distanceFromLeaf = {\n fiber: fiber,\n children: [],\n serverProps: void 0,\n serverTail: [],\n distanceFromLeaf: distanceFromLeaf\n };\n siblings.push(distanceFromLeaf);\n return distanceFromLeaf;\n }\n function warnIfHydrating() {\n isHydrating &&\n console.error(\n \"We should not be hydrating here. This is a bug in React. Please file a bug.\"\n );\n }\n function warnNonHydratedInstance(fiber, rejectedCandidate) {\n didSuspendOrErrorDEV ||\n ((fiber = buildHydrationDiffNode(fiber, 0)),\n (fiber.serverProps = null),\n null !== rejectedCandidate &&\n ((rejectedCandidate =\n describeHydratableInstanceForDevWarnings(rejectedCandidate)),\n fiber.serverTail.push(rejectedCandidate)));\n }\n function throwOnHydrationMismatch(fiber) {\n var fromText =\n 1 < arguments.length && void 0 !== arguments[1] ? arguments[1] : !1,\n diff = \"\",\n diffRoot = hydrationDiffRootDEV;\n null !== diffRoot &&\n ((hydrationDiffRootDEV = null), (diff = describeDiff(diffRoot)));\n queueHydrationError(\n createCapturedValueAtFiber(\n Error(\n \"Hydration failed because the server rendered \" +\n (fromText ? \"text\" : \"HTML\") +\n \" didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:\\n\\n- A server/client branch `if (typeof window !== 'undefined')`.\\n- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.\\n- Date formatting in a user's locale which doesn't match the server.\\n- External changing data without sending a snapshot of it along with the HTML.\\n- Invalid HTML tag nesting.\\n\\nIt can also happen if the client has a browser extension installed which messes with the HTML before React loaded.\\n\\nhttps://react.dev/link/hydration-mismatch\" +\n diff\n ),\n fiber\n )\n );\n throw HydrationMismatchException;\n }\n function prepareToHydrateHostInstance(fiber) {\n var didHydrate = fiber.stateNode;\n var type = fiber.type,\n props = fiber.memoizedProps;\n didHydrate[internalInstanceKey] = fiber;\n didHydrate[internalPropsKey] = props;\n validatePropertiesInDevelopment(type, props);\n switch (type) {\n case \"dialog\":\n listenToNonDelegatedEvent(\"cancel\", didHydrate);\n listenToNonDelegatedEvent(\"close\", didHydrate);\n break;\n case \"iframe\":\n case \"object\":\n case \"embed\":\n listenToNonDelegatedEvent(\"load\", didHydrate);\n break;\n case \"video\":\n case \"audio\":\n for (type = 0; type < mediaEventTypes.length; type++)\n listenToNonDelegatedEvent(mediaEventTypes[type], didHydrate);\n break;\n case \"source\":\n listenToNonDelegatedEvent(\"error\", didHydrate);\n break;\n case \"img\":\n case \"image\":\n case \"link\":\n listenToNonDelegatedEvent(\"error\", didHydrate);\n listenToNonDelegatedEvent(\"load\", didHydrate);\n break;\n case \"details\":\n listenToNonDelegatedEvent(\"toggle\", didHydrate);\n break;\n case \"input\":\n checkControlledValueProps(\"input\", props);\n listenToNonDelegatedEvent(\"invalid\", didHydrate);\n validateInputProps(didHydrate, props);\n initInput(\n didHydrate,\n props.value,\n props.defaultValue,\n props.checked,\n props.defaultChecked,\n props.type,\n props.name,\n !0\n );\n break;\n case \"option\":\n validateOptionProps(didHydrate, props);\n break;\n case \"select\":\n checkControlledValueProps(\"select\", props);\n listenToNonDelegatedEvent(\"invalid\", didHydrate);\n validateSelectProps(didHydrate, props);\n break;\n case \"textarea\":\n checkControlledValueProps(\"textarea\", props),\n listenToNonDelegatedEvent(\"invalid\", didHydrate),\n validateTextareaProps(didHydrate, props),\n initTextarea(\n didHydrate,\n props.value,\n props.defaultValue,\n props.children\n );\n }\n type = props.children;\n (\"string\" !== typeof type &&\n \"number\" !== typeof type &&\n \"bigint\" !== typeof type) ||\n didHydrate.textContent === \"\" + type ||\n !0 === props.suppressHydrationWarning ||\n checkForUnmatchedText(didHydrate.textContent, type)\n ? (null != props.popover &&\n (listenToNonDelegatedEvent(\"beforetoggle\", didHydrate),\n listenToNonDelegatedEvent(\"toggle\", didHydrate)),\n null != props.onScroll &&\n listenToNonDelegatedEvent(\"scroll\", didHydrate),\n null != props.onScrollEnd &&\n listenToNonDelegatedEvent(\"scrollend\", didHydrate),\n null != props.onClick && (didHydrate.onclick = noop$1),\n (didHydrate = !0))\n : (didHydrate = !1);\n didHydrate || throwOnHydrationMismatch(fiber, !0);\n }\n function popToNextHostParent(fiber) {\n for (hydrationParentFiber = fiber.return; hydrationParentFiber; )\n switch (hydrationParentFiber.tag) {\n case 5:\n case 31:\n case 13:\n rootOrSingletonContext = !1;\n return;\n case 27:\n case 3:\n rootOrSingletonContext = !0;\n return;\n default:\n hydrationParentFiber = hydrationParentFiber.return;\n }\n }\n function popHydrationState(fiber) {\n if (fiber !== hydrationParentFiber) return !1;\n if (!isHydrating)\n return popToNextHostParent(fiber), (isHydrating = !0), !1;\n var tag = fiber.tag,\n JSCompiler_temp;\n if ((JSCompiler_temp = 3 !== tag && 27 !== tag)) {\n if ((JSCompiler_temp = 5 === tag))\n (JSCompiler_temp = fiber.type),\n (JSCompiler_temp =\n !(\"form\" !== JSCompiler_temp && \"button\" !== JSCompiler_temp) ||\n shouldSetTextContent(fiber.type, fiber.memoizedProps));\n JSCompiler_temp = !JSCompiler_temp;\n }\n if (JSCompiler_temp && nextHydratableInstance) {\n for (JSCompiler_temp = nextHydratableInstance; JSCompiler_temp; ) {\n var diffNode = buildHydrationDiffNode(fiber, 0),\n description =\n describeHydratableInstanceForDevWarnings(JSCompiler_temp);\n diffNode.serverTail.push(description);\n JSCompiler_temp =\n \"Suspense\" === description.type\n ? getNextHydratableInstanceAfterHydrationBoundary(JSCompiler_temp)\n : getNextHydratable(JSCompiler_temp.nextSibling);\n }\n throwOnHydrationMismatch(fiber);\n }\n popToNextHostParent(fiber);\n if (13 === tag) {\n fiber = fiber.memoizedState;\n fiber = null !== fiber ? fiber.dehydrated : null;\n if (!fiber)\n throw Error(\n \"Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.\"\n );\n nextHydratableInstance =\n getNextHydratableInstanceAfterHydrationBoundary(fiber);\n } else if (31 === tag) {\n fiber = fiber.memoizedState;\n fiber = null !== fiber ? fiber.dehydrated : null;\n if (!fiber)\n throw Error(\n \"Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.\"\n );\n nextHydratableInstance =\n getNextHydratableInstanceAfterHydrationBoundary(fiber);\n } else\n 27 === tag\n ? ((tag = nextHydratableInstance),\n isSingletonScope(fiber.type)\n ? ((fiber = previousHydratableOnEnteringScopedSingleton),\n (previousHydratableOnEnteringScopedSingleton = null),\n (nextHydratableInstance = fiber))\n : (nextHydratableInstance = tag))\n : (nextHydratableInstance = hydrationParentFiber\n ? getNextHydratable(fiber.stateNode.nextSibling)\n : null);\n return !0;\n }\n function resetHydrationState() {\n nextHydratableInstance = hydrationParentFiber = null;\n didSuspendOrErrorDEV = isHydrating = !1;\n }\n function upgradeHydrationErrorsToRecoverable() {\n var queuedErrors = hydrationErrors;\n null !== queuedErrors &&\n (null === workInProgressRootRecoverableErrors\n ? (workInProgressRootRecoverableErrors = queuedErrors)\n : workInProgressRootRecoverableErrors.push.apply(\n workInProgressRootRecoverableErrors,\n queuedErrors\n ),\n (hydrationErrors = null));\n return queuedErrors;\n }\n function queueHydrationError(error) {\n null === hydrationErrors\n ? (hydrationErrors = [error])\n : hydrationErrors.push(error);\n }\n function emitPendingHydrationWarnings() {\n var diffRoot = hydrationDiffRootDEV;\n if (null !== diffRoot) {\n hydrationDiffRootDEV = null;\n for (var diff = describeDiff(diffRoot); 0 < diffRoot.children.length; )\n diffRoot = diffRoot.children[0];\n runWithFiberInDEV(diffRoot.fiber, function () {\n console.error(\n \"A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Component used:\\n\\n- A server/client branch `if (typeof window !== 'undefined')`.\\n- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.\\n- Date formatting in a user's locale which doesn't match the server.\\n- External changing data without sending a snapshot of it along with the HTML.\\n- Invalid HTML tag nesting.\\n\\nIt can also happen if the client has a browser extension installed which messes with the HTML before React loaded.\\n\\n%s%s\",\n \"https://react.dev/link/hydration-mismatch\",\n diff\n );\n });\n }\n }\n function resetContextDependencies() {\n lastContextDependency = currentlyRenderingFiber$1 = null;\n isDisallowedContextReadInDEV = !1;\n }\n function pushProvider(providerFiber, context, nextValue) {\n push(valueCursor, context._currentValue, providerFiber);\n context._currentValue = nextValue;\n push(rendererCursorDEV, context._currentRenderer, providerFiber);\n void 0 !== context._currentRenderer &&\n null !== context._currentRenderer &&\n context._currentRenderer !== rendererSigil &&\n console.error(\n \"Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported.\"\n );\n context._currentRenderer = rendererSigil;\n }\n function popProvider(context, providerFiber) {\n context._currentValue = valueCursor.current;\n var currentRenderer = rendererCursorDEV.current;\n pop(rendererCursorDEV, providerFiber);\n context._currentRenderer = currentRenderer;\n pop(valueCursor, providerFiber);\n }\n function scheduleContextWorkOnParentPath(\n parent,\n renderLanes,\n propagationRoot\n ) {\n for (; null !== parent; ) {\n var alternate = parent.alternate;\n (parent.childLanes & renderLanes) !== renderLanes\n ? ((parent.childLanes |= renderLanes),\n null !== alternate && (alternate.childLanes |= renderLanes))\n : null !== alternate &&\n (alternate.childLanes & renderLanes) !== renderLanes &&\n (alternate.childLanes |= renderLanes);\n if (parent === propagationRoot) break;\n parent = parent.return;\n }\n parent !== propagationRoot &&\n console.error(\n \"Expected to find the propagation root when scheduling context work. This error is likely caused by a bug in React. Please file an issue.\"\n );\n }\n function propagateContextChanges(\n workInProgress,\n contexts,\n renderLanes,\n forcePropagateEntireTree\n ) {\n var fiber = workInProgress.child;\n null !== fiber && (fiber.return = workInProgress);\n for (; null !== fiber; ) {\n var list = fiber.dependencies;\n if (null !== list) {\n var nextFiber = fiber.child;\n list = list.firstContext;\n a: for (; null !== list; ) {\n var dependency = list;\n list = fiber;\n for (var i = 0; i < contexts.length; i++)\n if (dependency.context === contexts[i]) {\n list.lanes |= renderLanes;\n dependency = list.alternate;\n null !== dependency && (dependency.lanes |= renderLanes);\n scheduleContextWorkOnParentPath(\n list.return,\n renderLanes,\n workInProgress\n );\n forcePropagateEntireTree || (nextFiber = null);\n break a;\n }\n list = dependency.next;\n }\n } else if (18 === fiber.tag) {\n nextFiber = fiber.return;\n if (null === nextFiber)\n throw Error(\n \"We just came from a parent so we must have had a parent. This is a bug in React.\"\n );\n nextFiber.lanes |= renderLanes;\n list = nextFiber.alternate;\n null !== list && (list.lanes |= renderLanes);\n scheduleContextWorkOnParentPath(\n nextFiber,\n renderLanes,\n workInProgress\n );\n nextFiber = null;\n } else nextFiber = fiber.child;\n if (null !== nextFiber) nextFiber.return = fiber;\n else\n for (nextFiber = fiber; null !== nextFiber; ) {\n if (nextFiber === workInProgress) {\n nextFiber = null;\n break;\n }\n fiber = nextFiber.sibling;\n if (null !== fiber) {\n fiber.return = nextFiber.return;\n nextFiber = fiber;\n break;\n }\n nextFiber = nextFiber.return;\n }\n fiber = nextFiber;\n }\n }\n function propagateParentContextChanges(\n current,\n workInProgress,\n renderLanes,\n forcePropagateEntireTree\n ) {\n current = null;\n for (\n var parent = workInProgress, isInsidePropagationBailout = !1;\n null !== parent;\n\n ) {\n if (!isInsidePropagationBailout)\n if (0 !== (parent.flags & 524288)) isInsidePropagationBailout = !0;\n else if (0 !== (parent.flags & 262144)) break;\n if (10 === parent.tag) {\n var currentParent = parent.alternate;\n if (null === currentParent)\n throw Error(\"Should have a current fiber. This is a bug in React.\");\n currentParent = currentParent.memoizedProps;\n if (null !== currentParent) {\n var context = parent.type;\n objectIs(parent.pendingProps.value, currentParent.value) ||\n (null !== current\n ? current.push(context)\n : (current = [context]));\n }\n } else if (parent === hostTransitionProviderCursor.current) {\n currentParent = parent.alternate;\n if (null === currentParent)\n throw Error(\"Should have a current fiber. This is a bug in React.\");\n currentParent.memoizedState.memoizedState !==\n parent.memoizedState.memoizedState &&\n (null !== current\n ? current.push(HostTransitionContext)\n : (current = [HostTransitionContext]));\n }\n parent = parent.return;\n }\n null !== current &&\n propagateContextChanges(\n workInProgress,\n current,\n renderLanes,\n forcePropagateEntireTree\n );\n workInProgress.flags |= 262144;\n }\n function checkIfContextChanged(currentDependencies) {\n for (\n currentDependencies = currentDependencies.firstContext;\n null !== currentDependencies;\n\n ) {\n if (\n !objectIs(\n currentDependencies.context._currentValue,\n currentDependencies.memoizedValue\n )\n )\n return !0;\n currentDependencies = currentDependencies.next;\n }\n return !1;\n }\n function prepareToReadContext(workInProgress) {\n currentlyRenderingFiber$1 = workInProgress;\n lastContextDependency = null;\n workInProgress = workInProgress.dependencies;\n null !== workInProgress && (workInProgress.firstContext = null);\n }\n function readContext(context) {\n isDisallowedContextReadInDEV &&\n console.error(\n \"Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().\"\n );\n return readContextForConsumer(currentlyRenderingFiber$1, context);\n }\n function readContextDuringReconciliation(consumer, context) {\n null === currentlyRenderingFiber$1 && prepareToReadContext(consumer);\n return readContextForConsumer(consumer, context);\n }\n function readContextForConsumer(consumer, context) {\n var value = context._currentValue;\n context = { context: context, memoizedValue: value, next: null };\n if (null === lastContextDependency) {\n if (null === consumer)\n throw Error(\n \"Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().\"\n );\n lastContextDependency = context;\n consumer.dependencies = {\n lanes: 0,\n firstContext: context,\n _debugThenableState: null\n };\n consumer.flags |= 524288;\n } else lastContextDependency = lastContextDependency.next = context;\n return value;\n }\n function createCache() {\n return {\n controller: new AbortControllerLocal(),\n data: new Map(),\n refCount: 0\n };\n }\n function retainCache(cache) {\n cache.controller.signal.aborted &&\n console.warn(\n \"A cache instance was retained after it was already freed. This likely indicates a bug in React.\"\n );\n cache.refCount++;\n }\n function releaseCache(cache) {\n cache.refCount--;\n 0 > cache.refCount &&\n console.warn(\n \"A cache instance was released after it was already freed. This likely indicates a bug in React.\"\n );\n 0 === cache.refCount &&\n scheduleCallback$2(NormalPriority, function () {\n cache.controller.abort();\n });\n }\n function queueTransitionTypes(root, transitionTypes) {\n if (0 !== (root.pendingLanes & 4194048)) {\n var queued = root.transitionTypes;\n null === queued && (queued = root.transitionTypes = []);\n for (root = 0; root < transitionTypes.length; root++) {\n var transitionType = transitionTypes[root];\n -1 === queued.indexOf(transitionType) && queued.push(transitionType);\n }\n }\n }\n function claimQueuedTransitionTypes(root) {\n var claimed = root.transitionTypes;\n root.transitionTypes = null;\n return claimed;\n }\n function startUpdateTimerByLane(lane, method, fiber) {\n if (0 !== (lane & 127))\n 0 > blockingUpdateTime &&\n ((blockingUpdateTime = now()),\n (blockingUpdateTask = createTask(method)),\n (blockingUpdateMethodName = method),\n null != fiber &&\n (blockingUpdateComponentName = getComponentNameFromFiber(fiber)),\n (executionContext & (RenderContext | CommitContext)) !== NoContext &&\n ((componentEffectSpawnedUpdate = !0),\n (blockingUpdateType = SPAWNED_UPDATE)),\n (lane = resolveEventTimeStamp()),\n (method = resolveEventType()),\n lane !== blockingEventRepeatTime || method !== blockingEventType\n ? (blockingEventRepeatTime = -1.1)\n : null !== method && (blockingUpdateType = SPAWNED_UPDATE),\n (blockingEventTime = lane),\n (blockingEventType = method));\n else if (\n 0 !== (lane & 4194048) &&\n 0 > transitionUpdateTime &&\n ((transitionUpdateTime = now()),\n (transitionUpdateTask = createTask(method)),\n (transitionUpdateMethodName = method),\n null != fiber &&\n (transitionUpdateComponentName = getComponentNameFromFiber(fiber)),\n 0 > transitionStartTime)\n ) {\n lane = resolveEventTimeStamp();\n method = resolveEventType();\n if (\n lane !== transitionEventRepeatTime ||\n method !== transitionEventType\n )\n transitionEventRepeatTime = -1.1;\n transitionEventTime = lane;\n transitionEventType = method;\n }\n }\n function startHostActionTimer(fiber) {\n if (0 > blockingUpdateTime) {\n blockingUpdateTime = now();\n blockingUpdateTask = null != fiber._debugTask ? fiber._debugTask : null;\n (executionContext & (RenderContext | CommitContext)) !== NoContext &&\n (blockingUpdateType = SPAWNED_UPDATE);\n var newEventTime = resolveEventTimeStamp(),\n newEventType = resolveEventType();\n newEventTime !== blockingEventRepeatTime ||\n newEventType !== blockingEventType\n ? (blockingEventRepeatTime = -1.1)\n : null !== newEventType && (blockingUpdateType = SPAWNED_UPDATE);\n blockingEventTime = newEventTime;\n blockingEventType = newEventType;\n }\n if (\n 0 > transitionUpdateTime &&\n ((transitionUpdateTime = now()),\n (transitionUpdateTask =\n null != fiber._debugTask ? fiber._debugTask : null),\n 0 > transitionStartTime)\n ) {\n fiber = resolveEventTimeStamp();\n newEventTime = resolveEventType();\n if (\n fiber !== transitionEventRepeatTime ||\n newEventTime !== transitionEventType\n )\n transitionEventRepeatTime = -1.1;\n transitionEventTime = fiber;\n transitionEventType = newEventTime;\n }\n }\n function pushNestedEffectDurations() {\n var prevEffectDuration = profilerEffectDuration;\n profilerEffectDuration = 0;\n return prevEffectDuration;\n }\n function popNestedEffectDurations(prevEffectDuration) {\n var elapsedTime = profilerEffectDuration;\n profilerEffectDuration = prevEffectDuration;\n return elapsedTime;\n }\n function bubbleNestedEffectDurations(prevEffectDuration) {\n var elapsedTime = profilerEffectDuration;\n profilerEffectDuration += prevEffectDuration;\n return elapsedTime;\n }\n function resetComponentEffectTimers() {\n componentEffectEndTime = componentEffectStartTime = -1.1;\n }\n function pushComponentEffectStart() {\n var prevEffectStart = componentEffectStartTime;\n componentEffectStartTime = -1.1;\n return prevEffectStart;\n }\n function popComponentEffectStart(prevEffectStart) {\n 0 <= prevEffectStart && (componentEffectStartTime = prevEffectStart);\n }\n function pushComponentEffectDuration() {\n var prevEffectDuration = componentEffectDuration;\n componentEffectDuration = -0;\n return prevEffectDuration;\n }\n function popComponentEffectDuration(prevEffectDuration) {\n 0 <= prevEffectDuration && (componentEffectDuration = prevEffectDuration);\n }\n function pushComponentEffectErrors() {\n var prevErrors = componentEffectErrors;\n componentEffectErrors = null;\n return prevErrors;\n }\n function pushComponentEffectDidSpawnUpdate() {\n var prev = componentEffectSpawnedUpdate;\n componentEffectSpawnedUpdate = !1;\n return prev;\n }\n function startProfilerTimer(fiber) {\n profilerStartTime = now();\n 0 > fiber.actualStartTime && (fiber.actualStartTime = profilerStartTime);\n }\n function stopProfilerTimerIfRunningAndRecordDuration(fiber) {\n if (0 <= profilerStartTime) {\n var elapsedTime = now() - profilerStartTime;\n fiber.actualDuration += elapsedTime;\n fiber.selfBaseDuration = elapsedTime;\n profilerStartTime = -1;\n }\n }\n function stopProfilerTimerIfRunningAndRecordIncompleteDuration(fiber) {\n if (0 <= profilerStartTime) {\n var elapsedTime = now() - profilerStartTime;\n fiber.actualDuration += elapsedTime;\n profilerStartTime = -1;\n }\n }\n function recordEffectDuration() {\n if (0 <= profilerStartTime) {\n var endTime = now(),\n elapsedTime = endTime - profilerStartTime;\n profilerStartTime = -1;\n profilerEffectDuration += elapsedTime;\n componentEffectDuration += elapsedTime;\n componentEffectEndTime = endTime;\n }\n }\n function recordEffectError(errorInfo) {\n null === componentEffectErrors && (componentEffectErrors = []);\n componentEffectErrors.push(errorInfo);\n null === commitErrors && (commitErrors = []);\n commitErrors.push(errorInfo);\n }\n function startEffectTimer() {\n profilerStartTime = now();\n 0 > componentEffectStartTime &&\n (componentEffectStartTime = profilerStartTime);\n }\n function transferActualDuration(fiber) {\n for (var child = fiber.child; child; )\n (fiber.actualDuration += child.actualDuration), (child = child.sibling);\n }\n function entangleAsyncAction(transition, thenable) {\n if (null === currentEntangledListeners) {\n var entangledListeners = (currentEntangledListeners = []);\n currentEntangledPendingCount = 0;\n currentEntangledLane = requestTransitionLane();\n currentEntangledActionThenable = {\n status: \"pending\",\n value: void 0,\n then: function (resolve) {\n entangledListeners.push(resolve);\n }\n };\n }\n currentEntangledPendingCount++;\n thenable.then(pingEngtangledActionScope, pingEngtangledActionScope);\n return thenable;\n }\n function pingEngtangledActionScope() {\n if (\n 0 === --currentEntangledPendingCount &&\n (-1 < transitionUpdateTime || (transitionStartTime = -1.1),\n (entangledTransitionTypes = null),\n null !== currentEntangledListeners)\n ) {\n null !== currentEntangledActionThenable &&\n (currentEntangledActionThenable.status = \"fulfilled\");\n var listeners = currentEntangledListeners;\n currentEntangledListeners = null;\n currentEntangledLane = 0;\n currentEntangledActionThenable = null;\n for (var i = 0; i < listeners.length; i++) (0, listeners[i])();\n }\n }\n function chainThenableValue(thenable, result) {\n var listeners = [],\n thenableWithOverride = {\n status: \"pending\",\n value: null,\n reason: null,\n then: function (resolve) {\n listeners.push(resolve);\n }\n };\n thenable.then(\n function () {\n thenableWithOverride.status = \"fulfilled\";\n thenableWithOverride.value = result;\n for (var i = 0; i < listeners.length; i++) (0, listeners[i])(result);\n },\n function (error) {\n thenableWithOverride.status = \"rejected\";\n thenableWithOverride.reason = error;\n for (error = 0; error < listeners.length; error++)\n (0, listeners[error])(void 0);\n }\n );\n return thenableWithOverride;\n }\n function peekCacheFromPool() {\n var cacheResumedFromPreviousRender = resumedCache.current;\n return null !== cacheResumedFromPreviousRender\n ? cacheResumedFromPreviousRender\n : workInProgressRoot.pooledCache;\n }\n function pushTransition(offscreenWorkInProgress, prevCachePool) {\n null === prevCachePool\n ? push(resumedCache, resumedCache.current, offscreenWorkInProgress)\n : push(resumedCache, prevCachePool.pool, offscreenWorkInProgress);\n }\n function getSuspendedCache() {\n var cacheFromPool = peekCacheFromPool();\n return null === cacheFromPool\n ? null\n : { parent: CacheContext._currentValue, pool: cacheFromPool };\n }\n function createThenableState() {\n return { didWarnAboutUncachedPromise: !1, thenables: [] };\n }\n function isThenableResolved(thenable) {\n thenable = thenable.status;\n return \"fulfilled\" === thenable || \"rejected\" === thenable;\n }\n function trackUsedThenable(thenableState, thenable, index) {\n null !== ReactSharedInternals.actQueue &&\n (ReactSharedInternals.didUsePromise = !0);\n var trackedThenables = thenableState.thenables;\n index = trackedThenables[index];\n void 0 === index\n ? trackedThenables.push(thenable)\n : index !== thenable &&\n (thenableState.didWarnAboutUncachedPromise ||\n ((thenableState.didWarnAboutUncachedPromise = !0),\n console.error(\n \"A component was suspended by an uncached promise. Creating promises inside a Client Component or hook is not yet supported, except via a Suspense-compatible library or framework.\"\n )),\n thenable.then(noop$1, noop$1),\n (thenable = index));\n if (void 0 === thenable._debugInfo) {\n thenableState = performance.now();\n trackedThenables = thenable.displayName;\n var ioInfo = {\n name:\n \"string\" === typeof trackedThenables ? trackedThenables : \"Promise\",\n start: thenableState,\n end: thenableState,\n value: thenable\n };\n thenable._debugInfo = [{ awaited: ioInfo }];\n \"fulfilled\" !== thenable.status &&\n \"rejected\" !== thenable.status &&\n ((thenableState = function () {\n ioInfo.end = performance.now();\n }),\n thenable.then(thenableState, thenableState));\n }\n switch (thenable.status) {\n case \"fulfilled\":\n return thenable.value;\n case \"rejected\":\n throw (\n ((thenableState = thenable.reason),\n checkIfUseWrappedInAsyncCatch(thenableState),\n thenableState)\n );\n default:\n if (\"string\" === typeof thenable.status)\n thenable.then(noop$1, noop$1);\n else {\n thenableState = workInProgressRoot;\n if (\n null !== thenableState &&\n 100 < thenableState.shellSuspendCounter\n )\n throw Error(\n \"An unknown Component is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.\"\n );\n thenableState = thenable;\n thenableState.status = \"pending\";\n thenableState.then(\n function (fulfilledValue) {\n if (\"pending\" === thenable.status) {\n var fulfilledThenable = thenable;\n fulfilledThenable.status = \"fulfilled\";\n fulfilledThenable.value = fulfilledValue;\n }\n },\n function (error) {\n if (\"pending\" === thenable.status) {\n var rejectedThenable = thenable;\n rejectedThenable.status = \"rejected\";\n rejectedThenable.reason = error;\n }\n }\n );\n }\n switch (thenable.status) {\n case \"fulfilled\":\n return thenable.value;\n case \"rejected\":\n throw (\n ((thenableState = thenable.reason),\n checkIfUseWrappedInAsyncCatch(thenableState),\n thenableState)\n );\n }\n suspendedThenable = thenable;\n needsToResetSuspendedThenableDEV = !0;\n throw SuspenseException;\n }\n }\n function resolveLazy(lazyType) {\n try {\n return callLazyInitInDEV(lazyType);\n } catch (x) {\n if (null !== x && \"object\" === typeof x && \"function\" === typeof x.then)\n throw (\n ((suspendedThenable = x),\n (needsToResetSuspendedThenableDEV = !0),\n SuspenseException)\n );\n throw x;\n }\n }\n function getSuspendedThenable() {\n if (null === suspendedThenable)\n throw Error(\n \"Expected a suspended thenable. This is a bug in React. Please file an issue.\"\n );\n var thenable = suspendedThenable;\n suspendedThenable = null;\n needsToResetSuspendedThenableDEV = !1;\n return thenable;\n }\n function checkIfUseWrappedInAsyncCatch(rejectedReason) {\n if (\n rejectedReason === SuspenseException ||\n rejectedReason === SuspenseActionException\n )\n throw Error(\n \"Hooks are not supported inside an async component. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.\"\n );\n }\n function pushDebugInfo(debugInfo) {\n var previousDebugInfo = currentDebugInfo;\n null != debugInfo &&\n (currentDebugInfo =\n null === previousDebugInfo\n ? debugInfo\n : previousDebugInfo.concat(debugInfo));\n return previousDebugInfo;\n }\n function getCurrentDebugTask() {\n var debugInfo = currentDebugInfo;\n if (null != debugInfo)\n for (var i = debugInfo.length - 1; 0 <= i; i--)\n if (null != debugInfo[i].name) {\n var debugTask = debugInfo[i].debugTask;\n if (null != debugTask) return debugTask;\n }\n return null;\n }\n function validateFragmentProps(element, fiber, returnFiber) {\n for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (\"children\" !== key && \"key\" !== key && \"ref\" !== key) {\n null === fiber &&\n ((fiber = createFiberFromElement(element, returnFiber.mode, 0)),\n (fiber._debugInfo = currentDebugInfo),\n (fiber.return = returnFiber));\n runWithFiberInDEV(\n fiber,\n function (erroredKey) {\n console.error(\n \"Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key`, `ref`, and `children` props.\",\n erroredKey\n );\n },\n key\n );\n break;\n }\n }\n }\n function unwrapThenable(thenable) {\n var index = thenableIndexCounter$1;\n thenableIndexCounter$1 += 1;\n null === thenableState$1 && (thenableState$1 = createThenableState());\n return trackUsedThenable(thenableState$1, thenable, index);\n }\n function coerceRef(workInProgress, element) {\n element = element.props.ref;\n workInProgress.ref = void 0 !== element ? element : null;\n }\n function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {\n if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)\n throw Error(\n 'A React Element from an older version of React was rendered. This is not supported. It can happen if:\\n- Multiple copies of the \"react\" package is used.\\n- A library pre-bundled an old copy of \"react\" or \"react/jsx-runtime\".\\n- A compiler tries to \"inline\" JSX instead of using the runtime.'\n );\n returnFiber = Object.prototype.toString.call(newChild);\n throw Error(\n \"Objects are not valid as a React child (found: \" +\n (\"[object Object]\" === returnFiber\n ? \"object with keys {\" + Object.keys(newChild).join(\", \") + \"}\"\n : returnFiber) +\n \"). If you meant to render a collection of children, use an array instead.\"\n );\n }\n function throwOnInvalidObjectType(returnFiber, newChild) {\n var debugTask = getCurrentDebugTask();\n null !== debugTask\n ? debugTask.run(\n throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)\n )\n : throwOnInvalidObjectTypeImpl(returnFiber, newChild);\n }\n function warnOnFunctionTypeImpl(returnFiber, invalidChild) {\n var parentName = getComponentNameFromFiber(returnFiber) || \"Component\";\n ownerHasFunctionTypeWarning[parentName] ||\n ((ownerHasFunctionTypeWarning[parentName] = !0),\n (invalidChild =\n invalidChild.displayName || invalidChild.name || \"Component\"),\n 3 === returnFiber.tag\n ? console.error(\n \"Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.\\n root.render(%s)\",\n invalidChild,\n invalidChild,\n invalidChild\n )\n : console.error(\n \"Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.\\n <%s>{%s}</%s>\",\n invalidChild,\n invalidChild,\n parentName,\n invalidChild,\n parentName\n ));\n }\n function warnOnFunctionType(returnFiber, invalidChild) {\n var debugTask = getCurrentDebugTask();\n null !== debugTask\n ? debugTask.run(\n warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)\n )\n : warnOnFunctionTypeImpl(returnFiber, invalidChild);\n }\n function warnOnSymbolTypeImpl(returnFiber, invalidChild) {\n var parentName = getComponentNameFromFiber(returnFiber) || \"Component\";\n ownerHasSymbolTypeWarning[parentName] ||\n ((ownerHasSymbolTypeWarning[parentName] = !0),\n (invalidChild = String(invalidChild)),\n 3 === returnFiber.tag\n ? console.error(\n \"Symbols are not valid as a React child.\\n root.render(%s)\",\n invalidChild\n )\n : console.error(\n \"Symbols are not valid as a React child.\\n <%s>%s</%s>\",\n parentName,\n invalidChild,\n parentName\n ));\n }\n function warnOnSymbolType(returnFiber, invalidChild) {\n var debugTask = getCurrentDebugTask();\n null !== debugTask\n ? debugTask.run(\n warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)\n )\n : warnOnSymbolTypeImpl(returnFiber, invalidChild);\n }\n function createChildReconciler(shouldTrackSideEffects) {\n function deleteChild(returnFiber, childToDelete) {\n if (shouldTrackSideEffects) {\n var deletions = returnFiber.deletions;\n null === deletions\n ? ((returnFiber.deletions = [childToDelete]),\n (returnFiber.flags |= 16))\n : deletions.push(childToDelete);\n }\n }\n function deleteRemainingChildren(returnFiber, currentFirstChild) {\n if (!shouldTrackSideEffects) return null;\n for (; null !== currentFirstChild; )\n deleteChild(returnFiber, currentFirstChild),\n (currentFirstChild = currentFirstChild.sibling);\n return null;\n }\n function mapRemainingChildren(currentFirstChild) {\n for (var existingChildren = new Map(); null !== currentFirstChild; )\n null === currentFirstChild.key\n ? existingChildren.set(currentFirstChild.index, currentFirstChild)\n : existingChildren.set(currentFirstChild.key, currentFirstChild),\n (currentFirstChild = currentFirstChild.sibling);\n return existingChildren;\n }\n function useFiber(fiber, pendingProps) {\n fiber = createWorkInProgress(fiber, pendingProps);\n fiber.index = 0;\n fiber.sibling = null;\n return fiber;\n }\n function placeChild(newFiber, lastPlacedIndex, newIndex) {\n newFiber.index = newIndex;\n if (!shouldTrackSideEffects)\n return (newFiber.flags |= 1048576), lastPlacedIndex;\n newIndex = newFiber.alternate;\n if (null !== newIndex)\n return (\n (newIndex = newIndex.index),\n newIndex < lastPlacedIndex\n ? ((newFiber.flags |= 134217730), lastPlacedIndex)\n : newIndex\n );\n newFiber.flags |= 134217730;\n return lastPlacedIndex;\n }\n function placeSingleChild(newFiber) {\n shouldTrackSideEffects &&\n null === newFiber.alternate &&\n (newFiber.flags |= 134217730);\n return newFiber;\n }\n function updateTextNode(returnFiber, current, textContent, lanes) {\n if (null === current || 6 !== current.tag)\n return (\n (current = createFiberFromText(\n textContent,\n returnFiber.mode,\n lanes\n )),\n (current.return = returnFiber),\n (current._debugOwner = returnFiber),\n (current._debugTask = returnFiber._debugTask),\n (current._debugInfo = currentDebugInfo),\n current\n );\n current = useFiber(current, textContent);\n current.return = returnFiber;\n current._debugInfo = currentDebugInfo;\n return current;\n }\n function updateElement(returnFiber, current, element, lanes) {\n var elementType = element.type;\n if (elementType === REACT_FRAGMENT_TYPE)\n return (\n (current = updateFragment(\n returnFiber,\n current,\n element.props.children,\n lanes,\n element.key\n )),\n coerceRef(current, element),\n validateFragmentProps(element, current, returnFiber),\n current\n );\n if (\n null !== current &&\n (current.elementType === elementType ||\n isCompatibleFamilyForHotReloading(current, element) ||\n (\"object\" === typeof elementType &&\n null !== elementType &&\n elementType.$$typeof === REACT_LAZY_TYPE &&\n resolveLazy(elementType) === current.type))\n )\n return (\n (current = useFiber(current, element.props)),\n coerceRef(current, element),\n (current.return = returnFiber),\n (current._debugOwner = element._owner),\n (current._debugInfo = currentDebugInfo),\n current\n );\n current = createFiberFromElement(element, returnFiber.mode, lanes);\n coerceRef(current, element);\n current.return = returnFiber;\n current._debugInfo = currentDebugInfo;\n return current;\n }\n function updatePortal(returnFiber, current, portal, lanes) {\n if (\n null === current ||\n 4 !== current.tag ||\n current.stateNode.containerInfo !== portal.containerInfo ||\n current.stateNode.implementation !== portal.implementation\n )\n return (\n (current = createFiberFromPortal(portal, returnFiber.mode, lanes)),\n (current.return = returnFiber),\n (current._debugInfo = currentDebugInfo),\n current\n );\n current = useFiber(current, portal.children || []);\n current.return = returnFiber;\n current._debugInfo = currentDebugInfo;\n return current;\n }\n function updateFragment(returnFiber, current, fragment, lanes, key) {\n if (null === current || 7 !== current.tag)\n return (\n (current = createFiberFromFragment(\n fragment,\n returnFiber.mode,\n lanes,\n key\n )),\n (current.return = returnFiber),\n (current._debugOwner = returnFiber),\n (current._debugTask = returnFiber._debugTask),\n (current._debugInfo = currentDebugInfo),\n current\n );\n current = useFiber(current, fragment);\n current.return = returnFiber;\n current._debugInfo = currentDebugInfo;\n return current;\n }\n function createChild(returnFiber, newChild, lanes) {\n if (\n (\"string\" === typeof newChild && \"\" !== newChild) ||\n \"number\" === typeof newChild ||\n \"bigint\" === typeof newChild\n )\n return (\n (newChild = createFiberFromText(\n \"\" + newChild,\n returnFiber.mode,\n lanes\n )),\n (newChild.return = returnFiber),\n (newChild._debugOwner = returnFiber),\n (newChild._debugTask = returnFiber._debugTask),\n (newChild._debugInfo = currentDebugInfo),\n newChild\n );\n if (\"object\" === typeof newChild && null !== newChild) {\n switch (newChild.$$typeof) {\n case REACT_ELEMENT_TYPE:\n return (\n (lanes = createFiberFromElement(\n newChild,\n returnFiber.mode,\n lanes\n )),\n coerceRef(lanes, newChild),\n (lanes.return = returnFiber),\n (returnFiber = pushDebugInfo(newChild._debugInfo)),\n (lanes._debugInfo = currentDebugInfo),\n (currentDebugInfo = returnFiber),\n lanes\n );\n case REACT_PORTAL_TYPE:\n return (\n (newChild = createFiberFromPortal(\n newChild,\n returnFiber.mode,\n lanes\n )),\n (newChild.return = returnFiber),\n (newChild._debugInfo = currentDebugInfo),\n newChild\n );\n case REACT_LAZY_TYPE:\n var _prevDebugInfo = pushDebugInfo(newChild._debugInfo);\n newChild = resolveLazy(newChild);\n returnFiber = createChild(returnFiber, newChild, lanes);\n currentDebugInfo = _prevDebugInfo;\n return returnFiber;\n }\n if (isArrayImpl(newChild) || getIteratorFn(newChild))\n return (\n (lanes = createFiberFromFragment(\n newChild,\n returnFiber.mode,\n lanes,\n null\n )),\n (lanes.return = returnFiber),\n (lanes._debugOwner = returnFiber),\n (lanes._debugTask = returnFiber._debugTask),\n (returnFiber = pushDebugInfo(newChild._debugInfo)),\n (lanes._debugInfo = currentDebugInfo),\n (currentDebugInfo = returnFiber),\n lanes\n );\n if (\"function\" === typeof newChild.then)\n return (\n (_prevDebugInfo = pushDebugInfo(newChild._debugInfo)),\n (returnFiber = createChild(\n returnFiber,\n unwrapThenable(newChild),\n lanes\n )),\n (currentDebugInfo = _prevDebugInfo),\n returnFiber\n );\n if (newChild.$$typeof === REACT_CONTEXT_TYPE)\n return createChild(\n returnFiber,\n readContextDuringReconciliation(returnFiber, newChild),\n lanes\n );\n throwOnInvalidObjectType(returnFiber, newChild);\n }\n \"function\" === typeof newChild &&\n warnOnFunctionType(returnFiber, newChild);\n \"symbol\" === typeof newChild && warnOnSymbolType(returnFiber, newChild);\n return null;\n }\n function updateSlot(returnFiber, oldFiber, newChild, lanes) {\n var key = null !== oldFiber ? oldFiber.key : null;\n if (\n (\"string\" === typeof newChild && \"\" !== newChild) ||\n \"number\" === typeof newChild ||\n \"bigint\" === typeof newChild\n )\n return null !== key\n ? null\n : updateTextNode(returnFiber, oldFiber, \"\" + newChild, lanes);\n if (\"object\" === typeof newChild && null !== newChild) {\n switch (newChild.$$typeof) {\n case REACT_ELEMENT_TYPE:\n return newChild.key === key\n ? ((key = pushDebugInfo(newChild._debugInfo)),\n (returnFiber = updateElement(\n returnFiber,\n oldFiber,\n newChild,\n lanes\n )),\n (currentDebugInfo = key),\n returnFiber)\n : null;\n case REACT_PORTAL_TYPE:\n return newChild.key === key\n ? updatePortal(returnFiber, oldFiber, newChild, lanes)\n : null;\n case REACT_LAZY_TYPE:\n return (\n (key = pushDebugInfo(newChild._debugInfo)),\n (newChild = resolveLazy(newChild)),\n (returnFiber = updateSlot(\n returnFiber,\n oldFiber,\n newChild,\n lanes\n )),\n (currentDebugInfo = key),\n returnFiber\n );\n }\n if (isArrayImpl(newChild) || getIteratorFn(newChild)) {\n if (null !== key) return null;\n key = pushDebugInfo(newChild._debugInfo);\n returnFiber = updateFragment(\n returnFiber,\n oldFiber,\n newChild,\n lanes,\n null\n );\n currentDebugInfo = key;\n return returnFiber;\n }\n if (\"function\" === typeof newChild.then)\n return (\n (key = pushDebugInfo(newChild._debugInfo)),\n (returnFiber = updateSlot(\n returnFiber,\n oldFiber,\n unwrapThenable(newChild),\n lanes\n )),\n (currentDebugInfo = key),\n returnFiber\n );\n if (newChild.$$typeof === REACT_CONTEXT_TYPE)\n return updateSlot(\n returnFiber,\n oldFiber,\n readContextDuringReconciliation(returnFiber, newChild),\n lanes\n );\n throwOnInvalidObjectType(returnFiber, newChild);\n }\n \"function\" === typeof newChild &&\n warnOnFunctionType(returnFiber, newChild);\n \"symbol\" === typeof newChild && warnOnSymbolType(returnFiber, newChild);\n return null;\n }\n function updateFromMap(\n existingChildren,\n returnFiber,\n newIdx,\n newChild,\n lanes\n ) {\n if (\n (\"string\" === typeof newChild && \"\" !== newChild) ||\n \"number\" === typeof newChild ||\n \"bigint\" === typeof newChild\n )\n return (\n (existingChildren = existingChildren.get(newIdx) || null),\n updateTextNode(returnFiber, existingChildren, \"\" + newChild, lanes)\n );\n if (\"object\" === typeof newChild && null !== newChild) {\n switch (newChild.$$typeof) {\n case REACT_ELEMENT_TYPE:\n return (\n (newIdx =\n existingChildren.get(\n null === newChild.key ? newIdx : newChild.key\n ) || null),\n (existingChildren = pushDebugInfo(newChild._debugInfo)),\n (returnFiber = updateElement(\n returnFiber,\n newIdx,\n newChild,\n lanes\n )),\n (currentDebugInfo = existingChildren),\n returnFiber\n );\n case REACT_PORTAL_TYPE:\n return (\n (existingChildren =\n existingChildren.get(\n null === newChild.key ? newIdx : newChild.key\n ) || null),\n updatePortal(returnFiber, existingChildren, newChild, lanes)\n );\n case REACT_LAZY_TYPE:\n var _prevDebugInfo7 = pushDebugInfo(newChild._debugInfo);\n newChild = resolveLazy(newChild);\n returnFiber = updateFromMap(\n existingChildren,\n returnFiber,\n newIdx,\n newChild,\n lanes\n );\n currentDebugInfo = _prevDebugInfo7;\n return returnFiber;\n }\n if (isArrayImpl(newChild) || getIteratorFn(newChild))\n return (\n (newIdx = existingChildren.get(newIdx) || null),\n (existingChildren = pushDebugInfo(newChild._debugInfo)),\n (returnFiber = updateFragment(\n returnFiber,\n newIdx,\n newChild,\n lanes,\n null\n )),\n (currentDebugInfo = existingChildren),\n returnFiber\n );\n if (\"function\" === typeof newChild.then)\n return (\n (_prevDebugInfo7 = pushDebugInfo(newChild._debugInfo)),\n (returnFiber = updateFromMap(\n existingChildren,\n returnFiber,\n newIdx,\n unwrapThenable(newChild),\n lanes\n )),\n (currentDebugInfo = _prevDebugInfo7),\n returnFiber\n );\n if (newChild.$$typeof === REACT_CONTEXT_TYPE)\n return updateFromMap(\n existingChildren,\n returnFiber,\n newIdx,\n readContextDuringReconciliation(returnFiber, newChild),\n lanes\n );\n throwOnInvalidObjectType(returnFiber, newChild);\n }\n \"function\" === typeof newChild &&\n warnOnFunctionType(returnFiber, newChild);\n \"symbol\" === typeof newChild && warnOnSymbolType(returnFiber, newChild);\n return null;\n }\n function warnOnInvalidKey(returnFiber, workInProgress, child, knownKeys) {\n if (\"object\" !== typeof child || null === child) return knownKeys;\n switch (child.$$typeof) {\n case REACT_ELEMENT_TYPE:\n case REACT_PORTAL_TYPE:\n warnForMissingKey(returnFiber, workInProgress, child);\n var key = child.key;\n if (\"string\" !== typeof key) break;\n if (null === knownKeys) {\n knownKeys = new Set();\n knownKeys.add(key);\n break;\n }\n if (!knownKeys.has(key)) {\n knownKeys.add(key);\n break;\n }\n runWithFiberInDEV(workInProgress, function () {\n console.error(\n \"Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted \\u2014 the behavior is unsupported and could change in a future version.\",\n key\n );\n });\n break;\n case REACT_LAZY_TYPE:\n (child = resolveLazy(child)),\n warnOnInvalidKey(returnFiber, workInProgress, child, knownKeys);\n }\n return knownKeys;\n }\n function reconcileChildrenArray(\n returnFiber,\n currentFirstChild,\n newChildren,\n lanes\n ) {\n for (\n var knownKeys = null,\n resultingFirstChild = null,\n previousNewFiber = null,\n oldFiber = currentFirstChild,\n newIdx = (currentFirstChild = 0),\n nextOldFiber = null;\n null !== oldFiber && newIdx < newChildren.length;\n newIdx++\n ) {\n oldFiber.index > newIdx\n ? ((nextOldFiber = oldFiber), (oldFiber = null))\n : (nextOldFiber = oldFiber.sibling);\n var newFiber = updateSlot(\n returnFiber,\n oldFiber,\n newChildren[newIdx],\n lanes\n );\n if (null === newFiber) {\n null === oldFiber && (oldFiber = nextOldFiber);\n break;\n }\n knownKeys = warnOnInvalidKey(\n returnFiber,\n newFiber,\n newChildren[newIdx],\n knownKeys\n );\n shouldTrackSideEffects &&\n oldFiber &&\n null === newFiber.alternate &&\n deleteChild(returnFiber, oldFiber);\n currentFirstChild = placeChild(newFiber, currentFirstChild, newIdx);\n null === previousNewFiber\n ? (resultingFirstChild = newFiber)\n : (previousNewFiber.sibling = newFiber);\n previousNewFiber = newFiber;\n oldFiber = nextOldFiber;\n }\n if (newIdx === newChildren.length)\n return (\n deleteRemainingChildren(returnFiber, oldFiber),\n isHydrating && pushTreeFork(returnFiber, newIdx),\n resultingFirstChild\n );\n if (null === oldFiber) {\n for (; newIdx < newChildren.length; newIdx++)\n (oldFiber = createChild(returnFiber, newChildren[newIdx], lanes)),\n null !== oldFiber &&\n ((knownKeys = warnOnInvalidKey(\n returnFiber,\n oldFiber,\n newChildren[newIdx],\n knownKeys\n )),\n (currentFirstChild = placeChild(\n oldFiber,\n currentFirstChild,\n newIdx\n )),\n null === previousNewFiber\n ? (resultingFirstChild = oldFiber)\n : (previousNewFiber.sibling = oldFiber),\n (previousNewFiber = oldFiber));\n isHydrating && pushTreeFork(returnFiber, newIdx);\n return resultingFirstChild;\n }\n for (\n oldFiber = mapRemainingChildren(oldFiber);\n newIdx < newChildren.length;\n newIdx++\n )\n (nextOldFiber = updateFromMap(\n oldFiber,\n returnFiber,\n newIdx,\n newChildren[newIdx],\n lanes\n )),\n null !== nextOldFiber &&\n ((knownKeys = warnOnInvalidKey(\n returnFiber,\n nextOldFiber,\n newChildren[newIdx],\n knownKeys\n )),\n shouldTrackSideEffects &&\n ((newFiber = nextOldFiber.alternate),\n null !== newFiber &&\n oldFiber.delete(\n null === newFiber.key ? newIdx : newFiber.key\n )),\n (currentFirstChild = placeChild(\n nextOldFiber,\n currentFirstChild,\n newIdx\n )),\n null === previousNewFiber\n ? (resultingFirstChild = nextOldFiber)\n : (previousNewFiber.sibling = nextOldFiber),\n (previousNewFiber = nextOldFiber));\n shouldTrackSideEffects &&\n oldFiber.forEach(function (child) {\n return deleteChild(returnFiber, child);\n });\n isHydrating && pushTreeFork(returnFiber, newIdx);\n return resultingFirstChild;\n }\n function reconcileChildrenIterator(\n returnFiber,\n currentFirstChild,\n newChildren,\n lanes\n ) {\n if (null == newChildren)\n throw Error(\"An iterable object provided no iterator.\");\n for (\n var resultingFirstChild = null,\n previousNewFiber = null,\n oldFiber = currentFirstChild,\n newIdx = (currentFirstChild = 0),\n nextOldFiber = null,\n knownKeys = null,\n step = newChildren.next();\n null !== oldFiber && !step.done;\n newIdx++, step = newChildren.next()\n ) {\n oldFiber.index > newIdx\n ? ((nextOldFiber = oldFiber), (oldFiber = null))\n : (nextOldFiber = oldFiber.sibling);\n var newFiber = updateSlot(returnFiber, oldFiber, step.value, lanes);\n if (null === newFiber) {\n null === oldFiber && (oldFiber = nextOldFiber);\n break;\n }\n knownKeys = warnOnInvalidKey(\n returnFiber,\n newFiber,\n step.value,\n knownKeys\n );\n shouldTrackSideEffects &&\n oldFiber &&\n null === newFiber.alternate &&\n deleteChild(returnFiber, oldFiber);\n currentFirstChild = placeChild(newFiber, currentFirstChild, newIdx);\n null === previousNewFiber\n ? (resultingFirstChild = newFiber)\n : (previousNewFiber.sibling = newFiber);\n previousNewFiber = newFiber;\n oldFiber = nextOldFiber;\n }\n if (step.done)\n return (\n deleteRemainingChildren(returnFiber, oldFiber),\n isHydrating && pushTreeFork(returnFiber, newIdx),\n resultingFirstChild\n );\n if (null === oldFiber) {\n for (; !step.done; newIdx++, step = newChildren.next())\n (oldFiber = createChild(returnFiber, step.value, lanes)),\n null !== oldFiber &&\n ((knownKeys = warnOnInvalidKey(\n returnFiber,\n oldFiber,\n step.value,\n knownKeys\n )),\n (currentFirstChild = placeChild(\n oldFiber,\n currentFirstChild,\n newIdx\n )),\n null === previousNewFiber\n ? (resultingFirstChild = oldFiber)\n : (previousNewFiber.sibling = oldFiber),\n (previousNewFiber = oldFiber));\n isHydrating && pushTreeFork(returnFiber, newIdx);\n return resultingFirstChild;\n }\n for (\n oldFiber = mapRemainingChildren(oldFiber);\n !step.done;\n newIdx++, step = newChildren.next()\n )\n (nextOldFiber = updateFromMap(\n oldFiber,\n returnFiber,\n newIdx,\n step.value,\n lanes\n )),\n null !== nextOldFiber &&\n ((knownKeys = warnOnInvalidKey(\n returnFiber,\n nextOldFiber,\n step.value,\n knownKeys\n )),\n shouldTrackSideEffects &&\n ((step = nextOldFiber.alternate),\n null !== step &&\n oldFiber.delete(null === step.key ? newIdx : step.key)),\n (currentFirstChild = placeChild(\n nextOldFiber,\n currentFirstChild,\n newIdx\n )),\n null === previousNewFiber\n ? (resultingFirstChild = nextOldFiber)\n : (previousNewFiber.sibling = nextOldFiber),\n (previousNewFiber = nextOldFiber));\n shouldTrackSideEffects &&\n oldFiber.forEach(function (child) {\n return deleteChild(returnFiber, child);\n });\n isHydrating && pushTreeFork(returnFiber, newIdx);\n return resultingFirstChild;\n }\n function reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n ) {\n \"object\" === typeof newChild &&\n null !== newChild &&\n newChild.type === REACT_FRAGMENT_TYPE &&\n null === newChild.key &&\n void 0 === newChild.props.ref &&\n (validateFragmentProps(newChild, null, returnFiber),\n (newChild = newChild.props.children));\n if (\"object\" === typeof newChild && null !== newChild) {\n switch (newChild.$$typeof) {\n case REACT_ELEMENT_TYPE:\n var prevDebugInfo = pushDebugInfo(newChild._debugInfo);\n a: {\n for (var key = newChild.key; null !== currentFirstChild; ) {\n if (currentFirstChild.key === key) {\n key = newChild.type;\n if (key === REACT_FRAGMENT_TYPE) {\n if (7 === currentFirstChild.tag) {\n deleteRemainingChildren(\n returnFiber,\n currentFirstChild.sibling\n );\n lanes = useFiber(\n currentFirstChild,\n newChild.props.children\n );\n coerceRef(lanes, newChild);\n lanes.return = returnFiber;\n lanes._debugOwner = newChild._owner;\n lanes._debugInfo = currentDebugInfo;\n validateFragmentProps(newChild, lanes, returnFiber);\n returnFiber = lanes;\n break a;\n }\n } else if (\n currentFirstChild.elementType === key ||\n isCompatibleFamilyForHotReloading(\n currentFirstChild,\n newChild\n ) ||\n (\"object\" === typeof key &&\n null !== key &&\n key.$$typeof === REACT_LAZY_TYPE &&\n resolveLazy(key) === currentFirstChild.type)\n ) {\n deleteRemainingChildren(\n returnFiber,\n currentFirstChild.sibling\n );\n lanes = useFiber(currentFirstChild, newChild.props);\n coerceRef(lanes, newChild);\n lanes.return = returnFiber;\n lanes._debugOwner = newChild._owner;\n lanes._debugInfo = currentDebugInfo;\n returnFiber = lanes;\n break a;\n }\n deleteRemainingChildren(returnFiber, currentFirstChild);\n break;\n } else deleteChild(returnFiber, currentFirstChild);\n currentFirstChild = currentFirstChild.sibling;\n }\n newChild.type === REACT_FRAGMENT_TYPE\n ? ((lanes = createFiberFromFragment(\n newChild.props.children,\n returnFiber.mode,\n lanes,\n newChild.key\n )),\n coerceRef(lanes, newChild),\n (lanes.return = returnFiber),\n (lanes._debugOwner = returnFiber),\n (lanes._debugTask = returnFiber._debugTask),\n (lanes._debugInfo = currentDebugInfo),\n validateFragmentProps(newChild, lanes, returnFiber),\n (returnFiber = lanes))\n : ((lanes = createFiberFromElement(\n newChild,\n returnFiber.mode,\n lanes\n )),\n coerceRef(lanes, newChild),\n (lanes.return = returnFiber),\n (lanes._debugInfo = currentDebugInfo),\n (returnFiber = lanes));\n }\n returnFiber = placeSingleChild(returnFiber);\n currentDebugInfo = prevDebugInfo;\n return returnFiber;\n case REACT_PORTAL_TYPE:\n a: {\n prevDebugInfo = newChild;\n for (\n newChild = prevDebugInfo.key;\n null !== currentFirstChild;\n\n ) {\n if (currentFirstChild.key === newChild)\n if (\n 4 === currentFirstChild.tag &&\n currentFirstChild.stateNode.containerInfo ===\n prevDebugInfo.containerInfo &&\n currentFirstChild.stateNode.implementation ===\n prevDebugInfo.implementation\n ) {\n deleteRemainingChildren(\n returnFiber,\n currentFirstChild.sibling\n );\n lanes = useFiber(\n currentFirstChild,\n prevDebugInfo.children || []\n );\n lanes.return = returnFiber;\n returnFiber = lanes;\n break a;\n } else {\n deleteRemainingChildren(returnFiber, currentFirstChild);\n break;\n }\n else deleteChild(returnFiber, currentFirstChild);\n currentFirstChild = currentFirstChild.sibling;\n }\n lanes = createFiberFromPortal(\n prevDebugInfo,\n returnFiber.mode,\n lanes\n );\n lanes.return = returnFiber;\n returnFiber = lanes;\n }\n return placeSingleChild(returnFiber);\n case REACT_LAZY_TYPE:\n return (\n (prevDebugInfo = pushDebugInfo(newChild._debugInfo)),\n (newChild = resolveLazy(newChild)),\n (returnFiber = reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n )),\n (currentDebugInfo = prevDebugInfo),\n returnFiber\n );\n }\n if (isArrayImpl(newChild))\n return (\n (prevDebugInfo = pushDebugInfo(newChild._debugInfo)),\n (returnFiber = reconcileChildrenArray(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n )),\n (currentDebugInfo = prevDebugInfo),\n returnFiber\n );\n if (getIteratorFn(newChild)) {\n prevDebugInfo = pushDebugInfo(newChild._debugInfo);\n key = getIteratorFn(newChild);\n if (\"function\" !== typeof key)\n throw Error(\n \"An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.\"\n );\n var newChildren = key.call(newChild);\n if (newChildren === newChild) {\n if (\n 0 !== returnFiber.tag ||\n \"[object GeneratorFunction]\" !==\n Object.prototype.toString.call(returnFiber.type) ||\n \"[object Generator]\" !==\n Object.prototype.toString.call(newChildren)\n )\n didWarnAboutGenerators ||\n console.error(\n \"Using Iterators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. You can also use an Iterable that can iterate multiple times over the same items.\"\n ),\n (didWarnAboutGenerators = !0);\n } else\n newChild.entries !== key ||\n didWarnAboutMaps ||\n (console.error(\n \"Using Maps as children is not supported. Use an array of keyed ReactElements instead.\"\n ),\n (didWarnAboutMaps = !0));\n returnFiber = reconcileChildrenIterator(\n returnFiber,\n currentFirstChild,\n newChildren,\n lanes\n );\n currentDebugInfo = prevDebugInfo;\n return returnFiber;\n }\n if (\"function\" === typeof newChild.then)\n return (\n (prevDebugInfo = pushDebugInfo(newChild._debugInfo)),\n (returnFiber = reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n unwrapThenable(newChild),\n lanes\n )),\n (currentDebugInfo = prevDebugInfo),\n returnFiber\n );\n if (newChild.$$typeof === REACT_CONTEXT_TYPE)\n return reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n readContextDuringReconciliation(returnFiber, newChild),\n lanes\n );\n throwOnInvalidObjectType(returnFiber, newChild);\n }\n if (\n (\"string\" === typeof newChild && \"\" !== newChild) ||\n \"number\" === typeof newChild ||\n \"bigint\" === typeof newChild\n )\n return (\n (prevDebugInfo = \"\" + newChild),\n null !== currentFirstChild && 6 === currentFirstChild.tag\n ? (deleteRemainingChildren(\n returnFiber,\n currentFirstChild.sibling\n ),\n (lanes = useFiber(currentFirstChild, prevDebugInfo)),\n (lanes.return = returnFiber),\n (returnFiber = lanes))\n : (deleteRemainingChildren(returnFiber, currentFirstChild),\n (lanes = createFiberFromText(\n prevDebugInfo,\n returnFiber.mode,\n lanes\n )),\n (lanes.return = returnFiber),\n (lanes._debugOwner = returnFiber),\n (lanes._debugTask = returnFiber._debugTask),\n (lanes._debugInfo = currentDebugInfo),\n (returnFiber = lanes)),\n placeSingleChild(returnFiber)\n );\n \"function\" === typeof newChild &&\n warnOnFunctionType(returnFiber, newChild);\n \"symbol\" === typeof newChild && warnOnSymbolType(returnFiber, newChild);\n return deleteRemainingChildren(returnFiber, currentFirstChild);\n }\n return function (returnFiber, currentFirstChild, newChild, lanes) {\n var prevDebugInfo = currentDebugInfo;\n currentDebugInfo = null;\n try {\n thenableIndexCounter$1 = 0;\n var firstChildFiber = reconcileChildFibersImpl(\n returnFiber,\n currentFirstChild,\n newChild,\n lanes\n );\n thenableState$1 = null;\n return firstChildFiber;\n } catch (x) {\n if (x === SuspenseException || x === SuspenseActionException) throw x;\n var fiber = createFiber(29, x, null, returnFiber.mode);\n fiber.lanes = lanes;\n fiber.return = returnFiber;\n var debugInfo = (fiber._debugInfo = currentDebugInfo);\n fiber._debugOwner = returnFiber._debugOwner;\n fiber._debugTask = returnFiber._debugTask;\n if (null != debugInfo)\n for (var i = debugInfo.length - 1; 0 <= i; i--)\n if (\"string\" === typeof debugInfo[i].stack) {\n fiber._debugOwner = debugInfo[i];\n fiber._debugTask = debugInfo[i].debugTask;\n break;\n }\n return fiber;\n } finally {\n currentDebugInfo = prevDebugInfo;\n }\n };\n }\n function validateSuspenseListNestedChild(childSlot, index) {\n var isAnArray = isArrayImpl(childSlot);\n childSlot = !isAnArray && \"function\" === typeof getIteratorFn(childSlot);\n return isAnArray || childSlot\n ? ((isAnArray = isAnArray ? \"array\" : \"iterable\"),\n console.error(\n \"A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>\",\n isAnArray,\n index,\n isAnArray\n ),\n !1)\n : !0;\n }\n function initializeUpdateQueue(fiber) {\n fiber.updateQueue = {\n baseState: fiber.memoizedState,\n firstBaseUpdate: null,\n lastBaseUpdate: null,\n shared: { pending: null, lanes: 0, hiddenCallbacks: null },\n callbacks: null\n };\n }\n function cloneUpdateQueue(current, workInProgress) {\n current = current.updateQueue;\n workInProgress.updateQueue === current &&\n (workInProgress.updateQueue = {\n baseState: current.baseState,\n firstBaseUpdate: current.firstBaseUpdate,\n lastBaseUpdate: current.lastBaseUpdate,\n shared: current.shared,\n callbacks: null\n });\n }\n function createUpdate(lane) {\n return {\n lane: lane,\n tag: UpdateState,\n payload: null,\n callback: null,\n next: null\n };\n }\n function enqueueUpdate(fiber, update, lane) {\n var updateQueue = fiber.updateQueue;\n if (null === updateQueue) return null;\n updateQueue = updateQueue.shared;\n if (\n currentlyProcessingQueue === updateQueue &&\n !didWarnUpdateInsideUpdate\n ) {\n var componentName = getComponentNameFromFiber(fiber);\n console.error(\n \"An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.\\n\\nPlease update the following component: %s\",\n componentName\n );\n didWarnUpdateInsideUpdate = !0;\n }\n if ((executionContext & RenderContext) !== NoContext)\n return (\n (componentName = updateQueue.pending),\n null === componentName\n ? (update.next = update)\n : ((update.next = componentName.next),\n (componentName.next = update)),\n (updateQueue.pending = update),\n (update = getRootForUpdatedFiber(fiber)),\n markUpdateLaneFromFiberToRoot(fiber, null, lane),\n update\n );\n enqueueUpdate$1(fiber, updateQueue, update, lane);\n return getRootForUpdatedFiber(fiber);\n }\n function entangleTransitions(root, fiber, lane) {\n fiber = fiber.updateQueue;\n if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane & 4194048))) {\n var queueLanes = fiber.lanes;\n queueLanes &= root.pendingLanes;\n lane |= queueLanes;\n fiber.lanes = lane;\n markRootEntangled(root, lane);\n }\n }\n function enqueueCapturedUpdate(workInProgress, capturedUpdate) {\n var queue = workInProgress.updateQueue,\n current = workInProgress.alternate;\n if (\n null !== current &&\n ((current = current.updateQueue), queue === current)\n ) {\n var newFirst = null,\n newLast = null;\n queue = queue.firstBaseUpdate;\n if (null !== queue) {\n do {\n var clone = {\n lane: queue.lane,\n tag: queue.tag,\n payload: queue.payload,\n callback: null,\n next: null\n };\n null === newLast\n ? (newFirst = newLast = clone)\n : (newLast = newLast.next = clone);\n queue = queue.next;\n } while (null !== queue);\n null === newLast\n ? (newFirst = newLast = capturedUpdate)\n : (newLast = newLast.next = capturedUpdate);\n } else newFirst = newLast = capturedUpdate;\n queue = {\n baseState: current.baseState,\n firstBaseUpdate: newFirst,\n lastBaseUpdate: newLast,\n shared: current.shared,\n callbacks: current.callbacks\n };\n workInProgress.updateQueue = queue;\n return;\n }\n workInProgress = queue.lastBaseUpdate;\n null === workInProgress\n ? (queue.firstBaseUpdate = capturedUpdate)\n : (workInProgress.next = capturedUpdate);\n queue.lastBaseUpdate = capturedUpdate;\n }\n function suspendIfUpdateReadFromEntangledAsyncAction() {\n if (didReadFromEntangledAsyncAction) {\n var entangledActionThenable = currentEntangledActionThenable;\n if (null !== entangledActionThenable) throw entangledActionThenable;\n }\n }\n function processUpdateQueue(\n workInProgress,\n props,\n instance$jscomp$0,\n renderLanes\n ) {\n didReadFromEntangledAsyncAction = !1;\n var queue = workInProgress.updateQueue;\n hasForceUpdate = !1;\n currentlyProcessingQueue = queue.shared;\n var firstBaseUpdate = queue.firstBaseUpdate,\n lastBaseUpdate = queue.lastBaseUpdate,\n pendingQueue = queue.shared.pending;\n if (null !== pendingQueue) {\n queue.shared.pending = null;\n var lastPendingUpdate = pendingQueue,\n firstPendingUpdate = lastPendingUpdate.next;\n lastPendingUpdate.next = null;\n null === lastBaseUpdate\n ? (firstBaseUpdate = firstPendingUpdate)\n : (lastBaseUpdate.next = firstPendingUpdate);\n lastBaseUpdate = lastPendingUpdate;\n var current = workInProgress.alternate;\n null !== current &&\n ((current = current.updateQueue),\n (pendingQueue = current.lastBaseUpdate),\n pendingQueue !== lastBaseUpdate &&\n (null === pendingQueue\n ? (current.firstBaseUpdate = firstPendingUpdate)\n : (pendingQueue.next = firstPendingUpdate),\n (current.lastBaseUpdate = lastPendingUpdate)));\n }\n if (null !== firstBaseUpdate) {\n var newState = queue.baseState;\n lastBaseUpdate = 0;\n current = firstPendingUpdate = lastPendingUpdate = null;\n pendingQueue = firstBaseUpdate;\n do {\n var updateLane = pendingQueue.lane & -536870913,\n isHiddenUpdate = updateLane !== pendingQueue.lane;\n if (\n isHiddenUpdate\n ? (workInProgressRootRenderLanes & updateLane) === updateLane\n : (renderLanes & updateLane) === updateLane\n ) {\n 0 !== updateLane &&\n updateLane === currentEntangledLane &&\n (didReadFromEntangledAsyncAction = !0);\n null !== current &&\n (current = current.next =\n {\n lane: 0,\n tag: pendingQueue.tag,\n payload: pendingQueue.payload,\n callback: null,\n next: null\n });\n a: {\n updateLane = workInProgress;\n var partialState = pendingQueue;\n var nextProps = props,\n instance = instance$jscomp$0;\n switch (partialState.tag) {\n case ReplaceState:\n partialState = partialState.payload;\n if (\"function\" === typeof partialState) {\n isDisallowedContextReadInDEV = !0;\n var nextState = partialState.call(\n instance,\n newState,\n nextProps\n );\n if (updateLane.mode & StrictLegacyMode) {\n setIsStrictModeForDevtools(!0);\n try {\n partialState.call(instance, newState, nextProps);\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n isDisallowedContextReadInDEV = !1;\n newState = nextState;\n break a;\n }\n newState = partialState;\n break a;\n case CaptureUpdate:\n updateLane.flags = (updateLane.flags & -65537) | 128;\n case UpdateState:\n nextState = partialState.payload;\n if (\"function\" === typeof nextState) {\n isDisallowedContextReadInDEV = !0;\n partialState = nextState.call(\n instance,\n newState,\n nextProps\n );\n if (updateLane.mode & StrictLegacyMode) {\n setIsStrictModeForDevtools(!0);\n try {\n nextState.call(instance, newState, nextProps);\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n isDisallowedContextReadInDEV = !1;\n } else partialState = nextState;\n if (null === partialState || void 0 === partialState) break a;\n newState = assign({}, newState, partialState);\n break a;\n case ForceUpdate:\n hasForceUpdate = !0;\n }\n }\n updateLane = pendingQueue.callback;\n null !== updateLane &&\n ((workInProgress.flags |= 64),\n isHiddenUpdate && (workInProgress.flags |= 8192),\n (isHiddenUpdate = queue.callbacks),\n null === isHiddenUpdate\n ? (queue.callbacks = [updateLane])\n : isHiddenUpdate.push(updateLane));\n } else\n (isHiddenUpdate = {\n lane: updateLane,\n tag: pendingQueue.tag,\n payload: pendingQueue.payload,\n callback: pendingQueue.callback,\n next: null\n }),\n null === current\n ? ((firstPendingUpdate = current = isHiddenUpdate),\n (lastPendingUpdate = newState))\n : (current = current.next = isHiddenUpdate),\n (lastBaseUpdate |= updateLane);\n pendingQueue = pendingQueue.next;\n if (null === pendingQueue)\n if (((pendingQueue = queue.shared.pending), null === pendingQueue))\n break;\n else\n (isHiddenUpdate = pendingQueue),\n (pendingQueue = isHiddenUpdate.next),\n (isHiddenUpdate.next = null),\n (queue.lastBaseUpdate = isHiddenUpdate),\n (queue.shared.pending = null);\n } while (1);\n null === current && (lastPendingUpdate = newState);\n queue.baseState = lastPendingUpdate;\n queue.firstBaseUpdate = firstPendingUpdate;\n queue.lastBaseUpdate = current;\n null === firstBaseUpdate && (queue.shared.lanes = 0);\n workInProgressRootSkippedLanes |= lastBaseUpdate;\n workInProgress.lanes = lastBaseUpdate;\n workInProgress.memoizedState = newState;\n }\n currentlyProcessingQueue = null;\n }\n function callCallback(callback, context) {\n if (\"function\" !== typeof callback)\n throw Error(\n \"Invalid argument passed as callback. Expected a function. Instead received: \" +\n callback\n );\n callback.call(context);\n }\n function commitHiddenCallbacks(updateQueue, context) {\n var hiddenCallbacks = updateQueue.shared.hiddenCallbacks;\n if (null !== hiddenCallbacks)\n for (\n updateQueue.shared.hiddenCallbacks = null, updateQueue = 0;\n updateQueue < hiddenCallbacks.length;\n updateQueue++\n )\n callCallback(hiddenCallbacks[updateQueue], context);\n }\n function commitCallbacks(updateQueue, context) {\n var callbacks = updateQueue.callbacks;\n if (null !== callbacks)\n for (\n updateQueue.callbacks = null, updateQueue = 0;\n updateQueue < callbacks.length;\n updateQueue++\n )\n callCallback(callbacks[updateQueue], context);\n }\n function pushHiddenContext(fiber, context) {\n var prevEntangledRenderLanes = entangledRenderLanes;\n push(prevEntangledRenderLanesCursor, prevEntangledRenderLanes, fiber);\n push(currentTreeHiddenStackCursor, context, fiber);\n entangledRenderLanes = prevEntangledRenderLanes | context.baseLanes;\n }\n function reuseHiddenContextOnStack(fiber) {\n push(prevEntangledRenderLanesCursor, entangledRenderLanes, fiber);\n push(\n currentTreeHiddenStackCursor,\n currentTreeHiddenStackCursor.current,\n fiber\n );\n }\n function popHiddenContext(fiber) {\n entangledRenderLanes = prevEntangledRenderLanesCursor.current;\n pop(currentTreeHiddenStackCursor, fiber);\n pop(prevEntangledRenderLanesCursor, fiber);\n }\n function pushPrimaryTreeSuspenseHandler(handler) {\n var current = handler.alternate;\n push(\n suspenseStackCursor,\n suspenseStackCursor.current & SubtreeSuspenseContextMask,\n handler\n );\n push(suspenseHandlerStackCursor, handler, handler);\n null === shellBoundary &&\n (null === current || null !== currentTreeHiddenStackCursor.current\n ? (shellBoundary = handler)\n : null !== current.memoizedState && (shellBoundary = handler));\n }\n function pushDehydratedActivitySuspenseHandler(fiber) {\n push(suspenseStackCursor, suspenseStackCursor.current, fiber);\n push(suspenseHandlerStackCursor, fiber, fiber);\n null === shellBoundary && (shellBoundary = fiber);\n }\n function pushOffscreenSuspenseHandler(fiber) {\n 22 === fiber.tag\n ? (push(suspenseStackCursor, suspenseStackCursor.current, fiber),\n push(suspenseHandlerStackCursor, fiber, fiber),\n null === shellBoundary && (shellBoundary = fiber))\n : reuseSuspenseHandlerOnStack(fiber);\n }\n function reuseSuspenseHandlerOnStack(fiber) {\n push(suspenseStackCursor, suspenseStackCursor.current, fiber);\n push(\n suspenseHandlerStackCursor,\n suspenseHandlerStackCursor.current,\n fiber\n );\n }\n function popSuspenseHandler(fiber) {\n pop(suspenseHandlerStackCursor, fiber);\n shellBoundary === fiber && (shellBoundary = null);\n pop(suspenseStackCursor, fiber);\n }\n function pushSuspenseListContext(fiber, newContext) {\n push(\n suspenseHandlerStackCursor,\n suspenseHandlerStackCursor.current,\n fiber\n );\n push(suspenseStackCursor, newContext, fiber);\n }\n function popSuspenseListContext(fiber) {\n pop(suspenseStackCursor, fiber);\n pop(suspenseHandlerStackCursor, fiber);\n shellBoundary === fiber && (shellBoundary = null);\n }\n function findFirstSuspended(row) {\n for (var node = row; null !== node; ) {\n if (13 === node.tag) {\n var state = node.memoizedState;\n if (\n null !== state &&\n ((state = state.dehydrated),\n null === state ||\n isSuspenseInstancePending(state) ||\n isSuspenseInstanceFallback(state))\n )\n return node;\n } else if (\n 19 === node.tag &&\n \"independent\" !== node.memoizedProps.revealOrder\n ) {\n if (0 !== (node.flags & 128)) return node;\n } else if (null !== node.child) {\n node.child.return = node;\n node = node.child;\n continue;\n }\n if (node === row) break;\n for (; null === node.sibling; ) {\n if (null === node.return || node.return === row) return null;\n node = node.return;\n }\n node.sibling.return = node.return;\n node = node.sibling;\n }\n return null;\n }\n function mountHookTypesDev() {\n var hookName = currentHookNameInDev;\n null === hookTypesDev\n ? (hookTypesDev = [hookName])\n : hookTypesDev.push(hookName);\n }\n function updateHookTypesDev() {\n var hookName = currentHookNameInDev;\n if (\n null !== hookTypesDev &&\n (hookTypesUpdateIndexDev++,\n hookTypesDev[hookTypesUpdateIndexDev] !== hookName)\n ) {\n var componentName = getComponentNameFromFiber(currentlyRenderingFiber);\n if (\n !didWarnAboutMismatchedHooksForComponent.has(componentName) &&\n (didWarnAboutMismatchedHooksForComponent.add(componentName),\n null !== hookTypesDev)\n ) {\n for (var table = \"\", i = 0; i <= hookTypesUpdateIndexDev; i++) {\n var oldHookName = hookTypesDev[i],\n newHookName =\n i === hookTypesUpdateIndexDev ? hookName : oldHookName;\n for (\n oldHookName = i + 1 + \". \" + oldHookName;\n 30 > oldHookName.length;\n\n )\n oldHookName += \" \";\n oldHookName += newHookName + \"\\n\";\n table += oldHookName;\n }\n console.error(\n \"React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://react.dev/link/rules-of-hooks\\n\\n Previous render Next render\\n ------------------------------------------------------\\n%s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\\n\",\n componentName,\n table\n );\n }\n }\n }\n function checkDepsAreArrayDev(deps) {\n void 0 === deps ||\n null === deps ||\n isArrayImpl(deps) ||\n console.error(\n \"%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.\",\n currentHookNameInDev,\n typeof deps\n );\n }\n function warnOnUseFormStateInDev() {\n var componentName = getComponentNameFromFiber(currentlyRenderingFiber);\n didWarnAboutUseFormState.has(componentName) ||\n (didWarnAboutUseFormState.add(componentName),\n console.error(\n \"ReactDOM.useFormState has been renamed to React.useActionState. Please update %s to use React.useActionState.\",\n componentName\n ));\n }\n function throwInvalidHookError() {\n throw Error(\n \"Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\\n1. You might have mismatching versions of React and the renderer (such as React DOM)\\n2. You might be breaking the Rules of Hooks\\n3. You might have more than one copy of React in the same app\\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.\"\n );\n }\n function areHookInputsEqual(nextDeps, prevDeps) {\n if (ignorePreviousDependencies) return !1;\n if (null === prevDeps)\n return (\n console.error(\n \"%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.\",\n currentHookNameInDev\n ),\n !1\n );\n nextDeps.length !== prevDeps.length &&\n console.error(\n \"The final argument passed to %s changed size between renders. The order and size of this array must remain constant.\\n\\nPrevious: %s\\nIncoming: %s\",\n currentHookNameInDev,\n \"[\" + prevDeps.join(\", \") + \"]\",\n \"[\" + nextDeps.join(\", \") + \"]\"\n );\n for (var i = 0; i < prevDeps.length && i < nextDeps.length; i++)\n if (!objectIs(nextDeps[i], prevDeps[i])) return !1;\n return !0;\n }\n function renderWithHooks(\n current,\n workInProgress,\n Component,\n props,\n secondArg,\n nextRenderLanes\n ) {\n renderLanes = nextRenderLanes;\n currentlyRenderingFiber = workInProgress;\n hookTypesDev = null !== current ? current._debugHookTypes : null;\n hookTypesUpdateIndexDev = -1;\n ignorePreviousDependencies =\n null !== current && current.type !== workInProgress.type;\n if (\n \"[object AsyncFunction]\" ===\n Object.prototype.toString.call(Component) ||\n \"[object AsyncGeneratorFunction]\" ===\n Object.prototype.toString.call(Component)\n )\n (nextRenderLanes = getComponentNameFromFiber(currentlyRenderingFiber)),\n didWarnAboutAsyncClientComponent.has(nextRenderLanes) ||\n (didWarnAboutAsyncClientComponent.add(nextRenderLanes),\n console.error(\n \"%s is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.\",\n null === nextRenderLanes\n ? \"An unknown Component\"\n : \"<\" + nextRenderLanes + \">\"\n ));\n workInProgress.memoizedState = null;\n workInProgress.updateQueue = null;\n workInProgress.lanes = 0;\n ReactSharedInternals.H =\n null !== current && null !== current.memoizedState\n ? HooksDispatcherOnUpdateInDEV\n : null !== hookTypesDev\n ? HooksDispatcherOnMountWithHookTypesInDEV\n : HooksDispatcherOnMountInDEV;\n shouldDoubleInvokeUserFnsInHooksDEV = nextRenderLanes =\n (workInProgress.mode & StrictLegacyMode) !== NoMode;\n var children = callComponentInDEV(Component, props, secondArg);\n shouldDoubleInvokeUserFnsInHooksDEV = !1;\n didScheduleRenderPhaseUpdateDuringThisPass &&\n (children = renderWithHooksAgain(\n workInProgress,\n Component,\n props,\n secondArg\n ));\n if (nextRenderLanes) {\n setIsStrictModeForDevtools(!0);\n try {\n children = renderWithHooksAgain(\n workInProgress,\n Component,\n props,\n secondArg\n );\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n finishRenderingHooks(current, workInProgress);\n return children;\n }\n function finishRenderingHooks(current, workInProgress) {\n workInProgress._debugHookTypes = hookTypesDev;\n null === workInProgress.dependencies\n ? null !== thenableState &&\n (workInProgress.dependencies = {\n lanes: 0,\n firstContext: null,\n _debugThenableState: thenableState\n })\n : (workInProgress.dependencies._debugThenableState = thenableState);\n ReactSharedInternals.H = ContextOnlyDispatcher;\n var didRenderTooFewHooks =\n null !== currentHook && null !== currentHook.next;\n renderLanes = 0;\n hookTypesDev =\n currentHookNameInDev =\n workInProgressHook =\n currentHook =\n currentlyRenderingFiber =\n null;\n hookTypesUpdateIndexDev = -1;\n null !== current &&\n (current.flags & 132120576) !== (workInProgress.flags & 132120576) &&\n console.error(\n \"Internal React error: Expected static flag was missing. Please notify the React team.\"\n );\n didScheduleRenderPhaseUpdate = !1;\n thenableIndexCounter = 0;\n thenableState = null;\n if (didRenderTooFewHooks)\n throw Error(\n \"Rendered fewer hooks than expected. This may be caused by an accidental early return statement.\"\n );\n null === current ||\n didReceiveUpdate ||\n ((current = current.dependencies),\n null !== current &&\n checkIfContextChanged(current) &&\n (didReceiveUpdate = !0));\n needsToResetSuspendedThenableDEV\n ? ((needsToResetSuspendedThenableDEV = !1), (current = !0))\n : (current = !1);\n current &&\n ((workInProgress =\n getComponentNameFromFiber(workInProgress) || \"Unknown\"),\n didWarnAboutUseWrappedInTryCatch.has(workInProgress) ||\n didWarnAboutAsyncClientComponent.has(workInProgress) ||\n (didWarnAboutUseWrappedInTryCatch.add(workInProgress),\n console.error(\n \"`use` was called from inside a try/catch block. This is not allowed and can lead to unexpected behavior. To handle errors triggered by `use`, wrap your component in a error boundary.\"\n )));\n }\n function renderWithHooksAgain(workInProgress, Component, props, secondArg) {\n currentlyRenderingFiber = workInProgress;\n var numberOfReRenders = 0;\n do {\n didScheduleRenderPhaseUpdateDuringThisPass && (thenableState = null);\n thenableIndexCounter = 0;\n didScheduleRenderPhaseUpdateDuringThisPass = !1;\n if (numberOfReRenders >= RE_RENDER_LIMIT)\n throw Error(\n \"Too many re-renders. React limits the number of renders to prevent an infinite loop.\"\n );\n numberOfReRenders += 1;\n ignorePreviousDependencies = !1;\n workInProgressHook = currentHook = null;\n if (null != workInProgress.updateQueue) {\n var children = workInProgress.updateQueue;\n children.lastEffect = null;\n children.events = null;\n children.stores = null;\n null != children.memoCache && (children.memoCache.index = 0);\n }\n hookTypesUpdateIndexDev = -1;\n ReactSharedInternals.H = HooksDispatcherOnRerenderInDEV;\n children = callComponentInDEV(Component, props, secondArg);\n } while (didScheduleRenderPhaseUpdateDuringThisPass);\n return children;\n }\n function TransitionAwareHostComponent() {\n var dispatcher = ReactSharedInternals.H,\n maybeThenable = dispatcher.useState()[0];\n maybeThenable =\n \"function\" === typeof maybeThenable.then\n ? useThenable(maybeThenable)\n : maybeThenable;\n dispatcher = dispatcher.useState()[0];\n (null !== currentHook ? currentHook.memoizedState : null) !==\n dispatcher && (currentlyRenderingFiber.flags |= 1024);\n return maybeThenable;\n }\n function checkDidRenderIdHook() {\n var didRenderIdHook = 0 !== localIdCounter;\n localIdCounter = 0;\n return didRenderIdHook;\n }\n function bailoutHooks(current, workInProgress, lanes) {\n workInProgress.updateQueue = current.updateQueue;\n workInProgress.flags =\n (workInProgress.mode & StrictEffectsMode) !== NoMode\n ? workInProgress.flags & -805308421\n : workInProgress.flags & -2053;\n current.lanes &= ~lanes;\n }\n function resetHooksOnUnwind(workInProgress) {\n if (didScheduleRenderPhaseUpdate) {\n for (\n workInProgress = workInProgress.memoizedState;\n null !== workInProgress;\n\n ) {\n var queue = workInProgress.queue;\n null !== queue && (queue.pending = null);\n workInProgress = workInProgress.next;\n }\n didScheduleRenderPhaseUpdate = !1;\n }\n renderLanes = 0;\n hookTypesDev =\n workInProgressHook =\n currentHook =\n currentlyRenderingFiber =\n null;\n hookTypesUpdateIndexDev = -1;\n currentHookNameInDev = null;\n didScheduleRenderPhaseUpdateDuringThisPass = !1;\n thenableIndexCounter = localIdCounter = 0;\n thenableState = null;\n }\n function mountWorkInProgressHook() {\n var hook = {\n memoizedState: null,\n baseState: null,\n baseQueue: null,\n queue: null,\n next: null\n };\n null === workInProgressHook\n ? (currentlyRenderingFiber.memoizedState = workInProgressHook = hook)\n : (workInProgressHook = workInProgressHook.next = hook);\n return workInProgressHook;\n }\n function updateWorkInProgressHook() {\n if (null === currentHook) {\n var nextCurrentHook = currentlyRenderingFiber.alternate;\n nextCurrentHook =\n null !== nextCurrentHook ? nextCurrentHook.memoizedState : null;\n } else nextCurrentHook = currentHook.next;\n var nextWorkInProgressHook =\n null === workInProgressHook\n ? currentlyRenderingFiber.memoizedState\n : workInProgressHook.next;\n if (null !== nextWorkInProgressHook)\n (workInProgressHook = nextWorkInProgressHook),\n (currentHook = nextCurrentHook);\n else {\n if (null === nextCurrentHook) {\n if (null === currentlyRenderingFiber.alternate)\n throw Error(\n \"Update hook called on initial render. This is likely a bug in React. Please file an issue.\"\n );\n throw Error(\"Rendered more hooks than during the previous render.\");\n }\n currentHook = nextCurrentHook;\n nextCurrentHook = {\n memoizedState: currentHook.memoizedState,\n baseState: currentHook.baseState,\n baseQueue: currentHook.baseQueue,\n queue: currentHook.queue,\n next: null\n };\n null === workInProgressHook\n ? (currentlyRenderingFiber.memoizedState = workInProgressHook =\n nextCurrentHook)\n : (workInProgressHook = workInProgressHook.next = nextCurrentHook);\n }\n return workInProgressHook;\n }\n function createFunctionComponentUpdateQueue() {\n return { lastEffect: null, events: null, stores: null, memoCache: null };\n }\n function useThenable(thenable) {\n var index = thenableIndexCounter;\n thenableIndexCounter += 1;\n null === thenableState && (thenableState = createThenableState());\n thenable = trackUsedThenable(thenableState, thenable, index);\n index = currentlyRenderingFiber;\n null ===\n (null === workInProgressHook\n ? index.memoizedState\n : workInProgressHook.next) &&\n ((index = index.alternate),\n (ReactSharedInternals.H =\n null !== index && null !== index.memoizedState\n ? HooksDispatcherOnUpdateInDEV\n : HooksDispatcherOnMountInDEV));\n return thenable;\n }\n function use(usable) {\n if (null !== usable && \"object\" === typeof usable) {\n if (\"function\" === typeof usable.then) return useThenable(usable);\n if (usable.$$typeof === REACT_CONTEXT_TYPE) return readContext(usable);\n }\n throw Error(\"An unsupported type was passed to use(): \" + String(usable));\n }\n function useMemoCache(size) {\n var memoCache = null,\n updateQueue = currentlyRenderingFiber.updateQueue;\n null !== updateQueue && (memoCache = updateQueue.memoCache);\n if (null == memoCache) {\n var current = currentlyRenderingFiber.alternate;\n null !== current &&\n ((current = current.updateQueue),\n null !== current &&\n ((current = current.memoCache),\n null != current &&\n (memoCache = {\n data: current.data.map(function (array) {\n return array.slice();\n }),\n index: 0\n })));\n }\n null == memoCache && (memoCache = { data: [], index: 0 });\n null === updateQueue &&\n ((updateQueue = createFunctionComponentUpdateQueue()),\n (currentlyRenderingFiber.updateQueue = updateQueue));\n updateQueue.memoCache = memoCache;\n updateQueue = memoCache.data[memoCache.index];\n if (void 0 === updateQueue || ignorePreviousDependencies)\n for (\n updateQueue = memoCache.data[memoCache.index] = Array(size),\n current = 0;\n current < size;\n current++\n )\n updateQueue[current] = REACT_MEMO_CACHE_SENTINEL;\n else\n updateQueue.length !== size &&\n console.error(\n \"Expected a constant size argument for each invocation of useMemoCache. The previous cache was allocated with size %s but size %s was requested.\",\n updateQueue.length,\n size\n );\n memoCache.index++;\n return updateQueue;\n }\n function basicStateReducer(state, action) {\n return \"function\" === typeof action ? action(state) : action;\n }\n function mountReducer(reducer, initialArg, init) {\n var hook = mountWorkInProgressHook();\n if (void 0 !== init) {\n var initialState = init(initialArg);\n if (shouldDoubleInvokeUserFnsInHooksDEV) {\n setIsStrictModeForDevtools(!0);\n try {\n init(initialArg);\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n } else initialState = initialArg;\n hook.memoizedState = hook.baseState = initialState;\n reducer = {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: reducer,\n lastRenderedState: initialState\n };\n hook.queue = reducer;\n reducer = reducer.dispatch = dispatchReducerAction.bind(\n null,\n currentlyRenderingFiber,\n reducer\n );\n return [hook.memoizedState, reducer];\n }\n function updateReducer(reducer) {\n var hook = updateWorkInProgressHook();\n return updateReducerImpl(hook, currentHook, reducer);\n }\n function updateReducerImpl(hook, current, reducer) {\n var queue = hook.queue;\n if (null === queue)\n throw Error(\n \"Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)\"\n );\n queue.lastRenderedReducer = reducer;\n var baseQueue = hook.baseQueue,\n pendingQueue = queue.pending;\n if (null !== pendingQueue) {\n if (null !== baseQueue) {\n var baseFirst = baseQueue.next;\n baseQueue.next = pendingQueue.next;\n pendingQueue.next = baseFirst;\n }\n current.baseQueue !== baseQueue &&\n console.error(\n \"Internal error: Expected work-in-progress queue to be a clone. This is a bug in React.\"\n );\n current.baseQueue = baseQueue = pendingQueue;\n queue.pending = null;\n }\n pendingQueue = hook.baseState;\n if (null === baseQueue) hook.memoizedState = pendingQueue;\n else {\n current = baseQueue.next;\n var newBaseQueueFirst = (baseFirst = null),\n newBaseQueueLast = null,\n update = current,\n didReadFromEntangledAsyncAction = !1;\n do {\n var updateLane = update.lane & -536870913;\n if (\n updateLane !== update.lane\n ? (workInProgressRootRenderLanes & updateLane) === updateLane\n : (renderLanes & updateLane) === updateLane\n ) {\n var revertLane = update.revertLane;\n if (0 === revertLane)\n null !== newBaseQueueLast &&\n (newBaseQueueLast = newBaseQueueLast.next =\n {\n lane: 0,\n revertLane: 0,\n gesture: null,\n action: update.action,\n hasEagerState: update.hasEagerState,\n eagerState: update.eagerState,\n next: null\n }),\n updateLane === currentEntangledLane &&\n (didReadFromEntangledAsyncAction = !0);\n else if ((renderLanes & revertLane) === revertLane) {\n update = update.next;\n revertLane === currentEntangledLane &&\n (didReadFromEntangledAsyncAction = !0);\n continue;\n } else\n (updateLane = {\n lane: 0,\n revertLane: update.revertLane,\n gesture: null,\n action: update.action,\n hasEagerState: update.hasEagerState,\n eagerState: update.eagerState,\n next: null\n }),\n null === newBaseQueueLast\n ? ((newBaseQueueFirst = newBaseQueueLast = updateLane),\n (baseFirst = pendingQueue))\n : (newBaseQueueLast = newBaseQueueLast.next = updateLane),\n (currentlyRenderingFiber.lanes |= revertLane),\n (workInProgressRootSkippedLanes |= revertLane);\n updateLane = update.action;\n shouldDoubleInvokeUserFnsInHooksDEV &&\n reducer(pendingQueue, updateLane);\n pendingQueue = update.hasEagerState\n ? update.eagerState\n : reducer(pendingQueue, updateLane);\n } else\n (revertLane = {\n lane: updateLane,\n revertLane: update.revertLane,\n gesture: update.gesture,\n action: update.action,\n hasEagerState: update.hasEagerState,\n eagerState: update.eagerState,\n next: null\n }),\n null === newBaseQueueLast\n ? ((newBaseQueueFirst = newBaseQueueLast = revertLane),\n (baseFirst = pendingQueue))\n : (newBaseQueueLast = newBaseQueueLast.next = revertLane),\n (currentlyRenderingFiber.lanes |= updateLane),\n (workInProgressRootSkippedLanes |= updateLane);\n update = update.next;\n } while (null !== update && update !== current);\n null === newBaseQueueLast\n ? (baseFirst = pendingQueue)\n : (newBaseQueueLast.next = newBaseQueueFirst);\n if (\n !objectIs(pendingQueue, hook.memoizedState) &&\n ((didReceiveUpdate = !0),\n didReadFromEntangledAsyncAction &&\n ((reducer = currentEntangledActionThenable), null !== reducer))\n )\n throw reducer;\n hook.memoizedState = pendingQueue;\n hook.baseState = baseFirst;\n hook.baseQueue = newBaseQueueLast;\n queue.lastRenderedState = pendingQueue;\n }\n null === baseQueue && (queue.lanes = 0);\n return [hook.memoizedState, queue.dispatch];\n }\n function rerenderReducer(reducer) {\n var hook = updateWorkInProgressHook(),\n queue = hook.queue;\n if (null === queue)\n throw Error(\n \"Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)\"\n );\n queue.lastRenderedReducer = reducer;\n var dispatch = queue.dispatch,\n lastRenderPhaseUpdate = queue.pending,\n newState = hook.memoizedState;\n if (null !== lastRenderPhaseUpdate) {\n queue.pending = null;\n var update = (lastRenderPhaseUpdate = lastRenderPhaseUpdate.next);\n do\n (newState = reducer(newState, update.action)), (update = update.next);\n while (update !== lastRenderPhaseUpdate);\n objectIs(newState, hook.memoizedState) || (didReceiveUpdate = !0);\n hook.memoizedState = newState;\n null === hook.baseQueue && (hook.baseState = newState);\n queue.lastRenderedState = newState;\n }\n return [newState, dispatch];\n }\n function mountSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {\n var fiber = currentlyRenderingFiber,\n hook = mountWorkInProgressHook();\n if (isHydrating) {\n if (void 0 === getServerSnapshot)\n throw Error(\n \"Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.\"\n );\n var nextSnapshot = getServerSnapshot();\n didWarnUncachedGetSnapshot ||\n nextSnapshot === getServerSnapshot() ||\n (console.error(\n \"The result of getServerSnapshot should be cached to avoid an infinite loop\"\n ),\n (didWarnUncachedGetSnapshot = !0));\n } else {\n nextSnapshot = getSnapshot();\n didWarnUncachedGetSnapshot ||\n ((getServerSnapshot = getSnapshot()),\n objectIs(nextSnapshot, getServerSnapshot) ||\n (console.error(\n \"The result of getSnapshot should be cached to avoid an infinite loop\"\n ),\n (didWarnUncachedGetSnapshot = !0)));\n if (null === workInProgressRoot)\n throw Error(\n \"Expected a work-in-progress root. This is a bug in React. Please file an issue.\"\n );\n 0 !== (workInProgressRootRenderLanes & 127) ||\n pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);\n }\n hook.memoizedState = nextSnapshot;\n getServerSnapshot = { value: nextSnapshot, getSnapshot: getSnapshot };\n hook.queue = getServerSnapshot;\n mountEffect(\n subscribeToStore.bind(null, fiber, getServerSnapshot, subscribe),\n [subscribe]\n );\n fiber.flags |= 2048;\n pushSimpleEffect(\n HasEffect | Passive,\n { destroy: void 0 },\n updateStoreInstance.bind(\n null,\n fiber,\n getServerSnapshot,\n nextSnapshot,\n getSnapshot\n ),\n null\n );\n return nextSnapshot;\n }\n function updateSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n var fiber = currentlyRenderingFiber,\n hook = updateWorkInProgressHook(),\n isHydrating$jscomp$0 = isHydrating;\n if (isHydrating$jscomp$0) {\n if (void 0 === getServerSnapshot)\n throw Error(\n \"Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.\"\n );\n getServerSnapshot = getServerSnapshot();\n } else if (\n ((getServerSnapshot = getSnapshot()), !didWarnUncachedGetSnapshot)\n ) {\n var cachedSnapshot = getSnapshot();\n objectIs(getServerSnapshot, cachedSnapshot) ||\n (console.error(\n \"The result of getSnapshot should be cached to avoid an infinite loop\"\n ),\n (didWarnUncachedGetSnapshot = !0));\n }\n if (\n (cachedSnapshot = !objectIs(\n (currentHook || hook).memoizedState,\n getServerSnapshot\n ))\n )\n (hook.memoizedState = getServerSnapshot), (didReceiveUpdate = !0);\n hook = hook.queue;\n var create = subscribeToStore.bind(null, fiber, hook, subscribe);\n updateEffectImpl(2048, Passive, create, [subscribe]);\n if (\n hook.getSnapshot !== getSnapshot ||\n cachedSnapshot ||\n (null !== workInProgressHook &&\n workInProgressHook.memoizedState.tag & HasEffect)\n ) {\n fiber.flags |= 2048;\n pushSimpleEffect(\n HasEffect | Passive,\n { destroy: void 0 },\n updateStoreInstance.bind(\n null,\n fiber,\n hook,\n getServerSnapshot,\n getSnapshot\n ),\n null\n );\n if (null === workInProgressRoot)\n throw Error(\n \"Expected a work-in-progress root. This is a bug in React. Please file an issue.\"\n );\n isHydrating$jscomp$0 ||\n 0 !== (renderLanes & 127) ||\n pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);\n }\n return getServerSnapshot;\n }\n function pushStoreConsistencyCheck(fiber, getSnapshot, renderedSnapshot) {\n fiber.flags |= 16384;\n fiber = { getSnapshot: getSnapshot, value: renderedSnapshot };\n getSnapshot = currentlyRenderingFiber.updateQueue;\n null === getSnapshot\n ? ((getSnapshot = createFunctionComponentUpdateQueue()),\n (currentlyRenderingFiber.updateQueue = getSnapshot),\n (getSnapshot.stores = [fiber]))\n : ((renderedSnapshot = getSnapshot.stores),\n null === renderedSnapshot\n ? (getSnapshot.stores = [fiber])\n : renderedSnapshot.push(fiber));\n }\n function updateStoreInstance(fiber, inst, nextSnapshot, getSnapshot) {\n inst.value = nextSnapshot;\n inst.getSnapshot = getSnapshot;\n checkIfSnapshotChanged(inst) && forceStoreRerender(fiber);\n }\n function subscribeToStore(fiber, inst, subscribe) {\n return subscribe(function () {\n checkIfSnapshotChanged(inst) &&\n (startUpdateTimerByLane(2, \"updateSyncExternalStore()\", fiber),\n forceStoreRerender(fiber));\n });\n }\n function checkIfSnapshotChanged(inst) {\n var latestGetSnapshot = inst.getSnapshot;\n inst = inst.value;\n try {\n var nextValue = latestGetSnapshot();\n return !objectIs(inst, nextValue);\n } catch (error) {\n return !0;\n }\n }\n function forceStoreRerender(fiber) {\n var root = enqueueConcurrentRenderForLane(fiber, 2);\n null !== root && scheduleUpdateOnFiber(root, fiber, 2);\n }\n function mountStateImpl(initialState) {\n var hook = mountWorkInProgressHook();\n if (\"function\" === typeof initialState) {\n var initialStateInitializer = initialState;\n initialState = initialStateInitializer();\n if (shouldDoubleInvokeUserFnsInHooksDEV) {\n setIsStrictModeForDevtools(!0);\n try {\n initialStateInitializer();\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n }\n hook.memoizedState = hook.baseState = initialState;\n hook.queue = {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: basicStateReducer,\n lastRenderedState: initialState\n };\n return hook;\n }\n function mountState(initialState) {\n initialState = mountStateImpl(initialState);\n var queue = initialState.queue,\n dispatch = dispatchSetState.bind(null, currentlyRenderingFiber, queue);\n queue.dispatch = dispatch;\n return [initialState.memoizedState, dispatch];\n }\n function mountOptimistic(passthrough) {\n var hook = mountWorkInProgressHook();\n hook.memoizedState = hook.baseState = passthrough;\n var queue = {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: null,\n lastRenderedState: null\n };\n hook.queue = queue;\n hook = dispatchOptimisticSetState.bind(\n null,\n currentlyRenderingFiber,\n !0,\n queue\n );\n queue.dispatch = hook;\n return [passthrough, hook];\n }\n function updateOptimistic(passthrough, reducer) {\n var hook = updateWorkInProgressHook();\n return updateOptimisticImpl(hook, currentHook, passthrough, reducer);\n }\n function updateOptimisticImpl(hook, current, passthrough, reducer) {\n hook.baseState = passthrough;\n return updateReducerImpl(\n hook,\n currentHook,\n \"function\" === typeof reducer ? reducer : basicStateReducer\n );\n }\n function rerenderOptimistic(passthrough, reducer) {\n var hook = updateWorkInProgressHook();\n if (null !== currentHook)\n return updateOptimisticImpl(hook, currentHook, passthrough, reducer);\n hook.baseState = passthrough;\n return [passthrough, hook.queue.dispatch];\n }\n function dispatchActionState(\n fiber,\n actionQueue,\n setPendingState,\n setState,\n payload\n ) {\n if (isRenderPhaseUpdate(fiber))\n throw Error(\"Cannot update form state while rendering.\");\n fiber = actionQueue.action;\n if (null !== fiber) {\n var actionNode = {\n payload: payload,\n action: fiber,\n next: null,\n isTransition: !0,\n status: \"pending\",\n value: null,\n reason: null,\n listeners: [],\n then: function (listener) {\n actionNode.listeners.push(listener);\n }\n };\n null !== ReactSharedInternals.T\n ? setPendingState(!0)\n : (actionNode.isTransition = !1);\n setState(actionNode);\n setPendingState = actionQueue.pending;\n null === setPendingState\n ? ((actionNode.next = actionQueue.pending = actionNode),\n runActionStateAction(actionQueue, actionNode))\n : ((actionNode.next = setPendingState.next),\n (actionQueue.pending = setPendingState.next = actionNode));\n }\n }\n function runActionStateAction(actionQueue, node) {\n var action = node.action,\n payload = node.payload,\n prevState = actionQueue.state;\n if (node.isTransition) {\n var prevTransition = ReactSharedInternals.T,\n currentTransition = {};\n currentTransition.types =\n null !== prevTransition ? prevTransition.types : null;\n currentTransition._updatedFibers = new Set();\n ReactSharedInternals.T = currentTransition;\n try {\n var returnValue = action(prevState, payload),\n onStartTransitionFinish = ReactSharedInternals.S;\n null !== onStartTransitionFinish &&\n onStartTransitionFinish(currentTransition, returnValue);\n handleActionReturnValue(actionQueue, node, returnValue);\n } catch (error) {\n onActionError(actionQueue, node, error);\n } finally {\n null !== prevTransition &&\n null !== currentTransition.types &&\n (null !== prevTransition.types &&\n prevTransition.types !== currentTransition.types &&\n console.error(\n \"We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React.\"\n ),\n (prevTransition.types = currentTransition.types)),\n (ReactSharedInternals.T = prevTransition),\n null === prevTransition &&\n currentTransition._updatedFibers &&\n ((actionQueue = currentTransition._updatedFibers.size),\n currentTransition._updatedFibers.clear(),\n 10 < actionQueue &&\n console.warn(\n \"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.\"\n ));\n }\n } else\n try {\n (currentTransition = action(prevState, payload)),\n handleActionReturnValue(actionQueue, node, currentTransition);\n } catch (error$4) {\n onActionError(actionQueue, node, error$4);\n }\n }\n function handleActionReturnValue(actionQueue, node, returnValue) {\n null !== returnValue &&\n \"object\" === typeof returnValue &&\n \"function\" === typeof returnValue.then\n ? (ReactSharedInternals.asyncTransitions++,\n returnValue.then(releaseAsyncTransition, releaseAsyncTransition),\n returnValue.then(\n function (nextState) {\n onActionSuccess(actionQueue, node, nextState);\n },\n function (error) {\n return onActionError(actionQueue, node, error);\n }\n ),\n node.isTransition ||\n console.error(\n \"An async function with useActionState was called outside of a transition. This is likely not what you intended (for example, isPending will not update correctly). Either call the returned function inside startTransition, or pass it to an `action` or `formAction` prop.\"\n ))\n : onActionSuccess(actionQueue, node, returnValue);\n }\n function onActionSuccess(actionQueue, actionNode, nextState) {\n actionNode.status = \"fulfilled\";\n actionNode.value = nextState;\n notifyActionListeners(actionNode);\n actionQueue.state = nextState;\n actionNode = actionQueue.pending;\n null !== actionNode &&\n ((nextState = actionNode.next),\n nextState === actionNode\n ? (actionQueue.pending = null)\n : ((nextState = nextState.next),\n (actionNode.next = nextState),\n runActionStateAction(actionQueue, nextState)));\n }\n function onActionError(actionQueue, actionNode, error) {\n var last = actionQueue.pending;\n actionQueue.pending = null;\n if (null !== last) {\n last = last.next;\n do\n (actionNode.status = \"rejected\"),\n (actionNode.reason = error),\n notifyActionListeners(actionNode),\n (actionNode = actionNode.next);\n while (actionNode !== last);\n }\n actionQueue.action = null;\n }\n function notifyActionListeners(actionNode) {\n actionNode = actionNode.listeners;\n for (var i = 0; i < actionNode.length; i++) (0, actionNode[i])();\n }\n function actionStateReducer(oldState, newState) {\n return newState;\n }\n function mountActionState(action, initialStateProp) {\n if (isHydrating) {\n var ssrFormState = workInProgressRoot.formState;\n if (null !== ssrFormState) {\n a: {\n var isMatching = currentlyRenderingFiber;\n if (isHydrating) {\n if (nextHydratableInstance) {\n b: {\n var markerInstance = nextHydratableInstance;\n for (\n var inRootOrSingleton = rootOrSingletonContext;\n 8 !== markerInstance.nodeType;\n\n ) {\n if (!inRootOrSingleton) {\n markerInstance = null;\n break b;\n }\n markerInstance = getNextHydratable(\n markerInstance.nextSibling\n );\n if (null === markerInstance) {\n markerInstance = null;\n break b;\n }\n }\n inRootOrSingleton = markerInstance.data;\n markerInstance =\n inRootOrSingleton === FORM_STATE_IS_MATCHING ||\n inRootOrSingleton === FORM_STATE_IS_NOT_MATCHING\n ? markerInstance\n : null;\n }\n if (markerInstance) {\n nextHydratableInstance = getNextHydratable(\n markerInstance.nextSibling\n );\n isMatching = markerInstance.data === FORM_STATE_IS_MATCHING;\n break a;\n }\n }\n throwOnHydrationMismatch(isMatching);\n }\n isMatching = !1;\n }\n isMatching && (initialStateProp = ssrFormState[0]);\n }\n }\n ssrFormState = mountWorkInProgressHook();\n ssrFormState.memoizedState = ssrFormState.baseState = initialStateProp;\n isMatching = {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: actionStateReducer,\n lastRenderedState: initialStateProp\n };\n ssrFormState.queue = isMatching;\n ssrFormState = dispatchSetState.bind(\n null,\n currentlyRenderingFiber,\n isMatching\n );\n isMatching.dispatch = ssrFormState;\n isMatching = mountStateImpl(!1);\n inRootOrSingleton = dispatchOptimisticSetState.bind(\n null,\n currentlyRenderingFiber,\n !1,\n isMatching.queue\n );\n isMatching = mountWorkInProgressHook();\n markerInstance = {\n state: initialStateProp,\n dispatch: null,\n action: action,\n pending: null\n };\n isMatching.queue = markerInstance;\n ssrFormState = dispatchActionState.bind(\n null,\n currentlyRenderingFiber,\n markerInstance,\n inRootOrSingleton,\n ssrFormState\n );\n markerInstance.dispatch = ssrFormState;\n isMatching.memoizedState = action;\n return [initialStateProp, ssrFormState, !1];\n }\n function updateActionState(action) {\n var stateHook = updateWorkInProgressHook();\n return updateActionStateImpl(stateHook, currentHook, action);\n }\n function updateActionStateImpl(stateHook, currentStateHook, action) {\n currentStateHook = updateReducerImpl(\n stateHook,\n currentStateHook,\n actionStateReducer\n )[0];\n stateHook = updateReducer(basicStateReducer)[0];\n if (\n \"object\" === typeof currentStateHook &&\n null !== currentStateHook &&\n \"function\" === typeof currentStateHook.then\n )\n try {\n var state = useThenable(currentStateHook);\n } catch (x) {\n if (x === SuspenseException) throw SuspenseActionException;\n throw x;\n }\n else state = currentStateHook;\n currentStateHook = updateWorkInProgressHook();\n var actionQueue = currentStateHook.queue,\n dispatch = actionQueue.dispatch;\n action !== currentStateHook.memoizedState &&\n ((currentlyRenderingFiber.flags |= 2048),\n pushSimpleEffect(\n HasEffect | Passive,\n { destroy: void 0 },\n actionStateActionEffect.bind(null, actionQueue, action),\n null\n ));\n return [state, dispatch, stateHook];\n }\n function actionStateActionEffect(actionQueue, action) {\n actionQueue.action = action;\n }\n function rerenderActionState(action) {\n var stateHook = updateWorkInProgressHook(),\n currentStateHook = currentHook;\n if (null !== currentStateHook)\n return updateActionStateImpl(stateHook, currentStateHook, action);\n updateWorkInProgressHook();\n stateHook = stateHook.memoizedState;\n currentStateHook = updateWorkInProgressHook();\n var dispatch = currentStateHook.queue.dispatch;\n currentStateHook.memoizedState = action;\n return [stateHook, dispatch, !1];\n }\n function pushSimpleEffect(tag, inst, create, deps) {\n tag = { tag: tag, create: create, deps: deps, inst: inst, next: null };\n inst = currentlyRenderingFiber.updateQueue;\n null === inst &&\n ((inst = createFunctionComponentUpdateQueue()),\n (currentlyRenderingFiber.updateQueue = inst));\n create = inst.lastEffect;\n null === create\n ? (inst.lastEffect = tag.next = tag)\n : ((deps = create.next),\n (create.next = tag),\n (tag.next = deps),\n (inst.lastEffect = tag));\n return tag;\n }\n function mountRef(initialValue) {\n var hook = mountWorkInProgressHook();\n initialValue = { current: initialValue };\n return (hook.memoizedState = initialValue);\n }\n function mountEffectImpl(fiberFlags, hookFlags, create, deps) {\n var hook = mountWorkInProgressHook();\n currentlyRenderingFiber.flags |= fiberFlags;\n hook.memoizedState = pushSimpleEffect(\n HasEffect | hookFlags,\n { destroy: void 0 },\n create,\n void 0 === deps ? null : deps\n );\n }\n function updateEffectImpl(fiberFlags, hookFlags, create, deps) {\n var hook = updateWorkInProgressHook();\n deps = void 0 === deps ? null : deps;\n var inst = hook.memoizedState.inst;\n null !== currentHook &&\n null !== deps &&\n areHookInputsEqual(deps, currentHook.memoizedState.deps)\n ? (hook.memoizedState = pushSimpleEffect(hookFlags, inst, create, deps))\n : ((currentlyRenderingFiber.flags |= fiberFlags),\n (hook.memoizedState = pushSimpleEffect(\n HasEffect | hookFlags,\n inst,\n create,\n deps\n )));\n }\n function mountEffect(create, deps) {\n (currentlyRenderingFiber.mode & StrictEffectsMode) !== NoMode\n ? mountEffectImpl(545261568, Passive, create, deps)\n : mountEffectImpl(8390656, Passive, create, deps);\n }\n function useEffectEventImpl(payload) {\n currentlyRenderingFiber.flags |= 4;\n var componentUpdateQueue = currentlyRenderingFiber.updateQueue;\n if (null === componentUpdateQueue)\n (componentUpdateQueue = createFunctionComponentUpdateQueue()),\n (currentlyRenderingFiber.updateQueue = componentUpdateQueue),\n (componentUpdateQueue.events = [payload]);\n else {\n var events = componentUpdateQueue.events;\n null === events\n ? (componentUpdateQueue.events = [payload])\n : events.push(payload);\n }\n }\n function mountEvent(callback) {\n var hook = mountWorkInProgressHook(),\n ref = { impl: callback };\n hook.memoizedState = ref;\n return function () {\n if ((executionContext & RenderContext) !== NoContext)\n throw Error(\n \"A function wrapped in useEffectEvent can't be called during rendering.\"\n );\n return ref.impl.apply(void 0, arguments);\n };\n }\n function updateEvent(callback) {\n var ref = updateWorkInProgressHook().memoizedState;\n useEffectEventImpl({ ref: ref, nextImpl: callback });\n return function () {\n if ((executionContext & RenderContext) !== NoContext)\n throw Error(\n \"A function wrapped in useEffectEvent can't be called during rendering.\"\n );\n return ref.impl.apply(void 0, arguments);\n };\n }\n function mountLayoutEffect(create, deps) {\n var fiberFlags = 4194308;\n (currentlyRenderingFiber.mode & StrictEffectsMode) !== NoMode &&\n (fiberFlags |= 268435456);\n return mountEffectImpl(fiberFlags, Layout, create, deps);\n }\n function imperativeHandleEffect(create, ref) {\n if (\"function\" === typeof ref) {\n create = create();\n var refCleanup = ref(create);\n return function () {\n \"function\" === typeof refCleanup ? refCleanup() : ref(null);\n };\n }\n if (null !== ref && void 0 !== ref)\n return (\n ref.hasOwnProperty(\"current\") ||\n console.error(\n \"Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.\",\n \"an object with keys {\" + Object.keys(ref).join(\", \") + \"}\"\n ),\n (create = create()),\n (ref.current = create),\n function () {\n ref.current = null;\n }\n );\n }\n function mountImperativeHandle(ref, create, deps) {\n \"function\" !== typeof create &&\n console.error(\n \"Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.\",\n null !== create ? typeof create : \"null\"\n );\n deps = null !== deps && void 0 !== deps ? deps.concat([ref]) : null;\n var fiberFlags = 4194308;\n (currentlyRenderingFiber.mode & StrictEffectsMode) !== NoMode &&\n (fiberFlags |= 268435456);\n mountEffectImpl(\n fiberFlags,\n Layout,\n imperativeHandleEffect.bind(null, create, ref),\n deps\n );\n }\n function updateImperativeHandle(ref, create, deps) {\n \"function\" !== typeof create &&\n console.error(\n \"Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.\",\n null !== create ? typeof create : \"null\"\n );\n deps = null !== deps && void 0 !== deps ? deps.concat([ref]) : null;\n updateEffectImpl(\n 4,\n Layout,\n imperativeHandleEffect.bind(null, create, ref),\n deps\n );\n }\n function mountCallback(callback, deps) {\n mountWorkInProgressHook().memoizedState = [\n callback,\n void 0 === deps ? null : deps\n ];\n return callback;\n }\n function updateCallback(callback, deps) {\n var hook = updateWorkInProgressHook();\n deps = void 0 === deps ? null : deps;\n var prevState = hook.memoizedState;\n if (null !== deps && areHookInputsEqual(deps, prevState[1]))\n return prevState[0];\n hook.memoizedState = [callback, deps];\n return callback;\n }\n function mountMemo(nextCreate, deps) {\n var hook = mountWorkInProgressHook();\n deps = void 0 === deps ? null : deps;\n var nextValue = nextCreate();\n if (shouldDoubleInvokeUserFnsInHooksDEV) {\n setIsStrictModeForDevtools(!0);\n try {\n nextCreate();\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n hook.memoizedState = [nextValue, deps];\n return nextValue;\n }\n function updateMemo(nextCreate, deps) {\n var hook = updateWorkInProgressHook();\n deps = void 0 === deps ? null : deps;\n var prevState = hook.memoizedState;\n if (null !== deps && areHookInputsEqual(deps, prevState[1]))\n return prevState[0];\n prevState = nextCreate();\n if (shouldDoubleInvokeUserFnsInHooksDEV) {\n setIsStrictModeForDevtools(!0);\n try {\n nextCreate();\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n hook.memoizedState = [prevState, deps];\n return prevState;\n }\n function mountDeferredValue(value, initialValue) {\n var hook = mountWorkInProgressHook();\n return mountDeferredValueImpl(hook, value, initialValue);\n }\n function updateDeferredValue(value, initialValue) {\n var hook = updateWorkInProgressHook();\n return updateDeferredValueImpl(\n hook,\n currentHook.memoizedState,\n value,\n initialValue\n );\n }\n function rerenderDeferredValue(value, initialValue) {\n var hook = updateWorkInProgressHook();\n return null === currentHook\n ? mountDeferredValueImpl(hook, value, initialValue)\n : updateDeferredValueImpl(\n hook,\n currentHook.memoizedState,\n value,\n initialValue\n );\n }\n function mountDeferredValueImpl(hook, value, initialValue) {\n if (\n void 0 === initialValue ||\n (0 !== (renderLanes & 1073741824) &&\n 0 === (workInProgressRootRenderLanes & 261930))\n )\n return (hook.memoizedState = value);\n hook.memoizedState = initialValue;\n hook = requestDeferredLane();\n currentlyRenderingFiber.lanes |= hook;\n workInProgressRootSkippedLanes |= hook;\n return initialValue;\n }\n function updateDeferredValueImpl(hook, prevValue, value, initialValue) {\n if (objectIs(value, prevValue)) return value;\n if (null !== currentTreeHiddenStackCursor.current)\n return (\n (hook = mountDeferredValueImpl(hook, value, initialValue)),\n objectIs(hook, prevValue) || (didReceiveUpdate = !0),\n hook\n );\n if (\n 0 === (renderLanes & 42) ||\n (0 !== (renderLanes & 1073741824) &&\n 0 === (workInProgressRootRenderLanes & 261930))\n )\n return (didReceiveUpdate = !0), (hook.memoizedState = value);\n hook = requestDeferredLane();\n currentlyRenderingFiber.lanes |= hook;\n workInProgressRootSkippedLanes |= hook;\n return prevValue;\n }\n function releaseAsyncTransition() {\n ReactSharedInternals.asyncTransitions--;\n }\n function startTransition(\n fiber,\n queue,\n pendingState,\n finishedState,\n callback\n ) {\n var previousPriority = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p =\n 0 !== previousPriority && previousPriority < ContinuousEventPriority\n ? previousPriority\n : ContinuousEventPriority;\n var prevTransition = ReactSharedInternals.T,\n currentTransition = {};\n currentTransition.types =\n null !== prevTransition ? prevTransition.types : null;\n currentTransition._updatedFibers = new Set();\n ReactSharedInternals.T = currentTransition;\n dispatchOptimisticSetState(fiber, !1, queue, pendingState);\n try {\n var returnValue = callback(),\n onStartTransitionFinish = ReactSharedInternals.S;\n null !== onStartTransitionFinish &&\n onStartTransitionFinish(currentTransition, returnValue);\n if (\n null !== returnValue &&\n \"object\" === typeof returnValue &&\n \"function\" === typeof returnValue.then\n ) {\n ReactSharedInternals.asyncTransitions++;\n returnValue.then(releaseAsyncTransition, releaseAsyncTransition);\n var thenableForFinishedState = chainThenableValue(\n returnValue,\n finishedState\n );\n dispatchSetStateInternal(\n fiber,\n queue,\n thenableForFinishedState,\n requestUpdateLane(fiber)\n );\n } else\n dispatchSetStateInternal(\n fiber,\n queue,\n finishedState,\n requestUpdateLane(fiber)\n );\n } catch (error) {\n dispatchSetStateInternal(\n fiber,\n queue,\n { then: function () {}, status: \"rejected\", reason: error },\n requestUpdateLane(fiber)\n );\n } finally {\n (ReactDOMSharedInternals.p = previousPriority),\n null !== prevTransition &&\n null !== currentTransition.types &&\n (null !== prevTransition.types &&\n prevTransition.types !== currentTransition.types &&\n console.error(\n \"We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React.\"\n ),\n (prevTransition.types = currentTransition.types)),\n (ReactSharedInternals.T = prevTransition),\n null === prevTransition &&\n currentTransition._updatedFibers &&\n ((fiber = currentTransition._updatedFibers.size),\n currentTransition._updatedFibers.clear(),\n 10 < fiber &&\n console.warn(\n \"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.\"\n ));\n }\n }\n function startHostTransition(formFiber, pendingState, action, formData) {\n if (5 !== formFiber.tag)\n throw Error(\n \"Expected the form instance to be a HostComponent. This is a bug in React.\"\n );\n var queue = ensureFormComponentIsStateful(formFiber).queue;\n startHostActionTimer(formFiber);\n startTransition(\n formFiber,\n queue,\n pendingState,\n NotPendingTransition,\n null === action\n ? noop\n : function () {\n requestFormReset$1(formFiber);\n return action(formData);\n }\n );\n }\n function ensureFormComponentIsStateful(formFiber) {\n var existingStateHook = formFiber.memoizedState;\n if (null !== existingStateHook) return existingStateHook;\n existingStateHook = {\n memoizedState: NotPendingTransition,\n baseState: NotPendingTransition,\n baseQueue: null,\n queue: {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: basicStateReducer,\n lastRenderedState: NotPendingTransition\n },\n next: null\n };\n var initialResetState = {};\n existingStateHook.next = {\n memoizedState: initialResetState,\n baseState: initialResetState,\n baseQueue: null,\n queue: {\n pending: null,\n lanes: 0,\n dispatch: null,\n lastRenderedReducer: basicStateReducer,\n lastRenderedState: initialResetState\n },\n next: null\n };\n formFiber.memoizedState = existingStateHook;\n formFiber = formFiber.alternate;\n null !== formFiber && (formFiber.memoizedState = existingStateHook);\n return existingStateHook;\n }\n function requestFormReset$1(formFiber) {\n null === ReactSharedInternals.T &&\n console.error(\n \"requestFormReset was called outside a transition or action. To fix, move to an action, or wrap with startTransition.\"\n );\n var stateHook = ensureFormComponentIsStateful(formFiber);\n null === stateHook.next &&\n (stateHook = formFiber.alternate.memoizedState);\n dispatchSetStateInternal(\n formFiber,\n stateHook.next.queue,\n {},\n requestUpdateLane(formFiber)\n );\n }\n function mountTransition() {\n var stateHook = mountStateImpl(!1);\n stateHook = startTransition.bind(\n null,\n currentlyRenderingFiber,\n stateHook.queue,\n !0,\n !1\n );\n mountWorkInProgressHook().memoizedState = stateHook;\n return [!1, stateHook];\n }\n function updateTransition() {\n var booleanOrThenable = updateReducer(basicStateReducer)[0],\n start = updateWorkInProgressHook().memoizedState;\n return [\n \"boolean\" === typeof booleanOrThenable\n ? booleanOrThenable\n : useThenable(booleanOrThenable),\n start\n ];\n }\n function rerenderTransition() {\n var booleanOrThenable = rerenderReducer(basicStateReducer)[0],\n start = updateWorkInProgressHook().memoizedState;\n return [\n \"boolean\" === typeof booleanOrThenable\n ? booleanOrThenable\n : useThenable(booleanOrThenable),\n start\n ];\n }\n function useHostTransitionStatus() {\n return readContext(HostTransitionContext);\n }\n function mountId() {\n var hook = mountWorkInProgressHook(),\n identifierPrefix = workInProgressRoot.identifierPrefix;\n if (isHydrating) {\n var treeId = treeContextOverflow;\n var idWithLeadingBit = treeContextId;\n treeId =\n (\n idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))\n ).toString(32) + treeId;\n identifierPrefix = \"_\" + identifierPrefix + \"R_\" + treeId;\n treeId = localIdCounter++;\n 0 < treeId && (identifierPrefix += \"H\" + treeId.toString(32));\n identifierPrefix += \"_\";\n } else\n (treeId = globalClientIdCounter++),\n (identifierPrefix =\n \"_\" + identifierPrefix + \"r_\" + treeId.toString(32) + \"_\");\n return (hook.memoizedState = identifierPrefix);\n }\n function mountRefresh() {\n return (mountWorkInProgressHook().memoizedState = refreshCache.bind(\n null,\n currentlyRenderingFiber\n ));\n }\n function refreshCache(fiber, seedKey) {\n for (var provider = fiber.return; null !== provider; ) {\n switch (provider.tag) {\n case 24:\n case 3:\n var lane = requestUpdateLane(provider),\n refreshUpdate = createUpdate(lane),\n root = enqueueUpdate(provider, refreshUpdate, lane);\n null !== root &&\n (startUpdateTimerByLane(lane, \"refresh()\", fiber),\n scheduleUpdateOnFiber(root, provider, lane),\n entangleTransitions(root, provider, lane));\n fiber = createCache();\n null !== seedKey &&\n void 0 !== seedKey &&\n null !== root &&\n console.error(\n \"The seed argument is not enabled outside experimental channels.\"\n );\n refreshUpdate.payload = { cache: fiber };\n return;\n }\n provider = provider.return;\n }\n }\n function dispatchReducerAction(fiber, queue, action) {\n var args = arguments;\n \"function\" === typeof args[3] &&\n console.error(\n \"State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().\"\n );\n args = requestUpdateLane(fiber);\n var update = {\n lane: args,\n revertLane: 0,\n gesture: null,\n action: action,\n hasEagerState: !1,\n eagerState: null,\n next: null\n };\n isRenderPhaseUpdate(fiber)\n ? enqueueRenderPhaseUpdate(queue, update)\n : ((update = enqueueConcurrentHookUpdate(fiber, queue, update, args)),\n null !== update &&\n (startUpdateTimerByLane(args, \"dispatch()\", fiber),\n scheduleUpdateOnFiber(update, fiber, args),\n entangleTransitionUpdate(update, queue, args)));\n }\n function dispatchSetState(fiber, queue, action) {\n var args = arguments;\n \"function\" === typeof args[3] &&\n console.error(\n \"State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().\"\n );\n args = requestUpdateLane(fiber);\n dispatchSetStateInternal(fiber, queue, action, args) &&\n startUpdateTimerByLane(args, \"setState()\", fiber);\n }\n function dispatchSetStateInternal(fiber, queue, action, lane) {\n var update = {\n lane: lane,\n revertLane: 0,\n gesture: null,\n action: action,\n hasEagerState: !1,\n eagerState: null,\n next: null\n };\n if (isRenderPhaseUpdate(fiber)) enqueueRenderPhaseUpdate(queue, update);\n else {\n var alternate = fiber.alternate;\n if (\n 0 === fiber.lanes &&\n (null === alternate || 0 === alternate.lanes) &&\n ((alternate = queue.lastRenderedReducer), null !== alternate)\n ) {\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n var currentState = queue.lastRenderedState,\n eagerState = alternate(currentState, action);\n update.hasEagerState = !0;\n update.eagerState = eagerState;\n if (objectIs(eagerState, currentState))\n return (\n enqueueUpdate$1(fiber, queue, update, 0),\n null === workInProgressRoot &&\n finishQueueingConcurrentUpdates(),\n !1\n );\n } catch (error) {\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n }\n action = enqueueConcurrentHookUpdate(fiber, queue, update, lane);\n if (null !== action)\n return (\n scheduleUpdateOnFiber(action, fiber, lane),\n entangleTransitionUpdate(action, queue, lane),\n !0\n );\n }\n return !1;\n }\n function dispatchOptimisticSetState(\n fiber,\n throwIfDuringRender,\n queue,\n action\n ) {\n null === ReactSharedInternals.T &&\n 0 === currentEntangledLane &&\n console.error(\n \"An optimistic state update occurred outside a transition or action. To fix, move the update to an action, or wrap with startTransition.\"\n );\n action = {\n lane: 2,\n revertLane: requestTransitionLane(),\n gesture: null,\n action: action,\n hasEagerState: !1,\n eagerState: null,\n next: null\n };\n if (isRenderPhaseUpdate(fiber)) {\n if (throwIfDuringRender)\n throw Error(\"Cannot update optimistic state while rendering.\");\n console.error(\"Cannot call startTransition while rendering.\");\n } else\n (throwIfDuringRender = enqueueConcurrentHookUpdate(\n fiber,\n queue,\n action,\n 2\n )),\n null !== throwIfDuringRender &&\n (startUpdateTimerByLane(2, \"setOptimistic()\", fiber),\n scheduleUpdateOnFiber(throwIfDuringRender, fiber, 2));\n }\n function isRenderPhaseUpdate(fiber) {\n var alternate = fiber.alternate;\n return (\n fiber === currentlyRenderingFiber ||\n (null !== alternate && alternate === currentlyRenderingFiber)\n );\n }\n function enqueueRenderPhaseUpdate(queue, update) {\n didScheduleRenderPhaseUpdateDuringThisPass =\n didScheduleRenderPhaseUpdate = !0;\n var pending = queue.pending;\n null === pending\n ? (update.next = update)\n : ((update.next = pending.next), (pending.next = update));\n queue.pending = update;\n }\n function entangleTransitionUpdate(root, queue, lane) {\n if (0 !== (lane & 4194048)) {\n var queueLanes = queue.lanes;\n queueLanes &= root.pendingLanes;\n lane |= queueLanes;\n queue.lanes = lane;\n markRootEntangled(root, lane);\n }\n }\n function warnOnInvalidCallback(callback) {\n if (null !== callback && \"function\" !== typeof callback) {\n var key = String(callback);\n didWarnOnInvalidCallback.has(key) ||\n (didWarnOnInvalidCallback.add(key),\n console.error(\n \"Expected the last optional `callback` argument to be a function. Instead received: %s.\",\n callback\n ));\n }\n }\n function applyDerivedStateFromProps(\n workInProgress,\n ctor,\n getDerivedStateFromProps,\n nextProps\n ) {\n var prevState = workInProgress.memoizedState,\n partialState = getDerivedStateFromProps(nextProps, prevState);\n if (workInProgress.mode & StrictLegacyMode) {\n setIsStrictModeForDevtools(!0);\n try {\n partialState = getDerivedStateFromProps(nextProps, prevState);\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n void 0 === partialState &&\n ((ctor = getComponentNameFromType(ctor) || \"Component\"),\n didWarnAboutUndefinedDerivedState.has(ctor) ||\n (didWarnAboutUndefinedDerivedState.add(ctor),\n console.error(\n \"%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.\",\n ctor\n )));\n prevState =\n null === partialState || void 0 === partialState\n ? prevState\n : assign({}, prevState, partialState);\n workInProgress.memoizedState = prevState;\n 0 === workInProgress.lanes &&\n (workInProgress.updateQueue.baseState = prevState);\n }\n function checkShouldComponentUpdate(\n workInProgress,\n ctor,\n oldProps,\n newProps,\n oldState,\n newState,\n nextContext\n ) {\n var instance = workInProgress.stateNode;\n if (\"function\" === typeof instance.shouldComponentUpdate) {\n oldProps = instance.shouldComponentUpdate(\n newProps,\n newState,\n nextContext\n );\n if (workInProgress.mode & StrictLegacyMode) {\n setIsStrictModeForDevtools(!0);\n try {\n oldProps = instance.shouldComponentUpdate(\n newProps,\n newState,\n nextContext\n );\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n void 0 === oldProps &&\n console.error(\n \"%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.\",\n getComponentNameFromType(ctor) || \"Component\"\n );\n return oldProps;\n }\n return ctor.prototype && ctor.prototype.isPureReactComponent\n ? !shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState)\n : !0;\n }\n function callComponentWillReceiveProps(\n workInProgress,\n instance,\n newProps,\n nextContext\n ) {\n var oldState = instance.state;\n \"function\" === typeof instance.componentWillReceiveProps &&\n instance.componentWillReceiveProps(newProps, nextContext);\n \"function\" === typeof instance.UNSAFE_componentWillReceiveProps &&\n instance.UNSAFE_componentWillReceiveProps(newProps, nextContext);\n instance.state !== oldState &&\n ((workInProgress =\n getComponentNameFromFiber(workInProgress) || \"Component\"),\n didWarnAboutStateAssignmentForComponent.has(workInProgress) ||\n (didWarnAboutStateAssignmentForComponent.add(workInProgress),\n console.error(\n \"%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.\",\n workInProgress\n )),\n classComponentUpdater.enqueueReplaceState(\n instance,\n instance.state,\n null\n ));\n }\n function resolveClassComponentProps(Component, baseProps) {\n var newProps = baseProps;\n if (\"ref\" in baseProps) {\n newProps = {};\n for (var propName in baseProps)\n \"ref\" !== propName && (newProps[propName] = baseProps[propName]);\n }\n if ((Component = Component.defaultProps)) {\n newProps === baseProps && (newProps = assign({}, newProps));\n for (var _propName in Component)\n void 0 === newProps[_propName] &&\n (newProps[_propName] = Component[_propName]);\n }\n return newProps;\n }\n function defaultOnUncaughtError(error) {\n reportGlobalError(error);\n console.warn(\n \"%s\\n\\n%s\\n\",\n componentName\n ? \"An error occurred in the <\" + componentName + \"> component.\"\n : \"An error occurred in one of your React components.\",\n \"Consider adding an error boundary to your tree to customize error handling behavior.\\nVisit https://react.dev/link/error-boundaries to learn more about error boundaries.\"\n );\n }\n function defaultOnCaughtError(error) {\n var componentNameMessage = componentName\n ? \"The above error occurred in the <\" + componentName + \"> component.\"\n : \"The above error occurred in one of your React components.\",\n recreateMessage =\n \"React will try to recreate this component tree from scratch using the error boundary you provided, \" +\n ((errorBoundaryName || \"Anonymous\") + \".\");\n if (\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.environmentName\n ) {\n var JSCompiler_inline_result = error.environmentName;\n error = [\n \"%o\\n\\n%s\\n\\n%s\\n\",\n error,\n componentNameMessage,\n recreateMessage\n ].slice(0);\n \"string\" === typeof error[0]\n ? error.splice(\n 0,\n 1,\n badgeFormat + \" \" + error[0],\n badgeStyle,\n pad + JSCompiler_inline_result + pad,\n resetStyle\n )\n : error.splice(\n 0,\n 0,\n badgeFormat,\n badgeStyle,\n pad + JSCompiler_inline_result + pad,\n resetStyle\n );\n error.unshift(console);\n JSCompiler_inline_result = bind.apply(console.error, error);\n JSCompiler_inline_result();\n } else\n console.error(\n \"%o\\n\\n%s\\n\\n%s\\n\",\n error,\n componentNameMessage,\n recreateMessage\n );\n }\n function defaultOnRecoverableError(error) {\n reportGlobalError(error);\n }\n function logUncaughtError(root, errorInfo) {\n try {\n componentName = errorInfo.source\n ? getComponentNameFromFiber(errorInfo.source)\n : null;\n errorBoundaryName = null;\n var error = errorInfo.value;\n if (null !== ReactSharedInternals.actQueue)\n ReactSharedInternals.thrownErrors.push(error);\n else {\n var onUncaughtError = root.onUncaughtError;\n onUncaughtError(error, { componentStack: errorInfo.stack });\n }\n } catch (e$5) {\n setTimeout(function () {\n throw e$5;\n });\n }\n }\n function logCaughtError(root, boundary, errorInfo) {\n try {\n componentName = errorInfo.source\n ? getComponentNameFromFiber(errorInfo.source)\n : null;\n errorBoundaryName = getComponentNameFromFiber(boundary);\n var onCaughtError = root.onCaughtError;\n onCaughtError(errorInfo.value, {\n componentStack: errorInfo.stack,\n errorBoundary: 1 === boundary.tag ? boundary.stateNode : null\n });\n } catch (e$6) {\n setTimeout(function () {\n throw e$6;\n });\n }\n }\n function createRootErrorUpdate(root, errorInfo, lane) {\n lane = createUpdate(lane);\n lane.tag = CaptureUpdate;\n lane.payload = { element: null };\n lane.callback = function () {\n runWithFiberInDEV(errorInfo.source, logUncaughtError, root, errorInfo);\n };\n return lane;\n }\n function createClassErrorUpdate(lane) {\n lane = createUpdate(lane);\n lane.tag = CaptureUpdate;\n return lane;\n }\n function initializeClassErrorUpdate(update, root, fiber, errorInfo) {\n var getDerivedStateFromError = fiber.type.getDerivedStateFromError;\n if (\"function\" === typeof getDerivedStateFromError) {\n var error = errorInfo.value;\n update.payload = function () {\n return getDerivedStateFromError(error);\n };\n update.callback = function () {\n markFailedErrorBoundaryForHotReloading(fiber);\n runWithFiberInDEV(\n errorInfo.source,\n logCaughtError,\n root,\n fiber,\n errorInfo\n );\n };\n }\n var inst = fiber.stateNode;\n null !== inst &&\n \"function\" === typeof inst.componentDidCatch &&\n (update.callback = function () {\n markFailedErrorBoundaryForHotReloading(fiber);\n runWithFiberInDEV(\n errorInfo.source,\n logCaughtError,\n root,\n fiber,\n errorInfo\n );\n \"function\" !== typeof getDerivedStateFromError &&\n (null === legacyErrorBoundariesThatAlreadyFailed\n ? (legacyErrorBoundariesThatAlreadyFailed = new Set([this]))\n : legacyErrorBoundariesThatAlreadyFailed.add(this));\n callComponentDidCatchInDEV(this, errorInfo);\n \"function\" === typeof getDerivedStateFromError ||\n (0 === (fiber.lanes & 2) &&\n console.error(\n \"%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.\",\n getComponentNameFromFiber(fiber) || \"Unknown\"\n ));\n });\n }\n function throwException(\n root,\n returnFiber,\n sourceFiber,\n value,\n rootRenderLanes\n ) {\n sourceFiber.flags |= 32768;\n isDevToolsPresent && restorePendingUpdaters(root, rootRenderLanes);\n if (\n null !== value &&\n \"object\" === typeof value &&\n \"function\" === typeof value.then\n ) {\n returnFiber = sourceFiber.alternate;\n null !== returnFiber &&\n propagateParentContextChanges(\n returnFiber,\n sourceFiber,\n rootRenderLanes,\n !0\n );\n isHydrating && (didSuspendOrErrorDEV = !0);\n sourceFiber = suspenseHandlerStackCursor.current;\n if (null !== sourceFiber) {\n switch (sourceFiber.tag) {\n case 31:\n case 13:\n case 19:\n return (\n null === shellBoundary\n ? renderDidSuspendDelayIfPossible()\n : null === sourceFiber.alternate &&\n workInProgressRootExitStatus === RootInProgress &&\n (workInProgressRootExitStatus = RootSuspended),\n (sourceFiber.flags &= -257),\n (sourceFiber.flags |= 65536),\n (sourceFiber.lanes = rootRenderLanes),\n value === noopSuspenseyCommitThenable\n ? (sourceFiber.flags |= 16384)\n : ((returnFiber = sourceFiber.updateQueue),\n null === returnFiber\n ? (sourceFiber.updateQueue = new Set([value]))\n : returnFiber.add(value),\n attachPingListener(root, value, rootRenderLanes)),\n !1\n );\n case 22:\n return (\n (sourceFiber.flags |= 65536),\n value === noopSuspenseyCommitThenable\n ? (sourceFiber.flags |= 16384)\n : ((returnFiber = sourceFiber.updateQueue),\n null === returnFiber\n ? ((returnFiber = {\n transitions: null,\n markerInstances: null,\n retryQueue: new Set([value])\n }),\n (sourceFiber.updateQueue = returnFiber))\n : ((sourceFiber = returnFiber.retryQueue),\n null === sourceFiber\n ? (returnFiber.retryQueue = new Set([value]))\n : sourceFiber.add(value)),\n attachPingListener(root, value, rootRenderLanes)),\n !1\n );\n }\n throw Error(\n \"Unexpected Suspense handler tag (\" +\n sourceFiber.tag +\n \"). This is a bug in React.\"\n );\n }\n attachPingListener(root, value, rootRenderLanes);\n renderDidSuspendDelayIfPossible();\n return !1;\n }\n if (isHydrating)\n return (\n (didSuspendOrErrorDEV = !0),\n (returnFiber = suspenseHandlerStackCursor.current),\n null !== returnFiber\n ? (19 === returnFiber.tag &&\n console.error(\n \"SuspenseList should never catch while hydrating. This is a bug in React.\"\n ),\n 0 === (returnFiber.flags & 65536) && (returnFiber.flags |= 256),\n (returnFiber.flags |= 65536),\n (returnFiber.lanes = rootRenderLanes),\n value !== HydrationMismatchException &&\n queueHydrationError(\n createCapturedValueAtFiber(\n Error(\n \"There was an error while hydrating but React was able to recover by instead client rendering from the nearest Suspense boundary.\",\n { cause: value }\n ),\n sourceFiber\n )\n ))\n : (value !== HydrationMismatchException &&\n queueHydrationError(\n createCapturedValueAtFiber(\n Error(\n \"There was an error while hydrating but React was able to recover by instead client rendering the entire root.\",\n { cause: value }\n ),\n sourceFiber\n )\n ),\n (root = root.current.alternate),\n (root.flags |= 65536),\n (rootRenderLanes &= -rootRenderLanes),\n (root.lanes |= rootRenderLanes),\n (value = createCapturedValueAtFiber(value, sourceFiber)),\n (rootRenderLanes = createRootErrorUpdate(\n root.stateNode,\n value,\n rootRenderLanes\n )),\n enqueueCapturedUpdate(root, rootRenderLanes),\n workInProgressRootExitStatus !== RootSuspendedWithDelay &&\n (workInProgressRootExitStatus = RootErrored)),\n !1\n );\n var error = createCapturedValueAtFiber(\n Error(\n \"There was an error during concurrent rendering but React was able to recover by instead synchronously rendering the entire root.\",\n { cause: value }\n ),\n sourceFiber\n );\n null === workInProgressRootConcurrentErrors\n ? (workInProgressRootConcurrentErrors = [error])\n : workInProgressRootConcurrentErrors.push(error);\n workInProgressRootExitStatus !== RootSuspendedWithDelay &&\n (workInProgressRootExitStatus = RootErrored);\n if (null === returnFiber) return !0;\n value = createCapturedValueAtFiber(value, sourceFiber);\n sourceFiber = returnFiber;\n do {\n switch (sourceFiber.tag) {\n case 3:\n return (\n (sourceFiber.flags |= 65536),\n (root = rootRenderLanes & -rootRenderLanes),\n (sourceFiber.lanes |= root),\n (root = createRootErrorUpdate(\n sourceFiber.stateNode,\n value,\n root\n )),\n enqueueCapturedUpdate(sourceFiber, root),\n !1\n );\n case 1:\n returnFiber = sourceFiber.type;\n error = sourceFiber.stateNode;\n if (\n 0 === (sourceFiber.flags & 128) &&\n (\"function\" === typeof returnFiber.getDerivedStateFromError ||\n (null !== error &&\n \"function\" === typeof error.componentDidCatch &&\n (null === legacyErrorBoundariesThatAlreadyFailed ||\n !legacyErrorBoundariesThatAlreadyFailed.has(error))))\n )\n return (\n (sourceFiber.flags |= 65536),\n (rootRenderLanes &= -rootRenderLanes),\n (sourceFiber.lanes |= rootRenderLanes),\n (rootRenderLanes = createClassErrorUpdate(rootRenderLanes)),\n initializeClassErrorUpdate(\n rootRenderLanes,\n root,\n sourceFiber,\n value\n ),\n enqueueCapturedUpdate(sourceFiber, rootRenderLanes),\n !1\n );\n break;\n case 22:\n if (null !== sourceFiber.memoizedState)\n return (sourceFiber.flags |= 65536), !1;\n }\n sourceFiber = sourceFiber.return;\n } while (null !== sourceFiber);\n return !1;\n }\n function reconcileChildren(\n current,\n workInProgress,\n nextChildren,\n renderLanes\n ) {\n workInProgress.child =\n null === current\n ? mountChildFibers(workInProgress, null, nextChildren, renderLanes)\n : reconcileChildFibers(\n workInProgress,\n current.child,\n nextChildren,\n renderLanes\n );\n }\n function updateForwardRef(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n ) {\n Component = Component.render;\n var ref = workInProgress.ref;\n if (\"ref\" in nextProps) {\n var propsWithoutRef = {};\n for (var key in nextProps)\n \"ref\" !== key && (propsWithoutRef[key] = nextProps[key]);\n } else propsWithoutRef = nextProps;\n prepareToReadContext(workInProgress);\n nextProps = renderWithHooks(\n current,\n workInProgress,\n Component,\n propsWithoutRef,\n ref,\n renderLanes\n );\n key = checkDidRenderIdHook();\n if (null !== current && !didReceiveUpdate)\n return (\n bailoutHooks(current, workInProgress, renderLanes),\n bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes)\n );\n isHydrating && key && pushMaterializedTreeId(workInProgress);\n workInProgress.flags |= 1;\n reconcileChildren(current, workInProgress, nextProps, renderLanes);\n return workInProgress.child;\n }\n function updateMemoComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n ) {\n if (null === current) {\n var type = Component.type;\n if (\n \"function\" === typeof type &&\n !shouldConstruct(type) &&\n void 0 === type.defaultProps &&\n null === Component.compare\n )\n return (\n (Component = resolveFunctionForHotReloading(type)),\n (workInProgress.tag = 15),\n (workInProgress.type = Component),\n validateFunctionComponentInDev(workInProgress, type),\n updateSimpleMemoComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n )\n );\n current = createFiberFromTypeAndProps(\n Component.type,\n null,\n nextProps,\n workInProgress,\n workInProgress.mode,\n renderLanes\n );\n current.ref = workInProgress.ref;\n current.return = workInProgress;\n return (workInProgress.child = current);\n }\n type = current.child;\n if (!checkScheduledUpdateOrContext(current, renderLanes)) {\n var prevProps = type.memoizedProps;\n Component = Component.compare;\n Component = null !== Component ? Component : shallowEqual;\n if (\n Component(prevProps, nextProps) &&\n current.ref === workInProgress.ref\n )\n return bailoutOnAlreadyFinishedWork(\n current,\n workInProgress,\n renderLanes\n );\n }\n workInProgress.flags |= 1;\n current = createWorkInProgress(type, nextProps);\n current.ref = workInProgress.ref;\n current.return = workInProgress;\n return (workInProgress.child = current);\n }\n function updateSimpleMemoComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n ) {\n if (null !== current) {\n var prevProps = current.memoizedProps;\n if (\n shallowEqual(prevProps, nextProps) &&\n current.ref === workInProgress.ref &&\n workInProgress.type === current.type\n )\n if (\n ((didReceiveUpdate = !1),\n (workInProgress.pendingProps = nextProps = prevProps),\n checkScheduledUpdateOrContext(current, renderLanes))\n )\n 0 !== (current.flags & 131072) && (didReceiveUpdate = !0);\n else\n return (\n (workInProgress.lanes = current.lanes),\n bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes)\n );\n }\n return updateFunctionComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n );\n }\n function updateOffscreenComponent(\n current,\n workInProgress,\n renderLanes,\n nextProps\n ) {\n var nextChildren = nextProps.children,\n prevState = null !== current ? current.memoizedState : null;\n null === current &&\n null === workInProgress.stateNode &&\n (workInProgress.stateNode = {\n _visibility: OffscreenVisible,\n _pendingMarkers: null,\n _retryCache: null,\n _transitions: null\n });\n if (\"hidden\" === nextProps.mode) {\n if (0 !== (workInProgress.flags & 128)) {\n prevState =\n null !== prevState\n ? prevState.baseLanes | renderLanes\n : renderLanes;\n if (null !== current) {\n nextProps = workInProgress.child = current.child;\n for (nextChildren = 0; null !== nextProps; )\n (nextChildren =\n nextChildren | nextProps.lanes | nextProps.childLanes),\n (nextProps = nextProps.sibling);\n nextProps = nextChildren & ~prevState;\n } else (nextProps = 0), (workInProgress.child = null);\n return deferHiddenOffscreenComponent(\n current,\n workInProgress,\n prevState,\n renderLanes,\n nextProps\n );\n }\n if (0 !== (renderLanes & 536870912))\n (workInProgress.memoizedState = { baseLanes: 0, cachePool: null }),\n null !== current &&\n pushTransition(\n workInProgress,\n null !== prevState ? prevState.cachePool : null\n ),\n null !== prevState\n ? pushHiddenContext(workInProgress, prevState)\n : reuseHiddenContextOnStack(workInProgress),\n pushOffscreenSuspenseHandler(workInProgress);\n else\n return (\n (nextProps = workInProgress.lanes = 536870912),\n deferHiddenOffscreenComponent(\n current,\n workInProgress,\n null !== prevState\n ? prevState.baseLanes | renderLanes\n : renderLanes,\n renderLanes,\n nextProps\n )\n );\n } else\n null !== prevState\n ? (pushTransition(workInProgress, prevState.cachePool),\n pushHiddenContext(workInProgress, prevState),\n reuseSuspenseHandlerOnStack(workInProgress),\n (workInProgress.memoizedState = null))\n : (null !== current && pushTransition(workInProgress, null),\n reuseHiddenContextOnStack(workInProgress),\n reuseSuspenseHandlerOnStack(workInProgress));\n reconcileChildren(current, workInProgress, nextChildren, renderLanes);\n return workInProgress.child;\n }\n function bailoutOffscreenComponent(current, workInProgress) {\n (null !== current && 22 === current.tag) ||\n null !== workInProgress.stateNode ||\n (workInProgress.stateNode = {\n _visibility: OffscreenVisible,\n _pendingMarkers: null,\n _retryCache: null,\n _transitions: null\n });\n return workInProgress.sibling;\n }\n function deferHiddenOffscreenComponent(\n current,\n workInProgress,\n nextBaseLanes,\n renderLanes,\n remainingChildLanes\n ) {\n var JSCompiler_inline_result = peekCacheFromPool();\n JSCompiler_inline_result =\n null === JSCompiler_inline_result\n ? null\n : {\n parent: CacheContext._currentValue,\n pool: JSCompiler_inline_result\n };\n workInProgress.memoizedState = {\n baseLanes: nextBaseLanes,\n cachePool: JSCompiler_inline_result\n };\n null !== current && pushTransition(workInProgress, null);\n reuseHiddenContextOnStack(workInProgress);\n pushOffscreenSuspenseHandler(workInProgress);\n null !== current &&\n propagateParentContextChanges(current, workInProgress, renderLanes, !0);\n workInProgress.childLanes = remainingChildLanes;\n return null;\n }\n function mountActivityChildren(workInProgress, nextProps) {\n var hiddenProp = nextProps.hidden;\n void 0 !== hiddenProp &&\n console.error(\n '<Activity> doesn\\'t accept a hidden prop. Use mode=\"hidden\" instead.\\n- <Activity %s>\\n+ <Activity %s>',\n !0 === hiddenProp\n ? \"hidden\"\n : !1 === hiddenProp\n ? \"hidden={false}\"\n : \"hidden={...}\",\n hiddenProp ? 'mode=\"hidden\"' : 'mode=\"visible\"'\n );\n nextProps = mountWorkInProgressOffscreenFiber(\n { mode: nextProps.mode, children: nextProps.children },\n workInProgress.mode\n );\n nextProps.ref = workInProgress.ref;\n workInProgress.child = nextProps;\n nextProps.return = workInProgress;\n return nextProps;\n }\n function retryActivityComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n ) {\n reconcileChildFibers(workInProgress, current.child, null, renderLanes);\n current = mountActivityChildren(\n workInProgress,\n workInProgress.pendingProps\n );\n current.flags |= 2;\n popSuspenseHandler(workInProgress);\n workInProgress.memoizedState = null;\n return current;\n }\n function updateActivityComponent(current, workInProgress, renderLanes) {\n var nextProps = workInProgress.pendingProps,\n didSuspend = 0 !== (workInProgress.flags & 128);\n workInProgress.flags &= -129;\n if (null === current) {\n if (isHydrating) {\n if (\"hidden\" === nextProps.mode)\n return (\n (current = mountActivityChildren(workInProgress, nextProps)),\n (workInProgress.lanes = 536870912),\n bailoutOffscreenComponent(null, current)\n );\n pushDehydratedActivitySuspenseHandler(workInProgress);\n (current = nextHydratableInstance)\n ? ((renderLanes = canHydrateHydrationBoundary(\n current,\n rootOrSingletonContext\n )),\n (renderLanes =\n null !== renderLanes && renderLanes.data === ACTIVITY_START_DATA\n ? renderLanes\n : null),\n null !== renderLanes &&\n ((nextProps = {\n dehydrated: renderLanes,\n treeContext: getSuspendedTreeContext(),\n retryLane: 536870912,\n hydrationErrors: null\n }),\n (workInProgress.memoizedState = nextProps),\n (nextProps = createFiberFromDehydratedFragment(renderLanes)),\n (nextProps.return = workInProgress),\n (workInProgress.child = nextProps),\n (hydrationParentFiber = workInProgress),\n (nextHydratableInstance = null)))\n : (renderLanes = null);\n if (null === renderLanes)\n throw (\n (warnNonHydratedInstance(workInProgress, current),\n throwOnHydrationMismatch(workInProgress))\n );\n workInProgress.lanes = 536870912;\n return null;\n }\n return mountActivityChildren(workInProgress, nextProps);\n }\n var prevState = current.memoizedState;\n if (null !== prevState) {\n var activityInstance = prevState.dehydrated;\n pushDehydratedActivitySuspenseHandler(workInProgress);\n if (didSuspend)\n if (workInProgress.flags & 256)\n (workInProgress.flags &= -257),\n (workInProgress = retryActivityComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n ));\n else if (null !== workInProgress.memoizedState)\n (workInProgress.child = current.child),\n (workInProgress.flags |= 128),\n (workInProgress = null);\n else\n throw Error(\n \"Client rendering an Activity suspended it again. This is a bug in React.\"\n );\n else if (\n (warnIfHydrating(),\n 0 !== (renderLanes & 536870912) &&\n markRenderDerivedCause(workInProgress),\n didReceiveUpdate ||\n propagateParentContextChanges(\n current,\n workInProgress,\n renderLanes,\n !1\n ),\n (didSuspend = 0 !== (renderLanes & current.childLanes)),\n didReceiveUpdate || didSuspend)\n ) {\n nextProps = workInProgressRoot;\n if (\n null !== nextProps &&\n ((activityInstance = getBumpedLaneForHydration(\n nextProps,\n renderLanes\n )),\n 0 !== activityInstance && activityInstance !== prevState.retryLane)\n )\n throw (\n ((prevState.retryLane = activityInstance),\n enqueueConcurrentRenderForLane(current, activityInstance),\n scheduleUpdateOnFiber(nextProps, current, activityInstance),\n SelectiveHydrationException)\n );\n renderDidSuspendDelayIfPossible();\n workInProgress = retryActivityComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n );\n } else\n (current = prevState.treeContext),\n (nextHydratableInstance = getNextHydratable(\n activityInstance.nextSibling\n )),\n (hydrationParentFiber = workInProgress),\n (isHydrating = !0),\n (hydrationErrors = null),\n (didSuspendOrErrorDEV = !1),\n (hydrationDiffRootDEV = null),\n (rootOrSingletonContext = !1),\n null !== current &&\n restoreSuspendedTreeContext(workInProgress, current),\n (workInProgress = mountActivityChildren(workInProgress, nextProps)),\n (workInProgress.flags |= 4096);\n return workInProgress;\n }\n prevState = current.child;\n nextProps = { mode: nextProps.mode, children: nextProps.children };\n 0 !== (renderLanes & 536870912) &&\n 0 !== (renderLanes & current.lanes) &&\n markRenderDerivedCause(workInProgress);\n current = createWorkInProgress(prevState, nextProps);\n current.ref = workInProgress.ref;\n workInProgress.child = current;\n current.return = workInProgress;\n return current;\n }\n function markRef(current, workInProgress) {\n var ref = workInProgress.ref;\n if (null === ref)\n null !== current &&\n null !== current.ref &&\n (workInProgress.flags |= 4194816);\n else {\n if (\"function\" !== typeof ref && \"object\" !== typeof ref)\n throw Error(\n \"Expected ref to be a function, an object returned by React.createRef(), or undefined/null.\"\n );\n if (null === current || current.ref !== ref)\n workInProgress.flags |= 4194816;\n }\n }\n function updateFunctionComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n ) {\n if (\n Component.prototype &&\n \"function\" === typeof Component.prototype.render\n ) {\n var componentName = getComponentNameFromType(Component) || \"Unknown\";\n didWarnAboutBadClass[componentName] ||\n (console.error(\n \"The <%s /> component appears to have a render method, but doesn't extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.\",\n componentName,\n componentName\n ),\n (didWarnAboutBadClass[componentName] = !0));\n }\n workInProgress.mode & StrictLegacyMode &&\n ReactStrictModeWarnings.recordLegacyContextWarning(\n workInProgress,\n null\n );\n null === current &&\n (validateFunctionComponentInDev(workInProgress, workInProgress.type),\n Component.contextTypes &&\n ((componentName = getComponentNameFromType(Component) || \"Unknown\"),\n didWarnAboutContextTypes[componentName] ||\n ((didWarnAboutContextTypes[componentName] = !0),\n console.error(\n \"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with React.useContext() instead. (https://react.dev/link/legacy-context)\",\n componentName\n ))));\n prepareToReadContext(workInProgress);\n Component = renderWithHooks(\n current,\n workInProgress,\n Component,\n nextProps,\n void 0,\n renderLanes\n );\n nextProps = checkDidRenderIdHook();\n if (null !== current && !didReceiveUpdate)\n return (\n bailoutHooks(current, workInProgress, renderLanes),\n bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes)\n );\n isHydrating && nextProps && pushMaterializedTreeId(workInProgress);\n workInProgress.flags |= 1;\n reconcileChildren(current, workInProgress, Component, renderLanes);\n return workInProgress.child;\n }\n function replayFunctionComponent(\n current,\n workInProgress,\n nextProps,\n Component,\n secondArg,\n renderLanes\n ) {\n prepareToReadContext(workInProgress);\n hookTypesUpdateIndexDev = -1;\n ignorePreviousDependencies =\n null !== current && current.type !== workInProgress.type;\n workInProgress.updateQueue = null;\n nextProps = renderWithHooksAgain(\n workInProgress,\n Component,\n nextProps,\n secondArg\n );\n finishRenderingHooks(current, workInProgress);\n Component = checkDidRenderIdHook();\n if (null !== current && !didReceiveUpdate)\n return (\n bailoutHooks(current, workInProgress, renderLanes),\n bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes)\n );\n isHydrating && Component && pushMaterializedTreeId(workInProgress);\n workInProgress.flags |= 1;\n reconcileChildren(current, workInProgress, nextProps, renderLanes);\n return workInProgress.child;\n }\n function updateClassComponent(\n current,\n workInProgress,\n Component,\n nextProps,\n renderLanes\n ) {\n switch (shouldErrorImpl(workInProgress)) {\n case !1:\n var _instance = workInProgress.stateNode,\n state = new workInProgress.type(\n workInProgress.memoizedProps,\n _instance.context\n ).state;\n _instance.updater.enqueueSetState(_instance, state, null);\n break;\n case !0:\n workInProgress.flags |= 128;\n workInProgress.flags |= 65536;\n _instance = Error(\"Simulated error coming from DevTools\");\n var lane = renderLanes & -renderLanes;\n workInProgress.lanes |= lane;\n state = workInProgressRoot;\n if (null === state)\n throw Error(\n \"Expected a work-in-progress root. This is a bug in React. Please file an issue.\"\n );\n lane = createClassErrorUpdate(lane);\n initializeClassErrorUpdate(\n lane,\n state,\n workInProgress,\n createCapturedValueAtFiber(_instance, workInProgress)\n );\n enqueueCapturedUpdate(workInProgress, lane);\n }\n prepareToReadContext(workInProgress);\n if (null === workInProgress.stateNode) {\n state = emptyContextObject;\n _instance = Component.contextType;\n \"contextType\" in Component &&\n null !== _instance &&\n (void 0 === _instance || _instance.$$typeof !== REACT_CONTEXT_TYPE) &&\n !didWarnAboutInvalidateContextType.has(Component) &&\n (didWarnAboutInvalidateContextType.add(Component),\n (lane =\n void 0 === _instance\n ? \" However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.\"\n : \"object\" !== typeof _instance\n ? \" However, it is set to a \" + typeof _instance + \".\"\n : _instance.$$typeof === REACT_CONSUMER_TYPE\n ? \" Did you accidentally pass the Context.Consumer instead?\"\n : \" However, it is set to an object with keys {\" +\n Object.keys(_instance).join(\", \") +\n \"}.\"),\n console.error(\n \"%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s\",\n getComponentNameFromType(Component) || \"Component\",\n lane\n ));\n \"object\" === typeof _instance &&\n null !== _instance &&\n (state = readContext(_instance));\n _instance = new Component(nextProps, state);\n if (workInProgress.mode & StrictLegacyMode) {\n setIsStrictModeForDevtools(!0);\n try {\n _instance = new Component(nextProps, state);\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n state = workInProgress.memoizedState =\n null !== _instance.state && void 0 !== _instance.state\n ? _instance.state\n : null;\n _instance.updater = classComponentUpdater;\n workInProgress.stateNode = _instance;\n _instance._reactInternals = workInProgress;\n _instance._reactInternalInstance = fakeInternalInstance;\n \"function\" === typeof Component.getDerivedStateFromProps &&\n null === state &&\n ((state = getComponentNameFromType(Component) || \"Component\"),\n didWarnAboutUninitializedState.has(state) ||\n (didWarnAboutUninitializedState.add(state),\n console.error(\n \"`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.\",\n state,\n null === _instance.state ? \"null\" : \"undefined\",\n state\n )));\n if (\n \"function\" === typeof Component.getDerivedStateFromProps ||\n \"function\" === typeof _instance.getSnapshotBeforeUpdate\n ) {\n var foundWillUpdateName = (lane = state = null);\n \"function\" === typeof _instance.componentWillMount &&\n !0 !== _instance.componentWillMount.__suppressDeprecationWarning\n ? (state = \"componentWillMount\")\n : \"function\" === typeof _instance.UNSAFE_componentWillMount &&\n (state = \"UNSAFE_componentWillMount\");\n \"function\" === typeof _instance.componentWillReceiveProps &&\n !0 !==\n _instance.componentWillReceiveProps.__suppressDeprecationWarning\n ? (lane = \"componentWillReceiveProps\")\n : \"function\" ===\n typeof _instance.UNSAFE_componentWillReceiveProps &&\n (lane = \"UNSAFE_componentWillReceiveProps\");\n \"function\" === typeof _instance.componentWillUpdate &&\n !0 !== _instance.componentWillUpdate.__suppressDeprecationWarning\n ? (foundWillUpdateName = \"componentWillUpdate\")\n : \"function\" === typeof _instance.UNSAFE_componentWillUpdate &&\n (foundWillUpdateName = \"UNSAFE_componentWillUpdate\");\n if (null !== state || null !== lane || null !== foundWillUpdateName) {\n _instance = getComponentNameFromType(Component) || \"Component\";\n var newApiName =\n \"function\" === typeof Component.getDerivedStateFromProps\n ? \"getDerivedStateFromProps()\"\n : \"getSnapshotBeforeUpdate()\";\n didWarnAboutLegacyLifecyclesAndDerivedState.has(_instance) ||\n (didWarnAboutLegacyLifecyclesAndDerivedState.add(_instance),\n console.error(\n \"Unsafe legacy lifecycles will not be called for components using new component APIs.\\n\\n%s uses %s but also contains the following legacy lifecycles:%s%s%s\\n\\nThe above lifecycles should be removed. Learn more about this warning here:\\nhttps://react.dev/link/unsafe-component-lifecycles\",\n _instance,\n newApiName,\n null !== state ? \"\\n \" + state : \"\",\n null !== lane ? \"\\n \" + lane : \"\",\n null !== foundWillUpdateName ? \"\\n \" + foundWillUpdateName : \"\"\n ));\n }\n }\n _instance = workInProgress.stateNode;\n state = getComponentNameFromType(Component) || \"Component\";\n _instance.render ||\n (Component.prototype &&\n \"function\" === typeof Component.prototype.render\n ? console.error(\n \"No `render` method found on the %s instance: did you accidentally return an object from the constructor?\",\n state\n )\n : console.error(\n \"No `render` method found on the %s instance: you may have forgotten to define `render`.\",\n state\n ));\n !_instance.getInitialState ||\n _instance.getInitialState.isReactClassApproved ||\n _instance.state ||\n console.error(\n \"getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?\",\n state\n );\n _instance.getDefaultProps &&\n !_instance.getDefaultProps.isReactClassApproved &&\n console.error(\n \"getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.\",\n state\n );\n _instance.contextType &&\n console.error(\n \"contextType was defined as an instance property on %s. Use a static property to define contextType instead.\",\n state\n );\n Component.childContextTypes &&\n !didWarnAboutChildContextTypes.has(Component) &&\n (didWarnAboutChildContextTypes.add(Component),\n console.error(\n \"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead. (https://react.dev/link/legacy-context)\",\n state\n ));\n Component.contextTypes &&\n !didWarnAboutContextTypes$1.has(Component) &&\n (didWarnAboutContextTypes$1.add(Component),\n console.error(\n \"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead. (https://react.dev/link/legacy-context)\",\n state\n ));\n \"function\" === typeof _instance.componentShouldUpdate &&\n console.error(\n \"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.\",\n state\n );\n Component.prototype &&\n Component.prototype.isPureReactComponent &&\n \"undefined\" !== typeof _instance.shouldComponentUpdate &&\n console.error(\n \"%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.\",\n getComponentNameFromType(Component) || \"A pure component\"\n );\n \"function\" === typeof _instance.componentDidUnmount &&\n console.error(\n \"%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?\",\n state\n );\n \"function\" === typeof _instance.componentDidReceiveProps &&\n console.error(\n \"%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().\",\n state\n );\n \"function\" === typeof _instance.componentWillRecieveProps &&\n console.error(\n \"%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?\",\n state\n );\n \"function\" === typeof _instance.UNSAFE_componentWillRecieveProps &&\n console.error(\n \"%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?\",\n state\n );\n lane = _instance.props !== nextProps;\n void 0 !== _instance.props &&\n lane &&\n console.error(\n \"When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed.\",\n state\n );\n _instance.defaultProps &&\n console.error(\n \"Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.\",\n state,\n state\n );\n \"function\" !== typeof _instance.getSnapshotBeforeUpdate ||\n \"function\" === typeof _instance.componentDidUpdate ||\n didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate.has(Component) ||\n (didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate.add(Component),\n console.error(\n \"%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.\",\n getComponentNameFromType(Component)\n ));\n \"function\" === typeof _instance.getDerivedStateFromProps &&\n console.error(\n \"%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.\",\n state\n );\n \"function\" === typeof _instance.getDerivedStateFromError &&\n console.error(\n \"%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.\",\n state\n );\n \"function\" === typeof Component.getSnapshotBeforeUpdate &&\n console.error(\n \"%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.\",\n state\n );\n (lane = _instance.state) &&\n (\"object\" !== typeof lane || isArrayImpl(lane)) &&\n console.error(\"%s.state: must be set to an object or null\", state);\n \"function\" === typeof _instance.getChildContext &&\n \"object\" !== typeof Component.childContextTypes &&\n console.error(\n \"%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().\",\n state\n );\n _instance = workInProgress.stateNode;\n _instance.props = nextProps;\n _instance.state = workInProgress.memoizedState;\n _instance.refs = {};\n initializeUpdateQueue(workInProgress);\n state = Component.contextType;\n _instance.context =\n \"object\" === typeof state && null !== state\n ? readContext(state)\n : emptyContextObject;\n _instance.state === nextProps &&\n ((state = getComponentNameFromType(Component) || \"Component\"),\n didWarnAboutDirectlyAssigningPropsToState.has(state) ||\n (didWarnAboutDirectlyAssigningPropsToState.add(state),\n console.error(\n \"%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly.\",\n state\n )));\n workInProgress.mode & StrictLegacyMode &&\n ReactStrictModeWarnings.recordLegacyContextWarning(\n workInProgress,\n _instance\n );\n ReactStrictModeWarnings.recordUnsafeLifecycleWarnings(\n workInProgress,\n _instance\n );\n _instance.state = workInProgress.memoizedState;\n state = Component.getDerivedStateFromProps;\n \"function\" === typeof state &&\n (applyDerivedStateFromProps(\n workInProgress,\n Component,\n state,\n nextProps\n ),\n (_instance.state = workInProgress.memoizedState));\n \"function\" === typeof Component.getDerivedStateFromProps ||\n \"function\" === typeof _instance.getSnapshotBeforeUpdate ||\n (\"function\" !== typeof _instance.UNSAFE_componentWillMount &&\n \"function\" !== typeof _instance.componentWillMount) ||\n ((state = _instance.state),\n \"function\" === typeof _instance.componentWillMount &&\n _instance.componentWillMount(),\n \"function\" === typeof _instance.UNSAFE_componentWillMount &&\n _instance.UNSAFE_componentWillMount(),\n state !== _instance.state &&\n (console.error(\n \"%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.\",\n getComponentNameFromFiber(workInProgress) || \"Component\"\n ),\n classComponentUpdater.enqueueReplaceState(\n _instance,\n _instance.state,\n null\n )),\n processUpdateQueue(workInProgress, nextProps, _instance, renderLanes),\n suspendIfUpdateReadFromEntangledAsyncAction(),\n (_instance.state = workInProgress.memoizedState));\n \"function\" === typeof _instance.componentDidMount &&\n (workInProgress.flags |= 4194308);\n (workInProgress.mode & StrictEffectsMode) !== NoMode &&\n (workInProgress.flags |= 268435456);\n _instance = !0;\n } else if (null === current) {\n _instance = workInProgress.stateNode;\n var unresolvedOldProps = workInProgress.memoizedProps;\n lane = resolveClassComponentProps(Component, unresolvedOldProps);\n _instance.props = lane;\n var oldContext = _instance.context;\n foundWillUpdateName = Component.contextType;\n state = emptyContextObject;\n \"object\" === typeof foundWillUpdateName &&\n null !== foundWillUpdateName &&\n (state = readContext(foundWillUpdateName));\n newApiName = Component.getDerivedStateFromProps;\n foundWillUpdateName =\n \"function\" === typeof newApiName ||\n \"function\" === typeof _instance.getSnapshotBeforeUpdate;\n unresolvedOldProps = workInProgress.pendingProps !== unresolvedOldProps;\n foundWillUpdateName ||\n (\"function\" !== typeof _instance.UNSAFE_componentWillReceiveProps &&\n \"function\" !== typeof _instance.componentWillReceiveProps) ||\n ((unresolvedOldProps || oldContext !== state) &&\n callComponentWillReceiveProps(\n workInProgress,\n _instance,\n nextProps,\n state\n ));\n hasForceUpdate = !1;\n var oldState = workInProgress.memoizedState;\n _instance.state = oldState;\n processUpdateQueue(workInProgress, nextProps, _instance, renderLanes);\n suspendIfUpdateReadFromEntangledAsyncAction();\n oldContext = workInProgress.memoizedState;\n unresolvedOldProps || oldState !== oldContext || hasForceUpdate\n ? (\"function\" === typeof newApiName &&\n (applyDerivedStateFromProps(\n workInProgress,\n Component,\n newApiName,\n nextProps\n ),\n (oldContext = workInProgress.memoizedState)),\n (lane =\n hasForceUpdate ||\n checkShouldComponentUpdate(\n workInProgress,\n Component,\n lane,\n nextProps,\n oldState,\n oldContext,\n state\n ))\n ? (foundWillUpdateName ||\n (\"function\" !== typeof _instance.UNSAFE_componentWillMount &&\n \"function\" !== typeof _instance.componentWillMount) ||\n (\"function\" === typeof _instance.componentWillMount &&\n _instance.componentWillMount(),\n \"function\" === typeof _instance.UNSAFE_componentWillMount &&\n _instance.UNSAFE_componentWillMount()),\n \"function\" === typeof _instance.componentDidMount &&\n (workInProgress.flags |= 4194308),\n (workInProgress.mode & StrictEffectsMode) !== NoMode &&\n (workInProgress.flags |= 268435456))\n : (\"function\" === typeof _instance.componentDidMount &&\n (workInProgress.flags |= 4194308),\n (workInProgress.mode & StrictEffectsMode) !== NoMode &&\n (workInProgress.flags |= 268435456),\n (workInProgress.memoizedProps = nextProps),\n (workInProgress.memoizedState = oldContext)),\n (_instance.props = nextProps),\n (_instance.state = oldContext),\n (_instance.context = state),\n (_instance = lane))\n : (\"function\" === typeof _instance.componentDidMount &&\n (workInProgress.flags |= 4194308),\n (workInProgress.mode & StrictEffectsMode) !== NoMode &&\n (workInProgress.flags |= 268435456),\n (_instance = !1));\n } else {\n _instance = workInProgress.stateNode;\n cloneUpdateQueue(current, workInProgress);\n state = workInProgress.memoizedProps;\n foundWillUpdateName = resolveClassComponentProps(Component, state);\n _instance.props = foundWillUpdateName;\n newApiName = workInProgress.pendingProps;\n oldState = _instance.context;\n oldContext = Component.contextType;\n lane = emptyContextObject;\n \"object\" === typeof oldContext &&\n null !== oldContext &&\n (lane = readContext(oldContext));\n unresolvedOldProps = Component.getDerivedStateFromProps;\n (oldContext =\n \"function\" === typeof unresolvedOldProps ||\n \"function\" === typeof _instance.getSnapshotBeforeUpdate) ||\n (\"function\" !== typeof _instance.UNSAFE_componentWillReceiveProps &&\n \"function\" !== typeof _instance.componentWillReceiveProps) ||\n ((state !== newApiName || oldState !== lane) &&\n callComponentWillReceiveProps(\n workInProgress,\n _instance,\n nextProps,\n lane\n ));\n hasForceUpdate = !1;\n oldState = workInProgress.memoizedState;\n _instance.state = oldState;\n processUpdateQueue(workInProgress, nextProps, _instance, renderLanes);\n suspendIfUpdateReadFromEntangledAsyncAction();\n var newState = workInProgress.memoizedState;\n state !== newApiName ||\n oldState !== newState ||\n hasForceUpdate ||\n (null !== current &&\n null !== current.dependencies &&\n checkIfContextChanged(current.dependencies))\n ? (\"function\" === typeof unresolvedOldProps &&\n (applyDerivedStateFromProps(\n workInProgress,\n Component,\n unresolvedOldProps,\n nextProps\n ),\n (newState = workInProgress.memoizedState)),\n (foundWillUpdateName =\n hasForceUpdate ||\n checkShouldComponentUpdate(\n workInProgress,\n Component,\n foundWillUpdateName,\n nextProps,\n oldState,\n newState,\n lane\n ) ||\n (null !== current &&\n null !== current.dependencies &&\n checkIfContextChanged(current.dependencies)))\n ? (oldContext ||\n (\"function\" !== typeof _instance.UNSAFE_componentWillUpdate &&\n \"function\" !== typeof _instance.componentWillUpdate) ||\n (\"function\" === typeof _instance.componentWillUpdate &&\n _instance.componentWillUpdate(nextProps, newState, lane),\n \"function\" === typeof _instance.UNSAFE_componentWillUpdate &&\n _instance.UNSAFE_componentWillUpdate(\n nextProps,\n newState,\n lane\n )),\n \"function\" === typeof _instance.componentDidUpdate &&\n (workInProgress.flags |= 4),\n \"function\" === typeof _instance.getSnapshotBeforeUpdate &&\n (workInProgress.flags |= 1024))\n : (\"function\" !== typeof _instance.componentDidUpdate ||\n (state === current.memoizedProps &&\n oldState === current.memoizedState) ||\n (workInProgress.flags |= 4),\n \"function\" !== typeof _instance.getSnapshotBeforeUpdate ||\n (state === current.memoizedProps &&\n oldState === current.memoizedState) ||\n (workInProgress.flags |= 1024),\n (workInProgress.memoizedProps = nextProps),\n (workInProgress.memoizedState = newState)),\n (_instance.props = nextProps),\n (_instance.state = newState),\n (_instance.context = lane),\n (_instance = foundWillUpdateName))\n : (\"function\" !== typeof _instance.componentDidUpdate ||\n (state === current.memoizedProps &&\n oldState === current.memoizedState) ||\n (workInProgress.flags |= 4),\n \"function\" !== typeof _instance.getSnapshotBeforeUpdate ||\n (state === current.memoizedProps &&\n oldState === current.memoizedState) ||\n (workInProgress.flags |= 1024),\n (_instance = !1));\n }\n lane = _instance;\n markRef(current, workInProgress);\n state = 0 !== (workInProgress.flags & 128);\n if (lane || state) {\n lane = workInProgress.stateNode;\n setCurrentFiber(workInProgress);\n if (state && \"function\" !== typeof Component.getDerivedStateFromError)\n (Component = null), (profilerStartTime = -1);\n else if (\n ((Component = callRenderInDEV(lane)),\n workInProgress.mode & StrictLegacyMode)\n ) {\n setIsStrictModeForDevtools(!0);\n try {\n callRenderInDEV(lane);\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n workInProgress.flags |= 1;\n null !== current && state\n ? ((workInProgress.child = reconcileChildFibers(\n workInProgress,\n current.child,\n null,\n renderLanes\n )),\n (workInProgress.child = reconcileChildFibers(\n workInProgress,\n null,\n Component,\n renderLanes\n )))\n : reconcileChildren(current, workInProgress, Component, renderLanes);\n workInProgress.memoizedState = lane.state;\n current = workInProgress.child;\n } else\n current = bailoutOnAlreadyFinishedWork(\n current,\n workInProgress,\n renderLanes\n );\n renderLanes = workInProgress.stateNode;\n _instance &&\n renderLanes.props !== nextProps &&\n (didWarnAboutReassigningProps ||\n console.error(\n \"It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.\",\n getComponentNameFromFiber(workInProgress) || \"a component\"\n ),\n (didWarnAboutReassigningProps = !0));\n return current;\n }\n function mountHostRootWithoutHydrating(\n current,\n workInProgress,\n nextChildren,\n renderLanes\n ) {\n resetHydrationState();\n workInProgress.flags |= 256;\n reconcileChildren(current, workInProgress, nextChildren, renderLanes);\n return workInProgress.child;\n }\n function validateFunctionComponentInDev(workInProgress, Component) {\n Component &&\n Component.childContextTypes &&\n console.error(\n \"childContextTypes cannot be defined on a function component.\\n %s.childContextTypes = ...\",\n Component.displayName || Component.name || \"Component\"\n );\n \"function\" === typeof Component.getDerivedStateFromProps &&\n ((workInProgress = getComponentNameFromType(Component) || \"Unknown\"),\n didWarnAboutGetDerivedStateOnFunctionComponent[workInProgress] ||\n (console.error(\n \"%s: Function components do not support getDerivedStateFromProps.\",\n workInProgress\n ),\n (didWarnAboutGetDerivedStateOnFunctionComponent[workInProgress] =\n !0)));\n \"object\" === typeof Component.contextType &&\n null !== Component.contextType &&\n ((Component = getComponentNameFromType(Component) || \"Unknown\"),\n didWarnAboutContextTypeOnFunctionComponent[Component] ||\n (console.error(\n \"%s: Function components do not support contextType.\",\n Component\n ),\n (didWarnAboutContextTypeOnFunctionComponent[Component] = !0)));\n }\n function mountSuspenseOffscreenState(renderLanes) {\n return { baseLanes: renderLanes, cachePool: getSuspendedCache() };\n }\n function getRemainingWorkInPrimaryTree(\n current,\n primaryTreeDidDefer,\n renderLanes\n ) {\n current = null !== current ? current.childLanes & ~renderLanes : 0;\n primaryTreeDidDefer && (current |= workInProgressDeferredLane);\n return current;\n }\n function updateSuspenseComponent(current, workInProgress, renderLanes) {\n var JSCompiler_object_inline_digest_2939;\n var JSCompiler_object_inline_stack_2940 = workInProgress.pendingProps;\n shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);\n var JSCompiler_object_inline_message_2938 = !1;\n var didSuspend = 0 !== (workInProgress.flags & 128);\n (JSCompiler_object_inline_digest_2939 = didSuspend) ||\n (JSCompiler_object_inline_digest_2939 =\n null !== current && null === current.memoizedState\n ? !1\n : 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));\n JSCompiler_object_inline_digest_2939 &&\n ((JSCompiler_object_inline_message_2938 = !0),\n (workInProgress.flags &= -129));\n JSCompiler_object_inline_digest_2939 = 0 !== (workInProgress.flags & 32);\n workInProgress.flags &= -33;\n if (null === current) {\n if (isHydrating) {\n JSCompiler_object_inline_message_2938\n ? pushPrimaryTreeSuspenseHandler(workInProgress)\n : reuseSuspenseHandlerOnStack(workInProgress);\n (current = nextHydratableInstance)\n ? ((renderLanes = canHydrateHydrationBoundary(\n current,\n rootOrSingletonContext\n )),\n (renderLanes =\n null !== renderLanes && renderLanes.data !== ACTIVITY_START_DATA\n ? renderLanes\n : null),\n null !== renderLanes &&\n ((JSCompiler_object_inline_digest_2939 = {\n dehydrated: renderLanes,\n treeContext: getSuspendedTreeContext(),\n retryLane: 536870912,\n hydrationErrors: null\n }),\n (workInProgress.memoizedState =\n JSCompiler_object_inline_digest_2939),\n (JSCompiler_object_inline_digest_2939 =\n createFiberFromDehydratedFragment(renderLanes)),\n (JSCompiler_object_inline_digest_2939.return = workInProgress),\n (workInProgress.child = JSCompiler_object_inline_digest_2939),\n (hydrationParentFiber = workInProgress),\n (nextHydratableInstance = null)))\n : (renderLanes = null);\n if (null === renderLanes)\n throw (\n (warnNonHydratedInstance(workInProgress, current),\n throwOnHydrationMismatch(workInProgress))\n );\n isSuspenseInstanceFallback(renderLanes)\n ? (workInProgress.lanes = 32)\n : (workInProgress.lanes = 536870912);\n return null;\n }\n var nextPrimaryChildren = JSCompiler_object_inline_stack_2940.children;\n JSCompiler_object_inline_stack_2940 =\n JSCompiler_object_inline_stack_2940.fallback;\n if (JSCompiler_object_inline_message_2938) {\n reuseSuspenseHandlerOnStack(workInProgress);\n var mode = workInProgress.mode;\n nextPrimaryChildren = mountWorkInProgressOffscreenFiber(\n { mode: \"hidden\", children: nextPrimaryChildren },\n mode\n );\n JSCompiler_object_inline_stack_2940 = createFiberFromFragment(\n JSCompiler_object_inline_stack_2940,\n mode,\n renderLanes,\n null\n );\n nextPrimaryChildren.return = workInProgress;\n JSCompiler_object_inline_stack_2940.return = workInProgress;\n nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2940;\n workInProgress.child = nextPrimaryChildren;\n JSCompiler_object_inline_stack_2940 = workInProgress.child;\n JSCompiler_object_inline_stack_2940.memoizedState =\n mountSuspenseOffscreenState(renderLanes);\n JSCompiler_object_inline_stack_2940.childLanes =\n getRemainingWorkInPrimaryTree(\n current,\n JSCompiler_object_inline_digest_2939,\n renderLanes\n );\n workInProgress.memoizedState = SUSPENDED_MARKER;\n return bailoutOffscreenComponent(\n null,\n JSCompiler_object_inline_stack_2940\n );\n }\n pushPrimaryTreeSuspenseHandler(workInProgress);\n return mountSuspensePrimaryChildren(\n workInProgress,\n nextPrimaryChildren\n );\n }\n var prevState = current.memoizedState;\n if (null !== prevState) {\n var JSCompiler_object_inline_componentStack_2941 = prevState.dehydrated;\n if (null !== JSCompiler_object_inline_componentStack_2941) {\n if (didSuspend)\n workInProgress.flags & 256\n ? (pushPrimaryTreeSuspenseHandler(workInProgress),\n (workInProgress.flags &= -257),\n (workInProgress = retrySuspenseComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n )))\n : null !== workInProgress.memoizedState\n ? (reuseSuspenseHandlerOnStack(workInProgress),\n (workInProgress.child = current.child),\n (workInProgress.flags |= 128),\n (workInProgress = null))\n : (reuseSuspenseHandlerOnStack(workInProgress),\n (nextPrimaryChildren =\n JSCompiler_object_inline_stack_2940.fallback),\n (mode = workInProgress.mode),\n (JSCompiler_object_inline_stack_2940 =\n mountWorkInProgressOffscreenFiber(\n {\n mode: \"visible\",\n children: JSCompiler_object_inline_stack_2940.children\n },\n mode\n )),\n (nextPrimaryChildren = createFiberFromFragment(\n nextPrimaryChildren,\n mode,\n renderLanes,\n null\n )),\n (nextPrimaryChildren.flags |= 2),\n (JSCompiler_object_inline_stack_2940.return = workInProgress),\n (nextPrimaryChildren.return = workInProgress),\n (JSCompiler_object_inline_stack_2940.sibling =\n nextPrimaryChildren),\n (workInProgress.child = JSCompiler_object_inline_stack_2940),\n reconcileChildFibers(\n workInProgress,\n current.child,\n null,\n renderLanes\n ),\n (JSCompiler_object_inline_stack_2940 = workInProgress.child),\n (JSCompiler_object_inline_stack_2940.memoizedState =\n mountSuspenseOffscreenState(renderLanes)),\n (JSCompiler_object_inline_stack_2940.childLanes =\n getRemainingWorkInPrimaryTree(\n current,\n JSCompiler_object_inline_digest_2939,\n renderLanes\n )),\n (workInProgress.memoizedState = SUSPENDED_MARKER),\n (workInProgress = bailoutOffscreenComponent(\n null,\n JSCompiler_object_inline_stack_2940\n )));\n else if (\n (pushPrimaryTreeSuspenseHandler(workInProgress),\n warnIfHydrating(),\n 0 !== (renderLanes & 536870912) &&\n markRenderDerivedCause(workInProgress),\n isSuspenseInstanceFallback(\n JSCompiler_object_inline_componentStack_2941\n ))\n ) {\n JSCompiler_object_inline_digest_2939 =\n JSCompiler_object_inline_componentStack_2941.nextSibling &&\n JSCompiler_object_inline_componentStack_2941.nextSibling.dataset;\n if (JSCompiler_object_inline_digest_2939) {\n nextPrimaryChildren = JSCompiler_object_inline_digest_2939.dgst;\n var message = JSCompiler_object_inline_digest_2939.msg;\n mode = JSCompiler_object_inline_digest_2939.stck;\n var componentStack = JSCompiler_object_inline_digest_2939.cstck;\n }\n JSCompiler_object_inline_message_2938 = message;\n JSCompiler_object_inline_digest_2939 = nextPrimaryChildren;\n JSCompiler_object_inline_stack_2940 = mode;\n JSCompiler_object_inline_componentStack_2941 = componentStack;\n nextPrimaryChildren = JSCompiler_object_inline_message_2938;\n mode = JSCompiler_object_inline_componentStack_2941;\n nextPrimaryChildren = nextPrimaryChildren\n ? Error(nextPrimaryChildren)\n : Error(\n \"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering.\"\n );\n nextPrimaryChildren.stack =\n JSCompiler_object_inline_stack_2940 || \"\";\n nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2939;\n JSCompiler_object_inline_digest_2939 =\n void 0 === mode ? null : mode;\n JSCompiler_object_inline_stack_2940 = {\n value: nextPrimaryChildren,\n source: null,\n stack: JSCompiler_object_inline_digest_2939\n };\n \"string\" === typeof JSCompiler_object_inline_digest_2939 &&\n CapturedStacks.set(\n nextPrimaryChildren,\n JSCompiler_object_inline_stack_2940\n );\n queueHydrationError(JSCompiler_object_inline_stack_2940);\n workInProgress = retrySuspenseComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n );\n } else if (\n (didReceiveUpdate ||\n propagateParentContextChanges(\n current,\n workInProgress,\n renderLanes,\n !1\n ),\n (JSCompiler_object_inline_digest_2939 =\n 0 !== (renderLanes & current.childLanes)),\n didReceiveUpdate || JSCompiler_object_inline_digest_2939)\n ) {\n JSCompiler_object_inline_digest_2939 = workInProgressRoot;\n if (\n null !== JSCompiler_object_inline_digest_2939 &&\n ((JSCompiler_object_inline_stack_2940 = getBumpedLaneForHydration(\n JSCompiler_object_inline_digest_2939,\n renderLanes\n )),\n 0 !== JSCompiler_object_inline_stack_2940 &&\n JSCompiler_object_inline_stack_2940 !== prevState.retryLane)\n )\n throw (\n ((prevState.retryLane = JSCompiler_object_inline_stack_2940),\n enqueueConcurrentRenderForLane(\n current,\n JSCompiler_object_inline_stack_2940\n ),\n scheduleUpdateOnFiber(\n JSCompiler_object_inline_digest_2939,\n current,\n JSCompiler_object_inline_stack_2940\n ),\n SelectiveHydrationException)\n );\n isSuspenseInstancePending(\n JSCompiler_object_inline_componentStack_2941\n ) || renderDidSuspendDelayIfPossible();\n workInProgress = retrySuspenseComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n );\n } else\n isSuspenseInstancePending(\n JSCompiler_object_inline_componentStack_2941\n )\n ? ((workInProgress.flags |= 192),\n (workInProgress.child = current.child),\n (workInProgress = null))\n : ((current = prevState.treeContext),\n (nextHydratableInstance = getNextHydratable(\n JSCompiler_object_inline_componentStack_2941.nextSibling\n )),\n (hydrationParentFiber = workInProgress),\n (isHydrating = !0),\n (hydrationErrors = null),\n (didSuspendOrErrorDEV = !1),\n (hydrationDiffRootDEV = null),\n (rootOrSingletonContext = !1),\n null !== current &&\n restoreSuspendedTreeContext(workInProgress, current),\n (workInProgress = mountSuspensePrimaryChildren(\n workInProgress,\n JSCompiler_object_inline_stack_2940.children\n )),\n (workInProgress.flags |= 4096));\n return workInProgress;\n }\n }\n if (JSCompiler_object_inline_message_2938)\n return (\n reuseSuspenseHandlerOnStack(workInProgress),\n (nextPrimaryChildren = JSCompiler_object_inline_stack_2940.fallback),\n (mode = workInProgress.mode),\n (componentStack = current.child),\n (JSCompiler_object_inline_componentStack_2941 =\n componentStack.sibling),\n (JSCompiler_object_inline_stack_2940 = createWorkInProgress(\n componentStack,\n {\n mode: \"hidden\",\n children: JSCompiler_object_inline_stack_2940.children\n }\n )),\n (JSCompiler_object_inline_stack_2940.subtreeFlags =\n componentStack.subtreeFlags & 132120576),\n null !== JSCompiler_object_inline_componentStack_2941\n ? (nextPrimaryChildren = createWorkInProgress(\n JSCompiler_object_inline_componentStack_2941,\n nextPrimaryChildren\n ))\n : ((nextPrimaryChildren = createFiberFromFragment(\n nextPrimaryChildren,\n mode,\n renderLanes,\n null\n )),\n (nextPrimaryChildren.flags |= 2)),\n (nextPrimaryChildren.return = workInProgress),\n (JSCompiler_object_inline_stack_2940.return = workInProgress),\n (JSCompiler_object_inline_stack_2940.sibling = nextPrimaryChildren),\n (workInProgress.child = JSCompiler_object_inline_stack_2940),\n bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2940),\n (JSCompiler_object_inline_stack_2940 = workInProgress.child),\n (nextPrimaryChildren = current.child.memoizedState),\n null === nextPrimaryChildren\n ? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))\n : ((mode = nextPrimaryChildren.cachePool),\n null !== mode\n ? ((componentStack = CacheContext._currentValue),\n (mode =\n mode.parent !== componentStack\n ? { parent: componentStack, pool: componentStack }\n : mode))\n : (mode = getSuspendedCache()),\n (nextPrimaryChildren = {\n baseLanes: nextPrimaryChildren.baseLanes | renderLanes,\n cachePool: mode\n })),\n (JSCompiler_object_inline_stack_2940.memoizedState =\n nextPrimaryChildren),\n (JSCompiler_object_inline_stack_2940.childLanes =\n getRemainingWorkInPrimaryTree(\n current,\n JSCompiler_object_inline_digest_2939,\n renderLanes\n )),\n (workInProgress.memoizedState = SUSPENDED_MARKER),\n bailoutOffscreenComponent(\n current.child,\n JSCompiler_object_inline_stack_2940\n )\n );\n null !== prevState &&\n (renderLanes & 62914560) === renderLanes &&\n 0 !== (renderLanes & current.lanes) &&\n markRenderDerivedCause(workInProgress);\n pushPrimaryTreeSuspenseHandler(workInProgress);\n renderLanes = current.child;\n current = renderLanes.sibling;\n renderLanes = createWorkInProgress(renderLanes, {\n mode: \"visible\",\n children: JSCompiler_object_inline_stack_2940.children\n });\n renderLanes.return = workInProgress;\n renderLanes.sibling = null;\n null !== current &&\n ((JSCompiler_object_inline_digest_2939 = workInProgress.deletions),\n null === JSCompiler_object_inline_digest_2939\n ? ((workInProgress.deletions = [current]),\n (workInProgress.flags |= 16))\n : JSCompiler_object_inline_digest_2939.push(current));\n workInProgress.child = renderLanes;\n workInProgress.memoizedState = null;\n return renderLanes;\n }\n function mountSuspensePrimaryChildren(workInProgress, primaryChildren) {\n primaryChildren = mountWorkInProgressOffscreenFiber(\n { mode: \"visible\", children: primaryChildren },\n workInProgress.mode\n );\n primaryChildren.return = workInProgress;\n return (workInProgress.child = primaryChildren);\n }\n function mountWorkInProgressOffscreenFiber(offscreenProps, mode) {\n offscreenProps = createFiber(22, offscreenProps, null, mode);\n offscreenProps.lanes = 0;\n return offscreenProps;\n }\n function retrySuspenseComponentWithoutHydrating(\n current,\n workInProgress,\n renderLanes\n ) {\n reconcileChildFibers(workInProgress, current.child, null, renderLanes);\n current = mountSuspensePrimaryChildren(\n workInProgress,\n workInProgress.pendingProps.children\n );\n current.flags |= 2;\n workInProgress.memoizedState = null;\n return current;\n }\n function scheduleSuspenseWorkOnFiber(fiber, renderLanes, propagationRoot) {\n fiber.lanes |= renderLanes;\n var alternate = fiber.alternate;\n null !== alternate && (alternate.lanes |= renderLanes);\n scheduleContextWorkOnParentPath(\n fiber.return,\n renderLanes,\n propagationRoot\n );\n }\n function findLastContentRow(firstChild) {\n for (var lastContentRow = null; null !== firstChild; ) {\n var currentRow = firstChild.alternate;\n null !== currentRow &&\n null === findFirstSuspended(currentRow) &&\n (lastContentRow = firstChild);\n firstChild = firstChild.sibling;\n }\n return lastContentRow;\n }\n function initSuspenseListRenderState(\n workInProgress,\n isBackwards,\n tail,\n lastContentRow,\n tailMode,\n treeForkCount\n ) {\n var renderState = workInProgress.memoizedState;\n null === renderState\n ? (workInProgress.memoizedState = {\n isBackwards: isBackwards,\n rendering: null,\n renderingStartTime: 0,\n last: lastContentRow,\n tail: tail,\n tailMode: tailMode,\n treeForkCount: treeForkCount\n })\n : ((renderState.isBackwards = isBackwards),\n (renderState.rendering = null),\n (renderState.renderingStartTime = 0),\n (renderState.last = lastContentRow),\n (renderState.tail = tail),\n (renderState.tailMode = tailMode),\n (renderState.treeForkCount = treeForkCount));\n }\n function reverseChildren(fiber) {\n var row = fiber.child;\n for (fiber.child = null; null !== row; ) {\n var nextRow = row.sibling;\n row.sibling = fiber.child;\n fiber.child = row;\n row = nextRow;\n }\n }\n function updateSuspenseListComponent(current, workInProgress, renderLanes) {\n var nextProps = workInProgress.pendingProps,\n revealOrder = nextProps.revealOrder,\n tailMode = nextProps.tail,\n newChildren = nextProps.children,\n suspenseContext = suspenseStackCursor.current;\n if (workInProgress.flags & 128)\n return pushSuspenseListContext(workInProgress, suspenseContext), null;\n (nextProps = 0 !== (suspenseContext & ForceSuspenseFallback))\n ? ((suspenseContext =\n (suspenseContext & SubtreeSuspenseContextMask) |\n ForceSuspenseFallback),\n (workInProgress.flags |= 128))\n : (suspenseContext &= SubtreeSuspenseContextMask);\n pushSuspenseListContext(workInProgress, suspenseContext);\n suspenseContext = null == revealOrder ? \"null\" : revealOrder;\n if (\n null != revealOrder &&\n \"forwards\" !== revealOrder &&\n \"backwards\" !== revealOrder &&\n \"unstable_legacy-backwards\" !== revealOrder &&\n \"together\" !== revealOrder &&\n \"independent\" !== revealOrder &&\n !didWarnAboutRevealOrder[suspenseContext]\n )\n if (\n ((didWarnAboutRevealOrder[suspenseContext] = !0),\n \"string\" === typeof revealOrder)\n )\n switch (revealOrder.toLowerCase()) {\n case \"together\":\n case \"forwards\":\n case \"backwards\":\n case \"independent\":\n console.error(\n '\"%s\" is not a valid value for revealOrder on <SuspenseList />. Use lowercase \"%s\" instead.',\n revealOrder,\n revealOrder.toLowerCase()\n );\n break;\n case \"forward\":\n case \"backward\":\n console.error(\n '\"%s\" is not a valid value for revealOrder on <SuspenseList />. React uses the -s suffix in the spelling. Use \"%ss\" instead.',\n revealOrder,\n revealOrder.toLowerCase()\n );\n break;\n default:\n console.error(\n '\"%s\" is not a supported revealOrder on <SuspenseList />. Did you mean \"independent\", \"together\", \"forwards\" or \"backwards\"?',\n revealOrder\n );\n }\n else\n console.error(\n '%s is not a supported value for revealOrder on <SuspenseList />. Did you mean \"independent\", \"together\", \"forwards\" or \"backwards\"?',\n revealOrder\n );\n suspenseContext = null == tailMode ? \"null\" : tailMode;\n didWarnAboutTailOptions[suspenseContext] ||\n null == tailMode ||\n (\"visible\" !== tailMode &&\n \"collapsed\" !== tailMode &&\n \"hidden\" !== tailMode\n ? ((didWarnAboutTailOptions[suspenseContext] = !0),\n console.error(\n '\"%s\" is not a supported value for tail on <SuspenseList />. Did you mean \"visible\", \"collapsed\" or \"hidden\"?',\n tailMode\n ))\n : null != revealOrder &&\n \"forwards\" !== revealOrder &&\n \"backwards\" !== revealOrder &&\n \"unstable_legacy-backwards\" !== revealOrder &&\n ((didWarnAboutTailOptions[suspenseContext] = !0),\n console.error(\n '<SuspenseList tail=\"%s\" /> is only valid if revealOrder is \"forwards\" (default) or \"backwards\". Did you mean to specify revealOrder=\"forwards\"?',\n tailMode\n )));\n a: if (\n (null == revealOrder ||\n \"forwards\" === revealOrder ||\n \"backwards\" === revealOrder ||\n \"unstable_legacy-backwards\" === revealOrder) &&\n void 0 !== newChildren &&\n null !== newChildren &&\n !1 !== newChildren\n )\n if (isArrayImpl(newChildren))\n for (\n suspenseContext = 0;\n suspenseContext < newChildren.length;\n suspenseContext++\n ) {\n if (\n !validateSuspenseListNestedChild(\n newChildren[suspenseContext],\n suspenseContext\n )\n )\n break a;\n }\n else if (\n ((suspenseContext = getIteratorFn(newChildren)),\n \"function\" === typeof suspenseContext)\n ) {\n if ((suspenseContext = suspenseContext.call(newChildren)))\n for (\n var step = suspenseContext.next(), _i = 0;\n !step.done;\n step = suspenseContext.next()\n ) {\n if (!validateSuspenseListNestedChild(step.value, _i)) break a;\n _i++;\n }\n } else\n console.error(\n 'A single row was passed to a <SuspenseList revealOrder=\"%s\" />. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?',\n revealOrder\n );\n \"backwards\" === revealOrder && null !== current\n ? (reverseChildren(current),\n reconcileChildren(current, workInProgress, newChildren, renderLanes),\n reverseChildren(current))\n : reconcileChildren(current, workInProgress, newChildren, renderLanes);\n isHydrating\n ? (warnIfNotHydrating(), (newChildren = treeForkCount))\n : (newChildren = 0);\n if (!nextProps && null !== current && 0 !== (current.flags & 128))\n a: for (current = workInProgress.child; null !== current; ) {\n if (13 === current.tag)\n null !== current.memoizedState &&\n scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);\n else if (19 === current.tag)\n scheduleSuspenseWorkOnFiber(current, renderLanes, workInProgress);\n else if (null !== current.child) {\n current.child.return = current;\n current = current.child;\n continue;\n }\n if (current === workInProgress) break a;\n for (; null === current.sibling; ) {\n if (null === current.return || current.return === workInProgress)\n break a;\n current = current.return;\n }\n current.sibling.return = current.return;\n current = current.sibling;\n }\n switch (revealOrder) {\n case \"backwards\":\n renderLanes = findLastContentRow(workInProgress.child);\n null === renderLanes\n ? ((revealOrder = workInProgress.child),\n (workInProgress.child = null))\n : ((revealOrder = renderLanes.sibling),\n (renderLanes.sibling = null),\n reverseChildren(workInProgress));\n initSuspenseListRenderState(\n workInProgress,\n !0,\n revealOrder,\n null,\n tailMode,\n newChildren\n );\n break;\n case \"unstable_legacy-backwards\":\n renderLanes = null;\n revealOrder = workInProgress.child;\n for (workInProgress.child = null; null !== revealOrder; ) {\n current = revealOrder.alternate;\n if (null !== current && null === findFirstSuspended(current)) {\n workInProgress.child = revealOrder;\n break;\n }\n current = revealOrder.sibling;\n revealOrder.sibling = renderLanes;\n renderLanes = revealOrder;\n revealOrder = current;\n }\n initSuspenseListRenderState(\n workInProgress,\n !0,\n renderLanes,\n null,\n tailMode,\n newChildren\n );\n break;\n case \"together\":\n initSuspenseListRenderState(\n workInProgress,\n !1,\n null,\n null,\n void 0,\n newChildren\n );\n break;\n case \"independent\":\n workInProgress.memoizedState = null;\n break;\n default:\n (renderLanes = findLastContentRow(workInProgress.child)),\n null === renderLanes\n ? ((revealOrder = workInProgress.child),\n (workInProgress.child = null))\n : ((revealOrder = renderLanes.sibling),\n (renderLanes.sibling = null)),\n initSuspenseListRenderState(\n workInProgress,\n !1,\n revealOrder,\n renderLanes,\n tailMode,\n newChildren\n );\n }\n return workInProgress.child;\n }\n function bailoutOnAlreadyFinishedWork(\n current,\n workInProgress,\n renderLanes\n ) {\n null !== current && (workInProgress.dependencies = current.dependencies);\n profilerStartTime = -1;\n workInProgressRootSkippedLanes |= workInProgress.lanes;\n if (0 === (renderLanes & workInProgress.childLanes))\n if (null !== current) {\n if (\n (propagateParentContextChanges(\n current,\n workInProgress,\n renderLanes,\n !1\n ),\n 0 === (renderLanes & workInProgress.childLanes))\n )\n return null;\n } else return null;\n if (null !== current && workInProgress.child !== current.child)\n throw Error(\"Resuming work not yet implemented.\");\n if (null !== workInProgress.child) {\n current = workInProgress.child;\n renderLanes = createWorkInProgress(current, current.pendingProps);\n workInProgress.child = renderLanes;\n for (renderLanes.return = workInProgress; null !== current.sibling; )\n (current = current.sibling),\n (renderLanes = renderLanes.sibling =\n createWorkInProgress(current, current.pendingProps)),\n (renderLanes.return = workInProgress);\n renderLanes.sibling = null;\n }\n return workInProgress.child;\n }\n function checkScheduledUpdateOrContext(current, renderLanes) {\n if (0 !== (current.lanes & renderLanes)) return !0;\n current = current.dependencies;\n return null !== current && checkIfContextChanged(current) ? !0 : !1;\n }\n function attemptEarlyBailoutIfNoScheduledUpdate(\n current,\n workInProgress,\n renderLanes\n ) {\n switch (workInProgress.tag) {\n case 3:\n pushHostContainer(\n workInProgress,\n workInProgress.stateNode.containerInfo\n );\n pushProvider(\n workInProgress,\n CacheContext,\n current.memoizedState.cache\n );\n resetHydrationState();\n break;\n case 27:\n case 5:\n pushHostContext(workInProgress);\n break;\n case 4:\n pushHostContainer(\n workInProgress,\n workInProgress.stateNode.containerInfo\n );\n break;\n case 10:\n pushProvider(\n workInProgress,\n workInProgress.type,\n workInProgress.memoizedProps.value\n );\n break;\n case 12:\n 0 !== (renderLanes & workInProgress.childLanes) &&\n (workInProgress.flags |= 4);\n workInProgress.flags |= 2048;\n var stateNode = workInProgress.stateNode;\n stateNode.effectDuration = -0;\n stateNode.passiveEffectDuration = -0;\n break;\n case 31:\n if (null !== workInProgress.memoizedState)\n return (\n (workInProgress.flags |= 128),\n pushDehydratedActivitySuspenseHandler(workInProgress),\n null\n );\n break;\n case 13:\n stateNode = workInProgress.memoizedState;\n if (null !== stateNode) {\n if (null !== stateNode.dehydrated)\n return (\n pushPrimaryTreeSuspenseHandler(workInProgress),\n (workInProgress.flags |= 128),\n null\n );\n if (0 !== (renderLanes & workInProgress.child.childLanes))\n return updateSuspenseComponent(\n current,\n workInProgress,\n renderLanes\n );\n pushPrimaryTreeSuspenseHandler(workInProgress);\n current = bailoutOnAlreadyFinishedWork(\n current,\n workInProgress,\n renderLanes\n );\n return null !== current ? current.sibling : null;\n }\n pushPrimaryTreeSuspenseHandler(workInProgress);\n break;\n case 19:\n if (workInProgress.flags & 128)\n return updateSuspenseListComponent(\n current,\n workInProgress,\n renderLanes\n );\n var didSuspendBefore = 0 !== (current.flags & 128);\n stateNode = 0 !== (renderLanes & workInProgress.childLanes);\n stateNode ||\n (propagateParentContextChanges(\n current,\n workInProgress,\n renderLanes,\n !1\n ),\n (stateNode = 0 !== (renderLanes & workInProgress.childLanes)));\n if (didSuspendBefore) {\n if (stateNode)\n return updateSuspenseListComponent(\n current,\n workInProgress,\n renderLanes\n );\n workInProgress.flags |= 128;\n }\n didSuspendBefore = workInProgress.memoizedState;\n null !== didSuspendBefore &&\n ((didSuspendBefore.rendering = null),\n (didSuspendBefore.tail = null),\n (didSuspendBefore.lastEffect = null));\n pushSuspenseListContext(workInProgress, suspenseStackCursor.current);\n if (stateNode) break;\n else return null;\n case 22:\n return (\n (workInProgress.lanes = 0),\n updateOffscreenComponent(\n current,\n workInProgress,\n renderLanes,\n workInProgress.pendingProps\n )\n );\n case 24:\n pushProvider(\n workInProgress,\n CacheContext,\n current.memoizedState.cache\n );\n }\n return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);\n }\n function beginWork(current, workInProgress, renderLanes) {\n if (workInProgress._debugNeedsRemount && null !== current) {\n renderLanes = createFiberFromTypeAndProps(\n workInProgress.type,\n workInProgress.key,\n workInProgress.pendingProps,\n workInProgress._debugOwner || null,\n workInProgress.mode,\n workInProgress.lanes\n );\n renderLanes._debugStack = workInProgress._debugStack;\n renderLanes._debugTask = workInProgress._debugTask;\n var returnFiber = workInProgress.return;\n if (null === returnFiber) throw Error(\"Cannot swap the root fiber.\");\n current.alternate = null;\n workInProgress.alternate = null;\n renderLanes.index = workInProgress.index;\n renderLanes.sibling = workInProgress.sibling;\n renderLanes.return = workInProgress.return;\n renderLanes.ref = workInProgress.ref;\n renderLanes._debugInfo = workInProgress._debugInfo;\n if (workInProgress === returnFiber.child)\n returnFiber.child = renderLanes;\n else {\n var prevSibling = returnFiber.child;\n if (null === prevSibling)\n throw Error(\"Expected parent to have a child.\");\n for (; prevSibling.sibling !== workInProgress; )\n if (((prevSibling = prevSibling.sibling), null === prevSibling))\n throw Error(\"Expected to find the previous sibling.\");\n prevSibling.sibling = renderLanes;\n }\n workInProgress = returnFiber.deletions;\n null === workInProgress\n ? ((returnFiber.deletions = [current]), (returnFiber.flags |= 16))\n : workInProgress.push(current);\n renderLanes.flags |= 2;\n return renderLanes;\n }\n if (null !== current)\n if (\n current.memoizedProps !== workInProgress.pendingProps ||\n workInProgress.type !== current.type\n )\n didReceiveUpdate = !0;\n else {\n if (\n !checkScheduledUpdateOrContext(current, renderLanes) &&\n 0 === (workInProgress.flags & 128)\n )\n return (\n (didReceiveUpdate = !1),\n attemptEarlyBailoutIfNoScheduledUpdate(\n current,\n workInProgress,\n renderLanes\n )\n );\n didReceiveUpdate = 0 !== (current.flags & 131072) ? !0 : !1;\n }\n else {\n didReceiveUpdate = !1;\n if ((returnFiber = isHydrating))\n warnIfNotHydrating(),\n (returnFiber = 0 !== (workInProgress.flags & 1048576));\n returnFiber &&\n ((returnFiber = workInProgress.index),\n warnIfNotHydrating(),\n pushTreeId(workInProgress, treeForkCount, returnFiber));\n }\n workInProgress.lanes = 0;\n switch (workInProgress.tag) {\n case 16:\n a: if (\n ((returnFiber = workInProgress.pendingProps),\n (current = resolveLazy(workInProgress.elementType)),\n (workInProgress.type = current),\n \"function\" === typeof current)\n )\n shouldConstruct(current)\n ? ((returnFiber = resolveClassComponentProps(\n current,\n returnFiber\n )),\n (workInProgress.tag = 1),\n (workInProgress.type = current =\n resolveFunctionForHotReloading(current)),\n (workInProgress = updateClassComponent(\n null,\n workInProgress,\n current,\n returnFiber,\n renderLanes\n )))\n : ((workInProgress.tag = 0),\n validateFunctionComponentInDev(workInProgress, current),\n (workInProgress.type = current =\n resolveFunctionForHotReloading(current)),\n (workInProgress = updateFunctionComponent(\n null,\n workInProgress,\n current,\n returnFiber,\n renderLanes\n )));\n else {\n if (void 0 !== current && null !== current)\n if (\n ((prevSibling = current.$$typeof),\n prevSibling === REACT_FORWARD_REF_TYPE)\n ) {\n workInProgress.tag = 11;\n workInProgress.type = current =\n resolveForwardRefForHotReloading(current);\n workInProgress = updateForwardRef(\n null,\n workInProgress,\n current,\n returnFiber,\n renderLanes\n );\n break a;\n } else if (prevSibling === REACT_MEMO_TYPE) {\n workInProgress.tag = 14;\n workInProgress = updateMemoComponent(\n null,\n workInProgress,\n current,\n returnFiber,\n renderLanes\n );\n break a;\n }\n workInProgress = \"\";\n null !== current &&\n \"object\" === typeof current &&\n current.$$typeof === REACT_LAZY_TYPE &&\n (workInProgress =\n \" Did you wrap a component in React.lazy() more than once?\");\n renderLanes = getComponentNameFromType(current) || current;\n throw Error(\n \"Element type is invalid. Received a promise that resolves to: \" +\n renderLanes +\n \". Lazy element type must resolve to a class or function.\" +\n workInProgress\n );\n }\n return workInProgress;\n case 0:\n return updateFunctionComponent(\n current,\n workInProgress,\n workInProgress.type,\n workInProgress.pendingProps,\n renderLanes\n );\n case 1:\n return (\n (returnFiber = workInProgress.type),\n (prevSibling = resolveClassComponentProps(\n returnFiber,\n workInProgress.pendingProps\n )),\n updateClassComponent(\n current,\n workInProgress,\n returnFiber,\n prevSibling,\n renderLanes\n )\n );\n case 3:\n a: {\n pushHostContainer(\n workInProgress,\n workInProgress.stateNode.containerInfo\n );\n if (null === current)\n throw Error(\n \"Should have a current fiber. This is a bug in React.\"\n );\n returnFiber = workInProgress.pendingProps;\n var prevState = workInProgress.memoizedState;\n prevSibling = prevState.element;\n cloneUpdateQueue(current, workInProgress);\n processUpdateQueue(workInProgress, returnFiber, null, renderLanes);\n var nextState = workInProgress.memoizedState;\n returnFiber = nextState.cache;\n pushProvider(workInProgress, CacheContext, returnFiber);\n returnFiber !== prevState.cache &&\n propagateContextChanges(\n workInProgress,\n [CacheContext],\n renderLanes,\n !0\n );\n suspendIfUpdateReadFromEntangledAsyncAction();\n returnFiber = nextState.element;\n if (prevState.isDehydrated)\n if (\n ((prevState = {\n element: returnFiber,\n isDehydrated: !1,\n cache: nextState.cache\n }),\n (workInProgress.updateQueue.baseState = prevState),\n (workInProgress.memoizedState = prevState),\n workInProgress.flags & 256)\n ) {\n workInProgress = mountHostRootWithoutHydrating(\n current,\n workInProgress,\n returnFiber,\n renderLanes\n );\n break a;\n } else if (returnFiber !== prevSibling) {\n prevSibling = createCapturedValueAtFiber(\n Error(\n \"This root received an early update, before anything was able hydrate. Switched the entire root to client rendering.\"\n ),\n workInProgress\n );\n queueHydrationError(prevSibling);\n workInProgress = mountHostRootWithoutHydrating(\n current,\n workInProgress,\n returnFiber,\n renderLanes\n );\n break a;\n } else {\n current = workInProgress.stateNode.containerInfo;\n switch (current.nodeType) {\n case 9:\n current = current.body;\n break;\n default:\n current =\n \"HTML\" === current.nodeName\n ? current.ownerDocument.body\n : current;\n }\n nextHydratableInstance = getNextHydratable(current.firstChild);\n hydrationParentFiber = workInProgress;\n isHydrating = !0;\n hydrationErrors = null;\n didSuspendOrErrorDEV = !1;\n hydrationDiffRootDEV = null;\n rootOrSingletonContext = !0;\n renderLanes = mountChildFibers(\n workInProgress,\n null,\n returnFiber,\n renderLanes\n );\n for (workInProgress.child = renderLanes; renderLanes; )\n (renderLanes.flags = (renderLanes.flags & -3) | 4096),\n (renderLanes = renderLanes.sibling);\n }\n else {\n resetHydrationState();\n if (returnFiber === prevSibling) {\n workInProgress = bailoutOnAlreadyFinishedWork(\n current,\n workInProgress,\n renderLanes\n );\n break a;\n }\n reconcileChildren(\n current,\n workInProgress,\n returnFiber,\n renderLanes\n );\n }\n workInProgress = workInProgress.child;\n }\n return workInProgress;\n case 26:\n return (\n markRef(current, workInProgress),\n null === current\n ? (renderLanes = getResource(\n workInProgress.type,\n null,\n workInProgress.pendingProps,\n null\n ))\n ? (workInProgress.memoizedState = renderLanes)\n : isHydrating ||\n ((renderLanes = workInProgress.type),\n (current = workInProgress.pendingProps),\n (returnFiber = requiredContext(\n rootInstanceStackCursor.current\n )),\n (returnFiber =\n getOwnerDocumentFromRootContainer(\n returnFiber\n ).createElement(renderLanes)),\n (returnFiber[internalInstanceKey] = workInProgress),\n (returnFiber[internalPropsKey] = current),\n setInitialProperties(returnFiber, renderLanes, current),\n markNodeAsHoistable(returnFiber),\n (workInProgress.stateNode = returnFiber))\n : (workInProgress.memoizedState = getResource(\n workInProgress.type,\n current.memoizedProps,\n workInProgress.pendingProps,\n current.memoizedState\n )),\n null\n );\n case 27:\n return (\n pushHostContext(workInProgress),\n null === current &&\n isHydrating &&\n ((returnFiber = requiredContext(rootInstanceStackCursor.current)),\n (prevSibling = getHostContext()),\n (returnFiber = workInProgress.stateNode =\n resolveSingletonInstance(\n workInProgress.type,\n workInProgress.pendingProps,\n returnFiber,\n prevSibling,\n !1\n )),\n didSuspendOrErrorDEV ||\n ((prevSibling = diffHydratedProperties(\n returnFiber,\n workInProgress.type,\n workInProgress.pendingProps,\n prevSibling\n )),\n null !== prevSibling &&\n (buildHydrationDiffNode(workInProgress, 0).serverProps =\n prevSibling)),\n (hydrationParentFiber = workInProgress),\n (rootOrSingletonContext = !0),\n (prevSibling = nextHydratableInstance),\n isSingletonScope(workInProgress.type)\n ? ((previousHydratableOnEnteringScopedSingleton = prevSibling),\n (nextHydratableInstance = getNextHydratable(\n returnFiber.firstChild\n )))\n : (nextHydratableInstance = prevSibling)),\n reconcileChildren(\n current,\n workInProgress,\n workInProgress.pendingProps.children,\n renderLanes\n ),\n markRef(current, workInProgress),\n null === current && (workInProgress.flags |= 4194304),\n workInProgress.child\n );\n case 5:\n return (\n null === current &&\n isHydrating &&\n ((prevState = getHostContext()),\n (returnFiber = validateDOMNesting(\n workInProgress.type,\n prevState.ancestorInfo\n )),\n (prevSibling = nextHydratableInstance),\n (nextState = !prevSibling) ||\n ((nextState = canHydrateInstance(\n prevSibling,\n workInProgress.type,\n workInProgress.pendingProps,\n rootOrSingletonContext\n )),\n null !== nextState\n ? ((workInProgress.stateNode = nextState),\n didSuspendOrErrorDEV ||\n ((prevState = diffHydratedProperties(\n nextState,\n workInProgress.type,\n workInProgress.pendingProps,\n prevState\n )),\n null !== prevState &&\n (buildHydrationDiffNode(workInProgress, 0).serverProps =\n prevState)),\n (hydrationParentFiber = workInProgress),\n (nextHydratableInstance = getNextHydratable(\n nextState.firstChild\n )),\n (rootOrSingletonContext = !1),\n (prevState = !0))\n : (prevState = !1),\n (nextState = !prevState)),\n nextState &&\n (returnFiber &&\n warnNonHydratedInstance(workInProgress, prevSibling),\n throwOnHydrationMismatch(workInProgress))),\n pushHostContext(workInProgress),\n (prevSibling = workInProgress.type),\n (prevState = workInProgress.pendingProps),\n (nextState = null !== current ? current.memoizedProps : null),\n (returnFiber = prevState.children),\n shouldSetTextContent(prevSibling, prevState)\n ? (returnFiber = null)\n : null !== nextState &&\n shouldSetTextContent(prevSibling, nextState) &&\n (workInProgress.flags |= 32),\n null !== workInProgress.memoizedState &&\n ((prevSibling = renderWithHooks(\n current,\n workInProgress,\n TransitionAwareHostComponent,\n null,\n null,\n renderLanes\n )),\n (HostTransitionContext._currentValue = prevSibling)),\n markRef(current, workInProgress),\n reconcileChildren(\n current,\n workInProgress,\n returnFiber,\n renderLanes\n ),\n workInProgress.child\n );\n case 6:\n return (\n null === current &&\n isHydrating &&\n ((renderLanes = workInProgress.pendingProps),\n (current = getHostContext()),\n (returnFiber = current.ancestorInfo.current),\n (renderLanes =\n null != returnFiber\n ? validateTextNesting(\n renderLanes,\n returnFiber.tag,\n current.ancestorInfo.implicitRootScope\n )\n : !0),\n (current = nextHydratableInstance),\n (returnFiber = !current) ||\n ((returnFiber = canHydrateTextInstance(\n current,\n workInProgress.pendingProps,\n rootOrSingletonContext\n )),\n null !== returnFiber\n ? ((workInProgress.stateNode = returnFiber),\n (hydrationParentFiber = workInProgress),\n (nextHydratableInstance = null),\n (returnFiber = !0))\n : (returnFiber = !1),\n (returnFiber = !returnFiber)),\n returnFiber &&\n (renderLanes &&\n warnNonHydratedInstance(workInProgress, current),\n throwOnHydrationMismatch(workInProgress))),\n null\n );\n case 13:\n return updateSuspenseComponent(current, workInProgress, renderLanes);\n case 4:\n return (\n pushHostContainer(\n workInProgress,\n workInProgress.stateNode.containerInfo\n ),\n (returnFiber = workInProgress.pendingProps),\n null === current\n ? (workInProgress.child = reconcileChildFibers(\n workInProgress,\n null,\n returnFiber,\n renderLanes\n ))\n : reconcileChildren(\n current,\n workInProgress,\n returnFiber,\n renderLanes\n ),\n workInProgress.child\n );\n case 11:\n return updateForwardRef(\n current,\n workInProgress,\n workInProgress.type,\n workInProgress.pendingProps,\n renderLanes\n );\n case 7:\n return (\n (returnFiber = workInProgress.pendingProps),\n markRef(current, workInProgress),\n reconcileChildren(\n current,\n workInProgress,\n returnFiber,\n renderLanes\n ),\n workInProgress.child\n );\n case 8:\n return (\n reconcileChildren(\n current,\n workInProgress,\n workInProgress.pendingProps.children,\n renderLanes\n ),\n workInProgress.child\n );\n case 12:\n return (\n (workInProgress.flags |= 4),\n (workInProgress.flags |= 2048),\n (returnFiber = workInProgress.stateNode),\n (returnFiber.effectDuration = -0),\n (returnFiber.passiveEffectDuration = -0),\n reconcileChildren(\n current,\n workInProgress,\n workInProgress.pendingProps.children,\n renderLanes\n ),\n workInProgress.child\n );\n case 10:\n return (\n (returnFiber = workInProgress.type),\n (prevSibling = workInProgress.pendingProps),\n (prevState = prevSibling.value),\n \"value\" in prevSibling ||\n hasWarnedAboutUsingNoValuePropOnContextProvider ||\n ((hasWarnedAboutUsingNoValuePropOnContextProvider = !0),\n console.error(\n \"The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?\"\n )),\n pushProvider(workInProgress, returnFiber, prevState),\n reconcileChildren(\n current,\n workInProgress,\n prevSibling.children,\n renderLanes\n ),\n workInProgress.child\n );\n case 9:\n return (\n (prevSibling = workInProgress.type._context),\n (returnFiber = workInProgress.pendingProps.children),\n \"function\" !== typeof returnFiber &&\n console.error(\n \"A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it.\"\n ),\n prepareToReadContext(workInProgress),\n (prevSibling = readContext(prevSibling)),\n (returnFiber = callComponentInDEV(\n returnFiber,\n prevSibling,\n void 0\n )),\n (workInProgress.flags |= 1),\n reconcileChildren(\n current,\n workInProgress,\n returnFiber,\n renderLanes\n ),\n workInProgress.child\n );\n case 14:\n return updateMemoComponent(\n current,\n workInProgress,\n workInProgress.type,\n workInProgress.pendingProps,\n renderLanes\n );\n case 15:\n return updateSimpleMemoComponent(\n current,\n workInProgress,\n workInProgress.type,\n workInProgress.pendingProps,\n renderLanes\n );\n case 19:\n return updateSuspenseListComponent(\n current,\n workInProgress,\n renderLanes\n );\n case 31:\n return updateActivityComponent(current, workInProgress, renderLanes);\n case 22:\n return updateOffscreenComponent(\n current,\n workInProgress,\n renderLanes,\n workInProgress.pendingProps\n );\n case 24:\n return (\n prepareToReadContext(workInProgress),\n (returnFiber = readContext(CacheContext)),\n null === current\n ? ((prevSibling = peekCacheFromPool()),\n null === prevSibling &&\n ((prevSibling = workInProgressRoot),\n (prevState = createCache()),\n (prevSibling.pooledCache = prevState),\n retainCache(prevState),\n null !== prevState &&\n (prevSibling.pooledCacheLanes |= renderLanes),\n (prevSibling = prevState)),\n (workInProgress.memoizedState = {\n parent: returnFiber,\n cache: prevSibling\n }),\n initializeUpdateQueue(workInProgress),\n pushProvider(workInProgress, CacheContext, prevSibling))\n : (0 !== (current.lanes & renderLanes) &&\n (cloneUpdateQueue(current, workInProgress),\n processUpdateQueue(workInProgress, null, null, renderLanes),\n suspendIfUpdateReadFromEntangledAsyncAction()),\n (prevSibling = current.memoizedState),\n (prevState = workInProgress.memoizedState),\n prevSibling.parent !== returnFiber\n ? ((prevSibling = {\n parent: returnFiber,\n cache: returnFiber\n }),\n (workInProgress.memoizedState = prevSibling),\n 0 === workInProgress.lanes &&\n (workInProgress.memoizedState =\n workInProgress.updateQueue.baseState =\n prevSibling),\n pushProvider(workInProgress, CacheContext, returnFiber))\n : ((returnFiber = prevState.cache),\n pushProvider(workInProgress, CacheContext, returnFiber),\n returnFiber !== prevSibling.cache &&\n propagateContextChanges(\n workInProgress,\n [CacheContext],\n renderLanes,\n !0\n ))),\n reconcileChildren(\n current,\n workInProgress,\n workInProgress.pendingProps.children,\n renderLanes\n ),\n workInProgress.child\n );\n case 30:\n return (\n (returnFiber = workInProgress.pendingProps),\n null != returnFiber.name && \"auto\" !== returnFiber.name\n ? (workInProgress.flags |= null === current ? 18882560 : 18874368)\n : isHydrating && pushMaterializedTreeId(workInProgress),\n void 0 !== returnFiber.className &&\n ((prevSibling =\n \"string\" === typeof returnFiber.className\n ? JSON.stringify(returnFiber.className)\n : \"{...}\"),\n didWarnAboutClassNameOnViewTransition[prevSibling] ||\n ((didWarnAboutClassNameOnViewTransition[prevSibling] = !0),\n console.error(\n '<ViewTransition> doesn\\'t accept a \"className\" prop. It has been renamed to \"default\".\\n- <ViewTransition className=%s>\\n+ <ViewTransition default=%s>',\n prevSibling,\n prevSibling\n ))),\n null !== current && current.memoizedProps.name !== returnFiber.name\n ? (workInProgress.flags |= 4194816)\n : markRef(current, workInProgress),\n reconcileChildren(\n current,\n workInProgress,\n returnFiber.children,\n renderLanes\n ),\n workInProgress.child\n );\n case 29:\n throw workInProgress.pendingProps;\n }\n throw Error(\n \"Unknown unit of work tag (\" +\n workInProgress.tag +\n \"). This error is likely caused by a bug in React. Please file an issue.\"\n );\n }\n function markUpdate(workInProgress) {\n workInProgress.flags |= 4;\n }\n function preloadInstanceAndSuspendIfNeeded(\n workInProgress,\n type,\n oldProps,\n newProps,\n renderLanes\n ) {\n var JSCompiler_temp;\n if (\n (JSCompiler_temp =\n (workInProgress.mode & SuspenseyImagesMode) !== NoMode)\n )\n JSCompiler_temp =\n null === oldProps\n ? maySuspendCommit(type, newProps)\n : maySuspendCommit(type, newProps) &&\n (newProps.src !== oldProps.src ||\n newProps.srcSet !== oldProps.srcSet);\n if (JSCompiler_temp) {\n if (\n ((workInProgress.flags |= 16777216),\n (renderLanes & 335544128) === renderLanes)\n )\n if (workInProgress.stateNode.complete) workInProgress.flags |= 8192;\n else if (shouldRemainOnPreviousScreen()) workInProgress.flags |= 8192;\n else\n throw (\n ((suspendedThenable = noopSuspenseyCommitThenable),\n SuspenseyCommitException)\n );\n } else workInProgress.flags &= -16777217;\n }\n function preloadResourceAndSuspendIfNeeded(workInProgress, resource) {\n if (\n \"stylesheet\" !== resource.type ||\n (resource.state.loading & Inserted) !== NotLoaded\n )\n workInProgress.flags &= -16777217;\n else if (((workInProgress.flags |= 16777216), !preloadResource(resource)))\n if (shouldRemainOnPreviousScreen()) workInProgress.flags |= 8192;\n else\n throw (\n ((suspendedThenable = noopSuspenseyCommitThenable),\n SuspenseyCommitException)\n );\n }\n function scheduleRetryEffect(workInProgress, retryQueue) {\n null !== retryQueue && (workInProgress.flags |= 4);\n workInProgress.flags & 16384 &&\n ((retryQueue =\n 22 !== workInProgress.tag ? claimNextRetryLane() : 536870912),\n (workInProgress.lanes |= retryQueue),\n (workInProgressSuspendedRetryLanes |= retryQueue));\n }\n function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {\n if (!isHydrating)\n switch (renderState.tailMode) {\n case \"visible\":\n break;\n case \"collapsed\":\n for (\n var tailNode = renderState.tail, lastTailNode = null;\n null !== tailNode;\n\n )\n null !== tailNode.alternate && (lastTailNode = tailNode),\n (tailNode = tailNode.sibling);\n null === lastTailNode\n ? hasRenderedATailFallback || null === renderState.tail\n ? (renderState.tail = null)\n : (renderState.tail.sibling = null)\n : (lastTailNode.sibling = null);\n break;\n default:\n hasRenderedATailFallback = renderState.tail;\n for (tailNode = null; null !== hasRenderedATailFallback; )\n null !== hasRenderedATailFallback.alternate &&\n (tailNode = hasRenderedATailFallback),\n (hasRenderedATailFallback = hasRenderedATailFallback.sibling);\n null === tailNode\n ? (renderState.tail = null)\n : (tailNode.sibling = null);\n }\n }\n function bubbleProperties(completedWork) {\n var didBailout =\n null !== completedWork.alternate &&\n completedWork.alternate.child === completedWork.child,\n newChildLanes = 0,\n subtreeFlags = 0;\n if (didBailout)\n if ((completedWork.mode & ProfileMode) !== NoMode) {\n for (\n var _treeBaseDuration = completedWork.selfBaseDuration,\n _child2 = completedWork.child;\n null !== _child2;\n\n )\n (newChildLanes |= _child2.lanes | _child2.childLanes),\n (subtreeFlags |= _child2.subtreeFlags & 132120576),\n (subtreeFlags |= _child2.flags & 132120576),\n (_treeBaseDuration += _child2.treeBaseDuration),\n (_child2 = _child2.sibling);\n completedWork.treeBaseDuration = _treeBaseDuration;\n } else\n for (\n _treeBaseDuration = completedWork.child;\n null !== _treeBaseDuration;\n\n )\n (newChildLanes |=\n _treeBaseDuration.lanes | _treeBaseDuration.childLanes),\n (subtreeFlags |= _treeBaseDuration.subtreeFlags & 132120576),\n (subtreeFlags |= _treeBaseDuration.flags & 132120576),\n (_treeBaseDuration.return = completedWork),\n (_treeBaseDuration = _treeBaseDuration.sibling);\n else if ((completedWork.mode & ProfileMode) !== NoMode) {\n _treeBaseDuration = completedWork.actualDuration;\n _child2 = completedWork.selfBaseDuration;\n for (var child = completedWork.child; null !== child; )\n (newChildLanes |= child.lanes | child.childLanes),\n (subtreeFlags |= child.subtreeFlags),\n (subtreeFlags |= child.flags),\n (_treeBaseDuration += child.actualDuration),\n (_child2 += child.treeBaseDuration),\n (child = child.sibling);\n completedWork.actualDuration = _treeBaseDuration;\n completedWork.treeBaseDuration = _child2;\n } else\n for (\n _treeBaseDuration = completedWork.child;\n null !== _treeBaseDuration;\n\n )\n (newChildLanes |=\n _treeBaseDuration.lanes | _treeBaseDuration.childLanes),\n (subtreeFlags |= _treeBaseDuration.subtreeFlags),\n (subtreeFlags |= _treeBaseDuration.flags),\n (_treeBaseDuration.return = completedWork),\n (_treeBaseDuration = _treeBaseDuration.sibling);\n completedWork.subtreeFlags |= subtreeFlags;\n completedWork.childLanes = newChildLanes;\n return didBailout;\n }\n function completeWork(current, workInProgress, renderLanes) {\n var newProps = workInProgress.pendingProps;\n popTreeContext(workInProgress);\n switch (workInProgress.tag) {\n case 16:\n case 15:\n case 0:\n case 11:\n case 7:\n case 8:\n case 12:\n case 9:\n case 14:\n return bubbleProperties(workInProgress), null;\n case 1:\n return bubbleProperties(workInProgress), null;\n case 3:\n renderLanes = workInProgress.stateNode;\n newProps = null;\n null !== current && (newProps = current.memoizedState.cache);\n workInProgress.memoizedState.cache !== newProps &&\n (workInProgress.flags |= 2048);\n popProvider(CacheContext, workInProgress);\n popHostContainer(workInProgress);\n renderLanes.pendingContext &&\n ((renderLanes.context = renderLanes.pendingContext),\n (renderLanes.pendingContext = null));\n if (null === current || null === current.child)\n popHydrationState(workInProgress)\n ? (emitPendingHydrationWarnings(), markUpdate(workInProgress))\n : null === current ||\n (current.memoizedState.isDehydrated &&\n 0 === (workInProgress.flags & 256)) ||\n ((workInProgress.flags |= 1024),\n upgradeHydrationErrorsToRecoverable());\n bubbleProperties(workInProgress);\n return null;\n case 26:\n var type = workInProgress.type,\n nextResource = workInProgress.memoizedState;\n null === current\n ? (markUpdate(workInProgress),\n null !== nextResource\n ? (bubbleProperties(workInProgress),\n preloadResourceAndSuspendIfNeeded(\n workInProgress,\n nextResource\n ))\n : (bubbleProperties(workInProgress),\n preloadInstanceAndSuspendIfNeeded(\n workInProgress,\n type,\n null,\n newProps,\n renderLanes\n )))\n : nextResource\n ? nextResource !== current.memoizedState\n ? (markUpdate(workInProgress),\n bubbleProperties(workInProgress),\n preloadResourceAndSuspendIfNeeded(\n workInProgress,\n nextResource\n ))\n : (bubbleProperties(workInProgress),\n (workInProgress.flags &= -16777217))\n : ((current = current.memoizedProps),\n current !== newProps && markUpdate(workInProgress),\n bubbleProperties(workInProgress),\n preloadInstanceAndSuspendIfNeeded(\n workInProgress,\n type,\n current,\n newProps,\n renderLanes\n ));\n return null;\n case 27:\n popHostContext(workInProgress);\n renderLanes = requiredContext(rootInstanceStackCursor.current);\n type = workInProgress.type;\n if (null !== current && null != workInProgress.stateNode)\n current.memoizedProps !== newProps && markUpdate(workInProgress);\n else {\n if (!newProps) {\n if (null === workInProgress.stateNode)\n throw Error(\n \"We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.\"\n );\n bubbleProperties(workInProgress);\n workInProgress.subtreeFlags &= -33554433;\n return null;\n }\n current = getHostContext();\n popHydrationState(workInProgress)\n ? prepareToHydrateHostInstance(workInProgress, current)\n : ((current = resolveSingletonInstance(\n type,\n newProps,\n renderLanes,\n current,\n !0\n )),\n (workInProgress.stateNode = current),\n markUpdate(workInProgress));\n }\n bubbleProperties(workInProgress);\n workInProgress.subtreeFlags &= -33554433;\n return null;\n case 5:\n popHostContext(workInProgress);\n type = workInProgress.type;\n if (null !== current && null != workInProgress.stateNode)\n current.memoizedProps !== newProps && markUpdate(workInProgress);\n else {\n if (!newProps) {\n if (null === workInProgress.stateNode)\n throw Error(\n \"We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.\"\n );\n bubbleProperties(workInProgress);\n workInProgress.subtreeFlags &= -33554433;\n return null;\n }\n var _currentHostContext = getHostContext();\n if (popHydrationState(workInProgress))\n prepareToHydrateHostInstance(workInProgress, _currentHostContext);\n else {\n nextResource = requiredContext(rootInstanceStackCursor.current);\n validateDOMNesting(type, _currentHostContext.ancestorInfo);\n _currentHostContext = _currentHostContext.context;\n nextResource = getOwnerDocumentFromRootContainer(nextResource);\n switch (_currentHostContext) {\n case HostContextNamespaceSvg:\n nextResource = nextResource.createElementNS(\n SVG_NAMESPACE,\n type\n );\n break;\n case HostContextNamespaceMath:\n nextResource = nextResource.createElementNS(\n MATH_NAMESPACE,\n type\n );\n break;\n default:\n switch (type) {\n case \"svg\":\n nextResource = nextResource.createElementNS(\n SVG_NAMESPACE,\n type\n );\n break;\n case \"math\":\n nextResource = nextResource.createElementNS(\n MATH_NAMESPACE,\n type\n );\n break;\n case \"script\":\n nextResource = nextResource.createElement(\"div\");\n nextResource.innerHTML = \"<script>\\x3c/script>\";\n nextResource = nextResource.removeChild(\n nextResource.firstChild\n );\n break;\n case \"select\":\n nextResource =\n \"string\" === typeof newProps.is\n ? nextResource.createElement(\"select\", {\n is: newProps.is\n })\n : nextResource.createElement(\"select\");\n newProps.multiple\n ? (nextResource.multiple = !0)\n : newProps.size && (nextResource.size = newProps.size);\n break;\n default:\n (nextResource =\n \"string\" === typeof newProps.is\n ? nextResource.createElement(type, {\n is: newProps.is\n })\n : nextResource.createElement(type)),\n -1 === type.indexOf(\"-\") &&\n (type !== type.toLowerCase() &&\n console.error(\n \"<%s /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.\",\n type\n ),\n \"[object HTMLUnknownElement]\" !==\n Object.prototype.toString.call(nextResource) ||\n hasOwnProperty.call(warnedUnknownTags, type) ||\n ((warnedUnknownTags[type] = !0),\n console.error(\n \"The tag <%s> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.\",\n type\n )));\n }\n }\n nextResource[internalInstanceKey] = workInProgress;\n nextResource[internalPropsKey] = newProps;\n a: for (\n _currentHostContext = workInProgress.child;\n null !== _currentHostContext;\n\n ) {\n if (\n 5 === _currentHostContext.tag ||\n 6 === _currentHostContext.tag\n )\n nextResource.appendChild(_currentHostContext.stateNode);\n else if (\n 4 !== _currentHostContext.tag &&\n 27 !== _currentHostContext.tag &&\n null !== _currentHostContext.child\n ) {\n _currentHostContext.child.return = _currentHostContext;\n _currentHostContext = _currentHostContext.child;\n continue;\n }\n if (_currentHostContext === workInProgress) break a;\n for (; null === _currentHostContext.sibling; ) {\n if (\n null === _currentHostContext.return ||\n _currentHostContext.return === workInProgress\n )\n break a;\n _currentHostContext = _currentHostContext.return;\n }\n _currentHostContext.sibling.return = _currentHostContext.return;\n _currentHostContext = _currentHostContext.sibling;\n }\n workInProgress.stateNode = nextResource;\n a: switch (\n (setInitialProperties(nextResource, type, newProps), type)\n ) {\n case \"button\":\n case \"input\":\n case \"select\":\n case \"textarea\":\n newProps = !!newProps.autoFocus;\n break a;\n case \"img\":\n newProps = !0;\n break a;\n default:\n newProps = !1;\n }\n newProps && markUpdate(workInProgress);\n }\n }\n bubbleProperties(workInProgress);\n workInProgress.subtreeFlags &= -33554433;\n preloadInstanceAndSuspendIfNeeded(\n workInProgress,\n workInProgress.type,\n null === current ? null : current.memoizedProps,\n workInProgress.pendingProps,\n renderLanes\n );\n return null;\n case 6:\n if (current && null != workInProgress.stateNode)\n current.memoizedProps !== newProps && markUpdate(workInProgress);\n else {\n if (\n \"string\" !== typeof newProps &&\n null === workInProgress.stateNode\n )\n throw Error(\n \"We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.\"\n );\n current = requiredContext(rootInstanceStackCursor.current);\n renderLanes = getHostContext();\n if (popHydrationState(workInProgress)) {\n current = workInProgress.stateNode;\n renderLanes = workInProgress.memoizedProps;\n type = !didSuspendOrErrorDEV;\n newProps = null;\n nextResource = hydrationParentFiber;\n if (null !== nextResource)\n switch (nextResource.tag) {\n case 3:\n type &&\n ((type = diffHydratedTextForDevWarnings(\n current,\n renderLanes,\n newProps\n )),\n null !== type &&\n (buildHydrationDiffNode(workInProgress, 0).serverProps =\n type));\n break;\n case 27:\n case 5:\n (newProps = nextResource.memoizedProps),\n type &&\n ((type = diffHydratedTextForDevWarnings(\n current,\n renderLanes,\n newProps\n )),\n null !== type &&\n (buildHydrationDiffNode(\n workInProgress,\n 0\n ).serverProps = type));\n }\n current[internalInstanceKey] = workInProgress;\n current =\n current.nodeValue === renderLanes ||\n (null !== newProps &&\n !0 === newProps.suppressHydrationWarning) ||\n checkForUnmatchedText(current.nodeValue, renderLanes)\n ? !0\n : !1;\n current || throwOnHydrationMismatch(workInProgress, !0);\n } else\n (type = renderLanes.ancestorInfo.current),\n null != type &&\n validateTextNesting(\n newProps,\n type.tag,\n renderLanes.ancestorInfo.implicitRootScope\n ),\n (current =\n getOwnerDocumentFromRootContainer(current).createTextNode(\n newProps\n )),\n (current[internalInstanceKey] = workInProgress),\n (workInProgress.stateNode = current);\n }\n bubbleProperties(workInProgress);\n return null;\n case 31:\n renderLanes = workInProgress.memoizedState;\n if (null === current || null !== current.memoizedState) {\n newProps = popHydrationState(workInProgress);\n if (null !== renderLanes) {\n if (null === current) {\n if (!newProps)\n throw Error(\n \"A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.\"\n );\n current = workInProgress.memoizedState;\n current = null !== current ? current.dehydrated : null;\n if (!current)\n throw Error(\n \"Expected to have a hydrated activity instance. This error is likely caused by a bug in React. Please file an issue.\"\n );\n current[internalInstanceKey] = workInProgress;\n bubbleProperties(workInProgress);\n (workInProgress.mode & ProfileMode) !== NoMode &&\n null !== renderLanes &&\n ((current = workInProgress.child),\n null !== current &&\n (workInProgress.treeBaseDuration -=\n current.treeBaseDuration));\n } else\n emitPendingHydrationWarnings(),\n resetHydrationState(),\n 0 === (workInProgress.flags & 128) &&\n (renderLanes = workInProgress.memoizedState = null),\n (workInProgress.flags |= 4),\n bubbleProperties(workInProgress),\n (workInProgress.mode & ProfileMode) !== NoMode &&\n null !== renderLanes &&\n ((current = workInProgress.child),\n null !== current &&\n (workInProgress.treeBaseDuration -=\n current.treeBaseDuration));\n current = !1;\n } else\n (renderLanes = upgradeHydrationErrorsToRecoverable()),\n null !== current &&\n null !== current.memoizedState &&\n (current.memoizedState.hydrationErrors = renderLanes),\n (current = !0);\n if (!current) {\n if (workInProgress.flags & 256)\n return popSuspenseHandler(workInProgress), workInProgress;\n popSuspenseHandler(workInProgress);\n return null;\n }\n if (0 !== (workInProgress.flags & 128))\n throw Error(\n \"Client rendering an Activity suspended it again. This is a bug in React.\"\n );\n }\n bubbleProperties(workInProgress);\n return null;\n case 13:\n newProps = workInProgress.memoizedState;\n if (\n null === current ||\n (null !== current.memoizedState &&\n null !== current.memoizedState.dehydrated)\n ) {\n type = newProps;\n nextResource = popHydrationState(workInProgress);\n if (null !== type && null !== type.dehydrated) {\n if (null === current) {\n if (!nextResource)\n throw Error(\n \"A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.\"\n );\n nextResource = workInProgress.memoizedState;\n nextResource =\n null !== nextResource ? nextResource.dehydrated : null;\n if (!nextResource)\n throw Error(\n \"Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.\"\n );\n nextResource[internalInstanceKey] = workInProgress;\n bubbleProperties(workInProgress);\n (workInProgress.mode & ProfileMode) !== NoMode &&\n null !== type &&\n ((type = workInProgress.child),\n null !== type &&\n (workInProgress.treeBaseDuration -= type.treeBaseDuration));\n } else\n emitPendingHydrationWarnings(),\n resetHydrationState(),\n 0 === (workInProgress.flags & 128) &&\n (type = workInProgress.memoizedState = null),\n (workInProgress.flags |= 4),\n bubbleProperties(workInProgress),\n (workInProgress.mode & ProfileMode) !== NoMode &&\n null !== type &&\n ((type = workInProgress.child),\n null !== type &&\n (workInProgress.treeBaseDuration -=\n type.treeBaseDuration));\n type = !1;\n } else\n (type = upgradeHydrationErrorsToRecoverable()),\n null !== current &&\n null !== current.memoizedState &&\n (current.memoizedState.hydrationErrors = type),\n (type = !0);\n if (!type) {\n if (workInProgress.flags & 256)\n return popSuspenseHandler(workInProgress), workInProgress;\n popSuspenseHandler(workInProgress);\n return null;\n }\n }\n popSuspenseHandler(workInProgress);\n if (0 !== (workInProgress.flags & 128))\n return (\n (workInProgress.lanes = renderLanes),\n (workInProgress.mode & ProfileMode) !== NoMode &&\n transferActualDuration(workInProgress),\n workInProgress\n );\n renderLanes = null !== newProps;\n current = null !== current && null !== current.memoizedState;\n renderLanes &&\n ((newProps = workInProgress.child),\n (type = null),\n null !== newProps.alternate &&\n null !== newProps.alternate.memoizedState &&\n null !== newProps.alternate.memoizedState.cachePool &&\n (type = newProps.alternate.memoizedState.cachePool.pool),\n (nextResource = null),\n null !== newProps.memoizedState &&\n null !== newProps.memoizedState.cachePool &&\n (nextResource = newProps.memoizedState.cachePool.pool),\n nextResource !== type && (newProps.flags |= 2048));\n renderLanes !== current &&\n renderLanes &&\n (workInProgress.child.flags |= 8192);\n scheduleRetryEffect(workInProgress, workInProgress.updateQueue);\n bubbleProperties(workInProgress);\n (workInProgress.mode & ProfileMode) !== NoMode &&\n renderLanes &&\n ((current = workInProgress.child),\n null !== current &&\n (workInProgress.treeBaseDuration -= current.treeBaseDuration));\n return null;\n case 4:\n return (\n popHostContainer(workInProgress),\n null === current &&\n listenToAllSupportedEvents(\n workInProgress.stateNode.containerInfo\n ),\n (workInProgress.flags |= 67108864),\n bubbleProperties(workInProgress),\n null\n );\n case 10:\n return (\n popProvider(workInProgress.type, workInProgress),\n bubbleProperties(workInProgress),\n null\n );\n case 19:\n popSuspenseListContext(workInProgress);\n newProps = workInProgress.memoizedState;\n if (null === newProps) return bubbleProperties(workInProgress), null;\n type = 0 !== (workInProgress.flags & 128);\n nextResource = newProps.rendering;\n if (null === nextResource)\n if (type) cutOffTailIfNeeded(newProps, !1);\n else {\n if (\n workInProgressRootExitStatus !== RootInProgress ||\n (null !== current && 0 !== (current.flags & 128))\n )\n for (current = workInProgress.child; null !== current; ) {\n nextResource = findFirstSuspended(current);\n if (null !== nextResource) {\n workInProgress.flags |= 128;\n cutOffTailIfNeeded(newProps, !1);\n current = nextResource.updateQueue;\n workInProgress.updateQueue = current;\n scheduleRetryEffect(workInProgress, current);\n workInProgress.subtreeFlags = 0;\n current = renderLanes;\n for (\n renderLanes = workInProgress.child;\n null !== renderLanes;\n\n )\n resetWorkInProgress(renderLanes, current),\n (renderLanes = renderLanes.sibling);\n pushSuspenseListContext(\n workInProgress,\n (suspenseStackCursor.current &\n SubtreeSuspenseContextMask) |\n ForceSuspenseFallback\n );\n isHydrating &&\n pushTreeFork(workInProgress, newProps.treeForkCount);\n return workInProgress.child;\n }\n current = current.sibling;\n }\n null !== newProps.tail &&\n now$1() > workInProgressRootRenderTargetTime &&\n ((workInProgress.flags |= 128),\n (type = !0),\n cutOffTailIfNeeded(newProps, !1),\n (workInProgress.lanes = 4194304));\n }\n else {\n if (!type)\n if (\n ((current = findFirstSuspended(nextResource)), null !== current)\n ) {\n if (\n ((workInProgress.flags |= 128),\n (type = !0),\n (current = current.updateQueue),\n (workInProgress.updateQueue = current),\n scheduleRetryEffect(workInProgress, current),\n cutOffTailIfNeeded(newProps, !0),\n null === newProps.tail &&\n \"collapsed\" !== newProps.tailMode &&\n \"visible\" !== newProps.tailMode &&\n !nextResource.alternate &&\n !isHydrating)\n )\n return bubbleProperties(workInProgress), null;\n } else\n 2 * now$1() - newProps.renderingStartTime >\n workInProgressRootRenderTargetTime &&\n 536870912 !== renderLanes &&\n ((workInProgress.flags |= 128),\n (type = !0),\n cutOffTailIfNeeded(newProps, !1),\n (workInProgress.lanes = 4194304));\n newProps.isBackwards\n ? ((nextResource.sibling = workInProgress.child),\n (workInProgress.child = nextResource))\n : ((current = newProps.last),\n null !== current\n ? (current.sibling = nextResource)\n : (workInProgress.child = nextResource),\n (newProps.last = nextResource));\n }\n if (null !== newProps.tail) {\n current = newProps.tail;\n a: {\n for (renderLanes = current; null !== renderLanes; ) {\n if (null !== renderLanes.alternate) {\n renderLanes = !1;\n break a;\n }\n renderLanes = renderLanes.sibling;\n }\n renderLanes = !0;\n }\n newProps.rendering = current;\n newProps.tail = current.sibling;\n newProps.renderingStartTime = now$1();\n current.sibling = null;\n nextResource = suspenseStackCursor.current;\n nextResource = type\n ? (nextResource & SubtreeSuspenseContextMask) |\n ForceSuspenseFallback\n : nextResource & SubtreeSuspenseContextMask;\n \"visible\" === newProps.tailMode ||\n \"collapsed\" === newProps.tailMode ||\n !renderLanes ||\n isHydrating\n ? pushSuspenseListContext(workInProgress, nextResource)\n : ((renderLanes = nextResource),\n push(\n suspenseHandlerStackCursor,\n workInProgress,\n workInProgress\n ),\n push(suspenseStackCursor, renderLanes, workInProgress),\n null === shellBoundary && (shellBoundary = workInProgress));\n isHydrating && pushTreeFork(workInProgress, newProps.treeForkCount);\n return current;\n }\n bubbleProperties(workInProgress);\n return null;\n case 22:\n case 23:\n return (\n popSuspenseHandler(workInProgress),\n popHiddenContext(workInProgress),\n (newProps = null !== workInProgress.memoizedState),\n null !== current\n ? (null !== current.memoizedState) !== newProps &&\n (workInProgress.flags |= 8192)\n : newProps && (workInProgress.flags |= 8192),\n newProps\n ? 0 !== (renderLanes & 536870912) &&\n 0 === (workInProgress.flags & 128) &&\n (bubbleProperties(workInProgress),\n workInProgress.subtreeFlags & 6 &&\n (workInProgress.flags |= 8192))\n : bubbleProperties(workInProgress),\n (renderLanes = workInProgress.updateQueue),\n null !== renderLanes &&\n scheduleRetryEffect(workInProgress, renderLanes.retryQueue),\n (renderLanes = null),\n null !== current &&\n null !== current.memoizedState &&\n null !== current.memoizedState.cachePool &&\n (renderLanes = current.memoizedState.cachePool.pool),\n (newProps = null),\n null !== workInProgress.memoizedState &&\n null !== workInProgress.memoizedState.cachePool &&\n (newProps = workInProgress.memoizedState.cachePool.pool),\n newProps !== renderLanes && (workInProgress.flags |= 2048),\n null !== current && pop(resumedCache, workInProgress),\n null\n );\n case 24:\n return (\n (renderLanes = null),\n null !== current && (renderLanes = current.memoizedState.cache),\n workInProgress.memoizedState.cache !== renderLanes &&\n (workInProgress.flags |= 2048),\n popProvider(CacheContext, workInProgress),\n bubbleProperties(workInProgress),\n null\n );\n case 25:\n return null;\n case 30:\n return (\n (workInProgress.flags |= 33554432),\n bubbleProperties(workInProgress),\n null\n );\n }\n throw Error(\n \"Unknown unit of work tag (\" +\n workInProgress.tag +\n \"). This error is likely caused by a bug in React. Please file an issue.\"\n );\n }\n function unwindWork(current, workInProgress) {\n popTreeContext(workInProgress);\n switch (workInProgress.tag) {\n case 1:\n return (\n (current = workInProgress.flags),\n current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128),\n (workInProgress.mode & ProfileMode) !== NoMode &&\n transferActualDuration(workInProgress),\n workInProgress)\n : null\n );\n case 3:\n return (\n popProvider(CacheContext, workInProgress),\n popHostContainer(workInProgress),\n (current = workInProgress.flags),\n 0 !== (current & 65536) && 0 === (current & 128)\n ? ((workInProgress.flags = (current & -65537) | 128),\n workInProgress)\n : null\n );\n case 26:\n case 27:\n case 5:\n return popHostContext(workInProgress), null;\n case 31:\n if (null !== workInProgress.memoizedState) {\n popSuspenseHandler(workInProgress);\n if (null === workInProgress.alternate)\n throw Error(\n \"Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.\"\n );\n resetHydrationState();\n }\n current = workInProgress.flags;\n return current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128),\n (workInProgress.mode & ProfileMode) !== NoMode &&\n transferActualDuration(workInProgress),\n workInProgress)\n : null;\n case 13:\n popSuspenseHandler(workInProgress);\n current = workInProgress.memoizedState;\n if (null !== current && null !== current.dehydrated) {\n if (null === workInProgress.alternate)\n throw Error(\n \"Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.\"\n );\n resetHydrationState();\n }\n current = workInProgress.flags;\n return current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128),\n (workInProgress.mode & ProfileMode) !== NoMode &&\n transferActualDuration(workInProgress),\n workInProgress)\n : null;\n case 19:\n return (\n popSuspenseListContext(workInProgress),\n (current = workInProgress.flags),\n current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128),\n (current = workInProgress.memoizedState),\n null !== current &&\n ((current.rendering = null), (current.tail = null)),\n (workInProgress.flags |= 4),\n workInProgress)\n : null\n );\n case 4:\n return popHostContainer(workInProgress), null;\n case 10:\n return popProvider(workInProgress.type, workInProgress), null;\n case 22:\n case 23:\n return (\n popSuspenseHandler(workInProgress),\n popHiddenContext(workInProgress),\n null !== current && pop(resumedCache, workInProgress),\n (current = workInProgress.flags),\n current & 65536\n ? ((workInProgress.flags = (current & -65537) | 128),\n (workInProgress.mode & ProfileMode) !== NoMode &&\n transferActualDuration(workInProgress),\n workInProgress)\n : null\n );\n case 24:\n return popProvider(CacheContext, workInProgress), null;\n case 25:\n return null;\n default:\n return null;\n }\n }\n function unwindInterruptedWork(current, interruptedWork) {\n popTreeContext(interruptedWork);\n switch (interruptedWork.tag) {\n case 3:\n popProvider(CacheContext, interruptedWork);\n popHostContainer(interruptedWork);\n break;\n case 26:\n case 27:\n case 5:\n popHostContext(interruptedWork);\n break;\n case 4:\n popHostContainer(interruptedWork);\n break;\n case 31:\n null !== interruptedWork.memoizedState &&\n popSuspenseHandler(interruptedWork);\n break;\n case 13:\n popSuspenseHandler(interruptedWork);\n break;\n case 19:\n popSuspenseListContext(interruptedWork);\n break;\n case 10:\n popProvider(interruptedWork.type, interruptedWork);\n break;\n case 22:\n case 23:\n popSuspenseHandler(interruptedWork);\n popHiddenContext(interruptedWork);\n null !== current && pop(resumedCache, interruptedWork);\n break;\n case 24:\n popProvider(CacheContext, interruptedWork);\n }\n }\n function shouldProfile(current) {\n return (current.mode & ProfileMode) !== NoMode;\n }\n function commitHookLayoutEffects(finishedWork, hookFlags) {\n shouldProfile(finishedWork)\n ? (startEffectTimer(),\n commitHookEffectListMount(hookFlags, finishedWork),\n recordEffectDuration())\n : commitHookEffectListMount(hookFlags, finishedWork);\n }\n function commitHookLayoutUnmountEffects(\n finishedWork,\n nearestMountedAncestor,\n hookFlags\n ) {\n shouldProfile(finishedWork)\n ? (startEffectTimer(),\n commitHookEffectListUnmount(\n hookFlags,\n finishedWork,\n nearestMountedAncestor\n ),\n recordEffectDuration())\n : commitHookEffectListUnmount(\n hookFlags,\n finishedWork,\n nearestMountedAncestor\n );\n }\n function commitHookEffectListMount(flags, finishedWork) {\n try {\n var updateQueue = finishedWork.updateQueue,\n lastEffect = null !== updateQueue ? updateQueue.lastEffect : null;\n if (null !== lastEffect) {\n var firstEffect = lastEffect.next;\n updateQueue = firstEffect;\n do {\n if (\n (updateQueue.tag & flags) === flags &&\n ((lastEffect = void 0),\n (flags & Insertion) !== NoFlags &&\n (isRunningInsertionEffect = !0),\n (lastEffect = runWithFiberInDEV(\n finishedWork,\n callCreateInDEV,\n updateQueue\n )),\n (flags & Insertion) !== NoFlags &&\n (isRunningInsertionEffect = !1),\n void 0 !== lastEffect && \"function\" !== typeof lastEffect)\n ) {\n var hookName = void 0;\n hookName =\n 0 !== (updateQueue.tag & Layout)\n ? \"useLayoutEffect\"\n : 0 !== (updateQueue.tag & Insertion)\n ? \"useInsertionEffect\"\n : \"useEffect\";\n var addendum = void 0;\n addendum =\n null === lastEffect\n ? \" You returned null. If your effect does not require clean up, return undefined (or nothing).\"\n : \"function\" === typeof lastEffect.then\n ? \"\\n\\nIt looks like you wrote \" +\n hookName +\n \"(async () => ...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:\\n\\n\" +\n hookName +\n \"(() => {\\n async function fetchData() {\\n // You can await here\\n const response = await MyAPI.getData(someId);\\n // ...\\n }\\n fetchData();\\n}, [someId]); // Or [] if effect doesn't need props or state\\n\\nLearn more about data fetching with Hooks: https://react.dev/link/hooks-data-fetching\"\n : \" You returned: \" + lastEffect;\n runWithFiberInDEV(\n finishedWork,\n function (n, a) {\n console.error(\n \"%s must not return anything besides a function, which is used for clean-up.%s\",\n n,\n a\n );\n },\n hookName,\n addendum\n );\n }\n updateQueue = updateQueue.next;\n } while (updateQueue !== firstEffect);\n }\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n function commitHookEffectListUnmount(\n flags,\n finishedWork,\n nearestMountedAncestor\n ) {\n try {\n var updateQueue = finishedWork.updateQueue,\n lastEffect = null !== updateQueue ? updateQueue.lastEffect : null;\n if (null !== lastEffect) {\n var firstEffect = lastEffect.next;\n updateQueue = firstEffect;\n do {\n if ((updateQueue.tag & flags) === flags) {\n var inst = updateQueue.inst,\n destroy = inst.destroy;\n void 0 !== destroy &&\n ((inst.destroy = void 0),\n (flags & Insertion) !== NoFlags &&\n (isRunningInsertionEffect = !0),\n (lastEffect = finishedWork),\n runWithFiberInDEV(\n lastEffect,\n callDestroyInDEV,\n lastEffect,\n nearestMountedAncestor,\n destroy\n ),\n (flags & Insertion) !== NoFlags &&\n (isRunningInsertionEffect = !1));\n }\n updateQueue = updateQueue.next;\n } while (updateQueue !== firstEffect);\n }\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n function commitHookPassiveMountEffects(finishedWork, hookFlags) {\n shouldProfile(finishedWork)\n ? (startEffectTimer(),\n commitHookEffectListMount(hookFlags, finishedWork),\n recordEffectDuration())\n : commitHookEffectListMount(hookFlags, finishedWork);\n }\n function commitHookPassiveUnmountEffects(\n finishedWork,\n nearestMountedAncestor,\n hookFlags\n ) {\n shouldProfile(finishedWork)\n ? (startEffectTimer(),\n commitHookEffectListUnmount(\n hookFlags,\n finishedWork,\n nearestMountedAncestor\n ),\n recordEffectDuration())\n : commitHookEffectListUnmount(\n hookFlags,\n finishedWork,\n nearestMountedAncestor\n );\n }\n function commitClassCallbacks(finishedWork) {\n var updateQueue = finishedWork.updateQueue;\n if (null !== updateQueue) {\n var instance = finishedWork.stateNode;\n finishedWork.type.defaultProps ||\n \"ref\" in finishedWork.memoizedProps ||\n didWarnAboutReassigningProps ||\n (instance.props !== finishedWork.memoizedProps &&\n console.error(\n \"Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.\",\n getComponentNameFromFiber(finishedWork) || \"instance\"\n ),\n instance.state !== finishedWork.memoizedState &&\n console.error(\n \"Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.\",\n getComponentNameFromFiber(finishedWork) || \"instance\"\n ));\n try {\n runWithFiberInDEV(\n finishedWork,\n commitCallbacks,\n updateQueue,\n instance\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n }\n function callGetSnapshotBeforeUpdates(instance, prevProps, prevState) {\n return instance.getSnapshotBeforeUpdate(prevProps, prevState);\n }\n function commitClassSnapshot(finishedWork, current) {\n var prevProps = current.memoizedProps,\n prevState = current.memoizedState;\n current = finishedWork.stateNode;\n finishedWork.type.defaultProps ||\n \"ref\" in finishedWork.memoizedProps ||\n didWarnAboutReassigningProps ||\n (current.props !== finishedWork.memoizedProps &&\n console.error(\n \"Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.\",\n getComponentNameFromFiber(finishedWork) || \"instance\"\n ),\n current.state !== finishedWork.memoizedState &&\n console.error(\n \"Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.\",\n getComponentNameFromFiber(finishedWork) || \"instance\"\n ));\n try {\n var resolvedPrevProps = resolveClassComponentProps(\n finishedWork.type,\n prevProps\n );\n var snapshot = runWithFiberInDEV(\n finishedWork,\n callGetSnapshotBeforeUpdates,\n current,\n resolvedPrevProps,\n prevState\n );\n prevProps = didWarnAboutUndefinedSnapshotBeforeUpdate;\n void 0 !== snapshot ||\n prevProps.has(finishedWork.type) ||\n (prevProps.add(finishedWork.type),\n runWithFiberInDEV(finishedWork, function () {\n console.error(\n \"%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.\",\n getComponentNameFromFiber(finishedWork)\n );\n }));\n current.__reactInternalSnapshotBeforeUpdate = snapshot;\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n function safelyCallComponentWillUnmount(\n current,\n nearestMountedAncestor,\n instance\n ) {\n instance.props = resolveClassComponentProps(\n current.type,\n current.memoizedProps\n );\n instance.state = current.memoizedState;\n shouldProfile(current)\n ? (startEffectTimer(),\n runWithFiberInDEV(\n current,\n callComponentWillUnmountInDEV,\n current,\n nearestMountedAncestor,\n instance\n ),\n recordEffectDuration())\n : runWithFiberInDEV(\n current,\n callComponentWillUnmountInDEV,\n current,\n nearestMountedAncestor,\n instance\n );\n }\n function commitAttachRef(finishedWork) {\n var ref = finishedWork.ref;\n if (null !== ref) {\n switch (finishedWork.tag) {\n case 26:\n case 27:\n case 5:\n var instanceToUse = finishedWork.stateNode;\n break;\n case 30:\n instanceToUse = finishedWork.stateNode;\n var name = getViewTransitionName(\n finishedWork.memoizedProps,\n instanceToUse\n );\n if (null === instanceToUse.ref || instanceToUse.ref.name !== name)\n instanceToUse.ref = createViewTransitionInstance(name);\n instanceToUse = instanceToUse.ref;\n break;\n case 7:\n null === finishedWork.stateNode &&\n ((instanceToUse = new FragmentInstance(finishedWork)),\n (finishedWork.stateNode = instanceToUse));\n instanceToUse = finishedWork.stateNode;\n break;\n default:\n instanceToUse = finishedWork.stateNode;\n }\n if (\"function\" === typeof ref)\n if (shouldProfile(finishedWork))\n try {\n startEffectTimer(),\n (finishedWork.refCleanup = ref(instanceToUse));\n } finally {\n recordEffectDuration();\n }\n else finishedWork.refCleanup = ref(instanceToUse);\n else\n \"string\" === typeof ref\n ? console.error(\"String refs are no longer supported.\")\n : ref.hasOwnProperty(\"current\") ||\n console.error(\n \"Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().\",\n getComponentNameFromFiber(finishedWork)\n ),\n (ref.current = instanceToUse);\n }\n }\n function safelyAttachRef(current, nearestMountedAncestor) {\n try {\n runWithFiberInDEV(current, commitAttachRef, current);\n } catch (error) {\n captureCommitPhaseError(current, nearestMountedAncestor, error);\n }\n }\n function safelyDetachRef(current, nearestMountedAncestor) {\n var ref = current.ref,\n refCleanup = current.refCleanup;\n if (null !== ref)\n if (\"function\" === typeof refCleanup)\n try {\n if (shouldProfile(current))\n try {\n startEffectTimer(), runWithFiberInDEV(current, refCleanup);\n } finally {\n recordEffectDuration(current);\n }\n else runWithFiberInDEV(current, refCleanup);\n } catch (error) {\n captureCommitPhaseError(current, nearestMountedAncestor, error);\n } finally {\n (current.refCleanup = null),\n (current = current.alternate),\n null != current && (current.refCleanup = null);\n }\n else if (\"function\" === typeof ref)\n try {\n if (shouldProfile(current))\n try {\n startEffectTimer(), runWithFiberInDEV(current, ref, null);\n } finally {\n recordEffectDuration(current);\n }\n else runWithFiberInDEV(current, ref, null);\n } catch (error$7) {\n captureCommitPhaseError(current, nearestMountedAncestor, error$7);\n }\n else ref.current = null;\n }\n function commitProfiler(\n finishedWork,\n current,\n commitStartTime,\n effectDuration\n ) {\n var _finishedWork$memoize = finishedWork.memoizedProps,\n id = _finishedWork$memoize.id,\n onCommit = _finishedWork$memoize.onCommit;\n _finishedWork$memoize = _finishedWork$memoize.onRender;\n current = null === current ? \"mount\" : \"update\";\n currentUpdateIsNested && (current = \"nested-update\");\n \"function\" === typeof _finishedWork$memoize &&\n _finishedWork$memoize(\n id,\n current,\n finishedWork.actualDuration,\n finishedWork.treeBaseDuration,\n finishedWork.actualStartTime,\n commitStartTime\n );\n \"function\" === typeof onCommit &&\n onCommit(id, current, effectDuration, commitStartTime);\n }\n function commitProfilerPostCommitImpl(\n finishedWork,\n current,\n commitStartTime,\n passiveEffectDuration\n ) {\n var _finishedWork$memoize2 = finishedWork.memoizedProps;\n finishedWork = _finishedWork$memoize2.id;\n _finishedWork$memoize2 = _finishedWork$memoize2.onPostCommit;\n current = null === current ? \"mount\" : \"update\";\n currentUpdateIsNested && (current = \"nested-update\");\n \"function\" === typeof _finishedWork$memoize2 &&\n _finishedWork$memoize2(\n finishedWork,\n current,\n passiveEffectDuration,\n commitStartTime\n );\n }\n function commitHostMount(finishedWork) {\n var type = finishedWork.type,\n props = finishedWork.memoizedProps,\n instance = finishedWork.stateNode;\n try {\n runWithFiberInDEV(\n finishedWork,\n commitMount,\n instance,\n type,\n props,\n finishedWork\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n function commitHostUpdate(finishedWork, newProps, oldProps) {\n try {\n runWithFiberInDEV(\n finishedWork,\n commitUpdate,\n finishedWork.stateNode,\n finishedWork.type,\n oldProps,\n newProps,\n finishedWork\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n function commitNewChildToFragmentInstances(fiber, parentFragmentInstances) {\n if (\n 5 === fiber.tag &&\n null === fiber.alternate &&\n null !== parentFragmentInstances\n )\n for (var i = 0; i < parentFragmentInstances.length; i++)\n commitNewChildToFragmentInstance(\n fiber.stateNode,\n parentFragmentInstances[i]\n );\n }\n function commitFragmentInstanceDeletionEffects(fiber) {\n for (var parent = fiber.return; null !== parent; ) {\n if (isFragmentInstanceParent(parent)) {\n var childInstance = fiber.stateNode,\n eventListeners = parent.stateNode._eventListeners;\n if (null !== eventListeners)\n for (var i = 0; i < eventListeners.length; i++) {\n var _eventListeners$i3 = eventListeners[i];\n childInstance.removeEventListener(\n _eventListeners$i3.type,\n _eventListeners$i3.listener,\n _eventListeners$i3.optionsOrUseCapture\n );\n }\n }\n if (isHostParent(parent)) break;\n parent = parent.return;\n }\n }\n function isHostParent(fiber) {\n return (\n 5 === fiber.tag ||\n 3 === fiber.tag ||\n 26 === fiber.tag ||\n (27 === fiber.tag && isSingletonScope(fiber.type)) ||\n 4 === fiber.tag\n );\n }\n function isFragmentInstanceParent(fiber) {\n return fiber && 7 === fiber.tag && null !== fiber.stateNode;\n }\n function getHostSibling(fiber) {\n a: for (;;) {\n for (; null === fiber.sibling; ) {\n if (null === fiber.return || isHostParent(fiber.return)) return null;\n fiber = fiber.return;\n }\n fiber.sibling.return = fiber.return;\n for (\n fiber = fiber.sibling;\n 5 !== fiber.tag && 6 !== fiber.tag && 18 !== fiber.tag;\n\n ) {\n if (27 === fiber.tag && isSingletonScope(fiber.type)) continue a;\n if (fiber.flags & 2) continue a;\n if (null === fiber.child || 4 === fiber.tag) continue a;\n else (fiber.child.return = fiber), (fiber = fiber.child);\n }\n if (!(fiber.flags & 2)) return fiber.stateNode;\n }\n }\n function insertOrAppendPlacementNodeIntoContainer(\n node,\n before,\n parent,\n parentFragmentInstances\n ) {\n var tag = node.tag;\n if (5 === tag || 6 === tag)\n (tag = node.stateNode),\n before\n ? (warnForReactChildrenConflict(parent),\n (9 === parent.nodeType\n ? parent.body\n : \"HTML\" === parent.nodeName\n ? parent.ownerDocument.body\n : parent\n ).insertBefore(tag, before))\n : (warnForReactChildrenConflict(parent),\n (before =\n 9 === parent.nodeType\n ? parent.body\n : \"HTML\" === parent.nodeName\n ? parent.ownerDocument.body\n : parent),\n before.appendChild(tag),\n (tag = parent._reactRootContainer),\n (null !== tag && void 0 !== tag) ||\n null !== before.onclick ||\n (before.onclick = noop$1)),\n commitNewChildToFragmentInstances(node, parentFragmentInstances),\n (viewTransitionMutationContext = !0);\n else if (\n 4 !== tag &&\n (27 === tag &&\n isSingletonScope(node.type) &&\n ((parent = node.stateNode), (before = null)),\n (node = node.child),\n null !== node)\n )\n for (\n insertOrAppendPlacementNodeIntoContainer(\n node,\n before,\n parent,\n parentFragmentInstances\n ),\n node = node.sibling;\n null !== node;\n\n )\n insertOrAppendPlacementNodeIntoContainer(\n node,\n before,\n parent,\n parentFragmentInstances\n ),\n (node = node.sibling);\n }\n function insertOrAppendPlacementNode(\n node,\n before,\n parent,\n parentFragmentInstances\n ) {\n var tag = node.tag;\n if (5 === tag || 6 === tag)\n (tag = node.stateNode),\n before ? parent.insertBefore(tag, before) : parent.appendChild(tag),\n commitNewChildToFragmentInstances(node, parentFragmentInstances),\n (viewTransitionMutationContext = !0);\n else if (\n 4 !== tag &&\n (27 === tag && isSingletonScope(node.type) && (parent = node.stateNode),\n (node = node.child),\n null !== node)\n )\n for (\n insertOrAppendPlacementNode(\n node,\n before,\n parent,\n parentFragmentInstances\n ),\n node = node.sibling;\n null !== node;\n\n )\n insertOrAppendPlacementNode(\n node,\n before,\n parent,\n parentFragmentInstances\n ),\n (node = node.sibling);\n }\n function commitPlacement(finishedWork) {\n for (\n var hostParentFiber,\n parentFragmentInstances = null,\n parentFiber = finishedWork.return;\n null !== parentFiber;\n\n ) {\n if (isFragmentInstanceParent(parentFiber)) {\n var fragmentInstance = parentFiber.stateNode;\n null === parentFragmentInstances\n ? (parentFragmentInstances = [fragmentInstance])\n : parentFragmentInstances.push(fragmentInstance);\n }\n if (isHostParent(parentFiber)) {\n hostParentFiber = parentFiber;\n break;\n }\n parentFiber = parentFiber.return;\n }\n if (null == hostParentFiber)\n throw Error(\n \"Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.\"\n );\n switch (hostParentFiber.tag) {\n case 27:\n hostParentFiber = hostParentFiber.stateNode;\n parentFiber = getHostSibling(finishedWork);\n insertOrAppendPlacementNode(\n finishedWork,\n parentFiber,\n hostParentFiber,\n parentFragmentInstances\n );\n break;\n case 5:\n parentFiber = hostParentFiber.stateNode;\n hostParentFiber.flags & 32 &&\n (resetTextContent(parentFiber), (hostParentFiber.flags &= -33));\n hostParentFiber = getHostSibling(finishedWork);\n insertOrAppendPlacementNode(\n finishedWork,\n hostParentFiber,\n parentFiber,\n parentFragmentInstances\n );\n break;\n case 3:\n case 4:\n hostParentFiber = hostParentFiber.stateNode.containerInfo;\n parentFiber = getHostSibling(finishedWork);\n insertOrAppendPlacementNodeIntoContainer(\n finishedWork,\n parentFiber,\n hostParentFiber,\n parentFragmentInstances\n );\n break;\n default:\n throw Error(\n \"Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.\"\n );\n }\n }\n function commitHostSingletonAcquisition(finishedWork) {\n var singleton = finishedWork.stateNode,\n props = finishedWork.memoizedProps;\n try {\n runWithFiberInDEV(\n finishedWork,\n acquireSingletonInstance,\n finishedWork.type,\n props,\n singleton,\n finishedWork\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n function trackEnterViewTransitions(placement) {\n if (30 === placement.tag || 0 !== (placement.subtreeFlags & 33554432))\n shouldStartViewTransition = !0;\n }\n function pushViewTransitionCancelableScope() {\n var prevChildren = viewTransitionCancelableChildren;\n viewTransitionCancelableChildren = null;\n return prevChildren;\n }\n function applyViewTransitionToHostInstances(\n fiber,\n name,\n className,\n collectMeasurements,\n stopAtNestedViewTransitions\n ) {\n viewTransitionHostInstanceIdx = 0;\n (name = applyViewTransitionToHostInstancesRecursive(\n fiber.child,\n name,\n className,\n collectMeasurements,\n stopAtNestedViewTransitions\n )) &&\n null != fiber._debugTask &&\n null === animatingTask &&\n (animatingTask = fiber._debugTask);\n return name;\n }\n function applyViewTransitionToHostInstancesRecursive(\n child,\n name,\n className,\n collectMeasurements,\n stopAtNestedViewTransitions\n ) {\n for (var inViewport = !1; null !== child; ) {\n if (5 === child.tag) {\n var instance = child.stateNode;\n if (null !== collectMeasurements) {\n var measurement = measureInstance(instance);\n collectMeasurements.push(measurement);\n measurement.view && (inViewport = !0);\n } else\n inViewport || (measureInstance(instance).view && (inViewport = !0));\n shouldStartViewTransition = !0;\n applyViewTransitionName(\n instance,\n 0 === viewTransitionHostInstanceIdx\n ? name\n : name + \"_\" + viewTransitionHostInstanceIdx,\n className\n );\n viewTransitionHostInstanceIdx++;\n } else if (22 !== child.tag || null === child.memoizedState)\n (30 === child.tag && stopAtNestedViewTransitions) ||\n (applyViewTransitionToHostInstancesRecursive(\n child.child,\n name,\n className,\n collectMeasurements,\n stopAtNestedViewTransitions\n ) &&\n (inViewport = !0));\n child = child.sibling;\n }\n return inViewport;\n }\n function restoreViewTransitionOnHostInstances(\n child,\n stopAtNestedViewTransitions\n ) {\n for (; null !== child; ) {\n if (5 === child.tag)\n restoreViewTransitionName(child.stateNode, child.memoizedProps);\n else if (22 !== child.tag || null === child.memoizedState)\n (30 === child.tag && stopAtNestedViewTransitions) ||\n restoreViewTransitionOnHostInstances(\n child.child,\n stopAtNestedViewTransitions\n );\n child = child.sibling;\n }\n }\n function commitAppearingPairViewTransitions(placement) {\n if (0 !== (placement.subtreeFlags & 18874368))\n for (placement = placement.child; null !== placement; ) {\n if (22 !== placement.tag || null === placement.memoizedState)\n if (\n (commitAppearingPairViewTransitions(placement),\n 30 === placement.tag &&\n 0 !== (placement.flags & 18874368) &&\n placement.stateNode.paired)\n ) {\n var props = placement.memoizedProps;\n if (null == props.name || \"auto\" === props.name)\n throw Error(\n \"Found a pair with an auto name. This is a bug in React.\"\n );\n var name = props.name;\n props = getViewTransitionClassName(props.default, props.share);\n \"none\" !== props &&\n (applyViewTransitionToHostInstances(\n placement,\n name,\n props,\n null,\n !1\n ) ||\n restoreViewTransitionOnHostInstances(placement.child, !1));\n }\n placement = placement.sibling;\n }\n }\n function commitEnterViewTransitions(placement, gesture) {\n if (30 === placement.tag) {\n var state = placement.stateNode,\n props = placement.memoizedProps,\n name = getViewTransitionName(props, state),\n className = getViewTransitionClassName(\n props.default,\n state.paired ? props.share : props.enter\n );\n \"none\" !== className\n ? applyViewTransitionToHostInstances(\n placement,\n name,\n className,\n null,\n !1\n )\n ? (commitAppearingPairViewTransitions(placement),\n state.paired ||\n gesture ||\n scheduleViewTransitionEvent(placement, props.onEnter))\n : restoreViewTransitionOnHostInstances(placement.child, !1)\n : commitAppearingPairViewTransitions(placement);\n } else if (0 !== (placement.subtreeFlags & 33554432))\n for (placement = placement.child; null !== placement; )\n commitEnterViewTransitions(placement, gesture),\n (placement = placement.sibling);\n else commitAppearingPairViewTransitions(placement);\n }\n function commitDeletedPairViewTransitions(deletion) {\n if (\n null !== appearingViewTransitions &&\n 0 !== appearingViewTransitions.size\n ) {\n var pairs = appearingViewTransitions;\n if (0 !== (deletion.subtreeFlags & 18874368))\n for (deletion = deletion.child; null !== deletion; ) {\n if (22 !== deletion.tag || null === deletion.memoizedState) {\n if (30 === deletion.tag && 0 !== (deletion.flags & 18874368)) {\n var props = deletion.memoizedProps,\n name = props.name;\n if (null != name && \"auto\" !== name) {\n var pair = pairs.get(name);\n if (void 0 !== pair) {\n var className = getViewTransitionClassName(\n props.default,\n props.share\n );\n \"none\" !== className &&\n (applyViewTransitionToHostInstances(\n deletion,\n name,\n className,\n null,\n !1\n )\n ? ((className = deletion.stateNode),\n (pair.paired = className),\n (className.paired = pair),\n scheduleViewTransitionEvent(deletion, props.onShare))\n : restoreViewTransitionOnHostInstances(\n deletion.child,\n !1\n ));\n pairs.delete(name);\n if (0 === pairs.size) break;\n }\n }\n }\n commitDeletedPairViewTransitions(deletion);\n }\n deletion = deletion.sibling;\n }\n }\n }\n function commitExitViewTransitions(deletion) {\n if (30 === deletion.tag) {\n var props = deletion.memoizedProps,\n name = getViewTransitionName(props, deletion.stateNode),\n pair =\n null !== appearingViewTransitions\n ? appearingViewTransitions.get(name)\n : void 0,\n className = getViewTransitionClassName(\n props.default,\n void 0 !== pair ? props.share : props.exit\n );\n \"none\" !== className &&\n (applyViewTransitionToHostInstances(\n deletion,\n name,\n className,\n null,\n !1\n )\n ? void 0 !== pair\n ? ((className = deletion.stateNode),\n (pair.paired = className),\n (className.paired = pair),\n appearingViewTransitions.delete(name),\n scheduleViewTransitionEvent(deletion, props.onShare))\n : scheduleViewTransitionEvent(deletion, props.onExit)\n : restoreViewTransitionOnHostInstances(deletion.child, !1));\n null !== appearingViewTransitions &&\n commitDeletedPairViewTransitions(deletion);\n } else if (0 !== (deletion.subtreeFlags & 33554432))\n for (deletion = deletion.child; null !== deletion; )\n commitExitViewTransitions(deletion), (deletion = deletion.sibling);\n else\n null !== appearingViewTransitions &&\n commitDeletedPairViewTransitions(deletion);\n }\n function commitNestedViewTransitions(changedParent) {\n for (changedParent = changedParent.child; null !== changedParent; ) {\n if (30 === changedParent.tag) {\n var props = changedParent.memoizedProps,\n name = getViewTransitionName(props, changedParent.stateNode);\n props = getViewTransitionClassName(props.default, props.update);\n changedParent.flags &= -5;\n \"none\" !== props &&\n applyViewTransitionToHostInstances(\n changedParent,\n name,\n props,\n (changedParent.memoizedState = []),\n !1\n );\n } else\n 0 !== (changedParent.subtreeFlags & 33554432) &&\n commitNestedViewTransitions(changedParent);\n changedParent = changedParent.sibling;\n }\n }\n function restorePairedViewTransitions(parent) {\n if (0 !== (parent.subtreeFlags & 18874368))\n for (parent = parent.child; null !== parent; ) {\n if (22 !== parent.tag || null === parent.memoizedState) {\n if (30 === parent.tag && 0 !== (parent.flags & 18874368)) {\n var instance = parent.stateNode;\n null !== instance.paired &&\n ((instance.paired = null),\n restoreViewTransitionOnHostInstances(parent.child, !1));\n }\n restorePairedViewTransitions(parent);\n }\n parent = parent.sibling;\n }\n }\n function restoreEnterOrExitViewTransitions(fiber) {\n if (30 === fiber.tag)\n (fiber.stateNode.paired = null),\n restoreViewTransitionOnHostInstances(fiber.child, !1),\n restorePairedViewTransitions(fiber);\n else if (0 !== (fiber.subtreeFlags & 33554432))\n for (fiber = fiber.child; null !== fiber; )\n restoreEnterOrExitViewTransitions(fiber), (fiber = fiber.sibling);\n else restorePairedViewTransitions(fiber);\n }\n function restoreNestedViewTransitions(changedParent) {\n for (changedParent = changedParent.child; null !== changedParent; )\n 30 === changedParent.tag\n ? restoreViewTransitionOnHostInstances(changedParent.child, !1)\n : 0 !== (changedParent.subtreeFlags & 33554432) &&\n restoreNestedViewTransitions(changedParent),\n (changedParent = changedParent.sibling);\n }\n function measureViewTransitionHostInstancesRecursive(\n parentViewTransition,\n child,\n newName,\n oldName,\n className,\n previousMeasurements,\n stopAtNestedViewTransitions\n ) {\n for (var inViewport = !1; null !== child; ) {\n if (5 === child.tag) {\n var instance = child.stateNode;\n if (\n null !== previousMeasurements &&\n viewTransitionHostInstanceIdx < previousMeasurements.length\n ) {\n var previousMeasurement =\n previousMeasurements[viewTransitionHostInstanceIdx],\n nextMeasurement = measureInstance(instance);\n if (previousMeasurement.view || nextMeasurement.view)\n inViewport = !0;\n var JSCompiler_temp;\n if ((JSCompiler_temp = 0 === (parentViewTransition.flags & 4)))\n if (nextMeasurement.clip) JSCompiler_temp = !0;\n else {\n JSCompiler_temp = previousMeasurement.rect;\n var newRect = nextMeasurement.rect;\n JSCompiler_temp =\n JSCompiler_temp.y !== newRect.y ||\n JSCompiler_temp.x !== newRect.x ||\n JSCompiler_temp.height !== newRect.height ||\n JSCompiler_temp.width !== newRect.width;\n }\n JSCompiler_temp && (parentViewTransition.flags |= 4);\n nextMeasurement.abs\n ? (nextMeasurement = !previousMeasurement.abs)\n : ((previousMeasurement = previousMeasurement.rect),\n (nextMeasurement = nextMeasurement.rect),\n (nextMeasurement =\n previousMeasurement.height !== nextMeasurement.height ||\n previousMeasurement.width !== nextMeasurement.width));\n nextMeasurement && (parentViewTransition.flags |= 32);\n } else parentViewTransition.flags |= 32;\n 0 !== (parentViewTransition.flags & 4) &&\n applyViewTransitionName(\n instance,\n 0 === viewTransitionHostInstanceIdx\n ? newName\n : newName + \"_\" + viewTransitionHostInstanceIdx,\n className\n );\n (inViewport && 0 !== (parentViewTransition.flags & 4)) ||\n (null === viewTransitionCancelableChildren &&\n (viewTransitionCancelableChildren = []),\n viewTransitionCancelableChildren.push(\n instance,\n oldName,\n child.memoizedProps\n ));\n viewTransitionHostInstanceIdx++;\n } else if (22 !== child.tag || null === child.memoizedState)\n 30 === child.tag && stopAtNestedViewTransitions\n ? (parentViewTransition.flags |= child.flags & 32)\n : measureViewTransitionHostInstancesRecursive(\n parentViewTransition,\n child.child,\n newName,\n oldName,\n className,\n previousMeasurements,\n stopAtNestedViewTransitions\n ) && (inViewport = !0);\n child = child.sibling;\n }\n return inViewport;\n }\n function measureNestedViewTransitions(changedParent, gesture) {\n for (changedParent = changedParent.child; null !== changedParent; ) {\n if (30 === changedParent.tag) {\n var props = changedParent.memoizedProps,\n state = changedParent.stateNode,\n name = getViewTransitionName(props, state),\n className = getViewTransitionClassName(props.default, props.update);\n if (gesture) {\n state = state.clones;\n var previousMeasurements =\n null === state ? null : state.map(measureClonedInstance);\n } else\n (previousMeasurements = changedParent.memoizedState),\n (changedParent.memoizedState = null);\n state = changedParent;\n var child = changedParent.child,\n newName = name;\n viewTransitionHostInstanceIdx = 0;\n className = measureViewTransitionHostInstancesRecursive(\n state,\n child,\n newName,\n name,\n className,\n previousMeasurements,\n !1\n );\n 0 !== (changedParent.flags & 4) &&\n className &&\n (gesture ||\n scheduleViewTransitionEvent(changedParent, props.onUpdate));\n } else\n 0 !== (changedParent.subtreeFlags & 33554432) &&\n measureNestedViewTransitions(changedParent, gesture);\n changedParent = changedParent.sibling;\n }\n }\n function trackNamedViewTransition(fiber) {\n var name = fiber.memoizedProps.name;\n if (null != name && \"auto\" !== name) {\n var existing = mountedNamedViewTransitions.get(name);\n if (void 0 !== existing) {\n if (\n existing !== fiber &&\n existing !== fiber.alternate &&\n !didWarnAboutName[name]\n ) {\n didWarnAboutName[name] = !0;\n var stringifiedName = JSON.stringify(name);\n runWithFiberInDEV(fiber, function () {\n console.error(\n \"There are two <ViewTransition name=%s> components with the same name mounted at the same time. This is not supported and will cause View Transitions to error. Try to use a more unique name e.g. by using a namespace prefix and adding the id of an item to the name.\",\n stringifiedName\n );\n });\n runWithFiberInDEV(existing, function () {\n console.error(\n \"The existing <ViewTransition name=%s> duplicate has this stack trace.\",\n stringifiedName\n );\n });\n }\n } else mountedNamedViewTransitions.set(name, fiber);\n }\n }\n function untrackNamedViewTransition(fiber) {\n var name = fiber.memoizedProps.name;\n if (null != name && \"auto\" !== name) {\n var existing = mountedNamedViewTransitions.get(name);\n void 0 === existing ||\n (existing !== fiber && existing !== fiber.alternate) ||\n mountedNamedViewTransitions.delete(name);\n }\n }\n function isHydratingParent(current, finishedWork) {\n return 31 === finishedWork.tag\n ? ((finishedWork = finishedWork.memoizedState),\n null !== current.memoizedState && null === finishedWork)\n : 13 === finishedWork.tag\n ? ((current = current.memoizedState),\n (finishedWork = finishedWork.memoizedState),\n null !== current &&\n null !== current.dehydrated &&\n (null === finishedWork || null === finishedWork.dehydrated))\n : 3 === finishedWork.tag\n ? current.memoizedState.isDehydrated &&\n 0 === (finishedWork.flags & 256)\n : !1;\n }\n function commitBeforeMutationEffects(root, firstChild, committedLanes) {\n root = root.containerInfo;\n eventsEnabled = _enabled;\n root = getActiveElementDeep(root);\n if (hasSelectionCapabilities(root)) {\n if (\"selectionStart\" in root)\n var JSCompiler_temp = {\n start: root.selectionStart,\n end: root.selectionEnd\n };\n else\n a: {\n JSCompiler_temp =\n ((JSCompiler_temp = root.ownerDocument) &&\n JSCompiler_temp.defaultView) ||\n window;\n var selection =\n JSCompiler_temp.getSelection && JSCompiler_temp.getSelection();\n if (selection && 0 !== selection.rangeCount) {\n JSCompiler_temp = selection.anchorNode;\n var anchorOffset = selection.anchorOffset,\n focusNode = selection.focusNode;\n selection = selection.focusOffset;\n try {\n JSCompiler_temp.nodeType, focusNode.nodeType;\n } catch (e$2) {\n JSCompiler_temp = null;\n break a;\n }\n var length = 0,\n start = -1,\n end = -1,\n indexWithinAnchor = 0,\n indexWithinFocus = 0,\n node = root,\n parentNode = null;\n b: for (;;) {\n for (var next; ; ) {\n node !== JSCompiler_temp ||\n (0 !== anchorOffset && 3 !== node.nodeType) ||\n (start = length + anchorOffset);\n node !== focusNode ||\n (0 !== selection && 3 !== node.nodeType) ||\n (end = length + selection);\n 3 === node.nodeType && (length += node.nodeValue.length);\n if (null === (next = node.firstChild)) break;\n parentNode = node;\n node = next;\n }\n for (;;) {\n if (node === root) break b;\n parentNode === JSCompiler_temp &&\n ++indexWithinAnchor === anchorOffset &&\n (start = length);\n parentNode === focusNode &&\n ++indexWithinFocus === selection &&\n (end = length);\n if (null !== (next = node.nextSibling)) break;\n node = parentNode;\n parentNode = node.parentNode;\n }\n node = next;\n }\n JSCompiler_temp =\n -1 === start || -1 === end ? null : { start: start, end: end };\n } else JSCompiler_temp = null;\n }\n JSCompiler_temp = JSCompiler_temp || { start: 0, end: 0 };\n } else JSCompiler_temp = null;\n selectionInformation = {\n focusedElem: root,\n selectionRange: JSCompiler_temp\n };\n _enabled = !1;\n committedLanes = (committedLanes & 335544064) === committedLanes;\n nextEffect = firstChild;\n for (firstChild = committedLanes ? 9270 : 1028; null !== nextEffect; ) {\n root = nextEffect;\n if (\n committedLanes &&\n ((JSCompiler_temp = root.deletions), null !== JSCompiler_temp)\n )\n for (\n anchorOffset = 0;\n anchorOffset < JSCompiler_temp.length;\n anchorOffset++\n )\n committedLanes &&\n commitExitViewTransitions(JSCompiler_temp[anchorOffset]);\n if (null === root.alternate && 0 !== (root.flags & 2))\n committedLanes && trackEnterViewTransitions(root),\n commitBeforeMutationEffects_complete(committedLanes);\n else {\n if (22 === root.tag)\n if (\n ((JSCompiler_temp = root.alternate), null !== root.memoizedState)\n ) {\n null !== JSCompiler_temp &&\n null === JSCompiler_temp.memoizedState &&\n committedLanes &&\n commitExitViewTransitions(JSCompiler_temp);\n commitBeforeMutationEffects_complete(committedLanes);\n continue;\n } else if (\n null !== JSCompiler_temp &&\n null !== JSCompiler_temp.memoizedState\n ) {\n committedLanes && trackEnterViewTransitions(root);\n commitBeforeMutationEffects_complete(committedLanes);\n continue;\n }\n JSCompiler_temp = root.child;\n 0 !== (root.subtreeFlags & firstChild) && null !== JSCompiler_temp\n ? ((JSCompiler_temp.return = root), (nextEffect = JSCompiler_temp))\n : (committedLanes && commitNestedViewTransitions(root),\n commitBeforeMutationEffects_complete(committedLanes));\n }\n }\n appearingViewTransitions = null;\n }\n function commitBeforeMutationEffects_complete(\n isViewTransitionEligible$jscomp$0\n ) {\n for (; null !== nextEffect; ) {\n var fiber = nextEffect,\n finishedWork = fiber,\n isViewTransitionEligible = isViewTransitionEligible$jscomp$0,\n current = finishedWork.alternate,\n flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n if (\n 0 !== (flags & 4) &&\n ((isViewTransitionEligible = finishedWork.updateQueue),\n (isViewTransitionEligible =\n null !== isViewTransitionEligible\n ? isViewTransitionEligible.events\n : null),\n null !== isViewTransitionEligible)\n )\n for (\n finishedWork = 0;\n finishedWork < isViewTransitionEligible.length;\n finishedWork++\n )\n (current = isViewTransitionEligible[finishedWork]),\n (current.ref.impl = current.nextImpl);\n break;\n case 1:\n 0 !== (flags & 1024) &&\n null !== current &&\n commitClassSnapshot(finishedWork, current);\n break;\n case 3:\n if (0 !== (flags & 1024))\n if (\n ((isViewTransitionEligible =\n finishedWork.stateNode.containerInfo),\n (finishedWork = isViewTransitionEligible.nodeType),\n 9 === finishedWork)\n )\n clearContainerSparingly(isViewTransitionEligible);\n else if (1 === finishedWork)\n switch (isViewTransitionEligible.nodeName) {\n case \"HEAD\":\n case \"HTML\":\n case \"BODY\":\n clearContainerSparingly(isViewTransitionEligible);\n break;\n default:\n isViewTransitionEligible.textContent = \"\";\n }\n break;\n case 5:\n case 26:\n case 27:\n case 6:\n case 4:\n case 17:\n break;\n case 30:\n isViewTransitionEligible &&\n null !== current &&\n ((isViewTransitionEligible = current),\n (current = finishedWork),\n (finishedWork = getViewTransitionName(\n isViewTransitionEligible.memoizedProps,\n isViewTransitionEligible.stateNode\n )),\n (current = current.memoizedProps),\n (current = getViewTransitionClassName(\n current.default,\n current.update\n )),\n \"none\" !== current &&\n applyViewTransitionToHostInstances(\n isViewTransitionEligible,\n finishedWork,\n current,\n (isViewTransitionEligible.memoizedState = []),\n !0\n ));\n break;\n default:\n if (0 !== (flags & 1024))\n throw Error(\n \"This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.\"\n );\n }\n isViewTransitionEligible = fiber.sibling;\n if (null !== isViewTransitionEligible) {\n isViewTransitionEligible.return = fiber.return;\n nextEffect = isViewTransitionEligible;\n break;\n }\n nextEffect = fiber.return;\n }\n }\n function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(),\n flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n flags & 4 &&\n commitHookLayoutEffects(finishedWork, Layout | HasEffect);\n break;\n case 1:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n if (flags & 4)\n if (((finishedRoot = finishedWork.stateNode), null === current))\n finishedWork.type.defaultProps ||\n \"ref\" in finishedWork.memoizedProps ||\n didWarnAboutReassigningProps ||\n (finishedRoot.props !== finishedWork.memoizedProps &&\n console.error(\n \"Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.\",\n getComponentNameFromFiber(finishedWork) || \"instance\"\n ),\n finishedRoot.state !== finishedWork.memoizedState &&\n console.error(\n \"Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.\",\n getComponentNameFromFiber(finishedWork) || \"instance\"\n )),\n shouldProfile(finishedWork)\n ? (startEffectTimer(),\n runWithFiberInDEV(\n finishedWork,\n callComponentDidMountInDEV,\n finishedWork,\n finishedRoot\n ),\n recordEffectDuration())\n : runWithFiberInDEV(\n finishedWork,\n callComponentDidMountInDEV,\n finishedWork,\n finishedRoot\n );\n else {\n var prevProps = resolveClassComponentProps(\n finishedWork.type,\n current.memoizedProps\n );\n current = current.memoizedState;\n finishedWork.type.defaultProps ||\n \"ref\" in finishedWork.memoizedProps ||\n didWarnAboutReassigningProps ||\n (finishedRoot.props !== finishedWork.memoizedProps &&\n console.error(\n \"Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.\",\n getComponentNameFromFiber(finishedWork) || \"instance\"\n ),\n finishedRoot.state !== finishedWork.memoizedState &&\n console.error(\n \"Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.\",\n getComponentNameFromFiber(finishedWork) || \"instance\"\n ));\n shouldProfile(finishedWork)\n ? (startEffectTimer(),\n runWithFiberInDEV(\n finishedWork,\n callComponentDidUpdateInDEV,\n finishedWork,\n finishedRoot,\n prevProps,\n current,\n finishedRoot.__reactInternalSnapshotBeforeUpdate\n ),\n recordEffectDuration())\n : runWithFiberInDEV(\n finishedWork,\n callComponentDidUpdateInDEV,\n finishedWork,\n finishedRoot,\n prevProps,\n current,\n finishedRoot.__reactInternalSnapshotBeforeUpdate\n );\n }\n flags & 64 && commitClassCallbacks(finishedWork);\n flags & 512 && safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 3:\n current = pushNestedEffectDurations();\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n if (\n flags & 64 &&\n ((flags = finishedWork.updateQueue), null !== flags)\n ) {\n prevProps = null;\n if (null !== finishedWork.child)\n switch (finishedWork.child.tag) {\n case 27:\n case 5:\n prevProps = finishedWork.child.stateNode;\n break;\n case 1:\n prevProps = finishedWork.child.stateNode;\n }\n try {\n runWithFiberInDEV(\n finishedWork,\n commitCallbacks,\n flags,\n prevProps\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n finishedRoot.effectDuration += popNestedEffectDurations(current);\n break;\n case 27:\n null === current &&\n flags & 4 &&\n commitHostSingletonAcquisition(finishedWork);\n case 26:\n case 5:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n if (null === current)\n if (flags & 4) commitHostMount(finishedWork);\n else if (flags & 64) {\n finishedRoot = finishedWork.type;\n current = finishedWork.memoizedProps;\n prevProps = finishedWork.stateNode;\n try {\n runWithFiberInDEV(\n finishedWork,\n commitHydratedInstance,\n prevProps,\n finishedRoot,\n current,\n finishedWork\n );\n } catch (error) {\n captureCommitPhaseError(\n finishedWork,\n finishedWork.return,\n error\n );\n }\n }\n flags & 512 && safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 12:\n if (flags & 4) {\n flags = pushNestedEffectDurations();\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n finishedRoot = finishedWork.stateNode;\n finishedRoot.effectDuration += bubbleNestedEffectDurations(flags);\n try {\n runWithFiberInDEV(\n finishedWork,\n commitProfiler,\n finishedWork,\n current,\n commitStartTime,\n finishedRoot.effectDuration\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n } else recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n break;\n case 31:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n flags & 4 &&\n commitActivityHydrationCallbacks(finishedRoot, finishedWork);\n break;\n case 13:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n flags & 4 &&\n commitSuspenseHydrationCallbacks(finishedRoot, finishedWork);\n flags & 64 &&\n ((finishedRoot = finishedWork.memoizedState),\n null !== finishedRoot &&\n ((finishedRoot = finishedRoot.dehydrated),\n null !== finishedRoot &&\n ((flags = retryDehydratedSuspenseBoundary.bind(\n null,\n finishedWork\n )),\n registerSuspenseInstanceRetry(finishedRoot, flags))));\n break;\n case 22:\n flags =\n null !== finishedWork.memoizedState || offscreenSubtreeIsHidden;\n if (!flags) {\n current =\n (null !== current && null !== current.memoizedState) ||\n offscreenSubtreeWasHidden;\n prevProps = offscreenSubtreeIsHidden;\n var prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden;\n offscreenSubtreeIsHidden = flags;\n (offscreenSubtreeWasHidden = current) &&\n !prevOffscreenSubtreeWasHidden\n ? (recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n 0 !== (finishedWork.subtreeFlags & 8772)\n ),\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n logComponentReappeared(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime\n ))\n : recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n offscreenSubtreeIsHidden = prevProps;\n offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;\n }\n break;\n case 30:\n flags & 18874368 && trackNamedViewTransition(finishedWork);\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n flags & 512 && safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 7:\n flags & 512 && safelyAttachRef(finishedWork, finishedWork.return);\n default:\n recursivelyTraverseLayoutEffects(finishedRoot, finishedWork);\n }\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n ((componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n ),\n null === finishedWork.alternate &&\n null !== finishedWork.return &&\n null !== finishedWork.return.alternate &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n (isHydratingParent(\n finishedWork.return.alternate,\n finishedWork.return\n ) ||\n logComponentTrigger(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n \"Mount\"\n )));\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectErrors = prevEffectErrors;\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n }\n function hideOrUnhideAllChildren(parentFiber, isHidden) {\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n hideOrUnhideAllChildrenOnFiber(parentFiber, isHidden),\n (parentFiber = parentFiber.sibling);\n }\n function hideOrUnhideAllChildrenOnFiber(fiber, isHidden) {\n switch (fiber.tag) {\n case 5:\n case 26:\n try {\n var instance = fiber.stateNode;\n isHidden\n ? runWithFiberInDEV(fiber, hideInstance, instance)\n : runWithFiberInDEV(\n fiber,\n unhideInstance,\n fiber.stateNode,\n fiber.memoizedProps\n );\n } catch (error) {\n captureCommitPhaseError(fiber, fiber.return, error);\n }\n hideOrUnhideNearestPortals(fiber, isHidden);\n break;\n case 6:\n try {\n var instance$jscomp$0 = fiber.stateNode;\n isHidden\n ? runWithFiberInDEV(fiber, hideTextInstance, instance$jscomp$0)\n : runWithFiberInDEV(\n fiber,\n unhideTextInstance,\n instance$jscomp$0,\n fiber.memoizedProps\n );\n viewTransitionMutationContext = !0;\n } catch (error) {\n captureCommitPhaseError(fiber, fiber.return, error);\n }\n break;\n case 18:\n try {\n var instance$jscomp$1 = fiber.stateNode;\n isHidden\n ? runWithFiberInDEV(\n fiber,\n hideDehydratedBoundary,\n instance$jscomp$1\n )\n : runWithFiberInDEV(\n fiber,\n unhideDehydratedBoundary,\n fiber.stateNode\n );\n } catch (error) {\n captureCommitPhaseError(fiber, fiber.return, error);\n }\n break;\n case 22:\n case 23:\n null === fiber.memoizedState &&\n hideOrUnhideAllChildren(fiber, isHidden);\n break;\n default:\n hideOrUnhideAllChildren(fiber, isHidden);\n }\n }\n function hideOrUnhideNearestPortals(parentFiber, isHidden$jscomp$0) {\n if (parentFiber.subtreeFlags & 67108864)\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n a: {\n var fiber = parentFiber,\n isHidden = isHidden$jscomp$0;\n switch (fiber.tag) {\n case 4:\n hideOrUnhideAllChildrenOnFiber(fiber, isHidden);\n break a;\n case 22:\n null === fiber.memoizedState &&\n hideOrUnhideNearestPortals(fiber, isHidden);\n break a;\n default:\n hideOrUnhideNearestPortals(fiber, isHidden);\n }\n }\n parentFiber = parentFiber.sibling;\n }\n }\n function detachFiberAfterEffects(fiber) {\n var alternate = fiber.alternate;\n null !== alternate &&\n ((fiber.alternate = null), detachFiberAfterEffects(alternate));\n fiber.child = null;\n fiber.deletions = null;\n fiber.sibling = null;\n 5 === fiber.tag &&\n ((alternate = fiber.stateNode),\n null !== alternate && detachDeletedInstance(alternate));\n fiber.stateNode = null;\n fiber._debugOwner = null;\n fiber.return = null;\n fiber.dependencies = null;\n fiber.memoizedProps = null;\n fiber.memoizedState = null;\n fiber.pendingProps = null;\n fiber.stateNode = null;\n fiber.updateQueue = null;\n }\n function recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n parent\n ) {\n for (parent = parent.child; null !== parent; )\n commitDeletionEffectsOnFiber(\n finishedRoot,\n nearestMountedAncestor,\n parent\n ),\n (parent = parent.sibling);\n }\n function commitDeletionEffectsOnFiber(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n ) {\n if (\n injectedHook &&\n \"function\" === typeof injectedHook.onCommitFiberUnmount\n )\n try {\n injectedHook.onCommitFiberUnmount(rendererID, deletedFiber);\n } catch (err) {\n hasLoggedError ||\n ((hasLoggedError = !0),\n console.error(\n \"React instrumentation encountered an error: %o\",\n err\n ));\n }\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate();\n switch (deletedFiber.tag) {\n case 26:\n offscreenSubtreeWasHidden ||\n safelyDetachRef(deletedFiber, nearestMountedAncestor);\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n deletedFiber.memoizedState\n ? deletedFiber.memoizedState.count--\n : deletedFiber.stateNode &&\n ((finishedRoot = deletedFiber.stateNode),\n finishedRoot.parentNode.removeChild(finishedRoot));\n break;\n case 27:\n offscreenSubtreeWasHidden ||\n safelyDetachRef(deletedFiber, nearestMountedAncestor);\n var prevHostParent = hostParent,\n prevHostParentIsContainer = hostParentIsContainer;\n isSingletonScope(deletedFiber.type) &&\n ((hostParent = deletedFiber.stateNode),\n (hostParentIsContainer = !1));\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n runWithFiberInDEV(\n deletedFiber,\n releaseSingletonInstance,\n deletedFiber.stateNode\n );\n hostParent = prevHostParent;\n hostParentIsContainer = prevHostParentIsContainer;\n break;\n case 5:\n offscreenSubtreeWasHidden ||\n safelyDetachRef(deletedFiber, nearestMountedAncestor),\n 5 === deletedFiber.tag &&\n commitFragmentInstanceDeletionEffects(deletedFiber);\n case 6:\n prevHostParent = hostParent;\n prevHostParentIsContainer = hostParentIsContainer;\n hostParent = null;\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n hostParent = prevHostParent;\n hostParentIsContainer = prevHostParentIsContainer;\n if (null !== hostParent)\n if (hostParentIsContainer)\n try {\n runWithFiberInDEV(\n deletedFiber,\n removeChildFromContainer,\n hostParent,\n deletedFiber.stateNode\n ),\n (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(\n deletedFiber,\n nearestMountedAncestor,\n error\n );\n }\n else\n try {\n runWithFiberInDEV(\n deletedFiber,\n removeChild,\n hostParent,\n deletedFiber.stateNode\n ),\n (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(\n deletedFiber,\n nearestMountedAncestor,\n error\n );\n }\n break;\n case 18:\n null !== hostParent &&\n (hostParentIsContainer\n ? ((finishedRoot = hostParent),\n clearHydrationBoundary(\n 9 === finishedRoot.nodeType\n ? finishedRoot.body\n : \"HTML\" === finishedRoot.nodeName\n ? finishedRoot.ownerDocument.body\n : finishedRoot,\n deletedFiber.stateNode\n ),\n retryIfBlockedOn(finishedRoot))\n : clearHydrationBoundary(hostParent, deletedFiber.stateNode));\n break;\n case 4:\n prevHostParent = hostParent;\n prevHostParentIsContainer = hostParentIsContainer;\n hostParent = deletedFiber.stateNode.containerInfo;\n hostParentIsContainer = !0;\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n hostParent = prevHostParent;\n hostParentIsContainer = prevHostParentIsContainer;\n break;\n case 0:\n case 11:\n case 14:\n case 15:\n commitHookEffectListUnmount(\n Insertion,\n deletedFiber,\n nearestMountedAncestor\n );\n offscreenSubtreeWasHidden ||\n commitHookLayoutUnmountEffects(\n deletedFiber,\n nearestMountedAncestor,\n Layout\n );\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n case 1:\n offscreenSubtreeWasHidden ||\n (safelyDetachRef(deletedFiber, nearestMountedAncestor),\n (prevHostParent = deletedFiber.stateNode),\n \"function\" === typeof prevHostParent.componentWillUnmount &&\n safelyCallComponentWillUnmount(\n deletedFiber,\n nearestMountedAncestor,\n prevHostParent\n ));\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n case 21:\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n case 22:\n offscreenSubtreeWasHidden =\n (prevHostParent = offscreenSubtreeWasHidden) ||\n null !== deletedFiber.memoizedState;\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n offscreenSubtreeWasHidden = prevHostParent;\n break;\n case 30:\n deletedFiber.flags & 18874368 &&\n untrackNamedViewTransition(deletedFiber);\n safelyDetachRef(deletedFiber, nearestMountedAncestor);\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n case 7:\n offscreenSubtreeWasHidden ||\n safelyDetachRef(deletedFiber, nearestMountedAncestor);\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n break;\n default:\n recursivelyTraverseDeletionEffects(\n finishedRoot,\n nearestMountedAncestor,\n deletedFiber\n );\n }\n (deletedFiber.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n deletedFiber,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n );\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectErrors = prevEffectErrors;\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n }\n function commitActivityHydrationCallbacks(finishedRoot, finishedWork) {\n if (\n null === finishedWork.memoizedState &&\n ((finishedRoot = finishedWork.alternate),\n null !== finishedRoot &&\n ((finishedRoot = finishedRoot.memoizedState), null !== finishedRoot))\n ) {\n finishedRoot = finishedRoot.dehydrated;\n try {\n runWithFiberInDEV(\n finishedWork,\n commitHydratedActivityInstance,\n finishedRoot\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n }\n function commitSuspenseHydrationCallbacks(finishedRoot, finishedWork) {\n if (\n null === finishedWork.memoizedState &&\n ((finishedRoot = finishedWork.alternate),\n null !== finishedRoot &&\n ((finishedRoot = finishedRoot.memoizedState),\n null !== finishedRoot &&\n ((finishedRoot = finishedRoot.dehydrated), null !== finishedRoot)))\n )\n try {\n runWithFiberInDEV(\n finishedWork,\n commitHydratedSuspenseInstance,\n finishedRoot\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n function getRetryCache(finishedWork) {\n switch (finishedWork.tag) {\n case 31:\n case 13:\n case 19:\n var retryCache = finishedWork.stateNode;\n null === retryCache &&\n (retryCache = finishedWork.stateNode = new PossiblyWeakSet());\n return retryCache;\n case 22:\n return (\n (finishedWork = finishedWork.stateNode),\n (retryCache = finishedWork._retryCache),\n null === retryCache &&\n (retryCache = finishedWork._retryCache = new PossiblyWeakSet()),\n retryCache\n );\n default:\n throw Error(\n \"Unexpected Suspense handler tag (\" +\n finishedWork.tag +\n \"). This is a bug in React.\"\n );\n }\n }\n function attachSuspenseRetryListeners(finishedWork, wakeables) {\n var retryCache = getRetryCache(finishedWork);\n wakeables.forEach(function (wakeable) {\n if (!retryCache.has(wakeable)) {\n retryCache.add(wakeable);\n if (isDevToolsPresent)\n if (null !== inProgressLanes && null !== inProgressRoot)\n restorePendingUpdaters(inProgressRoot, inProgressLanes);\n else\n throw Error(\n \"Expected finished root and lanes to be set. This is a bug in React.\"\n );\n var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);\n wakeable.then(retry, retry);\n }\n });\n }\n function recursivelyTraverseMutationEffects(\n root$jscomp$0,\n parentFiber,\n lanes\n ) {\n var deletions = parentFiber.deletions;\n if (null !== deletions)\n for (var i = 0; i < deletions.length; i++) {\n var root = root$jscomp$0,\n returnFiber = parentFiber,\n deletedFiber = deletions[i],\n prevEffectStart = pushComponentEffectStart(),\n parent = returnFiber;\n a: for (; null !== parent; ) {\n switch (parent.tag) {\n case 27:\n if (isSingletonScope(parent.type)) {\n hostParent = parent.stateNode;\n hostParentIsContainer = !1;\n break a;\n }\n break;\n case 5:\n hostParent = parent.stateNode;\n hostParentIsContainer = !1;\n break a;\n case 3:\n case 4:\n hostParent = parent.stateNode.containerInfo;\n hostParentIsContainer = !0;\n break a;\n }\n parent = parent.return;\n }\n if (null === hostParent)\n throw Error(\n \"Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.\"\n );\n commitDeletionEffectsOnFiber(root, returnFiber, deletedFiber);\n hostParent = null;\n hostParentIsContainer = !1;\n (deletedFiber.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n logComponentTrigger(\n deletedFiber,\n componentEffectStartTime,\n componentEffectEndTime,\n \"Unmount\"\n );\n popComponentEffectStart(prevEffectStart);\n root = deletedFiber;\n returnFiber = root.alternate;\n null !== returnFiber && (returnFiber.return = null);\n root.return = null;\n }\n if (parentFiber.subtreeFlags & 13886)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitMutationEffectsOnFiber(parentFiber, root$jscomp$0, lanes),\n (parentFiber = parentFiber.sibling);\n }\n function commitMutationEffectsOnFiber(finishedWork, root, lanes) {\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(),\n current = finishedWork.alternate,\n flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 14:\n case 15:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 4 &&\n (commitHookEffectListUnmount(\n Insertion | HasEffect,\n finishedWork,\n finishedWork.return\n ),\n commitHookEffectListMount(Insertion | HasEffect, finishedWork),\n commitHookLayoutUnmountEffects(\n finishedWork,\n finishedWork.return,\n Layout | HasEffect\n ));\n break;\n case 1:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n flags & 64 &&\n offscreenSubtreeIsHidden &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((root = current.callbacks),\n null !== root &&\n ((lanes = current.shared.hiddenCallbacks),\n (current.shared.hiddenCallbacks =\n null === lanes ? root : lanes.concat(root)))));\n break;\n case 26:\n var hoistableRoot = currentHoistableRoot;\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n if (flags & 4)\n if (\n ((lanes = null !== current ? current.memoizedState : null),\n (root = finishedWork.memoizedState),\n null === current)\n )\n if (null === root)\n if (null === finishedWork.stateNode) {\n a: {\n current = finishedWork.type;\n root = finishedWork.memoizedProps;\n lanes = hoistableRoot.ownerDocument || hoistableRoot;\n b: switch (current) {\n case \"title\":\n flags = lanes.getElementsByTagName(\"title\")[0];\n if (\n !flags ||\n flags[internalHoistableMarker] ||\n flags[internalInstanceKey] ||\n flags.namespaceURI === SVG_NAMESPACE ||\n flags.hasAttribute(\"itemprop\")\n )\n (flags = lanes.createElement(current)),\n lanes.head.insertBefore(\n flags,\n lanes.querySelector(\"head > title\")\n );\n setInitialProperties(flags, current, root);\n flags[internalInstanceKey] = finishedWork;\n markNodeAsHoistable(flags);\n current = flags;\n break a;\n case \"link\":\n if (\n (hoistableRoot = getHydratableHoistableCache(\n \"link\",\n \"href\",\n lanes\n ).get(current + (root.href || \"\")))\n )\n for (var i = 0; i < hoistableRoot.length; i++)\n if (\n ((flags = hoistableRoot[i]),\n flags.getAttribute(\"href\") ===\n (null == root.href || \"\" === root.href\n ? null\n : root.href) &&\n flags.getAttribute(\"rel\") ===\n (null == root.rel ? null : root.rel) &&\n flags.getAttribute(\"title\") ===\n (null == root.title ? null : root.title) &&\n flags.getAttribute(\"crossorigin\") ===\n (null == root.crossOrigin\n ? null\n : root.crossOrigin))\n ) {\n hoistableRoot.splice(i, 1);\n break b;\n }\n flags = lanes.createElement(current);\n setInitialProperties(flags, current, root);\n lanes.head.appendChild(flags);\n break;\n case \"meta\":\n if (\n (hoistableRoot = getHydratableHoistableCache(\n \"meta\",\n \"content\",\n lanes\n ).get(current + (root.content || \"\")))\n )\n for (i = 0; i < hoistableRoot.length; i++)\n if (\n ((flags = hoistableRoot[i]),\n checkAttributeStringCoercion(\n root.content,\n \"content\"\n ),\n flags.getAttribute(\"content\") ===\n (null == root.content\n ? null\n : \"\" + root.content) &&\n flags.getAttribute(\"name\") ===\n (null == root.name ? null : root.name) &&\n flags.getAttribute(\"property\") ===\n (null == root.property\n ? null\n : root.property) &&\n flags.getAttribute(\"http-equiv\") ===\n (null == root.httpEquiv\n ? null\n : root.httpEquiv) &&\n flags.getAttribute(\"charset\") ===\n (null == root.charSet ? null : root.charSet))\n ) {\n hoistableRoot.splice(i, 1);\n break b;\n }\n flags = lanes.createElement(current);\n setInitialProperties(flags, current, root);\n lanes.head.appendChild(flags);\n break;\n default:\n throw Error(\n 'getNodesForType encountered a type it did not expect: \"' +\n current +\n '\". This is a bug in React.'\n );\n }\n flags[internalInstanceKey] = finishedWork;\n markNodeAsHoistable(flags);\n current = flags;\n }\n finishedWork.stateNode = current;\n } else\n mountHoistable(\n hoistableRoot,\n finishedWork.type,\n finishedWork.stateNode\n );\n else\n finishedWork.stateNode = acquireResource(\n hoistableRoot,\n root,\n finishedWork.memoizedProps\n );\n else\n lanes !== root\n ? (null === lanes\n ? null !== current.stateNode &&\n ((current = current.stateNode),\n current.parentNode.removeChild(current))\n : lanes.count--,\n null === root\n ? mountHoistable(\n hoistableRoot,\n finishedWork.type,\n finishedWork.stateNode\n )\n : acquireResource(\n hoistableRoot,\n root,\n finishedWork.memoizedProps\n ))\n : null === root &&\n null !== finishedWork.stateNode &&\n commitHostUpdate(\n finishedWork,\n finishedWork.memoizedProps,\n current.memoizedProps\n );\n break;\n case 27:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n null !== current &&\n flags & 4 &&\n commitHostUpdate(\n finishedWork,\n finishedWork.memoizedProps,\n current.memoizedProps\n );\n break;\n case 5:\n hoistableRoot = offscreenDirectParentIsHidden;\n offscreenDirectParentIsHidden = !1;\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n offscreenDirectParentIsHidden = hoistableRoot;\n commitReconciliationEffects(finishedWork);\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n if (finishedWork.flags & 32) {\n root = finishedWork.stateNode;\n try {\n runWithFiberInDEV(finishedWork, resetTextContent, root),\n (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n flags & 4 &&\n null != finishedWork.stateNode &&\n ((root = finishedWork.memoizedProps),\n commitHostUpdate(\n finishedWork,\n root,\n null !== current ? current.memoizedProps : root\n ));\n flags & 1024 &&\n ((needsFormReset = !0),\n \"form\" !== finishedWork.type &&\n console.error(\n \"Unexpected host component type. Expected a form. This is a bug in React.\"\n ));\n break;\n case 6:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n if (flags & 4) {\n if (null === finishedWork.stateNode)\n throw Error(\n \"This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.\"\n );\n root = finishedWork.memoizedProps;\n current = null !== current ? current.memoizedProps : root;\n lanes = finishedWork.stateNode;\n try {\n runWithFiberInDEV(\n finishedWork,\n commitTextUpdate,\n lanes,\n current,\n root\n ),\n (viewTransitionMutationContext = !0);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n break;\n case 3:\n hoistableRoot = pushNestedEffectDurations();\n viewTransitionMutationContext = !1;\n tagCaches = null;\n i = currentHoistableRoot;\n currentHoistableRoot = getHoistableRoot(root.containerInfo);\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n currentHoistableRoot = i;\n commitReconciliationEffects(finishedWork);\n if (\n flags & 4 &&\n null !== current &&\n current.memoizedState.isDehydrated\n )\n try {\n runWithFiberInDEV(\n finishedWork,\n commitHydratedContainer,\n root.containerInfo\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n needsFormReset &&\n ((needsFormReset = !1), recursivelyResetForms(finishedWork));\n root.effectDuration += popNestedEffectDurations(hoistableRoot);\n viewTransitionMutationContext = !1;\n break;\n case 4:\n current = offscreenDirectParentIsHidden;\n offscreenDirectParentIsHidden = offscreenSubtreeIsHidden;\n flags = pushMutationContext();\n hoistableRoot = currentHoistableRoot;\n currentHoistableRoot = getHoistableRoot(\n finishedWork.stateNode.containerInfo\n );\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n currentHoistableRoot = hoistableRoot;\n viewTransitionMutationContext &&\n inUpdateViewTransition &&\n (rootViewTransitionAffected = !0);\n viewTransitionMutationContext = flags;\n offscreenDirectParentIsHidden = current;\n break;\n case 12:\n current = pushNestedEffectDurations();\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n finishedWork.stateNode.effectDuration +=\n bubbleNestedEffectDurations(current);\n break;\n case 31:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 4 &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((finishedWork.updateQueue = null),\n attachSuspenseRetryListeners(finishedWork, current)));\n break;\n case 13:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n finishedWork.child.flags & 8192 &&\n (null !== finishedWork.memoizedState) !==\n (null !== current && null !== current.memoizedState) &&\n (globalMostRecentFallbackTime = now$1());\n flags & 4 &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((finishedWork.updateQueue = null),\n attachSuspenseRetryListeners(finishedWork, current)));\n break;\n case 22:\n hoistableRoot = null !== finishedWork.memoizedState;\n i = null !== current && null !== current.memoizedState;\n var prevOffscreenSubtreeIsHidden = offscreenSubtreeIsHidden,\n prevOffscreenSubtreeWasHidden = offscreenSubtreeWasHidden,\n _prevOffscreenDirectParentIsHidden2 = offscreenDirectParentIsHidden;\n offscreenSubtreeIsHidden =\n prevOffscreenSubtreeIsHidden || hoistableRoot;\n offscreenDirectParentIsHidden =\n _prevOffscreenDirectParentIsHidden2 || hoistableRoot;\n offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden || i;\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n offscreenSubtreeWasHidden = prevOffscreenSubtreeWasHidden;\n offscreenDirectParentIsHidden = _prevOffscreenDirectParentIsHidden2;\n offscreenSubtreeIsHidden = prevOffscreenSubtreeIsHidden;\n i &&\n !hoistableRoot &&\n !prevOffscreenSubtreeIsHidden &&\n !prevOffscreenSubtreeWasHidden &&\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n logComponentReappeared(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime\n );\n commitReconciliationEffects(finishedWork);\n flags & 8192 &&\n ((root = finishedWork.stateNode),\n (root._visibility = hoistableRoot\n ? root._visibility & ~OffscreenVisible\n : root._visibility | OffscreenVisible),\n !hoistableRoot ||\n null === current ||\n i ||\n offscreenSubtreeIsHidden ||\n offscreenSubtreeWasHidden ||\n (recursivelyTraverseDisappearLayoutEffects(finishedWork),\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n logComponentTrigger(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n \"Disconnect\"\n )),\n (!hoistableRoot && offscreenDirectParentIsHidden) ||\n hideOrUnhideAllChildren(finishedWork, hoistableRoot));\n flags & 4 &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((root = current.retryQueue),\n null !== root &&\n ((current.retryQueue = null),\n attachSuspenseRetryListeners(finishedWork, root))));\n break;\n case 19:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n flags & 4 &&\n ((current = finishedWork.updateQueue),\n null !== current &&\n ((finishedWork.updateQueue = null),\n attachSuspenseRetryListeners(finishedWork, current)));\n break;\n case 30:\n flags & 512 &&\n (offscreenSubtreeWasHidden ||\n null === current ||\n safelyDetachRef(current, current.return));\n flags = pushMutationContext();\n hoistableRoot = inUpdateViewTransition;\n i = (lanes & 335544064) === lanes;\n prevOffscreenSubtreeIsHidden = finishedWork.memoizedProps;\n inUpdateViewTransition =\n i &&\n \"none\" !==\n getViewTransitionClassName(\n prevOffscreenSubtreeIsHidden.default,\n prevOffscreenSubtreeIsHidden.update\n );\n recursivelyTraverseMutationEffects(root, finishedWork, lanes);\n commitReconciliationEffects(finishedWork);\n i &&\n null !== current &&\n viewTransitionMutationContext &&\n (finishedWork.flags |= 4);\n inUpdateViewTransition = hoistableRoot;\n viewTransitionMutationContext = flags;\n break;\n case 21:\n break;\n case 7:\n current &&\n null !== current.stateNode &&\n (current.stateNode._fragmentFiber = finishedWork);\n default:\n recursivelyTraverseMutationEffects(root, finishedWork, lanes),\n commitReconciliationEffects(finishedWork);\n }\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n ((componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n ),\n null === finishedWork.alternate &&\n null !== finishedWork.return &&\n null !== finishedWork.return.alternate &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n (isHydratingParent(\n finishedWork.return.alternate,\n finishedWork.return\n ) ||\n logComponentTrigger(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n \"Mount\"\n )));\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectErrors = prevEffectErrors;\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n }\n function commitReconciliationEffects(finishedWork) {\n var flags = finishedWork.flags;\n if (flags & 2) {\n try {\n runWithFiberInDEV(finishedWork, commitPlacement, finishedWork);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n finishedWork.flags &= -3;\n }\n flags & 4096 && (finishedWork.flags &= -4097);\n }\n function recursivelyResetForms(parentFiber) {\n if (parentFiber.subtreeFlags & 1024)\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n var fiber = parentFiber;\n recursivelyResetForms(fiber);\n 5 === fiber.tag && fiber.flags & 1024 && fiber.stateNode.reset();\n parentFiber = parentFiber.sibling;\n }\n }\n function recursivelyTraverseAfterMutationEffects(root, parentFiber) {\n if (parentFiber.subtreeFlags & 9270)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitAfterMutationEffectsOnFiber(parentFiber, root),\n (parentFiber = parentFiber.sibling);\n else measureNestedViewTransitions(parentFiber, !1);\n }\n function commitAfterMutationEffectsOnFiber(finishedWork, root) {\n var current = finishedWork.alternate;\n if (null === current) commitEnterViewTransitions(finishedWork, !1);\n else\n switch (finishedWork.tag) {\n case 3:\n rootViewTransitionNameCanceled = viewTransitionContextChanged = !1;\n pushViewTransitionCancelableScope();\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n if (!viewTransitionContextChanged && !rootViewTransitionAffected) {\n finishedWork = viewTransitionCancelableChildren;\n if (null !== finishedWork)\n for (var i = 0; i < finishedWork.length; i += 3) {\n current = finishedWork[i];\n var oldName = finishedWork[i + 1];\n restoreViewTransitionName(current, finishedWork[i + 2]);\n current = current.ownerDocument.documentElement;\n null !== current &&\n current.animate(\n { opacity: [0, 0], pointerEvents: [\"none\", \"none\"] },\n {\n duration: 0,\n fill: \"forwards\",\n pseudoElement:\n \"::view-transition-group(\" + oldName + \")\"\n }\n );\n }\n finishedWork = root.containerInfo;\n finishedWork =\n 9 === finishedWork.nodeType\n ? finishedWork.documentElement\n : finishedWork.ownerDocument.documentElement;\n null !== finishedWork &&\n \"\" === finishedWork.style.viewTransitionName &&\n ((finishedWork.style.viewTransitionName = \"none\"),\n finishedWork.animate(\n { opacity: [0, 0], pointerEvents: [\"none\", \"none\"] },\n {\n duration: 0,\n fill: \"forwards\",\n pseudoElement: \"::view-transition-group(root)\"\n }\n ),\n finishedWork.animate(\n { width: [0, 0], height: [0, 0] },\n {\n duration: 0,\n fill: \"forwards\",\n pseudoElement: \"::view-transition\"\n }\n ));\n rootViewTransitionNameCanceled = !0;\n }\n viewTransitionCancelableChildren = null;\n break;\n case 5:\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n break;\n case 4:\n i = viewTransitionContextChanged;\n viewTransitionContextChanged = !1;\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n viewTransitionContextChanged && (rootViewTransitionAffected = !0);\n viewTransitionContextChanged = i;\n break;\n case 22:\n null === finishedWork.memoizedState &&\n (null !== current.memoizedState\n ? commitEnterViewTransitions(finishedWork, !1)\n : recursivelyTraverseAfterMutationEffects(root, finishedWork));\n break;\n case 30:\n i = viewTransitionContextChanged;\n oldName = pushViewTransitionCancelableScope();\n viewTransitionContextChanged = !1;\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n viewTransitionContextChanged && (finishedWork.flags |= 4);\n var props = finishedWork.memoizedProps,\n state = finishedWork.stateNode;\n root = getViewTransitionName(props, state);\n state = getViewTransitionName(current.memoizedProps, state);\n var className = getViewTransitionClassName(\n props.default,\n props.update\n );\n \"none\" === className\n ? (root = !1)\n : ((props = current.memoizedState),\n (current.memoizedState = null),\n (current = finishedWork.child),\n (viewTransitionHostInstanceIdx = 0),\n (root = measureViewTransitionHostInstancesRecursive(\n finishedWork,\n current,\n root,\n state,\n className,\n props,\n !0\n )),\n viewTransitionHostInstanceIdx !==\n (null === props ? 0 : props.length) &&\n (finishedWork.flags |= 32));\n 0 !== (finishedWork.flags & 4) && root\n ? (scheduleViewTransitionEvent(\n finishedWork,\n finishedWork.memoizedProps.onUpdate\n ),\n (viewTransitionCancelableChildren = oldName))\n : null !== oldName &&\n (oldName.push.apply(oldName, viewTransitionCancelableChildren),\n (viewTransitionCancelableChildren = oldName));\n viewTransitionContextChanged =\n 0 !== (finishedWork.flags & 32) ? !0 : i;\n break;\n default:\n recursivelyTraverseAfterMutationEffects(root, finishedWork);\n }\n }\n function recursivelyTraverseLayoutEffects(root, parentFiber) {\n if (parentFiber.subtreeFlags & 8772)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitLayoutEffectOnFiber(root, parentFiber.alternate, parentFiber),\n (parentFiber = parentFiber.sibling);\n }\n function disappearLayoutEffects(finishedWork) {\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate();\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 14:\n case 15:\n commitHookLayoutUnmountEffects(\n finishedWork,\n finishedWork.return,\n Layout\n );\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 1:\n safelyDetachRef(finishedWork, finishedWork.return);\n var instance = finishedWork.stateNode;\n \"function\" === typeof instance.componentWillUnmount &&\n safelyCallComponentWillUnmount(\n finishedWork,\n finishedWork.return,\n instance\n );\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 27:\n runWithFiberInDEV(\n finishedWork,\n releaseSingletonInstance,\n finishedWork.stateNode\n );\n case 26:\n case 5:\n safelyDetachRef(finishedWork, finishedWork.return);\n 5 === finishedWork.tag &&\n commitFragmentInstanceDeletionEffects(finishedWork);\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 22:\n null === finishedWork.memoizedState &&\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 30:\n finishedWork.flags & 18874368 &&\n untrackNamedViewTransition(finishedWork);\n safelyDetachRef(finishedWork, finishedWork.return);\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n break;\n case 7:\n safelyDetachRef(finishedWork, finishedWork.return);\n default:\n recursivelyTraverseDisappearLayoutEffects(finishedWork);\n }\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n );\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectErrors = prevEffectErrors;\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n }\n function recursivelyTraverseDisappearLayoutEffects(parentFiber) {\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n disappearLayoutEffects(parentFiber),\n (parentFiber = parentFiber.sibling);\n }\n function reappearLayoutEffects(\n finishedRoot,\n current,\n finishedWork,\n includeWorkInProgressEffects\n ) {\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(),\n flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n commitHookLayoutEffects(finishedWork, Layout);\n break;\n case 1:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n current = finishedWork.stateNode;\n \"function\" === typeof current.componentDidMount &&\n runWithFiberInDEV(\n finishedWork,\n callComponentDidMountInDEV,\n finishedWork,\n current\n );\n current = finishedWork.updateQueue;\n if (null !== current) {\n finishedRoot = finishedWork.stateNode;\n try {\n runWithFiberInDEV(\n finishedWork,\n commitHiddenCallbacks,\n current,\n finishedRoot\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n includeWorkInProgressEffects &&\n flags & 64 &&\n commitClassCallbacks(finishedWork);\n safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 27:\n commitHostSingletonAcquisition(finishedWork);\n case 26:\n case 5:\n if (5 === finishedWork.tag)\n a: for (var parent = finishedWork.return; null !== parent; ) {\n isFragmentInstanceParent(parent) &&\n commitNewChildToFragmentInstance(\n finishedWork.stateNode,\n parent.stateNode\n );\n if (isHostParent(parent)) break a;\n parent = parent.return;\n }\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n includeWorkInProgressEffects &&\n null === current &&\n flags & 4 &&\n commitHostMount(finishedWork);\n safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 12:\n if (includeWorkInProgressEffects && flags & 4) {\n flags = pushNestedEffectDurations();\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n includeWorkInProgressEffects = finishedWork.stateNode;\n includeWorkInProgressEffects.effectDuration +=\n bubbleNestedEffectDurations(flags);\n try {\n runWithFiberInDEV(\n finishedWork,\n commitProfiler,\n finishedWork,\n current,\n commitStartTime,\n includeWorkInProgressEffects.effectDuration\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n } else\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n break;\n case 31:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n includeWorkInProgressEffects &&\n flags & 4 &&\n commitActivityHydrationCallbacks(finishedRoot, finishedWork);\n break;\n case 13:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n includeWorkInProgressEffects &&\n flags & 4 &&\n commitSuspenseHydrationCallbacks(finishedRoot, finishedWork);\n break;\n case 22:\n null === finishedWork.memoizedState &&\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 30:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n flags & 18874368 && trackNamedViewTransition(finishedWork);\n safelyAttachRef(finishedWork, finishedWork.return);\n break;\n case 7:\n safelyAttachRef(finishedWork, finishedWork.return);\n default:\n recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n finishedWork,\n includeWorkInProgressEffects\n );\n }\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n );\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectErrors = prevEffectErrors;\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n }\n function recursivelyTraverseReappearLayoutEffects(\n finishedRoot,\n parentFiber,\n includeWorkInProgressEffects\n ) {\n includeWorkInProgressEffects =\n includeWorkInProgressEffects && 0 !== (parentFiber.subtreeFlags & 8772);\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n reappearLayoutEffects(\n finishedRoot,\n parentFiber.alternate,\n parentFiber,\n includeWorkInProgressEffects\n ),\n (parentFiber = parentFiber.sibling);\n }\n function commitOffscreenPassiveMountEffects(current, finishedWork) {\n var previousCache = null;\n null !== current &&\n null !== current.memoizedState &&\n null !== current.memoizedState.cachePool &&\n (previousCache = current.memoizedState.cachePool.pool);\n current = null;\n null !== finishedWork.memoizedState &&\n null !== finishedWork.memoizedState.cachePool &&\n (current = finishedWork.memoizedState.cachePool.pool);\n current !== previousCache &&\n (null != current && retainCache(current),\n null != previousCache && releaseCache(previousCache));\n }\n function commitCachePassiveMountEffect(current, finishedWork) {\n current = null;\n null !== finishedWork.alternate &&\n (current = finishedWork.alternate.memoizedState.cache);\n finishedWork = finishedWork.memoizedState.cache;\n finishedWork !== current &&\n (retainCache(finishedWork), null != current && releaseCache(current));\n }\n function recursivelyTraversePassiveMountEffects(\n root,\n parentFiber,\n committedLanes,\n committedTransitions,\n endTime\n ) {\n var isViewTransitionEligible =\n (committedLanes & 335544064) === committedLanes;\n if (\n parentFiber.subtreeFlags & (isViewTransitionEligible ? 10262 : 10256) ||\n (0 !== parentFiber.actualDuration &&\n (null === parentFiber.alternate ||\n parentFiber.alternate.child !== parentFiber.child))\n )\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n (isViewTransitionEligible = parentFiber.sibling),\n commitPassiveMountOnFiber(\n root,\n parentFiber,\n committedLanes,\n committedTransitions,\n null !== isViewTransitionEligible\n ? isViewTransitionEligible.actualStartTime\n : endTime\n ),\n (parentFiber = isViewTransitionEligible);\n else\n isViewTransitionEligible && restoreNestedViewTransitions(parentFiber);\n }\n function commitPassiveMountOnFiber(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n ) {\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(),\n prevDeepEquality = alreadyWarnedForDeepEquality,\n isViewTransitionEligible =\n (committedLanes & 335544064) === committedLanes;\n isViewTransitionEligible &&\n null === finishedWork.alternate &&\n null !== finishedWork.return &&\n null !== finishedWork.return.alternate &&\n restoreEnterOrExitViewTransitions(finishedWork);\n var flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 < finishedWork.actualStartTime &&\n 0 !== (finishedWork.flags & 1) &&\n logComponentRender(\n finishedWork,\n finishedWork.actualStartTime,\n endTime,\n inHydratedSubtree,\n committedLanes\n );\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n flags & 2048 &&\n commitHookPassiveMountEffects(finishedWork, Passive | HasEffect);\n break;\n case 1:\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 < finishedWork.actualStartTime &&\n (0 !== (finishedWork.flags & 128)\n ? logComponentErrored(\n finishedWork,\n finishedWork.actualStartTime,\n endTime,\n []\n )\n : 0 !== (finishedWork.flags & 1) &&\n logComponentRender(\n finishedWork,\n finishedWork.actualStartTime,\n endTime,\n inHydratedSubtree,\n committedLanes\n ));\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n break;\n case 3:\n var prevProfilerEffectDuration = pushNestedEffectDurations(),\n wasInHydratedSubtree = inHydratedSubtree;\n inHydratedSubtree =\n null !== finishedWork.alternate &&\n finishedWork.alternate.memoizedState.isDehydrated &&\n 0 === (finishedWork.flags & 256);\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n inHydratedSubtree = wasInHydratedSubtree;\n isViewTransitionEligible &&\n rootViewTransitionNameCanceled &&\n ((committedLanes = finishedRoot.containerInfo),\n (committedLanes =\n 9 === committedLanes.nodeType\n ? committedLanes.body\n : \"HTML\" === committedLanes.nodeName\n ? committedLanes.ownerDocument.body\n : committedLanes),\n \"root\" === committedLanes.style.viewTransitionName &&\n (committedLanes.style.viewTransitionName = \"\"),\n (committedLanes = committedLanes.ownerDocument.documentElement),\n null !== committedLanes &&\n \"none\" === committedLanes.style.viewTransitionName &&\n (committedLanes.style.viewTransitionName = \"\"));\n flags & 2048 &&\n ((committedLanes = null),\n null !== finishedWork.alternate &&\n (committedLanes = finishedWork.alternate.memoizedState.cache),\n (committedTransitions = finishedWork.memoizedState.cache),\n committedTransitions !== committedLanes &&\n (retainCache(committedTransitions),\n null != committedLanes && releaseCache(committedLanes)));\n finishedRoot.passiveEffectDuration += popNestedEffectDurations(\n prevProfilerEffectDuration\n );\n break;\n case 12:\n if (flags & 2048) {\n flags = pushNestedEffectDurations();\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n finishedRoot = finishedWork.stateNode;\n finishedRoot.passiveEffectDuration +=\n bubbleNestedEffectDurations(flags);\n try {\n runWithFiberInDEV(\n finishedWork,\n commitProfilerPostCommitImpl,\n finishedWork,\n finishedWork.alternate,\n commitStartTime,\n finishedRoot.passiveEffectDuration\n );\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n } else\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n break;\n case 31:\n flags = inHydratedSubtree;\n prevProfilerEffectDuration =\n null !== finishedWork.alternate\n ? finishedWork.alternate.memoizedState\n : null;\n isViewTransitionEligible = finishedWork.memoizedState;\n null !== prevProfilerEffectDuration &&\n null === isViewTransitionEligible\n ? ((isViewTransitionEligible = finishedWork.deletions),\n null !== isViewTransitionEligible &&\n 0 < isViewTransitionEligible.length &&\n 18 === isViewTransitionEligible[0].tag\n ? ((inHydratedSubtree = !1),\n (prevProfilerEffectDuration =\n prevProfilerEffectDuration.hydrationErrors),\n null !== prevProfilerEffectDuration &&\n logComponentErrored(\n finishedWork,\n finishedWork.actualStartTime,\n endTime,\n prevProfilerEffectDuration\n ))\n : (inHydratedSubtree = !0))\n : (inHydratedSubtree = !1);\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n inHydratedSubtree = flags;\n break;\n case 13:\n flags = inHydratedSubtree;\n prevProfilerEffectDuration =\n null !== finishedWork.alternate\n ? finishedWork.alternate.memoizedState\n : null;\n isViewTransitionEligible = finishedWork.memoizedState;\n null === prevProfilerEffectDuration ||\n null === prevProfilerEffectDuration.dehydrated ||\n (null !== isViewTransitionEligible &&\n null !== isViewTransitionEligible.dehydrated)\n ? (inHydratedSubtree = !1)\n : ((isViewTransitionEligible = finishedWork.deletions),\n null !== isViewTransitionEligible &&\n 0 < isViewTransitionEligible.length &&\n 18 === isViewTransitionEligible[0].tag\n ? ((inHydratedSubtree = !1),\n (prevProfilerEffectDuration =\n prevProfilerEffectDuration.hydrationErrors),\n null !== prevProfilerEffectDuration &&\n logComponentErrored(\n finishedWork,\n finishedWork.actualStartTime,\n endTime,\n prevProfilerEffectDuration\n ))\n : (inHydratedSubtree = !0));\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n inHydratedSubtree = flags;\n break;\n case 23:\n break;\n case 22:\n wasInHydratedSubtree = finishedWork.stateNode;\n prevProfilerEffectDuration = finishedWork.alternate;\n null !== finishedWork.memoizedState\n ? (isViewTransitionEligible &&\n null !== prevProfilerEffectDuration &&\n null === prevProfilerEffectDuration.memoizedState &&\n restoreEnterOrExitViewTransitions(prevProfilerEffectDuration),\n wasInHydratedSubtree._visibility &\n OffscreenPassiveEffectsConnected\n ? recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n )\n : recursivelyTraverseAtomicPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n ))\n : (isViewTransitionEligible &&\n null !== prevProfilerEffectDuration &&\n null !== prevProfilerEffectDuration.memoizedState &&\n restoreEnterOrExitViewTransitions(finishedWork),\n wasInHydratedSubtree._visibility &\n OffscreenPassiveEffectsConnected\n ? recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n )\n : ((wasInHydratedSubtree._visibility |=\n OffscreenPassiveEffectsConnected),\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n 0 !== (finishedWork.subtreeFlags & 10256) ||\n (0 !== finishedWork.actualDuration &&\n (null === finishedWork.alternate ||\n finishedWork.alternate.child !== finishedWork.child)),\n endTime\n ),\n (finishedWork.mode & ProfileMode) === NoMode ||\n inHydratedSubtree ||\n ((finishedRoot = finishedWork.actualStartTime),\n 0 <= finishedRoot &&\n 0.05 < endTime - finishedRoot &&\n logComponentReappeared(\n finishedWork,\n finishedRoot,\n endTime\n ),\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n 0.05 <\n componentEffectEndTime - componentEffectStartTime &&\n logComponentReappeared(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime\n ))));\n flags & 2048 &&\n commitOffscreenPassiveMountEffects(\n prevProfilerEffectDuration,\n finishedWork\n );\n break;\n case 24:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n flags & 2048 &&\n commitCachePassiveMountEffect(finishedWork.alternate, finishedWork);\n break;\n case 30:\n isViewTransitionEligible &&\n ((flags = finishedWork.alternate),\n null !== flags &&\n (restoreViewTransitionOnHostInstances(flags.child, !0),\n restoreViewTransitionOnHostInstances(finishedWork.child, !0)));\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n break;\n default:\n recursivelyTraversePassiveMountEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n );\n }\n if ((finishedWork.mode & ProfileMode) !== NoMode) {\n if (\n (finishedRoot =\n !inHydratedSubtree &&\n null === finishedWork.alternate &&\n null !== finishedWork.return &&\n null !== finishedWork.return.alternate)\n )\n (committedLanes = finishedWork.actualStartTime),\n 0 <= committedLanes &&\n 0.05 < endTime - committedLanes &&\n logComponentTrigger(\n finishedWork,\n committedLanes,\n endTime,\n \"Mount\"\n );\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n ((componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n ),\n finishedRoot &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n logComponentTrigger(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n \"Mount\"\n ));\n }\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectErrors = prevEffectErrors;\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n alreadyWarnedForDeepEquality = prevDeepEquality;\n }\n function recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n parentFiber,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects,\n endTime\n ) {\n includeWorkInProgressEffects =\n includeWorkInProgressEffects &&\n (0 !== (parentFiber.subtreeFlags & 10256) ||\n (0 !== parentFiber.actualDuration &&\n (null === parentFiber.alternate ||\n parentFiber.alternate.child !== parentFiber.child)));\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n var nextSibling = parentFiber.sibling;\n reconnectPassiveEffects(\n finishedRoot,\n parentFiber,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects,\n null !== nextSibling ? nextSibling.actualStartTime : endTime\n );\n parentFiber = nextSibling;\n }\n }\n function reconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects,\n endTime\n ) {\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate(),\n prevDeepEquality = alreadyWarnedForDeepEquality;\n includeWorkInProgressEffects &&\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 < finishedWork.actualStartTime &&\n 0 !== (finishedWork.flags & 1) &&\n logComponentRender(\n finishedWork,\n finishedWork.actualStartTime,\n endTime,\n inHydratedSubtree,\n committedLanes\n );\n var flags = finishedWork.flags;\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects,\n endTime\n );\n commitHookPassiveMountEffects(finishedWork, Passive);\n break;\n case 23:\n break;\n case 22:\n var _instance2 = finishedWork.stateNode;\n null !== finishedWork.memoizedState\n ? _instance2._visibility & OffscreenPassiveEffectsConnected\n ? recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects,\n endTime\n )\n : recursivelyTraverseAtomicPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n endTime\n )\n : ((_instance2._visibility |= OffscreenPassiveEffectsConnected),\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects,\n endTime\n ));\n includeWorkInProgressEffects &&\n flags & 2048 &&\n commitOffscreenPassiveMountEffects(\n finishedWork.alternate,\n finishedWork\n );\n break;\n case 24:\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects,\n endTime\n );\n includeWorkInProgressEffects &&\n flags & 2048 &&\n commitCachePassiveMountEffect(finishedWork.alternate, finishedWork);\n break;\n default:\n recursivelyTraverseReconnectPassiveEffects(\n finishedRoot,\n finishedWork,\n committedLanes,\n committedTransitions,\n includeWorkInProgressEffects,\n endTime\n );\n }\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n );\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectErrors = prevEffectErrors;\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n alreadyWarnedForDeepEquality = prevDeepEquality;\n }\n function recursivelyTraverseAtomicPassiveEffects(\n finishedRoot$jscomp$0,\n parentFiber,\n committedLanes$jscomp$0,\n committedTransitions$jscomp$0,\n endTime$jscomp$0\n ) {\n if (\n parentFiber.subtreeFlags & 10256 ||\n (0 !== parentFiber.actualDuration &&\n (null === parentFiber.alternate ||\n parentFiber.alternate.child !== parentFiber.child))\n )\n for (var child = parentFiber.child; null !== child; ) {\n parentFiber = child.sibling;\n var finishedRoot = finishedRoot$jscomp$0,\n committedLanes = committedLanes$jscomp$0,\n committedTransitions = committedTransitions$jscomp$0,\n endTime =\n null !== parentFiber\n ? parentFiber.actualStartTime\n : endTime$jscomp$0,\n prevDeepEquality = alreadyWarnedForDeepEquality;\n (child.mode & ProfileMode) !== NoMode &&\n 0 < child.actualStartTime &&\n 0 !== (child.flags & 1) &&\n logComponentRender(\n child,\n child.actualStartTime,\n endTime,\n inHydratedSubtree,\n committedLanes\n );\n var flags = child.flags;\n switch (child.tag) {\n case 22:\n recursivelyTraverseAtomicPassiveEffects(\n finishedRoot,\n child,\n committedLanes,\n committedTransitions,\n endTime\n );\n flags & 2048 &&\n commitOffscreenPassiveMountEffects(child.alternate, child);\n break;\n case 24:\n recursivelyTraverseAtomicPassiveEffects(\n finishedRoot,\n child,\n committedLanes,\n committedTransitions,\n endTime\n );\n flags & 2048 &&\n commitCachePassiveMountEffect(child.alternate, child);\n break;\n default:\n recursivelyTraverseAtomicPassiveEffects(\n finishedRoot,\n child,\n committedLanes,\n committedTransitions,\n endTime\n );\n }\n alreadyWarnedForDeepEquality = prevDeepEquality;\n child = parentFiber;\n }\n }\n function recursivelyAccumulateSuspenseyCommit(\n parentFiber,\n committedLanes,\n suspendedState\n ) {\n if (parentFiber.subtreeFlags & suspenseyCommitFlag)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n accumulateSuspenseyCommitOnFiber(\n parentFiber,\n committedLanes,\n suspendedState\n ),\n (parentFiber = parentFiber.sibling);\n }\n function accumulateSuspenseyCommitOnFiber(\n fiber,\n committedLanes,\n suspendedState\n ) {\n switch (fiber.tag) {\n case 26:\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n fiber.flags & suspenseyCommitFlag &&\n (null !== fiber.memoizedState\n ? suspendResource(\n suspendedState,\n currentHoistableRoot,\n fiber.memoizedState,\n fiber.memoizedProps\n )\n : ((fiber = fiber.stateNode),\n (committedLanes & 335544128) === committedLanes &&\n suspendInstance(suspendedState, fiber)));\n break;\n case 5:\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n fiber.flags & suspenseyCommitFlag &&\n ((fiber = fiber.stateNode),\n (committedLanes & 335544128) === committedLanes &&\n suspendInstance(suspendedState, fiber));\n break;\n case 3:\n case 4:\n var previousHoistableRoot = currentHoistableRoot;\n currentHoistableRoot = getHoistableRoot(\n fiber.stateNode.containerInfo\n );\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n currentHoistableRoot = previousHoistableRoot;\n break;\n case 22:\n null === fiber.memoizedState &&\n ((previousHoistableRoot = fiber.alternate),\n null !== previousHoistableRoot &&\n null !== previousHoistableRoot.memoizedState\n ? ((previousHoistableRoot = suspenseyCommitFlag),\n (suspenseyCommitFlag = 16777216),\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n ),\n (suspenseyCommitFlag = previousHoistableRoot))\n : recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n ));\n break;\n case 30:\n if (\n 0 !== (fiber.flags & suspenseyCommitFlag) &&\n ((previousHoistableRoot = fiber.memoizedProps.name),\n null != previousHoistableRoot && \"auto\" !== previousHoistableRoot)\n ) {\n var state = fiber.stateNode;\n state.paired = null;\n null === appearingViewTransitions &&\n (appearingViewTransitions = new Map());\n appearingViewTransitions.set(previousHoistableRoot, state);\n }\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n break;\n default:\n recursivelyAccumulateSuspenseyCommit(\n fiber,\n committedLanes,\n suspendedState\n );\n }\n }\n function detachAlternateSiblings(parentFiber) {\n var previousFiber = parentFiber.alternate;\n if (\n null !== previousFiber &&\n ((parentFiber = previousFiber.child), null !== parentFiber)\n ) {\n previousFiber.child = null;\n do\n (previousFiber = parentFiber.sibling),\n (parentFiber.sibling = null),\n (parentFiber = previousFiber);\n while (null !== parentFiber);\n }\n }\n function recursivelyTraversePassiveUnmountEffects(parentFiber) {\n var deletions = parentFiber.deletions;\n if (0 !== (parentFiber.flags & 16)) {\n if (null !== deletions)\n for (var i = 0; i < deletions.length; i++) {\n var childToDelete = deletions[i],\n prevEffectStart = pushComponentEffectStart();\n nextEffect = childToDelete;\n commitPassiveUnmountEffectsInsideOfDeletedTree_begin(\n childToDelete,\n parentFiber\n );\n (childToDelete.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n logComponentTrigger(\n childToDelete,\n componentEffectStartTime,\n componentEffectEndTime,\n \"Unmount\"\n );\n popComponentEffectStart(prevEffectStart);\n }\n detachAlternateSiblings(parentFiber);\n }\n if (parentFiber.subtreeFlags & 10256)\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n commitPassiveUnmountOnFiber(parentFiber),\n (parentFiber = parentFiber.sibling);\n }\n function commitPassiveUnmountOnFiber(finishedWork) {\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate();\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n recursivelyTraversePassiveUnmountEffects(finishedWork);\n finishedWork.flags & 2048 &&\n commitHookPassiveUnmountEffects(\n finishedWork,\n finishedWork.return,\n Passive | HasEffect\n );\n break;\n case 3:\n var prevProfilerEffectDuration = pushNestedEffectDurations();\n recursivelyTraversePassiveUnmountEffects(finishedWork);\n finishedWork.stateNode.passiveEffectDuration +=\n popNestedEffectDurations(prevProfilerEffectDuration);\n break;\n case 12:\n prevProfilerEffectDuration = pushNestedEffectDurations();\n recursivelyTraversePassiveUnmountEffects(finishedWork);\n finishedWork.stateNode.passiveEffectDuration +=\n bubbleNestedEffectDurations(prevProfilerEffectDuration);\n break;\n case 22:\n prevProfilerEffectDuration = finishedWork.stateNode;\n null !== finishedWork.memoizedState &&\n prevProfilerEffectDuration._visibility &\n OffscreenPassiveEffectsConnected &&\n (null === finishedWork.return || 13 !== finishedWork.return.tag)\n ? ((prevProfilerEffectDuration._visibility &=\n ~OffscreenPassiveEffectsConnected),\n recursivelyTraverseDisconnectPassiveEffects(finishedWork),\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n logComponentTrigger(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n \"Disconnect\"\n ))\n : recursivelyTraversePassiveUnmountEffects(finishedWork);\n break;\n default:\n recursivelyTraversePassiveUnmountEffects(finishedWork);\n }\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n );\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n componentEffectErrors = prevEffectErrors;\n }\n function recursivelyTraverseDisconnectPassiveEffects(parentFiber) {\n var deletions = parentFiber.deletions;\n if (0 !== (parentFiber.flags & 16)) {\n if (null !== deletions)\n for (var i = 0; i < deletions.length; i++) {\n var childToDelete = deletions[i],\n prevEffectStart = pushComponentEffectStart();\n nextEffect = childToDelete;\n commitPassiveUnmountEffectsInsideOfDeletedTree_begin(\n childToDelete,\n parentFiber\n );\n (childToDelete.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n 0.05 < componentEffectEndTime - componentEffectStartTime &&\n logComponentTrigger(\n childToDelete,\n componentEffectStartTime,\n componentEffectEndTime,\n \"Unmount\"\n );\n popComponentEffectStart(prevEffectStart);\n }\n detachAlternateSiblings(parentFiber);\n }\n for (parentFiber = parentFiber.child; null !== parentFiber; )\n disconnectPassiveEffect(parentFiber),\n (parentFiber = parentFiber.sibling);\n }\n function disconnectPassiveEffect(finishedWork) {\n var prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate();\n switch (finishedWork.tag) {\n case 0:\n case 11:\n case 15:\n commitHookPassiveUnmountEffects(\n finishedWork,\n finishedWork.return,\n Passive\n );\n recursivelyTraverseDisconnectPassiveEffects(finishedWork);\n break;\n case 22:\n var instance = finishedWork.stateNode;\n instance._visibility & OffscreenPassiveEffectsConnected &&\n ((instance._visibility &= ~OffscreenPassiveEffectsConnected),\n recursivelyTraverseDisconnectPassiveEffects(finishedWork));\n break;\n default:\n recursivelyTraverseDisconnectPassiveEffects(finishedWork);\n }\n (finishedWork.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n finishedWork,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n );\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n componentEffectErrors = prevEffectErrors;\n }\n function commitPassiveUnmountEffectsInsideOfDeletedTree_begin(\n deletedSubtreeRoot,\n nearestMountedAncestor$jscomp$0\n ) {\n for (; null !== nextEffect; ) {\n var fiber = nextEffect,\n current = fiber,\n nearestMountedAncestor = nearestMountedAncestor$jscomp$0,\n prevEffectStart = pushComponentEffectStart(),\n prevEffectDuration = pushComponentEffectDuration(),\n prevEffectErrors = pushComponentEffectErrors(),\n prevEffectDidSpawnUpdate = pushComponentEffectDidSpawnUpdate();\n switch (current.tag) {\n case 0:\n case 11:\n case 15:\n commitHookPassiveUnmountEffects(\n current,\n nearestMountedAncestor,\n Passive\n );\n break;\n case 23:\n case 22:\n null !== current.memoizedState &&\n null !== current.memoizedState.cachePool &&\n ((nearestMountedAncestor = current.memoizedState.cachePool.pool),\n null != nearestMountedAncestor &&\n retainCache(nearestMountedAncestor));\n break;\n case 24:\n releaseCache(current.memoizedState.cache);\n }\n (current.mode & ProfileMode) !== NoMode &&\n 0 <= componentEffectStartTime &&\n 0 <= componentEffectEndTime &&\n (componentEffectSpawnedUpdate || 0.05 < componentEffectDuration) &&\n logComponentEffect(\n current,\n componentEffectStartTime,\n componentEffectEndTime,\n componentEffectDuration,\n componentEffectErrors\n );\n popComponentEffectStart(prevEffectStart);\n popComponentEffectDuration(prevEffectDuration);\n componentEffectSpawnedUpdate = prevEffectDidSpawnUpdate;\n componentEffectErrors = prevEffectErrors;\n current = fiber.child;\n if (null !== current) (current.return = fiber), (nextEffect = current);\n else\n a: for (fiber = deletedSubtreeRoot; null !== nextEffect; ) {\n current = nextEffect;\n prevEffectStart = current.sibling;\n prevEffectDuration = current.return;\n detachFiberAfterEffects(current);\n if (current === fiber) {\n nextEffect = null;\n break a;\n }\n if (null !== prevEffectStart) {\n prevEffectStart.return = prevEffectDuration;\n nextEffect = prevEffectStart;\n break a;\n }\n nextEffect = prevEffectDuration;\n }\n }\n }\n function onCommitRoot() {\n commitHooks.forEach(function (commitHook) {\n return commitHook();\n });\n }\n function isConcurrentActEnvironment() {\n var isReactActEnvironmentGlobal =\n \"undefined\" !== typeof IS_REACT_ACT_ENVIRONMENT\n ? IS_REACT_ACT_ENVIRONMENT\n : void 0;\n isReactActEnvironmentGlobal ||\n null === ReactSharedInternals.actQueue ||\n console.error(\n \"The current testing environment is not configured to support act(...)\"\n );\n return isReactActEnvironmentGlobal;\n }\n function requestUpdateLane(fiber) {\n if (\n (executionContext & RenderContext) !== NoContext &&\n 0 !== workInProgressRootRenderLanes\n )\n return workInProgressRootRenderLanes & -workInProgressRootRenderLanes;\n var transition = ReactSharedInternals.T;\n return null !== transition\n ? (transition._updatedFibers || (transition._updatedFibers = new Set()),\n transition._updatedFibers.add(fiber),\n requestTransitionLane())\n : resolveUpdatePriority();\n }\n function requestDeferredLane() {\n if (0 === workInProgressDeferredLane)\n if (0 === (workInProgressRootRenderLanes & 536870912) || isHydrating) {\n var lane = nextTransitionDeferredLane;\n nextTransitionDeferredLane <<= 1;\n 0 === (nextTransitionDeferredLane & 3932160) &&\n (nextTransitionDeferredLane = 262144);\n workInProgressDeferredLane = lane;\n } else workInProgressDeferredLane = 536870912;\n lane = suspenseHandlerStackCursor.current;\n null !== lane && (lane.flags |= 32);\n return workInProgressDeferredLane;\n }\n function scheduleViewTransitionEvent(fiber, callback) {\n if (null != callback) {\n var state = fiber.stateNode,\n instance = state.ref;\n null === instance &&\n (instance = state.ref =\n createViewTransitionInstance(\n getViewTransitionName(fiber.memoizedProps, state)\n ));\n null === pendingViewTransitionEvents &&\n (pendingViewTransitionEvents = []);\n pendingViewTransitionEvents.push(callback.bind(null, instance));\n }\n }\n function scheduleUpdateOnFiber(root, fiber, lane) {\n isRunningInsertionEffect &&\n console.error(\"useInsertionEffect must not schedule updates.\");\n isFlushingPassiveEffects && (didScheduleUpdateDuringPassiveEffects = !0);\n if (\n (root === workInProgressRoot &&\n (workInProgressSuspendedReason === SuspendedOnData ||\n workInProgressSuspendedReason === SuspendedOnAction)) ||\n null !== root.cancelPendingCommit\n )\n prepareFreshStack(root, 0),\n markRootSuspended(\n root,\n workInProgressRootRenderLanes,\n workInProgressDeferredLane,\n !1\n );\n markRootUpdated$1(root, lane);\n if (\n (executionContext & RenderContext) !== NoContext &&\n root === workInProgressRoot\n ) {\n if (isRendering)\n switch (fiber.tag) {\n case 0:\n case 11:\n case 15:\n root =\n (workInProgress && getComponentNameFromFiber(workInProgress)) ||\n \"Unknown\";\n didWarnAboutUpdateInRenderForAnotherComponent.has(root) ||\n (didWarnAboutUpdateInRenderForAnotherComponent.add(root),\n (fiber = getComponentNameFromFiber(fiber) || \"Unknown\"),\n console.error(\n \"Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://react.dev/link/setstate-in-render\",\n fiber,\n root,\n root\n ));\n break;\n case 1:\n didWarnAboutUpdateInRender ||\n (console.error(\n \"Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state.\"\n ),\n (didWarnAboutUpdateInRender = !0));\n }\n } else\n isDevToolsPresent && addFiberToLanesMap(root, fiber, lane),\n warnIfUpdatesNotWrappedWithActDEV(fiber),\n root === workInProgressRoot &&\n ((executionContext & RenderContext) === NoContext &&\n (workInProgressRootInterleavedUpdatedLanes |= lane),\n workInProgressRootExitStatus === RootSuspendedWithDelay &&\n markRootSuspended(\n root,\n workInProgressRootRenderLanes,\n workInProgressDeferredLane,\n !1\n )),\n ensureRootIsScheduled(root);\n }\n function performWorkOnRoot(root, lanes, forceSync) {\n if ((executionContext & (RenderContext | CommitContext)) !== NoContext)\n throw Error(\"Should not already be working.\");\n if (0 !== workInProgressRootRenderLanes && null !== workInProgress) {\n var yieldedFiber = workInProgress,\n yieldEndTime = now$1();\n switch (yieldReason) {\n case SuspendedOnImmediate:\n case SuspendedOnData:\n var startTime = yieldStartTime;\n supportsUserTiming &&\n ((yieldedFiber = yieldedFiber._debugTask)\n ? yieldedFiber.run(\n console.timeStamp.bind(\n console,\n \"Suspended\",\n startTime,\n yieldEndTime,\n COMPONENTS_TRACK,\n void 0,\n \"primary-light\"\n )\n )\n : console.timeStamp(\n \"Suspended\",\n startTime,\n yieldEndTime,\n COMPONENTS_TRACK,\n void 0,\n \"primary-light\"\n ));\n break;\n case SuspendedOnAction:\n startTime = yieldStartTime;\n supportsUserTiming &&\n ((yieldedFiber = yieldedFiber._debugTask)\n ? yieldedFiber.run(\n console.timeStamp.bind(\n console,\n \"Action\",\n startTime,\n yieldEndTime,\n COMPONENTS_TRACK,\n void 0,\n \"primary-light\"\n )\n )\n : console.timeStamp(\n \"Action\",\n startTime,\n yieldEndTime,\n COMPONENTS_TRACK,\n void 0,\n \"primary-light\"\n ));\n break;\n default:\n supportsUserTiming &&\n ((yieldedFiber = yieldEndTime - yieldStartTime),\n 3 > yieldedFiber ||\n console.timeStamp(\n \"Blocked\",\n yieldStartTime,\n yieldEndTime,\n COMPONENTS_TRACK,\n void 0,\n 5 > yieldedFiber\n ? \"primary-light\"\n : 10 > yieldedFiber\n ? \"primary\"\n : 100 > yieldedFiber\n ? \"primary-dark\"\n : \"error\"\n ));\n }\n }\n startTime = (forceSync =\n (!forceSync &&\n 0 === (lanes & 127) &&\n 0 === (lanes & root.expiredLanes)) ||\n checkIfRootIsPrerendering(root, lanes))\n ? renderRootConcurrent(root, lanes)\n : renderRootSync(root, lanes, !0);\n var renderWasConcurrent = forceSync;\n do {\n if (startTime === RootInProgress) {\n workInProgressRootIsPrerendering &&\n !forceSync &&\n markRootSuspended(root, lanes, 0, !1);\n lanes = workInProgressSuspendedReason;\n yieldStartTime = now();\n yieldReason = lanes;\n break;\n } else {\n yieldedFiber = now$1();\n yieldEndTime = root.current.alternate;\n if (\n renderWasConcurrent &&\n !isRenderConsistentWithExternalStores(yieldEndTime)\n ) {\n setCurrentTrackFromLanes(lanes);\n yieldEndTime = renderStartTime;\n startTime = yieldedFiber;\n !supportsUserTiming ||\n startTime <= yieldEndTime ||\n (workInProgressUpdateTask\n ? workInProgressUpdateTask.run(\n console.timeStamp.bind(\n console,\n \"Teared Render\",\n yieldEndTime,\n startTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"error\"\n )\n )\n : console.timeStamp(\n \"Teared Render\",\n yieldEndTime,\n startTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"error\"\n ));\n finalizeRender(lanes, yieldedFiber);\n startTime = renderRootSync(root, lanes, !1);\n renderWasConcurrent = !1;\n continue;\n }\n if (startTime === RootErrored) {\n renderWasConcurrent = lanes;\n if (root.errorRecoveryDisabledLanes & renderWasConcurrent)\n var errorRetryLanes = 0;\n else\n (errorRetryLanes = root.pendingLanes & -536870913),\n (errorRetryLanes =\n 0 !== errorRetryLanes\n ? errorRetryLanes\n : errorRetryLanes & 536870912\n ? 536870912\n : 0);\n if (0 !== errorRetryLanes) {\n setCurrentTrackFromLanes(lanes);\n logErroredRenderPhase(\n renderStartTime,\n yieldedFiber,\n lanes,\n workInProgressUpdateTask\n );\n finalizeRender(lanes, yieldedFiber);\n lanes = errorRetryLanes;\n a: {\n yieldedFiber = root;\n startTime = renderWasConcurrent;\n renderWasConcurrent = workInProgressRootConcurrentErrors;\n var wasRootDehydrated =\n yieldedFiber.current.memoizedState.isDehydrated;\n wasRootDehydrated &&\n (prepareFreshStack(yieldedFiber, errorRetryLanes).flags |=\n 256);\n errorRetryLanes = renderRootSync(\n yieldedFiber,\n errorRetryLanes,\n !1\n );\n if (errorRetryLanes !== RootErrored) {\n if (\n workInProgressRootDidAttachPingListener &&\n !wasRootDehydrated\n ) {\n yieldedFiber.errorRecoveryDisabledLanes |= startTime;\n workInProgressRootInterleavedUpdatedLanes |= startTime;\n startTime = RootSuspendedWithDelay;\n break a;\n }\n yieldedFiber = workInProgressRootRecoverableErrors;\n workInProgressRootRecoverableErrors = renderWasConcurrent;\n null !== yieldedFiber &&\n (null === workInProgressRootRecoverableErrors\n ? (workInProgressRootRecoverableErrors = yieldedFiber)\n : workInProgressRootRecoverableErrors.push.apply(\n workInProgressRootRecoverableErrors,\n yieldedFiber\n ));\n }\n startTime = errorRetryLanes;\n }\n renderWasConcurrent = !1;\n if (startTime !== RootErrored) continue;\n else yieldedFiber = now$1();\n }\n }\n if (startTime === RootFatalErrored) {\n setCurrentTrackFromLanes(lanes);\n logErroredRenderPhase(\n renderStartTime,\n yieldedFiber,\n lanes,\n workInProgressUpdateTask\n );\n finalizeRender(lanes, yieldedFiber);\n prepareFreshStack(root, 0);\n markRootSuspended(root, lanes, 0, !0);\n break;\n }\n a: {\n forceSync = root;\n switch (startTime) {\n case RootInProgress:\n case RootFatalErrored:\n throw Error(\"Root did not complete. This is a bug in React.\");\n case RootSuspendedWithDelay:\n if ((lanes & 4194048) !== lanes && (lanes & 62914560) !== lanes)\n break;\n case RootSuspendedAtTheShell:\n setCurrentTrackFromLanes(lanes);\n logSuspendedRenderPhase(\n renderStartTime,\n yieldedFiber,\n lanes,\n workInProgressUpdateTask\n );\n finalizeRender(lanes, yieldedFiber);\n yieldEndTime = lanes;\n 0 !== (yieldEndTime & 127)\n ? (blockingSuspendedTime = yieldedFiber)\n : 0 !== (yieldEndTime & 4194048) &&\n (transitionSuspendedTime = yieldedFiber);\n markRootSuspended(\n forceSync,\n lanes,\n workInProgressDeferredLane,\n !workInProgressRootDidSkipSuspendedSiblings\n );\n break a;\n case RootErrored:\n workInProgressRootRecoverableErrors = null;\n break;\n case RootSuspended:\n case RootCompleted:\n break;\n default:\n throw Error(\"Unknown root exit status.\");\n }\n if (null !== ReactSharedInternals.actQueue)\n commitRoot(\n forceSync,\n yieldEndTime,\n lanes,\n workInProgressRootRecoverableErrors,\n workInProgressTransitions,\n workInProgressRootDidIncludeRecursiveRenderUpdate,\n workInProgressDeferredLane,\n workInProgressRootInterleavedUpdatedLanes,\n workInProgressSuspendedRetryLanes,\n startTime,\n null,\n null,\n renderStartTime,\n yieldedFiber\n );\n else {\n if (\n (lanes & 62914560) === lanes &&\n ((renderWasConcurrent =\n globalMostRecentFallbackTime +\n FALLBACK_THROTTLE_MS -\n now$1()),\n 10 < renderWasConcurrent)\n ) {\n markRootSuspended(\n forceSync,\n lanes,\n workInProgressDeferredLane,\n !workInProgressRootDidSkipSuspendedSiblings\n );\n if (0 !== getNextLanes(forceSync, 0, !0)) break a;\n pendingEffectsLanes = lanes;\n forceSync.timeoutHandle = scheduleTimeout(\n commitRootWhenReady.bind(\n null,\n forceSync,\n yieldEndTime,\n workInProgressRootRecoverableErrors,\n workInProgressTransitions,\n workInProgressRootDidIncludeRecursiveRenderUpdate,\n lanes,\n workInProgressDeferredLane,\n workInProgressRootInterleavedUpdatedLanes,\n workInProgressSuspendedRetryLanes,\n workInProgressRootDidSkipSuspendedSiblings,\n startTime,\n \"Throttled\",\n renderStartTime,\n yieldedFiber\n ),\n renderWasConcurrent\n );\n break a;\n }\n commitRootWhenReady(\n forceSync,\n yieldEndTime,\n workInProgressRootRecoverableErrors,\n workInProgressTransitions,\n workInProgressRootDidIncludeRecursiveRenderUpdate,\n lanes,\n workInProgressDeferredLane,\n workInProgressRootInterleavedUpdatedLanes,\n workInProgressSuspendedRetryLanes,\n workInProgressRootDidSkipSuspendedSiblings,\n startTime,\n null,\n renderStartTime,\n yieldedFiber\n );\n }\n }\n }\n break;\n } while (1);\n ensureRootIsScheduled(root);\n }\n function commitRootWhenReady(\n root,\n finishedWork,\n recoverableErrors,\n transitions,\n didIncludeRenderPhaseUpdate,\n lanes,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes,\n didSkipSuspendedSiblings,\n exitStatus,\n suspendedCommitReason,\n completedRenderStartTime,\n completedRenderEndTime\n ) {\n root.timeoutHandle = noTimeout;\n var subtreeFlags = finishedWork.subtreeFlags,\n isViewTransitionEligible = (lanes & 335544064) === lanes,\n suspendedState = null;\n if (\n isViewTransitionEligible ||\n subtreeFlags & 8192 ||\n 16785408 === (subtreeFlags & 16785408)\n )\n if (\n ((suspendedState = {\n stylesheets: null,\n count: 0,\n imgCount: 0,\n imgBytes: 0,\n suspenseyImages: [],\n waitingForImages: !0,\n waitingForViewTransition: !1,\n unsuspend: noop$1\n }),\n (appearingViewTransitions = null),\n accumulateSuspenseyCommitOnFiber(finishedWork, lanes, suspendedState),\n isViewTransitionEligible &&\n ((subtreeFlags = suspendedState),\n (isViewTransitionEligible = root.containerInfo),\n (isViewTransitionEligible = (\n 9 === isViewTransitionEligible.nodeType\n ? isViewTransitionEligible\n : isViewTransitionEligible.ownerDocument\n ).__reactViewTransition),\n null != isViewTransitionEligible &&\n (subtreeFlags.count++,\n (subtreeFlags.waitingForViewTransition = !0),\n (subtreeFlags = onUnsuspend.bind(subtreeFlags)),\n isViewTransitionEligible.finished.then(\n subtreeFlags,\n subtreeFlags\n ))),\n (subtreeFlags =\n (lanes & 62914560) === lanes\n ? globalMostRecentFallbackTime - now$1()\n : (lanes & 4194048) === lanes\n ? globalMostRecentTransitionTime - now$1()\n : 0),\n (subtreeFlags = waitForCommitToBeReady(suspendedState, subtreeFlags)),\n null !== subtreeFlags)\n ) {\n pendingEffectsLanes = lanes;\n root.cancelPendingCommit = subtreeFlags(\n commitRoot.bind(\n null,\n root,\n finishedWork,\n lanes,\n recoverableErrors,\n transitions,\n didIncludeRenderPhaseUpdate,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes,\n exitStatus,\n suspendedState,\n suspendedState.waitingForViewTransition\n ? \"Waiting for the previous Animation\"\n : 0 < suspendedState.count\n ? 0 < suspendedState.imgCount\n ? \"Suspended on CSS and Images\"\n : \"Suspended on CSS\"\n : 1 === suspendedState.imgCount\n ? \"Suspended on an Image\"\n : 0 < suspendedState.imgCount\n ? \"Suspended on Images\"\n : null,\n completedRenderStartTime,\n completedRenderEndTime\n )\n );\n markRootSuspended(\n root,\n lanes,\n spawnedLane,\n !didSkipSuspendedSiblings\n );\n return;\n }\n commitRoot(\n root,\n finishedWork,\n lanes,\n recoverableErrors,\n transitions,\n didIncludeRenderPhaseUpdate,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes,\n exitStatus,\n suspendedState,\n suspendedCommitReason,\n completedRenderStartTime,\n completedRenderEndTime\n );\n }\n function isRenderConsistentWithExternalStores(finishedWork) {\n for (var node = finishedWork; ; ) {\n var tag = node.tag;\n if (\n (0 === tag || 11 === tag || 15 === tag) &&\n node.flags & 16384 &&\n ((tag = node.updateQueue),\n null !== tag && ((tag = tag.stores), null !== tag))\n )\n for (var i = 0; i < tag.length; i++) {\n var check = tag[i],\n getSnapshot = check.getSnapshot;\n check = check.value;\n try {\n if (!objectIs(getSnapshot(), check)) return !1;\n } catch (error) {\n return !1;\n }\n }\n tag = node.child;\n if (node.subtreeFlags & 16384 && null !== tag)\n (tag.return = node), (node = tag);\n else {\n if (node === finishedWork) break;\n for (; null === node.sibling; ) {\n if (null === node.return || node.return === finishedWork) return !0;\n node = node.return;\n }\n node.sibling.return = node.return;\n node = node.sibling;\n }\n }\n return !0;\n }\n function markRootSuspended(\n root,\n suspendedLanes,\n spawnedLane,\n didAttemptEntireTree\n ) {\n suspendedLanes &= ~workInProgressRootPingedLanes;\n suspendedLanes &= ~workInProgressRootInterleavedUpdatedLanes;\n root.suspendedLanes |= suspendedLanes;\n root.pingedLanes &= ~suspendedLanes;\n didAttemptEntireTree && (root.warmLanes |= suspendedLanes);\n didAttemptEntireTree = root.expirationTimes;\n for (var lanes = suspendedLanes; 0 < lanes; ) {\n var index = 31 - clz32(lanes),\n lane = 1 << index;\n didAttemptEntireTree[index] = -1;\n lanes &= ~lane;\n }\n 0 !== spawnedLane &&\n markSpawnedDeferredLane(root, spawnedLane, suspendedLanes);\n }\n function flushSyncWork$1() {\n return (executionContext & (RenderContext | CommitContext)) === NoContext\n ? (flushSyncWorkAcrossRoots_impl(0, !1), !1)\n : !0;\n }\n function resetWorkInProgressStack() {\n if (null !== workInProgress) {\n if (workInProgressSuspendedReason === NotSuspended)\n var interruptedWork = workInProgress.return;\n else\n (interruptedWork = workInProgress),\n resetContextDependencies(),\n resetHooksOnUnwind(interruptedWork),\n (thenableState$1 = null),\n (thenableIndexCounter$1 = 0),\n (interruptedWork = workInProgress);\n for (; null !== interruptedWork; )\n unwindInterruptedWork(interruptedWork.alternate, interruptedWork),\n (interruptedWork = interruptedWork.return);\n workInProgress = null;\n }\n }\n function finalizeRender(lanes, finalizationTime) {\n 0 !== (lanes & 127) && (blockingClampTime = finalizationTime);\n 0 !== (lanes & 4194048) && (transitionClampTime = finalizationTime);\n 0 !== (lanes & 62914560) && (retryClampTime = finalizationTime);\n 0 !== (lanes & 2080374784) && (idleClampTime = finalizationTime);\n }\n function prepareFreshStack(root, lanes) {\n supportsUserTiming &&\n (console.timeStamp(\n \"Blocking Track\",\n 0.003,\n 0.003,\n \"Blocking\",\n LANES_TRACK_GROUP,\n \"primary-light\"\n ),\n console.timeStamp(\n \"Transition Track\",\n 0.003,\n 0.003,\n \"Transition\",\n LANES_TRACK_GROUP,\n \"primary-light\"\n ),\n console.timeStamp(\n \"Suspense Track\",\n 0.003,\n 0.003,\n \"Suspense\",\n LANES_TRACK_GROUP,\n \"primary-light\"\n ),\n console.timeStamp(\n \"Idle Track\",\n 0.003,\n 0.003,\n \"Idle\",\n LANES_TRACK_GROUP,\n \"primary-light\"\n ));\n var previousRenderStartTime = renderStartTime;\n renderStartTime = now();\n if (0 !== workInProgressRootRenderLanes && 0 < previousRenderStartTime) {\n setCurrentTrackFromLanes(workInProgressRootRenderLanes);\n if (\n workInProgressRootExitStatus === RootSuspended ||\n workInProgressRootExitStatus === RootSuspendedWithDelay\n )\n logSuspendedRenderPhase(\n previousRenderStartTime,\n renderStartTime,\n lanes,\n workInProgressUpdateTask\n );\n else {\n var endTime = renderStartTime,\n debugTask = workInProgressUpdateTask;\n if (supportsUserTiming && !(endTime <= previousRenderStartTime)) {\n var color =\n (lanes & 738197653) === lanes\n ? \"tertiary-dark\"\n : \"primary-dark\",\n label =\n (lanes & 536870912) === lanes\n ? \"Prewarm\"\n : (lanes & 201326741) === lanes\n ? \"Interrupted Hydration\"\n : \"Interrupted Render\";\n debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n label,\n previousRenderStartTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n color\n )\n )\n : console.timeStamp(\n label,\n previousRenderStartTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n color\n );\n }\n }\n finalizeRender(workInProgressRootRenderLanes, renderStartTime);\n }\n previousRenderStartTime = workInProgressUpdateTask;\n workInProgressUpdateTask = null;\n if (0 !== (lanes & 127)) {\n workInProgressUpdateTask = blockingUpdateTask;\n debugTask =\n 0 <= blockingUpdateTime && blockingUpdateTime < blockingClampTime\n ? blockingClampTime\n : blockingUpdateTime;\n endTime =\n 0 <= blockingEventTime && blockingEventTime < blockingClampTime\n ? blockingClampTime\n : blockingEventTime;\n color =\n 0 <= endTime ? endTime : 0 <= debugTask ? debugTask : renderStartTime;\n 0 <= blockingSuspendedTime\n ? (setCurrentTrackFromLanes(2),\n logSuspendedWithDelayPhase(\n blockingSuspendedTime,\n color,\n lanes,\n previousRenderStartTime\n ))\n : 0 !== (animatingLanes & 127) &&\n (setCurrentTrackFromLanes(2),\n logAnimatingPhase(blockingClampTime, color, animatingTask));\n previousRenderStartTime = debugTask;\n var eventTime = endTime,\n eventType = blockingEventType,\n eventIsRepeat = 0 < blockingEventRepeatTime,\n isSpawnedUpdate = blockingUpdateType === SPAWNED_UPDATE,\n isPingedUpdate = blockingUpdateType === PINGED_UPDATE;\n debugTask = renderStartTime;\n endTime = blockingUpdateTask;\n color = blockingUpdateMethodName;\n label = blockingUpdateComponentName;\n if (supportsUserTiming) {\n currentTrack = \"Blocking\";\n 0 < previousRenderStartTime\n ? previousRenderStartTime > debugTask &&\n (previousRenderStartTime = debugTask)\n : (previousRenderStartTime = debugTask);\n 0 < eventTime\n ? eventTime > previousRenderStartTime &&\n (eventTime = previousRenderStartTime)\n : (eventTime = previousRenderStartTime);\n if (null !== eventType && previousRenderStartTime > eventTime) {\n var color$jscomp$0 = eventIsRepeat ? \"secondary-light\" : \"warning\";\n endTime\n ? endTime.run(\n console.timeStamp.bind(\n console,\n eventIsRepeat ? \"Consecutive\" : \"Event: \" + eventType,\n eventTime,\n previousRenderStartTime,\n currentTrack,\n LANES_TRACK_GROUP,\n color$jscomp$0\n )\n )\n : console.timeStamp(\n eventIsRepeat ? \"Consecutive\" : \"Event: \" + eventType,\n eventTime,\n previousRenderStartTime,\n currentTrack,\n LANES_TRACK_GROUP,\n color$jscomp$0\n );\n }\n debugTask > previousRenderStartTime &&\n ((eventTime = isSpawnedUpdate\n ? \"error\"\n : (lanes & 738197653) === lanes\n ? \"tertiary-light\"\n : \"primary-light\"),\n (isSpawnedUpdate = isPingedUpdate\n ? \"Promise Resolved\"\n : isSpawnedUpdate\n ? \"Cascading Update\"\n : 5 < debugTask - previousRenderStartTime\n ? \"Update Blocked\"\n : \"Update\"),\n (isPingedUpdate = []),\n null != label && isPingedUpdate.push([\"Component name\", label]),\n null != color && isPingedUpdate.push([\"Method name\", color]),\n (previousRenderStartTime = {\n start: previousRenderStartTime,\n end: debugTask,\n detail: {\n devtools: {\n properties: isPingedUpdate,\n track: currentTrack,\n trackGroup: LANES_TRACK_GROUP,\n color: eventTime\n }\n }\n }),\n endTime\n ? endTime.run(\n performance.measure.bind(\n performance,\n isSpawnedUpdate,\n previousRenderStartTime\n )\n )\n : performance.measure(isSpawnedUpdate, previousRenderStartTime),\n performance.clearMeasures(isSpawnedUpdate));\n }\n blockingUpdateTime = -1.1;\n blockingUpdateType = 0;\n blockingUpdateComponentName = blockingUpdateMethodName = null;\n blockingSuspendedTime = -1.1;\n blockingEventRepeatTime = blockingEventTime;\n blockingEventTime = -1.1;\n blockingClampTime = now();\n }\n 0 !== (lanes & 4194048) &&\n ((workInProgressUpdateTask = transitionUpdateTask),\n (debugTask =\n 0 <= transitionStartTime && transitionStartTime < transitionClampTime\n ? transitionClampTime\n : transitionStartTime),\n (previousRenderStartTime =\n 0 <= transitionUpdateTime &&\n transitionUpdateTime < transitionClampTime\n ? transitionClampTime\n : transitionUpdateTime),\n (endTime =\n 0 <= transitionEventTime && transitionEventTime < transitionClampTime\n ? transitionClampTime\n : transitionEventTime),\n (color =\n 0 <= endTime\n ? endTime\n : 0 <= previousRenderStartTime\n ? previousRenderStartTime\n : renderStartTime),\n 0 <= transitionSuspendedTime\n ? (setCurrentTrackFromLanes(256),\n logSuspendedWithDelayPhase(\n transitionSuspendedTime,\n color,\n lanes,\n workInProgressUpdateTask\n ))\n : 0 !== (animatingLanes & 4194048) &&\n (setCurrentTrackFromLanes(256),\n logAnimatingPhase(transitionClampTime, color, animatingTask)),\n (isPingedUpdate = endTime),\n (eventTime = transitionEventType),\n (eventType = 0 < transitionEventRepeatTime),\n (eventIsRepeat = transitionUpdateType === PINGED_UPDATE),\n (color = renderStartTime),\n (endTime = transitionUpdateTask),\n (label = transitionUpdateMethodName),\n (isSpawnedUpdate = transitionUpdateComponentName),\n supportsUserTiming &&\n ((currentTrack = \"Transition\"),\n 0 < previousRenderStartTime\n ? previousRenderStartTime > color &&\n (previousRenderStartTime = color)\n : (previousRenderStartTime = color),\n 0 < debugTask\n ? debugTask > previousRenderStartTime &&\n (debugTask = previousRenderStartTime)\n : (debugTask = previousRenderStartTime),\n 0 < isPingedUpdate\n ? isPingedUpdate > debugTask && (isPingedUpdate = debugTask)\n : (isPingedUpdate = debugTask),\n debugTask > isPingedUpdate &&\n null !== eventTime &&\n ((color$jscomp$0 = eventType ? \"secondary-light\" : \"warning\"),\n endTime\n ? endTime.run(\n console.timeStamp.bind(\n console,\n eventType ? \"Consecutive\" : \"Event: \" + eventTime,\n isPingedUpdate,\n debugTask,\n currentTrack,\n LANES_TRACK_GROUP,\n color$jscomp$0\n )\n )\n : console.timeStamp(\n eventType ? \"Consecutive\" : \"Event: \" + eventTime,\n isPingedUpdate,\n debugTask,\n currentTrack,\n LANES_TRACK_GROUP,\n color$jscomp$0\n )),\n previousRenderStartTime > debugTask &&\n (endTime\n ? endTime.run(\n console.timeStamp.bind(\n console,\n \"Action\",\n debugTask,\n previousRenderStartTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"primary-dark\"\n )\n )\n : console.timeStamp(\n \"Action\",\n debugTask,\n previousRenderStartTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"primary-dark\"\n )),\n color > previousRenderStartTime &&\n ((debugTask = eventIsRepeat\n ? \"Promise Resolved\"\n : 5 < color - previousRenderStartTime\n ? \"Update Blocked\"\n : \"Update\"),\n (isPingedUpdate = []),\n null != isSpawnedUpdate &&\n isPingedUpdate.push([\"Component name\", isSpawnedUpdate]),\n null != label && isPingedUpdate.push([\"Method name\", label]),\n (previousRenderStartTime = {\n start: previousRenderStartTime,\n end: color,\n detail: {\n devtools: {\n properties: isPingedUpdate,\n track: currentTrack,\n trackGroup: LANES_TRACK_GROUP,\n color: \"primary-light\"\n }\n }\n }),\n endTime\n ? endTime.run(\n performance.measure.bind(\n performance,\n debugTask,\n previousRenderStartTime\n )\n )\n : performance.measure(debugTask, previousRenderStartTime),\n performance.clearMeasures(debugTask))),\n (transitionUpdateTime = transitionStartTime = -1.1),\n (transitionUpdateType = 0),\n (transitionSuspendedTime = -1.1),\n (transitionEventRepeatTime = transitionEventTime),\n (transitionEventTime = -1.1),\n (transitionClampTime = now()));\n 0 !== (lanes & 62914560) &&\n 0 !== (animatingLanes & 62914560) &&\n (setCurrentTrackFromLanes(4194304),\n logAnimatingPhase(retryClampTime, renderStartTime, animatingTask));\n 0 !== (lanes & 2080374784) &&\n 0 !== (animatingLanes & 2080374784) &&\n (setCurrentTrackFromLanes(268435456),\n logAnimatingPhase(idleClampTime, renderStartTime, animatingTask));\n previousRenderStartTime = root.timeoutHandle;\n previousRenderStartTime !== noTimeout &&\n ((root.timeoutHandle = noTimeout),\n cancelTimeout(previousRenderStartTime));\n previousRenderStartTime = root.cancelPendingCommit;\n null !== previousRenderStartTime &&\n ((root.cancelPendingCommit = null), previousRenderStartTime());\n pendingEffectsLanes = 0;\n resetWorkInProgressStack();\n workInProgressRoot = root;\n workInProgress = previousRenderStartTime = createWorkInProgress(\n root.current,\n null\n );\n workInProgressRootRenderLanes = lanes;\n workInProgressSuspendedReason = NotSuspended;\n workInProgressThrownValue = null;\n workInProgressRootDidSkipSuspendedSiblings = !1;\n workInProgressRootIsPrerendering = checkIfRootIsPrerendering(root, lanes);\n workInProgressRootDidAttachPingListener = !1;\n workInProgressRootExitStatus = RootInProgress;\n workInProgressSuspendedRetryLanes =\n workInProgressDeferredLane =\n workInProgressRootPingedLanes =\n workInProgressRootInterleavedUpdatedLanes =\n workInProgressRootSkippedLanes =\n 0;\n workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =\n null;\n workInProgressRootDidIncludeRecursiveRenderUpdate = !1;\n 0 !== (lanes & 8) && (lanes |= lanes & 32);\n endTime = root.entangledLanes;\n if (0 !== endTime)\n for (root = root.entanglements, endTime &= lanes; 0 < endTime; )\n (debugTask = 31 - clz32(endTime)),\n (color = 1 << debugTask),\n (lanes |= root[debugTask]),\n (endTime &= ~color);\n entangledRenderLanes = lanes;\n finishQueueingConcurrentUpdates();\n root = getCurrentTime();\n 1e3 < root - lastResetTime &&\n ((ReactSharedInternals.recentlyCreatedOwnerStacks = 0),\n (lastResetTime = root));\n ReactStrictModeWarnings.discardPendingWarnings();\n return previousRenderStartTime;\n }\n function handleThrow(root, thrownValue) {\n currentlyRenderingFiber = null;\n ReactSharedInternals.H = ContextOnlyDispatcher;\n ReactSharedInternals.getCurrentStack = null;\n isRendering = !1;\n current = null;\n thrownValue === SuspenseException ||\n thrownValue === SuspenseActionException\n ? ((thrownValue = getSuspendedThenable()),\n (workInProgressSuspendedReason = SuspendedOnImmediate))\n : thrownValue === SuspenseyCommitException\n ? ((thrownValue = getSuspendedThenable()),\n (workInProgressSuspendedReason = SuspendedOnInstance))\n : (workInProgressSuspendedReason =\n thrownValue === SelectiveHydrationException\n ? SuspendedOnHydration\n : null !== thrownValue &&\n \"object\" === typeof thrownValue &&\n \"function\" === typeof thrownValue.then\n ? SuspendedOnDeprecatedThrowPromise\n : SuspendedOnError);\n workInProgressThrownValue = thrownValue;\n var erroredWork = workInProgress;\n null === erroredWork\n ? ((workInProgressRootExitStatus = RootFatalErrored),\n logUncaughtError(\n root,\n createCapturedValueAtFiber(thrownValue, root.current)\n ))\n : erroredWork.mode & ProfileMode &&\n stopProfilerTimerIfRunningAndRecordDuration(erroredWork);\n }\n function shouldRemainOnPreviousScreen() {\n var handler = suspenseHandlerStackCursor.current;\n return null === handler\n ? !0\n : (workInProgressRootRenderLanes & 4194048) ===\n workInProgressRootRenderLanes\n ? null === shellBoundary\n ? !0\n : !1\n : (workInProgressRootRenderLanes & 62914560) ===\n workInProgressRootRenderLanes ||\n 0 !== (workInProgressRootRenderLanes & 536870912)\n ? handler === shellBoundary\n : !1;\n }\n function pushDispatcher() {\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = ContextOnlyDispatcher;\n return null === prevDispatcher ? ContextOnlyDispatcher : prevDispatcher;\n }\n function pushAsyncDispatcher() {\n var prevAsyncDispatcher = ReactSharedInternals.A;\n ReactSharedInternals.A = DefaultAsyncDispatcher;\n return prevAsyncDispatcher;\n }\n function markRenderDerivedCause(fiber) {\n null === workInProgressUpdateTask &&\n (workInProgressUpdateTask =\n null == fiber._debugTask ? null : fiber._debugTask);\n }\n function renderDidSuspendDelayIfPossible() {\n workInProgressRootExitStatus = RootSuspendedWithDelay;\n workInProgressRootDidSkipSuspendedSiblings ||\n ((workInProgressRootRenderLanes & 4194048) !==\n workInProgressRootRenderLanes &&\n null !== suspenseHandlerStackCursor.current) ||\n (workInProgressRootIsPrerendering = !0);\n (0 === (workInProgressRootSkippedLanes & 134217727) &&\n 0 === (workInProgressRootInterleavedUpdatedLanes & 134217727)) ||\n null === workInProgressRoot ||\n markRootSuspended(\n workInProgressRoot,\n workInProgressRootRenderLanes,\n workInProgressDeferredLane,\n !1\n );\n }\n function renderRootSync(root, lanes, shouldYieldForPrerendering) {\n var prevExecutionContext = executionContext;\n executionContext |= RenderContext;\n var prevDispatcher = pushDispatcher(),\n prevAsyncDispatcher = pushAsyncDispatcher();\n if (\n workInProgressRoot !== root ||\n workInProgressRootRenderLanes !== lanes\n ) {\n if (isDevToolsPresent) {\n var memoizedUpdaters = root.memoizedUpdaters;\n 0 < memoizedUpdaters.size &&\n (restorePendingUpdaters(root, workInProgressRootRenderLanes),\n memoizedUpdaters.clear());\n movePendingFibersToMemoized(root, lanes);\n }\n workInProgressTransitions = null;\n prepareFreshStack(root, lanes);\n }\n lanes = !1;\n memoizedUpdaters = workInProgressRootExitStatus;\n a: do\n try {\n if (\n workInProgressSuspendedReason !== NotSuspended &&\n null !== workInProgress\n ) {\n var unitOfWork = workInProgress,\n thrownValue = workInProgressThrownValue;\n switch (workInProgressSuspendedReason) {\n case SuspendedOnHydration:\n resetWorkInProgressStack();\n memoizedUpdaters = RootSuspendedAtTheShell;\n break a;\n case SuspendedOnImmediate:\n case SuspendedOnData:\n case SuspendedOnAction:\n case SuspendedOnDeprecatedThrowPromise:\n null === suspenseHandlerStackCursor.current && (lanes = !0);\n var reason = workInProgressSuspendedReason;\n workInProgressSuspendedReason = NotSuspended;\n workInProgressThrownValue = null;\n throwAndUnwindWorkLoop(root, unitOfWork, thrownValue, reason);\n if (\n shouldYieldForPrerendering &&\n workInProgressRootIsPrerendering\n ) {\n memoizedUpdaters = RootInProgress;\n break a;\n }\n break;\n default:\n (reason = workInProgressSuspendedReason),\n (workInProgressSuspendedReason = NotSuspended),\n (workInProgressThrownValue = null),\n throwAndUnwindWorkLoop(root, unitOfWork, thrownValue, reason);\n }\n }\n workLoopSync();\n memoizedUpdaters = workInProgressRootExitStatus;\n break;\n } catch (thrownValue$8) {\n handleThrow(root, thrownValue$8);\n }\n while (1);\n lanes && root.shellSuspendCounter++;\n resetContextDependencies();\n executionContext = prevExecutionContext;\n ReactSharedInternals.H = prevDispatcher;\n ReactSharedInternals.A = prevAsyncDispatcher;\n null === workInProgress &&\n ((workInProgressRoot = null),\n (workInProgressRootRenderLanes = 0),\n finishQueueingConcurrentUpdates());\n return memoizedUpdaters;\n }\n function workLoopSync() {\n for (; null !== workInProgress; ) performUnitOfWork(workInProgress);\n }\n function renderRootConcurrent(root, lanes) {\n var prevExecutionContext = executionContext;\n executionContext |= RenderContext;\n var prevDispatcher = pushDispatcher(),\n prevAsyncDispatcher = pushAsyncDispatcher();\n if (\n workInProgressRoot !== root ||\n workInProgressRootRenderLanes !== lanes\n ) {\n if (isDevToolsPresent) {\n var memoizedUpdaters = root.memoizedUpdaters;\n 0 < memoizedUpdaters.size &&\n (restorePendingUpdaters(root, workInProgressRootRenderLanes),\n memoizedUpdaters.clear());\n movePendingFibersToMemoized(root, lanes);\n }\n workInProgressTransitions = null;\n workInProgressRootRenderTargetTime = now$1() + RENDER_TIMEOUT_MS;\n prepareFreshStack(root, lanes);\n } else\n workInProgressRootIsPrerendering = checkIfRootIsPrerendering(\n root,\n lanes\n );\n a: do\n try {\n if (\n workInProgressSuspendedReason !== NotSuspended &&\n null !== workInProgress\n )\n b: switch (\n ((lanes = workInProgress),\n (memoizedUpdaters = workInProgressThrownValue),\n workInProgressSuspendedReason)\n ) {\n case SuspendedOnError:\n workInProgressSuspendedReason = NotSuspended;\n workInProgressThrownValue = null;\n throwAndUnwindWorkLoop(\n root,\n lanes,\n memoizedUpdaters,\n SuspendedOnError\n );\n break;\n case SuspendedOnData:\n case SuspendedOnAction:\n if (isThenableResolved(memoizedUpdaters)) {\n workInProgressSuspendedReason = NotSuspended;\n workInProgressThrownValue = null;\n replaySuspendedUnitOfWork(lanes);\n break;\n }\n lanes = function () {\n (workInProgressSuspendedReason !== SuspendedOnData &&\n workInProgressSuspendedReason !== SuspendedOnAction) ||\n workInProgressRoot !== root ||\n (workInProgressSuspendedReason =\n SuspendedAndReadyToContinue);\n ensureRootIsScheduled(root);\n };\n memoizedUpdaters.then(lanes, lanes);\n break a;\n case SuspendedOnImmediate:\n workInProgressSuspendedReason = SuspendedAndReadyToContinue;\n break a;\n case SuspendedOnInstance:\n workInProgressSuspendedReason =\n SuspendedOnInstanceAndReadyToContinue;\n break a;\n case SuspendedAndReadyToContinue:\n isThenableResolved(memoizedUpdaters)\n ? ((workInProgressSuspendedReason = NotSuspended),\n (workInProgressThrownValue = null),\n replaySuspendedUnitOfWork(lanes))\n : ((workInProgressSuspendedReason = NotSuspended),\n (workInProgressThrownValue = null),\n throwAndUnwindWorkLoop(\n root,\n lanes,\n memoizedUpdaters,\n SuspendedAndReadyToContinue\n ));\n break;\n case SuspendedOnInstanceAndReadyToContinue:\n var resource = null;\n switch (workInProgress.tag) {\n case 26:\n resource = workInProgress.memoizedState;\n case 5:\n case 27:\n var hostFiber = workInProgress;\n if (\n resource\n ? preloadResource(resource)\n : hostFiber.stateNode.complete\n ) {\n workInProgressSuspendedReason = NotSuspended;\n workInProgressThrownValue = null;\n var sibling = hostFiber.sibling;\n if (null !== sibling) workInProgress = sibling;\n else {\n var returnFiber = hostFiber.return;\n null !== returnFiber\n ? ((workInProgress = returnFiber),\n completeUnitOfWork(returnFiber))\n : (workInProgress = null);\n }\n break b;\n }\n break;\n default:\n console.error(\n \"Unexpected type of fiber triggered a suspensey commit. This is a bug in React.\"\n );\n }\n workInProgressSuspendedReason = NotSuspended;\n workInProgressThrownValue = null;\n throwAndUnwindWorkLoop(\n root,\n lanes,\n memoizedUpdaters,\n SuspendedOnInstanceAndReadyToContinue\n );\n break;\n case SuspendedOnDeprecatedThrowPromise:\n workInProgressSuspendedReason = NotSuspended;\n workInProgressThrownValue = null;\n throwAndUnwindWorkLoop(\n root,\n lanes,\n memoizedUpdaters,\n SuspendedOnDeprecatedThrowPromise\n );\n break;\n case SuspendedOnHydration:\n resetWorkInProgressStack();\n workInProgressRootExitStatus = RootSuspendedAtTheShell;\n break a;\n default:\n throw Error(\n \"Unexpected SuspendedReason. This is a bug in React.\"\n );\n }\n null !== ReactSharedInternals.actQueue\n ? workLoopSync()\n : workLoopConcurrentByScheduler();\n break;\n } catch (thrownValue$9) {\n handleThrow(root, thrownValue$9);\n }\n while (1);\n resetContextDependencies();\n ReactSharedInternals.H = prevDispatcher;\n ReactSharedInternals.A = prevAsyncDispatcher;\n executionContext = prevExecutionContext;\n if (null !== workInProgress) return RootInProgress;\n workInProgressRoot = null;\n workInProgressRootRenderLanes = 0;\n finishQueueingConcurrentUpdates();\n return workInProgressRootExitStatus;\n }\n function workLoopConcurrentByScheduler() {\n for (; null !== workInProgress && !shouldYield(); )\n performUnitOfWork(workInProgress);\n }\n function performUnitOfWork(unitOfWork) {\n var current = unitOfWork.alternate;\n (unitOfWork.mode & ProfileMode) !== NoMode\n ? (startProfilerTimer(unitOfWork),\n (current = runWithFiberInDEV(\n unitOfWork,\n beginWork,\n current,\n unitOfWork,\n entangledRenderLanes\n )),\n stopProfilerTimerIfRunningAndRecordDuration(unitOfWork))\n : (current = runWithFiberInDEV(\n unitOfWork,\n beginWork,\n current,\n unitOfWork,\n entangledRenderLanes\n ));\n unitOfWork.memoizedProps = unitOfWork.pendingProps;\n null === current\n ? completeUnitOfWork(unitOfWork)\n : (workInProgress = current);\n }\n function replaySuspendedUnitOfWork(unitOfWork) {\n var next = runWithFiberInDEV(unitOfWork, replayBeginWork, unitOfWork);\n unitOfWork.memoizedProps = unitOfWork.pendingProps;\n null === next ? completeUnitOfWork(unitOfWork) : (workInProgress = next);\n }\n function replayBeginWork(unitOfWork) {\n var current = unitOfWork.alternate,\n isProfilingMode = (unitOfWork.mode & ProfileMode) !== NoMode;\n isProfilingMode && startProfilerTimer(unitOfWork);\n switch (unitOfWork.tag) {\n case 15:\n case 0:\n current = replayFunctionComponent(\n current,\n unitOfWork,\n unitOfWork.pendingProps,\n unitOfWork.type,\n void 0,\n workInProgressRootRenderLanes\n );\n break;\n case 11:\n current = replayFunctionComponent(\n current,\n unitOfWork,\n unitOfWork.pendingProps,\n unitOfWork.type.render,\n unitOfWork.ref,\n workInProgressRootRenderLanes\n );\n break;\n case 5:\n resetHooksOnUnwind(unitOfWork);\n default:\n unwindInterruptedWork(current, unitOfWork),\n (unitOfWork = workInProgress =\n resetWorkInProgress(unitOfWork, entangledRenderLanes)),\n (current = beginWork(current, unitOfWork, entangledRenderLanes));\n }\n isProfilingMode &&\n stopProfilerTimerIfRunningAndRecordDuration(unitOfWork);\n return current;\n }\n function throwAndUnwindWorkLoop(\n root,\n unitOfWork,\n thrownValue,\n suspendedReason\n ) {\n resetContextDependencies();\n resetHooksOnUnwind(unitOfWork);\n thenableState$1 = null;\n thenableIndexCounter$1 = 0;\n var returnFiber = unitOfWork.return;\n try {\n if (\n throwException(\n root,\n returnFiber,\n unitOfWork,\n thrownValue,\n workInProgressRootRenderLanes\n )\n ) {\n workInProgressRootExitStatus = RootFatalErrored;\n logUncaughtError(\n root,\n createCapturedValueAtFiber(thrownValue, root.current)\n );\n workInProgress = null;\n return;\n }\n } catch (error) {\n if (null !== returnFiber) throw ((workInProgress = returnFiber), error);\n workInProgressRootExitStatus = RootFatalErrored;\n logUncaughtError(\n root,\n createCapturedValueAtFiber(thrownValue, root.current)\n );\n workInProgress = null;\n return;\n }\n if (unitOfWork.flags & 32768) {\n if (isHydrating || suspendedReason === SuspendedOnError) root = !0;\n else if (\n workInProgressRootIsPrerendering ||\n 0 !== (workInProgressRootRenderLanes & 536870912)\n )\n root = !1;\n else if (\n ((workInProgressRootDidSkipSuspendedSiblings = root = !0),\n suspendedReason === SuspendedOnData ||\n suspendedReason === SuspendedOnAction ||\n suspendedReason === SuspendedOnImmediate ||\n suspendedReason === SuspendedOnDeprecatedThrowPromise)\n )\n (suspendedReason = suspenseHandlerStackCursor.current),\n null !== suspendedReason &&\n 13 === suspendedReason.tag &&\n (suspendedReason.flags |= 16384);\n unwindUnitOfWork(unitOfWork, root);\n } else completeUnitOfWork(unitOfWork);\n }\n function completeUnitOfWork(unitOfWork) {\n var completedWork = unitOfWork;\n do {\n if (0 !== (completedWork.flags & 32768)) {\n unwindUnitOfWork(\n completedWork,\n workInProgressRootDidSkipSuspendedSiblings\n );\n return;\n }\n var current = completedWork.alternate;\n unitOfWork = completedWork.return;\n startProfilerTimer(completedWork);\n current = runWithFiberInDEV(\n completedWork,\n completeWork,\n current,\n completedWork,\n entangledRenderLanes\n );\n (completedWork.mode & ProfileMode) !== NoMode &&\n stopProfilerTimerIfRunningAndRecordIncompleteDuration(completedWork);\n if (null !== current) {\n workInProgress = current;\n return;\n }\n completedWork = completedWork.sibling;\n if (null !== completedWork) {\n workInProgress = completedWork;\n return;\n }\n workInProgress = completedWork = unitOfWork;\n } while (null !== completedWork);\n workInProgressRootExitStatus === RootInProgress &&\n (workInProgressRootExitStatus = RootCompleted);\n }\n function unwindUnitOfWork(unitOfWork, skipSiblings) {\n do {\n var next = unwindWork(unitOfWork.alternate, unitOfWork);\n if (null !== next) {\n next.flags &= 32767;\n workInProgress = next;\n return;\n }\n if ((unitOfWork.mode & ProfileMode) !== NoMode) {\n stopProfilerTimerIfRunningAndRecordIncompleteDuration(unitOfWork);\n next = unitOfWork.actualDuration;\n for (var child = unitOfWork.child; null !== child; )\n (next += child.actualDuration), (child = child.sibling);\n unitOfWork.actualDuration = next;\n }\n next = unitOfWork.return;\n null !== next &&\n ((next.flags |= 32768),\n (next.subtreeFlags = 0),\n (next.deletions = null));\n if (\n !skipSiblings &&\n ((unitOfWork = unitOfWork.sibling), null !== unitOfWork)\n ) {\n workInProgress = unitOfWork;\n return;\n }\n workInProgress = unitOfWork = next;\n } while (null !== unitOfWork);\n workInProgressRootExitStatus = RootSuspendedAtTheShell;\n workInProgress = null;\n }\n function commitRoot(\n root,\n finishedWork,\n lanes,\n recoverableErrors,\n transitions,\n didIncludeRenderPhaseUpdate,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes,\n exitStatus,\n suspendedState,\n suspendedCommitReason,\n completedRenderStartTime,\n completedRenderEndTime\n ) {\n root.cancelPendingCommit = null;\n do flushPendingEffects();\n while (pendingEffectsStatus !== NO_PENDING_EFFECTS);\n ReactStrictModeWarnings.flushLegacyContextWarning();\n ReactStrictModeWarnings.flushPendingUnsafeLifecycleWarnings();\n if ((executionContext & (RenderContext | CommitContext)) !== NoContext)\n throw Error(\"Should not already be working.\");\n setCurrentTrackFromLanes(lanes);\n exitStatus === RootErrored\n ? logErroredRenderPhase(\n completedRenderStartTime,\n completedRenderEndTime,\n lanes,\n workInProgressUpdateTask\n )\n : null !== recoverableErrors\n ? logRecoveredRenderPhase(\n completedRenderStartTime,\n completedRenderEndTime,\n lanes,\n recoverableErrors,\n null !== finishedWork &&\n null !== finishedWork.alternate &&\n finishedWork.alternate.memoizedState.isDehydrated &&\n 0 !== (finishedWork.flags & 256),\n workInProgressUpdateTask\n )\n : logRenderPhase(\n completedRenderStartTime,\n completedRenderEndTime,\n lanes,\n workInProgressUpdateTask\n );\n if (null !== finishedWork) {\n 0 === lanes &&\n console.error(\n \"finishedLanes should not be empty during a commit. This is a bug in React.\"\n );\n if (finishedWork === root.current)\n throw Error(\n \"Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.\"\n );\n didIncludeRenderPhaseUpdate =\n finishedWork.lanes | finishedWork.childLanes;\n didIncludeRenderPhaseUpdate |= concurrentlyUpdatedLanes;\n markRootFinished(\n root,\n lanes,\n didIncludeRenderPhaseUpdate,\n spawnedLane,\n updatedLanes,\n suspendedRetryLanes\n );\n root === workInProgressRoot &&\n ((workInProgress = workInProgressRoot = null),\n (workInProgressRootRenderLanes = 0));\n pendingFinishedWork = finishedWork;\n pendingEffectsRoot = root;\n pendingEffectsLanes = lanes;\n pendingEffectsRemainingLanes = didIncludeRenderPhaseUpdate;\n pendingPassiveTransitions = transitions;\n pendingRecoverableErrors = recoverableErrors;\n pendingEffectsRenderEndTime = completedRenderEndTime;\n pendingSuspendedCommitReason = suspendedCommitReason;\n pendingDelayedCommitReason = IMMEDIATE_COMMIT;\n pendingViewTransitionEvents = pendingSuspendedViewTransitionReason =\n null;\n (lanes & 335544064) === lanes\n ? ((pendingTransitionTypes = claimQueuedTransitionTypes(root)),\n (recoverableErrors = 10262))\n : ((pendingTransitionTypes = null), (recoverableErrors = 10256));\n 0 !== finishedWork.actualDuration ||\n 0 !== (finishedWork.subtreeFlags & recoverableErrors) ||\n 0 !== (finishedWork.flags & recoverableErrors)\n ? ((root.callbackNode = null),\n (root.callbackPriority = 0),\n scheduleCallback$1(NormalPriority$1, function () {\n schedulerEvent = window.event;\n pendingDelayedCommitReason === IMMEDIATE_COMMIT &&\n (pendingDelayedCommitReason = DELAYED_PASSIVE_COMMIT);\n flushPassiveEffects();\n return null;\n }))\n : ((root.callbackNode = null), (root.callbackPriority = 0));\n commitErrors = null;\n commitStartTime = now();\n null !== suspendedCommitReason &&\n logSuspendedCommitPhase(\n completedRenderEndTime,\n commitStartTime,\n suspendedCommitReason,\n workInProgressUpdateTask\n );\n shouldStartViewTransition = !1;\n suspendedCommitReason = 0 !== (finishedWork.flags & 13878);\n if (\n 0 !== (finishedWork.subtreeFlags & 13878) ||\n suspendedCommitReason\n ) {\n suspendedCommitReason = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n completedRenderEndTime = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p = DiscreteEventPriority;\n recoverableErrors = executionContext;\n executionContext |= CommitContext;\n try {\n commitBeforeMutationEffects(root, finishedWork, lanes);\n } finally {\n (executionContext = recoverableErrors),\n (ReactDOMSharedInternals.p = completedRenderEndTime),\n (ReactSharedInternals.T = suspendedCommitReason);\n }\n }\n finishedWork = shouldStartViewTransition;\n pendingEffectsStatus = PENDING_MUTATION_PHASE;\n finishedWork\n ? ((animatingLanes |= lanes),\n (animatingTask = null),\n (pendingViewTransition = startViewTransition(\n suspendedState,\n root.containerInfo,\n pendingTransitionTypes,\n flushMutationEffects,\n flushLayoutEffects,\n flushAfterMutationEffects,\n flushSpawnedWork,\n flushPassiveEffects,\n reportViewTransitionError,\n suspendedViewTransition,\n finishedViewTransition.bind(null, lanes)\n )))\n : (flushMutationEffects(), flushLayoutEffects(), flushSpawnedWork());\n }\n }\n function reportViewTransitionError(error) {\n if (pendingEffectsStatus !== NO_PENDING_EFFECTS) {\n var onRecoverableError = pendingEffectsRoot.onRecoverableError;\n onRecoverableError(error, makeErrorInfo(null));\n }\n }\n function suspendedViewTransition(reason) {\n commitEndTime = now();\n logCommitPhase(\n null === pendingSuspendedCommitReason\n ? pendingEffectsRenderEndTime\n : commitStartTime,\n commitEndTime,\n commitErrors,\n pendingDelayedCommitReason === ABORTED_VIEW_TRANSITION_COMMIT,\n workInProgressUpdateTask\n );\n pendingSuspendedCommitReason = pendingSuspendedViewTransitionReason =\n reason;\n }\n function finishedViewTransition(lanes) {\n if (0 !== (animatingLanes & lanes)) {\n var task = animatingTask;\n animatingLanes &= ~lanes;\n animatingTask = null;\n 0 !== (lanes & 4194048) &&\n 0 === (workInProgressRootRenderLanes & 4194048) &&\n 0 === (pendingEffectsLanes & 4194048) &&\n (setCurrentTrackFromLanes(256),\n logAnimatingPhase(transitionClampTime, now$1(), task));\n 0 !== (lanes & 62914560) &&\n 0 === (workInProgressRootRenderLanes & 62914560) &&\n 0 === (pendingEffectsLanes & 62914560) &&\n (setCurrentTrackFromLanes(4194304),\n logAnimatingPhase(retryClampTime, now$1(), task));\n 0 !== (lanes & 2080374784) &&\n 0 === (workInProgressRootRenderLanes & 2080374784) &&\n 0 === (pendingEffectsLanes & 2080374784) &&\n (setCurrentTrackFromLanes(268435456),\n logAnimatingPhase(idleClampTime, now$1(), task));\n }\n }\n function flushAfterMutationEffects() {\n pendingEffectsStatus === PENDING_AFTER_MUTATION_PHASE &&\n ((pendingEffectsStatus = NO_PENDING_EFFECTS),\n commitAfterMutationEffectsOnFiber(\n pendingFinishedWork,\n pendingEffectsRoot\n ),\n (pendingEffectsStatus = PENDING_SPAWNED_WORK));\n }\n function flushMutationEffects() {\n if (pendingEffectsStatus === PENDING_MUTATION_PHASE) {\n pendingEffectsStatus = NO_PENDING_EFFECTS;\n var root = pendingEffectsRoot,\n finishedWork = pendingFinishedWork,\n lanes = pendingEffectsLanes,\n rootMutationHasEffect = 0 !== (finishedWork.flags & 13878);\n if (\n 0 !== (finishedWork.subtreeFlags & 13878) ||\n rootMutationHasEffect\n ) {\n rootMutationHasEffect = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n var previousPriority = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p = DiscreteEventPriority;\n var prevExecutionContext = executionContext;\n executionContext |= CommitContext;\n try {\n inProgressLanes = lanes;\n inProgressRoot = root;\n inUpdateViewTransition = rootViewTransitionAffected = !1;\n resetComponentEffectTimers();\n commitMutationEffectsOnFiber(finishedWork, root, lanes);\n inProgressRoot = inProgressLanes = null;\n lanes = selectionInformation;\n var curFocusedElem = getActiveElementDeep(root.containerInfo),\n priorFocusedElem = lanes.focusedElem,\n priorSelectionRange = lanes.selectionRange;\n if (\n curFocusedElem !== priorFocusedElem &&\n priorFocusedElem &&\n priorFocusedElem.ownerDocument &&\n containsNode(\n priorFocusedElem.ownerDocument.documentElement,\n priorFocusedElem\n )\n ) {\n if (\n null !== priorSelectionRange &&\n hasSelectionCapabilities(priorFocusedElem)\n ) {\n var start = priorSelectionRange.start,\n end = priorSelectionRange.end;\n void 0 === end && (end = start);\n if (\"selectionStart\" in priorFocusedElem)\n (priorFocusedElem.selectionStart = start),\n (priorFocusedElem.selectionEnd = Math.min(\n end,\n priorFocusedElem.value.length\n ));\n else {\n var doc = priorFocusedElem.ownerDocument || document,\n win = (doc && doc.defaultView) || window;\n if (win.getSelection) {\n var selection = win.getSelection(),\n length = priorFocusedElem.textContent.length,\n start$jscomp$0 = Math.min(\n priorSelectionRange.start,\n length\n ),\n end$jscomp$0 =\n void 0 === priorSelectionRange.end\n ? start$jscomp$0\n : Math.min(priorSelectionRange.end, length);\n !selection.extend &&\n start$jscomp$0 > end$jscomp$0 &&\n ((curFocusedElem = end$jscomp$0),\n (end$jscomp$0 = start$jscomp$0),\n (start$jscomp$0 = curFocusedElem));\n var startMarker = getNodeForCharacterOffset(\n priorFocusedElem,\n start$jscomp$0\n ),\n endMarker = getNodeForCharacterOffset(\n priorFocusedElem,\n end$jscomp$0\n );\n if (\n startMarker &&\n endMarker &&\n (1 !== selection.rangeCount ||\n selection.anchorNode !== startMarker.node ||\n selection.anchorOffset !== startMarker.offset ||\n selection.focusNode !== endMarker.node ||\n selection.focusOffset !== endMarker.offset)\n ) {\n var range = doc.createRange();\n range.setStart(startMarker.node, startMarker.offset);\n selection.removeAllRanges();\n start$jscomp$0 > end$jscomp$0\n ? (selection.addRange(range),\n selection.extend(endMarker.node, endMarker.offset))\n : (range.setEnd(endMarker.node, endMarker.offset),\n selection.addRange(range));\n }\n }\n }\n }\n doc = [];\n for (\n selection = priorFocusedElem;\n (selection = selection.parentNode);\n\n )\n 1 === selection.nodeType &&\n doc.push({\n element: selection,\n left: selection.scrollLeft,\n top: selection.scrollTop\n });\n \"function\" === typeof priorFocusedElem.focus &&\n priorFocusedElem.focus();\n for (\n priorFocusedElem = 0;\n priorFocusedElem < doc.length;\n priorFocusedElem++\n ) {\n var info = doc[priorFocusedElem];\n info.element.scrollLeft = info.left;\n info.element.scrollTop = info.top;\n }\n }\n _enabled = !!eventsEnabled;\n selectionInformation = eventsEnabled = null;\n } finally {\n (executionContext = prevExecutionContext),\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = rootMutationHasEffect);\n }\n }\n root.current = finishedWork;\n pendingEffectsStatus = PENDING_LAYOUT_PHASE;\n }\n }\n function flushLayoutEffects() {\n if (pendingEffectsStatus === PENDING_LAYOUT_PHASE) {\n pendingEffectsStatus = NO_PENDING_EFFECTS;\n var suspendedViewTransitionReason =\n pendingSuspendedViewTransitionReason;\n if (null !== suspendedViewTransitionReason) {\n commitStartTime = now();\n var startTime = commitEndTime,\n endTime = commitStartTime;\n !supportsUserTiming ||\n endTime <= startTime ||\n (animatingTask\n ? animatingTask.run(\n console.timeStamp.bind(\n console,\n suspendedViewTransitionReason,\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-light\"\n )\n )\n : console.timeStamp(\n suspendedViewTransitionReason,\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-light\"\n ));\n }\n suspendedViewTransitionReason = pendingEffectsRoot;\n startTime = pendingFinishedWork;\n endTime = pendingEffectsLanes;\n var rootHasLayoutEffect = 0 !== (startTime.flags & 8772);\n if (0 !== (startTime.subtreeFlags & 8772) || rootHasLayoutEffect) {\n rootHasLayoutEffect = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n var _previousPriority = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p = DiscreteEventPriority;\n var _prevExecutionContext = executionContext;\n executionContext |= CommitContext;\n try {\n (inProgressLanes = endTime),\n (inProgressRoot = suspendedViewTransitionReason),\n resetComponentEffectTimers(),\n commitLayoutEffectOnFiber(\n suspendedViewTransitionReason,\n startTime.alternate,\n startTime\n ),\n (inProgressRoot = inProgressLanes = null);\n } finally {\n (executionContext = _prevExecutionContext),\n (ReactDOMSharedInternals.p = _previousPriority),\n (ReactSharedInternals.T = rootHasLayoutEffect);\n }\n }\n suspendedViewTransitionReason = pendingEffectsRenderEndTime;\n startTime = pendingSuspendedCommitReason;\n commitEndTime = now();\n logCommitPhase(\n null === startTime ? suspendedViewTransitionReason : commitStartTime,\n commitEndTime,\n commitErrors,\n pendingDelayedCommitReason === ABORTED_VIEW_TRANSITION_COMMIT,\n workInProgressUpdateTask\n );\n pendingEffectsStatus = PENDING_AFTER_MUTATION_PHASE;\n }\n }\n function flushSpawnedWork() {\n if (\n pendingEffectsStatus === PENDING_SPAWNED_WORK ||\n pendingEffectsStatus === PENDING_AFTER_MUTATION_PHASE\n ) {\n if (pendingEffectsStatus === PENDING_SPAWNED_WORK) {\n var startViewTransitionStartTime = commitEndTime;\n commitEndTime = now();\n var endTime = commitEndTime,\n abortedViewTransition =\n pendingDelayedCommitReason === ABORTED_VIEW_TRANSITION_COMMIT;\n !supportsUserTiming ||\n endTime <= startViewTransitionStartTime ||\n (animatingTask\n ? animatingTask.run(\n console.timeStamp.bind(\n console,\n abortedViewTransition\n ? \"Interrupted View Transition\"\n : \"Starting Animation\",\n startViewTransitionStartTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n abortedViewTransition ? \"error\" : \"secondary-light\"\n )\n )\n : console.timeStamp(\n abortedViewTransition\n ? \"Interrupted View Transition\"\n : \"Starting Animation\",\n startViewTransitionStartTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n abortedViewTransition ? \" error\" : \"secondary-light\"\n ));\n pendingDelayedCommitReason !== ABORTED_VIEW_TRANSITION_COMMIT &&\n (pendingDelayedCommitReason = ANIMATION_STARTED_COMMIT);\n }\n pendingEffectsStatus = NO_PENDING_EFFECTS;\n pendingViewTransition = null;\n requestPaint();\n startViewTransitionStartTime = pendingEffectsRoot;\n var finishedWork = pendingFinishedWork;\n endTime = pendingEffectsLanes;\n var recoverableErrors = pendingRecoverableErrors;\n abortedViewTransition =\n (endTime & 335544064) === endTime ? 10262 : 10256;\n (abortedViewTransition =\n 0 !== finishedWork.actualDuration ||\n 0 !== (finishedWork.subtreeFlags & abortedViewTransition) ||\n 0 !== (finishedWork.flags & abortedViewTransition))\n ? (pendingEffectsStatus = PENDING_PASSIVE_PHASE)\n : ((pendingEffectsStatus = NO_PENDING_EFFECTS),\n (pendingFinishedWork = pendingEffectsRoot = null),\n releaseRootPooledCache(\n startViewTransitionStartTime,\n startViewTransitionStartTime.pendingLanes\n ),\n (nestedPassiveUpdateCount = 0),\n (rootWithPassiveNestedUpdates = null));\n var remainingLanes = startViewTransitionStartTime.pendingLanes;\n 0 === remainingLanes && (legacyErrorBoundariesThatAlreadyFailed = null);\n abortedViewTransition ||\n commitDoubleInvokeEffectsInDEV(startViewTransitionStartTime);\n remainingLanes = lanesToEventPriority(endTime);\n finishedWork = finishedWork.stateNode;\n if (\n injectedHook &&\n \"function\" === typeof injectedHook.onCommitFiberRoot\n )\n try {\n var didError = 128 === (finishedWork.current.flags & 128);\n switch (remainingLanes) {\n case DiscreteEventPriority:\n var schedulerPriority = ImmediatePriority;\n break;\n case ContinuousEventPriority:\n schedulerPriority = UserBlockingPriority;\n break;\n case DefaultEventPriority:\n schedulerPriority = NormalPriority$1;\n break;\n case IdleEventPriority:\n schedulerPriority = IdlePriority;\n break;\n default:\n schedulerPriority = NormalPriority$1;\n }\n injectedHook.onCommitFiberRoot(\n rendererID,\n finishedWork,\n schedulerPriority,\n didError\n );\n } catch (err) {\n hasLoggedError ||\n ((hasLoggedError = !0),\n console.error(\n \"React instrumentation encountered an error: %o\",\n err\n ));\n }\n isDevToolsPresent &&\n startViewTransitionStartTime.memoizedUpdaters.clear();\n onCommitRoot();\n if (null !== recoverableErrors) {\n didError = ReactSharedInternals.T;\n schedulerPriority = ReactDOMSharedInternals.p;\n ReactDOMSharedInternals.p = DiscreteEventPriority;\n ReactSharedInternals.T = null;\n try {\n var onRecoverableError =\n startViewTransitionStartTime.onRecoverableError;\n for (\n finishedWork = 0;\n finishedWork < recoverableErrors.length;\n finishedWork++\n ) {\n var recoverableError = recoverableErrors[finishedWork],\n errorInfo = makeErrorInfo(recoverableError.stack);\n runWithFiberInDEV(\n recoverableError.source,\n onRecoverableError,\n recoverableError.value,\n errorInfo\n );\n }\n } finally {\n (ReactSharedInternals.T = didError),\n (ReactDOMSharedInternals.p = schedulerPriority);\n }\n }\n onRecoverableError = pendingViewTransitionEvents;\n recoverableError = pendingTransitionTypes;\n pendingTransitionTypes = null;\n if (null !== onRecoverableError)\n for (\n pendingViewTransitionEvents = null,\n null === recoverableError && (recoverableError = []),\n errorInfo = 0;\n errorInfo < onRecoverableError.length;\n errorInfo++\n )\n (0, onRecoverableError[errorInfo])(recoverableError);\n 0 !== (pendingEffectsLanes & 3) && flushPendingEffects();\n ensureRootIsScheduled(startViewTransitionStartTime);\n remainingLanes = startViewTransitionStartTime.pendingLanes;\n 0 !== (endTime & 261930) && 0 !== (remainingLanes & 42)\n ? ((nestedUpdateScheduled = !0),\n startViewTransitionStartTime === rootWithNestedUpdates\n ? nestedUpdateCount++\n : ((nestedUpdateCount = 0),\n (rootWithNestedUpdates = startViewTransitionStartTime)))\n : (nestedUpdateCount = 0);\n abortedViewTransition || finalizeRender(endTime, commitEndTime);\n flushSyncWorkAcrossRoots_impl(0, !1);\n }\n }\n function makeErrorInfo(componentStack) {\n componentStack = { componentStack: componentStack };\n Object.defineProperty(componentStack, \"digest\", {\n get: function () {\n console.error(\n 'You are accessing \"digest\" from the errorInfo object passed to onRecoverableError. This property is no longer provided as part of errorInfo but can be accessed as a property of the Error instance itself.'\n );\n }\n });\n return componentStack;\n }\n function releaseRootPooledCache(root, remainingLanes) {\n 0 === (root.pooledCacheLanes &= remainingLanes) &&\n ((remainingLanes = root.pooledCache),\n null != remainingLanes &&\n ((root.pooledCache = null), releaseCache(remainingLanes)));\n }\n function flushPendingEffects() {\n null !== pendingViewTransition &&\n (pendingViewTransition.skipTransition(),\n didWarnAboutInterruptedViewTransitions ||\n ((didWarnAboutInterruptedViewTransitions = !0),\n console.warn(\n \"A flushSync update cancelled a View Transition because it was called while the View Transition was still preparing. To preserve the synchronous semantics, React had to skip the View Transition. If you can, try to avoid flushSync() in a scenario that's likely to interfere.\"\n )),\n (pendingViewTransition = null),\n (pendingDelayedCommitReason = ABORTED_VIEW_TRANSITION_COMMIT));\n flushMutationEffects();\n flushLayoutEffects();\n flushSpawnedWork();\n return flushPassiveEffects();\n }\n function flushPassiveEffects() {\n if (pendingEffectsStatus !== PENDING_PASSIVE_PHASE) return !1;\n var root = pendingEffectsRoot,\n remainingLanes = pendingEffectsRemainingLanes;\n pendingEffectsRemainingLanes = 0;\n var renderPriority = lanesToEventPriority(pendingEffectsLanes),\n priority =\n 0 === DefaultEventPriority || DefaultEventPriority > renderPriority\n ? DefaultEventPriority\n : renderPriority;\n renderPriority = ReactSharedInternals.T;\n var previousPriority = ReactDOMSharedInternals.p;\n try {\n ReactDOMSharedInternals.p = priority;\n ReactSharedInternals.T = null;\n var transitions = pendingPassiveTransitions;\n pendingPassiveTransitions = null;\n priority = pendingEffectsRoot;\n var lanes = pendingEffectsLanes;\n pendingEffectsStatus = NO_PENDING_EFFECTS;\n pendingFinishedWork = pendingEffectsRoot = null;\n pendingEffectsLanes = 0;\n if ((executionContext & (RenderContext | CommitContext)) !== NoContext)\n throw Error(\"Cannot flush passive effects while already rendering.\");\n setCurrentTrackFromLanes(lanes);\n isFlushingPassiveEffects = !0;\n didScheduleUpdateDuringPassiveEffects = !1;\n var passiveEffectStartTime = 0;\n commitErrors = null;\n passiveEffectStartTime = now$1();\n if (pendingDelayedCommitReason === ANIMATION_STARTED_COMMIT)\n logAnimatingPhase(\n commitEndTime,\n passiveEffectStartTime,\n animatingTask\n );\n else {\n var startTime = commitEndTime,\n endTime = passiveEffectStartTime,\n delayedUntilPaint =\n pendingDelayedCommitReason === DELAYED_PASSIVE_COMMIT;\n !supportsUserTiming ||\n endTime <= startTime ||\n (workInProgressUpdateTask\n ? workInProgressUpdateTask.run(\n console.timeStamp.bind(\n console,\n delayedUntilPaint ? \"Waiting for Paint\" : \"Waiting\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-light\"\n )\n )\n : console.timeStamp(\n delayedUntilPaint ? \"Waiting for Paint\" : \"Waiting\",\n startTime,\n endTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-light\"\n ));\n }\n startTime = executionContext;\n executionContext |= CommitContext;\n var finishedWork = priority.current;\n resetComponentEffectTimers();\n commitPassiveUnmountOnFiber(finishedWork);\n var finishedWork$jscomp$0 = priority.current;\n finishedWork = pendingEffectsRenderEndTime;\n resetComponentEffectTimers();\n commitPassiveMountOnFiber(\n priority,\n finishedWork$jscomp$0,\n lanes,\n transitions,\n finishedWork\n );\n commitDoubleInvokeEffectsInDEV(priority);\n executionContext = startTime;\n var passiveEffectsEndTime = now$1();\n finishedWork$jscomp$0 = passiveEffectStartTime;\n finishedWork = workInProgressUpdateTask;\n null !== commitErrors\n ? logCommitErrored(\n finishedWork$jscomp$0,\n passiveEffectsEndTime,\n commitErrors,\n !0,\n finishedWork\n )\n : !supportsUserTiming ||\n passiveEffectsEndTime <= finishedWork$jscomp$0 ||\n (finishedWork\n ? finishedWork.run(\n console.timeStamp.bind(\n console,\n \"Remaining Effects\",\n finishedWork$jscomp$0,\n passiveEffectsEndTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-dark\"\n )\n )\n : console.timeStamp(\n \"Remaining Effects\",\n finishedWork$jscomp$0,\n passiveEffectsEndTime,\n currentTrack,\n LANES_TRACK_GROUP,\n \"secondary-dark\"\n ));\n finalizeRender(lanes, passiveEffectsEndTime);\n flushSyncWorkAcrossRoots_impl(0, !1);\n didScheduleUpdateDuringPassiveEffects\n ? priority === rootWithPassiveNestedUpdates\n ? nestedPassiveUpdateCount++\n : ((nestedPassiveUpdateCount = 0),\n (rootWithPassiveNestedUpdates = priority))\n : (nestedPassiveUpdateCount = 0);\n didScheduleUpdateDuringPassiveEffects = isFlushingPassiveEffects = !1;\n if (\n injectedHook &&\n \"function\" === typeof injectedHook.onPostCommitFiberRoot\n )\n try {\n injectedHook.onPostCommitFiberRoot(rendererID, priority);\n } catch (err) {\n hasLoggedError ||\n ((hasLoggedError = !0),\n console.error(\n \"React instrumentation encountered an error: %o\",\n err\n ));\n }\n var stateNode = priority.current.stateNode;\n stateNode.effectDuration = 0;\n stateNode.passiveEffectDuration = 0;\n return !0;\n } finally {\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = renderPriority),\n releaseRootPooledCache(root, remainingLanes);\n }\n }\n function captureCommitPhaseErrorOnRoot(rootFiber, sourceFiber, error) {\n sourceFiber = createCapturedValueAtFiber(error, sourceFiber);\n recordEffectError(sourceFiber);\n sourceFiber = createRootErrorUpdate(rootFiber.stateNode, sourceFiber, 2);\n rootFiber = enqueueUpdate(rootFiber, sourceFiber, 2);\n null !== rootFiber &&\n (markRootUpdated$1(rootFiber, 2), ensureRootIsScheduled(rootFiber));\n }\n function captureCommitPhaseError(\n sourceFiber,\n nearestMountedAncestor,\n error\n ) {\n isRunningInsertionEffect = !1;\n if (3 === sourceFiber.tag)\n captureCommitPhaseErrorOnRoot(sourceFiber, sourceFiber, error);\n else {\n for (; null !== nearestMountedAncestor; ) {\n if (3 === nearestMountedAncestor.tag) {\n captureCommitPhaseErrorOnRoot(\n nearestMountedAncestor,\n sourceFiber,\n error\n );\n return;\n }\n if (1 === nearestMountedAncestor.tag) {\n var instance = nearestMountedAncestor.stateNode;\n if (\n \"function\" ===\n typeof nearestMountedAncestor.type.getDerivedStateFromError ||\n (\"function\" === typeof instance.componentDidCatch &&\n (null === legacyErrorBoundariesThatAlreadyFailed ||\n !legacyErrorBoundariesThatAlreadyFailed.has(instance)))\n ) {\n sourceFiber = createCapturedValueAtFiber(error, sourceFiber);\n recordEffectError(sourceFiber);\n error = createClassErrorUpdate(2);\n instance = enqueueUpdate(nearestMountedAncestor, error, 2);\n null !== instance &&\n (initializeClassErrorUpdate(\n error,\n instance,\n nearestMountedAncestor,\n sourceFiber\n ),\n markRootUpdated$1(instance, 2),\n ensureRootIsScheduled(instance));\n return;\n }\n }\n nearestMountedAncestor = nearestMountedAncestor.return;\n }\n console.error(\n \"Internal React error: Attempted to capture a commit phase error inside a detached tree. This indicates a bug in React. Potential causes include deleting the same fiber more than once, committing an already-finished tree, or an inconsistent return pointer.\\n\\nError message:\\n\\n%s\",\n error\n );\n }\n }\n function attachPingListener(root, wakeable, lanes) {\n var pingCache = root.pingCache;\n if (null === pingCache) {\n pingCache = root.pingCache = new PossiblyWeakMap();\n var threadIDs = new Set();\n pingCache.set(wakeable, threadIDs);\n } else\n (threadIDs = pingCache.get(wakeable)),\n void 0 === threadIDs &&\n ((threadIDs = new Set()), pingCache.set(wakeable, threadIDs));\n threadIDs.has(lanes) ||\n ((workInProgressRootDidAttachPingListener = !0),\n threadIDs.add(lanes),\n (pingCache = pingSuspendedRoot.bind(null, root, wakeable, lanes)),\n isDevToolsPresent && restorePendingUpdaters(root, lanes),\n wakeable.then(pingCache, pingCache));\n }\n function pingSuspendedRoot(root, wakeable, pingedLanes) {\n var pingCache = root.pingCache;\n null !== pingCache && pingCache.delete(wakeable);\n root.pingedLanes |= root.suspendedLanes & pingedLanes;\n root.warmLanes &= ~pingedLanes;\n 0 !== (pingedLanes & 127)\n ? 0 > blockingUpdateTime &&\n ((blockingClampTime = blockingUpdateTime = now()),\n (blockingUpdateTask = createTask(\"Promise Resolved\")),\n (blockingUpdateType = PINGED_UPDATE))\n : 0 !== (pingedLanes & 4194048) &&\n 0 > transitionUpdateTime &&\n ((transitionClampTime = transitionUpdateTime = now()),\n (transitionUpdateTask = createTask(\"Promise Resolved\")),\n (transitionUpdateType = PINGED_UPDATE));\n isConcurrentActEnvironment() &&\n null === ReactSharedInternals.actQueue &&\n console.error(\n \"A suspended resource finished loading inside a test, but the event was not wrapped in act(...).\\n\\nWhen testing, code that resolves suspended data should be wrapped into act(...):\\n\\nact(() => {\\n /* finish loading suspended data */\\n});\\n/* assert on the output */\\n\\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act\"\n );\n workInProgressRoot === root &&\n (workInProgressRootRenderLanes & pingedLanes) === pingedLanes &&\n (workInProgressRootExitStatus === RootSuspendedWithDelay ||\n (workInProgressRootExitStatus === RootSuspended &&\n (workInProgressRootRenderLanes & 62914560) ===\n workInProgressRootRenderLanes &&\n now$1() - globalMostRecentFallbackTime < FALLBACK_THROTTLE_MS)\n ? (executionContext & RenderContext) === NoContext &&\n prepareFreshStack(root, 0)\n : (workInProgressRootPingedLanes |= pingedLanes),\n workInProgressSuspendedRetryLanes === workInProgressRootRenderLanes &&\n (workInProgressSuspendedRetryLanes = 0));\n ensureRootIsScheduled(root);\n }\n function retryTimedOutBoundary(boundaryFiber, retryLane) {\n 0 === retryLane && (retryLane = claimNextRetryLane());\n boundaryFiber = enqueueConcurrentRenderForLane(boundaryFiber, retryLane);\n null !== boundaryFiber &&\n (markRootUpdated$1(boundaryFiber, retryLane),\n ensureRootIsScheduled(boundaryFiber));\n }\n function retryDehydratedSuspenseBoundary(boundaryFiber) {\n var suspenseState = boundaryFiber.memoizedState,\n retryLane = 0;\n null !== suspenseState && (retryLane = suspenseState.retryLane);\n retryTimedOutBoundary(boundaryFiber, retryLane);\n }\n function resolveRetryWakeable(boundaryFiber, wakeable) {\n var retryLane = 0;\n switch (boundaryFiber.tag) {\n case 31:\n case 13:\n var retryCache = boundaryFiber.stateNode;\n var suspenseState = boundaryFiber.memoizedState;\n null !== suspenseState && (retryLane = suspenseState.retryLane);\n break;\n case 19:\n retryCache = boundaryFiber.stateNode;\n break;\n case 22:\n retryCache = boundaryFiber.stateNode._retryCache;\n break;\n default:\n throw Error(\n \"Pinged unknown suspense boundary type. This is probably a bug in React.\"\n );\n }\n null !== retryCache && retryCache.delete(wakeable);\n retryTimedOutBoundary(boundaryFiber, retryLane);\n }\n function recursivelyTraverseAndDoubleInvokeEffectsInDEV(\n root$jscomp$0,\n parentFiber,\n isInStrictMode\n ) {\n if (0 !== (parentFiber.subtreeFlags & 134225920))\n for (parentFiber = parentFiber.child; null !== parentFiber; ) {\n var root = root$jscomp$0,\n fiber = parentFiber,\n isStrictModeFiber = fiber.type === REACT_STRICT_MODE_TYPE;\n isStrictModeFiber = isInStrictMode || isStrictModeFiber;\n 22 !== fiber.tag\n ? fiber.flags & 134217728\n ? isStrictModeFiber &&\n runWithFiberInDEV(\n fiber,\n doubleInvokeEffectsOnFiber,\n root,\n fiber\n )\n : recursivelyTraverseAndDoubleInvokeEffectsInDEV(\n root,\n fiber,\n isStrictModeFiber\n )\n : null === fiber.memoizedState &&\n (isStrictModeFiber && fiber.flags & 8192\n ? runWithFiberInDEV(\n fiber,\n doubleInvokeEffectsOnFiber,\n root,\n fiber\n )\n : fiber.subtreeFlags & 134217728 &&\n runWithFiberInDEV(\n fiber,\n recursivelyTraverseAndDoubleInvokeEffectsInDEV,\n root,\n fiber,\n isStrictModeFiber\n ));\n parentFiber = parentFiber.sibling;\n }\n }\n function doubleInvokeEffectsOnFiber(root, fiber) {\n setIsStrictModeForDevtools(!0);\n try {\n disappearLayoutEffects(fiber),\n disconnectPassiveEffect(fiber),\n reappearLayoutEffects(root, fiber.alternate, fiber, !1),\n reconnectPassiveEffects(root, fiber, 0, null, !1, 0);\n } finally {\n setIsStrictModeForDevtools(!1);\n }\n }\n function commitDoubleInvokeEffectsInDEV(root) {\n var doubleInvokeEffects = !0;\n root.current.mode & (StrictLegacyMode | StrictEffectsMode) ||\n (doubleInvokeEffects = !1);\n recursivelyTraverseAndDoubleInvokeEffectsInDEV(\n root,\n root.current,\n doubleInvokeEffects\n );\n }\n function warnAboutUpdateOnNotYetMountedFiberInDEV(fiber) {\n if ((executionContext & RenderContext) === NoContext) {\n var tag = fiber.tag;\n if (\n 3 === tag ||\n 1 === tag ||\n 0 === tag ||\n 11 === tag ||\n 14 === tag ||\n 15 === tag\n ) {\n tag = getComponentNameFromFiber(fiber) || \"ReactComponent\";\n if (null !== didWarnStateUpdateForNotYetMountedComponent) {\n if (didWarnStateUpdateForNotYetMountedComponent.has(tag)) return;\n didWarnStateUpdateForNotYetMountedComponent.add(tag);\n } else didWarnStateUpdateForNotYetMountedComponent = new Set([tag]);\n runWithFiberInDEV(fiber, function () {\n console.error(\n \"Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously tries to update the component. Move this work to useEffect instead.\"\n );\n });\n }\n }\n }\n function restorePendingUpdaters(root, lanes) {\n isDevToolsPresent &&\n root.memoizedUpdaters.forEach(function (schedulingFiber) {\n addFiberToLanesMap(root, schedulingFiber, lanes);\n });\n }\n function scheduleCallback$1(priorityLevel, callback) {\n var actQueue = ReactSharedInternals.actQueue;\n return null !== actQueue\n ? (actQueue.push(callback), fakeActCallbackNode$1)\n : scheduleCallback$3(priorityLevel, callback);\n }\n function warnIfUpdatesNotWrappedWithActDEV(fiber) {\n isConcurrentActEnvironment() &&\n null === ReactSharedInternals.actQueue &&\n runWithFiberInDEV(fiber, function () {\n console.error(\n \"An update to %s inside a test was not wrapped in act(...).\\n\\nWhen testing, code that causes React state updates should be wrapped into act(...):\\n\\nact(() => {\\n /* fire events that update state */\\n});\\n/* assert on the output */\\n\\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act\",\n getComponentNameFromFiber(fiber)\n );\n });\n }\n function ensureRootIsScheduled(root) {\n root !== lastScheduledRoot &&\n null === root.next &&\n (null === lastScheduledRoot\n ? (firstScheduledRoot = lastScheduledRoot = root)\n : (lastScheduledRoot = lastScheduledRoot.next = root));\n mightHavePendingSyncWork = !0;\n null !== ReactSharedInternals.actQueue\n ? didScheduleMicrotask_act ||\n ((didScheduleMicrotask_act = !0), scheduleImmediateRootScheduleTask())\n : didScheduleMicrotask ||\n ((didScheduleMicrotask = !0), scheduleImmediateRootScheduleTask());\n }\n function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {\n if (!isFlushingWork && mightHavePendingSyncWork) {\n isFlushingWork = !0;\n do {\n var didPerformSomeWork = !1;\n for (var root = firstScheduledRoot; null !== root; ) {\n if (!onlyLegacy)\n if (0 !== syncTransitionLanes) {\n var pendingLanes = root.pendingLanes;\n if (0 === pendingLanes) var nextLanes = 0;\n else {\n var suspendedLanes = root.suspendedLanes,\n pingedLanes = root.pingedLanes;\n nextLanes =\n (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;\n nextLanes &= pendingLanes & ~(suspendedLanes & ~pingedLanes);\n nextLanes =\n nextLanes & 201326741\n ? (nextLanes & 201326741) | 1\n : nextLanes\n ? nextLanes | 2\n : 0;\n }\n 0 !== nextLanes &&\n ((didPerformSomeWork = !0),\n performSyncWorkOnRoot(root, nextLanes));\n } else\n (nextLanes = workInProgressRootRenderLanes),\n (nextLanes = getNextLanes(\n root,\n root === workInProgressRoot ? nextLanes : 0,\n null !== root.cancelPendingCommit ||\n root.timeoutHandle !== noTimeout\n )),\n 0 === (nextLanes & 3) ||\n checkIfRootIsPrerendering(root, nextLanes) ||\n ((didPerformSomeWork = !0),\n performSyncWorkOnRoot(root, nextLanes));\n root = root.next;\n }\n } while (didPerformSomeWork);\n isFlushingWork = !1;\n }\n }\n function processRootScheduleInImmediateTask() {\n schedulerEvent = window.event;\n processRootScheduleInMicrotask();\n }\n function processRootScheduleInMicrotask() {\n mightHavePendingSyncWork =\n didScheduleMicrotask_act =\n didScheduleMicrotask =\n !1;\n var syncTransitionLanes = 0;\n 0 !== currentEventTransitionLane &&\n shouldAttemptEagerTransition() &&\n (syncTransitionLanes = currentEventTransitionLane);\n for (\n var currentTime = now$1(), prev = null, root = firstScheduledRoot;\n null !== root;\n\n ) {\n var next = root.next,\n nextLanes = scheduleTaskForRootDuringMicrotask(root, currentTime);\n if (0 === nextLanes)\n (root.next = null),\n null === prev ? (firstScheduledRoot = next) : (prev.next = next),\n null === next && (lastScheduledRoot = prev);\n else if (\n ((prev = root), 0 !== syncTransitionLanes || 0 !== (nextLanes & 3))\n )\n mightHavePendingSyncWork = !0;\n root = next;\n }\n (pendingEffectsStatus !== NO_PENDING_EFFECTS &&\n pendingEffectsStatus !== PENDING_PASSIVE_PHASE) ||\n flushSyncWorkAcrossRoots_impl(syncTransitionLanes, !1);\n 0 !== currentEventTransitionLane && (currentEventTransitionLane = 0);\n }\n function scheduleTaskForRootDuringMicrotask(root, currentTime) {\n for (\n var suspendedLanes = root.suspendedLanes,\n pingedLanes = root.pingedLanes,\n expirationTimes = root.expirationTimes,\n lanes = root.pendingLanes & -62914561;\n 0 < lanes;\n\n ) {\n var index = 31 - clz32(lanes),\n lane = 1 << index,\n expirationTime = expirationTimes[index];\n if (-1 === expirationTime) {\n if (0 === (lane & suspendedLanes) || 0 !== (lane & pingedLanes))\n expirationTimes[index] = computeExpirationTime(lane, currentTime);\n } else expirationTime <= currentTime && (root.expiredLanes |= lane);\n lanes &= ~lane;\n }\n currentTime = workInProgressRoot;\n suspendedLanes = workInProgressRootRenderLanes;\n suspendedLanes = getNextLanes(\n root,\n root === currentTime ? suspendedLanes : 0,\n null !== root.cancelPendingCommit || root.timeoutHandle !== noTimeout\n );\n pingedLanes = root.callbackNode;\n if (\n 0 === suspendedLanes ||\n (root === currentTime &&\n (workInProgressSuspendedReason === SuspendedOnData ||\n workInProgressSuspendedReason === SuspendedOnAction)) ||\n null !== root.cancelPendingCommit\n )\n return (\n null !== pingedLanes && cancelCallback(pingedLanes),\n (root.callbackNode = null),\n (root.callbackPriority = 0)\n );\n if (\n 0 === (suspendedLanes & 3) ||\n checkIfRootIsPrerendering(root, suspendedLanes)\n ) {\n currentTime = suspendedLanes & -suspendedLanes;\n if (\n currentTime !== root.callbackPriority ||\n (null !== ReactSharedInternals.actQueue &&\n pingedLanes !== fakeActCallbackNode)\n )\n cancelCallback(pingedLanes);\n else return currentTime;\n switch (lanesToEventPriority(suspendedLanes)) {\n case DiscreteEventPriority:\n case ContinuousEventPriority:\n suspendedLanes = UserBlockingPriority;\n break;\n case DefaultEventPriority:\n suspendedLanes = NormalPriority$1;\n break;\n case IdleEventPriority:\n suspendedLanes = IdlePriority;\n break;\n default:\n suspendedLanes = NormalPriority$1;\n }\n pingedLanes = performWorkOnRootViaSchedulerTask.bind(null, root);\n null !== ReactSharedInternals.actQueue\n ? (ReactSharedInternals.actQueue.push(pingedLanes),\n (suspendedLanes = fakeActCallbackNode))\n : (suspendedLanes = scheduleCallback$3(suspendedLanes, pingedLanes));\n root.callbackPriority = currentTime;\n root.callbackNode = suspendedLanes;\n return currentTime;\n }\n null !== pingedLanes && cancelCallback(pingedLanes);\n root.callbackPriority = 2;\n root.callbackNode = null;\n return 2;\n }\n function performWorkOnRootViaSchedulerTask(root, didTimeout) {\n nestedUpdateScheduled = currentUpdateIsNested = !1;\n schedulerEvent = window.event;\n if (\n pendingEffectsStatus !== NO_PENDING_EFFECTS &&\n pendingEffectsStatus !== PENDING_PASSIVE_PHASE\n )\n return (root.callbackNode = null), (root.callbackPriority = 0), null;\n var originalCallbackNode = root.callbackNode;\n pendingDelayedCommitReason === IMMEDIATE_COMMIT &&\n (pendingDelayedCommitReason = DELAYED_PASSIVE_COMMIT);\n if (flushPendingEffects() && root.callbackNode !== originalCallbackNode)\n return null;\n var workInProgressRootRenderLanes$jscomp$0 =\n workInProgressRootRenderLanes;\n workInProgressRootRenderLanes$jscomp$0 = getNextLanes(\n root,\n root === workInProgressRoot\n ? workInProgressRootRenderLanes$jscomp$0\n : 0,\n null !== root.cancelPendingCommit || root.timeoutHandle !== noTimeout\n );\n if (0 === workInProgressRootRenderLanes$jscomp$0) return null;\n performWorkOnRoot(\n root,\n workInProgressRootRenderLanes$jscomp$0,\n didTimeout\n );\n scheduleTaskForRootDuringMicrotask(root, now$1());\n return null != root.callbackNode &&\n root.callbackNode === originalCallbackNode\n ? performWorkOnRootViaSchedulerTask.bind(null, root)\n : null;\n }\n function performSyncWorkOnRoot(root, lanes) {\n if (flushPendingEffects()) return null;\n currentUpdateIsNested = nestedUpdateScheduled;\n nestedUpdateScheduled = !1;\n performWorkOnRoot(root, lanes, !0);\n }\n function cancelCallback(callbackNode) {\n callbackNode !== fakeActCallbackNode &&\n null !== callbackNode &&\n cancelCallback$1(callbackNode);\n }\n function scheduleImmediateRootScheduleTask() {\n null !== ReactSharedInternals.actQueue &&\n ReactSharedInternals.actQueue.push(function () {\n processRootScheduleInMicrotask();\n return null;\n });\n scheduleMicrotask(function () {\n (executionContext & (RenderContext | CommitContext)) !== NoContext\n ? scheduleCallback$3(\n ImmediatePriority,\n processRootScheduleInImmediateTask\n )\n : processRootScheduleInMicrotask();\n });\n }\n function requestTransitionLane() {\n if (0 === currentEventTransitionLane) {\n var actionScopeLane = currentEntangledLane;\n 0 === actionScopeLane &&\n ((actionScopeLane = nextTransitionUpdateLane),\n (nextTransitionUpdateLane <<= 1),\n 0 === (nextTransitionUpdateLane & 261888) &&\n (nextTransitionUpdateLane = 256));\n currentEventTransitionLane = actionScopeLane;\n }\n return currentEventTransitionLane;\n }\n function coerceFormActionProp(actionProp) {\n if (\n null == actionProp ||\n \"symbol\" === typeof actionProp ||\n \"boolean\" === typeof actionProp\n )\n return null;\n if (\"function\" === typeof actionProp) return actionProp;\n checkAttributeStringCoercion(actionProp, \"action\");\n return sanitizeURL(\"\" + actionProp);\n }\n function createFormDataWithSubmitter(form, submitter) {\n var temp = submitter.ownerDocument.createElement(\"input\");\n temp.name = submitter.name;\n temp.value = submitter.value;\n form.id && temp.setAttribute(\"form\", form.id);\n submitter.parentNode.insertBefore(temp, submitter);\n form = new FormData(form);\n temp.parentNode.removeChild(temp);\n return form;\n }\n function extractEvents$1(\n dispatchQueue,\n domEventName,\n maybeTargetInst,\n nativeEvent,\n nativeEventTarget\n ) {\n if (\n \"submit\" === domEventName &&\n maybeTargetInst &&\n maybeTargetInst.stateNode === nativeEventTarget\n ) {\n var action = coerceFormActionProp(\n (nativeEventTarget[internalPropsKey] || null).action\n ),\n submitter = nativeEvent.submitter;\n submitter &&\n ((domEventName = (domEventName = submitter[internalPropsKey] || null)\n ? coerceFormActionProp(domEventName.formAction)\n : submitter.getAttribute(\"formAction\")),\n null !== domEventName &&\n ((action = domEventName), (submitter = null)));\n var event = new SyntheticEvent(\n \"action\",\n \"action\",\n null,\n nativeEvent,\n nativeEventTarget\n );\n dispatchQueue.push({\n event: event,\n listeners: [\n {\n instance: null,\n listener: function () {\n if (nativeEvent.defaultPrevented) {\n if (0 !== currentEventTransitionLane) {\n var formData = submitter\n ? createFormDataWithSubmitter(\n nativeEventTarget,\n submitter\n )\n : new FormData(nativeEventTarget),\n pendingState = {\n pending: !0,\n data: formData,\n method: nativeEventTarget.method,\n action: action\n };\n Object.freeze(pendingState);\n startHostTransition(\n maybeTargetInst,\n pendingState,\n null,\n formData\n );\n }\n } else\n \"function\" === typeof action &&\n (event.preventDefault(),\n (formData = submitter\n ? createFormDataWithSubmitter(\n nativeEventTarget,\n submitter\n )\n : new FormData(nativeEventTarget)),\n (pendingState = {\n pending: !0,\n data: formData,\n method: nativeEventTarget.method,\n action: action\n }),\n Object.freeze(pendingState),\n startHostTransition(\n maybeTargetInst,\n pendingState,\n action,\n formData\n ));\n },\n currentTarget: nativeEventTarget\n }\n ]\n });\n }\n }\n function executeDispatch(event, listener, currentTarget) {\n event.currentTarget = currentTarget;\n try {\n listener(event);\n } catch (error) {\n reportGlobalError(error);\n }\n event.currentTarget = null;\n }\n function processDispatchQueue(dispatchQueue, eventSystemFlags) {\n eventSystemFlags = 0 !== (eventSystemFlags & 4);\n for (var i = 0; i < dispatchQueue.length; i++) {\n var _dispatchQueue$i = dispatchQueue[i];\n a: {\n var previousInstance = void 0,\n event = _dispatchQueue$i.event;\n _dispatchQueue$i = _dispatchQueue$i.listeners;\n if (eventSystemFlags)\n for (\n var i$jscomp$0 = _dispatchQueue$i.length - 1;\n 0 <= i$jscomp$0;\n i$jscomp$0--\n ) {\n var _dispatchListeners$i = _dispatchQueue$i[i$jscomp$0],\n instance = _dispatchListeners$i.instance,\n currentTarget = _dispatchListeners$i.currentTarget;\n _dispatchListeners$i = _dispatchListeners$i.listener;\n if (instance !== previousInstance && event.isPropagationStopped())\n break a;\n null !== instance\n ? runWithFiberInDEV(\n instance,\n executeDispatch,\n event,\n _dispatchListeners$i,\n currentTarget\n )\n : executeDispatch(event, _dispatchListeners$i, currentTarget);\n previousInstance = instance;\n }\n else\n for (\n i$jscomp$0 = 0;\n i$jscomp$0 < _dispatchQueue$i.length;\n i$jscomp$0++\n ) {\n _dispatchListeners$i = _dispatchQueue$i[i$jscomp$0];\n instance = _dispatchListeners$i.instance;\n currentTarget = _dispatchListeners$i.currentTarget;\n _dispatchListeners$i = _dispatchListeners$i.listener;\n if (instance !== previousInstance && event.isPropagationStopped())\n break a;\n null !== instance\n ? runWithFiberInDEV(\n instance,\n executeDispatch,\n event,\n _dispatchListeners$i,\n currentTarget\n )\n : executeDispatch(event, _dispatchListeners$i, currentTarget);\n previousInstance = instance;\n }\n }\n }\n }\n function listenToNonDelegatedEvent(domEventName, targetElement) {\n nonDelegatedEvents.has(domEventName) ||\n console.error(\n 'Did not expect a listenToNonDelegatedEvent() call for \"%s\". This is a bug in React. Please file an issue.',\n domEventName\n );\n var listenerSet = targetElement[internalEventHandlersKey];\n void 0 === listenerSet &&\n (listenerSet = targetElement[internalEventHandlersKey] = new Set());\n var listenerSetKey = domEventName + \"__bubble\";\n listenerSet.has(listenerSetKey) ||\n (addTrappedEventListener(targetElement, domEventName, 2, !1),\n listenerSet.add(listenerSetKey));\n }\n function listenToNativeEvent(domEventName, isCapturePhaseListener, target) {\n nonDelegatedEvents.has(domEventName) &&\n !isCapturePhaseListener &&\n console.error(\n 'Did not expect a listenToNativeEvent() call for \"%s\" in the bubble phase. This is a bug in React. Please file an issue.',\n domEventName\n );\n var eventSystemFlags = 0;\n isCapturePhaseListener && (eventSystemFlags |= 4);\n addTrappedEventListener(\n target,\n domEventName,\n eventSystemFlags,\n isCapturePhaseListener\n );\n }\n function listenToAllSupportedEvents(rootContainerElement) {\n if (!rootContainerElement[listeningMarker]) {\n rootContainerElement[listeningMarker] = !0;\n allNativeEvents.forEach(function (domEventName) {\n \"selectionchange\" !== domEventName &&\n (nonDelegatedEvents.has(domEventName) ||\n listenToNativeEvent(domEventName, !1, rootContainerElement),\n listenToNativeEvent(domEventName, !0, rootContainerElement));\n });\n var ownerDocument =\n 9 === rootContainerElement.nodeType\n ? rootContainerElement\n : rootContainerElement.ownerDocument;\n null === ownerDocument ||\n ownerDocument[listeningMarker] ||\n ((ownerDocument[listeningMarker] = !0),\n listenToNativeEvent(\"selectionchange\", !1, ownerDocument));\n }\n }\n function addTrappedEventListener(\n targetContainer,\n domEventName,\n eventSystemFlags,\n isCapturePhaseListener\n ) {\n switch (getEventPriority(domEventName)) {\n case DiscreteEventPriority:\n var listenerWrapper = dispatchDiscreteEvent;\n break;\n case ContinuousEventPriority:\n listenerWrapper = dispatchContinuousEvent;\n break;\n default:\n listenerWrapper = dispatchEvent;\n }\n eventSystemFlags = listenerWrapper.bind(\n null,\n domEventName,\n eventSystemFlags,\n targetContainer\n );\n listenerWrapper = void 0;\n !passiveBrowserEventsSupported ||\n (\"touchstart\" !== domEventName &&\n \"touchmove\" !== domEventName &&\n \"wheel\" !== domEventName) ||\n (listenerWrapper = !0);\n isCapturePhaseListener\n ? void 0 !== listenerWrapper\n ? targetContainer.addEventListener(domEventName, eventSystemFlags, {\n capture: !0,\n passive: listenerWrapper\n })\n : targetContainer.addEventListener(domEventName, eventSystemFlags, !0)\n : void 0 !== listenerWrapper\n ? targetContainer.addEventListener(domEventName, eventSystemFlags, {\n passive: listenerWrapper\n })\n : targetContainer.addEventListener(\n domEventName,\n eventSystemFlags,\n !1\n );\n }\n function dispatchEventForPluginEventSystem(\n domEventName,\n eventSystemFlags,\n nativeEvent,\n targetInst$jscomp$0,\n targetContainer\n ) {\n var ancestorInst = targetInst$jscomp$0;\n if (\n 0 === (eventSystemFlags & 1) &&\n 0 === (eventSystemFlags & 2) &&\n null !== targetInst$jscomp$0\n )\n a: for (;;) {\n if (null === targetInst$jscomp$0) return;\n var nodeTag = targetInst$jscomp$0.tag;\n if (3 === nodeTag || 4 === nodeTag) {\n var container = targetInst$jscomp$0.stateNode.containerInfo;\n if (container === targetContainer) break;\n if (4 === nodeTag)\n for (nodeTag = targetInst$jscomp$0.return; null !== nodeTag; ) {\n var grandTag = nodeTag.tag;\n if (\n (3 === grandTag || 4 === grandTag) &&\n nodeTag.stateNode.containerInfo === targetContainer\n )\n return;\n nodeTag = nodeTag.return;\n }\n for (; null !== container; ) {\n nodeTag = getClosestInstanceFromNode(container);\n if (null === nodeTag) return;\n grandTag = nodeTag.tag;\n if (\n 5 === grandTag ||\n 6 === grandTag ||\n 26 === grandTag ||\n 27 === grandTag\n ) {\n targetInst$jscomp$0 = ancestorInst = nodeTag;\n continue a;\n }\n container = container.parentNode;\n }\n }\n targetInst$jscomp$0 = targetInst$jscomp$0.return;\n }\n batchedUpdates$1(function () {\n var targetInst = ancestorInst,\n nativeEventTarget = getEventTarget(nativeEvent),\n dispatchQueue = [];\n a: {\n var reactName = topLevelEventsToReactNames.get(domEventName);\n if (void 0 !== reactName) {\n var SyntheticEventCtor = SyntheticEvent,\n reactEventType = domEventName;\n switch (domEventName) {\n case \"keypress\":\n if (0 === getEventCharCode(nativeEvent)) break a;\n case \"keydown\":\n case \"keyup\":\n SyntheticEventCtor = SyntheticKeyboardEvent;\n break;\n case \"focusin\":\n reactEventType = \"focus\";\n SyntheticEventCtor = SyntheticFocusEvent;\n break;\n case \"focusout\":\n reactEventType = \"blur\";\n SyntheticEventCtor = SyntheticFocusEvent;\n break;\n case \"beforeblur\":\n case \"afterblur\":\n SyntheticEventCtor = SyntheticFocusEvent;\n break;\n case \"click\":\n if (2 === nativeEvent.button) break a;\n case \"auxclick\":\n case \"dblclick\":\n case \"mousedown\":\n case \"mousemove\":\n case \"mouseup\":\n case \"mouseout\":\n case \"mouseover\":\n case \"contextmenu\":\n SyntheticEventCtor = SyntheticMouseEvent;\n break;\n case \"drag\":\n case \"dragend\":\n case \"dragenter\":\n case \"dragexit\":\n case \"dragleave\":\n case \"dragover\":\n case \"dragstart\":\n case \"drop\":\n SyntheticEventCtor = SyntheticDragEvent;\n break;\n case \"touchcancel\":\n case \"touchend\":\n case \"touchmove\":\n case \"touchstart\":\n SyntheticEventCtor = SyntheticTouchEvent;\n break;\n case ANIMATION_END:\n case ANIMATION_ITERATION:\n case ANIMATION_START:\n SyntheticEventCtor = SyntheticAnimationEvent;\n break;\n case TRANSITION_END:\n SyntheticEventCtor = SyntheticTransitionEvent;\n break;\n case \"scroll\":\n case \"scrollend\":\n SyntheticEventCtor = SyntheticUIEvent;\n break;\n case \"wheel\":\n SyntheticEventCtor = SyntheticWheelEvent;\n break;\n case \"copy\":\n case \"cut\":\n case \"paste\":\n SyntheticEventCtor = SyntheticClipboardEvent;\n break;\n case \"gotpointercapture\":\n case \"lostpointercapture\":\n case \"pointercancel\":\n case \"pointerdown\":\n case \"pointermove\":\n case \"pointerout\":\n case \"pointerover\":\n case \"pointerup\":\n SyntheticEventCtor = SyntheticPointerEvent;\n break;\n case \"toggle\":\n case \"beforetoggle\":\n SyntheticEventCtor = SyntheticToggleEvent;\n }\n var inCapturePhase = 0 !== (eventSystemFlags & 4),\n accumulateTargetOnly =\n !inCapturePhase &&\n (\"scroll\" === domEventName || \"scrollend\" === domEventName),\n reactEventName = inCapturePhase\n ? null !== reactName\n ? reactName + \"Capture\"\n : null\n : reactName;\n inCapturePhase = [];\n for (\n var instance = targetInst, lastHostComponent;\n null !== instance;\n\n ) {\n var _instance2 = instance;\n lastHostComponent = _instance2.stateNode;\n _instance2 = _instance2.tag;\n (5 !== _instance2 && 26 !== _instance2 && 27 !== _instance2) ||\n null === lastHostComponent ||\n null === reactEventName ||\n ((_instance2 = getListener(instance, reactEventName)),\n null != _instance2 &&\n inCapturePhase.push(\n createDispatchListener(\n instance,\n _instance2,\n lastHostComponent\n )\n ));\n if (accumulateTargetOnly) break;\n instance = instance.return;\n }\n 0 < inCapturePhase.length &&\n ((reactName = new SyntheticEventCtor(\n reactName,\n reactEventType,\n null,\n nativeEvent,\n nativeEventTarget\n )),\n dispatchQueue.push({\n event: reactName,\n listeners: inCapturePhase\n }));\n }\n }\n if (0 === (eventSystemFlags & 7)) {\n a: {\n SyntheticEventCtor =\n \"mouseover\" === domEventName || \"pointerover\" === domEventName;\n reactName =\n \"mouseout\" === domEventName || \"pointerout\" === domEventName;\n if (\n SyntheticEventCtor &&\n nativeEvent !== currentReplayingEvent &&\n (reactEventType =\n nativeEvent.relatedTarget || nativeEvent.fromElement) &&\n (getClosestInstanceFromNode(reactEventType) ||\n reactEventType[internalContainerInstanceKey])\n )\n break a;\n if (reactName || SyntheticEventCtor) {\n reactEventType =\n nativeEventTarget.window === nativeEventTarget\n ? nativeEventTarget\n : (SyntheticEventCtor = nativeEventTarget.ownerDocument)\n ? SyntheticEventCtor.defaultView ||\n SyntheticEventCtor.parentWindow\n : window;\n if (reactName) {\n if (\n ((SyntheticEventCtor =\n nativeEvent.relatedTarget || nativeEvent.toElement),\n (reactName = targetInst),\n (SyntheticEventCtor = SyntheticEventCtor\n ? getClosestInstanceFromNode(SyntheticEventCtor)\n : null),\n null !== SyntheticEventCtor &&\n ((accumulateTargetOnly =\n getNearestMountedFiber(SyntheticEventCtor)),\n (inCapturePhase = SyntheticEventCtor.tag),\n SyntheticEventCtor !== accumulateTargetOnly ||\n (5 !== inCapturePhase &&\n 27 !== inCapturePhase &&\n 6 !== inCapturePhase)))\n )\n SyntheticEventCtor = null;\n } else (reactName = null), (SyntheticEventCtor = targetInst);\n if (reactName !== SyntheticEventCtor) {\n inCapturePhase = SyntheticMouseEvent;\n _instance2 = \"onMouseLeave\";\n reactEventName = \"onMouseEnter\";\n instance = \"mouse\";\n if (\n \"pointerout\" === domEventName ||\n \"pointerover\" === domEventName\n )\n (inCapturePhase = SyntheticPointerEvent),\n (_instance2 = \"onPointerLeave\"),\n (reactEventName = \"onPointerEnter\"),\n (instance = \"pointer\");\n accumulateTargetOnly =\n null == reactName\n ? reactEventType\n : getNodeFromInstance(reactName);\n lastHostComponent =\n null == SyntheticEventCtor\n ? reactEventType\n : getNodeFromInstance(SyntheticEventCtor);\n reactEventType = new inCapturePhase(\n _instance2,\n instance + \"leave\",\n reactName,\n nativeEvent,\n nativeEventTarget\n );\n reactEventType.target = accumulateTargetOnly;\n reactEventType.relatedTarget = lastHostComponent;\n _instance2 = null;\n getClosestInstanceFromNode(nativeEventTarget) === targetInst &&\n ((inCapturePhase = new inCapturePhase(\n reactEventName,\n instance + \"enter\",\n SyntheticEventCtor,\n nativeEvent,\n nativeEventTarget\n )),\n (inCapturePhase.target = lastHostComponent),\n (inCapturePhase.relatedTarget = accumulateTargetOnly),\n (_instance2 = inCapturePhase));\n accumulateTargetOnly = _instance2;\n inCapturePhase =\n reactName && SyntheticEventCtor\n ? getLowestCommonAncestor(\n reactName,\n SyntheticEventCtor,\n getParent\n )\n : null;\n null !== reactName &&\n accumulateEnterLeaveListenersForEvent(\n dispatchQueue,\n reactEventType,\n reactName,\n inCapturePhase,\n !1\n );\n null !== SyntheticEventCtor &&\n null !== accumulateTargetOnly &&\n accumulateEnterLeaveListenersForEvent(\n dispatchQueue,\n accumulateTargetOnly,\n SyntheticEventCtor,\n inCapturePhase,\n !0\n );\n }\n }\n }\n a: {\n reactName = targetInst ? getNodeFromInstance(targetInst) : window;\n SyntheticEventCtor =\n reactName.nodeName && reactName.nodeName.toLowerCase();\n if (\n \"select\" === SyntheticEventCtor ||\n (\"input\" === SyntheticEventCtor && \"file\" === reactName.type)\n )\n var getTargetInstFunc = getTargetInstForChangeEvent;\n else if (isTextInputElement(reactName))\n if (isInputEventSupported)\n getTargetInstFunc = getTargetInstForInputOrChangeEvent;\n else {\n getTargetInstFunc = getTargetInstForInputEventPolyfill;\n var handleEventFunc = handleEventsForInputEventPolyfill;\n }\n else\n (SyntheticEventCtor = reactName.nodeName),\n !SyntheticEventCtor ||\n \"input\" !== SyntheticEventCtor.toLowerCase() ||\n (\"checkbox\" !== reactName.type && \"radio\" !== reactName.type)\n ? targetInst &&\n isCustomElement(targetInst.elementType) &&\n (getTargetInstFunc = getTargetInstForChangeEvent)\n : (getTargetInstFunc = getTargetInstForClickEvent);\n if (\n getTargetInstFunc &&\n (getTargetInstFunc = getTargetInstFunc(domEventName, targetInst))\n ) {\n createAndAccumulateChangeEvent(\n dispatchQueue,\n getTargetInstFunc,\n nativeEvent,\n nativeEventTarget\n );\n break a;\n }\n handleEventFunc &&\n handleEventFunc(domEventName, reactName, targetInst);\n \"focusout\" === domEventName &&\n targetInst &&\n \"number\" === reactName.type &&\n null != targetInst.memoizedProps.value &&\n setDefaultValue(reactName, \"number\", reactName.value);\n }\n handleEventFunc = targetInst\n ? getNodeFromInstance(targetInst)\n : window;\n switch (domEventName) {\n case \"focusin\":\n if (\n isTextInputElement(handleEventFunc) ||\n \"true\" === handleEventFunc.contentEditable\n )\n (activeElement = handleEventFunc),\n (activeElementInst = targetInst),\n (lastSelection = null);\n break;\n case \"focusout\":\n lastSelection = activeElementInst = activeElement = null;\n break;\n case \"mousedown\":\n mouseDown = !0;\n break;\n case \"contextmenu\":\n case \"mouseup\":\n case \"dragend\":\n mouseDown = !1;\n constructSelectEvent(\n dispatchQueue,\n nativeEvent,\n nativeEventTarget\n );\n break;\n case \"selectionchange\":\n if (skipSelectionChangeEvent) break;\n case \"keydown\":\n case \"keyup\":\n constructSelectEvent(\n dispatchQueue,\n nativeEvent,\n nativeEventTarget\n );\n }\n var fallbackData;\n if (canUseCompositionEvent)\n b: {\n switch (domEventName) {\n case \"compositionstart\":\n var eventType = \"onCompositionStart\";\n break b;\n case \"compositionend\":\n eventType = \"onCompositionEnd\";\n break b;\n case \"compositionupdate\":\n eventType = \"onCompositionUpdate\";\n break b;\n }\n eventType = void 0;\n }\n else\n isComposing\n ? isFallbackCompositionEnd(domEventName, nativeEvent) &&\n (eventType = \"onCompositionEnd\")\n : \"keydown\" === domEventName &&\n nativeEvent.keyCode === START_KEYCODE &&\n (eventType = \"onCompositionStart\");\n eventType &&\n (useFallbackCompositionData &&\n \"ko\" !== nativeEvent.locale &&\n (isComposing || \"onCompositionStart\" !== eventType\n ? \"onCompositionEnd\" === eventType &&\n isComposing &&\n (fallbackData = getData())\n : ((root = nativeEventTarget),\n (startText = \"value\" in root ? root.value : root.textContent),\n (isComposing = !0))),\n (handleEventFunc = accumulateTwoPhaseListeners(\n targetInst,\n eventType\n )),\n 0 < handleEventFunc.length &&\n ((eventType = new SyntheticCompositionEvent(\n eventType,\n domEventName,\n null,\n nativeEvent,\n nativeEventTarget\n )),\n dispatchQueue.push({\n event: eventType,\n listeners: handleEventFunc\n }),\n fallbackData\n ? (eventType.data = fallbackData)\n : ((fallbackData = getDataFromCustomEvent(nativeEvent)),\n null !== fallbackData && (eventType.data = fallbackData))));\n if (\n (fallbackData = canUseTextInputEvent\n ? getNativeBeforeInputChars(domEventName, nativeEvent)\n : getFallbackBeforeInputChars(domEventName, nativeEvent))\n )\n (eventType = accumulateTwoPhaseListeners(\n targetInst,\n \"onBeforeInput\"\n )),\n 0 < eventType.length &&\n ((handleEventFunc = new SyntheticInputEvent(\n \"onBeforeInput\",\n \"beforeinput\",\n null,\n nativeEvent,\n nativeEventTarget\n )),\n dispatchQueue.push({\n event: handleEventFunc,\n listeners: eventType\n }),\n (handleEventFunc.data = fallbackData));\n extractEvents$1(\n dispatchQueue,\n domEventName,\n targetInst,\n nativeEvent,\n nativeEventTarget\n );\n }\n processDispatchQueue(dispatchQueue, eventSystemFlags);\n });\n }\n function createDispatchListener(instance, listener, currentTarget) {\n return {\n instance: instance,\n listener: listener,\n currentTarget: currentTarget\n };\n }\n function accumulateTwoPhaseListeners(targetFiber, reactName) {\n for (\n var captureName = reactName + \"Capture\", listeners = [];\n null !== targetFiber;\n\n ) {\n var _instance3 = targetFiber,\n stateNode = _instance3.stateNode;\n _instance3 = _instance3.tag;\n (5 !== _instance3 && 26 !== _instance3 && 27 !== _instance3) ||\n null === stateNode ||\n ((_instance3 = getListener(targetFiber, captureName)),\n null != _instance3 &&\n listeners.unshift(\n createDispatchListener(targetFiber, _instance3, stateNode)\n ),\n (_instance3 = getListener(targetFiber, reactName)),\n null != _instance3 &&\n listeners.push(\n createDispatchListener(targetFiber, _instance3, stateNode)\n ));\n if (3 === targetFiber.tag) return listeners;\n targetFiber = targetFiber.return;\n }\n return [];\n }\n function getParent(inst) {\n if (null === inst) return null;\n do inst = inst.return;\n while (inst && 5 !== inst.tag && 27 !== inst.tag);\n return inst ? inst : null;\n }\n function accumulateEnterLeaveListenersForEvent(\n dispatchQueue,\n event,\n target,\n common,\n inCapturePhase\n ) {\n for (\n var registrationName = event._reactName, listeners = [];\n null !== target && target !== common;\n\n ) {\n var _instance4 = target,\n alternate = _instance4.alternate,\n stateNode = _instance4.stateNode;\n _instance4 = _instance4.tag;\n if (null !== alternate && alternate === common) break;\n (5 !== _instance4 && 26 !== _instance4 && 27 !== _instance4) ||\n null === stateNode ||\n ((alternate = stateNode),\n inCapturePhase\n ? ((stateNode = getListener(target, registrationName)),\n null != stateNode &&\n listeners.unshift(\n createDispatchListener(target, stateNode, alternate)\n ))\n : inCapturePhase ||\n ((stateNode = getListener(target, registrationName)),\n null != stateNode &&\n listeners.push(\n createDispatchListener(target, stateNode, alternate)\n )));\n target = target.return;\n }\n 0 !== listeners.length &&\n dispatchQueue.push({ event: event, listeners: listeners });\n }\n function validatePropertiesInDevelopment(type, props) {\n validateProperties$2(type, props);\n (\"input\" !== type && \"textarea\" !== type && \"select\" !== type) ||\n null == props ||\n null !== props.value ||\n didWarnValueNull ||\n ((didWarnValueNull = !0),\n \"select\" === type && props.multiple\n ? console.error(\n \"`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.\",\n type\n )\n : console.error(\n \"`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.\",\n type\n ));\n var eventRegistry = {\n registrationNameDependencies: registrationNameDependencies,\n possibleRegistrationNames: possibleRegistrationNames\n };\n isCustomElement(type) ||\n \"string\" === typeof props.is ||\n warnUnknownProperties(type, props, eventRegistry);\n props.contentEditable &&\n !props.suppressContentEditableWarning &&\n null != props.children &&\n console.error(\n \"A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.\"\n );\n }\n function warnForPropDifference(\n propName,\n serverValue,\n clientValue,\n serverDifferences\n ) {\n serverValue !== clientValue &&\n ((clientValue = normalizeMarkupForTextOrAttribute(clientValue)),\n normalizeMarkupForTextOrAttribute(serverValue) !== clientValue &&\n (serverDifferences[propName] = serverValue));\n }\n function hasViewTransition(htmlElement) {\n return !!(\n htmlElement.getAttribute(\"vt-share\") ||\n htmlElement.getAttribute(\"vt-exit\") ||\n htmlElement.getAttribute(\"vt-enter\") ||\n htmlElement.getAttribute(\"vt-update\")\n );\n }\n function isExpectedViewTransitionName(htmlElement) {\n if (!hasViewTransition(htmlElement)) return !1;\n var expectedVtName = htmlElement.getAttribute(\"vt-name\");\n htmlElement = htmlElement.style[\"view-transition-name\"];\n return expectedVtName\n ? expectedVtName === htmlElement\n : htmlElement.startsWith(\"_T_\");\n }\n function warnForExtraAttributes(\n domElement,\n attributeNames,\n serverDifferences\n ) {\n attributeNames.forEach(function (attributeName) {\n \"style\" === attributeName\n ? \"\" !== domElement.getAttribute(attributeName) &&\n ((attributeName = domElement.style),\n (((1 === attributeName.length &&\n \"view-transition-name\" === attributeName[0]) ||\n (2 === attributeName.length &&\n \"view-transition-class\" === attributeName[0] &&\n \"view-transition-name\" === attributeName[1])) &&\n isExpectedViewTransitionName(domElement)) ||\n (serverDifferences.style =\n getStylesObjectFromElement(domElement)))\n : (serverDifferences[getPropNameFromAttributeName(attributeName)] =\n domElement.getAttribute(attributeName));\n });\n }\n function warnForInvalidEventListener(registrationName, listener) {\n !1 === listener\n ? console.error(\n \"Expected `%s` listener to be a function, instead got `false`.\\n\\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.\",\n registrationName,\n registrationName,\n registrationName\n )\n : console.error(\n \"Expected `%s` listener to be a function, instead got a value of `%s` type.\",\n registrationName,\n typeof listener\n );\n }\n function normalizeHTML(parent, html) {\n parent =\n parent.namespaceURI === MATH_NAMESPACE ||\n parent.namespaceURI === SVG_NAMESPACE\n ? parent.ownerDocument.createElementNS(\n parent.namespaceURI,\n parent.tagName\n )\n : parent.ownerDocument.createElement(parent.tagName);\n parent.innerHTML = html;\n return parent.innerHTML;\n }\n function normalizeMarkupForTextOrAttribute(markup) {\n willCoercionThrow(markup) &&\n (console.error(\n \"The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before using it here.\",\n typeName(markup)\n ),\n testStringCoercion(markup));\n return (\"string\" === typeof markup ? markup : \"\" + markup)\n .replace(NORMALIZE_NEWLINES_REGEX, \"\\n\")\n .replace(NORMALIZE_NULL_AND_REPLACEMENT_REGEX, \"\");\n }\n function checkForUnmatchedText(serverText, clientText) {\n clientText = normalizeMarkupForTextOrAttribute(clientText);\n return normalizeMarkupForTextOrAttribute(serverText) === clientText\n ? !0\n : !1;\n }\n function setProp(domElement, tag, key, value, props, prevValue) {\n switch (key) {\n case \"children\":\n if (\"string\" === typeof value)\n validateTextNesting(value, tag, !1),\n \"body\" === tag ||\n (\"textarea\" === tag && \"\" === value) ||\n setTextContent(domElement, value);\n else if (\"number\" === typeof value || \"bigint\" === typeof value)\n validateTextNesting(\"\" + value, tag, !1),\n \"body\" !== tag && setTextContent(domElement, \"\" + value);\n else return;\n break;\n case \"className\":\n setValueForKnownAttribute(domElement, \"class\", value);\n break;\n case \"tabIndex\":\n setValueForKnownAttribute(domElement, \"tabindex\", value);\n break;\n case \"dir\":\n case \"role\":\n case \"viewBox\":\n case \"width\":\n case \"height\":\n setValueForKnownAttribute(domElement, key, value);\n break;\n case \"style\":\n setValueForStyles(domElement, value, prevValue);\n return;\n case \"data\":\n if (\"object\" !== tag) {\n setValueForKnownAttribute(domElement, \"data\", value);\n break;\n }\n case \"src\":\n case \"href\":\n if (\"\" === value && (\"a\" !== tag || \"href\" !== key)) {\n \"src\" === key\n ? console.error(\n 'An empty string (\"\") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',\n key,\n key\n )\n : console.error(\n 'An empty string (\"\") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',\n key,\n key\n );\n domElement.removeAttribute(key);\n break;\n }\n if (\n null == value ||\n \"function\" === typeof value ||\n \"symbol\" === typeof value ||\n \"boolean\" === typeof value\n ) {\n domElement.removeAttribute(key);\n break;\n }\n checkAttributeStringCoercion(value, key);\n value = sanitizeURL(\"\" + value);\n domElement.setAttribute(key, value);\n break;\n case \"action\":\n case \"formAction\":\n null != value &&\n (\"form\" === tag\n ? \"formAction\" === key\n ? console.error(\n \"You can only pass the formAction prop to <input> or <button>. Use the action prop on <form>.\"\n )\n : \"function\" === typeof value &&\n ((null == props.encType && null == props.method) ||\n didWarnFormActionMethod ||\n ((didWarnFormActionMethod = !0),\n console.error(\n \"Cannot specify a encType or method for a form that specifies a function as the action. React provides those automatically. They will get overridden.\"\n )),\n null == props.target ||\n didWarnFormActionTarget ||\n ((didWarnFormActionTarget = !0),\n console.error(\n \"Cannot specify a target for a form that specifies a function as the action. The function will always be executed in the same window.\"\n )))\n : \"input\" === tag || \"button\" === tag\n ? \"action\" === key\n ? console.error(\n \"You can only pass the action prop to <form>. Use the formAction prop on <input> or <button>.\"\n )\n : \"input\" !== tag ||\n \"submit\" === props.type ||\n \"image\" === props.type ||\n didWarnFormActionType\n ? \"button\" !== tag ||\n null == props.type ||\n \"submit\" === props.type ||\n didWarnFormActionType\n ? \"function\" === typeof value &&\n (null == props.name ||\n didWarnFormActionName ||\n ((didWarnFormActionName = !0),\n console.error(\n 'Cannot specify a \"name\" prop for a button that specifies a function as a formAction. React needs it to encode which action should be invoked. It will get overridden.'\n )),\n (null == props.formEncType &&\n null == props.formMethod) ||\n didWarnFormActionMethod ||\n ((didWarnFormActionMethod = !0),\n console.error(\n \"Cannot specify a formEncType or formMethod for a button that specifies a function as a formAction. React provides those automatically. They will get overridden.\"\n )),\n null == props.formTarget ||\n didWarnFormActionTarget ||\n ((didWarnFormActionTarget = !0),\n console.error(\n \"Cannot specify a formTarget for a button that specifies a function as a formAction. The function will always be executed in the same window.\"\n )))\n : ((didWarnFormActionType = !0),\n console.error(\n 'A button can only specify a formAction along with type=\"submit\" or no type.'\n ))\n : ((didWarnFormActionType = !0),\n console.error(\n 'An input can only specify a formAction along with type=\"submit\" or type=\"image\".'\n ))\n : \"action\" === key\n ? console.error(\n \"You can only pass the action prop to <form>.\"\n )\n : console.error(\n \"You can only pass the formAction prop to <input> or <button>.\"\n ));\n if (\"function\" === typeof value) {\n domElement.setAttribute(\n key,\n \"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')\"\n );\n break;\n } else\n \"function\" === typeof prevValue &&\n (\"formAction\" === key\n ? (\"input\" !== tag &&\n setProp(domElement, tag, \"name\", props.name, props, null),\n setProp(\n domElement,\n tag,\n \"formEncType\",\n props.formEncType,\n props,\n null\n ),\n setProp(\n domElement,\n tag,\n \"formMethod\",\n props.formMethod,\n props,\n null\n ),\n setProp(\n domElement,\n tag,\n \"formTarget\",\n props.formTarget,\n props,\n null\n ))\n : (setProp(\n domElement,\n tag,\n \"encType\",\n props.encType,\n props,\n null\n ),\n setProp(domElement, tag, \"method\", props.method, props, null),\n setProp(\n domElement,\n tag,\n \"target\",\n props.target,\n props,\n null\n )));\n if (\n null == value ||\n \"symbol\" === typeof value ||\n \"boolean\" === typeof value\n ) {\n domElement.removeAttribute(key);\n break;\n }\n checkAttributeStringCoercion(value, key);\n value = sanitizeURL(\"\" + value);\n domElement.setAttribute(key, value);\n break;\n case \"onClick\":\n null != value &&\n (\"function\" !== typeof value &&\n warnForInvalidEventListener(key, value),\n (domElement.onclick = noop$1));\n return;\n case \"onScroll\":\n null != value &&\n (\"function\" !== typeof value &&\n warnForInvalidEventListener(key, value),\n listenToNonDelegatedEvent(\"scroll\", domElement));\n return;\n case \"onScrollEnd\":\n null != value &&\n (\"function\" !== typeof value &&\n warnForInvalidEventListener(key, value),\n listenToNonDelegatedEvent(\"scrollend\", domElement));\n return;\n case \"dangerouslySetInnerHTML\":\n if (null != value) {\n if (\"object\" !== typeof value || !(\"__html\" in value))\n throw Error(\n \"`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information.\"\n );\n key = value.__html;\n if (null != key) {\n if (null != props.children)\n throw Error(\n \"Can only set one of `children` or `props.dangerouslySetInnerHTML`.\"\n );\n domElement.innerHTML = key;\n }\n }\n break;\n case \"multiple\":\n domElement.multiple =\n value && \"function\" !== typeof value && \"symbol\" !== typeof value;\n break;\n case \"muted\":\n domElement.muted =\n value && \"function\" !== typeof value && \"symbol\" !== typeof value;\n break;\n case \"suppressContentEditableWarning\":\n case \"suppressHydrationWarning\":\n case \"defaultValue\":\n case \"defaultChecked\":\n case \"innerHTML\":\n case \"ref\":\n break;\n case \"autoFocus\":\n break;\n case \"xlinkHref\":\n if (\n null == value ||\n \"function\" === typeof value ||\n \"boolean\" === typeof value ||\n \"symbol\" === typeof value\n ) {\n domElement.removeAttribute(\"xlink:href\");\n break;\n }\n checkAttributeStringCoercion(value, key);\n key = sanitizeURL(\"\" + value);\n domElement.setAttributeNS(xlinkNamespace, \"xlink:href\", key);\n break;\n case \"contentEditable\":\n case \"spellCheck\":\n case \"draggable\":\n case \"value\":\n case \"autoReverse\":\n case \"externalResourcesRequired\":\n case \"focusable\":\n case \"preserveAlpha\":\n null != value &&\n \"function\" !== typeof value &&\n \"symbol\" !== typeof value\n ? (checkAttributeStringCoercion(value, key),\n domElement.setAttribute(key, \"\" + value))\n : domElement.removeAttribute(key);\n break;\n case \"inert\":\n \"\" !== value ||\n didWarnForNewBooleanPropsWithEmptyValue[key] ||\n ((didWarnForNewBooleanPropsWithEmptyValue[key] = !0),\n console.error(\n \"Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.\",\n key\n ));\n case \"allowFullScreen\":\n case \"async\":\n case \"autoPlay\":\n case \"controls\":\n case \"default\":\n case \"defer\":\n case \"disabled\":\n case \"disablePictureInPicture\":\n case \"disableRemotePlayback\":\n case \"formNoValidate\":\n case \"hidden\":\n case \"loop\":\n case \"noModule\":\n case \"noValidate\":\n case \"open\":\n case \"playsInline\":\n case \"readOnly\":\n case \"required\":\n case \"reversed\":\n case \"scoped\":\n case \"seamless\":\n case \"itemScope\":\n value && \"function\" !== typeof value && \"symbol\" !== typeof value\n ? domElement.setAttribute(key, \"\")\n : domElement.removeAttribute(key);\n break;\n case \"capture\":\n case \"download\":\n !0 === value\n ? domElement.setAttribute(key, \"\")\n : !1 !== value &&\n null != value &&\n \"function\" !== typeof value &&\n \"symbol\" !== typeof value\n ? (checkAttributeStringCoercion(value, key),\n domElement.setAttribute(key, value))\n : domElement.removeAttribute(key);\n break;\n case \"cols\":\n case \"rows\":\n case \"size\":\n case \"span\":\n null != value &&\n \"function\" !== typeof value &&\n \"symbol\" !== typeof value &&\n !isNaN(value) &&\n 1 <= value\n ? (checkAttributeStringCoercion(value, key),\n domElement.setAttribute(key, value))\n : domElement.removeAttribute(key);\n break;\n case \"rowSpan\":\n case \"start\":\n null == value ||\n \"function\" === typeof value ||\n \"symbol\" === typeof value ||\n isNaN(value)\n ? domElement.removeAttribute(key)\n : (checkAttributeStringCoercion(value, key),\n domElement.setAttribute(key, value));\n break;\n case \"popover\":\n listenToNonDelegatedEvent(\"beforetoggle\", domElement);\n listenToNonDelegatedEvent(\"toggle\", domElement);\n setValueForAttribute(domElement, \"popover\", value);\n break;\n case \"xlinkActuate\":\n setValueForNamespacedAttribute(\n domElement,\n xlinkNamespace,\n \"xlink:actuate\",\n value\n );\n break;\n case \"xlinkArcrole\":\n setValueForNamespacedAttribute(\n domElement,\n xlinkNamespace,\n \"xlink:arcrole\",\n value\n );\n break;\n case \"xlinkRole\":\n setValueForNamespacedAttribute(\n domElement,\n xlinkNamespace,\n \"xlink:role\",\n value\n );\n break;\n case \"xlinkShow\":\n setValueForNamespacedAttribute(\n domElement,\n xlinkNamespace,\n \"xlink:show\",\n value\n );\n break;\n case \"xlinkTitle\":\n setValueForNamespacedAttribute(\n domElement,\n xlinkNamespace,\n \"xlink:title\",\n value\n );\n break;\n case \"xlinkType\":\n setValueForNamespacedAttribute(\n domElement,\n xlinkNamespace,\n \"xlink:type\",\n value\n );\n break;\n case \"xmlBase\":\n setValueForNamespacedAttribute(\n domElement,\n xmlNamespace,\n \"xml:base\",\n value\n );\n break;\n case \"xmlLang\":\n setValueForNamespacedAttribute(\n domElement,\n xmlNamespace,\n \"xml:lang\",\n value\n );\n break;\n case \"xmlSpace\":\n setValueForNamespacedAttribute(\n domElement,\n xmlNamespace,\n \"xml:space\",\n value\n );\n break;\n case \"is\":\n null != prevValue &&\n console.error(\n 'Cannot update the \"is\" prop after it has been initialized.'\n );\n setValueForAttribute(domElement, \"is\", value);\n break;\n case \"innerText\":\n case \"textContent\":\n return;\n case \"popoverTarget\":\n didWarnPopoverTargetObject ||\n null == value ||\n \"object\" !== typeof value ||\n ((didWarnPopoverTargetObject = !0),\n console.error(\n \"The `popoverTarget` prop expects the ID of an Element as a string. Received %s instead.\",\n value\n ));\n default:\n if (\n !(2 < key.length) ||\n (\"o\" !== key[0] && \"O\" !== key[0]) ||\n (\"n\" !== key[1] && \"N\" !== key[1])\n )\n (key = getAttributeAlias(key)),\n setValueForAttribute(domElement, key, value);\n else {\n registrationNameDependencies.hasOwnProperty(key) &&\n null != value &&\n \"function\" !== typeof value &&\n warnForInvalidEventListener(key, value);\n return;\n }\n }\n viewTransitionMutationContext = !0;\n }\n function setPropOnCustomElement(\n domElement,\n tag,\n key,\n value,\n props,\n prevValue\n ) {\n switch (key) {\n case \"style\":\n setValueForStyles(domElement, value, prevValue);\n return;\n case \"dangerouslySetInnerHTML\":\n if (null != value) {\n if (\"object\" !== typeof value || !(\"__html\" in value))\n throw Error(\n \"`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information.\"\n );\n key = value.__html;\n if (null != key) {\n if (null != props.children)\n throw Error(\n \"Can only set one of `children` or `props.dangerouslySetInnerHTML`.\"\n );\n domElement.innerHTML = key;\n }\n }\n break;\n case \"children\":\n if (\"string\" === typeof value) setTextContent(domElement, value);\n else if (\"number\" === typeof value || \"bigint\" === typeof value)\n setTextContent(domElement, \"\" + value);\n else return;\n break;\n case \"onScroll\":\n null != value &&\n (\"function\" !== typeof value &&\n warnForInvalidEventListener(key, value),\n listenToNonDelegatedEvent(\"scroll\", domElement));\n return;\n case \"onScrollEnd\":\n null != value &&\n (\"function\" !== typeof value &&\n warnForInvalidEventListener(key, value),\n listenToNonDelegatedEvent(\"scrollend\", domElement));\n return;\n case \"onClick\":\n null != value &&\n (\"function\" !== typeof value &&\n warnForInvalidEventListener(key, value),\n (domElement.onclick = noop$1));\n return;\n case \"suppressContentEditableWarning\":\n case \"suppressHydrationWarning\":\n case \"innerHTML\":\n case \"ref\":\n return;\n case \"innerText\":\n case \"textContent\":\n return;\n default:\n if (registrationNameDependencies.hasOwnProperty(key))\n null != value &&\n \"function\" !== typeof value &&\n warnForInvalidEventListener(key, value);\n else\n a: {\n if (\n \"o\" === key[0] &&\n \"n\" === key[1] &&\n ((props = key.endsWith(\"Capture\")),\n (tag = key.slice(2, props ? key.length - 7 : void 0)),\n (prevValue = domElement[internalPropsKey] || null),\n (prevValue = null != prevValue ? prevValue[key] : null),\n \"function\" === typeof prevValue &&\n domElement.removeEventListener(tag, prevValue, props),\n \"function\" === typeof value)\n ) {\n \"function\" !== typeof prevValue &&\n null !== prevValue &&\n (key in domElement\n ? (domElement[key] = null)\n : domElement.hasAttribute(key) &&\n domElement.removeAttribute(key));\n domElement.addEventListener(tag, value, props);\n break a;\n }\n viewTransitionMutationContext = !0;\n key in domElement\n ? (domElement[key] = value)\n : !0 === value\n ? domElement.setAttribute(key, \"\")\n : setValueForAttribute(domElement, key, value);\n }\n return;\n }\n viewTransitionMutationContext = !0;\n }\n function setInitialProperties(domElement, tag, props) {\n validatePropertiesInDevelopment(tag, props);\n switch (tag) {\n case \"div\":\n case \"span\":\n case \"svg\":\n case \"path\":\n case \"a\":\n case \"g\":\n case \"p\":\n case \"li\":\n break;\n case \"img\":\n listenToNonDelegatedEvent(\"error\", domElement);\n listenToNonDelegatedEvent(\"load\", domElement);\n var hasSrc = !1,\n hasSrcSet = !1,\n propKey;\n for (propKey in props)\n if (props.hasOwnProperty(propKey)) {\n var propValue = props[propKey];\n if (null != propValue)\n switch (propKey) {\n case \"src\":\n hasSrc = !0;\n break;\n case \"srcSet\":\n hasSrcSet = !0;\n break;\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n throw Error(\n tag +\n \" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.\"\n );\n default:\n setProp(domElement, tag, propKey, propValue, props, null);\n }\n }\n hasSrcSet &&\n setProp(domElement, tag, \"srcSet\", props.srcSet, props, null);\n hasSrc && setProp(domElement, tag, \"src\", props.src, props, null);\n return;\n case \"input\":\n checkControlledValueProps(\"input\", props);\n listenToNonDelegatedEvent(\"invalid\", domElement);\n var defaultValue = (propKey = propValue = hasSrcSet = null),\n checked = null,\n defaultChecked = null;\n for (hasSrc in props)\n if (props.hasOwnProperty(hasSrc)) {\n var _propValue = props[hasSrc];\n if (null != _propValue)\n switch (hasSrc) {\n case \"name\":\n hasSrcSet = _propValue;\n break;\n case \"type\":\n propValue = _propValue;\n break;\n case \"checked\":\n checked = _propValue;\n break;\n case \"defaultChecked\":\n defaultChecked = _propValue;\n break;\n case \"value\":\n propKey = _propValue;\n break;\n case \"defaultValue\":\n defaultValue = _propValue;\n break;\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n if (null != _propValue)\n throw Error(\n tag +\n \" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.\"\n );\n break;\n default:\n setProp(domElement, tag, hasSrc, _propValue, props, null);\n }\n }\n validateInputProps(domElement, props);\n initInput(\n domElement,\n propKey,\n defaultValue,\n checked,\n defaultChecked,\n propValue,\n hasSrcSet,\n !1\n );\n return;\n case \"select\":\n checkControlledValueProps(\"select\", props);\n listenToNonDelegatedEvent(\"invalid\", domElement);\n hasSrc = propValue = propKey = null;\n for (hasSrcSet in props)\n if (\n props.hasOwnProperty(hasSrcSet) &&\n ((defaultValue = props[hasSrcSet]), null != defaultValue)\n )\n switch (hasSrcSet) {\n case \"value\":\n propKey = defaultValue;\n break;\n case \"defaultValue\":\n propValue = defaultValue;\n break;\n case \"multiple\":\n hasSrc = defaultValue;\n default:\n setProp(\n domElement,\n tag,\n hasSrcSet,\n defaultValue,\n props,\n null\n );\n }\n validateSelectProps(domElement, props);\n tag = propKey;\n props = propValue;\n domElement.multiple = !!hasSrc;\n null != tag\n ? updateOptions(domElement, !!hasSrc, tag, !1)\n : null != props && updateOptions(domElement, !!hasSrc, props, !0);\n return;\n case \"textarea\":\n checkControlledValueProps(\"textarea\", props);\n listenToNonDelegatedEvent(\"invalid\", domElement);\n propKey = hasSrcSet = hasSrc = null;\n for (propValue in props)\n if (\n props.hasOwnProperty(propValue) &&\n ((defaultValue = props[propValue]), null != defaultValue)\n )\n switch (propValue) {\n case \"value\":\n hasSrc = defaultValue;\n break;\n case \"defaultValue\":\n hasSrcSet = defaultValue;\n break;\n case \"children\":\n propKey = defaultValue;\n break;\n case \"dangerouslySetInnerHTML\":\n if (null != defaultValue)\n throw Error(\n \"`dangerouslySetInnerHTML` does not make sense on <textarea>.\"\n );\n break;\n default:\n setProp(\n domElement,\n tag,\n propValue,\n defaultValue,\n props,\n null\n );\n }\n validateTextareaProps(domElement, props);\n initTextarea(domElement, hasSrc, hasSrcSet, propKey);\n return;\n case \"option\":\n validateOptionProps(domElement, props);\n for (checked in props)\n if (\n props.hasOwnProperty(checked) &&\n ((hasSrc = props[checked]), null != hasSrc)\n )\n switch (checked) {\n case \"selected\":\n domElement.selected =\n hasSrc &&\n \"function\" !== typeof hasSrc &&\n \"symbol\" !== typeof hasSrc;\n break;\n default:\n setProp(domElement, tag, checked, hasSrc, props, null);\n }\n return;\n case \"dialog\":\n listenToNonDelegatedEvent(\"beforetoggle\", domElement);\n listenToNonDelegatedEvent(\"toggle\", domElement);\n listenToNonDelegatedEvent(\"cancel\", domElement);\n listenToNonDelegatedEvent(\"close\", domElement);\n break;\n case \"iframe\":\n case \"object\":\n listenToNonDelegatedEvent(\"load\", domElement);\n break;\n case \"video\":\n case \"audio\":\n for (hasSrc = 0; hasSrc < mediaEventTypes.length; hasSrc++)\n listenToNonDelegatedEvent(mediaEventTypes[hasSrc], domElement);\n break;\n case \"image\":\n listenToNonDelegatedEvent(\"error\", domElement);\n listenToNonDelegatedEvent(\"load\", domElement);\n break;\n case \"details\":\n listenToNonDelegatedEvent(\"toggle\", domElement);\n break;\n case \"embed\":\n case \"source\":\n case \"link\":\n listenToNonDelegatedEvent(\"error\", domElement),\n listenToNonDelegatedEvent(\"load\", domElement);\n case \"area\":\n case \"base\":\n case \"br\":\n case \"col\":\n case \"hr\":\n case \"keygen\":\n case \"meta\":\n case \"param\":\n case \"track\":\n case \"wbr\":\n case \"menuitem\":\n for (defaultChecked in props)\n if (\n props.hasOwnProperty(defaultChecked) &&\n ((hasSrc = props[defaultChecked]), null != hasSrc)\n )\n switch (defaultChecked) {\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n throw Error(\n tag +\n \" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.\"\n );\n default:\n setProp(domElement, tag, defaultChecked, hasSrc, props, null);\n }\n return;\n default:\n if (isCustomElement(tag)) {\n for (_propValue in props)\n props.hasOwnProperty(_propValue) &&\n ((hasSrc = props[_propValue]),\n void 0 !== hasSrc &&\n setPropOnCustomElement(\n domElement,\n tag,\n _propValue,\n hasSrc,\n props,\n void 0\n ));\n return;\n }\n }\n for (defaultValue in props)\n props.hasOwnProperty(defaultValue) &&\n ((hasSrc = props[defaultValue]),\n null != hasSrc &&\n setProp(domElement, tag, defaultValue, hasSrc, props, null));\n }\n function updateProperties(domElement, tag, lastProps, nextProps) {\n validatePropertiesInDevelopment(tag, nextProps);\n switch (tag) {\n case \"div\":\n case \"span\":\n case \"svg\":\n case \"path\":\n case \"a\":\n case \"g\":\n case \"p\":\n case \"li\":\n break;\n case \"input\":\n var name = null,\n type = null,\n value = null,\n defaultValue = null,\n lastDefaultValue = null,\n checked = null,\n defaultChecked = null;\n for (propKey in lastProps) {\n var lastProp = lastProps[propKey];\n if (lastProps.hasOwnProperty(propKey) && null != lastProp)\n switch (propKey) {\n case \"checked\":\n break;\n case \"value\":\n break;\n case \"defaultValue\":\n lastDefaultValue = lastProp;\n default:\n nextProps.hasOwnProperty(propKey) ||\n setProp(\n domElement,\n tag,\n propKey,\n null,\n nextProps,\n lastProp\n );\n }\n }\n for (var _propKey8 in nextProps) {\n var propKey = nextProps[_propKey8];\n lastProp = lastProps[_propKey8];\n if (\n nextProps.hasOwnProperty(_propKey8) &&\n (null != propKey || null != lastProp)\n )\n switch (_propKey8) {\n case \"type\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n type = propKey;\n break;\n case \"name\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n name = propKey;\n break;\n case \"checked\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n checked = propKey;\n break;\n case \"defaultChecked\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n defaultChecked = propKey;\n break;\n case \"value\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n value = propKey;\n break;\n case \"defaultValue\":\n propKey !== lastProp && (viewTransitionMutationContext = !0);\n defaultValue = propKey;\n break;\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n if (null != propKey)\n throw Error(\n tag +\n \" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.\"\n );\n break;\n default:\n propKey !== lastProp &&\n setProp(\n domElement,\n tag,\n _propKey8,\n propKey,\n nextProps,\n lastProp\n );\n }\n }\n tag =\n \"checkbox\" === lastProps.type || \"radio\" === lastProps.type\n ? null != lastProps.checked\n : null != lastProps.value;\n nextProps =\n \"checkbox\" === nextProps.type || \"radio\" === nextProps.type\n ? null != nextProps.checked\n : null != nextProps.value;\n tag ||\n !nextProps ||\n didWarnUncontrolledToControlled ||\n (console.error(\n \"A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components\"\n ),\n (didWarnUncontrolledToControlled = !0));\n !tag ||\n nextProps ||\n didWarnControlledToUncontrolled ||\n (console.error(\n \"A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components\"\n ),\n (didWarnControlledToUncontrolled = !0));\n updateInput(\n domElement,\n value,\n defaultValue,\n lastDefaultValue,\n checked,\n defaultChecked,\n type,\n name\n );\n return;\n case \"select\":\n propKey = value = defaultValue = _propKey8 = null;\n for (type in lastProps)\n if (\n ((lastDefaultValue = lastProps[type]),\n lastProps.hasOwnProperty(type) && null != lastDefaultValue)\n )\n switch (type) {\n case \"value\":\n break;\n case \"multiple\":\n propKey = lastDefaultValue;\n default:\n nextProps.hasOwnProperty(type) ||\n setProp(\n domElement,\n tag,\n type,\n null,\n nextProps,\n lastDefaultValue\n );\n }\n for (name in nextProps)\n if (\n ((type = nextProps[name]),\n (lastDefaultValue = lastProps[name]),\n nextProps.hasOwnProperty(name) &&\n (null != type || null != lastDefaultValue))\n )\n switch (name) {\n case \"value\":\n type !== lastDefaultValue &&\n (viewTransitionMutationContext = !0);\n _propKey8 = type;\n break;\n case \"defaultValue\":\n type !== lastDefaultValue &&\n (viewTransitionMutationContext = !0);\n defaultValue = type;\n break;\n case \"multiple\":\n type !== lastDefaultValue &&\n (viewTransitionMutationContext = !0),\n (value = type);\n default:\n type !== lastDefaultValue &&\n setProp(\n domElement,\n tag,\n name,\n type,\n nextProps,\n lastDefaultValue\n );\n }\n nextProps = defaultValue;\n tag = value;\n lastProps = propKey;\n null != _propKey8\n ? updateOptions(domElement, !!tag, _propKey8, !1)\n : !!lastProps !== !!tag &&\n (null != nextProps\n ? updateOptions(domElement, !!tag, nextProps, !0)\n : updateOptions(domElement, !!tag, tag ? [] : \"\", !1));\n return;\n case \"textarea\":\n propKey = _propKey8 = null;\n for (defaultValue in lastProps)\n if (\n ((name = lastProps[defaultValue]),\n lastProps.hasOwnProperty(defaultValue) &&\n null != name &&\n !nextProps.hasOwnProperty(defaultValue))\n )\n switch (defaultValue) {\n case \"value\":\n break;\n case \"children\":\n break;\n default:\n setProp(domElement, tag, defaultValue, null, nextProps, name);\n }\n for (value in nextProps)\n if (\n ((name = nextProps[value]),\n (type = lastProps[value]),\n nextProps.hasOwnProperty(value) && (null != name || null != type))\n )\n switch (value) {\n case \"value\":\n name !== type && (viewTransitionMutationContext = !0);\n _propKey8 = name;\n break;\n case \"defaultValue\":\n name !== type && (viewTransitionMutationContext = !0);\n propKey = name;\n break;\n case \"children\":\n break;\n case \"dangerouslySetInnerHTML\":\n if (null != name)\n throw Error(\n \"`dangerouslySetInnerHTML` does not make sense on <textarea>.\"\n );\n break;\n default:\n name !== type &&\n setProp(domElement, tag, value, name, nextProps, type);\n }\n updateTextarea(domElement, _propKey8, propKey);\n return;\n case \"option\":\n for (var _propKey13 in lastProps)\n if (\n ((_propKey8 = lastProps[_propKey13]),\n lastProps.hasOwnProperty(_propKey13) &&\n null != _propKey8 &&\n !nextProps.hasOwnProperty(_propKey13))\n )\n switch (_propKey13) {\n case \"selected\":\n domElement.selected = !1;\n break;\n default:\n setProp(\n domElement,\n tag,\n _propKey13,\n null,\n nextProps,\n _propKey8\n );\n }\n for (lastDefaultValue in nextProps)\n if (\n ((_propKey8 = nextProps[lastDefaultValue]),\n (propKey = lastProps[lastDefaultValue]),\n nextProps.hasOwnProperty(lastDefaultValue) &&\n _propKey8 !== propKey &&\n (null != _propKey8 || null != propKey))\n )\n switch (lastDefaultValue) {\n case \"selected\":\n _propKey8 !== propKey && (viewTransitionMutationContext = !0);\n domElement.selected =\n _propKey8 &&\n \"function\" !== typeof _propKey8 &&\n \"symbol\" !== typeof _propKey8;\n break;\n default:\n setProp(\n domElement,\n tag,\n lastDefaultValue,\n _propKey8,\n nextProps,\n propKey\n );\n }\n return;\n case \"img\":\n case \"link\":\n case \"area\":\n case \"base\":\n case \"br\":\n case \"col\":\n case \"embed\":\n case \"hr\":\n case \"keygen\":\n case \"meta\":\n case \"param\":\n case \"source\":\n case \"track\":\n case \"wbr\":\n case \"menuitem\":\n for (var _propKey15 in lastProps)\n (_propKey8 = lastProps[_propKey15]),\n lastProps.hasOwnProperty(_propKey15) &&\n null != _propKey8 &&\n !nextProps.hasOwnProperty(_propKey15) &&\n setProp(\n domElement,\n tag,\n _propKey15,\n null,\n nextProps,\n _propKey8\n );\n for (checked in nextProps)\n if (\n ((_propKey8 = nextProps[checked]),\n (propKey = lastProps[checked]),\n nextProps.hasOwnProperty(checked) &&\n _propKey8 !== propKey &&\n (null != _propKey8 || null != propKey))\n )\n switch (checked) {\n case \"children\":\n case \"dangerouslySetInnerHTML\":\n if (null != _propKey8)\n throw Error(\n tag +\n \" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.\"\n );\n break;\n default:\n setProp(\n domElement,\n tag,\n checked,\n _propKey8,\n nextProps,\n propKey\n );\n }\n return;\n default:\n if (isCustomElement(tag)) {\n for (var _propKey17 in lastProps)\n (_propKey8 = lastProps[_propKey17]),\n lastProps.hasOwnProperty(_propKey17) &&\n void 0 !== _propKey8 &&\n !nextProps.hasOwnProperty(_propKey17) &&\n setPropOnCustomElement(\n domElement,\n tag,\n _propKey17,\n void 0,\n nextProps,\n _propKey8\n );\n for (defaultChecked in nextProps)\n (_propKey8 = nextProps[defaultChecked]),\n (propKey = lastProps[defaultChecked]),\n !nextProps.hasOwnProperty(defaultChecked) ||\n _propKey8 === propKey ||\n (void 0 === _propKey8 && void 0 === propKey) ||\n setPropOnCustomElement(\n domElement,\n tag,\n defaultChecked,\n _propKey8,\n nextProps,\n propKey\n );\n return;\n }\n }\n for (var _propKey19 in lastProps)\n (_propKey8 = lastProps[_propKey19]),\n lastProps.hasOwnProperty(_propKey19) &&\n null != _propKey8 &&\n !nextProps.hasOwnProperty(_propKey19) &&\n setProp(domElement, tag, _propKey19, null, nextProps, _propKey8);\n for (lastProp in nextProps)\n (_propKey8 = nextProps[lastProp]),\n (propKey = lastProps[lastProp]),\n !nextProps.hasOwnProperty(lastProp) ||\n _propKey8 === propKey ||\n (null == _propKey8 && null == propKey) ||\n setProp(domElement, tag, lastProp, _propKey8, nextProps, propKey);\n }\n function getPropNameFromAttributeName(attrName) {\n switch (attrName) {\n case \"class\":\n return \"className\";\n case \"for\":\n return \"htmlFor\";\n default:\n return attrName;\n }\n }\n function getStylesObjectFromElement(domElement) {\n for (\n var serverValueInObjectForm = {}, style = domElement.style, i = 0;\n i < style.length;\n i++\n ) {\n var styleName = style[i];\n (\"view-transition-name\" === styleName &&\n isExpectedViewTransitionName(domElement)) ||\n (serverValueInObjectForm[styleName] =\n style.getPropertyValue(styleName));\n }\n return serverValueInObjectForm;\n }\n function diffHydratedStyles(domElement, value$jscomp$0, serverDifferences) {\n if (null != value$jscomp$0 && \"object\" !== typeof value$jscomp$0)\n console.error(\n \"The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.\"\n );\n else {\n var clientValue;\n var delimiter = (clientValue = \"\"),\n styleName;\n for (styleName in value$jscomp$0)\n if (value$jscomp$0.hasOwnProperty(styleName)) {\n var value = value$jscomp$0[styleName];\n null != value &&\n \"boolean\" !== typeof value &&\n \"\" !== value &&\n (0 === styleName.indexOf(\"--\")\n ? (checkCSSPropertyStringCoercion(value, styleName),\n (clientValue +=\n delimiter + styleName + \":\" + (\"\" + value).trim()))\n : \"number\" !== typeof value ||\n 0 === value ||\n unitlessNumbers.has(styleName)\n ? (checkCSSPropertyStringCoercion(value, styleName),\n (clientValue +=\n delimiter +\n styleName\n .replace(uppercasePattern, \"-$1\")\n .toLowerCase()\n .replace(msPattern$1, \"-ms-\") +\n \":\" +\n (\"\" + value).trim()))\n : (clientValue +=\n delimiter +\n styleName\n .replace(uppercasePattern, \"-$1\")\n .toLowerCase()\n .replace(msPattern$1, \"-ms-\") +\n \":\" +\n value +\n \"px\"),\n (delimiter = \";\"));\n }\n clientValue = clientValue || null;\n value$jscomp$0 = domElement.getAttribute(\"style\");\n value$jscomp$0 !== clientValue &&\n ((clientValue = normalizeMarkupForTextOrAttribute(clientValue)),\n (value$jscomp$0 = normalizeMarkupForTextOrAttribute(value$jscomp$0)),\n value$jscomp$0 === clientValue ||\n (\";\" === value$jscomp$0[value$jscomp$0.length - 1] &&\n hasViewTransition(domElement)) ||\n (serverDifferences.style = getStylesObjectFromElement(domElement)));\n }\n }\n function hydrateAttribute(\n domElement,\n propKey,\n attributeName,\n value,\n extraAttributes,\n serverDifferences\n ) {\n extraAttributes.delete(attributeName);\n domElement = domElement.getAttribute(attributeName);\n if (null === domElement)\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n return;\n }\n else if (null != value)\n switch (typeof value) {\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n break;\n default:\n if (\n (checkAttributeStringCoercion(value, propKey),\n domElement === \"\" + value)\n )\n return;\n }\n warnForPropDifference(propKey, domElement, value, serverDifferences);\n }\n function hydrateBooleanAttribute(\n domElement,\n propKey,\n attributeName,\n value,\n extraAttributes,\n serverDifferences\n ) {\n extraAttributes.delete(attributeName);\n domElement = domElement.getAttribute(attributeName);\n if (null === domElement) {\n switch (typeof value) {\n case \"function\":\n case \"symbol\":\n return;\n }\n if (!value) return;\n } else\n switch (typeof value) {\n case \"function\":\n case \"symbol\":\n break;\n default:\n if (value) return;\n }\n warnForPropDifference(propKey, domElement, value, serverDifferences);\n }\n function hydrateBooleanishAttribute(\n domElement,\n propKey,\n attributeName,\n value,\n extraAttributes,\n serverDifferences\n ) {\n extraAttributes.delete(attributeName);\n domElement = domElement.getAttribute(attributeName);\n if (null === domElement)\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n return;\n }\n else if (null != value)\n switch (typeof value) {\n case \"function\":\n case \"symbol\":\n break;\n default:\n if (\n (checkAttributeStringCoercion(value, attributeName),\n domElement === \"\" + value)\n )\n return;\n }\n warnForPropDifference(propKey, domElement, value, serverDifferences);\n }\n function hydrateNumericAttribute(\n domElement,\n propKey,\n attributeName,\n value,\n extraAttributes,\n serverDifferences\n ) {\n extraAttributes.delete(attributeName);\n domElement = domElement.getAttribute(attributeName);\n if (null === domElement)\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n return;\n default:\n if (isNaN(value)) return;\n }\n else if (null != value)\n switch (typeof value) {\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n break;\n default:\n if (\n !isNaN(value) &&\n (checkAttributeStringCoercion(value, propKey),\n domElement === \"\" + value)\n )\n return;\n }\n warnForPropDifference(propKey, domElement, value, serverDifferences);\n }\n function hydrateSanitizedAttribute(\n domElement,\n propKey,\n attributeName,\n value,\n extraAttributes,\n serverDifferences\n ) {\n extraAttributes.delete(attributeName);\n domElement = domElement.getAttribute(attributeName);\n if (null === domElement)\n switch (typeof value) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n return;\n }\n else if (null != value)\n switch (typeof value) {\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n break;\n default:\n if (\n (checkAttributeStringCoercion(value, propKey),\n (attributeName = sanitizeURL(\"\" + value)),\n domElement === attributeName)\n )\n return;\n }\n warnForPropDifference(propKey, domElement, value, serverDifferences);\n }\n function diffHydratedProperties(domElement, tag, props, hostContext) {\n for (\n var serverDifferences = {},\n extraAttributes = new Set(),\n attributes = domElement.attributes,\n i = 0;\n i < attributes.length;\n i++\n )\n switch (attributes[i].name.toLowerCase()) {\n case \"value\":\n break;\n case \"checked\":\n break;\n case \"selected\":\n break;\n case \"vt-name\":\n case \"vt-update\":\n case \"vt-enter\":\n case \"vt-exit\":\n case \"vt-share\":\n break;\n default:\n extraAttributes.add(attributes[i].name);\n }\n if (isCustomElement(tag))\n for (var propKey in props) {\n if (props.hasOwnProperty(propKey)) {\n var value = props[propKey];\n if (null != value)\n if (registrationNameDependencies.hasOwnProperty(propKey))\n \"function\" !== typeof value &&\n warnForInvalidEventListener(propKey, value);\n else if (!0 !== props.suppressHydrationWarning)\n switch (propKey) {\n case \"children\":\n (\"string\" !== typeof value && \"number\" !== typeof value) ||\n warnForPropDifference(\n \"children\",\n domElement.textContent,\n value,\n serverDifferences\n );\n continue;\n case \"suppressContentEditableWarning\":\n case \"suppressHydrationWarning\":\n case \"defaultValue\":\n case \"defaultChecked\":\n case \"innerHTML\":\n case \"ref\":\n continue;\n case \"dangerouslySetInnerHTML\":\n attributes = domElement.innerHTML;\n value = value ? value.__html : void 0;\n null != value &&\n ((value = normalizeHTML(domElement, value)),\n warnForPropDifference(\n propKey,\n attributes,\n value,\n serverDifferences\n ));\n continue;\n case \"style\":\n extraAttributes.delete(propKey);\n diffHydratedStyles(domElement, value, serverDifferences);\n continue;\n case \"offsetParent\":\n case \"offsetTop\":\n case \"offsetLeft\":\n case \"offsetWidth\":\n case \"offsetHeight\":\n case \"isContentEditable\":\n case \"outerText\":\n case \"outerHTML\":\n extraAttributes.delete(propKey.toLowerCase());\n console.error(\n \"Assignment to read-only property will result in a no-op: `%s`\",\n propKey\n );\n continue;\n case \"className\":\n extraAttributes.delete(\"class\");\n attributes = getValueForAttributeOnCustomComponent(\n domElement,\n \"class\",\n value\n );\n warnForPropDifference(\n \"className\",\n attributes,\n value,\n serverDifferences\n );\n continue;\n default:\n hostContext.context === HostContextNamespaceNone &&\n \"svg\" !== tag &&\n \"math\" !== tag\n ? extraAttributes.delete(propKey.toLowerCase())\n : extraAttributes.delete(propKey),\n (attributes = getValueForAttributeOnCustomComponent(\n domElement,\n propKey,\n value\n )),\n warnForPropDifference(\n propKey,\n attributes,\n value,\n serverDifferences\n );\n }\n }\n }\n else\n for (value in props)\n if (\n props.hasOwnProperty(value) &&\n ((propKey = props[value]), null != propKey)\n )\n if (registrationNameDependencies.hasOwnProperty(value))\n \"function\" !== typeof propKey &&\n warnForInvalidEventListener(value, propKey);\n else if (!0 !== props.suppressHydrationWarning)\n switch (value) {\n case \"children\":\n (\"string\" !== typeof propKey &&\n \"number\" !== typeof propKey) ||\n warnForPropDifference(\n \"children\",\n domElement.textContent,\n propKey,\n serverDifferences\n );\n continue;\n case \"suppressContentEditableWarning\":\n case \"suppressHydrationWarning\":\n case \"value\":\n case \"checked\":\n case \"selected\":\n case \"defaultValue\":\n case \"defaultChecked\":\n case \"innerHTML\":\n case \"ref\":\n continue;\n case \"dangerouslySetInnerHTML\":\n attributes = domElement.innerHTML;\n propKey = propKey ? propKey.__html : void 0;\n null != propKey &&\n ((propKey = normalizeHTML(domElement, propKey)),\n attributes !== propKey &&\n (serverDifferences[value] = { __html: attributes }));\n continue;\n case \"className\":\n hydrateAttribute(\n domElement,\n value,\n \"class\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"tabIndex\":\n hydrateAttribute(\n domElement,\n value,\n \"tabindex\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"style\":\n extraAttributes.delete(value);\n diffHydratedStyles(domElement, propKey, serverDifferences);\n continue;\n case \"multiple\":\n extraAttributes.delete(value);\n warnForPropDifference(\n value,\n domElement.multiple,\n propKey,\n serverDifferences\n );\n continue;\n case \"muted\":\n extraAttributes.delete(value);\n warnForPropDifference(\n value,\n domElement.muted,\n propKey,\n serverDifferences\n );\n continue;\n case \"autoFocus\":\n extraAttributes.delete(\"autofocus\");\n warnForPropDifference(\n value,\n domElement.autofocus,\n propKey,\n serverDifferences\n );\n continue;\n case \"data\":\n if (\"object\" !== tag) {\n extraAttributes.delete(value);\n attributes = domElement.getAttribute(\"data\");\n warnForPropDifference(\n value,\n attributes,\n propKey,\n serverDifferences\n );\n continue;\n }\n case \"src\":\n case \"href\":\n if (\n !(\n \"\" !== propKey ||\n (\"a\" === tag && \"href\" === value) ||\n (\"object\" === tag && \"data\" === value)\n )\n ) {\n \"src\" === value\n ? console.error(\n 'An empty string (\"\") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',\n value,\n value\n )\n : console.error(\n 'An empty string (\"\") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',\n value,\n value\n );\n continue;\n }\n hydrateSanitizedAttribute(\n domElement,\n value,\n value,\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"action\":\n case \"formAction\":\n attributes = domElement.getAttribute(value);\n if (\"function\" === typeof propKey) {\n extraAttributes.delete(value.toLowerCase());\n \"formAction\" === value\n ? (extraAttributes.delete(\"name\"),\n extraAttributes.delete(\"formenctype\"),\n extraAttributes.delete(\"formmethod\"),\n extraAttributes.delete(\"formtarget\"))\n : (extraAttributes.delete(\"enctype\"),\n extraAttributes.delete(\"method\"),\n extraAttributes.delete(\"target\"));\n continue;\n } else if (attributes === EXPECTED_FORM_ACTION_URL) {\n extraAttributes.delete(value.toLowerCase());\n warnForPropDifference(\n value,\n \"function\",\n propKey,\n serverDifferences\n );\n continue;\n }\n hydrateSanitizedAttribute(\n domElement,\n value,\n value.toLowerCase(),\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xlinkHref\":\n hydrateSanitizedAttribute(\n domElement,\n value,\n \"xlink:href\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"contentEditable\":\n hydrateBooleanishAttribute(\n domElement,\n value,\n \"contenteditable\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"spellCheck\":\n hydrateBooleanishAttribute(\n domElement,\n value,\n \"spellcheck\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"draggable\":\n case \"autoReverse\":\n case \"externalResourcesRequired\":\n case \"focusable\":\n case \"preserveAlpha\":\n hydrateBooleanishAttribute(\n domElement,\n value,\n value,\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"allowFullScreen\":\n case \"async\":\n case \"autoPlay\":\n case \"controls\":\n case \"default\":\n case \"defer\":\n case \"disabled\":\n case \"disablePictureInPicture\":\n case \"disableRemotePlayback\":\n case \"formNoValidate\":\n case \"hidden\":\n case \"loop\":\n case \"noModule\":\n case \"noValidate\":\n case \"open\":\n case \"playsInline\":\n case \"readOnly\":\n case \"required\":\n case \"reversed\":\n case \"scoped\":\n case \"seamless\":\n case \"itemScope\":\n hydrateBooleanAttribute(\n domElement,\n value,\n value.toLowerCase(),\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"capture\":\n case \"download\":\n a: {\n i = domElement;\n var attributeName = (attributes = value),\n serverDifferences$jscomp$0 = serverDifferences;\n extraAttributes.delete(attributeName);\n i = i.getAttribute(attributeName);\n if (null === i)\n switch (typeof propKey) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n break a;\n default:\n if (!1 === propKey) break a;\n }\n else if (null != propKey)\n switch (typeof propKey) {\n case \"function\":\n case \"symbol\":\n break;\n case \"boolean\":\n if (!0 === propKey && \"\" === i) break a;\n break;\n default:\n if (\n (checkAttributeStringCoercion(propKey, attributes),\n i === \"\" + propKey)\n )\n break a;\n }\n warnForPropDifference(\n attributes,\n i,\n propKey,\n serverDifferences$jscomp$0\n );\n }\n continue;\n case \"cols\":\n case \"rows\":\n case \"size\":\n case \"span\":\n a: {\n i = domElement;\n attributeName = attributes = value;\n serverDifferences$jscomp$0 = serverDifferences;\n extraAttributes.delete(attributeName);\n i = i.getAttribute(attributeName);\n if (null === i)\n switch (typeof propKey) {\n case \"undefined\":\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n break a;\n default:\n if (isNaN(propKey) || 1 > propKey) break a;\n }\n else if (null != propKey)\n switch (typeof propKey) {\n case \"function\":\n case \"symbol\":\n case \"boolean\":\n break;\n default:\n if (\n !(isNaN(propKey) || 1 > propKey) &&\n (checkAttributeStringCoercion(propKey, attributes),\n i === \"\" + propKey)\n )\n break a;\n }\n warnForPropDifference(\n attributes,\n i,\n propKey,\n serverDifferences$jscomp$0\n );\n }\n continue;\n case \"rowSpan\":\n hydrateNumericAttribute(\n domElement,\n value,\n \"rowspan\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"start\":\n hydrateNumericAttribute(\n domElement,\n value,\n value,\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xHeight\":\n hydrateAttribute(\n domElement,\n value,\n \"x-height\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xlinkActuate\":\n hydrateAttribute(\n domElement,\n value,\n \"xlink:actuate\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xlinkArcrole\":\n hydrateAttribute(\n domElement,\n value,\n \"xlink:arcrole\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xlinkRole\":\n hydrateAttribute(\n domElement,\n value,\n \"xlink:role\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xlinkShow\":\n hydrateAttribute(\n domElement,\n value,\n \"xlink:show\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xlinkTitle\":\n hydrateAttribute(\n domElement,\n value,\n \"xlink:title\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xlinkType\":\n hydrateAttribute(\n domElement,\n value,\n \"xlink:type\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xmlBase\":\n hydrateAttribute(\n domElement,\n value,\n \"xml:base\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xmlLang\":\n hydrateAttribute(\n domElement,\n value,\n \"xml:lang\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"xmlSpace\":\n hydrateAttribute(\n domElement,\n value,\n \"xml:space\",\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n case \"inert\":\n \"\" !== propKey ||\n didWarnForNewBooleanPropsWithEmptyValue[value] ||\n ((didWarnForNewBooleanPropsWithEmptyValue[value] = !0),\n console.error(\n \"Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.\",\n value\n ));\n hydrateBooleanAttribute(\n domElement,\n value,\n value,\n propKey,\n extraAttributes,\n serverDifferences\n );\n continue;\n default:\n if (\n !(2 < value.length) ||\n (\"o\" !== value[0] && \"O\" !== value[0]) ||\n (\"n\" !== value[1] && \"N\" !== value[1])\n ) {\n i = getAttributeAlias(value);\n attributes = !1;\n hostContext.context === HostContextNamespaceNone &&\n \"svg\" !== tag &&\n \"math\" !== tag\n ? extraAttributes.delete(i.toLowerCase())\n : ((attributeName = value.toLowerCase()),\n (attributeName = possibleStandardNames.hasOwnProperty(\n attributeName\n )\n ? possibleStandardNames[attributeName] || null\n : null),\n null !== attributeName &&\n attributeName !== value &&\n ((attributes = !0),\n extraAttributes.delete(attributeName)),\n extraAttributes.delete(i));\n a: if (\n ((attributeName = domElement),\n (serverDifferences$jscomp$0 = i),\n (i = propKey),\n isAttributeNameSafe(serverDifferences$jscomp$0))\n )\n if (\n attributeName.hasAttribute(serverDifferences$jscomp$0)\n )\n (attributeName = attributeName.getAttribute(\n serverDifferences$jscomp$0\n )),\n checkAttributeStringCoercion(\n i,\n serverDifferences$jscomp$0\n ),\n (i = attributeName === \"\" + i ? i : attributeName);\n else {\n switch (typeof i) {\n case \"function\":\n case \"symbol\":\n break a;\n case \"boolean\":\n if (\n ((attributeName = serverDifferences$jscomp$0\n .toLowerCase()\n .slice(0, 5)),\n \"data-\" !== attributeName &&\n \"aria-\" !== attributeName)\n )\n break a;\n }\n i = void 0 === i ? void 0 : null;\n }\n else i = void 0;\n attributes ||\n warnForPropDifference(\n value,\n i,\n propKey,\n serverDifferences\n );\n }\n }\n 0 < extraAttributes.size &&\n !0 !== props.suppressHydrationWarning &&\n warnForExtraAttributes(domElement, extraAttributes, serverDifferences);\n return 0 === Object.keys(serverDifferences).length\n ? null\n : serverDifferences;\n }\n function propNamesListJoin(list, combinator) {\n switch (list.length) {\n case 0:\n return \"\";\n case 1:\n return list[0];\n case 2:\n return list[0] + \" \" + combinator + \" \" + list[1];\n default:\n return (\n list.slice(0, -1).join(\", \") +\n \", \" +\n combinator +\n \" \" +\n list[list.length - 1]\n );\n }\n }\n function isLikelyStaticResource(initiatorType) {\n switch (initiatorType) {\n case \"css\":\n case \"script\":\n case \"font\":\n case \"img\":\n case \"image\":\n case \"input\":\n case \"link\":\n return !0;\n default:\n return !1;\n }\n }\n function estimateBandwidth() {\n if (\"function\" === typeof performance.getEntriesByType) {\n for (\n var count = 0,\n bits = 0,\n resourceEntries = performance.getEntriesByType(\"resource\"),\n i = 0;\n i < resourceEntries.length;\n i++\n ) {\n var entry = resourceEntries[i],\n transferSize = entry.transferSize,\n initiatorType = entry.initiatorType,\n duration = entry.duration;\n if (\n transferSize &&\n duration &&\n isLikelyStaticResource(initiatorType)\n ) {\n initiatorType = 0;\n duration = entry.responseEnd;\n for (i += 1; i < resourceEntries.length; i++) {\n var overlapEntry = resourceEntries[i],\n overlapStartTime = overlapEntry.startTime;\n if (overlapStartTime > duration) break;\n var overlapTransferSize = overlapEntry.transferSize,\n overlapInitiatorType = overlapEntry.initiatorType;\n overlapTransferSize &&\n isLikelyStaticResource(overlapInitiatorType) &&\n ((overlapEntry = overlapEntry.responseEnd),\n (initiatorType +=\n overlapTransferSize *\n (overlapEntry < duration\n ? 1\n : (duration - overlapStartTime) /\n (overlapEntry - overlapStartTime))));\n }\n --i;\n bits +=\n (8 * (transferSize + initiatorType)) / (entry.duration / 1e3);\n count++;\n if (10 < count) break;\n }\n }\n if (0 < count) return bits / count / 1e6;\n }\n return navigator.connection &&\n ((count = navigator.connection.downlink), \"number\" === typeof count)\n ? count\n : 5;\n }\n function getOwnerDocumentFromRootContainer(rootContainerElement) {\n return 9 === rootContainerElement.nodeType\n ? rootContainerElement\n : rootContainerElement.ownerDocument;\n }\n function getOwnHostContext(namespaceURI) {\n switch (namespaceURI) {\n case SVG_NAMESPACE:\n return HostContextNamespaceSvg;\n case MATH_NAMESPACE:\n return HostContextNamespaceMath;\n default:\n return HostContextNamespaceNone;\n }\n }\n function getChildHostContextProd(parentNamespace, type) {\n if (parentNamespace === HostContextNamespaceNone)\n switch (type) {\n case \"svg\":\n return HostContextNamespaceSvg;\n case \"math\":\n return HostContextNamespaceMath;\n default:\n return HostContextNamespaceNone;\n }\n return parentNamespace === HostContextNamespaceSvg &&\n \"foreignObject\" === type\n ? HostContextNamespaceNone\n : parentNamespace;\n }\n function shouldSetTextContent(type, props) {\n return (\n \"textarea\" === type ||\n \"noscript\" === type ||\n \"string\" === typeof props.children ||\n \"number\" === typeof props.children ||\n \"bigint\" === typeof props.children ||\n (\"object\" === typeof props.dangerouslySetInnerHTML &&\n null !== props.dangerouslySetInnerHTML &&\n null != props.dangerouslySetInnerHTML.__html)\n );\n }\n function shouldAttemptEagerTransition() {\n var event = window.event;\n if (event && \"popstate\" === event.type) {\n if (event === currentPopstateTransitionEvent) return !1;\n currentPopstateTransitionEvent = event;\n return !0;\n }\n currentPopstateTransitionEvent = null;\n return !1;\n }\n function resolveEventType() {\n var event = window.event;\n return event && event !== schedulerEvent ? event.type : null;\n }\n function resolveEventTimeStamp() {\n var event = window.event;\n return event && event !== schedulerEvent ? event.timeStamp : -1.1;\n }\n function handleErrorInNextTick(error) {\n setTimeout(function () {\n throw error;\n });\n }\n function commitMount(domElement, type, newProps) {\n switch (type) {\n case \"button\":\n case \"input\":\n case \"select\":\n case \"textarea\":\n newProps.autoFocus && domElement.focus();\n break;\n case \"img\":\n newProps.src\n ? (domElement.src = newProps.src)\n : newProps.srcSet && (domElement.srcset = newProps.srcSet);\n }\n }\n function commitHydratedInstance() {}\n function commitUpdate(domElement, type, oldProps, newProps) {\n updateProperties(domElement, type, oldProps, newProps);\n domElement[internalPropsKey] = newProps;\n }\n function resetTextContent(domElement) {\n setTextContent(domElement, \"\");\n }\n function commitTextUpdate(textInstance, oldText, newText) {\n textInstance.nodeValue = newText;\n }\n function warnForReactChildrenConflict(container) {\n if (!container.__reactWarnedAboutChildrenConflict) {\n var props = container[internalPropsKey] || null;\n if (null !== props) {\n var fiber = getInstanceFromNode(container);\n null !== fiber &&\n (\"string\" === typeof props.children ||\n \"number\" === typeof props.children\n ? ((container.__reactWarnedAboutChildrenConflict = !0),\n runWithFiberInDEV(fiber, function () {\n console.error(\n 'Cannot use a ref on a React element as a container to `createRoot` or `createPortal` if that element also sets \"children\" text content using React. It should be a leaf with no children. Otherwise it\\'s ambiguous which children should be used.'\n );\n }))\n : null != props.dangerouslySetInnerHTML &&\n ((container.__reactWarnedAboutChildrenConflict = !0),\n runWithFiberInDEV(fiber, function () {\n console.error(\n 'Cannot use a ref on a React element as a container to `createRoot` or `createPortal` if that element also sets \"dangerouslySetInnerHTML\" using React. It should be a leaf with no children. Otherwise it\\'s ambiguous which children should be used.'\n );\n })));\n }\n }\n }\n function isSingletonScope(type) {\n return \"head\" === type;\n }\n function removeChild(parentInstance, child) {\n parentInstance.removeChild(child);\n }\n function removeChildFromContainer(container, child) {\n (9 === container.nodeType\n ? container.body\n : \"HTML\" === container.nodeName\n ? container.ownerDocument.body\n : container\n ).removeChild(child);\n }\n function clearHydrationBoundary(parentInstance, hydrationInstance) {\n var node = hydrationInstance,\n depth = 0;\n do {\n var nextNode = node.nextSibling;\n parentInstance.removeChild(node);\n if (nextNode && 8 === nextNode.nodeType)\n if (\n ((node = nextNode.data),\n node === SUSPENSE_END_DATA || node === ACTIVITY_END_DATA)\n ) {\n if (0 === depth) {\n parentInstance.removeChild(nextNode);\n retryIfBlockedOn(hydrationInstance);\n return;\n }\n depth--;\n } else if (\n node === SUSPENSE_START_DATA ||\n node === SUSPENSE_PENDING_START_DATA ||\n node === SUSPENSE_QUEUED_START_DATA ||\n node === SUSPENSE_FALLBACK_START_DATA ||\n node === ACTIVITY_START_DATA\n )\n depth++;\n else if (node === PREAMBLE_CONTRIBUTION_HTML)\n releaseSingletonInstance(\n parentInstance.ownerDocument.documentElement\n );\n else if (node === PREAMBLE_CONTRIBUTION_HEAD) {\n node = parentInstance.ownerDocument.head;\n releaseSingletonInstance(node);\n for (var node$jscomp$0 = node.firstChild; node$jscomp$0; ) {\n var nextNode$jscomp$0 = node$jscomp$0.nextSibling,\n nodeName = node$jscomp$0.nodeName;\n node$jscomp$0[internalHoistableMarker] ||\n \"SCRIPT\" === nodeName ||\n \"STYLE\" === nodeName ||\n (\"LINK\" === nodeName &&\n \"stylesheet\" === node$jscomp$0.rel.toLowerCase()) ||\n node.removeChild(node$jscomp$0);\n node$jscomp$0 = nextNode$jscomp$0;\n }\n } else\n node === PREAMBLE_CONTRIBUTION_BODY &&\n releaseSingletonInstance(parentInstance.ownerDocument.body);\n node = nextNode;\n } while (node);\n retryIfBlockedOn(hydrationInstance);\n }\n function hideOrUnhideDehydratedBoundary(suspenseInstance, isHidden) {\n var node = suspenseInstance;\n suspenseInstance = 0;\n do {\n var nextNode = node.nextSibling;\n 1 === node.nodeType\n ? isHidden\n ? ((node._stashedDisplay = node.style.display),\n (node.style.display = \"none\"))\n : ((node.style.display = node._stashedDisplay || \"\"),\n \"\" === node.getAttribute(\"style\") &&\n node.removeAttribute(\"style\"))\n : 3 === node.nodeType &&\n (isHidden\n ? ((node._stashedText = node.nodeValue), (node.nodeValue = \"\"))\n : (node.nodeValue = node._stashedText || \"\"));\n if (nextNode && 8 === nextNode.nodeType)\n if (((node = nextNode.data), node === SUSPENSE_END_DATA))\n if (0 === suspenseInstance) break;\n else suspenseInstance--;\n else\n (node !== SUSPENSE_START_DATA &&\n node !== SUSPENSE_PENDING_START_DATA &&\n node !== SUSPENSE_QUEUED_START_DATA &&\n node !== SUSPENSE_FALLBACK_START_DATA) ||\n suspenseInstance++;\n node = nextNode;\n } while (node);\n }\n function hideDehydratedBoundary(suspenseInstance) {\n hideOrUnhideDehydratedBoundary(suspenseInstance, !0);\n }\n function hideInstance(instance) {\n instance = instance.style;\n \"function\" === typeof instance.setProperty\n ? instance.setProperty(\"display\", \"none\", \"important\")\n : (instance.display = \"none\");\n }\n function hideTextInstance(textInstance) {\n textInstance.nodeValue = \"\";\n }\n function unhideDehydratedBoundary(dehydratedInstance) {\n hideOrUnhideDehydratedBoundary(dehydratedInstance, !1);\n }\n function unhideInstance(instance, props) {\n props = props[STYLE];\n props =\n void 0 !== props && null !== props && props.hasOwnProperty(\"display\")\n ? props.display\n : null;\n instance.style.display =\n null == props || \"boolean\" === typeof props ? \"\" : (\"\" + props).trim();\n }\n function unhideTextInstance(textInstance, text) {\n textInstance.nodeValue = text;\n }\n function warnForBlockInsideInline(instance) {\n for (var nextNode = instance.firstChild; null != nextNode; ) {\n if (\n 1 === nextNode.nodeType &&\n \"block\" === getComputedStyle(nextNode).display\n ) {\n var fiber =\n getInstanceFromNode(nextNode) || getInstanceFromNode(instance);\n runWithFiberInDEV(\n fiber,\n function (parentTag, childTag) {\n console.error(\n \"You're about to start a <ViewTransition> around a display: inline element <%s>, which itself has a display: block element <%s> inside it. This might trigger a bug in Safari which causes the View Transition to be skipped with a duplicate name error.\\nhttps://bugs.webkit.org/show_bug.cgi?id=290923\",\n parentTag.toLocaleLowerCase(),\n childTag.toLocaleLowerCase()\n );\n },\n instance.tagName,\n nextNode.tagName\n );\n break;\n }\n if (null != nextNode.firstChild) nextNode = nextNode.firstChild;\n else {\n if (nextNode === instance) break;\n for (\n ;\n null == nextNode.nextSibling &&\n null != nextNode.parentNode &&\n nextNode.parentNode !== instance;\n\n )\n nextNode = nextNode.parentNode;\n nextNode = nextNode.nextSibling;\n }\n }\n }\n function applyViewTransitionName(instance, name, className) {\n name =\n CSS.escape(name) !== name ? \"r-\" + btoa(name).replace(/=/g, \"\") : name;\n instance.style.viewTransitionName = name;\n null != className && (instance.style.viewTransitionClass = className);\n className = getComputedStyle(instance);\n if (\"inline\" === className.display) {\n name = instance.getClientRects();\n if (1 === name.length) var JSCompiler_inline_result = 1;\n else\n for (var i = (JSCompiler_inline_result = 0); i < name.length; i++) {\n var rect = name[i];\n 0 < rect.width && 0 < rect.height && JSCompiler_inline_result++;\n }\n 1 === JSCompiler_inline_result\n ? ((instance = instance.style),\n (instance.display = 1 === name.length ? \"inline-block\" : \"block\"),\n (instance.marginTop = \"-\" + className.paddingTop),\n (instance.marginBottom = \"-\" + className.paddingBottom))\n : warnForBlockInsideInline(instance);\n }\n }\n function restoreViewTransitionName(instance, props) {\n instance = instance.style;\n props = props[STYLE];\n var viewTransitionName =\n null != props\n ? props.hasOwnProperty(\"viewTransitionName\")\n ? props.viewTransitionName\n : props.hasOwnProperty(\"view-transition-name\")\n ? props[\"view-transition-name\"]\n : null\n : null;\n instance.viewTransitionName =\n null == viewTransitionName || \"boolean\" === typeof viewTransitionName\n ? \"\"\n : (\"\" + viewTransitionName).trim();\n viewTransitionName =\n null != props\n ? props.hasOwnProperty(\"viewTransitionClass\")\n ? props.viewTransitionClass\n : props.hasOwnProperty(\"view-transition-class\")\n ? props[\"view-transition-class\"]\n : null\n : null;\n instance.viewTransitionClass =\n null == viewTransitionName || \"boolean\" === typeof viewTransitionName\n ? \"\"\n : (\"\" + viewTransitionName).trim();\n \"inline-block\" === instance.display &&\n (null == props\n ? (instance.display = instance.margin = \"\")\n : ((viewTransitionName = props.display),\n (instance.display =\n null == viewTransitionName ||\n \"boolean\" === typeof viewTransitionName\n ? \"\"\n : viewTransitionName),\n (viewTransitionName = props.margin),\n null != viewTransitionName\n ? (instance.margin = viewTransitionName)\n : ((viewTransitionName = props.hasOwnProperty(\"marginTop\")\n ? props.marginTop\n : props[\"margin-top\"]),\n (instance.marginTop =\n null == viewTransitionName ||\n \"boolean\" === typeof viewTransitionName\n ? \"\"\n : viewTransitionName),\n (props = props.hasOwnProperty(\"marginBottom\")\n ? props.marginBottom\n : props[\"margin-bottom\"]),\n (instance.marginBottom =\n null == props || \"boolean\" === typeof props ? \"\" : props))));\n }\n function createMeasurement(rect, computedStyle, element) {\n element = element.ownerDocument.defaultView;\n return {\n rect: rect,\n abs:\n \"absolute\" === computedStyle.position ||\n \"fixed\" === computedStyle.position,\n clip:\n \"none\" !== computedStyle.clipPath ||\n \"visible\" !== computedStyle.overflow ||\n \"none\" !== computedStyle.filter ||\n \"none\" !== computedStyle.mask ||\n \"none\" !== computedStyle.mask ||\n \"0px\" !== computedStyle.borderRadius,\n view:\n 0 <= rect.bottom &&\n 0 <= rect.right &&\n rect.top <= element.innerHeight &&\n rect.left <= element.innerWidth\n };\n }\n function measureInstance(instance) {\n var rect = instance.getBoundingClientRect(),\n computedStyle = getComputedStyle(instance);\n return createMeasurement(rect, computedStyle, instance);\n }\n function measureClonedInstance(instance) {\n var measuredRect = instance.getBoundingClientRect();\n measuredRect = new DOMRect(\n measuredRect.x + 2e4,\n measuredRect.y + 2e4,\n measuredRect.width,\n measuredRect.height\n );\n var computedStyle = getComputedStyle(instance);\n return createMeasurement(measuredRect, computedStyle, instance);\n }\n function customizeViewTransitionError(error, ignoreAbort) {\n if (\"object\" === typeof error && null !== error)\n switch (error.name) {\n case \"TimeoutError\":\n return Error(\n \"A ViewTransition timed out because a Navigation stalled. This can happen if a Navigation is blocked on React itself. Such as if it's resolved inside useEffect. This can be solved by moving the resolution to useLayoutEffect.\",\n { cause: error }\n );\n case \"AbortError\":\n return ignoreAbort\n ? null\n : Error(\n \"A ViewTransition was aborted early. This might be because you have other View Transition libraries on the page and only one can run at a time. To avoid this, use only React's built-in <ViewTransition> to coordinate.\",\n { cause: error }\n );\n case \"InvalidStateError\":\n if (\n \"View transition was skipped because document visibility state is hidden.\" ===\n error.message ||\n \"Skipping view transition because document visibility state has become hidden.\" ===\n error.message ||\n \"Skipping view transition because viewport size changed.\" ===\n error.message ||\n \"Transition was aborted because of invalid state\" ===\n error.message\n )\n return null;\n }\n return error;\n }\n function forceLayout(ownerDocument) {\n return ownerDocument.documentElement.clientHeight;\n }\n function waitForImageToLoad(resolve) {\n this.addEventListener(\"load\", resolve);\n this.addEventListener(\"error\", resolve);\n }\n function startViewTransition(\n suspendedState,\n rootContainer,\n transitionTypes,\n mutationCallback,\n layoutCallback,\n afterMutationCallback,\n spawnedWorkCallback,\n passiveCallback,\n errorCallback,\n blockedCallback,\n finishedAnimation\n ) {\n var ownerDocument =\n 9 === rootContainer.nodeType\n ? rootContainer\n : rootContainer.ownerDocument;\n try {\n var transition = ownerDocument.startViewTransition({\n update: function () {\n var ownerWindow = ownerDocument.defaultView,\n pendingNavigation =\n ownerWindow.navigation && ownerWindow.navigation.transition,\n previousFontLoadingStatus = ownerDocument.fonts.status;\n mutationCallback();\n var blockingPromises = [];\n \"loaded\" === previousFontLoadingStatus &&\n (forceLayout(ownerDocument),\n \"loading\" === ownerDocument.fonts.status &&\n blockingPromises.push(ownerDocument.fonts.ready));\n previousFontLoadingStatus = blockingPromises.length;\n if (null !== suspendedState)\n for (\n var suspenseyImages = suspendedState.suspenseyImages,\n imgBytes = 0,\n i = 0;\n i < suspenseyImages.length;\n i++\n ) {\n var suspenseyImage = suspenseyImages[i];\n if (!suspenseyImage.complete) {\n var rect = suspenseyImage.getBoundingClientRect();\n if (\n 0 < rect.bottom &&\n 0 < rect.right &&\n rect.top < ownerWindow.innerHeight &&\n rect.left < ownerWindow.innerWidth\n ) {\n imgBytes += estimateImageBytes(suspenseyImage);\n if (imgBytes > estimatedBytesWithinLimit) {\n blockingPromises.length = previousFontLoadingStatus;\n break;\n }\n suspenseyImage = new Promise(\n waitForImageToLoad.bind(suspenseyImage)\n );\n blockingPromises.push(suspenseyImage);\n }\n }\n }\n if (0 < blockingPromises.length)\n return (\n blockedCallback(\n 0 < previousFontLoadingStatus\n ? blockingPromises.length > previousFontLoadingStatus\n ? \"Waiting on Fonts and Images\"\n : \"Waiting on Fonts\"\n : \"Waiting on Images\"\n ),\n (ownerWindow = Promise.race([\n Promise.all(blockingPromises),\n new Promise(function (resolve) {\n return setTimeout(\n resolve,\n SUSPENSEY_FONT_AND_IMAGE_TIMEOUT\n );\n })\n ]).then(layoutCallback, layoutCallback)),\n (pendingNavigation\n ? Promise.allSettled([\n pendingNavigation.finished,\n ownerWindow\n ])\n : ownerWindow\n ).then(afterMutationCallback, afterMutationCallback)\n );\n layoutCallback();\n if (pendingNavigation)\n return pendingNavigation.finished.then(\n afterMutationCallback,\n afterMutationCallback\n );\n afterMutationCallback();\n },\n types: transitionTypes\n });\n ownerDocument.__reactViewTransition = transition;\n var viewTransitionAnimations = [];\n transition.ready.then(\n function () {\n for (\n var animations = ownerDocument.documentElement.getAnimations({\n subtree: !0\n }),\n i = 0;\n i < animations.length;\n i++\n ) {\n var animation = animations[i],\n effect = animation.effect,\n pseudoElement = effect.pseudoElement;\n if (\n null != pseudoElement &&\n pseudoElement.startsWith(\"::view-transition\")\n ) {\n viewTransitionAnimations.push(animation);\n animation = effect.getKeyframes();\n for (\n var height = (pseudoElement = void 0),\n unchangedDimensions = !0,\n j = 0;\n j < animation.length;\n j++\n ) {\n var keyframe = animation[j],\n w = keyframe.width;\n if (void 0 === pseudoElement) pseudoElement = w;\n else if (pseudoElement !== w) {\n unchangedDimensions = !1;\n break;\n }\n w = keyframe.height;\n if (void 0 === height) height = w;\n else if (height !== w) {\n unchangedDimensions = !1;\n break;\n }\n delete keyframe.width;\n delete keyframe.height;\n \"none\" === keyframe.transform && delete keyframe.transform;\n }\n unchangedDimensions &&\n void 0 !== pseudoElement &&\n void 0 !== height &&\n (effect.setKeyframes(animation),\n (unchangedDimensions = getComputedStyle(\n effect.target,\n effect.pseudoElement\n )),\n unchangedDimensions.width !== pseudoElement ||\n unchangedDimensions.height !== height) &&\n ((unchangedDimensions = animation[0]),\n (unchangedDimensions.width = pseudoElement),\n (unchangedDimensions.height = height),\n (unchangedDimensions = animation[animation.length - 1]),\n (unchangedDimensions.width = pseudoElement),\n (unchangedDimensions.height = height),\n effect.setKeyframes(animation));\n }\n }\n spawnedWorkCallback();\n },\n function (error) {\n ownerDocument.__reactViewTransition === transition &&\n (ownerDocument.__reactViewTransition = null);\n try {\n (error = customizeViewTransitionError(error, !1)),\n null !== error && errorCallback(error);\n } finally {\n mutationCallback(),\n layoutCallback(),\n spawnedWorkCallback(),\n finishedAnimation();\n }\n }\n );\n transition.finished.finally(function () {\n for (var i = 0; i < viewTransitionAnimations.length; i++)\n viewTransitionAnimations[i].cancel();\n ownerDocument.__reactViewTransition === transition &&\n (ownerDocument.__reactViewTransition = null);\n finishedAnimation();\n passiveCallback();\n });\n return transition;\n } catch (x) {\n return (\n mutationCallback(),\n layoutCallback(),\n finishedAnimation(),\n spawnedWorkCallback(),\n null\n );\n }\n }\n function ViewTransitionPseudoElement(pseudo, name) {\n this._scope = document.documentElement;\n this._selector = \"::view-transition-\" + pseudo + \"(\" + name + \")\";\n }\n function createViewTransitionInstance(name) {\n return {\n name: name,\n group: new ViewTransitionPseudoElement(\"group\", name),\n imagePair: new ViewTransitionPseudoElement(\"image-pair\", name),\n old: new ViewTransitionPseudoElement(\"old\", name),\n new: new ViewTransitionPseudoElement(\"new\", name)\n };\n }\n function FragmentInstance(fragmentFiber) {\n this._fragmentFiber = fragmentFiber;\n this._observers = this._eventListeners = null;\n }\n function addEventListenerToChild(\n child,\n type,\n listener,\n optionsOrUseCapture\n ) {\n getInstanceFromHostFiber(child).addEventListener(\n type,\n listener,\n optionsOrUseCapture\n );\n return !1;\n }\n function removeEventListenerFromChild(\n child,\n type,\n listener,\n optionsOrUseCapture\n ) {\n getInstanceFromHostFiber(child).removeEventListener(\n type,\n listener,\n optionsOrUseCapture\n );\n return !1;\n }\n function normalizeListenerOptions(opts) {\n return null == opts\n ? \"0\"\n : \"boolean\" === typeof opts\n ? \"c=\" + (opts ? \"1\" : \"0\")\n : \"c=\" +\n (opts.capture ? \"1\" : \"0\") +\n \"&o=\" +\n (opts.once ? \"1\" : \"0\") +\n \"&p=\" +\n (opts.passive ? \"1\" : \"0\");\n }\n function indexOfEventListener(\n eventListeners,\n type,\n listener,\n optionsOrUseCapture\n ) {\n for (var i = 0; i < eventListeners.length; i++) {\n var item = eventListeners[i];\n if (\n item.type === type &&\n item.listener === listener &&\n normalizeListenerOptions(item.optionsOrUseCapture) ===\n normalizeListenerOptions(optionsOrUseCapture)\n )\n return i;\n }\n return -1;\n }\n function setFocusOnFiberIfFocusable(fiber, focusOptions) {\n fiber = getInstanceFromHostFiber(fiber);\n return setFocusIfFocusable(fiber, focusOptions);\n }\n function collectChildren(child, collection) {\n collection.push(child);\n return !1;\n }\n function blurActiveElementWithinFragment(child) {\n child = getInstanceFromHostFiber(child);\n return child === child.ownerDocument.activeElement\n ? (child.blur(), !0)\n : !1;\n }\n function observeChild(child, observer) {\n child = getInstanceFromHostFiber(child);\n observer.observe(child);\n return !1;\n }\n function unobserveChild(child, observer) {\n child = getInstanceFromHostFiber(child);\n observer.unobserve(child);\n return !1;\n }\n function collectClientRects(child, rects) {\n child = getInstanceFromHostFiber(child);\n rects.push.apply(rects, child.getClientRects());\n return !1;\n }\n function validateDocumentPositionWithFiberTree(\n documentPosition,\n fragmentFiber,\n precedingBoundaryFiber,\n followingBoundaryFiber,\n otherNode\n ) {\n var otherFiber = getClosestInstanceFromNode(otherNode);\n if (documentPosition & Node.DOCUMENT_POSITION_CONTAINED_BY) {\n if ((precedingBoundaryFiber = !!otherFiber))\n a: {\n for (; null !== otherFiber; ) {\n if (\n 7 === otherFiber.tag &&\n (otherFiber === fragmentFiber ||\n otherFiber.alternate === fragmentFiber)\n ) {\n precedingBoundaryFiber = !0;\n break a;\n }\n otherFiber = otherFiber.return;\n }\n precedingBoundaryFiber = !1;\n }\n return precedingBoundaryFiber;\n }\n if (documentPosition & Node.DOCUMENT_POSITION_CONTAINS) {\n if (null === otherFiber)\n return (\n (otherFiber = otherNode.ownerDocument),\n otherNode === otherFiber || otherNode === otherFiber.body\n );\n a: {\n otherFiber = fragmentFiber;\n for (\n fragmentFiber = getFragmentParentHostFiber(fragmentFiber);\n null !== otherFiber;\n\n ) {\n if (\n !(\n (5 !== otherFiber.tag && 3 !== otherFiber.tag) ||\n (otherFiber !== fragmentFiber &&\n otherFiber.alternate !== fragmentFiber)\n )\n ) {\n otherFiber = !0;\n break a;\n }\n otherFiber = otherFiber.return;\n }\n otherFiber = !1;\n }\n return otherFiber;\n }\n return documentPosition & Node.DOCUMENT_POSITION_PRECEDING\n ? ((fragmentFiber = !!otherFiber) &&\n !(fragmentFiber = otherFiber === precedingBoundaryFiber) &&\n ((fragmentFiber = getLowestCommonAncestor(\n precedingBoundaryFiber,\n otherFiber,\n getParentForFragmentAncestors\n )),\n null === fragmentFiber\n ? (fragmentFiber = !1)\n : (traverseVisibleHostChildren(\n fragmentFiber,\n !0,\n isFiberPrecedingCheck,\n otherFiber,\n precedingBoundaryFiber\n ),\n (otherFiber = searchTarget),\n (searchTarget = null),\n (fragmentFiber = null !== otherFiber))),\n fragmentFiber)\n : documentPosition & Node.DOCUMENT_POSITION_FOLLOWING\n ? ((fragmentFiber = !!otherFiber) &&\n !(fragmentFiber = otherFiber === followingBoundaryFiber) &&\n ((fragmentFiber = getLowestCommonAncestor(\n followingBoundaryFiber,\n otherFiber,\n getParentForFragmentAncestors\n )),\n null === fragmentFiber\n ? (fragmentFiber = !1)\n : (traverseVisibleHostChildren(\n fragmentFiber,\n !0,\n isFiberFollowingCheck,\n otherFiber,\n followingBoundaryFiber\n ),\n (otherFiber = searchTarget),\n (searchBoundary = searchTarget = null),\n (fragmentFiber = null !== otherFiber))),\n fragmentFiber)\n : !1;\n }\n function commitNewChildToFragmentInstance(childInstance, fragmentInstance) {\n var eventListeners = fragmentInstance._eventListeners;\n if (null !== eventListeners)\n for (var i = 0; i < eventListeners.length; i++) {\n var _eventListeners$i2 = eventListeners[i];\n childInstance.addEventListener(\n _eventListeners$i2.type,\n _eventListeners$i2.listener,\n _eventListeners$i2.optionsOrUseCapture\n );\n }\n null !== fragmentInstance._observers &&\n fragmentInstance._observers.forEach(function (observer) {\n observer.observe(childInstance);\n });\n }\n function clearContainerSparingly(container) {\n var nextNode = container.firstChild;\n nextNode && 10 === nextNode.nodeType && (nextNode = nextNode.nextSibling);\n for (; nextNode; ) {\n var node = nextNode;\n nextNode = nextNode.nextSibling;\n switch (node.nodeName) {\n case \"HTML\":\n case \"HEAD\":\n case \"BODY\":\n clearContainerSparingly(node);\n detachDeletedInstance(node);\n continue;\n case \"SCRIPT\":\n case \"STYLE\":\n continue;\n case \"LINK\":\n if (\"stylesheet\" === node.rel.toLowerCase()) continue;\n }\n container.removeChild(node);\n }\n }\n function canHydrateInstance(instance, type, props, inRootOrSingleton) {\n for (; 1 === instance.nodeType; ) {\n var anyProps = props;\n if (instance.nodeName.toLowerCase() !== type.toLowerCase()) {\n if (\n !inRootOrSingleton &&\n (\"INPUT\" !== instance.nodeName || \"hidden\" !== instance.type)\n )\n break;\n } else if (!inRootOrSingleton)\n if (\"input\" === type && \"hidden\" === instance.type) {\n checkAttributeStringCoercion(anyProps.name, \"name\");\n var name = null == anyProps.name ? null : \"\" + anyProps.name;\n if (\n \"hidden\" === anyProps.type &&\n instance.getAttribute(\"name\") === name\n )\n return instance;\n } else return instance;\n else if (!instance[internalHoistableMarker])\n switch (type) {\n case \"meta\":\n if (!instance.hasAttribute(\"itemprop\")) break;\n return instance;\n case \"link\":\n name = instance.getAttribute(\"rel\");\n if (\n \"stylesheet\" === name &&\n instance.hasAttribute(\"data-precedence\")\n )\n break;\n else if (\n name !== anyProps.rel ||\n instance.getAttribute(\"href\") !==\n (null == anyProps.href || \"\" === anyProps.href\n ? null\n : anyProps.href) ||\n instance.getAttribute(\"crossorigin\") !==\n (null == anyProps.crossOrigin\n ? null\n : anyProps.crossOrigin) ||\n instance.getAttribute(\"title\") !==\n (null == anyProps.title ? null : anyProps.title)\n )\n break;\n return instance;\n case \"style\":\n if (instance.hasAttribute(\"data-precedence\")) break;\n return instance;\n case \"script\":\n name = instance.getAttribute(\"src\");\n if (\n (name !== (null == anyProps.src ? null : anyProps.src) ||\n instance.getAttribute(\"type\") !==\n (null == anyProps.type ? null : anyProps.type) ||\n instance.getAttribute(\"crossorigin\") !==\n (null == anyProps.crossOrigin\n ? null\n : anyProps.crossOrigin)) &&\n name &&\n instance.hasAttribute(\"async\") &&\n !instance.hasAttribute(\"itemprop\")\n )\n break;\n return instance;\n default:\n return instance;\n }\n instance = getNextHydratable(instance.nextSibling);\n if (null === instance) break;\n }\n return null;\n }\n function canHydrateTextInstance(instance, text, inRootOrSingleton) {\n if (\"\" === text) return null;\n for (; 3 !== instance.nodeType; ) {\n if (\n (1 !== instance.nodeType ||\n \"INPUT\" !== instance.nodeName ||\n \"hidden\" !== instance.type) &&\n !inRootOrSingleton\n )\n return null;\n instance = getNextHydratable(instance.nextSibling);\n if (null === instance) return null;\n }\n return instance;\n }\n function canHydrateHydrationBoundary(instance, inRootOrSingleton) {\n for (; 8 !== instance.nodeType; ) {\n if (\n (1 !== instance.nodeType ||\n \"INPUT\" !== instance.nodeName ||\n \"hidden\" !== instance.type) &&\n !inRootOrSingleton\n )\n return null;\n instance = getNextHydratable(instance.nextSibling);\n if (null === instance) return null;\n }\n return instance;\n }\n function isSuspenseInstancePending(instance) {\n return (\n instance.data === SUSPENSE_PENDING_START_DATA ||\n instance.data === SUSPENSE_QUEUED_START_DATA\n );\n }\n function isSuspenseInstanceFallback(instance) {\n return (\n instance.data === SUSPENSE_FALLBACK_START_DATA ||\n (instance.data === SUSPENSE_PENDING_START_DATA &&\n instance.ownerDocument.readyState !== DOCUMENT_READY_STATE_LOADING)\n );\n }\n function registerSuspenseInstanceRetry(instance, callback) {\n var ownerDocument = instance.ownerDocument;\n if (instance.data === SUSPENSE_QUEUED_START_DATA)\n instance._reactRetry = callback;\n else if (\n instance.data !== SUSPENSE_PENDING_START_DATA ||\n ownerDocument.readyState !== DOCUMENT_READY_STATE_LOADING\n )\n callback();\n else {\n var listener = function () {\n callback();\n ownerDocument.removeEventListener(\"DOMContentLoaded\", listener);\n };\n ownerDocument.addEventListener(\"DOMContentLoaded\", listener);\n instance._reactRetry = listener;\n }\n }\n function getNextHydratable(node) {\n for (; null != node; node = node.nextSibling) {\n var nodeType = node.nodeType;\n if (1 === nodeType || 3 === nodeType) break;\n if (8 === nodeType) {\n nodeType = node.data;\n if (\n nodeType === SUSPENSE_START_DATA ||\n nodeType === SUSPENSE_FALLBACK_START_DATA ||\n nodeType === SUSPENSE_PENDING_START_DATA ||\n nodeType === SUSPENSE_QUEUED_START_DATA ||\n nodeType === ACTIVITY_START_DATA ||\n nodeType === FORM_STATE_IS_MATCHING ||\n nodeType === FORM_STATE_IS_NOT_MATCHING\n )\n break;\n if (nodeType === SUSPENSE_END_DATA || nodeType === ACTIVITY_END_DATA)\n return null;\n }\n }\n return node;\n }\n function describeHydratableInstanceForDevWarnings(instance) {\n if (1 === instance.nodeType) {\n for (\n var JSCompiler_temp_const = instance.nodeName.toLowerCase(),\n serverDifferences = {},\n attributes = instance.attributes,\n i = 0;\n i < attributes.length;\n i++\n ) {\n var attr = attributes[i];\n serverDifferences[getPropNameFromAttributeName(attr.name)] =\n \"style\" === attr.name.toLowerCase()\n ? getStylesObjectFromElement(instance)\n : attr.value;\n }\n return { type: JSCompiler_temp_const, props: serverDifferences };\n }\n return 8 === instance.nodeType\n ? instance.data === ACTIVITY_START_DATA\n ? { type: \"Activity\", props: {} }\n : { type: \"Suspense\", props: {} }\n : instance.nodeValue;\n }\n function diffHydratedTextForDevWarnings(textInstance, text, parentProps) {\n return null === parentProps ||\n !0 !== parentProps[SUPPRESS_HYDRATION_WARNING]\n ? (textInstance.nodeValue === text\n ? (textInstance = null)\n : ((text = normalizeMarkupForTextOrAttribute(text)),\n (textInstance =\n normalizeMarkupForTextOrAttribute(textInstance.nodeValue) ===\n text\n ? null\n : textInstance.nodeValue)),\n textInstance)\n : null;\n }\n function getNextHydratableInstanceAfterHydrationBoundary(\n hydrationInstance\n ) {\n hydrationInstance = hydrationInstance.nextSibling;\n for (var depth = 0; hydrationInstance; ) {\n if (8 === hydrationInstance.nodeType) {\n var data = hydrationInstance.data;\n if (data === SUSPENSE_END_DATA || data === ACTIVITY_END_DATA) {\n if (0 === depth)\n return getNextHydratable(hydrationInstance.nextSibling);\n depth--;\n } else\n (data !== SUSPENSE_START_DATA &&\n data !== SUSPENSE_FALLBACK_START_DATA &&\n data !== SUSPENSE_PENDING_START_DATA &&\n data !== SUSPENSE_QUEUED_START_DATA &&\n data !== ACTIVITY_START_DATA) ||\n depth++;\n }\n hydrationInstance = hydrationInstance.nextSibling;\n }\n return null;\n }\n function getParentHydrationBoundary(targetInstance) {\n targetInstance = targetInstance.previousSibling;\n for (var depth = 0; targetInstance; ) {\n if (8 === targetInstance.nodeType) {\n var data = targetInstance.data;\n if (\n data === SUSPENSE_START_DATA ||\n data === SUSPENSE_FALLBACK_START_DATA ||\n data === SUSPENSE_PENDING_START_DATA ||\n data === SUSPENSE_QUEUED_START_DATA ||\n data === ACTIVITY_START_DATA\n ) {\n if (0 === depth) return targetInstance;\n depth--;\n } else\n (data !== SUSPENSE_END_DATA && data !== ACTIVITY_END_DATA) ||\n depth++;\n }\n targetInstance = targetInstance.previousSibling;\n }\n return null;\n }\n function commitHydratedContainer(container) {\n retryIfBlockedOn(container);\n }\n function commitHydratedActivityInstance(activityInstance) {\n retryIfBlockedOn(activityInstance);\n }\n function commitHydratedSuspenseInstance(suspenseInstance) {\n retryIfBlockedOn(suspenseInstance);\n }\n function setFocusIfFocusable(node, focusOptions) {\n function handleFocus() {\n didFocus = !0;\n }\n var didFocus = !1;\n try {\n node.addEventListener(\"focus\", handleFocus),\n (node.focus || HTMLElement.prototype.focus).call(node, focusOptions);\n } finally {\n node.removeEventListener(\"focus\", handleFocus);\n }\n return didFocus;\n }\n function resolveSingletonInstance(\n type,\n props,\n rootContainerInstance,\n hostContext,\n validateDOMNestingDev\n ) {\n validateDOMNestingDev &&\n validateDOMNesting(type, hostContext.ancestorInfo);\n props = getOwnerDocumentFromRootContainer(rootContainerInstance);\n switch (type) {\n case \"html\":\n type = props.documentElement;\n if (!type)\n throw Error(\n \"React expected an <html> element (document.documentElement) to exist in the Document but one was not found. React never removes the documentElement for any Document it renders into so the cause is likely in some other script running on this page.\"\n );\n return type;\n case \"head\":\n type = props.head;\n if (!type)\n throw Error(\n \"React expected a <head> element (document.head) to exist in the Document but one was not found. React never removes the head for any Document it renders into so the cause is likely in some other script running on this page.\"\n );\n return type;\n case \"body\":\n type = props.body;\n if (!type)\n throw Error(\n \"React expected a <body> element (document.body) to exist in the Document but one was not found. React never removes the body for any Document it renders into so the cause is likely in some other script running on this page.\"\n );\n return type;\n default:\n throw Error(\n \"resolveSingletonInstance was called with an element type that is not supported. This is a bug in React.\"\n );\n }\n }\n function acquireSingletonInstance(\n type,\n props,\n instance,\n internalInstanceHandle\n ) {\n if (\n !instance[internalContainerInstanceKey] &&\n getInstanceFromNode(instance)\n ) {\n var tagName = instance.tagName.toLowerCase();\n console.error(\n \"You are mounting a new %s component when a previous one has not first unmounted. It is an error to render more than one %s component at a time and attributes and children of these components will likely fail in unpredictable ways. Please only render a single instance of <%s> and if you need to mount a new one, ensure any previous ones have unmounted first.\",\n tagName,\n tagName,\n tagName\n );\n }\n switch (type) {\n case \"html\":\n case \"head\":\n case \"body\":\n break;\n default:\n console.error(\n \"acquireSingletonInstance was called with an element type that is not supported. This is a bug in React.\"\n );\n }\n for (tagName = instance.attributes; tagName.length; )\n instance.removeAttributeNode(tagName[0]);\n setInitialProperties(instance, type, props);\n instance[internalInstanceKey] = internalInstanceHandle;\n instance[internalPropsKey] = props;\n }\n function releaseSingletonInstance(instance) {\n for (var attributes = instance.attributes; attributes.length; )\n instance.removeAttributeNode(attributes[0]);\n detachDeletedInstance(instance);\n }\n function getHoistableRoot(container) {\n return \"function\" === typeof container.getRootNode\n ? container.getRootNode()\n : 9 === container.nodeType\n ? container\n : container.ownerDocument;\n }\n function preconnectAs(rel, href, crossOrigin) {\n var ownerDocument = globalDocument;\n if (ownerDocument && \"string\" === typeof href && href) {\n var limitedEscapedHref =\n escapeSelectorAttributeValueInsideDoubleQuotes(href);\n limitedEscapedHref =\n 'link[rel=\"' + rel + '\"][href=\"' + limitedEscapedHref + '\"]';\n \"string\" === typeof crossOrigin &&\n (limitedEscapedHref += '[crossorigin=\"' + crossOrigin + '\"]');\n preconnectsSet.has(limitedEscapedHref) ||\n (preconnectsSet.add(limitedEscapedHref),\n (rel = { rel: rel, crossOrigin: crossOrigin, href: href }),\n null === ownerDocument.querySelector(limitedEscapedHref) &&\n ((href = ownerDocument.createElement(\"link\")),\n setInitialProperties(href, \"link\", rel),\n markNodeAsHoistable(href),\n ownerDocument.head.appendChild(href)));\n }\n }\n function getResource(type, currentProps, pendingProps, currentResource) {\n var resourceRoot = (resourceRoot = rootInstanceStackCursor.current)\n ? getHoistableRoot(resourceRoot)\n : null;\n if (!resourceRoot)\n throw Error(\n '\"resourceRoot\" was expected to exist. This is a bug in React.'\n );\n switch (type) {\n case \"meta\":\n case \"title\":\n return null;\n case \"style\":\n return \"string\" === typeof pendingProps.precedence &&\n \"string\" === typeof pendingProps.href\n ? ((pendingProps = getStyleKey(pendingProps.href)),\n (currentProps =\n getResourcesFromRoot(resourceRoot).hoistableStyles),\n (currentResource = currentProps.get(pendingProps)),\n currentResource ||\n ((currentResource = {\n type: \"style\",\n instance: null,\n count: 0,\n state: null\n }),\n currentProps.set(pendingProps, currentResource)),\n currentResource)\n : { type: \"void\", instance: null, count: 0, state: null };\n case \"link\":\n if (\n \"stylesheet\" === pendingProps.rel &&\n \"string\" === typeof pendingProps.href &&\n \"string\" === typeof pendingProps.precedence\n ) {\n type = getStyleKey(pendingProps.href);\n var _styles = getResourcesFromRoot(resourceRoot).hoistableStyles,\n _resource = _styles.get(type);\n if (\n !_resource &&\n ((resourceRoot = resourceRoot.ownerDocument || resourceRoot),\n (_resource = {\n type: \"stylesheet\",\n instance: null,\n count: 0,\n state: { loading: NotLoaded, preload: null }\n }),\n _styles.set(type, _resource),\n (_styles = resourceRoot.querySelector(\n getStylesheetSelectorFromKey(type)\n )) &&\n !_styles._p &&\n ((_resource.instance = _styles),\n (_resource.state.loading = Loaded | Inserted)),\n !preloadPropsMap.has(type))\n ) {\n var preloadProps = {\n rel: \"preload\",\n as: \"style\",\n href: pendingProps.href,\n crossOrigin: pendingProps.crossOrigin,\n integrity: pendingProps.integrity,\n media: pendingProps.media,\n hrefLang: pendingProps.hrefLang,\n referrerPolicy: pendingProps.referrerPolicy\n };\n preloadPropsMap.set(type, preloadProps);\n _styles ||\n preloadStylesheet(\n resourceRoot,\n type,\n preloadProps,\n _resource.state\n );\n }\n if (currentProps && null === currentResource)\n throw (\n ((pendingProps =\n \"\\n\\n - \" +\n describeLinkForResourceErrorDEV(currentProps) +\n \"\\n + \" +\n describeLinkForResourceErrorDEV(pendingProps)),\n Error(\n \"Expected <link> not to update to be updated to a stylesheet with precedence. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key.\" +\n pendingProps\n ))\n );\n return _resource;\n }\n if (currentProps && null !== currentResource)\n throw (\n ((pendingProps =\n \"\\n\\n - \" +\n describeLinkForResourceErrorDEV(currentProps) +\n \"\\n + \" +\n describeLinkForResourceErrorDEV(pendingProps)),\n Error(\n \"Expected stylesheet with precedence to not be updated to a different kind of <link>. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key.\" +\n pendingProps\n ))\n );\n return null;\n case \"script\":\n return (\n (currentProps = pendingProps.async),\n (pendingProps = pendingProps.src),\n \"string\" === typeof pendingProps &&\n currentProps &&\n \"function\" !== typeof currentProps &&\n \"symbol\" !== typeof currentProps\n ? ((pendingProps = getScriptKey(pendingProps)),\n (currentProps =\n getResourcesFromRoot(resourceRoot).hoistableScripts),\n (currentResource = currentProps.get(pendingProps)),\n currentResource ||\n ((currentResource = {\n type: \"script\",\n instance: null,\n count: 0,\n state: null\n }),\n currentProps.set(pendingProps, currentResource)),\n currentResource)\n : { type: \"void\", instance: null, count: 0, state: null }\n );\n default:\n throw Error(\n 'getResource encountered a type it did not expect: \"' +\n type +\n '\". this is a bug in React.'\n );\n }\n }\n function describeLinkForResourceErrorDEV(props) {\n var describedProps = 0,\n description = \"<link\";\n \"string\" === typeof props.rel\n ? (describedProps++, (description += ' rel=\"' + props.rel + '\"'))\n : hasOwnProperty.call(props, \"rel\") &&\n (describedProps++,\n (description +=\n ' rel=\"' +\n (null === props.rel ? \"null\" : \"invalid type \" + typeof props.rel) +\n '\"'));\n \"string\" === typeof props.href\n ? (describedProps++, (description += ' href=\"' + props.href + '\"'))\n : hasOwnProperty.call(props, \"href\") &&\n (describedProps++,\n (description +=\n ' href=\"' +\n (null === props.href\n ? \"null\"\n : \"invalid type \" + typeof props.href) +\n '\"'));\n \"string\" === typeof props.precedence\n ? (describedProps++,\n (description += ' precedence=\"' + props.precedence + '\"'))\n : hasOwnProperty.call(props, \"precedence\") &&\n (describedProps++,\n (description +=\n \" precedence={\" +\n (null === props.precedence\n ? \"null\"\n : \"invalid type \" + typeof props.precedence) +\n \"}\"));\n Object.getOwnPropertyNames(props).length > describedProps &&\n (description += \" ...\");\n return description + \" />\";\n }\n function getStyleKey(href) {\n return (\n 'href=\"' + escapeSelectorAttributeValueInsideDoubleQuotes(href) + '\"'\n );\n }\n function getStylesheetSelectorFromKey(key) {\n return 'link[rel=\"stylesheet\"][' + key + \"]\";\n }\n function stylesheetPropsFromRawProps(rawProps) {\n return assign({}, rawProps, {\n \"data-precedence\": rawProps.precedence,\n precedence: null\n });\n }\n function preloadStylesheet(ownerDocument, key, preloadProps, state) {\n ownerDocument.querySelector(\n 'link[rel=\"preload\"][as=\"style\"][' + key + \"]\"\n )\n ? (state.loading = Loaded)\n : ((key = ownerDocument.createElement(\"link\")),\n (state.preload = key),\n key.addEventListener(\"load\", function () {\n return (state.loading |= Loaded);\n }),\n key.addEventListener(\"error\", function () {\n return (state.loading |= Errored);\n }),\n setInitialProperties(key, \"link\", preloadProps),\n markNodeAsHoistable(key),\n ownerDocument.head.appendChild(key));\n }\n function getScriptKey(src) {\n return (\n '[src=\"' + escapeSelectorAttributeValueInsideDoubleQuotes(src) + '\"]'\n );\n }\n function getScriptSelectorFromKey(key) {\n return \"script[async]\" + key;\n }\n function acquireResource(hoistableRoot, resource, props) {\n resource.count++;\n if (null === resource.instance)\n switch (resource.type) {\n case \"style\":\n var instance = hoistableRoot.querySelector(\n 'style[data-href~=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(props.href) +\n '\"]'\n );\n if (instance)\n return (\n (resource.instance = instance),\n markNodeAsHoistable(instance),\n instance\n );\n var styleProps = assign({}, props, {\n \"data-href\": props.href,\n \"data-precedence\": props.precedence,\n href: null,\n precedence: null\n });\n instance = (\n hoistableRoot.ownerDocument || hoistableRoot\n ).createElement(\"style\");\n markNodeAsHoistable(instance);\n setInitialProperties(instance, \"style\", styleProps);\n insertStylesheet(instance, props.precedence, hoistableRoot);\n return (resource.instance = instance);\n case \"stylesheet\":\n styleProps = getStyleKey(props.href);\n var _instance = hoistableRoot.querySelector(\n getStylesheetSelectorFromKey(styleProps)\n );\n if (_instance)\n return (\n (resource.state.loading |= Inserted),\n (resource.instance = _instance),\n markNodeAsHoistable(_instance),\n _instance\n );\n instance = stylesheetPropsFromRawProps(props);\n (styleProps = preloadPropsMap.get(styleProps)) &&\n adoptPreloadPropsForStylesheet(instance, styleProps);\n _instance = (\n hoistableRoot.ownerDocument || hoistableRoot\n ).createElement(\"link\");\n markNodeAsHoistable(_instance);\n var linkInstance = _instance;\n linkInstance._p = new Promise(function (resolve, reject) {\n linkInstance.onload = resolve;\n linkInstance.onerror = reject;\n });\n setInitialProperties(_instance, \"link\", instance);\n resource.state.loading |= Inserted;\n insertStylesheet(_instance, props.precedence, hoistableRoot);\n return (resource.instance = _instance);\n case \"script\":\n _instance = getScriptKey(props.src);\n if (\n (styleProps = hoistableRoot.querySelector(\n getScriptSelectorFromKey(_instance)\n ))\n )\n return (\n (resource.instance = styleProps),\n markNodeAsHoistable(styleProps),\n styleProps\n );\n instance = props;\n if ((styleProps = preloadPropsMap.get(_instance)))\n (instance = assign({}, props)),\n adoptPreloadPropsForScript(instance, styleProps);\n hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;\n styleProps = hoistableRoot.createElement(\"script\");\n markNodeAsHoistable(styleProps);\n setInitialProperties(styleProps, \"link\", instance);\n hoistableRoot.head.appendChild(styleProps);\n return (resource.instance = styleProps);\n case \"void\":\n return null;\n default:\n throw Error(\n 'acquireResource encountered a resource type it did not expect: \"' +\n resource.type +\n '\". this is a bug in React.'\n );\n }\n else\n \"stylesheet\" === resource.type &&\n (resource.state.loading & Inserted) === NotLoaded &&\n ((instance = resource.instance),\n (resource.state.loading |= Inserted),\n insertStylesheet(instance, props.precedence, hoistableRoot));\n return resource.instance;\n }\n function insertStylesheet(instance, precedence, root) {\n for (\n var nodes = root.querySelectorAll(\n 'link[rel=\"stylesheet\"][data-precedence],style[data-precedence]'\n ),\n last = nodes.length ? nodes[nodes.length - 1] : null,\n prior = last,\n i = 0;\n i < nodes.length;\n i++\n ) {\n var node = nodes[i];\n if (node.dataset.precedence === precedence) prior = node;\n else if (prior !== last) break;\n }\n prior\n ? prior.parentNode.insertBefore(instance, prior.nextSibling)\n : ((precedence = 9 === root.nodeType ? root.head : root),\n precedence.insertBefore(instance, precedence.firstChild));\n }\n function adoptPreloadPropsForStylesheet(stylesheetProps, preloadProps) {\n null == stylesheetProps.crossOrigin &&\n (stylesheetProps.crossOrigin = preloadProps.crossOrigin);\n null == stylesheetProps.referrerPolicy &&\n (stylesheetProps.referrerPolicy = preloadProps.referrerPolicy);\n null == stylesheetProps.title &&\n (stylesheetProps.title = preloadProps.title);\n }\n function adoptPreloadPropsForScript(scriptProps, preloadProps) {\n null == scriptProps.crossOrigin &&\n (scriptProps.crossOrigin = preloadProps.crossOrigin);\n null == scriptProps.referrerPolicy &&\n (scriptProps.referrerPolicy = preloadProps.referrerPolicy);\n null == scriptProps.integrity &&\n (scriptProps.integrity = preloadProps.integrity);\n }\n function getHydratableHoistableCache(type, keyAttribute, ownerDocument) {\n if (null === tagCaches) {\n var cache = new Map();\n var caches = (tagCaches = new Map());\n caches.set(ownerDocument, cache);\n } else\n (caches = tagCaches),\n (cache = caches.get(ownerDocument)),\n cache || ((cache = new Map()), caches.set(ownerDocument, cache));\n if (cache.has(type)) return cache;\n cache.set(type, null);\n ownerDocument = ownerDocument.getElementsByTagName(type);\n for (caches = 0; caches < ownerDocument.length; caches++) {\n var node = ownerDocument[caches];\n if (\n !(\n node[internalHoistableMarker] ||\n node[internalInstanceKey] ||\n (\"link\" === type && \"stylesheet\" === node.getAttribute(\"rel\"))\n ) &&\n node.namespaceURI !== SVG_NAMESPACE\n ) {\n var nodeKey = node.getAttribute(keyAttribute) || \"\";\n nodeKey = type + nodeKey;\n var existing = cache.get(nodeKey);\n existing ? existing.push(node) : cache.set(nodeKey, [node]);\n }\n }\n return cache;\n }\n function mountHoistable(hoistableRoot, type, instance) {\n hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;\n hoistableRoot.head.insertBefore(\n instance,\n \"title\" === type ? hoistableRoot.querySelector(\"head > title\") : null\n );\n }\n function isHostHoistableType(type, props, hostContext) {\n var outsideHostContainerContext =\n !hostContext.ancestorInfo.containerTagInScope;\n if (\n hostContext.context === HostContextNamespaceSvg ||\n null != props.itemProp\n )\n return (\n !outsideHostContainerContext ||\n null == props.itemProp ||\n (\"meta\" !== type &&\n \"title\" !== type &&\n \"style\" !== type &&\n \"link\" !== type &&\n \"script\" !== type) ||\n console.error(\n \"Cannot render a <%s> outside the main document if it has an `itemProp` prop. `itemProp` suggests the tag belongs to an `itemScope` which can appear anywhere in the DOM. If you were intending for React to hoist this <%s> remove the `itemProp` prop. Otherwise, try moving this tag into the <head> or <body> of the Document.\",\n type,\n type\n ),\n !1\n );\n switch (type) {\n case \"meta\":\n case \"title\":\n return !0;\n case \"style\":\n if (\n \"string\" !== typeof props.precedence ||\n \"string\" !== typeof props.href ||\n \"\" === props.href\n ) {\n outsideHostContainerContext &&\n console.error(\n 'Cannot render a <style> outside the main document without knowing its precedence and a unique href key. React can hoist and deduplicate <style> tags if you provide a `precedence` prop along with an `href` prop that does not conflict with the `href` values used in any other hoisted <style> or <link rel=\"stylesheet\" ...> tags. Note that hoisting <style> tags is considered an advanced feature that most will not use directly. Consider moving the <style> tag to the <head> or consider adding a `precedence=\"default\"` and `href=\"some unique resource identifier\"`.'\n );\n break;\n }\n return !0;\n case \"link\":\n if (\n \"string\" !== typeof props.rel ||\n \"string\" !== typeof props.href ||\n \"\" === props.href ||\n props.onLoad ||\n props.onError\n ) {\n if (\n \"stylesheet\" === props.rel &&\n \"string\" === typeof props.precedence\n ) {\n type = props.href;\n var onError = props.onError,\n disabled = props.disabled;\n hostContext = [];\n props.onLoad && hostContext.push(\"`onLoad`\");\n onError && hostContext.push(\"`onError`\");\n null != disabled && hostContext.push(\"`disabled`\");\n onError = propNamesListJoin(hostContext, \"and\");\n onError += 1 === hostContext.length ? \" prop\" : \" props\";\n disabled =\n 1 === hostContext.length ? \"an \" + onError : \"the \" + onError;\n hostContext.length &&\n console.error(\n 'React encountered a <link rel=\"stylesheet\" href=\"%s\" ... /> with a `precedence` prop that also included %s. The presence of loading and error handlers indicates an intent to manage the stylesheet loading state from your from your Component code and React will not hoist or deduplicate this stylesheet. If your intent was to have React hoist and deduplciate this stylesheet using the `precedence` prop remove the %s, otherwise remove the `precedence` prop.',\n type,\n disabled,\n onError\n );\n }\n outsideHostContainerContext &&\n (\"string\" !== typeof props.rel ||\n \"string\" !== typeof props.href ||\n \"\" === props.href\n ? console.error(\n \"Cannot render a <link> outside the main document without a `rel` and `href` prop. Try adding a `rel` and/or `href` prop to this <link> or moving the link into the <head> tag\"\n )\n : (props.onError || props.onLoad) &&\n console.error(\n \"Cannot render a <link> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>.\"\n ));\n break;\n }\n switch (props.rel) {\n case \"stylesheet\":\n return (\n (type = props.precedence),\n (props = props.disabled),\n \"string\" !== typeof type &&\n outsideHostContainerContext &&\n console.error(\n 'Cannot render a <link rel=\"stylesheet\" /> outside the main document without knowing its precedence. Consider adding precedence=\"default\" or moving it into the root <head> tag.'\n ),\n \"string\" === typeof type && null == props\n );\n default:\n return !0;\n }\n case \"script\":\n type =\n props.async &&\n \"function\" !== typeof props.async &&\n \"symbol\" !== typeof props.async;\n if (\n !type ||\n props.onLoad ||\n props.onError ||\n !props.src ||\n \"string\" !== typeof props.src\n ) {\n outsideHostContainerContext &&\n (type\n ? props.onLoad || props.onError\n ? console.error(\n \"Cannot render a <script> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>.\"\n )\n : console.error(\n \"Cannot render a <script> outside the main document without `async={true}` and a non-empty `src` prop. Ensure there is a valid `src` and either make the script async or move it into the root <head> tag or somewhere in the <body>.\"\n )\n : console.error(\n 'Cannot render a sync or defer <script> outside the main document without knowing its order. Try adding async=\"\" or moving it into the root <head> tag.'\n ));\n break;\n }\n return !0;\n case \"noscript\":\n case \"template\":\n outsideHostContainerContext &&\n console.error(\n \"Cannot render <%s> outside the main document. Try moving it into the root <head> tag.\",\n type\n );\n }\n return !1;\n }\n function maySuspendCommit(type, props) {\n return (\n \"img\" === type &&\n null != props.src &&\n \"\" !== props.src &&\n null == props.onLoad &&\n \"lazy\" !== props.loading\n );\n }\n function preloadResource(resource) {\n return \"stylesheet\" === resource.type &&\n (resource.state.loading & Settled) === NotLoaded\n ? !1\n : !0;\n }\n function estimateImageBytes(instance) {\n return (\n (instance.width || 100) *\n (instance.height || 100) *\n (\"number\" === typeof devicePixelRatio ? devicePixelRatio : 1) *\n 0.25\n );\n }\n function suspendInstance(state, instance) {\n \"function\" === typeof instance.decode &&\n (state.imgCount++,\n instance.complete ||\n ((state.imgBytes += estimateImageBytes(instance)),\n state.suspenseyImages.push(instance)),\n (state = onUnsuspendImg.bind(state)),\n instance.decode().then(state, state));\n }\n function suspendResource(state, hoistableRoot, resource, props) {\n if (\n \"stylesheet\" === resource.type &&\n (\"string\" !== typeof props.media ||\n !1 !== matchMedia(props.media).matches) &&\n (resource.state.loading & Inserted) === NotLoaded\n ) {\n if (null === resource.instance) {\n var key = getStyleKey(props.href),\n instance = hoistableRoot.querySelector(\n getStylesheetSelectorFromKey(key)\n );\n if (instance) {\n hoistableRoot = instance._p;\n null !== hoistableRoot &&\n \"object\" === typeof hoistableRoot &&\n \"function\" === typeof hoistableRoot.then &&\n (state.count++,\n (state = onUnsuspend.bind(state)),\n hoistableRoot.then(state, state));\n resource.state.loading |= Inserted;\n resource.instance = instance;\n markNodeAsHoistable(instance);\n return;\n }\n instance = hoistableRoot.ownerDocument || hoistableRoot;\n props = stylesheetPropsFromRawProps(props);\n (key = preloadPropsMap.get(key)) &&\n adoptPreloadPropsForStylesheet(props, key);\n instance = instance.createElement(\"link\");\n markNodeAsHoistable(instance);\n var linkInstance = instance;\n linkInstance._p = new Promise(function (resolve, reject) {\n linkInstance.onload = resolve;\n linkInstance.onerror = reject;\n });\n setInitialProperties(instance, \"link\", props);\n resource.instance = instance;\n }\n null === state.stylesheets && (state.stylesheets = new Map());\n state.stylesheets.set(resource, hoistableRoot);\n (hoistableRoot = resource.state.preload) &&\n (resource.state.loading & Settled) === NotLoaded &&\n (state.count++,\n (resource = onUnsuspend.bind(state)),\n hoistableRoot.addEventListener(\"load\", resource),\n hoistableRoot.addEventListener(\"error\", resource));\n }\n }\n function waitForCommitToBeReady(state, timeoutOffset) {\n state.stylesheets &&\n 0 === state.count &&\n insertSuspendedStylesheets(state, state.stylesheets);\n return 0 < state.count || 0 < state.imgCount\n ? function (commit) {\n var stylesheetTimer = setTimeout(function () {\n state.stylesheets &&\n insertSuspendedStylesheets(state, state.stylesheets);\n if (state.unsuspend) {\n var unsuspend = state.unsuspend;\n state.unsuspend = null;\n unsuspend();\n }\n }, SUSPENSEY_STYLESHEET_TIMEOUT + timeoutOffset);\n 0 < state.imgBytes &&\n 0 === estimatedBytesWithinLimit &&\n (estimatedBytesWithinLimit =\n 125 * estimateBandwidth() * SUSPENSEY_IMAGE_TIME_ESTIMATE);\n var imgTimer = setTimeout(\n function () {\n state.waitingForImages = !1;\n if (\n 0 === state.count &&\n (state.stylesheets &&\n insertSuspendedStylesheets(state, state.stylesheets),\n state.unsuspend)\n ) {\n var unsuspend = state.unsuspend;\n state.unsuspend = null;\n unsuspend();\n }\n },\n (state.imgBytes > estimatedBytesWithinLimit\n ? 50\n : SUSPENSEY_IMAGE_TIMEOUT) + timeoutOffset\n );\n state.unsuspend = commit;\n return function () {\n state.unsuspend = null;\n clearTimeout(stylesheetTimer);\n clearTimeout(imgTimer);\n };\n }\n : null;\n }\n function checkIfFullyUnsuspended(state) {\n if (\n 0 === state.count &&\n (0 === state.imgCount || !state.waitingForImages)\n )\n if (state.stylesheets)\n insertSuspendedStylesheets(state, state.stylesheets);\n else if (state.unsuspend) {\n var unsuspend = state.unsuspend;\n state.unsuspend = null;\n unsuspend();\n }\n }\n function onUnsuspend() {\n this.count--;\n checkIfFullyUnsuspended(this);\n }\n function onUnsuspendImg() {\n this.imgCount--;\n checkIfFullyUnsuspended(this);\n }\n function insertSuspendedStylesheets(state, resources) {\n state.stylesheets = null;\n null !== state.unsuspend &&\n (state.count++,\n (precedencesByRoot = new Map()),\n resources.forEach(insertStylesheetIntoRoot, state),\n (precedencesByRoot = null),\n onUnsuspend.call(state));\n }\n function insertStylesheetIntoRoot(root, resource) {\n if (!(resource.state.loading & Inserted)) {\n var precedences = precedencesByRoot.get(root);\n if (precedences) var last = precedences.get(LAST_PRECEDENCE);\n else {\n precedences = new Map();\n precedencesByRoot.set(root, precedences);\n for (\n var nodes = root.querySelectorAll(\n \"link[data-precedence],style[data-precedence]\"\n ),\n i = 0;\n i < nodes.length;\n i++\n ) {\n var node = nodes[i];\n if (\n \"LINK\" === node.nodeName ||\n \"not all\" !== node.getAttribute(\"media\")\n )\n precedences.set(node.dataset.precedence, node), (last = node);\n }\n last && precedences.set(LAST_PRECEDENCE, last);\n }\n nodes = resource.instance;\n node = nodes.getAttribute(\"data-precedence\");\n i = precedences.get(node) || last;\n i === last && precedences.set(LAST_PRECEDENCE, nodes);\n precedences.set(node, nodes);\n this.count++;\n last = onUnsuspend.bind(this);\n nodes.addEventListener(\"load\", last);\n nodes.addEventListener(\"error\", last);\n i\n ? i.parentNode.insertBefore(nodes, i.nextSibling)\n : ((root = 9 === root.nodeType ? root.head : root),\n root.insertBefore(nodes, root.firstChild));\n resource.state.loading |= Inserted;\n }\n }\n function FiberRootNode(\n containerInfo,\n tag,\n hydrate,\n identifierPrefix,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n onDefaultTransitionIndicator,\n formState\n ) {\n this.tag = 1;\n this.containerInfo = containerInfo;\n this.pingCache = this.current = this.pendingChildren = null;\n this.timeoutHandle = noTimeout;\n this.callbackNode =\n this.next =\n this.pendingContext =\n this.context =\n this.cancelPendingCommit =\n null;\n this.callbackPriority = 0;\n this.expirationTimes = createLaneMap(-1);\n this.entangledLanes =\n this.shellSuspendCounter =\n this.errorRecoveryDisabledLanes =\n this.expiredLanes =\n this.warmLanes =\n this.pingedLanes =\n this.suspendedLanes =\n this.pendingLanes =\n 0;\n this.entanglements = createLaneMap(0);\n this.hiddenUpdates = createLaneMap(null);\n this.identifierPrefix = identifierPrefix;\n this.onUncaughtError = onUncaughtError;\n this.onCaughtError = onCaughtError;\n this.onRecoverableError = onRecoverableError;\n this.pooledCache = null;\n this.pooledCacheLanes = 0;\n this.formState = formState;\n this.transitionTypes = null;\n this.incompleteTransitions = new Map();\n this.passiveEffectDuration = this.effectDuration = -0;\n this.memoizedUpdaters = new Set();\n containerInfo = this.pendingUpdatersLaneMap = [];\n for (tag = 0; 31 > tag; tag++) containerInfo.push(new Set());\n this._debugRootType = hydrate ? \"hydrateRoot()\" : \"createRoot()\";\n }\n function createFiberRoot(\n containerInfo,\n tag,\n hydrate,\n initialChildren,\n hydrationCallbacks,\n isStrictMode,\n identifierPrefix,\n formState,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n onDefaultTransitionIndicator\n ) {\n containerInfo = new FiberRootNode(\n containerInfo,\n tag,\n hydrate,\n identifierPrefix,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n onDefaultTransitionIndicator,\n formState\n );\n tag = ConcurrentMode;\n !0 === isStrictMode && (tag |= StrictLegacyMode | StrictEffectsMode);\n tag |= ProfileMode;\n isStrictMode = createFiber(3, null, null, tag);\n containerInfo.current = isStrictMode;\n isStrictMode.stateNode = containerInfo;\n tag = createCache();\n retainCache(tag);\n containerInfo.pooledCache = tag;\n retainCache(tag);\n isStrictMode.memoizedState = {\n element: initialChildren,\n isDehydrated: hydrate,\n cache: tag\n };\n initializeUpdateQueue(isStrictMode);\n return containerInfo;\n }\n function getContextForSubtree(parentComponent) {\n if (!parentComponent) return emptyContextObject;\n parentComponent = emptyContextObject;\n return parentComponent;\n }\n function updateContainerImpl(\n rootFiber,\n lane,\n element,\n container,\n parentComponent,\n callback\n ) {\n if (\n injectedHook &&\n \"function\" === typeof injectedHook.onScheduleFiberRoot\n )\n try {\n injectedHook.onScheduleFiberRoot(rendererID, container, element);\n } catch (err) {\n hasLoggedError ||\n ((hasLoggedError = !0),\n console.error(\n \"React instrumentation encountered an error: %o\",\n err\n ));\n }\n parentComponent = getContextForSubtree(parentComponent);\n null === container.context\n ? (container.context = parentComponent)\n : (container.pendingContext = parentComponent);\n isRendering &&\n null !== current &&\n !didWarnAboutNestedUpdates &&\n ((didWarnAboutNestedUpdates = !0),\n console.error(\n \"Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.\\n\\nCheck the render method of %s.\",\n getComponentNameFromFiber(current) || \"Unknown\"\n ));\n container = createUpdate(lane);\n container.payload = { element: element };\n callback = void 0 === callback ? null : callback;\n null !== callback &&\n (\"function\" !== typeof callback &&\n console.error(\n \"Expected the last optional `callback` argument to be a function. Instead received: %s.\",\n callback\n ),\n (container.callback = callback));\n element = enqueueUpdate(rootFiber, container, lane);\n null !== element &&\n (startUpdateTimerByLane(lane, \"root.render()\", null),\n scheduleUpdateOnFiber(element, rootFiber, lane),\n entangleTransitions(element, rootFiber, lane));\n }\n function markRetryLaneImpl(fiber, retryLane) {\n fiber = fiber.memoizedState;\n if (null !== fiber && null !== fiber.dehydrated) {\n var a = fiber.retryLane;\n fiber.retryLane = 0 !== a && a < retryLane ? a : retryLane;\n }\n }\n function markRetryLaneIfNotHydrated(fiber, retryLane) {\n markRetryLaneImpl(fiber, retryLane);\n (fiber = fiber.alternate) && markRetryLaneImpl(fiber, retryLane);\n }\n function attemptContinuousHydration(fiber) {\n if (13 === fiber.tag || 31 === fiber.tag) {\n var root = enqueueConcurrentRenderForLane(fiber, 67108864);\n null !== root && scheduleUpdateOnFiber(root, fiber, 67108864);\n markRetryLaneIfNotHydrated(fiber, 67108864);\n }\n }\n function attemptHydrationAtCurrentPriority(fiber) {\n if (13 === fiber.tag || 31 === fiber.tag) {\n var lane = requestUpdateLane(fiber);\n lane = getBumpedLaneForHydrationByLane(lane);\n var root = enqueueConcurrentRenderForLane(fiber, lane);\n null !== root && scheduleUpdateOnFiber(root, fiber, lane);\n markRetryLaneIfNotHydrated(fiber, lane);\n }\n }\n function getCurrentFiberForDevTools() {\n return current;\n }\n function dispatchDiscreteEvent(\n domEventName,\n eventSystemFlags,\n container,\n nativeEvent\n ) {\n var prevTransition = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n var previousPriority = ReactDOMSharedInternals.p;\n try {\n (ReactDOMSharedInternals.p = DiscreteEventPriority),\n dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent);\n } finally {\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = prevTransition);\n }\n }\n function dispatchContinuousEvent(\n domEventName,\n eventSystemFlags,\n container,\n nativeEvent\n ) {\n var prevTransition = ReactSharedInternals.T;\n ReactSharedInternals.T = null;\n var previousPriority = ReactDOMSharedInternals.p;\n try {\n (ReactDOMSharedInternals.p = ContinuousEventPriority),\n dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent);\n } finally {\n (ReactDOMSharedInternals.p = previousPriority),\n (ReactSharedInternals.T = prevTransition);\n }\n }\n function dispatchEvent(\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n ) {\n if (_enabled) {\n var blockedOn = findInstanceBlockingEvent(nativeEvent);\n if (null === blockedOn)\n dispatchEventForPluginEventSystem(\n domEventName,\n eventSystemFlags,\n nativeEvent,\n return_targetInst,\n targetContainer\n ),\n clearIfContinuousEvent(domEventName, nativeEvent);\n else if (\n queueIfContinuousEvent(\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )\n )\n nativeEvent.stopPropagation();\n else if (\n (clearIfContinuousEvent(domEventName, nativeEvent),\n eventSystemFlags & 4 &&\n -1 < discreteReplayableEvents.indexOf(domEventName))\n ) {\n for (; null !== blockedOn; ) {\n var fiber = getInstanceFromNode(blockedOn);\n if (null !== fiber)\n switch (fiber.tag) {\n case 3:\n fiber = fiber.stateNode;\n if (fiber.current.memoizedState.isDehydrated) {\n var lanes = getHighestPriorityLanes(fiber.pendingLanes);\n if (0 !== lanes) {\n var root = fiber;\n root.pendingLanes |= 2;\n for (root.entangledLanes |= 2; lanes; ) {\n var lane = 1 << (31 - clz32(lanes));\n root.entanglements[1] |= lane;\n lanes &= ~lane;\n }\n ensureRootIsScheduled(fiber);\n (executionContext & (RenderContext | CommitContext)) ===\n NoContext &&\n ((workInProgressRootRenderTargetTime =\n now$1() + RENDER_TIMEOUT_MS),\n flushSyncWorkAcrossRoots_impl(0, !1));\n }\n }\n break;\n case 31:\n case 13:\n (root = enqueueConcurrentRenderForLane(fiber, 2)),\n null !== root && scheduleUpdateOnFiber(root, fiber, 2),\n flushSyncWork$1(),\n markRetryLaneIfNotHydrated(fiber, 2);\n }\n fiber = findInstanceBlockingEvent(nativeEvent);\n null === fiber &&\n dispatchEventForPluginEventSystem(\n domEventName,\n eventSystemFlags,\n nativeEvent,\n return_targetInst,\n targetContainer\n );\n if (fiber === blockedOn) break;\n blockedOn = fiber;\n }\n null !== blockedOn && nativeEvent.stopPropagation();\n } else\n dispatchEventForPluginEventSystem(\n domEventName,\n eventSystemFlags,\n nativeEvent,\n null,\n targetContainer\n );\n }\n }\n function findInstanceBlockingEvent(nativeEvent) {\n nativeEvent = getEventTarget(nativeEvent);\n return findInstanceBlockingTarget(nativeEvent);\n }\n function findInstanceBlockingTarget(targetNode) {\n return_targetInst = null;\n targetNode = getClosestInstanceFromNode(targetNode);\n if (null !== targetNode) {\n var nearestMounted = getNearestMountedFiber(targetNode);\n if (null === nearestMounted) targetNode = null;\n else {\n var tag = nearestMounted.tag;\n if (13 === tag) {\n targetNode = getSuspenseInstanceFromFiber(nearestMounted);\n if (null !== targetNode) return targetNode;\n targetNode = null;\n } else if (31 === tag) {\n targetNode = getActivityInstanceFromFiber(nearestMounted);\n if (null !== targetNode) return targetNode;\n targetNode = null;\n } else if (3 === tag) {\n if (nearestMounted.stateNode.current.memoizedState.isDehydrated)\n return 3 === nearestMounted.tag\n ? nearestMounted.stateNode.containerInfo\n : null;\n targetNode = null;\n } else nearestMounted !== targetNode && (targetNode = null);\n }\n }\n return_targetInst = targetNode;\n return null;\n }\n function getEventPriority(domEventName) {\n switch (domEventName) {\n case \"beforetoggle\":\n case \"cancel\":\n case \"click\":\n case \"close\":\n case \"contextmenu\":\n case \"copy\":\n case \"cut\":\n case \"auxclick\":\n case \"dblclick\":\n case \"dragend\":\n case \"dragstart\":\n case \"drop\":\n case \"focusin\":\n case \"focusout\":\n case \"input\":\n case \"invalid\":\n case \"keydown\":\n case \"keypress\":\n case \"keyup\":\n case \"mousedown\":\n case \"mouseup\":\n case \"paste\":\n case \"pause\":\n case \"play\":\n case \"pointercancel\":\n case \"pointerdown\":\n case \"pointerup\":\n case \"ratechange\":\n case \"reset\":\n case \"seeked\":\n case \"submit\":\n case \"toggle\":\n case \"touchcancel\":\n case \"touchend\":\n case \"touchstart\":\n case \"volumechange\":\n case \"change\":\n case \"selectionchange\":\n case \"textInput\":\n case \"compositionstart\":\n case \"compositionend\":\n case \"compositionupdate\":\n case \"beforeblur\":\n case \"afterblur\":\n case \"beforeinput\":\n case \"blur\":\n case \"fullscreenchange\":\n case \"focus\":\n case \"hashchange\":\n case \"popstate\":\n case \"select\":\n case \"selectstart\":\n return DiscreteEventPriority;\n case \"drag\":\n case \"dragenter\":\n case \"dragexit\":\n case \"dragleave\":\n case \"dragover\":\n case \"mousemove\":\n case \"mouseout\":\n case \"mouseover\":\n case \"pointermove\":\n case \"pointerout\":\n case \"pointerover\":\n case \"resize\":\n case \"scroll\":\n case \"touchmove\":\n case \"wheel\":\n case \"mouseenter\":\n case \"mouseleave\":\n case \"pointerenter\":\n case \"pointerleave\":\n return ContinuousEventPriority;\n case \"message\":\n switch (getCurrentPriorityLevel()) {\n case ImmediatePriority:\n return DiscreteEventPriority;\n case UserBlockingPriority:\n return ContinuousEventPriority;\n case NormalPriority$1:\n case LowPriority:\n return DefaultEventPriority;\n case IdlePriority:\n return IdleEventPriority;\n default:\n return DefaultEventPriority;\n }\n default:\n return DefaultEventPriority;\n }\n }\n function clearIfContinuousEvent(domEventName, nativeEvent) {\n switch (domEventName) {\n case \"focusin\":\n case \"focusout\":\n queuedFocus = null;\n break;\n case \"dragenter\":\n case \"dragleave\":\n queuedDrag = null;\n break;\n case \"mouseover\":\n case \"mouseout\":\n queuedMouse = null;\n break;\n case \"pointerover\":\n case \"pointerout\":\n queuedPointers.delete(nativeEvent.pointerId);\n break;\n case \"gotpointercapture\":\n case \"lostpointercapture\":\n queuedPointerCaptures.delete(nativeEvent.pointerId);\n }\n }\n function accumulateOrCreateContinuousQueuedReplayableEvent(\n existingQueuedEvent,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n ) {\n if (\n null === existingQueuedEvent ||\n existingQueuedEvent.nativeEvent !== nativeEvent\n )\n return (\n (existingQueuedEvent = {\n blockedOn: blockedOn,\n domEventName: domEventName,\n eventSystemFlags: eventSystemFlags,\n nativeEvent: nativeEvent,\n targetContainers: [targetContainer]\n }),\n null !== blockedOn &&\n ((blockedOn = getInstanceFromNode(blockedOn)),\n null !== blockedOn && attemptContinuousHydration(blockedOn)),\n existingQueuedEvent\n );\n existingQueuedEvent.eventSystemFlags |= eventSystemFlags;\n blockedOn = existingQueuedEvent.targetContainers;\n null !== targetContainer &&\n -1 === blockedOn.indexOf(targetContainer) &&\n blockedOn.push(targetContainer);\n return existingQueuedEvent;\n }\n function queueIfContinuousEvent(\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n ) {\n switch (domEventName) {\n case \"focusin\":\n return (\n (queuedFocus = accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedFocus,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )),\n !0\n );\n case \"dragenter\":\n return (\n (queuedDrag = accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedDrag,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )),\n !0\n );\n case \"mouseover\":\n return (\n (queuedMouse = accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedMouse,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )),\n !0\n );\n case \"pointerover\":\n var pointerId = nativeEvent.pointerId;\n queuedPointers.set(\n pointerId,\n accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedPointers.get(pointerId) || null,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )\n );\n return !0;\n case \"gotpointercapture\":\n return (\n (pointerId = nativeEvent.pointerId),\n queuedPointerCaptures.set(\n pointerId,\n accumulateOrCreateContinuousQueuedReplayableEvent(\n queuedPointerCaptures.get(pointerId) || null,\n blockedOn,\n domEventName,\n eventSystemFlags,\n targetContainer,\n nativeEvent\n )\n ),\n !0\n );\n }\n return !1;\n }\n function attemptExplicitHydrationTarget(queuedTarget) {\n var targetInst = getClosestInstanceFromNode(queuedTarget.target);\n if (null !== targetInst) {\n var nearestMounted = getNearestMountedFiber(targetInst);\n if (null !== nearestMounted)\n if (((targetInst = nearestMounted.tag), 13 === targetInst)) {\n if (\n ((targetInst = getSuspenseInstanceFromFiber(nearestMounted)),\n null !== targetInst)\n ) {\n queuedTarget.blockedOn = targetInst;\n runWithPriority(queuedTarget.priority, function () {\n attemptHydrationAtCurrentPriority(nearestMounted);\n });\n return;\n }\n } else if (31 === targetInst) {\n if (\n ((targetInst = getActivityInstanceFromFiber(nearestMounted)),\n null !== targetInst)\n ) {\n queuedTarget.blockedOn = targetInst;\n runWithPriority(queuedTarget.priority, function () {\n attemptHydrationAtCurrentPriority(nearestMounted);\n });\n return;\n }\n } else if (\n 3 === targetInst &&\n nearestMounted.stateNode.current.memoizedState.isDehydrated\n ) {\n queuedTarget.blockedOn =\n 3 === nearestMounted.tag\n ? nearestMounted.stateNode.containerInfo\n : null;\n return;\n }\n }\n queuedTarget.blockedOn = null;\n }\n function attemptReplayContinuousQueuedEvent(queuedEvent) {\n if (null !== queuedEvent.blockedOn) return !1;\n for (\n var targetContainers = queuedEvent.targetContainers;\n 0 < targetContainers.length;\n\n ) {\n var nextBlockedOn = findInstanceBlockingEvent(queuedEvent.nativeEvent);\n if (null === nextBlockedOn) {\n nextBlockedOn = queuedEvent.nativeEvent;\n var nativeEventClone = new nextBlockedOn.constructor(\n nextBlockedOn.type,\n nextBlockedOn\n ),\n event = nativeEventClone;\n null !== currentReplayingEvent &&\n console.error(\n \"Expected currently replaying event to be null. This error is likely caused by a bug in React. Please file an issue.\"\n );\n currentReplayingEvent = event;\n nextBlockedOn.target.dispatchEvent(nativeEventClone);\n null === currentReplayingEvent &&\n console.error(\n \"Expected currently replaying event to not be null. This error is likely caused by a bug in React. Please file an issue.\"\n );\n currentReplayingEvent = null;\n } else\n return (\n (targetContainers = getInstanceFromNode(nextBlockedOn)),\n null !== targetContainers &&\n attemptContinuousHydration(targetContainers),\n (queuedEvent.blockedOn = nextBlockedOn),\n !1\n );\n targetContainers.shift();\n }\n return !0;\n }\n function attemptReplayContinuousQueuedEventInMap(queuedEvent, key, map) {\n attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key);\n }\n function replayUnblockedEvents() {\n hasScheduledReplayAttempt = !1;\n null !== queuedFocus &&\n attemptReplayContinuousQueuedEvent(queuedFocus) &&\n (queuedFocus = null);\n null !== queuedDrag &&\n attemptReplayContinuousQueuedEvent(queuedDrag) &&\n (queuedDrag = null);\n null !== queuedMouse &&\n attemptReplayContinuousQueuedEvent(queuedMouse) &&\n (queuedMouse = null);\n queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap);\n queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap);\n }\n function scheduleCallbackIfUnblocked(queuedEvent, unblocked) {\n queuedEvent.blockedOn === unblocked &&\n ((queuedEvent.blockedOn = null),\n hasScheduledReplayAttempt ||\n ((hasScheduledReplayAttempt = !0),\n Scheduler.unstable_scheduleCallback(\n Scheduler.unstable_NormalPriority,\n replayUnblockedEvents\n )));\n }\n function scheduleReplayQueueIfNeeded(formReplayingQueue) {\n lastScheduledReplayQueue !== formReplayingQueue &&\n ((lastScheduledReplayQueue = formReplayingQueue),\n Scheduler.unstable_scheduleCallback(\n Scheduler.unstable_NormalPriority,\n function () {\n lastScheduledReplayQueue === formReplayingQueue &&\n (lastScheduledReplayQueue = null);\n for (var i = 0; i < formReplayingQueue.length; i += 3) {\n var form = formReplayingQueue[i],\n submitterOrAction = formReplayingQueue[i + 1],\n formData = formReplayingQueue[i + 2];\n if (\"function\" !== typeof submitterOrAction)\n if (\n null === findInstanceBlockingTarget(submitterOrAction || form)\n )\n continue;\n else break;\n var formInst = getInstanceFromNode(form);\n null !== formInst &&\n (formReplayingQueue.splice(i, 3),\n (i -= 3),\n (form = {\n pending: !0,\n data: formData,\n method: form.method,\n action: submitterOrAction\n }),\n Object.freeze(form),\n startHostTransition(\n formInst,\n form,\n submitterOrAction,\n formData\n ));\n }\n }\n ));\n }\n function retryIfBlockedOn(unblocked) {\n function unblock(queuedEvent) {\n return scheduleCallbackIfUnblocked(queuedEvent, unblocked);\n }\n null !== queuedFocus &&\n scheduleCallbackIfUnblocked(queuedFocus, unblocked);\n null !== queuedDrag && scheduleCallbackIfUnblocked(queuedDrag, unblocked);\n null !== queuedMouse &&\n scheduleCallbackIfUnblocked(queuedMouse, unblocked);\n queuedPointers.forEach(unblock);\n queuedPointerCaptures.forEach(unblock);\n for (var i = 0; i < queuedExplicitHydrationTargets.length; i++) {\n var queuedTarget = queuedExplicitHydrationTargets[i];\n queuedTarget.blockedOn === unblocked && (queuedTarget.blockedOn = null);\n }\n for (\n ;\n 0 < queuedExplicitHydrationTargets.length &&\n ((i = queuedExplicitHydrationTargets[0]), null === i.blockedOn);\n\n )\n attemptExplicitHydrationTarget(i),\n null === i.blockedOn && queuedExplicitHydrationTargets.shift();\n i = (unblocked.ownerDocument || unblocked).$$reactFormReplay;\n if (null != i)\n for (queuedTarget = 0; queuedTarget < i.length; queuedTarget += 3) {\n var form = i[queuedTarget],\n submitterOrAction = i[queuedTarget + 1],\n formProps = form[internalPropsKey] || null;\n if (\"function\" === typeof submitterOrAction)\n formProps || scheduleReplayQueueIfNeeded(i);\n else if (formProps) {\n var action = null;\n if (\n submitterOrAction &&\n submitterOrAction.hasAttribute(\"formAction\")\n )\n if (\n ((form = submitterOrAction),\n (formProps = submitterOrAction[internalPropsKey] || null))\n )\n action = formProps.formAction;\n else {\n if (null !== findInstanceBlockingTarget(form)) continue;\n }\n else action = formProps.action;\n \"function\" === typeof action\n ? (i[queuedTarget + 1] = action)\n : (i.splice(queuedTarget, 3), (queuedTarget -= 3));\n scheduleReplayQueueIfNeeded(i);\n }\n }\n }\n function defaultOnDefaultTransitionIndicator() {\n function handleNavigate(event) {\n event.canIntercept &&\n \"react-transition\" === event.info &&\n event.intercept({\n handler: function () {\n return new Promise(function (resolve) {\n return (pendingResolve = resolve);\n });\n },\n focusReset: \"manual\",\n scroll: \"manual\"\n });\n }\n function handleNavigateComplete() {\n null !== pendingResolve && (pendingResolve(), (pendingResolve = null));\n isCancelled || setTimeout(startFakeNavigation, 20);\n }\n function startFakeNavigation() {\n if (!isCancelled && !navigation.transition) {\n var currentEntry = navigation.currentEntry;\n currentEntry &&\n null != currentEntry.url &&\n navigation.navigate(currentEntry.url, {\n state: currentEntry.getState(),\n info: \"react-transition\",\n history: \"replace\"\n });\n }\n }\n if (\"object\" === typeof navigation) {\n var isCancelled = !1,\n pendingResolve = null;\n navigation.addEventListener(\"navigate\", handleNavigate);\n navigation.addEventListener(\"navigatesuccess\", handleNavigateComplete);\n navigation.addEventListener(\"navigateerror\", handleNavigateComplete);\n setTimeout(startFakeNavigation, 100);\n return function () {\n isCancelled = !0;\n navigation.removeEventListener(\"navigate\", handleNavigate);\n navigation.removeEventListener(\n \"navigatesuccess\",\n handleNavigateComplete\n );\n navigation.removeEventListener(\n \"navigateerror\",\n handleNavigateComplete\n );\n null !== pendingResolve &&\n (pendingResolve(), (pendingResolve = null));\n };\n }\n }\n function ReactDOMRoot(internalRoot) {\n this._internalRoot = internalRoot;\n }\n function ReactDOMHydrationRoot(internalRoot) {\n this._internalRoot = internalRoot;\n }\n function warnIfReactDOMContainerInDEV(container) {\n container[internalContainerInstanceKey] &&\n (container._reactRootContainer\n ? console.error(\n \"You are calling ReactDOMClient.createRoot() on a container that was previously passed to ReactDOM.render(). This is not supported.\"\n )\n : console.error(\n \"You are calling ReactDOMClient.createRoot() on a container that has already been passed to createRoot() before. Instead, call root.render() on the existing root instead if you want to update it.\"\n ));\n }\n \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&\n \"function\" ===\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());\n var Scheduler = require(\"next/dist/compiled/scheduler\"),\n React = require(\"next/dist/compiled/react\"),\n ReactDOM = require(\"next/dist/compiled/react-dom\"),\n searchTarget = null,\n searchBoundary = null,\n assign = Object.assign,\n REACT_LEGACY_ELEMENT_TYPE = Symbol.for(\"react.element\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\");\n Symbol.for(\"react.scope\");\n var REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_LEGACY_HIDDEN_TYPE = Symbol.for(\"react.legacy_hidden\");\n Symbol.for(\"react.tracing_marker\");\n var REACT_MEMO_CACHE_SENTINEL = Symbol.for(\"react.memo_cache_sentinel\"),\n REACT_VIEW_TRANSITION_TYPE = Symbol.for(\"react.view_transition\"),\n MAYBE_ITERATOR_SYMBOL = Symbol.iterator,\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n isArrayImpl = Array.isArray,\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n ReactDOMSharedInternals =\n ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n NotPending = Object.freeze({\n pending: !1,\n data: null,\n method: null,\n action: null\n }),\n valueStack = [];\n var fiberStack = [];\n var index$jscomp$0 = -1,\n contextStackCursor = createCursor(null),\n contextFiberStackCursor = createCursor(null),\n rootInstanceStackCursor = createCursor(null),\n hostTransitionProviderCursor = createCursor(null),\n disabledDepth = 0,\n prevLog,\n prevInfo,\n prevWarn,\n prevError,\n prevGroup,\n prevGroupCollapsed,\n prevGroupEnd;\n disabledLog.__reactDisabledLog = !0;\n var prefix,\n suffix,\n reentry = !1;\n var componentFrameCache = new (\n \"function\" === typeof WeakMap ? WeakMap : Map\n )();\n var current = null,\n isRendering = !1,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n scheduleCallback$3 = Scheduler.unstable_scheduleCallback,\n cancelCallback$1 = Scheduler.unstable_cancelCallback,\n shouldYield = Scheduler.unstable_shouldYield,\n requestPaint = Scheduler.unstable_requestPaint,\n now$1 = Scheduler.unstable_now,\n getCurrentPriorityLevel = Scheduler.unstable_getCurrentPriorityLevel,\n ImmediatePriority = Scheduler.unstable_ImmediatePriority,\n UserBlockingPriority = Scheduler.unstable_UserBlockingPriority,\n NormalPriority$1 = Scheduler.unstable_NormalPriority,\n LowPriority = Scheduler.unstable_LowPriority,\n IdlePriority = Scheduler.unstable_IdlePriority,\n log$1 = Scheduler.log,\n unstable_setDisableYieldValue = Scheduler.unstable_setDisableYieldValue,\n rendererID = null,\n injectedHook = null,\n hasLoggedError = !1,\n isDevToolsPresent = \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__,\n clz32 = Math.clz32 ? Math.clz32 : clz32Fallback,\n log = Math.log,\n LN2 = Math.LN2,\n nextTransitionUpdateLane = 256,\n nextTransitionDeferredLane = 262144,\n nextRetryLane = 4194304,\n DiscreteEventPriority = 2,\n ContinuousEventPriority = 8,\n DefaultEventPriority = 32,\n IdleEventPriority = 268435456,\n randomKey = Math.random().toString(36).slice(2),\n internalInstanceKey = \"__reactFiber$\" + randomKey,\n internalPropsKey = \"__reactProps$\" + randomKey,\n internalContainerInstanceKey = \"__reactContainer$\" + randomKey,\n internalEventHandlersKey = \"__reactEvents$\" + randomKey,\n internalEventHandlerListenersKey = \"__reactListeners$\" + randomKey,\n internalEventHandlesSetKey = \"__reactHandles$\" + randomKey,\n internalRootNodeResourcesKey = \"__reactResources$\" + randomKey,\n internalHoistableMarker = \"__reactMarker$\" + randomKey,\n allNativeEvents = new Set(),\n registrationNameDependencies = {},\n possibleRegistrationNames = {},\n hasReadOnlyValue = {\n button: !0,\n checkbox: !0,\n image: !0,\n hidden: !0,\n radio: !0,\n reset: !0,\n submit: !0\n },\n VALID_ATTRIBUTE_NAME_REGEX = RegExp(\n \"^[:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD][:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*$\"\n ),\n illegalAttributeNameCache = {},\n validatedAttributeNameCache = {},\n viewTransitionMutationContext = !1,\n escapeSelectorAttributeValueInsideDoubleQuotesRegex = /[\\n\"\\\\]/g,\n didWarnValueDefaultValue$1 = !1,\n didWarnCheckedDefaultChecked = !1,\n didWarnSelectedSetOnOption = !1,\n didWarnInvalidChild = !1,\n didWarnInvalidInnerHTML = !1;\n var didWarnValueDefaultValue = !1;\n var valuePropNames = [\"value\", \"defaultValue\"],\n didWarnValDefaultVal = !1,\n needsEscaping = /[\"'&<>\\n\\t]|^\\s|\\s$/,\n specialTags =\n \"address applet area article aside base basefont bgsound blockquote body br button caption center col colgroup dd details dir div dl dt embed fieldset figcaption figure footer form frame frameset h1 h2 h3 h4 h5 h6 head header hgroup hr html iframe img input isindex li link listing main marquee menu menuitem meta nav noembed noframes noscript object ol p param plaintext pre script section select source style summary table tbody td template textarea tfoot th thead title tr track ul wbr xmp\".split(\n \" \"\n ),\n inScopeTags =\n \"applet caption html table td th marquee object template foreignObject desc title\".split(\n \" \"\n ),\n buttonScopeTags = inScopeTags.concat([\"button\"]),\n impliedEndTags = \"dd dt li option optgroup p rp rt\".split(\" \"),\n emptyAncestorInfoDev = {\n current: null,\n formTag: null,\n aTagInScope: null,\n buttonTagInScope: null,\n nobrTagInScope: null,\n pTagInButtonScope: null,\n listItemTagAutoclosing: null,\n dlItemTagAutoclosing: null,\n containerTagInScope: null,\n implicitRootScope: !1\n },\n didWarn = {},\n shorthandToLonghand = {\n animation:\n \"animationDelay animationDirection animationDuration animationFillMode animationIterationCount animationName animationPlayState animationTimingFunction\".split(\n \" \"\n ),\n background:\n \"backgroundAttachment backgroundClip backgroundColor backgroundImage backgroundOrigin backgroundPositionX backgroundPositionY backgroundRepeat backgroundSize\".split(\n \" \"\n ),\n backgroundPosition: [\"backgroundPositionX\", \"backgroundPositionY\"],\n border:\n \"borderBottomColor borderBottomStyle borderBottomWidth borderImageOutset borderImageRepeat borderImageSlice borderImageSource borderImageWidth borderLeftColor borderLeftStyle borderLeftWidth borderRightColor borderRightStyle borderRightWidth borderTopColor borderTopStyle borderTopWidth\".split(\n \" \"\n ),\n borderBlockEnd: [\n \"borderBlockEndColor\",\n \"borderBlockEndStyle\",\n \"borderBlockEndWidth\"\n ],\n borderBlockStart: [\n \"borderBlockStartColor\",\n \"borderBlockStartStyle\",\n \"borderBlockStartWidth\"\n ],\n borderBottom: [\n \"borderBottomColor\",\n \"borderBottomStyle\",\n \"borderBottomWidth\"\n ],\n borderColor: [\n \"borderBottomColor\",\n \"borderLeftColor\",\n \"borderRightColor\",\n \"borderTopColor\"\n ],\n borderImage: [\n \"borderImageOutset\",\n \"borderImageRepeat\",\n \"borderImageSlice\",\n \"borderImageSource\",\n \"borderImageWidth\"\n ],\n borderInlineEnd: [\n \"borderInlineEndColor\",\n \"borderInlineEndStyle\",\n \"borderInlineEndWidth\"\n ],\n borderInlineStart: [\n \"borderInlineStartColor\",\n \"borderInlineStartStyle\",\n \"borderInlineStartWidth\"\n ],\n borderLeft: [\"borderLeftColor\", \"borderLeftStyle\", \"borderLeftWidth\"],\n borderRadius: [\n \"borderBottomLeftRadius\",\n \"borderBottomRightRadius\",\n \"borderTopLeftRadius\",\n \"borderTopRightRadius\"\n ],\n borderRight: [\n \"borderRightColor\",\n \"borderRightStyle\",\n \"borderRightWidth\"\n ],\n borderStyle: [\n \"borderBottomStyle\",\n \"borderLeftStyle\",\n \"borderRightStyle\",\n \"borderTopStyle\"\n ],\n borderTop: [\"borderTopColor\", \"borderTopStyle\", \"borderTopWidth\"],\n borderWidth: [\n \"borderBottomWidth\",\n \"borderLeftWidth\",\n \"borderRightWidth\",\n \"borderTopWidth\"\n ],\n columnRule: [\"columnRuleColor\", \"columnRuleStyle\", \"columnRuleWidth\"],\n columns: [\"columnCount\", \"columnWidth\"],\n flex: [\"flexBasis\", \"flexGrow\", \"flexShrink\"],\n flexFlow: [\"flexDirection\", \"flexWrap\"],\n font: \"fontFamily fontFeatureSettings fontKerning fontLanguageOverride fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition fontWeight lineHeight\".split(\n \" \"\n ),\n fontVariant:\n \"fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition\".split(\n \" \"\n ),\n gap: [\"columnGap\", \"rowGap\"],\n grid: \"gridAutoColumns gridAutoFlow gridAutoRows gridTemplateAreas gridTemplateColumns gridTemplateRows\".split(\n \" \"\n ),\n gridArea: [\n \"gridColumnEnd\",\n \"gridColumnStart\",\n \"gridRowEnd\",\n \"gridRowStart\"\n ],\n gridColumn: [\"gridColumnEnd\", \"gridColumnStart\"],\n gridColumnGap: [\"columnGap\"],\n gridGap: [\"columnGap\", \"rowGap\"],\n gridRow: [\"gridRowEnd\", \"gridRowStart\"],\n gridRowGap: [\"rowGap\"],\n gridTemplate: [\n \"gridTemplateAreas\",\n \"gridTemplateColumns\",\n \"gridTemplateRows\"\n ],\n listStyle: [\"listStyleImage\", \"listStylePosition\", \"listStyleType\"],\n margin: [\"marginBottom\", \"marginLeft\", \"marginRight\", \"marginTop\"],\n marker: [\"markerEnd\", \"markerMid\", \"markerStart\"],\n mask: \"maskClip maskComposite maskImage maskMode maskOrigin maskPositionX maskPositionY maskRepeat maskSize\".split(\n \" \"\n ),\n maskPosition: [\"maskPositionX\", \"maskPositionY\"],\n outline: [\"outlineColor\", \"outlineStyle\", \"outlineWidth\"],\n overflow: [\"overflowX\", \"overflowY\"],\n padding: [\"paddingBottom\", \"paddingLeft\", \"paddingRight\", \"paddingTop\"],\n placeContent: [\"alignContent\", \"justifyContent\"],\n placeItems: [\"alignItems\", \"justifyItems\"],\n placeSelf: [\"alignSelf\", \"justifySelf\"],\n textDecoration: [\n \"textDecorationColor\",\n \"textDecorationLine\",\n \"textDecorationStyle\"\n ],\n textEmphasis: [\"textEmphasisColor\", \"textEmphasisStyle\"],\n transition: [\n \"transitionDelay\",\n \"transitionDuration\",\n \"transitionProperty\",\n \"transitionTimingFunction\"\n ],\n wordWrap: [\"overflowWrap\"]\n },\n uppercasePattern = /([A-Z])/g,\n msPattern$1 = /^ms-/,\n badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/,\n msPattern = /^-ms-/,\n hyphenPattern = /-(.)/g,\n badStyleValueWithSemicolonPattern = /;\\s*$/,\n warnedStyleNames = {},\n warnedStyleValues = {},\n warnedForNaNValue = !1,\n warnedForInfinityValue = !1,\n unitlessNumbers = new Set(\n \"animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp\".split(\n \" \"\n )\n ),\n MATH_NAMESPACE = \"http://www.w3.org/1998/Math/MathML\",\n SVG_NAMESPACE = \"http://www.w3.org/2000/svg\",\n aliases = new Map([\n [\"acceptCharset\", \"accept-charset\"],\n [\"htmlFor\", \"for\"],\n [\"httpEquiv\", \"http-equiv\"],\n [\"crossOrigin\", \"crossorigin\"],\n [\"accentHeight\", \"accent-height\"],\n [\"alignmentBaseline\", \"alignment-baseline\"],\n [\"arabicForm\", \"arabic-form\"],\n [\"baselineShift\", \"baseline-shift\"],\n [\"capHeight\", \"cap-height\"],\n [\"clipPath\", \"clip-path\"],\n [\"clipRule\", \"clip-rule\"],\n [\"colorInterpolation\", \"color-interpolation\"],\n [\"colorInterpolationFilters\", \"color-interpolation-filters\"],\n [\"colorProfile\", \"color-profile\"],\n [\"colorRendering\", \"color-rendering\"],\n [\"dominantBaseline\", \"dominant-baseline\"],\n [\"enableBackground\", \"enable-background\"],\n [\"fillOpacity\", \"fill-opacity\"],\n [\"fillRule\", \"fill-rule\"],\n [\"floodColor\", \"flood-color\"],\n [\"floodOpacity\", \"flood-opacity\"],\n [\"fontFamily\", \"font-family\"],\n [\"fontSize\", \"font-size\"],\n [\"fontSizeAdjust\", \"font-size-adjust\"],\n [\"fontStretch\", \"font-stretch\"],\n [\"fontStyle\", \"font-style\"],\n [\"fontVariant\", \"font-variant\"],\n [\"fontWeight\", \"font-weight\"],\n [\"glyphName\", \"glyph-name\"],\n [\"glyphOrientationHorizontal\", \"glyph-orientation-horizontal\"],\n [\"glyphOrientationVertical\", \"glyph-orientation-vertical\"],\n [\"horizAdvX\", \"horiz-adv-x\"],\n [\"horizOriginX\", \"horiz-origin-x\"],\n [\"imageRendering\", \"image-rendering\"],\n [\"letterSpacing\", \"letter-spacing\"],\n [\"lightingColor\", \"lighting-color\"],\n [\"markerEnd\", \"marker-end\"],\n [\"markerMid\", \"marker-mid\"],\n [\"markerStart\", \"marker-start\"],\n [\"overlinePosition\", \"overline-position\"],\n [\"overlineThickness\", \"overline-thickness\"],\n [\"paintOrder\", \"paint-order\"],\n [\"panose-1\", \"panose-1\"],\n [\"pointerEvents\", \"pointer-events\"],\n [\"renderingIntent\", \"rendering-intent\"],\n [\"shapeRendering\", \"shape-rendering\"],\n [\"stopColor\", \"stop-color\"],\n [\"stopOpacity\", \"stop-opacity\"],\n [\"strikethroughPosition\", \"strikethrough-position\"],\n [\"strikethroughThickness\", \"strikethrough-thickness\"],\n [\"strokeDasharray\", \"stroke-dasharray\"],\n [\"strokeDashoffset\", \"stroke-dashoffset\"],\n [\"strokeLinecap\", \"stroke-linecap\"],\n [\"strokeLinejoin\", \"stroke-linejoin\"],\n [\"strokeMiterlimit\", \"stroke-miterlimit\"],\n [\"strokeOpacity\", \"stroke-opacity\"],\n [\"strokeWidth\", \"stroke-width\"],\n [\"textAnchor\", \"text-anchor\"],\n [\"textDecoration\", \"text-decoration\"],\n [\"textRendering\", \"text-rendering\"],\n [\"transformOrigin\", \"transform-origin\"],\n [\"underlinePosition\", \"underline-position\"],\n [\"underlineThickness\", \"underline-thickness\"],\n [\"unicodeBidi\", \"unicode-bidi\"],\n [\"unicodeRange\", \"unicode-range\"],\n [\"unitsPerEm\", \"units-per-em\"],\n [\"vAlphabetic\", \"v-alphabetic\"],\n [\"vHanging\", \"v-hanging\"],\n [\"vIdeographic\", \"v-ideographic\"],\n [\"vMathematical\", \"v-mathematical\"],\n [\"vectorEffect\", \"vector-effect\"],\n [\"vertAdvY\", \"vert-adv-y\"],\n [\"vertOriginX\", \"vert-origin-x\"],\n [\"vertOriginY\", \"vert-origin-y\"],\n [\"wordSpacing\", \"word-spacing\"],\n [\"writingMode\", \"writing-mode\"],\n [\"xmlnsXlink\", \"xmlns:xlink\"],\n [\"xHeight\", \"x-height\"]\n ]),\n possibleStandardNames = {\n accept: \"accept\",\n acceptcharset: \"acceptCharset\",\n \"accept-charset\": \"acceptCharset\",\n accesskey: \"accessKey\",\n action: \"action\",\n allowfullscreen: \"allowFullScreen\",\n alt: \"alt\",\n as: \"as\",\n async: \"async\",\n autocapitalize: \"autoCapitalize\",\n autocomplete: \"autoComplete\",\n autocorrect: \"autoCorrect\",\n autofocus: \"autoFocus\",\n autoplay: \"autoPlay\",\n autosave: \"autoSave\",\n capture: \"capture\",\n cellpadding: \"cellPadding\",\n cellspacing: \"cellSpacing\",\n challenge: \"challenge\",\n charset: \"charSet\",\n checked: \"checked\",\n children: \"children\",\n cite: \"cite\",\n class: \"className\",\n classid: \"classID\",\n classname: \"className\",\n cols: \"cols\",\n colspan: \"colSpan\",\n content: \"content\",\n contenteditable: \"contentEditable\",\n contextmenu: \"contextMenu\",\n controls: \"controls\",\n controlslist: \"controlsList\",\n coords: \"coords\",\n crossorigin: \"crossOrigin\",\n dangerouslysetinnerhtml: \"dangerouslySetInnerHTML\",\n data: \"data\",\n datetime: \"dateTime\",\n default: \"default\",\n defaultchecked: \"defaultChecked\",\n defaultvalue: \"defaultValue\",\n defer: \"defer\",\n dir: \"dir\",\n disabled: \"disabled\",\n disablepictureinpicture: \"disablePictureInPicture\",\n disableremoteplayback: \"disableRemotePlayback\",\n download: \"download\",\n draggable: \"draggable\",\n enctype: \"encType\",\n enterkeyhint: \"enterKeyHint\",\n fetchpriority: \"fetchPriority\",\n for: \"htmlFor\",\n form: \"form\",\n formmethod: \"formMethod\",\n formaction: \"formAction\",\n formenctype: \"formEncType\",\n formnovalidate: \"formNoValidate\",\n formtarget: \"formTarget\",\n frameborder: \"frameBorder\",\n headers: \"headers\",\n height: \"height\",\n hidden: \"hidden\",\n high: \"high\",\n href: \"href\",\n hreflang: \"hrefLang\",\n htmlfor: \"htmlFor\",\n httpequiv: \"httpEquiv\",\n \"http-equiv\": \"httpEquiv\",\n icon: \"icon\",\n id: \"id\",\n imagesizes: \"imageSizes\",\n imagesrcset: \"imageSrcSet\",\n inert: \"inert\",\n innerhtml: \"innerHTML\",\n inputmode: \"inputMode\",\n integrity: \"integrity\",\n is: \"is\",\n itemid: \"itemID\",\n itemprop: \"itemProp\",\n itemref: \"itemRef\",\n itemscope: \"itemScope\",\n itemtype: \"itemType\",\n keyparams: \"keyParams\",\n keytype: \"keyType\",\n kind: \"kind\",\n label: \"label\",\n lang: \"lang\",\n list: \"list\",\n loop: \"loop\",\n low: \"low\",\n manifest: \"manifest\",\n marginwidth: \"marginWidth\",\n marginheight: \"marginHeight\",\n max: \"max\",\n maxlength: \"maxLength\",\n media: \"media\",\n mediagroup: \"mediaGroup\",\n method: \"method\",\n min: \"min\",\n minlength: \"minLength\",\n multiple: \"multiple\",\n muted: \"muted\",\n name: \"name\",\n nomodule: \"noModule\",\n nonce: \"nonce\",\n novalidate: \"noValidate\",\n open: \"open\",\n optimum: \"optimum\",\n pattern: \"pattern\",\n placeholder: \"placeholder\",\n playsinline: \"playsInline\",\n poster: \"poster\",\n preload: \"preload\",\n profile: \"profile\",\n radiogroup: \"radioGroup\",\n readonly: \"readOnly\",\n referrerpolicy: \"referrerPolicy\",\n rel: \"rel\",\n required: \"required\",\n reversed: \"reversed\",\n role: \"role\",\n rows: \"rows\",\n rowspan: \"rowSpan\",\n sandbox: \"sandbox\",\n scope: \"scope\",\n scoped: \"scoped\",\n scrolling: \"scrolling\",\n seamless: \"seamless\",\n selected: \"selected\",\n shape: \"shape\",\n size: \"size\",\n sizes: \"sizes\",\n span: \"span\",\n spellcheck: \"spellCheck\",\n src: \"src\",\n srcdoc: \"srcDoc\",\n srclang: \"srcLang\",\n srcset: \"srcSet\",\n start: \"start\",\n step: \"step\",\n style: \"style\",\n summary: \"summary\",\n tabindex: \"tabIndex\",\n target: \"target\",\n title: \"title\",\n type: \"type\",\n usemap: \"useMap\",\n value: \"value\",\n width: \"width\",\n wmode: \"wmode\",\n wrap: \"wrap\",\n about: \"about\",\n accentheight: \"accentHeight\",\n \"accent-height\": \"accentHeight\",\n accumulate: \"accumulate\",\n additive: \"additive\",\n alignmentbaseline: \"alignmentBaseline\",\n \"alignment-baseline\": \"alignmentBaseline\",\n allowreorder: \"allowReorder\",\n alphabetic: \"alphabetic\",\n amplitude: \"amplitude\",\n arabicform: \"arabicForm\",\n \"arabic-form\": \"arabicForm\",\n ascent: \"ascent\",\n attributename: \"attributeName\",\n attributetype: \"attributeType\",\n autoreverse: \"autoReverse\",\n azimuth: \"azimuth\",\n basefrequency: \"baseFrequency\",\n baselineshift: \"baselineShift\",\n \"baseline-shift\": \"baselineShift\",\n baseprofile: \"baseProfile\",\n bbox: \"bbox\",\n begin: \"begin\",\n bias: \"bias\",\n by: \"by\",\n calcmode: \"calcMode\",\n capheight: \"capHeight\",\n \"cap-height\": \"capHeight\",\n clip: \"clip\",\n clippath: \"clipPath\",\n \"clip-path\": \"clipPath\",\n clippathunits: \"clipPathUnits\",\n cliprule: \"clipRule\",\n \"clip-rule\": \"clipRule\",\n color: \"color\",\n colorinterpolation: \"colorInterpolation\",\n \"color-interpolation\": \"colorInterpolation\",\n colorinterpolationfilters: \"colorInterpolationFilters\",\n \"color-interpolation-filters\": \"colorInterpolationFilters\",\n colorprofile: \"colorProfile\",\n \"color-profile\": \"colorProfile\",\n colorrendering: \"colorRendering\",\n \"color-rendering\": \"colorRendering\",\n contentscripttype: \"contentScriptType\",\n contentstyletype: \"contentStyleType\",\n cursor: \"cursor\",\n cx: \"cx\",\n cy: \"cy\",\n d: \"d\",\n datatype: \"datatype\",\n decelerate: \"decelerate\",\n descent: \"descent\",\n diffuseconstant: \"diffuseConstant\",\n direction: \"direction\",\n display: \"display\",\n divisor: \"divisor\",\n dominantbaseline: \"dominantBaseline\",\n \"dominant-baseline\": \"dominantBaseline\",\n dur: \"dur\",\n dx: \"dx\",\n dy: \"dy\",\n edgemode: \"edgeMode\",\n elevation: \"elevation\",\n enablebackground: \"enableBackground\",\n \"enable-background\": \"enableBackground\",\n end: \"end\",\n exponent: \"exponent\",\n externalresourcesrequired: \"externalResourcesRequired\",\n fill: \"fill\",\n fillopacity: \"fillOpacity\",\n \"fill-opacity\": \"fillOpacity\",\n fillrule: \"fillRule\",\n \"fill-rule\": \"fillRule\",\n filter: \"filter\",\n filterres: \"filterRes\",\n filterunits: \"filterUnits\",\n floodopacity: \"floodOpacity\",\n \"flood-opacity\": \"floodOpacity\",\n floodcolor: \"floodColor\",\n \"flood-color\": \"floodColor\",\n focusable: \"focusable\",\n fontfamily: \"fontFamily\",\n \"font-family\": \"fontFamily\",\n fontsize: \"fontSize\",\n \"font-size\": \"fontSize\",\n fontsizeadjust: \"fontSizeAdjust\",\n \"font-size-adjust\": \"fontSizeAdjust\",\n fontstretch: \"fontStretch\",\n \"font-stretch\": \"fontStretch\",\n fontstyle: \"fontStyle\",\n \"font-style\": \"fontStyle\",\n fontvariant: \"fontVariant\",\n \"font-variant\": \"fontVariant\",\n fontweight: \"fontWeight\",\n \"font-weight\": \"fontWeight\",\n format: \"format\",\n from: \"from\",\n fx: \"fx\",\n fy: \"fy\",\n g1: \"g1\",\n g2: \"g2\",\n glyphname: \"glyphName\",\n \"glyph-name\": \"glyphName\",\n glyphorientationhorizontal: \"glyphOrientationHorizontal\",\n \"glyph-orientation-horizontal\": \"glyphOrientationHorizontal\",\n glyphorientationvertical: \"glyphOrientationVertical\",\n \"glyph-orientation-vertical\": \"glyphOrientationVertical\",\n glyphref: \"glyphRef\",\n gradienttransform: \"gradientTransform\",\n gradientunits: \"gradientUnits\",\n hanging: \"hanging\",\n horizadvx: \"horizAdvX\",\n \"horiz-adv-x\": \"horizAdvX\",\n horizoriginx: \"horizOriginX\",\n \"horiz-origin-x\": \"horizOriginX\",\n ideographic: \"ideographic\",\n imagerendering: \"imageRendering\",\n \"image-rendering\": \"imageRendering\",\n in2: \"in2\",\n in: \"in\",\n inlist: \"inlist\",\n intercept: \"intercept\",\n k1: \"k1\",\n k2: \"k2\",\n k3: \"k3\",\n k4: \"k4\",\n k: \"k\",\n kernelmatrix: \"kernelMatrix\",\n kernelunitlength: \"kernelUnitLength\",\n kerning: \"kerning\",\n keypoints: \"keyPoints\",\n keysplines: \"keySplines\",\n keytimes: \"keyTimes\",\n lengthadjust: \"lengthAdjust\",\n letterspacing: \"letterSpacing\",\n \"letter-spacing\": \"letterSpacing\",\n lightingcolor: \"lightingColor\",\n \"lighting-color\": \"lightingColor\",\n limitingconeangle: \"limitingConeAngle\",\n local: \"local\",\n markerend: \"markerEnd\",\n \"marker-end\": \"markerEnd\",\n markerheight: \"markerHeight\",\n markermid: \"markerMid\",\n \"marker-mid\": \"markerMid\",\n markerstart: \"markerStart\",\n \"marker-start\": \"markerStart\",\n markerunits: \"markerUnits\",\n markerwidth: \"markerWidth\",\n mask: \"mask\",\n maskcontentunits: \"maskContentUnits\",\n maskunits: \"maskUnits\",\n mathematical: \"mathematical\",\n mode: \"mode\",\n numoctaves: \"numOctaves\",\n offset: \"offset\",\n opacity: \"opacity\",\n operator: \"operator\",\n order: \"order\",\n orient: \"orient\",\n orientation: \"orientation\",\n origin: \"origin\",\n overflow: \"overflow\",\n overlineposition: \"overlinePosition\",\n \"overline-position\": \"overlinePosition\",\n overlinethickness: \"overlineThickness\",\n \"overline-thickness\": \"overlineThickness\",\n paintorder: \"paintOrder\",\n \"paint-order\": \"paintOrder\",\n panose1: \"panose1\",\n \"panose-1\": \"panose1\",\n pathlength: \"pathLength\",\n patterncontentunits: \"patternContentUnits\",\n patterntransform: \"patternTransform\",\n patternunits: \"patternUnits\",\n pointerevents: \"pointerEvents\",\n \"pointer-events\": \"pointerEvents\",\n points: \"points\",\n pointsatx: \"pointsAtX\",\n pointsaty: \"pointsAtY\",\n pointsatz: \"pointsAtZ\",\n popover: \"popover\",\n popovertarget: \"popoverTarget\",\n popovertargetaction: \"popoverTargetAction\",\n prefix: \"prefix\",\n preservealpha: \"preserveAlpha\",\n preserveaspectratio: \"preserveAspectRatio\",\n primitiveunits: \"primitiveUnits\",\n property: \"property\",\n r: \"r\",\n radius: \"radius\",\n refx: \"refX\",\n refy: \"refY\",\n renderingintent: \"renderingIntent\",\n \"rendering-intent\": \"renderingIntent\",\n repeatcount: \"repeatCount\",\n repeatdur: \"repeatDur\",\n requiredextensions: \"requiredExtensions\",\n requiredfeatures: \"requiredFeatures\",\n resource: \"resource\",\n restart: \"restart\",\n result: \"result\",\n results: \"results\",\n rotate: \"rotate\",\n rx: \"rx\",\n ry: \"ry\",\n scale: \"scale\",\n security: \"security\",\n seed: \"seed\",\n shaperendering: \"shapeRendering\",\n \"shape-rendering\": \"shapeRendering\",\n slope: \"slope\",\n spacing: \"spacing\",\n specularconstant: \"specularConstant\",\n specularexponent: \"specularExponent\",\n speed: \"speed\",\n spreadmethod: \"spreadMethod\",\n startoffset: \"startOffset\",\n stddeviation: \"stdDeviation\",\n stemh: \"stemh\",\n stemv: \"stemv\",\n stitchtiles: \"stitchTiles\",\n stopcolor: \"stopColor\",\n \"stop-color\": \"stopColor\",\n stopopacity: \"stopOpacity\",\n \"stop-opacity\": \"stopOpacity\",\n strikethroughposition: \"strikethroughPosition\",\n \"strikethrough-position\": \"strikethroughPosition\",\n strikethroughthickness: \"strikethroughThickness\",\n \"strikethrough-thickness\": \"strikethroughThickness\",\n string: \"string\",\n stroke: \"stroke\",\n strokedasharray: \"strokeDasharray\",\n \"stroke-dasharray\": \"strokeDasharray\",\n strokedashoffset: \"strokeDashoffset\",\n \"stroke-dashoffset\": \"strokeDashoffset\",\n strokelinecap: \"strokeLinecap\",\n \"stroke-linecap\": \"strokeLinecap\",\n strokelinejoin: \"strokeLinejoin\",\n \"stroke-linejoin\": \"strokeLinejoin\",\n strokemiterlimit: \"strokeMiterlimit\",\n \"stroke-miterlimit\": \"strokeMiterlimit\",\n strokewidth: \"strokeWidth\",\n \"stroke-width\": \"strokeWidth\",\n strokeopacity: \"strokeOpacity\",\n \"stroke-opacity\": \"strokeOpacity\",\n suppresscontenteditablewarning: \"suppressContentEditableWarning\",\n suppresshydrationwarning: \"suppressHydrationWarning\",\n surfacescale: \"surfaceScale\",\n systemlanguage: \"systemLanguage\",\n tablevalues: \"tableValues\",\n targetx: \"targetX\",\n targety: \"targetY\",\n textanchor: \"textAnchor\",\n \"text-anchor\": \"textAnchor\",\n textdecoration: \"textDecoration\",\n \"text-decoration\": \"textDecoration\",\n textlength: \"textLength\",\n textrendering: \"textRendering\",\n \"text-rendering\": \"textRendering\",\n to: \"to\",\n transform: \"transform\",\n transformorigin: \"transformOrigin\",\n \"transform-origin\": \"transformOrigin\",\n typeof: \"typeof\",\n u1: \"u1\",\n u2: \"u2\",\n underlineposition: \"underlinePosition\",\n \"underline-position\": \"underlinePosition\",\n underlinethickness: \"underlineThickness\",\n \"underline-thickness\": \"underlineThickness\",\n unicode: \"unicode\",\n unicodebidi: \"unicodeBidi\",\n \"unicode-bidi\": \"unicodeBidi\",\n unicoderange: \"unicodeRange\",\n \"unicode-range\": \"unicodeRange\",\n unitsperem: \"unitsPerEm\",\n \"units-per-em\": \"unitsPerEm\",\n unselectable: \"unselectable\",\n valphabetic: \"vAlphabetic\",\n \"v-alphabetic\": \"vAlphabetic\",\n values: \"values\",\n vectoreffect: \"vectorEffect\",\n \"vector-effect\": \"vectorEffect\",\n version: \"version\",\n vertadvy: \"vertAdvY\",\n \"vert-adv-y\": \"vertAdvY\",\n vertoriginx: \"vertOriginX\",\n \"vert-origin-x\": \"vertOriginX\",\n vertoriginy: \"vertOriginY\",\n \"vert-origin-y\": \"vertOriginY\",\n vhanging: \"vHanging\",\n \"v-hanging\": \"vHanging\",\n videographic: \"vIdeographic\",\n \"v-ideographic\": \"vIdeographic\",\n viewbox: \"viewBox\",\n viewtarget: \"viewTarget\",\n visibility: \"visibility\",\n vmathematical: \"vMathematical\",\n \"v-mathematical\": \"vMathematical\",\n vocab: \"vocab\",\n widths: \"widths\",\n wordspacing: \"wordSpacing\",\n \"word-spacing\": \"wordSpacing\",\n writingmode: \"writingMode\",\n \"writing-mode\": \"writingMode\",\n x1: \"x1\",\n x2: \"x2\",\n x: \"x\",\n xchannelselector: \"xChannelSelector\",\n xheight: \"xHeight\",\n \"x-height\": \"xHeight\",\n xlinkactuate: \"xlinkActuate\",\n \"xlink:actuate\": \"xlinkActuate\",\n xlinkarcrole: \"xlinkArcrole\",\n \"xlink:arcrole\": \"xlinkArcrole\",\n xlinkhref: \"xlinkHref\",\n \"xlink:href\": \"xlinkHref\",\n xlinkrole: \"xlinkRole\",\n \"xlink:role\": \"xlinkRole\",\n xlinkshow: \"xlinkShow\",\n \"xlink:show\": \"xlinkShow\",\n xlinktitle: \"xlinkTitle\",\n \"xlink:title\": \"xlinkTitle\",\n xlinktype: \"xlinkType\",\n \"xlink:type\": \"xlinkType\",\n xmlbase: \"xmlBase\",\n \"xml:base\": \"xmlBase\",\n xmllang: \"xmlLang\",\n \"xml:lang\": \"xmlLang\",\n xmlns: \"xmlns\",\n \"xml:space\": \"xmlSpace\",\n xmlnsxlink: \"xmlnsXlink\",\n \"xmlns:xlink\": \"xmlnsXlink\",\n xmlspace: \"xmlSpace\",\n y1: \"y1\",\n y2: \"y2\",\n y: \"y\",\n ychannelselector: \"yChannelSelector\",\n z: \"z\",\n zoomandpan: \"zoomAndPan\"\n },\n ariaProperties = {\n \"aria-current\": 0,\n \"aria-description\": 0,\n \"aria-details\": 0,\n \"aria-disabled\": 0,\n \"aria-hidden\": 0,\n \"aria-invalid\": 0,\n \"aria-keyshortcuts\": 0,\n \"aria-label\": 0,\n \"aria-roledescription\": 0,\n \"aria-autocomplete\": 0,\n \"aria-checked\": 0,\n \"aria-expanded\": 0,\n \"aria-haspopup\": 0,\n \"aria-level\": 0,\n \"aria-modal\": 0,\n \"aria-multiline\": 0,\n \"aria-multiselectable\": 0,\n \"aria-orientation\": 0,\n \"aria-placeholder\": 0,\n \"aria-pressed\": 0,\n \"aria-readonly\": 0,\n \"aria-required\": 0,\n \"aria-selected\": 0,\n \"aria-sort\": 0,\n \"aria-valuemax\": 0,\n \"aria-valuemin\": 0,\n \"aria-valuenow\": 0,\n \"aria-valuetext\": 0,\n \"aria-atomic\": 0,\n \"aria-busy\": 0,\n \"aria-live\": 0,\n \"aria-relevant\": 0,\n \"aria-dropeffect\": 0,\n \"aria-grabbed\": 0,\n \"aria-activedescendant\": 0,\n \"aria-colcount\": 0,\n \"aria-colindex\": 0,\n \"aria-colspan\": 0,\n \"aria-controls\": 0,\n \"aria-describedby\": 0,\n \"aria-errormessage\": 0,\n \"aria-flowto\": 0,\n \"aria-labelledby\": 0,\n \"aria-owns\": 0,\n \"aria-posinset\": 0,\n \"aria-rowcount\": 0,\n \"aria-rowindex\": 0,\n \"aria-rowspan\": 0,\n \"aria-setsize\": 0,\n \"aria-braillelabel\": 0,\n \"aria-brailleroledescription\": 0,\n \"aria-colindextext\": 0,\n \"aria-rowindextext\": 0\n },\n warnedProperties$1 = {},\n rARIA$1 = RegExp(\n \"^(aria)-[:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*$\"\n ),\n rARIACamel$1 = RegExp(\n \"^(aria)[A-Z][:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*$\"\n ),\n didWarnValueNull = !1,\n warnedProperties = {},\n EVENT_NAME_REGEX = /^on./,\n INVALID_EVENT_NAME_REGEX = /^on[^A-Z]/,\n rARIA = RegExp(\n \"^(aria)-[:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*$\"\n ),\n rARIACamel = RegExp(\n \"^(aria)[A-Z][:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*$\"\n ),\n isJavaScriptProtocol =\n /^[\\u0000-\\u001F ]*j[\\r\\n\\t]*a[\\r\\n\\t]*v[\\r\\n\\t]*a[\\r\\n\\t]*s[\\r\\n\\t]*c[\\r\\n\\t]*r[\\r\\n\\t]*i[\\r\\n\\t]*p[\\r\\n\\t]*t[\\r\\n\\t]*:/i,\n currentReplayingEvent = null,\n restoreTarget = null,\n restoreQueue = null,\n isInsideEventHandler = !1,\n canUseDOM = !(\n \"undefined\" === typeof window ||\n \"undefined\" === typeof window.document ||\n \"undefined\" === typeof window.document.createElement\n ),\n passiveBrowserEventsSupported = !1;\n if (canUseDOM)\n try {\n var options$jscomp$0 = {};\n Object.defineProperty(options$jscomp$0, \"passive\", {\n get: function () {\n passiveBrowserEventsSupported = !0;\n }\n });\n window.addEventListener(\"test\", options$jscomp$0, options$jscomp$0);\n window.removeEventListener(\"test\", options$jscomp$0, options$jscomp$0);\n } catch (e) {\n passiveBrowserEventsSupported = !1;\n }\n var root = null,\n startText = null,\n fallbackText = null,\n EventInterface = {\n eventPhase: 0,\n bubbles: 0,\n cancelable: 0,\n timeStamp: function (event) {\n return event.timeStamp || Date.now();\n },\n defaultPrevented: 0,\n isTrusted: 0\n },\n SyntheticEvent = createSyntheticEvent(EventInterface),\n UIEventInterface = assign({}, EventInterface, { view: 0, detail: 0 }),\n SyntheticUIEvent = createSyntheticEvent(UIEventInterface),\n lastMovementX,\n lastMovementY,\n lastMouseEvent,\n MouseEventInterface = assign({}, UIEventInterface, {\n screenX: 0,\n screenY: 0,\n clientX: 0,\n clientY: 0,\n pageX: 0,\n pageY: 0,\n ctrlKey: 0,\n shiftKey: 0,\n altKey: 0,\n metaKey: 0,\n getModifierState: getEventModifierState,\n button: 0,\n buttons: 0,\n relatedTarget: function (event) {\n return void 0 === event.relatedTarget\n ? event.fromElement === event.srcElement\n ? event.toElement\n : event.fromElement\n : event.relatedTarget;\n },\n movementX: function (event) {\n if (\"movementX\" in event) return event.movementX;\n event !== lastMouseEvent &&\n (lastMouseEvent && \"mousemove\" === event.type\n ? ((lastMovementX = event.screenX - lastMouseEvent.screenX),\n (lastMovementY = event.screenY - lastMouseEvent.screenY))\n : (lastMovementY = lastMovementX = 0),\n (lastMouseEvent = event));\n return lastMovementX;\n },\n movementY: function (event) {\n return \"movementY\" in event ? event.movementY : lastMovementY;\n }\n }),\n SyntheticMouseEvent = createSyntheticEvent(MouseEventInterface),\n DragEventInterface = assign({}, MouseEventInterface, { dataTransfer: 0 }),\n SyntheticDragEvent = createSyntheticEvent(DragEventInterface),\n FocusEventInterface = assign({}, UIEventInterface, { relatedTarget: 0 }),\n SyntheticFocusEvent = createSyntheticEvent(FocusEventInterface),\n AnimationEventInterface = assign({}, EventInterface, {\n animationName: 0,\n elapsedTime: 0,\n pseudoElement: 0\n }),\n SyntheticAnimationEvent = createSyntheticEvent(AnimationEventInterface),\n ClipboardEventInterface = assign({}, EventInterface, {\n clipboardData: function (event) {\n return \"clipboardData\" in event\n ? event.clipboardData\n : window.clipboardData;\n }\n }),\n SyntheticClipboardEvent = createSyntheticEvent(ClipboardEventInterface),\n CompositionEventInterface = assign({}, EventInterface, { data: 0 }),\n SyntheticCompositionEvent = createSyntheticEvent(\n CompositionEventInterface\n ),\n SyntheticInputEvent = SyntheticCompositionEvent,\n normalizeKey = {\n Esc: \"Escape\",\n Spacebar: \" \",\n Left: \"ArrowLeft\",\n Up: \"ArrowUp\",\n Right: \"ArrowRight\",\n Down: \"ArrowDown\",\n Del: \"Delete\",\n Win: \"OS\",\n Menu: \"ContextMenu\",\n Apps: \"ContextMenu\",\n Scroll: \"ScrollLock\",\n MozPrintableKey: \"Unidentified\"\n },\n translateToKey = {\n 8: \"Backspace\",\n 9: \"Tab\",\n 12: \"Clear\",\n 13: \"Enter\",\n 16: \"Shift\",\n 17: \"Control\",\n 18: \"Alt\",\n 19: \"Pause\",\n 20: \"CapsLock\",\n 27: \"Escape\",\n 32: \" \",\n 33: \"PageUp\",\n 34: \"PageDown\",\n 35: \"End\",\n 36: \"Home\",\n 37: \"ArrowLeft\",\n 38: \"ArrowUp\",\n 39: \"ArrowRight\",\n 40: \"ArrowDown\",\n 45: \"Insert\",\n 46: \"Delete\",\n 112: \"F1\",\n 113: \"F2\",\n 114: \"F3\",\n 115: \"F4\",\n 116: \"F5\",\n 117: \"F6\",\n 118: \"F7\",\n 119: \"F8\",\n 120: \"F9\",\n 121: \"F10\",\n 122: \"F11\",\n 123: \"F12\",\n 144: \"NumLock\",\n 145: \"ScrollLock\",\n 224: \"Meta\"\n },\n modifierKeyToProp = {\n Alt: \"altKey\",\n Control: \"ctrlKey\",\n Meta: \"metaKey\",\n Shift: \"shiftKey\"\n },\n KeyboardEventInterface = assign({}, UIEventInterface, {\n key: function (nativeEvent) {\n if (nativeEvent.key) {\n var key = normalizeKey[nativeEvent.key] || nativeEvent.key;\n if (\"Unidentified\" !== key) return key;\n }\n return \"keypress\" === nativeEvent.type\n ? ((nativeEvent = getEventCharCode(nativeEvent)),\n 13 === nativeEvent ? \"Enter\" : String.fromCharCode(nativeEvent))\n : \"keydown\" === nativeEvent.type || \"keyup\" === nativeEvent.type\n ? translateToKey[nativeEvent.keyCode] || \"Unidentified\"\n : \"\";\n },\n code: 0,\n location: 0,\n ctrlKey: 0,\n shiftKey: 0,\n altKey: 0,\n metaKey: 0,\n repeat: 0,\n locale: 0,\n getModifierState: getEventModifierState,\n charCode: function (event) {\n return \"keypress\" === event.type ? getEventCharCode(event) : 0;\n },\n keyCode: function (event) {\n return \"keydown\" === event.type || \"keyup\" === event.type\n ? event.keyCode\n : 0;\n },\n which: function (event) {\n return \"keypress\" === event.type\n ? getEventCharCode(event)\n : \"keydown\" === event.type || \"keyup\" === event.type\n ? event.keyCode\n : 0;\n }\n }),\n SyntheticKeyboardEvent = createSyntheticEvent(KeyboardEventInterface),\n PointerEventInterface = assign({}, MouseEventInterface, {\n pointerId: 0,\n width: 0,\n height: 0,\n pressure: 0,\n tangentialPressure: 0,\n tiltX: 0,\n tiltY: 0,\n twist: 0,\n pointerType: 0,\n isPrimary: 0\n }),\n SyntheticPointerEvent = createSyntheticEvent(PointerEventInterface),\n TouchEventInterface = assign({}, UIEventInterface, {\n touches: 0,\n targetTouches: 0,\n changedTouches: 0,\n altKey: 0,\n metaKey: 0,\n ctrlKey: 0,\n shiftKey: 0,\n getModifierState: getEventModifierState\n }),\n SyntheticTouchEvent = createSyntheticEvent(TouchEventInterface),\n TransitionEventInterface = assign({}, EventInterface, {\n propertyName: 0,\n elapsedTime: 0,\n pseudoElement: 0\n }),\n SyntheticTransitionEvent = createSyntheticEvent(TransitionEventInterface),\n WheelEventInterface = assign({}, MouseEventInterface, {\n deltaX: function (event) {\n return \"deltaX\" in event\n ? event.deltaX\n : \"wheelDeltaX\" in event\n ? -event.wheelDeltaX\n : 0;\n },\n deltaY: function (event) {\n return \"deltaY\" in event\n ? event.deltaY\n : \"wheelDeltaY\" in event\n ? -event.wheelDeltaY\n : \"wheelDelta\" in event\n ? -event.wheelDelta\n : 0;\n },\n deltaZ: 0,\n deltaMode: 0\n }),\n SyntheticWheelEvent = createSyntheticEvent(WheelEventInterface),\n ToggleEventInterface = assign({}, EventInterface, {\n newState: 0,\n oldState: 0\n }),\n SyntheticToggleEvent = createSyntheticEvent(ToggleEventInterface),\n END_KEYCODES = [9, 13, 27, 32],\n START_KEYCODE = 229,\n canUseCompositionEvent = canUseDOM && \"CompositionEvent\" in window,\n documentMode = null;\n canUseDOM &&\n \"documentMode\" in document &&\n (documentMode = document.documentMode);\n var canUseTextInputEvent =\n canUseDOM && \"TextEvent\" in window && !documentMode,\n useFallbackCompositionData =\n canUseDOM &&\n (!canUseCompositionEvent ||\n (documentMode && 8 < documentMode && 11 >= documentMode)),\n SPACEBAR_CODE = 32,\n SPACEBAR_CHAR = String.fromCharCode(SPACEBAR_CODE),\n hasSpaceKeypress = !1,\n isComposing = !1,\n supportedInputTypes = {\n color: !0,\n date: !0,\n datetime: !0,\n \"datetime-local\": !0,\n email: !0,\n month: !0,\n number: !0,\n password: !0,\n range: !0,\n search: !0,\n tel: !0,\n text: !0,\n time: !0,\n url: !0,\n week: !0\n },\n activeElement$1 = null,\n activeElementInst$1 = null,\n isInputEventSupported = !1;\n canUseDOM &&\n (isInputEventSupported =\n isEventSupported(\"input\") &&\n (!document.documentMode || 9 < document.documentMode));\n var objectIs = \"function\" === typeof Object.is ? Object.is : is,\n skipSelectionChangeEvent =\n canUseDOM && \"documentMode\" in document && 11 >= document.documentMode,\n activeElement = null,\n activeElementInst = null,\n lastSelection = null,\n mouseDown = !1,\n vendorPrefixes = {\n animationend: makePrefixMap(\"Animation\", \"AnimationEnd\"),\n animationiteration: makePrefixMap(\"Animation\", \"AnimationIteration\"),\n animationstart: makePrefixMap(\"Animation\", \"AnimationStart\"),\n transitionrun: makePrefixMap(\"Transition\", \"TransitionRun\"),\n transitionstart: makePrefixMap(\"Transition\", \"TransitionStart\"),\n transitioncancel: makePrefixMap(\"Transition\", \"TransitionCancel\"),\n transitionend: makePrefixMap(\"Transition\", \"TransitionEnd\")\n },\n prefixedEventNames = {},\n style = {};\n canUseDOM &&\n ((style = document.createElement(\"div\").style),\n \"AnimationEvent\" in window ||\n (delete vendorPrefixes.animationend.animation,\n delete vendorPrefixes.animationiteration.animation,\n delete vendorPrefixes.animationstart.animation),\n \"TransitionEvent\" in window ||\n delete vendorPrefixes.transitionend.transition);\n var ANIMATION_END = getVendorPrefixedEventName(\"animationend\"),\n ANIMATION_ITERATION = getVendorPrefixedEventName(\"animationiteration\"),\n ANIMATION_START = getVendorPrefixedEventName(\"animationstart\"),\n TRANSITION_RUN = getVendorPrefixedEventName(\"transitionrun\"),\n TRANSITION_START = getVendorPrefixedEventName(\"transitionstart\"),\n TRANSITION_CANCEL = getVendorPrefixedEventName(\"transitioncancel\"),\n TRANSITION_END = getVendorPrefixedEventName(\"transitionend\"),\n topLevelEventsToReactNames = new Map(),\n simpleEventPluginEvents =\n \"abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel\".split(\n \" \"\n );\n simpleEventPluginEvents.push(\"scrollEnd\");\n var globalClientIdCounter$1 = 0,\n lastResetTime = 0;\n if (\n \"object\" === typeof performance &&\n \"function\" === typeof performance.now\n ) {\n var localPerformance = performance;\n var getCurrentTime = function () {\n return localPerformance.now();\n };\n } else {\n var localDate = Date;\n getCurrentTime = function () {\n return localDate.now();\n };\n }\n var reportGlobalError =\n \"function\" === typeof reportError\n ? reportError\n : function (error) {\n if (\n \"object\" === typeof window &&\n \"function\" === typeof window.ErrorEvent\n ) {\n var event = new window.ErrorEvent(\"error\", {\n bubbles: !0,\n cancelable: !0,\n message:\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error),\n error: error\n });\n if (!window.dispatchEvent(event)) return;\n } else if (\n \"object\" === typeof process &&\n \"function\" === typeof process.emit\n ) {\n process.emit(\"uncaughtException\", error);\n return;\n }\n console.error(error);\n },\n OMITTED_PROP_ERROR =\n \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\",\n EMPTY_ARRAY = 0,\n COMPLEX_ARRAY = 1,\n PRIMITIVE_ARRAY = 2,\n ENTRIES_ARRAY = 3,\n OBJECT_WIDTH_LIMIT = 100,\n REMOVED = \"\\u2013\\u00a0\",\n ADDED = \"+\\u00a0\",\n UNCHANGED = \"\\u2007\\u00a0\",\n supportsUserTiming =\n \"undefined\" !== typeof console &&\n \"function\" === typeof console.timeStamp &&\n \"undefined\" !== typeof performance &&\n \"function\" === typeof performance.measure,\n COMPONENTS_TRACK = \"Components \\u269b\",\n LANES_TRACK_GROUP = \"Scheduler \\u269b\",\n currentTrack = \"Blocking\",\n alreadyWarnedForDeepEquality = !1,\n reusableComponentDevToolDetails = {\n color: \"primary\",\n properties: null,\n tooltipText: \"\",\n track: COMPONENTS_TRACK\n },\n reusableComponentOptions = {\n start: -0,\n end: -0,\n detail: { devtools: reusableComponentDevToolDetails }\n },\n reusableChangedPropsEntry = [\"Changed Props\", \"\"],\n DEEP_EQUALITY_WARNING =\n \"This component received deeply equal props. It might benefit from useMemo or the React Compiler in its owner.\",\n reusableDeeplyEqualPropsEntry = [\"Changed Props\", DEEP_EQUALITY_WARNING],\n OffscreenVisible = 1,\n OffscreenPassiveEffectsConnected = 2,\n concurrentQueues = [],\n concurrentQueuesIndex = 0,\n concurrentlyUpdatedLanes = 0,\n emptyContextObject = {};\n Object.freeze(emptyContextObject);\n var resolveFamily = null,\n failedBoundaries = null,\n NoMode = 0,\n ConcurrentMode = 1,\n ProfileMode = 2,\n StrictLegacyMode = 8,\n StrictEffectsMode = 16,\n SuspenseyImagesMode = 32;\n var hasBadMapPolyfill = !1;\n try {\n var nonExtensibleObject = Object.preventExtensions({});\n new Map([[nonExtensibleObject, null]]);\n new Set([nonExtensibleObject]);\n } catch (e$3) {\n hasBadMapPolyfill = !0;\n }\n var CapturedStacks = new WeakMap(),\n forkStack = [],\n forkStackIndex = 0,\n treeForkProvider = null,\n treeForkCount = 0,\n idStack = [],\n idStackIndex = 0,\n treeContextProvider = null,\n treeContextId = 1,\n treeContextOverflow = \"\",\n hydrationParentFiber = null,\n nextHydratableInstance = null,\n isHydrating = !1,\n didSuspendOrErrorDEV = !1,\n hydrationDiffRootDEV = null,\n hydrationErrors = null,\n rootOrSingletonContext = !1,\n HydrationMismatchException = Error(\n \"Hydration Mismatch Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React.\"\n ),\n valueCursor = createCursor(null);\n var rendererCursorDEV = createCursor(null);\n var rendererSigil = {};\n var currentlyRenderingFiber$1 = null,\n lastContextDependency = null,\n isDisallowedContextReadInDEV = !1,\n AbortControllerLocal =\n \"undefined\" !== typeof AbortController\n ? AbortController\n : function () {\n var listeners = [],\n signal = (this.signal = {\n aborted: !1,\n addEventListener: function (type, listener) {\n listeners.push(listener);\n }\n });\n this.abort = function () {\n signal.aborted = !0;\n listeners.forEach(function (listener) {\n return listener();\n });\n };\n },\n scheduleCallback$2 = Scheduler.unstable_scheduleCallback,\n NormalPriority = Scheduler.unstable_NormalPriority,\n CacheContext = {\n $$typeof: REACT_CONTEXT_TYPE,\n Consumer: null,\n Provider: null,\n _currentValue: null,\n _currentValue2: null,\n _threadCount: 0,\n _currentRenderer: null,\n _currentRenderer2: null\n },\n entangledTransitionTypes = null,\n now = Scheduler.unstable_now,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n },\n SPAWNED_UPDATE = 1,\n PINGED_UPDATE = 2,\n renderStartTime = -0,\n commitStartTime = -0,\n commitEndTime = -0,\n commitErrors = null,\n profilerStartTime = -1.1,\n profilerEffectDuration = -0,\n componentEffectDuration = -0,\n componentEffectStartTime = -1.1,\n componentEffectEndTime = -1.1,\n componentEffectErrors = null,\n componentEffectSpawnedUpdate = !1,\n blockingClampTime = -0,\n blockingUpdateTime = -1.1,\n blockingUpdateTask = null,\n blockingUpdateType = 0,\n blockingUpdateMethodName = null,\n blockingUpdateComponentName = null,\n blockingEventTime = -1.1,\n blockingEventType = null,\n blockingEventRepeatTime = -1.1,\n blockingSuspendedTime = -1.1,\n transitionClampTime = -0,\n transitionStartTime = -1.1,\n transitionUpdateTime = -1.1,\n transitionUpdateType = 0,\n transitionUpdateTask = null,\n transitionUpdateMethodName = null,\n transitionUpdateComponentName = null,\n transitionEventTime = -1.1,\n transitionEventType = null,\n transitionEventRepeatTime = -1.1,\n transitionSuspendedTime = -1.1,\n retryClampTime = -0,\n idleClampTime = -0,\n animatingLanes = 0,\n animatingTask = null,\n yieldReason = 0,\n yieldStartTime = -1.1,\n currentUpdateIsNested = !1,\n nestedUpdateScheduled = !1,\n currentEntangledListeners = null,\n currentEntangledPendingCount = 0,\n currentEntangledLane = 0,\n currentEntangledActionThenable = null,\n prevOnStartTransitionFinish = ReactSharedInternals.S;\n ReactSharedInternals.S = function (transition, returnValue) {\n globalMostRecentTransitionTime = now$1();\n if (\n \"object\" === typeof returnValue &&\n null !== returnValue &&\n \"function\" === typeof returnValue.then\n ) {\n if (0 > transitionStartTime && 0 > transitionUpdateTime) {\n transitionStartTime = now();\n var newEventTime = resolveEventTimeStamp(),\n newEventType = resolveEventType();\n if (\n newEventTime !== transitionEventRepeatTime ||\n newEventType !== transitionEventType\n )\n transitionEventRepeatTime = -1.1;\n transitionEventTime = newEventTime;\n transitionEventType = newEventType;\n }\n entangleAsyncAction(transition, returnValue);\n }\n if (null !== entangledTransitionTypes)\n for (newEventTime = firstScheduledRoot; null !== newEventTime; )\n queueTransitionTypes(newEventTime, entangledTransitionTypes),\n (newEventTime = newEventTime.next);\n newEventTime = transition.types;\n if (null !== newEventTime) {\n for (newEventType = firstScheduledRoot; null !== newEventType; )\n queueTransitionTypes(newEventType, newEventTime),\n (newEventType = newEventType.next);\n if (0 !== currentEntangledLane) {\n newEventType = entangledTransitionTypes;\n null === newEventType &&\n (newEventType = entangledTransitionTypes = []);\n for (var i = 0; i < newEventTime.length; i++) {\n var transitionType = newEventTime[i];\n -1 === newEventType.indexOf(transitionType) &&\n newEventType.push(transitionType);\n }\n }\n }\n null !== prevOnStartTransitionFinish &&\n prevOnStartTransitionFinish(transition, returnValue);\n };\n var resumedCache = createCursor(null),\n ReactStrictModeWarnings = {\n recordUnsafeLifecycleWarnings: function () {},\n flushPendingUnsafeLifecycleWarnings: function () {},\n recordLegacyContextWarning: function () {},\n flushLegacyContextWarning: function () {},\n discardPendingWarnings: function () {}\n },\n pendingComponentWillMountWarnings = [],\n pendingUNSAFE_ComponentWillMountWarnings = [],\n pendingComponentWillReceivePropsWarnings = [],\n pendingUNSAFE_ComponentWillReceivePropsWarnings = [],\n pendingComponentWillUpdateWarnings = [],\n pendingUNSAFE_ComponentWillUpdateWarnings = [],\n didWarnAboutUnsafeLifecycles = new Set();\n ReactStrictModeWarnings.recordUnsafeLifecycleWarnings = function (\n fiber,\n instance\n ) {\n didWarnAboutUnsafeLifecycles.has(fiber.type) ||\n (\"function\" === typeof instance.componentWillMount &&\n !0 !== instance.componentWillMount.__suppressDeprecationWarning &&\n pendingComponentWillMountWarnings.push(fiber),\n fiber.mode & StrictLegacyMode &&\n \"function\" === typeof instance.UNSAFE_componentWillMount &&\n pendingUNSAFE_ComponentWillMountWarnings.push(fiber),\n \"function\" === typeof instance.componentWillReceiveProps &&\n !0 !==\n instance.componentWillReceiveProps.__suppressDeprecationWarning &&\n pendingComponentWillReceivePropsWarnings.push(fiber),\n fiber.mode & StrictLegacyMode &&\n \"function\" === typeof instance.UNSAFE_componentWillReceiveProps &&\n pendingUNSAFE_ComponentWillReceivePropsWarnings.push(fiber),\n \"function\" === typeof instance.componentWillUpdate &&\n !0 !== instance.componentWillUpdate.__suppressDeprecationWarning &&\n pendingComponentWillUpdateWarnings.push(fiber),\n fiber.mode & StrictLegacyMode &&\n \"function\" === typeof instance.UNSAFE_componentWillUpdate &&\n pendingUNSAFE_ComponentWillUpdateWarnings.push(fiber));\n };\n ReactStrictModeWarnings.flushPendingUnsafeLifecycleWarnings = function () {\n var componentWillMountUniqueNames = new Set();\n 0 < pendingComponentWillMountWarnings.length &&\n (pendingComponentWillMountWarnings.forEach(function (fiber) {\n componentWillMountUniqueNames.add(\n getComponentNameFromFiber(fiber) || \"Component\"\n );\n didWarnAboutUnsafeLifecycles.add(fiber.type);\n }),\n (pendingComponentWillMountWarnings = []));\n var UNSAFE_componentWillMountUniqueNames = new Set();\n 0 < pendingUNSAFE_ComponentWillMountWarnings.length &&\n (pendingUNSAFE_ComponentWillMountWarnings.forEach(function (fiber) {\n UNSAFE_componentWillMountUniqueNames.add(\n getComponentNameFromFiber(fiber) || \"Component\"\n );\n didWarnAboutUnsafeLifecycles.add(fiber.type);\n }),\n (pendingUNSAFE_ComponentWillMountWarnings = []));\n var componentWillReceivePropsUniqueNames = new Set();\n 0 < pendingComponentWillReceivePropsWarnings.length &&\n (pendingComponentWillReceivePropsWarnings.forEach(function (fiber) {\n componentWillReceivePropsUniqueNames.add(\n getComponentNameFromFiber(fiber) || \"Component\"\n );\n didWarnAboutUnsafeLifecycles.add(fiber.type);\n }),\n (pendingComponentWillReceivePropsWarnings = []));\n var UNSAFE_componentWillReceivePropsUniqueNames = new Set();\n 0 < pendingUNSAFE_ComponentWillReceivePropsWarnings.length &&\n (pendingUNSAFE_ComponentWillReceivePropsWarnings.forEach(\n function (fiber) {\n UNSAFE_componentWillReceivePropsUniqueNames.add(\n getComponentNameFromFiber(fiber) || \"Component\"\n );\n didWarnAboutUnsafeLifecycles.add(fiber.type);\n }\n ),\n (pendingUNSAFE_ComponentWillReceivePropsWarnings = []));\n var componentWillUpdateUniqueNames = new Set();\n 0 < pendingComponentWillUpdateWarnings.length &&\n (pendingComponentWillUpdateWarnings.forEach(function (fiber) {\n componentWillUpdateUniqueNames.add(\n getComponentNameFromFiber(fiber) || \"Component\"\n );\n didWarnAboutUnsafeLifecycles.add(fiber.type);\n }),\n (pendingComponentWillUpdateWarnings = []));\n var UNSAFE_componentWillUpdateUniqueNames = new Set();\n 0 < pendingUNSAFE_ComponentWillUpdateWarnings.length &&\n (pendingUNSAFE_ComponentWillUpdateWarnings.forEach(function (fiber) {\n UNSAFE_componentWillUpdateUniqueNames.add(\n getComponentNameFromFiber(fiber) || \"Component\"\n );\n didWarnAboutUnsafeLifecycles.add(fiber.type);\n }),\n (pendingUNSAFE_ComponentWillUpdateWarnings = []));\n if (0 < UNSAFE_componentWillMountUniqueNames.size) {\n var sortedNames = setToSortedString(\n UNSAFE_componentWillMountUniqueNames\n );\n console.error(\n \"Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.\\n\\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\\n\\nPlease update the following components: %s\",\n sortedNames\n );\n }\n 0 < UNSAFE_componentWillReceivePropsUniqueNames.size &&\n ((sortedNames = setToSortedString(\n UNSAFE_componentWillReceivePropsUniqueNames\n )),\n console.error(\n \"Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.\\n\\n* Move data fetching code or side effects to componentDidUpdate.\\n* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state\\n\\nPlease update the following components: %s\",\n sortedNames\n ));\n 0 < UNSAFE_componentWillUpdateUniqueNames.size &&\n ((sortedNames = setToSortedString(\n UNSAFE_componentWillUpdateUniqueNames\n )),\n console.error(\n \"Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.\\n\\n* Move data fetching code or side effects to componentDidUpdate.\\n\\nPlease update the following components: %s\",\n sortedNames\n ));\n 0 < componentWillMountUniqueNames.size &&\n ((sortedNames = setToSortedString(componentWillMountUniqueNames)),\n console.warn(\n \"componentWillMount has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.\\n\\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\\n* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\\n\\nPlease update the following components: %s\",\n sortedNames\n ));\n 0 < componentWillReceivePropsUniqueNames.size &&\n ((sortedNames = setToSortedString(\n componentWillReceivePropsUniqueNames\n )),\n console.warn(\n \"componentWillReceiveProps has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.\\n\\n* Move data fetching code or side effects to componentDidUpdate.\\n* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state\\n* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\\n\\nPlease update the following components: %s\",\n sortedNames\n ));\n 0 < componentWillUpdateUniqueNames.size &&\n ((sortedNames = setToSortedString(componentWillUpdateUniqueNames)),\n console.warn(\n \"componentWillUpdate has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.\\n\\n* Move data fetching code or side effects to componentDidUpdate.\\n* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\\n\\nPlease update the following components: %s\",\n sortedNames\n ));\n };\n var pendingLegacyContextWarning = new Map(),\n didWarnAboutLegacyContext = new Set();\n ReactStrictModeWarnings.recordLegacyContextWarning = function (\n fiber,\n instance\n ) {\n var strictRoot = null;\n for (var node = fiber; null !== node; )\n node.mode & StrictLegacyMode && (strictRoot = node),\n (node = node.return);\n null === strictRoot\n ? console.error(\n \"Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue.\"\n )\n : !didWarnAboutLegacyContext.has(fiber.type) &&\n ((node = pendingLegacyContextWarning.get(strictRoot)),\n null != fiber.type.contextTypes ||\n null != fiber.type.childContextTypes ||\n (null !== instance &&\n \"function\" === typeof instance.getChildContext)) &&\n (void 0 === node &&\n ((node = []), pendingLegacyContextWarning.set(strictRoot, node)),\n node.push(fiber));\n };\n ReactStrictModeWarnings.flushLegacyContextWarning = function () {\n pendingLegacyContextWarning.forEach(function (fiberArray) {\n if (0 !== fiberArray.length) {\n var firstFiber = fiberArray[0],\n uniqueNames = new Set();\n fiberArray.forEach(function (fiber) {\n uniqueNames.add(getComponentNameFromFiber(fiber) || \"Component\");\n didWarnAboutLegacyContext.add(fiber.type);\n });\n var sortedNames = setToSortedString(uniqueNames);\n runWithFiberInDEV(firstFiber, function () {\n console.error(\n \"Legacy context API has been detected within a strict-mode tree.\\n\\nThe old API will be supported in all 16.x releases, but applications using it should migrate to the new version.\\n\\nPlease update the following components: %s\\n\\nLearn more about this warning here: https://react.dev/link/legacy-context\",\n sortedNames\n );\n });\n }\n });\n };\n ReactStrictModeWarnings.discardPendingWarnings = function () {\n pendingComponentWillMountWarnings = [];\n pendingUNSAFE_ComponentWillMountWarnings = [];\n pendingComponentWillReceivePropsWarnings = [];\n pendingUNSAFE_ComponentWillReceivePropsWarnings = [];\n pendingComponentWillUpdateWarnings = [];\n pendingUNSAFE_ComponentWillUpdateWarnings = [];\n pendingLegacyContextWarning = new Map();\n };\n var callComponent = {\n react_stack_bottom_frame: function (Component, props, secondArg) {\n var wasRendering = isRendering;\n isRendering = !0;\n try {\n return Component(props, secondArg);\n } finally {\n isRendering = wasRendering;\n }\n }\n },\n callComponentInDEV =\n callComponent.react_stack_bottom_frame.bind(callComponent),\n callRender = {\n react_stack_bottom_frame: function (instance) {\n var wasRendering = isRendering;\n isRendering = !0;\n try {\n return instance.render();\n } finally {\n isRendering = wasRendering;\n }\n }\n },\n callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),\n callComponentDidMount = {\n react_stack_bottom_frame: function (finishedWork, instance) {\n try {\n instance.componentDidMount();\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n },\n callComponentDidMountInDEV =\n callComponentDidMount.react_stack_bottom_frame.bind(\n callComponentDidMount\n ),\n callComponentDidUpdate = {\n react_stack_bottom_frame: function (\n finishedWork,\n instance,\n prevProps,\n prevState,\n snapshot\n ) {\n try {\n instance.componentDidUpdate(prevProps, prevState, snapshot);\n } catch (error) {\n captureCommitPhaseError(finishedWork, finishedWork.return, error);\n }\n }\n },\n callComponentDidUpdateInDEV =\n callComponentDidUpdate.react_stack_bottom_frame.bind(\n callComponentDidUpdate\n ),\n callComponentDidCatch = {\n react_stack_bottom_frame: function (instance, errorInfo) {\n var stack = errorInfo.stack;\n instance.componentDidCatch(errorInfo.value, {\n componentStack: null !== stack ? stack : \"\"\n });\n }\n },\n callComponentDidCatchInDEV =\n callComponentDidCatch.react_stack_bottom_frame.bind(\n callComponentDidCatch\n ),\n callComponentWillUnmount = {\n react_stack_bottom_frame: function (\n current,\n nearestMountedAncestor,\n instance\n ) {\n try {\n instance.componentWillUnmount();\n } catch (error) {\n captureCommitPhaseError(current, nearestMountedAncestor, error);\n }\n }\n },\n callComponentWillUnmountInDEV =\n callComponentWillUnmount.react_stack_bottom_frame.bind(\n callComponentWillUnmount\n ),\n callCreate = {\n react_stack_bottom_frame: function (effect) {\n var create = effect.create;\n effect = effect.inst;\n create = create();\n return (effect.destroy = create);\n }\n },\n callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate),\n callDestroy = {\n react_stack_bottom_frame: function (\n current,\n nearestMountedAncestor,\n destroy\n ) {\n try {\n destroy();\n } catch (error) {\n captureCommitPhaseError(current, nearestMountedAncestor, error);\n }\n }\n },\n callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy),\n callLazyInit = {\n react_stack_bottom_frame: function (lazy) {\n var init = lazy._init;\n return init(lazy._payload);\n }\n },\n callLazyInitInDEV =\n callLazyInit.react_stack_bottom_frame.bind(callLazyInit),\n SuspenseException = Error(\n \"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\\n\\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`.\"\n ),\n SuspenseyCommitException = Error(\n \"Suspense Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React.\"\n ),\n SuspenseActionException = Error(\n \"Suspense Exception: This is not a real error! It's an implementation detail of `useActionState` to interrupt the current render. You must either rethrow it immediately, or move the `useActionState` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\\n\\nTo handle async errors, wrap your component in an error boundary.\"\n ),\n noopSuspenseyCommitThenable = {\n then: function () {\n console.error(\n 'Internal React error: A listener was unexpectedly attached to a \"noop\" thenable. This is a bug in React. Please file an issue.'\n );\n }\n },\n suspendedThenable = null,\n needsToResetSuspendedThenableDEV = !1,\n thenableState$1 = null,\n thenableIndexCounter$1 = 0,\n currentDebugInfo = null,\n didWarnAboutMaps;\n var didWarnAboutGenerators = (didWarnAboutMaps = !1);\n var ownerHasKeyUseWarning = {};\n var ownerHasFunctionTypeWarning = {};\n var ownerHasSymbolTypeWarning = {};\n warnForMissingKey = function (returnFiber, workInProgress, child) {\n if (\n null !== child &&\n \"object\" === typeof child &&\n child._store &&\n ((!child._store.validated && null == child.key) ||\n 2 === child._store.validated)\n ) {\n if (\"object\" !== typeof child._store)\n throw Error(\n \"React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.\"\n );\n child._store.validated = 1;\n var componentName = getComponentNameFromFiber(returnFiber),\n componentKey = componentName || \"null\";\n if (!ownerHasKeyUseWarning[componentKey]) {\n ownerHasKeyUseWarning[componentKey] = !0;\n child = child._owner;\n returnFiber = returnFiber._debugOwner;\n var currentComponentErrorInfo = \"\";\n returnFiber &&\n \"number\" === typeof returnFiber.tag &&\n (componentKey = getComponentNameFromFiber(returnFiber)) &&\n (currentComponentErrorInfo =\n \"\\n\\nCheck the render method of `\" + componentKey + \"`.\");\n currentComponentErrorInfo ||\n (componentName &&\n (currentComponentErrorInfo =\n \"\\n\\nCheck the top-level render call using <\" +\n componentName +\n \">.\"));\n var childOwnerAppendix = \"\";\n null != child &&\n returnFiber !== child &&\n ((componentName = null),\n \"number\" === typeof child.tag\n ? (componentName = getComponentNameFromFiber(child))\n : \"string\" === typeof child.name && (componentName = child.name),\n componentName &&\n (childOwnerAppendix =\n \" It was passed a child from \" + componentName + \".\"));\n runWithFiberInDEV(workInProgress, function () {\n console.error(\n 'Each child in a list should have a unique \"key\" prop.%s%s See https://react.dev/link/warning-keys for more information.',\n currentComponentErrorInfo,\n childOwnerAppendix\n );\n });\n }\n }\n };\n var reconcileChildFibers = createChildReconciler(!0),\n mountChildFibers = createChildReconciler(!1),\n UpdateState = 0,\n ReplaceState = 1,\n ForceUpdate = 2,\n CaptureUpdate = 3,\n hasForceUpdate = !1;\n var didWarnUpdateInsideUpdate = !1;\n var currentlyProcessingQueue = null;\n var didReadFromEntangledAsyncAction = !1,\n currentTreeHiddenStackCursor = createCursor(null),\n prevEntangledRenderLanesCursor = createCursor(0),\n suspenseHandlerStackCursor = createCursor(null),\n shellBoundary = null,\n SubtreeSuspenseContextMask = 1,\n ForceSuspenseFallback = 2,\n suspenseStackCursor = createCursor(0),\n NoFlags = 0,\n HasEffect = 1,\n Insertion = 2,\n Layout = 4,\n Passive = 8,\n didWarnUncachedGetSnapshot;\n var didWarnAboutMismatchedHooksForComponent = new Set();\n var didWarnAboutUseWrappedInTryCatch = new Set();\n var didWarnAboutAsyncClientComponent = new Set();\n var didWarnAboutUseFormState = new Set();\n var renderLanes = 0,\n currentlyRenderingFiber = null,\n currentHook = null,\n workInProgressHook = null,\n didScheduleRenderPhaseUpdate = !1,\n didScheduleRenderPhaseUpdateDuringThisPass = !1,\n shouldDoubleInvokeUserFnsInHooksDEV = !1,\n localIdCounter = 0,\n thenableIndexCounter = 0,\n thenableState = null,\n globalClientIdCounter = 0,\n RE_RENDER_LIMIT = 25,\n currentHookNameInDev = null,\n hookTypesDev = null,\n hookTypesUpdateIndexDev = -1,\n ignorePreviousDependencies = !1,\n ContextOnlyDispatcher = {\n readContext: readContext,\n use: use,\n useCallback: throwInvalidHookError,\n useContext: throwInvalidHookError,\n useEffect: throwInvalidHookError,\n useImperativeHandle: throwInvalidHookError,\n useLayoutEffect: throwInvalidHookError,\n useInsertionEffect: throwInvalidHookError,\n useMemo: throwInvalidHookError,\n useReducer: throwInvalidHookError,\n useRef: throwInvalidHookError,\n useState: throwInvalidHookError,\n useDebugValue: throwInvalidHookError,\n useDeferredValue: throwInvalidHookError,\n useTransition: throwInvalidHookError,\n useSyncExternalStore: throwInvalidHookError,\n useId: throwInvalidHookError,\n useHostTransitionStatus: throwInvalidHookError,\n useFormState: throwInvalidHookError,\n useActionState: throwInvalidHookError,\n useOptimistic: throwInvalidHookError,\n useMemoCache: throwInvalidHookError,\n useCacheRefresh: throwInvalidHookError\n };\n ContextOnlyDispatcher.useEffectEvent = throwInvalidHookError;\n var HooksDispatcherOnMountInDEV = null,\n HooksDispatcherOnMountWithHookTypesInDEV = null,\n HooksDispatcherOnUpdateInDEV = null,\n HooksDispatcherOnRerenderInDEV = null,\n InvalidNestedHooksDispatcherOnMountInDEV = null,\n InvalidNestedHooksDispatcherOnUpdateInDEV = null,\n InvalidNestedHooksDispatcherOnRerenderInDEV = null;\n HooksDispatcherOnMountInDEV = {\n readContext: function (context) {\n return readContext(context);\n },\n use: use,\n useCallback: function (callback, deps) {\n currentHookNameInDev = \"useCallback\";\n mountHookTypesDev();\n checkDepsAreArrayDev(deps);\n return mountCallback(callback, deps);\n },\n useContext: function (context) {\n currentHookNameInDev = \"useContext\";\n mountHookTypesDev();\n return readContext(context);\n },\n useEffect: function (create, deps) {\n currentHookNameInDev = \"useEffect\";\n mountHookTypesDev();\n checkDepsAreArrayDev(deps);\n return mountEffect(create, deps);\n },\n useImperativeHandle: function (ref, create, deps) {\n currentHookNameInDev = \"useImperativeHandle\";\n mountHookTypesDev();\n checkDepsAreArrayDev(deps);\n return mountImperativeHandle(ref, create, deps);\n },\n useInsertionEffect: function (create, deps) {\n currentHookNameInDev = \"useInsertionEffect\";\n mountHookTypesDev();\n checkDepsAreArrayDev(deps);\n mountEffectImpl(4, Insertion, create, deps);\n },\n useLayoutEffect: function (create, deps) {\n currentHookNameInDev = \"useLayoutEffect\";\n mountHookTypesDev();\n checkDepsAreArrayDev(deps);\n return mountLayoutEffect(create, deps);\n },\n useMemo: function (create, deps) {\n currentHookNameInDev = \"useMemo\";\n mountHookTypesDev();\n checkDepsAreArrayDev(deps);\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountMemo(create, deps);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useReducer: function (reducer, initialArg, init) {\n currentHookNameInDev = \"useReducer\";\n mountHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountReducer(reducer, initialArg, init);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useRef: function (initialValue) {\n currentHookNameInDev = \"useRef\";\n mountHookTypesDev();\n return mountRef(initialValue);\n },\n useState: function (initialState) {\n currentHookNameInDev = \"useState\";\n mountHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountState(initialState);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useDebugValue: function () {\n currentHookNameInDev = \"useDebugValue\";\n mountHookTypesDev();\n },\n useDeferredValue: function (value, initialValue) {\n currentHookNameInDev = \"useDeferredValue\";\n mountHookTypesDev();\n return mountDeferredValue(value, initialValue);\n },\n useTransition: function () {\n currentHookNameInDev = \"useTransition\";\n mountHookTypesDev();\n return mountTransition();\n },\n useSyncExternalStore: function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n currentHookNameInDev = \"useSyncExternalStore\";\n mountHookTypesDev();\n return mountSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n },\n useId: function () {\n currentHookNameInDev = \"useId\";\n mountHookTypesDev();\n return mountId();\n },\n useFormState: function (action, initialState) {\n currentHookNameInDev = \"useFormState\";\n mountHookTypesDev();\n warnOnUseFormStateInDev();\n return mountActionState(action, initialState);\n },\n useActionState: function (action, initialState) {\n currentHookNameInDev = \"useActionState\";\n mountHookTypesDev();\n return mountActionState(action, initialState);\n },\n useOptimistic: function (passthrough) {\n currentHookNameInDev = \"useOptimistic\";\n mountHookTypesDev();\n return mountOptimistic(passthrough);\n },\n useHostTransitionStatus: useHostTransitionStatus,\n useMemoCache: useMemoCache,\n useCacheRefresh: function () {\n currentHookNameInDev = \"useCacheRefresh\";\n mountHookTypesDev();\n return mountRefresh();\n },\n useEffectEvent: function (callback) {\n currentHookNameInDev = \"useEffectEvent\";\n mountHookTypesDev();\n return mountEvent(callback);\n }\n };\n HooksDispatcherOnMountWithHookTypesInDEV = {\n readContext: function (context) {\n return readContext(context);\n },\n use: use,\n useCallback: function (callback, deps) {\n currentHookNameInDev = \"useCallback\";\n updateHookTypesDev();\n return mountCallback(callback, deps);\n },\n useContext: function (context) {\n currentHookNameInDev = \"useContext\";\n updateHookTypesDev();\n return readContext(context);\n },\n useEffect: function (create, deps) {\n currentHookNameInDev = \"useEffect\";\n updateHookTypesDev();\n return mountEffect(create, deps);\n },\n useImperativeHandle: function (ref, create, deps) {\n currentHookNameInDev = \"useImperativeHandle\";\n updateHookTypesDev();\n return mountImperativeHandle(ref, create, deps);\n },\n useInsertionEffect: function (create, deps) {\n currentHookNameInDev = \"useInsertionEffect\";\n updateHookTypesDev();\n mountEffectImpl(4, Insertion, create, deps);\n },\n useLayoutEffect: function (create, deps) {\n currentHookNameInDev = \"useLayoutEffect\";\n updateHookTypesDev();\n return mountLayoutEffect(create, deps);\n },\n useMemo: function (create, deps) {\n currentHookNameInDev = \"useMemo\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountMemo(create, deps);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useReducer: function (reducer, initialArg, init) {\n currentHookNameInDev = \"useReducer\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountReducer(reducer, initialArg, init);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useRef: function (initialValue) {\n currentHookNameInDev = \"useRef\";\n updateHookTypesDev();\n return mountRef(initialValue);\n },\n useState: function (initialState) {\n currentHookNameInDev = \"useState\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountState(initialState);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useDebugValue: function () {\n currentHookNameInDev = \"useDebugValue\";\n updateHookTypesDev();\n },\n useDeferredValue: function (value, initialValue) {\n currentHookNameInDev = \"useDeferredValue\";\n updateHookTypesDev();\n return mountDeferredValue(value, initialValue);\n },\n useTransition: function () {\n currentHookNameInDev = \"useTransition\";\n updateHookTypesDev();\n return mountTransition();\n },\n useSyncExternalStore: function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n currentHookNameInDev = \"useSyncExternalStore\";\n updateHookTypesDev();\n return mountSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n },\n useId: function () {\n currentHookNameInDev = \"useId\";\n updateHookTypesDev();\n return mountId();\n },\n useActionState: function (action, initialState) {\n currentHookNameInDev = \"useActionState\";\n updateHookTypesDev();\n return mountActionState(action, initialState);\n },\n useFormState: function (action, initialState) {\n currentHookNameInDev = \"useFormState\";\n updateHookTypesDev();\n warnOnUseFormStateInDev();\n return mountActionState(action, initialState);\n },\n useOptimistic: function (passthrough) {\n currentHookNameInDev = \"useOptimistic\";\n updateHookTypesDev();\n return mountOptimistic(passthrough);\n },\n useHostTransitionStatus: useHostTransitionStatus,\n useMemoCache: useMemoCache,\n useCacheRefresh: function () {\n currentHookNameInDev = \"useCacheRefresh\";\n updateHookTypesDev();\n return mountRefresh();\n },\n useEffectEvent: function (callback) {\n currentHookNameInDev = \"useEffectEvent\";\n updateHookTypesDev();\n return mountEvent(callback);\n }\n };\n HooksDispatcherOnUpdateInDEV = {\n readContext: function (context) {\n return readContext(context);\n },\n use: use,\n useCallback: function (callback, deps) {\n currentHookNameInDev = \"useCallback\";\n updateHookTypesDev();\n return updateCallback(callback, deps);\n },\n useContext: function (context) {\n currentHookNameInDev = \"useContext\";\n updateHookTypesDev();\n return readContext(context);\n },\n useEffect: function (create, deps) {\n currentHookNameInDev = \"useEffect\";\n updateHookTypesDev();\n updateEffectImpl(2048, Passive, create, deps);\n },\n useImperativeHandle: function (ref, create, deps) {\n currentHookNameInDev = \"useImperativeHandle\";\n updateHookTypesDev();\n return updateImperativeHandle(ref, create, deps);\n },\n useInsertionEffect: function (create, deps) {\n currentHookNameInDev = \"useInsertionEffect\";\n updateHookTypesDev();\n return updateEffectImpl(4, Insertion, create, deps);\n },\n useLayoutEffect: function (create, deps) {\n currentHookNameInDev = \"useLayoutEffect\";\n updateHookTypesDev();\n return updateEffectImpl(4, Layout, create, deps);\n },\n useMemo: function (create, deps) {\n currentHookNameInDev = \"useMemo\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return updateMemo(create, deps);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useReducer: function (reducer, initialArg, init) {\n currentHookNameInDev = \"useReducer\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return updateReducer(reducer, initialArg, init);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useRef: function () {\n currentHookNameInDev = \"useRef\";\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useState: function () {\n currentHookNameInDev = \"useState\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return updateReducer(basicStateReducer);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useDebugValue: function () {\n currentHookNameInDev = \"useDebugValue\";\n updateHookTypesDev();\n },\n useDeferredValue: function (value, initialValue) {\n currentHookNameInDev = \"useDeferredValue\";\n updateHookTypesDev();\n return updateDeferredValue(value, initialValue);\n },\n useTransition: function () {\n currentHookNameInDev = \"useTransition\";\n updateHookTypesDev();\n return updateTransition();\n },\n useSyncExternalStore: function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n currentHookNameInDev = \"useSyncExternalStore\";\n updateHookTypesDev();\n return updateSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n },\n useId: function () {\n currentHookNameInDev = \"useId\";\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useFormState: function (action) {\n currentHookNameInDev = \"useFormState\";\n updateHookTypesDev();\n warnOnUseFormStateInDev();\n return updateActionState(action);\n },\n useActionState: function (action) {\n currentHookNameInDev = \"useActionState\";\n updateHookTypesDev();\n return updateActionState(action);\n },\n useOptimistic: function (passthrough, reducer) {\n currentHookNameInDev = \"useOptimistic\";\n updateHookTypesDev();\n return updateOptimistic(passthrough, reducer);\n },\n useHostTransitionStatus: useHostTransitionStatus,\n useMemoCache: useMemoCache,\n useCacheRefresh: function () {\n currentHookNameInDev = \"useCacheRefresh\";\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useEffectEvent: function (callback) {\n currentHookNameInDev = \"useEffectEvent\";\n updateHookTypesDev();\n return updateEvent(callback);\n }\n };\n HooksDispatcherOnRerenderInDEV = {\n readContext: function (context) {\n return readContext(context);\n },\n use: use,\n useCallback: function (callback, deps) {\n currentHookNameInDev = \"useCallback\";\n updateHookTypesDev();\n return updateCallback(callback, deps);\n },\n useContext: function (context) {\n currentHookNameInDev = \"useContext\";\n updateHookTypesDev();\n return readContext(context);\n },\n useEffect: function (create, deps) {\n currentHookNameInDev = \"useEffect\";\n updateHookTypesDev();\n updateEffectImpl(2048, Passive, create, deps);\n },\n useImperativeHandle: function (ref, create, deps) {\n currentHookNameInDev = \"useImperativeHandle\";\n updateHookTypesDev();\n return updateImperativeHandle(ref, create, deps);\n },\n useInsertionEffect: function (create, deps) {\n currentHookNameInDev = \"useInsertionEffect\";\n updateHookTypesDev();\n return updateEffectImpl(4, Insertion, create, deps);\n },\n useLayoutEffect: function (create, deps) {\n currentHookNameInDev = \"useLayoutEffect\";\n updateHookTypesDev();\n return updateEffectImpl(4, Layout, create, deps);\n },\n useMemo: function (create, deps) {\n currentHookNameInDev = \"useMemo\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnRerenderInDEV;\n try {\n return updateMemo(create, deps);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useReducer: function (reducer, initialArg, init) {\n currentHookNameInDev = \"useReducer\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnRerenderInDEV;\n try {\n return rerenderReducer(reducer, initialArg, init);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useRef: function () {\n currentHookNameInDev = \"useRef\";\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useState: function () {\n currentHookNameInDev = \"useState\";\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnRerenderInDEV;\n try {\n return rerenderReducer(basicStateReducer);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useDebugValue: function () {\n currentHookNameInDev = \"useDebugValue\";\n updateHookTypesDev();\n },\n useDeferredValue: function (value, initialValue) {\n currentHookNameInDev = \"useDeferredValue\";\n updateHookTypesDev();\n return rerenderDeferredValue(value, initialValue);\n },\n useTransition: function () {\n currentHookNameInDev = \"useTransition\";\n updateHookTypesDev();\n return rerenderTransition();\n },\n useSyncExternalStore: function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n currentHookNameInDev = \"useSyncExternalStore\";\n updateHookTypesDev();\n return updateSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n },\n useId: function () {\n currentHookNameInDev = \"useId\";\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useFormState: function (action) {\n currentHookNameInDev = \"useFormState\";\n updateHookTypesDev();\n warnOnUseFormStateInDev();\n return rerenderActionState(action);\n },\n useActionState: function (action) {\n currentHookNameInDev = \"useActionState\";\n updateHookTypesDev();\n return rerenderActionState(action);\n },\n useOptimistic: function (passthrough, reducer) {\n currentHookNameInDev = \"useOptimistic\";\n updateHookTypesDev();\n return rerenderOptimistic(passthrough, reducer);\n },\n useHostTransitionStatus: useHostTransitionStatus,\n useMemoCache: useMemoCache,\n useCacheRefresh: function () {\n currentHookNameInDev = \"useCacheRefresh\";\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useEffectEvent: function (callback) {\n currentHookNameInDev = \"useEffectEvent\";\n updateHookTypesDev();\n return updateEvent(callback);\n }\n };\n InvalidNestedHooksDispatcherOnMountInDEV = {\n readContext: function (context) {\n warnInvalidContextAccess();\n return readContext(context);\n },\n use: function (usable) {\n warnInvalidHookAccess();\n return use(usable);\n },\n useCallback: function (callback, deps) {\n currentHookNameInDev = \"useCallback\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountCallback(callback, deps);\n },\n useContext: function (context) {\n currentHookNameInDev = \"useContext\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return readContext(context);\n },\n useEffect: function (create, deps) {\n currentHookNameInDev = \"useEffect\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountEffect(create, deps);\n },\n useImperativeHandle: function (ref, create, deps) {\n currentHookNameInDev = \"useImperativeHandle\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountImperativeHandle(ref, create, deps);\n },\n useInsertionEffect: function (create, deps) {\n currentHookNameInDev = \"useInsertionEffect\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n mountEffectImpl(4, Insertion, create, deps);\n },\n useLayoutEffect: function (create, deps) {\n currentHookNameInDev = \"useLayoutEffect\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountLayoutEffect(create, deps);\n },\n useMemo: function (create, deps) {\n currentHookNameInDev = \"useMemo\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountMemo(create, deps);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useReducer: function (reducer, initialArg, init) {\n currentHookNameInDev = \"useReducer\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountReducer(reducer, initialArg, init);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useRef: function (initialValue) {\n currentHookNameInDev = \"useRef\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountRef(initialValue);\n },\n useState: function (initialState) {\n currentHookNameInDev = \"useState\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnMountInDEV;\n try {\n return mountState(initialState);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useDebugValue: function () {\n currentHookNameInDev = \"useDebugValue\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n },\n useDeferredValue: function (value, initialValue) {\n currentHookNameInDev = \"useDeferredValue\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountDeferredValue(value, initialValue);\n },\n useTransition: function () {\n currentHookNameInDev = \"useTransition\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountTransition();\n },\n useSyncExternalStore: function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n currentHookNameInDev = \"useSyncExternalStore\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n },\n useId: function () {\n currentHookNameInDev = \"useId\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountId();\n },\n useFormState: function (action, initialState) {\n currentHookNameInDev = \"useFormState\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountActionState(action, initialState);\n },\n useActionState: function (action, initialState) {\n currentHookNameInDev = \"useActionState\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountActionState(action, initialState);\n },\n useOptimistic: function (passthrough) {\n currentHookNameInDev = \"useOptimistic\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountOptimistic(passthrough);\n },\n useMemoCache: function (size) {\n warnInvalidHookAccess();\n return useMemoCache(size);\n },\n useHostTransitionStatus: useHostTransitionStatus,\n useCacheRefresh: function () {\n currentHookNameInDev = \"useCacheRefresh\";\n mountHookTypesDev();\n return mountRefresh();\n },\n useEffectEvent: function (callback) {\n currentHookNameInDev = \"useEffectEvent\";\n warnInvalidHookAccess();\n mountHookTypesDev();\n return mountEvent(callback);\n }\n };\n InvalidNestedHooksDispatcherOnUpdateInDEV = {\n readContext: function (context) {\n warnInvalidContextAccess();\n return readContext(context);\n },\n use: function (usable) {\n warnInvalidHookAccess();\n return use(usable);\n },\n useCallback: function (callback, deps) {\n currentHookNameInDev = \"useCallback\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateCallback(callback, deps);\n },\n useContext: function (context) {\n currentHookNameInDev = \"useContext\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return readContext(context);\n },\n useEffect: function (create, deps) {\n currentHookNameInDev = \"useEffect\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n updateEffectImpl(2048, Passive, create, deps);\n },\n useImperativeHandle: function (ref, create, deps) {\n currentHookNameInDev = \"useImperativeHandle\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateImperativeHandle(ref, create, deps);\n },\n useInsertionEffect: function (create, deps) {\n currentHookNameInDev = \"useInsertionEffect\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateEffectImpl(4, Insertion, create, deps);\n },\n useLayoutEffect: function (create, deps) {\n currentHookNameInDev = \"useLayoutEffect\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateEffectImpl(4, Layout, create, deps);\n },\n useMemo: function (create, deps) {\n currentHookNameInDev = \"useMemo\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return updateMemo(create, deps);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useReducer: function (reducer, initialArg, init) {\n currentHookNameInDev = \"useReducer\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return updateReducer(reducer, initialArg, init);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useRef: function () {\n currentHookNameInDev = \"useRef\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useState: function () {\n currentHookNameInDev = \"useState\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return updateReducer(basicStateReducer);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useDebugValue: function () {\n currentHookNameInDev = \"useDebugValue\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n },\n useDeferredValue: function (value, initialValue) {\n currentHookNameInDev = \"useDeferredValue\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateDeferredValue(value, initialValue);\n },\n useTransition: function () {\n currentHookNameInDev = \"useTransition\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateTransition();\n },\n useSyncExternalStore: function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n currentHookNameInDev = \"useSyncExternalStore\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n },\n useId: function () {\n currentHookNameInDev = \"useId\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useFormState: function (action) {\n currentHookNameInDev = \"useFormState\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateActionState(action);\n },\n useActionState: function (action) {\n currentHookNameInDev = \"useActionState\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateActionState(action);\n },\n useOptimistic: function (passthrough, reducer) {\n currentHookNameInDev = \"useOptimistic\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateOptimistic(passthrough, reducer);\n },\n useMemoCache: function (size) {\n warnInvalidHookAccess();\n return useMemoCache(size);\n },\n useHostTransitionStatus: useHostTransitionStatus,\n useCacheRefresh: function () {\n currentHookNameInDev = \"useCacheRefresh\";\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useEffectEvent: function (callback) {\n currentHookNameInDev = \"useEffectEvent\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateEvent(callback);\n }\n };\n InvalidNestedHooksDispatcherOnRerenderInDEV = {\n readContext: function (context) {\n warnInvalidContextAccess();\n return readContext(context);\n },\n use: function (usable) {\n warnInvalidHookAccess();\n return use(usable);\n },\n useCallback: function (callback, deps) {\n currentHookNameInDev = \"useCallback\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateCallback(callback, deps);\n },\n useContext: function (context) {\n currentHookNameInDev = \"useContext\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return readContext(context);\n },\n useEffect: function (create, deps) {\n currentHookNameInDev = \"useEffect\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n updateEffectImpl(2048, Passive, create, deps);\n },\n useImperativeHandle: function (ref, create, deps) {\n currentHookNameInDev = \"useImperativeHandle\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateImperativeHandle(ref, create, deps);\n },\n useInsertionEffect: function (create, deps) {\n currentHookNameInDev = \"useInsertionEffect\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateEffectImpl(4, Insertion, create, deps);\n },\n useLayoutEffect: function (create, deps) {\n currentHookNameInDev = \"useLayoutEffect\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateEffectImpl(4, Layout, create, deps);\n },\n useMemo: function (create, deps) {\n currentHookNameInDev = \"useMemo\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return updateMemo(create, deps);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useReducer: function (reducer, initialArg, init) {\n currentHookNameInDev = \"useReducer\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return rerenderReducer(reducer, initialArg, init);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useRef: function () {\n currentHookNameInDev = \"useRef\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useState: function () {\n currentHookNameInDev = \"useState\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n var prevDispatcher = ReactSharedInternals.H;\n ReactSharedInternals.H = InvalidNestedHooksDispatcherOnUpdateInDEV;\n try {\n return rerenderReducer(basicStateReducer);\n } finally {\n ReactSharedInternals.H = prevDispatcher;\n }\n },\n useDebugValue: function () {\n currentHookNameInDev = \"useDebugValue\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n },\n useDeferredValue: function (value, initialValue) {\n currentHookNameInDev = \"useDeferredValue\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return rerenderDeferredValue(value, initialValue);\n },\n useTransition: function () {\n currentHookNameInDev = \"useTransition\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return rerenderTransition();\n },\n useSyncExternalStore: function (\n subscribe,\n getSnapshot,\n getServerSnapshot\n ) {\n currentHookNameInDev = \"useSyncExternalStore\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateSyncExternalStore(\n subscribe,\n getSnapshot,\n getServerSnapshot\n );\n },\n useId: function () {\n currentHookNameInDev = \"useId\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useFormState: function (action) {\n currentHookNameInDev = \"useFormState\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return rerenderActionState(action);\n },\n useActionState: function (action) {\n currentHookNameInDev = \"useActionState\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return rerenderActionState(action);\n },\n useOptimistic: function (passthrough, reducer) {\n currentHookNameInDev = \"useOptimistic\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return rerenderOptimistic(passthrough, reducer);\n },\n useMemoCache: function (size) {\n warnInvalidHookAccess();\n return useMemoCache(size);\n },\n useHostTransitionStatus: useHostTransitionStatus,\n useCacheRefresh: function () {\n currentHookNameInDev = \"useCacheRefresh\";\n updateHookTypesDev();\n return updateWorkInProgressHook().memoizedState;\n },\n useEffectEvent: function (callback) {\n currentHookNameInDev = \"useEffectEvent\";\n warnInvalidHookAccess();\n updateHookTypesDev();\n return updateEvent(callback);\n }\n };\n var fakeInternalInstance = {};\n var didWarnAboutStateAssignmentForComponent = new Set();\n var didWarnAboutUninitializedState = new Set();\n var didWarnAboutGetSnapshotBeforeUpdateWithoutDidUpdate = new Set();\n var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();\n var didWarnAboutDirectlyAssigningPropsToState = new Set();\n var didWarnAboutUndefinedDerivedState = new Set();\n var didWarnAboutContextTypes$1 = new Set();\n var didWarnAboutChildContextTypes = new Set();\n var didWarnAboutInvalidateContextType = new Set();\n var didWarnOnInvalidCallback = new Set();\n Object.freeze(fakeInternalInstance);\n var classComponentUpdater = {\n enqueueSetState: function (inst, payload, callback) {\n inst = inst._reactInternals;\n var lane = requestUpdateLane(inst),\n update = createUpdate(lane);\n update.payload = payload;\n void 0 !== callback &&\n null !== callback &&\n (warnOnInvalidCallback(callback), (update.callback = callback));\n payload = enqueueUpdate(inst, update, lane);\n null !== payload &&\n (startUpdateTimerByLane(lane, \"this.setState()\", inst),\n scheduleUpdateOnFiber(payload, inst, lane),\n entangleTransitions(payload, inst, lane));\n },\n enqueueReplaceState: function (inst, payload, callback) {\n inst = inst._reactInternals;\n var lane = requestUpdateLane(inst),\n update = createUpdate(lane);\n update.tag = ReplaceState;\n update.payload = payload;\n void 0 !== callback &&\n null !== callback &&\n (warnOnInvalidCallback(callback), (update.callback = callback));\n payload = enqueueUpdate(inst, update, lane);\n null !== payload &&\n (startUpdateTimerByLane(lane, \"this.replaceState()\", inst),\n scheduleUpdateOnFiber(payload, inst, lane),\n entangleTransitions(payload, inst, lane));\n },\n enqueueForceUpdate: function (inst, callback) {\n inst = inst._reactInternals;\n var lane = requestUpdateLane(inst),\n update = createUpdate(lane);\n update.tag = ForceUpdate;\n void 0 !== callback &&\n null !== callback &&\n (warnOnInvalidCallback(callback), (update.callback = callback));\n callback = enqueueUpdate(inst, update, lane);\n null !== callback &&\n (startUpdateTimerByLane(lane, \"this.forceUpdate()\", inst),\n scheduleUpdateOnFiber(callback, inst, lane),\n entangleTransitions(callback, inst, lane));\n }\n },\n componentName = null,\n errorBoundaryName = null,\n SelectiveHydrationException = Error(\n \"This is not a real error. It's an implementation detail of React's selective hydration feature. If this leaks into userspace, it's a bug in React. Please file an issue.\"\n ),\n didReceiveUpdate = !1;\n var didWarnAboutBadClass = {};\n var didWarnAboutContextTypeOnFunctionComponent = {};\n var didWarnAboutContextTypes = {};\n var didWarnAboutGetDerivedStateOnFunctionComponent = {};\n var didWarnAboutReassigningProps = !1;\n var didWarnAboutRevealOrder = {};\n var didWarnAboutTailOptions = {};\n var didWarnAboutClassNameOnViewTransition = {};\n var SUSPENDED_MARKER = {\n dehydrated: null,\n treeContext: null,\n retryLane: 0,\n hydrationErrors: null\n },\n hasWarnedAboutUsingNoValuePropOnContextProvider = !1,\n didWarnAboutUndefinedSnapshotBeforeUpdate = null;\n didWarnAboutUndefinedSnapshotBeforeUpdate = new Set();\n var shouldStartViewTransition = !1,\n appearingViewTransitions = null,\n viewTransitionCancelableChildren = null,\n viewTransitionHostInstanceIdx = 0,\n mountedNamedViewTransitions = new Map(),\n didWarnAboutName = {},\n offscreenSubtreeIsHidden = !1,\n offscreenSubtreeWasHidden = !1,\n offscreenDirectParentIsHidden = !1,\n needsFormReset = !1,\n PossiblyWeakSet = \"function\" === typeof WeakSet ? WeakSet : Set,\n nextEffect = null,\n inProgressLanes = null,\n inProgressRoot = null,\n viewTransitionContextChanged = !1,\n inUpdateViewTransition = !1,\n rootViewTransitionAffected = !1,\n rootViewTransitionNameCanceled = !1,\n hostParent = null,\n hostParentIsContainer = !1,\n currentHoistableRoot = null,\n inHydratedSubtree = !1,\n suspenseyCommitFlag = 8192,\n DefaultAsyncDispatcher = {\n getCacheForType: function (resourceType) {\n var cache = readContext(CacheContext),\n cacheForType = cache.data.get(resourceType);\n void 0 === cacheForType &&\n ((cacheForType = resourceType()),\n cache.data.set(resourceType, cacheForType));\n return cacheForType;\n },\n cacheSignal: function () {\n return readContext(CacheContext).controller.signal;\n },\n getOwner: function () {\n return current;\n }\n };\n if (\"function\" === typeof Symbol && Symbol.for) {\n var symbolFor = Symbol.for;\n symbolFor(\"selector.component\");\n symbolFor(\"selector.has_pseudo_class\");\n symbolFor(\"selector.role\");\n symbolFor(\"selector.test_id\");\n symbolFor(\"selector.text\");\n }\n var commitHooks = [],\n PossiblyWeakMap = \"function\" === typeof WeakMap ? WeakMap : Map,\n NoContext = 0,\n RenderContext = 2,\n CommitContext = 4,\n RootInProgress = 0,\n RootFatalErrored = 1,\n RootErrored = 2,\n RootSuspended = 3,\n RootSuspendedWithDelay = 4,\n RootSuspendedAtTheShell = 6,\n RootCompleted = 5,\n executionContext = NoContext,\n workInProgressRoot = null,\n workInProgress = null,\n workInProgressRootRenderLanes = 0,\n NotSuspended = 0,\n SuspendedOnError = 1,\n SuspendedOnData = 2,\n SuspendedOnImmediate = 3,\n SuspendedOnInstance = 4,\n SuspendedOnInstanceAndReadyToContinue = 5,\n SuspendedOnDeprecatedThrowPromise = 6,\n SuspendedAndReadyToContinue = 7,\n SuspendedOnHydration = 8,\n SuspendedOnAction = 9,\n workInProgressSuspendedReason = NotSuspended,\n workInProgressThrownValue = null,\n workInProgressRootDidSkipSuspendedSiblings = !1,\n workInProgressRootIsPrerendering = !1,\n workInProgressRootDidAttachPingListener = !1,\n entangledRenderLanes = 0,\n workInProgressRootExitStatus = RootInProgress,\n workInProgressRootSkippedLanes = 0,\n workInProgressRootInterleavedUpdatedLanes = 0,\n workInProgressRootPingedLanes = 0,\n workInProgressDeferredLane = 0,\n workInProgressSuspendedRetryLanes = 0,\n workInProgressRootConcurrentErrors = null,\n workInProgressRootRecoverableErrors = null,\n workInProgressRootDidIncludeRecursiveRenderUpdate = !1,\n globalMostRecentFallbackTime = 0,\n globalMostRecentTransitionTime = 0,\n FALLBACK_THROTTLE_MS = 300,\n workInProgressRootRenderTargetTime = Infinity,\n RENDER_TIMEOUT_MS = 500,\n workInProgressTransitions = null,\n workInProgressUpdateTask = null,\n legacyErrorBoundariesThatAlreadyFailed = null,\n IMMEDIATE_COMMIT = 0,\n ABORTED_VIEW_TRANSITION_COMMIT = 1,\n DELAYED_PASSIVE_COMMIT = 2,\n ANIMATION_STARTED_COMMIT = 3,\n NO_PENDING_EFFECTS = 0,\n PENDING_MUTATION_PHASE = 1,\n PENDING_LAYOUT_PHASE = 2,\n PENDING_AFTER_MUTATION_PHASE = 3,\n PENDING_SPAWNED_WORK = 4,\n PENDING_PASSIVE_PHASE = 5,\n pendingEffectsStatus = 0,\n pendingEffectsRoot = null,\n pendingFinishedWork = null,\n pendingEffectsLanes = 0,\n pendingEffectsRemainingLanes = 0,\n pendingEffectsRenderEndTime = -0,\n pendingPassiveTransitions = null,\n pendingRecoverableErrors = null,\n pendingViewTransition = null,\n pendingViewTransitionEvents = null,\n pendingTransitionTypes = null,\n pendingSuspendedCommitReason = null,\n pendingDelayedCommitReason = IMMEDIATE_COMMIT,\n pendingSuspendedViewTransitionReason = null,\n NESTED_UPDATE_LIMIT = 50,\n nestedUpdateCount = 0,\n rootWithNestedUpdates = null,\n isFlushingPassiveEffects = !1,\n didScheduleUpdateDuringPassiveEffects = !1,\n NESTED_PASSIVE_UPDATE_LIMIT = 50,\n nestedPassiveUpdateCount = 0,\n rootWithPassiveNestedUpdates = null,\n isRunningInsertionEffect = !1,\n didWarnAboutInterruptedViewTransitions = !1,\n didWarnStateUpdateForNotYetMountedComponent = null,\n didWarnAboutUpdateInRender = !1;\n var didWarnAboutUpdateInRenderForAnotherComponent = new Set();\n var fakeActCallbackNode$1 = {},\n firstScheduledRoot = null,\n lastScheduledRoot = null,\n didScheduleMicrotask = !1,\n didScheduleMicrotask_act = !1,\n mightHavePendingSyncWork = !1,\n isFlushingWork = !1,\n currentEventTransitionLane = 0,\n fakeActCallbackNode = {};\n (function () {\n for (var i = 0; i < simpleEventPluginEvents.length; i++) {\n var eventName = simpleEventPluginEvents[i],\n domEventName = eventName.toLowerCase();\n eventName = eventName[0].toUpperCase() + eventName.slice(1);\n registerSimpleEvent(domEventName, \"on\" + eventName);\n }\n registerSimpleEvent(ANIMATION_END, \"onAnimationEnd\");\n registerSimpleEvent(ANIMATION_ITERATION, \"onAnimationIteration\");\n registerSimpleEvent(ANIMATION_START, \"onAnimationStart\");\n registerSimpleEvent(\"dblclick\", \"onDoubleClick\");\n registerSimpleEvent(\"focusin\", \"onFocus\");\n registerSimpleEvent(\"focusout\", \"onBlur\");\n registerSimpleEvent(TRANSITION_RUN, \"onTransitionRun\");\n registerSimpleEvent(TRANSITION_START, \"onTransitionStart\");\n registerSimpleEvent(TRANSITION_CANCEL, \"onTransitionCancel\");\n registerSimpleEvent(TRANSITION_END, \"onTransitionEnd\");\n })();\n registerDirectEvent(\"onMouseEnter\", [\"mouseout\", \"mouseover\"]);\n registerDirectEvent(\"onMouseLeave\", [\"mouseout\", \"mouseover\"]);\n registerDirectEvent(\"onPointerEnter\", [\"pointerout\", \"pointerover\"]);\n registerDirectEvent(\"onPointerLeave\", [\"pointerout\", \"pointerover\"]);\n registerTwoPhaseEvent(\n \"onChange\",\n \"change click focusin focusout input keydown keyup selectionchange\".split(\n \" \"\n )\n );\n registerTwoPhaseEvent(\n \"onSelect\",\n \"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\n \" \"\n )\n );\n registerTwoPhaseEvent(\"onBeforeInput\", [\n \"compositionend\",\n \"keypress\",\n \"textInput\",\n \"paste\"\n ]);\n registerTwoPhaseEvent(\n \"onCompositionEnd\",\n \"compositionend focusout keydown keypress keyup mousedown\".split(\" \")\n );\n registerTwoPhaseEvent(\n \"onCompositionStart\",\n \"compositionstart focusout keydown keypress keyup mousedown\".split(\" \")\n );\n registerTwoPhaseEvent(\n \"onCompositionUpdate\",\n \"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \")\n );\n var mediaEventTypes =\n \"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting\".split(\n \" \"\n ),\n nonDelegatedEvents = new Set(\n \"beforetoggle cancel close invalid load scroll scrollend toggle\"\n .split(\" \")\n .concat(mediaEventTypes)\n ),\n listeningMarker = \"_reactListening\" + Math.random().toString(36).slice(2),\n didWarnControlledToUncontrolled = !1,\n didWarnUncontrolledToControlled = !1,\n didWarnFormActionType = !1,\n didWarnFormActionName = !1,\n didWarnFormActionTarget = !1,\n didWarnFormActionMethod = !1,\n didWarnPopoverTargetObject = !1;\n var didWarnForNewBooleanPropsWithEmptyValue = {};\n var NORMALIZE_NEWLINES_REGEX = /\\r\\n?/g,\n NORMALIZE_NULL_AND_REPLACEMENT_REGEX = /\\u0000|\\uFFFD/g,\n xlinkNamespace = \"http://www.w3.org/1999/xlink\",\n xmlNamespace = \"http://www.w3.org/XML/1998/namespace\",\n EXPECTED_FORM_ACTION_URL =\n \"javascript:throw new Error('React form unexpectedly submitted.')\",\n SUPPRESS_HYDRATION_WARNING = \"suppressHydrationWarning\",\n ACTIVITY_START_DATA = \"&\",\n ACTIVITY_END_DATA = \"/&\",\n SUSPENSE_START_DATA = \"$\",\n SUSPENSE_END_DATA = \"/$\",\n SUSPENSE_PENDING_START_DATA = \"$?\",\n SUSPENSE_QUEUED_START_DATA = \"$~\",\n SUSPENSE_FALLBACK_START_DATA = \"$!\",\n PREAMBLE_CONTRIBUTION_HTML = \"html\",\n PREAMBLE_CONTRIBUTION_BODY = \"body\",\n PREAMBLE_CONTRIBUTION_HEAD = \"head\",\n FORM_STATE_IS_MATCHING = \"F!\",\n FORM_STATE_IS_NOT_MATCHING = \"F\",\n DOCUMENT_READY_STATE_LOADING = \"loading\",\n STYLE = \"style\",\n HostContextNamespaceNone = 0,\n HostContextNamespaceSvg = 1,\n HostContextNamespaceMath = 2,\n eventsEnabled = null,\n selectionInformation = null,\n warnedUnknownTags = { dialog: !0, webview: !0 },\n currentPopstateTransitionEvent = null,\n schedulerEvent = void 0,\n scheduleTimeout = \"function\" === typeof setTimeout ? setTimeout : void 0,\n cancelTimeout =\n \"function\" === typeof clearTimeout ? clearTimeout : void 0,\n noTimeout = -1,\n localPromise = \"function\" === typeof Promise ? Promise : void 0,\n scheduleMicrotask =\n \"function\" === typeof queueMicrotask\n ? queueMicrotask\n : \"undefined\" !== typeof localPromise\n ? function (callback) {\n return localPromise\n .resolve(null)\n .then(callback)\n .catch(handleErrorInNextTick);\n }\n : scheduleTimeout,\n SUSPENSEY_FONT_AND_IMAGE_TIMEOUT = 500;\n ViewTransitionPseudoElement.prototype.animate = function (\n keyframes,\n options\n ) {\n options =\n \"number\" === typeof options\n ? { duration: options }\n : assign({}, options);\n options.pseudoElement = this._selector;\n return this._scope.animate(keyframes, options);\n };\n ViewTransitionPseudoElement.prototype.getAnimations = function () {\n for (\n var scope = this._scope,\n selector = this._selector,\n animations = scope.getAnimations({ subtree: !0 }),\n result = [],\n i = 0;\n i < animations.length;\n i++\n ) {\n var effect = animations[i].effect;\n null !== effect &&\n effect.target === scope &&\n effect.pseudoElement === selector &&\n result.push(animations[i]);\n }\n return result;\n };\n ViewTransitionPseudoElement.prototype.getComputedStyle = function () {\n return getComputedStyle(this._scope, this._selector);\n };\n FragmentInstance.prototype.addEventListener = function (\n type,\n listener,\n optionsOrUseCapture\n ) {\n null === this._eventListeners && (this._eventListeners = []);\n var listeners = this._eventListeners;\n -1 ===\n indexOfEventListener(listeners, type, listener, optionsOrUseCapture) &&\n (listeners.push({\n type: type,\n listener: listener,\n optionsOrUseCapture: optionsOrUseCapture\n }),\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n addEventListenerToChild,\n type,\n listener,\n optionsOrUseCapture\n ));\n this._eventListeners = listeners;\n };\n FragmentInstance.prototype.removeEventListener = function (\n type,\n listener,\n optionsOrUseCapture\n ) {\n var listeners = this._eventListeners;\n null !== listeners &&\n \"undefined\" !== typeof listeners &&\n 0 < listeners.length &&\n (traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n removeEventListenerFromChild,\n type,\n listener,\n optionsOrUseCapture\n ),\n (type = indexOfEventListener(\n listeners,\n type,\n listener,\n optionsOrUseCapture\n )),\n null !== this._eventListeners && this._eventListeners.splice(type, 1));\n };\n FragmentInstance.prototype.dispatchEvent = function (event) {\n var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber);\n if (null === parentHostFiber) return !0;\n parentHostFiber = getInstanceFromHostFiber(parentHostFiber);\n var eventListeners = this._eventListeners;\n if (\n (null !== eventListeners && 0 < eventListeners.length) ||\n !event.bubbles\n ) {\n var temp = document.createTextNode(\"\");\n if (eventListeners)\n for (var i = 0; i < eventListeners.length; i++) {\n var _eventListeners$i = eventListeners[i];\n temp.addEventListener(\n _eventListeners$i.type,\n _eventListeners$i.listener,\n _eventListeners$i.optionsOrUseCapture\n );\n }\n parentHostFiber.appendChild(temp);\n event = temp.dispatchEvent(event);\n if (eventListeners)\n for (i = 0; i < eventListeners.length; i++)\n (_eventListeners$i = eventListeners[i]),\n temp.removeEventListener(\n _eventListeners$i.type,\n _eventListeners$i.listener,\n _eventListeners$i.optionsOrUseCapture\n );\n parentHostFiber.removeChild(temp);\n return event;\n }\n return parentHostFiber.dispatchEvent(event);\n };\n FragmentInstance.prototype.focus = function (focusOptions) {\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !0,\n setFocusOnFiberIfFocusable,\n focusOptions,\n void 0,\n void 0\n );\n };\n FragmentInstance.prototype.focusLast = function (focusOptions) {\n var children = [];\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !0,\n collectChildren,\n children,\n void 0,\n void 0\n );\n for (\n var i = children.length - 1;\n 0 <= i && !setFocusOnFiberIfFocusable(children[i], focusOptions);\n i--\n );\n };\n FragmentInstance.prototype.blur = function () {\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n blurActiveElementWithinFragment,\n void 0,\n void 0,\n void 0\n );\n };\n FragmentInstance.prototype.observeUsing = function (observer) {\n null === this._observers && (this._observers = new Set());\n this._observers.add(observer);\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n observeChild,\n observer,\n void 0,\n void 0\n );\n };\n FragmentInstance.prototype.unobserveUsing = function (observer) {\n var observers = this._observers;\n null !== observers && observers.has(observer)\n ? (observers.delete(observer),\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n unobserveChild,\n observer,\n void 0,\n void 0\n ))\n : console.error(\n \"You are calling unobserveUsing() with an observer that is not being observed with this fragment instance. First attach the observer with observeUsing()\"\n );\n };\n FragmentInstance.prototype.getClientRects = function () {\n var rects = [];\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n collectClientRects,\n rects,\n void 0,\n void 0\n );\n return rects;\n };\n FragmentInstance.prototype.getRootNode = function (getRootNodeOptions) {\n var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber);\n return null === parentHostFiber\n ? this\n : getInstanceFromHostFiber(parentHostFiber).getRootNode(\n getRootNodeOptions\n );\n };\n FragmentInstance.prototype.compareDocumentPosition = function (otherNode) {\n var parentHostFiber = getFragmentParentHostFiber(this._fragmentFiber);\n if (null === parentHostFiber) return Node.DOCUMENT_POSITION_DISCONNECTED;\n var children = [];\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n collectChildren,\n children,\n void 0,\n void 0\n );\n var parentHostInstance = getInstanceFromHostFiber(parentHostFiber);\n if (0 === children.length) {\n children = this._fragmentFiber;\n var parentResult =\n parentHostInstance.compareDocumentPosition(otherNode);\n parentHostFiber = parentResult;\n parentHostInstance === otherNode\n ? (parentHostFiber = Node.DOCUMENT_POSITION_CONTAINS)\n : parentResult & Node.DOCUMENT_POSITION_CONTAINED_BY &&\n (traverseVisibleHostChildren(children.sibling, !1, findNextSibling),\n (children = searchTarget),\n (searchTarget = null),\n null === children\n ? (parentHostFiber = Node.DOCUMENT_POSITION_PRECEDING)\n : ((otherNode =\n getInstanceFromHostFiber(children).compareDocumentPosition(\n otherNode\n )),\n (parentHostFiber =\n 0 === otherNode ||\n otherNode & Node.DOCUMENT_POSITION_FOLLOWING\n ? Node.DOCUMENT_POSITION_FOLLOWING\n : Node.DOCUMENT_POSITION_PRECEDING)));\n return (parentHostFiber |=\n Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC);\n }\n parentHostFiber = getInstanceFromHostFiber(children[0]);\n parentResult = getInstanceFromHostFiber(children[children.length - 1]);\n for (\n var firstInstance = getInstanceFromHostFiber(children[0]),\n foundPortalParent = !1,\n parent = this._fragmentFiber.return;\n null !== parent;\n\n ) {\n 4 === parent.tag && (foundPortalParent = !0);\n if (3 === parent.tag || 5 === parent.tag) break;\n parent = parent.return;\n }\n firstInstance = foundPortalParent\n ? firstInstance.parentElement\n : parentHostInstance;\n if (null == firstInstance) return Node.DOCUMENT_POSITION_DISCONNECTED;\n parentHostInstance =\n firstInstance.compareDocumentPosition(parentHostFiber) &\n Node.DOCUMENT_POSITION_CONTAINED_BY;\n firstInstance =\n firstInstance.compareDocumentPosition(parentResult) &\n Node.DOCUMENT_POSITION_CONTAINED_BY;\n foundPortalParent = parentHostFiber.compareDocumentPosition(otherNode);\n var lastResult = parentResult.compareDocumentPosition(otherNode);\n parent =\n foundPortalParent & Node.DOCUMENT_POSITION_CONTAINED_BY ||\n lastResult & Node.DOCUMENT_POSITION_CONTAINED_BY;\n lastResult =\n parentHostInstance &&\n firstInstance &&\n foundPortalParent & Node.DOCUMENT_POSITION_FOLLOWING &&\n lastResult & Node.DOCUMENT_POSITION_PRECEDING;\n parentHostFiber =\n (parentHostInstance && parentHostFiber === otherNode) ||\n (firstInstance && parentResult === otherNode) ||\n parent ||\n lastResult\n ? Node.DOCUMENT_POSITION_CONTAINED_BY\n : (!parentHostInstance && parentHostFiber === otherNode) ||\n (!firstInstance && parentResult === otherNode)\n ? Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC\n : foundPortalParent;\n return parentHostFiber & Node.DOCUMENT_POSITION_DISCONNECTED ||\n parentHostFiber & Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC ||\n validateDocumentPositionWithFiberTree(\n parentHostFiber,\n this._fragmentFiber,\n children[0],\n children[children.length - 1],\n otherNode\n )\n ? parentHostFiber\n : Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC;\n };\n FragmentInstance.prototype.scrollIntoView = function (alignToTop) {\n if (\"object\" === typeof alignToTop)\n throw Error(\n \"FragmentInstance.scrollIntoView() does not support scrollIntoViewOptions. Use the alignToTop boolean instead.\"\n );\n var children = [];\n traverseVisibleHostChildren(\n this._fragmentFiber.child,\n !1,\n collectChildren,\n children,\n void 0,\n void 0\n );\n var resolvedAlignToTop = !1 !== alignToTop;\n if (0 === children.length) {\n children = this._fragmentFiber;\n var result = [null, null],\n parentHostFiber = getFragmentParentHostFiber(children);\n null !== parentHostFiber &&\n findFragmentInstanceSiblings(result, children, parentHostFiber.child);\n resolvedAlignToTop = resolvedAlignToTop\n ? result[1] ||\n result[0] ||\n getFragmentParentHostFiber(this._fragmentFiber)\n : result[0] || result[1];\n null === resolvedAlignToTop\n ? console.warn(\n \"You are attempting to scroll a FragmentInstance that has no children, siblings, or parent. No scroll was performed.\"\n )\n : getInstanceFromHostFiber(resolvedAlignToTop).scrollIntoView(\n alignToTop\n );\n } else\n for (\n result = resolvedAlignToTop ? children.length - 1 : 0;\n result !== (resolvedAlignToTop ? -1 : children.length);\n\n )\n getInstanceFromHostFiber(children[result]).scrollIntoView(alignToTop),\n (result += resolvedAlignToTop ? -1 : 1);\n };\n var previousHydratableOnEnteringScopedSingleton = null,\n NotLoaded = 0,\n Loaded = 1,\n Errored = 2,\n Settled = 3,\n Inserted = 4,\n preloadPropsMap = new Map(),\n preconnectsSet = new Set(),\n previousDispatcher = ReactDOMSharedInternals.d;\n ReactDOMSharedInternals.d = {\n f: function () {\n var previousWasRendering = previousDispatcher.f(),\n wasRendering = flushSyncWork$1();\n return previousWasRendering || wasRendering;\n },\n r: function (form) {\n var formInst = getInstanceFromNode(form);\n null !== formInst && 5 === formInst.tag && \"form\" === formInst.type\n ? requestFormReset$1(formInst)\n : previousDispatcher.r(form);\n },\n D: function (href) {\n previousDispatcher.D(href);\n preconnectAs(\"dns-prefetch\", href, null);\n },\n C: function (href, crossOrigin) {\n previousDispatcher.C(href, crossOrigin);\n preconnectAs(\"preconnect\", href, crossOrigin);\n },\n L: function (href, as, options) {\n previousDispatcher.L(href, as, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && href && as) {\n var preloadSelector =\n 'link[rel=\"preload\"][as=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(as) +\n '\"]';\n \"image\" === as\n ? options && options.imageSrcSet\n ? ((preloadSelector +=\n '[imagesrcset=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(\n options.imageSrcSet\n ) +\n '\"]'),\n \"string\" === typeof options.imageSizes &&\n (preloadSelector +=\n '[imagesizes=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(\n options.imageSizes\n ) +\n '\"]'))\n : (preloadSelector +=\n '[href=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(href) +\n '\"]')\n : (preloadSelector +=\n '[href=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(href) +\n '\"]');\n var key = preloadSelector;\n switch (as) {\n case \"style\":\n key = getStyleKey(href);\n break;\n case \"script\":\n key = getScriptKey(href);\n }\n preloadPropsMap.has(key) ||\n ((href = assign(\n {\n rel: \"preload\",\n href:\n \"image\" === as && options && options.imageSrcSet\n ? void 0\n : href,\n as: as\n },\n options\n )),\n preloadPropsMap.set(key, href),\n null !== ownerDocument.querySelector(preloadSelector) ||\n (\"style\" === as &&\n ownerDocument.querySelector(\n getStylesheetSelectorFromKey(key)\n )) ||\n (\"script\" === as &&\n ownerDocument.querySelector(getScriptSelectorFromKey(key))) ||\n ((as = ownerDocument.createElement(\"link\")),\n setInitialProperties(as, \"link\", href),\n markNodeAsHoistable(as),\n ownerDocument.head.appendChild(as)));\n }\n },\n m: function (href, options) {\n previousDispatcher.m(href, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && href) {\n var as =\n options && \"string\" === typeof options.as ? options.as : \"script\",\n preloadSelector =\n 'link[rel=\"modulepreload\"][as=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(as) +\n '\"][href=\"' +\n escapeSelectorAttributeValueInsideDoubleQuotes(href) +\n '\"]',\n key = preloadSelector;\n switch (as) {\n case \"audioworklet\":\n case \"paintworklet\":\n case \"serviceworker\":\n case \"sharedworker\":\n case \"worker\":\n case \"script\":\n key = getScriptKey(href);\n }\n if (\n !preloadPropsMap.has(key) &&\n ((href = assign({ rel: \"modulepreload\", href: href }, options)),\n preloadPropsMap.set(key, href),\n null === ownerDocument.querySelector(preloadSelector))\n ) {\n switch (as) {\n case \"audioworklet\":\n case \"paintworklet\":\n case \"serviceworker\":\n case \"sharedworker\":\n case \"worker\":\n case \"script\":\n if (ownerDocument.querySelector(getScriptSelectorFromKey(key)))\n return;\n }\n as = ownerDocument.createElement(\"link\");\n setInitialProperties(as, \"link\", href);\n markNodeAsHoistable(as);\n ownerDocument.head.appendChild(as);\n }\n }\n },\n X: function (src, options) {\n previousDispatcher.X(src, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && src) {\n var scripts = getResourcesFromRoot(ownerDocument).hoistableScripts,\n key = getScriptKey(src),\n resource = scripts.get(key);\n resource ||\n ((resource = ownerDocument.querySelector(\n getScriptSelectorFromKey(key)\n )),\n resource ||\n ((src = assign({ src: src, async: !0 }, options)),\n (options = preloadPropsMap.get(key)) &&\n adoptPreloadPropsForScript(src, options),\n (resource = ownerDocument.createElement(\"script\")),\n markNodeAsHoistable(resource),\n setInitialProperties(resource, \"link\", src),\n ownerDocument.head.appendChild(resource)),\n (resource = {\n type: \"script\",\n instance: resource,\n count: 1,\n state: null\n }),\n scripts.set(key, resource));\n }\n },\n S: function (href, precedence, options) {\n previousDispatcher.S(href, precedence, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && href) {\n var styles = getResourcesFromRoot(ownerDocument).hoistableStyles,\n key = getStyleKey(href);\n precedence = precedence || \"default\";\n var resource = styles.get(key);\n if (!resource) {\n var state = { loading: NotLoaded, preload: null };\n if (\n (resource = ownerDocument.querySelector(\n getStylesheetSelectorFromKey(key)\n ))\n )\n state.loading = Loaded | Inserted;\n else {\n href = assign(\n {\n rel: \"stylesheet\",\n href: href,\n \"data-precedence\": precedence\n },\n options\n );\n (options = preloadPropsMap.get(key)) &&\n adoptPreloadPropsForStylesheet(href, options);\n var link = (resource = ownerDocument.createElement(\"link\"));\n markNodeAsHoistable(link);\n setInitialProperties(link, \"link\", href);\n link._p = new Promise(function (resolve, reject) {\n link.onload = resolve;\n link.onerror = reject;\n });\n link.addEventListener(\"load\", function () {\n state.loading |= Loaded;\n });\n link.addEventListener(\"error\", function () {\n state.loading |= Errored;\n });\n state.loading |= Inserted;\n insertStylesheet(resource, precedence, ownerDocument);\n }\n resource = {\n type: \"stylesheet\",\n instance: resource,\n count: 1,\n state: state\n };\n styles.set(key, resource);\n }\n }\n },\n M: function (src, options) {\n previousDispatcher.M(src, options);\n var ownerDocument = globalDocument;\n if (ownerDocument && src) {\n var scripts = getResourcesFromRoot(ownerDocument).hoistableScripts,\n key = getScriptKey(src),\n resource = scripts.get(key);\n resource ||\n ((resource = ownerDocument.querySelector(\n getScriptSelectorFromKey(key)\n )),\n resource ||\n ((src = assign({ src: src, async: !0, type: \"module\" }, options)),\n (options = preloadPropsMap.get(key)) &&\n adoptPreloadPropsForScript(src, options),\n (resource = ownerDocument.createElement(\"script\")),\n markNodeAsHoistable(resource),\n setInitialProperties(resource, \"link\", src),\n ownerDocument.head.appendChild(resource)),\n (resource = {\n type: \"script\",\n instance: resource,\n count: 1,\n state: null\n }),\n scripts.set(key, resource));\n }\n }\n };\n var globalDocument = \"undefined\" === typeof document ? null : document,\n tagCaches = null,\n SUSPENSEY_STYLESHEET_TIMEOUT = 6e4,\n SUSPENSEY_IMAGE_TIMEOUT = 800,\n SUSPENSEY_IMAGE_TIME_ESTIMATE = 500,\n estimatedBytesWithinLimit = 0,\n LAST_PRECEDENCE = null,\n precedencesByRoot = null,\n NotPendingTransition = NotPending,\n HostTransitionContext = {\n $$typeof: REACT_CONTEXT_TYPE,\n Provider: null,\n Consumer: null,\n _currentValue: NotPendingTransition,\n _currentValue2: NotPendingTransition,\n _threadCount: 0\n },\n badgeFormat = \"%c%s%c\",\n badgeStyle =\n \"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px\",\n resetStyle = \"\",\n pad = \" \",\n bind = Function.prototype.bind;\n var didWarnAboutNestedUpdates = !1;\n var overrideHookState = null,\n overrideHookStateDeletePath = null,\n overrideHookStateRenamePath = null,\n overrideProps = null,\n overridePropsDeletePath = null,\n overridePropsRenamePath = null,\n scheduleUpdate = null,\n scheduleRetry = null,\n setErrorHandler = null,\n setSuspenseHandler = null;\n overrideHookState = function (fiber, id, path, value) {\n id = findHook(fiber, id);\n null !== id &&\n ((path = copyWithSetImpl(id.memoizedState, path, 0, value)),\n (id.memoizedState = path),\n (id.baseState = path),\n (fiber.memoizedProps = assign({}, fiber.memoizedProps)),\n (path = enqueueConcurrentRenderForLane(fiber, 2)),\n null !== path && scheduleUpdateOnFiber(path, fiber, 2));\n };\n overrideHookStateDeletePath = function (fiber, id, path) {\n id = findHook(fiber, id);\n null !== id &&\n ((path = copyWithDeleteImpl(id.memoizedState, path, 0)),\n (id.memoizedState = path),\n (id.baseState = path),\n (fiber.memoizedProps = assign({}, fiber.memoizedProps)),\n (path = enqueueConcurrentRenderForLane(fiber, 2)),\n null !== path && scheduleUpdateOnFiber(path, fiber, 2));\n };\n overrideHookStateRenamePath = function (fiber, id, oldPath, newPath) {\n id = findHook(fiber, id);\n null !== id &&\n ((oldPath = copyWithRename(id.memoizedState, oldPath, newPath)),\n (id.memoizedState = oldPath),\n (id.baseState = oldPath),\n (fiber.memoizedProps = assign({}, fiber.memoizedProps)),\n (oldPath = enqueueConcurrentRenderForLane(fiber, 2)),\n null !== oldPath && scheduleUpdateOnFiber(oldPath, fiber, 2));\n };\n overrideProps = function (fiber, path, value) {\n fiber.pendingProps = copyWithSetImpl(fiber.memoizedProps, path, 0, value);\n fiber.alternate && (fiber.alternate.pendingProps = fiber.pendingProps);\n path = enqueueConcurrentRenderForLane(fiber, 2);\n null !== path && scheduleUpdateOnFiber(path, fiber, 2);\n };\n overridePropsDeletePath = function (fiber, path) {\n fiber.pendingProps = copyWithDeleteImpl(fiber.memoizedProps, path, 0);\n fiber.alternate && (fiber.alternate.pendingProps = fiber.pendingProps);\n path = enqueueConcurrentRenderForLane(fiber, 2);\n null !== path && scheduleUpdateOnFiber(path, fiber, 2);\n };\n overridePropsRenamePath = function (fiber, oldPath, newPath) {\n fiber.pendingProps = copyWithRename(\n fiber.memoizedProps,\n oldPath,\n newPath\n );\n fiber.alternate && (fiber.alternate.pendingProps = fiber.pendingProps);\n oldPath = enqueueConcurrentRenderForLane(fiber, 2);\n null !== oldPath && scheduleUpdateOnFiber(oldPath, fiber, 2);\n };\n scheduleUpdate = function (fiber) {\n var root = enqueueConcurrentRenderForLane(fiber, 2);\n null !== root && scheduleUpdateOnFiber(root, fiber, 2);\n };\n scheduleRetry = function (fiber) {\n var lane = claimNextRetryLane(),\n root = enqueueConcurrentRenderForLane(fiber, lane);\n null !== root && scheduleUpdateOnFiber(root, fiber, lane);\n };\n setErrorHandler = function (newShouldErrorImpl) {\n shouldErrorImpl = newShouldErrorImpl;\n };\n setSuspenseHandler = function (newShouldSuspendImpl) {\n shouldSuspendImpl = newShouldSuspendImpl;\n };\n var _enabled = !0,\n return_targetInst = null,\n hasScheduledReplayAttempt = !1,\n queuedFocus = null,\n queuedDrag = null,\n queuedMouse = null,\n queuedPointers = new Map(),\n queuedPointerCaptures = new Map(),\n queuedExplicitHydrationTargets = [],\n discreteReplayableEvents =\n \"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset\".split(\n \" \"\n ),\n lastScheduledReplayQueue = null;\n ReactDOMHydrationRoot.prototype.render = ReactDOMRoot.prototype.render =\n function (children) {\n var root = this._internalRoot;\n if (null === root) throw Error(\"Cannot update an unmounted root.\");\n var args = arguments;\n \"function\" === typeof args[1]\n ? console.error(\n \"does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().\"\n )\n : isValidContainer(args[1])\n ? console.error(\n \"You passed a container to the second argument of root.render(...). You don't need to pass it again since you already passed it to create the root.\"\n )\n : \"undefined\" !== typeof args[1] &&\n console.error(\n \"You passed a second argument to root.render(...) but it only accepts one argument.\"\n );\n args = children;\n var current = root.current,\n lane = requestUpdateLane(current);\n updateContainerImpl(current, lane, args, root, null, null);\n };\n ReactDOMHydrationRoot.prototype.unmount = ReactDOMRoot.prototype.unmount =\n function () {\n var args = arguments;\n \"function\" === typeof args[0] &&\n console.error(\n \"does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().\"\n );\n args = this._internalRoot;\n if (null !== args) {\n this._internalRoot = null;\n var container = args.containerInfo;\n (executionContext & (RenderContext | CommitContext)) !== NoContext &&\n console.error(\n \"Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition.\"\n );\n updateContainerImpl(args.current, 2, null, args, null, null);\n flushSyncWork$1();\n container[internalContainerInstanceKey] = null;\n }\n };\n ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (\n target\n ) {\n if (target) {\n var updatePriority = resolveUpdatePriority();\n target = { blockedOn: null, target: target, priority: updatePriority };\n for (\n var i = 0;\n i < queuedExplicitHydrationTargets.length &&\n 0 !== updatePriority &&\n updatePriority < queuedExplicitHydrationTargets[i].priority;\n i++\n );\n queuedExplicitHydrationTargets.splice(i, 0, target);\n 0 === i && attemptExplicitHydrationTarget(target);\n }\n };\n (function () {\n var isomorphicReactPackageVersion = React.version;\n if (\"19.3.0-canary-f93b9fd4-20251217\" !== isomorphicReactPackageVersion)\n throw Error(\n 'Incompatible React versions: The \"react\" and \"react-dom\" packages must have the exact same version. Instead got:\\n - react: ' +\n (isomorphicReactPackageVersion +\n \"\\n - react-dom: 19.3.0-canary-f93b9fd4-20251217\\nLearn more: https://react.dev/warnings/version-mismatch\")\n );\n })();\n (\"function\" === typeof Map &&\n null != Map.prototype &&\n \"function\" === typeof Map.prototype.forEach &&\n \"function\" === typeof Set &&\n null != Set.prototype &&\n \"function\" === typeof Set.prototype.clear &&\n \"function\" === typeof Set.prototype.forEach) ||\n console.error(\n \"React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://react.dev/link/react-polyfills\"\n );\n ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {\n var fiber = componentOrElement._reactInternals;\n if (void 0 === fiber) {\n if (\"function\" === typeof componentOrElement.render)\n throw Error(\"Unable to find node on an unmounted component.\");\n componentOrElement = Object.keys(componentOrElement).join(\",\");\n throw Error(\n \"Argument appears to not be a ReactComponent. Keys: \" +\n componentOrElement\n );\n }\n componentOrElement = findCurrentFiberUsingSlowPath(fiber);\n componentOrElement =\n null !== componentOrElement\n ? findCurrentHostFiberImpl(componentOrElement)\n : null;\n componentOrElement =\n null === componentOrElement ? null : componentOrElement.stateNode;\n return componentOrElement;\n };\n if (\n !(function () {\n var internals = {\n bundleType: 1,\n version: \"19.3.0-canary-f93b9fd4-20251217\",\n rendererPackageName: \"react-dom\",\n currentDispatcherRef: ReactSharedInternals,\n reconcilerVersion: \"19.3.0-canary-f93b9fd4-20251217\"\n };\n internals.overrideHookState = overrideHookState;\n internals.overrideHookStateDeletePath = overrideHookStateDeletePath;\n internals.overrideHookStateRenamePath = overrideHookStateRenamePath;\n internals.overrideProps = overrideProps;\n internals.overridePropsDeletePath = overridePropsDeletePath;\n internals.overridePropsRenamePath = overridePropsRenamePath;\n internals.scheduleUpdate = scheduleUpdate;\n internals.scheduleRetry = scheduleRetry;\n internals.setErrorHandler = setErrorHandler;\n internals.setSuspenseHandler = setSuspenseHandler;\n internals.scheduleRefresh = scheduleRefresh;\n internals.scheduleRoot = scheduleRoot;\n internals.setRefreshHandler = setRefreshHandler;\n internals.getCurrentFiber = getCurrentFiberForDevTools;\n return injectInternals(internals);\n })() &&\n canUseDOM &&\n window.top === window.self &&\n ((-1 < navigator.userAgent.indexOf(\"Chrome\") &&\n -1 === navigator.userAgent.indexOf(\"Edge\")) ||\n -1 < navigator.userAgent.indexOf(\"Firefox\"))\n ) {\n var protocol = window.location.protocol;\n /^(https?|file):$/.test(protocol) &&\n console.info(\n \"%cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools\" +\n (\"file:\" === protocol\n ? \"\\nYou might need to use a local HTTP server (instead of file://): https://react.dev/link/react-devtools-faq\"\n : \"\"),\n \"font-weight:bold\"\n );\n }\n exports.createRoot = function (container, options) {\n if (!isValidContainer(container))\n throw Error(\"Target container is not a DOM element.\");\n warnIfReactDOMContainerInDEV(container);\n var isStrictMode = !1,\n identifierPrefix = \"\",\n onUncaughtError = defaultOnUncaughtError,\n onCaughtError = defaultOnCaughtError,\n onRecoverableError = defaultOnRecoverableError;\n null !== options &&\n void 0 !== options &&\n (options.hydrate\n ? console.warn(\n \"hydrate through createRoot is deprecated. Use ReactDOMClient.hydrateRoot(container, <App />) instead.\"\n )\n : \"object\" === typeof options &&\n null !== options &&\n options.$$typeof === REACT_ELEMENT_TYPE &&\n console.error(\n \"You passed a JSX element to createRoot. You probably meant to call root.render instead. Example usage:\\n\\n let root = createRoot(domContainer);\\n root.render(<App />);\"\n ),\n !0 === options.unstable_strictMode && (isStrictMode = !0),\n void 0 !== options.identifierPrefix &&\n (identifierPrefix = options.identifierPrefix),\n void 0 !== options.onUncaughtError &&\n (onUncaughtError = options.onUncaughtError),\n void 0 !== options.onCaughtError &&\n (onCaughtError = options.onCaughtError),\n void 0 !== options.onRecoverableError &&\n (onRecoverableError = options.onRecoverableError));\n options = createFiberRoot(\n container,\n 1,\n !1,\n null,\n null,\n isStrictMode,\n identifierPrefix,\n null,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n defaultOnDefaultTransitionIndicator\n );\n container[internalContainerInstanceKey] = options.current;\n listenToAllSupportedEvents(container);\n return new ReactDOMRoot(options);\n };\n exports.hydrateRoot = function (container, initialChildren, options) {\n if (!isValidContainer(container))\n throw Error(\"Target container is not a DOM element.\");\n warnIfReactDOMContainerInDEV(container);\n void 0 === initialChildren &&\n console.error(\n \"Must provide initial children as second argument to hydrateRoot. Example usage: hydrateRoot(domContainer, <App />)\"\n );\n var isStrictMode = !1,\n identifierPrefix = \"\",\n onUncaughtError = defaultOnUncaughtError,\n onCaughtError = defaultOnCaughtError,\n onRecoverableError = defaultOnRecoverableError,\n formState = null;\n null !== options &&\n void 0 !== options &&\n (!0 === options.unstable_strictMode && (isStrictMode = !0),\n void 0 !== options.identifierPrefix &&\n (identifierPrefix = options.identifierPrefix),\n void 0 !== options.onUncaughtError &&\n (onUncaughtError = options.onUncaughtError),\n void 0 !== options.onCaughtError &&\n (onCaughtError = options.onCaughtError),\n void 0 !== options.onRecoverableError &&\n (onRecoverableError = options.onRecoverableError),\n void 0 !== options.formState && (formState = options.formState));\n initialChildren = createFiberRoot(\n container,\n 1,\n !0,\n initialChildren,\n null != options ? options : null,\n isStrictMode,\n identifierPrefix,\n formState,\n onUncaughtError,\n onCaughtError,\n onRecoverableError,\n defaultOnDefaultTransitionIndicator\n );\n initialChildren.context = getContextForSubtree(null);\n options = initialChildren.current;\n isStrictMode = requestUpdateLane(options);\n isStrictMode = getBumpedLaneForHydrationByLane(isStrictMode);\n identifierPrefix = createUpdate(isStrictMode);\n identifierPrefix.callback = null;\n enqueueUpdate(options, identifierPrefix, isStrictMode);\n startUpdateTimerByLane(isStrictMode, \"hydrateRoot()\", null);\n options = isStrictMode;\n initialChildren.current.lanes = options;\n markRootUpdated$1(initialChildren, options);\n ensureRootIsScheduled(initialChildren);\n container[internalContainerInstanceKey] = initialChildren.current;\n listenToAllSupportedEvents(container);\n return new ReactDOMHydrationRoot(initialChildren);\n };\n exports.version = \"19.3.0-canary-f93b9fd4-20251217\";\n \"undefined\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&\n \"function\" ===\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&\n __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());\n })();\n"],"names":[],"mappings":"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CACH;4BACF;gCACE,IACE,CAAC,CAAC,MAAM,YAAY,IAAI,OAAO,KAC/B,CAAC,6BAA6B,SAAS,aACvC,MAAM,KAAK,OAAO,GAElB,MAAM;wBACZ;wBACF,sBACE,YACA,GACA,SACA;oBAEJ;oBACA;gBACF,KAAK;oBACH,wBACE,YACA,OACA,WACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,wBACE,YACA,OACA,OACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,YACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,iBACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,iBACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,cACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,cACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,eACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,cACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,YACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,YACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,iBACE,YACA,OACA,aACA,SACA,iBACA;oBAEF;gBACF,KAAK;oBACH,OAAO,WACL,uCAAuC,CAAC,MAAM,IAC9C,CAAC,AAAC,uCAAuC,CAAC,MAAM,GAAG,CAAC,GACpD,QAAQ,KAAK,CACX,sQACA,MACD;oBACH,wBACE,YACA,OACA,OACA,SACA,iBACA;oBAEF;gBACF;oBACE,IACE,CAAC,CAAC,IAAI,MAAM,MAAM,KACjB,QAAQ,KAAK,CAAC,EAAE,IAAI,QAAQ,KAAK,CAAC,EAAE,IACpC,QAAQ,KAAK,CAAC,EAAE,IAAI,QAAQ,KAAK,CAAC,EAAE,EACrC;wBACA,IAAI,kBAAkB;wBACtB,aAAa,CAAC;wBACd,YAAY,OAAO,KAAK,4BACxB,UAAU,OACV,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","ignoreList":[0]}}, - {"offset": {"line": 16503, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-dom/client.js"],"sourcesContent":["'use strict';\n\nfunction checkDCE() {\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\n if (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'\n ) {\n return;\n }\n if (process.env.NODE_ENV !== 'production') {\n // This branch is unreachable because this function is only called\n // in production, but the condition is true only in development.\n // Therefore if the branch is still here, dead code elimination wasn't\n // properly applied.\n // Don't change the message. React DevTools relies on it. Also make sure\n // this message doesn't occur elsewhere in this function, or it will cause\n // a false positive.\n throw new Error('^_^');\n }\n try {\n // Verify that the code above has been dead code eliminated (DCE'd).\n __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);\n } catch (err) {\n // DevTools shouldn't crash React, no matter what.\n // We should still report in case we break this code.\n console.error(err);\n }\n}\n\nif (process.env.NODE_ENV === 'production') {\n // DCE check should happen before ReactDOM bundle executes so that\n // DevTools can report bad minification during injection.\n checkDCE();\n module.exports = require('./cjs/react-dom-client.production.js');\n} else {\n module.exports = require('./cjs/react-dom-client.development.js');\n}\n"],"names":[],"mappings":"AA8BI;AA9BJ;AAEA,SAAS;IACP,yCAAyC,GACzC,IACE,OAAO,mCAAmC,eAC1C,OAAO,+BAA+B,QAAQ,KAAK,YACnD;QACA;IACF;IACA,wCAA2C;QACzC,kEAAkE;QAClE,gEAAgE;QAChE,sEAAsE;QACtE,oBAAoB;QACpB,wEAAwE;QACxE,0EAA0E;QAC1E,oBAAoB;QACpB,MAAM,IAAI,MAAM;IAClB;IACA,IAAI;QACF,oEAAoE;QACpE,+BAA+B,QAAQ,CAAC;IAC1C,EAAE,OAAO,KAAK;QACZ,kDAAkD;QAClD,qDAAqD;QACrD,QAAQ,KAAK,CAAC;IAChB;AACF;AAEA;;KAKO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js deleted file mode 100644 index d2b3241..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js +++ /dev/null @@ -1,2842 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.browser.development.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * @license React - * react-server-dom-turbopack-client.browser.development.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ "use strict"; -"production" !== ("TURBOPACK compile-time value", "development") && function() { - function resolveClientReference(bundlerConfig, metadata) { - if (bundlerConfig) { - var moduleExports = bundlerConfig[metadata[0]]; - if (bundlerConfig = moduleExports && moduleExports[metadata[2]]) moduleExports = bundlerConfig.name; - else { - bundlerConfig = moduleExports && moduleExports["*"]; - if (!bundlerConfig) throw Error('Could not find the module "' + metadata[0] + '" in the React Server Consumer Manifest. This is probably a bug in the React Server Components bundler.'); - moduleExports = metadata[2]; - } - return 4 === metadata.length ? [ - bundlerConfig.id, - bundlerConfig.chunks, - moduleExports, - 1 - ] : [ - bundlerConfig.id, - bundlerConfig.chunks, - moduleExports - ]; - } - return metadata; - } - function resolveServerReference(bundlerConfig, id) { - var name = "", resolvedModuleData = bundlerConfig[id]; - if (resolvedModuleData) name = resolvedModuleData.name; - else { - var idx = id.lastIndexOf("#"); - -1 !== idx && (name = id.slice(idx + 1), resolvedModuleData = bundlerConfig[id.slice(0, idx)]); - if (!resolvedModuleData) throw Error('Could not find the module "' + id + '" in the React Server Manifest. This is probably a bug in the React Server Components bundler.'); - } - return resolvedModuleData.async ? [ - resolvedModuleData.id, - resolvedModuleData.chunks, - name, - 1 - ] : [ - resolvedModuleData.id, - resolvedModuleData.chunks, - name - ]; - } - function requireAsyncModule(id) { - var promise = /*TURBOPACK member replacement*/ __turbopack_context__.r(id); - if ("function" !== typeof promise.then || "fulfilled" === promise.status) return null; - promise.then(function(value) { - promise.status = "fulfilled"; - promise.value = value; - }, function(reason) { - promise.status = "rejected"; - promise.reason = reason; - }); - return promise; - } - function ignoreReject() {} - function preloadModule(metadata) { - for(var chunks = metadata[1], promises = [], i = 0; i < chunks.length; i++){ - var thenable = /*TURBOPACK member replacement*/ __turbopack_context__.L(chunks[i]); - loadedChunks.has(thenable) || promises.push(thenable); - if (!instrumentedChunks.has(thenable)) { - var resolve = loadedChunks.add.bind(loadedChunks, thenable); - thenable.then(resolve, ignoreReject); - instrumentedChunks.add(thenable); - } - } - return 4 === metadata.length ? 0 === promises.length ? requireAsyncModule(metadata[0]) : Promise.all(promises).then(function() { - return requireAsyncModule(metadata[0]); - }) : 0 < promises.length ? Promise.all(promises) : null; - } - function requireModule(metadata) { - var moduleExports = /*TURBOPACK member replacement*/ __turbopack_context__.r(metadata[0]); - if (4 === metadata.length && "function" === typeof moduleExports.then) if ("fulfilled" === moduleExports.status) moduleExports = moduleExports.value; - else throw moduleExports.reason; - if ("*" === metadata[2]) return moduleExports; - if ("" === metadata[2]) return moduleExports.__esModule ? moduleExports.default : moduleExports; - if (hasOwnProperty.call(moduleExports, metadata[2])) return moduleExports[metadata[2]]; - } - function getIteratorFn(maybeIterable) { - if (null === maybeIterable || "object" !== typeof maybeIterable) return null; - maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"]; - return "function" === typeof maybeIterable ? maybeIterable : null; - } - function isObjectPrototype(object) { - if (!object) return !1; - var ObjectPrototype = Object.prototype; - if (object === ObjectPrototype) return !0; - if (getPrototypeOf(object)) return !1; - object = Object.getOwnPropertyNames(object); - for(var i = 0; i < object.length; i++)if (!(object[i] in ObjectPrototype)) return !1; - return !0; - } - function isSimpleObject(object) { - if (!isObjectPrototype(getPrototypeOf(object))) return !1; - for(var names = Object.getOwnPropertyNames(object), i = 0; i < names.length; i++){ - var descriptor = Object.getOwnPropertyDescriptor(object, names[i]); - if (!descriptor || !descriptor.enumerable && ("key" !== names[i] && "ref" !== names[i] || "function" !== typeof descriptor.get)) return !1; - } - return !0; - } - function objectName(object) { - object = Object.prototype.toString.call(object); - return object.slice(8, object.length - 1); - } - function describeKeyForErrorMessage(key) { - var encodedKey = JSON.stringify(key); - return '"' + key + '"' === encodedKey ? key : encodedKey; - } - function describeValueForErrorMessage(value) { - switch(typeof value){ - case "string": - return JSON.stringify(10 >= value.length ? value : value.slice(0, 10) + "..."); - case "object": - if (isArrayImpl(value)) return "[...]"; - if (null !== value && value.$$typeof === CLIENT_REFERENCE_TAG) return "client"; - value = objectName(value); - return "Object" === value ? "{...}" : value; - case "function": - return value.$$typeof === CLIENT_REFERENCE_TAG ? "client" : (value = value.displayName || value.name) ? "function " + value : "function"; - default: - return String(value); - } - } - function describeElementType(type) { - if ("string" === typeof type) return type; - switch(type){ - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch(type.$$typeof){ - case REACT_FORWARD_REF_TYPE: - return describeElementType(type.render); - case REACT_MEMO_TYPE: - return describeElementType(type.type); - case REACT_LAZY_TYPE: - var payload = type._payload; - type = type._init; - try { - return describeElementType(type(payload)); - } catch (x) {} - } - return ""; - } - function describeObjectForErrorMessage(objectOrArray, expandedName) { - var objKind = objectName(objectOrArray); - if ("Object" !== objKind && "Array" !== objKind) return objKind; - var start = -1, length = 0; - if (isArrayImpl(objectOrArray)) if (jsxChildrenParents.has(objectOrArray)) { - var type = jsxChildrenParents.get(objectOrArray); - objKind = "<" + describeElementType(type) + ">"; - for(var i = 0; i < objectOrArray.length; i++){ - var value = objectOrArray[i]; - value = "string" === typeof value ? value : "object" === typeof value && null !== value ? "{" + describeObjectForErrorMessage(value) + "}" : "{" + describeValueForErrorMessage(value) + "}"; - "" + i === expandedName ? (start = objKind.length, length = value.length, objKind += value) : objKind = 15 > value.length && 40 > objKind.length + value.length ? objKind + value : objKind + "{...}"; - } - objKind += "</" + describeElementType(type) + ">"; - } else { - objKind = "["; - for(type = 0; type < objectOrArray.length; type++)0 < type && (objKind += ", "), i = objectOrArray[type], i = "object" === typeof i && null !== i ? describeObjectForErrorMessage(i) : describeValueForErrorMessage(i), "" + type === expandedName ? (start = objKind.length, length = i.length, objKind += i) : objKind = 10 > i.length && 40 > objKind.length + i.length ? objKind + i : objKind + "..."; - objKind += "]"; - } - else if (objectOrArray.$$typeof === REACT_ELEMENT_TYPE) objKind = "<" + describeElementType(objectOrArray.type) + "/>"; - else { - if (objectOrArray.$$typeof === CLIENT_REFERENCE_TAG) return "client"; - if (jsxPropsParents.has(objectOrArray)) { - objKind = jsxPropsParents.get(objectOrArray); - objKind = "<" + (describeElementType(objKind) || "..."); - type = Object.keys(objectOrArray); - for(i = 0; i < type.length; i++){ - objKind += " "; - value = type[i]; - objKind += describeKeyForErrorMessage(value) + "="; - var _value2 = objectOrArray[value]; - var _substr2 = value === expandedName && "object" === typeof _value2 && null !== _value2 ? describeObjectForErrorMessage(_value2) : describeValueForErrorMessage(_value2); - "string" !== typeof _value2 && (_substr2 = "{" + _substr2 + "}"); - value === expandedName ? (start = objKind.length, length = _substr2.length, objKind += _substr2) : objKind = 10 > _substr2.length && 40 > objKind.length + _substr2.length ? objKind + _substr2 : objKind + "..."; - } - objKind += ">"; - } else { - objKind = "{"; - type = Object.keys(objectOrArray); - for(i = 0; i < type.length; i++)0 < i && (objKind += ", "), value = type[i], objKind += describeKeyForErrorMessage(value) + ": ", _value2 = objectOrArray[value], _value2 = "object" === typeof _value2 && null !== _value2 ? describeObjectForErrorMessage(_value2) : describeValueForErrorMessage(_value2), value === expandedName ? (start = objKind.length, length = _value2.length, objKind += _value2) : objKind = 10 > _value2.length && 40 > objKind.length + _value2.length ? objKind + _value2 : objKind + "..."; - objKind += "}"; - } - } - return void 0 === expandedName ? objKind : -1 < start && 0 < length ? (objectOrArray = " ".repeat(start) + "^".repeat(length), "\n " + objKind + "\n " + objectOrArray) : "\n " + objKind; - } - function serializeNumber(number) { - return Number.isFinite(number) ? 0 === number && -Infinity === 1 / number ? "$-0" : number : Infinity === number ? "$Infinity" : -Infinity === number ? "$-Infinity" : "$NaN"; - } - function processReply(root, formFieldPrefix, temporaryReferences, resolve, reject) { - function serializeTypedArray(tag, typedArray) { - typedArray = new Blob([ - new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength) - ]); - var blobId = nextPartId++; - null === formData && (formData = new FormData()); - formData.append(formFieldPrefix + blobId, typedArray); - return "$" + tag + blobId.toString(16); - } - function serializeBinaryReader(reader) { - function progress(entry) { - entry.done ? (entry = nextPartId++, data.append(formFieldPrefix + entry, new Blob(buffer)), data.append(formFieldPrefix + streamId, '"$o' + entry.toString(16) + '"'), data.append(formFieldPrefix + streamId, "C"), pendingParts--, 0 === pendingParts && resolve(data)) : (buffer.push(entry.value), reader.read(new Uint8Array(1024)).then(progress, reject)); - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++, buffer = []; - reader.read(new Uint8Array(1024)).then(progress, reject); - return "$r" + streamId.toString(16); - } - function serializeReader(reader) { - function progress(entry) { - if (entry.done) data.append(formFieldPrefix + streamId, "C"), pendingParts--, 0 === pendingParts && resolve(data); - else try { - var partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, partJSON); - reader.read().then(progress, reject); - } catch (x) { - reject(x); - } - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++; - reader.read().then(progress, reject); - return "$R" + streamId.toString(16); - } - function serializeReadableStream(stream) { - try { - var binaryReader = stream.getReader({ - mode: "byob" - }); - } catch (x) { - return serializeReader(stream.getReader()); - } - return serializeBinaryReader(binaryReader); - } - function serializeAsyncIterable(iterable, iterator) { - function progress(entry) { - if (entry.done) { - if (void 0 === entry.value) data.append(formFieldPrefix + streamId, "C"); - else try { - var partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, "C" + partJSON); - } catch (x) { - reject(x); - return; - } - pendingParts--; - 0 === pendingParts && resolve(data); - } else try { - var _partJSON = JSON.stringify(entry.value, resolveToJSON); - data.append(formFieldPrefix + streamId, _partJSON); - iterator.next().then(progress, reject); - } catch (x$0) { - reject(x$0); - } - } - null === formData && (formData = new FormData()); - var data = formData; - pendingParts++; - var streamId = nextPartId++; - iterable = iterable === iterator; - iterator.next().then(progress, reject); - return "$" + (iterable ? "x" : "X") + streamId.toString(16); - } - function resolveToJSON(key, value) { - "__proto__" === key && console.error("Expected not to serialize an object with own property `__proto__`. When parsed this property will be omitted.%s", describeObjectForErrorMessage(this, key)); - var originalValue = this[key]; - "object" !== typeof originalValue || originalValue === value || originalValue instanceof Date || ("Object" !== objectName(originalValue) ? console.error("Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s", objectName(originalValue), describeObjectForErrorMessage(this, key)) : console.error("Only plain objects can be passed to Server Functions from the Client. Objects with toJSON methods are not supported. Convert it manually to a simple value before passing it to props.%s", describeObjectForErrorMessage(this, key))); - if (null === value) return null; - if ("object" === typeof value) { - switch(value.$$typeof){ - case REACT_ELEMENT_TYPE: - if (void 0 !== temporaryReferences && -1 === key.indexOf(":")) { - var parentReference = writtenObjects.get(this); - if (void 0 !== parentReference) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - } - throw Error("React Element cannot be passed to Server Functions from the Client without a temporary reference set. Pass a TemporaryReferenceSet to the options." + describeObjectForErrorMessage(this, key)); - case REACT_LAZY_TYPE: - originalValue = value._payload; - var init = value._init; - null === formData && (formData = new FormData()); - pendingParts++; - try { - parentReference = init(originalValue); - var lazyId = nextPartId++, partJSON = serializeModel(parentReference, lazyId); - formData.append(formFieldPrefix + lazyId, partJSON); - return "$" + lazyId.toString(16); - } catch (x) { - if ("object" === typeof x && null !== x && "function" === typeof x.then) { - pendingParts++; - var _lazyId = nextPartId++; - parentReference = function() { - try { - var _partJSON2 = serializeModel(value, _lazyId), _data = formData; - _data.append(formFieldPrefix + _lazyId, _partJSON2); - pendingParts--; - 0 === pendingParts && resolve(_data); - } catch (reason) { - reject(reason); - } - }; - x.then(parentReference, parentReference); - return "$" + _lazyId.toString(16); - } - reject(x); - return null; - } finally{ - pendingParts--; - } - } - parentReference = writtenObjects.get(value); - if ("function" === typeof value.then) { - if (void 0 !== parentReference) if (modelRoot === value) modelRoot = null; - else return parentReference; - null === formData && (formData = new FormData()); - pendingParts++; - var promiseId = nextPartId++; - key = "$@" + promiseId.toString(16); - writtenObjects.set(value, key); - value.then(function(partValue) { - try { - var previousReference = writtenObjects.get(partValue); - var _partJSON3 = void 0 !== previousReference ? JSON.stringify(previousReference) : serializeModel(partValue, promiseId); - partValue = formData; - partValue.append(formFieldPrefix + promiseId, _partJSON3); - pendingParts--; - 0 === pendingParts && resolve(partValue); - } catch (reason) { - reject(reason); - } - }, reject); - return key; - } - if (void 0 !== parentReference) if (modelRoot === value) modelRoot = null; - else return parentReference; - else -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference && (parentReference = parentReference + ":" + key, writtenObjects.set(value, parentReference), void 0 !== temporaryReferences && temporaryReferences.set(parentReference, value))); - if (isArrayImpl(value)) return value; - if (value instanceof FormData) { - null === formData && (formData = new FormData()); - var _data3 = formData; - key = nextPartId++; - var prefix = formFieldPrefix + key + "_"; - value.forEach(function(originalValue, originalKey) { - _data3.append(prefix + originalKey, originalValue); - }); - return "$K" + key.toString(16); - } - if (value instanceof Map) return key = nextPartId++, parentReference = serializeModel(Array.from(value), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$Q" + key.toString(16); - if (value instanceof Set) return key = nextPartId++, parentReference = serializeModel(Array.from(value), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$W" + key.toString(16); - if (value instanceof ArrayBuffer) return key = new Blob([ - value - ]), parentReference = nextPartId++, null === formData && (formData = new FormData()), formData.append(formFieldPrefix + parentReference, key), "$A" + parentReference.toString(16); - if (value instanceof Int8Array) return serializeTypedArray("O", value); - if (value instanceof Uint8Array) return serializeTypedArray("o", value); - if (value instanceof Uint8ClampedArray) return serializeTypedArray("U", value); - if (value instanceof Int16Array) return serializeTypedArray("S", value); - if (value instanceof Uint16Array) return serializeTypedArray("s", value); - if (value instanceof Int32Array) return serializeTypedArray("L", value); - if (value instanceof Uint32Array) return serializeTypedArray("l", value); - if (value instanceof Float32Array) return serializeTypedArray("G", value); - if (value instanceof Float64Array) return serializeTypedArray("g", value); - if (value instanceof BigInt64Array) return serializeTypedArray("M", value); - if (value instanceof BigUint64Array) return serializeTypedArray("m", value); - if (value instanceof DataView) return serializeTypedArray("V", value); - if ("function" === typeof Blob && value instanceof Blob) return null === formData && (formData = new FormData()), key = nextPartId++, formData.append(formFieldPrefix + key, value), "$B" + key.toString(16); - if (parentReference = getIteratorFn(value)) return parentReference = parentReference.call(value), parentReference === value ? (key = nextPartId++, parentReference = serializeModel(Array.from(parentReference), key), null === formData && (formData = new FormData()), formData.append(formFieldPrefix + key, parentReference), "$i" + key.toString(16)) : Array.from(parentReference); - if ("function" === typeof ReadableStream && value instanceof ReadableStream) return serializeReadableStream(value); - parentReference = value[ASYNC_ITERATOR]; - if ("function" === typeof parentReference) return serializeAsyncIterable(value, parentReference.call(value)); - parentReference = getPrototypeOf(value); - if (parentReference !== ObjectPrototype && (null === parentReference || null !== getPrototypeOf(parentReference))) { - if (void 0 === temporaryReferences) throw Error("Only plain objects, and a few built-ins, can be passed to Server Functions. Classes or null prototypes are not supported." + describeObjectForErrorMessage(this, key)); - return "$T"; - } - value.$$typeof === REACT_CONTEXT_TYPE ? console.error("React Context Providers cannot be passed to Server Functions from the Client.%s", describeObjectForErrorMessage(this, key)) : "Object" !== objectName(value) ? console.error("Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s", objectName(value), describeObjectForErrorMessage(this, key)) : isSimpleObject(value) ? Object.getOwnPropertySymbols && (parentReference = Object.getOwnPropertySymbols(value), 0 < parentReference.length && console.error("Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s", parentReference[0].description, describeObjectForErrorMessage(this, key))) : console.error("Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s", describeObjectForErrorMessage(this, key)); - return value; - } - if ("string" === typeof value) { - if ("Z" === value[value.length - 1] && this[key] instanceof Date) return "$D" + value; - key = "$" === value[0] ? "$" + value : value; - return key; - } - if ("boolean" === typeof value) return value; - if ("number" === typeof value) return serializeNumber(value); - if ("undefined" === typeof value) return "$undefined"; - if ("function" === typeof value) { - parentReference = knownServerReferences.get(value); - if (void 0 !== parentReference) { - key = writtenObjects.get(value); - if (void 0 !== key) return key; - key = JSON.stringify({ - id: parentReference.id, - bound: parentReference.bound - }, resolveToJSON); - null === formData && (formData = new FormData()); - parentReference = nextPartId++; - formData.set(formFieldPrefix + parentReference, key); - key = "$h" + parentReference.toString(16); - writtenObjects.set(value, key); - return key; - } - if (void 0 !== temporaryReferences && -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference)) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - throw Error("Client Functions cannot be passed directly to Server Functions. Only Functions passed from the Server can be passed back again."); - } - if ("symbol" === typeof value) { - if (void 0 !== temporaryReferences && -1 === key.indexOf(":") && (parentReference = writtenObjects.get(this), void 0 !== parentReference)) return temporaryReferences.set(parentReference + ":" + key, value), "$T"; - throw Error("Symbols cannot be passed to a Server Function without a temporary reference set. Pass a TemporaryReferenceSet to the options." + describeObjectForErrorMessage(this, key)); - } - if ("bigint" === typeof value) return "$n" + value.toString(10); - throw Error("Type " + typeof value + " is not supported as an argument to a Server Function."); - } - function serializeModel(model, id) { - "object" === typeof model && null !== model && (id = "$" + id.toString(16), writtenObjects.set(model, id), void 0 !== temporaryReferences && temporaryReferences.set(id, model)); - modelRoot = model; - return JSON.stringify(model, resolveToJSON); - } - var nextPartId = 1, pendingParts = 0, formData = null, writtenObjects = new WeakMap(), modelRoot = root, json = serializeModel(root, 0); - null === formData ? resolve(json) : (formData.set(formFieldPrefix + "0", json), 0 === pendingParts && resolve(formData)); - return function() { - 0 < pendingParts && (pendingParts = 0, null === formData ? resolve(json) : resolve(formData)); - }; - } - function createFakeServerFunction(name, filename, sourceMap, line, col, environmentName, innerFunction) { - name || (name = "<anonymous>"); - var encodedName = JSON.stringify(name); - 1 >= line ? (line = encodedName.length + 7, col = "s=>({" + encodedName + " ".repeat(col < line ? 0 : col - line) + ":(...args) => s(...args)})\n/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */") : col = "/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */" + "\n".repeat(line - 2) + "server=>({" + encodedName + ":\n" + " ".repeat(1 > col ? 0 : col - 1) + "(...args) => server(...args)})"; - filename.startsWith("/") && (filename = "file://" + filename); - sourceMap ? (col += "\n//# sourceURL=about://React/" + encodeURIComponent(environmentName) + "/" + encodeURI(filename) + "?s" + fakeServerFunctionIdx++, col += "\n//# sourceMappingURL=" + sourceMap) : filename && (col += "\n//# sourceURL=" + filename); - try { - return (0, eval)(col)(innerFunction)[name]; - } catch (x) { - return innerFunction; - } - } - function registerBoundServerReference(reference, id, bound) { - knownServerReferences.has(reference) || knownServerReferences.set(reference, { - id: id, - originalBind: reference.bind, - bound: bound - }); - } - function createBoundServerReference(metaData, callServer, encodeFormAction, findSourceMapURL) { - function action() { - var args = Array.prototype.slice.call(arguments); - return bound ? "fulfilled" === bound.status ? callServer(id, bound.value.concat(args)) : Promise.resolve(bound).then(function(boundArgs) { - return callServer(id, boundArgs.concat(args)); - }) : callServer(id, args); - } - var id = metaData.id, bound = metaData.bound, location = metaData.location; - if (location) { - encodeFormAction = metaData.name || ""; - var filename = location[1], line = location[2]; - location = location[3]; - metaData = metaData.env || "Server"; - findSourceMapURL = null == findSourceMapURL ? null : findSourceMapURL(filename, metaData); - action = createFakeServerFunction(encodeFormAction, filename, findSourceMapURL, line, location, metaData, action); - } - registerBoundServerReference(action, id, bound); - return action; - } - function parseStackLocation(error) { - error = error.stack; - error.startsWith("Error: react-stack-top-frame\n") && (error = error.slice(29)); - var endOfFirst = error.indexOf("\n"); - if (-1 !== endOfFirst) { - var endOfSecond = error.indexOf("\n", endOfFirst + 1); - endOfFirst = -1 === endOfSecond ? error.slice(endOfFirst + 1) : error.slice(endOfFirst + 1, endOfSecond); - } else endOfFirst = error; - error = v8FrameRegExp.exec(endOfFirst); - if (!error && (error = jscSpiderMonkeyFrameRegExp.exec(endOfFirst), !error)) return null; - endOfFirst = error[1] || ""; - "<anonymous>" === endOfFirst && (endOfFirst = ""); - endOfSecond = error[2] || error[5] || ""; - "<anonymous>" === endOfSecond && (endOfSecond = ""); - return [ - endOfFirst, - endOfSecond, - +(error[3] || error[6]), - +(error[4] || error[7]) - ]; - } - function getComponentNameFromType(type) { - if (null == type) return null; - if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null; - if ("string" === typeof type) return type; - switch(type){ - case REACT_FRAGMENT_TYPE: - return "Fragment"; - case REACT_PROFILER_TYPE: - return "Profiler"; - case REACT_STRICT_MODE_TYPE: - return "StrictMode"; - case REACT_SUSPENSE_TYPE: - return "Suspense"; - case REACT_SUSPENSE_LIST_TYPE: - return "SuspenseList"; - case REACT_ACTIVITY_TYPE: - return "Activity"; - case REACT_VIEW_TRANSITION_TYPE: - return "ViewTransition"; - } - if ("object" === typeof type) switch("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof){ - case REACT_PORTAL_TYPE: - return "Portal"; - case REACT_CONTEXT_TYPE: - return type.displayName || "Context"; - case REACT_CONSUMER_TYPE: - return (type._context.displayName || "Context") + ".Consumer"; - case REACT_FORWARD_REF_TYPE: - var innerType = type.render; - type = type.displayName; - type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"); - return type; - case REACT_MEMO_TYPE: - return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo"; - case REACT_LAZY_TYPE: - innerType = type._payload; - type = type._init; - try { - return getComponentNameFromType(type(innerType)); - } catch (x) {} - } - return null; - } - function getArrayKind(array) { - for(var kind = 0, i = 0; i < array.length && 100 > i; i++){ - var value = array[i]; - if ("object" === typeof value && null !== value) if (isArrayImpl(value) && 2 === value.length && "string" === typeof value[0]) { - if (0 !== kind && 3 !== kind) return 1; - kind = 3; - } else return 1; - else { - if ("function" === typeof value || "string" === typeof value && 50 < value.length || 0 !== kind && 2 !== kind) return 1; - kind = 2; - } - } - return kind; - } - function addObjectToProperties(object, properties, indent, prefix) { - var addedProperties = 0, key; - for(key in object)if (hasOwnProperty.call(object, key) && "_" !== key[0] && (addedProperties++, addValueToProperties(key, object[key], properties, indent, prefix), 100 <= addedProperties)) { - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + "Only 100 properties are shown. React will not log more properties of this object.", - "" - ]); - break; - } - } - function addValueToProperties(propertyName, value, properties, indent, prefix) { - switch(typeof value){ - case "object": - if (null === value) { - value = "null"; - break; - } else { - if (value.$$typeof === REACT_ELEMENT_TYPE) { - var typeName = getComponentNameFromType(value.type) || "\u2026", key = value.key; - value = value.props; - var propsKeys = Object.keys(value), propsLength = propsKeys.length; - if (null == key && 0 === propsLength) { - value = "<" + typeName + " />"; - break; - } - if (3 > indent || 1 === propsLength && "children" === propsKeys[0] && null == key) { - value = "<" + typeName + " \u2026 />"; - break; - } - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "<" + typeName - ]); - null !== key && addValueToProperties("key", key, properties, indent + 1, prefix); - propertyName = !1; - key = 0; - for(var propKey in value)if (key++, "children" === propKey ? null != value.children && (!isArrayImpl(value.children) || 0 < value.children.length) && (propertyName = !0) : hasOwnProperty.call(value, propKey) && "_" !== propKey[0] && addValueToProperties(propKey, value[propKey], properties, indent + 1, prefix), 100 <= key) break; - properties.push([ - "", - propertyName ? ">\u2026</" + typeName + ">" : "/>" - ]); - return; - } - typeName = Object.prototype.toString.call(value); - propKey = typeName.slice(8, typeName.length - 1); - if ("Array" === propKey) { - if (typeName = 100 < value.length, key = getArrayKind(value), 2 === key || 0 === key) { - value = JSON.stringify(typeName ? value.slice(0, 100).concat("\u2026") : value); - break; - } else if (3 === key) { - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "" - ]); - for(propertyName = 0; propertyName < value.length && 100 > propertyName; propertyName++)propKey = value[propertyName], addValueToProperties(propKey[0], propKey[1], properties, indent + 1, prefix); - typeName && addValueToProperties(100..toString(), "\u2026", properties, indent + 1, prefix); - return; - } - } - if ("Promise" === propKey) { - if ("fulfilled" === value.status) { - if (typeName = properties.length, addValueToProperties(propertyName, value.value, properties, indent, prefix), properties.length > typeName) { - properties = properties[typeName]; - properties[1] = "Promise<" + (properties[1] || "Object") + ">"; - return; - } - } else if ("rejected" === value.status && (typeName = properties.length, addValueToProperties(propertyName, value.reason, properties, indent, prefix), properties.length > typeName)) { - properties = properties[typeName]; - properties[1] = "Rejected Promise<" + properties[1] + ">"; - return; - } - properties.push([ - "\u00a0\u00a0".repeat(indent) + propertyName, - "Promise" - ]); - return; - } - "Object" === propKey && (typeName = Object.getPrototypeOf(value)) && "function" === typeof typeName.constructor && (propKey = typeName.constructor.name); - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - "Object" === propKey ? 3 > indent ? "" : "\u2026" : propKey - ]); - 3 > indent && addObjectToProperties(value, properties, indent + 1, prefix); - return; - } - case "function": - value = "" === value.name ? "() => {}" : value.name + "() {}"; - break; - case "string": - value = "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects." === value ? "\u2026" : JSON.stringify(value); - break; - case "undefined": - value = "undefined"; - break; - case "boolean": - value = value ? "true" : "false"; - break; - default: - value = String(value); - } - properties.push([ - prefix + "\u00a0\u00a0".repeat(indent) + propertyName, - value - ]); - } - function getIODescription(value) { - try { - switch(typeof value){ - case "function": - return value.name || ""; - case "object": - if (null === value) return ""; - if (value instanceof Error) return String(value.message); - if ("string" === typeof value.url) return value.url; - if ("string" === typeof value.href) return value.href; - if ("string" === typeof value.src) return value.src; - if ("string" === typeof value.currentSrc) return value.currentSrc; - if ("string" === typeof value.command) return value.command; - if ("object" === typeof value.request && null !== value.request && "string" === typeof value.request.url) return value.request.url; - if ("object" === typeof value.response && null !== value.response && "string" === typeof value.response.url) return value.response.url; - if ("string" === typeof value.id || "number" === typeof value.id || "bigint" === typeof value.id) return String(value.id); - if ("string" === typeof value.name) return value.name; - var str = value.toString(); - return str.startsWith("[object ") || 5 > str.length || 500 < str.length ? "" : str; - case "string": - return 5 > value.length || 500 < value.length ? "" : value; - case "number": - case "bigint": - return String(value); - default: - return ""; - } - } catch (x) { - return ""; - } - } - function markAllTracksInOrder() { - supportsUserTiming && (console.timeStamp("Server Requests Track", 0.001, 0.001, "Server Requests \u269b", void 0, "primary-light"), console.timeStamp("Server Components Track", 0.001, 0.001, "Primary", "Server Components \u269b", "primary-light")); - } - function getIOColor(functionName) { - switch(functionName.charCodeAt(0) % 3){ - case 0: - return "tertiary-light"; - case 1: - return "tertiary"; - default: - return "tertiary-dark"; - } - } - function getIOLongName(ioInfo, description, env, rootEnv) { - ioInfo = ioInfo.name; - description = "" === description ? ioInfo : ioInfo + " (" + description + ")"; - return env === rootEnv || void 0 === env ? description : description + " [" + env + "]"; - } - function getIOShortName(ioInfo, description, env, rootEnv) { - ioInfo = ioInfo.name; - env = env === rootEnv || void 0 === env ? "" : " [" + env + "]"; - var desc = ""; - rootEnv = 30 - ioInfo.length - env.length; - if (1 < rootEnv) { - var l = description.length; - if (0 < l && l <= rootEnv) desc = " (" + description + ")"; - else if (description.startsWith("http://") || description.startsWith("https://") || description.startsWith("/")) { - var queryIdx = description.indexOf("?"); - -1 === queryIdx && (queryIdx = description.length); - 47 === description.charCodeAt(queryIdx - 1) && queryIdx--; - desc = description.lastIndexOf("/", queryIdx - 1); - queryIdx - desc < rootEnv ? desc = " (\u2026" + description.slice(desc, queryIdx) + ")" : (l = description.slice(desc, desc + rootEnv / 2), description = description.slice(queryIdx - rootEnv / 2, queryIdx), desc = " (" + (0 < desc ? "\u2026" : "") + l + "\u2026" + description + ")"); - } - } - return ioInfo + desc + env; - } - function logComponentAwait(asyncInfo, trackIdx, startTime, endTime, rootEnv, value) { - if (supportsUserTiming && 0 < endTime) { - var description = getIODescription(value), name = getIOShortName(asyncInfo.awaited, description, asyncInfo.env, rootEnv), entryName = "await " + name; - name = getIOColor(name); - var debugTask = asyncInfo.debugTask || asyncInfo.awaited.debugTask; - if (debugTask) { - var properties = []; - "object" === typeof value && null !== value ? addObjectToProperties(value, properties, 0, "") : void 0 !== value && addValueToProperties("awaited value", value, properties, 0, ""); - asyncInfo = getIOLongName(asyncInfo.awaited, description, asyncInfo.env, rootEnv); - debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: name, - track: trackNames[trackIdx], - trackGroup: "Server Components \u269b", - properties: properties, - tooltipText: asyncInfo - } - } - })); - performance.clearMeasures(entryName); - } else console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, trackNames[trackIdx], "Server Components \u269b", name); - } - } - function logIOInfoErrored(ioInfo, rootEnv, error) { - var startTime = ioInfo.start, endTime = ioInfo.end; - if (supportsUserTiming && 0 <= endTime) { - var description = getIODescription(error), entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv), debugTask = ioInfo.debugTask; - entryName = "\u200b" + entryName; - debugTask ? (error = [ - [ - "rejected with", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ] - ], ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv) + " Rejected", debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: "error", - track: "Server Requests \u269b", - properties: error, - tooltipText: ioInfo - } - } - })), performance.clearMeasures(entryName)) : console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, "Server Requests \u269b", void 0, "error"); - } - } - function logIOInfo(ioInfo, rootEnv, value) { - var startTime = ioInfo.start, endTime = ioInfo.end; - if (supportsUserTiming && 0 <= endTime) { - var description = getIODescription(value), entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv), color = getIOColor(entryName), debugTask = ioInfo.debugTask; - entryName = "\u200b" + entryName; - if (debugTask) { - var properties = []; - "object" === typeof value && null !== value ? addObjectToProperties(value, properties, 0, "") : void 0 !== value && addValueToProperties("Resolved", value, properties, 0, ""); - ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv); - debugTask.run(performance.measure.bind(performance, entryName, { - start: 0 > startTime ? 0 : startTime, - end: endTime, - detail: { - devtools: { - color: color, - track: "Server Requests \u269b", - properties: properties, - tooltipText: ioInfo - } - } - })); - performance.clearMeasures(entryName); - } else console.timeStamp(entryName, 0 > startTime ? 0 : startTime, endTime, "Server Requests \u269b", void 0, color); - } - } - function ReactPromise(status, value, reason) { - this.status = status; - this.value = value; - this.reason = reason; - this._children = []; - this._debugChunk = null; - this._debugInfo = []; - } - function unwrapWeakResponse(weakResponse) { - weakResponse = weakResponse.weak.deref(); - if (void 0 === weakResponse) throw Error("We did not expect to receive new data after GC:ing the response."); - return weakResponse; - } - function closeDebugChannel(debugChannel) { - debugChannel.callback && debugChannel.callback(""); - } - function readChunk(chunk) { - switch(chunk.status){ - case "resolved_model": - initializeModelChunk(chunk); - break; - case "resolved_module": - initializeModuleChunk(chunk); - } - switch(chunk.status){ - case "fulfilled": - return chunk.value; - case "pending": - case "blocked": - case "halted": - throw chunk; - default: - throw chunk.reason; - } - } - function getRoot(weakResponse) { - weakResponse = unwrapWeakResponse(weakResponse); - return getChunk(weakResponse, 0); - } - function createPendingChunk(response) { - 0 === response._pendingChunks++ && (response._weakResponse.response = response, null !== response._pendingInitialRender && (clearTimeout(response._pendingInitialRender), response._pendingInitialRender = null)); - return new ReactPromise("pending", null, null); - } - function releasePendingChunk(response, chunk) { - "pending" === chunk.status && 0 === --response._pendingChunks && (response._weakResponse.response = null, response._pendingInitialRender = setTimeout(flushInitialRenderPerformance.bind(null, response), 100)); - } - function filterDebugInfo(response, value) { - if (null !== response._debugEndTime) { - response = response._debugEndTime - performance.timeOrigin; - for(var debugInfo = [], i = 0; i < value._debugInfo.length; i++){ - var info = value._debugInfo[i]; - if ("number" === typeof info.time && info.time > response) break; - debugInfo.push(info); - } - value._debugInfo = debugInfo; - } - } - function moveDebugInfoFromChunkToInnerValue(chunk, value) { - value = resolveLazy(value); - "object" !== typeof value || null === value || !isArrayImpl(value) && "function" !== typeof value[ASYNC_ITERATOR] && value.$$typeof !== REACT_ELEMENT_TYPE && value.$$typeof !== REACT_LAZY_TYPE || (chunk = chunk._debugInfo.splice(0), isArrayImpl(value._debugInfo) ? value._debugInfo.unshift.apply(value._debugInfo, chunk) : Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: chunk - })); - } - function wakeChunk(response, listeners, value, chunk) { - for(var i = 0; i < listeners.length; i++){ - var listener = listeners[i]; - "function" === typeof listener ? listener(value) : fulfillReference(response, listener, value, chunk); - } - filterDebugInfo(response, chunk); - moveDebugInfoFromChunkToInnerValue(chunk, value); - } - function rejectChunk(response, listeners, error) { - for(var i = 0; i < listeners.length; i++){ - var listener = listeners[i]; - "function" === typeof listener ? listener(error) : rejectReference(response, listener.handler, error); - } - } - function resolveBlockedCycle(resolvedChunk, reference) { - var referencedChunk = reference.handler.chunk; - if (null === referencedChunk) return null; - if (referencedChunk === resolvedChunk) return reference.handler; - reference = referencedChunk.value; - if (null !== reference) for(referencedChunk = 0; referencedChunk < reference.length; referencedChunk++){ - var listener = reference[referencedChunk]; - if ("function" !== typeof listener && (listener = resolveBlockedCycle(resolvedChunk, listener), null !== listener)) return listener; - } - return null; - } - function wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners) { - switch(chunk.status){ - case "fulfilled": - wakeChunk(response, resolveListeners, chunk.value, chunk); - break; - case "blocked": - for(var i = 0; i < resolveListeners.length; i++){ - var listener = resolveListeners[i]; - if ("function" !== typeof listener) { - var cyclicHandler = resolveBlockedCycle(chunk, listener); - if (null !== cyclicHandler) switch(fulfillReference(response, listener, cyclicHandler.value, chunk), resolveListeners.splice(i, 1), i--, null !== rejectListeners && (listener = rejectListeners.indexOf(listener), -1 !== listener && rejectListeners.splice(listener, 1)), chunk.status){ - case "fulfilled": - wakeChunk(response, resolveListeners, chunk.value, chunk); - return; - case "rejected": - null !== rejectListeners && rejectChunk(response, rejectListeners, chunk.reason); - return; - } - } - } - case "pending": - if (chunk.value) for(response = 0; response < resolveListeners.length; response++)chunk.value.push(resolveListeners[response]); - else chunk.value = resolveListeners; - if (chunk.reason) { - if (rejectListeners) for(resolveListeners = 0; resolveListeners < rejectListeners.length; resolveListeners++)chunk.reason.push(rejectListeners[resolveListeners]); - } else chunk.reason = rejectListeners; - break; - case "rejected": - rejectListeners && rejectChunk(response, rejectListeners, chunk.reason); - } - } - function triggerErrorOnChunk(response, chunk, error) { - if ("pending" !== chunk.status && "blocked" !== chunk.status) chunk.reason.error(error); - else { - releasePendingChunk(response, chunk); - var listeners = chunk.reason; - if ("pending" === chunk.status && null != chunk._debugChunk) { - var prevHandler = initializingHandler, prevChunk = initializingChunk; - initializingHandler = null; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - try { - initializeDebugChunk(response, chunk); - } finally{ - initializingHandler = prevHandler, initializingChunk = prevChunk; - } - } - chunk.status = "rejected"; - chunk.reason = error; - null !== listeners && rejectChunk(response, listeners, error); - } - } - function createResolvedModelChunk(response, value) { - return new ReactPromise("resolved_model", value, response); - } - function createResolvedIteratorResultChunk(response, value, done) { - return new ReactPromise("resolved_model", (done ? '{"done":true,"value":' : '{"done":false,"value":') + value + "}", response); - } - function resolveIteratorResultChunk(response, chunk, value, done) { - resolveModelChunk(response, chunk, (done ? '{"done":true,"value":' : '{"done":false,"value":') + value + "}"); - } - function resolveModelChunk(response, chunk, value) { - if ("pending" !== chunk.status) chunk.reason.enqueueModel(value); - else { - releasePendingChunk(response, chunk); - var resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "resolved_model"; - chunk.value = value; - chunk.reason = response; - null !== resolveListeners && (initializeModelChunk(chunk), wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners)); - } - } - function resolveModuleChunk(response, chunk, value) { - if ("pending" === chunk.status || "blocked" === chunk.status) { - releasePendingChunk(response, chunk); - var resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "resolved_module"; - chunk.value = value; - chunk.reason = null; - value = value[1]; - for(var debugInfo = [], i = 0; i < value.length;){ - var chunkFilename = value[i++], href = void 0, target = debugInfo, ioInfo = chunkIOInfoCache.get(chunkFilename); - if (void 0 === ioInfo) { - try { - href = new URL(chunkFilename, document.baseURI).href; - } catch (_) { - href = chunkFilename; - } - var end = ioInfo = -1, byteSize = 0; - if ("function" === typeof performance.getEntriesByType) for(var resourceEntries = performance.getEntriesByType("resource"), i$jscomp$0 = 0; i$jscomp$0 < resourceEntries.length; i$jscomp$0++){ - var resourceEntry = resourceEntries[i$jscomp$0]; - resourceEntry.name === href && (ioInfo = resourceEntry.startTime, end = ioInfo + resourceEntry.duration, byteSize = resourceEntry.transferSize || 0); - } - resourceEntries = Promise.resolve(href); - resourceEntries.status = "fulfilled"; - resourceEntries.value = href; - i$jscomp$0 = Error("react-stack-top-frame"); - i$jscomp$0.stack.startsWith("Error: react-stack-top-frame") ? i$jscomp$0.stack = "Error: react-stack-top-frame\n at Client Component Bundle (" + href + ":1:1)\n at Client Component Bundle (" + href + ":1:1)" : i$jscomp$0.stack = "Client Component Bundle@" + href + ":1:1\nClient Component Bundle@" + href + ":1:1"; - ioInfo = { - name: "script", - start: ioInfo, - end: end, - value: resourceEntries, - debugStack: i$jscomp$0 - }; - 0 < byteSize && (ioInfo.byteSize = byteSize); - chunkIOInfoCache.set(chunkFilename, ioInfo); - } - target.push({ - awaited: ioInfo - }); - } - null !== debugInfo && chunk._debugInfo.push.apply(chunk._debugInfo, debugInfo); - null !== resolveListeners && (initializeModuleChunk(chunk), wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners)); - } - } - function initializeDebugChunk(response, chunk) { - var debugChunk = chunk._debugChunk; - if (null !== debugChunk) { - var debugInfo = chunk._debugInfo; - try { - if ("resolved_model" === debugChunk.status) { - for(var idx = debugInfo.length, c = debugChunk._debugChunk; null !== c;)"fulfilled" !== c.status && idx++, c = c._debugChunk; - initializeModelChunk(debugChunk); - switch(debugChunk.status){ - case "fulfilled": - debugInfo[idx] = initializeDebugInfo(response, debugChunk.value); - break; - case "blocked": - case "pending": - waitForReference(debugChunk, debugInfo, "" + idx, response, initializeDebugInfo, [ - "" - ], !0); - break; - default: - throw debugChunk.reason; - } - } else switch(debugChunk.status){ - case "fulfilled": - break; - case "blocked": - case "pending": - waitForReference(debugChunk, {}, "debug", response, initializeDebugInfo, [ - "" - ], !0); - break; - default: - throw debugChunk.reason; - } - } catch (error) { - triggerErrorOnChunk(response, chunk, error); - } - } - } - function initializeModelChunk(chunk) { - var prevHandler = initializingHandler, prevChunk = initializingChunk; - initializingHandler = null; - var resolvedModel = chunk.value, response = chunk.reason; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - initializeDebugChunk(response, chunk); - try { - var value = JSON.parse(resolvedModel, response._fromJSON), resolveListeners = chunk.value; - if (null !== resolveListeners) for(chunk.value = null, chunk.reason = null, resolvedModel = 0; resolvedModel < resolveListeners.length; resolvedModel++){ - var listener = resolveListeners[resolvedModel]; - "function" === typeof listener ? listener(value) : fulfillReference(response, listener, value, chunk); - } - if (null !== initializingHandler) { - if (initializingHandler.errored) throw initializingHandler.reason; - if (0 < initializingHandler.deps) { - initializingHandler.value = value; - initializingHandler.chunk = chunk; - return; - } - } - chunk.status = "fulfilled"; - chunk.value = value; - filterDebugInfo(response, chunk); - moveDebugInfoFromChunkToInnerValue(chunk, value); - } catch (error) { - chunk.status = "rejected", chunk.reason = error; - } finally{ - initializingHandler = prevHandler, initializingChunk = prevChunk; - } - } - function initializeModuleChunk(chunk) { - try { - var value = requireModule(chunk.value); - chunk.status = "fulfilled"; - chunk.value = value; - } catch (error) { - chunk.status = "rejected", chunk.reason = error; - } - } - function reportGlobalError(weakResponse, error) { - if (void 0 !== weakResponse.weak.deref()) { - var response = unwrapWeakResponse(weakResponse); - response._closed = !0; - response._closedReason = error; - response._chunks.forEach(function(chunk) { - "pending" === chunk.status ? triggerErrorOnChunk(response, chunk, error) : "fulfilled" === chunk.status && null !== chunk.reason && chunk.reason.error(error); - }); - weakResponse = response._debugChannel; - void 0 !== weakResponse && (closeDebugChannel(weakResponse), response._debugChannel = void 0, null !== debugChannelRegistry && debugChannelRegistry.unregister(response)); - } - } - function nullRefGetter() { - return null; - } - function getTaskName(type) { - if (type === REACT_FRAGMENT_TYPE) return "<>"; - if ("function" === typeof type) return '"use client"'; - if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE) return type._init === readChunk ? '"use client"' : "<...>"; - try { - var name = getComponentNameFromType(type); - return name ? "<" + name + ">" : "<...>"; - } catch (x) { - return "<...>"; - } - } - function initializeElement(response, element, lazyNode) { - var stack = element._debugStack, owner = element._owner; - null === owner && (element._owner = response._debugRootOwner); - var env = response._rootEnvironmentName; - null !== owner && null != owner.env && (env = owner.env); - var normalizedStackTrace = null; - null === owner && null != response._debugRootStack ? normalizedStackTrace = response._debugRootStack : null !== stack && (normalizedStackTrace = createFakeJSXCallStackInDEV(response, stack, env)); - element._debugStack = normalizedStackTrace; - normalizedStackTrace = null; - supportsCreateTask && null !== stack && (normalizedStackTrace = console.createTask.bind(console, getTaskName(element.type)), stack = buildFakeCallStack(response, stack, env, !1, normalizedStackTrace), env = null === owner ? null : initializeFakeTask(response, owner), null === env ? (env = response._debugRootTask, normalizedStackTrace = null != env ? env.run(stack) : stack()) : normalizedStackTrace = env.run(stack)); - element._debugTask = normalizedStackTrace; - null !== owner && initializeFakeStack(response, owner); - null !== lazyNode && (lazyNode._store && lazyNode._store.validated && !element._store.validated && (element._store.validated = lazyNode._store.validated), "fulfilled" === lazyNode._payload.status && lazyNode._debugInfo && (response = lazyNode._debugInfo.splice(0), element._debugInfo ? element._debugInfo.unshift.apply(element._debugInfo, response) : Object.defineProperty(element, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: response - }))); - Object.freeze(element.props); - } - function createLazyChunkWrapper(chunk, validated) { - var lazyType = { - $$typeof: REACT_LAZY_TYPE, - _payload: chunk, - _init: readChunk - }; - lazyType._debugInfo = chunk._debugInfo; - lazyType._store = { - validated: validated - }; - return lazyType; - } - function getChunk(response, id) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk || (chunk = response._closed ? new ReactPromise("rejected", null, response._closedReason) : createPendingChunk(response), chunks.set(id, chunk)); - return chunk; - } - function fulfillReference(response, reference, value, fulfilledChunk) { - var handler = reference.handler, parentObject = reference.parentObject, key = reference.key, map = reference.map, path = reference.path; - try { - for(var i = 1; i < path.length; i++){ - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var referencedChunk = value._payload; - if (referencedChunk === handler.chunk) value = handler.value; - else { - switch(referencedChunk.status){ - case "resolved_model": - initializeModelChunk(referencedChunk); - break; - case "resolved_module": - initializeModuleChunk(referencedChunk); - } - switch(referencedChunk.status){ - case "fulfilled": - value = referencedChunk.value; - continue; - case "blocked": - var cyclicHandler = resolveBlockedCycle(referencedChunk, reference); - if (null !== cyclicHandler) { - value = cyclicHandler.value; - continue; - } - case "pending": - path.splice(0, i - 1); - null === referencedChunk.value ? referencedChunk.value = [ - reference - ] : referencedChunk.value.push(reference); - null === referencedChunk.reason ? referencedChunk.reason = [ - reference - ] : referencedChunk.reason.push(reference); - return; - case "halted": - return; - default: - rejectReference(response, reference.handler, referencedChunk.reason); - return; - } - } - } - var name = path[i]; - if ("object" === typeof value && null !== value && hasOwnProperty.call(value, name)) value = value[name]; - else throw Error("Invalid reference."); - } - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var _referencedChunk = value._payload; - if (_referencedChunk === handler.chunk) value = handler.value; - else { - switch(_referencedChunk.status){ - case "resolved_model": - initializeModelChunk(_referencedChunk); - break; - case "resolved_module": - initializeModuleChunk(_referencedChunk); - } - switch(_referencedChunk.status){ - case "fulfilled": - value = _referencedChunk.value; - continue; - } - break; - } - } - var mappedValue = map(response, value, parentObject, key); - "__proto__" !== key && (parentObject[key] = mappedValue); - "" === key && null === handler.value && (handler.value = mappedValue); - if (parentObject[0] === REACT_ELEMENT_TYPE && "object" === typeof handler.value && null !== handler.value && handler.value.$$typeof === REACT_ELEMENT_TYPE) { - var element = handler.value; - switch(key){ - case "3": - transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - element.props = mappedValue; - break; - case "4": - element._owner = mappedValue; - break; - case "5": - element._debugStack = mappedValue; - break; - default: - transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - } - } else reference.isDebug || transferReferencedDebugInfo(handler.chunk, fulfilledChunk); - } catch (error) { - rejectReference(response, reference.handler, error); - return; - } - handler.deps--; - 0 === handler.deps && (reference = handler.chunk, null !== reference && "blocked" === reference.status && (value = reference.value, reference.status = "fulfilled", reference.value = handler.value, reference.reason = handler.reason, null !== value ? wakeChunk(response, value, handler.value, reference) : (handler = handler.value, filterDebugInfo(response, reference), moveDebugInfoFromChunkToInnerValue(reference, handler)))); - } - function rejectReference(response, handler, error) { - if (!handler.errored) { - var blockedValue = handler.value; - handler.errored = !0; - handler.value = null; - handler.reason = error; - handler = handler.chunk; - if (null !== handler && "blocked" === handler.status) { - if ("object" === typeof blockedValue && null !== blockedValue && blockedValue.$$typeof === REACT_ELEMENT_TYPE) { - var erroredComponent = { - name: getComponentNameFromType(blockedValue.type) || "", - owner: blockedValue._owner - }; - erroredComponent.debugStack = blockedValue._debugStack; - supportsCreateTask && (erroredComponent.debugTask = blockedValue._debugTask); - handler._debugInfo.push(erroredComponent); - } - triggerErrorOnChunk(response, handler, error); - } - } - } - function waitForReference(referencedChunk, parentObject, key, response, map, path, isAwaitingDebugInfo) { - if (!(void 0 !== response._debugChannel && response._debugChannel.hasReadable || "pending" !== referencedChunk.status || parentObject[0] !== REACT_ELEMENT_TYPE || "4" !== key && "5" !== key)) return null; - initializingHandler ? (response = initializingHandler, response.deps++) : response = initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }; - parentObject = { - handler: response, - parentObject: parentObject, - key: key, - map: map, - path: path - }; - parentObject.isDebug = isAwaitingDebugInfo; - null === referencedChunk.value ? referencedChunk.value = [ - parentObject - ] : referencedChunk.value.push(parentObject); - null === referencedChunk.reason ? referencedChunk.reason = [ - parentObject - ] : referencedChunk.reason.push(parentObject); - return null; - } - function loadServerReference(response, metaData, parentObject, key) { - if (!response._serverReferenceConfig) return createBoundServerReference(metaData, response._callServer, response._encodeFormAction, response._debugFindSourceMapURL); - var serverReference = resolveServerReference(response._serverReferenceConfig, metaData.id), promise = preloadModule(serverReference); - if (promise) metaData.bound && (promise = Promise.all([ - promise, - metaData.bound - ])); - else if (metaData.bound) promise = Promise.resolve(metaData.bound); - else return promise = requireModule(serverReference), registerBoundServerReference(promise, metaData.id, metaData.bound), promise; - if (initializingHandler) { - var handler = initializingHandler; - handler.deps++; - } else handler = initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }; - promise.then(function() { - var resolvedValue = requireModule(serverReference); - if (metaData.bound) { - var boundArgs = metaData.bound.value.slice(0); - boundArgs.unshift(null); - resolvedValue = resolvedValue.bind.apply(resolvedValue, boundArgs); - } - registerBoundServerReference(resolvedValue, metaData.id, metaData.bound); - "__proto__" !== key && (parentObject[key] = resolvedValue); - "" === key && null === handler.value && (handler.value = resolvedValue); - if (parentObject[0] === REACT_ELEMENT_TYPE && "object" === typeof handler.value && null !== handler.value && handler.value.$$typeof === REACT_ELEMENT_TYPE) switch(boundArgs = handler.value, key){ - case "3": - boundArgs.props = resolvedValue; - break; - case "4": - boundArgs._owner = resolvedValue; - } - handler.deps--; - 0 === handler.deps && (resolvedValue = handler.chunk, null !== resolvedValue && "blocked" === resolvedValue.status && (boundArgs = resolvedValue.value, resolvedValue.status = "fulfilled", resolvedValue.value = handler.value, resolvedValue.reason = null, null !== boundArgs ? wakeChunk(response, boundArgs, handler.value, resolvedValue) : (boundArgs = handler.value, filterDebugInfo(response, resolvedValue), moveDebugInfoFromChunkToInnerValue(resolvedValue, boundArgs)))); - }, function(error) { - if (!handler.errored) { - var blockedValue = handler.value; - handler.errored = !0; - handler.value = null; - handler.reason = error; - var chunk = handler.chunk; - if (null !== chunk && "blocked" === chunk.status) { - if ("object" === typeof blockedValue && null !== blockedValue && blockedValue.$$typeof === REACT_ELEMENT_TYPE) { - var erroredComponent = { - name: getComponentNameFromType(blockedValue.type) || "", - owner: blockedValue._owner - }; - erroredComponent.debugStack = blockedValue._debugStack; - supportsCreateTask && (erroredComponent.debugTask = blockedValue._debugTask); - chunk._debugInfo.push(erroredComponent); - } - triggerErrorOnChunk(response, chunk, error); - } - } - }); - return null; - } - function resolveLazy(value) { - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - var payload = value._payload; - if ("fulfilled" === payload.status) value = payload.value; - else break; - } - return value; - } - function transferReferencedDebugInfo(parentChunk, referencedChunk) { - if (null !== parentChunk) { - referencedChunk = referencedChunk._debugInfo; - parentChunk = parentChunk._debugInfo; - for(var i = 0; i < referencedChunk.length; ++i){ - var debugInfoEntry = referencedChunk[i]; - null == debugInfoEntry.name && parentChunk.push(debugInfoEntry); - } - } - } - function getOutlinedModel(response, reference, parentObject, key, map) { - var path = reference.split(":"); - reference = parseInt(path[0], 16); - reference = getChunk(response, reference); - null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(reference); - switch(reference.status){ - case "resolved_model": - initializeModelChunk(reference); - break; - case "resolved_module": - initializeModuleChunk(reference); - } - switch(reference.status){ - case "fulfilled": - for(var value = reference.value, i = 1; i < path.length; i++){ - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - value = value._payload; - switch(value.status){ - case "resolved_model": - initializeModelChunk(value); - break; - case "resolved_module": - initializeModuleChunk(value); - } - switch(value.status){ - case "fulfilled": - value = value.value; - break; - case "blocked": - case "pending": - return waitForReference(value, parentObject, key, response, map, path.slice(i - 1), !1); - case "halted": - return initializingHandler ? (parentObject = initializingHandler, parentObject.deps++) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }, null; - default: - return initializingHandler ? (initializingHandler.errored = !0, initializingHandler.value = null, initializingHandler.reason = value.reason) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: value.reason, - deps: 0, - errored: !0 - }, null; - } - } - value = value[path[i]]; - } - for(; "object" === typeof value && null !== value && value.$$typeof === REACT_LAZY_TYPE;){ - path = value._payload; - switch(path.status){ - case "resolved_model": - initializeModelChunk(path); - break; - case "resolved_module": - initializeModuleChunk(path); - } - switch(path.status){ - case "fulfilled": - value = path.value; - continue; - } - break; - } - response = map(response, value, parentObject, key); - (parentObject[0] !== REACT_ELEMENT_TYPE || "4" !== key && "5" !== key) && transferReferencedDebugInfo(initializingChunk, reference); - return response; - case "pending": - case "blocked": - return waitForReference(reference, parentObject, key, response, map, path, !1); - case "halted": - return initializingHandler ? (parentObject = initializingHandler, parentObject.deps++) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: null, - deps: 1, - errored: !1 - }, null; - default: - return initializingHandler ? (initializingHandler.errored = !0, initializingHandler.value = null, initializingHandler.reason = reference.reason) : initializingHandler = { - parent: null, - chunk: null, - value: null, - reason: reference.reason, - deps: 0, - errored: !0 - }, null; - } - } - function createMap(response, model) { - return new Map(model); - } - function createSet(response, model) { - return new Set(model); - } - function createBlob(response, model) { - return new Blob(model.slice(1), { - type: model[0] - }); - } - function createFormData(response, model) { - response = new FormData(); - for(var i = 0; i < model.length; i++)response.append(model[i][0], model[i][1]); - return response; - } - function applyConstructor(response, model, parentObject) { - Object.setPrototypeOf(parentObject, model.prototype); - } - function defineLazyGetter(response, chunk, parentObject, key) { - "__proto__" !== key && Object.defineProperty(parentObject, key, { - get: function() { - "resolved_model" === chunk.status && initializeModelChunk(chunk); - switch(chunk.status){ - case "fulfilled": - return chunk.value; - case "rejected": - throw chunk.reason; - } - return "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects."; - }, - enumerable: !0, - configurable: !1 - }); - return null; - } - function extractIterator(response, model) { - return model[Symbol.iterator](); - } - function createModel(response, model) { - return model; - } - function getInferredFunctionApproximate(code) { - code = code.startsWith("Object.defineProperty(") ? code.slice(22) : code.startsWith("(") ? code.slice(1) : code; - if (code.startsWith("async function")) { - var idx = code.indexOf("(", 14); - if (-1 !== idx) return code = code.slice(14, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":async function(){}})")[code]; - } else if (code.startsWith("function")) { - if (idx = code.indexOf("(", 8), -1 !== idx) return code = code.slice(8, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":function(){}})")[code]; - } else if (code.startsWith("class") && (idx = code.indexOf("{", 5), -1 !== idx)) return code = code.slice(5, idx).trim(), (0, eval)("({" + JSON.stringify(code) + ":class{}})")[code]; - return function() {}; - } - function parseModelString(response, parentObject, key, value) { - if ("$" === value[0]) { - if ("$" === value) return null !== initializingHandler && "0" === key && (initializingHandler = { - parent: initializingHandler, - chunk: null, - value: null, - reason: null, - deps: 0, - errored: !1 - }), REACT_ELEMENT_TYPE; - switch(value[1]){ - case "$": - return value.slice(1); - case "L": - return parentObject = parseInt(value.slice(2), 16), response = getChunk(response, parentObject), null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(response), createLazyChunkWrapper(response, 0); - case "@": - return parentObject = parseInt(value.slice(2), 16), response = getChunk(response, parentObject), null !== initializingChunk && isArrayImpl(initializingChunk._children) && initializingChunk._children.push(response), response; - case "S": - return Symbol.for(value.slice(2)); - case "h": - var ref = value.slice(2); - return getOutlinedModel(response, ref, parentObject, key, loadServerReference); - case "T": - parentObject = "$" + value.slice(2); - response = response._tempRefs; - if (null == response) throw Error("Missing a temporary reference set but the RSC response returned a temporary reference. Pass a temporaryReference option with the set that was used with the reply."); - return response.get(parentObject); - case "Q": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createMap); - case "W": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createSet); - case "B": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createBlob); - case "K": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, createFormData); - case "Z": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, resolveErrorDev); - case "i": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, extractIterator); - case "I": - return Infinity; - case "-": - return "$-0" === value ? -0 : -Infinity; - case "N": - return NaN; - case "u": - return; - case "D": - return new Date(Date.parse(value.slice(2))); - case "n": - return BigInt(value.slice(2)); - case "P": - return ref = value.slice(2), getOutlinedModel(response, ref, parentObject, key, applyConstructor); - case "E": - response = value.slice(2); - try { - if (!mightHaveStaticConstructor.test(response)) return (0, eval)(response); - } catch (x) {} - try { - if (ref = getInferredFunctionApproximate(response), response.startsWith("Object.defineProperty(")) { - var idx = response.lastIndexOf(',"name",{value:"'); - if (-1 !== idx) { - var name = JSON.parse(response.slice(idx + 16 - 1, response.length - 2)); - Object.defineProperty(ref, "name", { - value: name - }); - } - } - } catch (_) { - ref = function() {}; - } - return ref; - case "Y": - if (2 < value.length && (ref = response._debugChannel && response._debugChannel.callback)) { - if ("@" === value[2]) return parentObject = value.slice(3), key = parseInt(parentObject, 16), response._chunks.has(key) || ref("P:" + parentObject), getChunk(response, key); - value = value.slice(2); - idx = parseInt(value, 16); - response._chunks.has(idx) || ref("Q:" + value); - ref = getChunk(response, idx); - return "fulfilled" === ref.status ? ref.value : defineLazyGetter(response, ref, parentObject, key); - } - "__proto__" !== key && Object.defineProperty(parentObject, key, { - get: function() { - return "This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects."; - }, - enumerable: !0, - configurable: !1 - }); - return null; - default: - return ref = value.slice(1), getOutlinedModel(response, ref, parentObject, key, createModel); - } - } - return value; - } - function missingCall() { - throw Error('Trying to call a function from "use server" but the callServer option was not implemented in your router runtime.'); - } - function markIOStarted() { - this._debugIOStarted = !0; - } - function ResponseInstance(bundlerConfig, serverReferenceConfig, moduleLoading, callServer, encodeFormAction, nonce, temporaryReferences, findSourceMapURL, replayConsole, environmentName, debugStartTime, debugEndTime, debugChannel) { - var chunks = new Map(); - this._bundlerConfig = bundlerConfig; - this._serverReferenceConfig = serverReferenceConfig; - this._moduleLoading = moduleLoading; - this._callServer = void 0 !== callServer ? callServer : missingCall; - this._encodeFormAction = encodeFormAction; - this._nonce = nonce; - this._chunks = chunks; - this._stringDecoder = new TextDecoder(); - this._fromJSON = null; - this._closed = !1; - this._closedReason = null; - this._tempRefs = temporaryReferences; - this._timeOrigin = 0; - this._pendingInitialRender = null; - this._pendingChunks = 0; - this._weakResponse = { - weak: new WeakRef(this), - response: this - }; - this._debugRootOwner = bundlerConfig = void 0 === ReactSharedInteralsServer || null === ReactSharedInteralsServer.A ? null : ReactSharedInteralsServer.A.getOwner(); - this._debugRootStack = null !== bundlerConfig ? Error("react-stack-top-frame") : null; - environmentName = void 0 === environmentName ? "Server" : environmentName; - supportsCreateTask && (this._debugRootTask = console.createTask('"use ' + environmentName.toLowerCase() + '"')); - this._debugStartTime = null == debugStartTime ? performance.now() : debugStartTime; - this._debugIOStarted = !1; - setTimeout(markIOStarted.bind(this), 0); - this._debugEndTime = null == debugEndTime ? null : debugEndTime; - this._debugFindSourceMapURL = findSourceMapURL; - this._debugChannel = debugChannel; - this._blockedConsole = null; - this._replayConsole = replayConsole; - this._rootEnvironmentName = environmentName; - debugChannel && (null === debugChannelRegistry ? (closeDebugChannel(debugChannel), this._debugChannel = void 0) : debugChannelRegistry.register(this, debugChannel, this)); - replayConsole && markAllTracksInOrder(); - this._fromJSON = createFromJSONCallback(this); - } - function createStreamState(weakResponse, streamDebugValue) { - var streamState = { - _rowState: 0, - _rowID: 0, - _rowTag: 0, - _rowLength: 0, - _buffer: [] - }; - weakResponse = unwrapWeakResponse(weakResponse); - var debugValuePromise = Promise.resolve(streamDebugValue); - debugValuePromise.status = "fulfilled"; - debugValuePromise.value = streamDebugValue; - streamState._debugInfo = { - name: "rsc stream", - start: weakResponse._debugStartTime, - end: weakResponse._debugStartTime, - byteSize: 0, - value: debugValuePromise, - owner: weakResponse._debugRootOwner, - debugStack: weakResponse._debugRootStack, - debugTask: weakResponse._debugRootTask - }; - streamState._debugTargetChunkSize = MIN_CHUNK_SIZE; - return streamState; - } - function incrementChunkDebugInfo(streamState, chunkLength) { - var debugInfo = streamState._debugInfo, endTime = performance.now(), previousEndTime = debugInfo.end; - chunkLength = debugInfo.byteSize + chunkLength; - chunkLength > streamState._debugTargetChunkSize || endTime > previousEndTime + 10 ? (streamState._debugInfo = { - name: debugInfo.name, - start: debugInfo.start, - end: endTime, - byteSize: chunkLength, - value: debugInfo.value, - owner: debugInfo.owner, - debugStack: debugInfo.debugStack, - debugTask: debugInfo.debugTask - }, streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE) : (debugInfo.end = endTime, debugInfo.byteSize = chunkLength); - } - function addAsyncInfo(chunk, asyncInfo) { - var value = resolveLazy(chunk.value); - "object" !== typeof value || null === value || !isArrayImpl(value) && "function" !== typeof value[ASYNC_ITERATOR] && value.$$typeof !== REACT_ELEMENT_TYPE && value.$$typeof !== REACT_LAZY_TYPE ? chunk._debugInfo.push(asyncInfo) : isArrayImpl(value._debugInfo) ? value._debugInfo.push(asyncInfo) : Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: [ - asyncInfo - ] - }); - } - function resolveChunkDebugInfo(response, streamState, chunk) { - response._debugIOStarted && (response = { - awaited: streamState._debugInfo - }, "pending" === chunk.status || "blocked" === chunk.status ? (response = addAsyncInfo.bind(null, chunk, response), chunk.then(response, response)) : addAsyncInfo(chunk, response)); - } - function resolveBuffer(response, id, buffer, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk && "pending" !== chunk.status ? chunk.reason.enqueueValue(buffer) : (chunk && releasePendingChunk(response, chunk), buffer = new ReactPromise("fulfilled", buffer, null), resolveChunkDebugInfo(response, streamState, buffer), chunks.set(id, buffer)); - } - function resolveModule(response, id, model, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - model = JSON.parse(model, response._fromJSON); - var clientReference = resolveClientReference(response._bundlerConfig, model); - if (model = preloadModule(clientReference)) { - if (chunk) { - releasePendingChunk(response, chunk); - var blockedChunk = chunk; - blockedChunk.status = "blocked"; - } else blockedChunk = new ReactPromise("blocked", null, null), chunks.set(id, blockedChunk); - resolveChunkDebugInfo(response, streamState, blockedChunk); - model.then(function() { - return resolveModuleChunk(response, blockedChunk, clientReference); - }, function(error) { - return triggerErrorOnChunk(response, blockedChunk, error); - }); - } else chunk ? (resolveChunkDebugInfo(response, streamState, chunk), resolveModuleChunk(response, chunk, clientReference)) : (chunk = new ReactPromise("resolved_module", clientReference, null), resolveChunkDebugInfo(response, streamState, chunk), chunks.set(id, chunk)); - } - function resolveStream(response, id, stream, controller, streamState) { - var chunks = response._chunks, chunk = chunks.get(id); - if (chunk) { - if (resolveChunkDebugInfo(response, streamState, chunk), "pending" === chunk.status) { - id = chunk.value; - if (null != chunk._debugChunk) { - streamState = initializingHandler; - chunks = initializingChunk; - initializingHandler = null; - chunk.status = "blocked"; - chunk.value = null; - chunk.reason = null; - initializingChunk = chunk; - try { - if (initializeDebugChunk(response, chunk), null !== initializingHandler && !initializingHandler.errored && 0 < initializingHandler.deps) { - initializingHandler.value = stream; - initializingHandler.reason = controller; - initializingHandler.chunk = chunk; - return; - } - } finally{ - initializingHandler = streamState, initializingChunk = chunks; - } - } - chunk.status = "fulfilled"; - chunk.value = stream; - chunk.reason = controller; - null !== id ? wakeChunk(response, id, chunk.value, chunk) : (filterDebugInfo(response, chunk), moveDebugInfoFromChunkToInnerValue(chunk, stream)); - } - } else 0 === response._pendingChunks++ && (response._weakResponse.response = response), stream = new ReactPromise("fulfilled", stream, controller), resolveChunkDebugInfo(response, streamState, stream), chunks.set(id, stream); - } - function startReadableStream(response, id, type, streamState) { - var controller = null, closed = !1; - type = new ReadableStream({ - type: type, - start: function(c) { - controller = c; - } - }); - var previousBlockedChunk = null; - resolveStream(response, id, type, { - enqueueValue: function(value) { - null === previousBlockedChunk ? controller.enqueue(value) : previousBlockedChunk.then(function() { - controller.enqueue(value); - }); - }, - enqueueModel: function(json) { - if (null === previousBlockedChunk) { - var chunk = createResolvedModelChunk(response, json); - initializeModelChunk(chunk); - "fulfilled" === chunk.status ? controller.enqueue(chunk.value) : (chunk.then(function(v) { - return controller.enqueue(v); - }, function(e) { - return controller.error(e); - }), previousBlockedChunk = chunk); - } else { - chunk = previousBlockedChunk; - var _chunk3 = createPendingChunk(response); - _chunk3.then(function(v) { - return controller.enqueue(v); - }, function(e) { - return controller.error(e); - }); - previousBlockedChunk = _chunk3; - chunk.then(function() { - previousBlockedChunk === _chunk3 && (previousBlockedChunk = null); - resolveModelChunk(response, _chunk3, json); - }); - } - }, - close: function() { - if (!closed) if (closed = !0, null === previousBlockedChunk) controller.close(); - else { - var blockedChunk = previousBlockedChunk; - previousBlockedChunk = null; - blockedChunk.then(function() { - return controller.close(); - }); - } - }, - error: function(error) { - if (!closed) if (closed = !0, null === previousBlockedChunk) controller.error(error); - else { - var blockedChunk = previousBlockedChunk; - previousBlockedChunk = null; - blockedChunk.then(function() { - return controller.error(error); - }); - } - } - }, streamState); - } - function asyncIterator() { - return this; - } - function createIterator(next) { - next = { - next: next - }; - next[ASYNC_ITERATOR] = asyncIterator; - return next; - } - function startAsyncIterable(response, id, iterator, streamState) { - var buffer = [], closed = !1, nextWriteIndex = 0, iterable = {}; - iterable[ASYNC_ITERATOR] = function() { - var nextReadIndex = 0; - return createIterator(function(arg) { - if (void 0 !== arg) throw Error("Values cannot be passed to next() of AsyncIterables passed to Client Components."); - if (nextReadIndex === buffer.length) { - if (closed) return new ReactPromise("fulfilled", { - done: !0, - value: void 0 - }, null); - buffer[nextReadIndex] = createPendingChunk(response); - } - return buffer[nextReadIndex++]; - }); - }; - resolveStream(response, id, iterator ? iterable[ASYNC_ITERATOR]() : iterable, { - enqueueValue: function(value) { - if (nextWriteIndex === buffer.length) buffer[nextWriteIndex] = new ReactPromise("fulfilled", { - done: !1, - value: value - }, null); - else { - var chunk = buffer[nextWriteIndex], resolveListeners = chunk.value, rejectListeners = chunk.reason; - chunk.status = "fulfilled"; - chunk.value = { - done: !1, - value: value - }; - chunk.reason = null; - null !== resolveListeners && wakeChunkIfInitialized(response, chunk, resolveListeners, rejectListeners); - } - nextWriteIndex++; - }, - enqueueModel: function(value) { - nextWriteIndex === buffer.length ? buffer[nextWriteIndex] = createResolvedIteratorResultChunk(response, value, !1) : resolveIteratorResultChunk(response, buffer[nextWriteIndex], value, !1); - nextWriteIndex++; - }, - close: function(value) { - if (!closed) for(closed = !0, nextWriteIndex === buffer.length ? buffer[nextWriteIndex] = createResolvedIteratorResultChunk(response, value, !0) : resolveIteratorResultChunk(response, buffer[nextWriteIndex], value, !0), nextWriteIndex++; nextWriteIndex < buffer.length;)resolveIteratorResultChunk(response, buffer[nextWriteIndex++], '"$undefined"', !0); - }, - error: function(error) { - if (!closed) for(closed = !0, nextWriteIndex === buffer.length && (buffer[nextWriteIndex] = createPendingChunk(response)); nextWriteIndex < buffer.length;)triggerErrorOnChunk(response, buffer[nextWriteIndex++], error); - } - }, streamState); - } - function resolveErrorDev(response, errorInfo) { - var name = errorInfo.name, env = errorInfo.env; - var error = buildFakeCallStack(response, errorInfo.stack, env, !1, Error.bind(null, errorInfo.message || "An error occurred in the Server Components render but no message was provided")); - var ownerTask = null; - null != errorInfo.owner && (errorInfo = errorInfo.owner.slice(1), errorInfo = getOutlinedModel(response, errorInfo, {}, "", createModel), null !== errorInfo && (ownerTask = initializeFakeTask(response, errorInfo))); - null === ownerTask ? (response = getRootTask(response, env), error = null != response ? response.run(error) : error()) : error = ownerTask.run(error); - error.name = name; - error.environmentName = env; - return error; - } - function createFakeFunction(name, filename, sourceMap, line, col, enclosingLine, enclosingCol, environmentName) { - name || (name = "<anonymous>"); - var encodedName = JSON.stringify(name); - 1 > enclosingLine ? enclosingLine = 0 : enclosingLine--; - 1 > enclosingCol ? enclosingCol = 0 : enclosingCol--; - 1 > line ? line = 0 : line--; - 1 > col ? col = 0 : col--; - if (line < enclosingLine || line === enclosingLine && col < enclosingCol) enclosingCol = enclosingLine = 0; - 1 > line ? (line = encodedName.length + 3, enclosingCol -= line, 0 > enclosingCol && (enclosingCol = 0), col = col - enclosingCol - line - 3, 0 > col && (col = 0), encodedName = "({" + encodedName + ":" + " ".repeat(enclosingCol) + "_=>" + " ".repeat(col) + "_()})") : 1 > enclosingLine ? (enclosingCol -= encodedName.length + 3, 0 > enclosingCol && (enclosingCol = 0), encodedName = "({" + encodedName + ":" + " ".repeat(enclosingCol) + "_=>" + "\n".repeat(line - enclosingLine) + " ".repeat(col) + "_()})") : enclosingLine === line ? (col = col - enclosingCol - 3, 0 > col && (col = 0), encodedName = "\n".repeat(enclosingLine - 1) + "({" + encodedName + ":\n" + " ".repeat(enclosingCol) + "_=>" + " ".repeat(col) + "_()})") : encodedName = "\n".repeat(enclosingLine - 1) + "({" + encodedName + ":\n" + " ".repeat(enclosingCol) + "_=>" + "\n".repeat(line - enclosingLine) + " ".repeat(col) + "_()})"; - encodedName = 1 > enclosingLine ? encodedName + "\n/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */" : "/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */" + encodedName; - filename.startsWith("/") && (filename = "file://" + filename); - sourceMap ? (encodedName += "\n//# sourceURL=about://React/" + encodeURIComponent(environmentName) + "/" + encodeURI(filename) + "?" + fakeFunctionIdx++, encodedName += "\n//# sourceMappingURL=" + sourceMap) : encodedName = filename ? encodedName + ("\n//# sourceURL=" + encodeURI(filename)) : encodedName + "\n//# sourceURL=<anonymous>"; - try { - var fn = (0, eval)(encodedName)[name]; - } catch (x) { - fn = function(_) { - return _(); - }; - } - return fn; - } - function buildFakeCallStack(response, stack, environmentName, useEnclosingLine, innerCall) { - for(var i = 0; i < stack.length; i++){ - var frame = stack[i], frameKey = frame.join("-") + "-" + environmentName + (useEnclosingLine ? "-e" : "-n"), fn = fakeFunctionCache.get(frameKey); - if (void 0 === fn) { - fn = frame[0]; - var filename = frame[1], line = frame[2], col = frame[3], enclosingLine = frame[4]; - frame = frame[5]; - var findSourceMapURL = response._debugFindSourceMapURL; - findSourceMapURL = findSourceMapURL ? findSourceMapURL(filename, environmentName) : null; - fn = createFakeFunction(fn, filename, findSourceMapURL, line, col, useEnclosingLine ? line : enclosingLine, useEnclosingLine ? col : frame, environmentName); - fakeFunctionCache.set(frameKey, fn); - } - innerCall = fn.bind(null, innerCall); - } - return innerCall; - } - function getRootTask(response, childEnvironmentName) { - var rootTask = response._debugRootTask; - return rootTask ? response._rootEnvironmentName !== childEnvironmentName ? (response = console.createTask.bind(console, '"use ' + childEnvironmentName.toLowerCase() + '"'), rootTask.run(response)) : rootTask : null; - } - function initializeFakeTask(response, debugInfo) { - if (!supportsCreateTask || null == debugInfo.stack) return null; - var cachedEntry = debugInfo.debugTask; - if (void 0 !== cachedEntry) return cachedEntry; - var useEnclosingLine = void 0 === debugInfo.key, stack = debugInfo.stack, env = null == debugInfo.env ? response._rootEnvironmentName : debugInfo.env; - cachedEntry = null == debugInfo.owner || null == debugInfo.owner.env ? response._rootEnvironmentName : debugInfo.owner.env; - var ownerTask = null == debugInfo.owner ? null : initializeFakeTask(response, debugInfo.owner); - env = env !== cachedEntry ? '"use ' + env.toLowerCase() + '"' : void 0 !== debugInfo.key ? "<" + (debugInfo.name || "...") + ">" : void 0 !== debugInfo.name ? debugInfo.name || "unknown" : "await " + (debugInfo.awaited.name || "unknown"); - env = console.createTask.bind(console, env); - useEnclosingLine = buildFakeCallStack(response, stack, cachedEntry, useEnclosingLine, env); - null === ownerTask ? (response = getRootTask(response, cachedEntry), response = null != response ? response.run(useEnclosingLine) : useEnclosingLine()) : response = ownerTask.run(useEnclosingLine); - return debugInfo.debugTask = response; - } - function fakeJSXCallSite() { - return Error("react-stack-top-frame"); - } - function initializeFakeStack(response, debugInfo) { - if (void 0 === debugInfo.debugStack) { - null != debugInfo.stack && (debugInfo.debugStack = createFakeJSXCallStackInDEV(response, debugInfo.stack, null == debugInfo.env ? "" : debugInfo.env)); - var owner = debugInfo.owner; - null != owner && (initializeFakeStack(response, owner), void 0 === owner.debugLocation && null != debugInfo.debugStack && (owner.debugLocation = debugInfo.debugStack)); - } - } - function initializeDebugInfo(response, debugInfo) { - void 0 !== debugInfo.stack && initializeFakeTask(response, debugInfo); - if (null == debugInfo.owner && null != response._debugRootOwner) { - var _componentInfoOrAsyncInfo = debugInfo; - _componentInfoOrAsyncInfo.owner = response._debugRootOwner; - _componentInfoOrAsyncInfo.stack = null; - _componentInfoOrAsyncInfo.debugStack = response._debugRootStack; - _componentInfoOrAsyncInfo.debugTask = response._debugRootTask; - } else void 0 !== debugInfo.stack && initializeFakeStack(response, debugInfo); - "number" === typeof debugInfo.time && (debugInfo = { - time: debugInfo.time + response._timeOrigin - }); - return debugInfo; - } - function getCurrentStackInDEV() { - var owner = currentOwnerInDEV; - if (null === owner) return ""; - try { - var info = ""; - if (owner.owner || "string" !== typeof owner.name) { - for(; owner;){ - var ownerStack = owner.debugStack; - if (null != ownerStack) { - if (owner = owner.owner) { - var JSCompiler_temp_const = info; - var error = ownerStack, prevPrepareStackTrace = Error.prepareStackTrace; - Error.prepareStackTrace = void 0; - var stack = error.stack; - Error.prepareStackTrace = prevPrepareStackTrace; - stack.startsWith("Error: react-stack-top-frame\n") && (stack = stack.slice(29)); - var idx = stack.indexOf("\n"); - -1 !== idx && (stack = stack.slice(idx + 1)); - idx = stack.indexOf("react_stack_bottom_frame"); - -1 !== idx && (idx = stack.lastIndexOf("\n", idx)); - var JSCompiler_inline_result = -1 !== idx ? stack = stack.slice(0, idx) : ""; - info = JSCompiler_temp_const + ("\n" + JSCompiler_inline_result); - } - } else break; - } - var JSCompiler_inline_result$jscomp$0 = info; - } else { - JSCompiler_temp_const = owner.name; - if (void 0 === prefix) try { - throw Error(); - } catch (x) { - prefix = (error = x.stack.trim().match(/\n( *(at )?)/)) && error[1] || "", suffix = -1 < x.stack.indexOf("\n at") ? " (<anonymous>)" : -1 < x.stack.indexOf("@") ? "@unknown:0:0" : ""; - } - JSCompiler_inline_result$jscomp$0 = "\n" + prefix + JSCompiler_temp_const + suffix; - } - } catch (x) { - JSCompiler_inline_result$jscomp$0 = "\nError generating stack: " + x.message + "\n" + x.stack; - } - return JSCompiler_inline_result$jscomp$0; - } - function resolveConsoleEntry(response, json) { - if (response._replayConsole) { - var blockedChunk = response._blockedConsole; - if (null == blockedChunk) blockedChunk = createResolvedModelChunk(response, json), initializeModelChunk(blockedChunk), "fulfilled" === blockedChunk.status ? replayConsoleWithCallStackInDEV(response, blockedChunk.value) : (blockedChunk.then(function(v) { - return replayConsoleWithCallStackInDEV(response, v); - }, function() {}), response._blockedConsole = blockedChunk); - else { - var _chunk4 = createPendingChunk(response); - _chunk4.then(function(v) { - return replayConsoleWithCallStackInDEV(response, v); - }, function() {}); - response._blockedConsole = _chunk4; - var unblock = function() { - response._blockedConsole === _chunk4 && (response._blockedConsole = null); - resolveModelChunk(response, _chunk4, json); - }; - blockedChunk.then(unblock, unblock); - } - } - } - function initializeIOInfo(response, ioInfo) { - void 0 !== ioInfo.stack && (initializeFakeTask(response, ioInfo), initializeFakeStack(response, ioInfo)); - ioInfo.start += response._timeOrigin; - ioInfo.end += response._timeOrigin; - if (response._replayConsole) { - response = response._rootEnvironmentName; - var promise = ioInfo.value; - if (promise) switch(promise.status){ - case "fulfilled": - logIOInfo(ioInfo, response, promise.value); - break; - case "rejected": - logIOInfoErrored(ioInfo, response, promise.reason); - break; - default: - promise.then(logIOInfo.bind(null, ioInfo, response), logIOInfoErrored.bind(null, ioInfo, response)); - } - else logIOInfo(ioInfo, response, void 0); - } - } - function resolveIOInfo(response, id, model) { - var chunks = response._chunks, chunk = chunks.get(id); - chunk ? (resolveModelChunk(response, chunk, model), "resolved_model" === chunk.status && initializeModelChunk(chunk)) : (chunk = createResolvedModelChunk(response, model), chunks.set(id, chunk), initializeModelChunk(chunk)); - "fulfilled" === chunk.status ? initializeIOInfo(response, chunk.value) : chunk.then(function(v) { - initializeIOInfo(response, v); - }, function() {}); - } - function mergeBuffer(buffer, lastChunk) { - for(var l = buffer.length, byteLength = lastChunk.length, i = 0; i < l; i++)byteLength += buffer[i].byteLength; - byteLength = new Uint8Array(byteLength); - for(var _i3 = i = 0; _i3 < l; _i3++){ - var chunk = buffer[_i3]; - byteLength.set(chunk, i); - i += chunk.byteLength; - } - byteLength.set(lastChunk, i); - return byteLength; - } - function resolveTypedArray(response, id, buffer, lastChunk, constructor, bytesPerElement, streamState) { - buffer = 0 === buffer.length && 0 === lastChunk.byteOffset % bytesPerElement ? lastChunk : mergeBuffer(buffer, lastChunk); - constructor = new constructor(buffer.buffer, buffer.byteOffset, buffer.byteLength / bytesPerElement); - resolveBuffer(response, id, constructor, streamState); - } - function flushComponentPerformance(response$jscomp$0, root, trackIdx$jscomp$6, trackTime, parentEndTime) { - if (!isArrayImpl(root._children)) { - var previousResult = root._children, previousEndTime = previousResult.endTime; - if (-Infinity < parentEndTime && parentEndTime < previousEndTime && null !== previousResult.component) { - var componentInfo = previousResult.component, trackIdx = trackIdx$jscomp$6, startTime = parentEndTime; - if (supportsUserTiming && 0 <= previousEndTime && 10 > trackIdx) { - var color = componentInfo.env === response$jscomp$0._rootEnvironmentName ? "primary-light" : "secondary-light", entryName = componentInfo.name + " [deduped]", debugTask = componentInfo.debugTask; - debugTask ? debugTask.run(console.timeStamp.bind(console, entryName, 0 > startTime ? 0 : startTime, previousEndTime, trackNames[trackIdx], "Server Components \u269b", color)) : console.timeStamp(entryName, 0 > startTime ? 0 : startTime, previousEndTime, trackNames[trackIdx], "Server Components \u269b", color); - } - } - previousResult.track = trackIdx$jscomp$6; - return previousResult; - } - var children = root._children; - var debugInfo = root._debugInfo; - if (0 === debugInfo.length && "fulfilled" === root.status) { - var resolvedValue = resolveLazy(root.value); - "object" === typeof resolvedValue && null !== resolvedValue && (isArrayImpl(resolvedValue) || "function" === typeof resolvedValue[ASYNC_ITERATOR] || resolvedValue.$$typeof === REACT_ELEMENT_TYPE || resolvedValue.$$typeof === REACT_LAZY_TYPE) && isArrayImpl(resolvedValue._debugInfo) && (debugInfo = resolvedValue._debugInfo); - } - if (debugInfo) { - for(var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++){ - var info = debugInfo[i]; - "number" === typeof info.time && (startTime$jscomp$0 = info.time); - if ("string" === typeof info.name) { - startTime$jscomp$0 < trackTime && trackIdx$jscomp$6++; - trackTime = startTime$jscomp$0; - break; - } - } - for(var _i4 = debugInfo.length - 1; 0 <= _i4; _i4--){ - var _info = debugInfo[_i4]; - if ("number" === typeof _info.time && _info.time > parentEndTime) { - parentEndTime = _info.time; - break; - } - } - } - var result = { - track: trackIdx$jscomp$6, - endTime: -Infinity, - component: null - }; - root._children = result; - for(var childrenEndTime = -Infinity, childTrackIdx = trackIdx$jscomp$6, childTrackTime = trackTime, _i5 = 0; _i5 < children.length; _i5++){ - var childResult = flushComponentPerformance(response$jscomp$0, children[_i5], childTrackIdx, childTrackTime, parentEndTime); - null !== childResult.component && (result.component = childResult.component); - childTrackIdx = childResult.track; - var childEndTime = childResult.endTime; - childEndTime > childTrackTime && (childTrackTime = childEndTime); - childEndTime > childrenEndTime && (childrenEndTime = childEndTime); - } - if (debugInfo) for(var componentEndTime = 0, isLastComponent = !0, endTime = -1, endTimeIdx = -1, _i6 = debugInfo.length - 1; 0 <= _i6; _i6--){ - var _info2 = debugInfo[_i6]; - if ("number" === typeof _info2.time) { - 0 === componentEndTime && (componentEndTime = _info2.time); - var time = _info2.time; - if (-1 < endTimeIdx) for(var j = endTimeIdx - 1; j > _i6; j--){ - var candidateInfo = debugInfo[j]; - if ("string" === typeof candidateInfo.name) { - componentEndTime > childrenEndTime && (childrenEndTime = componentEndTime); - var componentInfo$jscomp$0 = candidateInfo, response = response$jscomp$0, componentInfo$jscomp$1 = componentInfo$jscomp$0, trackIdx$jscomp$0 = trackIdx$jscomp$6, startTime$jscomp$1 = time, componentEndTime$jscomp$0 = componentEndTime, childrenEndTime$jscomp$0 = childrenEndTime; - if (isLastComponent && "rejected" === root.status && root.reason !== response._closedReason) { - var componentInfo$jscomp$2 = componentInfo$jscomp$1, trackIdx$jscomp$1 = trackIdx$jscomp$0, startTime$jscomp$2 = startTime$jscomp$1, childrenEndTime$jscomp$1 = childrenEndTime$jscomp$0, error = root.reason; - if (supportsUserTiming) { - var env = componentInfo$jscomp$2.env, name = componentInfo$jscomp$2.name, entryName$jscomp$0 = env === response._rootEnvironmentName || void 0 === env ? name : name + " [" + env + "]", measureName = "\u200b" + entryName$jscomp$0, properties = [ - [ - "Error", - "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error) - ] - ]; - null != componentInfo$jscomp$2.key && addValueToProperties("key", componentInfo$jscomp$2.key, properties, 0, ""); - null != componentInfo$jscomp$2.props && addObjectToProperties(componentInfo$jscomp$2.props, properties, 0, ""); - performance.measure(measureName, { - start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2, - end: childrenEndTime$jscomp$1, - detail: { - devtools: { - color: "error", - track: trackNames[trackIdx$jscomp$1], - trackGroup: "Server Components \u269b", - tooltipText: entryName$jscomp$0 + " Errored", - properties: properties - } - } - }); - performance.clearMeasures(measureName); - } - } else { - var componentInfo$jscomp$3 = componentInfo$jscomp$1, trackIdx$jscomp$2 = trackIdx$jscomp$0, startTime$jscomp$3 = startTime$jscomp$1, childrenEndTime$jscomp$2 = childrenEndTime$jscomp$0; - if (supportsUserTiming && 0 <= childrenEndTime$jscomp$2 && 10 > trackIdx$jscomp$2) { - var env$jscomp$0 = componentInfo$jscomp$3.env, name$jscomp$0 = componentInfo$jscomp$3.name, isPrimaryEnv = env$jscomp$0 === response._rootEnvironmentName, selfTime = componentEndTime$jscomp$0 - startTime$jscomp$3, color$jscomp$0 = 0.5 > selfTime ? isPrimaryEnv ? "primary-light" : "secondary-light" : 50 > selfTime ? isPrimaryEnv ? "primary" : "secondary" : 500 > selfTime ? isPrimaryEnv ? "primary-dark" : "secondary-dark" : "error", debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask, measureName$jscomp$0 = "\u200b" + (isPrimaryEnv || void 0 === env$jscomp$0 ? name$jscomp$0 : name$jscomp$0 + " [" + env$jscomp$0 + "]"); - if (debugTask$jscomp$0) { - var properties$jscomp$0 = []; - null != componentInfo$jscomp$3.key && addValueToProperties("key", componentInfo$jscomp$3.key, properties$jscomp$0, 0, ""); - null != componentInfo$jscomp$3.props && addObjectToProperties(componentInfo$jscomp$3.props, properties$jscomp$0, 0, ""); - debugTask$jscomp$0.run(performance.measure.bind(performance, measureName$jscomp$0, { - start: 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3, - end: childrenEndTime$jscomp$2, - detail: { - devtools: { - color: color$jscomp$0, - track: trackNames[trackIdx$jscomp$2], - trackGroup: "Server Components \u269b", - properties: properties$jscomp$0 - } - } - })); - performance.clearMeasures(measureName$jscomp$0); - } else console.timeStamp(measureName$jscomp$0, 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3, childrenEndTime$jscomp$2, trackNames[trackIdx$jscomp$2], "Server Components \u269b", color$jscomp$0); - } - } - componentEndTime = time; - result.component = componentInfo$jscomp$0; - isLastComponent = !1; - } else if (candidateInfo.awaited && null != candidateInfo.awaited.env) { - endTime > childrenEndTime && (childrenEndTime = endTime); - var asyncInfo = candidateInfo, env$jscomp$1 = response$jscomp$0._rootEnvironmentName, promise = asyncInfo.awaited.value; - if (promise) { - var thenable = promise; - switch(thenable.status){ - case "fulfilled": - logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, thenable.value); - break; - case "rejected": - var asyncInfo$jscomp$0 = asyncInfo, trackIdx$jscomp$3 = trackIdx$jscomp$6, startTime$jscomp$4 = time, endTime$jscomp$0 = endTime, rootEnv = env$jscomp$1, error$jscomp$0 = thenable.reason; - if (supportsUserTiming && 0 < endTime$jscomp$0) { - var description = getIODescription(error$jscomp$0), entryName$jscomp$1 = "await " + getIOShortName(asyncInfo$jscomp$0.awaited, description, asyncInfo$jscomp$0.env, rootEnv), debugTask$jscomp$1 = asyncInfo$jscomp$0.debugTask || asyncInfo$jscomp$0.awaited.debugTask; - if (debugTask$jscomp$1) { - var properties$jscomp$1 = [ - [ - "Rejected", - "object" === typeof error$jscomp$0 && null !== error$jscomp$0 && "string" === typeof error$jscomp$0.message ? String(error$jscomp$0.message) : String(error$jscomp$0) - ] - ], tooltipText = getIOLongName(asyncInfo$jscomp$0.awaited, description, asyncInfo$jscomp$0.env, rootEnv) + " Rejected"; - debugTask$jscomp$1.run(performance.measure.bind(performance, entryName$jscomp$1, { - start: 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4, - end: endTime$jscomp$0, - detail: { - devtools: { - color: "error", - track: trackNames[trackIdx$jscomp$3], - trackGroup: "Server Components \u269b", - properties: properties$jscomp$1, - tooltipText: tooltipText - } - } - })); - performance.clearMeasures(entryName$jscomp$1); - } else console.timeStamp(entryName$jscomp$1, 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4, endTime$jscomp$0, trackNames[trackIdx$jscomp$3], "Server Components \u269b", "error"); - } - break; - default: - logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, void 0); - } - } else logComponentAwait(asyncInfo, trackIdx$jscomp$6, time, endTime, env$jscomp$1, void 0); - } - } - else { - endTime = time; - for(var _j = debugInfo.length - 1; _j > _i6; _j--){ - var _candidateInfo = debugInfo[_j]; - if ("string" === typeof _candidateInfo.name) { - componentEndTime > childrenEndTime && (childrenEndTime = componentEndTime); - var _componentInfo = _candidateInfo, _env = response$jscomp$0._rootEnvironmentName, componentInfo$jscomp$4 = _componentInfo, trackIdx$jscomp$4 = trackIdx$jscomp$6, startTime$jscomp$5 = time, childrenEndTime$jscomp$3 = childrenEndTime; - if (supportsUserTiming) { - var env$jscomp$2 = componentInfo$jscomp$4.env, name$jscomp$1 = componentInfo$jscomp$4.name, entryName$jscomp$2 = env$jscomp$2 === _env || void 0 === env$jscomp$2 ? name$jscomp$1 : name$jscomp$1 + " [" + env$jscomp$2 + "]", measureName$jscomp$1 = "\u200b" + entryName$jscomp$2, properties$jscomp$2 = [ - [ - "Aborted", - "The stream was aborted before this Component finished rendering." - ] - ]; - null != componentInfo$jscomp$4.key && addValueToProperties("key", componentInfo$jscomp$4.key, properties$jscomp$2, 0, ""); - null != componentInfo$jscomp$4.props && addObjectToProperties(componentInfo$jscomp$4.props, properties$jscomp$2, 0, ""); - performance.measure(measureName$jscomp$1, { - start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5, - end: childrenEndTime$jscomp$3, - detail: { - devtools: { - color: "warning", - track: trackNames[trackIdx$jscomp$4], - trackGroup: "Server Components \u269b", - tooltipText: entryName$jscomp$2 + " Aborted", - properties: properties$jscomp$2 - } - } - }); - performance.clearMeasures(measureName$jscomp$1); - } - componentEndTime = time; - result.component = _componentInfo; - isLastComponent = !1; - } else if (_candidateInfo.awaited && null != _candidateInfo.awaited.env) { - var _asyncInfo = _candidateInfo, _env2 = response$jscomp$0._rootEnvironmentName; - _asyncInfo.awaited.end > endTime && (endTime = _asyncInfo.awaited.end); - endTime > childrenEndTime && (childrenEndTime = endTime); - var asyncInfo$jscomp$1 = _asyncInfo, trackIdx$jscomp$5 = trackIdx$jscomp$6, startTime$jscomp$6 = time, endTime$jscomp$1 = endTime, rootEnv$jscomp$0 = _env2; - if (supportsUserTiming && 0 < endTime$jscomp$1) { - var entryName$jscomp$3 = "await " + getIOShortName(asyncInfo$jscomp$1.awaited, "", asyncInfo$jscomp$1.env, rootEnv$jscomp$0), debugTask$jscomp$2 = asyncInfo$jscomp$1.debugTask || asyncInfo$jscomp$1.awaited.debugTask; - if (debugTask$jscomp$2) { - var tooltipText$jscomp$0 = getIOLongName(asyncInfo$jscomp$1.awaited, "", asyncInfo$jscomp$1.env, rootEnv$jscomp$0) + " Aborted"; - debugTask$jscomp$2.run(performance.measure.bind(performance, entryName$jscomp$3, { - start: 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6, - end: endTime$jscomp$1, - detail: { - devtools: { - color: "warning", - track: trackNames[trackIdx$jscomp$5], - trackGroup: "Server Components \u269b", - properties: [ - [ - "Aborted", - "The stream was aborted before this Promise resolved." - ] - ], - tooltipText: tooltipText$jscomp$0 - } - } - })); - performance.clearMeasures(entryName$jscomp$3); - } else console.timeStamp(entryName$jscomp$3, 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6, endTime$jscomp$1, trackNames[trackIdx$jscomp$5], "Server Components \u269b", "warning"); - } - } - } - } - endTime = time; - endTimeIdx = _i6; - } - } - result.endTime = childrenEndTime; - return result; - } - function flushInitialRenderPerformance(response) { - if (response._replayConsole) { - var rootChunk = getChunk(response, 0); - isArrayImpl(rootChunk._children) && (markAllTracksInOrder(), flushComponentPerformance(response, rootChunk, 0, -Infinity, -Infinity)); - } - } - function processFullBinaryRow(response, streamState, id, tag, buffer, chunk) { - switch(tag){ - case 65: - resolveBuffer(response, id, mergeBuffer(buffer, chunk).buffer, streamState); - return; - case 79: - resolveTypedArray(response, id, buffer, chunk, Int8Array, 1, streamState); - return; - case 111: - resolveBuffer(response, id, 0 === buffer.length ? chunk : mergeBuffer(buffer, chunk), streamState); - return; - case 85: - resolveTypedArray(response, id, buffer, chunk, Uint8ClampedArray, 1, streamState); - return; - case 83: - resolveTypedArray(response, id, buffer, chunk, Int16Array, 2, streamState); - return; - case 115: - resolveTypedArray(response, id, buffer, chunk, Uint16Array, 2, streamState); - return; - case 76: - resolveTypedArray(response, id, buffer, chunk, Int32Array, 4, streamState); - return; - case 108: - resolveTypedArray(response, id, buffer, chunk, Uint32Array, 4, streamState); - return; - case 71: - resolveTypedArray(response, id, buffer, chunk, Float32Array, 4, streamState); - return; - case 103: - resolveTypedArray(response, id, buffer, chunk, Float64Array, 8, streamState); - return; - case 77: - resolveTypedArray(response, id, buffer, chunk, BigInt64Array, 8, streamState); - return; - case 109: - resolveTypedArray(response, id, buffer, chunk, BigUint64Array, 8, streamState); - return; - case 86: - resolveTypedArray(response, id, buffer, chunk, DataView, 1, streamState); - return; - } - for(var stringDecoder = response._stringDecoder, row = "", i = 0; i < buffer.length; i++)row += stringDecoder.decode(buffer[i], decoderOptions); - row += stringDecoder.decode(chunk); - processFullStringRow(response, streamState, id, tag, row); - } - function processFullStringRow(response, streamState, id, tag, row) { - switch(tag){ - case 73: - resolveModule(response, id, row, streamState); - break; - case 72: - id = row[0]; - streamState = row.slice(1); - response = JSON.parse(streamState, response._fromJSON); - streamState = ReactDOMSharedInternals.d; - switch(id){ - case "D": - streamState.D(response); - break; - case "C": - "string" === typeof response ? streamState.C(response) : streamState.C(response[0], response[1]); - break; - case "L": - id = response[0]; - row = response[1]; - 3 === response.length ? streamState.L(id, row, response[2]) : streamState.L(id, row); - break; - case "m": - "string" === typeof response ? streamState.m(response) : streamState.m(response[0], response[1]); - break; - case "X": - "string" === typeof response ? streamState.X(response) : streamState.X(response[0], response[1]); - break; - case "S": - "string" === typeof response ? streamState.S(response) : streamState.S(response[0], 0 === response[1] ? void 0 : response[1], 3 === response.length ? response[2] : void 0); - break; - case "M": - "string" === typeof response ? streamState.M(response) : streamState.M(response[0], response[1]); - } - break; - case 69: - tag = response._chunks; - var chunk = tag.get(id); - row = JSON.parse(row); - var error = resolveErrorDev(response, row); - error.digest = row.digest; - chunk ? (resolveChunkDebugInfo(response, streamState, chunk), triggerErrorOnChunk(response, chunk, error)) : (row = new ReactPromise("rejected", null, error), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - break; - case 84: - tag = response._chunks; - (chunk = tag.get(id)) && "pending" !== chunk.status ? chunk.reason.enqueueValue(row) : (chunk && releasePendingChunk(response, chunk), row = new ReactPromise("fulfilled", row, null), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - break; - case 78: - response._timeOrigin = +row - performance.timeOrigin; - break; - case 68: - id = getChunk(response, id); - "fulfilled" !== id.status && "rejected" !== id.status && "halted" !== id.status && "blocked" !== id.status && "resolved_module" !== id.status && (streamState = id._debugChunk, tag = createResolvedModelChunk(response, row), tag._debugChunk = streamState, id._debugChunk = tag, initializeDebugChunk(response, id), "blocked" !== tag.status || void 0 !== response._debugChannel && response._debugChannel.hasReadable || '"' !== row[0] || "$" !== row[1] || (streamState = row.slice(2, row.length - 1).split(":"), streamState = parseInt(streamState[0], 16), "pending" === getChunk(response, streamState).status && (id._debugChunk = null))); - break; - case 74: - resolveIOInfo(response, id, row); - break; - case 87: - resolveConsoleEntry(response, row); - break; - case 82: - startReadableStream(response, id, void 0, streamState); - break; - case 114: - startReadableStream(response, id, "bytes", streamState); - break; - case 88: - startAsyncIterable(response, id, !1, streamState); - break; - case 120: - startAsyncIterable(response, id, !0, streamState); - break; - case 67: - (id = response._chunks.get(id)) && "fulfilled" === id.status && (0 === --response._pendingChunks && (response._weakResponse.response = null), id.reason.close("" === row ? '"$undefined"' : row)); - break; - default: - if ("" === row) { - if (streamState = response._chunks, (row = streamState.get(id)) || streamState.set(id, row = createPendingChunk(response)), "pending" === row.status || "blocked" === row.status) releasePendingChunk(response, row), response = row, response.status = "halted", response.value = null, response.reason = null; - } else tag = response._chunks, (chunk = tag.get(id)) ? (resolveChunkDebugInfo(response, streamState, chunk), resolveModelChunk(response, chunk, row)) : (row = createResolvedModelChunk(response, row), resolveChunkDebugInfo(response, streamState, row), tag.set(id, row)); - } - } - function processBinaryChunk(weakResponse, streamState, chunk) { - if (void 0 !== weakResponse.weak.deref()) { - weakResponse = unwrapWeakResponse(weakResponse); - var i = 0, rowState = streamState._rowState, rowID = streamState._rowID, rowTag = streamState._rowTag, rowLength = streamState._rowLength, buffer = streamState._buffer, chunkLength = chunk.length; - for(incrementChunkDebugInfo(streamState, chunkLength); i < chunkLength;){ - var lastIdx = -1; - switch(rowState){ - case 0: - lastIdx = chunk[i++]; - 58 === lastIdx ? rowState = 1 : rowID = rowID << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 1: - rowState = chunk[i]; - 84 === rowState || 65 === rowState || 79 === rowState || 111 === rowState || 98 === rowState || 85 === rowState || 83 === rowState || 115 === rowState || 76 === rowState || 108 === rowState || 71 === rowState || 103 === rowState || 77 === rowState || 109 === rowState || 86 === rowState ? (rowTag = rowState, rowState = 2, i++) : 64 < rowState && 91 > rowState || 35 === rowState || 114 === rowState || 120 === rowState ? (rowTag = rowState, rowState = 3, i++) : (rowTag = 0, rowState = 3); - continue; - case 2: - lastIdx = chunk[i++]; - 44 === lastIdx ? rowState = 4 : rowLength = rowLength << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 3: - lastIdx = chunk.indexOf(10, i); - break; - case 4: - lastIdx = i + rowLength, lastIdx > chunk.length && (lastIdx = -1); - } - var offset = chunk.byteOffset + i; - if (-1 < lastIdx) rowLength = new Uint8Array(chunk.buffer, offset, lastIdx - i), 98 === rowTag ? resolveBuffer(weakResponse, rowID, lastIdx === chunkLength ? rowLength : rowLength.slice(), streamState) : processFullBinaryRow(weakResponse, streamState, rowID, rowTag, buffer, rowLength), i = lastIdx, 3 === rowState && i++, rowLength = rowID = rowTag = rowState = 0, buffer.length = 0; - else { - chunk = new Uint8Array(chunk.buffer, offset, chunk.byteLength - i); - 98 === rowTag ? (rowLength -= chunk.byteLength, resolveBuffer(weakResponse, rowID, chunk, streamState)) : (buffer.push(chunk), rowLength -= chunk.byteLength); - break; - } - } - streamState._rowState = rowState; - streamState._rowID = rowID; - streamState._rowTag = rowTag; - streamState._rowLength = rowLength; - } - } - function createFromJSONCallback(response) { - return function(key, value) { - if ("__proto__" !== key) { - if ("string" === typeof value) return parseModelString(response, this, key, value); - if ("object" === typeof value && null !== value) { - if (value[0] === REACT_ELEMENT_TYPE) b: { - var owner = value[4], stack = value[5]; - key = value[6]; - value = { - $$typeof: REACT_ELEMENT_TYPE, - type: value[1], - key: value[2], - props: value[3], - _owner: void 0 === owner ? null : owner - }; - Object.defineProperty(value, "ref", { - enumerable: !1, - get: nullRefGetter - }); - value._store = {}; - Object.defineProperty(value._store, "validated", { - configurable: !1, - enumerable: !1, - writable: !0, - value: key - }); - Object.defineProperty(value, "_debugInfo", { - configurable: !1, - enumerable: !1, - writable: !0, - value: null - }); - Object.defineProperty(value, "_debugStack", { - configurable: !1, - enumerable: !1, - writable: !0, - value: void 0 === stack ? null : stack - }); - Object.defineProperty(value, "_debugTask", { - configurable: !1, - enumerable: !1, - writable: !0, - value: null - }); - if (null !== initializingHandler) { - owner = initializingHandler; - initializingHandler = owner.parent; - if (owner.errored) { - stack = new ReactPromise("rejected", null, owner.reason); - initializeElement(response, value, null); - owner = { - name: getComponentNameFromType(value.type) || "", - owner: value._owner - }; - owner.debugStack = value._debugStack; - supportsCreateTask && (owner.debugTask = value._debugTask); - stack._debugInfo = [ - owner - ]; - key = createLazyChunkWrapper(stack, key); - break b; - } - if (0 < owner.deps) { - stack = new ReactPromise("blocked", null, null); - owner.value = value; - owner.chunk = stack; - key = createLazyChunkWrapper(stack, key); - value = initializeElement.bind(null, response, value, key); - stack.then(value, value); - break b; - } - } - initializeElement(response, value, null); - key = value; - } - else key = value; - return key; - } - return value; - } - }; - } - function close(weakResponse) { - reportGlobalError(weakResponse, Error("Connection closed.")); - } - function createDebugCallbackFromWritableStream(debugWritable) { - var textEncoder = new TextEncoder(), writer = debugWritable.getWriter(); - return function(message) { - "" === message ? writer.close() : writer.write(textEncoder.encode(message + "\n")).catch(console.error); - }; - } - function createResponseFromOptions(options) { - var debugChannel = options && void 0 !== options.debugChannel ? { - hasReadable: void 0 !== options.debugChannel.readable, - callback: void 0 !== options.debugChannel.writable ? createDebugCallbackFromWritableStream(options.debugChannel.writable) : null - } : void 0; - return new ResponseInstance(null, null, null, options && options.callServer ? options.callServer : void 0, void 0, void 0, options && options.temporaryReferences ? options.temporaryReferences : void 0, options && options.findSourceMapURL ? options.findSourceMapURL : void 0, options ? !1 !== options.replayConsoleLogs : !0, options && options.environmentName ? options.environmentName : void 0, options && null != options.startTime ? options.startTime : void 0, options && null != options.endTime ? options.endTime : void 0, debugChannel)._weakResponse; - } - function startReadingFromUniversalStream(response$jscomp$0, stream, onDone) { - function progress(_ref) { - var value = _ref.value; - if (_ref.done) return onDone(); - if (value instanceof ArrayBuffer) processBinaryChunk(response$jscomp$0, streamState, new Uint8Array(value)); - else if ("string" === typeof value) { - if (_ref = streamState, void 0 !== response$jscomp$0.weak.deref()) { - var response = unwrapWeakResponse(response$jscomp$0), i = 0, rowState = _ref._rowState, rowID = _ref._rowID, rowTag = _ref._rowTag, rowLength = _ref._rowLength, buffer = _ref._buffer, chunkLength = value.length; - for(incrementChunkDebugInfo(_ref, chunkLength); i < chunkLength;){ - var lastIdx = -1; - switch(rowState){ - case 0: - lastIdx = value.charCodeAt(i++); - 58 === lastIdx ? rowState = 1 : rowID = rowID << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 1: - rowState = value.charCodeAt(i); - 84 === rowState || 65 === rowState || 79 === rowState || 111 === rowState || 85 === rowState || 83 === rowState || 115 === rowState || 76 === rowState || 108 === rowState || 71 === rowState || 103 === rowState || 77 === rowState || 109 === rowState || 86 === rowState ? (rowTag = rowState, rowState = 2, i++) : 64 < rowState && 91 > rowState || 114 === rowState || 120 === rowState ? (rowTag = rowState, rowState = 3, i++) : (rowTag = 0, rowState = 3); - continue; - case 2: - lastIdx = value.charCodeAt(i++); - 44 === lastIdx ? rowState = 4 : rowLength = rowLength << 4 | (96 < lastIdx ? lastIdx - 87 : lastIdx - 48); - continue; - case 3: - lastIdx = value.indexOf("\n", i); - break; - case 4: - if (84 !== rowTag) throw Error("Binary RSC chunks cannot be encoded as strings. This is a bug in the wiring of the React streams."); - if (rowLength < value.length || value.length > 3 * rowLength) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - lastIdx = value.length; - } - if (-1 < lastIdx) { - if (0 < buffer.length) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - i = value.slice(i, lastIdx); - processFullStringRow(response, _ref, rowID, rowTag, i); - i = lastIdx; - 3 === rowState && i++; - rowLength = rowID = rowTag = rowState = 0; - buffer.length = 0; - } else if (value.length !== i) throw Error("String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams."); - } - _ref._rowState = rowState; - _ref._rowID = rowID; - _ref._rowTag = rowTag; - _ref._rowLength = rowLength; - } - } else processBinaryChunk(response$jscomp$0, streamState, value); - return reader.read().then(progress).catch(error); - } - function error(e) { - reportGlobalError(response$jscomp$0, e); - } - var streamState = createStreamState(response$jscomp$0, stream), reader = stream.getReader(); - reader.read().then(progress).catch(error); - } - function startReadingFromStream(response, stream, onDone, debugValue) { - function progress(_ref2) { - var value = _ref2.value; - if (_ref2.done) return onDone(); - processBinaryChunk(response, streamState, value); - return reader.read().then(progress).catch(error); - } - function error(e) { - reportGlobalError(response, e); - } - var streamState = createStreamState(response, debugValue), reader = stream.getReader(); - reader.read().then(progress).catch(error); - } - var React = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"), ReactDOM = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-dom/index.js [app-client] (ecmascript)"), decoderOptions = { - stream: !0 - }, bind = Function.prototype.bind, hasOwnProperty = Object.prototype.hasOwnProperty, instrumentedChunks = new WeakSet(), loadedChunks = new WeakSet(), chunkIOInfoCache = new Map(), ReactDOMSharedInternals = ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator, ASYNC_ITERATOR = Symbol.asyncIterator, isArrayImpl = Array.isArray, getPrototypeOf = Object.getPrototypeOf, jsxPropsParents = new WeakMap(), jsxChildrenParents = new WeakMap(), CLIENT_REFERENCE_TAG = Symbol.for("react.client.reference"), ObjectPrototype = Object.prototype, knownServerReferences = new WeakMap(), fakeServerFunctionIdx = 0, v8FrameRegExp = /^ {3} at (?:(.+) \((.+):(\d+):(\d+)\)|(?:async )?(.+):(\d+):(\d+))$/, jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\d+):(\d+)/, REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), supportsUserTiming = "undefined" !== typeof console && "function" === typeof console.timeStamp && "undefined" !== typeof performance && "function" === typeof performance.measure, trackNames = "Primary Parallel Parallel\u200b Parallel\u200b\u200b Parallel\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b\u200b Parallel\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b".split(" "), prefix, suffix; - new ("function" === typeof WeakMap ? WeakMap : Map)(); - var ReactSharedInteralsServer = React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE || ReactSharedInteralsServer; - ReactPromise.prototype = Object.create(Promise.prototype); - ReactPromise.prototype.then = function(resolve, reject) { - var _this = this; - switch(this.status){ - case "resolved_model": - initializeModelChunk(this); - break; - case "resolved_module": - initializeModuleChunk(this); - } - var resolveCallback = resolve, rejectCallback = reject, wrapperPromise = new Promise(function(res, rej) { - resolve = function(value) { - wrapperPromise._debugInfo = _this._debugInfo; - res(value); - }; - reject = function(reason) { - wrapperPromise._debugInfo = _this._debugInfo; - rej(reason); - }; - }); - wrapperPromise.then(resolveCallback, rejectCallback); - switch(this.status){ - case "fulfilled": - "function" === typeof resolve && resolve(this.value); - break; - case "pending": - case "blocked": - "function" === typeof resolve && (null === this.value && (this.value = []), this.value.push(resolve)); - "function" === typeof reject && (null === this.reason && (this.reason = []), this.reason.push(reject)); - break; - case "halted": - break; - default: - "function" === typeof reject && reject(this.reason); - } - }; - var debugChannelRegistry = "function" === typeof FinalizationRegistry ? new FinalizationRegistry(closeDebugChannel) : null, initializingHandler = null, initializingChunk = null, mightHaveStaticConstructor = /\bclass\b.*\bstatic\b/, MIN_CHUNK_SIZE = 65536, supportsCreateTask = !!console.createTask, fakeFunctionCache = new Map(), fakeFunctionIdx = 0, createFakeJSXCallStack = { - react_stack_bottom_frame: function(response, stack, environmentName) { - return buildFakeCallStack(response, stack, environmentName, !1, fakeJSXCallSite)(); - } - }, createFakeJSXCallStackInDEV = createFakeJSXCallStack.react_stack_bottom_frame.bind(createFakeJSXCallStack), currentOwnerInDEV = null, replayConsoleWithCallStack = { - react_stack_bottom_frame: function(response, payload) { - var methodName = payload[0], stackTrace = payload[1], owner = payload[2], env = payload[3]; - payload = payload.slice(4); - var prevStack = ReactSharedInternals.getCurrentStack; - ReactSharedInternals.getCurrentStack = getCurrentStackInDEV; - currentOwnerInDEV = null === owner ? response._debugRootOwner : owner; - try { - a: { - var offset = 0; - switch(methodName){ - case "dir": - case "dirxml": - case "groupEnd": - case "table": - var JSCompiler_inline_result = bind.apply(console[methodName], [ - console - ].concat(payload)); - break a; - case "assert": - offset = 1; - } - var newArgs = payload.slice(0); - "string" === typeof newArgs[offset] ? newArgs.splice(offset, 1, "%c%s%c " + newArgs[offset], "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", " " + env + " ", "") : newArgs.splice(offset, 0, "%c%s%c", "background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px", " " + env + " ", ""); - newArgs.unshift(console); - JSCompiler_inline_result = bind.apply(console[methodName], newArgs); - } - var callStack = buildFakeCallStack(response, stackTrace, env, !1, JSCompiler_inline_result); - if (null != owner) { - var task = initializeFakeTask(response, owner); - initializeFakeStack(response, owner); - if (null !== task) { - task.run(callStack); - return; - } - } - var rootTask = getRootTask(response, env); - null != rootTask ? rootTask.run(callStack) : callStack(); - } finally{ - currentOwnerInDEV = null, ReactSharedInternals.getCurrentStack = prevStack; - } - } - }, replayConsoleWithCallStackInDEV = replayConsoleWithCallStack.react_stack_bottom_frame.bind(replayConsoleWithCallStack); - (function(internals) { - if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) return !1; - var hook = __REACT_DEVTOOLS_GLOBAL_HOOK__; - if (hook.isDisabled || !hook.supportsFlight) return !0; - try { - hook.inject(internals); - } catch (err) { - console.error("React instrumentation encountered an error: %o.", err); - } - return hook.checkDCE ? !0 : !1; - })({ - bundleType: 1, - version: "19.3.0-canary-cbec50fd-20260122", - rendererPackageName: "react-server-dom-turbopack", - currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-canary-cbec50fd-20260122", - getCurrentComponentInfo: function() { - return currentOwnerInDEV; - } - }); - exports.createFromFetch = function(promiseForResponse, options) { - var response = createResponseFromOptions(options); - promiseForResponse.then(function(r) { - if (options && options.debugChannel && options.debugChannel.readable) { - var streamDoneCount = 0, handleDone = function() { - 2 === ++streamDoneCount && close(response); - }; - startReadingFromUniversalStream(response, options.debugChannel.readable, handleDone); - startReadingFromStream(response, r.body, handleDone, r); - } else startReadingFromStream(response, r.body, close.bind(null, response), r); - }, function(e) { - reportGlobalError(response, e); - }); - return getRoot(response); - }; - exports.createFromReadableStream = function(stream, options) { - var response = createResponseFromOptions(options); - if (options && options.debugChannel && options.debugChannel.readable) { - var streamDoneCount = 0, handleDone = function() { - 2 === ++streamDoneCount && close(response); - }; - startReadingFromUniversalStream(response, options.debugChannel.readable, handleDone); - startReadingFromStream(response, stream, handleDone, stream); - } else startReadingFromStream(response, stream, close.bind(null, response), stream); - return getRoot(response); - }; - exports.createServerReference = function(id, callServer, encodeFormAction, findSourceMapURL, functionName) { - function action() { - var args = Array.prototype.slice.call(arguments); - return callServer(id, args); - } - var location = parseStackLocation(Error("react-stack-top-frame")); - if (null !== location) { - encodeFormAction = location[1]; - var line = location[2]; - location = location[3]; - findSourceMapURL = null == findSourceMapURL ? null : findSourceMapURL(encodeFormAction, "Client"); - action = createFakeServerFunction(functionName || "", encodeFormAction, findSourceMapURL, line, location, "Client", action); - } - registerBoundServerReference(action, id, null); - return action; - }; - exports.createTemporaryReferenceSet = function() { - return new Map(); - }; - exports.encodeReply = function(value, options) { - return new Promise(function(resolve, reject) { - var abort = processReply(value, "", options && options.temporaryReferences ? options.temporaryReferences : void 0, resolve, reject); - if (options && options.signal) { - var signal = options.signal; - if (signal.aborted) abort(signal.reason); - else { - var listener = function() { - abort(signal.reason); - signal.removeEventListener("abort", listener); - }; - signal.addEventListener("abort", listener); - } - } - }); - }; - exports.registerServerReference = function(reference, id) { - registerBoundServerReference(reference, id, null); - return reference; - }; -}(); -}), -"[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.browser.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use strict'; -if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable -; -else { - module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.browser.development.js [app-client] (ecmascript)"); -} -}), -"[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -module.exports = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react-server-dom-turbopack/client.browser.js [app-client] (ecmascript)"); -}), -]); - -//# sourceMappingURL=node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js.map deleted file mode 100644 index 2429fb6..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js.map +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-server-dom-turbopack/cjs/react-server-dom-turbopack-client.browser.development.js"],"sourcesContent":["/**\n * @license React\n * react-server-dom-turbopack-client.browser.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function resolveClientReference(bundlerConfig, metadata) {\n if (bundlerConfig) {\n var moduleExports = bundlerConfig[metadata[0]];\n if ((bundlerConfig = moduleExports && moduleExports[metadata[2]]))\n moduleExports = bundlerConfig.name;\n else {\n bundlerConfig = moduleExports && moduleExports[\"*\"];\n if (!bundlerConfig)\n throw Error(\n 'Could not find the module \"' +\n metadata[0] +\n '\" in the React Server Consumer Manifest. This is probably a bug in the React Server Components bundler.'\n );\n moduleExports = metadata[2];\n }\n return 4 === metadata.length\n ? [bundlerConfig.id, bundlerConfig.chunks, moduleExports, 1]\n : [bundlerConfig.id, bundlerConfig.chunks, moduleExports];\n }\n return metadata;\n }\n function resolveServerReference(bundlerConfig, id) {\n var name = \"\",\n resolvedModuleData = bundlerConfig[id];\n if (resolvedModuleData) name = resolvedModuleData.name;\n else {\n var idx = id.lastIndexOf(\"#\");\n -1 !== idx &&\n ((name = id.slice(idx + 1)),\n (resolvedModuleData = bundlerConfig[id.slice(0, idx)]));\n if (!resolvedModuleData)\n throw Error(\n 'Could not find the module \"' +\n id +\n '\" in the React Server Manifest. This is probably a bug in the React Server Components bundler.'\n );\n }\n return resolvedModuleData.async\n ? [resolvedModuleData.id, resolvedModuleData.chunks, name, 1]\n : [resolvedModuleData.id, resolvedModuleData.chunks, name];\n }\n function requireAsyncModule(id) {\n var promise = __turbopack_require__(id);\n if (\"function\" !== typeof promise.then || \"fulfilled\" === promise.status)\n return null;\n promise.then(\n function (value) {\n promise.status = \"fulfilled\";\n promise.value = value;\n },\n function (reason) {\n promise.status = \"rejected\";\n promise.reason = reason;\n }\n );\n return promise;\n }\n function ignoreReject() {}\n function preloadModule(metadata) {\n for (\n var chunks = metadata[1], promises = [], i = 0;\n i < chunks.length;\n i++\n ) {\n var thenable = __turbopack_load_by_url__(chunks[i]);\n loadedChunks.has(thenable) || promises.push(thenable);\n if (!instrumentedChunks.has(thenable)) {\n var resolve = loadedChunks.add.bind(loadedChunks, thenable);\n thenable.then(resolve, ignoreReject);\n instrumentedChunks.add(thenable);\n }\n }\n return 4 === metadata.length\n ? 0 === promises.length\n ? requireAsyncModule(metadata[0])\n : Promise.all(promises).then(function () {\n return requireAsyncModule(metadata[0]);\n })\n : 0 < promises.length\n ? Promise.all(promises)\n : null;\n }\n function requireModule(metadata) {\n var moduleExports = __turbopack_require__(metadata[0]);\n if (4 === metadata.length && \"function\" === typeof moduleExports.then)\n if (\"fulfilled\" === moduleExports.status)\n moduleExports = moduleExports.value;\n else throw moduleExports.reason;\n if (\"*\" === metadata[2]) return moduleExports;\n if (\"\" === metadata[2])\n return moduleExports.__esModule ? moduleExports.default : moduleExports;\n if (hasOwnProperty.call(moduleExports, metadata[2]))\n return moduleExports[metadata[2]];\n }\n function getIteratorFn(maybeIterable) {\n if (null === maybeIterable || \"object\" !== typeof maybeIterable)\n return null;\n maybeIterable =\n (MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||\n maybeIterable[\"@@iterator\"];\n return \"function\" === typeof maybeIterable ? maybeIterable : null;\n }\n function isObjectPrototype(object) {\n if (!object) return !1;\n var ObjectPrototype = Object.prototype;\n if (object === ObjectPrototype) return !0;\n if (getPrototypeOf(object)) return !1;\n object = Object.getOwnPropertyNames(object);\n for (var i = 0; i < object.length; i++)\n if (!(object[i] in ObjectPrototype)) return !1;\n return !0;\n }\n function isSimpleObject(object) {\n if (!isObjectPrototype(getPrototypeOf(object))) return !1;\n for (\n var names = Object.getOwnPropertyNames(object), i = 0;\n i < names.length;\n i++\n ) {\n var descriptor = Object.getOwnPropertyDescriptor(object, names[i]);\n if (\n !descriptor ||\n (!descriptor.enumerable &&\n ((\"key\" !== names[i] && \"ref\" !== names[i]) ||\n \"function\" !== typeof descriptor.get))\n )\n return !1;\n }\n return !0;\n }\n function objectName(object) {\n object = Object.prototype.toString.call(object);\n return object.slice(8, object.length - 1);\n }\n function describeKeyForErrorMessage(key) {\n var encodedKey = JSON.stringify(key);\n return '\"' + key + '\"' === encodedKey ? key : encodedKey;\n }\n function describeValueForErrorMessage(value) {\n switch (typeof value) {\n case \"string\":\n return JSON.stringify(\n 10 >= value.length ? value : value.slice(0, 10) + \"...\"\n );\n case \"object\":\n if (isArrayImpl(value)) return \"[...]\";\n if (null !== value && value.$$typeof === CLIENT_REFERENCE_TAG)\n return \"client\";\n value = objectName(value);\n return \"Object\" === value ? \"{...}\" : value;\n case \"function\":\n return value.$$typeof === CLIENT_REFERENCE_TAG\n ? \"client\"\n : (value = value.displayName || value.name)\n ? \"function \" + value\n : \"function\";\n default:\n return String(value);\n }\n }\n function describeElementType(type) {\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeElementType(type.render);\n case REACT_MEMO_TYPE:\n return describeElementType(type.type);\n case REACT_LAZY_TYPE:\n var payload = type._payload;\n type = type._init;\n try {\n return describeElementType(type(payload));\n } catch (x) {}\n }\n return \"\";\n }\n function describeObjectForErrorMessage(objectOrArray, expandedName) {\n var objKind = objectName(objectOrArray);\n if (\"Object\" !== objKind && \"Array\" !== objKind) return objKind;\n var start = -1,\n length = 0;\n if (isArrayImpl(objectOrArray))\n if (jsxChildrenParents.has(objectOrArray)) {\n var type = jsxChildrenParents.get(objectOrArray);\n objKind = \"<\" + describeElementType(type) + \">\";\n for (var i = 0; i < objectOrArray.length; i++) {\n var value = objectOrArray[i];\n value =\n \"string\" === typeof value\n ? value\n : \"object\" === typeof value && null !== value\n ? \"{\" + describeObjectForErrorMessage(value) + \"}\"\n : \"{\" + describeValueForErrorMessage(value) + \"}\";\n \"\" + i === expandedName\n ? ((start = objKind.length),\n (length = value.length),\n (objKind += value))\n : (objKind =\n 15 > value.length && 40 > objKind.length + value.length\n ? objKind + value\n : objKind + \"{...}\");\n }\n objKind += \"</\" + describeElementType(type) + \">\";\n } else {\n objKind = \"[\";\n for (type = 0; type < objectOrArray.length; type++)\n 0 < type && (objKind += \", \"),\n (i = objectOrArray[type]),\n (i =\n \"object\" === typeof i && null !== i\n ? describeObjectForErrorMessage(i)\n : describeValueForErrorMessage(i)),\n \"\" + type === expandedName\n ? ((start = objKind.length),\n (length = i.length),\n (objKind += i))\n : (objKind =\n 10 > i.length && 40 > objKind.length + i.length\n ? objKind + i\n : objKind + \"...\");\n objKind += \"]\";\n }\n else if (objectOrArray.$$typeof === REACT_ELEMENT_TYPE)\n objKind = \"<\" + describeElementType(objectOrArray.type) + \"/>\";\n else {\n if (objectOrArray.$$typeof === CLIENT_REFERENCE_TAG) return \"client\";\n if (jsxPropsParents.has(objectOrArray)) {\n objKind = jsxPropsParents.get(objectOrArray);\n objKind = \"<\" + (describeElementType(objKind) || \"...\");\n type = Object.keys(objectOrArray);\n for (i = 0; i < type.length; i++) {\n objKind += \" \";\n value = type[i];\n objKind += describeKeyForErrorMessage(value) + \"=\";\n var _value2 = objectOrArray[value];\n var _substr2 =\n value === expandedName &&\n \"object\" === typeof _value2 &&\n null !== _value2\n ? describeObjectForErrorMessage(_value2)\n : describeValueForErrorMessage(_value2);\n \"string\" !== typeof _value2 && (_substr2 = \"{\" + _substr2 + \"}\");\n value === expandedName\n ? ((start = objKind.length),\n (length = _substr2.length),\n (objKind += _substr2))\n : (objKind =\n 10 > _substr2.length && 40 > objKind.length + _substr2.length\n ? objKind + _substr2\n : objKind + \"...\");\n }\n objKind += \">\";\n } else {\n objKind = \"{\";\n type = Object.keys(objectOrArray);\n for (i = 0; i < type.length; i++)\n 0 < i && (objKind += \", \"),\n (value = type[i]),\n (objKind += describeKeyForErrorMessage(value) + \": \"),\n (_value2 = objectOrArray[value]),\n (_value2 =\n \"object\" === typeof _value2 && null !== _value2\n ? describeObjectForErrorMessage(_value2)\n : describeValueForErrorMessage(_value2)),\n value === expandedName\n ? ((start = objKind.length),\n (length = _value2.length),\n (objKind += _value2))\n : (objKind =\n 10 > _value2.length && 40 > objKind.length + _value2.length\n ? objKind + _value2\n : objKind + \"...\");\n objKind += \"}\";\n }\n }\n return void 0 === expandedName\n ? objKind\n : -1 < start && 0 < length\n ? ((objectOrArray = \" \".repeat(start) + \"^\".repeat(length)),\n \"\\n \" + objKind + \"\\n \" + objectOrArray)\n : \"\\n \" + objKind;\n }\n function serializeNumber(number) {\n return Number.isFinite(number)\n ? 0 === number && -Infinity === 1 / number\n ? \"$-0\"\n : number\n : Infinity === number\n ? \"$Infinity\"\n : -Infinity === number\n ? \"$-Infinity\"\n : \"$NaN\";\n }\n function processReply(\n root,\n formFieldPrefix,\n temporaryReferences,\n resolve,\n reject\n ) {\n function serializeTypedArray(tag, typedArray) {\n typedArray = new Blob([\n new Uint8Array(\n typedArray.buffer,\n typedArray.byteOffset,\n typedArray.byteLength\n )\n ]);\n var blobId = nextPartId++;\n null === formData && (formData = new FormData());\n formData.append(formFieldPrefix + blobId, typedArray);\n return \"$\" + tag + blobId.toString(16);\n }\n function serializeBinaryReader(reader) {\n function progress(entry) {\n entry.done\n ? ((entry = nextPartId++),\n data.append(formFieldPrefix + entry, new Blob(buffer)),\n data.append(\n formFieldPrefix + streamId,\n '\"$o' + entry.toString(16) + '\"'\n ),\n data.append(formFieldPrefix + streamId, \"C\"),\n pendingParts--,\n 0 === pendingParts && resolve(data))\n : (buffer.push(entry.value),\n reader.read(new Uint8Array(1024)).then(progress, reject));\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++,\n buffer = [];\n reader.read(new Uint8Array(1024)).then(progress, reject);\n return \"$r\" + streamId.toString(16);\n }\n function serializeReader(reader) {\n function progress(entry) {\n if (entry.done)\n data.append(formFieldPrefix + streamId, \"C\"),\n pendingParts--,\n 0 === pendingParts && resolve(data);\n else\n try {\n var partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, partJSON);\n reader.read().then(progress, reject);\n } catch (x) {\n reject(x);\n }\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++;\n reader.read().then(progress, reject);\n return \"$R\" + streamId.toString(16);\n }\n function serializeReadableStream(stream) {\n try {\n var binaryReader = stream.getReader({ mode: \"byob\" });\n } catch (x) {\n return serializeReader(stream.getReader());\n }\n return serializeBinaryReader(binaryReader);\n }\n function serializeAsyncIterable(iterable, iterator) {\n function progress(entry) {\n if (entry.done) {\n if (void 0 === entry.value)\n data.append(formFieldPrefix + streamId, \"C\");\n else\n try {\n var partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, \"C\" + partJSON);\n } catch (x) {\n reject(x);\n return;\n }\n pendingParts--;\n 0 === pendingParts && resolve(data);\n } else\n try {\n var _partJSON = JSON.stringify(entry.value, resolveToJSON);\n data.append(formFieldPrefix + streamId, _partJSON);\n iterator.next().then(progress, reject);\n } catch (x$0) {\n reject(x$0);\n }\n }\n null === formData && (formData = new FormData());\n var data = formData;\n pendingParts++;\n var streamId = nextPartId++;\n iterable = iterable === iterator;\n iterator.next().then(progress, reject);\n return \"$\" + (iterable ? \"x\" : \"X\") + streamId.toString(16);\n }\n function resolveToJSON(key, value) {\n \"__proto__\" === key &&\n console.error(\n \"Expected not to serialize an object with own property `__proto__`. When parsed this property will be omitted.%s\",\n describeObjectForErrorMessage(this, key)\n );\n var originalValue = this[key];\n \"object\" !== typeof originalValue ||\n originalValue === value ||\n originalValue instanceof Date ||\n (\"Object\" !== objectName(originalValue)\n ? console.error(\n \"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s\",\n objectName(originalValue),\n describeObjectForErrorMessage(this, key)\n )\n : console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Objects with toJSON methods are not supported. Convert it manually to a simple value before passing it to props.%s\",\n describeObjectForErrorMessage(this, key)\n ));\n if (null === value) return null;\n if (\"object\" === typeof value) {\n switch (value.$$typeof) {\n case REACT_ELEMENT_TYPE:\n if (void 0 !== temporaryReferences && -1 === key.indexOf(\":\")) {\n var parentReference = writtenObjects.get(this);\n if (void 0 !== parentReference)\n return (\n temporaryReferences.set(parentReference + \":\" + key, value),\n \"$T\"\n );\n }\n throw Error(\n \"React Element cannot be passed to Server Functions from the Client without a temporary reference set. Pass a TemporaryReferenceSet to the options.\" +\n describeObjectForErrorMessage(this, key)\n );\n case REACT_LAZY_TYPE:\n originalValue = value._payload;\n var init = value._init;\n null === formData && (formData = new FormData());\n pendingParts++;\n try {\n parentReference = init(originalValue);\n var lazyId = nextPartId++,\n partJSON = serializeModel(parentReference, lazyId);\n formData.append(formFieldPrefix + lazyId, partJSON);\n return \"$\" + lazyId.toString(16);\n } catch (x) {\n if (\n \"object\" === typeof x &&\n null !== x &&\n \"function\" === typeof x.then\n ) {\n pendingParts++;\n var _lazyId = nextPartId++;\n parentReference = function () {\n try {\n var _partJSON2 = serializeModel(value, _lazyId),\n _data = formData;\n _data.append(formFieldPrefix + _lazyId, _partJSON2);\n pendingParts--;\n 0 === pendingParts && resolve(_data);\n } catch (reason) {\n reject(reason);\n }\n };\n x.then(parentReference, parentReference);\n return \"$\" + _lazyId.toString(16);\n }\n reject(x);\n return null;\n } finally {\n pendingParts--;\n }\n }\n parentReference = writtenObjects.get(value);\n if (\"function\" === typeof value.then) {\n if (void 0 !== parentReference)\n if (modelRoot === value) modelRoot = null;\n else return parentReference;\n null === formData && (formData = new FormData());\n pendingParts++;\n var promiseId = nextPartId++;\n key = \"$@\" + promiseId.toString(16);\n writtenObjects.set(value, key);\n value.then(function (partValue) {\n try {\n var previousReference = writtenObjects.get(partValue);\n var _partJSON3 =\n void 0 !== previousReference\n ? JSON.stringify(previousReference)\n : serializeModel(partValue, promiseId);\n partValue = formData;\n partValue.append(formFieldPrefix + promiseId, _partJSON3);\n pendingParts--;\n 0 === pendingParts && resolve(partValue);\n } catch (reason) {\n reject(reason);\n }\n }, reject);\n return key;\n }\n if (void 0 !== parentReference)\n if (modelRoot === value) modelRoot = null;\n else return parentReference;\n else\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference &&\n ((parentReference = parentReference + \":\" + key),\n writtenObjects.set(value, parentReference),\n void 0 !== temporaryReferences &&\n temporaryReferences.set(parentReference, value)));\n if (isArrayImpl(value)) return value;\n if (value instanceof FormData) {\n null === formData && (formData = new FormData());\n var _data3 = formData;\n key = nextPartId++;\n var prefix = formFieldPrefix + key + \"_\";\n value.forEach(function (originalValue, originalKey) {\n _data3.append(prefix + originalKey, originalValue);\n });\n return \"$K\" + key.toString(16);\n }\n if (value instanceof Map)\n return (\n (key = nextPartId++),\n (parentReference = serializeModel(Array.from(value), key)),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$Q\" + key.toString(16)\n );\n if (value instanceof Set)\n return (\n (key = nextPartId++),\n (parentReference = serializeModel(Array.from(value), key)),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$W\" + key.toString(16)\n );\n if (value instanceof ArrayBuffer)\n return (\n (key = new Blob([value])),\n (parentReference = nextPartId++),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + parentReference, key),\n \"$A\" + parentReference.toString(16)\n );\n if (value instanceof Int8Array)\n return serializeTypedArray(\"O\", value);\n if (value instanceof Uint8Array)\n return serializeTypedArray(\"o\", value);\n if (value instanceof Uint8ClampedArray)\n return serializeTypedArray(\"U\", value);\n if (value instanceof Int16Array)\n return serializeTypedArray(\"S\", value);\n if (value instanceof Uint16Array)\n return serializeTypedArray(\"s\", value);\n if (value instanceof Int32Array)\n return serializeTypedArray(\"L\", value);\n if (value instanceof Uint32Array)\n return serializeTypedArray(\"l\", value);\n if (value instanceof Float32Array)\n return serializeTypedArray(\"G\", value);\n if (value instanceof Float64Array)\n return serializeTypedArray(\"g\", value);\n if (value instanceof BigInt64Array)\n return serializeTypedArray(\"M\", value);\n if (value instanceof BigUint64Array)\n return serializeTypedArray(\"m\", value);\n if (value instanceof DataView) return serializeTypedArray(\"V\", value);\n if (\"function\" === typeof Blob && value instanceof Blob)\n return (\n null === formData && (formData = new FormData()),\n (key = nextPartId++),\n formData.append(formFieldPrefix + key, value),\n \"$B\" + key.toString(16)\n );\n if ((parentReference = getIteratorFn(value)))\n return (\n (parentReference = parentReference.call(value)),\n parentReference === value\n ? ((key = nextPartId++),\n (parentReference = serializeModel(\n Array.from(parentReference),\n key\n )),\n null === formData && (formData = new FormData()),\n formData.append(formFieldPrefix + key, parentReference),\n \"$i\" + key.toString(16))\n : Array.from(parentReference)\n );\n if (\n \"function\" === typeof ReadableStream &&\n value instanceof ReadableStream\n )\n return serializeReadableStream(value);\n parentReference = value[ASYNC_ITERATOR];\n if (\"function\" === typeof parentReference)\n return serializeAsyncIterable(value, parentReference.call(value));\n parentReference = getPrototypeOf(value);\n if (\n parentReference !== ObjectPrototype &&\n (null === parentReference ||\n null !== getPrototypeOf(parentReference))\n ) {\n if (void 0 === temporaryReferences)\n throw Error(\n \"Only plain objects, and a few built-ins, can be passed to Server Functions. Classes or null prototypes are not supported.\" +\n describeObjectForErrorMessage(this, key)\n );\n return \"$T\";\n }\n value.$$typeof === REACT_CONTEXT_TYPE\n ? console.error(\n \"React Context Providers cannot be passed to Server Functions from the Client.%s\",\n describeObjectForErrorMessage(this, key)\n )\n : \"Object\" !== objectName(value)\n ? console.error(\n \"Only plain objects can be passed to Server Functions from the Client. %s objects are not supported.%s\",\n objectName(value),\n describeObjectForErrorMessage(this, key)\n )\n : isSimpleObject(value)\n ? Object.getOwnPropertySymbols &&\n ((parentReference = Object.getOwnPropertySymbols(value)),\n 0 < parentReference.length &&\n console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Objects with symbol properties like %s are not supported.%s\",\n parentReference[0].description,\n describeObjectForErrorMessage(this, key)\n ))\n : console.error(\n \"Only plain objects can be passed to Server Functions from the Client. Classes or other objects with methods are not supported.%s\",\n describeObjectForErrorMessage(this, key)\n );\n return value;\n }\n if (\"string\" === typeof value) {\n if (\"Z\" === value[value.length - 1] && this[key] instanceof Date)\n return \"$D\" + value;\n key = \"$\" === value[0] ? \"$\" + value : value;\n return key;\n }\n if (\"boolean\" === typeof value) return value;\n if (\"number\" === typeof value) return serializeNumber(value);\n if (\"undefined\" === typeof value) return \"$undefined\";\n if (\"function\" === typeof value) {\n parentReference = knownServerReferences.get(value);\n if (void 0 !== parentReference) {\n key = writtenObjects.get(value);\n if (void 0 !== key) return key;\n key = JSON.stringify(\n { id: parentReference.id, bound: parentReference.bound },\n resolveToJSON\n );\n null === formData && (formData = new FormData());\n parentReference = nextPartId++;\n formData.set(formFieldPrefix + parentReference, key);\n key = \"$h\" + parentReference.toString(16);\n writtenObjects.set(value, key);\n return key;\n }\n if (\n void 0 !== temporaryReferences &&\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference)\n )\n return (\n temporaryReferences.set(parentReference + \":\" + key, value), \"$T\"\n );\n throw Error(\n \"Client Functions cannot be passed directly to Server Functions. Only Functions passed from the Server can be passed back again.\"\n );\n }\n if (\"symbol\" === typeof value) {\n if (\n void 0 !== temporaryReferences &&\n -1 === key.indexOf(\":\") &&\n ((parentReference = writtenObjects.get(this)),\n void 0 !== parentReference)\n )\n return (\n temporaryReferences.set(parentReference + \":\" + key, value), \"$T\"\n );\n throw Error(\n \"Symbols cannot be passed to a Server Function without a temporary reference set. Pass a TemporaryReferenceSet to the options.\" +\n describeObjectForErrorMessage(this, key)\n );\n }\n if (\"bigint\" === typeof value) return \"$n\" + value.toString(10);\n throw Error(\n \"Type \" +\n typeof value +\n \" is not supported as an argument to a Server Function.\"\n );\n }\n function serializeModel(model, id) {\n \"object\" === typeof model &&\n null !== model &&\n ((id = \"$\" + id.toString(16)),\n writtenObjects.set(model, id),\n void 0 !== temporaryReferences && temporaryReferences.set(id, model));\n modelRoot = model;\n return JSON.stringify(model, resolveToJSON);\n }\n var nextPartId = 1,\n pendingParts = 0,\n formData = null,\n writtenObjects = new WeakMap(),\n modelRoot = root,\n json = serializeModel(root, 0);\n null === formData\n ? resolve(json)\n : (formData.set(formFieldPrefix + \"0\", json),\n 0 === pendingParts && resolve(formData));\n return function () {\n 0 < pendingParts &&\n ((pendingParts = 0),\n null === formData ? resolve(json) : resolve(formData));\n };\n }\n function createFakeServerFunction(\n name,\n filename,\n sourceMap,\n line,\n col,\n environmentName,\n innerFunction\n ) {\n name || (name = \"<anonymous>\");\n var encodedName = JSON.stringify(name);\n 1 >= line\n ? ((line = encodedName.length + 7),\n (col =\n \"s=>({\" +\n encodedName +\n \" \".repeat(col < line ? 0 : col - line) +\n \":(...args) => s(...args)})\\n/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */\"))\n : (col =\n \"/* This module is a proxy to a Server Action. Turn on Source Maps to see the server source. */\" +\n \"\\n\".repeat(line - 2) +\n \"server=>({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(1 > col ? 0 : col - 1) +\n \"(...args) => server(...args)})\");\n filename.startsWith(\"/\") && (filename = \"file://\" + filename);\n sourceMap\n ? ((col +=\n \"\\n//# sourceURL=about://React/\" +\n encodeURIComponent(environmentName) +\n \"/\" +\n encodeURI(filename) +\n \"?s\" +\n fakeServerFunctionIdx++),\n (col += \"\\n//# sourceMappingURL=\" + sourceMap))\n : filename && (col += \"\\n//# sourceURL=\" + filename);\n try {\n return (0, eval)(col)(innerFunction)[name];\n } catch (x) {\n return innerFunction;\n }\n }\n function registerBoundServerReference(reference, id, bound) {\n knownServerReferences.has(reference) ||\n knownServerReferences.set(reference, {\n id: id,\n originalBind: reference.bind,\n bound: bound\n });\n }\n function createBoundServerReference(\n metaData,\n callServer,\n encodeFormAction,\n findSourceMapURL\n ) {\n function action() {\n var args = Array.prototype.slice.call(arguments);\n return bound\n ? \"fulfilled\" === bound.status\n ? callServer(id, bound.value.concat(args))\n : Promise.resolve(bound).then(function (boundArgs) {\n return callServer(id, boundArgs.concat(args));\n })\n : callServer(id, args);\n }\n var id = metaData.id,\n bound = metaData.bound,\n location = metaData.location;\n if (location) {\n encodeFormAction = metaData.name || \"\";\n var filename = location[1],\n line = location[2];\n location = location[3];\n metaData = metaData.env || \"Server\";\n findSourceMapURL =\n null == findSourceMapURL\n ? null\n : findSourceMapURL(filename, metaData);\n action = createFakeServerFunction(\n encodeFormAction,\n filename,\n findSourceMapURL,\n line,\n location,\n metaData,\n action\n );\n }\n registerBoundServerReference(action, id, bound);\n return action;\n }\n function parseStackLocation(error) {\n error = error.stack;\n error.startsWith(\"Error: react-stack-top-frame\\n\") &&\n (error = error.slice(29));\n var endOfFirst = error.indexOf(\"\\n\");\n if (-1 !== endOfFirst) {\n var endOfSecond = error.indexOf(\"\\n\", endOfFirst + 1);\n endOfFirst =\n -1 === endOfSecond\n ? error.slice(endOfFirst + 1)\n : error.slice(endOfFirst + 1, endOfSecond);\n } else endOfFirst = error;\n error = v8FrameRegExp.exec(endOfFirst);\n if (\n !error &&\n ((error = jscSpiderMonkeyFrameRegExp.exec(endOfFirst)), !error)\n )\n return null;\n endOfFirst = error[1] || \"\";\n \"<anonymous>\" === endOfFirst && (endOfFirst = \"\");\n endOfSecond = error[2] || error[5] || \"\";\n \"<anonymous>\" === endOfSecond && (endOfSecond = \"\");\n return [\n endOfFirst,\n endOfSecond,\n +(error[3] || error[6]),\n +(error[4] || error[7])\n ];\n }\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n case REACT_VIEW_TRANSITION_TYPE:\n return \"ViewTransition\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function getArrayKind(array) {\n for (var kind = 0, i = 0; i < array.length && 100 > i; i++) {\n var value = array[i];\n if (\"object\" === typeof value && null !== value)\n if (\n isArrayImpl(value) &&\n 2 === value.length &&\n \"string\" === typeof value[0]\n ) {\n if (0 !== kind && 3 !== kind) return 1;\n kind = 3;\n } else return 1;\n else {\n if (\n \"function\" === typeof value ||\n (\"string\" === typeof value && 50 < value.length) ||\n (0 !== kind && 2 !== kind)\n )\n return 1;\n kind = 2;\n }\n }\n return kind;\n }\n function addObjectToProperties(object, properties, indent, prefix) {\n var addedProperties = 0,\n key;\n for (key in object)\n if (\n hasOwnProperty.call(object, key) &&\n \"_\" !== key[0] &&\n (addedProperties++,\n addValueToProperties(key, object[key], properties, indent, prefix),\n 100 <= addedProperties)\n ) {\n properties.push([\n prefix +\n \"\\u00a0\\u00a0\".repeat(indent) +\n \"Only 100 properties are shown. React will not log more properties of this object.\",\n \"\"\n ]);\n break;\n }\n }\n function addValueToProperties(\n propertyName,\n value,\n properties,\n indent,\n prefix\n ) {\n switch (typeof value) {\n case \"object\":\n if (null === value) {\n value = \"null\";\n break;\n } else {\n if (value.$$typeof === REACT_ELEMENT_TYPE) {\n var typeName = getComponentNameFromType(value.type) || \"\\u2026\",\n key = value.key;\n value = value.props;\n var propsKeys = Object.keys(value),\n propsLength = propsKeys.length;\n if (null == key && 0 === propsLength) {\n value = \"<\" + typeName + \" />\";\n break;\n }\n if (\n 3 > indent ||\n (1 === propsLength &&\n \"children\" === propsKeys[0] &&\n null == key)\n ) {\n value = \"<\" + typeName + \" \\u2026 />\";\n break;\n }\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"<\" + typeName\n ]);\n null !== key &&\n addValueToProperties(\n \"key\",\n key,\n properties,\n indent + 1,\n prefix\n );\n propertyName = !1;\n key = 0;\n for (var propKey in value)\n if (\n (key++,\n \"children\" === propKey\n ? null != value.children &&\n (!isArrayImpl(value.children) ||\n 0 < value.children.length) &&\n (propertyName = !0)\n : hasOwnProperty.call(value, propKey) &&\n \"_\" !== propKey[0] &&\n addValueToProperties(\n propKey,\n value[propKey],\n properties,\n indent + 1,\n prefix\n ),\n 100 <= key)\n )\n break;\n properties.push([\n \"\",\n propertyName ? \">\\u2026</\" + typeName + \">\" : \"/>\"\n ]);\n return;\n }\n typeName = Object.prototype.toString.call(value);\n propKey = typeName.slice(8, typeName.length - 1);\n if (\"Array\" === propKey)\n if (\n ((typeName = 100 < value.length),\n (key = getArrayKind(value)),\n 2 === key || 0 === key)\n ) {\n value = JSON.stringify(\n typeName ? value.slice(0, 100).concat(\"\\u2026\") : value\n );\n break;\n } else if (3 === key) {\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"\"\n ]);\n for (\n propertyName = 0;\n propertyName < value.length && 100 > propertyName;\n propertyName++\n )\n (propKey = value[propertyName]),\n addValueToProperties(\n propKey[0],\n propKey[1],\n properties,\n indent + 1,\n prefix\n );\n typeName &&\n addValueToProperties(\n (100).toString(),\n \"\\u2026\",\n properties,\n indent + 1,\n prefix\n );\n return;\n }\n if (\"Promise\" === propKey) {\n if (\"fulfilled\" === value.status) {\n if (\n ((typeName = properties.length),\n addValueToProperties(\n propertyName,\n value.value,\n properties,\n indent,\n prefix\n ),\n properties.length > typeName)\n ) {\n properties = properties[typeName];\n properties[1] =\n \"Promise<\" + (properties[1] || \"Object\") + \">\";\n return;\n }\n } else if (\n \"rejected\" === value.status &&\n ((typeName = properties.length),\n addValueToProperties(\n propertyName,\n value.reason,\n properties,\n indent,\n prefix\n ),\n properties.length > typeName)\n ) {\n properties = properties[typeName];\n properties[1] = \"Rejected Promise<\" + properties[1] + \">\";\n return;\n }\n properties.push([\n \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"Promise\"\n ]);\n return;\n }\n \"Object\" === propKey &&\n (typeName = Object.getPrototypeOf(value)) &&\n \"function\" === typeof typeName.constructor &&\n (propKey = typeName.constructor.name);\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n \"Object\" === propKey ? (3 > indent ? \"\" : \"\\u2026\") : propKey\n ]);\n 3 > indent &&\n addObjectToProperties(value, properties, indent + 1, prefix);\n return;\n }\n case \"function\":\n value = \"\" === value.name ? \"() => {}\" : value.name + \"() {}\";\n break;\n case \"string\":\n value =\n \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\" ===\n value\n ? \"\\u2026\"\n : JSON.stringify(value);\n break;\n case \"undefined\":\n value = \"undefined\";\n break;\n case \"boolean\":\n value = value ? \"true\" : \"false\";\n break;\n default:\n value = String(value);\n }\n properties.push([\n prefix + \"\\u00a0\\u00a0\".repeat(indent) + propertyName,\n value\n ]);\n }\n function getIODescription(value) {\n try {\n switch (typeof value) {\n case \"function\":\n return value.name || \"\";\n case \"object\":\n if (null === value) return \"\";\n if (value instanceof Error) return String(value.message);\n if (\"string\" === typeof value.url) return value.url;\n if (\"string\" === typeof value.href) return value.href;\n if (\"string\" === typeof value.src) return value.src;\n if (\"string\" === typeof value.currentSrc) return value.currentSrc;\n if (\"string\" === typeof value.command) return value.command;\n if (\n \"object\" === typeof value.request &&\n null !== value.request &&\n \"string\" === typeof value.request.url\n )\n return value.request.url;\n if (\n \"object\" === typeof value.response &&\n null !== value.response &&\n \"string\" === typeof value.response.url\n )\n return value.response.url;\n if (\n \"string\" === typeof value.id ||\n \"number\" === typeof value.id ||\n \"bigint\" === typeof value.id\n )\n return String(value.id);\n if (\"string\" === typeof value.name) return value.name;\n var str = value.toString();\n return str.startsWith(\"[object \") ||\n 5 > str.length ||\n 500 < str.length\n ? \"\"\n : str;\n case \"string\":\n return 5 > value.length || 500 < value.length ? \"\" : value;\n case \"number\":\n case \"bigint\":\n return String(value);\n default:\n return \"\";\n }\n } catch (x) {\n return \"\";\n }\n }\n function markAllTracksInOrder() {\n supportsUserTiming &&\n (console.timeStamp(\n \"Server Requests Track\",\n 0.001,\n 0.001,\n \"Server Requests \\u269b\",\n void 0,\n \"primary-light\"\n ),\n console.timeStamp(\n \"Server Components Track\",\n 0.001,\n 0.001,\n \"Primary\",\n \"Server Components \\u269b\",\n \"primary-light\"\n ));\n }\n function getIOColor(functionName) {\n switch (functionName.charCodeAt(0) % 3) {\n case 0:\n return \"tertiary-light\";\n case 1:\n return \"tertiary\";\n default:\n return \"tertiary-dark\";\n }\n }\n function getIOLongName(ioInfo, description, env, rootEnv) {\n ioInfo = ioInfo.name;\n description =\n \"\" === description ? ioInfo : ioInfo + \" (\" + description + \")\";\n return env === rootEnv || void 0 === env\n ? description\n : description + \" [\" + env + \"]\";\n }\n function getIOShortName(ioInfo, description, env, rootEnv) {\n ioInfo = ioInfo.name;\n env = env === rootEnv || void 0 === env ? \"\" : \" [\" + env + \"]\";\n var desc = \"\";\n rootEnv = 30 - ioInfo.length - env.length;\n if (1 < rootEnv) {\n var l = description.length;\n if (0 < l && l <= rootEnv) desc = \" (\" + description + \")\";\n else if (\n description.startsWith(\"http://\") ||\n description.startsWith(\"https://\") ||\n description.startsWith(\"/\")\n ) {\n var queryIdx = description.indexOf(\"?\");\n -1 === queryIdx && (queryIdx = description.length);\n 47 === description.charCodeAt(queryIdx - 1) && queryIdx--;\n desc = description.lastIndexOf(\"/\", queryIdx - 1);\n queryIdx - desc < rootEnv\n ? (desc = \" (\\u2026\" + description.slice(desc, queryIdx) + \")\")\n : ((l = description.slice(desc, desc + rootEnv / 2)),\n (description = description.slice(\n queryIdx - rootEnv / 2,\n queryIdx\n )),\n (desc =\n \" (\" +\n (0 < desc ? \"\\u2026\" : \"\") +\n l +\n \"\\u2026\" +\n description +\n \")\"));\n }\n }\n return ioInfo + desc + env;\n }\n function logComponentAwait(\n asyncInfo,\n trackIdx,\n startTime,\n endTime,\n rootEnv,\n value\n ) {\n if (supportsUserTiming && 0 < endTime) {\n var description = getIODescription(value),\n name = getIOShortName(\n asyncInfo.awaited,\n description,\n asyncInfo.env,\n rootEnv\n ),\n entryName = \"await \" + name;\n name = getIOColor(name);\n var debugTask = asyncInfo.debugTask || asyncInfo.awaited.debugTask;\n if (debugTask) {\n var properties = [];\n \"object\" === typeof value && null !== value\n ? addObjectToProperties(value, properties, 0, \"\")\n : void 0 !== value &&\n addValueToProperties(\"awaited value\", value, properties, 0, \"\");\n asyncInfo = getIOLongName(\n asyncInfo.awaited,\n description,\n asyncInfo.env,\n rootEnv\n );\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: name,\n track: trackNames[trackIdx],\n trackGroup: \"Server Components \\u269b\",\n properties: properties,\n tooltipText: asyncInfo\n }\n }\n })\n );\n performance.clearMeasures(entryName);\n } else\n console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n name\n );\n }\n }\n function logIOInfoErrored(ioInfo, rootEnv, error) {\n var startTime = ioInfo.start,\n endTime = ioInfo.end;\n if (supportsUserTiming && 0 <= endTime) {\n var description = getIODescription(error),\n entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),\n debugTask = ioInfo.debugTask;\n entryName = \"\\u200b\" + entryName;\n debugTask\n ? ((error = [\n [\n \"rejected with\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]\n ]),\n (ioInfo =\n getIOLongName(ioInfo, description, ioInfo.env, rootEnv) +\n \" Rejected\"),\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: \"error\",\n track: \"Server Requests \\u269b\",\n properties: error,\n tooltipText: ioInfo\n }\n }\n })\n ),\n performance.clearMeasures(entryName))\n : console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n \"Server Requests \\u269b\",\n void 0,\n \"error\"\n );\n }\n }\n function logIOInfo(ioInfo, rootEnv, value) {\n var startTime = ioInfo.start,\n endTime = ioInfo.end;\n if (supportsUserTiming && 0 <= endTime) {\n var description = getIODescription(value),\n entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),\n color = getIOColor(entryName),\n debugTask = ioInfo.debugTask;\n entryName = \"\\u200b\" + entryName;\n if (debugTask) {\n var properties = [];\n \"object\" === typeof value && null !== value\n ? addObjectToProperties(value, properties, 0, \"\")\n : void 0 !== value &&\n addValueToProperties(\"Resolved\", value, properties, 0, \"\");\n ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv);\n debugTask.run(\n performance.measure.bind(performance, entryName, {\n start: 0 > startTime ? 0 : startTime,\n end: endTime,\n detail: {\n devtools: {\n color: color,\n track: \"Server Requests \\u269b\",\n properties: properties,\n tooltipText: ioInfo\n }\n }\n })\n );\n performance.clearMeasures(entryName);\n } else\n console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n endTime,\n \"Server Requests \\u269b\",\n void 0,\n color\n );\n }\n }\n function ReactPromise(status, value, reason) {\n this.status = status;\n this.value = value;\n this.reason = reason;\n this._children = [];\n this._debugChunk = null;\n this._debugInfo = [];\n }\n function unwrapWeakResponse(weakResponse) {\n weakResponse = weakResponse.weak.deref();\n if (void 0 === weakResponse)\n throw Error(\n \"We did not expect to receive new data after GC:ing the response.\"\n );\n return weakResponse;\n }\n function closeDebugChannel(debugChannel) {\n debugChannel.callback && debugChannel.callback(\"\");\n }\n function readChunk(chunk) {\n switch (chunk.status) {\n case \"resolved_model\":\n initializeModelChunk(chunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(chunk);\n }\n switch (chunk.status) {\n case \"fulfilled\":\n return chunk.value;\n case \"pending\":\n case \"blocked\":\n case \"halted\":\n throw chunk;\n default:\n throw chunk.reason;\n }\n }\n function getRoot(weakResponse) {\n weakResponse = unwrapWeakResponse(weakResponse);\n return getChunk(weakResponse, 0);\n }\n function createPendingChunk(response) {\n 0 === response._pendingChunks++ &&\n ((response._weakResponse.response = response),\n null !== response._pendingInitialRender &&\n (clearTimeout(response._pendingInitialRender),\n (response._pendingInitialRender = null)));\n return new ReactPromise(\"pending\", null, null);\n }\n function releasePendingChunk(response, chunk) {\n \"pending\" === chunk.status &&\n 0 === --response._pendingChunks &&\n ((response._weakResponse.response = null),\n (response._pendingInitialRender = setTimeout(\n flushInitialRenderPerformance.bind(null, response),\n 100\n )));\n }\n function filterDebugInfo(response, value) {\n if (null !== response._debugEndTime) {\n response = response._debugEndTime - performance.timeOrigin;\n for (var debugInfo = [], i = 0; i < value._debugInfo.length; i++) {\n var info = value._debugInfo[i];\n if (\"number\" === typeof info.time && info.time > response) break;\n debugInfo.push(info);\n }\n value._debugInfo = debugInfo;\n }\n }\n function moveDebugInfoFromChunkToInnerValue(chunk, value) {\n value = resolveLazy(value);\n \"object\" !== typeof value ||\n null === value ||\n (!isArrayImpl(value) &&\n \"function\" !== typeof value[ASYNC_ITERATOR] &&\n value.$$typeof !== REACT_ELEMENT_TYPE &&\n value.$$typeof !== REACT_LAZY_TYPE) ||\n ((chunk = chunk._debugInfo.splice(0)),\n isArrayImpl(value._debugInfo)\n ? value._debugInfo.unshift.apply(value._debugInfo, chunk)\n : Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: chunk\n }));\n }\n function wakeChunk(response, listeners, value, chunk) {\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n \"function\" === typeof listener\n ? listener(value)\n : fulfillReference(response, listener, value, chunk);\n }\n filterDebugInfo(response, chunk);\n moveDebugInfoFromChunkToInnerValue(chunk, value);\n }\n function rejectChunk(response, listeners, error) {\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n \"function\" === typeof listener\n ? listener(error)\n : rejectReference(response, listener.handler, error);\n }\n }\n function resolveBlockedCycle(resolvedChunk, reference) {\n var referencedChunk = reference.handler.chunk;\n if (null === referencedChunk) return null;\n if (referencedChunk === resolvedChunk) return reference.handler;\n reference = referencedChunk.value;\n if (null !== reference)\n for (\n referencedChunk = 0;\n referencedChunk < reference.length;\n referencedChunk++\n ) {\n var listener = reference[referencedChunk];\n if (\n \"function\" !== typeof listener &&\n ((listener = resolveBlockedCycle(resolvedChunk, listener)),\n null !== listener)\n )\n return listener;\n }\n return null;\n }\n function wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ) {\n switch (chunk.status) {\n case \"fulfilled\":\n wakeChunk(response, resolveListeners, chunk.value, chunk);\n break;\n case \"blocked\":\n for (var i = 0; i < resolveListeners.length; i++) {\n var listener = resolveListeners[i];\n if (\"function\" !== typeof listener) {\n var cyclicHandler = resolveBlockedCycle(chunk, listener);\n if (null !== cyclicHandler)\n switch (\n (fulfillReference(\n response,\n listener,\n cyclicHandler.value,\n chunk\n ),\n resolveListeners.splice(i, 1),\n i--,\n null !== rejectListeners &&\n ((listener = rejectListeners.indexOf(listener)),\n -1 !== listener && rejectListeners.splice(listener, 1)),\n chunk.status)\n ) {\n case \"fulfilled\":\n wakeChunk(response, resolveListeners, chunk.value, chunk);\n return;\n case \"rejected\":\n null !== rejectListeners &&\n rejectChunk(response, rejectListeners, chunk.reason);\n return;\n }\n }\n }\n case \"pending\":\n if (chunk.value)\n for (response = 0; response < resolveListeners.length; response++)\n chunk.value.push(resolveListeners[response]);\n else chunk.value = resolveListeners;\n if (chunk.reason) {\n if (rejectListeners)\n for (\n resolveListeners = 0;\n resolveListeners < rejectListeners.length;\n resolveListeners++\n )\n chunk.reason.push(rejectListeners[resolveListeners]);\n } else chunk.reason = rejectListeners;\n break;\n case \"rejected\":\n rejectListeners &&\n rejectChunk(response, rejectListeners, chunk.reason);\n }\n }\n function triggerErrorOnChunk(response, chunk, error) {\n if (\"pending\" !== chunk.status && \"blocked\" !== chunk.status)\n chunk.reason.error(error);\n else {\n releasePendingChunk(response, chunk);\n var listeners = chunk.reason;\n if (\"pending\" === chunk.status && null != chunk._debugChunk) {\n var prevHandler = initializingHandler,\n prevChunk = initializingChunk;\n initializingHandler = null;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n try {\n initializeDebugChunk(response, chunk);\n } finally {\n (initializingHandler = prevHandler),\n (initializingChunk = prevChunk);\n }\n }\n chunk.status = \"rejected\";\n chunk.reason = error;\n null !== listeners && rejectChunk(response, listeners, error);\n }\n }\n function createResolvedModelChunk(response, value) {\n return new ReactPromise(\"resolved_model\", value, response);\n }\n function createResolvedIteratorResultChunk(response, value, done) {\n return new ReactPromise(\n \"resolved_model\",\n (done ? '{\"done\":true,\"value\":' : '{\"done\":false,\"value\":') +\n value +\n \"}\",\n response\n );\n }\n function resolveIteratorResultChunk(response, chunk, value, done) {\n resolveModelChunk(\n response,\n chunk,\n (done ? '{\"done\":true,\"value\":' : '{\"done\":false,\"value\":') +\n value +\n \"}\"\n );\n }\n function resolveModelChunk(response, chunk, value) {\n if (\"pending\" !== chunk.status) chunk.reason.enqueueModel(value);\n else {\n releasePendingChunk(response, chunk);\n var resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"resolved_model\";\n chunk.value = value;\n chunk.reason = response;\n null !== resolveListeners &&\n (initializeModelChunk(chunk),\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ));\n }\n }\n function resolveModuleChunk(response, chunk, value) {\n if (\"pending\" === chunk.status || \"blocked\" === chunk.status) {\n releasePendingChunk(response, chunk);\n var resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"resolved_module\";\n chunk.value = value;\n chunk.reason = null;\n value = value[1];\n for (var debugInfo = [], i = 0; i < value.length; ) {\n var chunkFilename = value[i++],\n href = void 0,\n target = debugInfo,\n ioInfo = chunkIOInfoCache.get(chunkFilename);\n if (void 0 === ioInfo) {\n try {\n href = new URL(chunkFilename, document.baseURI).href;\n } catch (_) {\n href = chunkFilename;\n }\n var end = (ioInfo = -1),\n byteSize = 0;\n if (\"function\" === typeof performance.getEntriesByType)\n for (\n var resourceEntries = performance.getEntriesByType(\"resource\"),\n i$jscomp$0 = 0;\n i$jscomp$0 < resourceEntries.length;\n i$jscomp$0++\n ) {\n var resourceEntry = resourceEntries[i$jscomp$0];\n resourceEntry.name === href &&\n ((ioInfo = resourceEntry.startTime),\n (end = ioInfo + resourceEntry.duration),\n (byteSize = resourceEntry.transferSize || 0));\n }\n resourceEntries = Promise.resolve(href);\n resourceEntries.status = \"fulfilled\";\n resourceEntries.value = href;\n i$jscomp$0 = Error(\"react-stack-top-frame\");\n i$jscomp$0.stack.startsWith(\"Error: react-stack-top-frame\")\n ? (i$jscomp$0.stack =\n \"Error: react-stack-top-frame\\n at Client Component Bundle (\" +\n href +\n \":1:1)\\n at Client Component Bundle (\" +\n href +\n \":1:1)\")\n : (i$jscomp$0.stack =\n \"Client Component Bundle@\" +\n href +\n \":1:1\\nClient Component Bundle@\" +\n href +\n \":1:1\");\n ioInfo = {\n name: \"script\",\n start: ioInfo,\n end: end,\n value: resourceEntries,\n debugStack: i$jscomp$0\n };\n 0 < byteSize && (ioInfo.byteSize = byteSize);\n chunkIOInfoCache.set(chunkFilename, ioInfo);\n }\n target.push({ awaited: ioInfo });\n }\n null !== debugInfo &&\n chunk._debugInfo.push.apply(chunk._debugInfo, debugInfo);\n null !== resolveListeners &&\n (initializeModuleChunk(chunk),\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n ));\n }\n }\n function initializeDebugChunk(response, chunk) {\n var debugChunk = chunk._debugChunk;\n if (null !== debugChunk) {\n var debugInfo = chunk._debugInfo;\n try {\n if (\"resolved_model\" === debugChunk.status) {\n for (\n var idx = debugInfo.length, c = debugChunk._debugChunk;\n null !== c;\n\n )\n \"fulfilled\" !== c.status && idx++, (c = c._debugChunk);\n initializeModelChunk(debugChunk);\n switch (debugChunk.status) {\n case \"fulfilled\":\n debugInfo[idx] = initializeDebugInfo(\n response,\n debugChunk.value\n );\n break;\n case \"blocked\":\n case \"pending\":\n waitForReference(\n debugChunk,\n debugInfo,\n \"\" + idx,\n response,\n initializeDebugInfo,\n [\"\"],\n !0\n );\n break;\n default:\n throw debugChunk.reason;\n }\n } else\n switch (debugChunk.status) {\n case \"fulfilled\":\n break;\n case \"blocked\":\n case \"pending\":\n waitForReference(\n debugChunk,\n {},\n \"debug\",\n response,\n initializeDebugInfo,\n [\"\"],\n !0\n );\n break;\n default:\n throw debugChunk.reason;\n }\n } catch (error) {\n triggerErrorOnChunk(response, chunk, error);\n }\n }\n }\n function initializeModelChunk(chunk) {\n var prevHandler = initializingHandler,\n prevChunk = initializingChunk;\n initializingHandler = null;\n var resolvedModel = chunk.value,\n response = chunk.reason;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n initializeDebugChunk(response, chunk);\n try {\n var value = JSON.parse(resolvedModel, response._fromJSON),\n resolveListeners = chunk.value;\n if (null !== resolveListeners)\n for (\n chunk.value = null, chunk.reason = null, resolvedModel = 0;\n resolvedModel < resolveListeners.length;\n resolvedModel++\n ) {\n var listener = resolveListeners[resolvedModel];\n \"function\" === typeof listener\n ? listener(value)\n : fulfillReference(response, listener, value, chunk);\n }\n if (null !== initializingHandler) {\n if (initializingHandler.errored) throw initializingHandler.reason;\n if (0 < initializingHandler.deps) {\n initializingHandler.value = value;\n initializingHandler.chunk = chunk;\n return;\n }\n }\n chunk.status = \"fulfilled\";\n chunk.value = value;\n filterDebugInfo(response, chunk);\n moveDebugInfoFromChunkToInnerValue(chunk, value);\n } catch (error) {\n (chunk.status = \"rejected\"), (chunk.reason = error);\n } finally {\n (initializingHandler = prevHandler), (initializingChunk = prevChunk);\n }\n }\n function initializeModuleChunk(chunk) {\n try {\n var value = requireModule(chunk.value);\n chunk.status = \"fulfilled\";\n chunk.value = value;\n } catch (error) {\n (chunk.status = \"rejected\"), (chunk.reason = error);\n }\n }\n function reportGlobalError(weakResponse, error) {\n if (void 0 !== weakResponse.weak.deref()) {\n var response = unwrapWeakResponse(weakResponse);\n response._closed = !0;\n response._closedReason = error;\n response._chunks.forEach(function (chunk) {\n \"pending\" === chunk.status\n ? triggerErrorOnChunk(response, chunk, error)\n : \"fulfilled\" === chunk.status &&\n null !== chunk.reason &&\n chunk.reason.error(error);\n });\n weakResponse = response._debugChannel;\n void 0 !== weakResponse &&\n (closeDebugChannel(weakResponse),\n (response._debugChannel = void 0),\n null !== debugChannelRegistry &&\n debugChannelRegistry.unregister(response));\n }\n }\n function nullRefGetter() {\n return null;\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\"function\" === typeof type) return '\"use client\"';\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return type._init === readChunk ? '\"use client\"' : \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function initializeElement(response, element, lazyNode) {\n var stack = element._debugStack,\n owner = element._owner;\n null === owner && (element._owner = response._debugRootOwner);\n var env = response._rootEnvironmentName;\n null !== owner && null != owner.env && (env = owner.env);\n var normalizedStackTrace = null;\n null === owner && null != response._debugRootStack\n ? (normalizedStackTrace = response._debugRootStack)\n : null !== stack &&\n (normalizedStackTrace = createFakeJSXCallStackInDEV(\n response,\n stack,\n env\n ));\n element._debugStack = normalizedStackTrace;\n normalizedStackTrace = null;\n supportsCreateTask &&\n null !== stack &&\n ((normalizedStackTrace = console.createTask.bind(\n console,\n getTaskName(element.type)\n )),\n (stack = buildFakeCallStack(\n response,\n stack,\n env,\n !1,\n normalizedStackTrace\n )),\n (env = null === owner ? null : initializeFakeTask(response, owner)),\n null === env\n ? ((env = response._debugRootTask),\n (normalizedStackTrace = null != env ? env.run(stack) : stack()))\n : (normalizedStackTrace = env.run(stack)));\n element._debugTask = normalizedStackTrace;\n null !== owner && initializeFakeStack(response, owner);\n null !== lazyNode &&\n (lazyNode._store &&\n lazyNode._store.validated &&\n !element._store.validated &&\n (element._store.validated = lazyNode._store.validated),\n \"fulfilled\" === lazyNode._payload.status &&\n lazyNode._debugInfo &&\n ((response = lazyNode._debugInfo.splice(0)),\n element._debugInfo\n ? element._debugInfo.unshift.apply(element._debugInfo, response)\n : Object.defineProperty(element, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: response\n })));\n Object.freeze(element.props);\n }\n function createLazyChunkWrapper(chunk, validated) {\n var lazyType = {\n $$typeof: REACT_LAZY_TYPE,\n _payload: chunk,\n _init: readChunk\n };\n lazyType._debugInfo = chunk._debugInfo;\n lazyType._store = { validated: validated };\n return lazyType;\n }\n function getChunk(response, id) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk ||\n ((chunk = response._closed\n ? new ReactPromise(\"rejected\", null, response._closedReason)\n : createPendingChunk(response)),\n chunks.set(id, chunk));\n return chunk;\n }\n function fulfillReference(response, reference, value, fulfilledChunk) {\n var handler = reference.handler,\n parentObject = reference.parentObject,\n key = reference.key,\n map = reference.map,\n path = reference.path;\n try {\n for (var i = 1; i < path.length; i++) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var referencedChunk = value._payload;\n if (referencedChunk === handler.chunk) value = handler.value;\n else {\n switch (referencedChunk.status) {\n case \"resolved_model\":\n initializeModelChunk(referencedChunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(referencedChunk);\n }\n switch (referencedChunk.status) {\n case \"fulfilled\":\n value = referencedChunk.value;\n continue;\n case \"blocked\":\n var cyclicHandler = resolveBlockedCycle(\n referencedChunk,\n reference\n );\n if (null !== cyclicHandler) {\n value = cyclicHandler.value;\n continue;\n }\n case \"pending\":\n path.splice(0, i - 1);\n null === referencedChunk.value\n ? (referencedChunk.value = [reference])\n : referencedChunk.value.push(reference);\n null === referencedChunk.reason\n ? (referencedChunk.reason = [reference])\n : referencedChunk.reason.push(reference);\n return;\n case \"halted\":\n return;\n default:\n rejectReference(\n response,\n reference.handler,\n referencedChunk.reason\n );\n return;\n }\n }\n }\n var name = path[i];\n if (\n \"object\" === typeof value &&\n null !== value &&\n hasOwnProperty.call(value, name)\n )\n value = value[name];\n else throw Error(\"Invalid reference.\");\n }\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var _referencedChunk = value._payload;\n if (_referencedChunk === handler.chunk) value = handler.value;\n else {\n switch (_referencedChunk.status) {\n case \"resolved_model\":\n initializeModelChunk(_referencedChunk);\n break;\n case \"resolved_module\":\n initializeModuleChunk(_referencedChunk);\n }\n switch (_referencedChunk.status) {\n case \"fulfilled\":\n value = _referencedChunk.value;\n continue;\n }\n break;\n }\n }\n var mappedValue = map(response, value, parentObject, key);\n \"__proto__\" !== key && (parentObject[key] = mappedValue);\n \"\" === key && null === handler.value && (handler.value = mappedValue);\n if (\n parentObject[0] === REACT_ELEMENT_TYPE &&\n \"object\" === typeof handler.value &&\n null !== handler.value &&\n handler.value.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var element = handler.value;\n switch (key) {\n case \"3\":\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n element.props = mappedValue;\n break;\n case \"4\":\n element._owner = mappedValue;\n break;\n case \"5\":\n element._debugStack = mappedValue;\n break;\n default:\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n }\n } else\n reference.isDebug ||\n transferReferencedDebugInfo(handler.chunk, fulfilledChunk);\n } catch (error) {\n rejectReference(response, reference.handler, error);\n return;\n }\n handler.deps--;\n 0 === handler.deps &&\n ((reference = handler.chunk),\n null !== reference &&\n \"blocked\" === reference.status &&\n ((value = reference.value),\n (reference.status = \"fulfilled\"),\n (reference.value = handler.value),\n (reference.reason = handler.reason),\n null !== value\n ? wakeChunk(response, value, handler.value, reference)\n : ((handler = handler.value),\n filterDebugInfo(response, reference),\n moveDebugInfoFromChunkToInnerValue(reference, handler))));\n }\n function rejectReference(response, handler, error) {\n if (!handler.errored) {\n var blockedValue = handler.value;\n handler.errored = !0;\n handler.value = null;\n handler.reason = error;\n handler = handler.chunk;\n if (null !== handler && \"blocked\" === handler.status) {\n if (\n \"object\" === typeof blockedValue &&\n null !== blockedValue &&\n blockedValue.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var erroredComponent = {\n name: getComponentNameFromType(blockedValue.type) || \"\",\n owner: blockedValue._owner\n };\n erroredComponent.debugStack = blockedValue._debugStack;\n supportsCreateTask &&\n (erroredComponent.debugTask = blockedValue._debugTask);\n handler._debugInfo.push(erroredComponent);\n }\n triggerErrorOnChunk(response, handler, error);\n }\n }\n }\n function waitForReference(\n referencedChunk,\n parentObject,\n key,\n response,\n map,\n path,\n isAwaitingDebugInfo\n ) {\n if (\n !(\n (void 0 !== response._debugChannel &&\n response._debugChannel.hasReadable) ||\n \"pending\" !== referencedChunk.status ||\n parentObject[0] !== REACT_ELEMENT_TYPE ||\n (\"4\" !== key && \"5\" !== key)\n )\n )\n return null;\n initializingHandler\n ? ((response = initializingHandler), response.deps++)\n : (response = initializingHandler =\n {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n });\n parentObject = {\n handler: response,\n parentObject: parentObject,\n key: key,\n map: map,\n path: path\n };\n parentObject.isDebug = isAwaitingDebugInfo;\n null === referencedChunk.value\n ? (referencedChunk.value = [parentObject])\n : referencedChunk.value.push(parentObject);\n null === referencedChunk.reason\n ? (referencedChunk.reason = [parentObject])\n : referencedChunk.reason.push(parentObject);\n return null;\n }\n function loadServerReference(response, metaData, parentObject, key) {\n if (!response._serverReferenceConfig)\n return createBoundServerReference(\n metaData,\n response._callServer,\n response._encodeFormAction,\n response._debugFindSourceMapURL\n );\n var serverReference = resolveServerReference(\n response._serverReferenceConfig,\n metaData.id\n ),\n promise = preloadModule(serverReference);\n if (promise)\n metaData.bound && (promise = Promise.all([promise, metaData.bound]));\n else if (metaData.bound) promise = Promise.resolve(metaData.bound);\n else\n return (\n (promise = requireModule(serverReference)),\n registerBoundServerReference(promise, metaData.id, metaData.bound),\n promise\n );\n if (initializingHandler) {\n var handler = initializingHandler;\n handler.deps++;\n } else\n handler = initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n };\n promise.then(\n function () {\n var resolvedValue = requireModule(serverReference);\n if (metaData.bound) {\n var boundArgs = metaData.bound.value.slice(0);\n boundArgs.unshift(null);\n resolvedValue = resolvedValue.bind.apply(resolvedValue, boundArgs);\n }\n registerBoundServerReference(\n resolvedValue,\n metaData.id,\n metaData.bound\n );\n \"__proto__\" !== key && (parentObject[key] = resolvedValue);\n \"\" === key &&\n null === handler.value &&\n (handler.value = resolvedValue);\n if (\n parentObject[0] === REACT_ELEMENT_TYPE &&\n \"object\" === typeof handler.value &&\n null !== handler.value &&\n handler.value.$$typeof === REACT_ELEMENT_TYPE\n )\n switch (((boundArgs = handler.value), key)) {\n case \"3\":\n boundArgs.props = resolvedValue;\n break;\n case \"4\":\n boundArgs._owner = resolvedValue;\n }\n handler.deps--;\n 0 === handler.deps &&\n ((resolvedValue = handler.chunk),\n null !== resolvedValue &&\n \"blocked\" === resolvedValue.status &&\n ((boundArgs = resolvedValue.value),\n (resolvedValue.status = \"fulfilled\"),\n (resolvedValue.value = handler.value),\n (resolvedValue.reason = null),\n null !== boundArgs\n ? wakeChunk(response, boundArgs, handler.value, resolvedValue)\n : ((boundArgs = handler.value),\n filterDebugInfo(response, resolvedValue),\n moveDebugInfoFromChunkToInnerValue(\n resolvedValue,\n boundArgs\n ))));\n },\n function (error) {\n if (!handler.errored) {\n var blockedValue = handler.value;\n handler.errored = !0;\n handler.value = null;\n handler.reason = error;\n var chunk = handler.chunk;\n if (null !== chunk && \"blocked\" === chunk.status) {\n if (\n \"object\" === typeof blockedValue &&\n null !== blockedValue &&\n blockedValue.$$typeof === REACT_ELEMENT_TYPE\n ) {\n var erroredComponent = {\n name: getComponentNameFromType(blockedValue.type) || \"\",\n owner: blockedValue._owner\n };\n erroredComponent.debugStack = blockedValue._debugStack;\n supportsCreateTask &&\n (erroredComponent.debugTask = blockedValue._debugTask);\n chunk._debugInfo.push(erroredComponent);\n }\n triggerErrorOnChunk(response, chunk, error);\n }\n }\n }\n );\n return null;\n }\n function resolveLazy(value) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n var payload = value._payload;\n if (\"fulfilled\" === payload.status) value = payload.value;\n else break;\n }\n return value;\n }\n function transferReferencedDebugInfo(parentChunk, referencedChunk) {\n if (null !== parentChunk) {\n referencedChunk = referencedChunk._debugInfo;\n parentChunk = parentChunk._debugInfo;\n for (var i = 0; i < referencedChunk.length; ++i) {\n var debugInfoEntry = referencedChunk[i];\n null == debugInfoEntry.name && parentChunk.push(debugInfoEntry);\n }\n }\n }\n function getOutlinedModel(response, reference, parentObject, key, map) {\n var path = reference.split(\":\");\n reference = parseInt(path[0], 16);\n reference = getChunk(response, reference);\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(reference);\n switch (reference.status) {\n case \"resolved_model\":\n initializeModelChunk(reference);\n break;\n case \"resolved_module\":\n initializeModuleChunk(reference);\n }\n switch (reference.status) {\n case \"fulfilled\":\n for (var value = reference.value, i = 1; i < path.length; i++) {\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n value = value._payload;\n switch (value.status) {\n case \"resolved_model\":\n initializeModelChunk(value);\n break;\n case \"resolved_module\":\n initializeModuleChunk(value);\n }\n switch (value.status) {\n case \"fulfilled\":\n value = value.value;\n break;\n case \"blocked\":\n case \"pending\":\n return waitForReference(\n value,\n parentObject,\n key,\n response,\n map,\n path.slice(i - 1),\n !1\n );\n case \"halted\":\n return (\n initializingHandler\n ? ((parentObject = initializingHandler),\n parentObject.deps++)\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n }),\n null\n );\n default:\n return (\n initializingHandler\n ? ((initializingHandler.errored = !0),\n (initializingHandler.value = null),\n (initializingHandler.reason = value.reason))\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: value.reason,\n deps: 0,\n errored: !0\n }),\n null\n );\n }\n }\n value = value[path[i]];\n }\n for (\n ;\n \"object\" === typeof value &&\n null !== value &&\n value.$$typeof === REACT_LAZY_TYPE;\n\n ) {\n path = value._payload;\n switch (path.status) {\n case \"resolved_model\":\n initializeModelChunk(path);\n break;\n case \"resolved_module\":\n initializeModuleChunk(path);\n }\n switch (path.status) {\n case \"fulfilled\":\n value = path.value;\n continue;\n }\n break;\n }\n response = map(response, value, parentObject, key);\n (parentObject[0] !== REACT_ELEMENT_TYPE ||\n (\"4\" !== key && \"5\" !== key)) &&\n transferReferencedDebugInfo(initializingChunk, reference);\n return response;\n case \"pending\":\n case \"blocked\":\n return waitForReference(\n reference,\n parentObject,\n key,\n response,\n map,\n path,\n !1\n );\n case \"halted\":\n return (\n initializingHandler\n ? ((parentObject = initializingHandler), parentObject.deps++)\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: null,\n deps: 1,\n errored: !1\n }),\n null\n );\n default:\n return (\n initializingHandler\n ? ((initializingHandler.errored = !0),\n (initializingHandler.value = null),\n (initializingHandler.reason = reference.reason))\n : (initializingHandler = {\n parent: null,\n chunk: null,\n value: null,\n reason: reference.reason,\n deps: 0,\n errored: !0\n }),\n null\n );\n }\n }\n function createMap(response, model) {\n return new Map(model);\n }\n function createSet(response, model) {\n return new Set(model);\n }\n function createBlob(response, model) {\n return new Blob(model.slice(1), { type: model[0] });\n }\n function createFormData(response, model) {\n response = new FormData();\n for (var i = 0; i < model.length; i++)\n response.append(model[i][0], model[i][1]);\n return response;\n }\n function applyConstructor(response, model, parentObject) {\n Object.setPrototypeOf(parentObject, model.prototype);\n }\n function defineLazyGetter(response, chunk, parentObject, key) {\n \"__proto__\" !== key &&\n Object.defineProperty(parentObject, key, {\n get: function () {\n \"resolved_model\" === chunk.status && initializeModelChunk(chunk);\n switch (chunk.status) {\n case \"fulfilled\":\n return chunk.value;\n case \"rejected\":\n throw chunk.reason;\n }\n return \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\";\n },\n enumerable: !0,\n configurable: !1\n });\n return null;\n }\n function extractIterator(response, model) {\n return model[Symbol.iterator]();\n }\n function createModel(response, model) {\n return model;\n }\n function getInferredFunctionApproximate(code) {\n code = code.startsWith(\"Object.defineProperty(\")\n ? code.slice(22)\n : code.startsWith(\"(\")\n ? code.slice(1)\n : code;\n if (code.startsWith(\"async function\")) {\n var idx = code.indexOf(\"(\", 14);\n if (-1 !== idx)\n return (\n (code = code.slice(14, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":async function(){}})\")[\n code\n ]\n );\n } else if (code.startsWith(\"function\")) {\n if (((idx = code.indexOf(\"(\", 8)), -1 !== idx))\n return (\n (code = code.slice(8, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":function(){}})\")[code]\n );\n } else if (\n code.startsWith(\"class\") &&\n ((idx = code.indexOf(\"{\", 5)), -1 !== idx)\n )\n return (\n (code = code.slice(5, idx).trim()),\n (0, eval)(\"({\" + JSON.stringify(code) + \":class{}})\")[code]\n );\n return function () {};\n }\n function parseModelString(response, parentObject, key, value) {\n if (\"$\" === value[0]) {\n if (\"$\" === value)\n return (\n null !== initializingHandler &&\n \"0\" === key &&\n (initializingHandler = {\n parent: initializingHandler,\n chunk: null,\n value: null,\n reason: null,\n deps: 0,\n errored: !1\n }),\n REACT_ELEMENT_TYPE\n );\n switch (value[1]) {\n case \"$\":\n return value.slice(1);\n case \"L\":\n return (\n (parentObject = parseInt(value.slice(2), 16)),\n (response = getChunk(response, parentObject)),\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(response),\n createLazyChunkWrapper(response, 0)\n );\n case \"@\":\n return (\n (parentObject = parseInt(value.slice(2), 16)),\n (response = getChunk(response, parentObject)),\n null !== initializingChunk &&\n isArrayImpl(initializingChunk._children) &&\n initializingChunk._children.push(response),\n response\n );\n case \"S\":\n return Symbol.for(value.slice(2));\n case \"h\":\n var ref = value.slice(2);\n return getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n loadServerReference\n );\n case \"T\":\n parentObject = \"$\" + value.slice(2);\n response = response._tempRefs;\n if (null == response)\n throw Error(\n \"Missing a temporary reference set but the RSC response returned a temporary reference. Pass a temporaryReference option with the set that was used with the reply.\"\n );\n return response.get(parentObject);\n case \"Q\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createMap)\n );\n case \"W\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createSet)\n );\n case \"B\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createBlob)\n );\n case \"K\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(response, ref, parentObject, key, createFormData)\n );\n case \"Z\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n resolveErrorDev\n )\n );\n case \"i\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n extractIterator\n )\n );\n case \"I\":\n return Infinity;\n case \"-\":\n return \"$-0\" === value ? -0 : -Infinity;\n case \"N\":\n return NaN;\n case \"u\":\n return;\n case \"D\":\n return new Date(Date.parse(value.slice(2)));\n case \"n\":\n return BigInt(value.slice(2));\n case \"P\":\n return (\n (ref = value.slice(2)),\n getOutlinedModel(\n response,\n ref,\n parentObject,\n key,\n applyConstructor\n )\n );\n case \"E\":\n response = value.slice(2);\n try {\n if (!mightHaveStaticConstructor.test(response))\n return (0, eval)(response);\n } catch (x) {}\n try {\n if (\n ((ref = getInferredFunctionApproximate(response)),\n response.startsWith(\"Object.defineProperty(\"))\n ) {\n var idx = response.lastIndexOf(',\"name\",{value:\"');\n if (-1 !== idx) {\n var name = JSON.parse(\n response.slice(idx + 16 - 1, response.length - 2)\n );\n Object.defineProperty(ref, \"name\", { value: name });\n }\n }\n } catch (_) {\n ref = function () {};\n }\n return ref;\n case \"Y\":\n if (\n 2 < value.length &&\n (ref = response._debugChannel && response._debugChannel.callback)\n ) {\n if (\"@\" === value[2])\n return (\n (parentObject = value.slice(3)),\n (key = parseInt(parentObject, 16)),\n response._chunks.has(key) || ref(\"P:\" + parentObject),\n getChunk(response, key)\n );\n value = value.slice(2);\n idx = parseInt(value, 16);\n response._chunks.has(idx) || ref(\"Q:\" + value);\n ref = getChunk(response, idx);\n return \"fulfilled\" === ref.status\n ? ref.value\n : defineLazyGetter(response, ref, parentObject, key);\n }\n \"__proto__\" !== key &&\n Object.defineProperty(parentObject, key, {\n get: function () {\n return \"This object has been omitted by React in the console log to avoid sending too much data from the server. Try logging smaller or more specific objects.\";\n },\n enumerable: !0,\n configurable: !1\n });\n return null;\n default:\n return (\n (ref = value.slice(1)),\n getOutlinedModel(response, ref, parentObject, key, createModel)\n );\n }\n }\n return value;\n }\n function missingCall() {\n throw Error(\n 'Trying to call a function from \"use server\" but the callServer option was not implemented in your router runtime.'\n );\n }\n function markIOStarted() {\n this._debugIOStarted = !0;\n }\n function ResponseInstance(\n bundlerConfig,\n serverReferenceConfig,\n moduleLoading,\n callServer,\n encodeFormAction,\n nonce,\n temporaryReferences,\n findSourceMapURL,\n replayConsole,\n environmentName,\n debugStartTime,\n debugEndTime,\n debugChannel\n ) {\n var chunks = new Map();\n this._bundlerConfig = bundlerConfig;\n this._serverReferenceConfig = serverReferenceConfig;\n this._moduleLoading = moduleLoading;\n this._callServer = void 0 !== callServer ? callServer : missingCall;\n this._encodeFormAction = encodeFormAction;\n this._nonce = nonce;\n this._chunks = chunks;\n this._stringDecoder = new TextDecoder();\n this._fromJSON = null;\n this._closed = !1;\n this._closedReason = null;\n this._tempRefs = temporaryReferences;\n this._timeOrigin = 0;\n this._pendingInitialRender = null;\n this._pendingChunks = 0;\n this._weakResponse = { weak: new WeakRef(this), response: this };\n this._debugRootOwner = bundlerConfig =\n void 0 === ReactSharedInteralsServer ||\n null === ReactSharedInteralsServer.A\n ? null\n : ReactSharedInteralsServer.A.getOwner();\n this._debugRootStack =\n null !== bundlerConfig ? Error(\"react-stack-top-frame\") : null;\n environmentName = void 0 === environmentName ? \"Server\" : environmentName;\n supportsCreateTask &&\n (this._debugRootTask = console.createTask(\n '\"use ' + environmentName.toLowerCase() + '\"'\n ));\n this._debugStartTime =\n null == debugStartTime ? performance.now() : debugStartTime;\n this._debugIOStarted = !1;\n setTimeout(markIOStarted.bind(this), 0);\n this._debugEndTime = null == debugEndTime ? null : debugEndTime;\n this._debugFindSourceMapURL = findSourceMapURL;\n this._debugChannel = debugChannel;\n this._blockedConsole = null;\n this._replayConsole = replayConsole;\n this._rootEnvironmentName = environmentName;\n debugChannel &&\n (null === debugChannelRegistry\n ? (closeDebugChannel(debugChannel), (this._debugChannel = void 0))\n : debugChannelRegistry.register(this, debugChannel, this));\n replayConsole && markAllTracksInOrder();\n this._fromJSON = createFromJSONCallback(this);\n }\n function createStreamState(weakResponse, streamDebugValue) {\n var streamState = {\n _rowState: 0,\n _rowID: 0,\n _rowTag: 0,\n _rowLength: 0,\n _buffer: []\n };\n weakResponse = unwrapWeakResponse(weakResponse);\n var debugValuePromise = Promise.resolve(streamDebugValue);\n debugValuePromise.status = \"fulfilled\";\n debugValuePromise.value = streamDebugValue;\n streamState._debugInfo = {\n name: \"rsc stream\",\n start: weakResponse._debugStartTime,\n end: weakResponse._debugStartTime,\n byteSize: 0,\n value: debugValuePromise,\n owner: weakResponse._debugRootOwner,\n debugStack: weakResponse._debugRootStack,\n debugTask: weakResponse._debugRootTask\n };\n streamState._debugTargetChunkSize = MIN_CHUNK_SIZE;\n return streamState;\n }\n function incrementChunkDebugInfo(streamState, chunkLength) {\n var debugInfo = streamState._debugInfo,\n endTime = performance.now(),\n previousEndTime = debugInfo.end;\n chunkLength = debugInfo.byteSize + chunkLength;\n chunkLength > streamState._debugTargetChunkSize ||\n endTime > previousEndTime + 10\n ? ((streamState._debugInfo = {\n name: debugInfo.name,\n start: debugInfo.start,\n end: endTime,\n byteSize: chunkLength,\n value: debugInfo.value,\n owner: debugInfo.owner,\n debugStack: debugInfo.debugStack,\n debugTask: debugInfo.debugTask\n }),\n (streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE))\n : ((debugInfo.end = endTime), (debugInfo.byteSize = chunkLength));\n }\n function addAsyncInfo(chunk, asyncInfo) {\n var value = resolveLazy(chunk.value);\n \"object\" !== typeof value ||\n null === value ||\n (!isArrayImpl(value) &&\n \"function\" !== typeof value[ASYNC_ITERATOR] &&\n value.$$typeof !== REACT_ELEMENT_TYPE &&\n value.$$typeof !== REACT_LAZY_TYPE)\n ? chunk._debugInfo.push(asyncInfo)\n : isArrayImpl(value._debugInfo)\n ? value._debugInfo.push(asyncInfo)\n : Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: [asyncInfo]\n });\n }\n function resolveChunkDebugInfo(response, streamState, chunk) {\n response._debugIOStarted &&\n ((response = { awaited: streamState._debugInfo }),\n \"pending\" === chunk.status || \"blocked\" === chunk.status\n ? ((response = addAsyncInfo.bind(null, chunk, response)),\n chunk.then(response, response))\n : addAsyncInfo(chunk, response));\n }\n function resolveBuffer(response, id, buffer, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk && \"pending\" !== chunk.status\n ? chunk.reason.enqueueValue(buffer)\n : (chunk && releasePendingChunk(response, chunk),\n (buffer = new ReactPromise(\"fulfilled\", buffer, null)),\n resolveChunkDebugInfo(response, streamState, buffer),\n chunks.set(id, buffer));\n }\n function resolveModule(response, id, model, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n model = JSON.parse(model, response._fromJSON);\n var clientReference = resolveClientReference(\n response._bundlerConfig,\n model\n );\n if ((model = preloadModule(clientReference))) {\n if (chunk) {\n releasePendingChunk(response, chunk);\n var blockedChunk = chunk;\n blockedChunk.status = \"blocked\";\n } else\n (blockedChunk = new ReactPromise(\"blocked\", null, null)),\n chunks.set(id, blockedChunk);\n resolveChunkDebugInfo(response, streamState, blockedChunk);\n model.then(\n function () {\n return resolveModuleChunk(response, blockedChunk, clientReference);\n },\n function (error) {\n return triggerErrorOnChunk(response, blockedChunk, error);\n }\n );\n } else\n chunk\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n resolveModuleChunk(response, chunk, clientReference))\n : ((chunk = new ReactPromise(\n \"resolved_module\",\n clientReference,\n null\n )),\n resolveChunkDebugInfo(response, streamState, chunk),\n chunks.set(id, chunk));\n }\n function resolveStream(response, id, stream, controller, streamState) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n if (chunk) {\n if (\n (resolveChunkDebugInfo(response, streamState, chunk),\n \"pending\" === chunk.status)\n ) {\n id = chunk.value;\n if (null != chunk._debugChunk) {\n streamState = initializingHandler;\n chunks = initializingChunk;\n initializingHandler = null;\n chunk.status = \"blocked\";\n chunk.value = null;\n chunk.reason = null;\n initializingChunk = chunk;\n try {\n if (\n (initializeDebugChunk(response, chunk),\n null !== initializingHandler &&\n !initializingHandler.errored &&\n 0 < initializingHandler.deps)\n ) {\n initializingHandler.value = stream;\n initializingHandler.reason = controller;\n initializingHandler.chunk = chunk;\n return;\n }\n } finally {\n (initializingHandler = streamState), (initializingChunk = chunks);\n }\n }\n chunk.status = \"fulfilled\";\n chunk.value = stream;\n chunk.reason = controller;\n null !== id\n ? wakeChunk(response, id, chunk.value, chunk)\n : (filterDebugInfo(response, chunk),\n moveDebugInfoFromChunkToInnerValue(chunk, stream));\n }\n } else\n 0 === response._pendingChunks++ &&\n (response._weakResponse.response = response),\n (stream = new ReactPromise(\"fulfilled\", stream, controller)),\n resolveChunkDebugInfo(response, streamState, stream),\n chunks.set(id, stream);\n }\n function startReadableStream(response, id, type, streamState) {\n var controller = null,\n closed = !1;\n type = new ReadableStream({\n type: type,\n start: function (c) {\n controller = c;\n }\n });\n var previousBlockedChunk = null;\n resolveStream(\n response,\n id,\n type,\n {\n enqueueValue: function (value) {\n null === previousBlockedChunk\n ? controller.enqueue(value)\n : previousBlockedChunk.then(function () {\n controller.enqueue(value);\n });\n },\n enqueueModel: function (json) {\n if (null === previousBlockedChunk) {\n var chunk = createResolvedModelChunk(response, json);\n initializeModelChunk(chunk);\n \"fulfilled\" === chunk.status\n ? controller.enqueue(chunk.value)\n : (chunk.then(\n function (v) {\n return controller.enqueue(v);\n },\n function (e) {\n return controller.error(e);\n }\n ),\n (previousBlockedChunk = chunk));\n } else {\n chunk = previousBlockedChunk;\n var _chunk3 = createPendingChunk(response);\n _chunk3.then(\n function (v) {\n return controller.enqueue(v);\n },\n function (e) {\n return controller.error(e);\n }\n );\n previousBlockedChunk = _chunk3;\n chunk.then(function () {\n previousBlockedChunk === _chunk3 &&\n (previousBlockedChunk = null);\n resolveModelChunk(response, _chunk3, json);\n });\n }\n },\n close: function () {\n if (!closed)\n if (((closed = !0), null === previousBlockedChunk))\n controller.close();\n else {\n var blockedChunk = previousBlockedChunk;\n previousBlockedChunk = null;\n blockedChunk.then(function () {\n return controller.close();\n });\n }\n },\n error: function (error) {\n if (!closed)\n if (((closed = !0), null === previousBlockedChunk))\n controller.error(error);\n else {\n var blockedChunk = previousBlockedChunk;\n previousBlockedChunk = null;\n blockedChunk.then(function () {\n return controller.error(error);\n });\n }\n }\n },\n streamState\n );\n }\n function asyncIterator() {\n return this;\n }\n function createIterator(next) {\n next = { next: next };\n next[ASYNC_ITERATOR] = asyncIterator;\n return next;\n }\n function startAsyncIterable(response, id, iterator, streamState) {\n var buffer = [],\n closed = !1,\n nextWriteIndex = 0,\n iterable = {};\n iterable[ASYNC_ITERATOR] = function () {\n var nextReadIndex = 0;\n return createIterator(function (arg) {\n if (void 0 !== arg)\n throw Error(\n \"Values cannot be passed to next() of AsyncIterables passed to Client Components.\"\n );\n if (nextReadIndex === buffer.length) {\n if (closed)\n return new ReactPromise(\n \"fulfilled\",\n { done: !0, value: void 0 },\n null\n );\n buffer[nextReadIndex] = createPendingChunk(response);\n }\n return buffer[nextReadIndex++];\n });\n };\n resolveStream(\n response,\n id,\n iterator ? iterable[ASYNC_ITERATOR]() : iterable,\n {\n enqueueValue: function (value) {\n if (nextWriteIndex === buffer.length)\n buffer[nextWriteIndex] = new ReactPromise(\n \"fulfilled\",\n { done: !1, value: value },\n null\n );\n else {\n var chunk = buffer[nextWriteIndex],\n resolveListeners = chunk.value,\n rejectListeners = chunk.reason;\n chunk.status = \"fulfilled\";\n chunk.value = { done: !1, value: value };\n chunk.reason = null;\n null !== resolveListeners &&\n wakeChunkIfInitialized(\n response,\n chunk,\n resolveListeners,\n rejectListeners\n );\n }\n nextWriteIndex++;\n },\n enqueueModel: function (value) {\n nextWriteIndex === buffer.length\n ? (buffer[nextWriteIndex] = createResolvedIteratorResultChunk(\n response,\n value,\n !1\n ))\n : resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex],\n value,\n !1\n );\n nextWriteIndex++;\n },\n close: function (value) {\n if (!closed)\n for (\n closed = !0,\n nextWriteIndex === buffer.length\n ? (buffer[nextWriteIndex] =\n createResolvedIteratorResultChunk(response, value, !0))\n : resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex],\n value,\n !0\n ),\n nextWriteIndex++;\n nextWriteIndex < buffer.length;\n\n )\n resolveIteratorResultChunk(\n response,\n buffer[nextWriteIndex++],\n '\"$undefined\"',\n !0\n );\n },\n error: function (error) {\n if (!closed)\n for (\n closed = !0,\n nextWriteIndex === buffer.length &&\n (buffer[nextWriteIndex] = createPendingChunk(response));\n nextWriteIndex < buffer.length;\n\n )\n triggerErrorOnChunk(response, buffer[nextWriteIndex++], error);\n }\n },\n streamState\n );\n }\n function resolveErrorDev(response, errorInfo) {\n var name = errorInfo.name,\n env = errorInfo.env;\n var error = buildFakeCallStack(\n response,\n errorInfo.stack,\n env,\n !1,\n Error.bind(\n null,\n errorInfo.message ||\n \"An error occurred in the Server Components render but no message was provided\"\n )\n );\n var ownerTask = null;\n null != errorInfo.owner &&\n ((errorInfo = errorInfo.owner.slice(1)),\n (errorInfo = getOutlinedModel(\n response,\n errorInfo,\n {},\n \"\",\n createModel\n )),\n null !== errorInfo &&\n (ownerTask = initializeFakeTask(response, errorInfo)));\n null === ownerTask\n ? ((response = getRootTask(response, env)),\n (error = null != response ? response.run(error) : error()))\n : (error = ownerTask.run(error));\n error.name = name;\n error.environmentName = env;\n return error;\n }\n function createFakeFunction(\n name,\n filename,\n sourceMap,\n line,\n col,\n enclosingLine,\n enclosingCol,\n environmentName\n ) {\n name || (name = \"<anonymous>\");\n var encodedName = JSON.stringify(name);\n 1 > enclosingLine ? (enclosingLine = 0) : enclosingLine--;\n 1 > enclosingCol ? (enclosingCol = 0) : enclosingCol--;\n 1 > line ? (line = 0) : line--;\n 1 > col ? (col = 0) : col--;\n if (\n line < enclosingLine ||\n (line === enclosingLine && col < enclosingCol)\n )\n enclosingCol = enclosingLine = 0;\n 1 > line\n ? ((line = encodedName.length + 3),\n (enclosingCol -= line),\n 0 > enclosingCol && (enclosingCol = 0),\n (col = col - enclosingCol - line - 3),\n 0 > col && (col = 0),\n (encodedName =\n \"({\" +\n encodedName +\n \":\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \" \".repeat(col) +\n \"_()})\"))\n : 1 > enclosingLine\n ? ((enclosingCol -= encodedName.length + 3),\n 0 > enclosingCol && (enclosingCol = 0),\n (encodedName =\n \"({\" +\n encodedName +\n \":\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \"\\n\".repeat(line - enclosingLine) +\n \" \".repeat(col) +\n \"_()})\"))\n : enclosingLine === line\n ? ((col = col - enclosingCol - 3),\n 0 > col && (col = 0),\n (encodedName =\n \"\\n\".repeat(enclosingLine - 1) +\n \"({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \" \".repeat(col) +\n \"_()})\"))\n : (encodedName =\n \"\\n\".repeat(enclosingLine - 1) +\n \"({\" +\n encodedName +\n \":\\n\" +\n \" \".repeat(enclosingCol) +\n \"_=>\" +\n \"\\n\".repeat(line - enclosingLine) +\n \" \".repeat(col) +\n \"_()})\");\n encodedName =\n 1 > enclosingLine\n ? encodedName +\n \"\\n/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */\"\n : \"/* This module was rendered by a Server Component. Turn on Source Maps to see the server source. */\" +\n encodedName;\n filename.startsWith(\"/\") && (filename = \"file://\" + filename);\n sourceMap\n ? ((encodedName +=\n \"\\n//# sourceURL=about://React/\" +\n encodeURIComponent(environmentName) +\n \"/\" +\n encodeURI(filename) +\n \"?\" +\n fakeFunctionIdx++),\n (encodedName += \"\\n//# sourceMappingURL=\" + sourceMap))\n : (encodedName = filename\n ? encodedName + (\"\\n//# sourceURL=\" + encodeURI(filename))\n : encodedName + \"\\n//# sourceURL=<anonymous>\");\n try {\n var fn = (0, eval)(encodedName)[name];\n } catch (x) {\n fn = function (_) {\n return _();\n };\n }\n return fn;\n }\n function buildFakeCallStack(\n response,\n stack,\n environmentName,\n useEnclosingLine,\n innerCall\n ) {\n for (var i = 0; i < stack.length; i++) {\n var frame = stack[i],\n frameKey =\n frame.join(\"-\") +\n \"-\" +\n environmentName +\n (useEnclosingLine ? \"-e\" : \"-n\"),\n fn = fakeFunctionCache.get(frameKey);\n if (void 0 === fn) {\n fn = frame[0];\n var filename = frame[1],\n line = frame[2],\n col = frame[3],\n enclosingLine = frame[4];\n frame = frame[5];\n var findSourceMapURL = response._debugFindSourceMapURL;\n findSourceMapURL = findSourceMapURL\n ? findSourceMapURL(filename, environmentName)\n : null;\n fn = createFakeFunction(\n fn,\n filename,\n findSourceMapURL,\n line,\n col,\n useEnclosingLine ? line : enclosingLine,\n useEnclosingLine ? col : frame,\n environmentName\n );\n fakeFunctionCache.set(frameKey, fn);\n }\n innerCall = fn.bind(null, innerCall);\n }\n return innerCall;\n }\n function getRootTask(response, childEnvironmentName) {\n var rootTask = response._debugRootTask;\n return rootTask\n ? response._rootEnvironmentName !== childEnvironmentName\n ? ((response = console.createTask.bind(\n console,\n '\"use ' + childEnvironmentName.toLowerCase() + '\"'\n )),\n rootTask.run(response))\n : rootTask\n : null;\n }\n function initializeFakeTask(response, debugInfo) {\n if (!supportsCreateTask || null == debugInfo.stack) return null;\n var cachedEntry = debugInfo.debugTask;\n if (void 0 !== cachedEntry) return cachedEntry;\n var useEnclosingLine = void 0 === debugInfo.key,\n stack = debugInfo.stack,\n env =\n null == debugInfo.env ? response._rootEnvironmentName : debugInfo.env;\n cachedEntry =\n null == debugInfo.owner || null == debugInfo.owner.env\n ? response._rootEnvironmentName\n : debugInfo.owner.env;\n var ownerTask =\n null == debugInfo.owner\n ? null\n : initializeFakeTask(response, debugInfo.owner);\n env =\n env !== cachedEntry\n ? '\"use ' + env.toLowerCase() + '\"'\n : void 0 !== debugInfo.key\n ? \"<\" + (debugInfo.name || \"...\") + \">\"\n : void 0 !== debugInfo.name\n ? debugInfo.name || \"unknown\"\n : \"await \" + (debugInfo.awaited.name || \"unknown\");\n env = console.createTask.bind(console, env);\n useEnclosingLine = buildFakeCallStack(\n response,\n stack,\n cachedEntry,\n useEnclosingLine,\n env\n );\n null === ownerTask\n ? ((response = getRootTask(response, cachedEntry)),\n (response =\n null != response\n ? response.run(useEnclosingLine)\n : useEnclosingLine()))\n : (response = ownerTask.run(useEnclosingLine));\n return (debugInfo.debugTask = response);\n }\n function fakeJSXCallSite() {\n return Error(\"react-stack-top-frame\");\n }\n function initializeFakeStack(response, debugInfo) {\n if (void 0 === debugInfo.debugStack) {\n null != debugInfo.stack &&\n (debugInfo.debugStack = createFakeJSXCallStackInDEV(\n response,\n debugInfo.stack,\n null == debugInfo.env ? \"\" : debugInfo.env\n ));\n var owner = debugInfo.owner;\n null != owner &&\n (initializeFakeStack(response, owner),\n void 0 === owner.debugLocation &&\n null != debugInfo.debugStack &&\n (owner.debugLocation = debugInfo.debugStack));\n }\n }\n function initializeDebugInfo(response, debugInfo) {\n void 0 !== debugInfo.stack && initializeFakeTask(response, debugInfo);\n if (null == debugInfo.owner && null != response._debugRootOwner) {\n var _componentInfoOrAsyncInfo = debugInfo;\n _componentInfoOrAsyncInfo.owner = response._debugRootOwner;\n _componentInfoOrAsyncInfo.stack = null;\n _componentInfoOrAsyncInfo.debugStack = response._debugRootStack;\n _componentInfoOrAsyncInfo.debugTask = response._debugRootTask;\n } else\n void 0 !== debugInfo.stack && initializeFakeStack(response, debugInfo);\n \"number\" === typeof debugInfo.time &&\n (debugInfo = { time: debugInfo.time + response._timeOrigin });\n return debugInfo;\n }\n function getCurrentStackInDEV() {\n var owner = currentOwnerInDEV;\n if (null === owner) return \"\";\n try {\n var info = \"\";\n if (owner.owner || \"string\" !== typeof owner.name) {\n for (; owner; ) {\n var ownerStack = owner.debugStack;\n if (null != ownerStack) {\n if ((owner = owner.owner)) {\n var JSCompiler_temp_const = info;\n var error = ownerStack,\n prevPrepareStackTrace = Error.prepareStackTrace;\n Error.prepareStackTrace = void 0;\n var stack = error.stack;\n Error.prepareStackTrace = prevPrepareStackTrace;\n stack.startsWith(\"Error: react-stack-top-frame\\n\") &&\n (stack = stack.slice(29));\n var idx = stack.indexOf(\"\\n\");\n -1 !== idx && (stack = stack.slice(idx + 1));\n idx = stack.indexOf(\"react_stack_bottom_frame\");\n -1 !== idx && (idx = stack.lastIndexOf(\"\\n\", idx));\n var JSCompiler_inline_result =\n -1 !== idx ? (stack = stack.slice(0, idx)) : \"\";\n info =\n JSCompiler_temp_const + (\"\\n\" + JSCompiler_inline_result);\n }\n } else break;\n }\n var JSCompiler_inline_result$jscomp$0 = info;\n } else {\n JSCompiler_temp_const = owner.name;\n if (void 0 === prefix)\n try {\n throw Error();\n } catch (x) {\n (prefix =\n ((error = x.stack.trim().match(/\\n( *(at )?)/)) && error[1]) ||\n \"\"),\n (suffix =\n -1 < x.stack.indexOf(\"\\n at\")\n ? \" (<anonymous>)\"\n : -1 < x.stack.indexOf(\"@\")\n ? \"@unknown:0:0\"\n : \"\");\n }\n JSCompiler_inline_result$jscomp$0 =\n \"\\n\" + prefix + JSCompiler_temp_const + suffix;\n }\n } catch (x) {\n JSCompiler_inline_result$jscomp$0 =\n \"\\nError generating stack: \" + x.message + \"\\n\" + x.stack;\n }\n return JSCompiler_inline_result$jscomp$0;\n }\n function resolveConsoleEntry(response, json) {\n if (response._replayConsole) {\n var blockedChunk = response._blockedConsole;\n if (null == blockedChunk)\n (blockedChunk = createResolvedModelChunk(response, json)),\n initializeModelChunk(blockedChunk),\n \"fulfilled\" === blockedChunk.status\n ? replayConsoleWithCallStackInDEV(response, blockedChunk.value)\n : (blockedChunk.then(\n function (v) {\n return replayConsoleWithCallStackInDEV(response, v);\n },\n function () {}\n ),\n (response._blockedConsole = blockedChunk));\n else {\n var _chunk4 = createPendingChunk(response);\n _chunk4.then(\n function (v) {\n return replayConsoleWithCallStackInDEV(response, v);\n },\n function () {}\n );\n response._blockedConsole = _chunk4;\n var unblock = function () {\n response._blockedConsole === _chunk4 &&\n (response._blockedConsole = null);\n resolveModelChunk(response, _chunk4, json);\n };\n blockedChunk.then(unblock, unblock);\n }\n }\n }\n function initializeIOInfo(response, ioInfo) {\n void 0 !== ioInfo.stack &&\n (initializeFakeTask(response, ioInfo),\n initializeFakeStack(response, ioInfo));\n ioInfo.start += response._timeOrigin;\n ioInfo.end += response._timeOrigin;\n if (response._replayConsole) {\n response = response._rootEnvironmentName;\n var promise = ioInfo.value;\n if (promise)\n switch (promise.status) {\n case \"fulfilled\":\n logIOInfo(ioInfo, response, promise.value);\n break;\n case \"rejected\":\n logIOInfoErrored(ioInfo, response, promise.reason);\n break;\n default:\n promise.then(\n logIOInfo.bind(null, ioInfo, response),\n logIOInfoErrored.bind(null, ioInfo, response)\n );\n }\n else logIOInfo(ioInfo, response, void 0);\n }\n }\n function resolveIOInfo(response, id, model) {\n var chunks = response._chunks,\n chunk = chunks.get(id);\n chunk\n ? (resolveModelChunk(response, chunk, model),\n \"resolved_model\" === chunk.status && initializeModelChunk(chunk))\n : ((chunk = createResolvedModelChunk(response, model)),\n chunks.set(id, chunk),\n initializeModelChunk(chunk));\n \"fulfilled\" === chunk.status\n ? initializeIOInfo(response, chunk.value)\n : chunk.then(\n function (v) {\n initializeIOInfo(response, v);\n },\n function () {}\n );\n }\n function mergeBuffer(buffer, lastChunk) {\n for (\n var l = buffer.length, byteLength = lastChunk.length, i = 0;\n i < l;\n i++\n )\n byteLength += buffer[i].byteLength;\n byteLength = new Uint8Array(byteLength);\n for (var _i3 = (i = 0); _i3 < l; _i3++) {\n var chunk = buffer[_i3];\n byteLength.set(chunk, i);\n i += chunk.byteLength;\n }\n byteLength.set(lastChunk, i);\n return byteLength;\n }\n function resolveTypedArray(\n response,\n id,\n buffer,\n lastChunk,\n constructor,\n bytesPerElement,\n streamState\n ) {\n buffer =\n 0 === buffer.length && 0 === lastChunk.byteOffset % bytesPerElement\n ? lastChunk\n : mergeBuffer(buffer, lastChunk);\n constructor = new constructor(\n buffer.buffer,\n buffer.byteOffset,\n buffer.byteLength / bytesPerElement\n );\n resolveBuffer(response, id, constructor, streamState);\n }\n function flushComponentPerformance(\n response$jscomp$0,\n root,\n trackIdx$jscomp$6,\n trackTime,\n parentEndTime\n ) {\n if (!isArrayImpl(root._children)) {\n var previousResult = root._children,\n previousEndTime = previousResult.endTime;\n if (\n -Infinity < parentEndTime &&\n parentEndTime < previousEndTime &&\n null !== previousResult.component\n ) {\n var componentInfo = previousResult.component,\n trackIdx = trackIdx$jscomp$6,\n startTime = parentEndTime;\n if (supportsUserTiming && 0 <= previousEndTime && 10 > trackIdx) {\n var color =\n componentInfo.env === response$jscomp$0._rootEnvironmentName\n ? \"primary-light\"\n : \"secondary-light\",\n entryName = componentInfo.name + \" [deduped]\",\n debugTask = componentInfo.debugTask;\n debugTask\n ? debugTask.run(\n console.timeStamp.bind(\n console,\n entryName,\n 0 > startTime ? 0 : startTime,\n previousEndTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n color\n )\n )\n : console.timeStamp(\n entryName,\n 0 > startTime ? 0 : startTime,\n previousEndTime,\n trackNames[trackIdx],\n \"Server Components \\u269b\",\n color\n );\n }\n }\n previousResult.track = trackIdx$jscomp$6;\n return previousResult;\n }\n var children = root._children;\n var debugInfo = root._debugInfo;\n if (0 === debugInfo.length && \"fulfilled\" === root.status) {\n var resolvedValue = resolveLazy(root.value);\n \"object\" === typeof resolvedValue &&\n null !== resolvedValue &&\n (isArrayImpl(resolvedValue) ||\n \"function\" === typeof resolvedValue[ASYNC_ITERATOR] ||\n resolvedValue.$$typeof === REACT_ELEMENT_TYPE ||\n resolvedValue.$$typeof === REACT_LAZY_TYPE) &&\n isArrayImpl(resolvedValue._debugInfo) &&\n (debugInfo = resolvedValue._debugInfo);\n }\n if (debugInfo) {\n for (var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++) {\n var info = debugInfo[i];\n \"number\" === typeof info.time && (startTime$jscomp$0 = info.time);\n if (\"string\" === typeof info.name) {\n startTime$jscomp$0 < trackTime && trackIdx$jscomp$6++;\n trackTime = startTime$jscomp$0;\n break;\n }\n }\n for (var _i4 = debugInfo.length - 1; 0 <= _i4; _i4--) {\n var _info = debugInfo[_i4];\n if (\"number\" === typeof _info.time && _info.time > parentEndTime) {\n parentEndTime = _info.time;\n break;\n }\n }\n }\n var result = {\n track: trackIdx$jscomp$6,\n endTime: -Infinity,\n component: null\n };\n root._children = result;\n for (\n var childrenEndTime = -Infinity,\n childTrackIdx = trackIdx$jscomp$6,\n childTrackTime = trackTime,\n _i5 = 0;\n _i5 < children.length;\n _i5++\n ) {\n var childResult = flushComponentPerformance(\n response$jscomp$0,\n children[_i5],\n childTrackIdx,\n childTrackTime,\n parentEndTime\n );\n null !== childResult.component &&\n (result.component = childResult.component);\n childTrackIdx = childResult.track;\n var childEndTime = childResult.endTime;\n childEndTime > childTrackTime && (childTrackTime = childEndTime);\n childEndTime > childrenEndTime && (childrenEndTime = childEndTime);\n }\n if (debugInfo)\n for (\n var componentEndTime = 0,\n isLastComponent = !0,\n endTime = -1,\n endTimeIdx = -1,\n _i6 = debugInfo.length - 1;\n 0 <= _i6;\n _i6--\n ) {\n var _info2 = debugInfo[_i6];\n if (\"number\" === typeof _info2.time) {\n 0 === componentEndTime && (componentEndTime = _info2.time);\n var time = _info2.time;\n if (-1 < endTimeIdx)\n for (var j = endTimeIdx - 1; j > _i6; j--) {\n var candidateInfo = debugInfo[j];\n if (\"string\" === typeof candidateInfo.name) {\n componentEndTime > childrenEndTime &&\n (childrenEndTime = componentEndTime);\n var componentInfo$jscomp$0 = candidateInfo,\n response = response$jscomp$0,\n componentInfo$jscomp$1 = componentInfo$jscomp$0,\n trackIdx$jscomp$0 = trackIdx$jscomp$6,\n startTime$jscomp$1 = time,\n componentEndTime$jscomp$0 = componentEndTime,\n childrenEndTime$jscomp$0 = childrenEndTime;\n if (\n isLastComponent &&\n \"rejected\" === root.status &&\n root.reason !== response._closedReason\n ) {\n var componentInfo$jscomp$2 = componentInfo$jscomp$1,\n trackIdx$jscomp$1 = trackIdx$jscomp$0,\n startTime$jscomp$2 = startTime$jscomp$1,\n childrenEndTime$jscomp$1 = childrenEndTime$jscomp$0,\n error = root.reason;\n if (supportsUserTiming) {\n var env = componentInfo$jscomp$2.env,\n name = componentInfo$jscomp$2.name,\n entryName$jscomp$0 =\n env === response._rootEnvironmentName ||\n void 0 === env\n ? name\n : name + \" [\" + env + \"]\",\n measureName = \"\\u200b\" + entryName$jscomp$0,\n properties = [\n [\n \"Error\",\n \"object\" === typeof error &&\n null !== error &&\n \"string\" === typeof error.message\n ? String(error.message)\n : String(error)\n ]\n ];\n null != componentInfo$jscomp$2.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$2.key,\n properties,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$2.props &&\n addObjectToProperties(\n componentInfo$jscomp$2.props,\n properties,\n 0,\n \"\"\n );\n performance.measure(measureName, {\n start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2,\n end: childrenEndTime$jscomp$1,\n detail: {\n devtools: {\n color: \"error\",\n track: trackNames[trackIdx$jscomp$1],\n trackGroup: \"Server Components \\u269b\",\n tooltipText: entryName$jscomp$0 + \" Errored\",\n properties: properties\n }\n }\n });\n performance.clearMeasures(measureName);\n }\n } else {\n var componentInfo$jscomp$3 = componentInfo$jscomp$1,\n trackIdx$jscomp$2 = trackIdx$jscomp$0,\n startTime$jscomp$3 = startTime$jscomp$1,\n childrenEndTime$jscomp$2 = childrenEndTime$jscomp$0;\n if (\n supportsUserTiming &&\n 0 <= childrenEndTime$jscomp$2 &&\n 10 > trackIdx$jscomp$2\n ) {\n var env$jscomp$0 = componentInfo$jscomp$3.env,\n name$jscomp$0 = componentInfo$jscomp$3.name,\n isPrimaryEnv =\n env$jscomp$0 === response._rootEnvironmentName,\n selfTime =\n componentEndTime$jscomp$0 - startTime$jscomp$3,\n color$jscomp$0 =\n 0.5 > selfTime\n ? isPrimaryEnv\n ? \"primary-light\"\n : \"secondary-light\"\n : 50 > selfTime\n ? isPrimaryEnv\n ? \"primary\"\n : \"secondary\"\n : 500 > selfTime\n ? isPrimaryEnv\n ? \"primary-dark\"\n : \"secondary-dark\"\n : \"error\",\n debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask,\n measureName$jscomp$0 =\n \"\\u200b\" +\n (isPrimaryEnv || void 0 === env$jscomp$0\n ? name$jscomp$0\n : name$jscomp$0 + \" [\" + env$jscomp$0 + \"]\");\n if (debugTask$jscomp$0) {\n var properties$jscomp$0 = [];\n null != componentInfo$jscomp$3.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$3.key,\n properties$jscomp$0,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$3.props &&\n addObjectToProperties(\n componentInfo$jscomp$3.props,\n properties$jscomp$0,\n 0,\n \"\"\n );\n debugTask$jscomp$0.run(\n performance.measure.bind(\n performance,\n measureName$jscomp$0,\n {\n start:\n 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,\n end: childrenEndTime$jscomp$2,\n detail: {\n devtools: {\n color: color$jscomp$0,\n track: trackNames[trackIdx$jscomp$2],\n trackGroup: \"Server Components \\u269b\",\n properties: properties$jscomp$0\n }\n }\n }\n )\n );\n performance.clearMeasures(measureName$jscomp$0);\n } else\n console.timeStamp(\n measureName$jscomp$0,\n 0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,\n childrenEndTime$jscomp$2,\n trackNames[trackIdx$jscomp$2],\n \"Server Components \\u269b\",\n color$jscomp$0\n );\n }\n }\n componentEndTime = time;\n result.component = componentInfo$jscomp$0;\n isLastComponent = !1;\n } else if (\n candidateInfo.awaited &&\n null != candidateInfo.awaited.env\n ) {\n endTime > childrenEndTime && (childrenEndTime = endTime);\n var asyncInfo = candidateInfo,\n env$jscomp$1 = response$jscomp$0._rootEnvironmentName,\n promise = asyncInfo.awaited.value;\n if (promise) {\n var thenable = promise;\n switch (thenable.status) {\n case \"fulfilled\":\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n thenable.value\n );\n break;\n case \"rejected\":\n var asyncInfo$jscomp$0 = asyncInfo,\n trackIdx$jscomp$3 = trackIdx$jscomp$6,\n startTime$jscomp$4 = time,\n endTime$jscomp$0 = endTime,\n rootEnv = env$jscomp$1,\n error$jscomp$0 = thenable.reason;\n if (supportsUserTiming && 0 < endTime$jscomp$0) {\n var description = getIODescription(error$jscomp$0),\n entryName$jscomp$1 =\n \"await \" +\n getIOShortName(\n asyncInfo$jscomp$0.awaited,\n description,\n asyncInfo$jscomp$0.env,\n rootEnv\n ),\n debugTask$jscomp$1 =\n asyncInfo$jscomp$0.debugTask ||\n asyncInfo$jscomp$0.awaited.debugTask;\n if (debugTask$jscomp$1) {\n var properties$jscomp$1 = [\n [\n \"Rejected\",\n \"object\" === typeof error$jscomp$0 &&\n null !== error$jscomp$0 &&\n \"string\" === typeof error$jscomp$0.message\n ? String(error$jscomp$0.message)\n : String(error$jscomp$0)\n ]\n ],\n tooltipText =\n getIOLongName(\n asyncInfo$jscomp$0.awaited,\n description,\n asyncInfo$jscomp$0.env,\n rootEnv\n ) + \" Rejected\";\n debugTask$jscomp$1.run(\n performance.measure.bind(\n performance,\n entryName$jscomp$1,\n {\n start:\n 0 > startTime$jscomp$4\n ? 0\n : startTime$jscomp$4,\n end: endTime$jscomp$0,\n detail: {\n devtools: {\n color: \"error\",\n track: trackNames[trackIdx$jscomp$3],\n trackGroup: \"Server Components \\u269b\",\n properties: properties$jscomp$1,\n tooltipText: tooltipText\n }\n }\n }\n )\n );\n performance.clearMeasures(entryName$jscomp$1);\n } else\n console.timeStamp(\n entryName$jscomp$1,\n 0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4,\n endTime$jscomp$0,\n trackNames[trackIdx$jscomp$3],\n \"Server Components \\u269b\",\n \"error\"\n );\n }\n break;\n default:\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n void 0\n );\n }\n } else\n logComponentAwait(\n asyncInfo,\n trackIdx$jscomp$6,\n time,\n endTime,\n env$jscomp$1,\n void 0\n );\n }\n }\n else {\n endTime = time;\n for (var _j = debugInfo.length - 1; _j > _i6; _j--) {\n var _candidateInfo = debugInfo[_j];\n if (\"string\" === typeof _candidateInfo.name) {\n componentEndTime > childrenEndTime &&\n (childrenEndTime = componentEndTime);\n var _componentInfo = _candidateInfo,\n _env = response$jscomp$0._rootEnvironmentName,\n componentInfo$jscomp$4 = _componentInfo,\n trackIdx$jscomp$4 = trackIdx$jscomp$6,\n startTime$jscomp$5 = time,\n childrenEndTime$jscomp$3 = childrenEndTime;\n if (supportsUserTiming) {\n var env$jscomp$2 = componentInfo$jscomp$4.env,\n name$jscomp$1 = componentInfo$jscomp$4.name,\n entryName$jscomp$2 =\n env$jscomp$2 === _env || void 0 === env$jscomp$2\n ? name$jscomp$1\n : name$jscomp$1 + \" [\" + env$jscomp$2 + \"]\",\n measureName$jscomp$1 = \"\\u200b\" + entryName$jscomp$2,\n properties$jscomp$2 = [\n [\n \"Aborted\",\n \"The stream was aborted before this Component finished rendering.\"\n ]\n ];\n null != componentInfo$jscomp$4.key &&\n addValueToProperties(\n \"key\",\n componentInfo$jscomp$4.key,\n properties$jscomp$2,\n 0,\n \"\"\n );\n null != componentInfo$jscomp$4.props &&\n addObjectToProperties(\n componentInfo$jscomp$4.props,\n properties$jscomp$2,\n 0,\n \"\"\n );\n performance.measure(measureName$jscomp$1, {\n start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5,\n end: childrenEndTime$jscomp$3,\n detail: {\n devtools: {\n color: \"warning\",\n track: trackNames[trackIdx$jscomp$4],\n trackGroup: \"Server Components \\u269b\",\n tooltipText: entryName$jscomp$2 + \" Aborted\",\n properties: properties$jscomp$2\n }\n }\n });\n performance.clearMeasures(measureName$jscomp$1);\n }\n componentEndTime = time;\n result.component = _componentInfo;\n isLastComponent = !1;\n } else if (\n _candidateInfo.awaited &&\n null != _candidateInfo.awaited.env\n ) {\n var _asyncInfo = _candidateInfo,\n _env2 = response$jscomp$0._rootEnvironmentName;\n _asyncInfo.awaited.end > endTime &&\n (endTime = _asyncInfo.awaited.end);\n endTime > childrenEndTime && (childrenEndTime = endTime);\n var asyncInfo$jscomp$1 = _asyncInfo,\n trackIdx$jscomp$5 = trackIdx$jscomp$6,\n startTime$jscomp$6 = time,\n endTime$jscomp$1 = endTime,\n rootEnv$jscomp$0 = _env2;\n if (supportsUserTiming && 0 < endTime$jscomp$1) {\n var entryName$jscomp$3 =\n \"await \" +\n getIOShortName(\n asyncInfo$jscomp$1.awaited,\n \"\",\n asyncInfo$jscomp$1.env,\n rootEnv$jscomp$0\n ),\n debugTask$jscomp$2 =\n asyncInfo$jscomp$1.debugTask ||\n asyncInfo$jscomp$1.awaited.debugTask;\n if (debugTask$jscomp$2) {\n var tooltipText$jscomp$0 =\n getIOLongName(\n asyncInfo$jscomp$1.awaited,\n \"\",\n asyncInfo$jscomp$1.env,\n rootEnv$jscomp$0\n ) + \" Aborted\";\n debugTask$jscomp$2.run(\n performance.measure.bind(\n performance,\n entryName$jscomp$3,\n {\n start:\n 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,\n end: endTime$jscomp$1,\n detail: {\n devtools: {\n color: \"warning\",\n track: trackNames[trackIdx$jscomp$5],\n trackGroup: \"Server Components \\u269b\",\n properties: [\n [\n \"Aborted\",\n \"The stream was aborted before this Promise resolved.\"\n ]\n ],\n tooltipText: tooltipText$jscomp$0\n }\n }\n }\n )\n );\n performance.clearMeasures(entryName$jscomp$3);\n } else\n console.timeStamp(\n entryName$jscomp$3,\n 0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,\n endTime$jscomp$1,\n trackNames[trackIdx$jscomp$5],\n \"Server Components \\u269b\",\n \"warning\"\n );\n }\n }\n }\n }\n endTime = time;\n endTimeIdx = _i6;\n }\n }\n result.endTime = childrenEndTime;\n return result;\n }\n function flushInitialRenderPerformance(response) {\n if (response._replayConsole) {\n var rootChunk = getChunk(response, 0);\n isArrayImpl(rootChunk._children) &&\n (markAllTracksInOrder(),\n flushComponentPerformance(\n response,\n rootChunk,\n 0,\n -Infinity,\n -Infinity\n ));\n }\n }\n function processFullBinaryRow(\n response,\n streamState,\n id,\n tag,\n buffer,\n chunk\n ) {\n switch (tag) {\n case 65:\n resolveBuffer(\n response,\n id,\n mergeBuffer(buffer, chunk).buffer,\n streamState\n );\n return;\n case 79:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int8Array,\n 1,\n streamState\n );\n return;\n case 111:\n resolveBuffer(\n response,\n id,\n 0 === buffer.length ? chunk : mergeBuffer(buffer, chunk),\n streamState\n );\n return;\n case 85:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint8ClampedArray,\n 1,\n streamState\n );\n return;\n case 83:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int16Array,\n 2,\n streamState\n );\n return;\n case 115:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint16Array,\n 2,\n streamState\n );\n return;\n case 76:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Int32Array,\n 4,\n streamState\n );\n return;\n case 108:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Uint32Array,\n 4,\n streamState\n );\n return;\n case 71:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Float32Array,\n 4,\n streamState\n );\n return;\n case 103:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n Float64Array,\n 8,\n streamState\n );\n return;\n case 77:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n BigInt64Array,\n 8,\n streamState\n );\n return;\n case 109:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n BigUint64Array,\n 8,\n streamState\n );\n return;\n case 86:\n resolveTypedArray(\n response,\n id,\n buffer,\n chunk,\n DataView,\n 1,\n streamState\n );\n return;\n }\n for (\n var stringDecoder = response._stringDecoder, row = \"\", i = 0;\n i < buffer.length;\n i++\n )\n row += stringDecoder.decode(buffer[i], decoderOptions);\n row += stringDecoder.decode(chunk);\n processFullStringRow(response, streamState, id, tag, row);\n }\n function processFullStringRow(response, streamState, id, tag, row) {\n switch (tag) {\n case 73:\n resolveModule(response, id, row, streamState);\n break;\n case 72:\n id = row[0];\n streamState = row.slice(1);\n response = JSON.parse(streamState, response._fromJSON);\n streamState = ReactDOMSharedInternals.d;\n switch (id) {\n case \"D\":\n streamState.D(response);\n break;\n case \"C\":\n \"string\" === typeof response\n ? streamState.C(response)\n : streamState.C(response[0], response[1]);\n break;\n case \"L\":\n id = response[0];\n row = response[1];\n 3 === response.length\n ? streamState.L(id, row, response[2])\n : streamState.L(id, row);\n break;\n case \"m\":\n \"string\" === typeof response\n ? streamState.m(response)\n : streamState.m(response[0], response[1]);\n break;\n case \"X\":\n \"string\" === typeof response\n ? streamState.X(response)\n : streamState.X(response[0], response[1]);\n break;\n case \"S\":\n \"string\" === typeof response\n ? streamState.S(response)\n : streamState.S(\n response[0],\n 0 === response[1] ? void 0 : response[1],\n 3 === response.length ? response[2] : void 0\n );\n break;\n case \"M\":\n \"string\" === typeof response\n ? streamState.M(response)\n : streamState.M(response[0], response[1]);\n }\n break;\n case 69:\n tag = response._chunks;\n var chunk = tag.get(id);\n row = JSON.parse(row);\n var error = resolveErrorDev(response, row);\n error.digest = row.digest;\n chunk\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n triggerErrorOnChunk(response, chunk, error))\n : ((row = new ReactPromise(\"rejected\", null, error)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n break;\n case 84:\n tag = response._chunks;\n (chunk = tag.get(id)) && \"pending\" !== chunk.status\n ? chunk.reason.enqueueValue(row)\n : (chunk && releasePendingChunk(response, chunk),\n (row = new ReactPromise(\"fulfilled\", row, null)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n break;\n case 78:\n response._timeOrigin = +row - performance.timeOrigin;\n break;\n case 68:\n id = getChunk(response, id);\n \"fulfilled\" !== id.status &&\n \"rejected\" !== id.status &&\n \"halted\" !== id.status &&\n \"blocked\" !== id.status &&\n \"resolved_module\" !== id.status &&\n ((streamState = id._debugChunk),\n (tag = createResolvedModelChunk(response, row)),\n (tag._debugChunk = streamState),\n (id._debugChunk = tag),\n initializeDebugChunk(response, id),\n \"blocked\" !== tag.status ||\n (void 0 !== response._debugChannel &&\n response._debugChannel.hasReadable) ||\n '\"' !== row[0] ||\n \"$\" !== row[1] ||\n ((streamState = row.slice(2, row.length - 1).split(\":\")),\n (streamState = parseInt(streamState[0], 16)),\n \"pending\" === getChunk(response, streamState).status &&\n (id._debugChunk = null)));\n break;\n case 74:\n resolveIOInfo(response, id, row);\n break;\n case 87:\n resolveConsoleEntry(response, row);\n break;\n case 82:\n startReadableStream(response, id, void 0, streamState);\n break;\n case 114:\n startReadableStream(response, id, \"bytes\", streamState);\n break;\n case 88:\n startAsyncIterable(response, id, !1, streamState);\n break;\n case 120:\n startAsyncIterable(response, id, !0, streamState);\n break;\n case 67:\n (id = response._chunks.get(id)) &&\n \"fulfilled\" === id.status &&\n (0 === --response._pendingChunks &&\n (response._weakResponse.response = null),\n id.reason.close(\"\" === row ? '\"$undefined\"' : row));\n break;\n default:\n if (\"\" === row) {\n if (\n ((streamState = response._chunks),\n (row = streamState.get(id)) ||\n streamState.set(id, (row = createPendingChunk(response))),\n \"pending\" === row.status || \"blocked\" === row.status)\n )\n releasePendingChunk(response, row),\n (response = row),\n (response.status = \"halted\"),\n (response.value = null),\n (response.reason = null);\n } else\n (tag = response._chunks),\n (chunk = tag.get(id))\n ? (resolveChunkDebugInfo(response, streamState, chunk),\n resolveModelChunk(response, chunk, row))\n : ((row = createResolvedModelChunk(response, row)),\n resolveChunkDebugInfo(response, streamState, row),\n tag.set(id, row));\n }\n }\n function processBinaryChunk(weakResponse, streamState, chunk) {\n if (void 0 !== weakResponse.weak.deref()) {\n weakResponse = unwrapWeakResponse(weakResponse);\n var i = 0,\n rowState = streamState._rowState,\n rowID = streamState._rowID,\n rowTag = streamState._rowTag,\n rowLength = streamState._rowLength,\n buffer = streamState._buffer,\n chunkLength = chunk.length;\n for (\n incrementChunkDebugInfo(streamState, chunkLength);\n i < chunkLength;\n\n ) {\n var lastIdx = -1;\n switch (rowState) {\n case 0:\n lastIdx = chunk[i++];\n 58 === lastIdx\n ? (rowState = 1)\n : (rowID =\n (rowID << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 1:\n rowState = chunk[i];\n 84 === rowState ||\n 65 === rowState ||\n 79 === rowState ||\n 111 === rowState ||\n 98 === rowState ||\n 85 === rowState ||\n 83 === rowState ||\n 115 === rowState ||\n 76 === rowState ||\n 108 === rowState ||\n 71 === rowState ||\n 103 === rowState ||\n 77 === rowState ||\n 109 === rowState ||\n 86 === rowState\n ? ((rowTag = rowState), (rowState = 2), i++)\n : (64 < rowState && 91 > rowState) ||\n 35 === rowState ||\n 114 === rowState ||\n 120 === rowState\n ? ((rowTag = rowState), (rowState = 3), i++)\n : ((rowTag = 0), (rowState = 3));\n continue;\n case 2:\n lastIdx = chunk[i++];\n 44 === lastIdx\n ? (rowState = 4)\n : (rowLength =\n (rowLength << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 3:\n lastIdx = chunk.indexOf(10, i);\n break;\n case 4:\n (lastIdx = i + rowLength),\n lastIdx > chunk.length && (lastIdx = -1);\n }\n var offset = chunk.byteOffset + i;\n if (-1 < lastIdx)\n (rowLength = new Uint8Array(chunk.buffer, offset, lastIdx - i)),\n 98 === rowTag\n ? resolveBuffer(\n weakResponse,\n rowID,\n lastIdx === chunkLength ? rowLength : rowLength.slice(),\n streamState\n )\n : processFullBinaryRow(\n weakResponse,\n streamState,\n rowID,\n rowTag,\n buffer,\n rowLength\n ),\n (i = lastIdx),\n 3 === rowState && i++,\n (rowLength = rowID = rowTag = rowState = 0),\n (buffer.length = 0);\n else {\n chunk = new Uint8Array(chunk.buffer, offset, chunk.byteLength - i);\n 98 === rowTag\n ? ((rowLength -= chunk.byteLength),\n resolveBuffer(weakResponse, rowID, chunk, streamState))\n : (buffer.push(chunk), (rowLength -= chunk.byteLength));\n break;\n }\n }\n streamState._rowState = rowState;\n streamState._rowID = rowID;\n streamState._rowTag = rowTag;\n streamState._rowLength = rowLength;\n }\n }\n function createFromJSONCallback(response) {\n return function (key, value) {\n if (\"__proto__\" !== key) {\n if (\"string\" === typeof value)\n return parseModelString(response, this, key, value);\n if (\"object\" === typeof value && null !== value) {\n if (value[0] === REACT_ELEMENT_TYPE)\n b: {\n var owner = value[4],\n stack = value[5];\n key = value[6];\n value = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: value[1],\n key: value[2],\n props: value[3],\n _owner: void 0 === owner ? null : owner\n };\n Object.defineProperty(value, \"ref\", {\n enumerable: !1,\n get: nullRefGetter\n });\n value._store = {};\n Object.defineProperty(value._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: key\n });\n Object.defineProperty(value, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(value, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: void 0 === stack ? null : stack\n });\n Object.defineProperty(value, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n if (null !== initializingHandler) {\n owner = initializingHandler;\n initializingHandler = owner.parent;\n if (owner.errored) {\n stack = new ReactPromise(\"rejected\", null, owner.reason);\n initializeElement(response, value, null);\n owner = {\n name: getComponentNameFromType(value.type) || \"\",\n owner: value._owner\n };\n owner.debugStack = value._debugStack;\n supportsCreateTask && (owner.debugTask = value._debugTask);\n stack._debugInfo = [owner];\n key = createLazyChunkWrapper(stack, key);\n break b;\n }\n if (0 < owner.deps) {\n stack = new ReactPromise(\"blocked\", null, null);\n owner.value = value;\n owner.chunk = stack;\n key = createLazyChunkWrapper(stack, key);\n value = initializeElement.bind(null, response, value, key);\n stack.then(value, value);\n break b;\n }\n }\n initializeElement(response, value, null);\n key = value;\n }\n else key = value;\n return key;\n }\n return value;\n }\n };\n }\n function close(weakResponse) {\n reportGlobalError(weakResponse, Error(\"Connection closed.\"));\n }\n function createDebugCallbackFromWritableStream(debugWritable) {\n var textEncoder = new TextEncoder(),\n writer = debugWritable.getWriter();\n return function (message) {\n \"\" === message\n ? writer.close()\n : writer\n .write(textEncoder.encode(message + \"\\n\"))\n .catch(console.error);\n };\n }\n function createResponseFromOptions(options) {\n var debugChannel =\n options && void 0 !== options.debugChannel\n ? {\n hasReadable: void 0 !== options.debugChannel.readable,\n callback:\n void 0 !== options.debugChannel.writable\n ? createDebugCallbackFromWritableStream(\n options.debugChannel.writable\n )\n : null\n }\n : void 0;\n return new ResponseInstance(\n null,\n null,\n null,\n options && options.callServer ? options.callServer : void 0,\n void 0,\n void 0,\n options && options.temporaryReferences\n ? options.temporaryReferences\n : void 0,\n options && options.findSourceMapURL ? options.findSourceMapURL : void 0,\n options ? !1 !== options.replayConsoleLogs : !0,\n options && options.environmentName ? options.environmentName : void 0,\n options && null != options.startTime ? options.startTime : void 0,\n options && null != options.endTime ? options.endTime : void 0,\n debugChannel\n )._weakResponse;\n }\n function startReadingFromUniversalStream(\n response$jscomp$0,\n stream,\n onDone\n ) {\n function progress(_ref) {\n var value = _ref.value;\n if (_ref.done) return onDone();\n if (value instanceof ArrayBuffer)\n processBinaryChunk(\n response$jscomp$0,\n streamState,\n new Uint8Array(value)\n );\n else if (\"string\" === typeof value) {\n if (\n ((_ref = streamState), void 0 !== response$jscomp$0.weak.deref())\n ) {\n var response = unwrapWeakResponse(response$jscomp$0),\n i = 0,\n rowState = _ref._rowState,\n rowID = _ref._rowID,\n rowTag = _ref._rowTag,\n rowLength = _ref._rowLength,\n buffer = _ref._buffer,\n chunkLength = value.length;\n for (\n incrementChunkDebugInfo(_ref, chunkLength);\n i < chunkLength;\n\n ) {\n var lastIdx = -1;\n switch (rowState) {\n case 0:\n lastIdx = value.charCodeAt(i++);\n 58 === lastIdx\n ? (rowState = 1)\n : (rowID =\n (rowID << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 1:\n rowState = value.charCodeAt(i);\n 84 === rowState ||\n 65 === rowState ||\n 79 === rowState ||\n 111 === rowState ||\n 85 === rowState ||\n 83 === rowState ||\n 115 === rowState ||\n 76 === rowState ||\n 108 === rowState ||\n 71 === rowState ||\n 103 === rowState ||\n 77 === rowState ||\n 109 === rowState ||\n 86 === rowState\n ? ((rowTag = rowState), (rowState = 2), i++)\n : (64 < rowState && 91 > rowState) ||\n 114 === rowState ||\n 120 === rowState\n ? ((rowTag = rowState), (rowState = 3), i++)\n : ((rowTag = 0), (rowState = 3));\n continue;\n case 2:\n lastIdx = value.charCodeAt(i++);\n 44 === lastIdx\n ? (rowState = 4)\n : (rowLength =\n (rowLength << 4) |\n (96 < lastIdx ? lastIdx - 87 : lastIdx - 48));\n continue;\n case 3:\n lastIdx = value.indexOf(\"\\n\", i);\n break;\n case 4:\n if (84 !== rowTag)\n throw Error(\n \"Binary RSC chunks cannot be encoded as strings. This is a bug in the wiring of the React streams.\"\n );\n if (rowLength < value.length || value.length > 3 * rowLength)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n lastIdx = value.length;\n }\n if (-1 < lastIdx) {\n if (0 < buffer.length)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n i = value.slice(i, lastIdx);\n processFullStringRow(response, _ref, rowID, rowTag, i);\n i = lastIdx;\n 3 === rowState && i++;\n rowLength = rowID = rowTag = rowState = 0;\n buffer.length = 0;\n } else if (value.length !== i)\n throw Error(\n \"String chunks need to be passed in their original shape. Not split into smaller string chunks. This is a bug in the wiring of the React streams.\"\n );\n }\n _ref._rowState = rowState;\n _ref._rowID = rowID;\n _ref._rowTag = rowTag;\n _ref._rowLength = rowLength;\n }\n } else processBinaryChunk(response$jscomp$0, streamState, value);\n return reader.read().then(progress).catch(error);\n }\n function error(e) {\n reportGlobalError(response$jscomp$0, e);\n }\n var streamState = createStreamState(response$jscomp$0, stream),\n reader = stream.getReader();\n reader.read().then(progress).catch(error);\n }\n function startReadingFromStream(response, stream, onDone, debugValue) {\n function progress(_ref2) {\n var value = _ref2.value;\n if (_ref2.done) return onDone();\n processBinaryChunk(response, streamState, value);\n return reader.read().then(progress).catch(error);\n }\n function error(e) {\n reportGlobalError(response, e);\n }\n var streamState = createStreamState(response, debugValue),\n reader = stream.getReader();\n reader.read().then(progress).catch(error);\n }\n var React = require(\"react\"),\n ReactDOM = require(\"react-dom\"),\n decoderOptions = { stream: !0 },\n bind = Function.prototype.bind,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n instrumentedChunks = new WeakSet(),\n loadedChunks = new WeakSet(),\n chunkIOInfoCache = new Map(),\n ReactDOMSharedInternals =\n ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_VIEW_TRANSITION_TYPE = Symbol.for(\"react.view_transition\"),\n MAYBE_ITERATOR_SYMBOL = Symbol.iterator,\n ASYNC_ITERATOR = Symbol.asyncIterator,\n isArrayImpl = Array.isArray,\n getPrototypeOf = Object.getPrototypeOf,\n jsxPropsParents = new WeakMap(),\n jsxChildrenParents = new WeakMap(),\n CLIENT_REFERENCE_TAG = Symbol.for(\"react.client.reference\"),\n ObjectPrototype = Object.prototype,\n knownServerReferences = new WeakMap(),\n fakeServerFunctionIdx = 0,\n v8FrameRegExp =\n /^ {3} at (?:(.+) \\((.+):(\\d+):(\\d+)\\)|(?:async )?(.+):(\\d+):(\\d+))$/,\n jscSpiderMonkeyFrameRegExp = /(?:(.*)@)?(.*):(\\d+):(\\d+)/,\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n supportsUserTiming =\n \"undefined\" !== typeof console &&\n \"function\" === typeof console.timeStamp &&\n \"undefined\" !== typeof performance &&\n \"function\" === typeof performance.measure,\n trackNames =\n \"Primary Parallel Parallel\\u200b Parallel\\u200b\\u200b Parallel\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b Parallel\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\".split(\n \" \"\n ),\n prefix,\n suffix;\n new (\"function\" === typeof WeakMap ? WeakMap : Map)();\n var ReactSharedInteralsServer =\n React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE ||\n ReactSharedInteralsServer;\n ReactPromise.prototype = Object.create(Promise.prototype);\n ReactPromise.prototype.then = function (resolve, reject) {\n var _this = this;\n switch (this.status) {\n case \"resolved_model\":\n initializeModelChunk(this);\n break;\n case \"resolved_module\":\n initializeModuleChunk(this);\n }\n var resolveCallback = resolve,\n rejectCallback = reject,\n wrapperPromise = new Promise(function (res, rej) {\n resolve = function (value) {\n wrapperPromise._debugInfo = _this._debugInfo;\n res(value);\n };\n reject = function (reason) {\n wrapperPromise._debugInfo = _this._debugInfo;\n rej(reason);\n };\n });\n wrapperPromise.then(resolveCallback, rejectCallback);\n switch (this.status) {\n case \"fulfilled\":\n \"function\" === typeof resolve && resolve(this.value);\n break;\n case \"pending\":\n case \"blocked\":\n \"function\" === typeof resolve &&\n (null === this.value && (this.value = []),\n this.value.push(resolve));\n \"function\" === typeof reject &&\n (null === this.reason && (this.reason = []),\n this.reason.push(reject));\n break;\n case \"halted\":\n break;\n default:\n \"function\" === typeof reject && reject(this.reason);\n }\n };\n var debugChannelRegistry =\n \"function\" === typeof FinalizationRegistry\n ? new FinalizationRegistry(closeDebugChannel)\n : null,\n initializingHandler = null,\n initializingChunk = null,\n mightHaveStaticConstructor = /\\bclass\\b.*\\bstatic\\b/,\n MIN_CHUNK_SIZE = 65536,\n supportsCreateTask = !!console.createTask,\n fakeFunctionCache = new Map(),\n fakeFunctionIdx = 0,\n createFakeJSXCallStack = {\n react_stack_bottom_frame: function (response, stack, environmentName) {\n return buildFakeCallStack(\n response,\n stack,\n environmentName,\n !1,\n fakeJSXCallSite\n )();\n }\n },\n createFakeJSXCallStackInDEV =\n createFakeJSXCallStack.react_stack_bottom_frame.bind(\n createFakeJSXCallStack\n ),\n currentOwnerInDEV = null,\n replayConsoleWithCallStack = {\n react_stack_bottom_frame: function (response, payload) {\n var methodName = payload[0],\n stackTrace = payload[1],\n owner = payload[2],\n env = payload[3];\n payload = payload.slice(4);\n var prevStack = ReactSharedInternals.getCurrentStack;\n ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;\n currentOwnerInDEV = null === owner ? response._debugRootOwner : owner;\n try {\n a: {\n var offset = 0;\n switch (methodName) {\n case \"dir\":\n case \"dirxml\":\n case \"groupEnd\":\n case \"table\":\n var JSCompiler_inline_result = bind.apply(\n console[methodName],\n [console].concat(payload)\n );\n break a;\n case \"assert\":\n offset = 1;\n }\n var newArgs = payload.slice(0);\n \"string\" === typeof newArgs[offset]\n ? newArgs.splice(\n offset,\n 1,\n \"%c%s%c \" + newArgs[offset],\n \"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px\",\n \" \" + env + \" \",\n \"\"\n )\n : newArgs.splice(\n offset,\n 0,\n \"%c%s%c\",\n \"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px\",\n \" \" + env + \" \",\n \"\"\n );\n newArgs.unshift(console);\n JSCompiler_inline_result = bind.apply(\n console[methodName],\n newArgs\n );\n }\n var callStack = buildFakeCallStack(\n response,\n stackTrace,\n env,\n !1,\n JSCompiler_inline_result\n );\n if (null != owner) {\n var task = initializeFakeTask(response, owner);\n initializeFakeStack(response, owner);\n if (null !== task) {\n task.run(callStack);\n return;\n }\n }\n var rootTask = getRootTask(response, env);\n null != rootTask ? rootTask.run(callStack) : callStack();\n } finally {\n (currentOwnerInDEV = null),\n (ReactSharedInternals.getCurrentStack = prevStack);\n }\n }\n },\n replayConsoleWithCallStackInDEV =\n replayConsoleWithCallStack.react_stack_bottom_frame.bind(\n replayConsoleWithCallStack\n );\n (function (internals) {\n if (\"undefined\" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) return !1;\n var hook = __REACT_DEVTOOLS_GLOBAL_HOOK__;\n if (hook.isDisabled || !hook.supportsFlight) return !0;\n try {\n hook.inject(internals);\n } catch (err) {\n console.error(\"React instrumentation encountered an error: %o.\", err);\n }\n return hook.checkDCE ? !0 : !1;\n })({\n bundleType: 1,\n version: \"19.3.0-canary-cbec50fd-20260122\",\n rendererPackageName: \"react-server-dom-turbopack\",\n currentDispatcherRef: ReactSharedInternals,\n reconcilerVersion: \"19.3.0-canary-cbec50fd-20260122\",\n getCurrentComponentInfo: function () {\n return currentOwnerInDEV;\n }\n });\n exports.createFromFetch = function (promiseForResponse, options) {\n var response = createResponseFromOptions(options);\n promiseForResponse.then(\n function (r) {\n if (\n options &&\n options.debugChannel &&\n options.debugChannel.readable\n ) {\n var streamDoneCount = 0,\n handleDone = function () {\n 2 === ++streamDoneCount && close(response);\n };\n startReadingFromUniversalStream(\n response,\n options.debugChannel.readable,\n handleDone\n );\n startReadingFromStream(response, r.body, handleDone, r);\n } else\n startReadingFromStream(\n response,\n r.body,\n close.bind(null, response),\n r\n );\n },\n function (e) {\n reportGlobalError(response, e);\n }\n );\n return getRoot(response);\n };\n exports.createFromReadableStream = function (stream, options) {\n var response = createResponseFromOptions(options);\n if (options && options.debugChannel && options.debugChannel.readable) {\n var streamDoneCount = 0,\n handleDone = function () {\n 2 === ++streamDoneCount && close(response);\n };\n startReadingFromUniversalStream(\n response,\n options.debugChannel.readable,\n handleDone\n );\n startReadingFromStream(response, stream, handleDone, stream);\n } else\n startReadingFromStream(\n response,\n stream,\n close.bind(null, response),\n stream\n );\n return getRoot(response);\n };\n exports.createServerReference = function (\n id,\n callServer,\n encodeFormAction,\n findSourceMapURL,\n functionName\n ) {\n function action() {\n var args = Array.prototype.slice.call(arguments);\n return callServer(id, args);\n }\n var location = parseStackLocation(Error(\"react-stack-top-frame\"));\n if (null !== location) {\n encodeFormAction = location[1];\n var line = location[2];\n location = location[3];\n findSourceMapURL =\n null == findSourceMapURL\n ? null\n : findSourceMapURL(encodeFormAction, \"Client\");\n action = createFakeServerFunction(\n functionName || \"\",\n encodeFormAction,\n findSourceMapURL,\n line,\n location,\n \"Client\",\n action\n );\n }\n registerBoundServerReference(action, id, null);\n return action;\n };\n exports.createTemporaryReferenceSet = function () {\n return new Map();\n };\n exports.encodeReply = function (value, options) {\n return new Promise(function (resolve, reject) {\n var abort = processReply(\n value,\n \"\",\n options && options.temporaryReferences\n ? options.temporaryReferences\n : void 0,\n resolve,\n reject\n );\n if (options && options.signal) {\n var signal = options.signal;\n if (signal.aborted) abort(signal.reason);\n else {\n var listener = function () {\n abort(signal.reason);\n signal.removeEventListener(\"abort\", listener);\n };\n signal.addEventListener(\"abort\", listener);\n }\n }\n });\n };\n exports.registerServerReference = function (reference, id) {\n registerBoundServerReference(reference, id, null);\n return reference;\n };\n })();\n"],"names":[],"mappings":"AAWiB;AAXjB;;;;;;;;CAQC,GAED;AACA,oEACE,AAAC;IACC,SAAS,uBAAuB,aAAa,EAAE,QAAQ;QACrD,IAAI,eAAe;YACjB,IAAI,gBAAgB,aAAa,CAAC,QAAQ,CAAC,EAAE,CAAC;YAC9C,IAAK,gBAAgB,iBAAiB,aAAa,CAAC,QAAQ,CAAC,EAAE,CAAC,EAC9D,gBAAgB,cAAc,IAAI;iBAC/B;gBACH,gBAAgB,iBAAiB,aAAa,CAAC,IAAI;gBACnD,IAAI,CAAC,eACH,MAAM,MACJ,gCACE,QAAQ,CAAC,EAAE,GACX;gBAEN,gBAAgB,QAAQ,CAAC,EAAE;YAC7B;YACA,OAAO,MAAM,SAAS,MAAM,GACxB;gBAAC,cAAc,EAAE;gBAAE,cAAc,MAAM;gBAAE;gBAAe;aAAE,GAC1D;gBAAC,cAAc,EAAE;gBAAE,cAAc,MAAM;gBAAE;aAAc;QAC7D;QACA,OAAO;IACT;IACA,SAAS,uBAAuB,aAAa,EAAE,EAAE;QAC/C,IAAI,OAAO,IACT,qBAAqB,aAAa,CAAC,GAAG;QACxC,IAAI,oBAAoB,OAAO,mBAAmB,IAAI;aACjD;YACH,IAAI,MAAM,GAAG,WAAW,CAAC;YACzB,CAAC,MAAM,OACL,CAAC,AAAC,OAAO,GAAG,KAAK,CAAC,MAAM,IACvB,qBAAqB,aAAa,CAAC,GAAG,KAAK,CAAC,GAAG,KAAK,AAAC;YACxD,IAAI,CAAC,oBACH,MAAM,MACJ,gCACE,KACA;QAER;QACA,OAAO,mBAAmB,KAAK,GAC3B;YAAC,mBAAmB,EAAE;YAAE,mBAAmB,MAAM;YAAE;YAAM;SAAE,GAC3D;YAAC,mBAAmB,EAAE;YAAE,mBAAmB,MAAM;YAAE;SAAK;IAC9D;IACA,SAAS,mBAAmB,EAAE;QAC5B,IAAI,UAAU,yDAAsB;QACpC,IAAI,eAAe,OAAO,QAAQ,IAAI,IAAI,gBAAgB,QAAQ,MAAM,EACtE,OAAO;QACT,QAAQ,IAAI,CACV,SAAU,KAAK;YACb,QAAQ,MAAM,GAAG;YACjB,QAAQ,KAAK,GAAG;QAClB,GACA,SAAU,MAAM;YACd,QAAQ,MAAM,GAAG;YACjB,QAAQ,MAAM,GAAG;QACnB;QAEF,OAAO;IACT;IACA,SAAS,gBAAgB;IACzB,SAAS,cAAc,QAAQ;QAC7B,IACE,IAAI,SAAS,QAAQ,CAAC,EAAE,EAAE,WAAW,EAAE,EAAE,IAAI,GAC7C,IAAI,OAAO,MAAM,EACjB,IACA;YACA,IAAI,WAAW,yDAA0B,MAAM,CAAC,EAAE;YAClD,aAAa,GAAG,CAAC,aAAa,SAAS,IAAI,CAAC;YAC5C,IAAI,CAAC,mBAAmB,GAAG,CAAC,WAAW;gBACrC,IAAI,UAAU,aAAa,GAAG,CAAC,IAAI,CAAC,cAAc;gBAClD,SAAS,IAAI,CAAC,SAAS;gBACvB,mBAAmB,GAAG,CAAC;YACzB;QACF;QACA,OAAO,MAAM,SAAS,MAAM,GACxB,MAAM,SAAS,MAAM,GACnB,mBAAmB,QAAQ,CAAC,EAAE,IAC9B,QAAQ,GAAG,CAAC,UAAU,IAAI,CAAC;YACzB,OAAO,mBAAmB,QAAQ,CAAC,EAAE;QACvC,KACF,IAAI,SAAS,MAAM,GACjB,QAAQ,GAAG,CAAC,YACZ;IACR;IACA,SAAS,cAAc,QAAQ;QAC7B,IAAI,gBAAgB,yDAAsB,QAAQ,CAAC,EAAE;QACrD,IAAI,MAAM,SAAS,MAAM,IAAI,eAAe,OAAO,cAAc,IAAI,EACnE,IAAI,gBAAgB,cAAc,MAAM,EACtC,gBAAgB,cAAc,KAAK;aAChC,MAAM,cAAc,MAAM;QACjC,IAAI,QAAQ,QAAQ,CAAC,EAAE,EAAE,OAAO;QAChC,IAAI,OAAO,QAAQ,CAAC,EAAE,EACpB,OAAO,cAAc,UAAU,GAAG,cAAc,OAAO,GAAG;QAC5D,IAAI,eAAe,IAAI,CAAC,eAAe,QAAQ,CAAC,EAAE,GAChD,OAAO,aAAa,CAAC,QAAQ,CAAC,EAAE,CAAC;IACrC;IACA,SAAS,cAAc,aAAa;QAClC,IAAI,SAAS,iBAAiB,aAAa,OAAO,eAChD,OAAO;QACT,gBACE,AAAC,yBAAyB,aAAa,CAAC,sBAAsB,IAC9D,aAAa,CAAC,aAAa;QAC7B,OAAO,eAAe,OAAO,gBAAgB,gBAAgB;IAC/D;IACA,SAAS,kBAAkB,MAAM;QAC/B,IAAI,CAAC,QAAQ,OAAO,CAAC;QACrB,IAAI,kBAAkB,OAAO,SAAS;QACtC,IAAI,WAAW,iBAAiB,OAAO,CAAC;QACxC,IAAI,eAAe,SAAS,OAAO,CAAC;QACpC,SAAS,OAAO,mBAAmB,CAAC;QACpC,IAAK,IAAI,IAAI,GAAG,IAAI,OAAO,MAAM,EAAE,IACjC,IAAI,CAAC,CAAC,MAAM,CAAC,EAAE,IAAI,eAAe,GAAG,OAAO,CAAC;QAC/C,OAAO,CAAC;IACV;IACA,SAAS,eAAe,MAAM;QAC5B,IAAI,CAAC,kBAAkB,eAAe,UAAU,OAAO,CAAC;QACxD,IACE,IAAI,QAAQ,OAAO,mBAAmB,CAAC,SAAS,IAAI,GACpD,IAAI,MAAM,MAAM,EAChB,IACA;YACA,IAAI,aAAa,OAAO,wBAAwB,CAAC,QAAQ,KAAK,CAAC,EAAE;YACjE,IACE,CAAC,cACA,CAAC,WAAW,UAAU,IACrB,CAAC,AAAC,UAAU,KAAK,CAAC,EAAE,IAAI,UAAU,KAAK,CAAC,EAAE,IACxC,eAAe,OAAO,WAAW,GAAG,GAExC,OAAO,CAAC;QACZ;QACA,OAAO,CAAC;IACV;IACA,SAAS,WAAW,MAAM;QACxB,SAAS,OAAO,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC;QACxC,OAAO,OAAO,KAAK,CAAC,GAAG,OAAO,MAAM,GAAG;IACzC;IACA,SAAS,2BAA2B,GAAG;QACrC,IAAI,aAAa,KAAK,SAAS,CAAC;QAChC,OAAO,MAAM,MAAM,QAAQ,aAAa,MAAM;IAChD;IACA,SAAS,6BAA6B,KAAK;QACzC,OAAQ,OAAO;YACb,KAAK;gBACH,OAAO,KAAK,SAAS,CACnB,MAAM,MAAM,MAAM,GAAG,QAAQ,MAAM,KAAK,CAAC,GAAG,MAAM;YAEtD,KAAK;gBACH,IAAI,YAAY,QAAQ,OAAO;gBAC/B,IAAI,SAAS,SAAS,MAAM,QAAQ,KAAK,sBACvC,OAAO;gBACT,QAAQ,WAAW;gBACnB,OAAO,aAAa,QAAQ,UAAU;YACxC,KAAK;gBACH,OAAO,MAAM,QAAQ,KAAK,uBACtB,WACA,CAAC,QAAQ,MAAM,WAAW,IAAI,MAAM,IAAI,IACtC,cAAc,QACd;YACR;gBACE,OAAO,OAAO;QAClB;IACF;IACA,SAAS,oBAAoB,IAAI;QAC/B,IAAI,aAAa,OAAO,MAAM,OAAO;QACrC,OAAQ;YACN,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;QACX;QACA,IAAI,aAAa,OAAO,MACtB,OAAQ,KAAK,QAAQ;YACnB,KAAK;gBACH,OAAO,oBAAoB,KAAK,MAAM;YACxC,KAAK;gBACH,OAAO,oBAAoB,KAAK,IAAI;YACtC,KAAK;gBACH,IAAI,UAAU,KAAK,QAAQ;gBAC3B,OAAO,KAAK,KAAK;gBACjB,IAAI;oBACF,OAAO,oBAAoB,KAAK;gBAClC,EAAE,OAAO,GAAG,CAAC;QACjB;QACF,OAAO;IACT;IACA,SAAS,8BAA8B,aAAa,EAAE,YAAY;QAChE,IAAI,UAAU,WAAW;QACzB,IAAI,aAAa,WAAW,YAAY,SAAS,OAAO;QACxD,IAAI,QAAQ,CAAC,GACX,SAAS;QACX,IAAI,YAAY,gBACd,IAAI,mBAAmB,GAAG,CAAC,gBAAgB;YACzC,IAAI,OAAO,mBAAmB,GAAG,CAAC;YAClC,UAAU,MAAM,oBAAoB,QAAQ;YAC5C,IAAK,IAAI,IAAI,GAAG,IAAI,cAAc,MAAM,EAAE,IAAK;gBAC7C,IAAI,QAAQ,aAAa,CAAC,EAAE;gBAC5B,QACE,aAAa,OAAO,QAChB,QACA,aAAa,OAAO,SAAS,SAAS,QACpC,MAAM,8BAA8B,SAAS,MAC7C,MAAM,6BAA6B,SAAS;gBACpD,KAAK,MAAM,eACP,CAAC,AAAC,QAAQ,QAAQ,MAAM,EACvB,SAAS,MAAM,MAAM,EACrB,WAAW,KAAM,IACjB,UACC,KAAK,MAAM,MAAM,IAAI,KAAK,QAAQ,MAAM,GAAG,MAAM,MAAM,GACnD,UAAU,QACV,UAAU;YACtB;YACA,WAAW,OAAO,oBAAoB,QAAQ;QAChD,OAAO;YACL,UAAU;YACV,IAAK,OAAO,GAAG,OAAO,cAAc,MAAM,EAAE,OAC1C,IAAI,QAAQ,CAAC,WAAW,IAAI,GACzB,IAAI,aAAa,CAAC,KAAK,EACvB,IACC,aAAa,OAAO,KAAK,SAAS,IAC9B,8BAA8B,KAC9B,6BAA6B,IACnC,KAAK,SAAS,eACV,CAAC,AAAC,QAAQ,QAAQ,MAAM,EACvB,SAAS,EAAE,MAAM,EACjB,WAAW,CAAE,IACb,UACC,KAAK,EAAE,MAAM,IAAI,KAAK,QAAQ,MAAM,GAAG,EAAE,MAAM,GAC3C,UAAU,IACV,UAAU;YACxB,WAAW;QACb;aACG,IAAI,cAAc,QAAQ,KAAK,oBAClC,UAAU,MAAM,oBAAoB,cAAc,IAAI,IAAI;aACvD;YACH,IAAI,cAAc,QAAQ,KAAK,sBAAsB,OAAO;YAC5D,IAAI,gBAAgB,GAAG,CAAC,gBAAgB;gBACtC,UAAU,gBAAgB,GAAG,CAAC;gBAC9B,UAAU,MAAM,CAAC,oBAAoB,YAAY,KAAK;gBACtD,OAAO,OAAO,IAAI,CAAC;gBACnB,IAAK,IAAI,GAAG,IAAI,KAAK,MAAM,EAAE,IAAK;oBAChC,WAAW;oBACX,QAAQ,IAAI,CAAC,EAAE;oBACf,WAAW,2BAA2B,SAAS;oBAC/C,IAAI,UAAU,aAAa,CAAC,MAAM;oBAClC,IAAI,WACF,UAAU,gBACV,aAAa,OAAO,WACpB,SAAS,UACL,8BAA8B,WAC9B,6BAA6B;oBACnC,aAAa,OAAO,WAAW,CAAC,WAAW,MAAM,WAAW,GAAG;oBAC/D,UAAU,eACN,CAAC,AAAC,QAAQ,QAAQ,MAAM,EACvB,SAAS,SAAS,MAAM,EACxB,WAAW,QAAS,IACpB,UACC,KAAK,SAAS,MAAM,IAAI,KAAK,QAAQ,MAAM,GAAG,SAAS,MAAM,GACzD,UAAU,WACV,UAAU;gBACtB;gBACA,WAAW;YACb,OAAO;gBACL,UAAU;gBACV,OAAO,OAAO,IAAI,CAAC;gBACnB,IAAK,IAAI,GAAG,IAAI,KAAK,MAAM,EAAE,IAC3B,IAAI,KAAK,CAAC,WAAW,IAAI,GACtB,QAAQ,IAAI,CAAC,EAAE,EACf,WAAW,2BAA2B,SAAS,MAC/C,UAAU,aAAa,CAAC,MAAM,EAC9B,UACC,aAAa,OAAO,WAAW,SAAS,UACpC,8BAA8B,WAC9B,6BAA6B,UACnC,UAAU,eACN,CAAC,AAAC,QAAQ,QAAQ,MAAM,EACvB,SAAS,QAAQ,MAAM,EACvB,WAAW,OAAQ,IACnB,UACC,KAAK,QAAQ,MAAM,IAAI,KAAK,QAAQ,MAAM,GAAG,QAAQ,MAAM,GACvD,UAAU,UACV,UAAU;gBACxB,WAAW;YACb;QACF;QACA,OAAO,KAAK,MAAM,eACd,UACA,CAAC,IAAI,SAAS,IAAI,SAChB,CAAC,AAAC,gBAAgB,IAAI,MAAM,CAAC,SAAS,IAAI,MAAM,CAAC,SACjD,SAAS,UAAU,SAAS,aAAa,IACzC,SAAS;IACjB;IACA,SAAS,gBAAgB,MAAM;QAC7B,OAAO,OAAO,QAAQ,CAAC,UACnB,MAAM,UAAU,CAAC,aAAa,IAAI,SAChC,QACA,SACF,aAAa,SACX,cACA,CAAC,aAAa,SACZ,eACA;IACV;IACA,SAAS,aACP,IAAI,EACJ,eAAe,EACf,mBAAmB,EACnB,OAAO,EACP,MAAM;QAEN,SAAS,oBAAoB,GAAG,EAAE,UAAU;YAC1C,aAAa,IAAI,KAAK;gBACpB,IAAI,WACF,WAAW,MAAM,EACjB,WAAW,UAAU,EACrB,WAAW,UAAU;aAExB;YACD,IAAI,SAAS;YACb,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU;YAC/C,SAAS,MAAM,CAAC,kBAAkB,QAAQ;YAC1C,OAAO,MAAM,MAAM,OAAO,QAAQ,CAAC;QACrC;QACA,SAAS,sBAAsB,MAAM;YACnC,SAAS,SAAS,KAAK;gBACrB,MAAM,IAAI,GACN,CAAC,AAAC,QAAQ,cACV,KAAK,MAAM,CAAC,kBAAkB,OAAO,IAAI,KAAK,UAC9C,KAAK,MAAM,CACT,kBAAkB,UAClB,QAAQ,MAAM,QAAQ,CAAC,MAAM,MAE/B,KAAK,MAAM,CAAC,kBAAkB,UAAU,MACxC,gBACA,MAAM,gBAAgB,QAAQ,KAAK,IACnC,CAAC,OAAO,IAAI,CAAC,MAAM,KAAK,GACxB,OAAO,IAAI,CAAC,IAAI,WAAW,OAAO,IAAI,CAAC,UAAU,OAAO;YAC9D;YACA,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU;YAC/C,IAAI,OAAO;YACX;YACA,IAAI,WAAW,cACb,SAAS,EAAE;YACb,OAAO,IAAI,CAAC,IAAI,WAAW,OAAO,IAAI,CAAC,UAAU;YACjD,OAAO,OAAO,SAAS,QAAQ,CAAC;QAClC;QACA,SAAS,gBAAgB,MAAM;YAC7B,SAAS,SAAS,KAAK;gBACrB,IAAI,MAAM,IAAI,EACZ,KAAK,MAAM,CAAC,kBAAkB,UAAU,MACtC,gBACA,MAAM,gBAAgB,QAAQ;qBAEhC,IAAI;oBACF,IAAI,WAAW,KAAK,SAAS,CAAC,MAAM,KAAK,EAAE;oBAC3C,KAAK,MAAM,CAAC,kBAAkB,UAAU;oBACxC,OAAO,IAAI,GAAG,IAAI,CAAC,UAAU;gBAC/B,EAAE,OAAO,GAAG;oBACV,OAAO;gBACT;YACJ;YACA,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU;YAC/C,IAAI,OAAO;YACX;YACA,IAAI,WAAW;YACf,OAAO,IAAI,GAAG,IAAI,CAAC,UAAU;YAC7B,OAAO,OAAO,SAAS,QAAQ,CAAC;QAClC;QACA,SAAS,wBAAwB,MAAM;YACrC,IAAI;gBACF,IAAI,eAAe,OAAO,SAAS,CAAC;oBAAE,MAAM;gBAAO;YACrD,EAAE,OAAO,GAAG;gBACV,OAAO,gBAAgB,OAAO,SAAS;YACzC;YACA,OAAO,sBAAsB;QAC/B;QACA,SAAS,uBAAuB,QAAQ,EAAE,QAAQ;YAChD,SAAS,SAAS,KAAK;gBACrB,IAAI,MAAM,IAAI,EAAE;oBACd,IAAI,KAAK,MAAM,MAAM,KAAK,EACxB,KAAK,MAAM,CAAC,kBAAkB,UAAU;yBAExC,IAAI;wBACF,IAAI,WAAW,KAAK,SAAS,CAAC,MAAM,KAAK,EAAE;wBAC3C,KAAK,MAAM,CAAC,kBAAkB,UAAU,MAAM;oBAChD,EAAE,OAAO,GAAG;wBACV,OAAO;wBACP;oBACF;oBACF;oBACA,MAAM,gBAAgB,QAAQ;gBAChC,OACE,IAAI;oBACF,IAAI,YAAY,KAAK,SAAS,CAAC,MAAM,KAAK,EAAE;oBAC5C,KAAK,MAAM,CAAC,kBAAkB,UAAU;oBACxC,SAAS,IAAI,GAAG,IAAI,CAAC,UAAU;gBACjC,EAAE,OAAO,KAAK;oBACZ,OAAO;gBACT;YACJ;YACA,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU;YAC/C,IAAI,OAAO;YACX;YACA,IAAI,WAAW;YACf,WAAW,aAAa;YACxB,SAAS,IAAI,GAAG,IAAI,CAAC,UAAU;YAC/B,OAAO,MAAM,CAAC,WAAW,MAAM,GAAG,IAAI,SAAS,QAAQ,CAAC;QAC1D;QACA,SAAS,cAAc,GAAG,EAAE,KAAK;YAC/B,gBAAgB,OACd,QAAQ,KAAK,CACX,mHACA,8BAA8B,IAAI,EAAE;YAExC,IAAI,gBAAgB,IAAI,CAAC,IAAI;YAC7B,aAAa,OAAO,iBAClB,kBAAkB,SAClB,yBAAyB,QACzB,CAAC,aAAa,WAAW,iBACrB,QAAQ,KAAK,CACX,yGACA,WAAW,gBACX,8BAA8B,IAAI,EAAE,QAEtC,QAAQ,KAAK,CACX,4LACA,8BAA8B,IAAI,EAAE,KACrC;YACP,IAAI,SAAS,OAAO,OAAO;YAC3B,IAAI,aAAa,OAAO,OAAO;gBAC7B,OAAQ,MAAM,QAAQ;oBACpB,KAAK;wBACH,IAAI,KAAK,MAAM,uBAAuB,CAAC,MAAM,IAAI,OAAO,CAAC,MAAM;4BAC7D,IAAI,kBAAkB,eAAe,GAAG,CAAC,IAAI;4BAC7C,IAAI,KAAK,MAAM,iBACb,OACE,oBAAoB,GAAG,CAAC,kBAAkB,MAAM,KAAK,QACrD;wBAEN;wBACA,MAAM,MACJ,uJACE,8BAA8B,IAAI,EAAE;oBAE1C,KAAK;wBACH,gBAAgB,MAAM,QAAQ;wBAC9B,IAAI,OAAO,MAAM,KAAK;wBACtB,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU;wBAC/C;wBACA,IAAI;4BACF,kBAAkB,KAAK;4BACvB,IAAI,SAAS,cACX,WAAW,eAAe,iBAAiB;4BAC7C,SAAS,MAAM,CAAC,kBAAkB,QAAQ;4BAC1C,OAAO,MAAM,OAAO,QAAQ,CAAC;wBAC/B,EAAE,OAAO,GAAG;4BACV,IACE,aAAa,OAAO,KACpB,SAAS,KACT,eAAe,OAAO,EAAE,IAAI,EAC5B;gCACA;gCACA,IAAI,UAAU;gCACd,kBAAkB;oCAChB,IAAI;wCACF,IAAI,aAAa,eAAe,OAAO,UACrC,QAAQ;wCACV,MAAM,MAAM,CAAC,kBAAkB,SAAS;wCACxC;wCACA,MAAM,gBAAgB,QAAQ;oCAChC,EAAE,OAAO,QAAQ;wCACf,OAAO;oCACT;gCACF;gCACA,EAAE,IAAI,CAAC,iBAAiB;gCACxB,OAAO,MAAM,QAAQ,QAAQ,CAAC;4BAChC;4BACA,OAAO;4BACP,OAAO;wBACT,SAAU;4BACR;wBACF;gBACJ;gBACA,kBAAkB,eAAe,GAAG,CAAC;gBACrC,IAAI,eAAe,OAAO,MAAM,IAAI,EAAE;oBACpC,IAAI,KAAK,MAAM,iBACb,IAAI,cAAc,OAAO,YAAY;yBAChC,OAAO;oBACd,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU;oBAC/C;oBACA,IAAI,YAAY;oBAChB,MAAM,OAAO,UAAU,QAAQ,CAAC;oBAChC,eAAe,GAAG,CAAC,OAAO;oBAC1B,MAAM,IAAI,CAAC,SAAU,SAAS;wBAC5B,IAAI;4BACF,IAAI,oBAAoB,eAAe,GAAG,CAAC;4BAC3C,IAAI,aACF,KAAK,MAAM,oBACP,KAAK,SAAS,CAAC,qBACf,eAAe,WAAW;4BAChC,YAAY;4BACZ,UAAU,MAAM,CAAC,kBAAkB,WAAW;4BAC9C;4BACA,MAAM,gBAAgB,QAAQ;wBAChC,EAAE,OAAO,QAAQ;4BACf,OAAO;wBACT;oBACF,GAAG;oBACH,OAAO;gBACT;gBACA,IAAI,KAAK,MAAM,iBACb,IAAI,cAAc,OAAO,YAAY;qBAChC,OAAO;qBAEZ,CAAC,MAAM,IAAI,OAAO,CAAC,QACjB,CAAC,AAAC,kBAAkB,eAAe,GAAG,CAAC,IAAI,GAC3C,KAAK,MAAM,mBACT,CAAC,AAAC,kBAAkB,kBAAkB,MAAM,KAC5C,eAAe,GAAG,CAAC,OAAO,kBAC1B,KAAK,MAAM,uBACT,oBAAoB,GAAG,CAAC,iBAAiB,MAAM,CAAC;gBACxD,IAAI,YAAY,QAAQ,OAAO;gBAC/B,IAAI,iBAAiB,UAAU;oBAC7B,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU;oBAC/C,IAAI,SAAS;oBACb,MAAM;oBACN,IAAI,SAAS,kBAAkB,MAAM;oBACrC,MAAM,OAAO,CAAC,SAAU,aAAa,EAAE,WAAW;wBAChD,OAAO,MAAM,CAAC,SAAS,aAAa;oBACtC;oBACA,OAAO,OAAO,IAAI,QAAQ,CAAC;gBAC7B;gBACA,IAAI,iBAAiB,KACnB,OACE,AAAC,MAAM,cACN,kBAAkB,eAAe,MAAM,IAAI,CAAC,QAAQ,MACrD,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU,GAC/C,SAAS,MAAM,CAAC,kBAAkB,KAAK,kBACvC,OAAO,IAAI,QAAQ,CAAC;gBAExB,IAAI,iBAAiB,KACnB,OACE,AAAC,MAAM,cACN,kBAAkB,eAAe,MAAM,IAAI,CAAC,QAAQ,MACrD,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU,GAC/C,SAAS,MAAM,CAAC,kBAAkB,KAAK,kBACvC,OAAO,IAAI,QAAQ,CAAC;gBAExB,IAAI,iBAAiB,aACnB,OACE,AAAC,MAAM,IAAI,KAAK;oBAAC;iBAAM,GACtB,kBAAkB,cACnB,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU,GAC/C,SAAS,MAAM,CAAC,kBAAkB,iBAAiB,MACnD,OAAO,gBAAgB,QAAQ,CAAC;gBAEpC,IAAI,iBAAiB,WACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,YACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,mBACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,YACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,aACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,YACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,aACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,cACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,cACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,eACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,gBACnB,OAAO,oBAAoB,KAAK;gBAClC,IAAI,iBAAiB,UAAU,OAAO,oBAAoB,KAAK;gBAC/D,IAAI,eAAe,OAAO,QAAQ,iBAAiB,MACjD,OACE,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU,GAC9C,MAAM,cACP,SAAS,MAAM,CAAC,kBAAkB,KAAK,QACvC,OAAO,IAAI,QAAQ,CAAC;gBAExB,IAAK,kBAAkB,cAAc,QACnC,OACE,AAAC,kBAAkB,gBAAgB,IAAI,CAAC,QACxC,oBAAoB,QAChB,CAAC,AAAC,MAAM,cACP,kBAAkB,eACjB,MAAM,IAAI,CAAC,kBACX,MAEF,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU,GAC/C,SAAS,MAAM,CAAC,kBAAkB,KAAK,kBACvC,OAAO,IAAI,QAAQ,CAAC,GAAG,IACvB,MAAM,IAAI,CAAC;gBAEnB,IACE,eAAe,OAAO,kBACtB,iBAAiB,gBAEjB,OAAO,wBAAwB;gBACjC,kBAAkB,KAAK,CAAC,eAAe;gBACvC,IAAI,eAAe,OAAO,iBACxB,OAAO,uBAAuB,OAAO,gBAAgB,IAAI,CAAC;gBAC5D,kBAAkB,eAAe;gBACjC,IACE,oBAAoB,mBACpB,CAAC,SAAS,mBACR,SAAS,eAAe,gBAAgB,GAC1C;oBACA,IAAI,KAAK,MAAM,qBACb,MAAM,MACJ,8HACE,8BAA8B,IAAI,EAAE;oBAE1C,OAAO;gBACT;gBACA,MAAM,QAAQ,KAAK,qBACf,QAAQ,KAAK,CACX,mFACA,8BAA8B,IAAI,EAAE,QAEtC,aAAa,WAAW,SACtB,QAAQ,KAAK,CACX,yGACA,WAAW,QACX,8BAA8B,IAAI,EAAE,QAEtC,eAAe,SACb,OAAO,qBAAqB,IAC5B,CAAC,AAAC,kBAAkB,OAAO,qBAAqB,CAAC,QACjD,IAAI,gBAAgB,MAAM,IACxB,QAAQ,KAAK,CACX,qIACA,eAAe,CAAC,EAAE,CAAC,WAAW,EAC9B,8BAA8B,IAAI,EAAE,KACrC,IACH,QAAQ,KAAK,CACX,oIACA,8BAA8B,IAAI,EAAE;gBAE9C,OAAO;YACT;YACA,IAAI,aAAa,OAAO,OAAO;gBAC7B,IAAI,QAAQ,KAAK,CAAC,MAAM,MAAM,GAAG,EAAE,IAAI,IAAI,CAAC,IAAI,YAAY,MAC1D,OAAO,OAAO;gBAChB,MAAM,QAAQ,KAAK,CAAC,EAAE,GAAG,MAAM,QAAQ;gBACvC,OAAO;YACT;YACA,IAAI,cAAc,OAAO,OAAO,OAAO;YACvC,IAAI,aAAa,OAAO,OAAO,OAAO,gBAAgB;YACtD,IAAI,gBAAgB,OAAO,OAAO,OAAO;YACzC,IAAI,eAAe,OAAO,OAAO;gBAC/B,kBAAkB,sBAAsB,GAAG,CAAC;gBAC5C,IAAI,KAAK,MAAM,iBAAiB;oBAC9B,MAAM,eAAe,GAAG,CAAC;oBACzB,IAAI,KAAK,MAAM,KAAK,OAAO;oBAC3B,MAAM,KAAK,SAAS,CAClB;wBAAE,IAAI,gBAAgB,EAAE;wBAAE,OAAO,gBAAgB,KAAK;oBAAC,GACvD;oBAEF,SAAS,YAAY,CAAC,WAAW,IAAI,UAAU;oBAC/C,kBAAkB;oBAClB,SAAS,GAAG,CAAC,kBAAkB,iBAAiB;oBAChD,MAAM,OAAO,gBAAgB,QAAQ,CAAC;oBACtC,eAAe,GAAG,CAAC,OAAO;oBAC1B,OAAO;gBACT;gBACA,IACE,KAAK,MAAM,uBACX,CAAC,MAAM,IAAI,OAAO,CAAC,QACnB,CAAC,AAAC,kBAAkB,eAAe,GAAG,CAAC,IAAI,GAC3C,KAAK,MAAM,eAAe,GAE1B,OACE,oBAAoB,GAAG,CAAC,kBAAkB,MAAM,KAAK,QAAQ;gBAEjE,MAAM,MACJ;YAEJ;YACA,IAAI,aAAa,OAAO,OAAO;gBAC7B,IACE,KAAK,MAAM,uBACX,CAAC,MAAM,IAAI,OAAO,CAAC,QACnB,CAAC,AAAC,kBAAkB,eAAe,GAAG,CAAC,IAAI,GAC3C,KAAK,MAAM,eAAe,GAE1B,OACE,oBAAoB,GAAG,CAAC,kBAAkB,MAAM,KAAK,QAAQ;gBAEjE,MAAM,MACJ,kIACE,8BAA8B,IAAI,EAAE;YAE1C;YACA,IAAI,aAAa,OAAO,OAAO,OAAO,OAAO,MAAM,QAAQ,CAAC;YAC5D,MAAM,MACJ,UACE,OAAO,QACP;QAEN;QACA,SAAS,eAAe,KAAK,EAAE,EAAE;YAC/B,aAAa,OAAO,SAClB,SAAS,SACT,CAAC,AAAC,KAAK,MAAM,GAAG,QAAQ,CAAC,KACzB,eAAe,GAAG,CAAC,OAAO,KAC1B,KAAK,MAAM,uBAAuB,oBAAoB,GAAG,CAAC,IAAI,MAAM;YACtE,YAAY;YACZ,OAAO,KAAK,SAAS,CAAC,OAAO;QAC/B;QACA,IAAI,aAAa,GACf,eAAe,GACf,WAAW,MACX,iBAAiB,IAAI,WACrB,YAAY,MACZ,OAAO,eAAe,MAAM;QAC9B,SAAS,WACL,QAAQ,QACR,CAAC,SAAS,GAAG,CAAC,kBAAkB,KAAK,OACrC,MAAM,gBAAgB,QAAQ,SAAS;QAC3C,OAAO;YACL,IAAI,gBACF,CAAC,AAAC,eAAe,GACjB,SAAS,WAAW,QAAQ,QAAQ,QAAQ,SAAS;QACzD;IACF;IACA,SAAS,yBACP,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,IAAI,EACJ,GAAG,EACH,eAAe,EACf,aAAa;QAEb,QAAQ,CAAC,OAAO,aAAa;QAC7B,IAAI,cAAc,KAAK,SAAS,CAAC;QACjC,KAAK,OACD,CAAC,AAAC,OAAO,YAAY,MAAM,GAAG,GAC7B,MACC,UACA,cACA,IAAI,MAAM,CAAC,MAAM,OAAO,IAAI,MAAM,QAClC,4HAA6H,IAC9H,MACC,mGACA,KAAK,MAAM,CAAC,OAAO,KACnB,eACA,cACA,QACA,IAAI,MAAM,CAAC,IAAI,MAAM,IAAI,MAAM,KAC/B;QACN,SAAS,UAAU,CAAC,QAAQ,CAAC,WAAW,YAAY,QAAQ;QAC5D,YACI,CAAC,AAAC,OACA,mCACA,mBAAmB,mBACnB,MACA,UAAU,YACV,OACA,yBACD,OAAO,4BAA4B,SAAU,IAC9C,YAAY,CAAC,OAAO,qBAAqB,QAAQ;QACrD,IAAI;YACF,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,cAAc,CAAC,KAAK;QAC5C,EAAE,OAAO,GAAG;YACV,OAAO;QACT;IACF;IACA,SAAS,6BAA6B,SAAS,EAAE,EAAE,EAAE,KAAK;QACxD,sBAAsB,GAAG,CAAC,cACxB,sBAAsB,GAAG,CAAC,WAAW;YACnC,IAAI;YACJ,cAAc,UAAU,IAAI;YAC5B,OAAO;QACT;IACJ;IACA,SAAS,2BACP,QAAQ,EACR,UAAU,EACV,gBAAgB,EAChB,gBAAgB;QAEhB,SAAS;YACP,IAAI,OAAO,MAAM,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC;YACtC,OAAO,QACH,gBAAgB,MAAM,MAAM,GAC1B,WAAW,IAAI,MAAM,KAAK,CAAC,MAAM,CAAC,SAClC,QAAQ,OAAO,CAAC,OAAO,IAAI,CAAC,SAAU,SAAS;gBAC7C,OAAO,WAAW,IAAI,UAAU,MAAM,CAAC;YACzC,KACF,WAAW,IAAI;QACrB;QACA,IAAI,KAAK,SAAS,EAAE,EAClB,QAAQ,SAAS,KAAK,EACtB,WAAW,SAAS,QAAQ;QAC9B,IAAI,UAAU;YACZ,mBAAmB,SAAS,IAAI,IAAI;YACpC,IAAI,WAAW,QAAQ,CAAC,EAAE,EACxB,OAAO,QAAQ,CAAC,EAAE;YACpB,WAAW,QAAQ,CAAC,EAAE;YACtB,WAAW,SAAS,GAAG,IAAI;YAC3B,mBACE,QAAQ,mBACJ,OACA,iBAAiB,UAAU;YACjC,SAAS,yBACP,kBACA,UACA,kBACA,MACA,UACA,UACA;QAEJ;QACA,6BAA6B,QAAQ,IAAI;QACzC,OAAO;IACT;IACA,SAAS,mBAAmB,KAAK;QAC/B,QAAQ,MAAM,KAAK;QACnB,MAAM,UAAU,CAAC,qCACf,CAAC,QAAQ,MAAM,KAAK,CAAC,GAAG;QAC1B,IAAI,aAAa,MAAM,OAAO,CAAC;QAC/B,IAAI,CAAC,MAAM,YAAY;YACrB,IAAI,cAAc,MAAM,OAAO,CAAC,MAAM,aAAa;YACnD,aACE,CAAC,MAAM,cACH,MAAM,KAAK,CAAC,aAAa,KACzB,MAAM,KAAK,CAAC,aAAa,GAAG;QACpC,OAAO,aAAa;QACpB,QAAQ,cAAc,IAAI,CAAC;QAC3B,IACE,CAAC,SACD,CAAC,AAAC,QAAQ,2BAA2B,IAAI,CAAC,aAAc,CAAC,KAAK,GAE9D,OAAO;QACT,aAAa,KAAK,CAAC,EAAE,IAAI;QACzB,kBAAkB,cAAc,CAAC,aAAa,EAAE;QAChD,cAAc,KAAK,CAAC,EAAE,IAAI,KAAK,CAAC,EAAE,IAAI;QACtC,kBAAkB,eAAe,CAAC,cAAc,EAAE;QAClD,OAAO;YACL;YACA;YACA,CAAC,CAAC,KAAK,CAAC,EAAE,IAAI,KAAK,CAAC,EAAE;YACtB,CAAC,CAAC,KAAK,CAAC,EAAE,IAAI,KAAK,CAAC,EAAE;SACvB;IACH;IACA,SAAS,yBAAyB,IAAI;QACpC,IAAI,QAAQ,MAAM,OAAO;QACzB,IAAI,eAAe,OAAO,MACxB,OAAO,KAAK,QAAQ,KAAK,yBACrB,OACA,KAAK,WAAW,IAAI,KAAK,IAAI,IAAI;QACvC,IAAI,aAAa,OAAO,MAAM,OAAO;QACrC,OAAQ;YACN,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;QACX;QACA,IAAI,aAAa,OAAO,MACtB,OACG,aAAa,OAAO,KAAK,GAAG,IAC3B,QAAQ,KAAK,CACX,sHAEJ,KAAK,QAAQ;YAEb,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO,KAAK,WAAW,IAAI;YAC7B,KAAK;gBACH,OAAO,CAAC,KAAK,QAAQ,CAAC,WAAW,IAAI,SAAS,IAAI;YACpD,KAAK;gBACH,IAAI,YAAY,KAAK,MAAM;gBAC3B,OAAO,KAAK,WAAW;gBACvB,QACE,CAAC,AAAC,OAAO,UAAU,WAAW,IAAI,UAAU,IAAI,IAAI,IACnD,OAAO,OAAO,OAAO,gBAAgB,OAAO,MAAM,YAAa;gBAClE,OAAO;YACT,KAAK;gBACH,OACE,AAAC,YAAY,KAAK,WAAW,IAAI,MACjC,SAAS,YACL,YACA,yBAAyB,KAAK,IAAI,KAAK;YAE/C,KAAK;gBACH,YAAY,KAAK,QAAQ;gBACzB,OAAO,KAAK,KAAK;gBACjB,IAAI;oBACF,OAAO,yBAAyB,KAAK;gBACvC,EAAE,OAAO,GAAG,CAAC;QACjB;QACF,OAAO;IACT;IACA,SAAS,aAAa,KAAK;QACzB,IAAK,IAAI,OAAO,GAAG,IAAI,GAAG,IAAI,MAAM,MAAM,IAAI,MAAM,GAAG,IAAK;YAC1D,IAAI,QAAQ,KAAK,CAAC,EAAE;YACpB,IAAI,aAAa,OAAO,SAAS,SAAS,OACxC,IACE,YAAY,UACZ,MAAM,MAAM,MAAM,IAClB,aAAa,OAAO,KAAK,CAAC,EAAE,EAC5B;gBACA,IAAI,MAAM,QAAQ,MAAM,MAAM,OAAO;gBACrC,OAAO;YACT,OAAO,OAAO;iBACX;gBACH,IACE,eAAe,OAAO,SACrB,aAAa,OAAO,SAAS,KAAK,MAAM,MAAM,IAC9C,MAAM,QAAQ,MAAM,MAErB,OAAO;gBACT,OAAO;YACT;QACF;QACA,OAAO;IACT;IACA,SAAS,sBAAsB,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM;QAC/D,IAAI,kBAAkB,GACpB;QACF,IAAK,OAAO,OACV,IACE,eAAe,IAAI,CAAC,QAAQ,QAC5B,QAAQ,GAAG,CAAC,EAAE,IACd,CAAC,mBACD,qBAAqB,KAAK,MAAM,CAAC,IAAI,EAAE,YAAY,QAAQ,SAC3D,OAAO,eAAe,GACtB;YACA,WAAW,IAAI,CAAC;gBACd,SACE,eAAe,MAAM,CAAC,UACtB;gBACF;aACD;YACD;QACF;IACJ;IACA,SAAS,qBACP,YAAY,EACZ,KAAK,EACL,UAAU,EACV,MAAM,EACN,MAAM;QAEN,OAAQ,OAAO;YACb,KAAK;gBACH,IAAI,SAAS,OAAO;oBAClB,QAAQ;oBACR;gBACF,OAAO;oBACL,IAAI,MAAM,QAAQ,KAAK,oBAAoB;wBACzC,IAAI,WAAW,yBAAyB,MAAM,IAAI,KAAK,UACrD,MAAM,MAAM,GAAG;wBACjB,QAAQ,MAAM,KAAK;wBACnB,IAAI,YAAY,OAAO,IAAI,CAAC,QAC1B,cAAc,UAAU,MAAM;wBAChC,IAAI,QAAQ,OAAO,MAAM,aAAa;4BACpC,QAAQ,MAAM,WAAW;4BACzB;wBACF;wBACA,IACE,IAAI,UACH,MAAM,eACL,eAAe,SAAS,CAAC,EAAE,IAC3B,QAAQ,KACV;4BACA,QAAQ,MAAM,WAAW;4BACzB;wBACF;wBACA,WAAW,IAAI,CAAC;4BACd,SAAS,eAAe,MAAM,CAAC,UAAU;4BACzC,MAAM;yBACP;wBACD,SAAS,OACP,qBACE,OACA,KACA,YACA,SAAS,GACT;wBAEJ,eAAe,CAAC;wBAChB,MAAM;wBACN,IAAK,IAAI,WAAW,MAClB,IACG,OACD,eAAe,UACX,QAAQ,MAAM,QAAQ,IACtB,CAAC,CAAC,YAAY,MAAM,QAAQ,KAC1B,IAAI,MAAM,QAAQ,CAAC,MAAM,KAC3B,CAAC,eAAe,CAAC,CAAC,IAClB,eAAe,IAAI,CAAC,OAAO,YAC3B,QAAQ,OAAO,CAAC,EAAE,IAClB,qBACE,SACA,KAAK,CAAC,QAAQ,EACd,YACA,SAAS,GACT,SAEN,OAAO,KAEP;wBACJ,WAAW,IAAI,CAAC;4BACd;4BACA,eAAe,cAAc,WAAW,MAAM;yBAC/C;wBACD;oBACF;oBACA,WAAW,OAAO,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC;oBAC1C,UAAU,SAAS,KAAK,CAAC,GAAG,SAAS,MAAM,GAAG;oBAC9C,IAAI,YAAY,SACd;wBAAA,IACG,AAAC,WAAW,MAAM,MAAM,MAAM,EAC9B,MAAM,aAAa,QACpB,MAAM,OAAO,MAAM,KACnB;4BACA,QAAQ,KAAK,SAAS,CACpB,WAAW,MAAM,KAAK,CAAC,GAAG,KAAK,MAAM,CAAC,YAAY;4BAEpD;wBACF,OAAO,IAAI,MAAM,KAAK;4BACpB,WAAW,IAAI,CAAC;gCACd,SAAS,eAAe,MAAM,CAAC,UAAU;gCACzC;6BACD;4BACD,IACE,eAAe,GACf,eAAe,MAAM,MAAM,IAAI,MAAM,cACrC,eAEA,AAAC,UAAU,KAAK,CAAC,aAAa,EAC5B,qBACE,OAAO,CAAC,EAAE,EACV,OAAO,CAAC,EAAE,EACV,YACA,SAAS,GACT;4BAEN,YACE,qBACE,AAAC,KAAK,QAAQ,IACd,UACA,YACA,SAAS,GACT;4BAEJ;wBACF;oBAAA;oBACF,IAAI,cAAc,SAAS;wBACzB,IAAI,gBAAgB,MAAM,MAAM,EAAE;4BAChC,IACG,AAAC,WAAW,WAAW,MAAM,EAC9B,qBACE,cACA,MAAM,KAAK,EACX,YACA,QACA,SAEF,WAAW,MAAM,GAAG,UACpB;gCACA,aAAa,UAAU,CAAC,SAAS;gCACjC,UAAU,CAAC,EAAE,GACX,aAAa,CAAC,UAAU,CAAC,EAAE,IAAI,QAAQ,IAAI;gCAC7C;4BACF;wBACF,OAAO,IACL,eAAe,MAAM,MAAM,IAC3B,CAAC,AAAC,WAAW,WAAW,MAAM,EAC9B,qBACE,cACA,MAAM,MAAM,EACZ,YACA,QACA,SAEF,WAAW,MAAM,GAAG,QAAQ,GAC5B;4BACA,aAAa,UAAU,CAAC,SAAS;4BACjC,UAAU,CAAC,EAAE,GAAG,sBAAsB,UAAU,CAAC,EAAE,GAAG;4BACtD;wBACF;wBACA,WAAW,IAAI,CAAC;4BACd,eAAe,MAAM,CAAC,UAAU;4BAChC;yBACD;wBACD;oBACF;oBACA,aAAa,WACX,CAAC,WAAW,OAAO,cAAc,CAAC,MAAM,KACxC,eAAe,OAAO,SAAS,WAAW,IAC1C,CAAC,UAAU,SAAS,WAAW,CAAC,IAAI;oBACtC,WAAW,IAAI,CAAC;wBACd,SAAS,eAAe,MAAM,CAAC,UAAU;wBACzC,aAAa,UAAW,IAAI,SAAS,KAAK,WAAY;qBACvD;oBACD,IAAI,UACF,sBAAsB,OAAO,YAAY,SAAS,GAAG;oBACvD;gBACF;YACF,KAAK;gBACH,QAAQ,OAAO,MAAM,IAAI,GAAG,aAAa,MAAM,IAAI,GAAG;gBACtD;YACF,KAAK;gBACH,QACE,6JACA,QACI,WACA,KAAK,SAAS,CAAC;gBACrB;YACF,KAAK;gBACH,QAAQ;gBACR;YACF,KAAK;gBACH,QAAQ,QAAQ,SAAS;gBACzB;YACF;gBACE,QAAQ,OAAO;QACnB;QACA,WAAW,IAAI,CAAC;YACd,SAAS,eAAe,MAAM,CAAC,UAAU;YACzC;SACD;IACH;IACA,SAAS,iBAAiB,KAAK;QAC7B,IAAI;YACF,OAAQ,OAAO;gBACb,KAAK;oBACH,OAAO,MAAM,IAAI,IAAI;gBACvB,KAAK;oBACH,IAAI,SAAS,OAAO,OAAO;oBAC3B,IAAI,iBAAiB,OAAO,OAAO,OAAO,MAAM,OAAO;oBACvD,IAAI,aAAa,OAAO,MAAM,GAAG,EAAE,OAAO,MAAM,GAAG;oBACnD,IAAI,aAAa,OAAO,MAAM,IAAI,EAAE,OAAO,MAAM,IAAI;oBACrD,IAAI,aAAa,OAAO,MAAM,GAAG,EAAE,OAAO,MAAM,GAAG;oBACnD,IAAI,aAAa,OAAO,MAAM,UAAU,EAAE,OAAO,MAAM,UAAU;oBACjE,IAAI,aAAa,OAAO,MAAM,OAAO,EAAE,OAAO,MAAM,OAAO;oBAC3D,IACE,aAAa,OAAO,MAAM,OAAO,IACjC,SAAS,MAAM,OAAO,IACtB,aAAa,OAAO,MAAM,OAAO,CAAC,GAAG,EAErC,OAAO,MAAM,OAAO,CAAC,GAAG;oBAC1B,IACE,aAAa,OAAO,MAAM,QAAQ,IAClC,SAAS,MAAM,QAAQ,IACvB,aAAa,OAAO,MAAM,QAAQ,CAAC,GAAG,EAEtC,OAAO,MAAM,QAAQ,CAAC,GAAG;oBAC3B,IACE,aAAa,OAAO,MAAM,EAAE,IAC5B,aAAa,OAAO,MAAM,EAAE,IAC5B,aAAa,OAAO,MAAM,EAAE,EAE5B,OAAO,OAAO,MAAM,EAAE;oBACxB,IAAI,aAAa,OAAO,MAAM,IAAI,EAAE,OAAO,MAAM,IAAI;oBACrD,IAAI,MAAM,MAAM,QAAQ;oBACxB,OAAO,IAAI,UAAU,CAAC,eACpB,IAAI,IAAI,MAAM,IACd,MAAM,IAAI,MAAM,GACd,KACA;gBACN,KAAK;oBACH,OAAO,IAAI,MAAM,MAAM,IAAI,MAAM,MAAM,MAAM,GAAG,KAAK;gBACvD,KAAK;gBACL,KAAK;oBACH,OAAO,OAAO;gBAChB;oBACE,OAAO;YACX;QACF,EAAE,OAAO,GAAG;YACV,OAAO;QACT;IACF;IACA,SAAS;QACP,sBACE,CAAC,QAAQ,SAAS,CAChB,yBACA,OACA,OACA,0BACA,KAAK,GACL,kBAEF,QAAQ,SAAS,CACf,2BACA,OACA,OACA,WACA,4BACA,gBACD;IACL;IACA,SAAS,WAAW,YAAY;QAC9B,OAAQ,aAAa,UAAU,CAAC,KAAK;YACnC,KAAK;gBACH,OAAO;YACT,KAAK;gBACH,OAAO;YACT;gBACE,OAAO;QACX;IACF;IACA,SAAS,cAAc,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,OAAO;QACtD,SAAS,OAAO,IAAI;QACpB,cACE,OAAO,cAAc,SAAS,SAAS,OAAO,cAAc;QAC9D,OAAO,QAAQ,WAAW,KAAK,MAAM,MACjC,cACA,cAAc,OAAO,MAAM;IACjC;IACA,SAAS,eAAe,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,OAAO;QACvD,SAAS,OAAO,IAAI;QACpB,MAAM,QAAQ,WAAW,KAAK,MAAM,MAAM,KAAK,OAAO,MAAM;QAC5D,IAAI,OAAO;QACX,UAAU,KAAK,OAAO,MAAM,GAAG,IAAI,MAAM;QACzC,IAAI,IAAI,SAAS;YACf,IAAI,IAAI,YAAY,MAAM;YAC1B,IAAI,IAAI,KAAK,KAAK,SAAS,OAAO,OAAO,cAAc;iBAClD,IACH,YAAY,UAAU,CAAC,cACvB,YAAY,UAAU,CAAC,eACvB,YAAY,UAAU,CAAC,MACvB;gBACA,IAAI,WAAW,YAAY,OAAO,CAAC;gBACnC,CAAC,MAAM,YAAY,CAAC,WAAW,YAAY,MAAM;gBACjD,OAAO,YAAY,UAAU,CAAC,WAAW,MAAM;gBAC/C,OAAO,YAAY,WAAW,CAAC,KAAK,WAAW;gBAC/C,WAAW,OAAO,UACb,OAAO,aAAa,YAAY,KAAK,CAAC,MAAM,YAAY,MACzD,CAAC,AAAC,IAAI,YAAY,KAAK,CAAC,MAAM,OAAO,UAAU,IAC9C,cAAc,YAAY,KAAK,CAC9B,WAAW,UAAU,GACrB,WAED,OACC,OACA,CAAC,IAAI,OAAO,WAAW,EAAE,IACzB,IACA,WACA,cACA,GAAI;YACZ;QACF;QACA,OAAO,SAAS,OAAO;IACzB;IACA,SAAS,kBACP,SAAS,EACT,QAAQ,EACR,SAAS,EACT,OAAO,EACP,OAAO,EACP,KAAK;QAEL,IAAI,sBAAsB,IAAI,SAAS;YACrC,IAAI,cAAc,iBAAiB,QACjC,OAAO,eACL,UAAU,OAAO,EACjB,aACA,UAAU,GAAG,EACb,UAEF,YAAY,WAAW;YACzB,OAAO,WAAW;YAClB,IAAI,YAAY,UAAU,SAAS,IAAI,UAAU,OAAO,CAAC,SAAS;YAClE,IAAI,WAAW;gBACb,IAAI,aAAa,EAAE;gBACnB,aAAa,OAAO,SAAS,SAAS,QAClC,sBAAsB,OAAO,YAAY,GAAG,MAC5C,KAAK,MAAM,SACX,qBAAqB,iBAAiB,OAAO,YAAY,GAAG;gBAChE,YAAY,cACV,UAAU,OAAO,EACjB,aACA,UAAU,GAAG,EACb;gBAEF,UAAU,GAAG,CACX,YAAY,OAAO,CAAC,IAAI,CAAC,aAAa,WAAW;oBAC/C,OAAO,IAAI,YAAY,IAAI;oBAC3B,KAAK;oBACL,QAAQ;wBACN,UAAU;4BACR,OAAO;4BACP,OAAO,UAAU,CAAC,SAAS;4BAC3B,YAAY;4BACZ,YAAY;4BACZ,aAAa;wBACf;oBACF;gBACF;gBAEF,YAAY,aAAa,CAAC;YAC5B,OACE,QAAQ,SAAS,CACf,WACA,IAAI,YAAY,IAAI,WACpB,SACA,UAAU,CAAC,SAAS,EACpB,4BACA;QAEN;IACF;IACA,SAAS,iBAAiB,MAAM,EAAE,OAAO,EAAE,KAAK;QAC9C,IAAI,YAAY,OAAO,KAAK,EAC1B,UAAU,OAAO,GAAG;QACtB,IAAI,sBAAsB,KAAK,SAAS;YACtC,IAAI,cAAc,iBAAiB,QACjC,YAAY,eAAe,QAAQ,aAAa,OAAO,GAAG,EAAE,UAC5D,YAAY,OAAO,SAAS;YAC9B,YAAY,WAAW;YACvB,YACI,CAAC,AAAC,QAAQ;gBACR;oBACE;oBACA,aAAa,OAAO,SACpB,SAAS,SACT,aAAa,OAAO,MAAM,OAAO,GAC7B,OAAO,MAAM,OAAO,IACpB,OAAO;iBACZ;aACF,EACA,SACC,cAAc,QAAQ,aAAa,OAAO,GAAG,EAAE,WAC/C,aACF,UAAU,GAAG,CACX,YAAY,OAAO,CAAC,IAAI,CAAC,aAAa,WAAW;gBAC/C,OAAO,IAAI,YAAY,IAAI;gBAC3B,KAAK;gBACL,QAAQ;oBACN,UAAU;wBACR,OAAO;wBACP,OAAO;wBACP,YAAY;wBACZ,aAAa;oBACf;gBACF;YACF,KAEF,YAAY,aAAa,CAAC,UAAU,IACpC,QAAQ,SAAS,CACf,WACA,IAAI,YAAY,IAAI,WACpB,SACA,0BACA,KAAK,GACL;QAER;IACF;IACA,SAAS,UAAU,MAAM,EAAE,OAAO,EAAE,KAAK;QACvC,IAAI,YAAY,OAAO,KAAK,EAC1B,UAAU,OAAO,GAAG;QACtB,IAAI,sBAAsB,KAAK,SAAS;YACtC,IAAI,cAAc,iBAAiB,QACjC,YAAY,eAAe,QAAQ,aAAa,OAAO,GAAG,EAAE,UAC5D,QAAQ,WAAW,YACnB,YAAY,OAAO,SAAS;YAC9B,YAAY,WAAW;YACvB,IAAI,WAAW;gBACb,IAAI,aAAa,EAAE;gBACnB,aAAa,OAAO,SAAS,SAAS,QAClC,sBAAsB,OAAO,YAAY,GAAG,MAC5C,KAAK,MAAM,SACX,qBAAqB,YAAY,OAAO,YAAY,GAAG;gBAC3D,SAAS,cAAc,QAAQ,aAAa,OAAO,GAAG,EAAE;gBACxD,UAAU,GAAG,CACX,YAAY,OAAO,CAAC,IAAI,CAAC,aAAa,WAAW;oBAC/C,OAAO,IAAI,YAAY,IAAI;oBAC3B,KAAK;oBACL,QAAQ;wBACN,UAAU;4BACR,OAAO;4BACP,OAAO;4BACP,YAAY;4BACZ,aAAa;wBACf;oBACF;gBACF;gBAEF,YAAY,aAAa,CAAC;YAC5B,OACE,QAAQ,SAAS,CACf,WACA,IAAI,YAAY,IAAI,WACpB,SACA,0BACA,KAAK,GACL;QAEN;IACF;IACA,SAAS,aAAa,MAAM,EAAE,KAAK,EAAE,MAAM;QACzC,IAAI,CAAC,MAAM,GAAG;QACd,IAAI,CAAC,KAAK,GAAG;QACb,IAAI,CAAC,MAAM,GAAG;QACd,IAAI,CAAC,SAAS,GAAG,EAAE;QACnB,IAAI,CAAC,WAAW,GAAG;QACnB,IAAI,CAAC,UAAU,GAAG,EAAE;IACtB;IACA,SAAS,mBAAmB,YAAY;QACtC,eAAe,aAAa,IAAI,CAAC,KAAK;QACtC,IAAI,KAAK,MAAM,cACb,MAAM,MACJ;QAEJ,OAAO;IACT;IACA,SAAS,kBAAkB,YAAY;QACrC,aAAa,QAAQ,IAAI,aAAa,QAAQ,CAAC;IACjD;IACA,SAAS,UAAU,KAAK;QACtB,OAAQ,MAAM,MAAM;YAClB,KAAK;gBACH,qBAAqB;gBACrB;YACF,KAAK;gBACH,sBAAsB;QAC1B;QACA,OAAQ,MAAM,MAAM;YAClB,KAAK;gBACH,OAAO,MAAM,KAAK;YACpB,KAAK;YACL,KAAK;YACL,KAAK;gBACH,MAAM;YACR;gBACE,MAAM,MAAM,MAAM;QACtB;IACF;IACA,SAAS,QAAQ,YAAY;QAC3B,eAAe,mBAAmB;QAClC,OAAO,SAAS,cAAc;IAChC;IACA,SAAS,mBAAmB,QAAQ;QAClC,MAAM,SAAS,cAAc,MAC3B,CAAC,AAAC,SAAS,aAAa,CAAC,QAAQ,GAAG,UACpC,SAAS,SAAS,qBAAqB,IACrC,CAAC,aAAa,SAAS,qBAAqB,GAC3C,SAAS,qBAAqB,GAAG,IAAK,CAAC;QAC5C,OAAO,IAAI,aAAa,WAAW,MAAM;IAC3C;IACA,SAAS,oBAAoB,QAAQ,EAAE,KAAK;QAC1C,cAAc,MAAM,MAAM,IACxB,MAAM,EAAE,SAAS,cAAc,IAC/B,CAAC,AAAC,SAAS,aAAa,CAAC,QAAQ,GAAG,MACnC,SAAS,qBAAqB,GAAG,WAChC,8BAA8B,IAAI,CAAC,MAAM,WACzC,IACA;IACN;IACA,SAAS,gBAAgB,QAAQ,EAAE,KAAK;QACtC,IAAI,SAAS,SAAS,aAAa,EAAE;YACnC,WAAW,SAAS,aAAa,GAAG,YAAY,UAAU;YAC1D,IAAK,IAAI,YAAY,EAAE,EAAE,IAAI,GAAG,IAAI,MAAM,UAAU,CAAC,MAAM,EAAE,IAAK;gBAChE,IAAI,OAAO,MAAM,UAAU,CAAC,EAAE;gBAC9B,IAAI,aAAa,OAAO,KAAK,IAAI,IAAI,KAAK,IAAI,GAAG,UAAU;gBAC3D,UAAU,IAAI,CAAC;YACjB;YACA,MAAM,UAAU,GAAG;QACrB;IACF;IACA,SAAS,mCAAmC,KAAK,EAAE,KAAK;QACtD,QAAQ,YAAY;QACpB,aAAa,OAAO,SAClB,SAAS,SACR,CAAC,YAAY,UACZ,eAAe,OAAO,KAAK,CAAC,eAAe,IAC3C,MAAM,QAAQ,KAAK,sBACnB,MAAM,QAAQ,KAAK,mBACrB,CAAC,AAAC,QAAQ,MAAM,UAAU,CAAC,MAAM,CAAC,IAClC,YAAY,MAAM,UAAU,IACxB,MAAM,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,UAAU,EAAE,SACjD,OAAO,cAAc,CAAC,OAAO,cAAc;YACzC,cAAc,CAAC;YACf,YAAY,CAAC;YACb,UAAU,CAAC;YACX,OAAO;QACT,EAAE;IACV;IACA,SAAS,UAAU,QAAQ,EAAE,SAAS,EAAE,KAAK,EAAE,KAAK;QAClD,IAAK,IAAI,IAAI,GAAG,IAAI,UAAU,MAAM,EAAE,IAAK;YACzC,IAAI,WAAW,SAAS,CAAC,EAAE;YAC3B,eAAe,OAAO,WAClB,SAAS,SACT,iBAAiB,UAAU,UAAU,OAAO;QAClD;QACA,gBAAgB,UAAU;QAC1B,mCAAmC,OAAO;IAC5C;IACA,SAAS,YAAY,QAAQ,EAAE,SAAS,EAAE,KAAK;QAC7C,IAAK,IAAI,IAAI,GAAG,IAAI,UAAU,MAAM,EAAE,IAAK;YACzC,IAAI,WAAW,SAAS,CAAC,EAAE;YAC3B,eAAe,OAAO,WAClB,SAAS,SACT,gBAAgB,UAAU,SAAS,OAAO,EAAE;QAClD;IACF;IACA,SAAS,oBAAoB,aAAa,EAAE,SAAS;QACnD,IAAI,kBAAkB,UAAU,OAAO,CAAC,KAAK;QAC7C,IAAI,SAAS,iBAAiB,OAAO;QACrC,IAAI,oBAAoB,eAAe,OAAO,UAAU,OAAO;QAC/D,YAAY,gBAAgB,KAAK;QACjC,IAAI,SAAS,WACX,IACE,kBAAkB,GAClB,kBAAkB,UAAU,MAAM,EAClC,kBACA;YACA,IAAI,WAAW,SAAS,CAAC,gBAAgB;YACzC,IACE,eAAe,OAAO,YACtB,CAAC,AAAC,WAAW,oBAAoB,eAAe,WAChD,SAAS,QAAQ,GAEjB,OAAO;QACX;QACF,OAAO;IACT;IACA,SAAS,uBACP,QAAQ,EACR,KAAK,EACL,gBAAgB,EAChB,eAAe;QAEf,OAAQ,MAAM,MAAM;YAClB,KAAK;gBACH,UAAU,UAAU,kBAAkB,MAAM,KAAK,EAAE;gBACnD;YACF,KAAK;gBACH,IAAK,IAAI,IAAI,GAAG,IAAI,iBAAiB,MAAM,EAAE,IAAK;oBAChD,IAAI,WAAW,gBAAgB,CAAC,EAAE;oBAClC,IAAI,eAAe,OAAO,UAAU;wBAClC,IAAI,gBAAgB,oBAAoB,OAAO;wBAC/C,IAAI,SAAS,eACX,OACG,iBACC,UACA,UACA,cAAc,KAAK,EACnB,QAEF,iBAAiB,MAAM,CAAC,GAAG,IAC3B,KACA,SAAS,mBACP,CAAC,AAAC,WAAW,gBAAgB,OAAO,CAAC,WACrC,CAAC,MAAM,YAAY,gBAAgB,MAAM,CAAC,UAAU,EAAE,GACxD,MAAM,MAAM;4BAEZ,KAAK;gCACH,UAAU,UAAU,kBAAkB,MAAM,KAAK,EAAE;gCACnD;4BACF,KAAK;gCACH,SAAS,mBACP,YAAY,UAAU,iBAAiB,MAAM,MAAM;gCACrD;wBACJ;oBACJ;gBACF;YACF,KAAK;gBACH,IAAI,MAAM,KAAK,EACb,IAAK,WAAW,GAAG,WAAW,iBAAiB,MAAM,EAAE,WACrD,MAAM,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,SAAS;qBAC1C,MAAM,KAAK,GAAG;gBACnB,IAAI,MAAM,MAAM,EAAE;oBAChB,IAAI,iBACF,IACE,mBAAmB,GACnB,mBAAmB,gBAAgB,MAAM,EACzC,mBAEA,MAAM,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,iBAAiB;gBACzD,OAAO,MAAM,MAAM,GAAG;gBACtB;YACF,KAAK;gBACH,mBACE,YAAY,UAAU,iBAAiB,MAAM,MAAM;QACzD;IACF;IACA,SAAS,oBAAoB,QAAQ,EAAE,KAAK,EAAE,KAAK;QACjD,IAAI,cAAc,MAAM,MAAM,IAAI,cAAc,MAAM,MAAM,EAC1D,MAAM,MAAM,CAAC,KAAK,CAAC;aAChB;YACH,oBAAoB,UAAU;YAC9B,IAAI,YAAY,MAAM,MAAM;YAC5B,IAAI,cAAc,MAAM,MAAM,IAAI,QAAQ,MAAM,WAAW,EAAE;gBAC3D,IAAI,cAAc,qBAChB,YAAY;gBACd,sBAAsB;gBACtB,MAAM,MAAM,GAAG;gBACf,MAAM,KAAK,GAAG;gBACd,MAAM,MAAM,GAAG;gBACf,oBAAoB;gBACpB,IAAI;oBACF,qBAAqB,UAAU;gBACjC,SAAU;oBACP,sBAAsB,aACpB,oBAAoB;gBACzB;YACF;YACA,MAAM,MAAM,GAAG;YACf,MAAM,MAAM,GAAG;YACf,SAAS,aAAa,YAAY,UAAU,WAAW;QACzD;IACF;IACA,SAAS,yBAAyB,QAAQ,EAAE,KAAK;QAC/C,OAAO,IAAI,aAAa,kBAAkB,OAAO;IACnD;IACA,SAAS,kCAAkC,QAAQ,EAAE,KAAK,EAAE,IAAI;QAC9D,OAAO,IAAI,aACT,kBACA,CAAC,OAAO,0BAA0B,wBAAwB,IACxD,QACA,KACF;IAEJ;IACA,SAAS,2BAA2B,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI;QAC9D,kBACE,UACA,OACA,CAAC,OAAO,0BAA0B,wBAAwB,IACxD,QACA;IAEN;IACA,SAAS,kBAAkB,QAAQ,EAAE,KAAK,EAAE,KAAK;QAC/C,IAAI,cAAc,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,YAAY,CAAC;aACrD;YACH,oBAAoB,UAAU;YAC9B,IAAI,mBAAmB,MAAM,KAAK,EAChC,kBAAkB,MAAM,MAAM;YAChC,MAAM,MAAM,GAAG;YACf,MAAM,KAAK,GAAG;YACd,MAAM,MAAM,GAAG;YACf,SAAS,oBACP,CAAC,qBAAqB,QACtB,uBACE,UACA,OACA,kBACA,gBACD;QACL;IACF;IACA,SAAS,mBAAmB,QAAQ,EAAE,KAAK,EAAE,KAAK;QAChD,IAAI,cAAc,MAAM,MAAM,IAAI,cAAc,MAAM,MAAM,EAAE;YAC5D,oBAAoB,UAAU;YAC9B,IAAI,mBAAmB,MAAM,KAAK,EAChC,kBAAkB,MAAM,MAAM;YAChC,MAAM,MAAM,GAAG;YACf,MAAM,KAAK,GAAG;YACd,MAAM,MAAM,GAAG;YACf,QAAQ,KAAK,CAAC,EAAE;YAChB,IAAK,IAAI,YAAY,EAAE,EAAE,IAAI,GAAG,IAAI,MAAM,MAAM,EAAI;gBAClD,IAAI,gBAAgB,KAAK,CAAC,IAAI,EAC5B,OAAO,KAAK,GACZ,SAAS,WACT,SAAS,iBAAiB,GAAG,CAAC;gBAChC,IAAI,KAAK,MAAM,QAAQ;oBACrB,IAAI;wBACF,OAAO,IAAI,IAAI,eAAe,SAAS,OAAO,EAAE,IAAI;oBACtD,EAAE,OAAO,GAAG;wBACV,OAAO;oBACT;oBACA,IAAI,MAAO,SAAS,CAAC,GACnB,WAAW;oBACb,IAAI,eAAe,OAAO,YAAY,gBAAgB,EACpD,IACE,IAAI,kBAAkB,YAAY,gBAAgB,CAAC,aACjD,aAAa,GACf,aAAa,gBAAgB,MAAM,EACnC,aACA;wBACA,IAAI,gBAAgB,eAAe,CAAC,WAAW;wBAC/C,cAAc,IAAI,KAAK,QACrB,CAAC,AAAC,SAAS,cAAc,SAAS,EACjC,MAAM,SAAS,cAAc,QAAQ,EACrC,WAAW,cAAc,YAAY,IAAI,CAAE;oBAChD;oBACF,kBAAkB,QAAQ,OAAO,CAAC;oBAClC,gBAAgB,MAAM,GAAG;oBACzB,gBAAgB,KAAK,GAAG;oBACxB,aAAa,MAAM;oBACnB,WAAW,KAAK,CAAC,UAAU,CAAC,kCACvB,WAAW,KAAK,GACf,mEACA,OACA,4CACA,OACA,UACD,WAAW,KAAK,GACf,6BACA,OACA,mCACA,OACA;oBACN,SAAS;wBACP,MAAM;wBACN,OAAO;wBACP,KAAK;wBACL,OAAO;wBACP,YAAY;oBACd;oBACA,IAAI,YAAY,CAAC,OAAO,QAAQ,GAAG,QAAQ;oBAC3C,iBAAiB,GAAG,CAAC,eAAe;gBACtC;gBACA,OAAO,IAAI,CAAC;oBAAE,SAAS;gBAAO;YAChC;YACA,SAAS,aACP,MAAM,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,UAAU,EAAE;YAChD,SAAS,oBACP,CAAC,sBAAsB,QACvB,uBACE,UACA,OACA,kBACA,gBACD;QACL;IACF;IACA,SAAS,qBAAqB,QAAQ,EAAE,KAAK;QAC3C,IAAI,aAAa,MAAM,WAAW;QAClC,IAAI,SAAS,YAAY;YACvB,IAAI,YAAY,MAAM,UAAU;YAChC,IAAI;gBACF,IAAI,qBAAqB,WAAW,MAAM,EAAE;oBAC1C,IACE,IAAI,MAAM,UAAU,MAAM,EAAE,IAAI,WAAW,WAAW,EACtD,SAAS,GAGT,gBAAgB,EAAE,MAAM,IAAI,OAAQ,IAAI,EAAE,WAAW;oBACvD,qBAAqB;oBACrB,OAAQ,WAAW,MAAM;wBACvB,KAAK;4BACH,SAAS,CAAC,IAAI,GAAG,oBACf,UACA,WAAW,KAAK;4BAElB;wBACF,KAAK;wBACL,KAAK;4BACH,iBACE,YACA,WACA,KAAK,KACL,UACA,qBACA;gCAAC;6BAAG,EACJ,CAAC;4BAEH;wBACF;4BACE,MAAM,WAAW,MAAM;oBAC3B;gBACF,OACE,OAAQ,WAAW,MAAM;oBACvB,KAAK;wBACH;oBACF,KAAK;oBACL,KAAK;wBACH,iBACE,YACA,CAAC,GACD,SACA,UACA,qBACA;4BAAC;yBAAG,EACJ,CAAC;wBAEH;oBACF;wBACE,MAAM,WAAW,MAAM;gBAC3B;YACJ,EAAE,OAAO,OAAO;gBACd,oBAAoB,UAAU,OAAO;YACvC;QACF;IACF;IACA,SAAS,qBAAqB,KAAK;QACjC,IAAI,cAAc,qBAChB,YAAY;QACd,sBAAsB;QACtB,IAAI,gBAAgB,MAAM,KAAK,EAC7B,WAAW,MAAM,MAAM;QACzB,MAAM,MAAM,GAAG;QACf,MAAM,KAAK,GAAG;QACd,MAAM,MAAM,GAAG;QACf,oBAAoB;QACpB,qBAAqB,UAAU;QAC/B,IAAI;YACF,IAAI,QAAQ,KAAK,KAAK,CAAC,eAAe,SAAS,SAAS,GACtD,mBAAmB,MAAM,KAAK;YAChC,IAAI,SAAS,kBACX,IACE,MAAM,KAAK,GAAG,MAAM,MAAM,MAAM,GAAG,MAAM,gBAAgB,GACzD,gBAAgB,iBAAiB,MAAM,EACvC,gBACA;gBACA,IAAI,WAAW,gBAAgB,CAAC,cAAc;gBAC9C,eAAe,OAAO,WAClB,SAAS,SACT,iBAAiB,UAAU,UAAU,OAAO;YAClD;YACF,IAAI,SAAS,qBAAqB;gBAChC,IAAI,oBAAoB,OAAO,EAAE,MAAM,oBAAoB,MAAM;gBACjE,IAAI,IAAI,oBAAoB,IAAI,EAAE;oBAChC,oBAAoB,KAAK,GAAG;oBAC5B,oBAAoB,KAAK,GAAG;oBAC5B;gBACF;YACF;YACA,MAAM,MAAM,GAAG;YACf,MAAM,KAAK,GAAG;YACd,gBAAgB,UAAU;YAC1B,mCAAmC,OAAO;QAC5C,EAAE,OAAO,OAAO;YACb,MAAM,MAAM,GAAG,YAAc,MAAM,MAAM,GAAG;QAC/C,SAAU;YACP,sBAAsB,aAAe,oBAAoB;QAC5D;IACF;IACA,SAAS,sBAAsB,KAAK;QAClC,IAAI;YACF,IAAI,QAAQ,cAAc,MAAM,KAAK;YACrC,MAAM,MAAM,GAAG;YACf,MAAM,KAAK,GAAG;QAChB,EAAE,OAAO,OAAO;YACb,MAAM,MAAM,GAAG,YAAc,MAAM,MAAM,GAAG;QAC/C;IACF;IACA,SAAS,kBAAkB,YAAY,EAAE,KAAK;QAC5C,IAAI,KAAK,MAAM,aAAa,IAAI,CAAC,KAAK,IAAI;YACxC,IAAI,WAAW,mBAAmB;YAClC,SAAS,OAAO,GAAG,CAAC;YACpB,SAAS,aAAa,GAAG;YACzB,SAAS,OAAO,CAAC,OAAO,CAAC,SAAU,KAAK;gBACtC,cAAc,MAAM,MAAM,GACtB,oBAAoB,UAAU,OAAO,SACrC,gBAAgB,MAAM,MAAM,IAC5B,SAAS,MAAM,MAAM,IACrB,MAAM,MAAM,CAAC,KAAK,CAAC;YACzB;YACA,eAAe,SAAS,aAAa;YACrC,KAAK,MAAM,gBACT,CAAC,kBAAkB,eAClB,SAAS,aAAa,GAAG,KAAK,GAC/B,SAAS,wBACP,qBAAqB,UAAU,CAAC,SAAS;QAC/C;IACF;IACA,SAAS;QACP,OAAO;IACT;IACA,SAAS,YAAY,IAAI;QACvB,IAAI,SAAS,qBAAqB,OAAO;QACzC,IAAI,eAAe,OAAO,MAAM,OAAO;QACvC,IACE,aAAa,OAAO,QACpB,SAAS,QACT,KAAK,QAAQ,KAAK,iBAElB,OAAO,KAAK,KAAK,KAAK,YAAY,iBAAiB;QACrD,IAAI;YACF,IAAI,OAAO,yBAAyB;YACpC,OAAO,OAAO,MAAM,OAAO,MAAM;QACnC,EAAE,OAAO,GAAG;YACV,OAAO;QACT;IACF;IACA,SAAS,kBAAkB,QAAQ,EAAE,OAAO,EAAE,QAAQ;QACpD,IAAI,QAAQ,QAAQ,WAAW,EAC7B,QAAQ,QAAQ,MAAM;QACxB,SAAS,SAAS,CAAC,QAAQ,MAAM,GAAG,SAAS,eAAe;QAC5D,IAAI,MAAM,SAAS,oBAAoB;QACvC,SAAS,SAAS,QAAQ,MAAM,GAAG,IAAI,CAAC,MAAM,MAAM,GAAG;QACvD,IAAI,uBAAuB;QAC3B,SAAS,SAAS,QAAQ,SAAS,eAAe,GAC7C,uBAAuB,SAAS,eAAe,GAChD,SAAS,SACT,CAAC,uBAAuB,4BACtB,UACA,OACA,IACD;QACL,QAAQ,WAAW,GAAG;QACtB,uBAAuB;QACvB,sBACE,SAAS,SACT,CAAC,AAAC,uBAAuB,QAAQ,UAAU,CAAC,IAAI,CAC9C,SACA,YAAY,QAAQ,IAAI,IAEzB,QAAQ,mBACP,UACA,OACA,KACA,CAAC,GACD,uBAED,MAAM,SAAS,QAAQ,OAAO,mBAAmB,UAAU,QAC5D,SAAS,MACL,CAAC,AAAC,MAAM,SAAS,cAAc,EAC9B,uBAAuB,QAAQ,MAAM,IAAI,GAAG,CAAC,SAAS,OAAQ,IAC9D,uBAAuB,IAAI,GAAG,CAAC,MAAO;QAC7C,QAAQ,UAAU,GAAG;QACrB,SAAS,SAAS,oBAAoB,UAAU;QAChD,SAAS,YACP,CAAC,SAAS,MAAM,IACd,SAAS,MAAM,CAAC,SAAS,IACzB,CAAC,QAAQ,MAAM,CAAC,SAAS,IACzB,CAAC,QAAQ,MAAM,CAAC,SAAS,GAAG,SAAS,MAAM,CAAC,SAAS,GACvD,gBAAgB,SAAS,QAAQ,CAAC,MAAM,IACtC,SAAS,UAAU,IACnB,CAAC,AAAC,WAAW,SAAS,UAAU,CAAC,MAAM,CAAC,IACxC,QAAQ,UAAU,GACd,QAAQ,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,UAAU,EAAE,YACrD,OAAO,cAAc,CAAC,SAAS,cAAc;YAC3C,cAAc,CAAC;YACf,YAAY,CAAC;YACb,UAAU,CAAC;YACX,OAAO;QACT,EAAE,CAAC;QACX,OAAO,MAAM,CAAC,QAAQ,KAAK;IAC7B;IACA,SAAS,uBAAuB,KAAK,EAAE,SAAS;QAC9C,IAAI,WAAW;YACb,UAAU;YACV,UAAU;YACV,OAAO;QACT;QACA,SAAS,UAAU,GAAG,MAAM,UAAU;QACtC,SAAS,MAAM,GAAG;YAAE,WAAW;QAAU;QACzC,OAAO;IACT;IACA,SAAS,SAAS,QAAQ,EAAE,EAAE;QAC5B,IAAI,SAAS,SAAS,OAAO,EAC3B,QAAQ,OAAO,GAAG,CAAC;QACrB,SACE,CAAC,AAAC,QAAQ,SAAS,OAAO,GACtB,IAAI,aAAa,YAAY,MAAM,SAAS,aAAa,IACzD,mBAAmB,WACvB,OAAO,GAAG,CAAC,IAAI,MAAM;QACvB,OAAO;IACT;IACA,SAAS,iBAAiB,QAAQ,EAAE,SAAS,EAAE,KAAK,EAAE,cAAc;QAClE,IAAI,UAAU,UAAU,OAAO,EAC7B,eAAe,UAAU,YAAY,EACrC,MAAM,UAAU,GAAG,EACnB,MAAM,UAAU,GAAG,EACnB,OAAO,UAAU,IAAI;QACvB,IAAI;YACF,IAAK,IAAI,IAAI,GAAG,IAAI,KAAK,MAAM,EAAE,IAAK;gBACpC,MAEE,aAAa,OAAO,SACpB,SAAS,SACT,MAAM,QAAQ,KAAK,iBAEnB;oBACA,IAAI,kBAAkB,MAAM,QAAQ;oBACpC,IAAI,oBAAoB,QAAQ,KAAK,EAAE,QAAQ,QAAQ,KAAK;yBACvD;wBACH,OAAQ,gBAAgB,MAAM;4BAC5B,KAAK;gCACH,qBAAqB;gCACrB;4BACF,KAAK;gCACH,sBAAsB;wBAC1B;wBACA,OAAQ,gBAAgB,MAAM;4BAC5B,KAAK;gCACH,QAAQ,gBAAgB,KAAK;gCAC7B;4BACF,KAAK;gCACH,IAAI,gBAAgB,oBAClB,iBACA;gCAEF,IAAI,SAAS,eAAe;oCAC1B,QAAQ,cAAc,KAAK;oCAC3B;gCACF;4BACF,KAAK;gCACH,KAAK,MAAM,CAAC,GAAG,IAAI;gCACnB,SAAS,gBAAgB,KAAK,GACzB,gBAAgB,KAAK,GAAG;oCAAC;iCAAU,GACpC,gBAAgB,KAAK,CAAC,IAAI,CAAC;gCAC/B,SAAS,gBAAgB,MAAM,GAC1B,gBAAgB,MAAM,GAAG;oCAAC;iCAAU,GACrC,gBAAgB,MAAM,CAAC,IAAI,CAAC;gCAChC;4BACF,KAAK;gCACH;4BACF;gCACE,gBACE,UACA,UAAU,OAAO,EACjB,gBAAgB,MAAM;gCAExB;wBACJ;oBACF;gBACF;gBACA,IAAI,OAAO,IAAI,CAAC,EAAE;gBAClB,IACE,aAAa,OAAO,SACpB,SAAS,SACT,eAAe,IAAI,CAAC,OAAO,OAE3B,QAAQ,KAAK,CAAC,KAAK;qBAChB,MAAM,MAAM;YACnB;YACA,MAEE,aAAa,OAAO,SACpB,SAAS,SACT,MAAM,QAAQ,KAAK,iBAEnB;gBACA,IAAI,mBAAmB,MAAM,QAAQ;gBACrC,IAAI,qBAAqB,QAAQ,KAAK,EAAE,QAAQ,QAAQ,KAAK;qBACxD;oBACH,OAAQ,iBAAiB,MAAM;wBAC7B,KAAK;4BACH,qBAAqB;4BACrB;wBACF,KAAK;4BACH,sBAAsB;oBAC1B;oBACA,OAAQ,iBAAiB,MAAM;wBAC7B,KAAK;4BACH,QAAQ,iBAAiB,KAAK;4BAC9B;oBACJ;oBACA;gBACF;YACF;YACA,IAAI,cAAc,IAAI,UAAU,OAAO,cAAc;YACrD,gBAAgB,OAAO,CAAC,YAAY,CAAC,IAAI,GAAG,WAAW;YACvD,OAAO,OAAO,SAAS,QAAQ,KAAK,IAAI,CAAC,QAAQ,KAAK,GAAG,WAAW;YACpE,IACE,YAAY,CAAC,EAAE,KAAK,sBACpB,aAAa,OAAO,QAAQ,KAAK,IACjC,SAAS,QAAQ,KAAK,IACtB,QAAQ,KAAK,CAAC,QAAQ,KAAK,oBAC3B;gBACA,IAAI,UAAU,QAAQ,KAAK;gBAC3B,OAAQ;oBACN,KAAK;wBACH,4BAA4B,QAAQ,KAAK,EAAE;wBAC3C,QAAQ,KAAK,GAAG;wBAChB;oBACF,KAAK;wBACH,QAAQ,MAAM,GAAG;wBACjB;oBACF,KAAK;wBACH,QAAQ,WAAW,GAAG;wBACtB;oBACF;wBACE,4BAA4B,QAAQ,KAAK,EAAE;gBAC/C;YACF,OACE,UAAU,OAAO,IACf,4BAA4B,QAAQ,KAAK,EAAE;QACjD,EAAE,OAAO,OAAO;YACd,gBAAgB,UAAU,UAAU,OAAO,EAAE;YAC7C;QACF;QACA,QAAQ,IAAI;QACZ,MAAM,QAAQ,IAAI,IAChB,CAAC,AAAC,YAAY,QAAQ,KAAK,EAC3B,SAAS,aACP,cAAc,UAAU,MAAM,IAC9B,CAAC,AAAC,QAAQ,UAAU,KAAK,EACxB,UAAU,MAAM,GAAG,aACnB,UAAU,KAAK,GAAG,QAAQ,KAAK,EAC/B,UAAU,MAAM,GAAG,QAAQ,MAAM,EAClC,SAAS,QACL,UAAU,UAAU,OAAO,QAAQ,KAAK,EAAE,aAC1C,CAAC,AAAC,UAAU,QAAQ,KAAK,EACzB,gBAAgB,UAAU,YAC1B,mCAAmC,WAAW,QAAQ,CAAC,CAAC;IAClE;IACA,SAAS,gBAAgB,QAAQ,EAAE,OAAO,EAAE,KAAK;QAC/C,IAAI,CAAC,QAAQ,OAAO,EAAE;YACpB,IAAI,eAAe,QAAQ,KAAK;YAChC,QAAQ,OAAO,GAAG,CAAC;YACnB,QAAQ,KAAK,GAAG;YAChB,QAAQ,MAAM,GAAG;YACjB,UAAU,QAAQ,KAAK;YACvB,IAAI,SAAS,WAAW,cAAc,QAAQ,MAAM,EAAE;gBACpD,IACE,aAAa,OAAO,gBACpB,SAAS,gBACT,aAAa,QAAQ,KAAK,oBAC1B;oBACA,IAAI,mBAAmB;wBACrB,MAAM,yBAAyB,aAAa,IAAI,KAAK;wBACrD,OAAO,aAAa,MAAM;oBAC5B;oBACA,iBAAiB,UAAU,GAAG,aAAa,WAAW;oBACtD,sBACE,CAAC,iBAAiB,SAAS,GAAG,aAAa,UAAU;oBACvD,QAAQ,UAAU,CAAC,IAAI,CAAC;gBAC1B;gBACA,oBAAoB,UAAU,SAAS;YACzC;QACF;IACF;IACA,SAAS,iBACP,eAAe,EACf,YAAY,EACZ,GAAG,EACH,QAAQ,EACR,GAAG,EACH,IAAI,EACJ,mBAAmB;QAEnB,IACE,CAAC,CACC,AAAC,KAAK,MAAM,SAAS,aAAa,IAChC,SAAS,aAAa,CAAC,WAAW,IACpC,cAAc,gBAAgB,MAAM,IACpC,YAAY,CAAC,EAAE,KAAK,sBACnB,QAAQ,OAAO,QAAQ,GAC1B,GAEA,OAAO;QACT,sBACI,CAAC,AAAC,WAAW,qBAAsB,SAAS,IAAI,EAAE,IACjD,WAAW,sBACV;YACE,QAAQ;YACR,OAAO;YACP,OAAO;YACP,QAAQ;YACR,MAAM;YACN,SAAS,CAAC;QACZ;QACN,eAAe;YACb,SAAS;YACT,cAAc;YACd,KAAK;YACL,KAAK;YACL,MAAM;QACR;QACA,aAAa,OAAO,GAAG;QACvB,SAAS,gBAAgB,KAAK,GACzB,gBAAgB,KAAK,GAAG;YAAC;SAAa,GACvC,gBAAgB,KAAK,CAAC,IAAI,CAAC;QAC/B,SAAS,gBAAgB,MAAM,GAC1B,gBAAgB,MAAM,GAAG;YAAC;SAAa,GACxC,gBAAgB,MAAM,CAAC,IAAI,CAAC;QAChC,OAAO;IACT;IACA,SAAS,oBAAoB,QAAQ,EAAE,QAAQ,EAAE,YAAY,EAAE,GAAG;QAChE,IAAI,CAAC,SAAS,sBAAsB,EAClC,OAAO,2BACL,UACA,SAAS,WAAW,EACpB,SAAS,iBAAiB,EAC1B,SAAS,sBAAsB;QAEnC,IAAI,kBAAkB,uBAClB,SAAS,sBAAsB,EAC/B,SAAS,EAAE,GAEb,UAAU,cAAc;QAC1B,IAAI,SACF,SAAS,KAAK,IAAI,CAAC,UAAU,QAAQ,GAAG,CAAC;YAAC;YAAS,SAAS,KAAK;SAAC,CAAC;aAChE,IAAI,SAAS,KAAK,EAAE,UAAU,QAAQ,OAAO,CAAC,SAAS,KAAK;aAE/D,OACE,AAAC,UAAU,cAAc,kBACzB,6BAA6B,SAAS,SAAS,EAAE,EAAE,SAAS,KAAK,GACjE;QAEJ,IAAI,qBAAqB;YACvB,IAAI,UAAU;YACd,QAAQ,IAAI;QACd,OACE,UAAU,sBAAsB;YAC9B,QAAQ;YACR,OAAO;YACP,OAAO;YACP,QAAQ;YACR,MAAM;YACN,SAAS,CAAC;QACZ;QACF,QAAQ,IAAI,CACV;YACE,IAAI,gBAAgB,cAAc;YAClC,IAAI,SAAS,KAAK,EAAE;gBAClB,IAAI,YAAY,SAAS,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC;gBAC3C,UAAU,OAAO,CAAC;gBAClB,gBAAgB,cAAc,IAAI,CAAC,KAAK,CAAC,eAAe;YAC1D;YACA,6BACE,eACA,SAAS,EAAE,EACX,SAAS,KAAK;YAEhB,gBAAgB,OAAO,CAAC,YAAY,CAAC,IAAI,GAAG,aAAa;YACzD,OAAO,OACL,SAAS,QAAQ,KAAK,IACtB,CAAC,QAAQ,KAAK,GAAG,aAAa;YAChC,IACE,YAAY,CAAC,EAAE,KAAK,sBACpB,aAAa,OAAO,QAAQ,KAAK,IACjC,SAAS,QAAQ,KAAK,IACtB,QAAQ,KAAK,CAAC,QAAQ,KAAK,oBAE3B,OAAS,AAAC,YAAY,QAAQ,KAAK,EAAG;gBACpC,KAAK;oBACH,UAAU,KAAK,GAAG;oBAClB;gBACF,KAAK;oBACH,UAAU,MAAM,GAAG;YACvB;YACF,QAAQ,IAAI;YACZ,MAAM,QAAQ,IAAI,IAChB,CAAC,AAAC,gBAAgB,QAAQ,KAAK,EAC/B,SAAS,iBACP,cAAc,cAAc,MAAM,IAClC,CAAC,AAAC,YAAY,cAAc,KAAK,EAChC,cAAc,MAAM,GAAG,aACvB,cAAc,KAAK,GAAG,QAAQ,KAAK,EACnC,cAAc,MAAM,GAAG,MACxB,SAAS,YACL,UAAU,UAAU,WAAW,QAAQ,KAAK,EAAE,iBAC9C,CAAC,AAAC,YAAY,QAAQ,KAAK,EAC3B,gBAAgB,UAAU,gBAC1B,mCACE,eACA,UACD,CAAC,CAAC;QACb,GACA,SAAU,KAAK;YACb,IAAI,CAAC,QAAQ,OAAO,EAAE;gBACpB,IAAI,eAAe,QAAQ,KAAK;gBAChC,QAAQ,OAAO,GAAG,CAAC;gBACnB,QAAQ,KAAK,GAAG;gBAChB,QAAQ,MAAM,GAAG;gBACjB,IAAI,QAAQ,QAAQ,KAAK;gBACzB,IAAI,SAAS,SAAS,cAAc,MAAM,MAAM,EAAE;oBAChD,IACE,aAAa,OAAO,gBACpB,SAAS,gBACT,aAAa,QAAQ,KAAK,oBAC1B;wBACA,IAAI,mBAAmB;4BACrB,MAAM,yBAAyB,aAAa,IAAI,KAAK;4BACrD,OAAO,aAAa,MAAM;wBAC5B;wBACA,iBAAiB,UAAU,GAAG,aAAa,WAAW;wBACtD,sBACE,CAAC,iBAAiB,SAAS,GAAG,aAAa,UAAU;wBACvD,MAAM,UAAU,CAAC,IAAI,CAAC;oBACxB;oBACA,oBAAoB,UAAU,OAAO;gBACvC;YACF;QACF;QAEF,OAAO;IACT;IACA,SAAS,YAAY,KAAK;QACxB,MAEE,aAAa,OAAO,SACpB,SAAS,SACT,MAAM,QAAQ,KAAK,iBAEnB;YACA,IAAI,UAAU,MAAM,QAAQ;YAC5B,IAAI,gBAAgB,QAAQ,MAAM,EAAE,QAAQ,QAAQ,KAAK;iBACpD;QACP;QACA,OAAO;IACT;IACA,SAAS,4BAA4B,WAAW,EAAE,eAAe;QAC/D,IAAI,SAAS,aAAa;YACxB,kBAAkB,gBAAgB,UAAU;YAC5C,cAAc,YAAY,UAAU;YACpC,IAAK,IAAI,IAAI,GAAG,IAAI,gBAAgB,MAAM,EAAE,EAAE,EAAG;gBAC/C,IAAI,iBAAiB,eAAe,CAAC,EAAE;gBACvC,QAAQ,eAAe,IAAI,IAAI,YAAY,IAAI,CAAC;YAClD;QACF;IACF;IACA,SAAS,iBAAiB,QAAQ,EAAE,SAAS,EAAE,YAAY,EAAE,GAAG,EAAE,GAAG;QACnE,IAAI,OAAO,UAAU,KAAK,CAAC;QAC3B,YAAY,SAAS,IAAI,CAAC,EAAE,EAAE;QAC9B,YAAY,SAAS,UAAU;QAC/B,SAAS,qBACP,YAAY,kBAAkB,SAAS,KACvC,kBAAkB,SAAS,CAAC,IAAI,CAAC;QACnC,OAAQ,UAAU,MAAM;YACtB,KAAK;gBACH,qBAAqB;gBACrB;YACF,KAAK;gBACH,sBAAsB;QAC1B;QACA,OAAQ,UAAU,MAAM;YACtB,KAAK;gBACH,IAAK,IAAI,QAAQ,UAAU,KAAK,EAAE,IAAI,GAAG,IAAI,KAAK,MAAM,EAAE,IAAK;oBAC7D,MAEE,aAAa,OAAO,SACpB,SAAS,SACT,MAAM,QAAQ,KAAK,iBAEnB;wBACA,QAAQ,MAAM,QAAQ;wBACtB,OAAQ,MAAM,MAAM;4BAClB,KAAK;gCACH,qBAAqB;gCACrB;4BACF,KAAK;gCACH,sBAAsB;wBAC1B;wBACA,OAAQ,MAAM,MAAM;4BAClB,KAAK;gCACH,QAAQ,MAAM,KAAK;gCACnB;4BACF,KAAK;4BACL,KAAK;gCACH,OAAO,iBACL,OACA,cACA,KACA,UACA,KACA,KAAK,KAAK,CAAC,IAAI,IACf,CAAC;4BAEL,KAAK;gCACH,OACE,sBACI,CAAC,AAAC,eAAe,qBACjB,aAAa,IAAI,EAAE,IAClB,sBAAsB;oCACrB,QAAQ;oCACR,OAAO;oCACP,OAAO;oCACP,QAAQ;oCACR,MAAM;oCACN,SAAS,CAAC;gCACZ,GACJ;4BAEJ;gCACE,OACE,sBACI,CAAC,AAAC,oBAAoB,OAAO,GAAG,CAAC,GAChC,oBAAoB,KAAK,GAAG,MAC5B,oBAAoB,MAAM,GAAG,MAAM,MAAM,AAAC,IAC1C,sBAAsB;oCACrB,QAAQ;oCACR,OAAO;oCACP,OAAO;oCACP,QAAQ,MAAM,MAAM;oCACpB,MAAM;oCACN,SAAS,CAAC;gCACZ,GACJ;wBAEN;oBACF;oBACA,QAAQ,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC;gBACxB;gBACA,MAEE,aAAa,OAAO,SACpB,SAAS,SACT,MAAM,QAAQ,KAAK,iBAEnB;oBACA,OAAO,MAAM,QAAQ;oBACrB,OAAQ,KAAK,MAAM;wBACjB,KAAK;4BACH,qBAAqB;4BACrB;wBACF,KAAK;4BACH,sBAAsB;oBAC1B;oBACA,OAAQ,KAAK,MAAM;wBACjB,KAAK;4BACH,QAAQ,KAAK,KAAK;4BAClB;oBACJ;oBACA;gBACF;gBACA,WAAW,IAAI,UAAU,OAAO,cAAc;gBAC9C,CAAC,YAAY,CAAC,EAAE,KAAK,sBAClB,QAAQ,OAAO,QAAQ,GAAI,KAC5B,4BAA4B,mBAAmB;gBACjD,OAAO;YACT,KAAK;YACL,KAAK;gBACH,OAAO,iBACL,WACA,cACA,KACA,UACA,KACA,MACA,CAAC;YAEL,KAAK;gBACH,OACE,sBACI,CAAC,AAAC,eAAe,qBAAsB,aAAa,IAAI,EAAE,IACzD,sBAAsB;oBACrB,QAAQ;oBACR,OAAO;oBACP,OAAO;oBACP,QAAQ;oBACR,MAAM;oBACN,SAAS,CAAC;gBACZ,GACJ;YAEJ;gBACE,OACE,sBACI,CAAC,AAAC,oBAAoB,OAAO,GAAG,CAAC,GAChC,oBAAoB,KAAK,GAAG,MAC5B,oBAAoB,MAAM,GAAG,UAAU,MAAM,AAAC,IAC9C,sBAAsB;oBACrB,QAAQ;oBACR,OAAO;oBACP,OAAO;oBACP,QAAQ,UAAU,MAAM;oBACxB,MAAM;oBACN,SAAS,CAAC;gBACZ,GACJ;QAEN;IACF;IACA,SAAS,UAAU,QAAQ,EAAE,KAAK;QAChC,OAAO,IAAI,IAAI;IACjB;IACA,SAAS,UAAU,QAAQ,EAAE,KAAK;QAChC,OAAO,IAAI,IAAI;IACjB;IACA,SAAS,WAAW,QAAQ,EAAE,KAAK;QACjC,OAAO,IAAI,KAAK,MAAM,KAAK,CAAC,IAAI;YAAE,MAAM,KAAK,CAAC,EAAE;QAAC;IACnD;IACA,SAAS,eAAe,QAAQ,EAAE,KAAK;QACrC,WAAW,IAAI;QACf,IAAK,IAAI,IAAI,GAAG,IAAI,MAAM,MAAM,EAAE,IAChC,SAAS,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,EAAE,KAAK,CAAC,EAAE,CAAC,EAAE;QAC1C,OAAO;IACT;IACA,SAAS,iBAAiB,QAAQ,EAAE,KAAK,EAAE,YAAY;QACrD,OAAO,cAAc,CAAC,cAAc,MAAM,SAAS;IACrD;IACA,SAAS,iBAAiB,QAAQ,EAAE,KAAK,EAAE,YAAY,EAAE,GAAG;QAC1D,gBAAgB,OACd,OAAO,cAAc,CAAC,cAAc,KAAK;YACvC,KAAK;gBACH,qBAAqB,MAAM,MAAM,IAAI,qBAAqB;gBAC1D,OAAQ,MAAM,MAAM;oBAClB,KAAK;wBACH,OAAO,MAAM,KAAK;oBACpB,KAAK;wBACH,MAAM,MAAM,MAAM;gBACtB;gBACA,OAAO;YACT;YACA,YAAY,CAAC;YACb,cAAc,CAAC;QACjB;QACF,OAAO;IACT;IACA,SAAS,gBAAgB,QAAQ,EAAE,KAAK;QACtC,OAAO,KAAK,CAAC,OAAO,QAAQ,CAAC;IAC/B;IACA,SAAS,YAAY,QAAQ,EAAE,KAAK;QAClC,OAAO;IACT;IACA,SAAS,+BAA+B,IAAI;QAC1C,OAAO,KAAK,UAAU,CAAC,4BACnB,KAAK,KAAK,CAAC,MACX,KAAK,UAAU,CAAC,OACd,KAAK,KAAK,CAAC,KACX;QACN,IAAI,KAAK,UAAU,CAAC,mBAAmB;YACrC,IAAI,MAAM,KAAK,OAAO,CAAC,KAAK;YAC5B,IAAI,CAAC,MAAM,KACT,OACE,AAAC,OAAO,KAAK,KAAK,CAAC,IAAI,KAAK,IAAI,IAChC,CAAC,GAAG,IAAI,EAAE,OAAO,KAAK,SAAS,CAAC,QAAQ,wBAAwB,CAC9D,KACD;QAEP,OAAO,IAAI,KAAK,UAAU,CAAC,aAAa;YACtC,IAAK,AAAC,MAAM,KAAK,OAAO,CAAC,KAAK,IAAK,CAAC,MAAM,KACxC,OACE,AAAC,OAAO,KAAK,KAAK,CAAC,GAAG,KAAK,IAAI,IAC/B,CAAC,GAAG,IAAI,EAAE,OAAO,KAAK,SAAS,CAAC,QAAQ,kBAAkB,CAAC,KAAK;QAEtE,OAAO,IACL,KAAK,UAAU,CAAC,YAChB,CAAC,AAAC,MAAM,KAAK,OAAO,CAAC,KAAK,IAAK,CAAC,MAAM,GAAG,GAEzC,OACE,AAAC,OAAO,KAAK,KAAK,CAAC,GAAG,KAAK,IAAI,IAC/B,CAAC,GAAG,IAAI,EAAE,OAAO,KAAK,SAAS,CAAC,QAAQ,aAAa,CAAC,KAAK;QAE/D,OAAO,YAAa;IACtB;IACA,SAAS,iBAAiB,QAAQ,EAAE,YAAY,EAAE,GAAG,EAAE,KAAK;QAC1D,IAAI,QAAQ,KAAK,CAAC,EAAE,EAAE;YACpB,IAAI,QAAQ,OACV,OACE,SAAS,uBACP,QAAQ,OACR,CAAC,sBAAsB;gBACrB,QAAQ;gBACR,OAAO;gBACP,OAAO;gBACP,QAAQ;gBACR,MAAM;gBACN,SAAS,CAAC;YACZ,CAAC,GACH;YAEJ,OAAQ,KAAK,CAAC,EAAE;gBACd,KAAK;oBACH,OAAO,MAAM,KAAK,CAAC;gBACrB,KAAK;oBACH,OACE,AAAC,eAAe,SAAS,MAAM,KAAK,CAAC,IAAI,KACxC,WAAW,SAAS,UAAU,eAC/B,SAAS,qBACP,YAAY,kBAAkB,SAAS,KACvC,kBAAkB,SAAS,CAAC,IAAI,CAAC,WACnC,uBAAuB,UAAU;gBAErC,KAAK;oBACH,OACE,AAAC,eAAe,SAAS,MAAM,KAAK,CAAC,IAAI,KACxC,WAAW,SAAS,UAAU,eAC/B,SAAS,qBACP,YAAY,kBAAkB,SAAS,KACvC,kBAAkB,SAAS,CAAC,IAAI,CAAC,WACnC;gBAEJ,KAAK;oBACH,OAAO,OAAO,GAAG,CAAC,MAAM,KAAK,CAAC;gBAChC,KAAK;oBACH,IAAI,MAAM,MAAM,KAAK,CAAC;oBACtB,OAAO,iBACL,UACA,KACA,cACA,KACA;gBAEJ,KAAK;oBACH,eAAe,MAAM,MAAM,KAAK,CAAC;oBACjC,WAAW,SAAS,SAAS;oBAC7B,IAAI,QAAQ,UACV,MAAM,MACJ;oBAEJ,OAAO,SAAS,GAAG,CAAC;gBACtB,KAAK;oBACH,OACE,AAAC,MAAM,MAAM,KAAK,CAAC,IACnB,iBAAiB,UAAU,KAAK,cAAc,KAAK;gBAEvD,KAAK;oBACH,OACE,AAAC,MAAM,MAAM,KAAK,CAAC,IACnB,iBAAiB,UAAU,KAAK,cAAc,KAAK;gBAEvD,KAAK;oBACH,OACE,AAAC,MAAM,MAAM,KAAK,CAAC,IACnB,iBAAiB,UAAU,KAAK,cAAc,KAAK;gBAEvD,KAAK;oBACH,OACE,AAAC,MAAM,MAAM,KAAK,CAAC,IACnB,iBAAiB,UAAU,KAAK,cAAc,KAAK;gBAEvD,KAAK;oBACH,OACE,AAAC,MAAM,MAAM,KAAK,CAAC,IACnB,iBACE,UACA,KACA,cACA,KACA;gBAGN,KAAK;oBACH,OACE,AAAC,MAAM,MAAM,KAAK,CAAC,IACnB,iBACE,UACA,KACA,cACA,KACA;gBAGN,KAAK;oBACH,OAAO;gBACT,KAAK;oBACH,OAAO,UAAU,QAAQ,CAAC,IAAI,CAAC;gBACjC,KAAK;oBACH,OAAO;gBACT,KAAK;oBACH;gBACF,KAAK;oBACH,OAAO,IAAI,KAAK,KAAK,KAAK,CAAC,MAAM,KAAK,CAAC;gBACzC,KAAK;oBACH,OAAO,OAAO,MAAM,KAAK,CAAC;gBAC5B,KAAK;oBACH,OACE,AAAC,MAAM,MAAM,KAAK,CAAC,IACnB,iBACE,UACA,KACA,cACA,KACA;gBAGN,KAAK;oBACH,WAAW,MAAM,KAAK,CAAC;oBACvB,IAAI;wBACF,IAAI,CAAC,2BAA2B,IAAI,CAAC,WACnC,OAAO,CAAC,GAAG,IAAI,EAAE;oBACrB,EAAE,OAAO,GAAG,CAAC;oBACb,IAAI;wBACF,IACG,AAAC,MAAM,+BAA+B,WACvC,SAAS,UAAU,CAAC,2BACpB;4BACA,IAAI,MAAM,SAAS,WAAW,CAAC;4BAC/B,IAAI,CAAC,MAAM,KAAK;gCACd,IAAI,OAAO,KAAK,KAAK,CACnB,SAAS,KAAK,CAAC,MAAM,KAAK,GAAG,SAAS,MAAM,GAAG;gCAEjD,OAAO,cAAc,CAAC,KAAK,QAAQ;oCAAE,OAAO;gCAAK;4BACnD;wBACF;oBACF,EAAE,OAAO,GAAG;wBACV,MAAM,YAAa;oBACrB;oBACA,OAAO;gBACT,KAAK;oBACH,IACE,IAAI,MAAM,MAAM,IAChB,CAAC,MAAM,SAAS,aAAa,IAAI,SAAS,aAAa,CAAC,QAAQ,GAChE;wBACA,IAAI,QAAQ,KAAK,CAAC,EAAE,EAClB,OACE,AAAC,eAAe,MAAM,KAAK,CAAC,IAC3B,MAAM,SAAS,cAAc,KAC9B,SAAS,OAAO,CAAC,GAAG,CAAC,QAAQ,IAAI,OAAO,eACxC,SAAS,UAAU;wBAEvB,QAAQ,MAAM,KAAK,CAAC;wBACpB,MAAM,SAAS,OAAO;wBACtB,SAAS,OAAO,CAAC,GAAG,CAAC,QAAQ,IAAI,OAAO;wBACxC,MAAM,SAAS,UAAU;wBACzB,OAAO,gBAAgB,IAAI,MAAM,GAC7B,IAAI,KAAK,GACT,iBAAiB,UAAU,KAAK,cAAc;oBACpD;oBACA,gBAAgB,OACd,OAAO,cAAc,CAAC,cAAc,KAAK;wBACvC,KAAK;4BACH,OAAO;wBACT;wBACA,YAAY,CAAC;wBACb,cAAc,CAAC;oBACjB;oBACF,OAAO;gBACT;oBACE,OACE,AAAC,MAAM,MAAM,KAAK,CAAC,IACnB,iBAAiB,UAAU,KAAK,cAAc,KAAK;YAEzD;QACF;QACA,OAAO;IACT;IACA,SAAS;QACP,MAAM,MACJ;IAEJ;IACA,SAAS;QACP,IAAI,CAAC,eAAe,GAAG,CAAC;IAC1B;IACA,SAAS,iBACP,aAAa,EACb,qBAAqB,EACrB,aAAa,EACb,UAAU,EACV,gBAAgB,EAChB,KAAK,EACL,mBAAmB,EACnB,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY;QAEZ,IAAI,SAAS,IAAI;QACjB,IAAI,CAAC,cAAc,GAAG;QACtB,IAAI,CAAC,sBAAsB,GAAG;QAC9B,IAAI,CAAC,cAAc,GAAG;QACtB,IAAI,CAAC,WAAW,GAAG,KAAK,MAAM,aAAa,aAAa;QACxD,IAAI,CAAC,iBAAiB,GAAG;QACzB,IAAI,CAAC,MAAM,GAAG;QACd,IAAI,CAAC,OAAO,GAAG;QACf,IAAI,CAAC,cAAc,GAAG,IAAI;QAC1B,IAAI,CAAC,SAAS,GAAG;QACjB,IAAI,CAAC,OAAO,GAAG,CAAC;QAChB,IAAI,CAAC,aAAa,GAAG;QACrB,IAAI,CAAC,SAAS,GAAG;QACjB,IAAI,CAAC,WAAW,GAAG;QACnB,IAAI,CAAC,qBAAqB,GAAG;QAC7B,IAAI,CAAC,cAAc,GAAG;QACtB,IAAI,CAAC,aAAa,GAAG;YAAE,MAAM,IAAI,QAAQ,IAAI;YAAG,UAAU,IAAI;QAAC;QAC/D,IAAI,CAAC,eAAe,GAAG,gBACrB,KAAK,MAAM,6BACX,SAAS,0BAA0B,CAAC,GAChC,OACA,0BAA0B,CAAC,CAAC,QAAQ;QAC1C,IAAI,CAAC,eAAe,GAClB,SAAS,gBAAgB,MAAM,2BAA2B;QAC5D,kBAAkB,KAAK,MAAM,kBAAkB,WAAW;QAC1D,sBACE,CAAC,IAAI,CAAC,cAAc,GAAG,QAAQ,UAAU,CACvC,UAAU,gBAAgB,WAAW,KAAK,IAC3C;QACH,IAAI,CAAC,eAAe,GAClB,QAAQ,iBAAiB,YAAY,GAAG,KAAK;QAC/C,IAAI,CAAC,eAAe,GAAG,CAAC;QACxB,WAAW,cAAc,IAAI,CAAC,IAAI,GAAG;QACrC,IAAI,CAAC,aAAa,GAAG,QAAQ,eAAe,OAAO;QACnD,IAAI,CAAC,sBAAsB,GAAG;QAC9B,IAAI,CAAC,aAAa,GAAG;QACrB,IAAI,CAAC,eAAe,GAAG;QACvB,IAAI,CAAC,cAAc,GAAG;QACtB,IAAI,CAAC,oBAAoB,GAAG;QAC5B,gBACE,CAAC,SAAS,uBACN,CAAC,kBAAkB,eAAgB,IAAI,CAAC,aAAa,GAAG,KAAK,CAAE,IAC/D,qBAAqB,QAAQ,CAAC,IAAI,EAAE,cAAc,IAAI,CAAC;QAC7D,iBAAiB;QACjB,IAAI,CAAC,SAAS,GAAG,uBAAuB,IAAI;IAC9C;IACA,SAAS,kBAAkB,YAAY,EAAE,gBAAgB;QACvD,IAAI,cAAc;YAChB,WAAW;YACX,QAAQ;YACR,SAAS;YACT,YAAY;YACZ,SAAS,EAAE;QACb;QACA,eAAe,mBAAmB;QAClC,IAAI,oBAAoB,QAAQ,OAAO,CAAC;QACxC,kBAAkB,MAAM,GAAG;QAC3B,kBAAkB,KAAK,GAAG;QAC1B,YAAY,UAAU,GAAG;YACvB,MAAM;YACN,OAAO,aAAa,eAAe;YACnC,KAAK,aAAa,eAAe;YACjC,UAAU;YACV,OAAO;YACP,OAAO,aAAa,eAAe;YACnC,YAAY,aAAa,eAAe;YACxC,WAAW,aAAa,cAAc;QACxC;QACA,YAAY,qBAAqB,GAAG;QACpC,OAAO;IACT;IACA,SAAS,wBAAwB,WAAW,EAAE,WAAW;QACvD,IAAI,YAAY,YAAY,UAAU,EACpC,UAAU,YAAY,GAAG,IACzB,kBAAkB,UAAU,GAAG;QACjC,cAAc,UAAU,QAAQ,GAAG;QACnC,cAAc,YAAY,qBAAqB,IAC/C,UAAU,kBAAkB,KACxB,CAAC,AAAC,YAAY,UAAU,GAAG;YACzB,MAAM,UAAU,IAAI;YACpB,OAAO,UAAU,KAAK;YACtB,KAAK;YACL,UAAU;YACV,OAAO,UAAU,KAAK;YACtB,OAAO,UAAU,KAAK;YACtB,YAAY,UAAU,UAAU;YAChC,WAAW,UAAU,SAAS;QAChC,GACC,YAAY,qBAAqB,GAAG,cAAc,cAAe,IAClE,CAAC,AAAC,UAAU,GAAG,GAAG,SAAW,UAAU,QAAQ,GAAG,WAAY;IACpE;IACA,SAAS,aAAa,KAAK,EAAE,SAAS;QACpC,IAAI,QAAQ,YAAY,MAAM,KAAK;QACnC,aAAa,OAAO,SACpB,SAAS,SACR,CAAC,YAAY,UACZ,eAAe,OAAO,KAAK,CAAC,eAAe,IAC3C,MAAM,QAAQ,KAAK,sBACnB,MAAM,QAAQ,KAAK,kBACjB,MAAM,UAAU,CAAC,IAAI,CAAC,aACtB,YAAY,MAAM,UAAU,IAC1B,MAAM,UAAU,CAAC,IAAI,CAAC,aACtB,OAAO,cAAc,CAAC,OAAO,cAAc;YACzC,cAAc,CAAC;YACf,YAAY,CAAC;YACb,UAAU,CAAC;YACX,OAAO;gBAAC;aAAU;QACpB;IACR;IACA,SAAS,sBAAsB,QAAQ,EAAE,WAAW,EAAE,KAAK;QACzD,SAAS,eAAe,IACtB,CAAC,AAAC,WAAW;YAAE,SAAS,YAAY,UAAU;QAAC,GAC/C,cAAc,MAAM,MAAM,IAAI,cAAc,MAAM,MAAM,GACpD,CAAC,AAAC,WAAW,aAAa,IAAI,CAAC,MAAM,OAAO,WAC5C,MAAM,IAAI,CAAC,UAAU,SAAS,IAC9B,aAAa,OAAO,SAAS;IACrC;IACA,SAAS,cAAc,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,WAAW;QACtD,IAAI,SAAS,SAAS,OAAO,EAC3B,QAAQ,OAAO,GAAG,CAAC;QACrB,SAAS,cAAc,MAAM,MAAM,GAC/B,MAAM,MAAM,CAAC,YAAY,CAAC,UAC1B,CAAC,SAAS,oBAAoB,UAAU,QACvC,SAAS,IAAI,aAAa,aAAa,QAAQ,OAChD,sBAAsB,UAAU,aAAa,SAC7C,OAAO,GAAG,CAAC,IAAI,OAAO;IAC5B;IACA,SAAS,cAAc,QAAQ,EAAE,EAAE,EAAE,KAAK,EAAE,WAAW;QACrD,IAAI,SAAS,SAAS,OAAO,EAC3B,QAAQ,OAAO,GAAG,CAAC;QACrB,QAAQ,KAAK,KAAK,CAAC,OAAO,SAAS,SAAS;QAC5C,IAAI,kBAAkB,uBACpB,SAAS,cAAc,EACvB;QAEF,IAAK,QAAQ,cAAc,kBAAmB;YAC5C,IAAI,OAAO;gBACT,oBAAoB,UAAU;gBAC9B,IAAI,eAAe;gBACnB,aAAa,MAAM,GAAG;YACxB,OACE,AAAC,eAAe,IAAI,aAAa,WAAW,MAAM,OAChD,OAAO,GAAG,CAAC,IAAI;YACnB,sBAAsB,UAAU,aAAa;YAC7C,MAAM,IAAI,CACR;gBACE,OAAO,mBAAmB,UAAU,cAAc;YACpD,GACA,SAAU,KAAK;gBACb,OAAO,oBAAoB,UAAU,cAAc;YACrD;QAEJ,OACE,QACI,CAAC,sBAAsB,UAAU,aAAa,QAC9C,mBAAmB,UAAU,OAAO,gBAAgB,IACpD,CAAC,AAAC,QAAQ,IAAI,aACZ,mBACA,iBACA,OAEF,sBAAsB,UAAU,aAAa,QAC7C,OAAO,GAAG,CAAC,IAAI,MAAM;IAC7B;IACA,SAAS,cAAc,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,UAAU,EAAE,WAAW;QAClE,IAAI,SAAS,SAAS,OAAO,EAC3B,QAAQ,OAAO,GAAG,CAAC;QACrB,IAAI,OAAO;YACT,IACG,sBAAsB,UAAU,aAAa,QAC9C,cAAc,MAAM,MAAM,EAC1B;gBACA,KAAK,MAAM,KAAK;gBAChB,IAAI,QAAQ,MAAM,WAAW,EAAE;oBAC7B,cAAc;oBACd,SAAS;oBACT,sBAAsB;oBACtB,MAAM,MAAM,GAAG;oBACf,MAAM,KAAK,GAAG;oBACd,MAAM,MAAM,GAAG;oBACf,oBAAoB;oBACpB,IAAI;wBACF,IACG,qBAAqB,UAAU,QAChC,SAAS,uBACP,CAAC,oBAAoB,OAAO,IAC5B,IAAI,oBAAoB,IAAI,EAC9B;4BACA,oBAAoB,KAAK,GAAG;4BAC5B,oBAAoB,MAAM,GAAG;4BAC7B,oBAAoB,KAAK,GAAG;4BAC5B;wBACF;oBACF,SAAU;wBACP,sBAAsB,aAAe,oBAAoB;oBAC5D;gBACF;gBACA,MAAM,MAAM,GAAG;gBACf,MAAM,KAAK,GAAG;gBACd,MAAM,MAAM,GAAG;gBACf,SAAS,KACL,UAAU,UAAU,IAAI,MAAM,KAAK,EAAE,SACrC,CAAC,gBAAgB,UAAU,QAC3B,mCAAmC,OAAO,OAAO;YACvD;QACF,OACE,MAAM,SAAS,cAAc,MAC3B,CAAC,SAAS,aAAa,CAAC,QAAQ,GAAG,QAAQ,GAC1C,SAAS,IAAI,aAAa,aAAa,QAAQ,aAChD,sBAAsB,UAAU,aAAa,SAC7C,OAAO,GAAG,CAAC,IAAI;IACrB;IACA,SAAS,oBAAoB,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,WAAW;QAC1D,IAAI,aAAa,MACf,SAAS,CAAC;QACZ,OAAO,IAAI,eAAe;YACxB,MAAM;YACN,OAAO,SAAU,CAAC;gBAChB,aAAa;YACf;QACF;QACA,IAAI,uBAAuB;QAC3B,cACE,UACA,IACA,MACA;YACE,cAAc,SAAU,KAAK;gBAC3B,SAAS,uBACL,WAAW,OAAO,CAAC,SACnB,qBAAqB,IAAI,CAAC;oBACxB,WAAW,OAAO,CAAC;gBACrB;YACN;YACA,cAAc,SAAU,IAAI;gBAC1B,IAAI,SAAS,sBAAsB;oBACjC,IAAI,QAAQ,yBAAyB,UAAU;oBAC/C,qBAAqB;oBACrB,gBAAgB,MAAM,MAAM,GACxB,WAAW,OAAO,CAAC,MAAM,KAAK,IAC9B,CAAC,MAAM,IAAI,CACT,SAAU,CAAC;wBACT,OAAO,WAAW,OAAO,CAAC;oBAC5B,GACA,SAAU,CAAC;wBACT,OAAO,WAAW,KAAK,CAAC;oBAC1B,IAED,uBAAuB,KAAM;gBACpC,OAAO;oBACL,QAAQ;oBACR,IAAI,UAAU,mBAAmB;oBACjC,QAAQ,IAAI,CACV,SAAU,CAAC;wBACT,OAAO,WAAW,OAAO,CAAC;oBAC5B,GACA,SAAU,CAAC;wBACT,OAAO,WAAW,KAAK,CAAC;oBAC1B;oBAEF,uBAAuB;oBACvB,MAAM,IAAI,CAAC;wBACT,yBAAyB,WACvB,CAAC,uBAAuB,IAAI;wBAC9B,kBAAkB,UAAU,SAAS;oBACvC;gBACF;YACF;YACA,OAAO;gBACL,IAAI,CAAC,QACH,IAAK,AAAC,SAAS,CAAC,GAAI,SAAS,sBAC3B,WAAW,KAAK;qBACb;oBACH,IAAI,eAAe;oBACnB,uBAAuB;oBACvB,aAAa,IAAI,CAAC;wBAChB,OAAO,WAAW,KAAK;oBACzB;gBACF;YACJ;YACA,OAAO,SAAU,KAAK;gBACpB,IAAI,CAAC,QACH,IAAK,AAAC,SAAS,CAAC,GAAI,SAAS,sBAC3B,WAAW,KAAK,CAAC;qBACd;oBACH,IAAI,eAAe;oBACnB,uBAAuB;oBACvB,aAAa,IAAI,CAAC;wBAChB,OAAO,WAAW,KAAK,CAAC;oBAC1B;gBACF;YACJ;QACF,GACA;IAEJ;IACA,SAAS;QACP,OAAO,IAAI;IACb;IACA,SAAS,eAAe,IAAI;QAC1B,OAAO;YAAE,MAAM;QAAK;QACpB,IAAI,CAAC,eAAe,GAAG;QACvB,OAAO;IACT;IACA,SAAS,mBAAmB,QAAQ,EAAE,EAAE,EAAE,QAAQ,EAAE,WAAW;QAC7D,IAAI,SAAS,EAAE,EACb,SAAS,CAAC,GACV,iBAAiB,GACjB,WAAW,CAAC;QACd,QAAQ,CAAC,eAAe,GAAG;YACzB,IAAI,gBAAgB;YACpB,OAAO,eAAe,SAAU,GAAG;gBACjC,IAAI,KAAK,MAAM,KACb,MAAM,MACJ;gBAEJ,IAAI,kBAAkB,OAAO,MAAM,EAAE;oBACnC,IAAI,QACF,OAAO,IAAI,aACT,aACA;wBAAE,MAAM,CAAC;wBAAG,OAAO,KAAK;oBAAE,GAC1B;oBAEJ,MAAM,CAAC,cAAc,GAAG,mBAAmB;gBAC7C;gBACA,OAAO,MAAM,CAAC,gBAAgB;YAChC;QACF;QACA,cACE,UACA,IACA,WAAW,QAAQ,CAAC,eAAe,KAAK,UACxC;YACE,cAAc,SAAU,KAAK;gBAC3B,IAAI,mBAAmB,OAAO,MAAM,EAClC,MAAM,CAAC,eAAe,GAAG,IAAI,aAC3B,aACA;oBAAE,MAAM,CAAC;oBAAG,OAAO;gBAAM,GACzB;qBAEC;oBACH,IAAI,QAAQ,MAAM,CAAC,eAAe,EAChC,mBAAmB,MAAM,KAAK,EAC9B,kBAAkB,MAAM,MAAM;oBAChC,MAAM,MAAM,GAAG;oBACf,MAAM,KAAK,GAAG;wBAAE,MAAM,CAAC;wBAAG,OAAO;oBAAM;oBACvC,MAAM,MAAM,GAAG;oBACf,SAAS,oBACP,uBACE,UACA,OACA,kBACA;gBAEN;gBACA;YACF;YACA,cAAc,SAAU,KAAK;gBAC3B,mBAAmB,OAAO,MAAM,GAC3B,MAAM,CAAC,eAAe,GAAG,kCACxB,UACA,OACA,CAAC,KAEH,2BACE,UACA,MAAM,CAAC,eAAe,EACtB,OACA,CAAC;gBAEP;YACF;YACA,OAAO,SAAU,KAAK;gBACpB,IAAI,CAAC,QACH,IACE,SAAS,CAAC,GACR,mBAAmB,OAAO,MAAM,GAC3B,MAAM,CAAC,eAAe,GACrB,kCAAkC,UAAU,OAAO,CAAC,KACtD,2BACE,UACA,MAAM,CAAC,eAAe,EACtB,OACA,CAAC,IAEP,kBACF,iBAAiB,OAAO,MAAM,EAG9B,2BACE,UACA,MAAM,CAAC,iBAAiB,EACxB,gBACA,CAAC;YAET;YACA,OAAO,SAAU,KAAK;gBACpB,IAAI,CAAC,QACH,IACE,SAAS,CAAC,GACR,mBAAmB,OAAO,MAAM,IAC9B,CAAC,MAAM,CAAC,eAAe,GAAG,mBAAmB,SAAS,GAC1D,iBAAiB,OAAO,MAAM,EAG9B,oBAAoB,UAAU,MAAM,CAAC,iBAAiB,EAAE;YAC9D;QACF,GACA;IAEJ;IACA,SAAS,gBAAgB,QAAQ,EAAE,SAAS;QAC1C,IAAI,OAAO,UAAU,IAAI,EACvB,MAAM,UAAU,GAAG;QACrB,IAAI,QAAQ,mBACV,UACA,UAAU,KAAK,EACf,KACA,CAAC,GACD,MAAM,IAAI,CACR,MACA,UAAU,OAAO,IACf;QAGN,IAAI,YAAY;QAChB,QAAQ,UAAU,KAAK,IACrB,CAAC,AAAC,YAAY,UAAU,KAAK,CAAC,KAAK,CAAC,IACnC,YAAY,iBACX,UACA,WACA,CAAC,GACD,IACA,cAEF,SAAS,aACP,CAAC,YAAY,mBAAmB,UAAU,UAAU,CAAC;QACzD,SAAS,YACL,CAAC,AAAC,WAAW,YAAY,UAAU,MAClC,QAAQ,QAAQ,WAAW,SAAS,GAAG,CAAC,SAAS,OAAQ,IACzD,QAAQ,UAAU,GAAG,CAAC;QAC3B,MAAM,IAAI,GAAG;QACb,MAAM,eAAe,GAAG;QACxB,OAAO;IACT;IACA,SAAS,mBACP,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,IAAI,EACJ,GAAG,EACH,aAAa,EACb,YAAY,EACZ,eAAe;QAEf,QAAQ,CAAC,OAAO,aAAa;QAC7B,IAAI,cAAc,KAAK,SAAS,CAAC;QACjC,IAAI,gBAAiB,gBAAgB,IAAK;QAC1C,IAAI,eAAgB,eAAe,IAAK;QACxC,IAAI,OAAQ,OAAO,IAAK;QACxB,IAAI,MAAO,MAAM,IAAK;QACtB,IACE,OAAO,iBACN,SAAS,iBAAiB,MAAM,cAEjC,eAAe,gBAAgB;QACjC,IAAI,OACA,CAAC,AAAC,OAAO,YAAY,MAAM,GAAG,GAC7B,gBAAgB,MACjB,IAAI,gBAAgB,CAAC,eAAe,CAAC,GACpC,MAAM,MAAM,eAAe,OAAO,GACnC,IAAI,OAAO,CAAC,MAAM,CAAC,GAClB,cACC,OACA,cACA,MACA,IAAI,MAAM,CAAC,gBACX,QACA,IAAI,MAAM,CAAC,OACX,OAAQ,IACV,IAAI,gBACF,CAAC,AAAC,gBAAgB,YAAY,MAAM,GAAG,GACvC,IAAI,gBAAgB,CAAC,eAAe,CAAC,GACpC,cACC,OACA,cACA,MACA,IAAI,MAAM,CAAC,gBACX,QACA,KAAK,MAAM,CAAC,OAAO,iBACnB,IAAI,MAAM,CAAC,OACX,OAAQ,IACV,kBAAkB,OAChB,CAAC,AAAC,MAAM,MAAM,eAAe,GAC7B,IAAI,OAAO,CAAC,MAAM,CAAC,GAClB,cACC,KAAK,MAAM,CAAC,gBAAgB,KAC5B,OACA,cACA,QACA,IAAI,MAAM,CAAC,gBACX,QACA,IAAI,MAAM,CAAC,OACX,OAAQ,IACT,cACC,KAAK,MAAM,CAAC,gBAAgB,KAC5B,OACA,cACA,QACA,IAAI,MAAM,CAAC,gBACX,QACA,KAAK,MAAM,CAAC,OAAO,iBACnB,IAAI,MAAM,CAAC,OACX;QACV,cACE,IAAI,gBACA,cACA,0GACA,wGACA;QACN,SAAS,UAAU,CAAC,QAAQ,CAAC,WAAW,YAAY,QAAQ;QAC5D,YACI,CAAC,AAAC,eACA,mCACA,mBAAmB,mBACnB,MACA,UAAU,YACV,MACA,mBACD,eAAe,4BAA4B,SAAU,IACrD,cAAc,WACX,cAAc,CAAC,qBAAqB,UAAU,SAAS,IACvD,cAAc;QACtB,IAAI;YACF,IAAI,KAAK,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC,KAAK;QACvC,EAAE,OAAO,GAAG;YACV,KAAK,SAAU,CAAC;gBACd,OAAO;YACT;QACF;QACA,OAAO;IACT;IACA,SAAS,mBACP,QAAQ,EACR,KAAK,EACL,eAAe,EACf,gBAAgB,EAChB,SAAS;QAET,IAAK,IAAI,IAAI,GAAG,IAAI,MAAM,MAAM,EAAE,IAAK;YACrC,IAAI,QAAQ,KAAK,CAAC,EAAE,EAClB,WACE,MAAM,IAAI,CAAC,OACX,MACA,kBACA,CAAC,mBAAmB,OAAO,IAAI,GACjC,KAAK,kBAAkB,GAAG,CAAC;YAC7B,IAAI,KAAK,MAAM,IAAI;gBACjB,KAAK,KAAK,CAAC,EAAE;gBACb,IAAI,WAAW,KAAK,CAAC,EAAE,EACrB,OAAO,KAAK,CAAC,EAAE,EACf,MAAM,KAAK,CAAC,EAAE,EACd,gBAAgB,KAAK,CAAC,EAAE;gBAC1B,QAAQ,KAAK,CAAC,EAAE;gBAChB,IAAI,mBAAmB,SAAS,sBAAsB;gBACtD,mBAAmB,mBACf,iBAAiB,UAAU,mBAC3B;gBACJ,KAAK,mBACH,IACA,UACA,kBACA,MACA,KACA,mBAAmB,OAAO,eAC1B,mBAAmB,MAAM,OACzB;gBAEF,kBAAkB,GAAG,CAAC,UAAU;YAClC;YACA,YAAY,GAAG,IAAI,CAAC,MAAM;QAC5B;QACA,OAAO;IACT;IACA,SAAS,YAAY,QAAQ,EAAE,oBAAoB;QACjD,IAAI,WAAW,SAAS,cAAc;QACtC,OAAO,WACH,SAAS,oBAAoB,KAAK,uBAChC,CAAC,AAAC,WAAW,QAAQ,UAAU,CAAC,IAAI,CAClC,SACA,UAAU,qBAAqB,WAAW,KAAK,MAEjD,SAAS,GAAG,CAAC,SAAS,IACtB,WACF;IACN;IACA,SAAS,mBAAmB,QAAQ,EAAE,SAAS;QAC7C,IAAI,CAAC,sBAAsB,QAAQ,UAAU,KAAK,EAAE,OAAO;QAC3D,IAAI,cAAc,UAAU,SAAS;QACrC,IAAI,KAAK,MAAM,aAAa,OAAO;QACnC,IAAI,mBAAmB,KAAK,MAAM,UAAU,GAAG,EAC7C,QAAQ,UAAU,KAAK,EACvB,MACE,QAAQ,UAAU,GAAG,GAAG,SAAS,oBAAoB,GAAG,UAAU,GAAG;QACzE,cACE,QAAQ,UAAU,KAAK,IAAI,QAAQ,UAAU,KAAK,CAAC,GAAG,GAClD,SAAS,oBAAoB,GAC7B,UAAU,KAAK,CAAC,GAAG;QACzB,IAAI,YACF,QAAQ,UAAU,KAAK,GACnB,OACA,mBAAmB,UAAU,UAAU,KAAK;QAClD,MACE,QAAQ,cACJ,UAAU,IAAI,WAAW,KAAK,MAC9B,KAAK,MAAM,UAAU,GAAG,GACtB,MAAM,CAAC,UAAU,IAAI,IAAI,KAAK,IAAI,MAClC,KAAK,MAAM,UAAU,IAAI,GACvB,UAAU,IAAI,IAAI,YAClB,WAAW,CAAC,UAAU,OAAO,CAAC,IAAI,IAAI,SAAS;QACzD,MAAM,QAAQ,UAAU,CAAC,IAAI,CAAC,SAAS;QACvC,mBAAmB,mBACjB,UACA,OACA,aACA,kBACA;QAEF,SAAS,YACL,CAAC,AAAC,WAAW,YAAY,UAAU,cAClC,WACC,QAAQ,WACJ,SAAS,GAAG,CAAC,oBACb,kBAAmB,IACxB,WAAW,UAAU,GAAG,CAAC;QAC9B,OAAQ,UAAU,SAAS,GAAG;IAChC;IACA,SAAS;QACP,OAAO,MAAM;IACf;IACA,SAAS,oBAAoB,QAAQ,EAAE,SAAS;QAC9C,IAAI,KAAK,MAAM,UAAU,UAAU,EAAE;YACnC,QAAQ,UAAU,KAAK,IACrB,CAAC,UAAU,UAAU,GAAG,4BACtB,UACA,UAAU,KAAK,EACf,QAAQ,UAAU,GAAG,GAAG,KAAK,UAAU,GAAG,CAC3C;YACH,IAAI,QAAQ,UAAU,KAAK;YAC3B,QAAQ,SACN,CAAC,oBAAoB,UAAU,QAC/B,KAAK,MAAM,MAAM,aAAa,IAC5B,QAAQ,UAAU,UAAU,IAC5B,CAAC,MAAM,aAAa,GAAG,UAAU,UAAU,CAAC;QAClD;IACF;IACA,SAAS,oBAAoB,QAAQ,EAAE,SAAS;QAC9C,KAAK,MAAM,UAAU,KAAK,IAAI,mBAAmB,UAAU;QAC3D,IAAI,QAAQ,UAAU,KAAK,IAAI,QAAQ,SAAS,eAAe,EAAE;YAC/D,IAAI,4BAA4B;YAChC,0BAA0B,KAAK,GAAG,SAAS,eAAe;YAC1D,0BAA0B,KAAK,GAAG;YAClC,0BAA0B,UAAU,GAAG,SAAS,eAAe;YAC/D,0BAA0B,SAAS,GAAG,SAAS,cAAc;QAC/D,OACE,KAAK,MAAM,UAAU,KAAK,IAAI,oBAAoB,UAAU;QAC9D,aAAa,OAAO,UAAU,IAAI,IAChC,CAAC,YAAY;YAAE,MAAM,UAAU,IAAI,GAAG,SAAS,WAAW;QAAC,CAAC;QAC9D,OAAO;IACT;IACA,SAAS;QACP,IAAI,QAAQ;QACZ,IAAI,SAAS,OAAO,OAAO;QAC3B,IAAI;YACF,IAAI,OAAO;YACX,IAAI,MAAM,KAAK,IAAI,aAAa,OAAO,MAAM,IAAI,EAAE;gBACjD,MAAO,OAAS;oBACd,IAAI,aAAa,MAAM,UAAU;oBACjC,IAAI,QAAQ,YAAY;wBACtB,IAAK,QAAQ,MAAM,KAAK,EAAG;4BACzB,IAAI,wBAAwB;4BAC5B,IAAI,QAAQ,YACV,wBAAwB,MAAM,iBAAiB;4BACjD,MAAM,iBAAiB,GAAG,KAAK;4BAC/B,IAAI,QAAQ,MAAM,KAAK;4BACvB,MAAM,iBAAiB,GAAG;4BAC1B,MAAM,UAAU,CAAC,qCACf,CAAC,QAAQ,MAAM,KAAK,CAAC,GAAG;4BAC1B,IAAI,MAAM,MAAM,OAAO,CAAC;4BACxB,CAAC,MAAM,OAAO,CAAC,QAAQ,MAAM,KAAK,CAAC,MAAM,EAAE;4BAC3C,MAAM,MAAM,OAAO,CAAC;4BACpB,CAAC,MAAM,OAAO,CAAC,MAAM,MAAM,WAAW,CAAC,MAAM,IAAI;4BACjD,IAAI,2BACF,CAAC,MAAM,MAAO,QAAQ,MAAM,KAAK,CAAC,GAAG,OAAQ;4BAC/C,OACE,wBAAwB,CAAC,OAAO,wBAAwB;wBAC5D;oBACF,OAAO;gBACT;gBACA,IAAI,oCAAoC;YAC1C,OAAO;gBACL,wBAAwB,MAAM,IAAI;gBAClC,IAAI,KAAK,MAAM,QACb,IAAI;oBACF,MAAM;gBACR,EAAE,OAAO,GAAG;oBACT,SACC,AAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,eAAe,KAAK,KAAK,CAAC,EAAE,IAC3D,IACC,SACC,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,cACjB,mBACA,CAAC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,OACnB,iBACA;gBACZ;gBACF,oCACE,OAAO,SAAS,wBAAwB;YAC5C;QACF,EAAE,OAAO,GAAG;YACV,oCACE,+BAA+B,EAAE,OAAO,GAAG,OAAO,EAAE,KAAK;QAC7D;QACA,OAAO;IACT;IACA,SAAS,oBAAoB,QAAQ,EAAE,IAAI;QACzC,IAAI,SAAS,cAAc,EAAE;YAC3B,IAAI,eAAe,SAAS,eAAe;YAC3C,IAAI,QAAQ,cACV,AAAC,eAAe,yBAAyB,UAAU,OACjD,qBAAqB,eACrB,gBAAgB,aAAa,MAAM,GAC/B,gCAAgC,UAAU,aAAa,KAAK,IAC5D,CAAC,aAAa,IAAI,CAChB,SAAU,CAAC;gBACT,OAAO,gCAAgC,UAAU;YACnD,GACA,YAAa,IAEd,SAAS,eAAe,GAAG,YAAa;iBAC5C;gBACH,IAAI,UAAU,mBAAmB;gBACjC,QAAQ,IAAI,CACV,SAAU,CAAC;oBACT,OAAO,gCAAgC,UAAU;gBACnD,GACA,YAAa;gBAEf,SAAS,eAAe,GAAG;gBAC3B,IAAI,UAAU;oBACZ,SAAS,eAAe,KAAK,WAC3B,CAAC,SAAS,eAAe,GAAG,IAAI;oBAClC,kBAAkB,UAAU,SAAS;gBACvC;gBACA,aAAa,IAAI,CAAC,SAAS;YAC7B;QACF;IACF;IACA,SAAS,iBAAiB,QAAQ,EAAE,MAAM;QACxC,KAAK,MAAM,OAAO,KAAK,IACrB,CAAC,mBAAmB,UAAU,SAC9B,oBAAoB,UAAU,OAAO;QACvC,OAAO,KAAK,IAAI,SAAS,WAAW;QACpC,OAAO,GAAG,IAAI,SAAS,WAAW;QAClC,IAAI,SAAS,cAAc,EAAE;YAC3B,WAAW,SAAS,oBAAoB;YACxC,IAAI,UAAU,OAAO,KAAK;YAC1B,IAAI,SACF,OAAQ,QAAQ,MAAM;gBACpB,KAAK;oBACH,UAAU,QAAQ,UAAU,QAAQ,KAAK;oBACzC;gBACF,KAAK;oBACH,iBAAiB,QAAQ,UAAU,QAAQ,MAAM;oBACjD;gBACF;oBACE,QAAQ,IAAI,CACV,UAAU,IAAI,CAAC,MAAM,QAAQ,WAC7B,iBAAiB,IAAI,CAAC,MAAM,QAAQ;YAE1C;iBACG,UAAU,QAAQ,UAAU,KAAK;QACxC;IACF;IACA,SAAS,cAAc,QAAQ,EAAE,EAAE,EAAE,KAAK;QACxC,IAAI,SAAS,SAAS,OAAO,EAC3B,QAAQ,OAAO,GAAG,CAAC;QACrB,QACI,CAAC,kBAAkB,UAAU,OAAO,QACpC,qBAAqB,MAAM,MAAM,IAAI,qBAAqB,MAAM,IAChE,CAAC,AAAC,QAAQ,yBAAyB,UAAU,QAC7C,OAAO,GAAG,CAAC,IAAI,QACf,qBAAqB,MAAM;QAC/B,gBAAgB,MAAM,MAAM,GACxB,iBAAiB,UAAU,MAAM,KAAK,IACtC,MAAM,IAAI,CACR,SAAU,CAAC;YACT,iBAAiB,UAAU;QAC7B,GACA,YAAa;IAErB;IACA,SAAS,YAAY,MAAM,EAAE,SAAS;QACpC,IACE,IAAI,IAAI,OAAO,MAAM,EAAE,aAAa,UAAU,MAAM,EAAE,IAAI,GAC1D,IAAI,GACJ,IAEA,cAAc,MAAM,CAAC,EAAE,CAAC,UAAU;QACpC,aAAa,IAAI,WAAW;QAC5B,IAAK,IAAI,MAAO,IAAI,GAAI,MAAM,GAAG,MAAO;YACtC,IAAI,QAAQ,MAAM,CAAC,IAAI;YACvB,WAAW,GAAG,CAAC,OAAO;YACtB,KAAK,MAAM,UAAU;QACvB;QACA,WAAW,GAAG,CAAC,WAAW;QAC1B,OAAO;IACT;IACA,SAAS,kBACP,QAAQ,EACR,EAAE,EACF,MAAM,EACN,SAAS,EACT,WAAW,EACX,eAAe,EACf,WAAW;QAEX,SACE,MAAM,OAAO,MAAM,IAAI,MAAM,UAAU,UAAU,GAAG,kBAChD,YACA,YAAY,QAAQ;QAC1B,cAAc,IAAI,YAChB,OAAO,MAAM,EACb,OAAO,UAAU,EACjB,OAAO,UAAU,GAAG;QAEtB,cAAc,UAAU,IAAI,aAAa;IAC3C;IACA,SAAS,0BACP,iBAAiB,EACjB,IAAI,EACJ,iBAAiB,EACjB,SAAS,EACT,aAAa;QAEb,IAAI,CAAC,YAAY,KAAK,SAAS,GAAG;YAChC,IAAI,iBAAiB,KAAK,SAAS,EACjC,kBAAkB,eAAe,OAAO;YAC1C,IACE,CAAC,WAAW,iBACZ,gBAAgB,mBAChB,SAAS,eAAe,SAAS,EACjC;gBACA,IAAI,gBAAgB,eAAe,SAAS,EAC1C,WAAW,mBACX,YAAY;gBACd,IAAI,sBAAsB,KAAK,mBAAmB,KAAK,UAAU;oBAC/D,IAAI,QACA,cAAc,GAAG,KAAK,kBAAkB,oBAAoB,GACxD,kBACA,mBACN,YAAY,cAAc,IAAI,GAAG,cACjC,YAAY,cAAc,SAAS;oBACrC,YACI,UAAU,GAAG,CACX,QAAQ,SAAS,CAAC,IAAI,CACpB,SACA,WACA,IAAI,YAAY,IAAI,WACpB,iBACA,UAAU,CAAC,SAAS,EACpB,4BACA,UAGJ,QAAQ,SAAS,CACf,WACA,IAAI,YAAY,IAAI,WACpB,iBACA,UAAU,CAAC,SAAS,EACpB,4BACA;gBAER;YACF;YACA,eAAe,KAAK,GAAG;YACvB,OAAO;QACT;QACA,IAAI,WAAW,KAAK,SAAS;QAC7B,IAAI,YAAY,KAAK,UAAU;QAC/B,IAAI,MAAM,UAAU,MAAM,IAAI,gBAAgB,KAAK,MAAM,EAAE;YACzD,IAAI,gBAAgB,YAAY,KAAK,KAAK;YAC1C,aAAa,OAAO,iBAClB,SAAS,iBACT,CAAC,YAAY,kBACX,eAAe,OAAO,aAAa,CAAC,eAAe,IACnD,cAAc,QAAQ,KAAK,sBAC3B,cAAc,QAAQ,KAAK,eAAe,KAC5C,YAAY,cAAc,UAAU,KACpC,CAAC,YAAY,cAAc,UAAU;QACzC;QACA,IAAI,WAAW;YACb,IAAK,IAAI,qBAAqB,GAAG,IAAI,GAAG,IAAI,UAAU,MAAM,EAAE,IAAK;gBACjE,IAAI,OAAO,SAAS,CAAC,EAAE;gBACvB,aAAa,OAAO,KAAK,IAAI,IAAI,CAAC,qBAAqB,KAAK,IAAI;gBAChE,IAAI,aAAa,OAAO,KAAK,IAAI,EAAE;oBACjC,qBAAqB,aAAa;oBAClC,YAAY;oBACZ;gBACF;YACF;YACA,IAAK,IAAI,MAAM,UAAU,MAAM,GAAG,GAAG,KAAK,KAAK,MAAO;gBACpD,IAAI,QAAQ,SAAS,CAAC,IAAI;gBAC1B,IAAI,aAAa,OAAO,MAAM,IAAI,IAAI,MAAM,IAAI,GAAG,eAAe;oBAChE,gBAAgB,MAAM,IAAI;oBAC1B;gBACF;YACF;QACF;QACA,IAAI,SAAS;YACX,OAAO;YACP,SAAS,CAAC;YACV,WAAW;QACb;QACA,KAAK,SAAS,GAAG;QACjB,IACE,IAAI,kBAAkB,CAAC,UACrB,gBAAgB,mBAChB,iBAAiB,WACjB,MAAM,GACR,MAAM,SAAS,MAAM,EACrB,MACA;YACA,IAAI,cAAc,0BAChB,mBACA,QAAQ,CAAC,IAAI,EACb,eACA,gBACA;YAEF,SAAS,YAAY,SAAS,IAC5B,CAAC,OAAO,SAAS,GAAG,YAAY,SAAS;YAC3C,gBAAgB,YAAY,KAAK;YACjC,IAAI,eAAe,YAAY,OAAO;YACtC,eAAe,kBAAkB,CAAC,iBAAiB,YAAY;YAC/D,eAAe,mBAAmB,CAAC,kBAAkB,YAAY;QACnE;QACA,IAAI,WACF,IACE,IAAI,mBAAmB,GACrB,kBAAkB,CAAC,GACnB,UAAU,CAAC,GACX,aAAa,CAAC,GACd,MAAM,UAAU,MAAM,GAAG,GAC3B,KAAK,KACL,MACA;YACA,IAAI,SAAS,SAAS,CAAC,IAAI;YAC3B,IAAI,aAAa,OAAO,OAAO,IAAI,EAAE;gBACnC,MAAM,oBAAoB,CAAC,mBAAmB,OAAO,IAAI;gBACzD,IAAI,OAAO,OAAO,IAAI;gBACtB,IAAI,CAAC,IAAI,YACP,IAAK,IAAI,IAAI,aAAa,GAAG,IAAI,KAAK,IAAK;oBACzC,IAAI,gBAAgB,SAAS,CAAC,EAAE;oBAChC,IAAI,aAAa,OAAO,cAAc,IAAI,EAAE;wBAC1C,mBAAmB,mBACjB,CAAC,kBAAkB,gBAAgB;wBACrC,IAAI,yBAAyB,eAC3B,WAAW,mBACX,yBAAyB,wBACzB,oBAAoB,mBACpB,qBAAqB,MACrB,4BAA4B,kBAC5B,2BAA2B;wBAC7B,IACE,mBACA,eAAe,KAAK,MAAM,IAC1B,KAAK,MAAM,KAAK,SAAS,aAAa,EACtC;4BACA,IAAI,yBAAyB,wBAC3B,oBAAoB,mBACpB,qBAAqB,oBACrB,2BAA2B,0BAC3B,QAAQ,KAAK,MAAM;4BACrB,IAAI,oBAAoB;gCACtB,IAAI,MAAM,uBAAuB,GAAG,EAClC,OAAO,uBAAuB,IAAI,EAClC,qBACE,QAAQ,SAAS,oBAAoB,IACrC,KAAK,MAAM,MACP,OACA,OAAO,OAAO,MAAM,KAC1B,cAAc,WAAW,oBACzB,aAAa;oCACX;wCACE;wCACA,aAAa,OAAO,SACpB,SAAS,SACT,aAAa,OAAO,MAAM,OAAO,GAC7B,OAAO,MAAM,OAAO,IACpB,OAAO;qCACZ;iCACF;gCACH,QAAQ,uBAAuB,GAAG,IAChC,qBACE,OACA,uBAAuB,GAAG,EAC1B,YACA,GACA;gCAEJ,QAAQ,uBAAuB,KAAK,IAClC,sBACE,uBAAuB,KAAK,EAC5B,YACA,GACA;gCAEJ,YAAY,OAAO,CAAC,aAAa;oCAC/B,OAAO,IAAI,qBAAqB,IAAI;oCACpC,KAAK;oCACL,QAAQ;wCACN,UAAU;4CACR,OAAO;4CACP,OAAO,UAAU,CAAC,kBAAkB;4CACpC,YAAY;4CACZ,aAAa,qBAAqB;4CAClC,YAAY;wCACd;oCACF;gCACF;gCACA,YAAY,aAAa,CAAC;4BAC5B;wBACF,OAAO;4BACL,IAAI,yBAAyB,wBAC3B,oBAAoB,mBACpB,qBAAqB,oBACrB,2BAA2B;4BAC7B,IACE,sBACA,KAAK,4BACL,KAAK,mBACL;gCACA,IAAI,eAAe,uBAAuB,GAAG,EAC3C,gBAAgB,uBAAuB,IAAI,EAC3C,eACE,iBAAiB,SAAS,oBAAoB,EAChD,WACE,4BAA4B,oBAC9B,iBACE,MAAM,WACF,eACE,kBACA,oBACF,KAAK,WACH,eACE,YACA,cACF,MAAM,WACJ,eACE,iBACA,mBACF,SACV,qBAAqB,uBAAuB,SAAS,EACrD,uBACE,WACA,CAAC,gBAAgB,KAAK,MAAM,eACxB,gBACA,gBAAgB,OAAO,eAAe,GAAG;gCACjD,IAAI,oBAAoB;oCACtB,IAAI,sBAAsB,EAAE;oCAC5B,QAAQ,uBAAuB,GAAG,IAChC,qBACE,OACA,uBAAuB,GAAG,EAC1B,qBACA,GACA;oCAEJ,QAAQ,uBAAuB,KAAK,IAClC,sBACE,uBAAuB,KAAK,EAC5B,qBACA,GACA;oCAEJ,mBAAmB,GAAG,CACpB,YAAY,OAAO,CAAC,IAAI,CACtB,aACA,sBACA;wCACE,OACE,IAAI,qBAAqB,IAAI;wCAC/B,KAAK;wCACL,QAAQ;4CACN,UAAU;gDACR,OAAO;gDACP,OAAO,UAAU,CAAC,kBAAkB;gDACpC,YAAY;gDACZ,YAAY;4CACd;wCACF;oCACF;oCAGJ,YAAY,aAAa,CAAC;gCAC5B,OACE,QAAQ,SAAS,CACf,sBACA,IAAI,qBAAqB,IAAI,oBAC7B,0BACA,UAAU,CAAC,kBAAkB,EAC7B,4BACA;4BAEN;wBACF;wBACA,mBAAmB;wBACnB,OAAO,SAAS,GAAG;wBACnB,kBAAkB,CAAC;oBACrB,OAAO,IACL,cAAc,OAAO,IACrB,QAAQ,cAAc,OAAO,CAAC,GAAG,EACjC;wBACA,UAAU,mBAAmB,CAAC,kBAAkB,OAAO;wBACvD,IAAI,YAAY,eACd,eAAe,kBAAkB,oBAAoB,EACrD,UAAU,UAAU,OAAO,CAAC,KAAK;wBACnC,IAAI,SAAS;4BACX,IAAI,WAAW;4BACf,OAAQ,SAAS,MAAM;gCACrB,KAAK;oCACH,kBACE,WACA,mBACA,MACA,SACA,cACA,SAAS,KAAK;oCAEhB;gCACF,KAAK;oCACH,IAAI,qBAAqB,WACvB,oBAAoB,mBACpB,qBAAqB,MACrB,mBAAmB,SACnB,UAAU,cACV,iBAAiB,SAAS,MAAM;oCAClC,IAAI,sBAAsB,IAAI,kBAAkB;wCAC9C,IAAI,cAAc,iBAAiB,iBACjC,qBACE,WACA,eACE,mBAAmB,OAAO,EAC1B,aACA,mBAAmB,GAAG,EACtB,UAEJ,qBACE,mBAAmB,SAAS,IAC5B,mBAAmB,OAAO,CAAC,SAAS;wCACxC,IAAI,oBAAoB;4CACtB,IAAI,sBAAsB;gDACtB;oDACE;oDACA,aAAa,OAAO,kBACpB,SAAS,kBACT,aAAa,OAAO,eAAe,OAAO,GACtC,OAAO,eAAe,OAAO,IAC7B,OAAO;iDACZ;6CACF,EACD,cACE,cACE,mBAAmB,OAAO,EAC1B,aACA,mBAAmB,GAAG,EACtB,WACE;4CACR,mBAAmB,GAAG,CACpB,YAAY,OAAO,CAAC,IAAI,CACtB,aACA,oBACA;gDACE,OACE,IAAI,qBACA,IACA;gDACN,KAAK;gDACL,QAAQ;oDACN,UAAU;wDACR,OAAO;wDACP,OAAO,UAAU,CAAC,kBAAkB;wDACpC,YAAY;wDACZ,YAAY;wDACZ,aAAa;oDACf;gDACF;4CACF;4CAGJ,YAAY,aAAa,CAAC;wCAC5B,OACE,QAAQ,SAAS,CACf,oBACA,IAAI,qBAAqB,IAAI,oBAC7B,kBACA,UAAU,CAAC,kBAAkB,EAC7B,4BACA;oCAEN;oCACA;gCACF;oCACE,kBACE,WACA,mBACA,MACA,SACA,cACA,KAAK;4BAEX;wBACF,OACE,kBACE,WACA,mBACA,MACA,SACA,cACA,KAAK;oBAEX;gBACF;qBACG;oBACH,UAAU;oBACV,IAAK,IAAI,KAAK,UAAU,MAAM,GAAG,GAAG,KAAK,KAAK,KAAM;wBAClD,IAAI,iBAAiB,SAAS,CAAC,GAAG;wBAClC,IAAI,aAAa,OAAO,eAAe,IAAI,EAAE;4BAC3C,mBAAmB,mBACjB,CAAC,kBAAkB,gBAAgB;4BACrC,IAAI,iBAAiB,gBACnB,OAAO,kBAAkB,oBAAoB,EAC7C,yBAAyB,gBACzB,oBAAoB,mBACpB,qBAAqB,MACrB,2BAA2B;4BAC7B,IAAI,oBAAoB;gCACtB,IAAI,eAAe,uBAAuB,GAAG,EAC3C,gBAAgB,uBAAuB,IAAI,EAC3C,qBACE,iBAAiB,QAAQ,KAAK,MAAM,eAChC,gBACA,gBAAgB,OAAO,eAAe,KAC5C,uBAAuB,WAAW,oBAClC,sBAAsB;oCACpB;wCACE;wCACA;qCACD;iCACF;gCACH,QAAQ,uBAAuB,GAAG,IAChC,qBACE,OACA,uBAAuB,GAAG,EAC1B,qBACA,GACA;gCAEJ,QAAQ,uBAAuB,KAAK,IAClC,sBACE,uBAAuB,KAAK,EAC5B,qBACA,GACA;gCAEJ,YAAY,OAAO,CAAC,sBAAsB;oCACxC,OAAO,IAAI,qBAAqB,IAAI;oCACpC,KAAK;oCACL,QAAQ;wCACN,UAAU;4CACR,OAAO;4CACP,OAAO,UAAU,CAAC,kBAAkB;4CACpC,YAAY;4CACZ,aAAa,qBAAqB;4CAClC,YAAY;wCACd;oCACF;gCACF;gCACA,YAAY,aAAa,CAAC;4BAC5B;4BACA,mBAAmB;4BACnB,OAAO,SAAS,GAAG;4BACnB,kBAAkB,CAAC;wBACrB,OAAO,IACL,eAAe,OAAO,IACtB,QAAQ,eAAe,OAAO,CAAC,GAAG,EAClC;4BACA,IAAI,aAAa,gBACf,QAAQ,kBAAkB,oBAAoB;4BAChD,WAAW,OAAO,CAAC,GAAG,GAAG,WACvB,CAAC,UAAU,WAAW,OAAO,CAAC,GAAG;4BACnC,UAAU,mBAAmB,CAAC,kBAAkB,OAAO;4BACvD,IAAI,qBAAqB,YACvB,oBAAoB,mBACpB,qBAAqB,MACrB,mBAAmB,SACnB,mBAAmB;4BACrB,IAAI,sBAAsB,IAAI,kBAAkB;gCAC9C,IAAI,qBACA,WACA,eACE,mBAAmB,OAAO,EAC1B,IACA,mBAAmB,GAAG,EACtB,mBAEJ,qBACE,mBAAmB,SAAS,IAC5B,mBAAmB,OAAO,CAAC,SAAS;gCACxC,IAAI,oBAAoB;oCACtB,IAAI,uBACF,cACE,mBAAmB,OAAO,EAC1B,IACA,mBAAmB,GAAG,EACtB,oBACE;oCACN,mBAAmB,GAAG,CACpB,YAAY,OAAO,CAAC,IAAI,CACtB,aACA,oBACA;wCACE,OACE,IAAI,qBAAqB,IAAI;wCAC/B,KAAK;wCACL,QAAQ;4CACN,UAAU;gDACR,OAAO;gDACP,OAAO,UAAU,CAAC,kBAAkB;gDACpC,YAAY;gDACZ,YAAY;oDACV;wDACE;wDACA;qDACD;iDACF;gDACD,aAAa;4CACf;wCACF;oCACF;oCAGJ,YAAY,aAAa,CAAC;gCAC5B,OACE,QAAQ,SAAS,CACf,oBACA,IAAI,qBAAqB,IAAI,oBAC7B,kBACA,UAAU,CAAC,kBAAkB,EAC7B,4BACA;4BAEN;wBACF;oBACF;gBACF;gBACA,UAAU;gBACV,aAAa;YACf;QACF;QACF,OAAO,OAAO,GAAG;QACjB,OAAO;IACT;IACA,SAAS,8BAA8B,QAAQ;QAC7C,IAAI,SAAS,cAAc,EAAE;YAC3B,IAAI,YAAY,SAAS,UAAU;YACnC,YAAY,UAAU,SAAS,KAC7B,CAAC,wBACD,0BACE,UACA,WACA,GACA,CAAC,UACD,CAAC,SACF;QACL;IACF;IACA,SAAS,qBACP,QAAQ,EACR,WAAW,EACX,EAAE,EACF,GAAG,EACH,MAAM,EACN,KAAK;QAEL,OAAQ;YACN,KAAK;gBACH,cACE,UACA,IACA,YAAY,QAAQ,OAAO,MAAM,EACjC;gBAEF;YACF,KAAK;gBACH,kBACE,UACA,IACA,QACA,OACA,WACA,GACA;gBAEF;YACF,KAAK;gBACH,cACE,UACA,IACA,MAAM,OAAO,MAAM,GAAG,QAAQ,YAAY,QAAQ,QAClD;gBAEF;YACF,KAAK;gBACH,kBACE,UACA,IACA,QACA,OACA,mBACA,GACA;gBAEF;YACF,KAAK;gBACH,kBACE,UACA,IACA,QACA,OACA,YACA,GACA;gBAEF;YACF,KAAK;gBACH,kBACE,UACA,IACA,QACA,OACA,aACA,GACA;gBAEF;YACF,KAAK;gBACH,kBACE,UACA,IACA,QACA,OACA,YACA,GACA;gBAEF;YACF,KAAK;gBACH,kBACE,UACA,IACA,QACA,OACA,a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","ignoreList":[0]}}, - {"offset": {"line": 2826, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-server-dom-turbopack/client.browser.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-server-dom-turbopack-client.browser.production.js');\n} else {\n module.exports = require('./cjs/react-server-dom-turbopack-client.browser.development.js');\n}\n"],"names":[],"mappings":"AAEI;AAFJ;AAEA;;KAEO;IACL,OAAO,OAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 2837, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/compiled/react-server-dom-turbopack/client.js"],"sourcesContent":["'use strict';\n\nmodule.exports = require('./client.browser');\n"],"names":[],"mappings":"AAEA,OAAO,OAAO","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_f3530cac._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_f3530cac._.js deleted file mode 100644 index ef658b0..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_f3530cac._.js +++ /dev/null @@ -1,4976 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([typeof document === "object" ? document.currentScript : undefined, -"[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var _global_process, _global_process1; -module.exports = ((_global_process = /*TURBOPACK member replacement*/ __turbopack_context__.g.process) == null ? void 0 : _global_process.env) && typeof ((_global_process1 = /*TURBOPACK member replacement*/ __turbopack_context__.g.process) == null ? void 0 : _global_process1.env) === 'object' ? /*TURBOPACK member replacement*/ __turbopack_context__.g.process : __turbopack_context__.r("[project]/node_modules/next/dist/compiled/process/browser.js [app-client] (ecmascript)"); //# sourceMappingURL=process.js.map -}), -"[project]/node_modules/next/dist/build/polyfills/polyfill-module.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { - -"trimStart" in String.prototype || (String.prototype.trimStart = String.prototype.trimLeft), "trimEnd" in String.prototype || (String.prototype.trimEnd = String.prototype.trimRight), "description" in Symbol.prototype || Object.defineProperty(Symbol.prototype, "description", { - configurable: !0, - get: function() { - var t = /\((.*)\)/.exec(this.toString()); - return t ? t[1] : void 0; - } -}), Array.prototype.flat || (Array.prototype.flat = function(t, r) { - return r = this.concat.apply([], this), t > 1 && r.some(Array.isArray) ? r.flat(t - 1) : r; -}, Array.prototype.flatMap = function(t, r) { - return this.map(t, r).flat(); -}), Promise.prototype.finally || (Promise.prototype.finally = function(t) { - if ("function" != typeof t) return this.then(t, t); - var r = this.constructor || Promise; - return this.then(function(n) { - return r.resolve(t()).then(function() { - return n; - }); - }, function(n) { - return r.resolve(t()).then(function() { - throw n; - }); - }); -}), Object.fromEntries || (Object.fromEntries = function(t) { - return Array.from(t).reduce(function(t, r) { - return t[r[0]] = r[1], t; - }, {}); -}), Array.prototype.at || (Array.prototype.at = function(t) { - var r = Math.trunc(t) || 0; - if (r < 0 && (r += this.length), !(r < 0 || r >= this.length)) return this[r]; -}), Object.hasOwn || (Object.hasOwn = function(t, r) { - if (null == t) throw new TypeError("Cannot convert undefined or null to object"); - return Object.prototype.hasOwnProperty.call(Object(t), r); -}), "canParse" in URL || (URL.canParse = function(t, r) { - try { - return !!new URL(t, r); - } catch (t) { - return !1; - } -}); -}), -"[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "InvariantError", { - enumerable: true, - get: function() { - return InvariantError; - } -}); -class InvariantError extends Error { - constructor(message, options){ - super(`Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`, options); - this.name = 'InvariantError'; - } -} //# sourceMappingURL=invariant-error.js.map -}), -"[project]/node_modules/next/dist/shared/lib/is-plain-object.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getObjectClassLabel: null, - isPlainObject: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getObjectClassLabel: function() { - return getObjectClassLabel; - }, - isPlainObject: function() { - return isPlainObject; - } -}); -function getObjectClassLabel(value) { - return Object.prototype.toString.call(value); -} -function isPlainObject(value) { - if (getObjectClassLabel(value) !== '[object Object]') { - return false; - } - const prototype = Object.getPrototypeOf(value); - /** - * this used to be previously: - * - * `return prototype === null || prototype === Object.prototype` - * - * but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail. - * - * It was changed to the current implementation since it's resilient to serialization. - */ return prototype === null || prototype.hasOwnProperty('isPrototypeOf'); -} //# sourceMappingURL=is-plain-object.js.map -}), -"[project]/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// This has to be a shared module which is shared between client component error boundary and dynamic component -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - BailoutToCSRError: null, - isBailoutToCSRError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - BailoutToCSRError: function() { - return BailoutToCSRError; - }, - isBailoutToCSRError: function() { - return isBailoutToCSRError; - } -}); -const BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'; -class BailoutToCSRError extends Error { - constructor(reason){ - super(`Bail out to client-side rendering: ${reason}`), this.reason = reason, this.digest = BAILOUT_TO_CSR; - } -} -function isBailoutToCSRError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === BAILOUT_TO_CSR; -} //# sourceMappingURL=bailout-to-csr.js.map -}), -"[project]/node_modules/next/dist/shared/lib/error-source.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - decorateServerError: null, - getErrorSource: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - decorateServerError: function() { - return decorateServerError; - }, - getErrorSource: function() { - return getErrorSource; - } -}); -const symbolError = Symbol.for('NextjsError'); -function getErrorSource(error) { - return error[symbolError] || null; -} -function decorateServerError(error, type) { - Object.defineProperty(error, symbolError, { - writable: false, - enumerable: false, - configurable: false, - value: type - }); -} //# sourceMappingURL=error-source.js.map -}), -"[project]/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HeadManagerContext", { - enumerable: true, - get: function() { - return HeadManagerContext; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const HeadManagerContext = _react.default.createContext({}); -if ("TURBOPACK compile-time truthy", 1) { - HeadManagerContext.displayName = 'HeadManagerContext'; -} //# sourceMappingURL=head-manager-context.shared-runtime.js.map -}), -"[project]/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use client'; -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - NavigationPromisesContext: null, - PathParamsContext: null, - PathnameContext: null, - ReadonlyURLSearchParams: null, - SearchParamsContext: null, - createDevToolsInstrumentedPromise: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - NavigationPromisesContext: function() { - return NavigationPromisesContext; - }, - PathParamsContext: function() { - return PathParamsContext; - }, - PathnameContext: function() { - return PathnameContext; - }, - ReadonlyURLSearchParams: function() { - return _readonlyurlsearchparams.ReadonlyURLSearchParams; - }, - SearchParamsContext: function() { - return SearchParamsContext; - }, - createDevToolsInstrumentedPromise: function() { - return createDevToolsInstrumentedPromise; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _readonlyurlsearchparams = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/readonly-url-search-params.js [app-client] (ecmascript)"); -const SearchParamsContext = (0, _react.createContext)(null); -const PathnameContext = (0, _react.createContext)(null); -const PathParamsContext = (0, _react.createContext)(null); -const NavigationPromisesContext = (0, _react.createContext)(null); -function createDevToolsInstrumentedPromise(displayName, value) { - const promise = Promise.resolve(value); - promise.status = 'fulfilled'; - promise.value = value; - promise.displayName = `${displayName} (SSR)`; - return promise; -} -if ("TURBOPACK compile-time truthy", 1) { - SearchParamsContext.displayName = 'SearchParamsContext'; - PathnameContext.displayName = 'PathnameContext'; - PathParamsContext.displayName = 'PathParamsContext'; - NavigationPromisesContext.displayName = 'NavigationPromisesContext'; -} //# sourceMappingURL=hooks-client-context.shared-runtime.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/html-bots.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// This regex contains the bots that we need to do a blocking render for and can't safely stream the response -// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent. -// Note: The pattern [\w-]+-Google captures all Google crawlers with "-Google" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google) -// as well as crawlers starting with "Google-" (e.g., Google-PageRenderer, Google-InspectionTool) -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HTML_LIMITED_BOT_UA_RE", { - enumerable: true, - get: function() { - return HTML_LIMITED_BOT_UA_RE; - } -}); -const HTML_LIMITED_BOT_UA_RE = /[\w-]+-Google|Google-[\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i; //# sourceMappingURL=html-bots.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/is-bot.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - HTML_LIMITED_BOT_UA_RE: null, - HTML_LIMITED_BOT_UA_RE_STRING: null, - getBotType: null, - isBot: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - HTML_LIMITED_BOT_UA_RE: function() { - return _htmlbots.HTML_LIMITED_BOT_UA_RE; - }, - HTML_LIMITED_BOT_UA_RE_STRING: function() { - return HTML_LIMITED_BOT_UA_RE_STRING; - }, - getBotType: function() { - return getBotType; - }, - isBot: function() { - return isBot; - } -}); -const _htmlbots = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/html-bots.js [app-client] (ecmascript)"); -// Bot crawler that will spin up a headless browser and execute JS. -// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers. -// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers -// This regex specifically matches "Googlebot" but NOT "Mediapartners-Google", "AdsBot-Google", etc. -const HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i; -const HTML_LIMITED_BOT_UA_RE_STRING = _htmlbots.HTML_LIMITED_BOT_UA_RE.source; -function isDomBotUA(userAgent) { - return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent); -} -function isHtmlLimitedBotUA(userAgent) { - return _htmlbots.HTML_LIMITED_BOT_UA_RE.test(userAgent); -} -function isBot(userAgent) { - return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent); -} -function getBotType(userAgent) { - if (isDomBotUA(userAgent)) { - return 'dom'; - } - if (isHtmlLimitedBotUA(userAgent)) { - return 'html'; - } - return undefined; -} //# sourceMappingURL=is-bot.js.map -}), -"[project]/node_modules/next/dist/shared/lib/is-thenable.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Check to see if a value is Thenable. - * - * @param promise the maybe-thenable value - * @returns true if the value is thenable - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "isThenable", { - enumerable: true, - get: function() { - return isThenable; - } -}); -function isThenable(promise) { - return promise !== null && typeof promise === 'object' && 'then' in promise && typeof promise.then === 'function'; -} //# sourceMappingURL=is-thenable.js.map -}), -"[project]/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * For a given page path, this function ensures that there is a leading slash. - * If there is not a leading slash, one is added, otherwise it is noop. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ensureLeadingSlash", { - enumerable: true, - get: function() { - return ensureLeadingSlash; - } -}); -function ensureLeadingSlash(path) { - return path.startsWith('/') ? path : `/${path}`; -} //# sourceMappingURL=ensure-leading-slash.js.map -}), -"[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - DEFAULT_SEGMENT_KEY: null, - NOT_FOUND_SEGMENT_KEY: null, - PAGE_SEGMENT_KEY: null, - addSearchParamsIfPageSegment: null, - computeSelectedLayoutSegment: null, - getSegmentValue: null, - getSelectedLayoutSegmentPath: null, - isGroupSegment: null, - isParallelRouteSegment: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - DEFAULT_SEGMENT_KEY: function() { - return DEFAULT_SEGMENT_KEY; - }, - NOT_FOUND_SEGMENT_KEY: function() { - return NOT_FOUND_SEGMENT_KEY; - }, - PAGE_SEGMENT_KEY: function() { - return PAGE_SEGMENT_KEY; - }, - addSearchParamsIfPageSegment: function() { - return addSearchParamsIfPageSegment; - }, - computeSelectedLayoutSegment: function() { - return computeSelectedLayoutSegment; - }, - getSegmentValue: function() { - return getSegmentValue; - }, - getSelectedLayoutSegmentPath: function() { - return getSelectedLayoutSegmentPath; - }, - isGroupSegment: function() { - return isGroupSegment; - }, - isParallelRouteSegment: function() { - return isParallelRouteSegment; - } -}); -function getSegmentValue(segment) { - return Array.isArray(segment) ? segment[1] : segment; -} -function isGroupSegment(segment) { - // Use array[0] for performant purpose - return segment[0] === '(' && segment.endsWith(')'); -} -function isParallelRouteSegment(segment) { - return segment.startsWith('@') && segment !== '@children'; -} -function addSearchParamsIfPageSegment(segment, searchParams) { - const isPageSegment = segment.includes(PAGE_SEGMENT_KEY); - if (isPageSegment) { - const stringifiedQuery = JSON.stringify(searchParams); - return stringifiedQuery !== '{}' ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery : PAGE_SEGMENT_KEY; - } - return segment; -} -function computeSelectedLayoutSegment(segments, parallelRouteKey) { - if (!segments || segments.length === 0) { - return null; - } - // For 'children', use first segment; for other parallel routes, use last segment - const rawSegment = parallelRouteKey === 'children' ? segments[0] : segments[segments.length - 1]; - // If the default slot is showing, return null since it's not technically "selected" (it's a fallback) - // Returning an internal value like `__DEFAULT__` would be confusing - return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment; -} -function getSelectedLayoutSegmentPath(tree, parallelRouteKey, first = true, segmentPath = []) { - let node; - if (first) { - // Use the provided parallel route key on the first parallel route - node = tree[1][parallelRouteKey]; - } else { - // After first parallel route prefer children, if there's no children pick the first parallel route. - const parallelRoutes = tree[1]; - node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]; - } - if (!node) return segmentPath; - const segment = node[0]; - let segmentValue = getSegmentValue(segment); - if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) { - return segmentPath; - } - segmentPath.push(segmentValue); - return getSelectedLayoutSegmentPath(node, parallelRouteKey, false, segmentPath); -} -const PAGE_SEGMENT_KEY = '__PAGE__'; -const DEFAULT_SEGMENT_KEY = '__DEFAULT__'; -const NOT_FOUND_SEGMENT_KEY = '/_not-found'; //# sourceMappingURL=segment.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - normalizeAppPath: null, - normalizeRscURL: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - normalizeAppPath: function() { - return normalizeAppPath; - }, - normalizeRscURL: function() { - return normalizeRscURL; - } -}); -const _ensureleadingslash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js [app-client] (ecmascript)"); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -function normalizeAppPath(route) { - return (0, _ensureleadingslash.ensureLeadingSlash)(route.split('/').reduce((pathname, segment, index, segments)=>{ - // Empty segments are ignored. - if (!segment) { - return pathname; - } - // Groups are ignored. - if ((0, _segment.isGroupSegment)(segment)) { - return pathname; - } - // Parallel segments are ignored. - if (segment[0] === '@') { - return pathname; - } - // The last segment (if it's a leaf) should be ignored. - if ((segment === 'page' || segment === 'route') && index === segments.length - 1) { - return pathname; - } - return `${pathname}/${segment}`; - }, '')); -} -function normalizeRscURL(url) { - return url.replace(/\.rsc($|\?)/, '$1'); -} //# sourceMappingURL=app-paths.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/interception-routes.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - INTERCEPTION_ROUTE_MARKERS: null, - extractInterceptionRouteInformation: null, - isInterceptionRouteAppPath: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - INTERCEPTION_ROUTE_MARKERS: function() { - return INTERCEPTION_ROUTE_MARKERS; - }, - extractInterceptionRouteInformation: function() { - return extractInterceptionRouteInformation; - }, - isInterceptionRouteAppPath: function() { - return isInterceptionRouteAppPath; - } -}); -const _apppaths = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/app-paths.js [app-client] (ecmascript)"); -const INTERCEPTION_ROUTE_MARKERS = [ - '(..)(..)', - '(.)', - '(..)', - '(...)' -]; -function isInterceptionRouteAppPath(path) { - // TODO-APP: add more serious validation - return path.split('/').find((segment)=>INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m))) !== undefined; -} -function extractInterceptionRouteInformation(path) { - let interceptingRoute; - let marker; - let interceptedRoute; - for (const segment of path.split('/')){ - marker = INTERCEPTION_ROUTE_MARKERS.find((m)=>segment.startsWith(m)); - if (marker) { - ; - [interceptingRoute, interceptedRoute] = path.split(marker, 2); - break; - } - } - if (!interceptingRoute || !marker || !interceptedRoute) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Must be in the format /<intercepting route>/(..|...|..)(..)/<intercepted route>`), "__NEXT_ERROR_CODE", { - value: "E269", - enumerable: false, - configurable: true - }); - } - interceptingRoute = (0, _apppaths.normalizeAppPath)(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed - ; - switch(marker){ - case '(.)': - // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route - if (interceptingRoute === '/') { - interceptedRoute = `/${interceptedRoute}`; - } else { - interceptedRoute = interceptingRoute + '/' + interceptedRoute; - } - break; - case '(..)': - // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route - if (interceptingRoute === '/') { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`), "__NEXT_ERROR_CODE", { - value: "E207", - enumerable: false, - configurable: true - }); - } - interceptedRoute = interceptingRoute.split('/').slice(0, -1).concat(interceptedRoute).join('/'); - break; - case '(...)': - // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route - interceptedRoute = '/' + interceptedRoute; - break; - case '(..)(..)': - // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route - const splitInterceptingRoute = interceptingRoute.split('/'); - if (splitInterceptingRoute.length <= 2) { - throw Object.defineProperty(new Error(`Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`), "__NEXT_ERROR_CODE", { - value: "E486", - enumerable: false, - configurable: true - }); - } - interceptedRoute = splitInterceptingRoute.slice(0, -2).concat(interceptedRoute).join('/'); - break; - default: - throw Object.defineProperty(new Error('Invariant: unexpected marker'), "__NEXT_ERROR_CODE", { - value: "E112", - enumerable: false, - configurable: true - }); - } - return { - interceptingRoute, - interceptedRoute - }; -} //# sourceMappingURL=interception-routes.js.map -}), -"[project]/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - HEAD_REQUEST_KEY: null, - ROOT_SEGMENT_REQUEST_KEY: null, - appendSegmentRequestKeyPart: null, - convertSegmentPathToStaticExportFilename: null, - createSegmentRequestKeyPart: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - HEAD_REQUEST_KEY: function() { - return HEAD_REQUEST_KEY; - }, - ROOT_SEGMENT_REQUEST_KEY: function() { - return ROOT_SEGMENT_REQUEST_KEY; - }, - appendSegmentRequestKeyPart: function() { - return appendSegmentRequestKeyPart; - }, - convertSegmentPathToStaticExportFilename: function() { - return convertSegmentPathToStaticExportFilename; - }, - createSegmentRequestKeyPart: function() { - return createSegmentRequestKeyPart; - } -}); -const _segment = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/segment.js [app-client] (ecmascript)"); -const ROOT_SEGMENT_REQUEST_KEY = ''; -const HEAD_REQUEST_KEY = '/_head'; -function createSegmentRequestKeyPart(segment) { - if (typeof segment === 'string') { - if (segment.startsWith(_segment.PAGE_SEGMENT_KEY)) { - // The Flight Router State type sometimes includes the search params in - // the page segment. However, the Segment Cache tracks this as a separate - // key. So, we strip the search params here, and then add them back when - // the cache entry is turned back into a FlightRouterState. This is an - // unfortunate consequence of the FlightRouteState being used both as a - // transport type and as a cache key; we'll address this once more of the - // Segment Cache implementation has settled. - // TODO: We should hoist the search params out of the FlightRouterState - // type entirely, This is our plan for dynamic route params, too. - return _segment.PAGE_SEGMENT_KEY; - } - const safeName = // But params typically don't include the leading slash. We should use - // a different encoding to avoid this special case. - segment === '/_not-found' ? '_not-found' : encodeToFilesystemAndURLSafeString(segment); - // Since this is not a dynamic segment, it's fully encoded. It does not - // need to be "hydrated" with a param value. - return safeName; - } - const name = segment[0]; - const paramType = segment[2]; - const safeName = encodeToFilesystemAndURLSafeString(name); - const encodedName = '$' + paramType + '$' + safeName; - return encodedName; -} -function appendSegmentRequestKeyPart(parentRequestKey, parallelRouteKey, childRequestKeyPart) { - // Aside from being filesystem safe, segment keys are also designed so that - // each segment and parallel route creates its own subdirectory. Roughly in - // the same shape as the source app directory. This is mostly just for easier - // debugging (you can open up the build folder and navigate the output); if - // we wanted to do we could just use a flat structure. - // Omit the parallel route key for children, since this is the most - // common case. Saves some bytes (and it's what the app directory does). - const slotKey = parallelRouteKey === 'children' ? childRequestKeyPart : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`; - return parentRequestKey + '/' + slotKey; -} -// Define a regex pattern to match the most common characters found in a route -// param. It excludes anything that might not be cross-platform filesystem -// compatible, like |. It does not need to be precise because the fallback is to -// just base64url-encode the whole parameter, which is fine; we just don't do it -// by default for compactness, and for easier debugging. -const simpleParamValueRegex = /^[a-zA-Z0-9\-_@]+$/; -function encodeToFilesystemAndURLSafeString(value) { - if (simpleParamValueRegex.test(value)) { - return value; - } - // If there are any unsafe characters, base64url-encode the entire value. - // We also add a ! prefix so it doesn't collide with the simple case. - const base64url = btoa(value).replace(/\+/g, '-') // Replace '+' with '-' - .replace(/\//g, '_') // Replace '/' with '_' - .replace(/=+$/, '') // Remove trailing '=' - ; - return '!' + base64url; -} -function convertSegmentPathToStaticExportFilename(segmentPath) { - return `__next${segmentPath.replace(/\//g, '.')}.txt`; -} //# sourceMappingURL=segment-value-encoding.js.map -}), -"[project]/node_modules/next/dist/shared/lib/hash.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// http://www.cse.yorku.ca/~oz/hash.html -// More specifically, 32-bit hash via djbxor -// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765) -// This is due to number type differences between rust for turbopack to js number types, -// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching -// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation -// as can gaurantee determinstic output from 32bit hash. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - djb2Hash: null, - hexHash: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - djb2Hash: function() { - return djb2Hash; - }, - hexHash: function() { - return hexHash; - } -}); -function djb2Hash(str) { - let hash = 5381; - for(let i = 0; i < str.length; i++){ - const char = str.charCodeAt(i); - hash = (hash << 5) + hash + char & 0xffffffff; - } - return hash >>> 0; -} -function hexHash(str) { - return djb2Hash(str).toString(36).slice(0, 5); -} //# sourceMappingURL=hash.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "computeCacheBustingSearchParam", { - enumerable: true, - get: function() { - return computeCacheBustingSearchParam; - } -}); -const _hash = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/hash.js [app-client] (ecmascript)"); -function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) { - if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) { - return ''; - } - return (0, _hash.hexHash)([ - prefetchHeader || '0', - segmentPrefetchHeader || '0', - stateTreeHeader || '0', - nextUrlHeader || '0' - ].join(',')); -} //# sourceMappingURL=cache-busting-search-param.js.map -}), -"[project]/node_modules/next/dist/shared/lib/deployment-id.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -// This could also be a variable instead of a function, but some unit tests want to change the ID at -// runtime. Even though that would never happen in a real deployment. -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getDeploymentId: null, - getDeploymentIdQueryOrEmptyString: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getDeploymentId: function() { - return getDeploymentId; - }, - getDeploymentIdQueryOrEmptyString: function() { - return getDeploymentIdQueryOrEmptyString; - } -}); -function getDeploymentId() { - return "TURBOPACK compile-time value", false; -} -function getDeploymentIdQueryOrEmptyString() { - let deploymentId = getDeploymentId(); - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - return ''; -} //# sourceMappingURL=deployment-id.js.map -}), -"[project]/node_modules/next/dist/shared/lib/app-router-types.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * App Router types - Client-safe types for the Next.js App Router - * - * This file contains type definitions that can be safely imported - * by both client-side and server-side code without circular dependencies. - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HasLoadingBoundary", { - enumerable: true, - get: function() { - return HasLoadingBoundary; - } -}); -var HasLoadingBoundary = /*#__PURE__*/ function(HasLoadingBoundary) { - // There is a loading boundary in this particular segment - HasLoadingBoundary[HasLoadingBoundary["SegmentHasLoadingBoundary"] = 1] = "SegmentHasLoadingBoundary"; - // There is a loading boundary somewhere in the subtree (but not in - // this segment) - HasLoadingBoundary[HasLoadingBoundary["SubtreeHasLoadingBoundary"] = 2] = "SubtreeHasLoadingBoundary"; - // There is no loading boundary in this segment or any of its descendants - HasLoadingBoundary[HasLoadingBoundary["SubtreeHasNoLoadingBoundary"] = 3] = "SubtreeHasNoLoadingBoundary"; - return HasLoadingBoundary; -}({}); //# sourceMappingURL=app-router-types.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/parse-path.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Given a path this function will find the pathname, query and hash and return - * them. This is useful to parse full paths on the client side. - * @param path A path to parse e.g. /foo/bar?id=1#hash - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "parsePath", { - enumerable: true, - get: function() { - return parsePath; - } -}); -function parsePath(path) { - const hashIndex = path.indexOf('#'); - const queryIndex = path.indexOf('?'); - const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex); - if (hasQuery || hashIndex > -1) { - return { - pathname: path.substring(0, hasQuery ? queryIndex : hashIndex), - query: hasQuery ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined) : '', - hash: hashIndex > -1 ? path.slice(hashIndex) : '' - }; - } - return { - pathname: path, - query: '', - hash: '' - }; -} //# sourceMappingURL=parse-path.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "addPathPrefix", { - enumerable: true, - get: function() { - return addPathPrefix; - } -}); -const _parsepath = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-path.js [app-client] (ecmascript)"); -function addPathPrefix(path, prefix) { - if (!path.startsWith('/') || !prefix) { - return path; - } - const { pathname, query, hash } = (0, _parsepath.parsePath)(path); - return `${prefix}${pathname}${query}${hash}`; -} //# sourceMappingURL=add-path-prefix.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -/** - * Removes the trailing slash for a given route or page path. Preserves the - * root page. Examples: - * - `/foo/bar/` -> `/foo/bar` - * - `/foo/bar` -> `/foo/bar` - * - `/` -> `/` - */ Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "removeTrailingSlash", { - enumerable: true, - get: function() { - return removeTrailingSlash; - } -}); -function removeTrailingSlash(route) { - return route.replace(/\/$/, '') || '/'; -} //# sourceMappingURL=remove-trailing-slash.js.map -}), -"[project]/node_modules/next/dist/shared/lib/promise-with-resolvers.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "createPromiseWithResolvers", { - enumerable: true, - get: function() { - return createPromiseWithResolvers; - } -}); -function createPromiseWithResolvers() { - // Shim of Stage 4 Promise.withResolvers proposal - let resolve; - let reject; - const promise = new Promise((res, rej)=>{ - resolve = res; - reject = rej; - }); - return { - resolve: resolve, - reject: reject, - promise - }; -} //# sourceMappingURL=promise-with-resolvers.js.map -}), -"[project]/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "pathHasPrefix", { - enumerable: true, - get: function() { - return pathHasPrefix; - } -}); -const _parsepath = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/router/utils/parse-path.js [app-client] (ecmascript)"); -function pathHasPrefix(path, prefix) { - if (typeof path !== 'string') { - return false; - } - const { pathname } = (0, _parsepath.parsePath)(path); - return pathname === prefix || pathname.startsWith(prefix + '/'); -} //# sourceMappingURL=path-has-prefix.js.map -}), -"[project]/node_modules/next/dist/shared/lib/server-reference-info.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - extractInfoFromServerReferenceId: null, - omitUnusedArgs: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - extractInfoFromServerReferenceId: function() { - return extractInfoFromServerReferenceId; - }, - omitUnusedArgs: function() { - return omitUnusedArgs; - } -}); -function extractInfoFromServerReferenceId(id) { - const infoByte = parseInt(id.slice(0, 2), 16); - const typeBit = infoByte >> 7 & 0x1; - const argMask = infoByte >> 1 & 0x3f; - const restArgs = infoByte & 0x1; - const usedArgs = Array(6); - for(let index = 0; index < 6; index++){ - const bitPosition = 5 - index; - const bit = argMask >> bitPosition & 0x1; - usedArgs[index] = bit === 1; - } - return { - type: typeBit === 1 ? 'use-cache' : 'server-action', - usedArgs: usedArgs, - hasRestArgs: restArgs === 1 - }; -} -function omitUnusedArgs(args, info) { - const filteredArgs = new Array(args.length); - for(let index = 0; index < args.length; index++){ - if (index < 6 && info.usedArgs[index] || // This assumes that the server reference info byte has the restArgs bit - // set to 1 if there are more than 6 args. - index >= 6 && info.hasRestArgs) { - filteredArgs[index] = args[index]; - } - } - return filteredArgs; -} //# sourceMappingURL=server-reference-info.js.map -}), -"[project]/node_modules/next/dist/shared/lib/action-revalidation-kind.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ActionDidNotRevalidate: null, - ActionDidRevalidateDynamicOnly: null, - ActionDidRevalidateStaticAndDynamic: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ActionDidNotRevalidate: function() { - return ActionDidNotRevalidate; - }, - ActionDidRevalidateDynamicOnly: function() { - return ActionDidRevalidateDynamicOnly; - }, - ActionDidRevalidateStaticAndDynamic: function() { - return ActionDidRevalidateStaticAndDynamic; - } -}); -const ActionDidNotRevalidate = 0; -const ActionDidRevalidateStaticAndDynamic = 1; -const ActionDidRevalidateDynamicOnly = 2; //# sourceMappingURL=action-revalidation-kind.js.map -}), -"[project]/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -'use client'; -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - AppRouterContext: null, - GlobalLayoutRouterContext: null, - LayoutRouterContext: null, - MissingSlotContext: null, - TemplateContext: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - AppRouterContext: function() { - return AppRouterContext; - }, - GlobalLayoutRouterContext: function() { - return GlobalLayoutRouterContext; - }, - LayoutRouterContext: function() { - return LayoutRouterContext; - }, - MissingSlotContext: function() { - return MissingSlotContext; - }, - TemplateContext: function() { - return TemplateContext; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const AppRouterContext = _react.default.createContext(null); -const LayoutRouterContext = _react.default.createContext(null); -const GlobalLayoutRouterContext = _react.default.createContext(null); -const TemplateContext = _react.default.createContext(null); -if ("TURBOPACK compile-time truthy", 1) { - AppRouterContext.displayName = 'AppRouterContext'; - LayoutRouterContext.displayName = 'LayoutRouterContext'; - GlobalLayoutRouterContext.displayName = 'GlobalLayoutRouterContext'; - TemplateContext.displayName = 'TemplateContext'; -} -const MissingSlotContext = _react.default.createContext(new Set()); //# sourceMappingURL=app-router-context.shared-runtime.js.map -}), -"[project]/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ServerInsertedHTMLContext: null, - useServerInsertedHTML: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ServerInsertedHTMLContext: function() { - return ServerInsertedHTMLContext; - }, - useServerInsertedHTML: function() { - return useServerInsertedHTML; - } -}); -const _interop_require_wildcard = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_wildcard._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const ServerInsertedHTMLContext = /*#__PURE__*/ _react.default.createContext(null); -function useServerInsertedHTML(callback) { - const addInsertedServerHTMLCallback = (0, _react.useContext)(ServerInsertedHTMLContext); - // Should have no effects on client where there's no flush effects provider - if (addInsertedServerHTMLCallback) { - addInsertedServerHTMLCallback(callback); - } -} //# sourceMappingURL=server-inserted-html.shared-runtime.js.map -}), -"[project]/node_modules/next/dist/shared/lib/utils/warn-once.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "warnOnce", { - enumerable: true, - get: function() { - return warnOnce; - } -}); -let warnOnce = (_)=>{}; -if ("TURBOPACK compile-time truthy", 1) { - const warnings = new Set(); - warnOnce = (msg)=>{ - if (!warnings.has(msg)) { - console.warn(msg); - } - warnings.add(msg); - }; -} //# sourceMappingURL=warn-once.js.map -}), -"[project]/node_modules/next/dist/shared/lib/format-webpack-messages.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** -MIT License - -Copyright (c) 2015-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -*/ "use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "default", { - enumerable: true, - get: function() { - return formatWebpackMessages; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _stripansi = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/strip-ansi/index.js [app-client] (ecmascript)")); -// This file is based on https://github.com/facebook/create-react-app/blob/7b1a32be6ec9f99a6c9a3c66813f3ac09c4736b9/packages/react-dev-utils/formatWebpackMessages.js -// It's been edited to remove chalk and CRA-specific logic -const friendlySyntaxErrorLabel = 'Syntax error:'; -const WEBPACK_BREAKING_CHANGE_POLYFILLS = '\n\nBREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.'; -function isLikelyASyntaxError(message) { - return (0, _stripansi.default)(message).includes(friendlySyntaxErrorLabel); -} -let hadMissingSassError = false; -// Cleans up webpack error messages. -function formatMessage(message, verbose, importTraceNote) { - // TODO: Replace this once webpack 5 is stable - if (typeof message === 'object' && message.message) { - const filteredModuleTrace = message.moduleTrace && message.moduleTrace.filter((trace)=>!/next-(middleware|client-pages|route|edge-function)-loader\.js/.test(trace.originName)); - let body = message.message; - const breakingChangeIndex = body.indexOf(WEBPACK_BREAKING_CHANGE_POLYFILLS); - if (breakingChangeIndex >= 0) { - body = body.slice(0, breakingChangeIndex); - } - // TODO: Rspack currently doesn't populate moduleName correctly in some cases, - // fall back to moduleIdentifier as a workaround - if (__TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"].env.NEXT_RSPACK && !message.moduleName && !message.file && message.moduleIdentifier) { - const parts = message.moduleIdentifier.split('!'); - message.moduleName = parts[parts.length - 1]; - } - message = (message.moduleName ? (0, _stripansi.default)(message.moduleName) + '\n' : '') + (message.file ? (0, _stripansi.default)(message.file) + '\n' : '') + body + (message.details && verbose ? '\n' + message.details : '') + (filteredModuleTrace && filteredModuleTrace.length ? (importTraceNote || '\n\nImport trace for requested module:') + filteredModuleTrace.map((trace)=>`\n${trace.moduleName}`).join('') : '') + (message.stack && verbose ? '\n' + message.stack : ''); - } - let lines = message.split('\n'); - // Strip Webpack-added headers off errors/warnings - // https://github.com/webpack/webpack/blob/master/lib/ModuleError.js - lines = lines.filter((line)=>!/Module [A-z ]+\(from/.test(line)); - // Transform parsing error into syntax error - // TODO: move this to our ESLint formatter? - lines = lines.map((line)=>{ - const parsingError = /Line (\d+):(?:(\d+):)?\s*Parsing error: (.+)$/.exec(line); - if (!parsingError) { - return line; - } - const [, errorLine, errorColumn, errorMessage] = parsingError; - return `${friendlySyntaxErrorLabel} ${errorMessage} (${errorLine}:${errorColumn})`; - }); - message = lines.join('\n'); - // Smoosh syntax errors (commonly found in CSS) - message = message.replace(/SyntaxError\s+\((\d+):(\d+)\)\s*(.+?)\n/g, `${friendlySyntaxErrorLabel} $3 ($1:$2)\n`); - // Clean up export errors - message = message.replace(/^.*export '(.+?)' was not found in '(.+?)'.*$/gm, `Attempted import error: '$1' is not exported from '$2'.`); - message = message.replace(/^.*export 'default' \(imported as '(.+?)'\) was not found in '(.+?)'.*$/gm, `Attempted import error: '$2' does not contain a default export (imported as '$1').`); - message = message.replace(/^.*export '(.+?)' \(imported as '(.+?)'\) was not found in '(.+?)'.*$/gm, `Attempted import error: '$1' is not exported from '$3' (imported as '$2').`); - lines = message.split('\n'); - // Remove leading newline - if (lines.length > 2 && lines[1].trim() === '') { - lines.splice(1, 1); - } - // Cleans up verbose "module not found" messages for files and packages. - if (lines[1] && lines[1].startsWith('Module not found: ')) { - lines = [ - lines[0], - lines[1].replace('Error: ', '').replace('Module not found: Cannot find file:', 'Cannot find file:'), - ...lines.slice(2) - ]; - } - // Add helpful message for users trying to use Sass for the first time - if (lines[1] && lines[1].match(/Cannot find module.+sass/)) { - // ./file.module.scss (<<loader info>>) => ./file.module.scss - const firstLine = lines[0].split('!'); - lines[0] = firstLine[firstLine.length - 1]; - lines[1] = "To use Next.js' built-in Sass support, you first need to install `sass`.\n"; - lines[1] += 'Run `npm i sass` or `yarn add sass` inside your workspace.\n'; - lines[1] += '\nLearn more: https://nextjs.org/docs/messages/install-sass'; - // dispose of unhelpful stack trace - lines = lines.slice(0, 2); - hadMissingSassError = true; - } else if (hadMissingSassError && message.match(/(sass-loader|resolve-url-loader: CSS error)/)) { - // dispose of unhelpful stack trace following missing sass module - lines = []; - } - if (!verbose) { - message = lines.join('\n'); - // Internal stacks are generally useless so we strip them... with the - // exception of stacks containing `webpack:` because they're normally - // from user code generated by Webpack. For more information see - // https://github.com/facebook/create-react-app/pull/1050 - message = message.replace(/^\s*at\s((?!webpack:).)*:\d+:\d+[\s)]*(\n|$)/gm, '') // at ... ...:x:y - ; - message = message.replace(/^\s*at\s<anonymous>(\n|$)/gm, '') // at <anonymous> - ; - message = message.replace(/File was processed with these loaders:\n(.+[\\/](next[\\/]dist[\\/].+|@next[\\/]react-refresh-utils[\\/]loader)\.js\n)*You may need an additional loader to handle the result of these loaders.\n/g, ''); - lines = message.split('\n'); - } - // Remove duplicated newlines - lines = lines.filter((line, index, arr)=>index === 0 || line.trim() !== '' || line.trim() !== arr[index - 1].trim()); - // Reassemble the message - message = lines.join('\n'); - return message.trim(); -} -function formatWebpackMessages(json, verbose) { - const formattedErrors = json.errors.map((message)=>{ - const isUnknownNextFontError = message.message.includes('An error occurred in `next/font`.'); - return formatMessage(message, isUnknownNextFontError || verbose); - }); - const formattedWarnings = json.warnings.map((message)=>{ - return formatMessage(message, verbose); - }); - // Reorder errors to put the most relevant ones first. - let reactServerComponentsError = -1; - for(let i = 0; i < formattedErrors.length; i++){ - const error = formattedErrors[i]; - if (error.includes('ReactServerComponentsError')) { - reactServerComponentsError = i; - break; - } - } - // Move the reactServerComponentsError to the top if it exists - if (reactServerComponentsError !== -1) { - const error = formattedErrors.splice(reactServerComponentsError, 1); - formattedErrors.unshift(error[0]); - } - const result = { - ...json, - errors: formattedErrors, - warnings: formattedWarnings - }; - if (!verbose && result.errors.some(isLikelyASyntaxError)) { - // If there are any syntax errors, show just them. - result.errors = result.errors.filter(isLikelyASyntaxError); - result.warnings = []; - } - return result; -} //# sourceMappingURL=format-webpack-messages.js.map -}), -"[project]/node_modules/next/dist/shared/lib/errors/constants.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "MISSING_ROOT_TAGS_ERROR", { - enumerable: true, - get: function() { - return MISSING_ROOT_TAGS_ERROR; - } -}); -const MISSING_ROOT_TAGS_ERROR = 'NEXT_MISSING_ROOT_TAGS'; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/shared/lib/normalized-asset-prefix.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "normalizedAssetPrefix", { - enumerable: true, - get: function() { - return normalizedAssetPrefix; - } -}); -function normalizedAssetPrefix(assetPrefix) { - // remove all leading slashes and trailing slashes - const escapedAssetPrefix = assetPrefix?.replace(/^\/+|\/+$/g, '') || false; - // if an assetPrefix was '/', we return empty string - // because it could be an unnecessary trailing slash - if (!escapedAssetPrefix) { - return ''; - } - if (URL.canParse(escapedAssetPrefix)) { - const url = new URL(escapedAssetPrefix).toString(); - return url.endsWith('/') ? url.slice(0, -1) : url; - } - // assuming assetPrefix here is a pathname-style, - // restore the leading slash - return `/${escapedAssetPrefix}`; -} //# sourceMappingURL=normalized-asset-prefix.js.map -}), -"[project]/node_modules/next/dist/lib/is-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - default: null, - getProperError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - /** - * Checks whether the given value is a NextError. - * This can be used to print a more detailed error message with properties like `code` & `digest`. - */ default: function() { - return isError; - }, - getProperError: function() { - return getProperError; - } -}); -const _isplainobject = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/is-plain-object.js [app-client] (ecmascript)"); -/** - * This is a safe stringify function that handles circular references. - * We're using a simpler version here to avoid introducing - * the dependency `safe-stable-stringify` into production bundle. - * - * This helper is used both in development and production. - */ function safeStringifyLite(obj) { - const seen = new WeakSet(); - return JSON.stringify(obj, (_key, value)=>{ - // If value is an object and already seen, replace with "[Circular]" - if (typeof value === 'object' && value !== null) { - if (seen.has(value)) { - return '[Circular]'; - } - seen.add(value); - } - return value; - }); -} -function isError(err) { - return typeof err === 'object' && err !== null && 'name' in err && 'message' in err; -} -function getProperError(err) { - if (isError(err)) { - return err; - } - if ("TURBOPACK compile-time truthy", 1) { - // provide better error for case where `throw undefined` - // is called in development - if (typeof err === 'undefined') { - return Object.defineProperty(new Error('An undefined error was thrown, ' + 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'), "__NEXT_ERROR_CODE", { - value: "E98", - enumerable: false, - configurable: true - }); - } - if (err === null) { - return Object.defineProperty(new Error('A null error was thrown, ' + 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'), "__NEXT_ERROR_CODE", { - value: "E336", - enumerable: false, - configurable: true - }); - } - } - return Object.defineProperty(new Error((0, _isplainobject.isPlainObject)(err) ? safeStringifyLite(err) : err + ''), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); -} //# sourceMappingURL=is-error.js.map -}), -"[project]/node_modules/next/dist/lib/require-instrumentation-client.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * This module imports the client instrumentation hook from the project root. - * - * The `private-next-instrumentation-client` module is automatically aliased to - * the `instrumentation-client.ts` file in the project root by webpack or turbopack. - */ "use strict"; -if ("TURBOPACK compile-time truthy", 1) { - const measureName = 'Client Instrumentation Hook'; - const startTime = performance.now(); - // eslint-disable-next-line @next/internal/typechecked-require -- Not a module. - module.exports = {}; - const endTime = performance.now(); - const duration = endTime - startTime; - // Using 16ms threshold as it represents one frame (1000ms/60fps) - // This helps identify if the instrumentation hook initialization - // could potentially cause frame drops during development. - const THRESHOLD = 16; - if (duration > THRESHOLD) { - console.log(`[${measureName}] Slow execution detected: ${duration.toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`); - } -} else //TURBOPACK unreachable -; - //# sourceMappingURL=require-instrumentation-client.js.map -}), -"[project]/node_modules/next/dist/lib/framework/boundary-constants.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - METADATA_BOUNDARY_NAME: null, - OUTLET_BOUNDARY_NAME: null, - ROOT_LAYOUT_BOUNDARY_NAME: null, - VIEWPORT_BOUNDARY_NAME: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - METADATA_BOUNDARY_NAME: function() { - return METADATA_BOUNDARY_NAME; - }, - OUTLET_BOUNDARY_NAME: function() { - return OUTLET_BOUNDARY_NAME; - }, - ROOT_LAYOUT_BOUNDARY_NAME: function() { - return ROOT_LAYOUT_BOUNDARY_NAME; - }, - VIEWPORT_BOUNDARY_NAME: function() { - return VIEWPORT_BOUNDARY_NAME; - } -}); -const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'; -const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'; -const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'; -const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'; //# sourceMappingURL=boundary-constants.js.map -}), -"[project]/node_modules/next/dist/lib/scheduler.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - atLeastOneTask: null, - scheduleImmediate: null, - scheduleOnNextTick: null, - waitAtLeastOneReactRenderTask: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - atLeastOneTask: function() { - return atLeastOneTask; - }, - scheduleImmediate: function() { - return scheduleImmediate; - }, - scheduleOnNextTick: function() { - return scheduleOnNextTick; - }, - waitAtLeastOneReactRenderTask: function() { - return waitAtLeastOneReactRenderTask; - } -}); -const scheduleOnNextTick = (cb)=>{ - // We use Promise.resolve().then() here so that the operation is scheduled at - // the end of the promise job queue, we then add it to the next process tick - // to ensure it's evaluated afterwards. - // - // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255 - // - Promise.resolve().then(()=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__["default"].nextTick(cb); - } - }); -}; -const scheduleImmediate = (cb)=>{ - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - setImmediate(cb); - } -}; -function atLeastOneTask() { - return new Promise((resolve)=>scheduleImmediate(resolve)); -} -function waitAtLeastOneReactRenderTask() { - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - else { - return new Promise((r)=>setImmediate(r)); - } -} //# sourceMappingURL=scheduler.js.map -}), -"[project]/node_modules/next/dist/lib/framework/boundary-components.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - MetadataBoundary: null, - OutletBoundary: null, - RootLayoutBoundary: null, - ViewportBoundary: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - MetadataBoundary: function() { - return MetadataBoundary; - }, - OutletBoundary: function() { - return OutletBoundary; - }, - RootLayoutBoundary: function() { - return RootLayoutBoundary; - }, - ViewportBoundary: function() { - return ViewportBoundary; - } -}); -const _boundaryconstants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/framework/boundary-constants.js [app-client] (ecmascript)"); -// We use a namespace object to allow us to recover the name of the function -// at runtime even when production bundling/minification is used. -const NameSpace = { - [_boundaryconstants.METADATA_BOUNDARY_NAME]: function({ children }) { - return children; - }, - [_boundaryconstants.VIEWPORT_BOUNDARY_NAME]: function({ children }) { - return children; - }, - [_boundaryconstants.OUTLET_BOUNDARY_NAME]: function({ children }) { - return children; - }, - [_boundaryconstants.ROOT_LAYOUT_BOUNDARY_NAME]: function({ children }) { - return children; - } -}; -const MetadataBoundary = // so it retains the name inferred from the namespace object -NameSpace[_boundaryconstants.METADATA_BOUNDARY_NAME.slice(0)]; -const ViewportBoundary = // so it retains the name inferred from the namespace object -NameSpace[_boundaryconstants.VIEWPORT_BOUNDARY_NAME.slice(0)]; -const OutletBoundary = // so it retains the name inferred from the namespace object -NameSpace[_boundaryconstants.OUTLET_BOUNDARY_NAME.slice(0)]; -const RootLayoutBoundary = // so it retains the name inferred from the namespace object -NameSpace[_boundaryconstants.ROOT_LAYOUT_BOUNDARY_NAME.slice(0)]; //# sourceMappingURL=boundary-components.js.map -}), -"[project]/node_modules/next/dist/lib/constants.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - ACTION_SUFFIX: null, - APP_DIR_ALIAS: null, - CACHE_ONE_YEAR: null, - DOT_NEXT_ALIAS: null, - ESLINT_DEFAULT_DIRS: null, - GSP_NO_RETURNED_VALUE: null, - GSSP_COMPONENT_MEMBER_ERROR: null, - GSSP_NO_RETURNED_VALUE: null, - HTML_CONTENT_TYPE_HEADER: null, - INFINITE_CACHE: null, - INSTRUMENTATION_HOOK_FILENAME: null, - JSON_CONTENT_TYPE_HEADER: null, - MATCHED_PATH_HEADER: null, - MIDDLEWARE_FILENAME: null, - MIDDLEWARE_LOCATION_REGEXP: null, - NEXT_BODY_SUFFIX: null, - NEXT_CACHE_IMPLICIT_TAG_ID: null, - NEXT_CACHE_REVALIDATED_TAGS_HEADER: null, - NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER: null, - NEXT_CACHE_SOFT_TAG_MAX_LENGTH: null, - NEXT_CACHE_TAGS_HEADER: null, - NEXT_CACHE_TAG_MAX_ITEMS: null, - NEXT_CACHE_TAG_MAX_LENGTH: null, - NEXT_DATA_SUFFIX: null, - NEXT_INTERCEPTION_MARKER_PREFIX: null, - NEXT_META_SUFFIX: null, - NEXT_QUERY_PARAM_PREFIX: null, - NEXT_RESUME_HEADER: null, - NON_STANDARD_NODE_ENV: null, - PAGES_DIR_ALIAS: null, - PRERENDER_REVALIDATE_HEADER: null, - PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER: null, - PROXY_FILENAME: null, - PROXY_LOCATION_REGEXP: null, - PUBLIC_DIR_MIDDLEWARE_CONFLICT: null, - ROOT_DIR_ALIAS: null, - RSC_ACTION_CLIENT_WRAPPER_ALIAS: null, - RSC_ACTION_ENCRYPTION_ALIAS: null, - RSC_ACTION_PROXY_ALIAS: null, - RSC_ACTION_VALIDATE_ALIAS: null, - RSC_CACHE_WRAPPER_ALIAS: null, - RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS: null, - RSC_MOD_REF_PROXY_ALIAS: null, - RSC_SEGMENTS_DIR_SUFFIX: null, - RSC_SEGMENT_SUFFIX: null, - RSC_SUFFIX: null, - SERVER_PROPS_EXPORT_ERROR: null, - SERVER_PROPS_GET_INIT_PROPS_CONFLICT: null, - SERVER_PROPS_SSG_CONFLICT: null, - SERVER_RUNTIME: null, - SSG_FALLBACK_EXPORT_ERROR: null, - SSG_GET_INITIAL_PROPS_CONFLICT: null, - STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR: null, - TEXT_PLAIN_CONTENT_TYPE_HEADER: null, - UNSTABLE_REVALIDATE_RENAME_ERROR: null, - WEBPACK_LAYERS: null, - WEBPACK_RESOURCE_QUERIES: null, - WEB_SOCKET_MAX_RECONNECTIONS: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - ACTION_SUFFIX: function() { - return ACTION_SUFFIX; - }, - APP_DIR_ALIAS: function() { - return APP_DIR_ALIAS; - }, - CACHE_ONE_YEAR: function() { - return CACHE_ONE_YEAR; - }, - DOT_NEXT_ALIAS: function() { - return DOT_NEXT_ALIAS; - }, - ESLINT_DEFAULT_DIRS: function() { - return ESLINT_DEFAULT_DIRS; - }, - GSP_NO_RETURNED_VALUE: function() { - return GSP_NO_RETURNED_VALUE; - }, - GSSP_COMPONENT_MEMBER_ERROR: function() { - return GSSP_COMPONENT_MEMBER_ERROR; - }, - GSSP_NO_RETURNED_VALUE: function() { - return GSSP_NO_RETURNED_VALUE; - }, - HTML_CONTENT_TYPE_HEADER: function() { - return HTML_CONTENT_TYPE_HEADER; - }, - INFINITE_CACHE: function() { - return INFINITE_CACHE; - }, - INSTRUMENTATION_HOOK_FILENAME: function() { - return INSTRUMENTATION_HOOK_FILENAME; - }, - JSON_CONTENT_TYPE_HEADER: function() { - return JSON_CONTENT_TYPE_HEADER; - }, - MATCHED_PATH_HEADER: function() { - return MATCHED_PATH_HEADER; - }, - MIDDLEWARE_FILENAME: function() { - return MIDDLEWARE_FILENAME; - }, - MIDDLEWARE_LOCATION_REGEXP: function() { - return MIDDLEWARE_LOCATION_REGEXP; - }, - NEXT_BODY_SUFFIX: function() { - return NEXT_BODY_SUFFIX; - }, - NEXT_CACHE_IMPLICIT_TAG_ID: function() { - return NEXT_CACHE_IMPLICIT_TAG_ID; - }, - NEXT_CACHE_REVALIDATED_TAGS_HEADER: function() { - return NEXT_CACHE_REVALIDATED_TAGS_HEADER; - }, - NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER: function() { - return NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER; - }, - NEXT_CACHE_SOFT_TAG_MAX_LENGTH: function() { - return NEXT_CACHE_SOFT_TAG_MAX_LENGTH; - }, - NEXT_CACHE_TAGS_HEADER: function() { - return NEXT_CACHE_TAGS_HEADER; - }, - NEXT_CACHE_TAG_MAX_ITEMS: function() { - return NEXT_CACHE_TAG_MAX_ITEMS; - }, - NEXT_CACHE_TAG_MAX_LENGTH: function() { - return NEXT_CACHE_TAG_MAX_LENGTH; - }, - NEXT_DATA_SUFFIX: function() { - return NEXT_DATA_SUFFIX; - }, - NEXT_INTERCEPTION_MARKER_PREFIX: function() { - return NEXT_INTERCEPTION_MARKER_PREFIX; - }, - NEXT_META_SUFFIX: function() { - return NEXT_META_SUFFIX; - }, - NEXT_QUERY_PARAM_PREFIX: function() { - return NEXT_QUERY_PARAM_PREFIX; - }, - NEXT_RESUME_HEADER: function() { - return NEXT_RESUME_HEADER; - }, - NON_STANDARD_NODE_ENV: function() { - return NON_STANDARD_NODE_ENV; - }, - PAGES_DIR_ALIAS: function() { - return PAGES_DIR_ALIAS; - }, - PRERENDER_REVALIDATE_HEADER: function() { - return PRERENDER_REVALIDATE_HEADER; - }, - PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER: function() { - return PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER; - }, - PROXY_FILENAME: function() { - return PROXY_FILENAME; - }, - PROXY_LOCATION_REGEXP: function() { - return PROXY_LOCATION_REGEXP; - }, - PUBLIC_DIR_MIDDLEWARE_CONFLICT: function() { - return PUBLIC_DIR_MIDDLEWARE_CONFLICT; - }, - ROOT_DIR_ALIAS: function() { - return ROOT_DIR_ALIAS; - }, - RSC_ACTION_CLIENT_WRAPPER_ALIAS: function() { - return RSC_ACTION_CLIENT_WRAPPER_ALIAS; - }, - RSC_ACTION_ENCRYPTION_ALIAS: function() { - return RSC_ACTION_ENCRYPTION_ALIAS; - }, - RSC_ACTION_PROXY_ALIAS: function() { - return RSC_ACTION_PROXY_ALIAS; - }, - RSC_ACTION_VALIDATE_ALIAS: function() { - return RSC_ACTION_VALIDATE_ALIAS; - }, - RSC_CACHE_WRAPPER_ALIAS: function() { - return RSC_CACHE_WRAPPER_ALIAS; - }, - RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS: function() { - return RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS; - }, - RSC_MOD_REF_PROXY_ALIAS: function() { - return RSC_MOD_REF_PROXY_ALIAS; - }, - RSC_SEGMENTS_DIR_SUFFIX: function() { - return RSC_SEGMENTS_DIR_SUFFIX; - }, - RSC_SEGMENT_SUFFIX: function() { - return RSC_SEGMENT_SUFFIX; - }, - RSC_SUFFIX: function() { - return RSC_SUFFIX; - }, - SERVER_PROPS_EXPORT_ERROR: function() { - return SERVER_PROPS_EXPORT_ERROR; - }, - SERVER_PROPS_GET_INIT_PROPS_CONFLICT: function() { - return SERVER_PROPS_GET_INIT_PROPS_CONFLICT; - }, - SERVER_PROPS_SSG_CONFLICT: function() { - return SERVER_PROPS_SSG_CONFLICT; - }, - SERVER_RUNTIME: function() { - return SERVER_RUNTIME; - }, - SSG_FALLBACK_EXPORT_ERROR: function() { - return SSG_FALLBACK_EXPORT_ERROR; - }, - SSG_GET_INITIAL_PROPS_CONFLICT: function() { - return SSG_GET_INITIAL_PROPS_CONFLICT; - }, - STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR: function() { - return STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR; - }, - TEXT_PLAIN_CONTENT_TYPE_HEADER: function() { - return TEXT_PLAIN_CONTENT_TYPE_HEADER; - }, - UNSTABLE_REVALIDATE_RENAME_ERROR: function() { - return UNSTABLE_REVALIDATE_RENAME_ERROR; - }, - WEBPACK_LAYERS: function() { - return WEBPACK_LAYERS; - }, - WEBPACK_RESOURCE_QUERIES: function() { - return WEBPACK_RESOURCE_QUERIES; - }, - WEB_SOCKET_MAX_RECONNECTIONS: function() { - return WEB_SOCKET_MAX_RECONNECTIONS; - } -}); -const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'; -const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'; -const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'; -const NEXT_QUERY_PARAM_PREFIX = 'nxtP'; -const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'; -const MATCHED_PATH_HEADER = 'x-matched-path'; -const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'; -const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER = 'x-prerender-revalidate-if-generated'; -const RSC_SEGMENTS_DIR_SUFFIX = '.segments'; -const RSC_SEGMENT_SUFFIX = '.segment.rsc'; -const RSC_SUFFIX = '.rsc'; -const ACTION_SUFFIX = '.action'; -const NEXT_DATA_SUFFIX = '.json'; -const NEXT_META_SUFFIX = '.meta'; -const NEXT_BODY_SUFFIX = '.body'; -const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'; -const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'; -const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER = 'x-next-revalidate-tag-token'; -const NEXT_RESUME_HEADER = 'next-resume'; -const NEXT_CACHE_TAG_MAX_ITEMS = 128; -const NEXT_CACHE_TAG_MAX_LENGTH = 256; -const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024; -const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'; -const CACHE_ONE_YEAR = 31536000; -const INFINITE_CACHE = 0xfffffffe; -const MIDDLEWARE_FILENAME = 'middleware'; -const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`; -const PROXY_FILENAME = 'proxy'; -const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`; -const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'; -const PAGES_DIR_ALIAS = 'private-next-pages'; -const DOT_NEXT_ALIAS = 'private-dot-next'; -const ROOT_DIR_ALIAS = 'private-next-root-dir'; -const APP_DIR_ALIAS = 'private-next-app-dir'; -const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'; -const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'; -const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'; -const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'; -const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS = 'private-next-rsc-track-dynamic-import'; -const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'; -const RSC_ACTION_CLIENT_WRAPPER_ALIAS = 'private-next-rsc-action-client-wrapper'; -const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`; -const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`; -const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`; -const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`; -const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`; -const SERVER_PROPS_EXPORT_ERROR = `pages with \`getServerSideProps\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`; -const GSP_NO_RETURNED_VALUE = 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'; -const GSSP_NO_RETURNED_VALUE = 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'; -const UNSTABLE_REVALIDATE_RENAME_ERROR = 'The `unstable_revalidate` property is available for general use.\n' + 'Please use `revalidate` instead.'; -const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`; -const NON_STANDARD_NODE_ENV = `You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`; -const SSG_FALLBACK_EXPORT_ERROR = `Pages with \`fallback\` enabled in \`getStaticPaths\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`; -const ESLINT_DEFAULT_DIRS = [ - 'app', - 'pages', - 'components', - 'lib', - 'src' -]; -const SERVER_RUNTIME = { - edge: 'edge', - experimentalEdge: 'experimental-edge', - nodejs: 'nodejs' -}; -const WEB_SOCKET_MAX_RECONNECTIONS = 12; -/** - * The names of the webpack layers. These layers are the primitives for the - * webpack chunks. - */ const WEBPACK_LAYERS_NAMES = { - /** - * The layer for the shared code between the client and server bundles. - */ shared: 'shared', - /** - * The layer for server-only runtime and picking up `react-server` export conditions. - * Including app router RSC pages and app router custom routes and metadata routes. - */ reactServerComponents: 'rsc', - /** - * Server Side Rendering layer for app (ssr). - */ serverSideRendering: 'ssr', - /** - * The browser client bundle layer for actions. - */ actionBrowser: 'action-browser', - /** - * The Node.js bundle layer for the API routes. - */ apiNode: 'api-node', - /** - * The Edge Lite bundle layer for the API routes. - */ apiEdge: 'api-edge', - /** - * The layer for the middleware code. - */ middleware: 'middleware', - /** - * The layer for the instrumentation hooks. - */ instrument: 'instrument', - /** - * The layer for assets on the edge. - */ edgeAsset: 'edge-asset', - /** - * The browser client bundle layer for App directory. - */ appPagesBrowser: 'app-pages-browser', - /** - * The browser client bundle layer for Pages directory. - */ pagesDirBrowser: 'pages-dir-browser', - /** - * The Edge Lite bundle layer for Pages directory. - */ pagesDirEdge: 'pages-dir-edge', - /** - * The Node.js bundle layer for Pages directory. - */ pagesDirNode: 'pages-dir-node' -}; -const WEBPACK_LAYERS = { - ...WEBPACK_LAYERS_NAMES, - GROUP: { - builtinReact: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser - ], - serverOnly: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - neutralTarget: [ - // pages api - WEBPACK_LAYERS_NAMES.apiNode, - WEBPACK_LAYERS_NAMES.apiEdge - ], - clientOnly: [ - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser - ], - bundled: [ - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.actionBrowser, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.shared, - WEBPACK_LAYERS_NAMES.instrument, - WEBPACK_LAYERS_NAMES.middleware - ], - appPages: [ - // app router pages and layouts - WEBPACK_LAYERS_NAMES.reactServerComponents, - WEBPACK_LAYERS_NAMES.serverSideRendering, - WEBPACK_LAYERS_NAMES.appPagesBrowser, - WEBPACK_LAYERS_NAMES.actionBrowser - ] - } -}; -const WEBPACK_RESOURCE_QUERIES = { - edgeSSREntry: '__next_edge_ssr_entry__', - metadata: '__next_metadata__', - metadataRoute: '__next_metadata_route__', - metadataImageMeta: '__next_metadata_image_meta__' -}; //# sourceMappingURL=constants.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/errors/stitched-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - coerceError: null, - decorateDevError: null, - getOwnerStack: null, - setOwnerStack: null, - setOwnerStackIfAvailable: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - coerceError: function() { - return coerceError; - }, - decorateDevError: function() { - return decorateDevError; - }, - getOwnerStack: function() { - return getOwnerStack; - }, - setOwnerStack: function() { - return setOwnerStack; - }, - setOwnerStackIfAvailable: function() { - return setOwnerStackIfAvailable; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _iserror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/lib/is-error.js [app-client] (ecmascript)")); -const ownerStacks = new WeakMap(); -function getOwnerStack(error) { - return ownerStacks.get(error); -} -function setOwnerStack(error, stack) { - ownerStacks.set(error, stack); -} -function coerceError(value) { - return (0, _iserror.default)(value) ? value : Object.defineProperty(new Error('' + value), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); -} -function setOwnerStackIfAvailable(error) { - // React 18 and prod does not have `captureOwnerStack` - if ('captureOwnerStack' in _react.default) { - setOwnerStack(error, _react.default.captureOwnerStack()); - } -} -function decorateDevError(thrownValue) { - const error = coerceError(thrownValue); - setOwnerStackIfAvailable(error); - return error; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=stitched-error.js.map -}), -"[project]/node_modules/next/dist/next-devtools/shared/console-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -// To distinguish from React error.digest, we use a different symbol here to determine if the error is from console.error or unhandled promise rejection. -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - createConsoleError: null, - isConsoleError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - createConsoleError: function() { - return createConsoleError; - }, - isConsoleError: function() { - return isConsoleError; - } -}); -const digestSym = Symbol.for('next.console.error.digest'); -function createConsoleError(message, environmentName) { - const error = typeof message === 'string' ? Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }) : message; - error[digestSym] = 'NEXT_CONSOLE_ERROR'; - if (environmentName && !error.environmentName) { - error.environmentName = environmentName; - } - return error; -} -const isConsoleError = (error)=>{ - return error && error[digestSym] === 'NEXT_CONSOLE_ERROR'; -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=console-error.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/terminal-logging-config.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getIsTerminalLoggingEnabled: null, - getTerminalLoggingConfig: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getIsTerminalLoggingEnabled: function() { - return getIsTerminalLoggingEnabled; - }, - getTerminalLoggingConfig: function() { - return getTerminalLoggingConfig; - } -}); -function getTerminalLoggingConfig() { - try { - return JSON.parse(("TURBOPACK compile-time value", "false") || 'false'); - } catch { - return false; - } -} -function getIsTerminalLoggingEnabled() { - const config = getTerminalLoggingConfig(); - return Boolean(config); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=terminal-logging-config.js.map -}), -"[project]/node_modules/next/dist/next-devtools/shared/forward-logs-shared.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - UNDEFINED_MARKER: null, - patchConsoleMethod: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - UNDEFINED_MARKER: function() { - return UNDEFINED_MARKER; - }, - patchConsoleMethod: function() { - return patchConsoleMethod; - } -}); -const UNDEFINED_MARKER = '__next_tagged_undefined'; -function patchConsoleMethod(methodName, wrapper) { - const descriptor = Object.getOwnPropertyDescriptor(console, methodName); - if (descriptor && (descriptor.configurable || descriptor.writable) && typeof descriptor.value === 'function') { - const originalMethod = descriptor.value; - const originalName = Object.getOwnPropertyDescriptor(originalMethod, 'name'); - const wrapperMethod = function(...args) { - wrapper(methodName, ...args); - originalMethod.apply(this, args); - }; - if (originalName) { - Object.defineProperty(wrapperMethod, 'name', originalName); - } - Object.defineProperty(console, methodName, { - value: wrapperMethod - }); - return ()=>{ - Object.defineProperty(console, methodName, { - value: originalMethod, - writable: descriptor.writable, - configurable: descriptor.configurable - }); - }; - } - return ()=>{}; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=forward-logs-shared.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/forward-logs-utils.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - logStringify: null, - preLogSerializationClone: null, - safeStringifyWithDepth: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - logStringify: function() { - return logStringify; - }, - preLogSerializationClone: function() { - return preLogSerializationClone; - }, - safeStringifyWithDepth: function() { - return safeStringifyWithDepth; - } -}); -const _safestablestringify = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/safe-stable-stringify/index.js [app-client] (ecmascript)"); -const _terminalloggingconfig = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/terminal-logging-config.js [app-client] (ecmascript)"); -const _forwardlogsshared = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/shared/forward-logs-shared.js [app-client] (ecmascript)"); -const terminalLoggingConfig = (0, _terminalloggingconfig.getTerminalLoggingConfig)(); -const PROMISE_MARKER = 'Promise {}'; -const UNAVAILABLE_MARKER = '[Unable to view]'; -const maximumDepth = typeof terminalLoggingConfig === 'object' && terminalLoggingConfig.depthLimit ? terminalLoggingConfig.depthLimit : 5; -const maximumBreadth = typeof terminalLoggingConfig === 'object' && terminalLoggingConfig.edgeLimit ? terminalLoggingConfig.edgeLimit : 100; -const safeStringifyWithDepth = (0, _safestablestringify.configure)({ - maximumDepth, - maximumBreadth -}); -function preLogSerializationClone(value, seen = new WeakMap()) { - if (value === undefined) return _forwardlogsshared.UNDEFINED_MARKER; - if (value === null || typeof value !== 'object') return value; - if (seen.has(value)) return seen.get(value); - try { - Object.keys(value); - } catch { - return UNAVAILABLE_MARKER; - } - try { - if (typeof value.then === 'function') return PROMISE_MARKER; - } catch { - return UNAVAILABLE_MARKER; - } - if (Array.isArray(value)) { - const out = []; - seen.set(value, out); - for (const item of value){ - try { - out.push(preLogSerializationClone(item, seen)); - } catch { - out.push(UNAVAILABLE_MARKER); - } - } - return out; - } - const proto = Object.getPrototypeOf(value); - if (proto === Object.prototype || proto === null) { - const out = {}; - seen.set(value, out); - for (const key of Object.keys(value)){ - try { - out[key] = preLogSerializationClone(value[key], seen); - } catch { - out[key] = UNAVAILABLE_MARKER; - } - } - return out; - } - return Object.prototype.toString.call(value); -} -const logStringify = (data)=>{ - try { - const result = safeStringifyWithDepth(data); - return result ?? `"${UNAVAILABLE_MARKER}"`; - } catch { - return `"${UNAVAILABLE_MARKER}"`; - } -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=forward-logs-utils.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/forward-logs.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - forwardErrorLog: null, - forwardUnhandledError: null, - initializeDebugLogForwarding: null, - logQueue: null, - logUnhandledRejection: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - forwardErrorLog: function() { - return forwardErrorLog; - }, - forwardUnhandledError: function() { - return forwardUnhandledError; - }, - initializeDebugLogForwarding: function() { - return initializeDebugLogForwarding; - }, - logQueue: function() { - return logQueue; - }, - logUnhandledRejection: function() { - return logUnhandledRejection; - } -}); -const _stitchederror = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/stitched-error.js [app-client] (ecmascript)"); -const _errorsource = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/error-source.js [app-client] (ecmascript)"); -const _terminalloggingconfig = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/terminal-logging-config.js [app-client] (ecmascript)"); -const _forwardlogsshared = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/shared/forward-logs-shared.js [app-client] (ecmascript)"); -const _forwardlogsutils = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/forward-logs-utils.js [app-client] (ecmascript)"); -// Client-side file logger for browser logs -class ClientFileLogger { - formatTimestamp() { - const now = new Date(); - const hours = now.getHours().toString().padStart(2, '0'); - const minutes = now.getMinutes().toString().padStart(2, '0'); - const seconds = now.getSeconds().toString().padStart(2, '0'); - const milliseconds = now.getMilliseconds().toString().padStart(3, '0'); - return `${hours}:${minutes}:${seconds}.${milliseconds}`; - } - log(level, args) { - if (isReactServerReplayedLog(args)) { - return; - } - // Format the args into a message string - const message = args.map((arg)=>{ - if (typeof arg === 'string') return arg; - if (typeof arg === 'number' || typeof arg === 'boolean') return String(arg); - if (arg === null) return 'null'; - if (arg === undefined) return 'undefined'; - // Handle DOM nodes - only log the tag name to avoid React proxied elements - if (arg instanceof Element) { - return `<${arg.tagName.toLowerCase()}>`; - } - return (0, _forwardlogsutils.safeStringifyWithDepth)(arg); - }).join(' '); - const logEntry = { - timestamp: this.formatTimestamp(), - level: level.toUpperCase(), - message - }; - this.logEntries.push(logEntry); - // Schedule flush when new log is added - scheduleLogFlush(); - } - getLogs() { - return [ - ...this.logEntries - ]; - } - clear() { - this.logEntries = []; - } - constructor(){ - this.logEntries = []; - } -} -const clientFileLogger = new ClientFileLogger(); -// Set up flush-based sending of client file logs -let logFlushTimeout = null; -let heartbeatInterval = null; -const scheduleLogFlush = ()=>{ - if (logFlushTimeout) { - clearTimeout(logFlushTimeout); - } - logFlushTimeout = setTimeout(()=>{ - sendClientFileLogs(); - logFlushTimeout = null; - }, 100) // Send after 100ms (much faster with debouncing) - ; -}; -const cancelLogFlush = ()=>{ - if (logFlushTimeout) { - clearTimeout(logFlushTimeout); - logFlushTimeout = null; - } -}; -const startHeartbeat = ()=>{ - if (heartbeatInterval) return; - heartbeatInterval = setInterval(()=>{ - if (logQueue.socket && logQueue.socket.readyState === WebSocket.OPEN) { - try { - // Send a ping to keep the connection alive - logQueue.socket.send(JSON.stringify({ - event: 'ping' - })); - } catch (error) { - // Connection might be closed, stop heartbeat - stopHeartbeat(); - } - } else { - stopHeartbeat(); - } - }, 5000) // Send ping every 5 seconds - ; -}; -const stopHeartbeat = ()=>{ - if (heartbeatInterval) { - clearInterval(heartbeatInterval); - heartbeatInterval = null; - } -}; -const isTerminalLoggingEnabled = (0, _terminalloggingconfig.getIsTerminalLoggingEnabled)(); -const methods = [ - 'log', - 'info', - 'warn', - 'debug', - 'table', - 'assert', - 'dir', - 'dirxml', - 'group', - 'groupCollapsed', - 'groupEnd', - 'trace' -]; -const afterThisFrame = (cb)=>{ - let timeout; - const rafId = requestAnimationFrame(()=>{ - timeout = setTimeout(()=>{ - cb(); - }); - }); - return ()=>{ - cancelAnimationFrame(rafId); - clearTimeout(timeout); - }; -}; -let isPatched = false; -const serializeEntries = (entries)=>entries.map((clientEntry)=>{ - switch(clientEntry.kind){ - case 'any-logged-error': - case 'console': - { - return { - ...clientEntry, - args: clientEntry.args.map(stringifyUserArg) - }; - } - case 'formatted-error': - { - return clientEntry; - } - default: - { - return null; - } - } - }); -// Function to send client file logs to server -const sendClientFileLogs = ()=>{ - if (!logQueue.socket || logQueue.socket.readyState !== WebSocket.OPEN) { - return; - } - const logs = clientFileLogger.getLogs(); - if (logs.length === 0) { - return; - } - try { - const payload = JSON.stringify({ - event: 'client-file-logs', - logs: logs - }); - logQueue.socket.send(payload); - } catch (error) { - console.error(error); - } finally{ - // Clear logs regardless of send success to prevent memory leaks - clientFileLogger.clear(); - } -}; -const logQueue = { - entries: [], - flushScheduled: false, - cancelFlush: null, - socket: null, - sourceType: undefined, - router: null, - scheduleLogSend: (entry)=>{ - logQueue.entries.push(entry); - if (logQueue.flushScheduled) { - return; - } - // safe to deref and use in setTimeout closure since we cancel on new socket - const socket = logQueue.socket; - if (!socket) { - return; - } - // we probably dont need this - logQueue.flushScheduled = true; - // non blocking log flush, runs at most once per frame - logQueue.cancelFlush = afterThisFrame(()=>{ - logQueue.flushScheduled = false; - // just incase - try { - const payload = JSON.stringify({ - event: 'browser-logs', - entries: serializeEntries(logQueue.entries), - router: logQueue.router, - // needed for source mapping, we just assign the sourceType from the last error for the whole batch - sourceType: logQueue.sourceType - }); - socket.send(payload); - logQueue.entries = []; - logQueue.sourceType = undefined; - // Also send client file logs - sendClientFileLogs(); - } catch { - // error (make sure u don't infinite loop) - /* noop */ } - }); - }, - onSocketReady: (socket)=>{ - // When MCP or terminal logging is enabled, we enable the socket connection, - // otherwise it will not proceed. - if ("TURBOPACK compile-time falsy", 0) //TURBOPACK unreachable - ; - if (socket.readyState !== WebSocket.OPEN) { - // invariant - return; - } - // incase an existing timeout was going to run with a stale socket - logQueue.cancelFlush?.(); - logQueue.socket = socket; - // Add socket event listeners to track connection state - socket.addEventListener('close', ()=>{ - cancelLogFlush(); - stopHeartbeat(); - }); - // Only send terminal logs if enabled - if (isTerminalLoggingEnabled) { - try { - const payload = JSON.stringify({ - event: 'browser-logs', - entries: serializeEntries(logQueue.entries), - router: logQueue.router, - sourceType: logQueue.sourceType - }); - socket.send(payload); - logQueue.entries = []; - logQueue.sourceType = undefined; - } catch { - /** noop just incase */ } - } - // Always send client file logs when socket is ready - sendClientFileLogs(); - // Start heartbeat to keep connection alive - startHeartbeat(); - } -}; -const stringifyUserArg = (arg)=>{ - if (arg.kind !== 'arg') { - return arg; - } - return { - ...arg, - data: (0, _forwardlogsutils.logStringify)(arg.data) - }; -}; -const createErrorArg = (error)=>{ - const stack = stackWithOwners(error); - return { - kind: 'formatted-error-arg', - prefix: error.message ? `${error.name}: ${error.message}` : `${error.name}`, - stack - }; -}; -const createLogEntry = (level, args)=>{ - // Always log to client file logger with args (formatting done inside log method) - clientFileLogger.log(level, args); - // Only forward to terminal if enabled - if (!isTerminalLoggingEnabled) { - return; - } - // do not abstract this, it implicitly relies on which functions call it. forcing the inlined implementation makes you think about callers - // error capture stack trace maybe - const stack = stackWithOwners(new Error()); - const stackLines = stack?.split('\n'); - const cleanStack = stackLines?.slice(3).join('\n') // this is probably ignored anyways - ; - const entry = { - kind: 'console', - consoleMethodStack: cleanStack ?? null, - method: level, - args: args.map((arg)=>{ - if (arg instanceof Error) { - return createErrorArg(arg); - } - return { - kind: 'arg', - data: (0, _forwardlogsutils.preLogSerializationClone)(arg) - }; - }) - }; - logQueue.scheduleLogSend(entry); -}; -const forwardErrorLog = (args)=>{ - // Always log to client file logger with args (formatting done inside log method) - clientFileLogger.log('error', args); - // Only forward to terminal if enabled - if (!isTerminalLoggingEnabled) { - return; - } - const errorObjects = args.filter((arg)=>arg instanceof Error); - const first = errorObjects.at(0); - if (first) { - const source = (0, _errorsource.getErrorSource)(first); - if (source) { - logQueue.sourceType = source; - } - } - /** - * browser shows stack regardless of type of data passed to console.error, so we should do the same - * - * do not abstract this, it implicitly relies on which functions call it. forcing the inlined implementation makes you think about callers - */ const stack = stackWithOwners(new Error()); - const stackLines = stack?.split('\n'); - const cleanStack = stackLines?.slice(3).join('\n'); - const entry = { - kind: 'any-logged-error', - method: 'error', - consoleErrorStack: cleanStack ?? '', - args: args.map((arg)=>{ - if (arg instanceof Error) { - return createErrorArg(arg); - } - return { - kind: 'arg', - data: (0, _forwardlogsutils.preLogSerializationClone)(arg) - }; - }) - }; - logQueue.scheduleLogSend(entry); -}; -const createUncaughtErrorEntry = (errorName, errorMessage, fullStack)=>{ - const entry = { - kind: 'formatted-error', - prefix: `Uncaught ${errorName}: ${errorMessage}`, - stack: fullStack, - method: 'error' - }; - logQueue.scheduleLogSend(entry); -}; -const stackWithOwners = (error)=>{ - let ownerStack = ''; - (0, _stitchederror.setOwnerStackIfAvailable)(error); - ownerStack = (0, _stitchederror.getOwnerStack)(error) || ''; - const stack = (error.stack || '') + ownerStack; - return stack; -}; -function logUnhandledRejection(reason) { - // Always log to client file logger - const message = reason instanceof Error ? `${reason.name}: ${reason.message}` : JSON.stringify(reason); - clientFileLogger.log('error', [ - `unhandledRejection: ${message}` - ]); - // Only forward to terminal if enabled - if (!isTerminalLoggingEnabled) { - return; - } - if (reason instanceof Error) { - createUnhandledRejectionErrorEntry(reason, stackWithOwners(reason)); - return; - } - createUnhandledRejectionNonErrorEntry(reason); -} -const createUnhandledRejectionErrorEntry = (error, fullStack)=>{ - const source = (0, _errorsource.getErrorSource)(error); - if (source) { - logQueue.sourceType = source; - } - const entry = { - kind: 'formatted-error', - prefix: `⨯ unhandledRejection: ${error.name}: ${error.message}`, - stack: fullStack, - method: 'error' - }; - logQueue.scheduleLogSend(entry); -}; -const createUnhandledRejectionNonErrorEntry = (reason)=>{ - const entry = { - kind: 'any-logged-error', - // we can't access the stack since the event is dispatched async and creating an inline error would be meaningless - consoleErrorStack: '', - method: 'error', - args: [ - { - kind: 'arg', - data: `⨯ unhandledRejection:`, - isRejectionMessage: true - }, - { - kind: 'arg', - data: (0, _forwardlogsutils.preLogSerializationClone)(reason) - } - ] - }; - logQueue.scheduleLogSend(entry); -}; -const isHMR = (args)=>{ - const firstArg = args[0]; - if (typeof firstArg !== 'string') { - return false; - } - if (firstArg.startsWith('[Fast Refresh]')) { - return true; - } - if (firstArg.startsWith('[HMR]')) { - return true; - } - return false; -}; -/** - * Matches the format of logs arguments React replayed from the RSC. - */ const isReactServerReplayedLog = (args)=>{ - if (args.length < 3) { - return false; - } - const [format, styles, label] = args; - if (typeof format !== 'string' || typeof styles !== 'string' || typeof label !== 'string') { - return false; - } - return format.startsWith('%c%s%c') && styles.includes('background:'); -}; -function forwardUnhandledError(error) { - // Always log to client file logger - clientFileLogger.log('error', [ - `uncaughtError: ${error.name}: ${error.message}` - ]); - // Only forward to terminal if enabled - if (!isTerminalLoggingEnabled) { - return; - } - createUncaughtErrorEntry(error.name, error.message, stackWithOwners(error)); -} -const initializeDebugLogForwarding = (router)=>{ - // probably don't need this - if (isPatched) { - return; - } - // TODO(rob): why does this break rendering on server, important to know incase the same bug appears in browser - if (typeof window === 'undefined') { - return; - } - // better to be safe than sorry - try { - methods.forEach((method)=>(0, _forwardlogsshared.patchConsoleMethod)(method, (_, ...args)=>{ - if (isHMR(args)) { - return; - } - if (isReactServerReplayedLog(args)) { - return; - } - createLogEntry(method, args); - })); - } catch {} - logQueue.router = router; - isPatched = true; - // Cleanup on page unload - window.addEventListener('beforeunload', ()=>{ - cancelLogFlush(); - stopHeartbeat(); - // Send any remaining logs before page unloads - sendClientFileLogs(); - }); -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=forward-logs.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/errors/use-error-handler.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - handleClientError: null, - handleConsoleError: null, - handleGlobalErrors: null, - useErrorHandler: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - handleClientError: function() { - return handleClientError; - }, - handleConsoleError: function() { - return handleConsoleError; - }, - handleGlobalErrors: function() { - return handleGlobalErrors; - }, - useErrorHandler: function() { - return useErrorHandler; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _isnextroutererror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/is-next-router-error.js [app-client] (ecmascript)"); -const _console = __turbopack_context__.r("[project]/node_modules/next/dist/client/lib/console.js [app-client] (ecmascript)"); -const _iserror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/lib/is-error.js [app-client] (ecmascript)")); -const _consoleerror = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/shared/console-error.js [app-client] (ecmascript)"); -const _stitchederror = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/stitched-error.js [app-client] (ecmascript)"); -const _forwardlogs = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/forward-logs.js [app-client] (ecmascript)"); -const queueMicroTask = globalThis.queueMicrotask || ((cb)=>Promise.resolve().then(cb)); -const errorQueue = []; -const errorHandlers = []; -const rejectionQueue = []; -const rejectionHandlers = []; -function handleConsoleError(originError, consoleErrorArgs) { - let error; - const { environmentName } = (0, _console.parseConsoleArgs)(consoleErrorArgs); - if ((0, _iserror.default)(originError)) { - error = (0, _consoleerror.createConsoleError)(originError, environmentName); - } else { - error = (0, _consoleerror.createConsoleError)((0, _console.formatConsoleArgs)(consoleErrorArgs), environmentName); - } - (0, _stitchederror.setOwnerStackIfAvailable)(error); - errorQueue.push(error); - for (const handler of errorHandlers){ - // Delayed the error being passed to React Dev Overlay, - // avoid the state being synchronously updated in the component. - queueMicroTask(()=>{ - handler(error); - }); - } -} -function handleClientError(error) { - errorQueue.push(error); - for (const handler of errorHandlers){ - // Delayed the error being passed to React Dev Overlay, - // avoid the state being synchronously updated in the component. - queueMicroTask(()=>{ - handler(error); - }); - } -} -function useErrorHandler(handleOnUnhandledError, handleOnUnhandledRejection) { - (0, _react.useEffect)(()=>{ - // Handle queued errors. - errorQueue.forEach(handleOnUnhandledError); - rejectionQueue.forEach(handleOnUnhandledRejection); - // Listen to new errors. - errorHandlers.push(handleOnUnhandledError); - rejectionHandlers.push(handleOnUnhandledRejection); - return ()=>{ - // Remove listeners. - errorHandlers.splice(errorHandlers.indexOf(handleOnUnhandledError), 1); - rejectionHandlers.splice(rejectionHandlers.indexOf(handleOnUnhandledRejection), 1); - // Reset error queues. - errorQueue.splice(0, errorQueue.length); - rejectionQueue.splice(0, rejectionQueue.length); - }; - }, [ - handleOnUnhandledError, - handleOnUnhandledRejection - ]); -} -function onUnhandledError(event) { - const thrownValue = event.error; - if ((0, _isnextroutererror.isNextRouterError)(thrownValue)) { - event.preventDefault(); - return false; - } - // When there's an error property present, we log the error to error overlay. - // Otherwise we don't do anything as it's not logging in the console either. - if (thrownValue) { - const error = (0, _stitchederror.coerceError)(thrownValue); - (0, _stitchederror.setOwnerStackIfAvailable)(error); - handleClientError(error); - (0, _forwardlogs.forwardUnhandledError)(error); - } -} -function onUnhandledRejection(ev) { - const reason = ev?.reason; - if ((0, _isnextroutererror.isNextRouterError)(reason)) { - ev.preventDefault(); - return; - } - const error = (0, _stitchederror.coerceError)(reason); - (0, _stitchederror.setOwnerStackIfAvailable)(error); - rejectionQueue.push(error); - for (const handler of rejectionHandlers){ - handler(error); - } - (0, _forwardlogs.logUnhandledRejection)(reason); -} -function handleGlobalErrors() { - if (typeof window !== 'undefined') { - try { - // Increase the number of stack frames on the client - Error.stackTraceLimit = 50; - } catch {} - window.addEventListener('error', onUnhandledError); - window.addEventListener('unhandledrejection', onUnhandledRejection); - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=use-error-handler.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/errors/intercept-console-error.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - originConsoleError: null, - patchConsoleError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - originConsoleError: function() { - return originConsoleError; - }, - patchConsoleError: function() { - return patchConsoleError; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _iserror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/lib/is-error.js [app-client] (ecmascript)")); -const _isnextroutererror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/is-next-router-error.js [app-client] (ecmascript)"); -const _useerrorhandler = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/use-error-handler.js [app-client] (ecmascript)"); -const _console = __turbopack_context__.r("[project]/node_modules/next/dist/client/lib/console.js [app-client] (ecmascript)"); -const _forwardlogs = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/forward-logs.js [app-client] (ecmascript)"); -const originConsoleError = globalThis.console.error; -function patchConsoleError() { - // Ensure it's only patched once - if (typeof window === 'undefined') { - return; - } - window.console.error = function error(...args) { - let maybeError; - if ("TURBOPACK compile-time truthy", 1) { - const { error: replayedError } = (0, _console.parseConsoleArgs)(args); - if (replayedError) { - maybeError = replayedError; - } else if ((0, _iserror.default)(args[0])) { - maybeError = args[0]; - } else { - // See https://github.com/facebook/react/blob/d50323eb845c5fde0d720cae888bf35dedd05506/packages/react-reconciler/src/ReactFiberErrorLogger.js#L78 - maybeError = args[1]; - } - } else //TURBOPACK unreachable - ; - if (!(0, _isnextroutererror.isNextRouterError)(maybeError)) { - if ("TURBOPACK compile-time truthy", 1) { - (0, _useerrorhandler.handleConsoleError)(// but if we pass the error directly, `handleClientError` will ignore it - maybeError, args); - } - (0, _forwardlogs.forwardErrorLog)(args); - originConsoleError.apply(window.console, args); - } - }; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=intercept-console-error.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/app-dev-overlay-setup.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -const _interceptconsoleerror = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/intercept-console-error.js [app-client] (ecmascript)"); -const _useerrorhandler = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/use-error-handler.js [app-client] (ecmascript)"); -const _forwardlogs = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/forward-logs.js [app-client] (ecmascript)"); -(0, _useerrorhandler.handleGlobalErrors)(); -(0, _interceptconsoleerror.patchConsoleError)(); -(0, _forwardlogs.initializeDebugLogForwarding)('app'); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-dev-overlay-setup.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/errors/index.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - decorateDevError: null, - handleClientError: null, - originConsoleError: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - decorateDevError: function() { - return _stitchederror.decorateDevError; - }, - handleClientError: function() { - return _useerrorhandler.handleClientError; - }, - originConsoleError: function() { - return _interceptconsoleerror.originConsoleError; - } -}); -const _interceptconsoleerror = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/intercept-console-error.js [app-client] (ecmascript)"); -const _useerrorhandler = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/use-error-handler.js [app-client] (ecmascript)"); -const _stitchederror = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/stitched-error.js [app-client] (ecmascript)"); -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=index.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE: null, - SegmentBoundaryTriggerNode: null, - SegmentStateProvider: null, - SegmentViewNode: null, - SegmentViewStateNode: null, - useSegmentState: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE: function() { - return SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE; - }, - SegmentBoundaryTriggerNode: function() { - return SegmentBoundaryTriggerNode; - }, - SegmentStateProvider: function() { - return SegmentStateProvider; - }, - SegmentViewNode: function() { - return SegmentViewNode; - }, - SegmentViewStateNode: function() { - return SegmentViewStateNode; - }, - useSegmentState: function() { - return useSegmentState; - } -}); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _nextdevtools = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/next-devtools/index.js (raw)"); -const _notfound = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/not-found.js [app-client] (ecmascript)"); -const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE = 'NEXT_DEVTOOLS_SIMULATED_ERROR'; -function SegmentTrieNode({ type, pagePath }) { - const { boundaryType, setBoundaryType } = useSegmentState(); - const nodeState = (0, _react.useMemo)(()=>{ - return { - type, - pagePath, - boundaryType, - setBoundaryType - }; - }, [ - type, - pagePath, - boundaryType, - setBoundaryType - ]); - // Use `useLayoutEffect` to ensure the state is updated during suspense. - // `useEffect` won't work as the state is preserved during suspense. - (0, _react.useLayoutEffect)(()=>{ - _nextdevtools.dispatcher.segmentExplorerNodeAdd(nodeState); - return ()=>{ - _nextdevtools.dispatcher.segmentExplorerNodeRemove(nodeState); - }; - }, [ - nodeState - ]); - return null; -} -function NotFoundSegmentNode() { - (0, _notfound.notFound)(); -} -function ErrorSegmentNode() { - throw Object.defineProperty(new Error(SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); -} -const forever = new Promise(()=>{}); -function LoadingSegmentNode() { - (0, _react.use)(forever); - return null; -} -function SegmentViewStateNode({ page }) { - (0, _react.useLayoutEffect)(()=>{ - _nextdevtools.dispatcher.segmentExplorerUpdateRouteState(page); - return ()=>{ - _nextdevtools.dispatcher.segmentExplorerUpdateRouteState(''); - }; - }, [ - page - ]); - return null; -} -function SegmentBoundaryTriggerNode() { - const { boundaryType } = useSegmentState(); - let segmentNode = null; - if (boundaryType === 'loading') { - segmentNode = /*#__PURE__*/ (0, _jsxruntime.jsx)(LoadingSegmentNode, {}); - } else if (boundaryType === 'not-found') { - segmentNode = /*#__PURE__*/ (0, _jsxruntime.jsx)(NotFoundSegmentNode, {}); - } else if (boundaryType === 'error') { - segmentNode = /*#__PURE__*/ (0, _jsxruntime.jsx)(ErrorSegmentNode, {}); - } - return segmentNode; -} -function SegmentViewNode({ type, pagePath, children }) { - const segmentNode = /*#__PURE__*/ (0, _jsxruntime.jsx)(SegmentTrieNode, { - type: type, - pagePath: pagePath - }, type); - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_jsxruntime.Fragment, { - children: [ - segmentNode, - children - ] - }); -} -const SegmentStateContext = /*#__PURE__*/ (0, _react.createContext)({ - boundaryType: null, - setBoundaryType: ()=>{} -}); -function SegmentStateProvider({ children }) { - const [boundaryType, setBoundaryType] = (0, _react.useState)(null); - const [errorBoundaryKey, setErrorBoundaryKey] = (0, _react.useState)(0); - const reloadBoundary = (0, _react.useCallback)(()=>setErrorBoundaryKey((prev)=>prev + 1), []); - const setBoundaryTypeAndReload = (0, _react.useCallback)((type)=>{ - if (type === null) { - reloadBoundary(); - } - setBoundaryType(type); - }, [ - reloadBoundary - ]); - return /*#__PURE__*/ (0, _jsxruntime.jsx)(SegmentStateContext.Provider, { - value: { - boundaryType, - setBoundaryType: setBoundaryTypeAndReload - }, - children: children - }, errorBoundaryKey); -} -function useSegmentState() { - return (0, _react.useContext)(SegmentStateContext); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=segment-explorer-node.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/app-dev-overlay-error-boundary.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "AppDevOverlayErrorBoundary", { - enumerable: true, - get: function() { - return AppDevOverlayErrorBoundary; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _nextdevtools = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/next-devtools/index.js (raw)"); -const _runtimeerrorhandler = __turbopack_context__.r("[project]/node_modules/next/dist/client/dev/runtime-error-handler.js [app-client] (ecmascript)"); -const _errorboundary = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/error-boundary.js [app-client] (ecmascript)"); -const _globalerror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)")); -const _segmentexplorernode = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js [app-client] (ecmascript)"); -function ErroredHtml({ globalError: [GlobalError, globalErrorStyles], error }) { - if (!error) { - return /*#__PURE__*/ (0, _jsxruntime.jsxs)("html", { - children: [ - /*#__PURE__*/ (0, _jsxruntime.jsx)("head", {}), - /*#__PURE__*/ (0, _jsxruntime.jsx)("body", {}) - ] - }); - } - return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_errorboundary.ErrorBoundary, { - errorComponent: _globalerror.default, - children: [ - globalErrorStyles, - /*#__PURE__*/ (0, _jsxruntime.jsx)(GlobalError, { - error: error - }) - ] - }); -} -class AppDevOverlayErrorBoundary extends _react.PureComponent { - static getDerivedStateFromError(error) { - _runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError = true; - return { - reactError: error - }; - } - componentDidCatch(err) { - if (("TURBOPACK compile-time value", "development") === 'development' && err.message === _segmentexplorernode.SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE) { - return; - } - _nextdevtools.dispatcher.openErrorOverlay(); - } - render() { - const { children, globalError } = this.props; - const { reactError } = this.state; - const fallback = /*#__PURE__*/ (0, _jsxruntime.jsx)(ErroredHtml, { - globalError: globalError, - error: reactError - }); - return reactError !== null ? fallback : children; - } - constructor(...args){ - super(...args), this.state = { - reactError: null - }; - } -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=app-dev-overlay-error-boundary.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/use-app-dev-rendering-indicator.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "useAppDevRenderingIndicator", { - enumerable: true, - get: function() { - return useAppDevRenderingIndicator; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _nextdevtools = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/next-devtools/index.js (raw)"); -const useAppDevRenderingIndicator = ()=>{ - const [isPending, startTransition] = (0, _react.useTransition)(); - (0, _react.useEffect)(()=>{ - if (isPending) { - _nextdevtools.dispatcher.renderingIndicatorShow(); - } else { - _nextdevtools.dispatcher.renderingIndicatorHide(); - } - }, [ - isPending - ]); - return startTransition; -}; -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=use-app-dev-rendering-indicator.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/errors/replay-ssr-only-errors.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "ReplaySsrOnlyErrors", { - enumerable: true, - get: function() { - return ReplaySsrOnlyErrors; - } -}); -const _react = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)"); -const _useerrorhandler = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/errors/use-error-handler.js [app-client] (ecmascript)"); -const _isnextroutererror = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/is-next-router-error.js [app-client] (ecmascript)"); -const _constants = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/errors/constants.js [app-client] (ecmascript)"); -function readSsrError() { - if (typeof document === 'undefined') { - return null; - } - const ssrErrorTemplateTag = document.querySelector('template[data-next-error-message]'); - if (ssrErrorTemplateTag) { - const message = ssrErrorTemplateTag.getAttribute('data-next-error-message'); - const stack = ssrErrorTemplateTag.getAttribute('data-next-error-stack'); - const digest = ssrErrorTemplateTag.getAttribute('data-next-error-digest'); - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - if (digest) { - ; - error.digest = digest; - } - // Skip Next.js SSR'd internal errors that which will be handled by the error boundaries. - if ((0, _isnextroutererror.isNextRouterError)(error)) { - return null; - } - error.stack = stack || ''; - return error; - } - return null; -} -function ReplaySsrOnlyErrors({ onBlockingError }) { - if ("TURBOPACK compile-time truthy", 1) { - // Need to read during render. The attributes will be gone after commit. - const ssrError = readSsrError(); - // eslint-disable-next-line react-hooks/rules-of-hooks - (0, _react.useEffect)(()=>{ - if (ssrError !== null) { - // TODO(veil): Include original Owner Stack (NDX-905) - // TODO(veil): Mark as recoverable error - // TODO(veil): console.error - (0, _useerrorhandler.handleClientError)(ssrError); - // If it's missing root tags, we can't recover, make it blocking. - if (ssrError.digest === _constants.MISSING_ROOT_TAGS_ERROR) { - onBlockingError(); - } - } - }, [ - ssrError, - onBlockingError - ]); - } - return null; -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=replay-ssr-only-errors.js.map -}), -"[project]/node_modules/next/dist/next-devtools/userspace/app/client-entry.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "RootLevelDevOverlayElement", { - enumerable: true, - get: function() { - return RootLevelDevOverlayElement; - } -}); -const _interop_require_default = __turbopack_context__.r("[project]/node_modules/@swc/helpers/cjs/_interop_require_default.cjs [app-client] (ecmascript)"); -const _jsxruntime = __turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/jsx-runtime.js [app-client] (ecmascript)"); -const _react = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _globalerror = /*#__PURE__*/ _interop_require_default._(__turbopack_context__.r("[project]/node_modules/next/dist/client/components/builtin/global-error.js [app-client] (ecmascript)")); -const _appdevoverlayerrorboundary = __turbopack_context__.r("[project]/node_modules/next/dist/next-devtools/userspace/app/app-dev-overlay-error-boundary.js [app-client] (ecmascript)"); -function RootLevelDevOverlayElement({ children }) { - return /*#__PURE__*/ (0, _jsxruntime.jsx)(_appdevoverlayerrorboundary.AppDevOverlayErrorBoundary, { - globalError: [ - _globalerror.default, - null - ], - children: children - }); -} -if ((typeof exports.default === 'function' || typeof exports.default === 'object' && exports.default !== null) && typeof exports.default.__esModule === 'undefined') { - Object.defineProperty(exports.default, '__esModule', { - value: true - }); - Object.assign(exports.default, exports); - module.exports = exports.default; -} //# sourceMappingURL=client-entry.js.map -}), -"[project]/node_modules/next/dist/server/app-render/async-local-storage.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - bindSnapshot: null, - createAsyncLocalStorage: null, - createSnapshot: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - bindSnapshot: function() { - return bindSnapshot; - }, - createAsyncLocalStorage: function() { - return createAsyncLocalStorage; - }, - createSnapshot: function() { - return createSnapshot; - } -}); -const sharedAsyncLocalStorageNotAvailableError = Object.defineProperty(new Error('Invariant: AsyncLocalStorage accessed in runtime where it is not available'), "__NEXT_ERROR_CODE", { - value: "E504", - enumerable: false, - configurable: true -}); -class FakeAsyncLocalStorage { - disable() { - throw sharedAsyncLocalStorageNotAvailableError; - } - getStore() { - // This fake implementation of AsyncLocalStorage always returns `undefined`. - return undefined; - } - run() { - throw sharedAsyncLocalStorageNotAvailableError; - } - exit() { - throw sharedAsyncLocalStorageNotAvailableError; - } - enterWith() { - throw sharedAsyncLocalStorageNotAvailableError; - } - static bind(fn) { - return fn; - } -} -const maybeGlobalAsyncLocalStorage = typeof globalThis !== 'undefined' && globalThis.AsyncLocalStorage; -function createAsyncLocalStorage() { - if (maybeGlobalAsyncLocalStorage) { - return new maybeGlobalAsyncLocalStorage(); - } - return new FakeAsyncLocalStorage(); -} -function bindSnapshot(fn) { - if (maybeGlobalAsyncLocalStorage) { - return maybeGlobalAsyncLocalStorage.bind(fn); - } - return FakeAsyncLocalStorage.bind(fn); -} -function createSnapshot() { - if (maybeGlobalAsyncLocalStorage) { - return maybeGlobalAsyncLocalStorage.snapshot(); - } - return function(fn, ...args) { - return fn(...args); - }; -} //# sourceMappingURL=async-local-storage.js.map -}), -"[project]/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "workUnitAsyncStorageInstance", { - enumerable: true, - get: function() { - return workUnitAsyncStorageInstance; - } -}); -const _asynclocalstorage = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/async-local-storage.js [app-client] (ecmascript)"); -const workUnitAsyncStorageInstance = (0, _asynclocalstorage.createAsyncLocalStorage)(); //# sourceMappingURL=work-unit-async-storage-instance.js.map -}), -"[project]/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - getCacheSignal: null, - getDraftModeProviderForCacheScope: null, - getHmrRefreshHash: null, - getPrerenderResumeDataCache: null, - getRenderResumeDataCache: null, - getRuntimeStagePromise: null, - getServerComponentsHmrCache: null, - isHmrRefresh: null, - throwForMissingRequestStore: null, - throwInvariantForMissingStore: null, - workUnitAsyncStorage: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - getCacheSignal: function() { - return getCacheSignal; - }, - getDraftModeProviderForCacheScope: function() { - return getDraftModeProviderForCacheScope; - }, - getHmrRefreshHash: function() { - return getHmrRefreshHash; - }, - getPrerenderResumeDataCache: function() { - return getPrerenderResumeDataCache; - }, - getRenderResumeDataCache: function() { - return getRenderResumeDataCache; - }, - getRuntimeStagePromise: function() { - return getRuntimeStagePromise; - }, - getServerComponentsHmrCache: function() { - return getServerComponentsHmrCache; - }, - isHmrRefresh: function() { - return isHmrRefresh; - }, - throwForMissingRequestStore: function() { - return throwForMissingRequestStore; - }, - throwInvariantForMissingStore: function() { - return throwInvariantForMissingStore; - }, - workUnitAsyncStorage: function() { - return _workunitasyncstorageinstance.workUnitAsyncStorageInstance; - } -}); -const _workunitasyncstorageinstance = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js [app-client] (ecmascript)"); -const _approuterheaders = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/app-router-headers.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -function throwForMissingRequestStore(callingExpression) { - throw Object.defineProperty(new Error(`\`${callingExpression}\` was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context`), "__NEXT_ERROR_CODE", { - value: "E251", - enumerable: false, - configurable: true - }); -} -function throwInvariantForMissingStore() { - throw Object.defineProperty(new _invarianterror.InvariantError('Expected workUnitAsyncStorage to have a store.'), "__NEXT_ERROR_CODE", { - value: "E696", - enumerable: false, - configurable: true - }); -} -function getPrerenderResumeDataCache(workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - case 'prerender-ppr': - return workUnitStore.prerenderResumeDataCache; - case 'prerender-client': - // TODO eliminate fetch caching in client scope and stop exposing this data - // cache during SSR. - return workUnitStore.prerenderResumeDataCache; - case 'request': - { - // In dev, we might fill caches even during a dynamic request. - if (workUnitStore.prerenderResumeDataCache) { - return workUnitStore.prerenderResumeDataCache; - } - // fallthrough - } - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - return null; - default: - return workUnitStore; - } -} -function getRenderResumeDataCache(workUnitStore) { - switch(workUnitStore.type){ - case 'request': - case 'prerender': - case 'prerender-runtime': - case 'prerender-client': - if (workUnitStore.renderResumeDataCache) { - // If we are in a prerender, we might have a render resume data cache - // that is used to read from prefilled caches. - return workUnitStore.renderResumeDataCache; - } - // fallthrough - case 'prerender-ppr': - // Otherwise we return the mutable resume data cache here as an immutable - // version of the cache as it can also be used for reading. - return workUnitStore.prerenderResumeDataCache ?? null; - case 'cache': - case 'private-cache': - case 'unstable-cache': - case 'prerender-legacy': - return null; - default: - return workUnitStore; - } -} -function getHmrRefreshHash(workStore, workUnitStore) { - if (workStore.dev) { - switch(workUnitStore.type){ - case 'cache': - case 'private-cache': - case 'prerender': - case 'prerender-runtime': - return workUnitStore.hmrRefreshHash; - case 'request': - var _workUnitStore_cookies_get; - return (_workUnitStore_cookies_get = workUnitStore.cookies.get(_approuterheaders.NEXT_HMR_REFRESH_HASH_COOKIE)) == null ? void 0 : _workUnitStore_cookies_get.value; - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - return undefined; -} -function isHmrRefresh(workStore, workUnitStore) { - if (workStore.dev) { - switch(workUnitStore.type){ - case 'cache': - case 'private-cache': - case 'request': - return workUnitStore.isHmrRefresh ?? false; - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - case 'prerender-ppr': - case 'prerender-legacy': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - return false; -} -function getServerComponentsHmrCache(workStore, workUnitStore) { - if (workStore.dev) { - switch(workUnitStore.type){ - case 'cache': - case 'private-cache': - case 'request': - return workUnitStore.serverComponentsHmrCache; - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - case 'prerender-ppr': - case 'prerender-legacy': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } - return undefined; -} -function getDraftModeProviderForCacheScope(workStore, workUnitStore) { - if (workStore.isDraftMode) { - switch(workUnitStore.type){ - case 'cache': - case 'private-cache': - case 'unstable-cache': - case 'prerender-runtime': - case 'request': - return workUnitStore.draftMode; - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - break; - default: - workUnitStore; - } - } - return undefined; -} -function getCacheSignal(workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-client': - case 'prerender-runtime': - return workUnitStore.cacheSignal; - case 'request': - { - // In dev, we might fill caches even during a dynamic request. - if (workUnitStore.cacheSignal) { - return workUnitStore.cacheSignal; - } - // fallthrough - } - case 'prerender-ppr': - case 'prerender-legacy': - case 'cache': - case 'private-cache': - case 'unstable-cache': - return null; - default: - return workUnitStore; - } -} -function getRuntimeStagePromise(workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-runtime': - case 'private-cache': - return workUnitStore.runtimeStagePromise; - case 'prerender': - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - case 'cache': - case 'unstable-cache': - return null; - default: - return workUnitStore; - } -} //# sourceMappingURL=work-unit-async-storage.external.js.map -}), -"[project]/node_modules/next/dist/server/app-render/work-async-storage-instance.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "workAsyncStorageInstance", { - enumerable: true, - get: function() { - return workAsyncStorageInstance; - } -}); -const _asynclocalstorage = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/async-local-storage.js [app-client] (ecmascript)"); -const workAsyncStorageInstance = (0, _asynclocalstorage.createAsyncLocalStorage)(); //# sourceMappingURL=work-async-storage-instance.js.map -}), -"[project]/node_modules/next/dist/server/app-render/work-async-storage.external.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "workAsyncStorage", { - enumerable: true, - get: function() { - return _workasyncstorageinstance.workAsyncStorageInstance; - } -}); -const _workasyncstorageinstance = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-async-storage-instance.js [app-client] (ecmascript)"); //# sourceMappingURL=work-async-storage.external.js.map -}), -"[project]/node_modules/next/dist/server/app-render/action-async-storage-instance.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "actionAsyncStorageInstance", { - enumerable: true, - get: function() { - return actionAsyncStorageInstance; - } -}); -const _asynclocalstorage = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/async-local-storage.js [app-client] (ecmascript)"); -const actionAsyncStorageInstance = (0, _asynclocalstorage.createAsyncLocalStorage)(); //# sourceMappingURL=action-async-storage-instance.js.map -}), -"[project]/node_modules/next/dist/server/app-render/action-async-storage.external.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "actionAsyncStorage", { - enumerable: true, - get: function() { - return _actionasyncstorageinstance.actionAsyncStorageInstance; - } -}); -const _actionasyncstorageinstance = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/action-async-storage-instance.js [app-client] (ecmascript)"); //# sourceMappingURL=action-async-storage.external.js.map -}), -"[project]/node_modules/next/dist/server/dynamic-rendering-utils.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - isHangingPromiseRejectionError: null, - makeDevtoolsIOAwarePromise: null, - makeHangingPromise: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - isHangingPromiseRejectionError: function() { - return isHangingPromiseRejectionError; - }, - makeDevtoolsIOAwarePromise: function() { - return makeDevtoolsIOAwarePromise; - }, - makeHangingPromise: function() { - return makeHangingPromise; - } -}); -function isHangingPromiseRejectionError(err) { - if (typeof err !== 'object' || err === null || !('digest' in err)) { - return false; - } - return err.digest === HANGING_PROMISE_REJECTION; -} -const HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'; -class HangingPromiseRejectionError extends Error { - constructor(route, expression){ - super(`During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \`setTimeout\`, \`after\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route "${route}".`), this.route = route, this.expression = expression, this.digest = HANGING_PROMISE_REJECTION; - } -} -const abortListenersBySignal = new WeakMap(); -function makeHangingPromise(signal, route, expression) { - if (signal.aborted) { - return Promise.reject(new HangingPromiseRejectionError(route, expression)); - } else { - const hangingPromise = new Promise((_, reject)=>{ - const boundRejection = reject.bind(null, new HangingPromiseRejectionError(route, expression)); - let currentListeners = abortListenersBySignal.get(signal); - if (currentListeners) { - currentListeners.push(boundRejection); - } else { - const listeners = [ - boundRejection - ]; - abortListenersBySignal.set(signal, listeners); - signal.addEventListener('abort', ()=>{ - for(let i = 0; i < listeners.length; i++){ - listeners[i](); - } - }, { - once: true - }); - } - }); - // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so - // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct - // your own promise out of it you'll need to ensure you handle the error when it rejects. - hangingPromise.catch(ignoreReject); - return hangingPromise; - } -} -function ignoreReject() {} -function makeDevtoolsIOAwarePromise(underlying, requestStore, stage) { - if (requestStore.stagedRendering) { - // We resolve each stage in a timeout, so React DevTools will pick this up as IO. - return requestStore.stagedRendering.delayUntilStage(stage, undefined, underlying); - } - // in React DevTools if we resolve in a setTimeout we will observe - // the promise resolution as something that can suspend a boundary or root. - return new Promise((resolve)=>{ - // Must use setTimeout to be considered IO React DevTools. setImmediate will not work. - setTimeout(()=>{ - resolve(underlying); - }, 0); - }); -} //# sourceMappingURL=dynamic-rendering-utils.js.map -}), -"[project]/node_modules/next/dist/server/lib/router-utils/is-postpone.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "isPostpone", { - enumerable: true, - get: function() { - return isPostpone; - } -}); -const REACT_POSTPONE_TYPE = Symbol.for('react.postpone'); -function isPostpone(error) { - return typeof error === 'object' && error !== null && error.$$typeof === REACT_POSTPONE_TYPE; -} //# sourceMappingURL=is-postpone.js.map -}), -"[project]/node_modules/next/dist/server/app-render/dynamic-rendering.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -var __TURBOPACK__imported__module__$5b$project$5d2f$node_modules$2f$next$2f$dist$2f$build$2f$polyfills$2f$process$2e$js__$5b$app$2d$client$5d$__$28$ecmascript$29$__ = /*#__PURE__*/ __turbopack_context__.i("[project]/node_modules/next/dist/build/polyfills/process.js [app-client] (ecmascript)"); -/** - * The functions provided by this module are used to communicate certain properties - * about the currently running code so that Next.js can make decisions on how to handle - * the current execution in different rendering modes such as pre-rendering, resuming, and SSR. - * - * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering. - * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts - * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of - * Dynamic indications. - * - * The first is simply an intention to be dynamic. unstable_noStore is an example of this where - * the currently executing code simply declares that the current scope is dynamic but if you use it - * inside unstable_cache it can still be cached. This type of indication can be removed if we ever - * make the default dynamic to begin with because the only way you would ever be static is inside - * a cache scope which this indication does not affect. - * - * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic - * because it means that it is inappropriate to cache this at all. using a dynamic data source inside - * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should - * read that data outside the cache and pass it in as an argument to the cached function. - */ "use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - Postpone: null, - PreludeState: null, - abortAndThrowOnSynchronousRequestDataAccess: null, - abortOnSynchronousPlatformIOAccess: null, - accessedDynamicData: null, - annotateDynamicAccess: null, - consumeDynamicAccess: null, - createDynamicTrackingState: null, - createDynamicValidationState: null, - createHangingInputAbortSignal: null, - createRenderInBrowserAbortSignal: null, - delayUntilRuntimeStage: null, - formatDynamicAPIAccesses: null, - getFirstDynamicReason: null, - getStaticShellDisallowedDynamicReasons: null, - isDynamicPostpone: null, - isPrerenderInterruptedError: null, - logDisallowedDynamicError: null, - markCurrentScopeAsDynamic: null, - postponeWithTracking: null, - throwIfDisallowedDynamic: null, - throwToInterruptStaticGeneration: null, - trackAllowedDynamicAccess: null, - trackDynamicDataInDynamicRender: null, - trackDynamicHoleInRuntimeShell: null, - trackDynamicHoleInStaticShell: null, - useDynamicRouteParams: null, - useDynamicSearchParams: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - Postpone: function() { - return Postpone; - }, - PreludeState: function() { - return PreludeState; - }, - abortAndThrowOnSynchronousRequestDataAccess: function() { - return abortAndThrowOnSynchronousRequestDataAccess; - }, - abortOnSynchronousPlatformIOAccess: function() { - return abortOnSynchronousPlatformIOAccess; - }, - accessedDynamicData: function() { - return accessedDynamicData; - }, - annotateDynamicAccess: function() { - return annotateDynamicAccess; - }, - consumeDynamicAccess: function() { - return consumeDynamicAccess; - }, - createDynamicTrackingState: function() { - return createDynamicTrackingState; - }, - createDynamicValidationState: function() { - return createDynamicValidationState; - }, - createHangingInputAbortSignal: function() { - return createHangingInputAbortSignal; - }, - createRenderInBrowserAbortSignal: function() { - return createRenderInBrowserAbortSignal; - }, - delayUntilRuntimeStage: function() { - return delayUntilRuntimeStage; - }, - formatDynamicAPIAccesses: function() { - return formatDynamicAPIAccesses; - }, - getFirstDynamicReason: function() { - return getFirstDynamicReason; - }, - getStaticShellDisallowedDynamicReasons: function() { - return getStaticShellDisallowedDynamicReasons; - }, - isDynamicPostpone: function() { - return isDynamicPostpone; - }, - isPrerenderInterruptedError: function() { - return isPrerenderInterruptedError; - }, - logDisallowedDynamicError: function() { - return logDisallowedDynamicError; - }, - markCurrentScopeAsDynamic: function() { - return markCurrentScopeAsDynamic; - }, - postponeWithTracking: function() { - return postponeWithTracking; - }, - throwIfDisallowedDynamic: function() { - return throwIfDisallowedDynamic; - }, - throwToInterruptStaticGeneration: function() { - return throwToInterruptStaticGeneration; - }, - trackAllowedDynamicAccess: function() { - return trackAllowedDynamicAccess; - }, - trackDynamicDataInDynamicRender: function() { - return trackDynamicDataInDynamicRender; - }, - trackDynamicHoleInRuntimeShell: function() { - return trackDynamicHoleInRuntimeShell; - }, - trackDynamicHoleInStaticShell: function() { - return trackDynamicHoleInStaticShell; - }, - useDynamicRouteParams: function() { - return useDynamicRouteParams; - }, - useDynamicSearchParams: function() { - return useDynamicSearchParams; - } -}); -const _react = /*#__PURE__*/ _interop_require_default(__turbopack_context__.r("[project]/node_modules/next/dist/compiled/react/index.js [app-client] (ecmascript)")); -const _hooksservercontext = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/hooks-server-context.js [app-client] (ecmascript)"); -const _staticgenerationbailout = __turbopack_context__.r("[project]/node_modules/next/dist/client/components/static-generation-bailout.js [app-client] (ecmascript)"); -const _workunitasyncstorageexternal = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js [app-client] (ecmascript)"); -const _workasyncstorageexternal = __turbopack_context__.r("[project]/node_modules/next/dist/server/app-render/work-async-storage.external.js [app-client] (ecmascript)"); -const _dynamicrenderingutils = __turbopack_context__.r("[project]/node_modules/next/dist/server/dynamic-rendering-utils.js [app-client] (ecmascript)"); -const _boundaryconstants = __turbopack_context__.r("[project]/node_modules/next/dist/lib/framework/boundary-constants.js [app-client] (ecmascript)"); -const _scheduler = __turbopack_context__.r("[project]/node_modules/next/dist/lib/scheduler.js [app-client] (ecmascript)"); -const _bailouttocsr = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js [app-client] (ecmascript)"); -const _invarianterror = __turbopack_context__.r("[project]/node_modules/next/dist/shared/lib/invariant-error.js [app-client] (ecmascript)"); -function _interop_require_default(obj) { - return obj && obj.__esModule ? obj : { - default: obj - }; -} -const hasPostpone = typeof _react.default.unstable_postpone === 'function'; -function createDynamicTrackingState(isDebugDynamicAccesses) { - return { - isDebugDynamicAccesses, - dynamicAccesses: [], - syncDynamicErrorWithStack: null - }; -} -function createDynamicValidationState() { - return { - hasSuspenseAboveBody: false, - hasDynamicMetadata: false, - dynamicMetadata: null, - hasDynamicViewport: false, - hasAllowedDynamic: false, - dynamicErrors: [] - }; -} -function getFirstDynamicReason(trackingState) { - var _trackingState_dynamicAccesses_; - return (_trackingState_dynamicAccesses_ = trackingState.dynamicAccesses[0]) == null ? void 0 : _trackingState_dynamicAccesses_.expression; -} -function markCurrentScopeAsDynamic(store, workUnitStore, expression) { - if (workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender-legacy': - case 'prerender-ppr': - case 'request': - break; - default: - workUnitStore; - } - } - // If we're forcing dynamic rendering or we're forcing static rendering, we - // don't need to do anything here because the entire page is already dynamic - // or it's static and it should not throw or postpone here. - if (store.forceDynamic || store.forceStatic) return; - if (store.dynamicShouldError) { - throw Object.defineProperty(new _staticgenerationbailout.StaticGenBailoutError(`Route ${store.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`), "__NEXT_ERROR_CODE", { - value: "E553", - enumerable: false, - configurable: true - }); - } - if (workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-ppr': - return postponeWithTracking(store.route, expression, workUnitStore.dynamicTracking); - case 'prerender-legacy': - workUnitStore.revalidate = 0; - // We aren't prerendering, but we are generating a static page. We need - // to bail out of static generation. - const err = Object.defineProperty(new _hooksservercontext.DynamicServerError(`Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E550", - enumerable: false, - configurable: true - }); - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } - } -} -function throwToInterruptStaticGeneration(expression, store, prerenderStore) { - // We aren't prerendering but we are generating a static page. We need to bail out of static generation - const err = Object.defineProperty(new _hooksservercontext.DynamicServerError(`Route ${store.route} couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`), "__NEXT_ERROR_CODE", { - value: "E558", - enumerable: false, - configurable: true - }); - prerenderStore.revalidate = 0; - store.dynamicUsageDescription = expression; - store.dynamicUsageStack = err.stack; - throw err; -} -function trackDynamicDataInDynamicRender(workUnitStore) { - switch(workUnitStore.type){ - case 'cache': - case 'unstable-cache': - // Inside cache scopes, marking a scope as dynamic has no effect, - // because the outer cache scope creates a cache boundary. This is - // subtly different from reading a dynamic data source, which is - // forbidden inside a cache scope. - return; - case 'private-cache': - // A private cache scope is already dynamic by definition. - return; - case 'prerender': - case 'prerender-runtime': - case 'prerender-legacy': - case 'prerender-ppr': - case 'prerender-client': - break; - case 'request': - if ("TURBOPACK compile-time truthy", 1) { - workUnitStore.usedDynamic = true; - } - break; - default: - workUnitStore; - } -} -function abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore) { - const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`; - const error = createPrerenderInterruptedError(reason); - prerenderStore.controller.abort(error); - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function abortOnSynchronousPlatformIOAccess(route, expression, errorWithStack, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } -} -function abortAndThrowOnSynchronousRequestDataAccess(route, expression, errorWithStack, prerenderStore) { - const prerenderSignal = prerenderStore.controller.signal; - if (prerenderSignal.aborted === false) { - // TODO it would be better to move this aborted check into the callsite so we can avoid making - // the error object when it isn't relevant to the aborting of the prerender however - // since we need the throw semantics regardless of whether we abort it is easier to land - // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer - // to ideal implementation - abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore); - // It is important that we set this tracking value after aborting. Aborts are executed - // synchronously except for the case where you abort during render itself. By setting this - // value late we can use it to determine if any of the aborted tasks are the task that - // called the sync IO expression in the first place. - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - if (dynamicTracking.syncDynamicErrorWithStack === null) { - dynamicTracking.syncDynamicErrorWithStack = errorWithStack; - } - } - } - throw createPrerenderInterruptedError(`Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`); -} -function Postpone({ reason, route }) { - const prerenderStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - const dynamicTracking = prerenderStore && prerenderStore.type === 'prerender-ppr' ? prerenderStore.dynamicTracking : null; - postponeWithTracking(route, reason, dynamicTracking); -} -function postponeWithTracking(route, expression, dynamicTracking) { - assertPostpone(); - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - // When we aren't debugging, we don't need to create another error for the - // stack trace. - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } - _react.default.unstable_postpone(createPostponeReason(route, expression)); -} -function createPostponeReason(route, expression) { - return `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` + `React throws this special object to indicate where. It should not be caught by ` + `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`; -} -function isDynamicPostpone(err) { - if (typeof err === 'object' && err !== null && typeof err.message === 'string') { - return isDynamicPostponeReason(err.message); - } - return false; -} -function isDynamicPostponeReason(reason) { - return reason.includes('needs to bail out of prerendering at this point because it used') && reason.includes('Learn more: https://nextjs.org/docs/messages/ppr-caught-error'); -} -if (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) { - throw Object.defineProperty(new Error('Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'), "__NEXT_ERROR_CODE", { - value: "E296", - enumerable: false, - configurable: true - }); -} -const NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'; -function createPrerenderInterruptedError(message) { - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - error.digest = NEXT_PRERENDER_INTERRUPTED; - return error; -} -function isPrerenderInterruptedError(error) { - return typeof error === 'object' && error !== null && error.digest === NEXT_PRERENDER_INTERRUPTED && 'name' in error && 'message' in error && error instanceof Error; -} -function accessedDynamicData(dynamicAccesses) { - return dynamicAccesses.length > 0; -} -function consumeDynamicAccess(serverDynamic, clientDynamic) { - // We mutate because we only call this once we are no longer writing - // to the dynamicTrackingState and it's more efficient than creating a new - // array. - serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses); - return serverDynamic.dynamicAccesses; -} -function formatDynamicAPIAccesses(dynamicAccesses) { - return dynamicAccesses.filter((access)=>typeof access.stack === 'string' && access.stack.length > 0).map(({ expression, stack })=>{ - stack = stack.split('\n') // Remove the "Error: " prefix from the first line of the stack trace as - // well as the first 4 lines of the stack trace which is the distance - // from the user code and the `new Error().stack` call. - .slice(4).filter((line)=>{ - // Exclude Next.js internals from the stack trace. - if (line.includes('node_modules/next/')) { - return false; - } - // Exclude anonymous functions from the stack trace. - if (line.includes(' (<anonymous>)')) { - return false; - } - // Exclude Node.js internals from the stack trace. - if (line.includes(' (node:')) { - return false; - } - return true; - }).join('\n'); - return `Dynamic API Usage Debug - ${expression}:\n${stack}`; - }); -} -function assertPostpone() { - if (!hasPostpone) { - throw Object.defineProperty(new Error(`Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`), "__NEXT_ERROR_CODE", { - value: "E224", - enumerable: false, - configurable: true - }); - } -} -function createRenderInBrowserAbortSignal() { - const controller = new AbortController(); - controller.abort(Object.defineProperty(new _bailouttocsr.BailoutToCSRError('Render in Browser'), "__NEXT_ERROR_CODE", { - value: "E721", - enumerable: false, - configurable: true - })); - return controller.signal; -} -function createHangingInputAbortSignal(workUnitStore) { - switch(workUnitStore.type){ - case 'prerender': - case 'prerender-runtime': - const controller = new AbortController(); - if (workUnitStore.cacheSignal) { - // If we have a cacheSignal it means we're in a prospective render. If - // the input we're waiting on is coming from another cache, we do want - // to wait for it so that we can resolve this cache entry too. - workUnitStore.cacheSignal.inputReady().then(()=>{ - controller.abort(); - }); - } else { - // Otherwise we're in the final render and we should already have all - // our caches filled. - // If the prerender uses stages, we have wait until the runtime stage, - // at which point all runtime inputs will be resolved. - // (otherwise, a runtime prerender might consider `cookies()` hanging - // even though they'd resolve in the next task.) - // - // We might still be waiting on some microtasks so we - // wait one tick before giving up. When we give up, we still want to - // render the content of this cache as deeply as we can so that we can - // suspend as deeply as possible in the tree or not at all if we don't - // end up waiting for the input. - const runtimeStagePromise = (0, _workunitasyncstorageexternal.getRuntimeStagePromise)(workUnitStore); - if (runtimeStagePromise) { - runtimeStagePromise.then(()=>(0, _scheduler.scheduleOnNextTick)(()=>controller.abort())); - } else { - (0, _scheduler.scheduleOnNextTick)(()=>controller.abort()); - } - } - return controller.signal; - case 'prerender-client': - case 'prerender-ppr': - case 'prerender-legacy': - case 'request': - case 'cache': - case 'private-cache': - case 'unstable-cache': - return undefined; - default: - workUnitStore; - } -} -function annotateDynamicAccess(expression, prerenderStore) { - const dynamicTracking = prerenderStore.dynamicTracking; - if (dynamicTracking) { - dynamicTracking.dynamicAccesses.push({ - stack: dynamicTracking.isDebugDynamicAccesses ? new Error().stack : undefined, - expression - }); - } -} -function useDynamicRouteParams(expression) { - const workStore = _workasyncstorageexternal.workAsyncStorage.getStore(); - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (workStore && workUnitStore) { - switch(workUnitStore.type){ - case 'prerender-client': - case 'prerender': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - // We are in a prerender with cacheComponents semantics. We are going to - // hang here and never resolve. This will cause the currently - // rendering component to effectively be a dynamic hole. - _react.default.use((0, _dynamicrenderingutils.makeHangingPromise)(workUnitStore.renderSignal, workStore.route, expression)); - } - break; - } - case 'prerender-ppr': - { - const fallbackParams = workUnitStore.fallbackRouteParams; - if (fallbackParams && fallbackParams.size > 0) { - return postponeWithTracking(workStore.route, expression, workUnitStore.dynamicTracking); - } - break; - } - case 'prerender-runtime': - throw Object.defineProperty(new _invarianterror.InvariantError(`\`${expression}\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E771", - enumerable: false, - configurable: true - }); - case 'cache': - case 'private-cache': - throw Object.defineProperty(new _invarianterror.InvariantError(`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'prerender-legacy': - case 'request': - case 'unstable-cache': - break; - default: - workUnitStore; - } - } -} -function useDynamicSearchParams(expression) { - const workStore = _workasyncstorageexternal.workAsyncStorage.getStore(); - const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore(); - if (!workStore) { - // We assume pages router context and just return - return; - } - if (!workUnitStore) { - (0, _workunitasyncstorageexternal.throwForMissingRequestStore)(expression); - } - switch(workUnitStore.type){ - case 'prerender-client': - { - _react.default.use((0, _dynamicrenderingutils.makeHangingPromise)(workUnitStore.renderSignal, workStore.route, expression)); - break; - } - case 'prerender-legacy': - case 'prerender-ppr': - { - if (workStore.forceStatic) { - return; - } - throw Object.defineProperty(new _bailouttocsr.BailoutToCSRError(expression), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - } - case 'prerender': - case 'prerender-runtime': - throw Object.defineProperty(new _invarianterror.InvariantError(`\`${expression}\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E795", - enumerable: false, - configurable: true - }); - case 'cache': - case 'unstable-cache': - case 'private-cache': - throw Object.defineProperty(new _invarianterror.InvariantError(`\`${expression}\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`), "__NEXT_ERROR_CODE", { - value: "E745", - enumerable: false, - configurable: true - }); - case 'request': - return; - default: - workUnitStore; - } -} -const hasSuspenseRegex = /\n\s+at Suspense \(<anonymous>\)/; -// Common implicit body tags that React will treat as body when placed directly in html -const bodyAndImplicitTags = 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'; -// Detects when RootLayoutBoundary (our framework marker component) appears -// after Suspense in the component stack, indicating the root layout is wrapped -// within a Suspense boundary. Ensures no body/html/implicit-body components are in between. -// -// Example matches: -// at Suspense (<anonymous>) -// at __next_root_layout_boundary__ (<anonymous>) -// -// Or with other components in between (but not body/html/implicit-body): -// at Suspense (<anonymous>) -// at SomeComponent (<anonymous>) -// at __next_root_layout_boundary__ (<anonymous>) -const hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(`\\n\\s+at Suspense \\(<anonymous>\\)(?:(?!\\n\\s+at (?:${bodyAndImplicitTags}) \\(<anonymous>\\))[\\s\\S])*?\\n\\s+at ${_boundaryconstants.ROOT_LAYOUT_BOUNDARY_NAME} \\([^\\n]*\\)`); -const hasMetadataRegex = new RegExp(`\\n\\s+at ${_boundaryconstants.METADATA_BOUNDARY_NAME}[\\n\\s]`); -const hasViewportRegex = new RegExp(`\\n\\s+at ${_boundaryconstants.VIEWPORT_BOUNDARY_NAME}[\\n\\s]`); -const hasOutletRegex = new RegExp(`\\n\\s+at ${_boundaryconstants.OUTLET_BOUNDARY_NAME}[\\n\\s]`); -function trackAllowedDynamicAccess(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - dynamicValidation.hasDynamicMetadata = true; - return; - } else if (hasViewportRegex.test(componentStack)) { - dynamicValidation.hasDynamicViewport = true; - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data was accessed outside of ` + '<Suspense>. This delays the entire page from rendering, resulting in a ' + 'slow user experience. Learn more: ' + 'https://nextjs.org/docs/messages/blocking-route'; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInRuntimeShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateMetadata\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Uncached data or \`connection()\` was accessed outside of \`<Suspense>\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -function trackDynamicHoleInStaticShell(workStore, componentStack, dynamicValidation, clientDynamic) { - if (hasOutletRegex.test(componentStack)) { - // We don't need to track that this is dynamic. It is only so when something else is also dynamic. - return; - } else if (hasMetadataRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateMetadata\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicMetadata = error; - return; - } else if (hasViewportRegex.test(componentStack)) { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed inside \`generateViewport\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } else if (hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(componentStack)) { - // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule. - // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense - // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering. - dynamicValidation.hasAllowedDynamic = true; - dynamicValidation.hasSuspenseAboveBody = true; - return; - } else if (hasSuspenseRegex.test(componentStack)) { - // this error had a Suspense boundary above it so we don't need to report it as a source - // of disallowed - dynamicValidation.hasAllowedDynamic = true; - return; - } else if (clientDynamic.syncDynamicErrorWithStack) { - // This task was the task that called the sync error. - dynamicValidation.dynamicErrors.push(clientDynamic.syncDynamicErrorWithStack); - return; - } else { - const message = `Route "${workStore.route}": Runtime data such as \`cookies()\`, \`headers()\`, \`params\`, or \`searchParams\` was accessed outside of \`<Suspense>\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`; - const error = createErrorWithComponentOrOwnerStack(message, componentStack); - dynamicValidation.dynamicErrors.push(error); - return; - } -} -/** - * In dev mode, we prefer using the owner stack, otherwise the provided - * component stack is used. - */ function createErrorWithComponentOrOwnerStack(message, componentStack) { - const ownerStack = ("TURBOPACK compile-time value", "development") !== 'production' && _react.default.captureOwnerStack ? _react.default.captureOwnerStack() : null; - const error = Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", { - value: "E394", - enumerable: false, - configurable: true - }); - // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right - // - error.stack = error.name + ': ' + message + (ownerStack || componentStack); - return error; -} -var PreludeState = /*#__PURE__*/ function(PreludeState) { - PreludeState[PreludeState["Full"] = 0] = "Full"; - PreludeState[PreludeState["Empty"] = 1] = "Empty"; - PreludeState[PreludeState["Errored"] = 2] = "Errored"; - return PreludeState; -}({}); -function logDisallowedDynamicError(workStore, error) { - console.error(error); - if (!workStore.dev) { - if (workStore.hasReadableErrorStacks) { - console.error(`To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error.`); - } else { - console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following: - - Start the app in development mode by running \`next dev\`, then open "${workStore.route}" in your browser to investigate the error. - - Rerun the production build with \`next build --debug-prerender\` to generate better stack traces.`); - } - } -} -function throwIfDisallowedDynamic(workStore, prelude, dynamicValidation, serverDynamic) { - if (serverDynamic.syncDynamicErrorWithStack) { - logDisallowedDynamicError(workStore, serverDynamic.syncDynamicErrorWithStack); - throw new _staticgenerationbailout.StaticGenBailoutError(); - } - if (prelude !== 0) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return; - } - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - for(let i = 0; i < dynamicErrors.length; i++){ - logDisallowedDynamicError(workStore, dynamicErrors[i]); - } - throw new _staticgenerationbailout.StaticGenBailoutError(); - } - // If we got this far then the only other thing that could be blocking - // the root is dynamic Viewport. If this is dynamic then - // you need to opt into that by adding a Suspense boundary above the body - // to indicate your are ok with fully dynamic rendering. - if (dynamicValidation.hasDynamicViewport) { - console.error(`Route "${workStore.route}" has a \`generateViewport\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`); - throw new _staticgenerationbailout.StaticGenBailoutError(); - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - console.error(`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`); - throw new _staticgenerationbailout.StaticGenBailoutError(); - } - } else { - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.hasDynamicMetadata) { - console.error(`Route "${workStore.route}" has a \`generateMetadata\` that depends on Request data (\`cookies()\`, etc...) or uncached external data (\`fetch(...)\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`); - throw new _staticgenerationbailout.StaticGenBailoutError(); - } - } -} -function getStaticShellDisallowedDynamicReasons(workStore, prelude, dynamicValidation) { - if (dynamicValidation.hasSuspenseAboveBody) { - // This route has opted into allowing fully dynamic rendering - // by including a Suspense boundary above the body. In this case - // a lack of a shell is not considered disallowed so we simply return - return []; - } - if (prelude !== 0) { - // We didn't have any sync bailouts but there may be user code which - // blocked the root. We would have captured these during the prerender - // and can log them here and then terminate the build/validating render - const dynamicErrors = dynamicValidation.dynamicErrors; - if (dynamicErrors.length > 0) { - return dynamicErrors; - } - if (prelude === 1) { - // If we ever get this far then we messed up the tracking of invalid dynamic. - // We still adhere to the constraint that you must produce a shell but invite the - // user to report this as a bug in Next.js. - return [ - Object.defineProperty(new _invarianterror.InvariantError(`Route "${workStore.route}" did not produce a static shell and Next.js was unable to determine a reason.`), "__NEXT_ERROR_CODE", { - value: "E936", - enumerable: false, - configurable: true - }) - ]; - } - } else { - // We have a prelude but we might still have dynamic metadata without any other dynamic access - if (dynamicValidation.hasAllowedDynamic === false && dynamicValidation.dynamicErrors.length === 0 && dynamicValidation.dynamicMetadata) { - return [ - dynamicValidation.dynamicMetadata - ]; - } - } - // We had a non-empty prelude and there are no dynamic holes - return []; -} -function delayUntilRuntimeStage(prerenderStore, result) { - if (prerenderStore.runtimeStagePromise) { - return prerenderStore.runtimeStagePromise.then(()=>result); - } - return result; -} //# sourceMappingURL=dynamic-rendering.js.map -}), -"[project]/node_modules/next/dist/server/dev/hot-reloader-types.js [app-client] (ecmascript)", ((__turbopack_context__, module, exports) => { -"use strict"; - -Object.defineProperty(exports, "__esModule", { - value: true -}); -0 && (module.exports = { - HMR_MESSAGE_SENT_TO_BROWSER: null, - HMR_MESSAGE_SENT_TO_SERVER: null -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - HMR_MESSAGE_SENT_TO_BROWSER: function() { - return HMR_MESSAGE_SENT_TO_BROWSER; - }, - HMR_MESSAGE_SENT_TO_SERVER: function() { - return HMR_MESSAGE_SENT_TO_SERVER; - } -}); -var HMR_MESSAGE_SENT_TO_BROWSER = /*#__PURE__*/ function(HMR_MESSAGE_SENT_TO_BROWSER) { - // JSON messages: - HMR_MESSAGE_SENT_TO_BROWSER["ADDED_PAGE"] = "addedPage"; - HMR_MESSAGE_SENT_TO_BROWSER["REMOVED_PAGE"] = "removedPage"; - HMR_MESSAGE_SENT_TO_BROWSER["RELOAD_PAGE"] = "reloadPage"; - HMR_MESSAGE_SENT_TO_BROWSER["SERVER_COMPONENT_CHANGES"] = "serverComponentChanges"; - HMR_MESSAGE_SENT_TO_BROWSER["MIDDLEWARE_CHANGES"] = "middlewareChanges"; - HMR_MESSAGE_SENT_TO_BROWSER["CLIENT_CHANGES"] = "clientChanges"; - HMR_MESSAGE_SENT_TO_BROWSER["SERVER_ONLY_CHANGES"] = "serverOnlyChanges"; - HMR_MESSAGE_SENT_TO_BROWSER["SYNC"] = "sync"; - HMR_MESSAGE_SENT_TO_BROWSER["BUILT"] = "built"; - HMR_MESSAGE_SENT_TO_BROWSER["BUILDING"] = "building"; - HMR_MESSAGE_SENT_TO_BROWSER["DEV_PAGES_MANIFEST_UPDATE"] = "devPagesManifestUpdate"; - HMR_MESSAGE_SENT_TO_BROWSER["TURBOPACK_MESSAGE"] = "turbopack-message"; - HMR_MESSAGE_SENT_TO_BROWSER["SERVER_ERROR"] = "serverError"; - HMR_MESSAGE_SENT_TO_BROWSER["TURBOPACK_CONNECTED"] = "turbopack-connected"; - HMR_MESSAGE_SENT_TO_BROWSER["ISR_MANIFEST"] = "isrManifest"; - HMR_MESSAGE_SENT_TO_BROWSER["CACHE_INDICATOR"] = "cacheIndicator"; - HMR_MESSAGE_SENT_TO_BROWSER["DEV_INDICATOR"] = "devIndicator"; - HMR_MESSAGE_SENT_TO_BROWSER["DEVTOOLS_CONFIG"] = "devtoolsConfig"; - HMR_MESSAGE_SENT_TO_BROWSER["REQUEST_CURRENT_ERROR_STATE"] = "requestCurrentErrorState"; - HMR_MESSAGE_SENT_TO_BROWSER["REQUEST_PAGE_METADATA"] = "requestPageMetadata"; - // Binary messages: - HMR_MESSAGE_SENT_TO_BROWSER[HMR_MESSAGE_SENT_TO_BROWSER["REACT_DEBUG_CHUNK"] = 0] = "REACT_DEBUG_CHUNK"; - HMR_MESSAGE_SENT_TO_BROWSER[HMR_MESSAGE_SENT_TO_BROWSER["ERRORS_TO_SHOW_IN_BROWSER"] = 1] = "ERRORS_TO_SHOW_IN_BROWSER"; - return HMR_MESSAGE_SENT_TO_BROWSER; -}({}); -var HMR_MESSAGE_SENT_TO_SERVER = /*#__PURE__*/ function(HMR_MESSAGE_SENT_TO_SERVER) { - // JSON messages: - HMR_MESSAGE_SENT_TO_SERVER["MCP_ERROR_STATE_RESPONSE"] = "mcp-error-state-response"; - HMR_MESSAGE_SENT_TO_SERVER["MCP_PAGE_METADATA_RESPONSE"] = "mcp-page-metadata-response"; - HMR_MESSAGE_SENT_TO_SERVER["PING"] = "ping"; - return HMR_MESSAGE_SENT_TO_SERVER; -}({}); //# sourceMappingURL=hot-reloader-types.js.map -}), -]); - -//# sourceMappingURL=node_modules_next_dist_f3530cac._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_f3530cac._.js.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_f3530cac._.js.map deleted file mode 100644 index 8a3dc12..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/node_modules_next_dist_f3530cac._.js.map +++ /dev/null @@ -1,70 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 4, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/build/polyfills/process.ts"],"sourcesContent":["module.exports =\n global.process?.env && typeof global.process?.env === 'object'\n ? global.process\n : (require('next/dist/compiled/process') as typeof import('next/dist/compiled/process'))\n"],"names":["global","module","exports","process","env","require"],"mappings":"IACEA,iBAA8BA;AADhCC,OAAOC,OAAO,GACZF,CAAAA,CAAAA,kBAAAA,yDAAOG,OAAO,KAAA,OAAA,KAAA,IAAdH,gBAAgBI,GAAG,KAAI,OAAA,CAAA,CAAOJ,mBAAAA,yDAAOG,OAAO,KAAA,OAAA,KAAA,IAAdH,iBAAgBI,GAAG,MAAK,WAClDJ,yDAAOG,OAAO,GACbE,QAAQ","ignoreList":[0]}}, - {"offset": {"line": 9, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js"],"sourcesContent":["\"trimStart\"in String.prototype||(String.prototype.trimStart=String.prototype.trimLeft),\"trimEnd\"in String.prototype||(String.prototype.trimEnd=String.prototype.trimRight),\"description\"in Symbol.prototype||Object.defineProperty(Symbol.prototype,\"description\",{configurable:!0,get:function(){var t=/\\((.*)\\)/.exec(this.toString());return t?t[1]:void 0}}),Array.prototype.flat||(Array.prototype.flat=function(t,r){return r=this.concat.apply([],this),t>1&&r.some(Array.isArray)?r.flat(t-1):r},Array.prototype.flatMap=function(t,r){return this.map(t,r).flat()}),Promise.prototype.finally||(Promise.prototype.finally=function(t){if(\"function\"!=typeof t)return this.then(t,t);var r=this.constructor||Promise;return this.then(function(n){return r.resolve(t()).then(function(){return n})},function(n){return r.resolve(t()).then(function(){throw n})})}),Object.fromEntries||(Object.fromEntries=function(t){return Array.from(t).reduce(function(t,r){return t[r[0]]=r[1],t},{})}),Array.prototype.at||(Array.prototype.at=function(t){var r=Math.trunc(t)||0;if(r<0&&(r+=this.length),!(r<0||r>=this.length))return this[r]}),Object.hasOwn||(Object.hasOwn=function(t,r){if(null==t)throw new TypeError(\"Cannot convert undefined or null to object\");return Object.prototype.hasOwnProperty.call(Object(t),r)}),\"canParse\"in URL||(URL.canParse=function(t,r){try{return!!new URL(t,r)}catch(t){return!1}});\n"],"names":[],"mappings":"AAAA,eAAc,OAAO,SAAS,IAAE,CAAC,OAAO,SAAS,CAAC,SAAS,GAAC,OAAO,SAAS,CAAC,QAAQ,GAAE,aAAY,OAAO,SAAS,IAAE,CAAC,OAAO,SAAS,CAAC,OAAO,GAAC,OAAO,SAAS,CAAC,SAAS,GAAE,iBAAgB,OAAO,SAAS,IAAE,OAAO,cAAc,CAAC,OAAO,SAAS,EAAC,eAAc;IAAC,cAAa,CAAC;IAAE,KAAI;QAAW,IAAI,IAAE,WAAW,IAAI,CAAC,IAAI,CAAC,QAAQ;QAAI,OAAO,IAAE,CAAC,CAAC,EAAE,GAAC,KAAK;IAAC;AAAC,IAAG,MAAM,SAAS,CAAC,IAAI,IAAE,CAAC,MAAM,SAAS,CAAC,IAAI,GAAC,SAAS,CAAC,EAAC,CAAC;IAAE,OAAO,IAAE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAAC,IAAI,GAAE,IAAE,KAAG,EAAE,IAAI,CAAC,MAAM,OAAO,IAAE,EAAE,IAAI,CAAC,IAAE,KAAG;AAAC,GAAE,MAAM,SAAS,CAAC,OAAO,GAAC,SAAS,CAAC,EAAC,CAAC;IAAE,OAAO,IAAI,CAAC,GAAG,CAAC,GAAE,GAAG,IAAI;AAAE,CAAC,GAAE,QAAQ,SAAS,CAAC,OAAO,IAAE,CAAC,QAAQ,SAAS,CAAC,OAAO,GAAC,SAAS,CAAC;IAAE,IAAG,cAAY,OAAO,GAAE,OAAO,IAAI,CAAC,IAAI,CAAC,GAAE;IAAG,IAAI,IAAE,IAAI,CAAC,WAAW,IAAE;IAAQ,OAAO,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC;QAAE,OAAO,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;YAAW,OAAO;QAAC;IAAE,GAAE,SAAS,CAAC;QAAE,OAAO,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;YAAW,MAAM;QAAC;IAAE;AAAE,CAAC,GAAE,OAAO,WAAW,IAAE,CAAC,OAAO,WAAW,GAAC,SAAS,CAAC;IAAE,OAAO,MAAM,IAAI,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,EAAC,CAAC;QAAE,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,GAAC,CAAC,CAAC,EAAE,EAAC;IAAC,GAAE,CAAC;AAAE,CAAC,GAAE,MAAM,SAAS,CAAC,EAAE,IAAE,CAAC,MAAM,SAAS,CAAC,EAAE,GAAC,SAAS,CAAC;IAAE,IAAI,IAAE,KAAK,KAAK,CAAC,MAAI;IAAE,IAAG,IAAE,KAAG,CAAC,KAAG,IAAI,CAAC,MAAM,GAAE,CAAC,CAAC,IAAE,KAAG,KAAG,IAAI,CAAC,MAAM,GAAE,OAAO,IAAI,CAAC,EAAE;AAAA,CAAC,GAAE,OAAO,MAAM,IAAE,CAAC,OAAO,MAAM,GAAC,SAAS,CAAC,EAAC,CAAC;IAAE,IAAG,QAAM,GAAE,MAAM,IAAI,UAAU;IAA8C,OAAO,OAAO,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,OAAO,IAAG;AAAE,CAAC,GAAE,cAAa,OAAK,CAAC,IAAI,QAAQ,GAAC,SAAS,CAAC,EAAC,CAAC;IAAE,IAAG;QAAC,OAAM,CAAC,CAAC,IAAI,IAAI,GAAE;IAAE,EAAC,OAAM,GAAE;QAAC,OAAM,CAAC;IAAC;AAAC,CAAC","ignoreList":[0]}}, - {"offset": {"line": 52, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/invariant-error.ts"],"sourcesContent":["export class InvariantError extends Error {\n constructor(message: string, options?: ErrorOptions) {\n super(\n `Invariant: ${message.endsWith('.') ? message : message + '.'} This is a bug in Next.js.`,\n options\n )\n this.name = 'InvariantError'\n }\n}\n"],"names":["InvariantError","Error","constructor","message","options","endsWith","name"],"mappings":";;;+BAAaA,kBAAAA;;;eAAAA;;;AAAN,MAAMA,uBAAuBC;IAClCC,YAAYC,OAAe,EAAEC,OAAsB,CAAE;QACnD,KAAK,CACH,CAAC,WAAW,EAAED,QAAQE,QAAQ,CAAC,OAAOF,UAAUA,UAAU,IAAI,0BAA0B,CAAC,EACzFC;QAEF,IAAI,CAACE,IAAI,GAAG;IACd;AACF","ignoreList":[0]}}, - {"offset": {"line": 71, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/is-plain-object.ts"],"sourcesContent":["export function getObjectClassLabel(value: any): string {\n return Object.prototype.toString.call(value)\n}\n\nexport function isPlainObject(value: any): boolean {\n if (getObjectClassLabel(value) !== '[object Object]') {\n return false\n }\n\n const prototype = Object.getPrototypeOf(value)\n\n /**\n * this used to be previously:\n *\n * `return prototype === null || prototype === Object.prototype`\n *\n * but Edge Runtime expose Object from vm, being that kind of type-checking wrongly fail.\n *\n * It was changed to the current implementation since it's resilient to serialization.\n */\n return prototype === null || prototype.hasOwnProperty('isPrototypeOf')\n}\n"],"names":["getObjectClassLabel","isPlainObject","value","Object","prototype","toString","call","getPrototypeOf","hasOwnProperty"],"mappings":";;;;;;;;;;;;;;IAAgBA,mBAAmB,EAAA;eAAnBA;;IAIAC,aAAa,EAAA;eAAbA;;;AAJT,SAASD,oBAAoBE,KAAU;IAC5C,OAAOC,OAAOC,SAAS,CAACC,QAAQ,CAACC,IAAI,CAACJ;AACxC;AAEO,SAASD,cAAcC,KAAU;IACtC,IAAIF,oBAAoBE,WAAW,mBAAmB;QACpD,OAAO;IACT;IAEA,MAAME,YAAYD,OAAOI,cAAc,CAACL;IAExC;;;;;;;;GAQC,GACD,OAAOE,cAAc,QAAQA,UAAUI,cAAc,CAAC;AACxD","ignoreList":[0]}}, - {"offset": {"line": 114, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/lazy-dynamic/bailout-to-csr.ts"],"sourcesContent":["// This has to be a shared module which is shared between client component error boundary and dynamic component\nconst BAILOUT_TO_CSR = 'BAILOUT_TO_CLIENT_SIDE_RENDERING'\n\n/** An error that should be thrown when we want to bail out to client-side rendering. */\nexport class BailoutToCSRError extends Error {\n public readonly digest = BAILOUT_TO_CSR\n\n constructor(public readonly reason: string) {\n super(`Bail out to client-side rendering: ${reason}`)\n }\n}\n\n/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */\nexport function isBailoutToCSRError(err: unknown): err is BailoutToCSRError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === BAILOUT_TO_CSR\n}\n"],"names":["BailoutToCSRError","isBailoutToCSRError","BAILOUT_TO_CSR","Error","constructor","reason","digest","err"],"mappings":"AAAA,+GAA+G;;;;;;;;;;;;;;;IAIlGA,iBAAiB,EAAA;eAAjBA;;IASGC,mBAAmB,EAAA;eAAnBA;;;AAZhB,MAAMC,iBAAiB;AAGhB,MAAMF,0BAA0BG;IAGrCC,YAA4BC,MAAc,CAAE;QAC1C,KAAK,CAAC,CAAC,mCAAmC,EAAEA,QAAQ,GAAA,IAAA,CAD1BA,MAAAA,GAAAA,QAAAA,IAAAA,CAFZC,MAAAA,GAASJ;IAIzB;AACF;AAGO,SAASD,oBAAoBM,GAAY;IAC9C,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAID,MAAM,KAAKJ;AACxB","ignoreList":[0]}}, - {"offset": {"line": 152, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/error-source.ts"],"sourcesContent":["const symbolError = Symbol.for('NextjsError')\n\nexport function getErrorSource(error: Error): 'server' | 'edge-server' | null {\n return (error as any)[symbolError] || null\n}\n\nexport type ErrorSourceType = 'edge-server' | 'server'\n\nexport function decorateServerError(error: Error, type: ErrorSourceType) {\n Object.defineProperty(error, symbolError, {\n writable: false,\n enumerable: false,\n configurable: false,\n value: type,\n })\n}\n"],"names":["decorateServerError","getErrorSource","symbolError","Symbol","for","error","type","Object","defineProperty","writable","enumerable","configurable","value"],"mappings":";;;;;;;;;;;;;;IAQgBA,mBAAmB,EAAA;eAAnBA;;IANAC,cAAc,EAAA;eAAdA;;;AAFhB,MAAMC,cAAcC,OAAOC,GAAG,CAAC;AAExB,SAASH,eAAeI,KAAY;IACzC,OAAQA,KAAa,CAACH,YAAY,IAAI;AACxC;AAIO,SAASF,oBAAoBK,KAAY,EAAEC,IAAqB;IACrEC,OAAOC,cAAc,CAACH,OAAOH,aAAa;QACxCO,UAAU;QACVC,YAAY;QACZC,cAAc;QACdC,OAAON;IACT;AACF","ignoreList":[0]}}, - {"offset": {"line": 189, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/head-manager-context.shared-runtime.ts"],"sourcesContent":["import React from 'react'\n\nexport const HeadManagerContext: React.Context<{\n updateHead?: (state: any) => void\n mountedInstances?: any\n updateScripts?: (state: any) => void\n scripts?: any\n getIsSsr?: () => boolean\n\n // Used in app directory, to render script tags as server components.\n appDir?: boolean\n nonce?: string\n}> = React.createContext({})\n\nif (process.env.NODE_ENV !== 'production') {\n HeadManagerContext.displayName = 'HeadManagerContext'\n}\n"],"names":["HeadManagerContext","React","createContext","process","env","NODE_ENV","displayName"],"mappings":"AAcIG,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BAZhBL,sBAAAA;;;eAAAA;;;;gEAFK;AAEX,MAAMA,qBAURC,OAAAA,OAAK,CAACC,aAAa,CAAC,CAAC;AAE1B,wCAA2C;IACzCF,mBAAmBM,WAAW,GAAG;AACnC","ignoreList":[0]}}, - {"offset": {"line": 210, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/hooks-client-context.shared-runtime.ts"],"sourcesContent":["'use client'\n\nimport { createContext } from 'react'\nimport type { Params } from '../../server/request/params'\nimport { ReadonlyURLSearchParams } from '../../client/components/readonly-url-search-params'\n\nexport const SearchParamsContext = createContext<URLSearchParams | null>(null)\nexport const PathnameContext = createContext<string | null>(null)\nexport const PathParamsContext = createContext<Params | null>(null)\n\n// Dev-only context for Suspense DevTools instrumentation\n// These promises are used to track navigation hook usage in React DevTools\nexport type InstrumentedPromise<T> = Promise<T> & {\n status: 'fulfilled'\n value: T\n displayName: string\n}\n\nexport type NavigationPromises = {\n pathname: InstrumentedPromise<string>\n searchParams: InstrumentedPromise<ReadonlyURLSearchParams>\n params: InstrumentedPromise<Params>\n // Layout segment hooks (updated at each layout boundary)\n selectedLayoutSegmentPromises?: Map<\n string,\n InstrumentedPromise<string | null>\n >\n selectedLayoutSegmentsPromises?: Map<string, InstrumentedPromise<string[]>>\n}\n\nexport const NavigationPromisesContext =\n createContext<NavigationPromises | null>(null)\n\n// Creates an instrumented promise for Suspense DevTools\n// These promises are always fulfilled and exist purely for\n// tracking in React's Suspense DevTools.\nexport function createDevToolsInstrumentedPromise<T>(\n displayName: string,\n value: T\n): InstrumentedPromise<T> {\n const promise = Promise.resolve(value) as InstrumentedPromise<T>\n promise.status = 'fulfilled'\n promise.value = value\n promise.displayName = `${displayName} (SSR)`\n return promise\n}\n\nexport { ReadonlyURLSearchParams }\n\nif (process.env.NODE_ENV !== 'production') {\n SearchParamsContext.displayName = 'SearchParamsContext'\n PathnameContext.displayName = 'PathnameContext'\n PathParamsContext.displayName = 'PathParamsContext'\n NavigationPromisesContext.displayName = 'NavigationPromisesContext'\n}\n"],"names":["NavigationPromisesContext","PathParamsContext","PathnameContext","ReadonlyURLSearchParams","SearchParamsContext","createDevToolsInstrumentedPromise","createContext","displayName","value","promise","Promise","resolve","status","process","env","NODE_ENV"],"mappings":"AAiDIa,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAjD7B;;;;;;;;;;;;;;;;;;;;IA8Baf,yBAAyB,EAAA;eAAzBA;;IAtBAC,iBAAiB,EAAA;eAAjBA;;IADAC,eAAe,EAAA;eAAfA;;IAwCJC,uBAAuB,EAAA;eAAvBA,yBAAAA,uBAAuB;;IAzCnBC,mBAAmB,EAAA;eAAnBA;;IA8BGC,iCAAiC,EAAA;eAAjCA;;;uBAlCc;yCAEU;AAEjC,MAAMD,sBAAsBE,CAAAA,GAAAA,OAAAA,aAAa,EAAyB;AAClE,MAAMJ,kBAAkBI,CAAAA,GAAAA,OAAAA,aAAa,EAAgB;AACrD,MAAML,oBAAoBK,CAAAA,GAAAA,OAAAA,aAAa,EAAgB;AAsBvD,MAAMN,4BACXM,CAAAA,GAAAA,OAAAA,aAAa,EAA4B;AAKpC,SAASD,kCACdE,WAAmB,EACnBC,KAAQ;IAER,MAAMC,UAAUC,QAAQC,OAAO,CAACH;IAChCC,QAAQG,MAAM,GAAG;IACjBH,QAAQD,KAAK,GAAGA;IAChBC,QAAQF,WAAW,GAAG,GAAGA,YAAY,MAAM,CAAC;IAC5C,OAAOE;AACT;AAIA,wCAA2C;IACzCL,oBAAoBG,WAAW,GAAG;IAClCL,gBAAgBK,WAAW,GAAG;IAC9BN,kBAAkBM,WAAW,GAAG;IAChCP,0BAA0BO,WAAW,GAAG;AAC1C","ignoreList":[0]}}, - {"offset": {"line": 273, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/html-bots.ts"],"sourcesContent":["// This regex contains the bots that we need to do a blocking render for and can't safely stream the response\n// due to how they parse the DOM. For example, they might explicitly check for metadata in the `head` tag, so we can't stream metadata tags after the `head` was sent.\n// Note: The pattern [\\w-]+-Google captures all Google crawlers with \"-Google\" suffix (e.g., Mediapartners-Google, AdsBot-Google, Storebot-Google)\n// as well as crawlers starting with \"Google-\" (e.g., Google-PageRenderer, Google-InspectionTool)\nexport const HTML_LIMITED_BOT_UA_RE =\n /[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight/i\n"],"names":["HTML_LIMITED_BOT_UA_RE"],"mappings":"AAAA,6GAA6G;AAC7G,sKAAsK;AACtK,kJAAkJ;AAClJ,iGAAiG;;;;+BACpFA,0BAAAA;;;eAAAA;;;AAAN,MAAMA,yBACX","ignoreList":[0]}}, - {"offset": {"line": 291, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/is-bot.ts"],"sourcesContent":["import { HTML_LIMITED_BOT_UA_RE } from './html-bots'\n\n// Bot crawler that will spin up a headless browser and execute JS.\n// Only the main Googlebot search crawler executes JavaScript, not other Google crawlers.\n// x-ref: https://developers.google.com/search/docs/crawling-indexing/google-common-crawlers\n// This regex specifically matches \"Googlebot\" but NOT \"Mediapartners-Google\", \"AdsBot-Google\", etc.\nconst HEADLESS_BROWSER_BOT_UA_RE = /Googlebot(?!-)|Googlebot$/i\n\nexport const HTML_LIMITED_BOT_UA_RE_STRING = HTML_LIMITED_BOT_UA_RE.source\n\nexport { HTML_LIMITED_BOT_UA_RE }\n\nfunction isDomBotUA(userAgent: string) {\n return HEADLESS_BROWSER_BOT_UA_RE.test(userAgent)\n}\n\nfunction isHtmlLimitedBotUA(userAgent: string) {\n return HTML_LIMITED_BOT_UA_RE.test(userAgent)\n}\n\nexport function isBot(userAgent: string): boolean {\n return isDomBotUA(userAgent) || isHtmlLimitedBotUA(userAgent)\n}\n\nexport function getBotType(userAgent: string): 'dom' | 'html' | undefined {\n if (isDomBotUA(userAgent)) {\n return 'dom'\n }\n if (isHtmlLimitedBotUA(userAgent)) {\n return 'html'\n }\n return undefined\n}\n"],"names":["HTML_LIMITED_BOT_UA_RE","HTML_LIMITED_BOT_UA_RE_STRING","getBotType","isBot","HEADLESS_BROWSER_BOT_UA_RE","source","isDomBotUA","userAgent","test","isHtmlLimitedBotUA","undefined"],"mappings":";;;;;;;;;;;;;;;;IAUSA,sBAAsB,EAAA;eAAtBA,UAAAA,sBAAsB;;IAFlBC,6BAA6B,EAAA;eAA7BA;;IAgBGC,UAAU,EAAA;eAAVA;;IAJAC,KAAK,EAAA;eAALA;;;0BApBuB;AAEvC,mEAAmE;AACnE,yFAAyF;AACzF,4FAA4F;AAC5F,oGAAoG;AACpG,MAAMC,6BAA6B;AAE5B,MAAMH,gCAAgCD,UAAAA,sBAAsB,CAACK,MAAM;AAI1E,SAASC,WAAWC,SAAiB;IACnC,OAAOH,2BAA2BI,IAAI,CAACD;AACzC;AAEA,SAASE,mBAAmBF,SAAiB;IAC3C,OAAOP,UAAAA,sBAAsB,CAACQ,IAAI,CAACD;AACrC;AAEO,SAASJ,MAAMI,SAAiB;IACrC,OAAOD,WAAWC,cAAcE,mBAAmBF;AACrD;AAEO,SAASL,WAAWK,SAAiB;IAC1C,IAAID,WAAWC,YAAY;QACzB,OAAO;IACT;IACA,IAAIE,mBAAmBF,YAAY;QACjC,OAAO;IACT;IACA,OAAOG;AACT","ignoreList":[0]}}, - {"offset": {"line": 349, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/is-thenable.ts"],"sourcesContent":["/**\n * Check to see if a value is Thenable.\n *\n * @param promise the maybe-thenable value\n * @returns true if the value is thenable\n */\nexport function isThenable<T = unknown>(\n promise: Promise<T> | T\n): promise is Promise<T> {\n return (\n promise !== null &&\n typeof promise === 'object' &&\n 'then' in promise &&\n typeof promise.then === 'function'\n )\n}\n"],"names":["isThenable","promise","then"],"mappings":"AAAA;;;;;CAKC;;;+BACeA,cAAAA;;;eAAAA;;;AAAT,SAASA,WACdC,OAAuB;IAEvB,OACEA,YAAY,QACZ,OAAOA,YAAY,YACnB,UAAUA,WACV,OAAOA,QAAQC,IAAI,KAAK;AAE5B","ignoreList":[0]}}, - {"offset": {"line": 370, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/page-path/ensure-leading-slash.ts"],"sourcesContent":["/**\n * For a given page path, this function ensures that there is a leading slash.\n * If there is not a leading slash, one is added, otherwise it is noop.\n */\nexport function ensureLeadingSlash(path: string) {\n return path.startsWith('/') ? path : `/${path}`\n}\n"],"names":["ensureLeadingSlash","path","startsWith"],"mappings":"AAAA;;;CAGC;;;+BACeA,sBAAAA;;;eAAAA;;;AAAT,SAASA,mBAAmBC,IAAY;IAC7C,OAAOA,KAAKC,UAAU,CAAC,OAAOD,OAAO,CAAC,CAAC,EAAEA,MAAM;AACjD","ignoreList":[0]}}, - {"offset": {"line": 389, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment.ts"],"sourcesContent":["import type { FlightRouterState, Segment } from './app-router-types'\n\nexport function getSegmentValue(segment: Segment) {\n return Array.isArray(segment) ? segment[1] : segment\n}\n\nexport function isGroupSegment(segment: string) {\n // Use array[0] for performant purpose\n return segment[0] === '(' && segment.endsWith(')')\n}\n\nexport function isParallelRouteSegment(segment: string) {\n return segment.startsWith('@') && segment !== '@children'\n}\n\nexport function addSearchParamsIfPageSegment(\n segment: Segment,\n searchParams: Record<string, string | string[] | undefined>\n) {\n const isPageSegment = segment.includes(PAGE_SEGMENT_KEY)\n\n if (isPageSegment) {\n const stringifiedQuery = JSON.stringify(searchParams)\n return stringifiedQuery !== '{}'\n ? PAGE_SEGMENT_KEY + '?' + stringifiedQuery\n : PAGE_SEGMENT_KEY\n }\n\n return segment\n}\n\nexport function computeSelectedLayoutSegment(\n segments: string[] | null,\n parallelRouteKey: string\n): string | null {\n if (!segments || segments.length === 0) {\n return null\n }\n\n // For 'children', use first segment; for other parallel routes, use last segment\n const rawSegment =\n parallelRouteKey === 'children'\n ? segments[0]\n : segments[segments.length - 1]\n\n // If the default slot is showing, return null since it's not technically \"selected\" (it's a fallback)\n // Returning an internal value like `__DEFAULT__` would be confusing\n return rawSegment === DEFAULT_SEGMENT_KEY ? null : rawSegment\n}\n\n/** Get the canonical parameters from the current level to the leaf node. */\nexport function getSelectedLayoutSegmentPath(\n tree: FlightRouterState,\n parallelRouteKey: string,\n first = true,\n segmentPath: string[] = []\n): string[] {\n let node: FlightRouterState\n if (first) {\n // Use the provided parallel route key on the first parallel route\n node = tree[1][parallelRouteKey]\n } else {\n // After first parallel route prefer children, if there's no children pick the first parallel route.\n const parallelRoutes = tree[1]\n node = parallelRoutes.children ?? Object.values(parallelRoutes)[0]\n }\n\n if (!node) return segmentPath\n const segment = node[0]\n\n let segmentValue = getSegmentValue(segment)\n\n if (!segmentValue || segmentValue.startsWith(PAGE_SEGMENT_KEY)) {\n return segmentPath\n }\n\n segmentPath.push(segmentValue)\n\n return getSelectedLayoutSegmentPath(\n node,\n parallelRouteKey,\n false,\n segmentPath\n )\n}\n\nexport const PAGE_SEGMENT_KEY = '__PAGE__'\nexport const DEFAULT_SEGMENT_KEY = '__DEFAULT__'\nexport const NOT_FOUND_SEGMENT_KEY = '/_not-found'\n"],"names":["DEFAULT_SEGMENT_KEY","NOT_FOUND_SEGMENT_KEY","PAGE_SEGMENT_KEY","addSearchParamsIfPageSegment","computeSelectedLayoutSegment","getSegmentValue","getSelectedLayoutSegmentPath","isGroupSegment","isParallelRouteSegment","segment","Array","isArray","endsWith","startsWith","searchParams","isPageSegment","includes","stringifiedQuery","JSON","stringify","segments","parallelRouteKey","length","rawSegment","tree","first","segmentPath","node","parallelRoutes","children","Object","values","segmentValue","push"],"mappings":";;;;;;;;;;;;;;;;;;;;;IAuFaA,mBAAmB,EAAA;eAAnBA;;IACAC,qBAAqB,EAAA;eAArBA;;IAFAC,gBAAgB,EAAA;eAAhBA;;IAvEGC,4BAA4B,EAAA;eAA5BA;;IAgBAC,4BAA4B,EAAA;eAA5BA;;IA7BAC,eAAe,EAAA;eAAfA;;IAiDAC,4BAA4B,EAAA;eAA5BA;;IA7CAC,cAAc,EAAA;eAAdA;;IAKAC,sBAAsB,EAAA;eAAtBA;;;AATT,SAASH,gBAAgBI,OAAgB;IAC9C,OAAOC,MAAMC,OAAO,CAACF,WAAWA,OAAO,CAAC,EAAE,GAAGA;AAC/C;AAEO,SAASF,eAAeE,OAAe;IAC5C,sCAAsC;IACtC,OAAOA,OAAO,CAAC,EAAE,KAAK,OAAOA,QAAQG,QAAQ,CAAC;AAChD;AAEO,SAASJ,uBAAuBC,OAAe;IACpD,OAAOA,QAAQI,UAAU,CAAC,QAAQJ,YAAY;AAChD;AAEO,SAASN,6BACdM,OAAgB,EAChBK,YAA2D;IAE3D,MAAMC,gBAAgBN,QAAQO,QAAQ,CAACd;IAEvC,IAAIa,eAAe;QACjB,MAAME,mBAAmBC,KAAKC,SAAS,CAACL;QACxC,OAAOG,qBAAqB,OACxBf,mBAAmB,MAAMe,mBACzBf;IACN;IAEA,OAAOO;AACT;AAEO,SAASL,6BACdgB,QAAyB,EACzBC,gBAAwB;IAExB,IAAI,CAACD,YAAYA,SAASE,MAAM,KAAK,GAAG;QACtC,OAAO;IACT;IAEA,iFAAiF;IACjF,MAAMC,aACJF,qBAAqB,aACjBD,QAAQ,CAAC,EAAE,GACXA,QAAQ,CAACA,SAASE,MAAM,GAAG,EAAE;IAEnC,sGAAsG;IACtG,oEAAoE;IACpE,OAAOC,eAAevB,sBAAsB,OAAOuB;AACrD;AAGO,SAASjB,6BACdkB,IAAuB,EACvBH,gBAAwB,EACxBI,QAAQ,IAAI,EACZC,cAAwB,EAAE;IAE1B,IAAIC;IACJ,IAAIF,OAAO;QACT,kEAAkE;QAClEE,OAAOH,IAAI,CAAC,EAAE,CAACH,iBAAiB;IAClC,OAAO;QACL,oGAAoG;QACpG,MAAMO,iBAAiBJ,IAAI,CAAC,EAAE;QAC9BG,OAAOC,eAAeC,QAAQ,IAAIC,OAAOC,MAAM,CAACH,eAAe,CAAC,EAAE;IACpE;IAEA,IAAI,CAACD,MAAM,OAAOD;IAClB,MAAMjB,UAAUkB,IAAI,CAAC,EAAE;IAEvB,IAAIK,eAAe3B,gBAAgBI;IAEnC,IAAI,CAACuB,gBAAgBA,aAAanB,UAAU,CAACX,mBAAmB;QAC9D,OAAOwB;IACT;IAEAA,YAAYO,IAAI,CAACD;IAEjB,OAAO1B,6BACLqB,MACAN,kBACA,OACAK;AAEJ;AAEO,MAAMxB,mBAAmB;AACzB,MAAMF,sBAAsB;AAC5B,MAAMC,wBAAwB","ignoreList":[0]}}, - {"offset": {"line": 492, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/app-paths.ts"],"sourcesContent":["import { ensureLeadingSlash } from '../../page-path/ensure-leading-slash'\nimport { isGroupSegment } from '../../segment'\n\n/**\n * Normalizes an app route so it represents the actual request path. Essentially\n * performing the following transformations:\n *\n * - `/(dashboard)/user/[id]/page` to `/user/[id]`\n * - `/(dashboard)/account/page` to `/account`\n * - `/user/[id]/page` to `/user/[id]`\n * - `/account/page` to `/account`\n * - `/page` to `/`\n * - `/(dashboard)/user/[id]/route` to `/user/[id]`\n * - `/(dashboard)/account/route` to `/account`\n * - `/user/[id]/route` to `/user/[id]`\n * - `/account/route` to `/account`\n * - `/route` to `/`\n * - `/` to `/`\n *\n * @param route the app route to normalize\n * @returns the normalized pathname\n */\nexport function normalizeAppPath(route: string) {\n return ensureLeadingSlash(\n route.split('/').reduce((pathname, segment, index, segments) => {\n // Empty segments are ignored.\n if (!segment) {\n return pathname\n }\n\n // Groups are ignored.\n if (isGroupSegment(segment)) {\n return pathname\n }\n\n // Parallel segments are ignored.\n if (segment[0] === '@') {\n return pathname\n }\n\n // The last segment (if it's a leaf) should be ignored.\n if (\n (segment === 'page' || segment === 'route') &&\n index === segments.length - 1\n ) {\n return pathname\n }\n\n return `${pathname}/${segment}`\n }, '')\n )\n}\n\n/**\n * Strips the `.rsc` extension if it's in the pathname.\n * Since this function is used on full urls it checks `?` for searchParams handling.\n */\nexport function normalizeRscURL(url: string) {\n return url.replace(\n /\\.rsc($|\\?)/,\n // $1 ensures `?` is preserved\n '$1'\n )\n}\n"],"names":["normalizeAppPath","normalizeRscURL","route","ensureLeadingSlash","split","reduce","pathname","segment","index","segments","isGroupSegment","length","url","replace"],"mappings":";;;;;;;;;;;;;;IAsBgBA,gBAAgB,EAAA;eAAhBA;;IAmCAC,eAAe,EAAA;eAAfA;;;oCAzDmB;yBACJ;AAqBxB,SAASD,iBAAiBE,KAAa;IAC5C,OAAOC,CAAAA,GAAAA,oBAAAA,kBAAkB,EACvBD,MAAME,KAAK,CAAC,KAAKC,MAAM,CAAC,CAACC,UAAUC,SAASC,OAAOC;QACjD,8BAA8B;QAC9B,IAAI,CAACF,SAAS;YACZ,OAAOD;QACT;QAEA,sBAAsB;QACtB,IAAII,CAAAA,GAAAA,SAAAA,cAAc,EAACH,UAAU;YAC3B,OAAOD;QACT;QAEA,iCAAiC;QACjC,IAAIC,OAAO,CAAC,EAAE,KAAK,KAAK;YACtB,OAAOD;QACT;QAEA,uDAAuD;QACvD,IACGC,CAAAA,YAAY,UAAUA,YAAY,OAAM,KACzCC,UAAUC,SAASE,MAAM,GAAG,GAC5B;YACA,OAAOL;QACT;QAEA,OAAO,GAAGA,SAAS,CAAC,EAAEC,SAAS;IACjC,GAAG;AAEP;AAMO,SAASN,gBAAgBW,GAAW;IACzC,OAAOA,IAAIC,OAAO,CAChB,eACA,AACA,8BAD8B;AAGlC","ignoreList":[0]}}, - {"offset": {"line": 543, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/interception-routes.ts"],"sourcesContent":["import { normalizeAppPath } from './app-paths'\n\n// order matters here, the first match will be used\nexport const INTERCEPTION_ROUTE_MARKERS = [\n '(..)(..)',\n '(.)',\n '(..)',\n '(...)',\n] as const\n\nexport type InterceptionMarker = (typeof INTERCEPTION_ROUTE_MARKERS)[number]\n\nexport function isInterceptionRouteAppPath(path: string): boolean {\n // TODO-APP: add more serious validation\n return (\n path\n .split('/')\n .find((segment) =>\n INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n ) !== undefined\n )\n}\n\ntype InterceptionRouteInformation = {\n /**\n * The intercepting route. This is the route that is being intercepted or the\n * route that the user was coming from. This is matched by the Next-Url\n * header.\n */\n interceptingRoute: string\n\n /**\n * The intercepted route. This is the route that is being intercepted or the\n * route that the user is going to. This is matched by the request pathname.\n */\n interceptedRoute: string\n}\n\nexport function extractInterceptionRouteInformation(\n path: string\n): InterceptionRouteInformation {\n let interceptingRoute: string | undefined\n let marker: (typeof INTERCEPTION_ROUTE_MARKERS)[number] | undefined\n let interceptedRoute: string | undefined\n\n for (const segment of path.split('/')) {\n marker = INTERCEPTION_ROUTE_MARKERS.find((m) => segment.startsWith(m))\n if (marker) {\n ;[interceptingRoute, interceptedRoute] = path.split(marker, 2)\n break\n }\n }\n\n if (!interceptingRoute || !marker || !interceptedRoute) {\n throw new Error(\n `Invalid interception route: ${path}. Must be in the format /<intercepting route>/(..|...|..)(..)/<intercepted route>`\n )\n }\n\n interceptingRoute = normalizeAppPath(interceptingRoute) // normalize the path, e.g. /(blog)/feed -> /feed\n\n switch (marker) {\n case '(.)':\n // (.) indicates that we should match with sibling routes, so we just need to append the intercepted route to the intercepting route\n if (interceptingRoute === '/') {\n interceptedRoute = `/${interceptedRoute}`\n } else {\n interceptedRoute = interceptingRoute + '/' + interceptedRoute\n }\n break\n case '(..)':\n // (..) indicates that we should match at one level up, so we need to remove the last segment of the intercepting route\n if (interceptingRoute === '/') {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..) marker at the root level, use (.) instead.`\n )\n }\n interceptedRoute = interceptingRoute\n .split('/')\n .slice(0, -1)\n .concat(interceptedRoute)\n .join('/')\n break\n case '(...)':\n // (...) will match the route segment in the root directory, so we need to use the root directory to prepend the intercepted route\n interceptedRoute = '/' + interceptedRoute\n break\n case '(..)(..)':\n // (..)(..) indicates that we should match at two levels up, so we need to remove the last two segments of the intercepting route\n\n const splitInterceptingRoute = interceptingRoute.split('/')\n if (splitInterceptingRoute.length <= 2) {\n throw new Error(\n `Invalid interception route: ${path}. Cannot use (..)(..) marker at the root level or one level up.`\n )\n }\n\n interceptedRoute = splitInterceptingRoute\n .slice(0, -2)\n .concat(interceptedRoute)\n .join('/')\n break\n default:\n throw new Error('Invariant: unexpected marker')\n }\n\n return { interceptingRoute, interceptedRoute }\n}\n"],"names":["INTERCEPTION_ROUTE_MARKERS","extractInterceptionRouteInformation","isInterceptionRouteAppPath","path","split","find","segment","m","startsWith","undefined","interceptingRoute","marker","interceptedRoute","Error","normalizeAppPath","slice","concat","join","splitInterceptingRoute","length"],"mappings":";;;;;;;;;;;;;;;IAGaA,0BAA0B,EAAA;eAA1BA;;IAmCGC,mCAAmC,EAAA;eAAnCA;;IA1BAC,0BAA0B,EAAA;eAA1BA;;;0BAZiB;AAG1B,MAAMF,6BAA6B;IACxC;IACA;IACA;IACA;CACD;AAIM,SAASE,2BAA2BC,IAAY;IACrD,wCAAwC;IACxC,OACEA,KACGC,KAAK,CAAC,KACNC,IAAI,CAAC,CAACC,UACLN,2BAA2BK,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD,SACtDE;AAEZ;AAiBO,SAASR,oCACdE,IAAY;IAEZ,IAAIO;IACJ,IAAIC;IACJ,IAAIC;IAEJ,KAAK,MAAMN,WAAWH,KAAKC,KAAK,CAAC,KAAM;QACrCO,SAASX,2BAA2BK,IAAI,CAAC,CAACE,IAAMD,QAAQE,UAAU,CAACD;QACnE,IAAII,QAAQ;;YACT,CAACD,mBAAmBE,iBAAiB,GAAGT,KAAKC,KAAK,CAACO,QAAQ;YAC5D;QACF;IACF;IAEA,IAAI,CAACD,qBAAqB,CAACC,UAAU,CAACC,kBAAkB;QACtD,MAAM,OAAA,cAEL,CAFK,IAAIC,MACR,CAAC,4BAA4B,EAAEV,KAAK,iFAAiF,CAAC,GADlH,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEAO,oBAAoBI,CAAAA,GAAAA,UAAAA,gBAAgB,EAACJ,mBAAmB,iDAAiD;;IAEzG,OAAQC;QACN,KAAK;YACH,oIAAoI;YACpI,IAAID,sBAAsB,KAAK;gBAC7BE,mBAAmB,CAAC,CAAC,EAAEA,kBAAkB;YAC3C,OAAO;gBACLA,mBAAmBF,oBAAoB,MAAME;YAC/C;YACA;QACF,KAAK;YACH,uHAAuH;YACvH,IAAIF,sBAAsB,KAAK;gBAC7B,MAAM,OAAA,cAEL,CAFK,IAAIG,MACR,CAAC,4BAA4B,EAAEV,KAAK,4DAA4D,CAAC,GAD7F,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YACAS,mBAAmBF,kBAChBN,KAAK,CAAC,KACNW,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACJ,kBACPK,IAAI,CAAC;YACR;QACF,KAAK;YACH,kIAAkI;YAClIL,mBAAmB,MAAMA;YACzB;QACF,KAAK;YACH,iIAAiI;YAEjI,MAAMM,yBAAyBR,kBAAkBN,KAAK,CAAC;YACvD,IAAIc,uBAAuBC,MAAM,IAAI,GAAG;gBACtC,MAAM,OAAA,cAEL,CAFK,IAAIN,MACR,CAAC,4BAA4B,EAAEV,KAAK,+DAA+D,CAAC,GADhG,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF;YAEAS,mBAAmBM,uBAChBH,KAAK,CAAC,GAAG,CAAC,GACVC,MAAM,CAACJ,kBACPK,IAAI,CAAC;YACR;QACF;YACE,MAAM,OAAA,cAAyC,CAAzC,IAAIJ,MAAM,iCAAV,qBAAA;uBAAA;4BAAA;8BAAA;YAAwC;IAClD;IAEA,OAAO;QAAEH;QAAmBE;IAAiB;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 652, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/segment-cache/segment-value-encoding.ts"],"sourcesContent":["import { PAGE_SEGMENT_KEY } from '../segment'\nimport type { Segment as FlightRouterStateSegment } from '../app-router-types'\n\n// TypeScript trick to simulate opaque types, like in Flow.\ntype Opaque<K, T> = T & { __brand: K }\n\nexport type SegmentRequestKeyPart = Opaque<'SegmentRequestKeyPart', string>\nexport type SegmentRequestKey = Opaque<'SegmentRequestKey', string>\n\nexport const ROOT_SEGMENT_REQUEST_KEY = '' as SegmentRequestKey\n\nexport const HEAD_REQUEST_KEY = '/_head' as SegmentRequestKey\n\nexport function createSegmentRequestKeyPart(\n segment: FlightRouterStateSegment\n): SegmentRequestKeyPart {\n if (typeof segment === 'string') {\n if (segment.startsWith(PAGE_SEGMENT_KEY)) {\n // The Flight Router State type sometimes includes the search params in\n // the page segment. However, the Segment Cache tracks this as a separate\n // key. So, we strip the search params here, and then add them back when\n // the cache entry is turned back into a FlightRouterState. This is an\n // unfortunate consequence of the FlightRouteState being used both as a\n // transport type and as a cache key; we'll address this once more of the\n // Segment Cache implementation has settled.\n // TODO: We should hoist the search params out of the FlightRouterState\n // type entirely, This is our plan for dynamic route params, too.\n return PAGE_SEGMENT_KEY as SegmentRequestKeyPart\n }\n const safeName =\n // TODO: FlightRouterState encodes Not Found routes as \"/_not-found\".\n // But params typically don't include the leading slash. We should use\n // a different encoding to avoid this special case.\n segment === '/_not-found'\n ? '_not-found'\n : encodeToFilesystemAndURLSafeString(segment)\n // Since this is not a dynamic segment, it's fully encoded. It does not\n // need to be \"hydrated\" with a param value.\n return safeName as SegmentRequestKeyPart\n }\n\n const name = segment[0]\n const paramType = segment[2]\n const safeName = encodeToFilesystemAndURLSafeString(name)\n\n const encodedName = '$' + paramType + '$' + safeName\n return encodedName as SegmentRequestKeyPart\n}\n\nexport function appendSegmentRequestKeyPart(\n parentRequestKey: SegmentRequestKey,\n parallelRouteKey: string,\n childRequestKeyPart: SegmentRequestKeyPart\n): SegmentRequestKey {\n // Aside from being filesystem safe, segment keys are also designed so that\n // each segment and parallel route creates its own subdirectory. Roughly in\n // the same shape as the source app directory. This is mostly just for easier\n // debugging (you can open up the build folder and navigate the output); if\n // we wanted to do we could just use a flat structure.\n\n // Omit the parallel route key for children, since this is the most\n // common case. Saves some bytes (and it's what the app directory does).\n const slotKey =\n parallelRouteKey === 'children'\n ? childRequestKeyPart\n : `@${encodeToFilesystemAndURLSafeString(parallelRouteKey)}/${childRequestKeyPart}`\n return (parentRequestKey + '/' + slotKey) as SegmentRequestKey\n}\n\n// Define a regex pattern to match the most common characters found in a route\n// param. It excludes anything that might not be cross-platform filesystem\n// compatible, like |. It does not need to be precise because the fallback is to\n// just base64url-encode the whole parameter, which is fine; we just don't do it\n// by default for compactness, and for easier debugging.\nconst simpleParamValueRegex = /^[a-zA-Z0-9\\-_@]+$/\n\nfunction encodeToFilesystemAndURLSafeString(value: string) {\n if (simpleParamValueRegex.test(value)) {\n return value\n }\n // If there are any unsafe characters, base64url-encode the entire value.\n // We also add a ! prefix so it doesn't collide with the simple case.\n const base64url = btoa(value)\n .replace(/\\+/g, '-') // Replace '+' with '-'\n .replace(/\\//g, '_') // Replace '/' with '_'\n .replace(/=+$/, '') // Remove trailing '='\n return '!' + base64url\n}\n\nexport function convertSegmentPathToStaticExportFilename(\n segmentPath: string\n): string {\n return `__next${segmentPath.replace(/\\//g, '.')}.txt`\n}\n"],"names":["HEAD_REQUEST_KEY","ROOT_SEGMENT_REQUEST_KEY","appendSegmentRequestKeyPart","convertSegmentPathToStaticExportFilename","createSegmentRequestKeyPart","segment","startsWith","PAGE_SEGMENT_KEY","safeName","encodeToFilesystemAndURLSafeString","name","paramType","encodedName","parentRequestKey","parallelRouteKey","childRequestKeyPart","slotKey","simpleParamValueRegex","value","test","base64url","btoa","replace","segmentPath"],"mappings":";;;;;;;;;;;;;;;;;IAWaA,gBAAgB,EAAA;eAAhBA;;IAFAC,wBAAwB,EAAA;eAAxBA;;IAwCGC,2BAA2B,EAAA;eAA3BA;;IAwCAC,wCAAwC,EAAA;eAAxCA;;IA5EAC,2BAA2B,EAAA;eAA3BA;;;yBAbiB;AAS1B,MAAMH,2BAA2B;AAEjC,MAAMD,mBAAmB;AAEzB,SAASI,4BACdC,OAAiC;IAEjC,IAAI,OAAOA,YAAY,UAAU;QAC/B,IAAIA,QAAQC,UAAU,CAACC,SAAAA,gBAAgB,GAAG;YACxC,uEAAuE;YACvE,yEAAyE;YACzE,wEAAwE;YACxE,sEAAsE;YACtE,uEAAuE;YACvE,yEAAyE;YACzE,4CAA4C;YAC5C,uEAAuE;YACvE,iEAAiE;YACjE,OAAOA,SAAAA,gBAAgB;QACzB;QACA,MAAMC,WACJ,AACA,qEADqE,CACC;QACtE,mDAAmD;QACnDH,YAAY,gBACR,eACAI,mCAAmCJ;QACzC,uEAAuE;QACvE,4CAA4C;QAC5C,OAAOG;IACT;IAEA,MAAME,OAAOL,OAAO,CAAC,EAAE;IACvB,MAAMM,YAAYN,OAAO,CAAC,EAAE;IAC5B,MAAMG,WAAWC,mCAAmCC;IAEpD,MAAME,cAAc,MAAMD,YAAY,MAAMH;IAC5C,OAAOI;AACT;AAEO,SAASV,4BACdW,gBAAmC,EACnCC,gBAAwB,EACxBC,mBAA0C;IAE1C,2EAA2E;IAC3E,2EAA2E;IAC3E,6EAA6E;IAC7E,2EAA2E;IAC3E,sDAAsD;IAEtD,mEAAmE;IACnE,wEAAwE;IACxE,MAAMC,UACJF,qBAAqB,aACjBC,sBACA,CAAC,CAAC,EAAEN,mCAAmCK,kBAAkB,CAAC,EAAEC,qBAAqB;IACvF,OAAQF,mBAAmB,MAAMG;AACnC;AAEA,8EAA8E;AAC9E,0EAA0E;AAC1E,gFAAgF;AAChF,gFAAgF;AAChF,wDAAwD;AACxD,MAAMC,wBAAwB;AAE9B,SAASR,mCAAmCS,KAAa;IACvD,IAAID,sBAAsBE,IAAI,CAACD,QAAQ;QACrC,OAAOA;IACT;IACA,yEAAyE;IACzE,qEAAqE;IACrE,MAAME,YAAYC,KAAKH,OACpBI,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,KAAK,uBAAuB;KAC3CA,OAAO,CAAC,OAAO,IAAI,sBAAsB;;IAC5C,OAAO,MAAMF;AACf;AAEO,SAASjB,yCACdoB,WAAmB;IAEnB,OAAO,CAAC,MAAM,EAAEA,YAAYD,OAAO,CAAC,OAAO,KAAK,IAAI,CAAC;AACvD","ignoreList":[0]}}, - {"offset": {"line": 751, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/hash.ts"],"sourcesContent":["// http://www.cse.yorku.ca/~oz/hash.html\n// More specifically, 32-bit hash via djbxor\n// (ref: https://gist.github.com/eplawless/52813b1d8ad9af510d85?permalink_comment_id=3367765#gistcomment-3367765)\n// This is due to number type differences between rust for turbopack to js number types,\n// where rust does not have easy way to repreesnt js's 53-bit float number type for the matching\n// overflow behavior. This is more `correct` in terms of having canonical hash across different runtime / implementation\n// as can gaurantee determinstic output from 32bit hash.\nexport function djb2Hash(str: string) {\n let hash = 5381\n for (let i = 0; i < str.length; i++) {\n const char = str.charCodeAt(i)\n hash = ((hash << 5) + hash + char) & 0xffffffff\n }\n return hash >>> 0\n}\n\nexport function hexHash(str: string) {\n return djb2Hash(str).toString(36).slice(0, 5)\n}\n"],"names":["djb2Hash","hexHash","str","hash","i","length","char","charCodeAt","toString","slice"],"mappings":"AAAA,wCAAwC;AACxC,4CAA4C;AAC5C,iHAAiH;AACjH,wFAAwF;AACxF,gGAAgG;AAChG,wHAAwH;AACxH,wDAAwD;;;;;;;;;;;;;;;IACxCA,QAAQ,EAAA;eAARA;;IASAC,OAAO,EAAA;eAAPA;;;AATT,SAASD,SAASE,GAAW;IAClC,IAAIC,OAAO;IACX,IAAK,IAAIC,IAAI,GAAGA,IAAIF,IAAIG,MAAM,EAAED,IAAK;QACnC,MAAME,OAAOJ,IAAIK,UAAU,CAACH;QAC5BD,OAASA,CAAAA,QAAQ,CAAA,IAAKA,OAAOG,OAAQ;IACvC;IACA,OAAOH,SAAS;AAClB;AAEO,SAASF,QAAQC,GAAW;IACjC,OAAOF,SAASE,KAAKM,QAAQ,CAAC,IAAIC,KAAK,CAAC,GAAG;AAC7C","ignoreList":[0]}}, - {"offset": {"line": 794, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/cache-busting-search-param.ts"],"sourcesContent":["import { hexHash } from '../../hash'\n\nexport function computeCacheBustingSearchParam(\n prefetchHeader: '1' | '2' | '0' | undefined,\n segmentPrefetchHeader: string | string[] | undefined,\n stateTreeHeader: string | string[] | undefined,\n nextUrlHeader: string | string[] | undefined\n): string {\n if (\n (prefetchHeader === undefined || prefetchHeader === '0') &&\n segmentPrefetchHeader === undefined &&\n stateTreeHeader === undefined &&\n nextUrlHeader === undefined\n ) {\n return ''\n }\n return hexHash(\n [\n prefetchHeader || '0',\n segmentPrefetchHeader || '0',\n stateTreeHeader || '0',\n nextUrlHeader || '0',\n ].join(',')\n )\n}\n"],"names":["computeCacheBustingSearchParam","prefetchHeader","segmentPrefetchHeader","stateTreeHeader","nextUrlHeader","undefined","hexHash","join"],"mappings":";;;+BAEgBA,kCAAAA;;;eAAAA;;;sBAFQ;AAEjB,SAASA,+BACdC,cAA2C,EAC3CC,qBAAoD,EACpDC,eAA8C,EAC9CC,aAA4C;IAE5C,IACGH,CAAAA,mBAAmBI,aAAaJ,mBAAmB,GAAE,KACtDC,0BAA0BG,aAC1BF,oBAAoBE,aACpBD,kBAAkBC,WAClB;QACA,OAAO;IACT;IACA,OAAOC,CAAAA,GAAAA,MAAAA,OAAO,EACZ;QACEL,kBAAkB;QAClBC,yBAAyB;QACzBC,mBAAmB;QACnBC,iBAAiB;KAClB,CAACG,IAAI,CAAC;AAEX","ignoreList":[0]}}, - {"offset": {"line": 819, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/deployment-id.ts"],"sourcesContent":["// This could also be a variable instead of a function, but some unit tests want to change the ID at\n// runtime. Even though that would never happen in a real deployment.\nexport function getDeploymentId(): string | undefined {\n return process.env.NEXT_DEPLOYMENT_ID\n}\n\nexport function getDeploymentIdQueryOrEmptyString(): string {\n let deploymentId = getDeploymentId()\n if (deploymentId) {\n return `?dpl=${deploymentId}`\n }\n return ''\n}\n"],"names":["getDeploymentId","getDeploymentIdQueryOrEmptyString","process","env","NEXT_DEPLOYMENT_ID","deploymentId"],"mappings":"AAGSE,QAAQC,GAAG,CAACC,kBAAkB;AAHvC,oGAAoG;AACpG,qEAAqE;;;;;;;;;;;;;;;;IACrDJ,eAAe,EAAA;eAAfA;;IAIAC,iCAAiC,EAAA;eAAjCA;;;AAJT,SAASD;IACd;AACF;AAEO,SAASC;IACd,IAAII,eAAeL;IACnB,IAAIK,cAAc;;IAGlB,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 857, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/app-router-types.ts"],"sourcesContent":["/**\n * App Router types - Client-safe types for the Next.js App Router\n *\n * This file contains type definitions that can be safely imported\n * by both client-side and server-side code without circular dependencies.\n */\n\nimport type React from 'react'\n\nexport type LoadingModuleData =\n | [React.JSX.Element, React.ReactNode, React.ReactNode]\n | null\n\n/** viewport metadata node */\nexport type HeadData = React.ReactNode\n\nexport type ChildSegmentMap = Map<string, CacheNode>\n\n/**\n * Cache node used in app-router / layout-router.\n */\n\nexport type CacheNode = {\n /**\n * When rsc is not null, it represents the RSC data for the\n * corresponding segment.\n *\n * `null` is a valid React Node but because segment data is always a\n * <LayoutRouter> component, we can use `null` to represent empty. When it is\n * null, it represents missing data, and rendering should suspend.\n */\n rsc: React.ReactNode\n\n /**\n * Represents a static version of the segment that can be shown immediately,\n * and may or may not contain dynamic holes. It's prefetched before a\n * navigation occurs.\n *\n * During rendering, we will choose whether to render `rsc` or `prefetchRsc`\n * with `useDeferredValue`. As with the `rsc` field, a value of `null` means\n * no value was provided. In this case, the LayoutRouter will go straight to\n * rendering the `rsc` value; if that one is also missing, it will suspend and\n * trigger a lazy fetch.\n */\n prefetchRsc: React.ReactNode\n\n prefetchHead: HeadData | null\n\n head: HeadData\n\n loading: LoadingModuleData | Promise<LoadingModuleData>\n\n parallelRoutes: Map<string, ChildSegmentMap>\n\n /**\n * The timestamp of the navigation that last updated the CacheNode's data. If\n * a CacheNode is reused from a previous navigation, this value is not\n * updated. Used to track the staleness of the data.\n */\n navigatedAt: number\n}\n\nexport type DynamicParamTypes =\n | 'catchall'\n | 'catchall-intercepted-(..)(..)'\n | 'catchall-intercepted-(.)'\n | 'catchall-intercepted-(..)'\n | 'catchall-intercepted-(...)'\n | 'optional-catchall'\n | 'dynamic'\n | 'dynamic-intercepted-(..)(..)'\n | 'dynamic-intercepted-(.)'\n | 'dynamic-intercepted-(..)'\n | 'dynamic-intercepted-(...)'\n\nexport type DynamicParamTypesShort =\n | 'c'\n | 'ci(..)(..)'\n | 'ci(.)'\n | 'ci(..)'\n | 'ci(...)'\n | 'oc'\n | 'd'\n | 'di(..)(..)'\n | 'di(.)'\n | 'di(..)'\n | 'di(...)'\n\nexport type Segment =\n | string\n | [\n // Param name\n paramName: string,\n // Param cache key (almost the same as the value, but arrays are\n // concatenated into strings)\n // TODO: We should change this to just be the value. Currently we convert\n // it back to a value when passing to useParams. It only needs to be\n // a string when converted to a a cache key, but that doesn't mean we\n // need to store it as that representation.\n paramCacheKey: string,\n // Dynamic param type\n dynamicParamType: DynamicParamTypesShort,\n ]\n\n/**\n * Router state\n */\nexport type FlightRouterState = [\n segment: Segment,\n parallelRoutes: { [parallelRouterKey: string]: FlightRouterState },\n url?: string | null,\n /**\n * \"refresh\" and \"refetch\", despite being similarly named, have different\n * semantics:\n * - \"refetch\" is used during a request to inform the server where rendering\n * should start from.\n *\n * - \"refresh\" is used by the client to mark that a segment should re-fetch the\n * data from the server for the current segment. It uses the \"url\" property\n * above to determine where to fetch from.\n *\n * - \"inside-shared-layout\" is used during a prefetch request to inform the\n * server that even if the segment matches, it should be treated as if it's\n * within the \"new\" part of a navigation — inside the shared layout. If\n * the segment doesn't match, then it has no effect, since it would be\n * treated as new regardless. If it does match, though, the server does not\n * need to render it, because the client already has it.\n *\n * - \"metadata-only\" instructs the server to skip rendering the segments and\n * only send the head data.\n *\n * A bit confusing, but that's because it has only one extremely narrow use\n * case — during a non-PPR prefetch, the server uses it to find the first\n * loading boundary beneath a shared layout.\n *\n * TODO: We should rethink the protocol for dynamic requests. It might not\n * make sense for the client to send a FlightRouterState, since this type is\n * overloaded with concerns.\n */\n refresh?:\n | 'refetch'\n | 'refresh'\n | 'inside-shared-layout'\n | 'metadata-only'\n | null,\n isRootLayout?: boolean,\n /**\n * Only present when responding to a tree prefetch request. Indicates whether\n * there is a loading boundary somewhere in the tree. The client cache uses\n * this to determine if it can skip the data prefetch request.\n */\n hasLoadingBoundary?: HasLoadingBoundary,\n]\n\nexport const enum HasLoadingBoundary {\n // There is a loading boundary in this particular segment\n SegmentHasLoadingBoundary = 1,\n // There is a loading boundary somewhere in the subtree (but not in\n // this segment)\n SubtreeHasLoadingBoundary = 2,\n // There is no loading boundary in this segment or any of its descendants\n SubtreeHasNoLoadingBoundary = 3,\n}\n\n/**\n * Individual Flight response path\n */\nexport type FlightSegmentPath =\n // Uses `any` as repeating pattern can't be typed.\n | any[]\n // Looks somewhat like this\n | [\n segment: Segment,\n parallelRouterKey: string,\n segment: Segment,\n parallelRouterKey: string,\n segment: Segment,\n parallelRouterKey: string,\n ]\n\n/**\n * Represents a tree of segments and the Flight data (i.e. React nodes) that\n * correspond to each one. The tree is isomorphic to the FlightRouterState;\n * however in the future we want to be able to fetch arbitrary partial segments\n * without having to fetch all its children. So this response format will\n * likely change.\n */\nexport type CacheNodeSeedData = [\n node: React.ReactNode | null,\n parallelRoutes: {\n [parallelRouterKey: string]: CacheNodeSeedData | null\n },\n loading: LoadingModuleData | Promise<LoadingModuleData>,\n isPartial: boolean,\n /** TODO: this doesn't feel like it belongs here, because it's only used during build, in `collectSegmentData` */\n hasRuntimePrefetch: boolean,\n]\n\nexport type FlightDataSegment = [\n /* segment of the rendered slice: */ Segment,\n /* treePatch */ FlightRouterState,\n /* cacheNodeSeedData */ CacheNodeSeedData | null, // Can be null during prefetch if there's no loading component\n /* head: viewport */ HeadData,\n /* isHeadPartial */ boolean,\n]\n\nexport type FlightDataPath =\n // Uses `any` as repeating pattern can't be typed.\n | any[]\n // Looks somewhat like this\n | [\n // Holds full path to the segment.\n ...FlightSegmentPath[],\n ...FlightDataSegment,\n ]\n\n/**\n * The Flight response data\n */\nexport type FlightData = Array<FlightDataPath> | string\n\nexport type ActionResult = Promise<any>\n\nexport type InitialRSCPayload = {\n /** buildId */\n b: string\n /** initialCanonicalUrlParts */\n c: string[]\n /** initialRenderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n /** initialFlightData */\n f: FlightDataPath[]\n /** missingSlots */\n m: Set<string> | undefined\n /** GlobalError */\n G: [React.ComponentType<any>, React.ReactNode | undefined]\n /** prerendered */\n S: boolean\n}\n\n// Response from `createFromFetch` for normal rendering\nexport type NavigationFlightResponse = {\n /** buildId */\n b: string\n /** flightData */\n f: FlightData\n /** prerendered */\n S: boolean\n /** renderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n /** runtimePrefetch - [isPartial, staleTime]. Only present in runtime prefetch responses. */\n rp?: [boolean, number]\n}\n\n// Response from `createFromFetch` for server actions. Action's flight data can be null\nexport type ActionFlightResponse = {\n /** actionResult */\n a: ActionResult\n /** buildId */\n b: string\n /** flightData */\n f: FlightData\n /** renderedSearch */\n q: string\n /** couldBeIntercepted */\n i: boolean\n}\n\nexport type RSCPayload =\n | InitialRSCPayload\n | NavigationFlightResponse\n | ActionFlightResponse\n"],"names":["HasLoadingBoundary"],"mappings":"AAAA;;;;;CAKC;;;+BAqJiBA,sBAAAA;;;eAAAA;;;AAAX,IAAWA,qBAAAA,WAAAA,GAAAA,SAAAA,kBAAAA;IAChB,yDAAyD;;IAEzD,mEAAmE;IACnE,gBAAgB;;IAEhB,yEAAyE;;WANzDA","ignoreList":[0]}}, - {"offset": {"line": 885, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/parse-path.ts"],"sourcesContent":["/**\n * Given a path this function will find the pathname, query and hash and return\n * them. This is useful to parse full paths on the client side.\n * @param path A path to parse e.g. /foo/bar?id=1#hash\n */\nexport function parsePath(path: string) {\n const hashIndex = path.indexOf('#')\n const queryIndex = path.indexOf('?')\n const hasQuery = queryIndex > -1 && (hashIndex < 0 || queryIndex < hashIndex)\n\n if (hasQuery || hashIndex > -1) {\n return {\n pathname: path.substring(0, hasQuery ? queryIndex : hashIndex),\n query: hasQuery\n ? path.substring(queryIndex, hashIndex > -1 ? hashIndex : undefined)\n : '',\n hash: hashIndex > -1 ? path.slice(hashIndex) : '',\n }\n }\n\n return { pathname: path, query: '', hash: '' }\n}\n"],"names":["parsePath","path","hashIndex","indexOf","queryIndex","hasQuery","pathname","substring","query","undefined","hash","slice"],"mappings":"AAAA;;;;CAIC;;;+BACeA,aAAAA;;;eAAAA;;;AAAT,SAASA,UAAUC,IAAY;IACpC,MAAMC,YAAYD,KAAKE,OAAO,CAAC;IAC/B,MAAMC,aAAaH,KAAKE,OAAO,CAAC;IAChC,MAAME,WAAWD,aAAa,CAAC,KAAMF,CAAAA,YAAY,KAAKE,aAAaF,SAAQ;IAE3E,IAAIG,YAAYH,YAAY,CAAC,GAAG;QAC9B,OAAO;YACLI,UAAUL,KAAKM,SAAS,CAAC,GAAGF,WAAWD,aAAaF;YACpDM,OAAOH,WACHJ,KAAKM,SAAS,CAACH,YAAYF,YAAY,CAAC,IAAIA,YAAYO,aACxD;YACJC,MAAMR,YAAY,CAAC,IAAID,KAAKU,KAAK,CAACT,aAAa;QACjD;IACF;IAEA,OAAO;QAAEI,UAAUL;QAAMO,OAAO;QAAIE,MAAM;IAAG;AAC/C","ignoreList":[0]}}, - {"offset": {"line": 919, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/add-path-prefix.ts"],"sourcesContent":["import { parsePath } from './parse-path'\n\n/**\n * Adds the provided prefix to the given path. It first ensures that the path\n * is indeed starting with a slash.\n */\nexport function addPathPrefix(path: string, prefix?: string) {\n if (!path.startsWith('/') || !prefix) {\n return path\n }\n\n const { pathname, query, hash } = parsePath(path)\n return `${prefix}${pathname}${query}${hash}`\n}\n"],"names":["addPathPrefix","path","prefix","startsWith","pathname","query","hash","parsePath"],"mappings":";;;+BAMgBA,iBAAAA;;;eAAAA;;;2BANU;AAMnB,SAASA,cAAcC,IAAY,EAAEC,MAAe;IACzD,IAAI,CAACD,KAAKE,UAAU,CAAC,QAAQ,CAACD,QAAQ;QACpC,OAAOD;IACT;IAEA,MAAM,EAAEG,QAAQ,EAAEC,KAAK,EAAEC,IAAI,EAAE,GAAGC,CAAAA,GAAAA,WAAAA,SAAS,EAACN;IAC5C,OAAO,GAAGC,SAASE,WAAWC,QAAQC,MAAM;AAC9C","ignoreList":[0]}}, - {"offset": {"line": 940, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/remove-trailing-slash.ts"],"sourcesContent":["/**\n * Removes the trailing slash for a given route or page path. Preserves the\n * root page. Examples:\n * - `/foo/bar/` -> `/foo/bar`\n * - `/foo/bar` -> `/foo/bar`\n * - `/` -> `/`\n */\nexport function removeTrailingSlash(route: string) {\n return route.replace(/\\/$/, '') || '/'\n}\n"],"names":["removeTrailingSlash","route","replace"],"mappings":"AAAA;;;;;;CAMC;;;+BACeA,uBAAAA;;;eAAAA;;;AAAT,SAASA,oBAAoBC,KAAa;IAC/C,OAAOA,MAAMC,OAAO,CAAC,OAAO,OAAO;AACrC","ignoreList":[0]}}, - {"offset": {"line": 962, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/promise-with-resolvers.ts"],"sourcesContent":["export function createPromiseWithResolvers<T>(): PromiseWithResolvers<T> {\n // Shim of Stage 4 Promise.withResolvers proposal\n let resolve: (value: T | PromiseLike<T>) => void\n let reject: (reason: any) => void\n const promise = new Promise<T>((res, rej) => {\n resolve = res\n reject = rej\n })\n return { resolve: resolve!, reject: reject!, promise }\n}\n"],"names":["createPromiseWithResolvers","resolve","reject","promise","Promise","res","rej"],"mappings":";;;+BAAgBA,8BAAAA;;;eAAAA;;;AAAT,SAASA;IACd,iDAAiD;IACjD,IAAIC;IACJ,IAAIC;IACJ,MAAMC,UAAU,IAAIC,QAAW,CAACC,KAAKC;QACnCL,UAAUI;QACVH,SAASI;IACX;IACA,OAAO;QAAEL,SAASA;QAAUC,QAAQA;QAASC;IAAQ;AACvD","ignoreList":[0]}}, - {"offset": {"line": 989, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/router/utils/path-has-prefix.ts"],"sourcesContent":["import { parsePath } from './parse-path'\n\n/**\n * Checks if a given path starts with a given prefix. It ensures it matches\n * exactly without containing extra chars. e.g. prefix /docs should replace\n * for /docs, /docs/, /docs/a but not /docsss\n * @param path The path to check.\n * @param prefix The prefix to check against.\n */\nexport function pathHasPrefix(path: string, prefix: string) {\n if (typeof path !== 'string') {\n return false\n }\n\n const { pathname } = parsePath(path)\n return pathname === prefix || pathname.startsWith(prefix + '/')\n}\n"],"names":["pathHasPrefix","path","prefix","pathname","parsePath","startsWith"],"mappings":";;;+BASgBA,iBAAAA;;;eAAAA;;;2BATU;AASnB,SAASA,cAAcC,IAAY,EAAEC,MAAc;IACxD,IAAI,OAAOD,SAAS,UAAU;QAC5B,OAAO;IACT;IAEA,MAAM,EAAEE,QAAQ,EAAE,GAAGC,CAAAA,GAAAA,WAAAA,SAAS,EAACH;IAC/B,OAAOE,aAAaD,UAAUC,SAASE,UAAU,CAACH,SAAS;AAC7D","ignoreList":[0]}}, - {"offset": {"line": 1010, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/server-reference-info.ts"],"sourcesContent":["export interface ServerReferenceInfo {\n type: 'server-action' | 'use-cache'\n usedArgs: [boolean, boolean, boolean, boolean, boolean, boolean]\n hasRestArgs: boolean\n}\n\n/**\n * Extracts info about the server reference for the given server reference ID by\n * parsing the first byte of the hex-encoded ID.\n *\n * ```\n * Bit positions: [7] [6] [5] [4] [3] [2] [1] [0]\n * Bits: typeBit argMask restArgs\n * ```\n *\n * If the `typeBit` is `1` the server reference represents a `\"use cache\"`\n * function, otherwise a server action.\n *\n * The `argMask` encodes whether the function uses the argument at the\n * respective position.\n *\n * The `restArgs` bit indicates whether the function uses a rest parameter. It's\n * also set to 1 if the function has more than 6 args.\n *\n * @param id hex-encoded server reference ID\n */\nexport function extractInfoFromServerReferenceId(\n id: string\n): ServerReferenceInfo {\n const infoByte = parseInt(id.slice(0, 2), 16)\n const typeBit = (infoByte >> 7) & 0x1\n const argMask = (infoByte >> 1) & 0x3f\n const restArgs = infoByte & 0x1\n const usedArgs = Array(6)\n\n for (let index = 0; index < 6; index++) {\n const bitPosition = 5 - index\n const bit = (argMask >> bitPosition) & 0x1\n usedArgs[index] = bit === 1\n }\n\n return {\n type: typeBit === 1 ? 'use-cache' : 'server-action',\n usedArgs: usedArgs as [\n boolean,\n boolean,\n boolean,\n boolean,\n boolean,\n boolean,\n ],\n hasRestArgs: restArgs === 1,\n }\n}\n\n/**\n * Creates a sparse array containing only the used arguments based on the\n * provided action info.\n */\nexport function omitUnusedArgs(\n args: unknown[],\n info: ServerReferenceInfo\n): unknown[] {\n const filteredArgs = new Array(args.length)\n\n for (let index = 0; index < args.length; index++) {\n if (\n (index < 6 && info.usedArgs[index]) ||\n // This assumes that the server reference info byte has the restArgs bit\n // set to 1 if there are more than 6 args.\n (index >= 6 && info.hasRestArgs)\n ) {\n filteredArgs[index] = args[index]\n }\n }\n\n return filteredArgs\n}\n"],"names":["extractInfoFromServerReferenceId","omitUnusedArgs","id","infoByte","parseInt","slice","typeBit","argMask","restArgs","usedArgs","Array","index","bitPosition","bit","type","hasRestArgs","args","info","filteredArgs","length"],"mappings":";;;;;;;;;;;;;;IA0BgBA,gCAAgC,EAAA;eAAhCA;;IAiCAC,cAAc,EAAA;eAAdA;;;AAjCT,SAASD,iCACdE,EAAU;IAEV,MAAMC,WAAWC,SAASF,GAAGG,KAAK,CAAC,GAAG,IAAI;IAC1C,MAAMC,UAAWH,YAAY,IAAK;IAClC,MAAMI,UAAWJ,YAAY,IAAK;IAClC,MAAMK,WAAWL,WAAW;IAC5B,MAAMM,WAAWC,MAAM;IAEvB,IAAK,IAAIC,QAAQ,GAAGA,QAAQ,GAAGA,QAAS;QACtC,MAAMC,cAAc,IAAID;QACxB,MAAME,MAAON,WAAWK,cAAe;QACvCH,QAAQ,CAACE,MAAM,GAAGE,QAAQ;IAC5B;IAEA,OAAO;QACLC,MAAMR,YAAY,IAAI,cAAc;QACpCG,UAAUA;QAQVM,aAAaP,aAAa;IAC5B;AACF;AAMO,SAASP,eACde,IAAe,EACfC,IAAyB;IAEzB,MAAMC,eAAe,IAAIR,MAAMM,KAAKG,MAAM;IAE1C,IAAK,IAAIR,QAAQ,GAAGA,QAAQK,KAAKG,MAAM,EAAER,QAAS;QAChD,IACGA,QAAQ,KAAKM,KAAKR,QAAQ,CAACE,MAAM,IAClC,wEAAwE;QACxE,0CAA0C;QACzCA,SAAS,KAAKM,KAAKF,WAAW,EAC/B;YACAG,YAAY,CAACP,MAAM,GAAGK,IAAI,CAACL,MAAM;QACnC;IACF;IAEA,OAAOO;AACT","ignoreList":[0]}}, - {"offset": {"line": 1063, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/action-revalidation-kind.ts"],"sourcesContent":["export type ActionRevalidationKind = 0 | 1 | 2\n\nexport const ActionDidNotRevalidate = 0\nexport const ActionDidRevalidateStaticAndDynamic = 1\nexport const ActionDidRevalidateDynamicOnly = 2\n"],"names":["ActionDidNotRevalidate","ActionDidRevalidateDynamicOnly","ActionDidRevalidateStaticAndDynamic"],"mappings":";;;;;;;;;;;;;;;IAEaA,sBAAsB,EAAA;eAAtBA;;IAEAC,8BAA8B,EAAA;eAA9BA;;IADAC,mCAAmC,EAAA;eAAnCA;;;AADN,MAAMF,yBAAyB;AAC/B,MAAME,sCAAsC;AAC5C,MAAMD,iCAAiC","ignoreList":[0]}}, - {"offset": {"line": 1095, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/app-router-context.shared-runtime.ts"],"sourcesContent":["'use client'\n\nimport type {\n FocusAndScrollRef,\n PrefetchKind,\n} from '../../client/components/router-reducer/router-reducer-types'\nimport type { Params } from '../../server/request/params'\nimport type {\n FlightRouterState,\n FlightSegmentPath,\n CacheNode,\n} from './app-router-types'\nimport React from 'react'\n\nexport interface NavigateOptions {\n scroll?: boolean\n}\n\nexport interface PrefetchOptions {\n kind: PrefetchKind\n onInvalidate?: () => void\n}\n\nexport interface AppRouterInstance {\n /**\n * Navigate to the previous history entry.\n */\n back(): void\n /**\n * Navigate to the next history entry.\n */\n forward(): void\n /**\n * Refresh the current page.\n */\n refresh(): void\n /**\n * Refresh the current page. Use in development only.\n * @internal\n */\n hmrRefresh(): void\n /**\n * Navigate to the provided href.\n * Pushes a new history entry.\n */\n push(href: string, options?: NavigateOptions): void\n /**\n * Navigate to the provided href.\n * Replaces the current history entry.\n */\n replace(href: string, options?: NavigateOptions): void\n /**\n * Prefetch the provided href.\n */\n prefetch(href: string, options?: PrefetchOptions): void\n}\n\nexport const AppRouterContext = React.createContext<AppRouterInstance | null>(\n null\n)\nexport const LayoutRouterContext = React.createContext<{\n parentTree: FlightRouterState\n parentCacheNode: CacheNode\n parentSegmentPath: FlightSegmentPath | null\n parentParams: Params\n debugNameContext: string\n url: string\n isActive: boolean\n} | null>(null)\n\nexport const GlobalLayoutRouterContext = React.createContext<{\n tree: FlightRouterState\n focusAndScrollRef: FocusAndScrollRef\n nextUrl: string | null\n previousNextUrl: string | null\n}>(null as any)\n\nexport const TemplateContext = React.createContext<React.ReactNode>(null as any)\n\nif (process.env.NODE_ENV !== 'production') {\n AppRouterContext.displayName = 'AppRouterContext'\n LayoutRouterContext.displayName = 'LayoutRouterContext'\n GlobalLayoutRouterContext.displayName = 'GlobalLayoutRouterContext'\n TemplateContext.displayName = 'TemplateContext'\n}\n\nexport const MissingSlotContext = React.createContext<Set<string>>(new Set())\n"],"names":["AppRouterContext","GlobalLayoutRouterContext","LayoutRouterContext","MissingSlotContext","TemplateContext","React","createContext","process","env","NODE_ENV","displayName","Set"],"mappings":"AA+EIO,QAAQC,GAAG,CAACC,QAAQ,KAAK;AA/E7B;;;;;;;;;;;;;;;;;;;IAyDaT,gBAAgB,EAAA;eAAhBA;;IAaAC,yBAAyB,EAAA;eAAzBA;;IAVAC,mBAAmB,EAAA;eAAnBA;;IA0BAC,kBAAkB,EAAA;eAAlBA;;IATAC,eAAe,EAAA;eAAfA;;;;gEAjEK;AA6CX,MAAMJ,mBAAmBK,OAAAA,OAAK,CAACC,aAAa,CACjD;AAEK,MAAMJ,sBAAsBG,OAAAA,OAAK,CAACC,aAAa,CAQ5C;AAEH,MAAML,4BAA4BI,OAAAA,OAAK,CAACC,aAAa,CAKzD;AAEI,MAAMF,kBAAkBC,OAAAA,OAAK,CAACC,aAAa,CAAkB;AAEpE,wCAA2C;IACzCN,iBAAiBU,WAAW,GAAG;IAC/BR,oBAAoBQ,WAAW,GAAG;IAClCT,0BAA0BS,WAAW,GAAG;IACxCN,gBAAgBM,WAAW,GAAG;AAChC;AAEO,MAAMP,qBAAqBE,OAAAA,OAAK,CAACC,aAAa,CAAc,IAAIK","ignoreList":[0]}}, - {"offset": {"line": 1148, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/server-inserted-html.shared-runtime.tsx"],"sourcesContent":["'use client'\n\nimport React, { useContext } from 'react'\n\nexport type ServerInsertedHTMLHook = (callbacks: () => React.ReactNode) => void\n\n// Use `React.createContext` to avoid errors from the RSC checks because\n// it can't be imported directly in Server Components:\n//\n// import { createContext } from 'react'\n//\n// More info: https://github.com/vercel/next.js/pull/40686\nexport const ServerInsertedHTMLContext =\n React.createContext<ServerInsertedHTMLHook | null>(null as any)\n\nexport function useServerInsertedHTML(callback: () => React.ReactNode): void {\n const addInsertedServerHTMLCallback = useContext(ServerInsertedHTMLContext)\n // Should have no effects on client where there's no flush effects provider\n if (addInsertedServerHTMLCallback) {\n addInsertedServerHTMLCallback(callback)\n }\n}\n"],"names":["ServerInsertedHTMLContext","useServerInsertedHTML","React","createContext","callback","addInsertedServerHTMLCallback","useContext"],"mappings":";;;;;;;;;;;;;;IAYaA,yBAAyB,EAAA;eAAzBA;;IAGGC,qBAAqB,EAAA;eAArBA;;;;iEAbkB;AAU3B,MAAMD,4BAAAA,WAAAA,GACXE,OAAAA,OAAK,CAACC,aAAa,CAAgC;AAE9C,SAASF,sBAAsBG,QAA+B;IACnE,MAAMC,gCAAgCC,CAAAA,GAAAA,OAAAA,UAAU,EAACN;IACjD,2EAA2E;IAC3E,IAAIK,+BAA+B;QACjCA,8BAA8BD;IAChC;AACF","ignoreList":[0]}}, - {"offset": {"line": 1183, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/utils/warn-once.ts"],"sourcesContent":["let warnOnce = (_: string) => {}\nif (process.env.NODE_ENV !== 'production') {\n const warnings = new Set<string>()\n warnOnce = (msg: string) => {\n if (!warnings.has(msg)) {\n console.warn(msg)\n }\n warnings.add(msg)\n }\n}\n\nexport { warnOnce }\n"],"names":["warnOnce","_","process","env","NODE_ENV","warnings","Set","msg","has","console","warn","add"],"mappings":"AACIE,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BAUpBJ,YAAAA;;;eAAAA;;;AAXT,IAAIA,WAAW,CAACC,KAAe;AAC/B,wCAA2C;IACzC,MAAMI,WAAW,IAAIC;IACrBN,WAAW,CAACO;QACV,IAAI,CAACF,SAASG,GAAG,CAACD,MAAM;YACtBE,QAAQC,IAAI,CAACH;QACf;QACAF,SAASM,GAAG,CAACJ;IACf;AACF","ignoreList":[0]}}, - {"offset": {"line": 1208, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/format-webpack-messages.ts"],"sourcesContent":["/**\nMIT License\n\nCopyright (c) 2015-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n*/\nimport stripAnsi from 'next/dist/compiled/strip-ansi'\n// This file is based on https://github.com/facebook/create-react-app/blob/7b1a32be6ec9f99a6c9a3c66813f3ac09c4736b9/packages/react-dev-utils/formatWebpackMessages.js\n// It's been edited to remove chalk and CRA-specific logic\n\nconst friendlySyntaxErrorLabel = 'Syntax error:'\n\nconst WEBPACK_BREAKING_CHANGE_POLYFILLS =\n '\\n\\nBREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.'\n\nfunction isLikelyASyntaxError(message: string) {\n return stripAnsi(message).includes(friendlySyntaxErrorLabel)\n}\n\nlet hadMissingSassError = false\n\n// Cleans up webpack error messages.\nfunction formatMessage(\n message: any,\n verbose?: boolean,\n importTraceNote?: boolean\n) {\n // TODO: Replace this once webpack 5 is stable\n if (typeof message === 'object' && message.message) {\n const filteredModuleTrace =\n message.moduleTrace &&\n message.moduleTrace.filter(\n (trace: any) =>\n !/next-(middleware|client-pages|route|edge-function)-loader\\.js/.test(\n trace.originName\n )\n )\n\n let body = message.message\n const breakingChangeIndex = body.indexOf(WEBPACK_BREAKING_CHANGE_POLYFILLS)\n if (breakingChangeIndex >= 0) {\n body = body.slice(0, breakingChangeIndex)\n }\n\n // TODO: Rspack currently doesn't populate moduleName correctly in some cases,\n // fall back to moduleIdentifier as a workaround\n if (\n process.env.NEXT_RSPACK &&\n !message.moduleName &&\n !message.file &&\n message.moduleIdentifier\n ) {\n const parts = message.moduleIdentifier.split('!')\n message.moduleName = parts[parts.length - 1]\n }\n\n message =\n (message.moduleName ? stripAnsi(message.moduleName) + '\\n' : '') +\n (message.file ? stripAnsi(message.file) + '\\n' : '') +\n body +\n (message.details && verbose ? '\\n' + message.details : '') +\n (filteredModuleTrace && filteredModuleTrace.length\n ? (importTraceNote || '\\n\\nImport trace for requested module:') +\n filteredModuleTrace\n .map((trace: any) => `\\n${trace.moduleName}`)\n .join('')\n : '') +\n (message.stack && verbose ? '\\n' + message.stack : '')\n }\n let lines = message.split('\\n')\n\n // Strip Webpack-added headers off errors/warnings\n // https://github.com/webpack/webpack/blob/master/lib/ModuleError.js\n lines = lines.filter((line: string) => !/Module [A-z ]+\\(from/.test(line))\n\n // Transform parsing error into syntax error\n // TODO: move this to our ESLint formatter?\n lines = lines.map((line: string) => {\n const parsingError = /Line (\\d+):(?:(\\d+):)?\\s*Parsing error: (.+)$/.exec(\n line\n )\n if (!parsingError) {\n return line\n }\n const [, errorLine, errorColumn, errorMessage] = parsingError\n return `${friendlySyntaxErrorLabel} ${errorMessage} (${errorLine}:${errorColumn})`\n })\n\n message = lines.join('\\n')\n // Smoosh syntax errors (commonly found in CSS)\n message = message.replace(\n /SyntaxError\\s+\\((\\d+):(\\d+)\\)\\s*(.+?)\\n/g,\n `${friendlySyntaxErrorLabel} $3 ($1:$2)\\n`\n )\n // Clean up export errors\n message = message.replace(\n /^.*export '(.+?)' was not found in '(.+?)'.*$/gm,\n `Attempted import error: '$1' is not exported from '$2'.`\n )\n message = message.replace(\n /^.*export 'default' \\(imported as '(.+?)'\\) was not found in '(.+?)'.*$/gm,\n `Attempted import error: '$2' does not contain a default export (imported as '$1').`\n )\n message = message.replace(\n /^.*export '(.+?)' \\(imported as '(.+?)'\\) was not found in '(.+?)'.*$/gm,\n `Attempted import error: '$1' is not exported from '$3' (imported as '$2').`\n )\n lines = message.split('\\n')\n\n // Remove leading newline\n if (lines.length > 2 && lines[1].trim() === '') {\n lines.splice(1, 1)\n }\n\n // Cleans up verbose \"module not found\" messages for files and packages.\n if (lines[1] && lines[1].startsWith('Module not found: ')) {\n lines = [\n lines[0],\n lines[1]\n .replace('Error: ', '')\n .replace('Module not found: Cannot find file:', 'Cannot find file:'),\n ...lines.slice(2),\n ]\n }\n\n // Add helpful message for users trying to use Sass for the first time\n if (lines[1] && lines[1].match(/Cannot find module.+sass/)) {\n // ./file.module.scss (<<loader info>>) => ./file.module.scss\n const firstLine = lines[0].split('!')\n lines[0] = firstLine[firstLine.length - 1]\n\n lines[1] =\n \"To use Next.js' built-in Sass support, you first need to install `sass`.\\n\"\n lines[1] += 'Run `npm i sass` or `yarn add sass` inside your workspace.\\n'\n lines[1] += '\\nLearn more: https://nextjs.org/docs/messages/install-sass'\n\n // dispose of unhelpful stack trace\n lines = lines.slice(0, 2)\n hadMissingSassError = true\n } else if (\n hadMissingSassError &&\n message.match(/(sass-loader|resolve-url-loader: CSS error)/)\n ) {\n // dispose of unhelpful stack trace following missing sass module\n lines = []\n }\n\n if (!verbose) {\n message = lines.join('\\n')\n // Internal stacks are generally useless so we strip them... with the\n // exception of stacks containing `webpack:` because they're normally\n // from user code generated by Webpack. For more information see\n // https://github.com/facebook/create-react-app/pull/1050\n message = message.replace(\n /^\\s*at\\s((?!webpack:).)*:\\d+:\\d+[\\s)]*(\\n|$)/gm,\n ''\n ) // at ... ...:x:y\n message = message.replace(/^\\s*at\\s<anonymous>(\\n|$)/gm, '') // at <anonymous>\n\n message = message.replace(\n /File was processed with these loaders:\\n(.+[\\\\/](next[\\\\/]dist[\\\\/].+|@next[\\\\/]react-refresh-utils[\\\\/]loader)\\.js\\n)*You may need an additional loader to handle the result of these loaders.\\n/g,\n ''\n )\n\n lines = message.split('\\n')\n }\n\n // Remove duplicated newlines\n lines = (lines as string[]).filter(\n (line, index, arr) =>\n index === 0 || line.trim() !== '' || line.trim() !== arr[index - 1].trim()\n )\n\n // Reassemble the message\n message = lines.join('\\n')\n return message.trim()\n}\n\nexport default function formatWebpackMessages(json: any, verbose?: boolean) {\n const formattedErrors = json.errors.map((message: any) => {\n const isUnknownNextFontError = message.message.includes(\n 'An error occurred in `next/font`.'\n )\n return formatMessage(message, isUnknownNextFontError || verbose)\n })\n const formattedWarnings = json.warnings.map((message: any) => {\n return formatMessage(message, verbose)\n })\n\n // Reorder errors to put the most relevant ones first.\n let reactServerComponentsError = -1\n\n for (let i = 0; i < formattedErrors.length; i++) {\n const error = formattedErrors[i]\n if (error.includes('ReactServerComponentsError')) {\n reactServerComponentsError = i\n break\n }\n }\n\n // Move the reactServerComponentsError to the top if it exists\n if (reactServerComponentsError !== -1) {\n const error = formattedErrors.splice(reactServerComponentsError, 1)\n formattedErrors.unshift(error[0])\n }\n\n const result = {\n ...json,\n errors: formattedErrors,\n warnings: formattedWarnings,\n }\n if (!verbose && result.errors.some(isLikelyASyntaxError)) {\n // If there are any syntax errors, show just them.\n result.errors = result.errors.filter(isLikelyASyntaxError)\n result.warnings = []\n }\n return result\n}\n"],"names":["formatWebpackMessages","friendlySyntaxErrorLabel","WEBPACK_BREAKING_CHANGE_POLYFILLS","isLikelyASyntaxError","message","stripAnsi","includes","hadMissingSassError","formatMessage","verbose","importTraceNote","filteredModuleTrace","moduleTrace","filter","trace","test","originName","body","breakingChangeIndex","indexOf","slice","process","env","NEXT_RSPACK","moduleName","file","moduleIdentifier","parts","split","length","details","map","join","stack","lines","line","parsingError","exec","errorLine","errorColumn","errorMessage","replace","trim","splice","startsWith","match","firstLine","index","arr","json","formattedErrors","errors","isUnknownNextFontError","formattedWarnings","warnings","reactServerComponentsError","i","error","unshift","result","some"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 1375, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/errors/constants.ts"],"sourcesContent":["export const MISSING_ROOT_TAGS_ERROR = 'NEXT_MISSING_ROOT_TAGS'\n"],"names":["MISSING_ROOT_TAGS_ERROR"],"mappings":";;;+BAAaA,2BAAAA;;;eAAAA;;;AAAN,MAAMA,0BAA0B","ignoreList":[0]}}, - {"offset": {"line": 1396, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/shared/lib/normalized-asset-prefix.ts"],"sourcesContent":["export function normalizedAssetPrefix(assetPrefix: string | undefined): string {\n // remove all leading slashes and trailing slashes\n const escapedAssetPrefix = assetPrefix?.replace(/^\\/+|\\/+$/g, '') || false\n\n // if an assetPrefix was '/', we return empty string\n // because it could be an unnecessary trailing slash\n if (!escapedAssetPrefix) {\n return ''\n }\n\n if (URL.canParse(escapedAssetPrefix)) {\n const url = new URL(escapedAssetPrefix).toString()\n return url.endsWith('/') ? url.slice(0, -1) : url\n }\n\n // assuming assetPrefix here is a pathname-style,\n // restore the leading slash\n return `/${escapedAssetPrefix}`\n}\n"],"names":["normalizedAssetPrefix","assetPrefix","escapedAssetPrefix","replace","URL","canParse","url","toString","endsWith","slice"],"mappings":";;;+BAAgBA,yBAAAA;;;eAAAA;;;AAAT,SAASA,sBAAsBC,WAA+B;IACnE,kDAAkD;IAClD,MAAMC,qBAAqBD,aAAaE,QAAQ,cAAc,OAAO;IAErE,oDAAoD;IACpD,oDAAoD;IACpD,IAAI,CAACD,oBAAoB;QACvB,OAAO;IACT;IAEA,IAAIE,IAAIC,QAAQ,CAACH,qBAAqB;QACpC,MAAMI,MAAM,IAAIF,IAAIF,oBAAoBK,QAAQ;QAChD,OAAOD,IAAIE,QAAQ,CAAC,OAAOF,IAAIG,KAAK,CAAC,GAAG,CAAC,KAAKH;IAChD;IAEA,iDAAiD;IACjD,4BAA4B;IAC5B,OAAO,CAAC,CAAC,EAAEJ,oBAAoB;AACjC","ignoreList":[0]}}, - {"offset": {"line": 1425, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/is-error.ts"],"sourcesContent":["import { isPlainObject } from '../shared/lib/is-plain-object'\n\n// We allow some additional attached properties for Next.js errors\nexport interface NextError extends Error {\n type?: string\n page?: string\n code?: string | number\n cancelled?: boolean\n digest?: number\n}\n\n/**\n * This is a safe stringify function that handles circular references.\n * We're using a simpler version here to avoid introducing\n * the dependency `safe-stable-stringify` into production bundle.\n *\n * This helper is used both in development and production.\n */\nfunction safeStringifyLite(obj: any) {\n const seen = new WeakSet()\n\n return JSON.stringify(obj, (_key, value) => {\n // If value is an object and already seen, replace with \"[Circular]\"\n if (typeof value === 'object' && value !== null) {\n if (seen.has(value)) {\n return '[Circular]'\n }\n seen.add(value)\n }\n return value\n })\n}\n\n/**\n * Checks whether the given value is a NextError.\n * This can be used to print a more detailed error message with properties like `code` & `digest`.\n */\nexport default function isError(err: unknown): err is NextError {\n return (\n typeof err === 'object' && err !== null && 'name' in err && 'message' in err\n )\n}\n\nexport function getProperError(err: unknown): Error {\n if (isError(err)) {\n return err\n }\n\n if (process.env.NODE_ENV === 'development') {\n // provide better error for case where `throw undefined`\n // is called in development\n if (typeof err === 'undefined') {\n return new Error(\n 'An undefined error was thrown, ' +\n 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'\n )\n }\n\n if (err === null) {\n return new Error(\n 'A null error was thrown, ' +\n 'see here for more info: https://nextjs.org/docs/messages/threw-undefined'\n )\n }\n }\n\n return new Error(isPlainObject(err) ? safeStringifyLite(err) : err + '')\n}\n"],"names":["isError","getProperError","safeStringifyLite","obj","seen","WeakSet","JSON","stringify","_key","value","has","add","err","process","env","NODE_ENV","Error","isPlainObject"],"mappings":"AAgDMa,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;;;;;;;;;;;;IAf/B;;;CAGC,GACD,OAIC,EAAA;eAJuBf;;IAMRC,cAAc,EAAA;eAAdA;;;+BA3Cc;AAW9B;;;;;;CAMC,GACD,SAASC,kBAAkBC,GAAQ;IACjC,MAAMC,OAAO,IAAIC;IAEjB,OAAOC,KAAKC,SAAS,CAACJ,KAAK,CAACK,MAAMC;QAChC,oEAAoE;QACpE,IAAI,OAAOA,UAAU,YAAYA,UAAU,MAAM;YAC/C,IAAIL,KAAKM,GAAG,CAACD,QAAQ;gBACnB,OAAO;YACT;YACAL,KAAKO,GAAG,CAACF;QACX;QACA,OAAOA;IACT;AACF;AAMe,SAAST,QAAQY,GAAY;IAC1C,OACE,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,UAAUA,OAAO,aAAaA;AAE7E;AAEO,SAASX,eAAeW,GAAY;IACzC,IAAIZ,QAAQY,MAAM;QAChB,OAAOA;IACT;IAEA,wCAA4C;QAC1C,wDAAwD;QACxD,2BAA2B;QAC3B,IAAI,OAAOA,QAAQ,aAAa;YAC9B,OAAO,OAAA,cAGN,CAHM,IAAII,MACT,oCACE,6EAFG,qBAAA;uBAAA;4BAAA;8BAAA;YAGP;QACF;QAEA,IAAIJ,QAAQ,MAAM;YAChB,OAAO,OAAA,cAGN,CAHM,IAAII,MACT,8BACE,6EAFG,qBAAA;uBAAA;4BAAA;8BAAA;YAGP;QACF;IACF;IAEA,OAAO,OAAA,cAAiE,CAAjE,IAAIA,MAAMC,CAAAA,GAAAA,eAAAA,aAAa,EAACL,OAAOV,kBAAkBU,OAAOA,MAAM,KAA9D,qBAAA;eAAA;oBAAA;sBAAA;IAAgE;AACzE","ignoreList":[0]}}, - {"offset": {"line": 1506, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/require-instrumentation-client.ts"],"sourcesContent":["/**\n * This module imports the client instrumentation hook from the project root.\n *\n * The `private-next-instrumentation-client` module is automatically aliased to\n * the `instrumentation-client.ts` file in the project root by webpack or turbopack.\n */\nif (process.env.NODE_ENV === 'development') {\n const measureName = 'Client Instrumentation Hook'\n const startTime = performance.now()\n // eslint-disable-next-line @next/internal/typechecked-require -- Not a module.\n module.exports = require('private-next-instrumentation-client')\n const endTime = performance.now()\n const duration = endTime - startTime\n\n // Using 16ms threshold as it represents one frame (1000ms/60fps)\n // This helps identify if the instrumentation hook initialization\n // could potentially cause frame drops during development.\n const THRESHOLD = 16\n if (duration > THRESHOLD) {\n console.log(\n `[${measureName}] Slow execution detected: ${duration.toFixed(0)}ms (Note: Code download overhead is not included in this measurement)`\n )\n }\n} else {\n // eslint-disable-next-line @next/internal/typechecked-require -- Not a module.\n module.exports = require('private-next-instrumentation-client')\n}\n"],"names":["process","env","NODE_ENV","measureName","startTime","performance","now","module","exports","require","endTime","duration","THRESHOLD","console","log","toFixed"],"mappings":"AAMIA,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAN7B;;;;;CAKC,GAAA;AACD,wCAA4C;IAC1C,MAAMC,cAAc;IACpB,MAAMC,YAAYC,YAAYC,GAAG;IACjC,+EAA+E;IAC/EC,OAAOC,OAAO,GAAGC,QAAQ;IACzB,MAAMC,UAAUL,YAAYC,GAAG;IAC/B,MAAMK,WAAWD,UAAUN;IAE3B,iEAAiE;IACjE,iEAAiE;IACjE,0DAA0D;IAC1D,MAAMQ,YAAY;IAClB,IAAID,WAAWC,WAAW;QACxBC,QAAQC,GAAG,CACT,CAAC,CAAC,EAAEX,YAAY,2BAA2B,EAAEQ,SAASI,OAAO,CAAC,GAAG,qEAAqE,CAAC;IAE3I;AACF,OAAO","ignoreList":[0]}}, - {"offset": {"line": 1534, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-constants.tsx"],"sourcesContent":["export const METADATA_BOUNDARY_NAME = '__next_metadata_boundary__'\nexport const VIEWPORT_BOUNDARY_NAME = '__next_viewport_boundary__'\nexport const OUTLET_BOUNDARY_NAME = '__next_outlet_boundary__'\nexport const ROOT_LAYOUT_BOUNDARY_NAME = '__next_root_layout_boundary__'\n"],"names":["METADATA_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","VIEWPORT_BOUNDARY_NAME"],"mappings":";;;;;;;;;;;;;;;;IAAaA,sBAAsB,EAAA;eAAtBA;;IAEAC,oBAAoB,EAAA;eAApBA;;IACAC,yBAAyB,EAAA;eAAzBA;;IAFAC,sBAAsB,EAAA;eAAtBA;;;AADN,MAAMH,yBAAyB;AAC/B,MAAMG,yBAAyB;AAC/B,MAAMF,uBAAuB;AAC7B,MAAMC,4BAA4B","ignoreList":[0]}}, - {"offset": {"line": 1571, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/scheduler.ts"],"sourcesContent":["export type ScheduledFn<T = void> = () => T | PromiseLike<T>\nexport type SchedulerFn<T = void> = (cb: ScheduledFn<T>) => void\n\n/**\n * Schedules a function to be called on the next tick after the other promises\n * have been resolved.\n *\n * @param cb the function to schedule\n */\nexport const scheduleOnNextTick = (cb: ScheduledFn<void>) => {\n // We use Promise.resolve().then() here so that the operation is scheduled at\n // the end of the promise job queue, we then add it to the next process tick\n // to ensure it's evaluated afterwards.\n //\n // This was inspired by the implementation of the DataLoader interface: https://github.com/graphql/dataloader/blob/d336bd15282664e0be4b4a657cb796f09bafbc6b/src/index.js#L213-L255\n //\n Promise.resolve().then(() => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n process.nextTick(cb)\n }\n })\n}\n\n/**\n * Schedules a function to be called using `setImmediate` or `setTimeout` if\n * `setImmediate` is not available (like in the Edge runtime).\n *\n * @param cb the function to schedule\n */\nexport const scheduleImmediate = (cb: ScheduledFn<void>): void => {\n if (process.env.NEXT_RUNTIME === 'edge') {\n setTimeout(cb, 0)\n } else {\n setImmediate(cb)\n }\n}\n\n/**\n * returns a promise than resolves in a future task. There is no guarantee that the task it resolves in\n * will be the next task but if you await it you can at least be sure that the current task is over and\n * most usefully that the entire microtask queue of the current task has been emptied.\n */\nexport function atLeastOneTask() {\n return new Promise<void>((resolve) => scheduleImmediate(resolve))\n}\n\n/**\n * This utility function is extracted to make it easier to find places where we are doing\n * specific timing tricks to try to schedule work after React has rendered. This is especially\n * important at the moment because Next.js uses the edge builds of React which use setTimeout to\n * schedule work when you might expect that something like setImmediate would do the trick.\n *\n * Long term we should switch to the node versions of React rendering when possible and then\n * update this to use setImmediate rather than setTimeout\n */\nexport function waitAtLeastOneReactRenderTask(): Promise<void> {\n if (process.env.NEXT_RUNTIME === 'edge') {\n return new Promise((r) => setTimeout(r, 0))\n } else {\n return new Promise((r) => setImmediate(r))\n }\n}\n"],"names":["atLeastOneTask","scheduleImmediate","scheduleOnNextTick","waitAtLeastOneReactRenderTask","cb","Promise","resolve","then","process","env","NEXT_RUNTIME","setTimeout","nextTick","setImmediate","r"],"mappings":"AAiBQQ,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;;;;;;;;;;;;;;;;;IA2B7BV,cAAc,EAAA;eAAdA;;IAbHC,iBAAiB,EAAA;eAAjBA;;IAtBAC,kBAAkB,EAAA;eAAlBA;;IAgDGC,6BAA6B,EAAA;eAA7BA;;;AAhDT,MAAMD,qBAAqB,CAACE;IACjC,6EAA6E;IAC7E,4EAA4E;IAC5E,uCAAuC;IACvC,EAAE;IACF,kLAAkL;IAClL,EAAE;IACFC,QAAQC,OAAO,GAAGC,IAAI,CAAC;QACrB;;aAEO;YACLC,2KAAAA,CAAQI,QAAQ,CAACR;QACnB;IACF;AACF;AAQO,MAAMH,oBAAoB,CAACG;IAChC,IAAII,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACLG,aAAaT;IACf;AACF;AAOO,SAASJ;IACd,OAAO,IAAIK,QAAc,CAACC,UAAYL,kBAAkBK;AAC1D;AAWO,SAASH;IACd,IAAIK,QAAQC,GAAG,CAACC,YAAY,KAAK,QAAQ;;SAElC;QACL,OAAO,IAAIL,QAAQ,CAACS,IAAMD,aAAaC;IACzC;AACF","ignoreList":[0]}}, - {"offset": {"line": 1638, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/framework/boundary-components.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from './boundary-constants'\n\n// We use a namespace object to allow us to recover the name of the function\n// at runtime even when production bundling/minification is used.\nconst NameSpace = {\n [METADATA_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [VIEWPORT_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [OUTLET_BOUNDARY_NAME]: function ({ children }: { children: ReactNode }) {\n return children\n },\n [ROOT_LAYOUT_BOUNDARY_NAME]: function ({\n children,\n }: {\n children: ReactNode\n }) {\n return children\n },\n}\n\nexport const MetadataBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[METADATA_BOUNDARY_NAME.slice(0) as typeof METADATA_BOUNDARY_NAME]\n\nexport const ViewportBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[VIEWPORT_BOUNDARY_NAME.slice(0) as typeof VIEWPORT_BOUNDARY_NAME]\n\nexport const OutletBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[OUTLET_BOUNDARY_NAME.slice(0) as typeof OUTLET_BOUNDARY_NAME]\n\nexport const RootLayoutBoundary =\n // We use slice(0) to trick the bundler into not inlining/minifying the function\n // so it retains the name inferred from the namespace object\n NameSpace[\n ROOT_LAYOUT_BOUNDARY_NAME.slice(0) as typeof ROOT_LAYOUT_BOUNDARY_NAME\n ]\n"],"names":["MetadataBoundary","OutletBoundary","RootLayoutBoundary","ViewportBoundary","NameSpace","METADATA_BOUNDARY_NAME","children","VIEWPORT_BOUNDARY_NAME","OUTLET_BOUNDARY_NAME","ROOT_LAYOUT_BOUNDARY_NAME","slice"],"mappings":";;;;;;;;;;;;;;;;IA+BaA,gBAAgB,EAAA;eAAhBA;;IAUAC,cAAc,EAAA;eAAdA;;IAKAC,kBAAkB,EAAA;eAAlBA;;IAVAC,gBAAgB,EAAA;eAAhBA;;;mCA5BN;AAEP,4EAA4E;AAC5E,iEAAiE;AACjE,MAAMC,YAAY;IAChB,CAACC,mBAAAA,sBAAsB,CAAC,EAAE,SAAU,EAAEC,QAAQ,EAA2B;QACvE,OAAOA;IACT;IACA,CAACC,mBAAAA,sBAAsB,CAAC,EAAE,SAAU,EAAED,QAAQ,EAA2B;QACvE,OAAOA;IACT;IACA,CAACE,mBAAAA,oBAAoB,CAAC,EAAE,SAAU,EAAEF,QAAQ,EAA2B;QACrE,OAAOA;IACT;IACA,CAACG,mBAAAA,yBAAyB,CAAC,EAAE,SAAU,EACrCH,QAAQ,EAGT;QACC,OAAOA;IACT;AACF;AAEO,MAAMN,mBACX,AACA,4DAA4D,oBADoB;AAEhFI,SAAS,CAACC,mBAAAA,sBAAsB,CAACK,KAAK,CAAC,GAAoC;AAEtE,MAAMP,mBACX,AACA,4DAA4D,oBADoB;AAEhFC,SAAS,CAACG,mBAAAA,sBAAsB,CAACG,KAAK,CAAC,GAAoC;AAEtE,MAAMT,iBACX,AACA,4DAA4D,oBADoB;AAEhFG,SAAS,CAACI,mBAAAA,oBAAoB,CAACE,KAAK,CAAC,GAAkC;AAElE,MAAMR,qBACX,AACA,4DAA4D,oBADoB;AAEhFE,SAAS,CACPK,mBAAAA,yBAAyB,CAACC,KAAK,CAAC,GACjC","ignoreList":[0]}}, - {"offset": {"line": 1696, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/lib/constants.ts"],"sourcesContent":["import type { ServerRuntime } from '../types'\n\nexport const TEXT_PLAIN_CONTENT_TYPE_HEADER = 'text/plain'\nexport const HTML_CONTENT_TYPE_HEADER = 'text/html; charset=utf-8'\nexport const JSON_CONTENT_TYPE_HEADER = 'application/json; charset=utf-8'\nexport const NEXT_QUERY_PARAM_PREFIX = 'nxtP'\nexport const NEXT_INTERCEPTION_MARKER_PREFIX = 'nxtI'\n\nexport const MATCHED_PATH_HEADER = 'x-matched-path'\nexport const PRERENDER_REVALIDATE_HEADER = 'x-prerender-revalidate'\nexport const PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER =\n 'x-prerender-revalidate-if-generated'\n\nexport const RSC_SEGMENTS_DIR_SUFFIX = '.segments'\nexport const RSC_SEGMENT_SUFFIX = '.segment.rsc'\nexport const RSC_SUFFIX = '.rsc'\nexport const ACTION_SUFFIX = '.action'\nexport const NEXT_DATA_SUFFIX = '.json'\nexport const NEXT_META_SUFFIX = '.meta'\nexport const NEXT_BODY_SUFFIX = '.body'\n\nexport const NEXT_CACHE_TAGS_HEADER = 'x-next-cache-tags'\nexport const NEXT_CACHE_REVALIDATED_TAGS_HEADER = 'x-next-revalidated-tags'\nexport const NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER =\n 'x-next-revalidate-tag-token'\n\nexport const NEXT_RESUME_HEADER = 'next-resume'\n\n// if these change make sure we update the related\n// documentation as well\nexport const NEXT_CACHE_TAG_MAX_ITEMS = 128\nexport const NEXT_CACHE_TAG_MAX_LENGTH = 256\nexport const NEXT_CACHE_SOFT_TAG_MAX_LENGTH = 1024\nexport const NEXT_CACHE_IMPLICIT_TAG_ID = '_N_T_'\n\n// in seconds\nexport const CACHE_ONE_YEAR = 31536000\n\n// in seconds, represents revalidate=false. I.e. never revaliate.\n// We use this value since it can be represented as a V8 SMI for optimal performance.\n// It can also be serialized as JSON if it ever leaks accidentally as an actual value.\nexport const INFINITE_CACHE = 0xfffffffe\n\n// Patterns to detect middleware files\nexport const MIDDLEWARE_FILENAME = 'middleware'\nexport const MIDDLEWARE_LOCATION_REGEXP = `(?:src/)?${MIDDLEWARE_FILENAME}`\n\n// Patterns to detect proxy files (replacement for middleware)\nexport const PROXY_FILENAME = 'proxy'\nexport const PROXY_LOCATION_REGEXP = `(?:src/)?${PROXY_FILENAME}`\n\n// Pattern to detect instrumentation hooks file\nexport const INSTRUMENTATION_HOOK_FILENAME = 'instrumentation'\n\n// Because on Windows absolute paths in the generated code can break because of numbers, eg 1 in the path,\n// we have to use a private alias\nexport const PAGES_DIR_ALIAS = 'private-next-pages'\nexport const DOT_NEXT_ALIAS = 'private-dot-next'\nexport const ROOT_DIR_ALIAS = 'private-next-root-dir'\nexport const APP_DIR_ALIAS = 'private-next-app-dir'\nexport const RSC_MOD_REF_PROXY_ALIAS = 'private-next-rsc-mod-ref-proxy'\nexport const RSC_ACTION_VALIDATE_ALIAS = 'private-next-rsc-action-validate'\nexport const RSC_ACTION_PROXY_ALIAS = 'private-next-rsc-server-reference'\nexport const RSC_CACHE_WRAPPER_ALIAS = 'private-next-rsc-cache-wrapper'\nexport const RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS =\n 'private-next-rsc-track-dynamic-import'\nexport const RSC_ACTION_ENCRYPTION_ALIAS = 'private-next-rsc-action-encryption'\nexport const RSC_ACTION_CLIENT_WRAPPER_ALIAS =\n 'private-next-rsc-action-client-wrapper'\n\nexport const PUBLIC_DIR_MIDDLEWARE_CONFLICT = `You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict`\n\nexport const SSG_GET_INITIAL_PROPS_CONFLICT = `You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps`\n\nexport const SERVER_PROPS_GET_INIT_PROPS_CONFLICT = `You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.`\n\nexport const SERVER_PROPS_SSG_CONFLICT = `You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps`\n\nexport const STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR = `can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props`\n\nexport const SERVER_PROPS_EXPORT_ERROR = `pages with \\`getServerSideProps\\` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export`\n\nexport const GSP_NO_RETURNED_VALUE =\n 'Your `getStaticProps` function did not return an object. Did you forget to add a `return`?'\nexport const GSSP_NO_RETURNED_VALUE =\n 'Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?'\n\nexport const UNSTABLE_REVALIDATE_RENAME_ERROR =\n 'The `unstable_revalidate` property is available for general use.\\n' +\n 'Please use `revalidate` instead.'\n\nexport const GSSP_COMPONENT_MEMBER_ERROR = `can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member`\n\nexport const NON_STANDARD_NODE_ENV = `You are using a non-standard \"NODE_ENV\" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env`\n\nexport const SSG_FALLBACK_EXPORT_ERROR = `Pages with \\`fallback\\` enabled in \\`getStaticPaths\\` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export`\n\nexport const ESLINT_DEFAULT_DIRS = ['app', 'pages', 'components', 'lib', 'src']\n\nexport const SERVER_RUNTIME: Record<string, ServerRuntime> = {\n edge: 'edge',\n experimentalEdge: 'experimental-edge',\n nodejs: 'nodejs',\n}\n\nexport const WEB_SOCKET_MAX_RECONNECTIONS = 12\n\n/**\n * The names of the webpack layers. These layers are the primitives for the\n * webpack chunks.\n */\nconst WEBPACK_LAYERS_NAMES = {\n /**\n * The layer for the shared code between the client and server bundles.\n */\n shared: 'shared',\n /**\n * The layer for server-only runtime and picking up `react-server` export conditions.\n * Including app router RSC pages and app router custom routes and metadata routes.\n */\n reactServerComponents: 'rsc',\n /**\n * Server Side Rendering layer for app (ssr).\n */\n serverSideRendering: 'ssr',\n /**\n * The browser client bundle layer for actions.\n */\n actionBrowser: 'action-browser',\n /**\n * The Node.js bundle layer for the API routes.\n */\n apiNode: 'api-node',\n /**\n * The Edge Lite bundle layer for the API routes.\n */\n apiEdge: 'api-edge',\n /**\n * The layer for the middleware code.\n */\n middleware: 'middleware',\n /**\n * The layer for the instrumentation hooks.\n */\n instrument: 'instrument',\n /**\n * The layer for assets on the edge.\n */\n edgeAsset: 'edge-asset',\n /**\n * The browser client bundle layer for App directory.\n */\n appPagesBrowser: 'app-pages-browser',\n /**\n * The browser client bundle layer for Pages directory.\n */\n pagesDirBrowser: 'pages-dir-browser',\n /**\n * The Edge Lite bundle layer for Pages directory.\n */\n pagesDirEdge: 'pages-dir-edge',\n /**\n * The Node.js bundle layer for Pages directory.\n */\n pagesDirNode: 'pages-dir-node',\n} as const\n\nexport type WebpackLayerName =\n (typeof WEBPACK_LAYERS_NAMES)[keyof typeof WEBPACK_LAYERS_NAMES]\n\nconst WEBPACK_LAYERS = {\n ...WEBPACK_LAYERS_NAMES,\n GROUP: {\n builtinReact: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n serverOnly: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n neutralTarget: [\n // pages api\n WEBPACK_LAYERS_NAMES.apiNode,\n WEBPACK_LAYERS_NAMES.apiEdge,\n ],\n clientOnly: [\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n ],\n bundled: [\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.shared,\n WEBPACK_LAYERS_NAMES.instrument,\n WEBPACK_LAYERS_NAMES.middleware,\n ],\n appPages: [\n // app router pages and layouts\n WEBPACK_LAYERS_NAMES.reactServerComponents,\n WEBPACK_LAYERS_NAMES.serverSideRendering,\n WEBPACK_LAYERS_NAMES.appPagesBrowser,\n WEBPACK_LAYERS_NAMES.actionBrowser,\n ],\n },\n}\n\nconst WEBPACK_RESOURCE_QUERIES = {\n edgeSSREntry: '__next_edge_ssr_entry__',\n metadata: '__next_metadata__',\n metadataRoute: '__next_metadata_route__',\n metadataImageMeta: '__next_metadata_image_meta__',\n}\n\nexport { WEBPACK_LAYERS, WEBPACK_RESOURCE_QUERIES }\n"],"names":["ACTION_SUFFIX","APP_DIR_ALIAS","CACHE_ONE_YEAR","DOT_NEXT_ALIAS","ESLINT_DEFAULT_DIRS","GSP_NO_RETURNED_VALUE","GSSP_COMPONENT_MEMBER_ERROR","GSSP_NO_RETURNED_VALUE","HTML_CONTENT_TYPE_HEADER","INFINITE_CACHE","INSTRUMENTATION_HOOK_FILENAME","JSON_CONTENT_TYPE_HEADER","MATCHED_PATH_HEADER","MIDDLEWARE_FILENAME","MIDDLEWARE_LOCATION_REGEXP","NEXT_BODY_SUFFIX","NEXT_CACHE_IMPLICIT_TAG_ID","NEXT_CACHE_REVALIDATED_TAGS_HEADER","NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER","NEXT_CACHE_SOFT_TAG_MAX_LENGTH","NEXT_CACHE_TAGS_HEADER","NEXT_CACHE_TAG_MAX_ITEMS","NEXT_CACHE_TAG_MAX_LENGTH","NEXT_DATA_SUFFIX","NEXT_INTERCEPTION_MARKER_PREFIX","NEXT_META_SUFFIX","NEXT_QUERY_PARAM_PREFIX","NEXT_RESUME_HEADER","NON_STANDARD_NODE_ENV","PAGES_DIR_ALIAS","PRERENDER_REVALIDATE_HEADER","PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER","PROXY_FILENAME","PROXY_LOCATION_REGEXP","PUBLIC_DIR_MIDDLEWARE_CONFLICT","ROOT_DIR_ALIAS","RSC_ACTION_CLIENT_WRAPPER_ALIAS","RSC_ACTION_ENCRYPTION_ALIAS","RSC_ACTION_PROXY_ALIAS","RSC_ACTION_VALIDATE_ALIAS","RSC_CACHE_WRAPPER_ALIAS","RSC_DYNAMIC_IMPORT_WRAPPER_ALIAS","RSC_MOD_REF_PROXY_ALIAS","RSC_SEGMENTS_DIR_SUFFIX","RSC_SEGMENT_SUFFIX","RSC_SUFFIX","SERVER_PROPS_EXPORT_ERROR","SERVER_PROPS_GET_INIT_PROPS_CONFLICT","SERVER_PROPS_SSG_CONFLICT","SERVER_RUNTIME","SSG_FALLBACK_EXPORT_ERROR","SSG_GET_INITIAL_PROPS_CONFLICT","STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR","TEXT_PLAIN_CONTENT_TYPE_HEADER","UNSTABLE_REVALIDATE_RENAME_ERROR","WEBPACK_LAYERS","WEBPACK_RESOURCE_QUERIES","WEB_SOCKET_MAX_RECONNECTIONS","edge","experimentalEdge","nodejs","WEBPACK_LAYERS_NAMES","shared","reactServerComponents","serverSideRendering","actionBrowser","apiNode","apiEdge","middleware","instrument","edgeAsset","appPagesBrowser","pagesDirBrowser","pagesDirEdge","pagesDirNode","GROUP","builtinReact","serverOnly","neutralTarget","clientOnly","bundled","appPages","edgeSSREntry","metadata","metadataRoute","metadataImageMeta"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2102, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/errors/stitched-error.ts"],"sourcesContent":["import React from 'react'\nimport isError from '../../../../lib/is-error'\n\nconst ownerStacks = new WeakMap<Error, string | null>()\n\nexport function getOwnerStack(error: Error): string | null | undefined {\n return ownerStacks.get(error)\n}\nexport function setOwnerStack(error: Error, stack: string | null) {\n ownerStacks.set(error, stack)\n}\n\nexport function coerceError(value: unknown): Error {\n return isError(value) ? value : new Error('' + value)\n}\n\nexport function setOwnerStackIfAvailable(error: Error): void {\n // React 18 and prod does not have `captureOwnerStack`\n if ('captureOwnerStack' in React) {\n setOwnerStack(error, React.captureOwnerStack())\n }\n}\n\nexport function decorateDevError(thrownValue: unknown) {\n const error = coerceError(thrownValue)\n setOwnerStackIfAvailable(error)\n return error\n}\n"],"names":["coerceError","decorateDevError","getOwnerStack","setOwnerStack","setOwnerStackIfAvailable","ownerStacks","WeakMap","error","get","stack","set","value","isError","Error","React","captureOwnerStack","thrownValue"],"mappings":";;;;;;;;;;;;;;;;;IAYgBA,WAAW,EAAA;eAAXA;;IAWAC,gBAAgB,EAAA;eAAhBA;;IAlBAC,aAAa,EAAA;eAAbA;;IAGAC,aAAa,EAAA;eAAbA;;IAQAC,wBAAwB,EAAA;eAAxBA;;;;gEAhBE;kEACE;AAEpB,MAAMC,cAAc,IAAIC;AAEjB,SAASJ,cAAcK,KAAY;IACxC,OAAOF,YAAYG,GAAG,CAACD;AACzB;AACO,SAASJ,cAAcI,KAAY,EAAEE,KAAoB;IAC9DJ,YAAYK,GAAG,CAACH,OAAOE;AACzB;AAEO,SAAST,YAAYW,KAAc;IACxC,OAAOC,CAAAA,GAAAA,SAAAA,OAAO,EAACD,SAASA,QAAQ,OAAA,cAAqB,CAArB,IAAIE,MAAM,KAAKF,QAAf,qBAAA;eAAA;oBAAA;sBAAA;IAAoB;AACtD;AAEO,SAASP,yBAAyBG,KAAY;IACnD,sDAAsD;IACtD,IAAI,uBAAuBO,OAAAA,OAAK,EAAE;QAChCX,cAAcI,OAAOO,OAAAA,OAAK,CAACC,iBAAiB;IAC9C;AACF;AAEO,SAASd,iBAAiBe,WAAoB;IACnD,MAAMT,QAAQP,YAAYgB;IAC1BZ,yBAAyBG;IACzB,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 2174, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/shared/console-error.ts"],"sourcesContent":["// To distinguish from React error.digest, we use a different symbol here to determine if the error is from console.error or unhandled promise rejection.\nconst digestSym = Symbol.for('next.console.error.digest')\n\n// Represent non Error shape unhandled promise rejections or console.error errors.\n// Those errors will be captured and displayed in Error Overlay.\ntype ConsoleError = Error & {\n [digestSym]: 'NEXT_CONSOLE_ERROR'\n environmentName: string\n}\n\nexport function createConsoleError(\n message: string | Error,\n environmentName?: string | null\n): ConsoleError {\n const error = (\n typeof message === 'string' ? new Error(message) : message\n ) as ConsoleError\n error[digestSym] = 'NEXT_CONSOLE_ERROR'\n\n if (environmentName && !error.environmentName) {\n error.environmentName = environmentName\n }\n\n return error\n}\n\nexport const isConsoleError = (error: any): error is ConsoleError => {\n return error && error[digestSym] === 'NEXT_CONSOLE_ERROR'\n}\n"],"names":["createConsoleError","isConsoleError","digestSym","Symbol","for","message","environmentName","error","Error"],"mappings":"AAAA,yJAAyJ;;;;;;;;;;;;;;;IAUzIA,kBAAkB,EAAA;eAAlBA;;IAgBHC,cAAc,EAAA;eAAdA;;;AAzBb,MAAMC,YAAYC,OAAOC,GAAG,CAAC;AAStB,SAASJ,mBACdK,OAAuB,EACvBC,eAA+B;IAE/B,MAAMC,QACJ,OAAOF,YAAY,WAAW,OAAA,cAAkB,CAAlB,IAAIG,MAAMH,UAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAiB,KAAIA;IAErDE,KAAK,CAACL,UAAU,GAAG;IAEnB,IAAII,mBAAmB,CAACC,MAAMD,eAAe,EAAE;QAC7CC,MAAMD,eAAe,GAAGA;IAC1B;IAEA,OAAOC;AACT;AAEO,MAAMN,iBAAiB,CAACM;IAC7B,OAAOA,SAASA,KAAK,CAACL,UAAU,KAAK;AACvC","ignoreList":[0]}}, - {"offset": {"line": 2223, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/terminal-logging-config.ts"],"sourcesContent":["export function getTerminalLoggingConfig():\n | false\n | boolean\n | {\n depthLimit?: number\n edgeLimit?: number\n showSourceLocation?: boolean\n } {\n try {\n return JSON.parse(\n process.env.__NEXT_BROWSER_DEBUG_INFO_IN_TERMINAL || 'false'\n )\n } catch {\n return false\n }\n}\n\nexport function getIsTerminalLoggingEnabled(): boolean {\n const config = getTerminalLoggingConfig()\n return Boolean(config)\n}\n"],"names":["getIsTerminalLoggingEnabled","getTerminalLoggingConfig","JSON","parse","process","env","__NEXT_BROWSER_DEBUG_INFO_IN_TERMINAL","config","Boolean"],"mappings":"AAUMI,QAAQC,GAAG,CAACC,qCAAqC;;;;;;;;;;;;;;;;IAOvCN,2BAA2B,EAAA;eAA3BA;;IAjBAC,wBAAwB,EAAA;eAAxBA;;;AAAT,SAASA;IAQd,IAAI;QACF,OAAOC,KAAKC,KAAK,8CACsC;IAEzD,EAAE,OAAM;QACN,OAAO;IACT;AACF;AAEO,SAASH;IACd,MAAMO,SAASN;IACf,OAAOO,QAAQD;AACjB","ignoreList":[0]}}, - {"offset": {"line": 2268, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/shared/forward-logs-shared.ts"],"sourcesContent":["export type LogMethod =\n | 'log'\n | 'info'\n | 'debug'\n | 'table'\n | 'error'\n | 'assert'\n | 'dir'\n | 'dirxml'\n | 'group'\n | 'groupCollapsed'\n | 'groupEnd'\n | 'trace'\n | 'warn'\n\nexport type ConsoleEntry<T> = {\n kind: 'console'\n method: LogMethod\n consoleMethodStack: string | null\n args: Array<\n | {\n kind: 'arg'\n data: T\n }\n | {\n kind: 'formatted-error-arg'\n prefix: string\n stack: string\n }\n >\n}\n\nexport type ConsoleErrorEntry<T> = {\n kind: 'any-logged-error'\n method: 'error'\n consoleErrorStack: string\n args: Array<\n | {\n kind: 'arg'\n data: T\n isRejectionMessage?: boolean\n }\n | {\n kind: 'formatted-error-arg'\n prefix: string\n stack: string | null\n }\n >\n}\n\nexport type FormattedErrorEntry = {\n kind: 'formatted-error'\n prefix: string\n stack: string\n method: 'error'\n}\n\nexport type ClientLogEntry =\n | ConsoleEntry<unknown>\n | ConsoleErrorEntry<unknown>\n | FormattedErrorEntry\nexport type ServerLogEntry =\n | ConsoleEntry<string>\n | ConsoleErrorEntry<string>\n | FormattedErrorEntry\n\nexport const UNDEFINED_MARKER = '__next_tagged_undefined'\n\n// Based on https://github.com/facebook/react/blob/28dc0776be2e1370fe217549d32aee2519f0cf05/packages/react-server/src/ReactFlightServer.js#L248\nexport function patchConsoleMethod<T extends keyof Console>(\n methodName: T,\n wrapper: (\n methodName: T,\n ...args: Console[T] extends (...args: infer P) => any ? P : never[]\n ) => void\n): () => void {\n const descriptor = Object.getOwnPropertyDescriptor(console, methodName)\n if (\n descriptor &&\n (descriptor.configurable || descriptor.writable) &&\n typeof descriptor.value === 'function'\n ) {\n const originalMethod = descriptor.value as Console[T] extends (\n ...args: any[]\n ) => any\n ? Console[T]\n : never\n const originalName = Object.getOwnPropertyDescriptor(originalMethod, 'name')\n const wrapperMethod = function (\n this: typeof console,\n ...args: Console[T] extends (...args: infer P) => any ? P : never[]\n ) {\n wrapper(methodName, ...args)\n\n originalMethod.apply(this, args)\n }\n if (originalName) {\n Object.defineProperty(wrapperMethod, 'name', originalName)\n }\n Object.defineProperty(console, methodName, {\n value: wrapperMethod,\n })\n\n return () => {\n Object.defineProperty(console, methodName, {\n value: originalMethod,\n writable: descriptor.writable,\n configurable: descriptor.configurable,\n })\n }\n }\n\n return () => {}\n}\n"],"names":["UNDEFINED_MARKER","patchConsoleMethod","methodName","wrapper","descriptor","Object","getOwnPropertyDescriptor","console","configurable","writable","value","originalMethod","originalName","wrapperMethod","args","apply","defineProperty"],"mappings":";;;;;;;;;;;;;;IAkEaA,gBAAgB,EAAA;eAAhBA;;IAGGC,kBAAkB,EAAA;eAAlBA;;;AAHT,MAAMD,mBAAmB;AAGzB,SAASC,mBACdC,UAAa,EACbC,OAGS;IAET,MAAMC,aAAaC,OAAOC,wBAAwB,CAACC,SAASL;IAC5D,IACEE,cACCA,CAAAA,WAAWI,YAAY,IAAIJ,WAAWK,QAAO,KAC9C,OAAOL,WAAWM,KAAK,KAAK,YAC5B;QACA,MAAMC,iBAAiBP,WAAWM,KAAK;QAKvC,MAAME,eAAeP,OAAOC,wBAAwB,CAACK,gBAAgB;QACrE,MAAME,gBAAgB,SAEpB,GAAGC,IAAgE;YAEnEX,QAAQD,eAAeY;YAEvBH,eAAeI,KAAK,CAAC,IAAI,EAAED;QAC7B;QACA,IAAIF,cAAc;YAChBP,OAAOW,cAAc,CAACH,eAAe,QAAQD;QAC/C;QACAP,OAAOW,cAAc,CAACT,SAASL,YAAY;YACzCQ,OAAOG;QACT;QAEA,OAAO;YACLR,OAAOW,cAAc,CAACT,SAASL,YAAY;gBACzCQ,OAAOC;gBACPF,UAAUL,WAAWK,QAAQ;gBAC7BD,cAAcJ,WAAWI,YAAY;YACvC;QACF;IACF;IAEA,OAAO,KAAO;AAChB","ignoreList":[0]}}, - {"offset": {"line": 2326, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/forward-logs-utils.ts"],"sourcesContent":["import { configure } from 'next/dist/compiled/safe-stable-stringify'\nimport { getTerminalLoggingConfig } from './terminal-logging-config'\nimport { UNDEFINED_MARKER } from '../../shared/forward-logs-shared'\n\nconst terminalLoggingConfig = getTerminalLoggingConfig()\n\nconst PROMISE_MARKER = 'Promise {}'\nconst UNAVAILABLE_MARKER = '[Unable to view]'\n\nconst maximumDepth =\n typeof terminalLoggingConfig === 'object' && terminalLoggingConfig.depthLimit\n ? terminalLoggingConfig.depthLimit\n : 5\nconst maximumBreadth =\n typeof terminalLoggingConfig === 'object' && terminalLoggingConfig.edgeLimit\n ? terminalLoggingConfig.edgeLimit\n : 100\n\nexport const safeStringifyWithDepth = configure({\n maximumDepth,\n maximumBreadth,\n})\n\n/**\n * allows us to:\n * - revive the undefined log in the server as it would look in the browser\n * - not read/attempt to serialize promises (next will console error if you do that, and will cause this program to infinitely recurse)\n * - if we read a proxy that throws (no way to detect if something is a proxy), explain to the user we can't read this data\n */\nexport function preLogSerializationClone<T>(\n value: T,\n seen = new WeakMap()\n): any {\n if (value === undefined) return UNDEFINED_MARKER\n if (value === null || typeof value !== 'object') return value\n if (seen.has(value as object)) return seen.get(value as object)\n\n try {\n Object.keys(value as object)\n } catch {\n return UNAVAILABLE_MARKER\n }\n\n try {\n if (typeof (value as any).then === 'function') return PROMISE_MARKER\n } catch {\n return UNAVAILABLE_MARKER\n }\n\n if (Array.isArray(value)) {\n const out: any[] = []\n seen.set(value, out)\n for (const item of value) {\n try {\n out.push(preLogSerializationClone(item, seen))\n } catch {\n out.push(UNAVAILABLE_MARKER)\n }\n }\n return out\n }\n\n const proto = Object.getPrototypeOf(value)\n if (proto === Object.prototype || proto === null) {\n const out: Record<string, unknown> = {}\n seen.set(value as object, out)\n for (const key of Object.keys(value as object)) {\n try {\n out[key] = preLogSerializationClone((value as any)[key], seen)\n } catch {\n out[key] = UNAVAILABLE_MARKER\n }\n }\n return out\n }\n\n return Object.prototype.toString.call(value)\n}\n\n// only safe if passed safeClone data\nexport const logStringify = (data: unknown): string => {\n try {\n const result = safeStringifyWithDepth(data)\n return result ?? `\"${UNAVAILABLE_MARKER}\"`\n } catch {\n return `\"${UNAVAILABLE_MARKER}\"`\n }\n}\n"],"names":["logStringify","preLogSerializationClone","safeStringifyWithDepth","terminalLoggingConfig","getTerminalLoggingConfig","PROMISE_MARKER","UNAVAILABLE_MARKER","maximumDepth","depthLimit","maximumBreadth","edgeLimit","configure","value","seen","WeakMap","undefined","UNDEFINED_MARKER","has","get","Object","keys","then","Array","isArray","out","set","item","push","proto","getPrototypeOf","prototype","key","toString","call","data","result"],"mappings":";;;;;;;;;;;;;;;IAgFaA,YAAY,EAAA;eAAZA;;IAnDGC,wBAAwB,EAAA;eAAxBA;;IAXHC,sBAAsB,EAAA;eAAtBA;;;qCAlBa;uCACe;mCACR;AAEjC,MAAMC,wBAAwBC,CAAAA,GAAAA,uBAAAA,wBAAwB;AAEtD,MAAMC,iBAAiB;AACvB,MAAMC,qBAAqB;AAE3B,MAAMC,eACJ,OAAOJ,0BAA0B,YAAYA,sBAAsBK,UAAU,GACzEL,sBAAsBK,UAAU,GAChC;AACN,MAAMC,iBACJ,OAAON,0BAA0B,YAAYA,sBAAsBO,SAAS,GACxEP,sBAAsBO,SAAS,GAC/B;AAEC,MAAMR,yBAAyBS,CAAAA,GAAAA,qBAAAA,SAAS,EAAC;IAC9CJ;IACAE;AACF;AAQO,SAASR,yBACdW,KAAQ,EACRC,OAAO,IAAIC,SAAS;IAEpB,IAAIF,UAAUG,WAAW,OAAOC,mBAAAA,gBAAgB;IAChD,IAAIJ,UAAU,QAAQ,OAAOA,UAAU,UAAU,OAAOA;IACxD,IAAIC,KAAKI,GAAG,CAACL,QAAkB,OAAOC,KAAKK,GAAG,CAACN;IAE/C,IAAI;QACFO,OAAOC,IAAI,CAACR;IACd,EAAE,OAAM;QACN,OAAON;IACT;IAEA,IAAI;QACF,IAAI,OAAQM,MAAcS,IAAI,KAAK,YAAY,OAAOhB;IACxD,EAAE,OAAM;QACN,OAAOC;IACT;IAEA,IAAIgB,MAAMC,OAAO,CAACX,QAAQ;QACxB,MAAMY,MAAa,EAAE;QACrBX,KAAKY,GAAG,CAACb,OAAOY;QAChB,KAAK,MAAME,QAAQd,MAAO;YACxB,IAAI;gBACFY,IAAIG,IAAI,CAAC1B,yBAAyByB,MAAMb;YAC1C,EAAE,OAAM;gBACNW,IAAIG,IAAI,CAACrB;YACX;QACF;QACA,OAAOkB;IACT;IAEA,MAAMI,QAAQT,OAAOU,cAAc,CAACjB;IACpC,IAAIgB,UAAUT,OAAOW,SAAS,IAAIF,UAAU,MAAM;QAChD,MAAMJ,MAA+B,CAAC;QACtCX,KAAKY,GAAG,CAACb,OAAiBY;QAC1B,KAAK,MAAMO,OAAOZ,OAAOC,IAAI,CAACR,OAAkB;YAC9C,IAAI;gBACFY,GAAG,CAACO,IAAI,GAAG9B,yBAA0BW,KAAa,CAACmB,IAAI,EAAElB;YAC3D,EAAE,OAAM;gBACNW,GAAG,CAACO,IAAI,GAAGzB;YACb;QACF;QACA,OAAOkB;IACT;IAEA,OAAOL,OAAOW,SAAS,CAACE,QAAQ,CAACC,IAAI,CAACrB;AACxC;AAGO,MAAMZ,eAAe,CAACkC;IAC3B,IAAI;QACF,MAAMC,SAASjC,uBAAuBgC;QACtC,OAAOC,UAAU,CAAC,CAAC,EAAE7B,mBAAmB,CAAC,CAAC;IAC5C,EAAE,OAAM;QACN,OAAO,CAAC,CAAC,EAAEA,mBAAmB,CAAC,CAAC;IAClC;AACF","ignoreList":[0]}}, - {"offset": {"line": 2423, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/forward-logs.ts"],"sourcesContent":["import {\n getOwnerStack,\n setOwnerStackIfAvailable,\n} from './errors/stitched-error'\nimport { getErrorSource } from '../../../shared/lib/error-source'\nimport { getIsTerminalLoggingEnabled } from './terminal-logging-config'\nimport {\n type ConsoleEntry,\n type ConsoleErrorEntry,\n type FormattedErrorEntry,\n type ClientLogEntry,\n type LogMethod,\n patchConsoleMethod,\n} from '../../shared/forward-logs-shared'\nimport {\n preLogSerializationClone,\n logStringify,\n safeStringifyWithDepth,\n} from './forward-logs-utils'\n\n// Client-side file logger for browser logs\nclass ClientFileLogger {\n private logEntries: Array<{\n timestamp: string\n level: string // log level\n message: string // log message\n }> = []\n\n private formatTimestamp(): string {\n const now = new Date()\n const hours = now.getHours().toString().padStart(2, '0')\n const minutes = now.getMinutes().toString().padStart(2, '0')\n const seconds = now.getSeconds().toString().padStart(2, '0')\n const milliseconds = now.getMilliseconds().toString().padStart(3, '0')\n\n return `${hours}:${minutes}:${seconds}.${milliseconds}`\n }\n\n log(level: string, args: any[]): void {\n if (isReactServerReplayedLog(args)) {\n return\n }\n\n // Format the args into a message string\n const message = args\n .map((arg) => {\n if (typeof arg === 'string') return arg\n if (typeof arg === 'number' || typeof arg === 'boolean')\n return String(arg)\n if (arg === null) return 'null'\n if (arg === undefined) return 'undefined'\n // Handle DOM nodes - only log the tag name to avoid React proxied elements\n if (arg instanceof Element) {\n return `<${arg.tagName.toLowerCase()}>`\n }\n return safeStringifyWithDepth(arg)\n })\n .join(' ')\n\n const logEntry = {\n timestamp: this.formatTimestamp(),\n level: level.toUpperCase(),\n message,\n }\n this.logEntries.push(logEntry)\n\n // Schedule flush when new log is added\n scheduleLogFlush()\n }\n getLogs(): Array<{ timestamp: string; level: string; message: string }> {\n return [...this.logEntries]\n }\n\n clear(): void {\n this.logEntries = []\n }\n}\n\nconst clientFileLogger = new ClientFileLogger()\n\n// Set up flush-based sending of client file logs\nlet logFlushTimeout: NodeJS.Timeout | null = null\nlet heartbeatInterval: NodeJS.Timeout | null = null\n\nconst scheduleLogFlush = () => {\n if (logFlushTimeout) {\n clearTimeout(logFlushTimeout)\n }\n\n logFlushTimeout = setTimeout(() => {\n sendClientFileLogs()\n logFlushTimeout = null\n }, 100) // Send after 100ms (much faster with debouncing)\n}\n\nconst cancelLogFlush = () => {\n if (logFlushTimeout) {\n clearTimeout(logFlushTimeout)\n logFlushTimeout = null\n }\n}\n\nconst startHeartbeat = () => {\n if (heartbeatInterval) return\n\n heartbeatInterval = setInterval(() => {\n if (logQueue.socket && logQueue.socket.readyState === WebSocket.OPEN) {\n try {\n // Send a ping to keep the connection alive\n logQueue.socket.send(JSON.stringify({ event: 'ping' }))\n } catch (error) {\n // Connection might be closed, stop heartbeat\n stopHeartbeat()\n }\n } else {\n stopHeartbeat()\n }\n }, 5000) // Send ping every 5 seconds\n}\n\nconst stopHeartbeat = () => {\n if (heartbeatInterval) {\n clearInterval(heartbeatInterval)\n heartbeatInterval = null\n }\n}\n\nconst isTerminalLoggingEnabled = getIsTerminalLoggingEnabled()\n\nconst methods: Array<LogMethod> = [\n 'log',\n 'info',\n 'warn',\n 'debug',\n 'table',\n 'assert',\n 'dir',\n 'dirxml',\n 'group',\n 'groupCollapsed',\n 'groupEnd',\n 'trace',\n]\n\nconst afterThisFrame = (cb: () => void) => {\n let timeout: ReturnType<typeof setTimeout> | undefined\n\n const rafId = requestAnimationFrame(() => {\n timeout = setTimeout(() => {\n cb()\n })\n })\n\n return () => {\n cancelAnimationFrame(rafId)\n clearTimeout(timeout)\n }\n}\n\nlet isPatched = false\n\nconst serializeEntries = (entries: Array<ClientLogEntry>) =>\n entries.map((clientEntry) => {\n switch (clientEntry.kind) {\n case 'any-logged-error':\n case 'console': {\n return {\n ...clientEntry,\n args: clientEntry.args.map(stringifyUserArg),\n }\n }\n case 'formatted-error': {\n return clientEntry\n }\n default: {\n return null!\n }\n }\n })\n\n// Function to send client file logs to server\nconst sendClientFileLogs = () => {\n if (!logQueue.socket || logQueue.socket.readyState !== WebSocket.OPEN) {\n return\n }\n\n const logs = clientFileLogger.getLogs()\n if (logs.length === 0) {\n return\n }\n\n try {\n const payload = JSON.stringify({\n event: 'client-file-logs',\n logs: logs,\n })\n\n logQueue.socket.send(payload)\n } catch (error) {\n console.error(error)\n } finally {\n // Clear logs regardless of send success to prevent memory leaks\n clientFileLogger.clear()\n }\n}\n\n// Combined state and public API\nexport const logQueue: {\n entries: Array<ClientLogEntry>\n onSocketReady: (socket: WebSocket) => void\n flushScheduled: boolean\n socket: WebSocket | null\n cancelFlush: (() => void) | null\n sourceType?: 'server' | 'edge-server'\n router: 'app' | 'pages' | null\n scheduleLogSend: (entry: ClientLogEntry) => void\n} = {\n entries: [],\n flushScheduled: false,\n cancelFlush: null,\n socket: null,\n sourceType: undefined,\n router: null,\n scheduleLogSend: (entry: ClientLogEntry) => {\n logQueue.entries.push(entry)\n if (logQueue.flushScheduled) {\n return\n }\n // safe to deref and use in setTimeout closure since we cancel on new socket\n const socket = logQueue.socket\n if (!socket) {\n return\n }\n\n // we probably dont need this\n logQueue.flushScheduled = true\n\n // non blocking log flush, runs at most once per frame\n logQueue.cancelFlush = afterThisFrame(() => {\n logQueue.flushScheduled = false\n\n // just incase\n try {\n const payload = JSON.stringify({\n event: 'browser-logs',\n entries: serializeEntries(logQueue.entries),\n router: logQueue.router,\n // needed for source mapping, we just assign the sourceType from the last error for the whole batch\n sourceType: logQueue.sourceType,\n })\n\n socket.send(payload)\n logQueue.entries = []\n logQueue.sourceType = undefined\n\n // Also send client file logs\n sendClientFileLogs()\n } catch {\n // error (make sure u don't infinite loop)\n /* noop */\n }\n })\n },\n onSocketReady: (socket: WebSocket) => {\n // When MCP or terminal logging is enabled, we enable the socket connection,\n // otherwise it will not proceed.\n if (!isTerminalLoggingEnabled && !process.env.__NEXT_MCP_SERVER) {\n return\n }\n if (socket.readyState !== WebSocket.OPEN) {\n // invariant\n return\n }\n\n // incase an existing timeout was going to run with a stale socket\n logQueue.cancelFlush?.()\n logQueue.socket = socket\n\n // Add socket event listeners to track connection state\n socket.addEventListener('close', () => {\n cancelLogFlush()\n stopHeartbeat()\n })\n\n // Only send terminal logs if enabled\n if (isTerminalLoggingEnabled) {\n try {\n const payload = JSON.stringify({\n event: 'browser-logs',\n entries: serializeEntries(logQueue.entries),\n router: logQueue.router,\n sourceType: logQueue.sourceType,\n })\n\n socket.send(payload)\n logQueue.entries = []\n logQueue.sourceType = undefined\n } catch {\n /** noop just incase */\n }\n }\n\n // Always send client file logs when socket is ready\n sendClientFileLogs()\n\n // Start heartbeat to keep connection alive\n startHeartbeat()\n },\n}\n\nconst stringifyUserArg = (\n arg:\n | {\n kind: 'arg'\n data: unknown\n }\n | {\n kind: 'formatted-error-arg'\n }\n) => {\n if (arg.kind !== 'arg') {\n return arg\n }\n return {\n ...arg,\n data: logStringify(arg.data),\n }\n}\n\nconst createErrorArg = (error: Error) => {\n const stack = stackWithOwners(error)\n return {\n kind: 'formatted-error-arg' as const,\n prefix: error.message ? `${error.name}: ${error.message}` : `${error.name}`,\n stack,\n }\n}\n\nconst createLogEntry = (level: LogMethod, args: any[]) => {\n // Always log to client file logger with args (formatting done inside log method)\n clientFileLogger.log(level, args)\n\n // Only forward to terminal if enabled\n if (!isTerminalLoggingEnabled) {\n return\n }\n\n // do not abstract this, it implicitly relies on which functions call it. forcing the inlined implementation makes you think about callers\n // error capture stack trace maybe\n const stack = stackWithOwners(new Error())\n const stackLines = stack?.split('\\n')\n const cleanStack = stackLines?.slice(3).join('\\n') // this is probably ignored anyways\n const entry: ConsoleEntry<unknown> = {\n kind: 'console',\n consoleMethodStack: cleanStack ?? null, // depending on browser we might not have stack\n method: level,\n args: args.map((arg) => {\n if (arg instanceof Error) {\n return createErrorArg(arg)\n }\n return {\n kind: 'arg',\n data: preLogSerializationClone(arg),\n }\n }),\n }\n\n logQueue.scheduleLogSend(entry)\n}\n\nexport const forwardErrorLog = (args: any[]) => {\n // Always log to client file logger with args (formatting done inside log method)\n clientFileLogger.log('error', args)\n // Only forward to terminal if enabled\n if (!isTerminalLoggingEnabled) {\n return\n }\n\n const errorObjects = args.filter((arg) => arg instanceof Error)\n const first = errorObjects.at(0)\n if (first) {\n const source = getErrorSource(first)\n if (source) {\n logQueue.sourceType = source\n }\n }\n /**\n * browser shows stack regardless of type of data passed to console.error, so we should do the same\n *\n * do not abstract this, it implicitly relies on which functions call it. forcing the inlined implementation makes you think about callers\n */\n const stack = stackWithOwners(new Error())\n const stackLines = stack?.split('\\n')\n const cleanStack = stackLines?.slice(3).join('\\n')\n\n const entry: ConsoleErrorEntry<unknown> = {\n kind: 'any-logged-error',\n method: 'error',\n consoleErrorStack: cleanStack ?? '',\n args: args.map((arg) => {\n if (arg instanceof Error) {\n return createErrorArg(arg)\n }\n return {\n kind: 'arg',\n data: preLogSerializationClone(arg),\n }\n }),\n }\n\n logQueue.scheduleLogSend(entry)\n}\n\nconst createUncaughtErrorEntry = (\n errorName: string,\n errorMessage: string,\n fullStack: string\n) => {\n const entry: FormattedErrorEntry = {\n kind: 'formatted-error',\n prefix: `Uncaught ${errorName}: ${errorMessage}`,\n stack: fullStack,\n method: 'error',\n }\n\n logQueue.scheduleLogSend(entry)\n}\n\nconst stackWithOwners = (error: Error) => {\n let ownerStack = ''\n setOwnerStackIfAvailable(error)\n ownerStack = getOwnerStack(error) || ''\n const stack = (error.stack || '') + ownerStack\n return stack\n}\n\nexport function logUnhandledRejection(reason: unknown) {\n // Always log to client file logger\n const message =\n reason instanceof Error\n ? `${reason.name}: ${reason.message}`\n : JSON.stringify(reason)\n clientFileLogger.log('error', [`unhandledRejection: ${message}`])\n\n // Only forward to terminal if enabled\n if (!isTerminalLoggingEnabled) {\n return\n }\n\n if (reason instanceof Error) {\n createUnhandledRejectionErrorEntry(reason, stackWithOwners(reason))\n return\n }\n createUnhandledRejectionNonErrorEntry(reason)\n}\n\nconst createUnhandledRejectionErrorEntry = (\n error: Error,\n fullStack: string\n) => {\n const source = getErrorSource(error)\n if (source) {\n logQueue.sourceType = source\n }\n\n const entry: ClientLogEntry = {\n kind: 'formatted-error',\n prefix: `⨯ unhandledRejection: ${error.name}: ${error.message}`,\n stack: fullStack,\n method: 'error',\n }\n\n logQueue.scheduleLogSend(entry)\n}\n\nconst createUnhandledRejectionNonErrorEntry = (reason: unknown) => {\n const entry: ClientLogEntry = {\n kind: 'any-logged-error',\n // we can't access the stack since the event is dispatched async and creating an inline error would be meaningless\n consoleErrorStack: '',\n method: 'error',\n args: [\n {\n kind: 'arg',\n data: `⨯ unhandledRejection:`,\n isRejectionMessage: true,\n },\n {\n kind: 'arg',\n data: preLogSerializationClone(reason),\n },\n ],\n }\n\n logQueue.scheduleLogSend(entry)\n}\n\nconst isHMR = (args: any[]) => {\n const firstArg = args[0]\n if (typeof firstArg !== 'string') {\n return false\n }\n if (firstArg.startsWith('[Fast Refresh]')) {\n return true\n }\n\n if (firstArg.startsWith('[HMR]')) {\n return true\n }\n\n return false\n}\n\n/**\n * Matches the format of logs arguments React replayed from the RSC.\n */\nconst isReactServerReplayedLog = (args: any[]) => {\n if (args.length < 3) {\n return false\n }\n\n const [format, styles, label] = args\n\n if (\n typeof format !== 'string' ||\n typeof styles !== 'string' ||\n typeof label !== 'string'\n ) {\n return false\n }\n\n return format.startsWith('%c%s%c') && styles.includes('background:')\n}\n\nexport function forwardUnhandledError(error: Error) {\n // Always log to client file logger\n clientFileLogger.log('error', [\n `uncaughtError: ${error.name}: ${error.message}`,\n ])\n\n // Only forward to terminal if enabled\n if (!isTerminalLoggingEnabled) {\n return\n }\n\n createUncaughtErrorEntry(error.name, error.message, stackWithOwners(error))\n}\n\n// TODO: this router check is brittle, we need to update based on the current router the user is using\nexport const initializeDebugLogForwarding = (router: 'app' | 'pages'): void => {\n // probably don't need this\n if (isPatched) {\n return\n }\n // TODO(rob): why does this break rendering on server, important to know incase the same bug appears in browser\n if (typeof window === 'undefined') {\n return\n }\n\n // better to be safe than sorry\n try {\n methods.forEach((method) =>\n patchConsoleMethod(method, (_, ...args) => {\n if (isHMR(args)) {\n return\n }\n if (isReactServerReplayedLog(args)) {\n return\n }\n createLogEntry(method, args)\n })\n )\n } catch {}\n logQueue.router = router\n isPatched = true\n\n // Cleanup on page unload\n window.addEventListener('beforeunload', () => {\n cancelLogFlush()\n stopHeartbeat()\n // Send any remaining logs before page unloads\n sendClientFileLogs()\n })\n}\n"],"names":["forwardErrorLog","forwardUnhandledError","initializeDebugLogForwarding","logQueue","logUnhandledRejection","ClientFileLogger","formatTimestamp","now","Date","hours","getHours","toString","padStart","minutes","getMinutes","seconds","getSeconds","milliseconds","getMilliseconds","log","level","args","isReactServerReplayedLog","message","map","arg","String","undefined","Element","tagName","toLowerCase","safeStringifyWithDepth","join","logEntry","timestamp","toUpperCase","logEntries","push","scheduleLogFlush","getLogs","clear","clientFileLogger","logFlushTimeout","heartbeatInterval","clearTimeout","setTimeout","sendClientFileLogs","cancelLogFlush","startHeartbeat","setInterval","socket","readyState","WebSocket","OPEN","send","JSON","stringify","event","error","stopHeartbeat","clearInterval","isTerminalLoggingEnabled","getIsTerminalLoggingEnabled","methods","afterThisFrame","cb","timeout","rafId","requestAnimationFrame","cancelAnimationFrame","isPatched","serializeEntries","entries","clientEntry","kind","stringifyUserArg","logs","length","payload","console","flushScheduled","cancelFlush","sourceType","router","scheduleLogSend","entry","onSocketReady","process","env","__NEXT_MCP_SERVER","addEventListener","data","logStringify","createErrorArg","stack","stackWithOwners","prefix","name","createLogEntry","Error","stackLines","split","cleanStack","slice","consoleMethodStack","method","preLogSerializationClone","errorObjects","filter","first","at","source","getErrorSource","consoleErrorStack","createUncaughtErrorEntry","errorName","errorMessage","fullStack","ownerStack","setOwnerStackIfAvailable","getOwnerStack","reason","createUnhandledRejectionErrorEntry","createUnhandledRejectionNonErrorEntry","isRejectionMessage","isHMR","firstArg","startsWith","format","styles","label","includes","window","forEach","patchConsoleMethod","_"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 2931, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/errors/use-error-handler.ts"],"sourcesContent":["import { useEffect } from 'react'\nimport { isNextRouterError } from '../../../../client/components/is-next-router-error'\nimport {\n formatConsoleArgs,\n parseConsoleArgs,\n} from '../../../../client/lib/console'\nimport isError from '../../../../lib/is-error'\nimport { createConsoleError } from '../../../shared/console-error'\nimport { coerceError, setOwnerStackIfAvailable } from './stitched-error'\nimport { forwardUnhandledError, logUnhandledRejection } from '../forward-logs'\n\nconst queueMicroTask =\n globalThis.queueMicrotask || ((cb: () => void) => Promise.resolve().then(cb))\n\ntype ErrorHandler = (error: Error) => void\n\nconst errorQueue: Array<Error> = []\nconst errorHandlers: Array<ErrorHandler> = []\nconst rejectionQueue: Array<Error> = []\nconst rejectionHandlers: Array<ErrorHandler> = []\n\nexport function handleConsoleError(\n originError: unknown,\n consoleErrorArgs: any[]\n) {\n let error: Error\n const { environmentName } = parseConsoleArgs(consoleErrorArgs)\n if (isError(originError)) {\n error = createConsoleError(originError, environmentName)\n } else {\n error = createConsoleError(\n formatConsoleArgs(consoleErrorArgs),\n environmentName\n )\n }\n setOwnerStackIfAvailable(error)\n\n errorQueue.push(error)\n for (const handler of errorHandlers) {\n // Delayed the error being passed to React Dev Overlay,\n // avoid the state being synchronously updated in the component.\n queueMicroTask(() => {\n handler(error)\n })\n }\n}\n\nexport function handleClientError(error: Error) {\n errorQueue.push(error)\n for (const handler of errorHandlers) {\n // Delayed the error being passed to React Dev Overlay,\n // avoid the state being synchronously updated in the component.\n queueMicroTask(() => {\n handler(error)\n })\n }\n}\n\nexport function useErrorHandler(\n handleOnUnhandledError: ErrorHandler,\n handleOnUnhandledRejection: ErrorHandler\n) {\n useEffect(() => {\n // Handle queued errors.\n errorQueue.forEach(handleOnUnhandledError)\n rejectionQueue.forEach(handleOnUnhandledRejection)\n\n // Listen to new errors.\n errorHandlers.push(handleOnUnhandledError)\n rejectionHandlers.push(handleOnUnhandledRejection)\n\n return () => {\n // Remove listeners.\n errorHandlers.splice(errorHandlers.indexOf(handleOnUnhandledError), 1)\n rejectionHandlers.splice(\n rejectionHandlers.indexOf(handleOnUnhandledRejection),\n 1\n )\n\n // Reset error queues.\n errorQueue.splice(0, errorQueue.length)\n rejectionQueue.splice(0, rejectionQueue.length)\n }\n }, [handleOnUnhandledError, handleOnUnhandledRejection])\n}\n\nfunction onUnhandledError(event: WindowEventMap['error']): void | boolean {\n const thrownValue: unknown = event.error\n if (isNextRouterError(thrownValue)) {\n event.preventDefault()\n return false\n }\n // When there's an error property present, we log the error to error overlay.\n // Otherwise we don't do anything as it's not logging in the console either.\n if (thrownValue) {\n const error = coerceError(thrownValue)\n setOwnerStackIfAvailable(error)\n handleClientError(error)\n forwardUnhandledError(error)\n }\n}\n\nfunction onUnhandledRejection(ev: WindowEventMap['unhandledrejection']): void {\n const reason: unknown = ev?.reason\n if (isNextRouterError(reason)) {\n ev.preventDefault()\n return\n }\n\n const error = coerceError(reason)\n setOwnerStackIfAvailable(error)\n\n rejectionQueue.push(error)\n for (const handler of rejectionHandlers) {\n handler(error)\n }\n\n logUnhandledRejection(reason)\n}\n\nexport function handleGlobalErrors() {\n if (typeof window !== 'undefined') {\n try {\n // Increase the number of stack frames on the client\n Error.stackTraceLimit = 50\n } catch {}\n\n window.addEventListener('error', onUnhandledError)\n window.addEventListener('unhandledrejection', onUnhandledRejection)\n }\n}\n"],"names":["handleClientError","handleConsoleError","handleGlobalErrors","useErrorHandler","queueMicroTask","globalThis","queueMicrotask","cb","Promise","resolve","then","errorQueue","errorHandlers","rejectionQueue","rejectionHandlers","originError","consoleErrorArgs","error","environmentName","parseConsoleArgs","isError","createConsoleError","formatConsoleArgs","setOwnerStackIfAvailable","push","handler","handleOnUnhandledError","handleOnUnhandledRejection","useEffect","forEach","splice","indexOf","length","onUnhandledError","event","thrownValue","isNextRouterError","preventDefault","coerceError","forwardUnhandledError","onUnhandledRejection","ev","reason","logUnhandledRejection","window","Error","stackTraceLimit","addEventListener"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3072, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/errors/intercept-console-error.ts"],"sourcesContent":["import isError from '../../../../lib/is-error'\nimport { isNextRouterError } from '../../../../client/components/is-next-router-error'\nimport { handleConsoleError } from './use-error-handler'\nimport { parseConsoleArgs } from '../../../../client/lib/console'\nimport { forwardErrorLog } from '../forward-logs'\n\nexport const originConsoleError = globalThis.console.error\n\n// Patch console.error to collect information about hydration errors\nexport function patchConsoleError() {\n // Ensure it's only patched once\n if (typeof window === 'undefined') {\n return\n }\n window.console.error = function error(...args: any[]) {\n let maybeError: unknown\n if (process.env.NODE_ENV !== 'production') {\n const { error: replayedError } = parseConsoleArgs(args)\n if (replayedError) {\n maybeError = replayedError\n } else if (isError(args[0])) {\n maybeError = args[0]\n } else {\n // See https://github.com/facebook/react/blob/d50323eb845c5fde0d720cae888bf35dedd05506/packages/react-reconciler/src/ReactFiberErrorLogger.js#L78\n maybeError = args[1]\n }\n } else {\n maybeError = args[0]\n }\n\n if (!isNextRouterError(maybeError)) {\n if (process.env.NODE_ENV !== 'production') {\n handleConsoleError(\n // replayed errors have their own complex format string that should be used,\n // but if we pass the error directly, `handleClientError` will ignore it\n maybeError,\n args\n )\n }\n forwardErrorLog(args)\n\n originConsoleError.apply(window.console, args)\n }\n }\n}\n"],"names":["originConsoleError","patchConsoleError","globalThis","console","error","window","args","maybeError","process","env","NODE_ENV","replayedError","parseConsoleArgs","isError","isNextRouterError","handleConsoleError","forwardErrorLog","apply"],"mappings":"AAgBQQ,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;;;;;;;;;;;;IAVpBV,kBAAkB,EAAA;eAAlBA;;IAGGC,iBAAiB,EAAA;eAAjBA;;;;kEATI;mCACc;iCACC;yBACF;6BACD;AAEzB,MAAMD,qBAAqBE,WAAWC,OAAO,CAACC,KAAK;AAGnD,SAASH;IACd,gCAAgC;IAChC,IAAI,OAAOI,WAAW,aAAa;QACjC;IACF;IACAA,OAAOF,OAAO,CAACC,KAAK,GAAG,SAASA,MAAM,GAAGE,IAAW;QAClD,IAAIC;QACJ,wCAA2C;YACzC,MAAM,EAAEH,OAAOO,aAAa,EAAE,GAAGC,CAAAA,GAAAA,SAAAA,gBAAgB,EAACN;YAClD,IAAIK,eAAe;gBACjBJ,aAAaI;YACf,OAAO,IAAIE,CAAAA,GAAAA,SAAAA,OAAO,EAACP,IAAI,CAAC,EAAE,GAAG;gBAC3BC,aAAaD,IAAI,CAAC,EAAE;YACtB,OAAO;gBACL,iJAAiJ;gBACjJC,aAAaD,IAAI,CAAC,EAAE;YACtB;QACF,OAAO;;QAIP,IAAI,CAACQ,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACP,aAAa;YAClC,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;gBACzCK,CAAAA,GAAAA,iBAAAA,kBAAkB,EAChB,AACA,wEAAwE,IADI;gBAE5ER,YACAD;YAEJ;YACAU,CAAAA,GAAAA,aAAAA,eAAe,EAACV;YAEhBN,mBAAmBiB,KAAK,CAACZ,OAAOF,OAAO,EAAEG;QAC3C;IACF;AACF","ignoreList":[0]}}, - {"offset": {"line": 3142, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/app-dev-overlay-setup.ts"],"sourcesContent":["import { patchConsoleError } from './errors/intercept-console-error'\nimport { handleGlobalErrors } from './errors/use-error-handler'\nimport { initializeDebugLogForwarding } from './forward-logs'\n\nhandleGlobalErrors()\npatchConsoleError()\n\ninitializeDebugLogForwarding('app')\n"],"names":["handleGlobalErrors","patchConsoleError","initializeDebugLogForwarding"],"mappings":";;;uCAAkC;iCACC;6BACU;AAE7CA,CAAAA,GAAAA,iBAAAA,kBAAkB;AAClBC,CAAAA,GAAAA,uBAAAA,iBAAiB;AAEjBC,CAAAA,GAAAA,aAAAA,4BAA4B,EAAC","ignoreList":[0]}}, - {"offset": {"line": 3162, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/errors/index.ts"],"sourcesContent":["export { originConsoleError } from './intercept-console-error'\nexport { handleClientError } from './use-error-handler'\nexport { decorateDevError } from './stitched-error'\n"],"names":["decorateDevError","handleClientError","originConsoleError"],"mappings":";;;;;;;;;;;;;;;IAESA,gBAAgB,EAAA;eAAhBA,eAAAA,gBAAgB;;IADhBC,iBAAiB,EAAA;eAAjBA,iBAAAA,iBAAiB;;IADjBC,kBAAkB,EAAA;eAAlBA,uBAAAA,kBAAkB;;;uCAAQ;iCACD;+BACD","ignoreList":[0]}}, - {"offset": {"line": 3201, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/segment-explorer-node.tsx"],"sourcesContent":["'use client'\n\nimport type { ReactNode } from 'react'\nimport {\n useState,\n createContext,\n useContext,\n use,\n useMemo,\n useCallback,\n} from 'react'\nimport { useLayoutEffect } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\nimport { notFound } from '../../../client/components/not-found'\n\nexport type SegmentBoundaryType =\n | 'not-found'\n | 'error'\n | 'loading'\n | 'global-error'\n\nexport const SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE =\n 'NEXT_DEVTOOLS_SIMULATED_ERROR'\n\nexport type SegmentNodeState = {\n type: string\n pagePath: string\n boundaryType: string | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}\n\nfunction SegmentTrieNode({\n type,\n pagePath,\n}: {\n type: string\n pagePath: string\n}): React.ReactNode {\n const { boundaryType, setBoundaryType } = useSegmentState()\n const nodeState: SegmentNodeState = useMemo(() => {\n return {\n type,\n pagePath,\n boundaryType,\n setBoundaryType,\n }\n }, [type, pagePath, boundaryType, setBoundaryType])\n\n // Use `useLayoutEffect` to ensure the state is updated during suspense.\n // `useEffect` won't work as the state is preserved during suspense.\n useLayoutEffect(() => {\n dispatcher.segmentExplorerNodeAdd(nodeState)\n return () => {\n dispatcher.segmentExplorerNodeRemove(nodeState)\n }\n }, [nodeState])\n\n return null\n}\n\nfunction NotFoundSegmentNode(): React.ReactNode {\n notFound()\n}\n\nfunction ErrorSegmentNode(): React.ReactNode {\n throw new Error(SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE)\n}\n\nconst forever = new Promise(() => {})\nfunction LoadingSegmentNode(): React.ReactNode {\n use(forever)\n return null\n}\n\nexport function SegmentViewStateNode({ page }: { page: string }) {\n useLayoutEffect(() => {\n dispatcher.segmentExplorerUpdateRouteState(page)\n return () => {\n dispatcher.segmentExplorerUpdateRouteState('')\n }\n }, [page])\n return null\n}\n\nexport function SegmentBoundaryTriggerNode() {\n const { boundaryType } = useSegmentState()\n let segmentNode: React.ReactNode = null\n if (boundaryType === 'loading') {\n segmentNode = <LoadingSegmentNode />\n } else if (boundaryType === 'not-found') {\n segmentNode = <NotFoundSegmentNode />\n } else if (boundaryType === 'error') {\n segmentNode = <ErrorSegmentNode />\n }\n return segmentNode\n}\n\nexport function SegmentViewNode({\n type,\n pagePath,\n children,\n}: {\n type: string\n pagePath: string\n children?: ReactNode\n}): React.ReactNode {\n const segmentNode = (\n <SegmentTrieNode key={type} type={type} pagePath={pagePath} />\n )\n\n return (\n <>\n {segmentNode}\n {children}\n </>\n )\n}\n\nconst SegmentStateContext = createContext<{\n boundaryType: SegmentBoundaryType | null\n setBoundaryType: (type: SegmentBoundaryType | null) => void\n}>({\n boundaryType: null,\n setBoundaryType: () => {},\n})\n\nexport function SegmentStateProvider({ children }: { children: ReactNode }) {\n const [boundaryType, setBoundaryType] = useState<SegmentBoundaryType | null>(\n null\n )\n\n const [errorBoundaryKey, setErrorBoundaryKey] = useState(0)\n const reloadBoundary = useCallback(\n () => setErrorBoundaryKey((prev) => prev + 1),\n []\n )\n\n const setBoundaryTypeAndReload = useCallback(\n (type: SegmentBoundaryType | null) => {\n if (type === null) {\n reloadBoundary()\n }\n setBoundaryType(type)\n },\n [reloadBoundary]\n )\n\n return (\n <SegmentStateContext.Provider\n key={errorBoundaryKey}\n value={{\n boundaryType,\n setBoundaryType: setBoundaryTypeAndReload,\n }}\n >\n {children}\n </SegmentStateContext.Provider>\n )\n}\n\nexport function useSegmentState() {\n return useContext(SegmentStateContext)\n}\n"],"names":["SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE","SegmentBoundaryTriggerNode","SegmentStateProvider","SegmentViewNode","SegmentViewStateNode","useSegmentState","SegmentTrieNode","type","pagePath","boundaryType","setBoundaryType","nodeState","useMemo","useLayoutEffect","dispatcher","segmentExplorerNodeAdd","segmentExplorerNodeRemove","NotFoundSegmentNode","notFound","ErrorSegmentNode","Error","forever","Promise","LoadingSegmentNode","use","page","segmentExplorerUpdateRouteState","segmentNode","children","SegmentStateContext","createContext","useState","errorBoundaryKey","setErrorBoundaryKey","reloadBoundary","useCallback","prev","setBoundaryTypeAndReload","Provider","value","useContext"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3358, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/app-dev-overlay-error-boundary.tsx"],"sourcesContent":["import { PureComponent } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\nimport { RuntimeErrorHandler } from '../../../client/dev/runtime-error-handler'\nimport { ErrorBoundary } from '../../../client/components/error-boundary'\nimport DefaultGlobalError from '../../../client/components/builtin/global-error'\nimport type { GlobalErrorState } from '../../../client/components/app-router-instance'\nimport { SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE } from './segment-explorer-node'\n\ntype AppDevOverlayErrorBoundaryProps = {\n children: React.ReactNode\n globalError: GlobalErrorState\n}\n\ntype AppDevOverlayErrorBoundaryState = {\n reactError: unknown\n}\n\nfunction ErroredHtml({\n globalError: [GlobalError, globalErrorStyles],\n error,\n}: {\n globalError: GlobalErrorState\n error: unknown\n}) {\n if (!error) {\n return (\n <html>\n <head />\n <body />\n </html>\n )\n }\n return (\n <ErrorBoundary errorComponent={DefaultGlobalError}>\n {globalErrorStyles}\n <GlobalError error={error} />\n </ErrorBoundary>\n )\n}\n\nexport class AppDevOverlayErrorBoundary extends PureComponent<\n AppDevOverlayErrorBoundaryProps,\n AppDevOverlayErrorBoundaryState\n> {\n state = { reactError: null }\n\n static getDerivedStateFromError(error: Error) {\n RuntimeErrorHandler.hadRuntimeError = true\n\n return {\n reactError: error,\n }\n }\n\n componentDidCatch(err: Error) {\n if (\n process.env.NODE_ENV === 'development' &&\n err.message === SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE\n ) {\n return\n }\n dispatcher.openErrorOverlay()\n }\n\n render() {\n const { children, globalError } = this.props\n const { reactError } = this.state\n\n const fallback = (\n <ErroredHtml globalError={globalError} error={reactError} />\n )\n\n return reactError !== null ? fallback : children\n }\n}\n"],"names":["AppDevOverlayErrorBoundary","ErroredHtml","globalError","GlobalError","globalErrorStyles","error","html","head","body","ErrorBoundary","errorComponent","DefaultGlobalError","PureComponent","getDerivedStateFromError","RuntimeErrorHandler","hadRuntimeError","reactError","componentDidCatch","err","process","env","NODE_ENV","message","SEGMENT_EXPLORER_SIMULATED_ERROR_MESSAGE","dispatcher","openErrorOverlay","render","children","props","state","fallback"],"mappings":"AAwDMmB,QAAQC,GAAG,CAACC,QAAQ;;;;;+BAhBbrB,8BAAAA;;;eAAAA;;;;;uBAxCiB;8BACH;qCACS;+BACN;sEACC;qCAE0B;AAWzD,SAASC,YAAY,EACnBC,aAAa,CAACC,aAAaC,kBAAkB,EAC7CC,KAAK,EAIN;IACC,IAAI,CAACA,OAAO;QACV,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,IAAA,EAACC,QAAAA;;8BACC,CAAA,GAAA,YAAA,GAAA,EAACC,QAAAA,CAAAA;8BACD,CAAA,GAAA,YAAA,GAAA,EAACC,QAAAA,CAAAA;;;IAGP;IACA,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,IAAA,EAACC,eAAAA,aAAa,EAAA;QAACC,gBAAgBC,aAAAA,OAAkB;;YAC9CP;0BACD,CAAA,GAAA,YAAA,GAAA,EAACD,aAAAA;gBAAYE,OAAOA;;;;AAG1B;AAEO,MAAML,mCAAmCY,OAAAA,aAAa;IAM3D,OAAOC,yBAAyBR,KAAY,EAAE;QAC5CS,qBAAAA,mBAAmB,CAACC,eAAe,GAAG;QAEtC,OAAO;YACLC,YAAYX;QACd;IACF;IAEAY,kBAAkBC,GAAU,EAAE;QAC5B,wDAC2B,iBACzBA,IAAII,OAAO,KAAKC,qBAAAA,wCAAwC,EACxD;YACA;QACF;QACAC,cAAAA,UAAU,CAACC,gBAAgB;IAC7B;IAEAC,SAAS;QACP,MAAM,EAAEC,QAAQ,EAAEzB,WAAW,EAAE,GAAG,IAAI,CAAC0B,KAAK;QAC5C,MAAM,EAAEZ,UAAU,EAAE,GAAG,IAAI,CAACa,KAAK;QAEjC,MAAMC,WAAAA,WAAAA,GACJ,CAAA,GAAA,YAAA,GAAA,EAAC7B,aAAAA;YAAYC,aAAaA;YAAaG,OAAOW;;QAGhD,OAAOA,eAAe,OAAOc,WAAWH;IAC1C;;QAjCK,KAAA,IAAA,OAAA,IAAA,CAILE,KAAAA,GAAQ;YAAEb,YAAY;QAAK;;AA8B7B","ignoreList":[0]}}, - {"offset": {"line": 3435, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/use-app-dev-rendering-indicator.tsx"],"sourcesContent":["'use client'\n\nimport { useEffect, useTransition } from 'react'\nimport { dispatcher } from 'next/dist/compiled/next-devtools'\n\nexport const useAppDevRenderingIndicator = () => {\n const [isPending, startTransition] = useTransition()\n\n useEffect(() => {\n if (isPending) {\n dispatcher.renderingIndicatorShow()\n } else {\n dispatcher.renderingIndicatorHide()\n }\n }, [isPending])\n\n return startTransition\n}\n"],"names":["useAppDevRenderingIndicator","isPending","startTransition","useTransition","useEffect","dispatcher","renderingIndicatorShow","renderingIndicatorHide"],"mappings":";;;+BAKaA,+BAAAA;;;eAAAA;;;uBAH4B;8BACd;AAEpB,MAAMA,8BAA8B;IACzC,MAAM,CAACC,WAAWC,gBAAgB,GAAGC,CAAAA,GAAAA,OAAAA,aAAa;IAElDC,CAAAA,GAAAA,OAAAA,SAAS,EAAC;QACR,IAAIH,WAAW;YACbI,cAAAA,UAAU,CAACC,sBAAsB;QACnC,OAAO;YACLD,cAAAA,UAAU,CAACE,sBAAsB;QACnC;IACF,GAAG;QAACN;KAAU;IAEd,OAAOC;AACT","ignoreList":[0]}}, - {"offset": {"line": 3470, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/errors/replay-ssr-only-errors.tsx"],"sourcesContent":["import { useEffect } from 'react'\nimport { handleClientError } from './use-error-handler'\nimport { isNextRouterError } from '../../../../client/components/is-next-router-error'\nimport { MISSING_ROOT_TAGS_ERROR } from '../../../../shared/lib/errors/constants'\n\nfunction readSsrError(): (Error & { digest?: string }) | null {\n if (typeof document === 'undefined') {\n return null\n }\n\n const ssrErrorTemplateTag = document.querySelector(\n 'template[data-next-error-message]'\n )\n if (ssrErrorTemplateTag) {\n const message: string = ssrErrorTemplateTag.getAttribute(\n 'data-next-error-message'\n )!\n const stack = ssrErrorTemplateTag.getAttribute('data-next-error-stack')\n const digest = ssrErrorTemplateTag.getAttribute('data-next-error-digest')\n const error = new Error(message)\n if (digest) {\n ;(error as any).digest = digest\n }\n // Skip Next.js SSR'd internal errors that which will be handled by the error boundaries.\n if (isNextRouterError(error)) {\n return null\n }\n error.stack = stack || ''\n return error\n }\n\n return null\n}\n\n/**\n * Needs to be in the same error boundary as the shell.\n * If it commits, we know we recovered from an SSR error.\n * If it doesn't commit, we errored again and React will take care of error reporting.\n */\nexport function ReplaySsrOnlyErrors({\n onBlockingError,\n}: {\n onBlockingError: () => void\n}) {\n if (process.env.NODE_ENV !== 'production') {\n // Need to read during render. The attributes will be gone after commit.\n const ssrError = readSsrError()\n // eslint-disable-next-line react-hooks/rules-of-hooks\n useEffect(() => {\n if (ssrError !== null) {\n // TODO(veil): Include original Owner Stack (NDX-905)\n // TODO(veil): Mark as recoverable error\n // TODO(veil): console.error\n handleClientError(ssrError)\n\n // If it's missing root tags, we can't recover, make it blocking.\n if (ssrError.digest === MISSING_ROOT_TAGS_ERROR) {\n onBlockingError()\n }\n }\n }, [ssrError, onBlockingError])\n }\n\n return null\n}\n"],"names":["ReplaySsrOnlyErrors","readSsrError","document","ssrErrorTemplateTag","querySelector","message","getAttribute","stack","digest","error","Error","isNextRouterError","onBlockingError","process","env","NODE_ENV","ssrError","useEffect","handleClientError","MISSING_ROOT_TAGS_ERROR"],"mappings":"AA4CMa,QAAQC,GAAG,CAACC,QAAQ,KAAK;;;;;+BALff,uBAAAA;;;eAAAA;;;uBAvCU;iCACQ;mCACA;2BACM;AAExC,SAASC;IACP,IAAI,OAAOC,aAAa,aAAa;QACnC,OAAO;IACT;IAEA,MAAMC,sBAAsBD,SAASE,aAAa,CAChD;IAEF,IAAID,qBAAqB;QACvB,MAAME,UAAkBF,oBAAoBG,YAAY,CACtD;QAEF,MAAMC,QAAQJ,oBAAoBG,YAAY,CAAC;QAC/C,MAAME,SAASL,oBAAoBG,YAAY,CAAC;QAChD,MAAMG,QAAQ,OAAA,cAAkB,CAAlB,IAAIC,MAAML,UAAV,qBAAA;mBAAA;wBAAA;0BAAA;QAAiB;QAC/B,IAAIG,QAAQ;;YACRC,MAAcD,MAAM,GAAGA;QAC3B;QACA,yFAAyF;QACzF,IAAIG,CAAAA,GAAAA,mBAAAA,iBAAiB,EAACF,QAAQ;YAC5B,OAAO;QACT;QACAA,MAAMF,KAAK,GAAGA,SAAS;QACvB,OAAOE;IACT;IAEA,OAAO;AACT;AAOO,SAAST,oBAAoB,EAClCY,eAAe,EAGhB;IACC,wCAA2C;QACzC,wEAAwE;QACxE,MAAMI,WAAWf;QACjB,sDAAsD;QACtDgB,CAAAA,GAAAA,OAAAA,SAAS,EAAC;YACR,IAAID,aAAa,MAAM;gBACrB,qDAAqD;gBACrD,wCAAwC;gBACxC,4BAA4B;gBAC5BE,CAAAA,GAAAA,iBAAAA,iBAAiB,EAACF;gBAElB,iEAAiE;gBACjE,IAAIA,SAASR,MAAM,KAAKW,WAAAA,uBAAuB,EAAE;oBAC/CP;gBACF;YACF;QACF,GAAG;YAACI;YAAUJ;SAAgB;IAChC;IAEA,OAAO;AACT","ignoreList":[0]}}, - {"offset": {"line": 3546, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/next-devtools/userspace/app/client-entry.tsx"],"sourcesContent":["import React from 'react'\nimport DefaultGlobalError from '../../../client/components/builtin/global-error'\nimport { AppDevOverlayErrorBoundary } from './app-dev-overlay-error-boundary'\n\n// If an error is thrown while rendering an RSC stream, this will catch it in\n// dev and show the error overlay.\nexport function RootLevelDevOverlayElement({\n children,\n}: {\n children: React.ReactNode\n}) {\n return (\n <AppDevOverlayErrorBoundary globalError={[DefaultGlobalError, null]}>\n {children}\n </AppDevOverlayErrorBoundary>\n )\n}\n"],"names":["RootLevelDevOverlayElement","children","AppDevOverlayErrorBoundary","globalError","DefaultGlobalError"],"mappings":";;;+BAMgBA,8BAAAA;;;eAAAA;;;;;gEANE;sEACa;4CACY;AAIpC,SAASA,2BAA2B,EACzCC,QAAQ,EAGT;IACC,OAAA,WAAA,GACE,CAAA,GAAA,YAAA,GAAA,EAACC,4BAAAA,0BAA0B,EAAA;QAACC,aAAa;YAACC,aAAAA,OAAkB;YAAE;SAAK;kBAChEH;;AAGP","ignoreList":[0]}}, - {"offset": {"line": 3580, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/async-local-storage.ts"],"sourcesContent":["import type { AsyncLocalStorage } from 'async_hooks'\n\nconst sharedAsyncLocalStorageNotAvailableError = new Error(\n 'Invariant: AsyncLocalStorage accessed in runtime where it is not available'\n)\n\nclass FakeAsyncLocalStorage<Store extends {}>\n implements AsyncLocalStorage<Store>\n{\n disable(): void {\n throw sharedAsyncLocalStorageNotAvailableError\n }\n\n getStore(): Store | undefined {\n // This fake implementation of AsyncLocalStorage always returns `undefined`.\n return undefined\n }\n\n run<R>(): R {\n throw sharedAsyncLocalStorageNotAvailableError\n }\n\n exit<R>(): R {\n throw sharedAsyncLocalStorageNotAvailableError\n }\n\n enterWith(): void {\n throw sharedAsyncLocalStorageNotAvailableError\n }\n\n static bind<T>(fn: T): T {\n return fn\n }\n}\n\nconst maybeGlobalAsyncLocalStorage =\n typeof globalThis !== 'undefined' && (globalThis as any).AsyncLocalStorage\n\nexport function createAsyncLocalStorage<\n Store extends {},\n>(): AsyncLocalStorage<Store> {\n if (maybeGlobalAsyncLocalStorage) {\n return new maybeGlobalAsyncLocalStorage()\n }\n return new FakeAsyncLocalStorage()\n}\n\nexport function bindSnapshot<T>(\n // WARNING: Don't pass a named function to this argument! See: https://github.com/facebook/react/pull/34911\n fn: T\n): T {\n if (maybeGlobalAsyncLocalStorage) {\n return maybeGlobalAsyncLocalStorage.bind(fn)\n }\n return FakeAsyncLocalStorage.bind(fn)\n}\n\nexport function createSnapshot(): <R, TArgs extends any[]>(\n fn: (...args: TArgs) => R,\n ...args: TArgs\n) => R {\n if (maybeGlobalAsyncLocalStorage) {\n return maybeGlobalAsyncLocalStorage.snapshot()\n }\n return function (fn: any, ...args: any[]) {\n return fn(...args)\n }\n}\n"],"names":["bindSnapshot","createAsyncLocalStorage","createSnapshot","sharedAsyncLocalStorageNotAvailableError","Error","FakeAsyncLocalStorage","disable","getStore","undefined","run","exit","enterWith","bind","fn","maybeGlobalAsyncLocalStorage","globalThis","AsyncLocalStorage","snapshot","args"],"mappings":";;;;;;;;;;;;;;;IA+CgBA,YAAY,EAAA;eAAZA;;IATAC,uBAAuB,EAAA;eAAvBA;;IAmBAC,cAAc,EAAA;eAAdA;;;AAvDhB,MAAMC,2CAA2C,OAAA,cAEhD,CAFgD,IAAIC,MACnD,+EAD+C,qBAAA;WAAA;gBAAA;kBAAA;AAEjD;AAEA,MAAMC;IAGJC,UAAgB;QACd,MAAMH;IACR;IAEAI,WAA8B;QAC5B,4EAA4E;QAC5E,OAAOC;IACT;IAEAC,MAAY;QACV,MAAMN;IACR;IAEAO,OAAa;QACX,MAAMP;IACR;IAEAQ,YAAkB;QAChB,MAAMR;IACR;IAEA,OAAOS,KAAQC,EAAK,EAAK;QACvB,OAAOA;IACT;AACF;AAEA,MAAMC,+BACJ,OAAOC,eAAe,eAAgBA,WAAmBC,iBAAiB;AAErE,SAASf;IAGd,IAAIa,8BAA8B;QAChC,OAAO,IAAIA;IACb;IACA,OAAO,IAAIT;AACb;AAEO,SAASL,aACd,AACAa,EAAK,yGADsG;IAG3G,IAAIC,8BAA8B;QAChC,OAAOA,6BAA6BF,IAAI,CAACC;IAC3C;IACA,OAAOR,sBAAsBO,IAAI,CAACC;AACpC;AAEO,SAASX;IAId,IAAIY,8BAA8B;QAChC,OAAOA,6BAA6BG,QAAQ;IAC9C;IACA,OAAO,SAAUJ,EAAO,EAAE,GAAGK,IAAW;QACtC,OAAOL,MAAMK;IACf;AACF","ignoreList":[0]}}, - {"offset": {"line": 3656, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/work-unit-async-storage-instance.ts"],"sourcesContent":["import { createAsyncLocalStorage } from './async-local-storage'\nimport type { WorkUnitAsyncStorage } from './work-unit-async-storage.external'\n\nexport const workUnitAsyncStorageInstance: WorkUnitAsyncStorage =\n createAsyncLocalStorage()\n"],"names":["workUnitAsyncStorageInstance","createAsyncLocalStorage"],"mappings":";;;+BAGaA,gCAAAA;;;eAAAA;;;mCAH2B;AAGjC,MAAMA,+BACXC,CAAAA,GAAAA,mBAAAA,uBAAuB","ignoreList":[0]}}, - {"offset": {"line": 3671, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/work-unit-async-storage.external.ts"],"sourcesContent":["import type { AsyncLocalStorage } from 'async_hooks'\nimport type { DraftModeProvider } from '../async-storage/draft-mode-provider'\nimport type { ResponseCookies } from '../web/spec-extension/cookies'\nimport type { ReadonlyHeaders } from '../web/spec-extension/adapters/headers'\nimport type { ReadonlyRequestCookies } from '../web/spec-extension/adapters/request-cookies'\nimport type { CacheSignal } from './cache-signal'\nimport type { DynamicTrackingState } from './dynamic-rendering'\nimport type { OpaqueFallbackRouteParams } from '../request/fallback-params'\n\n// Share the instance module in the next-shared layer\nimport { workUnitAsyncStorageInstance } from './work-unit-async-storage-instance' with { 'turbopack-transition': 'next-shared' }\nimport type { ServerComponentsHmrCache } from '../response-cache'\nimport type {\n RenderResumeDataCache,\n PrerenderResumeDataCache,\n} from '../resume-data-cache/resume-data-cache'\nimport type { Params } from '../request/params'\nimport type { ImplicitTags } from '../lib/implicit-tags'\nimport type { WorkStore } from './work-async-storage.external'\nimport { NEXT_HMR_REFRESH_HASH_COOKIE } from '../../client/components/app-router-headers'\nimport { InvariantError } from '../../shared/lib/invariant-error'\nimport type { StagedRenderingController } from './staged-rendering'\n\nexport type WorkUnitPhase = 'action' | 'render' | 'after'\n\nexport interface CommonWorkUnitStore {\n /** NOTE: Will be mutated as phases change */\n phase: WorkUnitPhase\n readonly implicitTags: ImplicitTags\n}\n\nexport interface RequestStore extends CommonWorkUnitStore {\n readonly type: 'request'\n\n /**\n * The URL of the request. This only specifies the pathname and the search\n * part of the URL.\n */\n readonly url: {\n /**\n * The pathname of the requested URL.\n */\n readonly pathname: string\n\n /**\n * The search part of the requested URL. If the request did not provide a\n * search part, this will be an empty string.\n */\n readonly search: string\n }\n\n readonly headers: ReadonlyHeaders\n // This is mutable because we need to reassign it when transitioning from the action phase to the render phase.\n // The cookie object itself is deliberately read only and thus can't be updated.\n cookies: ReadonlyRequestCookies\n readonly mutableCookies: ResponseCookies\n readonly userspaceMutableCookies: ResponseCookies\n readonly draftMode: DraftModeProvider\n readonly isHmrRefresh?: boolean\n readonly serverComponentsHmrCache?: ServerComponentsHmrCache\n\n readonly rootParams: Params\n\n /**\n * The resume data cache for this request. This will be a immutable cache.\n */\n renderResumeDataCache: RenderResumeDataCache | null\n\n // DEV-only\n usedDynamic?: boolean\n devFallbackParams?: OpaqueFallbackRouteParams | null\n stagedRendering?: StagedRenderingController | null\n asyncApiPromises?: DevAsyncApiPromises\n cacheSignal?: CacheSignal | null\n prerenderResumeDataCache?: PrerenderResumeDataCache | null\n}\n\ntype DevAsyncApiPromises = {\n cookies: Promise<ReadonlyRequestCookies>\n mutableCookies: Promise<ReadonlyRequestCookies>\n headers: Promise<ReadonlyHeaders>\n\n sharedParamsParent: Promise<string>\n sharedSearchParamsParent: Promise<string>\n\n connection: Promise<undefined>\n}\n\n/**\n * The Prerender store is for tracking information related to prerenders.\n *\n * It can be used for both RSC and SSR prerendering and should be scoped as close\n * to the individual `renderTo...` API call as possible. To keep the type simple\n * we don't distinguish between RSC and SSR prerendering explicitly but instead\n * use conditional object properties to infer which mode we are in. For instance cache tracking\n * only needs to happen during the RSC prerender when we are prospectively prerendering\n * to fill all caches.\n */\nexport type PrerenderStoreModern =\n | PrerenderStoreModernClient\n | PrerenderStoreModernServer\n | PrerenderStoreModernRuntime\n\n/** Like `PrerenderStoreModern`, but only including static prerenders (i.e. not runtime prerenders) */\nexport type StaticPrerenderStoreModern = Exclude<\n PrerenderStoreModern,\n PrerenderStoreModernRuntime\n>\n\nexport interface PrerenderStoreModernClient\n extends PrerenderStoreModernCommon,\n StaticPrerenderStoreCommon {\n readonly type: 'prerender-client'\n}\n\nexport interface PrerenderStoreModernServer\n extends PrerenderStoreModernCommon,\n StaticPrerenderStoreCommon {\n readonly type: 'prerender'\n}\n\nexport interface PrerenderStoreModernRuntime\n extends PrerenderStoreModernCommon {\n readonly type: 'prerender-runtime'\n\n /**\n * A runtime prerender resolves APIs in two tasks:\n *\n * 1. Static data (available in a static prerender)\n * 2. Runtime data (available in a runtime prerender)\n *\n * This separation is achieved by awaiting this promise in \"runtime\" APIs.\n * In the final prerender, the promise will be resolved during the second task,\n * and the render will be aborted in the task that follows it.\n */\n readonly runtimeStagePromise: Promise<void> | null\n\n readonly headers: RequestStore['headers']\n readonly cookies: RequestStore['cookies']\n readonly draftMode: RequestStore['draftMode']\n}\n\nexport interface RevalidateStore {\n // Collected revalidate times and tags for this document during the prerender.\n revalidate: number // in seconds. 0 means dynamic. INFINITE_CACHE and higher means never revalidate.\n expire: number // server expiration time\n stale: number // client expiration time\n tags: null | string[]\n}\n\ninterface PrerenderStoreModernCommon\n extends CommonWorkUnitStore,\n RevalidateStore {\n /**\n * The render signal is aborted after React's `prerender` function is aborted\n * (using a separate signal), which happens in two cases:\n *\n * 1. When all caches are filled during the prospective prerender.\n * 2. When the final prerender is aborted immediately after the prerender was\n * started.\n *\n * It can be used to reject any pending I/O, including hanging promises. This\n * allows React to properly track the async I/O in dev mode, which yields\n * better owner stacks for dynamic validation errors.\n */\n readonly renderSignal: AbortSignal\n\n /**\n * This is the AbortController which represents the boundary between Prerender\n * and dynamic. In some renders it is the same as the controller for React,\n * but in others it is a separate controller. It should be aborted whenever we\n * are no longer in the prerender phase of rendering. Typically this is after\n * one task, or when you call a sync API which requires the prerender to end\n * immediately.\n */\n readonly controller: AbortController\n\n /**\n * When not null, this signal is used to track cache reads during prerendering\n * and to await all cache reads completing, before aborting the prerender.\n */\n readonly cacheSignal: null | CacheSignal\n\n /**\n * During some prerenders we want to track dynamic access.\n */\n readonly dynamicTracking: null | DynamicTrackingState\n\n readonly rootParams: Params\n\n /**\n * A mutable resume data cache for this prerender.\n */\n prerenderResumeDataCache: PrerenderResumeDataCache | null\n\n /**\n * An immutable resume data cache for this prerender. This may be provided\n * instead of the `prerenderResumeDataCache` if the prerender is not supposed\n * to fill caches, and only read from prefilled caches, e.g. when prerendering\n * an optional fallback shell.\n */\n renderResumeDataCache: RenderResumeDataCache | null\n\n /**\n * The HMR refresh hash is only provided in dev mode. It is needed for the dev\n * warmup render to ensure that the cache keys will be identical for the\n * subsequent dynamic render.\n */\n readonly hmrRefreshHash: string | undefined\n}\n\ninterface StaticPrerenderStoreCommon {\n /**\n * The set of unknown route parameters. Accessing these will be tracked as\n * a dynamic access.\n */\n readonly fallbackRouteParams: OpaqueFallbackRouteParams | null\n\n /**\n * When true, the page is prerendered as a fallback shell, while allowing any\n * dynamic accesses to result in an empty shell. This is the case when there\n * are also routes prerendered with a more complete set of params.\n * Prerendering those routes would catch any invalid dynamic accesses.\n */\n readonly allowEmptyStaticShell: boolean\n}\n\nexport interface PrerenderStorePPR\n extends CommonWorkUnitStore,\n RevalidateStore {\n readonly type: 'prerender-ppr'\n readonly rootParams: Params\n readonly dynamicTracking: null | DynamicTrackingState\n\n /**\n * The set of unknown route parameters. Accessing these will be tracked as\n * a dynamic access.\n */\n readonly fallbackRouteParams: OpaqueFallbackRouteParams | null\n\n /**\n * The resume data cache for this prerender.\n */\n prerenderResumeDataCache: PrerenderResumeDataCache\n}\n\nexport interface PrerenderStoreLegacy\n extends CommonWorkUnitStore,\n RevalidateStore {\n readonly type: 'prerender-legacy'\n readonly rootParams: Params\n}\n\nexport type PrerenderStore =\n | PrerenderStoreLegacy\n | PrerenderStorePPR\n | PrerenderStoreModern\n\n// /** Like `PrerenderStoreModern`, but only including static prerenders (i.e. not runtime prerenders) */\nexport type StaticPrerenderStore = Exclude<\n PrerenderStore,\n PrerenderStoreModernRuntime\n>\n\nexport interface CommonCacheStore\n extends Omit<CommonWorkUnitStore, 'implicitTags'> {\n /**\n * A cache work unit store might not always have an outer work unit store,\n * from which implicit tags could be inherited.\n */\n readonly implicitTags: ImplicitTags | undefined\n /**\n * Draft mode is only available if the outer work unit store is a request\n * store and draft mode is enabled.\n */\n readonly draftMode: DraftModeProvider | undefined\n}\n\nexport interface CommonUseCacheStore extends CommonCacheStore, RevalidateStore {\n explicitRevalidate: undefined | number // explicit revalidate time from cacheLife() calls\n explicitExpire: undefined | number // server expiration time\n explicitStale: undefined | number // client expiration time\n readonly hmrRefreshHash: string | undefined\n readonly isHmrRefresh: boolean\n readonly serverComponentsHmrCache: ServerComponentsHmrCache | undefined\n readonly forceRevalidate: boolean\n}\n\nexport interface PublicUseCacheStore extends CommonUseCacheStore {\n readonly type: 'cache'\n}\n\nexport interface PrivateUseCacheStore extends CommonUseCacheStore {\n readonly type: 'private-cache'\n\n /**\n * A runtime prerender resolves APIs in two tasks:\n *\n * 1. Static data (available in a static prerender)\n * 2. Runtime data (available in a runtime prerender)\n *\n * This separation is achieved by awaiting this promise in \"runtime\" APIs.\n * In the final prerender, the promise will be resolved during the second task,\n * and the render will be aborted in the task that follows it.\n */\n readonly runtimeStagePromise: Promise<void> | null\n\n readonly headers: ReadonlyHeaders\n readonly cookies: ReadonlyRequestCookies\n\n /**\n * Private caches don't currently need to track root params in the cache key\n * because they're not persisted anywhere, so we can allow root params access\n * (unlike public caches)\n */\n readonly rootParams: Params\n}\n\nexport type UseCacheStore = PublicUseCacheStore | PrivateUseCacheStore\n\nexport interface UnstableCacheStore extends CommonCacheStore {\n readonly type: 'unstable-cache'\n}\n\n/**\n * The Cache store is for tracking information inside a \"use cache\" or\n * unstable_cache context. A cache store shadows an outer request store (if\n * present) as a work unit, so that we never accidentally expose any request or\n * page specific information to cache functions, unless it's explicitly desired.\n * For those exceptions, the data is copied over from the request store to the\n * cache store, instead of generally making the request store available to cache\n * functions.\n */\nexport type CacheStore = UseCacheStore | UnstableCacheStore\n\nexport type WorkUnitStore = RequestStore | CacheStore | PrerenderStore\n\nexport type WorkUnitAsyncStorage = AsyncLocalStorage<WorkUnitStore>\n\nexport { workUnitAsyncStorageInstance as workUnitAsyncStorage }\n\nexport function throwForMissingRequestStore(callingExpression: string): never {\n throw new Error(\n `\\`${callingExpression}\\` was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context`\n )\n}\n\nexport function throwInvariantForMissingStore(): never {\n throw new InvariantError('Expected workUnitAsyncStorage to have a store.')\n}\n\nexport function getPrerenderResumeDataCache(\n workUnitStore: WorkUnitStore\n): PrerenderResumeDataCache | null {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-ppr':\n return workUnitStore.prerenderResumeDataCache\n case 'prerender-client':\n // TODO eliminate fetch caching in client scope and stop exposing this data\n // cache during SSR.\n return workUnitStore.prerenderResumeDataCache\n case 'request': {\n // In dev, we might fill caches even during a dynamic request.\n if (workUnitStore.prerenderResumeDataCache) {\n return workUnitStore.prerenderResumeDataCache\n }\n // fallthrough\n }\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n return null\n default:\n return workUnitStore satisfies never\n }\n}\n\nexport function getRenderResumeDataCache(\n workUnitStore: WorkUnitStore\n): RenderResumeDataCache | null {\n switch (workUnitStore.type) {\n case 'request':\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-client':\n if (workUnitStore.renderResumeDataCache) {\n // If we are in a prerender, we might have a render resume data cache\n // that is used to read from prefilled caches.\n return workUnitStore.renderResumeDataCache\n }\n // fallthrough\n case 'prerender-ppr':\n // Otherwise we return the mutable resume data cache here as an immutable\n // version of the cache as it can also be used for reading.\n return workUnitStore.prerenderResumeDataCache ?? null\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'prerender-legacy':\n return null\n default:\n return workUnitStore satisfies never\n }\n}\n\nexport function getHmrRefreshHash(\n workStore: WorkStore,\n workUnitStore: WorkUnitStore\n): string | undefined {\n if (workStore.dev) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'private-cache':\n case 'prerender':\n case 'prerender-runtime':\n return workUnitStore.hmrRefreshHash\n case 'request':\n return workUnitStore.cookies.get(NEXT_HMR_REFRESH_HASH_COOKIE)?.value\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n return undefined\n}\n\nexport function isHmrRefresh(\n workStore: WorkStore,\n workUnitStore: WorkUnitStore\n): boolean {\n if (workStore.dev) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'private-cache':\n case 'request':\n return workUnitStore.isHmrRefresh ?? false\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n return false\n}\n\nexport function getServerComponentsHmrCache(\n workStore: WorkStore,\n workUnitStore: WorkUnitStore\n): ServerComponentsHmrCache | undefined {\n if (workStore.dev) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'private-cache':\n case 'request':\n return workUnitStore.serverComponentsHmrCache\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n return undefined\n}\n\n/**\n * Returns a draft mode provider only if draft mode is enabled.\n */\nexport function getDraftModeProviderForCacheScope(\n workStore: WorkStore,\n workUnitStore: WorkUnitStore\n): DraftModeProvider | undefined {\n if (workStore.isDraftMode) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n case 'prerender-runtime':\n case 'request':\n return workUnitStore.draftMode\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n return undefined\n}\n\nexport function getCacheSignal(\n workUnitStore: WorkUnitStore\n): CacheSignal | null {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-client':\n case 'prerender-runtime':\n return workUnitStore.cacheSignal\n case 'request': {\n // In dev, we might fill caches even during a dynamic request.\n if (workUnitStore.cacheSignal) {\n return workUnitStore.cacheSignal\n }\n // fallthrough\n }\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n return null\n default:\n return workUnitStore satisfies never\n }\n}\n\nexport function getRuntimeStagePromise(\n workUnitStore: WorkUnitStore\n): Promise<void> | null {\n switch (workUnitStore.type) {\n case 'prerender-runtime':\n case 'private-cache':\n return workUnitStore.runtimeStagePromise\n case 'prerender':\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'unstable-cache':\n return null\n default:\n return workUnitStore satisfies never\n }\n}\n"],"names":["getCacheSignal","getDraftModeProviderForCacheScope","getHmrRefreshHash","getPrerenderResumeDataCache","getRenderResumeDataCache","getRuntimeStagePromise","getServerComponentsHmrCache","isHmrRefresh","throwForMissingRequestStore","throwInvariantForMissingStore","workUnitAsyncStorage","workUnitAsyncStorageInstance","callingExpression","Error","InvariantError","workUnitStore","type","prerenderResumeDataCache","renderResumeDataCache","workStore","dev","hmrRefreshHash","cookies","get","NEXT_HMR_REFRESH_HASH_COOKIE","value","undefined","serverComponentsHmrCache","isDraftMode","draftMode","cacheSignal","runtimeStagePromise"],"mappings":"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","ignoreList":[0]}}, - {"offset": {"line": 3924, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/work-async-storage-instance.ts"],"sourcesContent":["import type { WorkAsyncStorage } from './work-async-storage.external'\nimport { createAsyncLocalStorage } from './async-local-storage'\n\nexport const workAsyncStorageInstance: WorkAsyncStorage =\n createAsyncLocalStorage()\n"],"names":["workAsyncStorageInstance","createAsyncLocalStorage"],"mappings":";;;+BAGaA,4BAAAA;;;eAAAA;;;mCAF2B;AAEjC,MAAMA,2BACXC,CAAAA,GAAAA,mBAAAA,uBAAuB","ignoreList":[0]}}, - {"offset": {"line": 3939, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/work-async-storage.external.ts"],"sourcesContent":["import type { AsyncLocalStorage } from 'async_hooks'\nimport type { IncrementalCache } from '../lib/incremental-cache'\nimport type { FetchMetrics } from '../base-http'\nimport type { DeepReadonly } from '../../shared/lib/deep-readonly'\nimport type { AppSegmentConfig } from '../../build/segment-config/app/app-segment-config'\nimport type { AfterContext } from '../after/after-context'\nimport type { CacheLife } from '../use-cache/cache-life'\n\n// Share the instance module in the next-shared layer\nimport { workAsyncStorageInstance } from './work-async-storage-instance' with { 'turbopack-transition': 'next-shared' }\nimport type { LazyResult } from '../lib/lazy-result'\nimport type { DigestedError } from './create-error-handler'\nimport type { ActionRevalidationKind } from '../../shared/lib/action-revalidation-kind'\n\nexport interface WorkStore {\n readonly isStaticGeneration: boolean\n\n /**\n * The page that is being rendered. This relates to the path to the page file.\n */\n readonly page: string\n\n /**\n * The route that is being rendered. This is the page property without the\n * trailing `/page` or `/route` suffix.\n */\n readonly route: string\n\n readonly incrementalCache?: IncrementalCache\n readonly cacheLifeProfiles?: { [profile: string]: CacheLife }\n\n readonly isOnDemandRevalidate?: boolean\n readonly isBuildTimePrerendering?: boolean\n\n /**\n * This is true when:\n * - source maps are generated\n * - source maps are applied\n * - minification is disabled\n */\n readonly hasReadableErrorStacks?: boolean\n\n forceDynamic?: boolean\n fetchCache?: AppSegmentConfig['fetchCache']\n\n forceStatic?: boolean\n dynamicShouldError?: boolean\n pendingRevalidates?: Record<string, Promise<any>>\n pendingRevalidateWrites?: Array<Promise<void>> // This is like pendingRevalidates but isn't used for deduping.\n readonly afterContext: AfterContext\n\n dynamicUsageDescription?: string\n dynamicUsageStack?: string\n\n /**\n * Invalid dynamic usage errors might be caught in userland. We attach them to\n * the work store to ensure we can still fail the build, or show en error in\n * dev mode.\n */\n // TODO: Collect an array of errors, and throw as AggregateError when\n // `serializeError` and the Dev Overlay support it.\n invalidDynamicUsageError?: Error\n\n nextFetchId?: number\n pathWasRevalidated?: ActionRevalidationKind\n\n /**\n * Tags that were revalidated during the current request. They need to be sent\n * to cache handlers to propagate their revalidation.\n */\n pendingRevalidatedTags?: Array<{\n tag: string\n profile?: string | { stale?: number; revalidate?: number; expire?: number }\n }>\n\n /**\n * Tags that were previously revalidated (e.g. by a redirecting server action)\n * and have already been sent to cache handlers. Retrieved cache entries that\n * include any of these tags must be discarded.\n */\n readonly previouslyRevalidatedTags: readonly string[]\n\n /**\n * This map contains lazy results so that we can evaluate them when the first\n * cache entry is read. It allows us to skip refreshing tags if no caches are\n * read at all.\n */\n readonly refreshTagsByCacheKind: Map<string, LazyResult<void>>\n\n fetchMetrics?: FetchMetrics\n shouldTrackFetchMetrics: boolean\n\n isDraftMode?: boolean\n isUnstableNoStore?: boolean\n isPrefetchRequest?: boolean\n\n buildId: string\n\n readonly reactLoadableManifest?: DeepReadonly<\n Record<string, { files: string[] }>\n >\n readonly assetPrefix?: string\n readonly nonce?: string\n\n cacheComponentsEnabled: boolean\n dev: boolean\n\n /**\n * Run the given function inside a clean AsyncLocalStorage snapshot. This is\n * useful when generating cache entries, to ensure that the cache generation\n * cannot read anything from the context we're currently executing in, which\n * might include request-specific things like `cookies()` inside a\n * `React.cache()`.\n */\n runInCleanSnapshot: <R, TArgs extends any[]>(\n fn: (...args: TArgs) => R,\n ...args: TArgs\n ) => R\n\n reactServerErrorsByDigest: Map<string, DigestedError>\n}\n\nexport type WorkAsyncStorage = AsyncLocalStorage<WorkStore>\n\nexport { workAsyncStorageInstance as workAsyncStorage }\n"],"names":["workAsyncStorage","workAsyncStorageInstance"],"mappings":";;;+BA4HqCA,oBAAAA;;;eAA5BC,0BAAAA,wBAAwB;;;0CAnHQ","ignoreList":[0]}}, - {"offset": {"line": 3953, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/action-async-storage-instance.ts"],"sourcesContent":["import type { ActionAsyncStorage } from './action-async-storage.external'\nimport { createAsyncLocalStorage } from './async-local-storage'\n\nexport const actionAsyncStorageInstance: ActionAsyncStorage =\n createAsyncLocalStorage()\n"],"names":["actionAsyncStorageInstance","createAsyncLocalStorage"],"mappings":";;;+BAGaA,8BAAAA;;;eAAAA;;;mCAF2B;AAEjC,MAAMA,6BACXC,CAAAA,GAAAA,mBAAAA,uBAAuB","ignoreList":[0]}}, - {"offset": {"line": 3968, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/action-async-storage.external.ts"],"sourcesContent":["import type { AsyncLocalStorage } from 'async_hooks'\n\n// Share the instance module in the next-shared layer\nimport { actionAsyncStorageInstance } from './action-async-storage-instance' with { 'turbopack-transition': 'next-shared' }\nexport interface ActionStore {\n readonly isAction?: boolean\n readonly isAppRoute?: boolean\n}\n\nexport type ActionAsyncStorage = AsyncLocalStorage<ActionStore>\n\nexport { actionAsyncStorageInstance as actionAsyncStorage }\n"],"names":["actionAsyncStorage","actionAsyncStorageInstance"],"mappings":";;;+BAWuCA,sBAAAA;;;eAA9BC,4BAAAA,0BAA0B;;;4CARQ","ignoreList":[0]}}, - {"offset": {"line": 3982, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/dynamic-rendering-utils.ts"],"sourcesContent":["import type { NonStaticRenderStage } from './app-render/staged-rendering'\nimport type { RequestStore } from './app-render/work-unit-async-storage.external'\n\nexport function isHangingPromiseRejectionError(\n err: unknown\n): err is HangingPromiseRejectionError {\n if (typeof err !== 'object' || err === null || !('digest' in err)) {\n return false\n }\n\n return err.digest === HANGING_PROMISE_REJECTION\n}\n\nconst HANGING_PROMISE_REJECTION = 'HANGING_PROMISE_REJECTION'\n\nclass HangingPromiseRejectionError extends Error {\n public readonly digest = HANGING_PROMISE_REJECTION\n\n constructor(\n public readonly route: string,\n public readonly expression: string\n ) {\n super(\n `During prerendering, ${expression} rejects when the prerender is complete. Typically these errors are handled by React but if you move ${expression} to a different context by using \\`setTimeout\\`, \\`after\\`, or similar functions you may observe this error and you should handle it in that context. This occurred at route \"${route}\".`\n )\n }\n}\n\ntype AbortListeners = Array<(err: unknown) => void>\nconst abortListenersBySignal = new WeakMap<AbortSignal, AbortListeners>()\n\n/**\n * This function constructs a promise that will never resolve. This is primarily\n * useful for cacheComponents where we use promise resolution timing to determine which\n * parts of a render can be included in a prerender.\n *\n * @internal\n */\nexport function makeHangingPromise<T>(\n signal: AbortSignal,\n route: string,\n expression: string\n): Promise<T> {\n if (signal.aborted) {\n return Promise.reject(new HangingPromiseRejectionError(route, expression))\n } else {\n const hangingPromise = new Promise<T>((_, reject) => {\n const boundRejection = reject.bind(\n null,\n new HangingPromiseRejectionError(route, expression)\n )\n let currentListeners = abortListenersBySignal.get(signal)\n if (currentListeners) {\n currentListeners.push(boundRejection)\n } else {\n const listeners = [boundRejection]\n abortListenersBySignal.set(signal, listeners)\n signal.addEventListener(\n 'abort',\n () => {\n for (let i = 0; i < listeners.length; i++) {\n listeners[i]()\n }\n },\n { once: true }\n )\n }\n })\n // We are fine if no one actually awaits this promise. We shouldn't consider this an unhandled rejection so\n // we attach a noop catch handler here to suppress this warning. If you actually await somewhere or construct\n // your own promise out of it you'll need to ensure you handle the error when it rejects.\n hangingPromise.catch(ignoreReject)\n return hangingPromise\n }\n}\n\nfunction ignoreReject() {}\n\nexport function makeDevtoolsIOAwarePromise<T>(\n underlying: T,\n requestStore: RequestStore,\n stage: NonStaticRenderStage\n): Promise<T> {\n if (requestStore.stagedRendering) {\n // We resolve each stage in a timeout, so React DevTools will pick this up as IO.\n return requestStore.stagedRendering.delayUntilStage(\n stage,\n undefined,\n underlying\n )\n }\n // in React DevTools if we resolve in a setTimeout we will observe\n // the promise resolution as something that can suspend a boundary or root.\n return new Promise<T>((resolve) => {\n // Must use setTimeout to be considered IO React DevTools. setImmediate will not work.\n setTimeout(() => {\n resolve(underlying)\n }, 0)\n })\n}\n"],"names":["isHangingPromiseRejectionError","makeDevtoolsIOAwarePromise","makeHangingPromise","err","digest","HANGING_PROMISE_REJECTION","HangingPromiseRejectionError","Error","constructor","route","expression","abortListenersBySignal","WeakMap","signal","aborted","Promise","reject","hangingPromise","_","boundRejection","bind","currentListeners","get","push","listeners","set","addEventListener","i","length","once","catch","ignoreReject","underlying","requestStore","stage","stagedRendering","delayUntilStage","undefined","resolve","setTimeout"],"mappings":";;;;;;;;;;;;;;;IAGgBA,8BAA8B,EAAA;eAA9BA;;IA2EAC,0BAA0B,EAAA;eAA1BA;;IAxCAC,kBAAkB,EAAA;eAAlBA;;;AAnCT,SAASF,+BACdG,GAAY;IAEZ,IAAI,OAAOA,QAAQ,YAAYA,QAAQ,QAAQ,CAAE,CAAA,YAAYA,GAAE,GAAI;QACjE,OAAO;IACT;IAEA,OAAOA,IAAIC,MAAM,KAAKC;AACxB;AAEA,MAAMA,4BAA4B;AAElC,MAAMC,qCAAqCC;IAGzCC,YACkBC,KAAa,EACbC,UAAkB,CAClC;QACA,KAAK,CACH,CAAC,qBAAqB,EAAEA,WAAW,qGAAqG,EAAEA,WAAW,8KAA8K,EAAED,MAAM,EAAE,CAAC,GAAA,IAAA,CAJhUA,KAAAA,GAAAA,OAAAA,IAAAA,CACAC,UAAAA,GAAAA,YAAAA,IAAAA,CAJFN,MAAAA,GAASC;IASzB;AACF;AAGA,MAAMM,yBAAyB,IAAIC;AAS5B,SAASV,mBACdW,MAAmB,EACnBJ,KAAa,EACbC,UAAkB;IAElB,IAAIG,OAAOC,OAAO,EAAE;QAClB,OAAOC,QAAQC,MAAM,CAAC,IAAIV,6BAA6BG,OAAOC;IAChE,OAAO;QACL,MAAMO,iBAAiB,IAAIF,QAAW,CAACG,GAAGF;YACxC,MAAMG,iBAAiBH,OAAOI,IAAI,CAChC,MACA,IAAId,6BAA6BG,OAAOC;YAE1C,IAAIW,mBAAmBV,uBAAuBW,GAAG,CAACT;YAClD,IAAIQ,kBAAkB;gBACpBA,iBAAiBE,IAAI,CAACJ;YACxB,OAAO;gBACL,MAAMK,YAAY;oBAACL;iBAAe;gBAClCR,uBAAuBc,GAAG,CAACZ,QAAQW;gBACnCX,OAAOa,gBAAgB,CACrB,SACA;oBACE,IAAK,IAAIC,IAAI,GAAGA,IAAIH,UAAUI,MAAM,EAAED,IAAK;wBACzCH,SAAS,CAACG,EAAE;oBACd;gBACF,GACA;oBAAEE,MAAM;gBAAK;YAEjB;QACF;QACA,2GAA2G;QAC3G,6GAA6G;QAC7G,yFAAyF;QACzFZ,eAAea,KAAK,CAACC;QACrB,OAAOd;IACT;AACF;AAEA,SAASc,gBAAgB;AAElB,SAAS9B,2BACd+B,UAAa,EACbC,YAA0B,EAC1BC,KAA2B;IAE3B,IAAID,aAAaE,eAAe,EAAE;QAChC,iFAAiF;QACjF,OAAOF,aAAaE,eAAe,CAACC,eAAe,CACjDF,OACAG,WACAL;IAEJ;IACA,kEAAkE;IAClE,2EAA2E;IAC3E,OAAO,IAAIjB,QAAW,CAACuB;QACrB,sFAAsF;QACtFC,WAAW;YACTD,QAAQN;QACV,GAAG;IACL;AACF","ignoreList":[0]}}, - {"offset": {"line": 4069, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/lib/router-utils/is-postpone.ts"],"sourcesContent":["const REACT_POSTPONE_TYPE: symbol = Symbol.for('react.postpone')\n\nexport function isPostpone(error: any): boolean {\n return (\n typeof error === 'object' &&\n error !== null &&\n error.$$typeof === REACT_POSTPONE_TYPE\n )\n}\n"],"names":["isPostpone","REACT_POSTPONE_TYPE","Symbol","for","error","$$typeof"],"mappings":";;;+BAEgBA,cAAAA;;;eAAAA;;;AAFhB,MAAMC,sBAA8BC,OAAOC,GAAG,CAAC;AAExC,SAASH,WAAWI,KAAU;IACnC,OACE,OAAOA,UAAU,YACjBA,UAAU,QACVA,MAAMC,QAAQ,KAAKJ;AAEvB","ignoreList":[0]}}, - {"offset": {"line": 4086, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/app-render/dynamic-rendering.ts"],"sourcesContent":["/**\n * The functions provided by this module are used to communicate certain properties\n * about the currently running code so that Next.js can make decisions on how to handle\n * the current execution in different rendering modes such as pre-rendering, resuming, and SSR.\n *\n * Today Next.js treats all code as potentially static. Certain APIs may only make sense when dynamically rendering.\n * Traditionally this meant deopting the entire render to dynamic however with PPR we can now deopt parts\n * of a React tree as dynamic while still keeping other parts static. There are really two different kinds of\n * Dynamic indications.\n *\n * The first is simply an intention to be dynamic. unstable_noStore is an example of this where\n * the currently executing code simply declares that the current scope is dynamic but if you use it\n * inside unstable_cache it can still be cached. This type of indication can be removed if we ever\n * make the default dynamic to begin with because the only way you would ever be static is inside\n * a cache scope which this indication does not affect.\n *\n * The second is an indication that a dynamic data source was read. This is a stronger form of dynamic\n * because it means that it is inappropriate to cache this at all. using a dynamic data source inside\n * unstable_cache should error. If you want to use some dynamic data inside unstable_cache you should\n * read that data outside the cache and pass it in as an argument to the cached function.\n */\n\nimport type { WorkStore } from '../app-render/work-async-storage.external'\nimport type {\n WorkUnitStore,\n PrerenderStoreLegacy,\n PrerenderStoreModern,\n PrerenderStoreModernRuntime,\n} from '../app-render/work-unit-async-storage.external'\n\n// Once postpone is in stable we should switch to importing the postpone export directly\nimport React from 'react'\n\nimport { DynamicServerError } from '../../client/components/hooks-server-context'\nimport { StaticGenBailoutError } from '../../client/components/static-generation-bailout'\nimport {\n getRuntimeStagePromise,\n throwForMissingRequestStore,\n workUnitAsyncStorage,\n} from './work-unit-async-storage.external'\nimport { workAsyncStorage } from '../app-render/work-async-storage.external'\nimport { makeHangingPromise } from '../dynamic-rendering-utils'\nimport {\n METADATA_BOUNDARY_NAME,\n VIEWPORT_BOUNDARY_NAME,\n OUTLET_BOUNDARY_NAME,\n ROOT_LAYOUT_BOUNDARY_NAME,\n} from '../../lib/framework/boundary-constants'\nimport { scheduleOnNextTick } from '../../lib/scheduler'\nimport { BailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\nimport { InvariantError } from '../../shared/lib/invariant-error'\n\nconst hasPostpone = typeof React.unstable_postpone === 'function'\n\nexport type DynamicAccess = {\n /**\n * If debugging, this will contain the stack trace of where the dynamic access\n * occurred. This is used to provide more information to the user about why\n * their page is being rendered dynamically.\n */\n stack?: string\n\n /**\n * The expression that was accessed dynamically.\n */\n expression: string\n}\n\n// Stores dynamic reasons used during an RSC render.\nexport type DynamicTrackingState = {\n /**\n * When true, stack information will also be tracked during dynamic access.\n */\n readonly isDebugDynamicAccesses: boolean | undefined\n\n /**\n * The dynamic accesses that occurred during the render.\n */\n readonly dynamicAccesses: Array<DynamicAccess>\n\n syncDynamicErrorWithStack: null | Error\n}\n\n// Stores dynamic reasons used during an SSR render.\nexport type DynamicValidationState = {\n hasSuspenseAboveBody: boolean\n hasDynamicMetadata: boolean\n dynamicMetadata: null | Error\n hasDynamicViewport: boolean\n hasAllowedDynamic: boolean\n dynamicErrors: Array<Error>\n}\n\nexport function createDynamicTrackingState(\n isDebugDynamicAccesses: boolean | undefined\n): DynamicTrackingState {\n return {\n isDebugDynamicAccesses,\n dynamicAccesses: [],\n syncDynamicErrorWithStack: null,\n }\n}\n\nexport function createDynamicValidationState(): DynamicValidationState {\n return {\n hasSuspenseAboveBody: false,\n hasDynamicMetadata: false,\n dynamicMetadata: null,\n hasDynamicViewport: false,\n hasAllowedDynamic: false,\n dynamicErrors: [],\n }\n}\n\nexport function getFirstDynamicReason(\n trackingState: DynamicTrackingState\n): undefined | string {\n return trackingState.dynamicAccesses[0]?.expression\n}\n\n/**\n * This function communicates that the current scope should be treated as dynamic.\n *\n * In most cases this function is a no-op but if called during\n * a PPR prerender it will postpone the current sub-tree and calling\n * it during a normal prerender will cause the entire prerender to abort\n */\nexport function markCurrentScopeAsDynamic(\n store: WorkStore,\n workUnitStore: undefined | Exclude<WorkUnitStore, PrerenderStoreModern>,\n expression: string\n): void {\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'request':\n break\n default:\n workUnitStore satisfies never\n }\n }\n\n // If we're forcing dynamic rendering or we're forcing static rendering, we\n // don't need to do anything here because the entire page is already dynamic\n // or it's static and it should not throw or postpone here.\n if (store.forceDynamic || store.forceStatic) return\n\n if (store.dynamicShouldError) {\n throw new StaticGenBailoutError(\n `Route ${store.route} with \\`dynamic = \"error\"\\` couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`\n )\n }\n\n if (workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-ppr':\n return postponeWithTracking(\n store.route,\n expression,\n workUnitStore.dynamicTracking\n )\n case 'prerender-legacy':\n workUnitStore.revalidate = 0\n\n // We aren't prerendering, but we are generating a static page. We need\n // to bail out of static generation.\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used ${expression}. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\n/**\n * This function is meant to be used when prerendering without cacheComponents or PPR.\n * When called during a build it will cause Next.js to consider the route as dynamic.\n *\n * @internal\n */\nexport function throwToInterruptStaticGeneration(\n expression: string,\n store: WorkStore,\n prerenderStore: PrerenderStoreLegacy\n): never {\n // We aren't prerendering but we are generating a static page. We need to bail out of static generation\n const err = new DynamicServerError(\n `Route ${store.route} couldn't be rendered statically because it used \\`${expression}\\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`\n )\n\n prerenderStore.revalidate = 0\n\n store.dynamicUsageDescription = expression\n store.dynamicUsageStack = err.stack\n\n throw err\n}\n\n/**\n * This function should be used to track whether something dynamic happened even when\n * we are in a dynamic render. This is useful for Dev where all renders are dynamic but\n * we still track whether dynamic APIs were accessed for helpful messaging\n *\n * @internal\n */\nexport function trackDynamicDataInDynamicRender(workUnitStore: WorkUnitStore) {\n switch (workUnitStore.type) {\n case 'cache':\n case 'unstable-cache':\n // Inside cache scopes, marking a scope as dynamic has no effect,\n // because the outer cache scope creates a cache boundary. This is\n // subtly different from reading a dynamic data source, which is\n // forbidden inside a cache scope.\n return\n case 'private-cache':\n // A private cache scope is already dynamic by definition.\n return\n case 'prerender':\n case 'prerender-runtime':\n case 'prerender-legacy':\n case 'prerender-ppr':\n case 'prerender-client':\n break\n case 'request':\n if (process.env.NODE_ENV !== 'production') {\n workUnitStore.usedDynamic = true\n }\n break\n default:\n workUnitStore satisfies never\n }\n}\n\nfunction abortOnSynchronousDynamicDataAccess(\n route: string,\n expression: string,\n prerenderStore: PrerenderStoreModern\n): void {\n const reason = `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n\n const error = createPrerenderInterruptedError(reason)\n\n prerenderStore.controller.abort(error)\n\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function abortOnSynchronousPlatformIOAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): void {\n const dynamicTracking = prerenderStore.dynamicTracking\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n}\n\n/**\n * use this function when prerendering with cacheComponents. If we are doing a\n * prospective prerender we don't actually abort because we want to discover\n * all caches for the shell. If this is the actual prerender we do abort.\n *\n * This function accepts a prerenderStore but the caller should ensure we're\n * actually running in cacheComponents mode.\n *\n * @internal\n */\nexport function abortAndThrowOnSynchronousRequestDataAccess(\n route: string,\n expression: string,\n errorWithStack: Error,\n prerenderStore: PrerenderStoreModern\n): never {\n const prerenderSignal = prerenderStore.controller.signal\n if (prerenderSignal.aborted === false) {\n // TODO it would be better to move this aborted check into the callsite so we can avoid making\n // the error object when it isn't relevant to the aborting of the prerender however\n // since we need the throw semantics regardless of whether we abort it is easier to land\n // this way. See how this was handled with `abortOnSynchronousPlatformIOAccess` for a closer\n // to ideal implementation\n abortOnSynchronousDynamicDataAccess(route, expression, prerenderStore)\n // It is important that we set this tracking value after aborting. Aborts are executed\n // synchronously except for the case where you abort during render itself. By setting this\n // value late we can use it to determine if any of the aborted tasks are the task that\n // called the sync IO expression in the first place.\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n if (dynamicTracking.syncDynamicErrorWithStack === null) {\n dynamicTracking.syncDynamicErrorWithStack = errorWithStack\n }\n }\n }\n throw createPrerenderInterruptedError(\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}.`\n )\n}\n\n/**\n * This component will call `React.postpone` that throws the postponed error.\n */\ntype PostponeProps = {\n reason: string\n route: string\n}\nexport function Postpone({ reason, route }: PostponeProps): never {\n const prerenderStore = workUnitAsyncStorage.getStore()\n const dynamicTracking =\n prerenderStore && prerenderStore.type === 'prerender-ppr'\n ? prerenderStore.dynamicTracking\n : null\n postponeWithTracking(route, reason, dynamicTracking)\n}\n\nexport function postponeWithTracking(\n route: string,\n expression: string,\n dynamicTracking: null | DynamicTrackingState\n): never {\n assertPostpone()\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n // When we aren't debugging, we don't need to create another error for the\n // stack trace.\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n\n React.unstable_postpone(createPostponeReason(route, expression))\n}\n\nfunction createPostponeReason(route: string, expression: string) {\n return (\n `Route ${route} needs to bail out of prerendering at this point because it used ${expression}. ` +\n `React throws this special object to indicate where. It should not be caught by ` +\n `your own try/catch. Learn more: https://nextjs.org/docs/messages/ppr-caught-error`\n )\n}\n\nexport function isDynamicPostpone(err: unknown) {\n if (\n typeof err === 'object' &&\n err !== null &&\n typeof (err as any).message === 'string'\n ) {\n return isDynamicPostponeReason((err as any).message)\n }\n return false\n}\n\nfunction isDynamicPostponeReason(reason: string) {\n return (\n reason.includes(\n 'needs to bail out of prerendering at this point because it used'\n ) &&\n reason.includes(\n 'Learn more: https://nextjs.org/docs/messages/ppr-caught-error'\n )\n )\n}\n\nif (isDynamicPostponeReason(createPostponeReason('%%%', '^^^')) === false) {\n throw new Error(\n 'Invariant: isDynamicPostpone misidentified a postpone reason. This is a bug in Next.js'\n )\n}\n\nconst NEXT_PRERENDER_INTERRUPTED = 'NEXT_PRERENDER_INTERRUPTED'\n\nfunction createPrerenderInterruptedError(message: string): Error {\n const error = new Error(message)\n ;(error as any).digest = NEXT_PRERENDER_INTERRUPTED\n return error\n}\n\ntype DigestError = Error & {\n digest: string\n}\n\nexport function isPrerenderInterruptedError(\n error: unknown\n): error is DigestError {\n return (\n typeof error === 'object' &&\n error !== null &&\n (error as any).digest === NEXT_PRERENDER_INTERRUPTED &&\n 'name' in error &&\n 'message' in error &&\n error instanceof Error\n )\n}\n\nexport function accessedDynamicData(\n dynamicAccesses: Array<DynamicAccess>\n): boolean {\n return dynamicAccesses.length > 0\n}\n\nexport function consumeDynamicAccess(\n serverDynamic: DynamicTrackingState,\n clientDynamic: DynamicTrackingState\n): DynamicTrackingState['dynamicAccesses'] {\n // We mutate because we only call this once we are no longer writing\n // to the dynamicTrackingState and it's more efficient than creating a new\n // array.\n serverDynamic.dynamicAccesses.push(...clientDynamic.dynamicAccesses)\n return serverDynamic.dynamicAccesses\n}\n\nexport function formatDynamicAPIAccesses(\n dynamicAccesses: Array<DynamicAccess>\n): string[] {\n return dynamicAccesses\n .filter(\n (access): access is Required<DynamicAccess> =>\n typeof access.stack === 'string' && access.stack.length > 0\n )\n .map(({ expression, stack }) => {\n stack = stack\n .split('\\n')\n // Remove the \"Error: \" prefix from the first line of the stack trace as\n // well as the first 4 lines of the stack trace which is the distance\n // from the user code and the `new Error().stack` call.\n .slice(4)\n .filter((line) => {\n // Exclude Next.js internals from the stack trace.\n if (line.includes('node_modules/next/')) {\n return false\n }\n\n // Exclude anonymous functions from the stack trace.\n if (line.includes(' (<anonymous>)')) {\n return false\n }\n\n // Exclude Node.js internals from the stack trace.\n if (line.includes(' (node:')) {\n return false\n }\n\n return true\n })\n .join('\\n')\n return `Dynamic API Usage Debug - ${expression}:\\n${stack}`\n })\n}\n\nfunction assertPostpone() {\n if (!hasPostpone) {\n throw new Error(\n `Invariant: React.unstable_postpone is not defined. This suggests the wrong version of React was loaded. This is a bug in Next.js`\n )\n }\n}\n\n/**\n * This is a bit of a hack to allow us to abort a render using a Postpone instance instead of an Error which changes React's\n * abort semantics slightly.\n */\nexport function createRenderInBrowserAbortSignal(): AbortSignal {\n const controller = new AbortController()\n controller.abort(new BailoutToCSRError('Render in Browser'))\n return controller.signal\n}\n\n/**\n * In a prerender, we may end up with hanging Promises as inputs due them\n * stalling on connection() or because they're loading dynamic data. In that\n * case we need to abort the encoding of arguments since they'll never complete.\n */\nexport function createHangingInputAbortSignal(\n workUnitStore: WorkUnitStore\n): AbortSignal | undefined {\n switch (workUnitStore.type) {\n case 'prerender':\n case 'prerender-runtime':\n const controller = new AbortController()\n\n if (workUnitStore.cacheSignal) {\n // If we have a cacheSignal it means we're in a prospective render. If\n // the input we're waiting on is coming from another cache, we do want\n // to wait for it so that we can resolve this cache entry too.\n workUnitStore.cacheSignal.inputReady().then(() => {\n controller.abort()\n })\n } else {\n // Otherwise we're in the final render and we should already have all\n // our caches filled.\n // If the prerender uses stages, we have wait until the runtime stage,\n // at which point all runtime inputs will be resolved.\n // (otherwise, a runtime prerender might consider `cookies()` hanging\n // even though they'd resolve in the next task.)\n //\n // We might still be waiting on some microtasks so we\n // wait one tick before giving up. When we give up, we still want to\n // render the content of this cache as deeply as we can so that we can\n // suspend as deeply as possible in the tree or not at all if we don't\n // end up waiting for the input.\n const runtimeStagePromise = getRuntimeStagePromise(workUnitStore)\n if (runtimeStagePromise) {\n runtimeStagePromise.then(() =>\n scheduleOnNextTick(() => controller.abort())\n )\n } else {\n scheduleOnNextTick(() => controller.abort())\n }\n }\n\n return controller.signal\n case 'prerender-client':\n case 'prerender-ppr':\n case 'prerender-legacy':\n case 'request':\n case 'cache':\n case 'private-cache':\n case 'unstable-cache':\n return undefined\n default:\n workUnitStore satisfies never\n }\n}\n\nexport function annotateDynamicAccess(\n expression: string,\n prerenderStore: PrerenderStoreModern\n) {\n const dynamicTracking = prerenderStore.dynamicTracking\n if (dynamicTracking) {\n dynamicTracking.dynamicAccesses.push({\n stack: dynamicTracking.isDebugDynamicAccesses\n ? new Error().stack\n : undefined,\n expression,\n })\n }\n}\n\nexport function useDynamicRouteParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n if (workStore && workUnitStore) {\n switch (workUnitStore.type) {\n case 'prerender-client':\n case 'prerender': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n\n if (fallbackParams && fallbackParams.size > 0) {\n // We are in a prerender with cacheComponents semantics. We are going to\n // hang here and never resolve. This will cause the currently\n // rendering component to effectively be a dynamic hole.\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n }\n break\n }\n case 'prerender-ppr': {\n const fallbackParams = workUnitStore.fallbackRouteParams\n if (fallbackParams && fallbackParams.size > 0) {\n return postponeWithTracking(\n workStore.route,\n expression,\n workUnitStore.dynamicTracking\n )\n }\n break\n }\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called during a runtime prerender. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'prerender-legacy':\n case 'request':\n case 'unstable-cache':\n break\n default:\n workUnitStore satisfies never\n }\n }\n}\n\nexport function useDynamicSearchParams(expression: string) {\n const workStore = workAsyncStorage.getStore()\n const workUnitStore = workUnitAsyncStorage.getStore()\n\n if (!workStore) {\n // We assume pages router context and just return\n return\n }\n\n if (!workUnitStore) {\n throwForMissingRequestStore(expression)\n }\n\n switch (workUnitStore.type) {\n case 'prerender-client': {\n React.use(\n makeHangingPromise(\n workUnitStore.renderSignal,\n workStore.route,\n expression\n )\n )\n break\n }\n case 'prerender-legacy':\n case 'prerender-ppr': {\n if (workStore.forceStatic) {\n return\n }\n throw new BailoutToCSRError(expression)\n }\n case 'prerender':\n case 'prerender-runtime':\n throw new InvariantError(\n `\\`${expression}\\` was called from a Server Component. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'cache':\n case 'unstable-cache':\n case 'private-cache':\n throw new InvariantError(\n `\\`${expression}\\` was called inside a cache scope. Next.js should be preventing ${expression} from being included in server components statically, but did not in this case.`\n )\n case 'request':\n return\n default:\n workUnitStore satisfies never\n }\n}\n\nconst hasSuspenseRegex = /\\n\\s+at Suspense \\(<anonymous>\\)/\n\n// Common implicit body tags that React will treat as body when placed directly in html\nconst bodyAndImplicitTags =\n 'body|div|main|section|article|aside|header|footer|nav|form|p|span|h1|h2|h3|h4|h5|h6'\n\n// Detects when RootLayoutBoundary (our framework marker component) appears\n// after Suspense in the component stack, indicating the root layout is wrapped\n// within a Suspense boundary. Ensures no body/html/implicit-body components are in between.\n//\n// Example matches:\n// at Suspense (<anonymous>)\n// at __next_root_layout_boundary__ (<anonymous>)\n//\n// Or with other components in between (but not body/html/implicit-body):\n// at Suspense (<anonymous>)\n// at SomeComponent (<anonymous>)\n// at __next_root_layout_boundary__ (<anonymous>)\nconst hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex = new RegExp(\n `\\\\n\\\\s+at Suspense \\\\(<anonymous>\\\\)(?:(?!\\\\n\\\\s+at (?:${bodyAndImplicitTags}) \\\\(<anonymous>\\\\))[\\\\s\\\\S])*?\\\\n\\\\s+at ${ROOT_LAYOUT_BOUNDARY_NAME} \\\\([^\\\\n]*\\\\)`\n)\n\nconst hasMetadataRegex = new RegExp(\n `\\\\n\\\\s+at ${METADATA_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasViewportRegex = new RegExp(\n `\\\\n\\\\s+at ${VIEWPORT_BOUNDARY_NAME}[\\\\n\\\\s]`\n)\nconst hasOutletRegex = new RegExp(`\\\\n\\\\s+at ${OUTLET_BOUNDARY_NAME}[\\\\n\\\\s]`)\n\nexport function trackAllowedDynamicAccess(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n dynamicValidation.hasDynamicMetadata = true\n return\n } else if (hasViewportRegex.test(componentStack)) {\n dynamicValidation.hasDynamicViewport = true\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message =\n `Route \"${workStore.route}\": Uncached data was accessed outside of ` +\n '<Suspense>. This delays the entire page from rendering, resulting in a ' +\n 'slow user experience. Learn more: ' +\n 'https://nextjs.org/docs/messages/blocking-route'\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInRuntimeShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateMetadata\\`. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Uncached data or \\`connection()\\` was accessed outside of \\`<Suspense>\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\nexport function trackDynamicHoleInStaticShell(\n workStore: WorkStore,\n componentStack: string,\n dynamicValidation: DynamicValidationState,\n clientDynamic: DynamicTrackingState\n) {\n if (hasOutletRegex.test(componentStack)) {\n // We don't need to track that this is dynamic. It is only so when something else is also dynamic.\n return\n } else if (hasMetadataRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateMetadata\\` or you have file-based metadata such as icons that depend on dynamic params segments. Except for this instance, the page would have been entirely prerenderable which may have been the intended behavior. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicMetadata = error\n return\n } else if (hasViewportRegex.test(componentStack)) {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed inside \\`generateViewport\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n } else if (\n hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex.test(\n componentStack\n )\n ) {\n // For Suspense within body, the prelude wouldn't be empty so it wouldn't violate the empty static shells rule.\n // But if you have Suspense above body, the prelude is empty but we allow that because having Suspense\n // is an explicit signal from the user that they acknowledge the empty shell and want dynamic rendering.\n dynamicValidation.hasAllowedDynamic = true\n dynamicValidation.hasSuspenseAboveBody = true\n return\n } else if (hasSuspenseRegex.test(componentStack)) {\n // this error had a Suspense boundary above it so we don't need to report it as a source\n // of disallowed\n dynamicValidation.hasAllowedDynamic = true\n return\n } else if (clientDynamic.syncDynamicErrorWithStack) {\n // This task was the task that called the sync error.\n dynamicValidation.dynamicErrors.push(\n clientDynamic.syncDynamicErrorWithStack\n )\n return\n } else {\n const message = `Route \"${workStore.route}\": Runtime data such as \\`cookies()\\`, \\`headers()\\`, \\`params\\`, or \\`searchParams\\` was accessed outside of \\`<Suspense>\\`. This delays the entire page from rendering, resulting in a slow user experience. Learn more: https://nextjs.org/docs/messages/blocking-route`\n const error = createErrorWithComponentOrOwnerStack(message, componentStack)\n dynamicValidation.dynamicErrors.push(error)\n return\n }\n}\n\n/**\n * In dev mode, we prefer using the owner stack, otherwise the provided\n * component stack is used.\n */\nfunction createErrorWithComponentOrOwnerStack(\n message: string,\n componentStack: string\n) {\n const ownerStack =\n process.env.NODE_ENV !== 'production' && React.captureOwnerStack\n ? React.captureOwnerStack()\n : null\n\n const error = new Error(message)\n // TODO go back to owner stack here if available. This is temporarily using componentStack to get the right\n //\n error.stack = error.name + ': ' + message + (ownerStack || componentStack)\n return error\n}\n\nexport enum PreludeState {\n Full = 0,\n Empty = 1,\n Errored = 2,\n}\n\nexport function logDisallowedDynamicError(\n workStore: WorkStore,\n error: Error\n): void {\n console.error(error)\n\n if (!workStore.dev) {\n if (workStore.hasReadableErrorStacks) {\n console.error(\n `To get a more detailed stack trace and pinpoint the issue, start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.`\n )\n } else {\n console.error(`To get a more detailed stack trace and pinpoint the issue, try one of the following:\n - Start the app in development mode by running \\`next dev\\`, then open \"${workStore.route}\" in your browser to investigate the error.\n - Rerun the production build with \\`next build --debug-prerender\\` to generate better stack traces.`)\n }\n }\n}\n\nexport function throwIfDisallowedDynamic(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState,\n serverDynamic: DynamicTrackingState\n): void {\n if (serverDynamic.syncDynamicErrorWithStack) {\n logDisallowedDynamicError(\n workStore,\n serverDynamic.syncDynamicErrorWithStack\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude !== PreludeState.Full) {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return\n }\n\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n for (let i = 0; i < dynamicErrors.length; i++) {\n logDisallowedDynamicError(workStore, dynamicErrors[i])\n }\n\n throw new StaticGenBailoutError()\n }\n\n // If we got this far then the only other thing that could be blocking\n // the root is dynamic Viewport. If this is dynamic then\n // you need to opt into that by adding a Suspense boundary above the body\n // to indicate your are ok with fully dynamic rendering.\n if (dynamicValidation.hasDynamicViewport) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateViewport\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) without explicitly allowing fully dynamic rendering. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-viewport`\n )\n throw new StaticGenBailoutError()\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n console.error(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason. This is a bug in Next.js.`\n )\n throw new StaticGenBailoutError()\n }\n } else {\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.hasDynamicMetadata\n ) {\n console.error(\n `Route \"${workStore.route}\" has a \\`generateMetadata\\` that depends on Request data (\\`cookies()\\`, etc...) or uncached external data (\\`fetch(...)\\`, etc...) when the rest of the route does not. See more info here: https://nextjs.org/docs/messages/next-prerender-dynamic-metadata`\n )\n throw new StaticGenBailoutError()\n }\n }\n}\n\nexport function getStaticShellDisallowedDynamicReasons(\n workStore: WorkStore,\n prelude: PreludeState,\n dynamicValidation: DynamicValidationState\n): Array<Error> {\n if (dynamicValidation.hasSuspenseAboveBody) {\n // This route has opted into allowing fully dynamic rendering\n // by including a Suspense boundary above the body. In this case\n // a lack of a shell is not considered disallowed so we simply return\n return []\n }\n\n if (prelude !== PreludeState.Full) {\n // We didn't have any sync bailouts but there may be user code which\n // blocked the root. We would have captured these during the prerender\n // and can log them here and then terminate the build/validating render\n const dynamicErrors = dynamicValidation.dynamicErrors\n if (dynamicErrors.length > 0) {\n return dynamicErrors\n }\n\n if (prelude === PreludeState.Empty) {\n // If we ever get this far then we messed up the tracking of invalid dynamic.\n // We still adhere to the constraint that you must produce a shell but invite the\n // user to report this as a bug in Next.js.\n return [\n new InvariantError(\n `Route \"${workStore.route}\" did not produce a static shell and Next.js was unable to determine a reason.`\n ),\n ]\n }\n } else {\n // We have a prelude but we might still have dynamic metadata without any other dynamic access\n if (\n dynamicValidation.hasAllowedDynamic === false &&\n dynamicValidation.dynamicErrors.length === 0 &&\n dynamicValidation.dynamicMetadata\n ) {\n return [dynamicValidation.dynamicMetadata]\n }\n }\n // We had a non-empty prelude and there are no dynamic holes\n return []\n}\n\nexport function delayUntilRuntimeStage<T>(\n prerenderStore: PrerenderStoreModernRuntime,\n result: Promise<T>\n): Promise<T> {\n if (prerenderStore.runtimeStagePromise) {\n return prerenderStore.runtimeStagePromise.then(() => result)\n }\n return result\n}\n"],"names":["Postpone","PreludeState","abortAndThrowOnSynchronousRequestDataAccess","abortOnSynchronousPlatformIOAccess","accessedDynamicData","annotateDynamicAccess","consumeDynamicAccess","createDynamicTrackingState","createDynamicValidationState","createHangingInputAbortSignal","createRenderInBrowserAbortSignal","delayUntilRuntimeStage","formatDynamicAPIAccesses","getFirstDynamicReason","getStaticShellDisallowedDynamicReasons","isDynamicPostpone","isPrerenderInterruptedError","logDisallowedDynamicError","markCurrentScopeAsDynamic","postponeWithTracking","throwIfDisallowedDynamic","throwToInterruptStaticGeneration","trackAllowedDynamicAccess","trackDynamicDataInDynamicRender","trackDynamicHoleInRuntimeShell","trackDynamicHoleInStaticShell","useDynamicRouteParams","useDynamicSearchParams","hasPostpone","React","unstable_postpone","isDebugDynamicAccesses","dynamicAccesses","syncDynamicErrorWithStack","hasSuspenseAboveBody","hasDynamicMetadata","dynamicMetadata","hasDynamicViewport","hasAllowedDynamic","dynamicErrors","trackingState","expression","store","workUnitStore","type","forceDynamic","forceStatic","dynamicShouldError","StaticGenBailoutError","route","dynamicTracking","revalidate","err","DynamicServerError","dynamicUsageDescription","dynamicUsageStack","stack","process","env","NODE_ENV","usedDynamic","prerenderStore","abortOnSynchronousDynamicDataAccess","reason","error","createPrerenderInterruptedError","controller","abort","push","Error","undefined","errorWithStack","prerenderSignal","signal","aborted","workUnitAsyncStorage","getStore","assertPostpone","createPostponeReason","message","isDynamicPostponeReason","includes","NEXT_PRERENDER_INTERRUPTED","digest","length","serverDynamic","clientDynamic","filter","access","map","split","slice","line","join","AbortController","BailoutToCSRError","cacheSignal","inputReady","then","runtimeStagePromise","getRuntimeStagePromise","scheduleOnNextTick","workStore","workAsyncStorage","fallbackParams","fallbackRouteParams","size","use","makeHangingPromise","renderSignal","InvariantError","throwForMissingRequestStore","hasSuspenseRegex","bodyAndImplicitTags","hasSuspenseBeforeRootLayoutWithoutBodyOrImplicitBodyRegex","RegExp","ROOT_LAYOUT_BOUNDARY_NAME","hasMetadataRegex","METADATA_BOUNDARY_NAME","hasViewportRegex","VIEWPORT_BOUNDARY_NAME","hasOutletRegex","OUTLET_BOUNDARY_NAME","componentStack","dynamicValidation","test","createErrorWithComponentOrOwnerStack","ownerStack","captureOwnerStack","name","console","dev","hasReadableErrorStacks","prelude","i","result"],"mappings":"AAyLYyD,QAAQC,GAAG,CAACC,QAAQ,KAAK;AAzLrC;;;;;;;;;;;;;;;;;;;;CAoBC,GAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoUe3D,QAAQ,EAAA;eAARA;;IAshBJC,YAAY,EAAA;eAAZA;;IA3jBIC,2CAA2C,EAAA;eAA3CA;;IA7BAC,kCAAkC,EAAA;eAAlCA;;IA4JAC,mBAAmB,EAAA;eAAnBA;;IAkIAC,qBAAqB,EAAA;eAArBA;;IA5HAC,oBAAoB,EAAA;eAApBA;;IA3VAC,0BAA0B,EAAA;eAA1BA;;IAUAC,4BAA4B,EAAA;eAA5BA;;IAyZAC,6BAA6B,EAAA;eAA7BA;;IAXAC,gCAAgC,EAAA;eAAhCA;;IAkgBAC,sBAAsB,EAAA;eAAtBA;;IApjBAC,wBAAwB,EAAA;eAAxBA;;IAjVAC,qBAAqB,EAAA;eAArBA;;IAw1BAC,sCAAsC,EAAA;eAAtCA;;IA7kBAC,iBAAiB,EAAA;eAAjBA;;IAwCAC,2BAA2B,EAAA;eAA3BA;;IA+cAC,yBAAyB,EAAA;eAAzBA;;IArvBAC,yBAAyB,EAAA;eAAzBA;;IAkOAC,oBAAoB,EAAA;eAApBA;;IAsiBAC,wBAAwB,EAAA;eAAxBA;;IA9rBAC,gCAAgC,EAAA;eAAhCA;;IA8fAC,yBAAyB,EAAA;eAAzBA;;IAreAC,+BAA+B,EAAA;eAA/BA;;IAshBAC,8BAA8B,EAAA;eAA9BA;;IAiDAC,6BAA6B,EAAA;eAA7BA;;IAtOAC,qBAAqB,EAAA;eAArBA;;IAqDAC,sBAAsB,EAAA;eAAtBA;;;8DAzlBE;oCAEiB;yCACG;8CAK/B;0CAC0B;uCACE;mCAM5B;2BAC4B;8BACD;gCACH;;;;;;AAE/B,MAAMC,cAAc,OAAOC,OAAAA,OAAK,CAACC,iBAAiB,KAAK;AAyChD,SAASvB,2BACdwB,sBAA2C;IAE3C,OAAO;QACLA;QACAC,iBAAiB,EAAE;QACnBC,2BAA2B;IAC7B;AACF;AAEO,SAASzB;IACd,OAAO;QACL0B,sBAAsB;QACtBC,oBAAoB;QACpBC,iBAAiB;QACjBC,oBAAoB;QACpBC,mBAAmB;QACnBC,eAAe,EAAE;IACnB;AACF;AAEO,SAAS1B,sBACd2B,aAAmC;QAE5BA;IAAP,OAAA,CAAOA,kCAAAA,cAAcR,eAAe,CAAC,EAAE,KAAA,OAAA,KAAA,IAAhCQ,gCAAkCC,UAAU;AACrD;AASO,SAASvB,0BACdwB,KAAgB,EAChBC,aAAuE,EACvEF,UAAkB;IAElB,IAAIE,eAAe;QACjB,OAAQA,cAAcC,IAAI;YACxB,KAAK;YACL,KAAK;gBACH,iEAAiE;gBACjE,kEAAkE;gBAClE,gEAAgE;gBAChE,kCAAkC;gBAClC;YACF,KAAK;gBACH,0DAA0D;gBAC1D;YACF,KAAK;YACL,KAAK;YACL,KAAK;gBACH;YACF;gBACED;QACJ;IACF;IAEA,2EAA2E;IAC3E,4EAA4E;IAC5E,2DAA2D;IAC3D,IAAID,MAAMG,YAAY,IAAIH,MAAMI,WAAW,EAAE;IAE7C,IAAIJ,MAAMK,kBAAkB,EAAE;QAC5B,MAAM,OAAA,cAEL,CAFK,IAAIC,yBAAAA,qBAAqB,CAC7B,CAAC,MAAM,EAAEN,MAAMO,KAAK,CAAC,8EAA8E,EAAER,WAAW,4HAA4H,CAAC,GADzO,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;IAEA,IAAIE,eAAe;QACjB,OAAQA,cAAcC,IAAI;YACxB,KAAK;gBACH,OAAOzB,qBACLuB,MAAMO,KAAK,EACXR,YACAE,cAAcO,eAAe;YAEjC,KAAK;gBACHP,cAAcQ,UAAU,GAAG;gBAE3B,uEAAuE;gBACvE,oCAAoC;gBACpC,MAAMC,MAAM,OAAA,cAEX,CAFW,IAAIC,oBAAAA,kBAAkB,CAChC,CAAC,MAAM,EAAEX,MAAMO,KAAK,CAAC,iDAAiD,EAAER,WAAW,2EAA2E,CAAC,GADrJ,qBAAA;2BAAA;gCAAA;kCAAA;gBAEZ;gBACAC,MAAMY,uBAAuB,GAAGb;gBAChCC,MAAMa,iBAAiB,GAAGH,IAAII,KAAK;gBAEnC,MAAMJ;YACR,KAAK;gBACH,wCAA2C;oBACzCT,cAAciB,WAAW,GAAG;gBAC9B;gBACA;YACF;gBACEjB;QACJ;IACF;AACF;AAQO,SAAStB,iCACdoB,UAAkB,EAClBC,KAAgB,EAChBmB,cAAoC;IAEpC,uGAAuG;IACvG,MAAMT,MAAM,OAAA,cAEX,CAFW,IAAIC,oBAAAA,kBAAkB,CAChC,CAAC,MAAM,EAAEX,MAAMO,KAAK,CAAC,mDAAmD,EAAER,WAAW,6EAA6E,CAAC,GADzJ,qBAAA;eAAA;oBAAA;sBAAA;IAEZ;IAEAoB,eAAeV,UAAU,GAAG;IAE5BT,MAAMY,uBAAuB,GAAGb;IAChCC,MAAMa,iBAAiB,GAAGH,IAAII,KAAK;IAEnC,MAAMJ;AACR;AASO,SAAS7B,gCAAgCoB,aAA4B;IAC1E,OAAQA,cAAcC,IAAI;QACxB,KAAK;QACL,KAAK;YACH,iEAAiE;YACjE,kEAAkE;YAClE,gEAAgE;YAChE,kCAAkC;YAClC;QACF,KAAK;YACH,0DAA0D;YAC1D;QACF,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACH;QACF,KAAK;YACH,IAAIa,QAAQC,GAAG,CAACC,QAAQ,KAAK,WAAc;gBACzChB,cAAciB,WAAW,GAAG;YAC9B;YACA;QACF;YACEjB;IACJ;AACF;AAEA,SAASmB,oCACPb,KAAa,EACbR,UAAkB,EAClBoB,cAAoC;IAEpC,MAAME,SAAS,CAAC,MAAM,EAAEd,MAAM,iEAAiE,EAAER,WAAW,CAAC,CAAC;IAE9G,MAAMuB,QAAQC,gCAAgCF;IAE9CF,eAAeK,UAAU,CAACC,KAAK,CAACH;IAEhC,MAAMd,kBAAkBW,eAAeX,eAAe;IACtD,IAAIA,iBAAiB;QACnBA,gBAAgBlB,eAAe,CAACoC,IAAI,CAAC;YACnC,0EAA0E;YAC1E,eAAe;YACfZ,OAAON,gBAAgBnB,sBAAsB,GACzC,IAAIsC,QAAQb,KAAK,GACjBc;YACJ7B;QACF;IACF;AACF;AAEO,SAAStC,mCACd8C,KAAa,EACbR,UAAkB,EAClB8B,cAAqB,EACrBV,cAAoC;IAEpC,MAAMX,kBAAkBW,eAAeX,eAAe;IACtDY,oCAAoCb,OAAOR,YAAYoB;IACvD,sFAAsF;IACtF,0FAA0F;IAC1F,sFAAsF;IACtF,oDAAoD;IACpD,IAAIX,iBAAiB;QACnB,IAAIA,gBAAgBjB,yBAAyB,KAAK,MAAM;YACtDiB,gBAAgBjB,yBAAyB,GAAGsC;QAC9C;IACF;AACF;AAYO,SAASrE,4CACd+C,KAAa,EACbR,UAAkB,EAClB8B,cAAqB,EACrBV,cAAoC;IAEpC,MAAMW,kBAAkBX,eAAeK,UAAU,CAACO,MAAM;IACxD,IAAID,gBAAgBE,OAAO,KAAK,OAAO;QACrC,8FAA8F;QAC9F,mFAAmF;QACnF,wFAAwF;QACxF,4FAA4F;QAC5F,0BAA0B;QAC1BZ,oCAAoCb,OAAOR,YAAYoB;QACvD,sFAAsF;QACtF,0FAA0F;QAC1F,sFAAsF;QACtF,oDAAoD;QACpD,MAAMX,kBAAkBW,eAAeX,eAAe;QACtD,IAAIA,iBAAiB;YACnB,IAAIA,gBAAgBjB,yBAAyB,KAAK,MAAM;gBACtDiB,gBAAgBjB,yBAAyB,GAAGsC;YAC9C;QACF;IACF;IACA,MAAMN,gCACJ,CAAC,MAAM,EAAEhB,MAAM,iEAAiE,EAAER,WAAW,CAAC,CAAC;AAEnG;AASO,SAASzC,SAAS,EAAE+D,MAAM,EAAEd,KAAK,EAAiB;IACvD,MAAMY,iBAAiBc,8BAAAA,oBAAoB,CAACC,QAAQ;IACpD,MAAM1B,kBACJW,kBAAkBA,eAAejB,IAAI,KAAK,kBACtCiB,eAAeX,eAAe,GAC9B;IACN/B,qBAAqB8B,OAAOc,QAAQb;AACtC;AAEO,SAAS/B,qBACd8B,KAAa,EACbR,UAAkB,EAClBS,eAA4C;IAE5C2B;IACA,IAAI3B,iBAAiB;QACnBA,gBAAgBlB,eAAe,CAACoC,IAAI,CAAC;YACnC,0EAA0E;YAC1E,eAAe;YACfZ,OAAON,gBAAgBnB,sBAAsB,GACzC,IAAIsC,QAAQb,KAAK,GACjBc;YACJ7B;QACF;IACF;IAEAZ,OAAAA,OAAK,CAACC,iBAAiB,CAACgD,qBAAqB7B,OAAOR;AACtD;AAEA,SAASqC,qBAAqB7B,KAAa,EAAER,UAAkB;IAC7D,OACE,CAAC,MAAM,EAAEQ,MAAM,iEAAiE,EAAER,WAAW,EAAE,CAAC,GAChG,CAAC,+EAA+E,CAAC,GACjF,CAAC,iFAAiF,CAAC;AAEvF;AAEO,SAAS1B,kBAAkBqC,GAAY;IAC5C,IACE,OAAOA,QAAQ,YACfA,QAAQ,QACR,OAAQA,IAAY2B,OAAO,KAAK,UAChC;QACA,OAAOC,wBAAyB5B,IAAY2B,OAAO;IACrD;IACA,OAAO;AACT;AAEA,SAASC,wBAAwBjB,MAAc;IAC7C,OACEA,OAAOkB,QAAQ,CACb,sEAEFlB,OAAOkB,QAAQ,CACb;AAGN;AAEA,IAAID,wBAAwBF,qBAAqB,OAAO,YAAY,OAAO;IACzE,MAAM,OAAA,cAEL,CAFK,IAAIT,MACR,2FADI,qBAAA;eAAA;oBAAA;sBAAA;IAEN;AACF;AAEA,MAAMa,6BAA6B;AAEnC,SAASjB,gCAAgCc,OAAe;IACtD,MAAMf,QAAQ,OAAA,cAAkB,CAAlB,IAAIK,MAAMU,UAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAiB;IAC7Bf,MAAcmB,MAAM,GAAGD;IACzB,OAAOlB;AACT;AAMO,SAAShD,4BACdgD,KAAc;IAEd,OACE,OAAOA,UAAU,YACjBA,UAAU,QACTA,MAAcmB,MAAM,KAAKD,8BAC1B,UAAUlB,SACV,aAAaA,SACbA,iBAAiBK;AAErB;AAEO,SAASjE,oBACd4B,eAAqC;IAErC,OAAOA,gBAAgBoD,MAAM,GAAG;AAClC;AAEO,SAAS9E,qBACd+E,aAAmC,EACnCC,aAAmC;IAEnC,oEAAoE;IACpE,0EAA0E;IAC1E,SAAS;IACTD,cAAcrD,eAAe,CAACoC,IAAI,IAAIkB,cAActD,eAAe;IACnE,OAAOqD,cAAcrD,eAAe;AACtC;AAEO,SAASpB,yBACdoB,eAAqC;IAErC,OAAOA,gBACJuD,MAAM,CACL,CAACC,SACC,OAAOA,OAAOhC,KAAK,KAAK,YAAYgC,OAAOhC,KAAK,CAAC4B,MAAM,GAAG,GAE7DK,GAAG,CAAC,CAAC,EAAEhD,UAAU,EAAEe,KAAK,EAAE;QACzBA,QAAQA,MACLkC,KAAK,CAAC,MACP,wEAAwE;QACxE,qEAAqE;QACrE,uDAAuD;SACtDC,KAAK,CAAC,GACNJ,MAAM,CAAC,CAACK;YACP,kDAAkD;YAClD,IAAIA,KAAKX,QAAQ,CAAC,uBAAuB;gBACvC,OAAO;YACT;YAEA,oDAAoD;YACpD,IAAIW,KAAKX,QAAQ,CAAC,mBAAmB;gBACnC,OAAO;YACT;YAEA,kDAAkD;YAClD,IAAIW,KAAKX,QAAQ,CAAC,YAAY;gBAC5B,OAAO;YACT;YAEA,OAAO;QACT,GACCY,IAAI,CAAC;QACR,OAAO,CAAC,0BAA0B,EAAEpD,WAAW,GAAG,EAAEe,OAAO;IAC7D;AACJ;AAEA,SAASqB;IACP,IAAI,CAACjD,aAAa;QAChB,MAAM,OAAA,cAEL,CAFK,IAAIyC,MACR,CAAC,gIAAgI,CAAC,GAD9H,qBAAA;mBAAA;wBAAA;0BAAA;QAEN;IACF;AACF;AAMO,SAAS3D;IACd,MAAMwD,aAAa,IAAI4B;IACvB5B,WAAWC,KAAK,CAAC,OAAA,cAA0C,CAA1C,IAAI4B,cAAAA,iBAAiB,CAAC,sBAAtB,qBAAA;eAAA;oBAAA;sBAAA;IAAyC;IAC1D,OAAO7B,WAAWO,MAAM;AAC1B;AAOO,SAAShE,8BACdkC,aAA4B;IAE5B,OAAQA,cAAcC,IAAI;QACxB,KAAK;QACL,KAAK;YACH,MAAMsB,aAAa,IAAI4B;YAEvB,IAAInD,cAAcqD,WAAW,EAAE;gBAC7B,sEAAsE;gBACtE,sEAAsE;gBACtE,8DAA8D;gBAC9DrD,cAAcqD,WAAW,CAACC,UAAU,GAAGC,IAAI,CAAC;oBAC1ChC,WAAWC,KAAK;gBAClB;YACF,OAAO;gBACL,qEAAqE;gBACrE,qBAAqB;gBACrB,sEAAsE;gBACtE,sDAAsD;gBACtD,qEAAqE;gBACrE,iDAAiD;gBACjD,EAAE;gBACF,qDAAqD;gBACrD,oEAAoE;gBACpE,sEAAsE;gBACtE,sEAAsE;gBACtE,gCAAgC;gBAChC,MAAMgC,sBAAsBC,CAAAA,GAAAA,8BAAAA,sBAAsB,EAACzD;gBACnD,IAAIwD,qBAAqB;oBACvBA,oBAAoBD,IAAI,CAAC,IACvBG,CAAAA,GAAAA,WAAAA,kBAAkB,EAAC,IAAMnC,WAAWC,KAAK;gBAE7C,OAAO;oBACLkC,CAAAA,GAAAA,WAAAA,kBAAkB,EAAC,IAAMnC,WAAWC,KAAK;gBAC3C;YACF;YAEA,OAAOD,WAAWO,MAAM;QAC1B,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;QACL,KAAK;YACH,OAAOH;QACT;YACE3B;IACJ;AACF;AAEO,SAAStC,sBACdoC,UAAkB,EAClBoB,cAAoC;IAEpC,MAAMX,kBAAkBW,eAAeX,eAAe;IACtD,IAAIA,iBAAiB;QACnBA,gBAAgBlB,eAAe,CAACoC,IAAI,CAAC;YACnCZ,OAAON,gBAAgBnB,sBAAsB,GACzC,IAAIsC,QAAQb,KAAK,GACjBc;YACJ7B;QACF;IACF;AACF;AAEO,SAASf,sBAAsBe,UAAkB;IACtD,MAAM6D,YAAYC,0BAAAA,gBAAgB,CAAC3B,QAAQ;IAC3C,MAAMjC,gBAAgBgC,8BAAAA,oBAAoB,CAACC,QAAQ;IACnD,IAAI0B,aAAa3D,eAAe;QAC9B,OAAQA,cAAcC,IAAI;YACxB,KAAK;YACL,KAAK;gBAAa;oBAChB,MAAM4D,iBAAiB7D,cAAc8D,mBAAmB;oBAExD,IAAID,kBAAkBA,eAAeE,IAAI,GAAG,GAAG;wBAC7C,wEAAwE;wBACxE,6DAA6D;wBAC7D,wDAAwD;wBACxD7E,OAAAA,OAAK,CAAC8E,GAAG,CACPC,CAAAA,GAAAA,uBAAAA,kBAAkB,EAChBjE,cAAckE,YAAY,EAC1BP,UAAUrD,KAAK,EACfR;oBAGN;oBACA;gBACF;YACA,KAAK;gBAAiB;oBACpB,MAAM+D,iBAAiB7D,cAAc8D,mBAAmB;oBACxD,IAAID,kBAAkBA,eAAeE,IAAI,GAAG,GAAG;wBAC7C,OAAOvF,qBACLmF,UAAUrD,KAAK,EACfR,YACAE,cAAcO,eAAe;oBAEjC;oBACA;gBACF;YACA,KAAK;gBACH,MAAM,OAAA,cAEL,CAFK,IAAI4D,gBAAAA,cAAc,CACtB,CAAC,EAAE,EAAErE,WAAW,uEAAuE,EAAEA,WAAW,+EAA+E,CAAC,GADhL,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF,KAAK;YACL,KAAK;gBACH,MAAM,OAAA,cAEL,CAFK,IAAIqE,gBAAAA,cAAc,CACtB,CAAC,EAAE,EAAErE,WAAW,iEAAiE,EAAEA,WAAW,+EAA+E,CAAC,GAD1K,qBAAA;2BAAA;gCAAA;kCAAA;gBAEN;YACF,KAAK;YACL,KAAK;YACL,KAAK;gBACH;YACF;gBACEE;QACJ;IACF;AACF;AAEO,SAAShB,uBAAuBc,UAAkB;IACvD,MAAM6D,YAAYC,0BAAAA,gBAAgB,CAAC3B,QAAQ;IAC3C,MAAMjC,gBAAgBgC,8BAAAA,oBAAoB,CAACC,QAAQ;IAEnD,IAAI,CAAC0B,WAAW;QACd,iDAAiD;QACjD;IACF;IAEA,IAAI,CAAC3D,eAAe;QAClBoE,CAAAA,GAAAA,8BAAAA,2BAA2B,EAACtE;IAC9B;IAEA,OAAQE,cAAcC,IAAI;QACxB,KAAK;YAAoB;gBACvBf,OAAAA,OAAK,CAAC8E,GAAG,CACPC,CAAAA,GAAAA,uBAAAA,kBAAkB,EAChBjE,cAAckE,YAAY,EAC1BP,UAAUrD,KAAK,EACfR;gBAGJ;YACF;QACA,KAAK;QACL,KAAK;YAAiB;gBACpB,IAAI6D,UAAUxD,WAAW,EAAE;oBACzB;gBACF;gBACA,MAAM,OAAA,cAAiC,CAAjC,IAAIiD,cAAAA,iBAAiB,CAACtD,aAAtB,qBAAA;2BAAA;gCAAA;kCAAA;gBAAgC;YACxC;QACA,KAAK;QACL,KAAK;YACH,MAAM,OAAA,cAEL,CAFK,IAAIqE,gBAAAA,cAAc,CACtB,CAAC,EAAE,EAAErE,WAAW,oEAAoE,EAAEA,WAAW,+EAA+E,CAAC,GAD7K,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF,KAAK;QACL,KAAK;QACL,KAAK;YACH,MAAM,OAAA,cAEL,CAFK,IAAIqE,gBAAAA,cAAc,CACtB,CAAC,EAAE,EAAErE,WAAW,iEAAiE,EAAEA,WAAW,+EAA+E,CAAC,GAD1K,qBAAA;uBAAA;4BAAA;8BAAA;YAEN;QACF,KAAK;YACH;QACF;YACEE;IACJ;AACF;AAEA,MAAMqE,mBAAmB;AAEzB,uFAAuF;AACvF,MAAMC,sBACJ;AAEF,2EAA2E;AAC3E,+EAA+E;AAC/E,4FAA4F;AAC5F,EAAE;AACF,mBAAmB;AACnB,8BAA8B;AAC9B,mDAAmD;AACnD,EAAE;AACF,yEAAyE;AACzE,8BAA8B;AAC9B,mCAAmC;AACnC,mDAAmD;AACnD,MAAMC,4DAA4D,IAAIC,OACpE,CAAC,uDAAuD,EAAEF,oBAAoB,yCAAyC,EAAEG,mBAAAA,yBAAyB,CAAC,cAAc,CAAC;AAGpK,MAAMC,mBAAmB,IAAIF,OAC3B,CAAC,UAAU,EAAEG,mBAAAA,sBAAsB,CAAC,QAAQ,CAAC;AAE/C,MAAMC,mBAAmB,IAAIJ,OAC3B,CAAC,UAAU,EAAEK,mBAAAA,sBAAsB,CAAC,QAAQ,CAAC;AAE/C,MAAMC,iBAAiB,IAAIN,OAAO,CAAC,UAAU,EAAEO,mBAAAA,oBAAoB,CAAC,QAAQ,CAAC;AAEtE,SAASpG,0BACdgF,SAAoB,EACpBqB,cAAsB,EACtBC,iBAAyC,EACzCtC,aAAmC;IAEnC,IAAImC,eAAeI,IAAI,CAACF,iBAAiB;QACvC,kGAAkG;QAClG;IACF,OAAO,IAAIN,iBAAiBQ,IAAI,CAACF,iBAAiB;QAChDC,kBAAkBzF,kBAAkB,GAAG;QACvC;IACF,OAAO,IAAIoF,iBAAiBM,IAAI,CAACF,iBAAiB;QAChDC,kBAAkBvF,kBAAkB,GAAG;QACvC;IACF,OAAO,IACL6E,0DAA0DW,IAAI,CAC5DF,iBAEF;QACA,+GAA+G;QAC/G,sGAAsG;QACtG,wGAAwG;QACxGC,kBAAkBtF,iBAAiB,GAAG;QACtCsF,kBAAkB1F,oBAAoB,GAAG;QACzC;IACF,OAAO,IAAI8E,iBAAiBa,IAAI,CAACF,iBAAiB;QAChD,wFAAwF;QACxF,gBAAgB;QAChBC,kBAAkBtF,iBAAiB,GAAG;QACtC;IACF,OAAO,IAAIgD,cAAcrD,yBAAyB,EAAE;QAClD,qDAAqD;QACrD2F,kBAAkBrF,aAAa,CAAC6B,IAAI,CAClCkB,cAAcrD,yBAAyB;QAEzC;IACF,OAAO;QACL,MAAM8C,UACJ,CAAC,OAAO,EAAEuB,UAAUrD,KAAK,CAAC,yCAAyC,CAAC,GACpE,4EACA,uCACA;QACF,MAAMe,QAAQ8D,qCAAqC/C,SAAS4C;QAC5DC,kBAAkBrF,aAAa,CAAC6B,IAAI,CAACJ;QACrC;IACF;AACF;AAEO,SAASxC,+BACd8E,SAAoB,EACpBqB,cAAsB,EACtBC,iBAAyC,EACzCtC,aAAmC;IAEnC,IAAImC,eAAeI,IAAI,CAACF,iBAAiB;QACvC,kGAAkG;QAClG;IACF,OAAO,IAAIN,iBAAiBQ,IAAI,CAACF,iBAAiB;QAChD,MAAM5C,UAAU,CAAC,OAAO,EAAEuB,UAAUrD,KAAK,CAAC,wRAAwR,CAAC;QACnU,MAAMe,QAAQ8D,qCAAqC/C,SAAS4C;QAC5DC,kBAAkBxF,eAAe,GAAG4B;QACpC;IACF,OAAO,IAAIuD,iBAAiBM,IAAI,CAACF,iBAAiB;QAChD,MAAM5C,UAAU,CAAC,OAAO,EAAEuB,UAAUrD,KAAK,CAAC,4OAA4O,CAAC;QACvR,MAAMe,QAAQ8D,qCAAqC/C,SAAS4C;QAC5DC,kBAAkBrF,aAAa,CAAC6B,IAAI,CAACJ;QACrC;IACF,OAAO,IACLkD,0DAA0DW,IAAI,CAC5DF,iBAEF;QACA,+GAA+G;QAC/G,sGAAsG;QACtG,wGAAwG;QACxGC,kBAAkBtF,iBAAiB,GAAG;QACtCsF,kBAAkB1F,oBAAoB,GAAG;QACzC;IACF,OAAO,IAAI8E,iBAAiBa,IAAI,CAACF,iBAAiB;QAChD,wFAAwF;QACxF,gBAAgB;QAChBC,kBAAkBtF,iBAAiB,GAAG;QACtC;IACF,OAAO,IAAIgD,cAAcrD,yBAAyB,EAAE;QAClD,qDAAqD;QACrD2F,kBAAkBrF,aAAa,CAAC6B,IAAI,CAClCkB,cAAcrD,yBAAyB;QAEzC;IACF,OAAO;QACL,MAAM8C,UAAU,CAAC,OAAO,EAAEuB,UAAUrD,KAAK,CAAC,yNAAyN,CAAC;QACpQ,MAAMe,QAAQ8D,qCAAqC/C,SAAS4C;QAC5DC,kBAAkBrF,aAAa,CAAC6B,IAAI,CAACJ;QACrC;IACF;AACF;AAEO,SAASvC,8BACd6E,SAAoB,EACpBqB,cAAsB,EACtBC,iBAAyC,EACzCtC,aAAmC;IAEnC,IAAImC,eAAeI,IAAI,CAACF,iBAAiB;QACvC,kGAAkG;QAClG;IACF,OAAO,IAAIN,iBAAiBQ,IAAI,CAACF,iBAAiB;QAChD,MAAM5C,UAAU,CAAC,OAAO,EAAEuB,UAAUrD,KAAK,CAAC,8ZAA8Z,CAAC;QACzc,MAAMe,QAAQ8D,qCAAqC/C,SAAS4C;QAC5DC,kBAAkBxF,eAAe,GAAG4B;QACpC;IACF,OAAO,IAAIuD,iBAAiBM,IAAI,CAACF,iBAAiB;QAChD,MAAM5C,UAAU,CAAC,OAAO,EAAEuB,UAAUrD,KAAK,CAAC,6RAA6R,CAAC;QACxU,MAAMe,QAAQ8D,qCAAqC/C,SAAS4C;QAC5DC,kBAAkBrF,aAAa,CAAC6B,IAAI,CAACJ;QACrC;IACF,OAAO,IACLkD,0DAA0DW,IAAI,CAC5DF,iBAEF;QACA,+GAA+G;QAC/G,sGAAsG;QACtG,wGAAwG;QACxGC,kBAAkBtF,iBAAiB,GAAG;QACtCsF,kBAAkB1F,oBAAoB,GAAG;QACzC;IACF,OAAO,IAAI8E,iBAAiBa,IAAI,CAACF,iBAAiB;QAChD,wFAAwF;QACxF,gBAAgB;QAChBC,kBAAkBtF,iBAAiB,GAAG;QACtC;IACF,OAAO,IAAIgD,cAAcrD,yBAAyB,EAAE;QAClD,qDAAqD;QACrD2F,kBAAkBrF,aAAa,CAAC6B,IAAI,CAClCkB,cAAcrD,yBAAyB;QAEzC;IACF,OAAO;QACL,MAAM8C,UAAU,CAAC,OAAO,EAAEuB,UAAUrD,KAAK,CAAC,0QAA0Q,CAAC;QACrT,MAAMe,QAAQ8D,qCAAqC/C,SAAS4C;QAC5DC,kBAAkBrF,aAAa,CAAC6B,IAAI,CAACJ;QACrC;IACF;AACF;AAEA;;;CAGC,GACD,SAAS8D,qCACP/C,OAAe,EACf4C,cAAsB;IAEtB,MAAMI,aACJtE,QAAQC,GAAG,CAACC,QAAQ,gCAAK,gBAAgB9B,OAAAA,OAAK,CAACmG,iBAAiB,GAC5DnG,OAAAA,OAAK,CAACmG,iBAAiB,KACvB;IAEN,MAAMhE,QAAQ,OAAA,cAAkB,CAAlB,IAAIK,MAAMU,UAAV,qBAAA;eAAA;oBAAA;sBAAA;IAAiB;IAC/B,2GAA2G;IAC3G,EAAE;IACFf,MAAMR,KAAK,GAAGQ,MAAMiE,IAAI,GAAG,OAAOlD,UAAWgD,CAAAA,cAAcJ,cAAa;IACxE,OAAO3D;AACT;AAEO,IAAK/D,eAAAA,WAAAA,GAAAA,SAAAA,YAAAA;;;;WAAAA;;AAML,SAASgB,0BACdqF,SAAoB,EACpBtC,KAAY;IAEZkE,QAAQlE,KAAK,CAACA;IAEd,IAAI,CAACsC,UAAU6B,GAAG,EAAE;QAClB,IAAI7B,UAAU8B,sBAAsB,EAAE;YACpCF,QAAQlE,KAAK,CACX,CAAC,iIAAiI,EAAEsC,UAAUrD,KAAK,CAAC,2CAA2C,CAAC;QAEpM,OAAO;YACLiF,QAAQlE,KAAK,CAAC,CAAC;0EACqD,EAAEsC,UAAUrD,KAAK,CAAC;qGACS,CAAC;QAClG;IACF;AACF;AAEO,SAAS7B,yBACdkF,SAAoB,EACpB+B,OAAqB,EACrBT,iBAAyC,EACzCvC,aAAmC;IAEnC,IAAIA,cAAcpD,yBAAyB,EAAE;QAC3ChB,0BACEqF,WACAjB,cAAcpD,yBAAyB;QAEzC,MAAM,IAAIe,yBAAAA,qBAAqB;IACjC;IAEA,IAAIqF,YAAAA,GAA+B;QACjC,IAAIT,kBAAkB1F,oBAAoB,EAAE;YAC1C,6DAA6D;YAC7D,gEAAgE;YAChE,qEAAqE;YACrE;QACF;QAEA,oEAAoE;QACpE,sEAAsE;QACtE,uEAAuE;QACvE,MAAMK,gBAAgBqF,kBAAkBrF,aAAa;QACrD,IAAIA,cAAc6C,MAAM,GAAG,GAAG;YAC5B,IAAK,IAAIkD,IAAI,GAAGA,IAAI/F,cAAc6C,MAAM,EAAEkD,IAAK;gBAC7CrH,0BAA0BqF,WAAW/D,aAAa,CAAC+F,EAAE;YACvD;YAEA,MAAM,IAAItF,yBAAAA,qBAAqB;QACjC;QAEA,sEAAsE;QACtE,wDAAwD;QACxD,yEAAyE;QACzE,wDAAwD;QACxD,IAAI4E,kBAAkBvF,kBAAkB,EAAE;YACxC6F,QAAQlE,KAAK,CACX,CAAC,OAAO,EAAEsC,UAAUrD,KAAK,CAAC,8QAA8Q,CAAC;YAE3S,MAAM,IAAID,yBAAAA,qBAAqB;QACjC;QAEA,IAAIqF,YAAAA,GAAgC;YAClC,6EAA6E;YAC7E,iFAAiF;YACjF,2CAA2C;YAC3CH,QAAQlE,KAAK,CACX,CAAC,OAAO,EAAEsC,UAAUrD,KAAK,CAAC,wGAAwG,CAAC;YAErI,MAAM,IAAID,yBAAAA,qBAAqB;QACjC;IACF,OAAO;QACL,IACE4E,kBAAkBtF,iBAAiB,KAAK,SACxCsF,kBAAkBzF,kBAAkB,EACpC;YACA+F,QAAQlE,KAAK,CACX,CAAC,OAAO,EAAEsC,UAAUrD,KAAK,CAAC,8PAA8P,CAAC;YAE3R,MAAM,IAAID,yBAAAA,qBAAqB;QACjC;IACF;AACF;AAEO,SAASlC,uCACdwF,SAAoB,EACpB+B,OAAqB,EACrBT,iBAAyC;IAEzC,IAAIA,kBAAkB1F,oBAAoB,EAAE;QAC1C,6DAA6D;QAC7D,gEAAgE;QAChE,qEAAqE;QACrE,OAAO,EAAE;IACX;IAEA,IAAImG,YAAAA,GAA+B;QACjC,oEAAoE;QACpE,sEAAsE;QACtE,uEAAuE;QACvE,MAAM9F,gBAAgBqF,kBAAkBrF,aAAa;QACrD,IAAIA,cAAc6C,MAAM,GAAG,GAAG;YAC5B,OAAO7C;QACT;QAEA,IAAI8F,YAAAA,GAAgC;YAClC,6EAA6E;YAC7E,iFAAiF;YACjF,2CAA2C;YAC3C,OAAO;gBACL,OAAA,cAEC,CAFD,IAAIvB,gBAAAA,cAAc,CAChB,CAAC,OAAO,EAAER,UAAUrD,KAAK,CAAC,8EAA8E,CAAC,GAD3G,qBAAA;2BAAA;gCAAA;kCAAA;gBAEA;aACD;QACH;IACF,OAAO;QACL,8FAA8F;QAC9F,IACE2E,kBAAkBtF,iBAAiB,KAAK,SACxCsF,kBAAkBrF,aAAa,CAAC6C,MAAM,KAAK,KAC3CwC,kBAAkBxF,eAAe,EACjC;YACA,OAAO;gBAACwF,kBAAkBxF,eAAe;aAAC;QAC5C;IACF;IACA,4DAA4D;IAC5D,OAAO,EAAE;AACX;AAEO,SAASzB,uBACdkD,cAA2C,EAC3C0E,MAAkB;IAElB,IAAI1E,eAAesC,mBAAmB,EAAE;QACtC,OAAOtC,eAAesC,mBAAmB,CAACD,IAAI,CAAC,IAAMqC;IACvD;IACA,OAAOA;AACT","ignoreList":[0]}}, - {"offset": {"line": 4917, "column": 0}, "map": {"version":3,"sources":["file:///home/rusty/Documents/SaintBarthVolley/saintBarthVolleyApp/frontend/node_modules/next/src/server/dev/hot-reloader-types.ts"],"sourcesContent":["import type { IncomingMessage, ServerResponse } from 'http'\nimport type { UrlObject } from 'url'\nimport type { Duplex } from 'stream'\nimport type { webpack } from 'next/dist/compiled/webpack/webpack'\nimport type getBaseWebpackConfig from '../../build/webpack-config'\nimport type { RouteDefinition } from '../route-definitions/route-definition'\nimport type { Project, Update as TurbopackUpdate } from '../../build/swc/types'\nimport type { VersionInfo } from './parse-version-info'\nimport type { DebugInfo } from '../../next-devtools/shared/types'\nimport type { DevIndicatorServerState } from './dev-indicator-server-state'\nimport type {\n CacheIndicatorState,\n ServerCacheStatus,\n} from '../../next-devtools/dev-overlay/cache-indicator'\nimport type { DevToolsConfig } from '../../next-devtools/dev-overlay/shared'\nimport type { ReactDebugChannelForBrowser } from './debug-channel'\n\nexport const enum HMR_MESSAGE_SENT_TO_BROWSER {\n // JSON messages:\n ADDED_PAGE = 'addedPage',\n REMOVED_PAGE = 'removedPage',\n RELOAD_PAGE = 'reloadPage',\n SERVER_COMPONENT_CHANGES = 'serverComponentChanges',\n MIDDLEWARE_CHANGES = 'middlewareChanges',\n CLIENT_CHANGES = 'clientChanges',\n SERVER_ONLY_CHANGES = 'serverOnlyChanges',\n SYNC = 'sync',\n BUILT = 'built',\n BUILDING = 'building',\n DEV_PAGES_MANIFEST_UPDATE = 'devPagesManifestUpdate',\n TURBOPACK_MESSAGE = 'turbopack-message',\n SERVER_ERROR = 'serverError',\n TURBOPACK_CONNECTED = 'turbopack-connected',\n ISR_MANIFEST = 'isrManifest',\n CACHE_INDICATOR = 'cacheIndicator',\n DEV_INDICATOR = 'devIndicator',\n DEVTOOLS_CONFIG = 'devtoolsConfig',\n REQUEST_CURRENT_ERROR_STATE = 'requestCurrentErrorState',\n REQUEST_PAGE_METADATA = 'requestPageMetadata',\n\n // Binary messages:\n REACT_DEBUG_CHUNK = 0,\n ERRORS_TO_SHOW_IN_BROWSER = 1,\n}\n\nexport const enum HMR_MESSAGE_SENT_TO_SERVER {\n // JSON messages:\n MCP_ERROR_STATE_RESPONSE = 'mcp-error-state-response',\n MCP_PAGE_METADATA_RESPONSE = 'mcp-page-metadata-response',\n PING = 'ping',\n}\n\nexport interface ServerErrorMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ERROR\n errorJSON: string\n}\n\nexport interface TurbopackMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_MESSAGE\n data: TurbopackUpdate | TurbopackUpdate[]\n}\n\nexport interface BuildingMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.BUILDING\n}\n\nexport interface CompilationError {\n moduleName?: string\n message: string\n details?: string\n moduleTrace?: Array<{ moduleName?: string }>\n stack?: string\n}\n\nexport interface SyncMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.SYNC\n hash: string\n errors: ReadonlyArray<CompilationError>\n warnings: ReadonlyArray<CompilationError>\n versionInfo: VersionInfo\n updatedModules?: ReadonlyArray<string>\n debug?: DebugInfo\n devIndicator: DevIndicatorServerState\n devToolsConfig?: DevToolsConfig\n}\n\nexport interface BuiltMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.BUILT\n hash: string\n errors: ReadonlyArray<CompilationError>\n warnings: ReadonlyArray<CompilationError>\n updatedModules?: ReadonlyArray<string>\n}\n\nexport interface AddedPageMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.ADDED_PAGE\n data: [page: string | null]\n}\n\nexport interface RemovedPageMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.REMOVED_PAGE\n data: [page: string | null]\n}\n\nexport interface ReloadPageMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE\n data: string\n}\n\nexport interface ServerComponentChangesMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES\n hash: string\n}\n\nexport interface MiddlewareChangesMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES\n}\n\nexport interface ClientChangesMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES\n}\n\nexport interface ServerOnlyChangesMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ONLY_CHANGES\n pages: ReadonlyArray<string>\n}\n\nexport interface DevPagesManifestUpdateMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.DEV_PAGES_MANIFEST_UPDATE\n data: [\n {\n devPagesManifest: true\n },\n ]\n}\n\nexport interface TurbopackConnectedMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED\n data: { sessionId: number }\n}\n\nexport interface AppIsrManifestMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.ISR_MANIFEST\n data: Record<string, boolean>\n}\n\nexport interface DevToolsConfigMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.DEVTOOLS_CONFIG\n data: DevToolsConfig\n}\n\nexport interface ReactDebugChunkMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK\n requestId: string\n /**\n * A null chunk signals to the browser that no more chunks will be sent.\n */\n chunk: Uint8Array | null\n}\n\nexport interface ErrorsToShowInBrowserMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER\n serializedErrors: Uint8Array\n}\n\nexport interface RequestCurrentErrorStateMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.REQUEST_CURRENT_ERROR_STATE\n requestId: string\n}\n\nexport interface RequestPageMetadataMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.REQUEST_PAGE_METADATA\n requestId: string\n}\n\nexport interface CacheIndicatorMessage {\n type: HMR_MESSAGE_SENT_TO_BROWSER.CACHE_INDICATOR\n state: CacheIndicatorState\n}\n\nexport type HmrMessageSentToBrowser =\n | TurbopackMessage\n | TurbopackConnectedMessage\n | BuildingMessage\n | SyncMessage\n | BuiltMessage\n | AddedPageMessage\n | RemovedPageMessage\n | ReloadPageMessage\n | ServerComponentChangesMessage\n | ClientChangesMessage\n | MiddlewareChangesMessage\n | ServerOnlyChangesMessage\n | DevPagesManifestUpdateMessage\n | ServerErrorMessage\n | AppIsrManifestMessage\n | DevToolsConfigMessage\n | ErrorsToShowInBrowserMessage\n | ReactDebugChunkMessage\n | RequestCurrentErrorStateMessage\n | RequestPageMetadataMessage\n | CacheIndicatorMessage\n\nexport type BinaryHmrMessageSentToBrowser = Extract<\n HmrMessageSentToBrowser,\n { type: number }\n>\n\nexport type TurbopackMessageSentToBrowser =\n | {\n type: HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_MESSAGE\n data: any\n }\n | {\n type: HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED\n data: { sessionId: number }\n }\n\nexport interface NextJsHotReloaderInterface {\n turbopackProject?: Project\n activeWebpackConfigs?: Array<Awaited<ReturnType<typeof getBaseWebpackConfig>>>\n serverStats: webpack.Stats | null\n edgeServerStats: webpack.Stats | null\n run(\n req: IncomingMessage,\n res: ServerResponse,\n parsedUrl: UrlObject\n ): Promise<{ finished?: true }>\n\n setHmrServerError(error: Error | null): void\n clearHmrServerError(): void\n start(): Promise<void>\n send(action: HmrMessageSentToBrowser): void\n /**\n * Send the given action only to legacy clients, i.e. Pages Router clients,\n * and App Router clients that don't have Cache Components enabled.\n */\n sendToLegacyClients(action: HmrMessageSentToBrowser): void\n setCacheStatus(status: ServerCacheStatus, htmlRequestId: string): void\n setReactDebugChannel(\n debugChannel: ReactDebugChannelForBrowser,\n htmlRequestId: string,\n requestId: string\n ): void\n sendErrorsToBrowser(\n errorsRscStream: ReadableStream<Uint8Array>,\n htmlRequestId: string\n ): void\n getCompilationErrors(page: string): Promise<any[]>\n onHMR(\n req: IncomingMessage,\n _socket: Duplex,\n head: Buffer,\n onUpgrade: (\n client: { send(data: string): void },\n context: { isLegacyClient: boolean }\n ) => void\n ): void\n invalidate({\n reloadAfterInvalidation,\n }: {\n reloadAfterInvalidation: boolean\n }): Promise<void> | void\n buildFallbackError(): Promise<void>\n ensurePage({\n page,\n clientOnly,\n appPaths,\n definition,\n isApp,\n url,\n }: {\n page: string\n clientOnly: boolean\n appPaths?: ReadonlyArray<string> | null\n isApp?: boolean\n definition: RouteDefinition | undefined\n url?: string\n }): Promise<void>\n close(): void\n}\n"],"names":["HMR_MESSAGE_SENT_TO_BROWSER","HMR_MESSAGE_SENT_TO_SERVER"],"mappings":";;;;;;;;;;;;;;IAiBkBA,2BAA2B,EAAA;eAA3BA;;IA4BAC,0BAA0B,EAAA;eAA1BA;;;AA5BX,IAAWD,8BAAAA,WAAAA,GAAAA,SAAAA,2BAAAA;IAChB,iBAAiB;;;;;;;;;;;;;;;;;;;;;IAsBjB,mBAAmB;;;WAvBHA;;AA4BX,IAAWC,6BAAAA,WAAAA,GAAAA,SAAAA,0BAAAA;IAChB,iBAAiB;;;;WADDA","ignoreList":[0]}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_favicon_ico_mjs_81d86e48._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_favicon_ico_mjs_81d86e48._.js deleted file mode 100644 index 368e25f..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_favicon_ico_mjs_81d86e48._.js +++ /dev/null @@ -1,7 +0,0 @@ -(globalThis.TURBOPACK_CHUNK_LISTS || (globalThis.TURBOPACK_CHUNK_LISTS = [])).push({ - script: typeof document === "object" ? document.currentScript : undefined, - chunks: [ - "static/chunks/node_modules_next_dist_be32b49c._.js" -], - source: "dynamic" -}); diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_globals_css_bad6b30c._.single.css b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_globals_css_bad6b30c._.single.css deleted file mode 100644 index 060565a..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_globals_css_bad6b30c._.single.css +++ /dev/null @@ -1,4372 +0,0 @@ -/* [project]/src/app/globals.css [app-client] (css) */ -@layer properties { - @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) { - *, :before, :after, ::backdrop { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-translate-z: 0; - --tw-space-y-reverse: 0; - --tw-space-x-reverse: 0; - --tw-border-style: solid; - --tw-leading: initial; - --tw-font-weight: initial; - --tw-tracking: initial; - --tw-ordinal: initial; - --tw-slashed-zero: initial; - --tw-numeric-figure: initial; - --tw-numeric-spacing: initial; - --tw-numeric-fraction: initial; - --tw-shadow: 0 0 #0000; - --tw-shadow-color: initial; - --tw-shadow-alpha: 100%; - --tw-inset-shadow: 0 0 #0000; - --tw-inset-shadow-color: initial; - --tw-inset-shadow-alpha: 100%; - --tw-ring-color: initial; - --tw-ring-shadow: 0 0 #0000; - --tw-inset-ring-color: initial; - --tw-inset-ring-shadow: 0 0 #0000; - --tw-ring-inset: initial; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-offset-shadow: 0 0 #0000; - --tw-outline-style: solid; - --tw-duration: initial; - --tw-ease: initial; - --tw-content: ""; - --tw-blur: initial; - --tw-brightness: initial; - --tw-contrast: initial; - --tw-grayscale: initial; - --tw-hue-rotate: initial; - --tw-invert: initial; - --tw-opacity: initial; - --tw-saturate: initial; - --tw-sepia: initial; - --tw-drop-shadow: initial; - --tw-drop-shadow-color: initial; - --tw-drop-shadow-alpha: 100%; - --tw-drop-shadow-size: initial; - --tw-animation-delay: 0s; - --tw-animation-direction: normal; - --tw-animation-duration: initial; - --tw-animation-fill-mode: none; - --tw-animation-iteration-count: 1; - --tw-enter-blur: 0; - --tw-enter-opacity: 1; - --tw-enter-rotate: 0; - --tw-enter-scale: 1; - --tw-enter-translate-x: 0; - --tw-enter-translate-y: 0; - --tw-exit-blur: 0; - --tw-exit-opacity: 1; - --tw-exit-rotate: 0; - --tw-exit-scale: 1; - --tw-exit-translate-x: 0; - --tw-exit-translate-y: 0; - } - } -} - -@layer theme { - :root, :host { - --color-red-500: #fb2c36; - --color-red-600: #e40014; - --color-green-600: #00a544; - --color-blue-600: #155dfc; - --color-gray-200: #e5e7eb; - --color-gray-500: #6a7282; - --color-gray-700: #364153; - --color-zinc-50: #fafafa; - --color-zinc-400: #9f9fa9; - --color-zinc-600: #52525c; - --color-zinc-950: #09090b; - --color-black: #000; - --color-white: #fff; - --spacing: .25rem; - --container-xs: 20rem; - --container-sm: 24rem; - --container-md: 28rem; - --container-lg: 32rem; - --container-2xl: 42rem; - --container-3xl: 48rem; - --container-7xl: 80rem; - --text-xs: .75rem; - --text-xs--line-height: calc(1 / .75); - --text-sm: .875rem; - --text-sm--line-height: calc(1.25 / .875); - --text-base: 1rem; - --text-base--line-height: calc(1.5 / 1); - --text-lg: 1.125rem; - --text-lg--line-height: calc(1.75 / 1.125); - --text-xl: 1.25rem; - --text-xl--line-height: calc(1.75 / 1.25); - --text-2xl: 1.5rem; - --text-2xl--line-height: calc(2 / 1.5); - --text-3xl: 1.875rem; - --text-3xl--line-height: calc(2.25 / 1.875); - --font-weight-normal: 400; - --font-weight-medium: 500; - --font-weight-semibold: 600; - --font-weight-bold: 700; - --tracking-tight: -.025em; - --tracking-widest: .1em; - --leading-tight: 1.25; - --leading-snug: 1.375; - --leading-normal: 1.5; - --radius-xs: .125rem; - --ease-in-out: cubic-bezier(.4, 0, .2, 1); - --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite; - --aspect-video: 16 / 9; - --default-transition-duration: .15s; - --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1); - --default-font-family: var(--font-geist-sans); - --default-mono-font-family: var(--font-geist-mono); - --color-border: var(--border); - } - - @supports (color: lab(0% 0 0)) { - :root, :host { - --color-red-500: lab(55.4814% 75.0732 48.8528); - --color-red-600: lab(48.4493% 77.4328 61.5452); - --color-green-600: lab(59.0978% -58.6621 41.2579); - --color-blue-600: lab(44.0605% 29.0279 -86.0352); - --color-gray-200: lab(91.6229% -.159115 -2.26791); - --color-gray-500: lab(47.7841% -.393182 -10.0268); - --color-gray-700: lab(27.1134% -.956401 -12.3224); - --color-zinc-50: lab(98.26% 0 0); - --color-zinc-400: lab(65.6464% 1.53497 -5.42429); - --color-zinc-600: lab(35.1166% 1.78212 -6.1173); - --color-zinc-950: lab(2.51107% .242703 -.886115); - } - } -} - -@layer base { - *, :after, :before, ::backdrop { - box-sizing: border-box; - border: 0 solid; - margin: 0; - padding: 0; - } - - ::file-selector-button { - box-sizing: border-box; - border: 0 solid; - margin: 0; - padding: 0; - } - - html, :host { - -webkit-text-size-adjust: 100%; - tab-size: 4; - line-height: 1.5; - font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); - font-feature-settings: var(--default-font-feature-settings, normal); - font-variation-settings: var(--default-font-variation-settings, normal); - -webkit-tap-highlight-color: transparent; - } - - hr { - height: 0; - color: inherit; - border-top-width: 1px; - } - - abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - } - - h1, h2, h3, h4, h5, h6 { - font-size: inherit; - font-weight: inherit; - } - - a { - color: inherit; - -webkit-text-decoration: inherit; - -webkit-text-decoration: inherit; - text-decoration: inherit; - } - - b, strong { - font-weight: bolder; - } - - code, kbd, samp, pre { - font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace); - font-feature-settings: var(--default-mono-font-feature-settings, normal); - font-variation-settings: var(--default-mono-font-variation-settings, normal); - font-size: 1em; - } - - small { - font-size: 80%; - } - - sub, sup { - vertical-align: baseline; - font-size: 75%; - line-height: 0; - position: relative; - } - - sub { - bottom: -.25em; - } - - sup { - top: -.5em; - } - - table { - text-indent: 0; - border-color: inherit; - border-collapse: collapse; - } - - :-moz-focusring { - outline: auto; - } - - progress { - vertical-align: baseline; - } - - summary { - display: list-item; - } - - ol, ul, menu { - list-style: none; - } - - img, svg, video, canvas, audio, iframe, embed, object { - vertical-align: middle; - display: block; - } - - img, video { - max-width: 100%; - height: auto; - } - - button, input, select, optgroup, textarea { - font: inherit; - font-feature-settings: inherit; - font-variation-settings: inherit; - letter-spacing: inherit; - color: inherit; - opacity: 1; - background-color: #0000; - border-radius: 0; - } - - ::file-selector-button { - font: inherit; - font-feature-settings: inherit; - font-variation-settings: inherit; - letter-spacing: inherit; - color: inherit; - opacity: 1; - background-color: #0000; - border-radius: 0; - } - - :where(select:is([multiple], [size])) optgroup { - font-weight: bolder; - } - - :where(select:is([multiple], [size])) optgroup option { - padding-inline-start: 20px; - } - - ::file-selector-button { - margin-inline-end: 4px; - } - - ::placeholder { - opacity: 1; - } - - @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) { - ::placeholder { - color: currentColor; - } - - @supports (color: color-mix(in lab, red, red)) { - ::placeholder { - color: color-mix(in oklab, currentcolor 50%, transparent); - } - } - } - - textarea { - resize: vertical; - } - - ::-webkit-search-decoration { - -webkit-appearance: none; - } - - ::-webkit-date-and-time-value { - min-height: 1lh; - text-align: inherit; - } - - ::-webkit-datetime-edit { - display: inline-flex; - } - - ::-webkit-datetime-edit-fields-wrapper { - padding: 0; - } - - ::-webkit-datetime-edit { - padding-block: 0; - } - - ::-webkit-datetime-edit-year-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-month-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-day-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-hour-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-minute-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-second-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-millisecond-field { - padding-block: 0; - } - - ::-webkit-datetime-edit-meridiem-field { - padding-block: 0; - } - - ::-webkit-calendar-picker-indicator { - line-height: 1; - } - - :-moz-ui-invalid { - box-shadow: none; - } - - button, input:where([type="button"], [type="reset"], [type="submit"]) { - appearance: button; - } - - ::file-selector-button { - appearance: button; - } - - ::-webkit-inner-spin-button { - height: auto; - } - - ::-webkit-outer-spin-button { - height: auto; - } - - [hidden]:where(:not([hidden="until-found"])) { - display: none !important; - } - - * { - border-color: var(--border); - outline-color: var(--ring); - } - - @supports (color: color-mix(in lab, red, red)) { - * { - outline-color: color-mix(in oklab, var(--ring) 50%, transparent); - } - } - - body { - background-color: var(--background); - color: var(--foreground); - } -} - -@layer components; - -@layer utilities { - .\@container\/card-header { - container: card-header / inline-size; - } - - .\@container\/field-group { - container: field-group / inline-size; - } - - .pointer-events-none { - pointer-events: none; - } - - .sr-only { - clip-path: inset(50%); - white-space: nowrap; - border-width: 0; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - position: absolute; - overflow: hidden; - } - - .absolute { - position: absolute; - } - - .fixed { - position: fixed; - } - - .relative { - position: relative; - } - - .sticky { - position: sticky; - } - - .inset-0 { - inset: calc(var(--spacing) * 0); - } - - .inset-x-0 { - inset-inline: calc(var(--spacing) * 0); - } - - .inset-y-0 { - inset-block: calc(var(--spacing) * 0); - } - - .start { - inset-inline-start: var(--spacing); - } - - .end { - inset-inline-end: var(--spacing); - } - - .top-0 { - top: calc(var(--spacing) * 0); - } - - .top-1\.5 { - top: calc(var(--spacing) * 1.5); - } - - .top-1\/2 { - top: 50%; - } - - .top-3\.5 { - top: calc(var(--spacing) * 3.5); - } - - .top-4 { - top: calc(var(--spacing) * 4); - } - - .top-6 { - top: calc(var(--spacing) * 6); - } - - .top-\[50\%\] { - top: 50%; - } - - .right-0 { - right: calc(var(--spacing) * 0); - } - - .right-1 { - right: calc(var(--spacing) * 1); - } - - .right-2 { - right: calc(var(--spacing) * 2); - } - - .right-3 { - right: calc(var(--spacing) * 3); - } - - .right-4 { - right: calc(var(--spacing) * 4); - } - - .bottom-0 { - bottom: calc(var(--spacing) * 0); - } - - .left-0 { - left: calc(var(--spacing) * 0); - } - - .left-2 { - left: calc(var(--spacing) * 2); - } - - .left-\[50\%\] { - left: 50%; - } - - .z-10 { - z-index: 10; - } - - .z-20 { - z-index: 20; - } - - .z-50 { - z-index: 50; - } - - .col-start-2 { - grid-column-start: 2; - } - - .row-span-2 { - grid-row: span 2 / span 2; - } - - .row-start-1 { - grid-row-start: 1; - } - - .-mx-1 { - margin-inline: calc(var(--spacing) * -1); - } - - .mx-2 { - margin-inline: calc(var(--spacing) * 2); - } - - .mx-3\.5 { - margin-inline: calc(var(--spacing) * 3.5); - } - - .mx-auto { - margin-inline: auto; - } - - .-my-2 { - margin-block: calc(var(--spacing) * -2); - } - - .my-0\.5 { - margin-block: calc(var(--spacing) * .5); - } - - .my-1 { - margin-block: calc(var(--spacing) * 1); - } - - .mt-2 { - margin-top: calc(var(--spacing) * 2); - } - - .mt-4 { - margin-top: calc(var(--spacing) * 4); - } - - .mt-auto { - margin-top: auto; - } - - .mb-3 { - margin-bottom: calc(var(--spacing) * 3); - } - - .mb-4 { - margin-bottom: calc(var(--spacing) * 4); - } - - .-ml-1 { - margin-left: calc(var(--spacing) * -1); - } - - .ml-2 { - margin-left: calc(var(--spacing) * 2); - } - - .ml-4 { - margin-left: calc(var(--spacing) * 4); - } - - .ml-auto { - margin-left: auto; - } - - .line-clamp-4 { - -webkit-line-clamp: 4; - -webkit-box-orient: vertical; - display: -webkit-box; - overflow: hidden; - } - - .block { - display: block; - } - - .flex { - display: flex; - } - - .grid { - display: grid; - } - - .hidden { - display: none; - } - - .inline-flex { - display: inline-flex; - } - - .table { - display: table; - } - - .table-caption { - display: table-caption; - } - - .table-cell { - display: table-cell; - } - - .table-row { - display: table-row; - } - - .field-sizing-content { - field-sizing: content; - } - - .aspect-square { - aspect-ratio: 1; - } - - .aspect-video { - aspect-ratio: var(--aspect-video); - } - - .size-2 { - width: calc(var(--spacing) * 2); - height: calc(var(--spacing) * 2); - } - - .size-2\.5 { - width: calc(var(--spacing) * 2.5); - height: calc(var(--spacing) * 2.5); - } - - .size-3\.5 { - width: calc(var(--spacing) * 3.5); - height: calc(var(--spacing) * 3.5); - } - - .size-4 { - width: calc(var(--spacing) * 4); - height: calc(var(--spacing) * 4); - } - - .size-5\! { - width: calc(var(--spacing) * 5) !important; - height: calc(var(--spacing) * 5) !important; - } - - .size-6 { - width: calc(var(--spacing) * 6); - height: calc(var(--spacing) * 6); - } - - .size-7 { - width: calc(var(--spacing) * 7); - height: calc(var(--spacing) * 7); - } - - .size-8 { - width: calc(var(--spacing) * 8); - height: calc(var(--spacing) * 8); - } - - .size-9 { - width: calc(var(--spacing) * 9); - height: calc(var(--spacing) * 9); - } - - .size-10 { - width: calc(var(--spacing) * 10); - height: calc(var(--spacing) * 10); - } - - .size-full { - width: 100%; - height: 100%; - } - - .h-\(--header-height\) { - height: var(--header-height); - } - - .h-2 { - height: calc(var(--spacing) * 2); - } - - .h-2\.5 { - height: calc(var(--spacing) * 2.5); - } - - .h-4 { - height: calc(var(--spacing) * 4); - } - - .h-5 { - height: calc(var(--spacing) * 5); - } - - .h-6 { - height: calc(var(--spacing) * 6); - } - - .h-7 { - height: calc(var(--spacing) * 7); - } - - .h-8 { - height: calc(var(--spacing) * 8); - } - - .h-9 { - height: calc(var(--spacing) * 9); - } - - .h-10 { - height: calc(var(--spacing) * 10); - } - - .h-12 { - height: calc(var(--spacing) * 12); - } - - .h-24 { - height: calc(var(--spacing) * 24); - } - - .h-32 { - height: calc(var(--spacing) * 32); - } - - .h-48 { - height: calc(var(--spacing) * 48); - } - - .h-60 { - height: calc(var(--spacing) * 60); - } - - .h-\[calc\(100\%-1px\)\] { - height: calc(100% - 1px); - } - - .h-\[var\(--radix-select-trigger-height\)\] { - height: var(--radix-select-trigger-height); - } - - .h-auto { - height: auto; - } - - .h-fit { - height: fit-content; - } - - .h-full { - height: 100%; - } - - .h-px { - height: 1px; - } - - .h-svh { - height: 100svh; - } - - .max-h-\(--radix-dropdown-menu-content-available-height\) { - max-height: var(--radix-dropdown-menu-content-available-height); - } - - .max-h-\(--radix-select-content-available-height\) { - max-height: var(--radix-select-content-available-height); - } - - .max-h-\[90vh\] { - max-height: 90vh; - } - - .min-h-0 { - min-height: calc(var(--spacing) * 0); - } - - .min-h-16 { - min-height: calc(var(--spacing) * 16); - } - - .min-h-\[400px\] { - min-height: 400px; - } - - .min-h-\[calc\(100vh-60px\)\] { - min-height: calc(100vh - 60px); - } - - .min-h-screen { - min-height: 100vh; - } - - .min-h-svh { - min-height: 100svh; - } - - .w-\(--radix-dropdown-menu-trigger-width\) { - width: var(--radix-dropdown-menu-trigger-width); - } - - .w-\(--sidebar-width\) { - width: var(--sidebar-width); - } - - .w-0 { - width: calc(var(--spacing) * 0); - } - - .w-1 { - width: calc(var(--spacing) * 1); - } - - .w-2 { - width: calc(var(--spacing) * 2); - } - - .w-2\.5 { - width: calc(var(--spacing) * 2.5); - } - - .w-3\/4 { - width: 75%; - } - - .w-4 { - width: calc(var(--spacing) * 4); - } - - .w-5 { - width: calc(var(--spacing) * 5); - } - - .w-8 { - width: calc(var(--spacing) * 8); - } - - .w-12 { - width: calc(var(--spacing) * 12); - } - - .w-24 { - width: calc(var(--spacing) * 24); - } - - .w-\[100px\] { - width: 100px; - } - - .w-auto { - width: auto; - } - - .w-fit { - width: fit-content; - } - - .w-full { - width: 100%; - } - - .max-w-\(--skeleton-width\) { - max-width: var(--skeleton-width); - } - - .max-w-3xl { - max-width: var(--container-3xl); - } - - .max-w-7xl { - max-width: var(--container-7xl); - } - - .max-w-\[calc\(100\%-2rem\)\] { - max-width: calc(100% - 2rem); - } - - .max-w-full { - max-width: 100%; - } - - .max-w-lg { - max-width: var(--container-lg); - } - - .max-w-md { - max-width: var(--container-md); - } - - .max-w-sm { - max-width: var(--container-sm); - } - - .max-w-xs { - max-width: var(--container-xs); - } - - .min-w-0 { - min-width: calc(var(--spacing) * 0); - } - - .min-w-5 { - min-width: calc(var(--spacing) * 5); - } - - .min-w-56 { - min-width: calc(var(--spacing) * 56); - } - - .min-w-\[8rem\] { - min-width: 8rem; - } - - .min-w-\[var\(--radix-select-trigger-width\)\] { - min-width: var(--radix-select-trigger-width); - } - - .flex-1 { - flex: 1; - } - - .shrink-0 { - flex-shrink: 0; - } - - .caption-bottom { - caption-side: bottom; - } - - .origin-\(--radix-dropdown-menu-content-transform-origin\) { - transform-origin: var(--radix-dropdown-menu-content-transform-origin); - } - - .origin-\(--radix-select-content-transform-origin\) { - transform-origin: var(--radix-select-content-transform-origin); - } - - .origin-\(--radix-tooltip-content-transform-origin\) { - transform-origin: var(--radix-tooltip-content-transform-origin); - } - - .-translate-x-1\/2 { - --tw-translate-x: calc(calc(1 / 2 * 100%) * -1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .-translate-x-px { - --tw-translate-x: -1px; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .translate-x-\[-50\%\] { - --tw-translate-x: -50%; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .translate-x-px { - --tw-translate-x: 1px; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .translate-y-\[-50\%\] { - --tw-translate-y: -50%; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .translate-y-\[calc\(-50\%_-_2px\)\] { - --tw-translate-y: calc(-50% - 2px); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .rotate-45 { - rotate: 45deg; - } - - .animate-in { - animation: enter var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none); - } - - .animate-pulse { - animation: var(--animate-pulse); - } - - .cursor-default { - cursor: default; - } - - .cursor-pointer { - cursor: pointer; - } - - .scroll-my-1 { - scroll-margin-block: calc(var(--spacing) * 1); - } - - .list-inside { - list-style-position: inside; - } - - .list-disc { - list-style-type: disc; - } - - .auto-rows-min { - grid-auto-rows: min-content; - } - - .grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); - } - - .grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .grid-rows-\[auto_auto\] { - grid-template-rows: auto auto; - } - - .flex-col { - flex-direction: column; - } - - .flex-col-reverse { - flex-direction: column-reverse; - } - - .flex-row { - flex-direction: row; - } - - .flex-wrap { - flex-wrap: wrap; - } - - .place-content-center { - place-content: center; - } - - .items-center { - align-items: center; - } - - .items-end { - align-items: flex-end; - } - - .items-start { - align-items: flex-start; - } - - .items-stretch { - align-items: stretch; - } - - .justify-between { - justify-content: space-between; - } - - .justify-center { - justify-content: center; - } - - .justify-end { - justify-content: flex-end; - } - - .gap-0\.5 { - gap: calc(var(--spacing) * .5); - } - - .gap-1 { - gap: calc(var(--spacing) * 1); - } - - .gap-1\.5 { - gap: calc(var(--spacing) * 1.5); - } - - .gap-2 { - gap: calc(var(--spacing) * 2); - } - - .gap-3 { - gap: calc(var(--spacing) * 3); - } - - .gap-4 { - gap: calc(var(--spacing) * 4); - } - - .gap-6 { - gap: calc(var(--spacing) * 6); - } - - .gap-7 { - gap: calc(var(--spacing) * 7); - } - - .gap-8 { - gap: calc(var(--spacing) * 8); - } - - .gap-10 { - gap: calc(var(--spacing) * 10); - } - - :where(.space-y-2 > :not(:last-child)) { - --tw-space-y-reverse: 0; - margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse)); - margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse))); - } - - :where(.space-y-4 > :not(:last-child)) { - --tw-space-y-reverse: 0; - margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse)); - margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))); - } - - :where(.-space-x-2 > :not(:last-child)) { - --tw-space-x-reverse: 0; - margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse)); - margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse))); - } - - .self-start { - align-self: flex-start; - } - - .justify-self-end { - justify-self: flex-end; - } - - .truncate { - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - } - - .overflow-auto { - overflow: auto; - } - - .overflow-hidden { - overflow: hidden; - } - - .overflow-x-auto { - overflow-x: auto; - } - - .overflow-x-hidden { - overflow-x: hidden; - } - - .overflow-y-auto { - overflow-y: auto; - } - - .rounded { - border-radius: .25rem; - } - - .rounded-\[2px\] { - border-radius: 2px; - } - - .rounded-\[4px\] { - border-radius: 4px; - } - - .rounded-full { - border-radius: 3.40282e38px; - } - - .rounded-lg { - border-radius: var(--radius); - } - - .rounded-md { - border-radius: calc(var(--radius) - 2px); - } - - .rounded-sm { - border-radius: calc(var(--radius) - 4px); - } - - .rounded-xl { - border-radius: calc(var(--radius) + 4px); - } - - .rounded-xs { - border-radius: var(--radius-xs); - } - - .border { - border-style: var(--tw-border-style); - border-width: 1px; - } - - .border-2 { - border-style: var(--tw-border-style); - border-width: 2px; - } - - .border-\[1\.5px\] { - border-style: var(--tw-border-style); - border-width: 1.5px; - } - - .border-t { - border-top-style: var(--tw-border-style); - border-top-width: 1px; - } - - .border-r { - border-right-style: var(--tw-border-style); - border-right-width: 1px; - } - - .border-b { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 1px; - } - - .border-l { - border-left-style: var(--tw-border-style); - border-left-width: 1px; - } - - .border-dashed { - --tw-border-style: dashed; - border-style: dashed; - } - - .border-solid { - --tw-border-style: solid; - border-style: solid; - } - - .border-\(--color-border\) { - border-color: var(--color-border); - } - - .border-black\/8 { - border-color: #00000014; - } - - @supports (color: color-mix(in lab, red, red)) { - .border-black\/8 { - border-color: color-mix(in oklab, var(--color-black) 8%, transparent); - } - } - - .border-border { - border-color: var(--border); - } - - .border-border\/50 { - border-color: var(--border); - } - - @supports (color: color-mix(in lab, red, red)) { - .border-border\/50 { - border-color: color-mix(in oklab, var(--border) 50%, transparent); - } - } - - .border-input { - border-color: var(--input); - } - - .border-sidebar-border { - border-color: var(--sidebar-border); - } - - .border-transparent { - border-color: #0000; - } - - .bg-\(--color-bg\) { - background-color: var(--color-bg); - } - - .bg-accent { - background-color: var(--accent); - } - - .bg-background { - background-color: var(--background); - } - - .bg-black { - background-color: var(--color-black); - } - - .bg-black\/30 { - background-color: #0000004d; - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-black\/30 { - background-color: color-mix(in oklab, var(--color-black) 30%, transparent); - } - } - - .bg-black\/40 { - background-color: #0006; - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-black\/40 { - background-color: color-mix(in oklab, var(--color-black) 40%, transparent); - } - } - - .bg-black\/50 { - background-color: #00000080; - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-black\/50 { - background-color: color-mix(in oklab, var(--color-black) 50%, transparent); - } - } - - .bg-border { - background-color: var(--border); - } - - .bg-card { - background-color: var(--card); - } - - .bg-destructive { - background-color: var(--destructive); - } - - .bg-destructive\/10 { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-destructive\/10 { - background-color: color-mix(in oklab, var(--destructive) 10%, transparent); - } - } - - .bg-foreground { - background-color: var(--foreground); - } - - .bg-gray-200 { - background-color: var(--color-gray-200); - } - - .bg-muted { - background-color: var(--muted); - } - - .bg-muted\/40 { - background-color: var(--muted); - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-muted\/40 { - background-color: color-mix(in oklab, var(--muted) 40%, transparent); - } - } - - .bg-muted\/50 { - background-color: var(--muted); - } - - @supports (color: color-mix(in lab, red, red)) { - .bg-muted\/50 { - background-color: color-mix(in oklab, var(--muted) 50%, transparent); - } - } - - .bg-popover { - background-color: var(--popover); - } - - .bg-primary { - background-color: var(--primary); - } - - .bg-secondary { - background-color: var(--secondary); - } - - .bg-sidebar { - background-color: var(--sidebar); - } - - .bg-sidebar-border { - background-color: var(--sidebar-border); - } - - .bg-transparent { - background-color: #0000; - } - - .bg-white { - background-color: var(--color-white); - } - - .bg-zinc-50 { - background-color: var(--color-zinc-50); - } - - .fill-current { - fill: currentColor; - } - - .fill-foreground { - fill: var(--foreground); - } - - .object-contain { - object-fit: contain; - } - - .object-cover { - object-fit: cover; - } - - .p-0 { - padding: calc(var(--spacing) * 0); - } - - .p-1 { - padding: calc(var(--spacing) * 1); - } - - .p-2 { - padding: calc(var(--spacing) * 2); - } - - .p-3 { - padding: calc(var(--spacing) * 3); - } - - .p-4 { - padding: calc(var(--spacing) * 4); - } - - .p-6 { - padding: calc(var(--spacing) * 6); - } - - .p-\[3px\] { - padding: 3px; - } - - .px-1 { - padding-inline: calc(var(--spacing) * 1); - } - - .px-2 { - padding-inline: calc(var(--spacing) * 2); - } - - .px-2\.5 { - padding-inline: calc(var(--spacing) * 2.5); - } - - .px-3 { - padding-inline: calc(var(--spacing) * 3); - } - - .px-4 { - padding-inline: calc(var(--spacing) * 4); - } - - .px-5 { - padding-inline: calc(var(--spacing) * 5); - } - - .px-6 { - padding-inline: calc(var(--spacing) * 6); - } - - .px-16 { - padding-inline: calc(var(--spacing) * 16); - } - - .py-0\.5 { - padding-block: calc(var(--spacing) * .5); - } - - .py-1 { - padding-block: calc(var(--spacing) * 1); - } - - .py-1\.5 { - padding-block: calc(var(--spacing) * 1.5); - } - - .py-2 { - padding-block: calc(var(--spacing) * 2); - } - - .py-6 { - padding-block: calc(var(--spacing) * 6); - } - - .py-10 { - padding-block: calc(var(--spacing) * 10); - } - - .py-32 { - padding-block: calc(var(--spacing) * 32); - } - - .pt-3 { - padding-top: calc(var(--spacing) * 3); - } - - .pr-2 { - padding-right: calc(var(--spacing) * 2); - } - - .pr-8 { - padding-right: calc(var(--spacing) * 8); - } - - .pb-3 { - padding-bottom: calc(var(--spacing) * 3); - } - - .pl-2 { - padding-left: calc(var(--spacing) * 2); - } - - .pl-8 { - padding-left: calc(var(--spacing) * 8); - } - - .text-center { - text-align: center; - } - - .text-left { - text-align: left; - } - - .align-middle { - vertical-align: middle; - } - - .font-mono { - font-family: var(--font-geist-mono); - } - - .font-sans { - font-family: var(--font-geist-sans); - } - - .text-2xl { - font-size: var(--text-2xl); - line-height: var(--tw-leading, var(--text-2xl--line-height)); - } - - .text-3xl { - font-size: var(--text-3xl); - line-height: var(--tw-leading, var(--text-3xl--line-height)); - } - - .text-base { - font-size: var(--text-base); - line-height: var(--tw-leading, var(--text-base--line-height)); - } - - .text-lg { - font-size: var(--text-lg); - line-height: var(--tw-leading, var(--text-lg--line-height)); - } - - .text-sm { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - - .text-xl { - font-size: var(--text-xl); - line-height: var(--tw-leading, var(--text-xl--line-height)); - } - - .text-xs { - font-size: var(--text-xs); - line-height: var(--tw-leading, var(--text-xs--line-height)); - } - - .leading-8 { - --tw-leading: calc(var(--spacing) * 8); - line-height: calc(var(--spacing) * 8); - } - - .leading-10 { - --tw-leading: calc(var(--spacing) * 10); - line-height: calc(var(--spacing) * 10); - } - - .leading-none { - --tw-leading: 1; - line-height: 1; - } - - .leading-normal { - --tw-leading: var(--leading-normal); - line-height: var(--leading-normal); - } - - .leading-snug { - --tw-leading: var(--leading-snug); - line-height: var(--leading-snug); - } - - .leading-tight { - --tw-leading: var(--leading-tight); - line-height: var(--leading-tight); - } - - .font-bold { - --tw-font-weight: var(--font-weight-bold); - font-weight: var(--font-weight-bold); - } - - .font-medium { - --tw-font-weight: var(--font-weight-medium); - font-weight: var(--font-weight-medium); - } - - .font-normal { - --tw-font-weight: var(--font-weight-normal); - font-weight: var(--font-weight-normal); - } - - .font-semibold { - --tw-font-weight: var(--font-weight-semibold); - font-weight: var(--font-weight-semibold); - } - - .tracking-tight { - --tw-tracking: var(--tracking-tight); - letter-spacing: var(--tracking-tight); - } - - .tracking-widest { - --tw-tracking: var(--tracking-widest); - letter-spacing: var(--tracking-widest); - } - - .text-balance { - text-wrap: balance; - } - - .whitespace-nowrap { - white-space: nowrap; - } - - .text-background { - color: var(--background); - } - - .text-black { - color: var(--color-black); - } - - .text-blue-600 { - color: var(--color-blue-600); - } - - .text-card-foreground { - color: var(--card-foreground); - } - - .text-current { - color: currentColor; - } - - .text-destructive { - color: var(--destructive); - } - - .text-foreground { - color: var(--foreground); - } - - .text-foreground\/60 { - color: var(--foreground); - } - - @supports (color: color-mix(in lab, red, red)) { - .text-foreground\/60 { - color: color-mix(in oklab, var(--foreground) 60%, transparent); - } - } - - .text-gray-500 { - color: var(--color-gray-500); - } - - .text-gray-700 { - color: var(--color-gray-700); - } - - .text-green-600 { - color: var(--color-green-600); - } - - .text-muted-foreground { - color: var(--muted-foreground); - } - - .text-popover-foreground { - color: var(--popover-foreground); - } - - .text-primary { - color: var(--primary); - } - - .text-primary-foreground { - color: var(--primary-foreground); - } - - .text-red-500 { - color: var(--color-red-500); - } - - .text-red-600 { - color: var(--color-red-600); - } - - .text-secondary-foreground { - color: var(--secondary-foreground); - } - - .text-sidebar-foreground { - color: var(--sidebar-foreground); - } - - .text-sidebar-foreground\/70 { - color: var(--sidebar-foreground); - } - - @supports (color: color-mix(in lab, red, red)) { - .text-sidebar-foreground\/70 { - color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent); - } - } - - .text-white { - color: var(--color-white); - } - - .text-zinc-600 { - color: var(--color-zinc-600); - } - - .text-zinc-950 { - color: var(--color-zinc-950); - } - - .capitalize { - text-transform: capitalize; - } - - .tabular-nums { - --tw-numeric-spacing: tabular-nums; - font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, ); - } - - .underline { - text-decoration-line: underline; - } - - .underline-offset-4 { - text-underline-offset: 4px; - } - - .antialiased { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - - .opacity-50 { - opacity: .5; - } - - .opacity-70 { - opacity: .7; - } - - .shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] { - --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border))); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-lg { - --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-md { - --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-sm { - --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-xl { - --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .shadow-xs { - --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, #0000000d); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .ring-2 { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .ring-background { - --tw-ring-color: var(--background); - } - - .ring-sidebar-ring { - --tw-ring-color: var(--sidebar-ring); - } - - .ring-offset-background { - --tw-ring-offset-color: var(--background); - } - - .outline-hidden { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .outline-hidden { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .outline { - outline-style: var(--tw-outline-style); - outline-width: 1px; - } - - .transition { - transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[color\,box-shadow\] { - transition-property: color, box-shadow; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[left\,right\,width\] { - transition-property: left, right, width; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[margin\,opacity\] { - transition-property: margin, opacity; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[width\,height\,padding\] { - transition-property: width, height, padding; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-\[width\] { - transition-property: width; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-all { - transition-property: all; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-colors { - transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-opacity { - transition-property: opacity; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-shadow { - transition-property: box-shadow; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-transform { - transition-property: transform, translate, scale, rotate; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .transition-none { - transition-property: none; - } - - .duration-200 { - --tw-duration: .2s; - transition-duration: .2s; - } - - .ease-in-out { - --tw-ease: var(--ease-in-out); - transition-timing-function: var(--ease-in-out); - } - - .ease-linear { - --tw-ease: linear; - transition-timing-function: linear; - } - - .fade-in-0 { - --tw-enter-opacity: 0; - } - - .outline-none { - --tw-outline-style: none; - outline-style: none; - } - - .select-none { - -webkit-user-select: none; - user-select: none; - } - - .zoom-in-95 { - --tw-enter-scale: .95; - } - - .group-focus-within\/menu-item\:opacity-100:is(:where(.group\/menu-item):focus-within *) { - opacity: 1; - } - - @media (hover: hover) { - .group-hover\/menu-item\:opacity-100:is(:where(.group\/menu-item):hover *) { - opacity: 1; - } - } - - .group-has-data-\[orientation\=horizontal\]\/field\:text-balance:is(:where(.group\/field):has([data-orientation="horizontal"]) *) { - text-wrap: balance; - } - - .group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8:is(:where(.group\/menu-item):has([data-sidebar="menu-action"]) *) { - padding-right: calc(var(--spacing) * 8); - } - - .group-has-data-\[size\=lg\]\/avatar-group\:size-10:is(:where(.group\/avatar-group):has([data-size="lg"]) *) { - width: calc(var(--spacing) * 10); - height: calc(var(--spacing) * 10); - } - - .group-has-data-\[size\=sm\]\/avatar-group\:size-6:is(:where(.group\/avatar-group):has([data-size="sm"]) *) { - width: calc(var(--spacing) * 6); - height: calc(var(--spacing) * 6); - } - - .group-data-\[collapsible\=icon\]\:-mt-8:is(:where(.group)[data-collapsible="icon"] *) { - margin-top: calc(var(--spacing) * -8); - } - - .group-data-\[collapsible\=icon\]\:hidden:is(:where(.group)[data-collapsible="icon"] *) { - display: none; - } - - .group-data-\[collapsible\=icon\]\:size-8\!:is(:where(.group)[data-collapsible="icon"] *) { - width: calc(var(--spacing) * 8) !important; - height: calc(var(--spacing) * 8) !important; - } - - .group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\):is(:where(.group)[data-collapsible="icon"] *) { - width: var(--sidebar-width-icon); - } - - .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\]:is(:where(.group)[data-collapsible="icon"] *) { - width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4))); - } - - .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\]:is(:where(.group)[data-collapsible="icon"] *) { - width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px); - } - - .group-data-\[collapsible\=icon\]\:overflow-hidden:is(:where(.group)[data-collapsible="icon"] *) { - overflow: hidden; - } - - .group-data-\[collapsible\=icon\]\:p-0\!:is(:where(.group)[data-collapsible="icon"] *) { - padding: calc(var(--spacing) * 0) !important; - } - - .group-data-\[collapsible\=icon\]\:p-2\!:is(:where(.group)[data-collapsible="icon"] *) { - padding: calc(var(--spacing) * 2) !important; - } - - .group-data-\[collapsible\=icon\]\:opacity-0:is(:where(.group)[data-collapsible="icon"] *) { - opacity: 0; - } - - .group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) { - right: calc(var(--sidebar-width) * -1); - } - - .group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) { - left: calc(var(--sidebar-width) * -1); - } - - .group-data-\[collapsible\=offcanvas\]\:w-0:is(:where(.group)[data-collapsible="offcanvas"] *) { - width: calc(var(--spacing) * 0); - } - - .group-data-\[collapsible\=offcanvas\]\:translate-x-0:is(:where(.group)[data-collapsible="offcanvas"] *) { - --tw-translate-x: calc(var(--spacing) * 0); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .group-data-\[disabled\=true\]\:pointer-events-none:is(:where(.group)[data-disabled="true"] *) { - pointer-events: none; - } - - .group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled="true"] *) { - opacity: .5; - } - - .group-data-\[disabled\=true\]\/field\:opacity-50:is(:where(.group\/field)[data-disabled="true"] *) { - opacity: .5; - } - - .group-data-\[orientation\=horizontal\]\/tabs\:h-9:is(:where(.group\/tabs)[data-orientation="horizontal"] *) { - height: calc(var(--spacing) * 9); - } - - .group-data-\[orientation\=vertical\]\/tabs\:h-fit:is(:where(.group\/tabs)[data-orientation="vertical"] *) { - height: fit-content; - } - - .group-data-\[orientation\=vertical\]\/tabs\:w-full:is(:where(.group\/tabs)[data-orientation="vertical"] *) { - width: 100%; - } - - .group-data-\[orientation\=vertical\]\/tabs\:flex-col:is(:where(.group\/tabs)[data-orientation="vertical"] *) { - flex-direction: column; - } - - .group-data-\[orientation\=vertical\]\/tabs\:justify-start:is(:where(.group\/tabs)[data-orientation="vertical"] *) { - justify-content: flex-start; - } - - .group-data-\[side\=left\]\:-right-4:is(:where(.group)[data-side="left"] *) { - right: calc(var(--spacing) * -4); - } - - .group-data-\[side\=left\]\:border-r:is(:where(.group)[data-side="left"] *) { - border-right-style: var(--tw-border-style); - border-right-width: 1px; - } - - .group-data-\[side\=right\]\:left-0:is(:where(.group)[data-side="right"] *) { - left: calc(var(--spacing) * 0); - } - - .group-data-\[side\=right\]\:rotate-180:is(:where(.group)[data-side="right"] *) { - rotate: 180deg; - } - - .group-data-\[side\=right\]\:border-l:is(:where(.group)[data-side="right"] *) { - border-left-style: var(--tw-border-style); - border-left-width: 1px; - } - - .group-data-\[size\=default\]\/avatar\:size-2\.5:is(:where(.group\/avatar)[data-size="default"] *) { - width: calc(var(--spacing) * 2.5); - height: calc(var(--spacing) * 2.5); - } - - .group-data-\[size\=lg\]\/avatar\:size-3:is(:where(.group\/avatar)[data-size="lg"] *) { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - - .group-data-\[size\=sm\]\/avatar\:size-2:is(:where(.group\/avatar)[data-size="sm"] *) { - width: calc(var(--spacing) * 2); - height: calc(var(--spacing) * 2); - } - - .group-data-\[size\=sm\]\/avatar\:text-xs:is(:where(.group\/avatar)[data-size="sm"] *) { - font-size: var(--text-xs); - line-height: var(--tw-leading, var(--text-xs--line-height)); - } - - .group-data-\[variant\=floating\]\:rounded-lg:is(:where(.group)[data-variant="floating"] *) { - border-radius: var(--radius); - } - - .group-data-\[variant\=floating\]\:border:is(:where(.group)[data-variant="floating"] *) { - border-style: var(--tw-border-style); - border-width: 1px; - } - - .group-data-\[variant\=floating\]\:border-sidebar-border:is(:where(.group)[data-variant="floating"] *) { - border-color: var(--sidebar-border); - } - - .group-data-\[variant\=floating\]\:shadow-sm:is(:where(.group)[data-variant="floating"] *) { - --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .group-data-\[variant\=line\]\/tabs-list\:bg-transparent:is(:where(.group\/tabs-list)[data-variant="line"] *) { - background-color: #0000; - } - - .group-data-\[variant\=outline\]\/field-group\:-mb-2:is(:where(.group\/field-group)[data-variant="outline"] *) { - margin-bottom: calc(var(--spacing) * -2); - } - - .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) { - display: block; - } - - .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:text-center:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) { - text-align: center; - } - - .group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:text-center:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="top"] *) { - text-align: center; - } - - @media (hover: hover) { - .peer-hover\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button):hover ~ *) { - color: var(--sidebar-accent-foreground); - } - } - - .peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled ~ *) { - cursor: not-allowed; - } - - .peer-disabled\:opacity-50:is(:where(.peer):disabled ~ *) { - opacity: .5; - } - - .peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground:is(:where(.peer\/menu-button)[data-active="true"] ~ *) { - color: var(--sidebar-accent-foreground); - } - - .peer-data-\[size\=default\]\/menu-button\:top-1\.5:is(:where(.peer\/menu-button)[data-size="default"] ~ *) { - top: calc(var(--spacing) * 1.5); - } - - .peer-data-\[size\=lg\]\/menu-button\:top-2\.5:is(:where(.peer\/menu-button)[data-size="lg"] ~ *) { - top: calc(var(--spacing) * 2.5); - } - - .peer-data-\[size\=sm\]\/menu-button\:top-1:is(:where(.peer\/menu-button)[data-size="sm"] ~ *) { - top: calc(var(--spacing) * 1); - } - - .selection\:bg-primary ::selection, .selection\:bg-primary::selection { - background-color: var(--primary); - } - - .selection\:text-primary-foreground ::selection, .selection\:text-primary-foreground::selection { - color: var(--primary-foreground); - } - - .file\:inline-flex::file-selector-button { - display: inline-flex; - } - - .file\:h-7::file-selector-button { - height: calc(var(--spacing) * 7); - } - - .file\:border-0::file-selector-button { - border-style: var(--tw-border-style); - border-width: 0; - } - - .file\:bg-transparent::file-selector-button { - background-color: #0000; - } - - .file\:text-sm::file-selector-button { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - - .file\:font-medium::file-selector-button { - --tw-font-weight: var(--font-weight-medium); - font-weight: var(--font-weight-medium); - } - - .file\:text-foreground::file-selector-button { - color: var(--foreground); - } - - .placeholder\:text-muted-foreground::placeholder { - color: var(--muted-foreground); - } - - .after\:absolute:after { - content: var(--tw-content); - position: absolute; - } - - .after\:-inset-2:after { - content: var(--tw-content); - inset: calc(var(--spacing) * -2); - } - - .after\:inset-y-0:after { - content: var(--tw-content); - inset-block: calc(var(--spacing) * 0); - } - - .after\:left-1\/2:after { - content: var(--tw-content); - left: 50%; - } - - .after\:w-0\.5:after { - content: var(--tw-content); - width: calc(var(--spacing) * .5); - } - - .after\:bg-foreground:after { - content: var(--tw-content); - background-color: var(--foreground); - } - - .after\:opacity-0:after { - content: var(--tw-content); - opacity: 0; - } - - .after\:transition-opacity:after { - content: var(--tw-content); - transition-property: opacity; - transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); - transition-duration: var(--tw-duration, var(--default-transition-duration)); - } - - .group-data-\[collapsible\=offcanvas\]\:after\:left-full:is(:where(.group)[data-collapsible="offcanvas"] *):after { - content: var(--tw-content); - left: 100%; - } - - .group-data-\[orientation\=horizontal\]\/tabs\:after\:inset-x-0:is(:where(.group\/tabs)[data-orientation="horizontal"] *):after { - content: var(--tw-content); - inset-inline: calc(var(--spacing) * 0); - } - - .group-data-\[orientation\=horizontal\]\/tabs\:after\:bottom-\[-5px\]:is(:where(.group\/tabs)[data-orientation="horizontal"] *):after { - content: var(--tw-content); - bottom: -5px; - } - - .group-data-\[orientation\=horizontal\]\/tabs\:after\:h-0\.5:is(:where(.group\/tabs)[data-orientation="horizontal"] *):after { - content: var(--tw-content); - height: calc(var(--spacing) * .5); - } - - .group-data-\[orientation\=vertical\]\/tabs\:after\:inset-y-0:is(:where(.group\/tabs)[data-orientation="vertical"] *):after { - content: var(--tw-content); - inset-block: calc(var(--spacing) * 0); - } - - .group-data-\[orientation\=vertical\]\/tabs\:after\:-right-1:is(:where(.group\/tabs)[data-orientation="vertical"] *):after { - content: var(--tw-content); - right: calc(var(--spacing) * -1); - } - - .group-data-\[orientation\=vertical\]\/tabs\:after\:w-0\.5:is(:where(.group\/tabs)[data-orientation="vertical"] *):after { - content: var(--tw-content); - width: calc(var(--spacing) * .5); - } - - .last\:mt-0:last-child { - margin-top: calc(var(--spacing) * 0); - } - - @media (hover: hover) { - .hover\:border-transparent:hover { - border-color: #0000; - } - } - - @media (hover: hover) { - .hover\:bg-\[\#383838\]:hover { - background-color: #383838; - } - } - - @media (hover: hover) { - .hover\:bg-accent:hover { - background-color: var(--accent); - } - } - - @media (hover: hover) { - .hover\:bg-black\/4:hover { - background-color: #0000000a; - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-black\/4:hover { - background-color: color-mix(in oklab, var(--color-black) 4%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-destructive\/90:hover { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-destructive\/90:hover { - background-color: color-mix(in oklab, var(--destructive) 90%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-muted:hover { - background-color: var(--muted); - } - } - - @media (hover: hover) { - .hover\:bg-muted\/50:hover { - background-color: var(--muted); - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-muted\/50:hover { - background-color: color-mix(in oklab, var(--muted) 50%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-primary\/90:hover { - background-color: var(--primary); - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-primary\/90:hover { - background-color: color-mix(in oklab, var(--primary) 90%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-secondary\/80:hover { - background-color: var(--secondary); - } - - @supports (color: color-mix(in lab, red, red)) { - .hover\:bg-secondary\/80:hover { - background-color: color-mix(in oklab, var(--secondary) 80%, transparent); - } - } - } - - @media (hover: hover) { - .hover\:bg-sidebar-accent:hover { - background-color: var(--sidebar-accent); - } - } - - @media (hover: hover) { - .hover\:text-accent-foreground:hover { - color: var(--accent-foreground); - } - } - - @media (hover: hover) { - .hover\:text-foreground:hover { - color: var(--foreground); - } - } - - @media (hover: hover) { - .hover\:text-sidebar-accent-foreground:hover { - color: var(--sidebar-accent-foreground); - } - } - - @media (hover: hover) { - .hover\:underline:hover { - text-decoration-line: underline; - } - } - - @media (hover: hover) { - .hover\:opacity-100:hover { - opacity: 1; - } - } - - @media (hover: hover) { - .hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\]:hover { - --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-accent))); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - } - - @media (hover: hover) { - .hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar:hover:is(:where(.group)[data-collapsible="offcanvas"] *) { - background-color: var(--sidebar); - } - } - - @media (hover: hover) { - .hover\:after\:bg-sidebar-border:hover:after { - content: var(--tw-content); - background-color: var(--sidebar-border); - } - } - - .focus\:bg-accent:focus { - background-color: var(--accent); - } - - .focus\:text-accent-foreground:focus { - color: var(--accent-foreground); - } - - .focus\:ring-2:focus { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .focus\:ring-ring:focus { - --tw-ring-color: var(--ring); - } - - .focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; - --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - } - - .focus\:outline-hidden:focus { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .focus\:outline-hidden:focus { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .focus-visible\:border-ring:focus-visible { - border-color: var(--ring); - } - - .focus-visible\:ring-2:focus-visible { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .focus-visible\:ring-\[3px\]:focus-visible { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .focus-visible\:ring-destructive\/20:focus-visible { - --tw-ring-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .focus-visible\:ring-destructive\/20:focus-visible { - --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent); - } - } - - .focus-visible\:ring-ring\/50:focus-visible { - --tw-ring-color: var(--ring); - } - - @supports (color: color-mix(in lab, red, red)) { - .focus-visible\:ring-ring\/50:focus-visible { - --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent); - } - } - - .focus-visible\:outline-1:focus-visible { - outline-style: var(--tw-outline-style); - outline-width: 1px; - } - - .focus-visible\:outline-ring:focus-visible { - outline-color: var(--ring); - } - - .active\:bg-sidebar-accent:active { - background-color: var(--sidebar-accent); - } - - .active\:text-sidebar-accent-foreground:active { - color: var(--sidebar-accent-foreground); - } - - .disabled\:pointer-events-none:disabled { - pointer-events: none; - } - - .disabled\:cursor-not-allowed:disabled { - cursor: not-allowed; - } - - .disabled\:opacity-50:disabled { - opacity: .5; - } - - :where([data-side="left"]) .in-data-\[side\=left\]\:cursor-w-resize { - cursor: w-resize; - } - - :where([data-side="right"]) .in-data-\[side\=right\]\:cursor-e-resize { - cursor: e-resize; - } - - .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\]:has([data-slot="card-action"]) { - grid-template-columns: 1fr auto; - } - - .has-data-\[state\=checked\]\:border-primary:has([data-state="checked"]) { - border-color: var(--primary); - } - - .has-data-\[state\=checked\]\:bg-primary\/5:has([data-state="checked"]) { - background-color: var(--primary); - } - - @supports (color: color-mix(in lab, red, red)) { - .has-data-\[state\=checked\]\:bg-primary\/5:has([data-state="checked"]) { - background-color: color-mix(in oklab, var(--primary) 5%, transparent); - } - } - - .has-data-\[variant\=inset\]\:bg-sidebar:has([data-variant="inset"]) { - background-color: var(--sidebar); - } - - .has-\[\>\[data-slot\=checkbox-group\]\]\:gap-3:has( > [data-slot="checkbox-group"]) { - gap: calc(var(--spacing) * 3); - } - - .has-\[\>\[data-slot\=field-content\]\]\:items-start:has( > [data-slot="field-content"]) { - align-items: flex-start; - } - - .has-\[\>\[data-slot\=field\]\]\:w-full:has( > [data-slot="field"]) { - width: 100%; - } - - .has-\[\>\[data-slot\=field\]\]\:flex-col:has( > [data-slot="field"]) { - flex-direction: column; - } - - .has-\[\>\[data-slot\=field\]\]\:rounded-md:has( > [data-slot="field"]) { - border-radius: calc(var(--radius) - 2px); - } - - .has-\[\>\[data-slot\=field\]\]\:border:has( > [data-slot="field"]) { - border-style: var(--tw-border-style); - border-width: 1px; - } - - .has-\[\>\[data-slot\=radio-group\]\]\:gap-3:has( > [data-slot="radio-group"]) { - gap: calc(var(--spacing) * 3); - } - - .has-\[\>svg\]\:px-1\.5:has( > svg) { - padding-inline: calc(var(--spacing) * 1.5); - } - - .has-\[\>svg\]\:px-2\.5:has( > svg) { - padding-inline: calc(var(--spacing) * 2.5); - } - - .has-\[\>svg\]\:px-3:has( > svg) { - padding-inline: calc(var(--spacing) * 3); - } - - .has-\[\>svg\]\:px-4:has( > svg) { - padding-inline: calc(var(--spacing) * 4); - } - - .aria-disabled\:pointer-events-none[aria-disabled="true"] { - pointer-events: none; - } - - .aria-disabled\:opacity-50[aria-disabled="true"] { - opacity: .5; - } - - .aria-invalid\:border-destructive[aria-invalid="true"] { - border-color: var(--destructive); - } - - .aria-invalid\:ring-destructive\/20[aria-invalid="true"] { - --tw-ring-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .aria-invalid\:ring-destructive\/20[aria-invalid="true"] { - --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent); - } - } - - .data-\[active\=true\]\:bg-sidebar-accent[data-active="true"] { - background-color: var(--sidebar-accent); - } - - .data-\[active\=true\]\:font-medium[data-active="true"] { - --tw-font-weight: var(--font-weight-medium); - font-weight: var(--font-weight-medium); - } - - .data-\[active\=true\]\:text-sidebar-accent-foreground[data-active="true"] { - color: var(--sidebar-accent-foreground); - } - - .data-\[disabled\]\:pointer-events-none[data-disabled] { - pointer-events: none; - } - - .data-\[disabled\]\:opacity-50[data-disabled] { - opacity: .5; - } - - .data-\[inset\]\:pl-8[data-inset] { - padding-left: calc(var(--spacing) * 8); - } - - .data-\[invalid\=true\]\:text-destructive[data-invalid="true"] { - color: var(--destructive); - } - - .data-\[orientation\=horizontal\]\:h-px[data-orientation="horizontal"] { - height: 1px; - } - - .data-\[orientation\=horizontal\]\:w-full[data-orientation="horizontal"] { - width: 100%; - } - - .data-\[orientation\=horizontal\]\:flex-col[data-orientation="horizontal"] { - flex-direction: column; - } - - .data-\[orientation\=vertical\]\:h-4[data-orientation="vertical"] { - height: calc(var(--spacing) * 4); - } - - .data-\[orientation\=vertical\]\:h-full[data-orientation="vertical"] { - height: 100%; - } - - .data-\[orientation\=vertical\]\:w-px[data-orientation="vertical"] { - width: 1px; - } - - .data-\[placeholder\]\:text-muted-foreground[data-placeholder] { - color: var(--muted-foreground); - } - - .data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] { - --tw-translate-y: calc(var(--spacing) * 1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] { - --tw-enter-translate-y: calc(2 * var(--spacing) * -1); - } - - .data-\[side\=left\]\:-translate-x-1[data-side="left"] { - --tw-translate-x: calc(var(--spacing) * -1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] { - --tw-enter-translate-x: calc(2 * var(--spacing)); - } - - .data-\[side\=right\]\:translate-x-1[data-side="right"] { - --tw-translate-x: calc(var(--spacing) * 1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] { - --tw-enter-translate-x: calc(2 * var(--spacing) * -1); - } - - .data-\[side\=top\]\:-translate-y-1[data-side="top"] { - --tw-translate-y: calc(var(--spacing) * -1); - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] { - --tw-enter-translate-y: calc(2 * var(--spacing)); - } - - .data-\[size\=default\]\:h-9[data-size="default"] { - height: calc(var(--spacing) * 9); - } - - .data-\[size\=lg\]\:size-10[data-size="lg"] { - width: calc(var(--spacing) * 10); - height: calc(var(--spacing) * 10); - } - - .data-\[size\=sm\]\:size-6[data-size="sm"] { - width: calc(var(--spacing) * 6); - height: calc(var(--spacing) * 6); - } - - .data-\[size\=sm\]\:h-8[data-size="sm"] { - height: calc(var(--spacing) * 8); - } - - :is(.\*\:data-\[slot\=avatar\]\:ring-2 > *)[data-slot="avatar"] { - --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - :is(.\*\:data-\[slot\=avatar\]\:ring-background > *)[data-slot="avatar"] { - --tw-ring-color: var(--background); - } - - .data-\[slot\=checkbox-group\]\:gap-3[data-slot="checkbox-group"] { - gap: calc(var(--spacing) * 3); - } - - :is(.\*\:data-\[slot\=field\]\:p-4 > *)[data-slot="field"] { - padding: calc(var(--spacing) * 4); - } - - :is(.\*\:data-\[slot\=field-group\]\:gap-4 > *)[data-slot="field-group"] { - gap: calc(var(--spacing) * 4); - } - - :is(.\*\:data-\[slot\=select-value\]\:line-clamp-1 > *)[data-slot="select-value"] { - -webkit-line-clamp: 1; - -webkit-box-orient: vertical; - display: -webkit-box; - overflow: hidden; - } - - :is(.\*\:data-\[slot\=select-value\]\:flex > *)[data-slot="select-value"] { - display: flex; - } - - :is(.\*\:data-\[slot\=select-value\]\:items-center > *)[data-slot="select-value"] { - align-items: center; - } - - :is(.\*\:data-\[slot\=select-value\]\:gap-2 > *)[data-slot="select-value"] { - gap: calc(var(--spacing) * 2); - } - - .data-\[slot\=sidebar-menu-button\]\:p-1\.5\![data-slot="sidebar-menu-button"] { - padding: calc(var(--spacing) * 1.5) !important; - } - - .data-\[state\=active\]\:bg-background[data-state="active"] { - background-color: var(--background); - } - - .data-\[state\=active\]\:text-foreground[data-state="active"] { - color: var(--foreground); - } - - .group-data-\[variant\=default\]\/tabs-list\:data-\[state\=active\]\:shadow-sm:is(:where(.group\/tabs-list)[data-variant="default"] *)[data-state="active"] { - --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:bg-transparent:is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"] { - background-color: #0000; - } - - .group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:shadow-none:is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"] { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - - .group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:after\:opacity-100:is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"]:after { - content: var(--tw-content); - opacity: 1; - } - - .data-\[state\=checked\]\:border-primary[data-state="checked"] { - border-color: var(--primary); - } - - .data-\[state\=checked\]\:bg-primary[data-state="checked"] { - background-color: var(--primary); - } - - .data-\[state\=checked\]\:text-primary-foreground[data-state="checked"] { - color: var(--primary-foreground); - } - - .data-\[state\=closed\]\:animate-out[data-state="closed"] { - animation: exit var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none); - } - - .data-\[state\=closed\]\:duration-300[data-state="closed"] { - --tw-duration: .3s; - transition-duration: .3s; - } - - .data-\[state\=closed\]\:fade-out-0[data-state="closed"] { - --tw-exit-opacity: 0; - } - - .data-\[state\=closed\]\:zoom-out-95[data-state="closed"] { - --tw-exit-scale: .95; - } - - .data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] { - --tw-exit-translate-y: 100%; - } - - .data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] { - --tw-exit-translate-x: -100%; - } - - .data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] { - --tw-exit-translate-x: 100%; - } - - .data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] { - --tw-exit-translate-y: -100%; - } - - .data-\[state\=open\]\:animate-in[data-state="open"] { - animation: enter var(--tw-animation-duration, var(--tw-duration, .15s)) var(--tw-ease, ease) var(--tw-animation-delay, 0s) var(--tw-animation-iteration-count, 1) var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none); - } - - .data-\[state\=open\]\:bg-accent[data-state="open"] { - background-color: var(--accent); - } - - .data-\[state\=open\]\:bg-secondary[data-state="open"] { - background-color: var(--secondary); - } - - .data-\[state\=open\]\:bg-sidebar-accent[data-state="open"] { - background-color: var(--sidebar-accent); - } - - .data-\[state\=open\]\:text-accent-foreground[data-state="open"] { - color: var(--accent-foreground); - } - - .data-\[state\=open\]\:text-muted-foreground[data-state="open"] { - color: var(--muted-foreground); - } - - .data-\[state\=open\]\:text-sidebar-accent-foreground[data-state="open"] { - color: var(--sidebar-accent-foreground); - } - - .data-\[state\=open\]\:opacity-100[data-state="open"] { - opacity: 1; - } - - .data-\[state\=open\]\:duration-500[data-state="open"] { - --tw-duration: .5s; - transition-duration: .5s; - } - - .data-\[state\=open\]\:fade-in-0[data-state="open"] { - --tw-enter-opacity: 0; - } - - .data-\[state\=open\]\:zoom-in-95[data-state="open"] { - --tw-enter-scale: .95; - } - - .data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] { - --tw-enter-translate-y: 100%; - } - - .data-\[state\=open\]\:slide-in-from-left[data-state="open"] { - --tw-enter-translate-x: -100%; - } - - .data-\[state\=open\]\:slide-in-from-right[data-state="open"] { - --tw-enter-translate-x: 100%; - } - - .data-\[state\=open\]\:slide-in-from-top[data-state="open"] { - --tw-enter-translate-y: -100%; - } - - @media (hover: hover) { - .data-\[state\=open\]\:hover\:bg-sidebar-accent[data-state="open"]:hover { - background-color: var(--sidebar-accent); - } - } - - @media (hover: hover) { - .data-\[state\=open\]\:hover\:text-sidebar-accent-foreground[data-state="open"]:hover { - color: var(--sidebar-accent-foreground); - } - } - - .data-\[state\=selected\]\:bg-muted[data-state="selected"] { - background-color: var(--muted); - } - - .data-\[variant\=destructive\]\:text-destructive[data-variant="destructive"] { - color: var(--destructive); - } - - .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant="destructive"]:focus { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant="destructive"]:focus { - background-color: color-mix(in oklab, var(--destructive) 10%, transparent); - } - } - - .data-\[variant\=destructive\]\:focus\:text-destructive[data-variant="destructive"]:focus { - color: var(--destructive); - } - - .data-\[variant\=label\]\:text-sm[data-variant="label"] { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - - .data-\[variant\=legend\]\:text-base[data-variant="legend"] { - font-size: var(--text-base); - line-height: var(--tw-leading, var(--text-base--line-height)); - } - - .data-\[variant\=line\]\:rounded-none[data-variant="line"] { - border-radius: 0; - } - - .data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction="bottom"] { - inset-inline: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=bottom\]\:bottom-0[data-vaul-drawer-direction="bottom"] { - bottom: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=bottom\]\:mt-24[data-vaul-drawer-direction="bottom"] { - margin-top: calc(var(--spacing) * 24); - } - - .data-\[vaul-drawer-direction\=bottom\]\:max-h-\[80vh\][data-vaul-drawer-direction="bottom"] { - max-height: 80vh; - } - - .data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg[data-vaul-drawer-direction="bottom"] { - border-top-left-radius: var(--radius); - border-top-right-radius: var(--radius); - } - - .data-\[vaul-drawer-direction\=bottom\]\:border-t[data-vaul-drawer-direction="bottom"] { - border-top-style: var(--tw-border-style); - border-top-width: 1px; - } - - .data-\[vaul-drawer-direction\=left\]\:inset-y-0[data-vaul-drawer-direction="left"] { - inset-block: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=left\]\:left-0[data-vaul-drawer-direction="left"] { - left: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=left\]\:w-3\/4[data-vaul-drawer-direction="left"] { - width: 75%; - } - - .data-\[vaul-drawer-direction\=left\]\:border-r[data-vaul-drawer-direction="left"] { - border-right-style: var(--tw-border-style); - border-right-width: 1px; - } - - .data-\[vaul-drawer-direction\=right\]\:inset-y-0[data-vaul-drawer-direction="right"] { - inset-block: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=right\]\:right-0[data-vaul-drawer-direction="right"] { - right: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=right\]\:w-3\/4[data-vaul-drawer-direction="right"] { - width: 75%; - } - - .data-\[vaul-drawer-direction\=right\]\:border-l[data-vaul-drawer-direction="right"] { - border-left-style: var(--tw-border-style); - border-left-width: 1px; - } - - .data-\[vaul-drawer-direction\=top\]\:inset-x-0[data-vaul-drawer-direction="top"] { - inset-inline: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=top\]\:top-0[data-vaul-drawer-direction="top"] { - top: calc(var(--spacing) * 0); - } - - .data-\[vaul-drawer-direction\=top\]\:mb-24[data-vaul-drawer-direction="top"] { - margin-bottom: calc(var(--spacing) * 24); - } - - .data-\[vaul-drawer-direction\=top\]\:max-h-\[80vh\][data-vaul-drawer-direction="top"] { - max-height: 80vh; - } - - .data-\[vaul-drawer-direction\=top\]\:rounded-b-lg[data-vaul-drawer-direction="top"] { - border-bottom-right-radius: var(--radius); - border-bottom-left-radius: var(--radius); - } - - .data-\[vaul-drawer-direction\=top\]\:border-b[data-vaul-drawer-direction="top"] { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 1px; - } - - .nth-last-2\:-mt-1:nth-last-child(2) { - margin-top: calc(var(--spacing) * -1); - } - - @media (min-width: 40rem) { - .sm\:flex { - display: flex; - } - } - - @media (min-width: 40rem) { - .sm\:w-40 { - width: calc(var(--spacing) * 40); - } - } - - @media (min-width: 40rem) { - .sm\:w-48 { - width: calc(var(--spacing) * 48); - } - } - - @media (min-width: 40rem) { - .sm\:max-w-2xl { - max-width: var(--container-2xl); - } - } - - @media (min-width: 40rem) { - .sm\:max-w-lg { - max-width: var(--container-lg); - } - } - - @media (min-width: 40rem) { - .sm\:max-w-sm { - max-width: var(--container-sm); - } - } - - @media (min-width: 40rem) { - .sm\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - } - - @media (min-width: 40rem) { - .sm\:flex-row { - flex-direction: row; - } - } - - @media (min-width: 40rem) { - .sm\:items-start { - align-items: flex-start; - } - } - - @media (min-width: 40rem) { - .sm\:justify-end { - justify-content: flex-end; - } - } - - @media (min-width: 40rem) { - .sm\:text-left { - text-align: left; - } - } - - @media (min-width: 40rem) { - .data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm[data-vaul-drawer-direction="left"] { - max-width: var(--container-sm); - } - } - - @media (min-width: 40rem) { - .data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm[data-vaul-drawer-direction="right"] { - max-width: var(--container-sm); - } - } - - @media (min-width: 48rem) { - .md\:block { - display: block; - } - } - - @media (min-width: 48rem) { - .md\:flex { - display: flex; - } - } - - @media (min-width: 48rem) { - .md\:hidden { - display: none; - } - } - - @media (min-width: 48rem) { - .md\:w-39\.5 { - width: calc(var(--spacing) * 39.5); - } - } - - @media (min-width: 48rem) { - .md\:gap-1\.5 { - gap: calc(var(--spacing) * 1.5); - } - } - - @media (min-width: 48rem) { - .md\:p-6 { - padding: calc(var(--spacing) * 6); - } - } - - @media (min-width: 48rem) { - .md\:text-left { - text-align: left; - } - } - - @media (min-width: 48rem) { - .md\:text-sm { - font-size: var(--text-sm); - line-height: var(--tw-leading, var(--text-sm--line-height)); - } - } - - @media (min-width: 48rem) { - .md\:opacity-0 { - opacity: 0; - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:m-2:is(:where(.peer)[data-variant="inset"] ~ *) { - margin: calc(var(--spacing) * 2); - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:ml-0:is(:where(.peer)[data-variant="inset"] ~ *) { - margin-left: calc(var(--spacing) * 0); - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:rounded-xl:is(:where(.peer)[data-variant="inset"] ~ *) { - border-radius: calc(var(--radius) + 4px); - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:shadow-sm:is(:where(.peer)[data-variant="inset"] ~ *) { - --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a); - box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - } - } - - @media (min-width: 48rem) { - .md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2:is(:where(.peer)[data-variant="inset"] ~ *):is(:where(.peer)[data-state="collapsed"] ~ *) { - margin-left: calc(var(--spacing) * 2); - } - } - - @media (min-width: 48rem) { - .md\:after\:hidden:after { - content: var(--tw-content); - display: none; - } - } - - @media (min-width: 64rem) { - .lg\:table-cell { - display: table-cell; - } - } - - @media (min-width: 64rem) { - .lg\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - } - - @media (min-width: 64rem) { - .lg\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - } - - @media (min-width: 64rem) { - .lg\:px-6 { - padding-inline: calc(var(--spacing) * 6); - } - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:flex-row { - flex-direction: row; - } - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:items-center { - align-items: center; - } - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:items-start:has( > [data-slot="field-content"]) { - align-items: flex-start; - } - } - - .dark\:border-input:is(.dark *) { - border-color: var(--input); - } - - .dark\:border-white\/\[\.145\]:is(.dark *) { - border-color: #ffffff25; - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:border-white\/\[\.145\]:is(.dark *) { - border-color: color-mix(in oklab, var(--color-white) 14.5%, transparent); - } - } - - .dark\:bg-black:is(.dark *) { - background-color: var(--color-black); - } - - .dark\:bg-destructive\/60:is(.dark *) { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:bg-destructive\/60:is(.dark *) { - background-color: color-mix(in oklab, var(--destructive) 60%, transparent); - } - } - - .dark\:bg-input\/30:is(.dark *) { - background-color: var(--input); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:bg-input\/30:is(.dark *) { - background-color: color-mix(in oklab, var(--input) 30%, transparent); - } - } - - .dark\:text-muted-foreground:is(.dark *) { - color: var(--muted-foreground); - } - - .dark\:text-zinc-50:is(.dark *) { - color: var(--color-zinc-50); - } - - .dark\:text-zinc-400:is(.dark *) { - color: var(--color-zinc-400); - } - - .dark\:invert:is(.dark *) { - --tw-invert: invert(100%); - filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, ); - } - - @media (hover: hover) { - .dark\:hover\:bg-\[\#1a1a1a\]:is(.dark *):hover { - background-color: #1a1a1a; - } - } - - @media (hover: hover) { - .dark\:hover\:bg-\[\#ccc\]:is(.dark *):hover { - background-color: #ccc; - } - } - - @media (hover: hover) { - .dark\:hover\:bg-accent\/50:is(.dark *):hover { - background-color: var(--accent); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:hover\:bg-accent\/50:is(.dark *):hover { - background-color: color-mix(in oklab, var(--accent) 50%, transparent); - } - } - } - - @media (hover: hover) { - .dark\:hover\:bg-input\/50:is(.dark *):hover { - background-color: var(--input); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:hover\:bg-input\/50:is(.dark *):hover { - background-color: color-mix(in oklab, var(--input) 50%, transparent); - } - } - } - - @media (hover: hover) { - .dark\:hover\:text-foreground:is(.dark *):hover { - color: var(--foreground); - } - } - - .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible { - --tw-ring-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible { - --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent); - } - } - - .dark\:has-data-\[state\=checked\]\:bg-primary\/10:is(.dark *):has([data-state="checked"]) { - background-color: var(--primary); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:has-data-\[state\=checked\]\:bg-primary\/10:is(.dark *):has([data-state="checked"]) { - background-color: color-mix(in oklab, var(--primary) 10%, transparent); - } - } - - .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid="true"] { - --tw-ring-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid="true"] { - --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent); - } - } - - .dark\:data-\[state\=active\]\:border-input:is(.dark *)[data-state="active"] { - border-color: var(--input); - } - - .dark\:data-\[state\=active\]\:bg-input\/30:is(.dark *)[data-state="active"] { - background-color: var(--input); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:data-\[state\=active\]\:bg-input\/30:is(.dark *)[data-state="active"] { - background-color: color-mix(in oklab, var(--input) 30%, transparent); - } - } - - .dark\:data-\[state\=active\]\:text-foreground:is(.dark *)[data-state="active"] { - color: var(--foreground); - } - - .dark\:group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:border-transparent:is(.dark *):is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"] { - border-color: #0000; - } - - .dark\:group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:bg-transparent:is(.dark *):is(:where(.group\/tabs-list)[data-variant="line"] *)[data-state="active"] { - background-color: #0000; - } - - .dark\:data-\[state\=checked\]\:bg-primary:is(.dark *)[data-state="checked"] { - background-color: var(--primary); - } - - .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant="destructive"]:focus { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant="destructive"]:focus { - background-color: color-mix(in oklab, var(--destructive) 20%, transparent); - } - } - - .\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text { - fill: var(--muted-foreground); - } - - .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] { - stroke: var(--border); - } - - @supports (color: color-mix(in lab, red, red)) { - .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] { - stroke: color-mix(in oklab, var(--border) 50%, transparent); - } - } - - .\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border .recharts-curve.recharts-tooltip-cursor { - stroke: var(--border); - } - - .\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke="#fff"] { - stroke: #0000; - } - - .\[\&_\.recharts-layer\]\:outline-hidden .recharts-layer { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .\[\&_\.recharts-layer\]\:outline-hidden .recharts-layer { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-polar-grid [stroke="#ccc"] { - stroke: var(--border); - } - - .\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted .recharts-radial-bar-background-sector { - fill: var(--muted); - } - - .\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted .recharts-rectangle.recharts-tooltip-cursor { - fill: var(--muted); - } - - .\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-reference-line [stroke="#ccc"] { - stroke: var(--border); - } - - .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-sector[stroke="#fff"] { - stroke: #0000; - } - - .\[\&_\.recharts-surface\]\:outline-hidden .recharts-surface { - --tw-outline-style: none; - outline-style: none; - } - - @media (forced-colors: active) { - .\[\&_\.recharts-surface\]\:outline-hidden .recharts-surface { - outline-offset: 2px; - outline: 2px solid #0000; - } - } - - .\[\&_svg\]\:pointer-events-none svg { - pointer-events: none; - } - - .\[\&_svg\]\:shrink-0 svg { - flex-shrink: 0; - } - - .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3 svg:not([class*="size-"]) { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - - .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*="size-"]) { - width: calc(var(--spacing) * 4); - height: calc(var(--spacing) * 4); - } - - .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*="text-"]) { - color: var(--muted-foreground); - } - - .\[\&_tr\]\:border-b tr { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 1px; - } - - .\[\&_tr\:last-child\]\:border-0 tr:last-child { - border-style: var(--tw-border-style); - border-width: 0; - } - - .\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role="checkbox"]) { - padding-right: calc(var(--spacing) * 0); - } - - .\[\.border-b\]\:pb-6.border-b { - padding-bottom: calc(var(--spacing) * 6); - } - - .\[\.border-t\]\:pt-6.border-t { - padding-top: calc(var(--spacing) * 6); - } - - :is(.\*\:\[span\]\:last\:flex > *):is(span):last-child { - display: flex; - } - - :is(.\*\:\[span\]\:last\:items-center > *):is(span):last-child { - align-items: center; - } - - :is(.\*\:\[span\]\:last\:gap-2 > *):is(span):last-child { - gap: calc(var(--spacing) * 2); - } - - :is(.data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive[data-variant="destructive"] > *):is(svg) { - color: var(--destructive) !important; - } - - .\[\&\>\*\]\:w-full > * { - width: 100%; - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:\[\&\>\*\]\:w-auto > * { - width: auto; - } - } - - .\[\&\>\.sr-only\]\:w-auto > .sr-only { - width: auto; - } - - .\[\&\>\[data-slot\=field-label\]\]\:flex-auto > [data-slot="field-label"] { - flex: auto; - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:\[\&\>\[data-slot\=field-label\]\]\:flex-auto > [data-slot="field-label"] { - flex: auto; - } - } - - .\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] > [role="checkbox"] { - --tw-translate-y: 2px; - translate: var(--tw-translate-x) var(--tw-translate-y); - } - - .has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px:has( > [data-slot="field-content"]) > [role="checkbox"], .has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px:has( > [data-slot="field-content"]) [role="radio"] { - margin-top: 1px; - } - - @container field-group (min-width: 28rem) { - .\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px:has( > [data-slot="field-content"]) > [role="checkbox"], .\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px:has( > [data-slot="field-content"]) [role="radio"] { - margin-top: 1px; - } - } - - .\[\&\>a\]\:underline > a { - text-decoration-line: underline; - } - - .\[\&\>a\]\:underline-offset-4 > a { - text-underline-offset: 4px; - } - - .\[\&\>a\:hover\]\:text-primary > a:hover { - color: var(--primary); - } - - .\[\&\>button\]\:hidden > button { - display: none; - } - - .\[\&\>span\:last-child\]\:truncate > span:last-child { - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - } - - .\[\&\>svg\]\:pointer-events-none > svg { - pointer-events: none; - } - - .\[\&\>svg\]\:size-3 > svg { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - - .\[\&\>svg\]\:size-4 > svg { - width: calc(var(--spacing) * 4); - height: calc(var(--spacing) * 4); - } - - .\[\&\>svg\]\:h-2\.5 > svg { - height: calc(var(--spacing) * 2.5); - } - - .\[\&\>svg\]\:h-3 > svg { - height: calc(var(--spacing) * 3); - } - - .\[\&\>svg\]\:w-2\.5 > svg { - width: calc(var(--spacing) * 2.5); - } - - .\[\&\>svg\]\:w-3 > svg { - width: calc(var(--spacing) * 3); - } - - .\[\&\>svg\]\:shrink-0 > svg { - flex-shrink: 0; - } - - .\[\&\>svg\]\:text-muted-foreground > svg { - color: var(--muted-foreground); - } - - .\[\&\>svg\]\:text-sidebar-accent-foreground > svg { - color: var(--sidebar-accent-foreground); - } - - .group-has-data-\[size\=lg\]\/avatar-group\:\[\&\>svg\]\:size-5:is(:where(.group\/avatar-group):has([data-size="lg"]) *) > svg { - width: calc(var(--spacing) * 5); - height: calc(var(--spacing) * 5); - } - - .group-has-data-\[size\=sm\]\/avatar-group\:\[\&\>svg\]\:size-3:is(:where(.group\/avatar-group):has([data-size="sm"]) *) > svg { - width: calc(var(--spacing) * 3); - height: calc(var(--spacing) * 3); - } - - .group-data-\[size\=default\]\/avatar\:\[\&\>svg\]\:size-2:is(:where(.group\/avatar)[data-size="default"] *) > svg { - width: calc(var(--spacing) * 2); - height: calc(var(--spacing) * 2); - } - - .group-data-\[size\=lg\]\/avatar\:\[\&\>svg\]\:size-2:is(:where(.group\/avatar)[data-size="lg"] *) > svg { - width: calc(var(--spacing) * 2); - height: calc(var(--spacing) * 2); - } - - .group-data-\[size\=sm\]\/avatar\:\[\&\>svg\]\:hidden:is(:where(.group\/avatar)[data-size="sm"] *) > svg { - display: none; - } - - .\[\&\>tr\]\:last\:border-b-0 > tr:last-child { - border-bottom-style: var(--tw-border-style); - border-bottom-width: 0; - } - - [data-side="left"][data-collapsible="offcanvas"] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 { - right: calc(var(--spacing) * -2); - } - - [data-side="left"][data-state="collapsed"] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize { - cursor: e-resize; - } - - [data-side="right"][data-collapsible="offcanvas"] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 { - left: calc(var(--spacing) * -2); - } - - [data-side="right"][data-state="collapsed"] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize { - cursor: w-resize; - } - - [data-variant="legend"] + .\[\[data-variant\=legend\]\+\&\]\:-mt-1\.5 { - margin-top: calc(var(--spacing) * -1.5); - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:bg-accent:hover { - background-color: var(--accent); - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:bg-destructive\/90:hover { - background-color: var(--destructive); - } - - @supports (color: color-mix(in lab, red, red)) { - a.\[a\&\]\:hover\:bg-destructive\/90:hover { - background-color: color-mix(in oklab, var(--destructive) 90%, transparent); - } - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:bg-primary\/90:hover { - background-color: var(--primary); - } - - @supports (color: color-mix(in lab, red, red)) { - a.\[a\&\]\:hover\:bg-primary\/90:hover { - background-color: color-mix(in oklab, var(--primary) 90%, transparent); - } - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:bg-secondary\/90:hover { - background-color: var(--secondary); - } - - @supports (color: color-mix(in lab, red, red)) { - a.\[a\&\]\:hover\:bg-secondary\/90:hover { - background-color: color-mix(in oklab, var(--secondary) 90%, transparent); - } - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:text-accent-foreground:hover { - color: var(--accent-foreground); - } - } - - @media (hover: hover) { - a.\[a\&\]\:hover\:underline:hover { - text-decoration-line: underline; - } - } -} - -@property --tw-animation-delay { - syntax: "*"; - inherits: false; - initial-value: 0s; -} - -@property --tw-animation-direction { - syntax: "*"; - inherits: false; - initial-value: normal; -} - -@property --tw-animation-duration { - syntax: "*"; - inherits: false -} - -@property --tw-animation-fill-mode { - syntax: "*"; - inherits: false; - initial-value: none; -} - -@property --tw-animation-iteration-count { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-enter-blur { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-enter-opacity { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-enter-rotate { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-enter-scale { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-enter-translate-x { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-enter-translate-y { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-exit-blur { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-exit-opacity { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-exit-rotate { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-exit-scale { - syntax: "*"; - inherits: false; - initial-value: 1; -} - -@property --tw-exit-translate-x { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-exit-translate-y { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -:root { - --radius: .625rem; - --background: #fff; - --foreground: #0a0a0a; - --card: #fff; - --card-foreground: #0a0a0a; - --popover: #fff; - --popover-foreground: #0a0a0a; - --primary: #171717; - --primary-foreground: #fafafa; - --secondary: #f5f5f5; - --secondary-foreground: #171717; - --muted: #f5f5f5; - --muted-foreground: #737373; - --accent: #f5f5f5; - --accent-foreground: #171717; - --destructive: #e40014; - --border: #e5e5e5; - --input: #e5e5e5; - --ring: #a1a1a1; - --chart-1: #f05100; - --chart-2: #009588; - --chart-3: #104e64; - --chart-4: #fcbb00; - --chart-5: #f99c00; - --sidebar: #fafafa; - --sidebar-foreground: #0a0a0a; - --sidebar-primary: #171717; - --sidebar-primary-foreground: #fafafa; - --sidebar-accent: #f5f5f5; - --sidebar-accent-foreground: #171717; - --sidebar-border: #e5e5e5; - --sidebar-ring: #a1a1a1; -} - -@supports (color: lab(0% 0 0)) { - :root { - --background: lab(100% 0 0); - --foreground: lab(2.75381% 0 0); - --card: lab(100% 0 0); - --card-foreground: lab(2.75381% 0 0); - --popover: lab(100% 0 0); - --popover-foreground: lab(2.75381% 0 0); - --primary: lab(7.78201% -.0000149012 0); - --primary-foreground: lab(98.26% 0 0); - --secondary: lab(96.52% -.0000298023 .0000119209); - --secondary-foreground: lab(7.78201% -.0000149012 0); - --muted: lab(96.52% -.0000298023 .0000119209); - --muted-foreground: lab(48.496% 0 0); - --accent: lab(96.52% -.0000298023 .0000119209); - --accent-foreground: lab(7.78201% -.0000149012 0); - --destructive: lab(48.4493% 77.4328 61.5452); - --border: lab(90.952% 0 -.0000119209); - --input: lab(90.952% 0 -.0000119209); - --ring: lab(66.128% -.0000298023 .0000119209); - --chart-1: lab(57.1026% 64.2584 89.8886); - --chart-2: lab(55.0223% -41.0774 -3.90277); - --chart-3: lab(30.372% -13.1853 -18.7887); - --chart-4: lab(80.1641% 16.6016 99.2089); - --chart-5: lab(72.7183% 31.8672 97.9407); - --sidebar: lab(98.26% 0 0); - --sidebar-foreground: lab(2.75381% 0 0); - --sidebar-primary: lab(7.78201% -.0000149012 0); - --sidebar-primary-foreground: lab(98.26% 0 0); - --sidebar-accent: lab(96.52% -.0000298023 .0000119209); - --sidebar-accent-foreground: lab(7.78201% -.0000149012 0); - --sidebar-border: lab(90.952% 0 -.0000119209); - --sidebar-ring: lab(66.128% -.0000298023 .0000119209); - } -} - -.dark { - --background: #0a0a0a; - --foreground: #fafafa; - --card: #171717; - --card-foreground: #fafafa; - --popover: #171717; - --popover-foreground: #fafafa; - --primary: #e5e5e5; - --primary-foreground: #171717; - --secondary: #262626; - --secondary-foreground: #fafafa; - --muted: #262626; - --muted-foreground: #a1a1a1; - --accent: #262626; - --accent-foreground: #fafafa; - --destructive: #ff6568; - --border: #ffffff1a; - --input: #ffffff26; - --ring: #737373; - --chart-1: #1447e6; - --chart-2: #00bb7f; - --chart-3: #f99c00; - --chart-4: #ac4bff; - --chart-5: #ff2357; - --sidebar: #171717; - --sidebar-foreground: #fafafa; - --sidebar-primary: #1447e6; - --sidebar-primary-foreground: #fafafa; - --sidebar-accent: #262626; - --sidebar-accent-foreground: #fafafa; - --sidebar-border: #ffffff1a; - --sidebar-ring: #737373; -} - -@supports (color: lab(0% 0 0)) { - .dark { - --background: lab(2.75381% 0 0); - --foreground: lab(98.26% 0 0); - --card: lab(7.78201% -.0000149012 0); - --card-foreground: lab(98.26% 0 0); - --popover: lab(7.78201% -.0000149012 0); - --popover-foreground: lab(98.26% 0 0); - --primary: lab(90.952% 0 -.0000119209); - --primary-foreground: lab(7.78201% -.0000149012 0); - --secondary: lab(15.204% 0 -.00000596046); - --secondary-foreground: lab(98.26% 0 0); - --muted: lab(15.204% 0 -.00000596046); - --muted-foreground: lab(66.128% -.0000298023 .0000119209); - --accent: lab(15.204% 0 -.00000596046); - --accent-foreground: lab(98.26% 0 0); - --destructive: lab(63.7053% 60.745 31.3109); - --border: lab(100% 0 0 / .1); - --input: lab(100% 0 0 / .15); - --ring: lab(48.496% 0 0); - --chart-1: lab(36.9089% 35.0961 -85.6872); - --chart-2: lab(66.9756% -58.27 19.5419); - --chart-3: lab(72.7183% 31.8672 97.9407); - --chart-4: lab(52.0183% 66.11 -78.2316); - --chart-5: lab(56.101% 79.4328 31.4532); - --sidebar: lab(7.78201% -.0000149012 0); - --sidebar-foreground: lab(98.26% 0 0); - --sidebar-primary: lab(36.9089% 35.0961 -85.6872); - --sidebar-primary-foreground: lab(98.26% 0 0); - --sidebar-accent: lab(15.204% 0 -.00000596046); - --sidebar-accent-foreground: lab(98.26% 0 0); - --sidebar-border: lab(100% 0 0 / .1); - --sidebar-ring: lab(48.496% 0 0); - } -} - -@property --tw-translate-x { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-translate-y { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-translate-z { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-space-y-reverse { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-space-x-reverse { - syntax: "*"; - inherits: false; - initial-value: 0; -} - -@property --tw-border-style { - syntax: "*"; - inherits: false; - initial-value: solid; -} - -@property --tw-leading { - syntax: "*"; - inherits: false -} - -@property --tw-font-weight { - syntax: "*"; - inherits: false -} - -@property --tw-tracking { - syntax: "*"; - inherits: false -} - -@property --tw-ordinal { - syntax: "*"; - inherits: false -} - -@property --tw-slashed-zero { - syntax: "*"; - inherits: false -} - -@property --tw-numeric-figure { - syntax: "*"; - inherits: false -} - -@property --tw-numeric-spacing { - syntax: "*"; - inherits: false -} - -@property --tw-numeric-fraction { - syntax: "*"; - inherits: false -} - -@property --tw-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-shadow-color { - syntax: "*"; - inherits: false -} - -@property --tw-shadow-alpha { - syntax: "<percentage>"; - inherits: false; - initial-value: 100%; -} - -@property --tw-inset-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-inset-shadow-color { - syntax: "*"; - inherits: false -} - -@property --tw-inset-shadow-alpha { - syntax: "<percentage>"; - inherits: false; - initial-value: 100%; -} - -@property --tw-ring-color { - syntax: "*"; - inherits: false -} - -@property --tw-ring-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-inset-ring-color { - syntax: "*"; - inherits: false -} - -@property --tw-inset-ring-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-ring-inset { - syntax: "*"; - inherits: false -} - -@property --tw-ring-offset-width { - syntax: "<length>"; - inherits: false; - initial-value: 0; -} - -@property --tw-ring-offset-color { - syntax: "*"; - inherits: false; - initial-value: #fff; -} - -@property --tw-ring-offset-shadow { - syntax: "*"; - inherits: false; - initial-value: 0 0 #0000; -} - -@property --tw-outline-style { - syntax: "*"; - inherits: false; - initial-value: solid; -} - -@property --tw-duration { - syntax: "*"; - inherits: false -} - -@property --tw-ease { - syntax: "*"; - inherits: false -} - -@property --tw-content { - syntax: "*"; - inherits: false; - initial-value: ""; -} - -@property --tw-blur { - syntax: "*"; - inherits: false -} - -@property --tw-brightness { - syntax: "*"; - inherits: false -} - -@property --tw-contrast { - syntax: "*"; - inherits: false -} - -@property --tw-grayscale { - syntax: "*"; - inherits: false -} - -@property --tw-hue-rotate { - syntax: "*"; - inherits: false -} - -@property --tw-invert { - syntax: "*"; - inherits: false -} - -@property --tw-opacity { - syntax: "*"; - inherits: false -} - -@property --tw-saturate { - syntax: "*"; - inherits: false -} - -@property --tw-sepia { - syntax: "*"; - inherits: false -} - -@property --tw-drop-shadow { - syntax: "*"; - inherits: false -} - -@property --tw-drop-shadow-color { - syntax: "*"; - inherits: false -} - -@property --tw-drop-shadow-alpha { - syntax: "<percentage>"; - inherits: false; - initial-value: 100%; -} - -@property --tw-drop-shadow-size { - syntax: "*"; - inherits: false -} - -@keyframes pulse { - 50% { - opacity: .5; - } -} - -@keyframes enter { - from { - opacity: var(--tw-enter-opacity, 1); - transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0)); - filter: blur(var(--tw-enter-blur, 0)); - } -} - -@keyframes exit { - to { - opacity: var(--tw-exit-opacity, 1); - transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0)); - filter: blur(var(--tw-exit-blur, 0)); - } -} - -/*# sourceMappingURL=src_app_globals_css_bad6b30c._.single.css.map*/ \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_globals_css_bad6b30c._.single.css.map b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_globals_css_bad6b30c._.single.css.map deleted file mode 100644 index fc06542..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_globals_css_bad6b30c._.single.css.map +++ /dev/null @@ -1,6 +0,0 @@ -{ - "version": 3, - "sources": [], - "sections": [ - {"offset": {"line": 1, "column": 0}, "map": {"version":3,"sources":["turbopack:///[project]/src/app/globals.css"],"sourcesContent":["/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */\n@layer properties;\n@layer theme, base, components, utilities;\n@layer theme {\n :root, :host {\n --color-red-500: oklch(63.7% 0.237 25.331);\n --color-red-600: oklch(57.7% 0.245 27.325);\n --color-green-600: oklch(62.7% 0.194 149.214);\n --color-blue-600: oklch(54.6% 0.245 262.881);\n --color-gray-200: oklch(92.8% 0.006 264.531);\n --color-gray-500: oklch(55.1% 0.027 264.364);\n --color-gray-700: oklch(37.3% 0.034 259.733);\n --color-zinc-50: oklch(98.5% 0 0);\n --color-zinc-400: oklch(70.5% 0.015 286.067);\n --color-zinc-600: oklch(44.2% 0.017 285.786);\n --color-zinc-950: oklch(14.1% 0.005 285.823);\n --color-black: #000;\n --color-white: #fff;\n --spacing: 0.25rem;\n --container-xs: 20rem;\n --container-sm: 24rem;\n --container-md: 28rem;\n --container-lg: 32rem;\n --container-2xl: 42rem;\n --container-3xl: 48rem;\n --container-7xl: 80rem;\n --text-xs: 0.75rem;\n --text-xs--line-height: calc(1 / 0.75);\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --text-base: 1rem;\n --text-base--line-height: calc(1.5 / 1);\n --text-lg: 1.125rem;\n --text-lg--line-height: calc(1.75 / 1.125);\n --text-xl: 1.25rem;\n --text-xl--line-height: calc(1.75 / 1.25);\n --text-2xl: 1.5rem;\n --text-2xl--line-height: calc(2 / 1.5);\n --text-3xl: 1.875rem;\n --text-3xl--line-height: calc(2.25 / 1.875);\n --font-weight-normal: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n --tracking-tight: -0.025em;\n --tracking-widest: 0.1em;\n --leading-tight: 1.25;\n --leading-snug: 1.375;\n --leading-normal: 1.5;\n --radius-xs: 0.125rem;\n --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);\n --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n --aspect-video: 16 / 9;\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-geist-sans);\n --default-mono-font-family: var(--font-geist-mono);\n --color-border: var(--border);\n }\n}\n@layer base {\n *, ::after, ::before, ::backdrop, ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html, :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1, h2, h3, h4, h5, h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b, strong {\n font-weight: bolder;\n }\n code, kbd, samp, pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub, sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol, ul, menu {\n list-style: none;\n }\n img, svg, video, canvas, audio, iframe, embed, object {\n display: block;\n vertical-align: middle;\n }\n img, video {\n max-width: 100%;\n height: auto;\n }\n button, input, select, optgroup, textarea, ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: currentcolor;\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, currentcolor 50%, transparent);\n }\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n ::-webkit-calendar-picker-indicator {\n line-height: 1;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button, input:where([type=\"button\"], [type=\"reset\"], [type=\"submit\"]), ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=\"until-found\"])) {\n display: none !important;\n }\n}\n@layer utilities {\n .\\@container\\/card-header {\n container-type: inline-size;\n container-name: card-header;\n }\n .\\@container\\/field-group {\n container-type: inline-size;\n container-name: field-group;\n }\n .pointer-events-none {\n pointer-events: none;\n }\n .sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip-path: inset(50%);\n white-space: nowrap;\n border-width: 0;\n }\n .absolute {\n position: absolute;\n }\n .fixed {\n position: fixed;\n }\n .relative {\n position: relative;\n }\n .sticky {\n position: sticky;\n }\n .inset-0 {\n inset: calc(var(--spacing) * 0);\n }\n .inset-x-0 {\n inset-inline: calc(var(--spacing) * 0);\n }\n .inset-y-0 {\n inset-block: calc(var(--spacing) * 0);\n }\n .start {\n inset-inline-start: var(--spacing);\n }\n .end {\n inset-inline-end: var(--spacing);\n }\n .top-0 {\n top: calc(var(--spacing) * 0);\n }\n .top-1\\.5 {\n top: calc(var(--spacing) * 1.5);\n }\n .top-1\\/2 {\n top: calc(1 / 2 * 100%);\n }\n .top-3\\.5 {\n top: calc(var(--spacing) * 3.5);\n }\n .top-4 {\n top: calc(var(--spacing) * 4);\n }\n .top-6 {\n top: calc(var(--spacing) * 6);\n }\n .top-\\[50\\%\\] {\n top: 50%;\n }\n .right-0 {\n right: calc(var(--spacing) * 0);\n }\n .right-1 {\n right: calc(var(--spacing) * 1);\n }\n .right-2 {\n right: calc(var(--spacing) * 2);\n }\n .right-3 {\n right: calc(var(--spacing) * 3);\n }\n .right-4 {\n right: calc(var(--spacing) * 4);\n }\n .bottom-0 {\n bottom: calc(var(--spacing) * 0);\n }\n .left-0 {\n left: calc(var(--spacing) * 0);\n }\n .left-2 {\n left: calc(var(--spacing) * 2);\n }\n .left-\\[50\\%\\] {\n left: 50%;\n }\n .z-10 {\n z-index: 10;\n }\n .z-20 {\n z-index: 20;\n }\n .z-50 {\n z-index: 50;\n }\n .col-start-2 {\n grid-column-start: 2;\n }\n .row-span-2 {\n grid-row: span 2 / span 2;\n }\n .row-start-1 {\n grid-row-start: 1;\n }\n .-mx-1 {\n margin-inline: calc(var(--spacing) * -1);\n }\n .mx-2 {\n margin-inline: calc(var(--spacing) * 2);\n }\n .mx-3\\.5 {\n margin-inline: calc(var(--spacing) * 3.5);\n }\n .mx-auto {\n margin-inline: auto;\n }\n .-my-2 {\n margin-block: calc(var(--spacing) * -2);\n }\n .my-0\\.5 {\n margin-block: calc(var(--spacing) * 0.5);\n }\n .my-1 {\n margin-block: calc(var(--spacing) * 1);\n }\n .mt-2 {\n margin-top: calc(var(--spacing) * 2);\n }\n .mt-4 {\n margin-top: calc(var(--spacing) * 4);\n }\n .mt-auto {\n margin-top: auto;\n }\n .mb-3 {\n margin-bottom: calc(var(--spacing) * 3);\n }\n .mb-4 {\n margin-bottom: calc(var(--spacing) * 4);\n }\n .-ml-1 {\n margin-left: calc(var(--spacing) * -1);\n }\n .ml-2 {\n margin-left: calc(var(--spacing) * 2);\n }\n .ml-4 {\n margin-left: calc(var(--spacing) * 4);\n }\n .ml-auto {\n margin-left: auto;\n }\n .line-clamp-4 {\n overflow: hidden;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 4;\n }\n .block {\n display: block;\n }\n .flex {\n display: flex;\n }\n .grid {\n display: grid;\n }\n .hidden {\n display: none;\n }\n .inline-flex {\n display: inline-flex;\n }\n .table {\n display: table;\n }\n .table-caption {\n display: table-caption;\n }\n .table-cell {\n display: table-cell;\n }\n .table-row {\n display: table-row;\n }\n .field-sizing-content {\n field-sizing: content;\n }\n .aspect-square {\n aspect-ratio: 1 / 1;\n }\n .aspect-video {\n aspect-ratio: var(--aspect-video);\n }\n .size-2 {\n width: calc(var(--spacing) * 2);\n height: calc(var(--spacing) * 2);\n }\n .size-2\\.5 {\n width: calc(var(--spacing) * 2.5);\n height: calc(var(--spacing) * 2.5);\n }\n .size-3\\.5 {\n width: calc(var(--spacing) * 3.5);\n height: calc(var(--spacing) * 3.5);\n }\n .size-4 {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n }\n .size-5\\! {\n width: calc(var(--spacing) * 5) !important;\n height: calc(var(--spacing) * 5) !important;\n }\n .size-6 {\n width: calc(var(--spacing) * 6);\n height: calc(var(--spacing) * 6);\n }\n .size-7 {\n width: calc(var(--spacing) * 7);\n height: calc(var(--spacing) * 7);\n }\n .size-8 {\n width: calc(var(--spacing) * 8);\n height: calc(var(--spacing) * 8);\n }\n .size-9 {\n width: calc(var(--spacing) * 9);\n height: calc(var(--spacing) * 9);\n }\n .size-10 {\n width: calc(var(--spacing) * 10);\n height: calc(var(--spacing) * 10);\n }\n .size-full {\n width: 100%;\n height: 100%;\n }\n .h-\\(--header-height\\) {\n height: var(--header-height);\n }\n .h-2 {\n height: calc(var(--spacing) * 2);\n }\n .h-2\\.5 {\n height: calc(var(--spacing) * 2.5);\n }\n .h-4 {\n height: calc(var(--spacing) * 4);\n }\n .h-5 {\n height: calc(var(--spacing) * 5);\n }\n .h-6 {\n height: calc(var(--spacing) * 6);\n }\n .h-7 {\n height: calc(var(--spacing) * 7);\n }\n .h-8 {\n height: calc(var(--spacing) * 8);\n }\n .h-9 {\n height: calc(var(--spacing) * 9);\n }\n .h-10 {\n height: calc(var(--spacing) * 10);\n }\n .h-12 {\n height: calc(var(--spacing) * 12);\n }\n .h-24 {\n height: calc(var(--spacing) * 24);\n }\n .h-32 {\n height: calc(var(--spacing) * 32);\n }\n .h-48 {\n height: calc(var(--spacing) * 48);\n }\n .h-60 {\n height: calc(var(--spacing) * 60);\n }\n .h-\\[calc\\(100\\%-1px\\)\\] {\n height: calc(100% - 1px);\n }\n .h-\\[var\\(--radix-select-trigger-height\\)\\] {\n height: var(--radix-select-trigger-height);\n }\n .h-auto {\n height: auto;\n }\n .h-fit {\n height: fit-content;\n }\n .h-full {\n height: 100%;\n }\n .h-px {\n height: 1px;\n }\n .h-svh {\n height: 100svh;\n }\n .max-h-\\(--radix-dropdown-menu-content-available-height\\) {\n max-height: var(--radix-dropdown-menu-content-available-height);\n }\n .max-h-\\(--radix-select-content-available-height\\) {\n max-height: var(--radix-select-content-available-height);\n }\n .max-h-\\[90vh\\] {\n max-height: 90vh;\n }\n .min-h-0 {\n min-height: calc(var(--spacing) * 0);\n }\n .min-h-16 {\n min-height: calc(var(--spacing) * 16);\n }\n .min-h-\\[400px\\] {\n min-height: 400px;\n }\n .min-h-\\[calc\\(100vh-60px\\)\\] {\n min-height: calc(100vh - 60px);\n }\n .min-h-screen {\n min-height: 100vh;\n }\n .min-h-svh {\n min-height: 100svh;\n }\n .w-\\(--radix-dropdown-menu-trigger-width\\) {\n width: var(--radix-dropdown-menu-trigger-width);\n }\n .w-\\(--sidebar-width\\) {\n width: var(--sidebar-width);\n }\n .w-0 {\n width: calc(var(--spacing) * 0);\n }\n .w-1 {\n width: calc(var(--spacing) * 1);\n }\n .w-2 {\n width: calc(var(--spacing) * 2);\n }\n .w-2\\.5 {\n width: calc(var(--spacing) * 2.5);\n }\n .w-3\\/4 {\n width: calc(3 / 4 * 100%);\n }\n .w-4 {\n width: calc(var(--spacing) * 4);\n }\n .w-5 {\n width: calc(var(--spacing) * 5);\n }\n .w-8 {\n width: calc(var(--spacing) * 8);\n }\n .w-12 {\n width: calc(var(--spacing) * 12);\n }\n .w-24 {\n width: calc(var(--spacing) * 24);\n }\n .w-\\[100px\\] {\n width: 100px;\n }\n .w-auto {\n width: auto;\n }\n .w-fit {\n width: fit-content;\n }\n .w-full {\n width: 100%;\n }\n .max-w-\\(--skeleton-width\\) {\n max-width: var(--skeleton-width);\n }\n .max-w-3xl {\n max-width: var(--container-3xl);\n }\n .max-w-7xl {\n max-width: var(--container-7xl);\n }\n .max-w-\\[calc\\(100\\%-2rem\\)\\] {\n max-width: calc(100% - 2rem);\n }\n .max-w-full {\n max-width: 100%;\n }\n .max-w-lg {\n max-width: var(--container-lg);\n }\n .max-w-md {\n max-width: var(--container-md);\n }\n .max-w-sm {\n max-width: var(--container-sm);\n }\n .max-w-xs {\n max-width: var(--container-xs);\n }\n .min-w-0 {\n min-width: calc(var(--spacing) * 0);\n }\n .min-w-5 {\n min-width: calc(var(--spacing) * 5);\n }\n .min-w-56 {\n min-width: calc(var(--spacing) * 56);\n }\n .min-w-\\[8rem\\] {\n min-width: 8rem;\n }\n .min-w-\\[var\\(--radix-select-trigger-width\\)\\] {\n min-width: var(--radix-select-trigger-width);\n }\n .flex-1 {\n flex: 1;\n }\n .shrink-0 {\n flex-shrink: 0;\n }\n .caption-bottom {\n caption-side: bottom;\n }\n .origin-\\(--radix-dropdown-menu-content-transform-origin\\) {\n transform-origin: var(--radix-dropdown-menu-content-transform-origin);\n }\n .origin-\\(--radix-select-content-transform-origin\\) {\n transform-origin: var(--radix-select-content-transform-origin);\n }\n .origin-\\(--radix-tooltip-content-transform-origin\\) {\n transform-origin: var(--radix-tooltip-content-transform-origin);\n }\n .-translate-x-1\\/2 {\n --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .-translate-x-px {\n --tw-translate-x: -1px;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .translate-x-\\[-50\\%\\] {\n --tw-translate-x: -50%;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .translate-x-px {\n --tw-translate-x: 1px;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .translate-y-\\[-50\\%\\] {\n --tw-translate-y: -50%;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .translate-y-\\[calc\\(-50\\%_-_2px\\)\\] {\n --tw-translate-y: calc(-50% - 2px);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .rotate-45 {\n rotate: 45deg;\n }\n .animate-in {\n animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);\n }\n .animate-pulse {\n animation: var(--animate-pulse);\n }\n .cursor-default {\n cursor: default;\n }\n .cursor-pointer {\n cursor: pointer;\n }\n .scroll-my-1 {\n scroll-margin-block: calc(var(--spacing) * 1);\n }\n .list-inside {\n list-style-position: inside;\n }\n .list-disc {\n list-style-type: disc;\n }\n .auto-rows-min {\n grid-auto-rows: min-content;\n }\n .grid-cols-1 {\n grid-template-columns: repeat(1, minmax(0, 1fr));\n }\n .grid-cols-2 {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n }\n .grid-rows-\\[auto_auto\\] {\n grid-template-rows: auto auto;\n }\n .flex-col {\n flex-direction: column;\n }\n .flex-col-reverse {\n flex-direction: column-reverse;\n }\n .flex-row {\n flex-direction: row;\n }\n .flex-wrap {\n flex-wrap: wrap;\n }\n .place-content-center {\n place-content: center;\n }\n .items-center {\n align-items: center;\n }\n .items-end {\n align-items: flex-end;\n }\n .items-start {\n align-items: flex-start;\n }\n .items-stretch {\n align-items: stretch;\n }\n .justify-between {\n justify-content: space-between;\n }\n .justify-center {\n justify-content: center;\n }\n .justify-end {\n justify-content: flex-end;\n }\n .gap-0\\.5 {\n gap: calc(var(--spacing) * 0.5);\n }\n .gap-1 {\n gap: calc(var(--spacing) * 1);\n }\n .gap-1\\.5 {\n gap: calc(var(--spacing) * 1.5);\n }\n .gap-2 {\n gap: calc(var(--spacing) * 2);\n }\n .gap-3 {\n gap: calc(var(--spacing) * 3);\n }\n .gap-4 {\n gap: calc(var(--spacing) * 4);\n }\n .gap-6 {\n gap: calc(var(--spacing) * 6);\n }\n .gap-7 {\n gap: calc(var(--spacing) * 7);\n }\n .gap-8 {\n gap: calc(var(--spacing) * 8);\n }\n .gap-10 {\n gap: calc(var(--spacing) * 10);\n }\n .space-y-2 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .space-y-4 {\n :where(& > :not(:last-child)) {\n --tw-space-y-reverse: 0;\n margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));\n margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));\n }\n }\n .-space-x-2 {\n :where(& > :not(:last-child)) {\n --tw-space-x-reverse: 0;\n margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse));\n margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));\n }\n }\n .self-start {\n align-self: flex-start;\n }\n .justify-self-end {\n justify-self: flex-end;\n }\n .truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .overflow-auto {\n overflow: auto;\n }\n .overflow-hidden {\n overflow: hidden;\n }\n .overflow-x-auto {\n overflow-x: auto;\n }\n .overflow-x-hidden {\n overflow-x: hidden;\n }\n .overflow-y-auto {\n overflow-y: auto;\n }\n .rounded {\n border-radius: 0.25rem;\n }\n .rounded-\\[2px\\] {\n border-radius: 2px;\n }\n .rounded-\\[4px\\] {\n border-radius: 4px;\n }\n .rounded-full {\n border-radius: calc(infinity * 1px);\n }\n .rounded-lg {\n border-radius: var(--radius);\n }\n .rounded-md {\n border-radius: calc(var(--radius) - 2px);\n }\n .rounded-sm {\n border-radius: calc(var(--radius) - 4px);\n }\n .rounded-xl {\n border-radius: calc(var(--radius) + 4px);\n }\n .rounded-xs {\n border-radius: var(--radius-xs);\n }\n .border {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n .border-2 {\n border-style: var(--tw-border-style);\n border-width: 2px;\n }\n .border-\\[1\\.5px\\] {\n border-style: var(--tw-border-style);\n border-width: 1.5px;\n }\n .border-t {\n border-top-style: var(--tw-border-style);\n border-top-width: 1px;\n }\n .border-r {\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n }\n .border-b {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n }\n .border-l {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n .border-dashed {\n --tw-border-style: dashed;\n border-style: dashed;\n }\n .border-solid {\n --tw-border-style: solid;\n border-style: solid;\n }\n .border-\\(--color-border\\) {\n border-color: var(--color-border);\n }\n .border-black\\/8 {\n border-color: color-mix(in srgb, #000 8%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--color-black) 8%, transparent);\n }\n }\n .border-border {\n border-color: var(--border);\n }\n .border-border\\/50 {\n border-color: var(--border);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--border) 50%, transparent);\n }\n }\n .border-input {\n border-color: var(--input);\n }\n .border-sidebar-border {\n border-color: var(--sidebar-border);\n }\n .border-transparent {\n border-color: transparent;\n }\n .bg-\\(--color-bg\\) {\n background-color: var(--color-bg);\n }\n .bg-accent {\n background-color: var(--accent);\n }\n .bg-background {\n background-color: var(--background);\n }\n .bg-black {\n background-color: var(--color-black);\n }\n .bg-black\\/30 {\n background-color: color-mix(in srgb, #000 30%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 30%, transparent);\n }\n }\n .bg-black\\/40 {\n background-color: color-mix(in srgb, #000 40%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 40%, transparent);\n }\n }\n .bg-black\\/50 {\n background-color: color-mix(in srgb, #000 50%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 50%, transparent);\n }\n }\n .bg-border {\n background-color: var(--border);\n }\n .bg-card {\n background-color: var(--card);\n }\n .bg-destructive {\n background-color: var(--destructive);\n }\n .bg-destructive\\/10 {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 10%, transparent);\n }\n }\n .bg-foreground {\n background-color: var(--foreground);\n }\n .bg-gray-200 {\n background-color: var(--color-gray-200);\n }\n .bg-muted {\n background-color: var(--muted);\n }\n .bg-muted\\/40 {\n background-color: var(--muted);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--muted) 40%, transparent);\n }\n }\n .bg-muted\\/50 {\n background-color: var(--muted);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--muted) 50%, transparent);\n }\n }\n .bg-popover {\n background-color: var(--popover);\n }\n .bg-primary {\n background-color: var(--primary);\n }\n .bg-secondary {\n background-color: var(--secondary);\n }\n .bg-sidebar {\n background-color: var(--sidebar);\n }\n .bg-sidebar-border {\n background-color: var(--sidebar-border);\n }\n .bg-transparent {\n background-color: transparent;\n }\n .bg-white {\n background-color: var(--color-white);\n }\n .bg-zinc-50 {\n background-color: var(--color-zinc-50);\n }\n .fill-current {\n fill: currentcolor;\n }\n .fill-foreground {\n fill: var(--foreground);\n }\n .object-contain {\n object-fit: contain;\n }\n .object-cover {\n object-fit: cover;\n }\n .p-0 {\n padding: calc(var(--spacing) * 0);\n }\n .p-1 {\n padding: calc(var(--spacing) * 1);\n }\n .p-2 {\n padding: calc(var(--spacing) * 2);\n }\n .p-3 {\n padding: calc(var(--spacing) * 3);\n }\n .p-4 {\n padding: calc(var(--spacing) * 4);\n }\n .p-6 {\n padding: calc(var(--spacing) * 6);\n }\n .p-\\[3px\\] {\n padding: 3px;\n }\n .px-1 {\n padding-inline: calc(var(--spacing) * 1);\n }\n .px-2 {\n padding-inline: calc(var(--spacing) * 2);\n }\n .px-2\\.5 {\n padding-inline: calc(var(--spacing) * 2.5);\n }\n .px-3 {\n padding-inline: calc(var(--spacing) * 3);\n }\n .px-4 {\n padding-inline: calc(var(--spacing) * 4);\n }\n .px-5 {\n padding-inline: calc(var(--spacing) * 5);\n }\n .px-6 {\n padding-inline: calc(var(--spacing) * 6);\n }\n .px-16 {\n padding-inline: calc(var(--spacing) * 16);\n }\n .py-0\\.5 {\n padding-block: calc(var(--spacing) * 0.5);\n }\n .py-1 {\n padding-block: calc(var(--spacing) * 1);\n }\n .py-1\\.5 {\n padding-block: calc(var(--spacing) * 1.5);\n }\n .py-2 {\n padding-block: calc(var(--spacing) * 2);\n }\n .py-6 {\n padding-block: calc(var(--spacing) * 6);\n }\n .py-10 {\n padding-block: calc(var(--spacing) * 10);\n }\n .py-32 {\n padding-block: calc(var(--spacing) * 32);\n }\n .pt-3 {\n padding-top: calc(var(--spacing) * 3);\n }\n .pr-2 {\n padding-right: calc(var(--spacing) * 2);\n }\n .pr-8 {\n padding-right: calc(var(--spacing) * 8);\n }\n .pb-3 {\n padding-bottom: calc(var(--spacing) * 3);\n }\n .pl-2 {\n padding-left: calc(var(--spacing) * 2);\n }\n .pl-8 {\n padding-left: calc(var(--spacing) * 8);\n }\n .text-center {\n text-align: center;\n }\n .text-left {\n text-align: left;\n }\n .align-middle {\n vertical-align: middle;\n }\n .font-mono {\n font-family: var(--font-geist-mono);\n }\n .font-sans {\n font-family: var(--font-geist-sans);\n }\n .text-2xl {\n font-size: var(--text-2xl);\n line-height: var(--tw-leading, var(--text-2xl--line-height));\n }\n .text-3xl {\n font-size: var(--text-3xl);\n line-height: var(--tw-leading, var(--text-3xl--line-height));\n }\n .text-base {\n font-size: var(--text-base);\n line-height: var(--tw-leading, var(--text-base--line-height));\n }\n .text-lg {\n font-size: var(--text-lg);\n line-height: var(--tw-leading, var(--text-lg--line-height));\n }\n .text-sm {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n .text-xl {\n font-size: var(--text-xl);\n line-height: var(--tw-leading, var(--text-xl--line-height));\n }\n .text-xs {\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n }\n .leading-8 {\n --tw-leading: calc(var(--spacing) * 8);\n line-height: calc(var(--spacing) * 8);\n }\n .leading-10 {\n --tw-leading: calc(var(--spacing) * 10);\n line-height: calc(var(--spacing) * 10);\n }\n .leading-none {\n --tw-leading: 1;\n line-height: 1;\n }\n .leading-normal {\n --tw-leading: var(--leading-normal);\n line-height: var(--leading-normal);\n }\n .leading-snug {\n --tw-leading: var(--leading-snug);\n line-height: var(--leading-snug);\n }\n .leading-tight {\n --tw-leading: var(--leading-tight);\n line-height: var(--leading-tight);\n }\n .font-bold {\n --tw-font-weight: var(--font-weight-bold);\n font-weight: var(--font-weight-bold);\n }\n .font-medium {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n .font-normal {\n --tw-font-weight: var(--font-weight-normal);\n font-weight: var(--font-weight-normal);\n }\n .font-semibold {\n --tw-font-weight: var(--font-weight-semibold);\n font-weight: var(--font-weight-semibold);\n }\n .tracking-tight {\n --tw-tracking: var(--tracking-tight);\n letter-spacing: var(--tracking-tight);\n }\n .tracking-widest {\n --tw-tracking: var(--tracking-widest);\n letter-spacing: var(--tracking-widest);\n }\n .text-balance {\n text-wrap: balance;\n }\n .whitespace-nowrap {\n white-space: nowrap;\n }\n .text-background {\n color: var(--background);\n }\n .text-black {\n color: var(--color-black);\n }\n .text-blue-600 {\n color: var(--color-blue-600);\n }\n .text-card-foreground {\n color: var(--card-foreground);\n }\n .text-current {\n color: currentcolor;\n }\n .text-destructive {\n color: var(--destructive);\n }\n .text-foreground {\n color: var(--foreground);\n }\n .text-foreground\\/60 {\n color: var(--foreground);\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, var(--foreground) 60%, transparent);\n }\n }\n .text-gray-500 {\n color: var(--color-gray-500);\n }\n .text-gray-700 {\n color: var(--color-gray-700);\n }\n .text-green-600 {\n color: var(--color-green-600);\n }\n .text-muted-foreground {\n color: var(--muted-foreground);\n }\n .text-popover-foreground {\n color: var(--popover-foreground);\n }\n .text-primary {\n color: var(--primary);\n }\n .text-primary-foreground {\n color: var(--primary-foreground);\n }\n .text-red-500 {\n color: var(--color-red-500);\n }\n .text-red-600 {\n color: var(--color-red-600);\n }\n .text-secondary-foreground {\n color: var(--secondary-foreground);\n }\n .text-sidebar-foreground {\n color: var(--sidebar-foreground);\n }\n .text-sidebar-foreground\\/70 {\n color: var(--sidebar-foreground);\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent);\n }\n }\n .text-white {\n color: var(--color-white);\n }\n .text-zinc-600 {\n color: var(--color-zinc-600);\n }\n .text-zinc-950 {\n color: var(--color-zinc-950);\n }\n .capitalize {\n text-transform: capitalize;\n }\n .tabular-nums {\n --tw-numeric-spacing: tabular-nums;\n font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);\n }\n .underline {\n text-decoration-line: underline;\n }\n .underline-offset-4 {\n text-underline-offset: 4px;\n }\n .antialiased {\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n .opacity-50 {\n opacity: 50%;\n }\n .opacity-70 {\n opacity: 70%;\n }\n .shadow-\\[0_0_0_1px_hsl\\(var\\(--sidebar-border\\)\\)\\] {\n --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border)));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-lg {\n --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-md {\n --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-none {\n --tw-shadow: 0 0 #0000;\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-sm {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-xl {\n --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .shadow-xs {\n --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .ring-2 {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n .ring-background {\n --tw-ring-color: var(--background);\n }\n .ring-sidebar-ring {\n --tw-ring-color: var(--sidebar-ring);\n }\n .ring-offset-background {\n --tw-ring-offset-color: var(--background);\n }\n .outline-hidden {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n .outline {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n .transition {\n transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[color\\,box-shadow\\] {\n transition-property: color,box-shadow;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[left\\,right\\,width\\] {\n transition-property: left,right,width;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[margin\\,opacity\\] {\n transition-property: margin,opacity;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[width\\,height\\,padding\\] {\n transition-property: width,height,padding;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-\\[width\\] {\n transition-property: width;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-all {\n transition-property: all;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-colors {\n transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-opacity {\n transition-property: opacity;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-shadow {\n transition-property: box-shadow;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-transform {\n transition-property: transform, translate, scale, rotate;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .transition-none {\n transition-property: none;\n }\n .duration-200 {\n --tw-duration: 200ms;\n transition-duration: 200ms;\n }\n .ease-in-out {\n --tw-ease: var(--ease-in-out);\n transition-timing-function: var(--ease-in-out);\n }\n .ease-linear {\n --tw-ease: linear;\n transition-timing-function: linear;\n }\n .fade-in-0 {\n --tw-enter-opacity: calc(0/100);\n --tw-enter-opacity: 0;\n }\n .outline-none {\n --tw-outline-style: none;\n outline-style: none;\n }\n .select-none {\n -webkit-user-select: none;\n user-select: none;\n }\n .zoom-in-95 {\n --tw-enter-scale: calc(95*1%);\n --tw-enter-scale: .95;\n }\n .group-focus-within\\/menu-item\\:opacity-100 {\n &:is(:where(.group\\/menu-item):focus-within *) {\n opacity: 100%;\n }\n }\n .group-hover\\/menu-item\\:opacity-100 {\n &:is(:where(.group\\/menu-item):hover *) {\n @media (hover: hover) {\n opacity: 100%;\n }\n }\n }\n .group-has-data-\\[orientation\\=horizontal\\]\\/field\\:text-balance {\n &:is(:where(.group\\/field):has(*[data-orientation=\"horizontal\"]) *) {\n text-wrap: balance;\n }\n }\n .group-has-data-\\[sidebar\\=menu-action\\]\\/menu-item\\:pr-8 {\n &:is(:where(.group\\/menu-item):has(*[data-sidebar=\"menu-action\"]) *) {\n padding-right: calc(var(--spacing) * 8);\n }\n }\n .group-has-data-\\[size\\=lg\\]\\/avatar-group\\:size-10 {\n &:is(:where(.group\\/avatar-group):has(*[data-size=\"lg\"]) *) {\n width: calc(var(--spacing) * 10);\n height: calc(var(--spacing) * 10);\n }\n }\n .group-has-data-\\[size\\=sm\\]\\/avatar-group\\:size-6 {\n &:is(:where(.group\\/avatar-group):has(*[data-size=\"sm\"]) *) {\n width: calc(var(--spacing) * 6);\n height: calc(var(--spacing) * 6);\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:-mt-8 {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n margin-top: calc(var(--spacing) * -8);\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:hidden {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n display: none;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:size-8\\! {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n width: calc(var(--spacing) * 8) !important;\n height: calc(var(--spacing) * 8) !important;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:w-\\(--sidebar-width-icon\\) {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n width: var(--sidebar-width-icon);\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:w-\\[calc\\(var\\(--sidebar-width-icon\\)\\+\\(--spacing\\(4\\)\\)\\)\\] {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)));\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:w-\\[calc\\(var\\(--sidebar-width-icon\\)\\+\\(--spacing\\(4\\)\\)\\+2px\\)\\] {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px);\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:overflow-hidden {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n overflow: hidden;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:p-0\\! {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n padding: calc(var(--spacing) * 0) !important;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:p-2\\! {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n padding: calc(var(--spacing) * 2) !important;\n }\n }\n .group-data-\\[collapsible\\=icon\\]\\:opacity-0 {\n &:is(:where(.group)[data-collapsible=\"icon\"] *) {\n opacity: 0%;\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:right-\\[calc\\(var\\(--sidebar-width\\)\\*-1\\)\\] {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n right: calc(var(--sidebar-width) * -1);\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:left-\\[calc\\(var\\(--sidebar-width\\)\\*-1\\)\\] {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n left: calc(var(--sidebar-width) * -1);\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:w-0 {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n width: calc(var(--spacing) * 0);\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:translate-x-0 {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n --tw-translate-x: calc(var(--spacing) * 0);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .group-data-\\[disabled\\=true\\]\\:pointer-events-none {\n &:is(:where(.group)[data-disabled=\"true\"] *) {\n pointer-events: none;\n }\n }\n .group-data-\\[disabled\\=true\\]\\:opacity-50 {\n &:is(:where(.group)[data-disabled=\"true\"] *) {\n opacity: 50%;\n }\n }\n .group-data-\\[disabled\\=true\\]\\/field\\:opacity-50 {\n &:is(:where(.group\\/field)[data-disabled=\"true\"] *) {\n opacity: 50%;\n }\n }\n .group-data-\\[orientation\\=horizontal\\]\\/tabs\\:h-9 {\n &:is(:where(.group\\/tabs)[data-orientation=\"horizontal\"] *) {\n height: calc(var(--spacing) * 9);\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:h-fit {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n height: fit-content;\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:w-full {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n width: 100%;\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:flex-col {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n flex-direction: column;\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:justify-start {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n justify-content: flex-start;\n }\n }\n .group-data-\\[side\\=left\\]\\:-right-4 {\n &:is(:where(.group)[data-side=\"left\"] *) {\n right: calc(var(--spacing) * -4);\n }\n }\n .group-data-\\[side\\=left\\]\\:border-r {\n &:is(:where(.group)[data-side=\"left\"] *) {\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n }\n }\n .group-data-\\[side\\=right\\]\\:left-0 {\n &:is(:where(.group)[data-side=\"right\"] *) {\n left: calc(var(--spacing) * 0);\n }\n }\n .group-data-\\[side\\=right\\]\\:rotate-180 {\n &:is(:where(.group)[data-side=\"right\"] *) {\n rotate: 180deg;\n }\n }\n .group-data-\\[side\\=right\\]\\:border-l {\n &:is(:where(.group)[data-side=\"right\"] *) {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n }\n .group-data-\\[size\\=default\\]\\/avatar\\:size-2\\.5 {\n &:is(:where(.group\\/avatar)[data-size=\"default\"] *) {\n width: calc(var(--spacing) * 2.5);\n height: calc(var(--spacing) * 2.5);\n }\n }\n .group-data-\\[size\\=lg\\]\\/avatar\\:size-3 {\n &:is(:where(.group\\/avatar)[data-size=\"lg\"] *) {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n }\n .group-data-\\[size\\=sm\\]\\/avatar\\:size-2 {\n &:is(:where(.group\\/avatar)[data-size=\"sm\"] *) {\n width: calc(var(--spacing) * 2);\n height: calc(var(--spacing) * 2);\n }\n }\n .group-data-\\[size\\=sm\\]\\/avatar\\:text-xs {\n &:is(:where(.group\\/avatar)[data-size=\"sm\"] *) {\n font-size: var(--text-xs);\n line-height: var(--tw-leading, var(--text-xs--line-height));\n }\n }\n .group-data-\\[variant\\=floating\\]\\:rounded-lg {\n &:is(:where(.group)[data-variant=\"floating\"] *) {\n border-radius: var(--radius);\n }\n }\n .group-data-\\[variant\\=floating\\]\\:border {\n &:is(:where(.group)[data-variant=\"floating\"] *) {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n }\n .group-data-\\[variant\\=floating\\]\\:border-sidebar-border {\n &:is(:where(.group)[data-variant=\"floating\"] *) {\n border-color: var(--sidebar-border);\n }\n }\n .group-data-\\[variant\\=floating\\]\\:shadow-sm {\n &:is(:where(.group)[data-variant=\"floating\"] *) {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .group-data-\\[variant\\=line\\]\\/tabs-list\\:bg-transparent {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n background-color: transparent;\n }\n }\n .group-data-\\[variant\\=outline\\]\\/field-group\\:-mb-2 {\n &:is(:where(.group\\/field-group)[data-variant=\"outline\"] *) {\n margin-bottom: calc(var(--spacing) * -2);\n }\n }\n .group-data-\\[vaul-drawer-direction\\=bottom\\]\\/drawer-content\\:block {\n &:is(:where(.group\\/drawer-content)[data-vaul-drawer-direction=\"bottom\"] *) {\n display: block;\n }\n }\n .group-data-\\[vaul-drawer-direction\\=bottom\\]\\/drawer-content\\:text-center {\n &:is(:where(.group\\/drawer-content)[data-vaul-drawer-direction=\"bottom\"] *) {\n text-align: center;\n }\n }\n .group-data-\\[vaul-drawer-direction\\=top\\]\\/drawer-content\\:text-center {\n &:is(:where(.group\\/drawer-content)[data-vaul-drawer-direction=\"top\"] *) {\n text-align: center;\n }\n }\n .peer-hover\\/menu-button\\:text-sidebar-accent-foreground {\n &:is(:where(.peer\\/menu-button):hover ~ *) {\n @media (hover: hover) {\n color: var(--sidebar-accent-foreground);\n }\n }\n }\n .peer-disabled\\:cursor-not-allowed {\n &:is(:where(.peer):disabled ~ *) {\n cursor: not-allowed;\n }\n }\n .peer-disabled\\:opacity-50 {\n &:is(:where(.peer):disabled ~ *) {\n opacity: 50%;\n }\n }\n .peer-data-\\[active\\=true\\]\\/menu-button\\:text-sidebar-accent-foreground {\n &:is(:where(.peer\\/menu-button)[data-active=\"true\"] ~ *) {\n color: var(--sidebar-accent-foreground);\n }\n }\n .peer-data-\\[size\\=default\\]\\/menu-button\\:top-1\\.5 {\n &:is(:where(.peer\\/menu-button)[data-size=\"default\"] ~ *) {\n top: calc(var(--spacing) * 1.5);\n }\n }\n .peer-data-\\[size\\=lg\\]\\/menu-button\\:top-2\\.5 {\n &:is(:where(.peer\\/menu-button)[data-size=\"lg\"] ~ *) {\n top: calc(var(--spacing) * 2.5);\n }\n }\n .peer-data-\\[size\\=sm\\]\\/menu-button\\:top-1 {\n &:is(:where(.peer\\/menu-button)[data-size=\"sm\"] ~ *) {\n top: calc(var(--spacing) * 1);\n }\n }\n .selection\\:bg-primary {\n & *::selection {\n background-color: var(--primary);\n }\n &::selection {\n background-color: var(--primary);\n }\n }\n .selection\\:text-primary-foreground {\n & *::selection {\n color: var(--primary-foreground);\n }\n &::selection {\n color: var(--primary-foreground);\n }\n }\n .file\\:inline-flex {\n &::file-selector-button {\n display: inline-flex;\n }\n }\n .file\\:h-7 {\n &::file-selector-button {\n height: calc(var(--spacing) * 7);\n }\n }\n .file\\:border-0 {\n &::file-selector-button {\n border-style: var(--tw-border-style);\n border-width: 0px;\n }\n }\n .file\\:bg-transparent {\n &::file-selector-button {\n background-color: transparent;\n }\n }\n .file\\:text-sm {\n &::file-selector-button {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .file\\:font-medium {\n &::file-selector-button {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n }\n .file\\:text-foreground {\n &::file-selector-button {\n color: var(--foreground);\n }\n }\n .placeholder\\:text-muted-foreground {\n &::placeholder {\n color: var(--muted-foreground);\n }\n }\n .after\\:absolute {\n &::after {\n content: var(--tw-content);\n position: absolute;\n }\n }\n .after\\:-inset-2 {\n &::after {\n content: var(--tw-content);\n inset: calc(var(--spacing) * -2);\n }\n }\n .after\\:inset-y-0 {\n &::after {\n content: var(--tw-content);\n inset-block: calc(var(--spacing) * 0);\n }\n }\n .after\\:left-1\\/2 {\n &::after {\n content: var(--tw-content);\n left: calc(1 / 2 * 100%);\n }\n }\n .after\\:w-0\\.5 {\n &::after {\n content: var(--tw-content);\n width: calc(var(--spacing) * 0.5);\n }\n }\n .after\\:bg-foreground {\n &::after {\n content: var(--tw-content);\n background-color: var(--foreground);\n }\n }\n .after\\:opacity-0 {\n &::after {\n content: var(--tw-content);\n opacity: 0%;\n }\n }\n .after\\:transition-opacity {\n &::after {\n content: var(--tw-content);\n transition-property: opacity;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n }\n .group-data-\\[collapsible\\=offcanvas\\]\\:after\\:left-full {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n &::after {\n content: var(--tw-content);\n left: 100%;\n }\n }\n }\n .group-data-\\[orientation\\=horizontal\\]\\/tabs\\:after\\:inset-x-0 {\n &:is(:where(.group\\/tabs)[data-orientation=\"horizontal\"] *) {\n &::after {\n content: var(--tw-content);\n inset-inline: calc(var(--spacing) * 0);\n }\n }\n }\n .group-data-\\[orientation\\=horizontal\\]\\/tabs\\:after\\:bottom-\\[-5px\\] {\n &:is(:where(.group\\/tabs)[data-orientation=\"horizontal\"] *) {\n &::after {\n content: var(--tw-content);\n bottom: -5px;\n }\n }\n }\n .group-data-\\[orientation\\=horizontal\\]\\/tabs\\:after\\:h-0\\.5 {\n &:is(:where(.group\\/tabs)[data-orientation=\"horizontal\"] *) {\n &::after {\n content: var(--tw-content);\n height: calc(var(--spacing) * 0.5);\n }\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:after\\:inset-y-0 {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n &::after {\n content: var(--tw-content);\n inset-block: calc(var(--spacing) * 0);\n }\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:after\\:-right-1 {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n &::after {\n content: var(--tw-content);\n right: calc(var(--spacing) * -1);\n }\n }\n }\n .group-data-\\[orientation\\=vertical\\]\\/tabs\\:after\\:w-0\\.5 {\n &:is(:where(.group\\/tabs)[data-orientation=\"vertical\"] *) {\n &::after {\n content: var(--tw-content);\n width: calc(var(--spacing) * 0.5);\n }\n }\n }\n .last\\:mt-0 {\n &:last-child {\n margin-top: calc(var(--spacing) * 0);\n }\n }\n .hover\\:border-transparent {\n &:hover {\n @media (hover: hover) {\n border-color: transparent;\n }\n }\n }\n .hover\\:bg-\\[\\#383838\\] {\n &:hover {\n @media (hover: hover) {\n background-color: #383838;\n }\n }\n }\n .hover\\:bg-accent {\n &:hover {\n @media (hover: hover) {\n background-color: var(--accent);\n }\n }\n }\n .hover\\:bg-black\\/4 {\n &:hover {\n @media (hover: hover) {\n background-color: color-mix(in srgb, #000 4%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 4%, transparent);\n }\n }\n }\n }\n .hover\\:bg-destructive\\/90 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 90%, transparent);\n }\n }\n }\n }\n .hover\\:bg-muted {\n &:hover {\n @media (hover: hover) {\n background-color: var(--muted);\n }\n }\n }\n .hover\\:bg-muted\\/50 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--muted);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--muted) 50%, transparent);\n }\n }\n }\n }\n .hover\\:bg-primary\\/90 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 90%, transparent);\n }\n }\n }\n }\n .hover\\:bg-secondary\\/80 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--secondary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--secondary) 80%, transparent);\n }\n }\n }\n }\n .hover\\:bg-sidebar-accent {\n &:hover {\n @media (hover: hover) {\n background-color: var(--sidebar-accent);\n }\n }\n }\n .hover\\:text-accent-foreground {\n &:hover {\n @media (hover: hover) {\n color: var(--accent-foreground);\n }\n }\n }\n .hover\\:text-foreground {\n &:hover {\n @media (hover: hover) {\n color: var(--foreground);\n }\n }\n }\n .hover\\:text-sidebar-accent-foreground {\n &:hover {\n @media (hover: hover) {\n color: var(--sidebar-accent-foreground);\n }\n }\n }\n .hover\\:underline {\n &:hover {\n @media (hover: hover) {\n text-decoration-line: underline;\n }\n }\n }\n .hover\\:opacity-100 {\n &:hover {\n @media (hover: hover) {\n opacity: 100%;\n }\n }\n }\n .hover\\:shadow-\\[0_0_0_1px_hsl\\(var\\(--sidebar-accent\\)\\)\\] {\n &:hover {\n @media (hover: hover) {\n --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-accent)));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .hover\\:group-data-\\[collapsible\\=offcanvas\\]\\:bg-sidebar {\n &:hover {\n @media (hover: hover) {\n &:is(:where(.group)[data-collapsible=\"offcanvas\"] *) {\n background-color: var(--sidebar);\n }\n }\n }\n }\n .hover\\:after\\:bg-sidebar-border {\n &:hover {\n @media (hover: hover) {\n &::after {\n content: var(--tw-content);\n background-color: var(--sidebar-border);\n }\n }\n }\n }\n .focus\\:bg-accent {\n &:focus {\n background-color: var(--accent);\n }\n }\n .focus\\:text-accent-foreground {\n &:focus {\n color: var(--accent-foreground);\n }\n }\n .focus\\:ring-2 {\n &:focus {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus\\:ring-ring {\n &:focus {\n --tw-ring-color: var(--ring);\n }\n }\n .focus\\:ring-offset-2 {\n &:focus {\n --tw-ring-offset-width: 2px;\n --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);\n }\n }\n .focus\\:outline-hidden {\n &:focus {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n }\n .focus-visible\\:border-ring {\n &:focus-visible {\n border-color: var(--ring);\n }\n }\n .focus-visible\\:ring-2 {\n &:focus-visible {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus-visible\\:ring-\\[3px\\] {\n &:focus-visible {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n .focus-visible\\:ring-destructive\\/20 {\n &:focus-visible {\n --tw-ring-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);\n }\n }\n }\n .focus-visible\\:ring-ring\\/50 {\n &:focus-visible {\n --tw-ring-color: var(--ring);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);\n }\n }\n }\n .focus-visible\\:outline-1 {\n &:focus-visible {\n outline-style: var(--tw-outline-style);\n outline-width: 1px;\n }\n }\n .focus-visible\\:outline-ring {\n &:focus-visible {\n outline-color: var(--ring);\n }\n }\n .active\\:bg-sidebar-accent {\n &:active {\n background-color: var(--sidebar-accent);\n }\n }\n .active\\:text-sidebar-accent-foreground {\n &:active {\n color: var(--sidebar-accent-foreground);\n }\n }\n .disabled\\:pointer-events-none {\n &:disabled {\n pointer-events: none;\n }\n }\n .disabled\\:cursor-not-allowed {\n &:disabled {\n cursor: not-allowed;\n }\n }\n .disabled\\:opacity-50 {\n &:disabled {\n opacity: 50%;\n }\n }\n .in-data-\\[side\\=left\\]\\:cursor-w-resize {\n :where(*[data-side=\"left\"]) & {\n cursor: w-resize;\n }\n }\n .in-data-\\[side\\=right\\]\\:cursor-e-resize {\n :where(*[data-side=\"right\"]) & {\n cursor: e-resize;\n }\n }\n .has-data-\\[slot\\=card-action\\]\\:grid-cols-\\[1fr_auto\\] {\n &:has(*[data-slot=\"card-action\"]) {\n grid-template-columns: 1fr auto;\n }\n }\n .has-data-\\[state\\=checked\\]\\:border-primary {\n &:has(*[data-state=\"checked\"]) {\n border-color: var(--primary);\n }\n }\n .has-data-\\[state\\=checked\\]\\:bg-primary\\/5 {\n &:has(*[data-state=\"checked\"]) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 5%, transparent);\n }\n }\n }\n .has-data-\\[variant\\=inset\\]\\:bg-sidebar {\n &:has(*[data-variant=\"inset\"]) {\n background-color: var(--sidebar);\n }\n }\n .has-\\[\\>\\[data-slot\\=checkbox-group\\]\\]\\:gap-3 {\n &:has(>[data-slot=checkbox-group]) {\n gap: calc(var(--spacing) * 3);\n }\n }\n .has-\\[\\>\\[data-slot\\=field-content\\]\\]\\:items-start {\n &:has(>[data-slot=field-content]) {\n align-items: flex-start;\n }\n }\n .has-\\[\\>\\[data-slot\\=field\\]\\]\\:w-full {\n &:has(>[data-slot=field]) {\n width: 100%;\n }\n }\n .has-\\[\\>\\[data-slot\\=field\\]\\]\\:flex-col {\n &:has(>[data-slot=field]) {\n flex-direction: column;\n }\n }\n .has-\\[\\>\\[data-slot\\=field\\]\\]\\:rounded-md {\n &:has(>[data-slot=field]) {\n border-radius: calc(var(--radius) - 2px);\n }\n }\n .has-\\[\\>\\[data-slot\\=field\\]\\]\\:border {\n &:has(>[data-slot=field]) {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n }\n .has-\\[\\>\\[data-slot\\=radio-group\\]\\]\\:gap-3 {\n &:has(>[data-slot=radio-group]) {\n gap: calc(var(--spacing) * 3);\n }\n }\n .has-\\[\\>svg\\]\\:px-1\\.5 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 1.5);\n }\n }\n .has-\\[\\>svg\\]\\:px-2\\.5 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 2.5);\n }\n }\n .has-\\[\\>svg\\]\\:px-3 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 3);\n }\n }\n .has-\\[\\>svg\\]\\:px-4 {\n &:has(>svg) {\n padding-inline: calc(var(--spacing) * 4);\n }\n }\n .aria-disabled\\:pointer-events-none {\n &[aria-disabled=\"true\"] {\n pointer-events: none;\n }\n }\n .aria-disabled\\:opacity-50 {\n &[aria-disabled=\"true\"] {\n opacity: 50%;\n }\n }\n .aria-invalid\\:border-destructive {\n &[aria-invalid=\"true\"] {\n border-color: var(--destructive);\n }\n }\n .aria-invalid\\:ring-destructive\\/20 {\n &[aria-invalid=\"true\"] {\n --tw-ring-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);\n }\n }\n }\n .data-\\[active\\=true\\]\\:bg-sidebar-accent {\n &[data-active=\"true\"] {\n background-color: var(--sidebar-accent);\n }\n }\n .data-\\[active\\=true\\]\\:font-medium {\n &[data-active=\"true\"] {\n --tw-font-weight: var(--font-weight-medium);\n font-weight: var(--font-weight-medium);\n }\n }\n .data-\\[active\\=true\\]\\:text-sidebar-accent-foreground {\n &[data-active=\"true\"] {\n color: var(--sidebar-accent-foreground);\n }\n }\n .data-\\[disabled\\]\\:pointer-events-none {\n &[data-disabled] {\n pointer-events: none;\n }\n }\n .data-\\[disabled\\]\\:opacity-50 {\n &[data-disabled] {\n opacity: 50%;\n }\n }\n .data-\\[inset\\]\\:pl-8 {\n &[data-inset] {\n padding-left: calc(var(--spacing) * 8);\n }\n }\n .data-\\[invalid\\=true\\]\\:text-destructive {\n &[data-invalid=\"true\"] {\n color: var(--destructive);\n }\n }\n .data-\\[orientation\\=horizontal\\]\\:h-px {\n &[data-orientation=\"horizontal\"] {\n height: 1px;\n }\n }\n .data-\\[orientation\\=horizontal\\]\\:w-full {\n &[data-orientation=\"horizontal\"] {\n width: 100%;\n }\n }\n .data-\\[orientation\\=horizontal\\]\\:flex-col {\n &[data-orientation=\"horizontal\"] {\n flex-direction: column;\n }\n }\n .data-\\[orientation\\=vertical\\]\\:h-4 {\n &[data-orientation=\"vertical\"] {\n height: calc(var(--spacing) * 4);\n }\n }\n .data-\\[orientation\\=vertical\\]\\:h-full {\n &[data-orientation=\"vertical\"] {\n height: 100%;\n }\n }\n .data-\\[orientation\\=vertical\\]\\:w-px {\n &[data-orientation=\"vertical\"] {\n width: 1px;\n }\n }\n .data-\\[placeholder\\]\\:text-muted-foreground {\n &[data-placeholder] {\n color: var(--muted-foreground);\n }\n }\n .data-\\[side\\=bottom\\]\\:translate-y-1 {\n &[data-side=\"bottom\"] {\n --tw-translate-y: calc(var(--spacing) * 1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=bottom\\]\\:slide-in-from-top-2 {\n &[data-side=\"bottom\"] {\n --tw-enter-translate-y: calc(2*var(--spacing)*-1);\n }\n }\n .data-\\[side\\=left\\]\\:-translate-x-1 {\n &[data-side=\"left\"] {\n --tw-translate-x: calc(var(--spacing) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=left\\]\\:slide-in-from-right-2 {\n &[data-side=\"left\"] {\n --tw-enter-translate-x: calc(2*var(--spacing));\n }\n }\n .data-\\[side\\=right\\]\\:translate-x-1 {\n &[data-side=\"right\"] {\n --tw-translate-x: calc(var(--spacing) * 1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=right\\]\\:slide-in-from-left-2 {\n &[data-side=\"right\"] {\n --tw-enter-translate-x: calc(2*var(--spacing)*-1);\n }\n }\n .data-\\[side\\=top\\]\\:-translate-y-1 {\n &[data-side=\"top\"] {\n --tw-translate-y: calc(var(--spacing) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .data-\\[side\\=top\\]\\:slide-in-from-bottom-2 {\n &[data-side=\"top\"] {\n --tw-enter-translate-y: calc(2*var(--spacing));\n }\n }\n .data-\\[size\\=default\\]\\:h-9 {\n &[data-size=\"default\"] {\n height: calc(var(--spacing) * 9);\n }\n }\n .data-\\[size\\=lg\\]\\:size-10 {\n &[data-size=\"lg\"] {\n width: calc(var(--spacing) * 10);\n height: calc(var(--spacing) * 10);\n }\n }\n .data-\\[size\\=sm\\]\\:size-6 {\n &[data-size=\"sm\"] {\n width: calc(var(--spacing) * 6);\n height: calc(var(--spacing) * 6);\n }\n }\n .data-\\[size\\=sm\\]\\:h-8 {\n &[data-size=\"sm\"] {\n height: calc(var(--spacing) * 8);\n }\n }\n .\\*\\:data-\\[slot\\=avatar\\]\\:ring-2 {\n :is(& > *) {\n &[data-slot=\"avatar\"] {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .\\*\\:data-\\[slot\\=avatar\\]\\:ring-background {\n :is(& > *) {\n &[data-slot=\"avatar\"] {\n --tw-ring-color: var(--background);\n }\n }\n }\n .data-\\[slot\\=checkbox-group\\]\\:gap-3 {\n &[data-slot=\"checkbox-group\"] {\n gap: calc(var(--spacing) * 3);\n }\n }\n .\\*\\:data-\\[slot\\=field\\]\\:p-4 {\n :is(& > *) {\n &[data-slot=\"field\"] {\n padding: calc(var(--spacing) * 4);\n }\n }\n }\n .\\*\\:data-\\[slot\\=field-group\\]\\:gap-4 {\n :is(& > *) {\n &[data-slot=\"field-group\"] {\n gap: calc(var(--spacing) * 4);\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:line-clamp-1 {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n overflow: hidden;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 1;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:flex {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n display: flex;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:items-center {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n align-items: center;\n }\n }\n }\n .\\*\\:data-\\[slot\\=select-value\\]\\:gap-2 {\n :is(& > *) {\n &[data-slot=\"select-value\"] {\n gap: calc(var(--spacing) * 2);\n }\n }\n }\n .data-\\[slot\\=sidebar-menu-button\\]\\:p-1\\.5\\! {\n &[data-slot=\"sidebar-menu-button\"] {\n padding: calc(var(--spacing) * 1.5) !important;\n }\n }\n .data-\\[state\\=active\\]\\:bg-background {\n &[data-state=\"active\"] {\n background-color: var(--background);\n }\n }\n .data-\\[state\\=active\\]\\:text-foreground {\n &[data-state=\"active\"] {\n color: var(--foreground);\n }\n }\n .group-data-\\[variant\\=default\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:shadow-sm {\n &:is(:where(.group\\/tabs-list)[data-variant=\"default\"] *) {\n &[data-state=\"active\"] {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:bg-transparent {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n background-color: transparent;\n }\n }\n }\n .group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:shadow-none {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n --tw-shadow: 0 0 #0000;\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:after\\:opacity-100 {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n &::after {\n content: var(--tw-content);\n opacity: 100%;\n }\n }\n }\n }\n .data-\\[state\\=checked\\]\\:border-primary {\n &[data-state=\"checked\"] {\n border-color: var(--primary);\n }\n }\n .data-\\[state\\=checked\\]\\:bg-primary {\n &[data-state=\"checked\"] {\n background-color: var(--primary);\n }\n }\n .data-\\[state\\=checked\\]\\:text-primary-foreground {\n &[data-state=\"checked\"] {\n color: var(--primary-foreground);\n }\n }\n .data-\\[state\\=closed\\]\\:animate-out {\n &[data-state=\"closed\"] {\n animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);\n }\n }\n .data-\\[state\\=closed\\]\\:duration-300 {\n &[data-state=\"closed\"] {\n --tw-duration: 300ms;\n transition-duration: 300ms;\n }\n }\n .data-\\[state\\=closed\\]\\:fade-out-0 {\n &[data-state=\"closed\"] {\n --tw-exit-opacity: calc(0/100);\n --tw-exit-opacity: 0;\n }\n }\n .data-\\[state\\=closed\\]\\:zoom-out-95 {\n &[data-state=\"closed\"] {\n --tw-exit-scale: calc(95*1%);\n --tw-exit-scale: .95;\n }\n }\n .data-\\[state\\=closed\\]\\:slide-out-to-bottom {\n &[data-state=\"closed\"] {\n --tw-exit-translate-y: 100%;\n }\n }\n .data-\\[state\\=closed\\]\\:slide-out-to-left {\n &[data-state=\"closed\"] {\n --tw-exit-translate-x: -100%;\n }\n }\n .data-\\[state\\=closed\\]\\:slide-out-to-right {\n &[data-state=\"closed\"] {\n --tw-exit-translate-x: 100%;\n }\n }\n .data-\\[state\\=closed\\]\\:slide-out-to-top {\n &[data-state=\"closed\"] {\n --tw-exit-translate-y: -100%;\n }\n }\n .data-\\[state\\=open\\]\\:animate-in {\n &[data-state=\"open\"] {\n animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);\n }\n }\n .data-\\[state\\=open\\]\\:bg-accent {\n &[data-state=\"open\"] {\n background-color: var(--accent);\n }\n }\n .data-\\[state\\=open\\]\\:bg-secondary {\n &[data-state=\"open\"] {\n background-color: var(--secondary);\n }\n }\n .data-\\[state\\=open\\]\\:bg-sidebar-accent {\n &[data-state=\"open\"] {\n background-color: var(--sidebar-accent);\n }\n }\n .data-\\[state\\=open\\]\\:text-accent-foreground {\n &[data-state=\"open\"] {\n color: var(--accent-foreground);\n }\n }\n .data-\\[state\\=open\\]\\:text-muted-foreground {\n &[data-state=\"open\"] {\n color: var(--muted-foreground);\n }\n }\n .data-\\[state\\=open\\]\\:text-sidebar-accent-foreground {\n &[data-state=\"open\"] {\n color: var(--sidebar-accent-foreground);\n }\n }\n .data-\\[state\\=open\\]\\:opacity-100 {\n &[data-state=\"open\"] {\n opacity: 100%;\n }\n }\n .data-\\[state\\=open\\]\\:duration-500 {\n &[data-state=\"open\"] {\n --tw-duration: 500ms;\n transition-duration: 500ms;\n }\n }\n .data-\\[state\\=open\\]\\:fade-in-0 {\n &[data-state=\"open\"] {\n --tw-enter-opacity: calc(0/100);\n --tw-enter-opacity: 0;\n }\n }\n .data-\\[state\\=open\\]\\:zoom-in-95 {\n &[data-state=\"open\"] {\n --tw-enter-scale: calc(95*1%);\n --tw-enter-scale: .95;\n }\n }\n .data-\\[state\\=open\\]\\:slide-in-from-bottom {\n &[data-state=\"open\"] {\n --tw-enter-translate-y: 100%;\n }\n }\n .data-\\[state\\=open\\]\\:slide-in-from-left {\n &[data-state=\"open\"] {\n --tw-enter-translate-x: -100%;\n }\n }\n .data-\\[state\\=open\\]\\:slide-in-from-right {\n &[data-state=\"open\"] {\n --tw-enter-translate-x: 100%;\n }\n }\n .data-\\[state\\=open\\]\\:slide-in-from-top {\n &[data-state=\"open\"] {\n --tw-enter-translate-y: -100%;\n }\n }\n .data-\\[state\\=open\\]\\:hover\\:bg-sidebar-accent {\n &[data-state=\"open\"] {\n &:hover {\n @media (hover: hover) {\n background-color: var(--sidebar-accent);\n }\n }\n }\n }\n .data-\\[state\\=open\\]\\:hover\\:text-sidebar-accent-foreground {\n &[data-state=\"open\"] {\n &:hover {\n @media (hover: hover) {\n color: var(--sidebar-accent-foreground);\n }\n }\n }\n }\n .data-\\[state\\=selected\\]\\:bg-muted {\n &[data-state=\"selected\"] {\n background-color: var(--muted);\n }\n }\n .data-\\[variant\\=destructive\\]\\:text-destructive {\n &[data-variant=\"destructive\"] {\n color: var(--destructive);\n }\n }\n .data-\\[variant\\=destructive\\]\\:focus\\:bg-destructive\\/10 {\n &[data-variant=\"destructive\"] {\n &:focus {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 10%, transparent);\n }\n }\n }\n }\n .data-\\[variant\\=destructive\\]\\:focus\\:text-destructive {\n &[data-variant=\"destructive\"] {\n &:focus {\n color: var(--destructive);\n }\n }\n }\n .data-\\[variant\\=label\\]\\:text-sm {\n &[data-variant=\"label\"] {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .data-\\[variant\\=legend\\]\\:text-base {\n &[data-variant=\"legend\"] {\n font-size: var(--text-base);\n line-height: var(--tw-leading, var(--text-base--line-height));\n }\n }\n .data-\\[variant\\=line\\]\\:rounded-none {\n &[data-variant=\"line\"] {\n border-radius: 0;\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:inset-x-0 {\n &[data-vaul-drawer-direction=\"bottom\"] {\n inset-inline: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:bottom-0 {\n &[data-vaul-drawer-direction=\"bottom\"] {\n bottom: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:mt-24 {\n &[data-vaul-drawer-direction=\"bottom\"] {\n margin-top: calc(var(--spacing) * 24);\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:max-h-\\[80vh\\] {\n &[data-vaul-drawer-direction=\"bottom\"] {\n max-height: 80vh;\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:rounded-t-lg {\n &[data-vaul-drawer-direction=\"bottom\"] {\n border-top-left-radius: var(--radius);\n border-top-right-radius: var(--radius);\n }\n }\n .data-\\[vaul-drawer-direction\\=bottom\\]\\:border-t {\n &[data-vaul-drawer-direction=\"bottom\"] {\n border-top-style: var(--tw-border-style);\n border-top-width: 1px;\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:inset-y-0 {\n &[data-vaul-drawer-direction=\"left\"] {\n inset-block: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:left-0 {\n &[data-vaul-drawer-direction=\"left\"] {\n left: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:w-3\\/4 {\n &[data-vaul-drawer-direction=\"left\"] {\n width: calc(3 / 4 * 100%);\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:border-r {\n &[data-vaul-drawer-direction=\"left\"] {\n border-right-style: var(--tw-border-style);\n border-right-width: 1px;\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:inset-y-0 {\n &[data-vaul-drawer-direction=\"right\"] {\n inset-block: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:right-0 {\n &[data-vaul-drawer-direction=\"right\"] {\n right: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:w-3\\/4 {\n &[data-vaul-drawer-direction=\"right\"] {\n width: calc(3 / 4 * 100%);\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:border-l {\n &[data-vaul-drawer-direction=\"right\"] {\n border-left-style: var(--tw-border-style);\n border-left-width: 1px;\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:inset-x-0 {\n &[data-vaul-drawer-direction=\"top\"] {\n inset-inline: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:top-0 {\n &[data-vaul-drawer-direction=\"top\"] {\n top: calc(var(--spacing) * 0);\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:mb-24 {\n &[data-vaul-drawer-direction=\"top\"] {\n margin-bottom: calc(var(--spacing) * 24);\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:max-h-\\[80vh\\] {\n &[data-vaul-drawer-direction=\"top\"] {\n max-height: 80vh;\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:rounded-b-lg {\n &[data-vaul-drawer-direction=\"top\"] {\n border-bottom-right-radius: var(--radius);\n border-bottom-left-radius: var(--radius);\n }\n }\n .data-\\[vaul-drawer-direction\\=top\\]\\:border-b {\n &[data-vaul-drawer-direction=\"top\"] {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n }\n }\n .nth-last-2\\:-mt-1 {\n &:nth-last-child(2) {\n margin-top: calc(var(--spacing) * -1);\n }\n }\n .sm\\:flex {\n @media (width >= 40rem) {\n display: flex;\n }\n }\n .sm\\:w-40 {\n @media (width >= 40rem) {\n width: calc(var(--spacing) * 40);\n }\n }\n .sm\\:w-48 {\n @media (width >= 40rem) {\n width: calc(var(--spacing) * 48);\n }\n }\n .sm\\:max-w-2xl {\n @media (width >= 40rem) {\n max-width: var(--container-2xl);\n }\n }\n .sm\\:max-w-lg {\n @media (width >= 40rem) {\n max-width: var(--container-lg);\n }\n }\n .sm\\:max-w-sm {\n @media (width >= 40rem) {\n max-width: var(--container-sm);\n }\n }\n .sm\\:grid-cols-2 {\n @media (width >= 40rem) {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n }\n }\n .sm\\:flex-row {\n @media (width >= 40rem) {\n flex-direction: row;\n }\n }\n .sm\\:items-start {\n @media (width >= 40rem) {\n align-items: flex-start;\n }\n }\n .sm\\:justify-end {\n @media (width >= 40rem) {\n justify-content: flex-end;\n }\n }\n .sm\\:text-left {\n @media (width >= 40rem) {\n text-align: left;\n }\n }\n .data-\\[vaul-drawer-direction\\=left\\]\\:sm\\:max-w-sm {\n &[data-vaul-drawer-direction=\"left\"] {\n @media (width >= 40rem) {\n max-width: var(--container-sm);\n }\n }\n }\n .data-\\[vaul-drawer-direction\\=right\\]\\:sm\\:max-w-sm {\n &[data-vaul-drawer-direction=\"right\"] {\n @media (width >= 40rem) {\n max-width: var(--container-sm);\n }\n }\n }\n .md\\:block {\n @media (width >= 48rem) {\n display: block;\n }\n }\n .md\\:flex {\n @media (width >= 48rem) {\n display: flex;\n }\n }\n .md\\:hidden {\n @media (width >= 48rem) {\n display: none;\n }\n }\n .md\\:w-39\\.5 {\n @media (width >= 48rem) {\n width: calc(var(--spacing) * 39.5);\n }\n }\n .md\\:gap-1\\.5 {\n @media (width >= 48rem) {\n gap: calc(var(--spacing) * 1.5);\n }\n }\n .md\\:p-6 {\n @media (width >= 48rem) {\n padding: calc(var(--spacing) * 6);\n }\n }\n .md\\:text-left {\n @media (width >= 48rem) {\n text-align: left;\n }\n }\n .md\\:text-sm {\n @media (width >= 48rem) {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n }\n .md\\:opacity-0 {\n @media (width >= 48rem) {\n opacity: 0%;\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:m-2 {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n margin: calc(var(--spacing) * 2);\n }\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:ml-0 {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n margin-left: calc(var(--spacing) * 0);\n }\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:rounded-xl {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n border-radius: calc(var(--radius) + 4px);\n }\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:shadow-sm {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);\n }\n }\n }\n .md\\:peer-data-\\[variant\\=inset\\]\\:peer-data-\\[state\\=collapsed\\]\\:ml-2 {\n @media (width >= 48rem) {\n &:is(:where(.peer)[data-variant=\"inset\"] ~ *) {\n &:is(:where(.peer)[data-state=\"collapsed\"] ~ *) {\n margin-left: calc(var(--spacing) * 2);\n }\n }\n }\n }\n .md\\:after\\:hidden {\n @media (width >= 48rem) {\n &::after {\n content: var(--tw-content);\n display: none;\n }\n }\n }\n .lg\\:table-cell {\n @media (width >= 64rem) {\n display: table-cell;\n }\n }\n .lg\\:grid-cols-2 {\n @media (width >= 64rem) {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n }\n }\n .lg\\:grid-cols-4 {\n @media (width >= 64rem) {\n grid-template-columns: repeat(4, minmax(0, 1fr));\n }\n }\n .lg\\:px-6 {\n @media (width >= 64rem) {\n padding-inline: calc(var(--spacing) * 6);\n }\n }\n .\\@md\\/field-group\\:flex-row {\n @container field-group (width >= 28rem) {\n flex-direction: row;\n }\n }\n .\\@md\\/field-group\\:items-center {\n @container field-group (width >= 28rem) {\n align-items: center;\n }\n }\n .\\@md\\/field-group\\:has-\\[\\>\\[data-slot\\=field-content\\]\\]\\:items-start {\n @container field-group (width >= 28rem) {\n &:has(>[data-slot=field-content]) {\n align-items: flex-start;\n }\n }\n }\n .dark\\:border-input {\n &:is(.dark *) {\n border-color: var(--input);\n }\n }\n .dark\\:border-white\\/\\[\\.145\\] {\n &:is(.dark *) {\n border-color: color-mix(in srgb, #fff 14.499999999999998%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--color-white) 14.499999999999998%, transparent);\n }\n }\n }\n .dark\\:bg-black {\n &:is(.dark *) {\n background-color: var(--color-black);\n }\n }\n .dark\\:bg-destructive\\/60 {\n &:is(.dark *) {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 60%, transparent);\n }\n }\n }\n .dark\\:bg-input\\/30 {\n &:is(.dark *) {\n background-color: var(--input);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--input) 30%, transparent);\n }\n }\n }\n .dark\\:text-muted-foreground {\n &:is(.dark *) {\n color: var(--muted-foreground);\n }\n }\n .dark\\:text-zinc-50 {\n &:is(.dark *) {\n color: var(--color-zinc-50);\n }\n }\n .dark\\:text-zinc-400 {\n &:is(.dark *) {\n color: var(--color-zinc-400);\n }\n }\n .dark\\:invert {\n &:is(.dark *) {\n --tw-invert: invert(100%);\n filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);\n }\n }\n .dark\\:hover\\:bg-\\[\\#1a1a1a\\] {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n background-color: #1a1a1a;\n }\n }\n }\n }\n .dark\\:hover\\:bg-\\[\\#ccc\\] {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n background-color: #ccc;\n }\n }\n }\n }\n .dark\\:hover\\:bg-accent\\/50 {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n background-color: var(--accent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--accent) 50%, transparent);\n }\n }\n }\n }\n }\n .dark\\:hover\\:bg-input\\/50 {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n background-color: var(--input);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--input) 50%, transparent);\n }\n }\n }\n }\n }\n .dark\\:hover\\:text-foreground {\n &:is(.dark *) {\n &:hover {\n @media (hover: hover) {\n color: var(--foreground);\n }\n }\n }\n }\n .dark\\:focus-visible\\:ring-destructive\\/40 {\n &:is(.dark *) {\n &:focus-visible {\n --tw-ring-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);\n }\n }\n }\n }\n .dark\\:has-data-\\[state\\=checked\\]\\:bg-primary\\/10 {\n &:is(.dark *) {\n &:has(*[data-state=\"checked\"]) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 10%, transparent);\n }\n }\n }\n }\n .dark\\:aria-invalid\\:ring-destructive\\/40 {\n &:is(.dark *) {\n &[aria-invalid=\"true\"] {\n --tw-ring-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);\n }\n }\n }\n }\n .dark\\:data-\\[state\\=active\\]\\:border-input {\n &:is(.dark *) {\n &[data-state=\"active\"] {\n border-color: var(--input);\n }\n }\n }\n .dark\\:data-\\[state\\=active\\]\\:bg-input\\/30 {\n &:is(.dark *) {\n &[data-state=\"active\"] {\n background-color: var(--input);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--input) 30%, transparent);\n }\n }\n }\n }\n .dark\\:data-\\[state\\=active\\]\\:text-foreground {\n &:is(.dark *) {\n &[data-state=\"active\"] {\n color: var(--foreground);\n }\n }\n }\n .dark\\:group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:border-transparent {\n &:is(.dark *) {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n border-color: transparent;\n }\n }\n }\n }\n .dark\\:group-data-\\[variant\\=line\\]\\/tabs-list\\:data-\\[state\\=active\\]\\:bg-transparent {\n &:is(.dark *) {\n &:is(:where(.group\\/tabs-list)[data-variant=\"line\"] *) {\n &[data-state=\"active\"] {\n background-color: transparent;\n }\n }\n }\n }\n .dark\\:data-\\[state\\=checked\\]\\:bg-primary {\n &:is(.dark *) {\n &[data-state=\"checked\"] {\n background-color: var(--primary);\n }\n }\n }\n .dark\\:data-\\[variant\\=destructive\\]\\:focus\\:bg-destructive\\/20 {\n &:is(.dark *) {\n &[data-variant=\"destructive\"] {\n &:focus {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 20%, transparent);\n }\n }\n }\n }\n }\n .\\[\\&_\\.recharts-cartesian-axis-tick_text\\]\\:fill-muted-foreground {\n & .recharts-cartesian-axis-tick text {\n fill: var(--muted-foreground);\n }\n }\n .\\[\\&_\\.recharts-cartesian-grid_line\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border\\/50 {\n & .recharts-cartesian-grid line[stroke='#ccc'] {\n stroke: var(--border);\n @supports (color: color-mix(in lab, red, red)) {\n stroke: color-mix(in oklab, var(--border) 50%, transparent);\n }\n }\n }\n .\\[\\&_\\.recharts-curve\\.recharts-tooltip-cursor\\]\\:stroke-border {\n & .recharts-curve.recharts-tooltip-cursor {\n stroke: var(--border);\n }\n }\n .\\[\\&_\\.recharts-dot\\[stroke\\=\\'\\#fff\\'\\]\\]\\:stroke-transparent {\n & .recharts-dot[stroke='#fff'] {\n stroke: transparent;\n }\n }\n .\\[\\&_\\.recharts-layer\\]\\:outline-hidden {\n & .recharts-layer {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n }\n .\\[\\&_\\.recharts-polar-grid_\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border {\n & .recharts-polar-grid [stroke='#ccc'] {\n stroke: var(--border);\n }\n }\n .\\[\\&_\\.recharts-radial-bar-background-sector\\]\\:fill-muted {\n & .recharts-radial-bar-background-sector {\n fill: var(--muted);\n }\n }\n .\\[\\&_\\.recharts-rectangle\\.recharts-tooltip-cursor\\]\\:fill-muted {\n & .recharts-rectangle.recharts-tooltip-cursor {\n fill: var(--muted);\n }\n }\n .\\[\\&_\\.recharts-reference-line_\\[stroke\\=\\'\\#ccc\\'\\]\\]\\:stroke-border {\n & .recharts-reference-line [stroke='#ccc'] {\n stroke: var(--border);\n }\n }\n .\\[\\&_\\.recharts-sector\\]\\:outline-hidden {\n & .recharts-sector {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n }\n .\\[\\&_\\.recharts-sector\\[stroke\\=\\'\\#fff\\'\\]\\]\\:stroke-transparent {\n & .recharts-sector[stroke='#fff'] {\n stroke: transparent;\n }\n }\n .\\[\\&_\\.recharts-surface\\]\\:outline-hidden {\n & .recharts-surface {\n --tw-outline-style: none;\n outline-style: none;\n @media (forced-colors: active) {\n outline: 2px solid transparent;\n outline-offset: 2px;\n }\n }\n }\n .\\[\\&_svg\\]\\:pointer-events-none {\n & svg {\n pointer-events: none;\n }\n }\n .\\[\\&_svg\\]\\:shrink-0 {\n & svg {\n flex-shrink: 0;\n }\n }\n .\\[\\&_svg\\:not\\(\\[class\\*\\=\\'size-\\'\\]\\)\\]\\:size-3 {\n & svg:not([class*='size-']) {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n }\n .\\[\\&_svg\\:not\\(\\[class\\*\\=\\'size-\\'\\]\\)\\]\\:size-4 {\n & svg:not([class*='size-']) {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n }\n }\n .\\[\\&_svg\\:not\\(\\[class\\*\\=\\'text-\\'\\]\\)\\]\\:text-muted-foreground {\n & svg:not([class*='text-']) {\n color: var(--muted-foreground);\n }\n }\n .\\[\\&_tr\\]\\:border-b {\n & tr {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n }\n }\n .\\[\\&_tr\\:last-child\\]\\:border-0 {\n & tr:last-child {\n border-style: var(--tw-border-style);\n border-width: 0px;\n }\n }\n .\\[\\&\\:has\\(\\[role\\=checkbox\\]\\)\\]\\:pr-0 {\n &:has([role=checkbox]) {\n padding-right: calc(var(--spacing) * 0);\n }\n }\n .\\[\\.border-b\\]\\:pb-6 {\n &:is(.border-b) {\n padding-bottom: calc(var(--spacing) * 6);\n }\n }\n .\\[\\.border-t\\]\\:pt-6 {\n &:is(.border-t) {\n padding-top: calc(var(--spacing) * 6);\n }\n }\n .\\*\\:\\[span\\]\\:last\\:flex {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n display: flex;\n }\n }\n }\n }\n .\\*\\:\\[span\\]\\:last\\:items-center {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n align-items: center;\n }\n }\n }\n }\n .\\*\\:\\[span\\]\\:last\\:gap-2 {\n :is(& > *) {\n &:is(span) {\n &:last-child {\n gap: calc(var(--spacing) * 2);\n }\n }\n }\n }\n .data-\\[variant\\=destructive\\]\\:\\*\\:\\[svg\\]\\:\\!text-destructive {\n &[data-variant=\"destructive\"] {\n :is(& > *) {\n &:is(svg) {\n color: var(--destructive) !important;\n }\n }\n }\n }\n .\\[\\&\\>\\*\\]\\:w-full {\n &>* {\n width: 100%;\n }\n }\n .\\@md\\/field-group\\:\\[\\&\\>\\*\\]\\:w-auto {\n @container field-group (width >= 28rem) {\n &>* {\n width: auto;\n }\n }\n }\n .\\[\\&\\>\\.sr-only\\]\\:w-auto {\n &>.sr-only {\n width: auto;\n }\n }\n .\\[\\&\\>\\[data-slot\\=field-label\\]\\]\\:flex-auto {\n &>[data-slot=field-label] {\n flex: auto;\n }\n }\n .\\@md\\/field-group\\:\\[\\&\\>\\[data-slot\\=field-label\\]\\]\\:flex-auto {\n @container field-group (width >= 28rem) {\n &>[data-slot=field-label] {\n flex: auto;\n }\n }\n }\n .\\[\\&\\>\\[role\\=checkbox\\]\\]\\:translate-y-\\[2px\\] {\n &>[role=checkbox] {\n --tw-translate-y: 2px;\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n }\n .has-\\[\\>\\[data-slot\\=field-content\\]\\]\\:\\[\\&\\>\\[role\\=checkbox\\]\\,\\[role\\=radio\\]\\]\\:mt-px {\n &:has(>[data-slot=field-content]) {\n &>[role=checkbox],[role=radio] {\n margin-top: 1px;\n }\n }\n }\n .\\@md\\/field-group\\:has-\\[\\>\\[data-slot\\=field-content\\]\\]\\:\\[\\&\\>\\[role\\=checkbox\\]\\,\\[role\\=radio\\]\\]\\:mt-px {\n @container field-group (width >= 28rem) {\n &:has(>[data-slot=field-content]) {\n &>[role=checkbox],[role=radio] {\n margin-top: 1px;\n }\n }\n }\n }\n .\\[\\&\\>a\\]\\:underline {\n &>a {\n text-decoration-line: underline;\n }\n }\n .\\[\\&\\>a\\]\\:underline-offset-4 {\n &>a {\n text-underline-offset: 4px;\n }\n }\n .\\[\\&\\>a\\:hover\\]\\:text-primary {\n &>a:hover {\n color: var(--primary);\n }\n }\n .\\[\\&\\>button\\]\\:hidden {\n &>button {\n display: none;\n }\n }\n .\\[\\&\\>span\\:last-child\\]\\:truncate {\n &>span:last-child {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n }\n .\\[\\&\\>svg\\]\\:pointer-events-none {\n &>svg {\n pointer-events: none;\n }\n }\n .\\[\\&\\>svg\\]\\:size-3 {\n &>svg {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n }\n .\\[\\&\\>svg\\]\\:size-4 {\n &>svg {\n width: calc(var(--spacing) * 4);\n height: calc(var(--spacing) * 4);\n }\n }\n .\\[\\&\\>svg\\]\\:h-2\\.5 {\n &>svg {\n height: calc(var(--spacing) * 2.5);\n }\n }\n .\\[\\&\\>svg\\]\\:h-3 {\n &>svg {\n height: calc(var(--spacing) * 3);\n }\n }\n .\\[\\&\\>svg\\]\\:w-2\\.5 {\n &>svg {\n width: calc(var(--spacing) * 2.5);\n }\n }\n .\\[\\&\\>svg\\]\\:w-3 {\n &>svg {\n width: calc(var(--spacing) * 3);\n }\n }\n .\\[\\&\\>svg\\]\\:shrink-0 {\n &>svg {\n flex-shrink: 0;\n }\n }\n .\\[\\&\\>svg\\]\\:text-muted-foreground {\n &>svg {\n color: var(--muted-foreground);\n }\n }\n .\\[\\&\\>svg\\]\\:text-sidebar-accent-foreground {\n &>svg {\n color: var(--sidebar-accent-foreground);\n }\n }\n .group-has-data-\\[size\\=lg\\]\\/avatar-group\\:\\[\\&\\>svg\\]\\:size-5 {\n &:is(:where(.group\\/avatar-group):has(*[data-size=\"lg\"]) *) {\n &>svg {\n width: calc(var(--spacing) * 5);\n height: calc(var(--spacing) * 5);\n }\n }\n }\n .group-has-data-\\[size\\=sm\\]\\/avatar-group\\:\\[\\&\\>svg\\]\\:size-3 {\n &:is(:where(.group\\/avatar-group):has(*[data-size=\"sm\"]) *) {\n &>svg {\n width: calc(var(--spacing) * 3);\n height: calc(var(--spacing) * 3);\n }\n }\n }\n .group-data-\\[size\\=default\\]\\/avatar\\:\\[\\&\\>svg\\]\\:size-2 {\n &:is(:where(.group\\/avatar)[data-size=\"default\"] *) {\n &>svg {\n width: calc(var(--spacing) * 2);\n height: calc(var(--spacing) * 2);\n }\n }\n }\n .group-data-\\[size\\=lg\\]\\/avatar\\:\\[\\&\\>svg\\]\\:size-2 {\n &:is(:where(.group\\/avatar)[data-size=\"lg\"] *) {\n &>svg {\n width: calc(var(--spacing) * 2);\n height: calc(var(--spacing) * 2);\n }\n }\n }\n .group-data-\\[size\\=sm\\]\\/avatar\\:\\[\\&\\>svg\\]\\:hidden {\n &:is(:where(.group\\/avatar)[data-size=\"sm\"] *) {\n &>svg {\n display: none;\n }\n }\n }\n .\\[\\&\\>tr\\]\\:last\\:border-b-0 {\n &>tr {\n &:last-child {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 0px;\n }\n }\n }\n .\\[\\[data-side\\=left\\]\\[data-collapsible\\=offcanvas\\]_\\&\\]\\:-right-2 {\n [data-side=left][data-collapsible=offcanvas] & {\n right: calc(var(--spacing) * -2);\n }\n }\n .\\[\\[data-side\\=left\\]\\[data-state\\=collapsed\\]_\\&\\]\\:cursor-e-resize {\n [data-side=left][data-state=collapsed] & {\n cursor: e-resize;\n }\n }\n .\\[\\[data-side\\=right\\]\\[data-collapsible\\=offcanvas\\]_\\&\\]\\:-left-2 {\n [data-side=right][data-collapsible=offcanvas] & {\n left: calc(var(--spacing) * -2);\n }\n }\n .\\[\\[data-side\\=right\\]\\[data-state\\=collapsed\\]_\\&\\]\\:cursor-w-resize {\n [data-side=right][data-state=collapsed] & {\n cursor: w-resize;\n }\n }\n .\\[\\[data-variant\\=legend\\]\\+\\&\\]\\:-mt-1\\.5 {\n [data-variant=legend]+& {\n margin-top: calc(var(--spacing) * -1.5);\n }\n }\n .\\[a\\&\\]\\:hover\\:bg-accent {\n a& {\n &:hover {\n @media (hover: hover) {\n background-color: var(--accent);\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:bg-destructive\\/90 {\n a& {\n &:hover {\n @media (hover: hover) {\n background-color: var(--destructive);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--destructive) 90%, transparent);\n }\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:bg-primary\\/90 {\n a& {\n &:hover {\n @media (hover: hover) {\n background-color: var(--primary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--primary) 90%, transparent);\n }\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:bg-secondary\\/90 {\n a& {\n &:hover {\n @media (hover: hover) {\n background-color: var(--secondary);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--secondary) 90%, transparent);\n }\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:text-accent-foreground {\n a& {\n &:hover {\n @media (hover: hover) {\n color: var(--accent-foreground);\n }\n }\n }\n }\n .\\[a\\&\\]\\:hover\\:underline {\n a& {\n &:hover {\n @media (hover: hover) {\n text-decoration-line: underline;\n }\n }\n }\n }\n}\n@property --tw-animation-delay {\n syntax: \"*\";\n inherits: false;\n initial-value: 0s;\n}\n@property --tw-animation-direction {\n syntax: \"*\";\n inherits: false;\n initial-value: normal;\n}\n@property --tw-animation-duration {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-animation-fill-mode {\n syntax: \"*\";\n inherits: false;\n initial-value: none;\n}\n@property --tw-animation-iteration-count {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-blur {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-opacity {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-rotate {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-scale {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-enter-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-enter-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-blur {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-opacity {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-exit-rotate {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-scale {\n syntax: \"*\";\n inherits: false;\n initial-value: 1;\n}\n@property --tw-exit-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-exit-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n:root {\n --radius: 0.625rem;\n --background: oklch(1 0 0);\n --foreground: oklch(0.145 0 0);\n --card: oklch(1 0 0);\n --card-foreground: oklch(0.145 0 0);\n --popover: oklch(1 0 0);\n --popover-foreground: oklch(0.145 0 0);\n --primary: oklch(0.205 0 0);\n --primary-foreground: oklch(0.985 0 0);\n --secondary: oklch(0.97 0 0);\n --secondary-foreground: oklch(0.205 0 0);\n --muted: oklch(0.97 0 0);\n --muted-foreground: oklch(0.556 0 0);\n --accent: oklch(0.97 0 0);\n --accent-foreground: oklch(0.205 0 0);\n --destructive: oklch(0.577 0.245 27.325);\n --border: oklch(0.922 0 0);\n --input: oklch(0.922 0 0);\n --ring: oklch(0.708 0 0);\n --chart-1: oklch(0.646 0.222 41.116);\n --chart-2: oklch(0.6 0.118 184.704);\n --chart-3: oklch(0.398 0.07 227.392);\n --chart-4: oklch(0.828 0.189 84.429);\n --chart-5: oklch(0.769 0.188 70.08);\n --sidebar: oklch(0.985 0 0);\n --sidebar-foreground: oklch(0.145 0 0);\n --sidebar-primary: oklch(0.205 0 0);\n --sidebar-primary-foreground: oklch(0.985 0 0);\n --sidebar-accent: oklch(0.97 0 0);\n --sidebar-accent-foreground: oklch(0.205 0 0);\n --sidebar-border: oklch(0.922 0 0);\n --sidebar-ring: oklch(0.708 0 0);\n}\n.dark {\n --background: oklch(0.145 0 0);\n --foreground: oklch(0.985 0 0);\n --card: oklch(0.205 0 0);\n --card-foreground: oklch(0.985 0 0);\n --popover: oklch(0.205 0 0);\n --popover-foreground: oklch(0.985 0 0);\n --primary: oklch(0.922 0 0);\n --primary-foreground: oklch(0.205 0 0);\n --secondary: oklch(0.269 0 0);\n --secondary-foreground: oklch(0.985 0 0);\n --muted: oklch(0.269 0 0);\n --muted-foreground: oklch(0.708 0 0);\n --accent: oklch(0.269 0 0);\n --accent-foreground: oklch(0.985 0 0);\n --destructive: oklch(0.704 0.191 22.216);\n --border: oklch(1 0 0 / 10%);\n --input: oklch(1 0 0 / 15%);\n --ring: oklch(0.556 0 0);\n --chart-1: oklch(0.488 0.243 264.376);\n --chart-2: oklch(0.696 0.17 162.48);\n --chart-3: oklch(0.769 0.188 70.08);\n --chart-4: oklch(0.627 0.265 303.9);\n --chart-5: oklch(0.645 0.246 16.439);\n --sidebar: oklch(0.205 0 0);\n --sidebar-foreground: oklch(0.985 0 0);\n --sidebar-primary: oklch(0.488 0.243 264.376);\n --sidebar-primary-foreground: oklch(0.985 0 0);\n --sidebar-accent: oklch(0.269 0 0);\n --sidebar-accent-foreground: oklch(0.985 0 0);\n --sidebar-border: oklch(1 0 0 / 10%);\n --sidebar-ring: oklch(0.556 0 0);\n}\n@layer base {\n * {\n border-color: var(--border);\n outline-color: var(--ring);\n @supports (color: color-mix(in lab, red, red)) {\n outline-color: color-mix(in oklab, var(--ring) 50%, transparent);\n }\n }\n body {\n background-color: var(--background);\n color: var(--foreground);\n }\n}\n@property --tw-translate-x {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-translate-y {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-translate-z {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-space-y-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-space-x-reverse {\n syntax: \"*\";\n inherits: false;\n initial-value: 0;\n}\n@property --tw-border-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-leading {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-font-weight {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-tracking {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ordinal {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-slashed-zero {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-figure {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-spacing {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-numeric-fraction {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-inset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-inset-ring-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-inset-ring-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-ring-inset {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ring-offset-width {\n syntax: \"<length>\";\n inherits: false;\n initial-value: 0px;\n}\n@property --tw-ring-offset-color {\n syntax: \"*\";\n inherits: false;\n initial-value: #fff;\n}\n@property --tw-ring-offset-shadow {\n syntax: \"*\";\n inherits: false;\n initial-value: 0 0 #0000;\n}\n@property --tw-outline-style {\n syntax: \"*\";\n inherits: false;\n initial-value: solid;\n}\n@property --tw-duration {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-ease {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-content {\n syntax: \"*\";\n initial-value: \"\";\n inherits: false;\n}\n@property --tw-blur {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-brightness {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-contrast {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-grayscale {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-hue-rotate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-invert {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-opacity {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-saturate {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-sepia {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow-color {\n syntax: \"*\";\n inherits: false;\n}\n@property --tw-drop-shadow-alpha {\n syntax: \"<percentage>\";\n inherits: false;\n initial-value: 100%;\n}\n@property --tw-drop-shadow-size {\n syntax: \"*\";\n inherits: false;\n}\n@keyframes pulse {\n 50% {\n opacity: 0.5;\n }\n}\n@keyframes enter {\n from {\n opacity: var(--tw-enter-opacity,1);\n transform: translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));\n filter: blur(var(--tw-enter-blur,0));\n }\n}\n@keyframes exit {\n to {\n opacity: var(--tw-exit-opacity,1);\n transform: translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));\n filter: blur(var(--tw-exit-blur,0));\n }\n}\n@layer properties {\n @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {\n *, ::before, ::after, ::backdrop {\n --tw-translate-x: 0;\n --tw-translate-y: 0;\n --tw-translate-z: 0;\n --tw-space-y-reverse: 0;\n --tw-space-x-reverse: 0;\n --tw-border-style: solid;\n --tw-leading: initial;\n --tw-font-weight: initial;\n --tw-tracking: initial;\n --tw-ordinal: initial;\n --tw-slashed-zero: initial;\n --tw-numeric-figure: initial;\n --tw-numeric-spacing: initial;\n --tw-numeric-fraction: initial;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-color: initial;\n --tw-shadow-alpha: 100%;\n --tw-inset-shadow: 0 0 #0000;\n --tw-inset-shadow-color: initial;\n --tw-inset-shadow-alpha: 100%;\n --tw-ring-color: initial;\n --tw-ring-shadow: 0 0 #0000;\n --tw-inset-ring-color: initial;\n --tw-inset-ring-shadow: 0 0 #0000;\n --tw-ring-inset: initial;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-offset-shadow: 0 0 #0000;\n --tw-outline-style: solid;\n --tw-duration: initial;\n --tw-ease: initial;\n --tw-content: \"\";\n --tw-blur: initial;\n --tw-brightness: initial;\n --tw-contrast: initial;\n --tw-grayscale: initial;\n --tw-hue-rotate: initial;\n --tw-invert: initial;\n --tw-opacity: initial;\n --tw-saturate: initial;\n --tw-sepia: initial;\n --tw-drop-shadow: initial;\n --tw-drop-shadow-color: initial;\n --tw-drop-shadow-alpha: 100%;\n --tw-drop-shadow-size: initial;\n --tw-animation-delay: 0s;\n --tw-animation-direction: normal;\n --tw-animation-duration: initial;\n --tw-animation-fill-mode: none;\n --tw-animation-iteration-count: 1;\n --tw-enter-blur: 0;\n --tw-enter-opacity: 1;\n --tw-enter-rotate: 0;\n --tw-enter-scale: 1;\n --tw-enter-translate-x: 0;\n --tw-enter-translate-y: 0;\n --tw-exit-blur: 0;\n --tw-exit-opacity: 1;\n --tw-exit-rotate: 0;\n --tw-exit-scale: 1;\n --tw-exit-translate-x: 0;\n --tw-exit-translate-y: 0;\n }\n }\n}\n"],"names":[],"mappings":"AACA;EA27HE;IACE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA37HJ;EAEE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAA;IAAA;;;;;;;;;;;;;;;;AAFF;EA2DE;;;;;;;EAAA;;;;;;;EAMA;;;;;;;;;;EASA;;;;;;EAKA;;;;;EAIA;;;;;EAIA;;;;;;;EAKA;;;;EAGA;;;;;;;EAMA;;;;EAGA;;;;;;;EAMA;;;;EAGA;;;;EAGA;;;;;;EAKA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;;;;;;;EAAA;;;;;;;;;;;EAUA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;IACE;;;;IAEE;MAAgD;;;;;;EAKpD;;;;EAGA;;;;EAGA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAAA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAAA;;;;EAGA;;;;EAAA;;;;EAGA;;;;EA0gHA;;;;;EAGE;IAAgD;;;;;EAIlD;;;;;;AA3tHF;;AAAA;EA+ME;;;;EAIA;;;;EAIA;;;;EAGA;;;;;;;;;;;;EAWA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;;;EAMA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAIE;;;;;;EAOA;;;;;;EAOA;;;;;;EAMF;;;;EAGA;;;;EAGA;;;;;;EAKA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAEE;IAAgD;;;;;EAIlD;;;;EAGA;;;;EAGA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;EAGA;;;;EAGA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;;;EAIA;;;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"}}] -} \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_layout_tsx_1cf6b850._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_layout_tsx_1cf6b850._.js deleted file mode 100644 index 30eb23b..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_layout_tsx_1cf6b850._.js +++ /dev/null @@ -1,7 +0,0 @@ -(globalThis.TURBOPACK_CHUNK_LISTS || (globalThis.TURBOPACK_CHUNK_LISTS = [])).push({ - script: typeof document === "object" ? document.currentScript : undefined, - chunks: [ - "static/chunks/[root-of-the-server]__0f0ba101._.css" -], - source: "dynamic" -}); diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_page_tsx_47b43e25._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_page_tsx_47b43e25._.js deleted file mode 100644 index d85d928..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/src_app_page_tsx_47b43e25._.js +++ /dev/null @@ -1,7 +0,0 @@ -(globalThis.TURBOPACK_CHUNK_LISTS || (globalThis.TURBOPACK_CHUNK_LISTS = [])).push({ - script: typeof document === "object" ? document.currentScript : undefined, - chunks: [ - "static/chunks/node_modules_next_dist_2c670af9._.js" -], - source: "dynamic" -}); diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/turbopack-_23a915ee._.js b/saintBarthVolleyApp/frontend/.next/dev/static/chunks/turbopack-_23a915ee._.js deleted file mode 100644 index bb6d0a8..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/chunks/turbopack-_23a915ee._.js +++ /dev/null @@ -1,1860 +0,0 @@ -(globalThis.TURBOPACK || (globalThis.TURBOPACK = [])).push([ - typeof document === "object" ? document.currentScript : undefined, - {"otherChunks":["static/chunks/[turbopack]_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js","static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js","static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js","static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js","static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js","static/chunks/node_modules_next_dist_client_17643121._.js","static/chunks/node_modules_next_dist_f3530cac._.js","static/chunks/node_modules_@swc_helpers_cjs_d80fb378._.js"],"runtimeModuleIds":["[project]/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js [app-client] (ecmascript)","[project]/node_modules/next/dist/client/app-next-turbopack.js [app-client] (ecmascript)"]} -]); -(() => { -if (!Array.isArray(globalThis.TURBOPACK)) { - return; -} - -const CHUNK_BASE_PATH = "/_next/"; -const RELATIVE_ROOT_PATH = "/ROOT"; -const RUNTIME_PUBLIC_PATH = "/_next/"; -const CHUNK_SUFFIX = (self.TURBOPACK_CHUNK_SUFFIX ?? document?.currentScript?.getAttribute?.('src')?.replace(/^(.*(?=\?)|^.*$)/, "")) || ""; -/** - * This file contains runtime types and functions that are shared between all - * TurboPack ECMAScript runtimes. - * - * It will be prepended to the runtime code of each runtime. - */ /* eslint-disable @typescript-eslint/no-unused-vars */ /// <reference path="./runtime-types.d.ts" /> -const REEXPORTED_OBJECTS = new WeakMap(); -/** - * Constructs the `__turbopack_context__` object for a module. - */ function Context(module, exports) { - this.m = module; - // We need to store this here instead of accessing it from the module object to: - // 1. Make it available to factories directly, since we rewrite `this` to - // `__turbopack_context__.e` in CJS modules. - // 2. Support async modules which rewrite `module.exports` to a promise, so we - // can still access the original exports object from functions like - // `esmExport` - // Ideally we could find a new approach for async modules and drop this property altogether. - this.e = exports; -} -const contextPrototype = Context.prototype; -const hasOwnProperty = Object.prototype.hasOwnProperty; -const toStringTag = typeof Symbol !== 'undefined' && Symbol.toStringTag; -function defineProp(obj, name, options) { - if (!hasOwnProperty.call(obj, name)) Object.defineProperty(obj, name, options); -} -function getOverwrittenModule(moduleCache, id) { - let module = moduleCache[id]; - if (!module) { - // This is invoked when a module is merged into another module, thus it wasn't invoked via - // instantiateModule and the cache entry wasn't created yet. - module = createModuleObject(id); - moduleCache[id] = module; - } - return module; -} -/** - * Creates the module object. Only done here to ensure all module objects have the same shape. - */ function createModuleObject(id) { - return { - exports: {}, - error: undefined, - id, - namespaceObject: undefined - }; -} -const BindingTag_Value = 0; -/** - * Adds the getters to the exports object. - */ function esm(exports, bindings) { - defineProp(exports, '__esModule', { - value: true - }); - if (toStringTag) defineProp(exports, toStringTag, { - value: 'Module' - }); - let i = 0; - while(i < bindings.length){ - const propName = bindings[i++]; - const tagOrFunction = bindings[i++]; - if (typeof tagOrFunction === 'number') { - if (tagOrFunction === BindingTag_Value) { - defineProp(exports, propName, { - value: bindings[i++], - enumerable: true, - writable: false - }); - } else { - throw new Error(`unexpected tag: ${tagOrFunction}`); - } - } else { - const getterFn = tagOrFunction; - if (typeof bindings[i] === 'function') { - const setterFn = bindings[i++]; - defineProp(exports, propName, { - get: getterFn, - set: setterFn, - enumerable: true - }); - } else { - defineProp(exports, propName, { - get: getterFn, - enumerable: true - }); - } - } - } - Object.seal(exports); -} -/** - * Makes the module an ESM with exports - */ function esmExport(bindings, id) { - let module; - let exports; - if (id != null) { - module = getOverwrittenModule(this.c, id); - exports = module.exports; - } else { - module = this.m; - exports = this.e; - } - module.namespaceObject = exports; - esm(exports, bindings); -} -contextPrototype.s = esmExport; -function ensureDynamicExports(module, exports) { - let reexportedObjects = REEXPORTED_OBJECTS.get(module); - if (!reexportedObjects) { - REEXPORTED_OBJECTS.set(module, reexportedObjects = []); - module.exports = module.namespaceObject = new Proxy(exports, { - get (target, prop) { - if (hasOwnProperty.call(target, prop) || prop === 'default' || prop === '__esModule') { - return Reflect.get(target, prop); - } - for (const obj of reexportedObjects){ - const value = Reflect.get(obj, prop); - if (value !== undefined) return value; - } - return undefined; - }, - ownKeys (target) { - const keys = Reflect.ownKeys(target); - for (const obj of reexportedObjects){ - for (const key of Reflect.ownKeys(obj)){ - if (key !== 'default' && !keys.includes(key)) keys.push(key); - } - } - return keys; - } - }); - } - return reexportedObjects; -} -/** - * Dynamically exports properties from an object - */ function dynamicExport(object, id) { - let module; - let exports; - if (id != null) { - module = getOverwrittenModule(this.c, id); - exports = module.exports; - } else { - module = this.m; - exports = this.e; - } - const reexportedObjects = ensureDynamicExports(module, exports); - if (typeof object === 'object' && object !== null) { - reexportedObjects.push(object); - } -} -contextPrototype.j = dynamicExport; -function exportValue(value, id) { - let module; - if (id != null) { - module = getOverwrittenModule(this.c, id); - } else { - module = this.m; - } - module.exports = value; -} -contextPrototype.v = exportValue; -function exportNamespace(namespace, id) { - let module; - if (id != null) { - module = getOverwrittenModule(this.c, id); - } else { - module = this.m; - } - module.exports = module.namespaceObject = namespace; -} -contextPrototype.n = exportNamespace; -function createGetter(obj, key) { - return ()=>obj[key]; -} -/** - * @returns prototype of the object - */ const getProto = Object.getPrototypeOf ? (obj)=>Object.getPrototypeOf(obj) : (obj)=>obj.__proto__; -/** Prototypes that are not expanded for exports */ const LEAF_PROTOTYPES = [ - null, - getProto({}), - getProto([]), - getProto(getProto) -]; -/** - * @param raw - * @param ns - * @param allowExportDefault - * * `false`: will have the raw module as default export - * * `true`: will have the default property as default export - */ function interopEsm(raw, ns, allowExportDefault) { - const bindings = []; - let defaultLocation = -1; - for(let current = raw; (typeof current === 'object' || typeof current === 'function') && !LEAF_PROTOTYPES.includes(current); current = getProto(current)){ - for (const key of Object.getOwnPropertyNames(current)){ - bindings.push(key, createGetter(raw, key)); - if (defaultLocation === -1 && key === 'default') { - defaultLocation = bindings.length - 1; - } - } - } - // this is not really correct - // we should set the `default` getter if the imported module is a `.cjs file` - if (!(allowExportDefault && defaultLocation >= 0)) { - // Replace the binding with one for the namespace itself in order to preserve iteration order. - if (defaultLocation >= 0) { - // Replace the getter with the value - bindings.splice(defaultLocation, 1, BindingTag_Value, raw); - } else { - bindings.push('default', BindingTag_Value, raw); - } - } - esm(ns, bindings); - return ns; -} -function createNS(raw) { - if (typeof raw === 'function') { - return function(...args) { - return raw.apply(this, args); - }; - } else { - return Object.create(null); - } -} -function esmImport(id) { - const module = getOrInstantiateModuleFromParent(id, this.m); - // any ES module has to have `module.namespaceObject` defined. - if (module.namespaceObject) return module.namespaceObject; - // only ESM can be an async module, so we don't need to worry about exports being a promise here. - const raw = module.exports; - return module.namespaceObject = interopEsm(raw, createNS(raw), raw && raw.__esModule); -} -contextPrototype.i = esmImport; -function asyncLoader(moduleId) { - const loader = this.r(moduleId); - return loader(esmImport.bind(this)); -} -contextPrototype.A = asyncLoader; -// Add a simple runtime require so that environments without one can still pass -// `typeof require` CommonJS checks so that exports are correctly registered. -const runtimeRequire = // @ts-ignore -typeof require === 'function' ? require : function require1() { - throw new Error('Unexpected use of runtime require'); -}; -contextPrototype.t = runtimeRequire; -function commonJsRequire(id) { - return getOrInstantiateModuleFromParent(id, this.m).exports; -} -contextPrototype.r = commonJsRequire; -/** - * Remove fragments and query parameters since they are never part of the context map keys - * - * This matches how we parse patterns at resolving time. Arguably we should only do this for - * strings passed to `import` but the resolve does it for `import` and `require` and so we do - * here as well. - */ function parseRequest(request) { - // Per the URI spec fragments can contain `?` characters, so we should trim it off first - // https://datatracker.ietf.org/doc/html/rfc3986#section-3.5 - const hashIndex = request.indexOf('#'); - if (hashIndex !== -1) { - request = request.substring(0, hashIndex); - } - const queryIndex = request.indexOf('?'); - if (queryIndex !== -1) { - request = request.substring(0, queryIndex); - } - return request; -} -/** - * `require.context` and require/import expression runtime. - */ function moduleContext(map) { - function moduleContext(id) { - id = parseRequest(id); - if (hasOwnProperty.call(map, id)) { - return map[id].module(); - } - const e = new Error(`Cannot find module '${id}'`); - e.code = 'MODULE_NOT_FOUND'; - throw e; - } - moduleContext.keys = ()=>{ - return Object.keys(map); - }; - moduleContext.resolve = (id)=>{ - id = parseRequest(id); - if (hasOwnProperty.call(map, id)) { - return map[id].id(); - } - const e = new Error(`Cannot find module '${id}'`); - e.code = 'MODULE_NOT_FOUND'; - throw e; - }; - moduleContext.import = async (id)=>{ - return await moduleContext(id); - }; - return moduleContext; -} -contextPrototype.f = moduleContext; -/** - * Returns the path of a chunk defined by its data. - */ function getChunkPath(chunkData) { - return typeof chunkData === 'string' ? chunkData : chunkData.path; -} -function isPromise(maybePromise) { - return maybePromise != null && typeof maybePromise === 'object' && 'then' in maybePromise && typeof maybePromise.then === 'function'; -} -function isAsyncModuleExt(obj) { - return turbopackQueues in obj; -} -function createPromise() { - let resolve; - let reject; - const promise = new Promise((res, rej)=>{ - reject = rej; - resolve = res; - }); - return { - promise, - resolve: resolve, - reject: reject - }; -} -// Load the CompressedmoduleFactories of a chunk into the `moduleFactories` Map. -// The CompressedModuleFactories format is -// - 1 or more module ids -// - a module factory function -// So walking this is a little complex but the flat structure is also fast to -// traverse, we can use `typeof` operators to distinguish the two cases. -function installCompressedModuleFactories(chunkModules, offset, moduleFactories, newModuleId) { - let i = offset; - while(i < chunkModules.length){ - let moduleId = chunkModules[i]; - let end = i + 1; - // Find our factory function - while(end < chunkModules.length && typeof chunkModules[end] !== 'function'){ - end++; - } - if (end === chunkModules.length) { - throw new Error('malformed chunk format, expected a factory function'); - } - // Each chunk item has a 'primary id' and optional additional ids. If the primary id is already - // present we know all the additional ids are also present, so we don't need to check. - if (!moduleFactories.has(moduleId)) { - const moduleFactoryFn = chunkModules[end]; - applyModuleFactoryName(moduleFactoryFn); - newModuleId?.(moduleId); - for(; i < end; i++){ - moduleId = chunkModules[i]; - moduleFactories.set(moduleId, moduleFactoryFn); - } - } - i = end + 1; // end is pointing at the last factory advance to the next id or the end of the array. - } -} -// everything below is adapted from webpack -// https://github.com/webpack/webpack/blob/6be4065ade1e252c1d8dcba4af0f43e32af1bdc1/lib/runtime/AsyncModuleRuntimeModule.js#L13 -const turbopackQueues = Symbol('turbopack queues'); -const turbopackExports = Symbol('turbopack exports'); -const turbopackError = Symbol('turbopack error'); -function resolveQueue(queue) { - if (queue && queue.status !== 1) { - queue.status = 1; - queue.forEach((fn)=>fn.queueCount--); - queue.forEach((fn)=>fn.queueCount-- ? fn.queueCount++ : fn()); - } -} -function wrapDeps(deps) { - return deps.map((dep)=>{ - if (dep !== null && typeof dep === 'object') { - if (isAsyncModuleExt(dep)) return dep; - if (isPromise(dep)) { - const queue = Object.assign([], { - status: 0 - }); - const obj = { - [turbopackExports]: {}, - [turbopackQueues]: (fn)=>fn(queue) - }; - dep.then((res)=>{ - obj[turbopackExports] = res; - resolveQueue(queue); - }, (err)=>{ - obj[turbopackError] = err; - resolveQueue(queue); - }); - return obj; - } - } - return { - [turbopackExports]: dep, - [turbopackQueues]: ()=>{} - }; - }); -} -function asyncModule(body, hasAwait) { - const module = this.m; - const queue = hasAwait ? Object.assign([], { - status: -1 - }) : undefined; - const depQueues = new Set(); - const { resolve, reject, promise: rawPromise } = createPromise(); - const promise = Object.assign(rawPromise, { - [turbopackExports]: module.exports, - [turbopackQueues]: (fn)=>{ - queue && fn(queue); - depQueues.forEach(fn); - promise['catch'](()=>{}); - } - }); - const attributes = { - get () { - return promise; - }, - set (v) { - // Calling `esmExport` leads to this. - if (v !== promise) { - promise[turbopackExports] = v; - } - } - }; - Object.defineProperty(module, 'exports', attributes); - Object.defineProperty(module, 'namespaceObject', attributes); - function handleAsyncDependencies(deps) { - const currentDeps = wrapDeps(deps); - const getResult = ()=>currentDeps.map((d)=>{ - if (d[turbopackError]) throw d[turbopackError]; - return d[turbopackExports]; - }); - const { promise, resolve } = createPromise(); - const fn = Object.assign(()=>resolve(getResult), { - queueCount: 0 - }); - function fnQueue(q) { - if (q !== queue && !depQueues.has(q)) { - depQueues.add(q); - if (q && q.status === 0) { - fn.queueCount++; - q.push(fn); - } - } - } - currentDeps.map((dep)=>dep[turbopackQueues](fnQueue)); - return fn.queueCount ? promise : getResult(); - } - function asyncResult(err) { - if (err) { - reject(promise[turbopackError] = err); - } else { - resolve(promise[turbopackExports]); - } - resolveQueue(queue); - } - body(handleAsyncDependencies, asyncResult); - if (queue && queue.status === -1) { - queue.status = 0; - } -} -contextPrototype.a = asyncModule; -/** - * A pseudo "fake" URL object to resolve to its relative path. - * - * When UrlRewriteBehavior is set to relative, calls to the `new URL()` will construct url without base using this - * runtime function to generate context-agnostic urls between different rendering context, i.e ssr / client to avoid - * hydration mismatch. - * - * This is based on webpack's existing implementation: - * https://github.com/webpack/webpack/blob/87660921808566ef3b8796f8df61bd79fc026108/lib/runtime/RelativeUrlRuntimeModule.js - */ const relativeURL = function relativeURL(inputUrl) { - const realUrl = new URL(inputUrl, 'x:/'); - const values = {}; - for(const key in realUrl)values[key] = realUrl[key]; - values.href = inputUrl; - values.pathname = inputUrl.replace(/[?#].*/, ''); - values.origin = values.protocol = ''; - values.toString = values.toJSON = (..._args)=>inputUrl; - for(const key in values)Object.defineProperty(this, key, { - enumerable: true, - configurable: true, - value: values[key] - }); -}; -relativeURL.prototype = URL.prototype; -contextPrototype.U = relativeURL; -/** - * Utility function to ensure all variants of an enum are handled. - */ function invariant(never, computeMessage) { - throw new Error(`Invariant: ${computeMessage(never)}`); -} -/** - * A stub function to make `require` available but non-functional in ESM. - */ function requireStub(_moduleId) { - throw new Error('dynamic usage of require is not supported'); -} -contextPrototype.z = requireStub; -// Make `globalThis` available to the module in a way that cannot be shadowed by a local variable. -contextPrototype.g = globalThis; -function applyModuleFactoryName(factory) { - // Give the module factory a nice name to improve stack traces. - Object.defineProperty(factory, 'name', { - value: 'module evaluation' - }); -} -/** - * This file contains runtime types and functions that are shared between all - * Turbopack *development* ECMAScript runtimes. - * - * It will be appended to the runtime code of each runtime right after the - * shared runtime utils. - */ /* eslint-disable @typescript-eslint/no-unused-vars */ /// <reference path="../base/globals.d.ts" /> -/// <reference path="../../../shared/runtime-utils.ts" /> -// Used in WebWorkers to tell the runtime about the chunk base path -const browserContextPrototype = Context.prototype; -var SourceType = /*#__PURE__*/ function(SourceType) { - /** - * The module was instantiated because it was included in an evaluated chunk's - * runtime. - * SourceData is a ChunkPath. - */ SourceType[SourceType["Runtime"] = 0] = "Runtime"; - /** - * The module was instantiated because a parent module imported it. - * SourceData is a ModuleId. - */ SourceType[SourceType["Parent"] = 1] = "Parent"; - /** - * The module was instantiated because it was included in a chunk's hot module - * update. - * SourceData is an array of ModuleIds or undefined. - */ SourceType[SourceType["Update"] = 2] = "Update"; - return SourceType; -}(SourceType || {}); -const moduleFactories = new Map(); -contextPrototype.M = moduleFactories; -const availableModules = new Map(); -const availableModuleChunks = new Map(); -function factoryNotAvailableMessage(moduleId, sourceType, sourceData) { - let instantiationReason; - switch(sourceType){ - case 0: - instantiationReason = `as a runtime entry of chunk ${sourceData}`; - break; - case 1: - instantiationReason = `because it was required from module ${sourceData}`; - break; - case 2: - instantiationReason = 'because of an HMR update'; - break; - default: - invariant(sourceType, (sourceType)=>`Unknown source type: ${sourceType}`); - } - return `Module ${moduleId} was instantiated ${instantiationReason}, but the module factory is not available.`; -} -function loadChunk(chunkData) { - return loadChunkInternal(1, this.m.id, chunkData); -} -browserContextPrototype.l = loadChunk; -function loadInitialChunk(chunkPath, chunkData) { - return loadChunkInternal(0, chunkPath, chunkData); -} -async function loadChunkInternal(sourceType, sourceData, chunkData) { - if (typeof chunkData === 'string') { - return loadChunkPath(sourceType, sourceData, chunkData); - } - const includedList = chunkData.included || []; - const modulesPromises = includedList.map((included)=>{ - if (moduleFactories.has(included)) return true; - return availableModules.get(included); - }); - if (modulesPromises.length > 0 && modulesPromises.every((p)=>p)) { - // When all included items are already loaded or loading, we can skip loading ourselves - await Promise.all(modulesPromises); - return; - } - const includedModuleChunksList = chunkData.moduleChunks || []; - const moduleChunksPromises = includedModuleChunksList.map((included)=>{ - // TODO(alexkirsz) Do we need this check? - // if (moduleFactories[included]) return true; - return availableModuleChunks.get(included); - }).filter((p)=>p); - let promise; - if (moduleChunksPromises.length > 0) { - // Some module chunks are already loaded or loading. - if (moduleChunksPromises.length === includedModuleChunksList.length) { - // When all included module chunks are already loaded or loading, we can skip loading ourselves - await Promise.all(moduleChunksPromises); - return; - } - const moduleChunksToLoad = new Set(); - for (const moduleChunk of includedModuleChunksList){ - if (!availableModuleChunks.has(moduleChunk)) { - moduleChunksToLoad.add(moduleChunk); - } - } - for (const moduleChunkToLoad of moduleChunksToLoad){ - const promise = loadChunkPath(sourceType, sourceData, moduleChunkToLoad); - availableModuleChunks.set(moduleChunkToLoad, promise); - moduleChunksPromises.push(promise); - } - promise = Promise.all(moduleChunksPromises); - } else { - promise = loadChunkPath(sourceType, sourceData, chunkData.path); - // Mark all included module chunks as loading if they are not already loaded or loading. - for (const includedModuleChunk of includedModuleChunksList){ - if (!availableModuleChunks.has(includedModuleChunk)) { - availableModuleChunks.set(includedModuleChunk, promise); - } - } - } - for (const included of includedList){ - if (!availableModules.has(included)) { - // It might be better to race old and new promises, but it's rare that the new promise will be faster than a request started earlier. - // In production it's even more rare, because the chunk optimization tries to deduplicate modules anyway. - availableModules.set(included, promise); - } - } - await promise; -} -const loadedChunk = Promise.resolve(undefined); -const instrumentedBackendLoadChunks = new WeakMap(); -// Do not make this async. React relies on referential equality of the returned Promise. -function loadChunkByUrl(chunkUrl) { - return loadChunkByUrlInternal(1, this.m.id, chunkUrl); -} -browserContextPrototype.L = loadChunkByUrl; -// Do not make this async. React relies on referential equality of the returned Promise. -function loadChunkByUrlInternal(sourceType, sourceData, chunkUrl) { - const thenable = BACKEND.loadChunkCached(sourceType, chunkUrl); - let entry = instrumentedBackendLoadChunks.get(thenable); - if (entry === undefined) { - const resolve = instrumentedBackendLoadChunks.set.bind(instrumentedBackendLoadChunks, thenable, loadedChunk); - entry = thenable.then(resolve).catch((cause)=>{ - let loadReason; - switch(sourceType){ - case 0: - loadReason = `as a runtime dependency of chunk ${sourceData}`; - break; - case 1: - loadReason = `from module ${sourceData}`; - break; - case 2: - loadReason = 'from an HMR update'; - break; - default: - invariant(sourceType, (sourceType)=>`Unknown source type: ${sourceType}`); - } - let error = new Error(`Failed to load chunk ${chunkUrl} ${loadReason}${cause ? `: ${cause}` : ''}`, cause ? { - cause - } : undefined); - error.name = 'ChunkLoadError'; - throw error; - }); - instrumentedBackendLoadChunks.set(thenable, entry); - } - return entry; -} -// Do not make this async. React relies on referential equality of the returned Promise. -function loadChunkPath(sourceType, sourceData, chunkPath) { - const url = getChunkRelativeUrl(chunkPath); - return loadChunkByUrlInternal(sourceType, sourceData, url); -} -/** - * Returns an absolute url to an asset. - */ function resolvePathFromModule(moduleId) { - const exported = this.r(moduleId); - return exported?.default ?? exported; -} -browserContextPrototype.R = resolvePathFromModule; -/** - * no-op for browser - * @param modulePath - */ function resolveAbsolutePath(modulePath) { - return `/ROOT/${modulePath ?? ''}`; -} -browserContextPrototype.P = resolveAbsolutePath; -/** - * Returns a blob URL for the worker. - * @param chunks list of chunks to load - */ function getWorkerBlobURL(chunks) { - // It is important to reverse the array so when bootstrapping we can infer what chunk is being - // evaluated by poping urls off of this array. See `getPathFromScript` - let bootstrap = `self.TURBOPACK_WORKER_LOCATION = ${JSON.stringify(location.origin)}; -self.TURBOPACK_CHUNK_SUFFIX = ${JSON.stringify(CHUNK_SUFFIX)}; -self.TURBOPACK_NEXT_CHUNK_URLS = ${JSON.stringify(chunks.reverse().map(getChunkRelativeUrl), null, 2)}; -importScripts(...self.TURBOPACK_NEXT_CHUNK_URLS.map(c => self.TURBOPACK_WORKER_LOCATION + c).reverse());`; - let blob = new Blob([ - bootstrap - ], { - type: 'text/javascript' - }); - return URL.createObjectURL(blob); -} -browserContextPrototype.b = getWorkerBlobURL; -/** - * Instantiates a runtime module. - */ function instantiateRuntimeModule(moduleId, chunkPath) { - return instantiateModule(moduleId, 0, chunkPath); -} -/** - * Returns the URL relative to the origin where a chunk can be fetched from. - */ function getChunkRelativeUrl(chunkPath) { - return `${CHUNK_BASE_PATH}${chunkPath.split('/').map((p)=>encodeURIComponent(p)).join('/')}${CHUNK_SUFFIX}`; -} -function getPathFromScript(chunkScript) { - if (typeof chunkScript === 'string') { - return chunkScript; - } - const chunkUrl = typeof TURBOPACK_NEXT_CHUNK_URLS !== 'undefined' ? TURBOPACK_NEXT_CHUNK_URLS.pop() : chunkScript.getAttribute('src'); - const src = decodeURIComponent(chunkUrl.replace(/[?#].*$/, '')); - const path = src.startsWith(CHUNK_BASE_PATH) ? src.slice(CHUNK_BASE_PATH.length) : src; - return path; -} -const regexJsUrl = /\.js(?:\?[^#]*)?(?:#.*)?$/; -/** - * Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment. - */ function isJs(chunkUrlOrPath) { - return regexJsUrl.test(chunkUrlOrPath); -} -const regexCssUrl = /\.css(?:\?[^#]*)?(?:#.*)?$/; -/** - * Checks if a given path/URL ends with .css, optionally followed by ?query or #fragment. - */ function isCss(chunkUrl) { - return regexCssUrl.test(chunkUrl); -} -function loadWebAssembly(chunkPath, edgeModule, importsObj) { - return BACKEND.loadWebAssembly(1, this.m.id, chunkPath, edgeModule, importsObj); -} -contextPrototype.w = loadWebAssembly; -function loadWebAssemblyModule(chunkPath, edgeModule) { - return BACKEND.loadWebAssemblyModule(1, this.m.id, chunkPath, edgeModule); -} -contextPrototype.u = loadWebAssemblyModule; -/// <reference path="./dev-globals.d.ts" /> -/// <reference path="./dev-protocol.d.ts" /> -/// <reference path="./dev-extensions.ts" /> -const devContextPrototype = Context.prototype; -/** - * This file contains runtime types and functions that are shared between all - * Turbopack *development* ECMAScript runtimes. - * - * It will be appended to the runtime code of each runtime right after the - * shared runtime utils. - */ /* eslint-disable @typescript-eslint/no-unused-vars */ const devModuleCache = Object.create(null); -devContextPrototype.c = devModuleCache; -class UpdateApplyError extends Error { - name = 'UpdateApplyError'; - dependencyChain; - constructor(message, dependencyChain){ - super(message); - this.dependencyChain = dependencyChain; - } -} -/** - * Module IDs that are instantiated as part of the runtime of a chunk. - */ const runtimeModules = new Set(); -/** - * Map from module ID to the chunks that contain this module. - * - * In HMR, we need to keep track of which modules are contained in which so - * chunks. This is so we don't eagerly dispose of a module when it is removed - * from chunk A, but still exists in chunk B. - */ const moduleChunksMap = new Map(); -/** - * Map from a chunk path to all modules it contains. - */ const chunkModulesMap = new Map(); -/** - * Chunk lists that contain a runtime. When these chunk lists receive an update - * that can't be reconciled with the current state of the page, we need to - * reload the runtime entirely. - */ const runtimeChunkLists = new Set(); -/** - * Map from a chunk list to the chunk paths it contains. - */ const chunkListChunksMap = new Map(); -/** - * Map from a chunk path to the chunk lists it belongs to. - */ const chunkChunkListsMap = new Map(); -/** - * Maps module IDs to persisted data between executions of their hot module - * implementation (`hot.data`). - */ const moduleHotData = new Map(); -/** - * Maps module instances to their hot module state. - */ const moduleHotState = new Map(); -/** - * Modules that call `module.hot.invalidate()` (while being updated). - */ const queuedInvalidatedModules = new Set(); -/** - * Gets or instantiates a runtime module. - */ // @ts-ignore -function getOrInstantiateRuntimeModule(chunkPath, moduleId) { - const module = devModuleCache[moduleId]; - if (module) { - if (module.error) { - throw module.error; - } - return module; - } - // @ts-ignore - return instantiateModule(moduleId, SourceType.Runtime, chunkPath); -} -/** - * Retrieves a module from the cache, or instantiate it if it is not cached. - */ // @ts-ignore Defined in `runtime-utils.ts` -const getOrInstantiateModuleFromParent = (id, sourceModule)=>{ - if (!sourceModule.hot.active) { - console.warn(`Unexpected import of module ${id} from module ${sourceModule.id}, which was deleted by an HMR update`); - } - const module = devModuleCache[id]; - if (sourceModule.children.indexOf(id) === -1) { - sourceModule.children.push(id); - } - if (module) { - if (module.error) { - throw module.error; - } - if (module.parents.indexOf(sourceModule.id) === -1) { - module.parents.push(sourceModule.id); - } - return module; - } - return instantiateModule(id, SourceType.Parent, sourceModule.id); -}; -function DevContext(module, exports, refresh) { - Context.call(this, module, exports); - this.k = refresh; -} -DevContext.prototype = Context.prototype; -function instantiateModule(moduleId, sourceType, sourceData) { - // We are in development, this is always a string. - let id = moduleId; - const moduleFactory = moduleFactories.get(id); - if (typeof moduleFactory !== 'function') { - // This can happen if modules incorrectly handle HMR disposes/updates, - // e.g. when they keep a `setTimeout` around which still executes old code - // and contains e.g. a `require("something")` call. - throw new Error(factoryNotAvailableMessage(id, sourceType, sourceData) + ' It might have been deleted in an HMR update.'); - } - const hotData = moduleHotData.get(id); - const { hot, hotState } = createModuleHot(id, hotData); - let parents; - switch(sourceType){ - case SourceType.Runtime: - runtimeModules.add(id); - parents = []; - break; - case SourceType.Parent: - // No need to add this module as a child of the parent module here, this - // has already been taken care of in `getOrInstantiateModuleFromParent`. - parents = [ - sourceData - ]; - break; - case SourceType.Update: - parents = sourceData || []; - break; - default: - invariant(sourceType, (sourceType)=>`Unknown source type: ${sourceType}`); - } - const module = createModuleObject(id); - const exports = module.exports; - module.parents = parents; - module.children = []; - module.hot = hot; - devModuleCache[id] = module; - moduleHotState.set(module, hotState); - // NOTE(alexkirsz) This can fail when the module encounters a runtime error. - try { - runModuleExecutionHooks(module, (refresh)=>{ - const context = new DevContext(module, exports, refresh); - moduleFactory(context, module, exports); - }); - } catch (error) { - module.error = error; - throw error; - } - if (module.namespaceObject && module.exports !== module.namespaceObject) { - // in case of a circular dependency: cjs1 -> esm2 -> cjs1 - interopEsm(module.exports, module.namespaceObject); - } - return module; -} -const DUMMY_REFRESH_CONTEXT = { - register: (_type, _id)=>{}, - signature: ()=>(_type)=>{}, - registerExports: (_module, _helpers)=>{} -}; -/** - * NOTE(alexkirsz) Webpack has a "module execution" interception hook that - * Next.js' React Refresh runtime hooks into to add module context to the - * refresh registry. - */ function runModuleExecutionHooks(module, executeModule) { - if (typeof globalThis.$RefreshInterceptModuleExecution$ === 'function') { - const cleanupReactRefreshIntercept = globalThis.$RefreshInterceptModuleExecution$(module.id); - try { - executeModule({ - register: globalThis.$RefreshReg$, - signature: globalThis.$RefreshSig$, - registerExports: registerExportsAndSetupBoundaryForReactRefresh - }); - } finally{ - // Always cleanup the intercept, even if module execution failed. - cleanupReactRefreshIntercept(); - } - } else { - // If the react refresh hooks are not installed we need to bind dummy functions. - // This is expected when running in a Web Worker. It is also common in some of - // our test environments. - executeModule(DUMMY_REFRESH_CONTEXT); - } -} -/** - * This is adapted from https://github.com/vercel/next.js/blob/3466862d9dc9c8bb3131712134d38757b918d1c0/packages/react-refresh-utils/internal/ReactRefreshModule.runtime.ts - */ function registerExportsAndSetupBoundaryForReactRefresh(module, helpers) { - const currentExports = module.exports; - const prevExports = module.hot.data.prevExports ?? null; - helpers.registerExportsForReactRefresh(currentExports, module.id); - // A module can be accepted automatically based on its exports, e.g. when - // it is a Refresh Boundary. - if (helpers.isReactRefreshBoundary(currentExports)) { - // Save the previous exports on update, so we can compare the boundary - // signatures. - module.hot.dispose((data)=>{ - data.prevExports = currentExports; - }); - // Unconditionally accept an update to this module, we'll check if it's - // still a Refresh Boundary later. - module.hot.accept(); - // This field is set when the previous version of this module was a - // Refresh Boundary, letting us know we need to check for invalidation or - // enqueue an update. - if (prevExports !== null) { - // A boundary can become ineligible if its exports are incompatible - // with the previous exports. - // - // For example, if you add/remove/change exports, we'll want to - // re-execute the importing modules, and force those components to - // re-render. Similarly, if you convert a class component to a - // function, we want to invalidate the boundary. - if (helpers.shouldInvalidateReactRefreshBoundary(helpers.getRefreshBoundarySignature(prevExports), helpers.getRefreshBoundarySignature(currentExports))) { - module.hot.invalidate(); - } else { - helpers.scheduleUpdate(); - } - } - } else { - // Since we just executed the code for the module, it's possible that the - // new exports made it ineligible for being a boundary. - // We only care about the case when we were _previously_ a boundary, - // because we already accepted this update (accidental side effect). - const isNoLongerABoundary = prevExports !== null; - if (isNoLongerABoundary) { - module.hot.invalidate(); - } - } -} -function formatDependencyChain(dependencyChain) { - return `Dependency chain: ${dependencyChain.join(' -> ')}`; -} -function computeOutdatedModules(added, modified) { - const newModuleFactories = new Map(); - for (const [moduleId, entry] of added){ - if (entry != null) { - newModuleFactories.set(moduleId, _eval(entry)); - } - } - const outdatedModules = computedInvalidatedModules(modified.keys()); - for (const [moduleId, entry] of modified){ - newModuleFactories.set(moduleId, _eval(entry)); - } - return { - outdatedModules, - newModuleFactories - }; -} -function computedInvalidatedModules(invalidated) { - const outdatedModules = new Set(); - for (const moduleId of invalidated){ - const effect = getAffectedModuleEffects(moduleId); - switch(effect.type){ - case 'unaccepted': - throw new UpdateApplyError(`cannot apply update: unaccepted module. ${formatDependencyChain(effect.dependencyChain)}.`, effect.dependencyChain); - case 'self-declined': - throw new UpdateApplyError(`cannot apply update: self-declined module. ${formatDependencyChain(effect.dependencyChain)}.`, effect.dependencyChain); - case 'accepted': - for (const outdatedModuleId of effect.outdatedModules){ - outdatedModules.add(outdatedModuleId); - } - break; - // TODO(alexkirsz) Dependencies: handle dependencies effects. - default: - invariant(effect, (effect)=>`Unknown effect type: ${effect?.type}`); - } - } - return outdatedModules; -} -function computeOutdatedSelfAcceptedModules(outdatedModules) { - const outdatedSelfAcceptedModules = []; - for (const moduleId of outdatedModules){ - const module = devModuleCache[moduleId]; - const hotState = moduleHotState.get(module); - if (module && hotState.selfAccepted && !hotState.selfInvalidated) { - outdatedSelfAcceptedModules.push({ - moduleId, - errorHandler: hotState.selfAccepted - }); - } - } - return outdatedSelfAcceptedModules; -} -/** - * Adds, deletes, and moves modules between chunks. This must happen before the - * dispose phase as it needs to know which modules were removed from all chunks, - * which we can only compute *after* taking care of added and moved modules. - */ function updateChunksPhase(chunksAddedModules, chunksDeletedModules) { - for (const [chunkPath, addedModuleIds] of chunksAddedModules){ - for (const moduleId of addedModuleIds){ - addModuleToChunk(moduleId, chunkPath); - } - } - const disposedModules = new Set(); - for (const [chunkPath, addedModuleIds] of chunksDeletedModules){ - for (const moduleId of addedModuleIds){ - if (removeModuleFromChunk(moduleId, chunkPath)) { - disposedModules.add(moduleId); - } - } - } - return { - disposedModules - }; -} -function disposePhase(outdatedModules, disposedModules) { - for (const moduleId of outdatedModules){ - disposeModule(moduleId, 'replace'); - } - for (const moduleId of disposedModules){ - disposeModule(moduleId, 'clear'); - } - // Removing modules from the module cache is a separate step. - // We also want to keep track of previous parents of the outdated modules. - const outdatedModuleParents = new Map(); - for (const moduleId of outdatedModules){ - const oldModule = devModuleCache[moduleId]; - outdatedModuleParents.set(moduleId, oldModule?.parents); - delete devModuleCache[moduleId]; - } - // TODO(alexkirsz) Dependencies: remove outdated dependency from module - // children. - return { - outdatedModuleParents - }; -} -/** - * Disposes of an instance of a module. - * - * Returns the persistent hot data that should be kept for the next module - * instance. - * - * NOTE: mode = "replace" will not remove modules from the devModuleCache - * This must be done in a separate step afterwards. - * This is important because all modules need to be disposed to update the - * parent/child relationships before they are actually removed from the devModuleCache. - * If this was done in this method, the following disposeModule calls won't find - * the module from the module id in the cache. - */ function disposeModule(moduleId, mode) { - const module = devModuleCache[moduleId]; - if (!module) { - return; - } - const hotState = moduleHotState.get(module); - const data = {}; - // Run the `hot.dispose` handler, if any, passing in the persistent - // `hot.data` object. - for (const disposeHandler of hotState.disposeHandlers){ - disposeHandler(data); - } - // This used to warn in `getOrInstantiateModuleFromParent` when a disposed - // module is still importing other modules. - module.hot.active = false; - moduleHotState.delete(module); - // TODO(alexkirsz) Dependencies: delete the module from outdated deps. - // Remove the disposed module from its children's parent list. - // It will be added back once the module re-instantiates and imports its - // children again. - for (const childId of module.children){ - const child = devModuleCache[childId]; - if (!child) { - continue; - } - const idx = child.parents.indexOf(module.id); - if (idx >= 0) { - child.parents.splice(idx, 1); - } - } - switch(mode){ - case 'clear': - delete devModuleCache[module.id]; - moduleHotData.delete(module.id); - break; - case 'replace': - moduleHotData.set(module.id, data); - break; - default: - invariant(mode, (mode)=>`invalid mode: ${mode}`); - } -} -function applyPhase(outdatedSelfAcceptedModules, newModuleFactories, outdatedModuleParents, reportError) { - // Update module factories. - for (const [moduleId, factory] of newModuleFactories.entries()){ - applyModuleFactoryName(factory); - moduleFactories.set(moduleId, factory); - } - // TODO(alexkirsz) Run new runtime entries here. - // TODO(alexkirsz) Dependencies: call accept handlers for outdated deps. - // Re-instantiate all outdated self-accepted modules. - for (const { moduleId, errorHandler } of outdatedSelfAcceptedModules){ - try { - instantiateModule(moduleId, SourceType.Update, outdatedModuleParents.get(moduleId)); - } catch (err) { - if (typeof errorHandler === 'function') { - try { - errorHandler(err, { - moduleId, - module: devModuleCache[moduleId] - }); - } catch (err2) { - reportError(err2); - reportError(err); - } - } else { - reportError(err); - } - } - } -} -function applyUpdate(update) { - switch(update.type){ - case 'ChunkListUpdate': - applyChunkListUpdate(update); - break; - default: - invariant(update, (update)=>`Unknown update type: ${update.type}`); - } -} -function applyChunkListUpdate(update) { - if (update.merged != null) { - for (const merged of update.merged){ - switch(merged.type){ - case 'EcmascriptMergedUpdate': - applyEcmascriptMergedUpdate(merged); - break; - default: - invariant(merged, (merged)=>`Unknown merged type: ${merged.type}`); - } - } - } - if (update.chunks != null) { - for (const [chunkPath, chunkUpdate] of Object.entries(update.chunks)){ - const chunkUrl = getChunkRelativeUrl(chunkPath); - switch(chunkUpdate.type){ - case 'added': - BACKEND.loadChunkCached(SourceType.Update, chunkUrl); - break; - case 'total': - DEV_BACKEND.reloadChunk?.(chunkUrl); - break; - case 'deleted': - DEV_BACKEND.unloadChunk?.(chunkUrl); - break; - case 'partial': - invariant(chunkUpdate.instruction, (instruction)=>`Unknown partial instruction: ${JSON.stringify(instruction)}.`); - break; - default: - invariant(chunkUpdate, (chunkUpdate)=>`Unknown chunk update type: ${chunkUpdate.type}`); - } - } - } -} -function applyEcmascriptMergedUpdate(update) { - const { entries = {}, chunks = {} } = update; - const { added, modified, chunksAdded, chunksDeleted } = computeChangedModules(entries, chunks); - const { outdatedModules, newModuleFactories } = computeOutdatedModules(added, modified); - const { disposedModules } = updateChunksPhase(chunksAdded, chunksDeleted); - applyInternal(outdatedModules, disposedModules, newModuleFactories); -} -function applyInvalidatedModules(outdatedModules) { - if (queuedInvalidatedModules.size > 0) { - computedInvalidatedModules(queuedInvalidatedModules).forEach((moduleId)=>{ - outdatedModules.add(moduleId); - }); - queuedInvalidatedModules.clear(); - } - return outdatedModules; -} -function applyInternal(outdatedModules, disposedModules, newModuleFactories) { - outdatedModules = applyInvalidatedModules(outdatedModules); - const outdatedSelfAcceptedModules = computeOutdatedSelfAcceptedModules(outdatedModules); - const { outdatedModuleParents } = disposePhase(outdatedModules, disposedModules); - // we want to continue on error and only throw the error after we tried applying all updates - let error; - function reportError(err) { - if (!error) error = err; - } - applyPhase(outdatedSelfAcceptedModules, newModuleFactories, outdatedModuleParents, reportError); - if (error) { - throw error; - } - if (queuedInvalidatedModules.size > 0) { - applyInternal(new Set(), [], new Map()); - } -} -function computeChangedModules(entries, updates) { - const chunksAdded = new Map(); - const chunksDeleted = new Map(); - const added = new Map(); - const modified = new Map(); - const deleted = new Set(); - for (const [chunkPath, mergedChunkUpdate] of Object.entries(updates)){ - switch(mergedChunkUpdate.type){ - case 'added': - { - const updateAdded = new Set(mergedChunkUpdate.modules); - for (const moduleId of updateAdded){ - added.set(moduleId, entries[moduleId]); - } - chunksAdded.set(chunkPath, updateAdded); - break; - } - case 'deleted': - { - // We could also use `mergedChunkUpdate.modules` here. - const updateDeleted = new Set(chunkModulesMap.get(chunkPath)); - for (const moduleId of updateDeleted){ - deleted.add(moduleId); - } - chunksDeleted.set(chunkPath, updateDeleted); - break; - } - case 'partial': - { - const updateAdded = new Set(mergedChunkUpdate.added); - const updateDeleted = new Set(mergedChunkUpdate.deleted); - for (const moduleId of updateAdded){ - added.set(moduleId, entries[moduleId]); - } - for (const moduleId of updateDeleted){ - deleted.add(moduleId); - } - chunksAdded.set(chunkPath, updateAdded); - chunksDeleted.set(chunkPath, updateDeleted); - break; - } - default: - invariant(mergedChunkUpdate, (mergedChunkUpdate)=>`Unknown merged chunk update type: ${mergedChunkUpdate.type}`); - } - } - // If a module was added from one chunk and deleted from another in the same update, - // consider it to be modified, as it means the module was moved from one chunk to another - // AND has new code in a single update. - for (const moduleId of added.keys()){ - if (deleted.has(moduleId)) { - added.delete(moduleId); - deleted.delete(moduleId); - } - } - for (const [moduleId, entry] of Object.entries(entries)){ - // Modules that haven't been added to any chunk but have new code are considered - // to be modified. - // This needs to be under the previous loop, as we need it to get rid of modules - // that were added and deleted in the same update. - if (!added.has(moduleId)) { - modified.set(moduleId, entry); - } - } - return { - added, - deleted, - modified, - chunksAdded, - chunksDeleted - }; -} -function getAffectedModuleEffects(moduleId) { - const outdatedModules = new Set(); - const queue = [ - { - moduleId, - dependencyChain: [] - } - ]; - let nextItem; - while(nextItem = queue.shift()){ - const { moduleId, dependencyChain } = nextItem; - if (moduleId != null) { - if (outdatedModules.has(moduleId)) { - continue; - } - outdatedModules.add(moduleId); - } - // We've arrived at the runtime of the chunk, which means that nothing - // else above can accept this update. - if (moduleId === undefined) { - return { - type: 'unaccepted', - dependencyChain - }; - } - const module = devModuleCache[moduleId]; - const hotState = moduleHotState.get(module); - if (// The module is not in the cache. Since this is a "modified" update, - // it means that the module was never instantiated before. - !module || hotState.selfAccepted && !hotState.selfInvalidated) { - continue; - } - if (hotState.selfDeclined) { - return { - type: 'self-declined', - dependencyChain, - moduleId - }; - } - if (runtimeModules.has(moduleId)) { - queue.push({ - moduleId: undefined, - dependencyChain: [ - ...dependencyChain, - moduleId - ] - }); - continue; - } - for (const parentId of module.parents){ - const parent = devModuleCache[parentId]; - if (!parent) { - continue; - } - // TODO(alexkirsz) Dependencies: check accepted and declined - // dependencies here. - queue.push({ - moduleId: parentId, - dependencyChain: [ - ...dependencyChain, - moduleId - ] - }); - } - } - return { - type: 'accepted', - moduleId, - outdatedModules - }; -} -function handleApply(chunkListPath, update) { - switch(update.type){ - case 'partial': - { - // This indicates that the update is can be applied to the current state of the application. - applyUpdate(update.instruction); - break; - } - case 'restart': - { - // This indicates that there is no way to apply the update to the - // current state of the application, and that the application must be - // restarted. - DEV_BACKEND.restart(); - break; - } - case 'notFound': - { - // This indicates that the chunk list no longer exists: either the dynamic import which created it was removed, - // or the page itself was deleted. - // If it is a dynamic import, we simply discard all modules that the chunk has exclusive access to. - // If it is a runtime chunk list, we restart the application. - if (runtimeChunkLists.has(chunkListPath)) { - DEV_BACKEND.restart(); - } else { - disposeChunkList(chunkListPath); - } - break; - } - default: - throw new Error(`Unknown update type: ${update.type}`); - } -} -function createModuleHot(moduleId, hotData) { - const hotState = { - selfAccepted: false, - selfDeclined: false, - selfInvalidated: false, - disposeHandlers: [] - }; - const hot = { - // TODO(alexkirsz) This is not defined in the HMR API. It was used to - // decide whether to warn whenever an HMR-disposed module required other - // modules. We might want to remove it. - active: true, - data: hotData ?? {}, - // TODO(alexkirsz) Support full (dep, callback, errorHandler) form. - accept: (modules, _callback, _errorHandler)=>{ - if (modules === undefined) { - hotState.selfAccepted = true; - } else if (typeof modules === 'function') { - hotState.selfAccepted = modules; - } else { - throw new Error('unsupported `accept` signature'); - } - }, - decline: (dep)=>{ - if (dep === undefined) { - hotState.selfDeclined = true; - } else { - throw new Error('unsupported `decline` signature'); - } - }, - dispose: (callback)=>{ - hotState.disposeHandlers.push(callback); - }, - addDisposeHandler: (callback)=>{ - hotState.disposeHandlers.push(callback); - }, - removeDisposeHandler: (callback)=>{ - const idx = hotState.disposeHandlers.indexOf(callback); - if (idx >= 0) { - hotState.disposeHandlers.splice(idx, 1); - } - }, - invalidate: ()=>{ - hotState.selfInvalidated = true; - queuedInvalidatedModules.add(moduleId); - }, - // NOTE(alexkirsz) This is part of the management API, which we don't - // implement, but the Next.js React Refresh runtime uses this to decide - // whether to schedule an update. - status: ()=>'idle', - // NOTE(alexkirsz) Since we always return "idle" for now, these are no-ops. - addStatusHandler: (_handler)=>{}, - removeStatusHandler: (_handler)=>{}, - // NOTE(jridgewell) Check returns the list of updated modules, but we don't - // want the webpack code paths to ever update (the turbopack paths handle - // this already). - check: ()=>Promise.resolve(null) - }; - return { - hot, - hotState - }; -} -/** - * Removes a module from a chunk. - * Returns `true` if there are no remaining chunks including this module. - */ function removeModuleFromChunk(moduleId, chunkPath) { - const moduleChunks = moduleChunksMap.get(moduleId); - moduleChunks.delete(chunkPath); - const chunkModules = chunkModulesMap.get(chunkPath); - chunkModules.delete(moduleId); - const noRemainingModules = chunkModules.size === 0; - if (noRemainingModules) { - chunkModulesMap.delete(chunkPath); - } - const noRemainingChunks = moduleChunks.size === 0; - if (noRemainingChunks) { - moduleChunksMap.delete(moduleId); - } - return noRemainingChunks; -} -/** - * Disposes of a chunk list and its corresponding exclusive chunks. - */ function disposeChunkList(chunkListPath) { - const chunkPaths = chunkListChunksMap.get(chunkListPath); - if (chunkPaths == null) { - return false; - } - chunkListChunksMap.delete(chunkListPath); - for (const chunkPath of chunkPaths){ - const chunkChunkLists = chunkChunkListsMap.get(chunkPath); - chunkChunkLists.delete(chunkListPath); - if (chunkChunkLists.size === 0) { - chunkChunkListsMap.delete(chunkPath); - disposeChunk(chunkPath); - } - } - // We must also dispose of the chunk list's chunk itself to ensure it may - // be reloaded properly in the future. - const chunkListUrl = getChunkRelativeUrl(chunkListPath); - DEV_BACKEND.unloadChunk?.(chunkListUrl); - return true; -} -/** - * Disposes of a chunk and its corresponding exclusive modules. - * - * @returns Whether the chunk was disposed of. - */ function disposeChunk(chunkPath) { - const chunkUrl = getChunkRelativeUrl(chunkPath); - // This should happen whether the chunk has any modules in it or not. - // For instance, CSS chunks have no modules in them, but they still need to be unloaded. - DEV_BACKEND.unloadChunk?.(chunkUrl); - const chunkModules = chunkModulesMap.get(chunkPath); - if (chunkModules == null) { - return false; - } - chunkModules.delete(chunkPath); - for (const moduleId of chunkModules){ - const moduleChunks = moduleChunksMap.get(moduleId); - moduleChunks.delete(chunkPath); - const noRemainingChunks = moduleChunks.size === 0; - if (noRemainingChunks) { - moduleChunksMap.delete(moduleId); - disposeModule(moduleId, 'clear'); - availableModules.delete(moduleId); - } - } - return true; -} -/** - * Adds a module to a chunk. - */ function addModuleToChunk(moduleId, chunkPath) { - let moduleChunks = moduleChunksMap.get(moduleId); - if (!moduleChunks) { - moduleChunks = new Set([ - chunkPath - ]); - moduleChunksMap.set(moduleId, moduleChunks); - } else { - moduleChunks.add(chunkPath); - } - let chunkModules = chunkModulesMap.get(chunkPath); - if (!chunkModules) { - chunkModules = new Set([ - moduleId - ]); - chunkModulesMap.set(chunkPath, chunkModules); - } else { - chunkModules.add(moduleId); - } -} -/** - * Marks a chunk list as a runtime chunk list. There can be more than one - * runtime chunk list. For instance, integration tests can have multiple chunk - * groups loaded at runtime, each with its own chunk list. - */ function markChunkListAsRuntime(chunkListPath) { - runtimeChunkLists.add(chunkListPath); -} -function registerChunk(registration) { - const chunkPath = getPathFromScript(registration[0]); - let runtimeParams; - // When bootstrapping we are passed a single runtimeParams object so we can distinguish purely based on length - if (registration.length === 2) { - runtimeParams = registration[1]; - } else { - runtimeParams = undefined; - installCompressedModuleFactories(registration, /* offset= */ 1, moduleFactories, (id)=>addModuleToChunk(id, chunkPath)); - } - return BACKEND.registerChunk(chunkPath, runtimeParams); -} -/** - * Subscribes to chunk list updates from the update server and applies them. - */ function registerChunkList(chunkList) { - const chunkListScript = chunkList.script; - const chunkListPath = getPathFromScript(chunkListScript); - // The "chunk" is also registered to finish the loading in the backend - BACKEND.registerChunk(chunkListPath); - globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS.push([ - chunkListPath, - handleApply.bind(null, chunkListPath) - ]); - // Adding chunks to chunk lists and vice versa. - const chunkPaths = new Set(chunkList.chunks.map(getChunkPath)); - chunkListChunksMap.set(chunkListPath, chunkPaths); - for (const chunkPath of chunkPaths){ - let chunkChunkLists = chunkChunkListsMap.get(chunkPath); - if (!chunkChunkLists) { - chunkChunkLists = new Set([ - chunkListPath - ]); - chunkChunkListsMap.set(chunkPath, chunkChunkLists); - } else { - chunkChunkLists.add(chunkListPath); - } - } - if (chunkList.source === 'entry') { - markChunkListAsRuntime(chunkListPath); - } -} -globalThis.TURBOPACK_CHUNK_UPDATE_LISTENERS ??= []; -/** - * This file contains the runtime code specific to the Turbopack development - * ECMAScript DOM runtime. - * - * It will be appended to the base development runtime code. - */ /* eslint-disable @typescript-eslint/no-unused-vars */ /// <reference path="../../../browser/runtime/base/runtime-base.ts" /> -/// <reference path="../../../shared/runtime-types.d.ts" /> -let BACKEND; -/** - * Maps chunk paths to the corresponding resolver. - */ const chunkResolvers = new Map(); -(()=>{ - BACKEND = { - async registerChunk (chunkPath, params) { - const chunkUrl = getChunkRelativeUrl(chunkPath); - const resolver = getOrCreateResolver(chunkUrl); - resolver.resolve(); - if (params == null) { - return; - } - for (const otherChunkData of params.otherChunks){ - const otherChunkPath = getChunkPath(otherChunkData); - const otherChunkUrl = getChunkRelativeUrl(otherChunkPath); - // Chunk might have started loading, so we want to avoid triggering another load. - getOrCreateResolver(otherChunkUrl); - } - // This waits for chunks to be loaded, but also marks included items as available. - await Promise.all(params.otherChunks.map((otherChunkData)=>loadInitialChunk(chunkPath, otherChunkData))); - if (params.runtimeModuleIds.length > 0) { - for (const moduleId of params.runtimeModuleIds){ - getOrInstantiateRuntimeModule(chunkPath, moduleId); - } - } - }, - /** - * Loads the given chunk, and returns a promise that resolves once the chunk - * has been loaded. - */ loadChunkCached (sourceType, chunkUrl) { - return doLoadChunk(sourceType, chunkUrl); - }, - async loadWebAssembly (_sourceType, _sourceData, wasmChunkPath, _edgeModule, importsObj) { - const req = fetchWebAssembly(wasmChunkPath); - const { instance } = await WebAssembly.instantiateStreaming(req, importsObj); - return instance.exports; - }, - async loadWebAssemblyModule (_sourceType, _sourceData, wasmChunkPath, _edgeModule) { - const req = fetchWebAssembly(wasmChunkPath); - return await WebAssembly.compileStreaming(req); - } - }; - function getOrCreateResolver(chunkUrl) { - let resolver = chunkResolvers.get(chunkUrl); - if (!resolver) { - let resolve; - let reject; - const promise = new Promise((innerResolve, innerReject)=>{ - resolve = innerResolve; - reject = innerReject; - }); - resolver = { - resolved: false, - loadingStarted: false, - promise, - resolve: ()=>{ - resolver.resolved = true; - resolve(); - }, - reject: reject - }; - chunkResolvers.set(chunkUrl, resolver); - } - return resolver; - } - /** - * Loads the given chunk, and returns a promise that resolves once the chunk - * has been loaded. - */ function doLoadChunk(sourceType, chunkUrl) { - const resolver = getOrCreateResolver(chunkUrl); - if (resolver.loadingStarted) { - return resolver.promise; - } - if (sourceType === SourceType.Runtime) { - // We don't need to load chunks references from runtime code, as they're already - // present in the DOM. - resolver.loadingStarted = true; - if (isCss(chunkUrl)) { - // CSS chunks do not register themselves, and as such must be marked as - // loaded instantly. - resolver.resolve(); - } - // We need to wait for JS chunks to register themselves within `registerChunk` - // before we can start instantiating runtime modules, hence the absence of - // `resolver.resolve()` in this branch. - return resolver.promise; - } - if (typeof importScripts === 'function') { - // We're in a web worker - if (isCss(chunkUrl)) { - // ignore - } else if (isJs(chunkUrl)) { - self.TURBOPACK_NEXT_CHUNK_URLS.push(chunkUrl); - importScripts(TURBOPACK_WORKER_LOCATION + chunkUrl); - } else { - throw new Error(`can't infer type of chunk from URL ${chunkUrl} in worker`); - } - } else { - // TODO(PACK-2140): remove this once all filenames are guaranteed to be escaped. - const decodedChunkUrl = decodeURI(chunkUrl); - if (isCss(chunkUrl)) { - const previousLinks = document.querySelectorAll(`link[rel=stylesheet][href="${chunkUrl}"],link[rel=stylesheet][href^="${chunkUrl}?"],link[rel=stylesheet][href="${decodedChunkUrl}"],link[rel=stylesheet][href^="${decodedChunkUrl}?"]`); - if (previousLinks.length > 0) { - // CSS chunks do not register themselves, and as such must be marked as - // loaded instantly. - resolver.resolve(); - } else { - const link = document.createElement('link'); - link.rel = 'stylesheet'; - link.href = chunkUrl; - link.onerror = ()=>{ - resolver.reject(); - }; - link.onload = ()=>{ - // CSS chunks do not register themselves, and as such must be marked as - // loaded instantly. - resolver.resolve(); - }; - // Append to the `head` for webpack compatibility. - document.head.appendChild(link); - } - } else if (isJs(chunkUrl)) { - const previousScripts = document.querySelectorAll(`script[src="${chunkUrl}"],script[src^="${chunkUrl}?"],script[src="${decodedChunkUrl}"],script[src^="${decodedChunkUrl}?"]`); - if (previousScripts.length > 0) { - // There is this edge where the script already failed loading, but we - // can't detect that. The Promise will never resolve in this case. - for (const script of Array.from(previousScripts)){ - script.addEventListener('error', ()=>{ - resolver.reject(); - }); - } - } else { - const script = document.createElement('script'); - script.src = chunkUrl; - // We'll only mark the chunk as loaded once the script has been executed, - // which happens in `registerChunk`. Hence the absence of `resolve()` in - // this branch. - script.onerror = ()=>{ - resolver.reject(); - }; - // Append to the `head` for webpack compatibility. - document.head.appendChild(script); - } - } else { - throw new Error(`can't infer type of chunk from URL ${chunkUrl}`); - } - } - resolver.loadingStarted = true; - return resolver.promise; - } - function fetchWebAssembly(wasmChunkPath) { - return fetch(getChunkRelativeUrl(wasmChunkPath)); - } -})(); -/** - * This file contains the runtime code specific to the Turbopack development - * ECMAScript DOM runtime. - * - * It will be appended to the base development runtime code. - */ /* eslint-disable @typescript-eslint/no-unused-vars */ /// <reference path="../base/runtime-base.ts" /> -/// <reference path="../base/dev-base.ts" /> -/// <reference path="./runtime-backend-dom.ts" /> -/// <reference path="../../../shared/require-type.d.ts" /> -let DEV_BACKEND; -(()=>{ - DEV_BACKEND = { - unloadChunk (chunkUrl) { - deleteResolver(chunkUrl); - // TODO(PACK-2140): remove this once all filenames are guaranteed to be escaped. - const decodedChunkUrl = decodeURI(chunkUrl); - if (isCss(chunkUrl)) { - const links = document.querySelectorAll(`link[href="${chunkUrl}"],link[href^="${chunkUrl}?"],link[href="${decodedChunkUrl}"],link[href^="${decodedChunkUrl}?"]`); - for (const link of Array.from(links)){ - link.remove(); - } - } else if (isJs(chunkUrl)) { - // Unloading a JS chunk would have no effect, as it lives in the JS - // runtime once evaluated. - // However, we still want to remove the script tag from the DOM to keep - // the HTML somewhat consistent from the user's perspective. - const scripts = document.querySelectorAll(`script[src="${chunkUrl}"],script[src^="${chunkUrl}?"],script[src="${decodedChunkUrl}"],script[src^="${decodedChunkUrl}?"]`); - for (const script of Array.from(scripts)){ - script.remove(); - } - } else { - throw new Error(`can't infer type of chunk from URL ${chunkUrl}`); - } - }, - reloadChunk (chunkUrl) { - return new Promise((resolve, reject)=>{ - if (!isCss(chunkUrl)) { - reject(new Error('The DOM backend can only reload CSS chunks')); - return; - } - const decodedChunkUrl = decodeURI(chunkUrl); - const previousLinks = document.querySelectorAll(`link[rel=stylesheet][href="${chunkUrl}"],link[rel=stylesheet][href^="${chunkUrl}?"],link[rel=stylesheet][href="${decodedChunkUrl}"],link[rel=stylesheet][href^="${decodedChunkUrl}?"]`); - if (previousLinks.length === 0) { - reject(new Error(`No link element found for chunk ${chunkUrl}`)); - return; - } - const link = document.createElement('link'); - link.rel = 'stylesheet'; - if (navigator.userAgent.includes('Firefox')) { - // Firefox won't reload CSS files that were previously loaded on the current page, - // we need to add a query param to make sure CSS is actually reloaded from the server. - // - // I believe this is this issue: https://bugzilla.mozilla.org/show_bug.cgi?id=1037506 - // - // Safari has a similar issue, but only if you have a `<link rel=preload ... />` tag - // pointing to the same URL as the stylesheet: https://bugs.webkit.org/show_bug.cgi?id=187726 - link.href = `${chunkUrl}?ts=${Date.now()}`; - } else { - link.href = chunkUrl; - } - link.onerror = ()=>{ - reject(); - }; - link.onload = ()=>{ - // First load the new CSS, then remove the old ones. This prevents visible - // flickering that would happen in-between removing the previous CSS and - // loading the new one. - for (const previousLink of Array.from(previousLinks))previousLink.remove(); - // CSS chunks do not register themselves, and as such must be marked as - // loaded instantly. - resolve(); - }; - // Make sure to insert the new CSS right after the previous one, so that - // its precedence is higher. - previousLinks[0].parentElement.insertBefore(link, previousLinks[0].nextSibling); - }); - }, - restart: ()=>self.location.reload() - }; - function deleteResolver(chunkUrl) { - chunkResolvers.delete(chunkUrl); - } -})(); -function _eval({ code, url, map }) { - code += `\n\n//# sourceURL=${encodeURI(location.origin + CHUNK_BASE_PATH + url + CHUNK_SUFFIX)}`; - if (map) { - code += `\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,${btoa(// btoa doesn't handle nonlatin characters, so escape them as \x sequences - // See https://stackoverflow.com/a/26603875 - unescape(encodeURIComponent(map)))}`; - } - // eslint-disable-next-line no-eval - return eval(code); -} -const chunksToRegister = globalThis.TURBOPACK; -globalThis.TURBOPACK = { push: registerChunk }; -chunksToRegister.forEach(registerChunk); -const chunkListsToRegister = globalThis.TURBOPACK_CHUNK_LISTS || []; -globalThis.TURBOPACK_CHUNK_LISTS = { push: registerChunkList }; -chunkListsToRegister.forEach(registerChunkList); -})(); - - -//# sourceMappingURL=_23a915ee._.js.map \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/development/_buildManifest.js b/saintBarthVolleyApp/frontend/.next/dev/static/development/_buildManifest.js deleted file mode 100644 index 94ca914..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/development/_buildManifest.js +++ /dev/null @@ -1,11 +0,0 @@ -self.__BUILD_MANIFEST = { - "__rewrites": { - "afterFiles": [], - "beforeFiles": [], - "fallback": [] - }, - "sortedPages": [ - "/_app", - "/_error" - ] -};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB() \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/development/_clientMiddlewareManifest.json b/saintBarthVolleyApp/frontend/.next/dev/static/development/_clientMiddlewareManifest.json deleted file mode 100644 index 737e154..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/development/_clientMiddlewareManifest.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - { - "regexp": "^(?:\\/(_next\\/data\\/[^/]{1,}))?\\/admin(?:\\/((?:[^\\/#\\?]+?)(?:\\/(?:[^\\/#\\?]+?))*))?(\\\\.json)?[\\/#\\?]?$", - "originalSource": "/admin/:path*" - } -] \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/development/_ssgManifest.js b/saintBarthVolleyApp/frontend/.next/dev/static/development/_ssgManifest.js deleted file mode 100644 index 2260768..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/static/development/_ssgManifest.js +++ /dev/null @@ -1 +0,0 @@ -self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB() \ No newline at end of file diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/media/4fa387ec64143e14-s.c1fdd6c2.woff2 b/saintBarthVolleyApp/frontend/.next/dev/static/media/4fa387ec64143e14-s.c1fdd6c2.woff2 deleted file mode 100644 index 46efdbd..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/static/media/4fa387ec64143e14-s.c1fdd6c2.woff2 and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/media/7178b3e590c64307-s.b97b3418.woff2 b/saintBarthVolleyApp/frontend/.next/dev/static/media/7178b3e590c64307-s.b97b3418.woff2 deleted file mode 100644 index e366499..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/static/media/7178b3e590c64307-s.b97b3418.woff2 and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/media/797e433ab948586e-s.p.dbea232f.woff2 b/saintBarthVolleyApp/frontend/.next/dev/static/media/797e433ab948586e-s.p.dbea232f.woff2 deleted file mode 100644 index 68eeb7f..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/static/media/797e433ab948586e-s.p.dbea232f.woff2 and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/media/8a480f0b521d4e75-s.8e0177b5.woff2 b/saintBarthVolleyApp/frontend/.next/dev/static/media/8a480f0b521d4e75-s.8e0177b5.woff2 deleted file mode 100644 index eb8258c..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/static/media/8a480f0b521d4e75-s.8e0177b5.woff2 and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/media/bbc41e54d2fcbd21-s.799d8ef8.woff2 b/saintBarthVolleyApp/frontend/.next/dev/static/media/bbc41e54d2fcbd21-s.799d8ef8.woff2 deleted file mode 100644 index 944424f..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/static/media/bbc41e54d2fcbd21-s.799d8ef8.woff2 and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/media/caa3a2e1cccd8315-s.p.853070df.woff2 b/saintBarthVolleyApp/frontend/.next/dev/static/media/caa3a2e1cccd8315-s.p.853070df.woff2 deleted file mode 100644 index aba2e8b..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/static/media/caa3a2e1cccd8315-s.p.853070df.woff2 and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/static/media/favicon.0b3bf435.ico b/saintBarthVolleyApp/frontend/.next/dev/static/media/favicon.0b3bf435.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/saintBarthVolleyApp/frontend/.next/dev/static/media/favicon.0b3bf435.ico and /dev/null differ diff --git a/saintBarthVolleyApp/frontend/.next/dev/trace b/saintBarthVolleyApp/frontend/.next/dev/trace deleted file mode 100644 index 31a0d48..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/trace +++ /dev/null @@ -1,347 +0,0 @@ -[{"name":"hot-reloader","duration":67,"timestamp":17303229191,"id":3,"tags":{"version":"16.1.6"},"startTime":1772010779230,"traceId":"db1a2e5958c83574"},{"name":"setup-dev-bundler","duration":218642,"timestamp":17303142300,"id":2,"parentId":1,"tags":{},"startTime":1772010779143,"traceId":"db1a2e5958c83574"},{"name":"start-dev-server","duration":802491,"timestamp":17302691697,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6496841728","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"298545152","memory.heapTotal":"89329664","memory.heapUsed":"63467160"},"startTime":1772010778693,"traceId":"db1a2e5958c83574"},{"name":"compile-path","duration":2658905,"timestamp":17313569682,"id":6,"tags":{"trigger":"/"},"startTime":1772010789570,"traceId":"db1a2e5958c83574"},{"name":"ensure-page","duration":2660001,"timestamp":17313569155,"id":5,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772010789570,"traceId":"db1a2e5958c83574"}] -[{"name":"handle-request","duration":3209398,"timestamp":17313561366,"id":4,"tags":{"url":"/"},"startTime":1772010789562,"traceId":"db1a2e5958c83574"},{"name":"memory-usage","duration":9,"timestamp":17316770915,"id":7,"parentId":4,"tags":{"url":"/","memory.rss":"613715968","memory.heapUsed":"96510504","memory.heapTotal":"122707968"},"startTime":1772010792772,"traceId":"db1a2e5958c83574"},{"name":"compile-path","duration":447670,"timestamp":17350498143,"id":10,"tags":{"trigger":"/users"},"startTime":1772010826499,"traceId":"db1a2e5958c83574"}] -[{"name":"handle-request","duration":518117,"timestamp":17350496858,"id":8,"tags":{"url":"/users"},"startTime":1772010826498,"traceId":"db1a2e5958c83574"},{"name":"memory-usage","duration":8,"timestamp":17351015131,"id":11,"parentId":8,"tags":{"url":"/users","memory.rss":"664252416","memory.heapUsed":"84871008","memory.heapTotal":"88268800"},"startTime":1772010827016,"traceId":"db1a2e5958c83574"},{"name":"ensure-page","duration":1039,"timestamp":17351251938,"id":12,"parentId":3,"tags":{"inputPage":"/undefined/api/users"},"startTime":1772010827253,"traceId":"db1a2e5958c83574"},{"name":"ensure-page","duration":334,"timestamp":17351253094,"id":13,"parentId":3,"tags":{"inputPage":"/undefined/api/users"},"startTime":1772010827254,"traceId":"db1a2e5958c83574"},{"name":"ensure-page","duration":246,"timestamp":17351254436,"id":14,"parentId":3,"tags":{"inputPage":"/undefined/api/users"},"startTime":1772010827255,"traceId":"db1a2e5958c83574"},{"name":"ensure-page","duration":289,"timestamp":17351254729,"id":15,"parentId":3,"tags":{"inputPage":"/undefined/api/users"},"startTime":1772010827255,"traceId":"db1a2e5958c83574"},{"name":"compile-path","duration":310124,"timestamp":17351257236,"id":18,"tags":{"trigger":"/_not-found/page"},"startTime":1772010827258,"traceId":"db1a2e5958c83574"}] -[{"name":"hot-reloader","duration":68,"timestamp":17496095286,"id":3,"tags":{"version":"16.1.6"},"startTime":1772010972096,"traceId":"2a574986e10357f1"},{"name":"setup-dev-bundler","duration":188661,"timestamp":17496013067,"id":2,"parentId":1,"tags":{},"startTime":1772010972014,"traceId":"2a574986e10357f1"},{"name":"start-dev-server","duration":695574,"timestamp":17495575112,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6664978432","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"300781568","memory.heapTotal":"89329664","memory.heapUsed":"63512048"},"startTime":1772010971576,"traceId":"2a574986e10357f1"},{"name":"compile-path","duration":452414,"timestamp":17500823249,"id":6,"tags":{"trigger":"/users"},"startTime":1772010976824,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":453312,"timestamp":17500822668,"id":5,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772010976823,"traceId":"2a574986e10357f1"}] -[{"name":"handle-request","duration":769731,"timestamp":17500813124,"id":4,"tags":{"url":"/users"},"startTime":1772010976814,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":11,"timestamp":17501583056,"id":7,"parentId":4,"tags":{"url":"/users","memory.rss":"634617856","memory.heapUsed":"84444712","memory.heapTotal":"112889856"},"startTime":1772010977584,"traceId":"2a574986e10357f1"},{"name":"compile-path","duration":8171,"timestamp":18937996205,"id":10,"tags":{"trigger":"/users"},"startTime":1772012413997,"traceId":"2a574986e10357f1"}] -[{"name":"client-hmr-latency","duration":6000,"timestamp":18937983256,"id":11,"parentId":3,"tags":{"updatedModules":[],"page":"/users","isPageHidden":true},"startTime":1772012414094,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":107286,"timestamp":18937995266,"id":8,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772012413996,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":13,"timestamp":18938102765,"id":12,"parentId":8,"tags":{"url":"/users?_rsc=15or5","memory.rss":"608546816","memory.heapUsed":"83663088","memory.heapTotal":"92782592"},"startTime":1772012414104,"traceId":"2a574986e10357f1"},{"name":"client-hmr-latency","duration":42000,"timestamp":19003073783,"id":13,"parentId":3,"tags":{"updatedModules":["[project]/src/lib/api.ts [app-client]","[project]/src/services/userService.ts [app-client]","[project]/src/app/users/page.tsx [app-client]"],"page":"/users","isPageHidden":true},"startTime":1772012479145,"traceId":"2a574986e10357f1"},{"name":"client-hmr-latency","duration":198000,"timestamp":31900124154,"id":14,"parentId":3,"tags":{"updatedModules":[],"page":"/users","isPageHidden":true},"startTime":1772025375989,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":35694,"timestamp":31900403165,"id":16,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376003,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":419423,"timestamp":31900392103,"id":15,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025375992,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":17,"timestamp":31900813635,"id":17,"parentId":15,"tags":{"url":"/users?_rsc=15or5","memory.rss":"264744960","memory.heapUsed":"96410984","memory.heapTotal":"103370752"},"startTime":1772025376413,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":36605,"timestamp":31900823429,"id":19,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376423,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":38052,"timestamp":31900858458,"id":21,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376458,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":39973,"timestamp":31900894790,"id":23,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376494,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":34256,"timestamp":31900933584,"id":25,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376533,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":49754,"timestamp":31900966574,"id":27,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376566,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":39242,"timestamp":31901014745,"id":29,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376614,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":277076,"timestamp":31900821903,"id":18,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376421,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":8,"timestamp":31901099075,"id":30,"parentId":18,"tags":{"url":"/users?_rsc=15or5","memory.rss":"267145216","memory.heapUsed":"91461408","memory.heapTotal":"103047168"},"startTime":1772025376699,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":243333,"timestamp":31900857048,"id":20,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376457,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":7,"timestamp":31901100464,"id":31,"parentId":20,"tags":{"url":"/users?_rsc=15or5","memory.rss":"267276288","memory.heapUsed":"91519072","memory.heapTotal":"103047168"},"startTime":1772025376700,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":212176,"timestamp":31900892856,"id":22,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376492,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":32,"timestamp":31901105189,"id":32,"parentId":22,"tags":{"url":"/users?_rsc=15or5","memory.rss":"267276288","memory.heapUsed":"91720536","memory.heapTotal":"103047168"},"startTime":1772025376705,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":178391,"timestamp":31900933039,"id":24,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376533,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":10,"timestamp":31901111535,"id":35,"parentId":24,"tags":{"url":"/users?_rsc=15or5","memory.rss":"267276288","memory.heapUsed":"91884672","memory.heapTotal":"103047168"},"startTime":1772025376711,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":6143,"timestamp":31901107692,"id":34,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376707,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":38941,"timestamp":31901112766,"id":37,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376712,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":222866,"timestamp":31900965982,"id":26,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376566,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":31,"timestamp":31901189079,"id":38,"parentId":26,"tags":{"url":"/users?_rsc=15or5","memory.rss":"268849152","memory.heapUsed":"94135664","memory.heapTotal":"112484352"},"startTime":1772025376789,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":182764,"timestamp":31901013342,"id":28,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376613,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":10,"timestamp":31901196245,"id":41,"parentId":28,"tags":{"url":"/users?_rsc=15or5","memory.rss":"269111296","memory.heapUsed":"94399440","memory.heapTotal":"112484352"},"startTime":1772025376796,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":5264,"timestamp":31901192927,"id":40,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376793,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":32887,"timestamp":31901197349,"id":43,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025376797,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":153519,"timestamp":31901106433,"id":33,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376706,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":20,"timestamp":31901260209,"id":44,"parentId":33,"tags":{"url":"/users?_rsc=15or5","memory.rss":"272257024","memory.heapUsed":"99101080","memory.heapTotal":"113008640"},"startTime":1772025376860,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":150458,"timestamp":31901112048,"id":36,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376712,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":9,"timestamp":31901262619,"id":45,"parentId":36,"tags":{"url":"/users?_rsc=15or5","memory.rss":"272388096","memory.heapUsed":"99204600","memory.heapTotal":"113008640"},"startTime":1772025376862,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":71413,"timestamp":31901192104,"id":39,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376792,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":9,"timestamp":31901263594,"id":46,"parentId":39,"tags":{"url":"/users?_rsc=15or5","memory.rss":"272388096","memory.heapUsed":"99244208","memory.heapTotal":"113008640"},"startTime":1772025376863,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":67750,"timestamp":31901196745,"id":42,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025376796,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":9,"timestamp":31901264570,"id":47,"parentId":42,"tags":{"url":"/users?_rsc=15or5","memory.rss":"272388096","memory.heapUsed":"99284832","memory.heapTotal":"113008640"},"startTime":1772025376864,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":109765,"timestamp":31914685712,"id":49,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025390285,"traceId":"2a574986e10357f1"},{"name":"client-hmr-latency","duration":17000,"timestamp":31914660818,"id":50,"parentId":3,"tags":{"updatedModules":[],"page":"/users","isPageHidden":true},"startTime":1772025390447,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":165946,"timestamp":31914684844,"id":48,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025390284,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":7,"timestamp":31914850874,"id":51,"parentId":48,"tags":{"url":"/users?_rsc=15or5","memory.rss":"308568064","memory.heapUsed":"105899800","memory.heapTotal":"119160832"},"startTime":1772025390450,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":3535,"timestamp":31928238203,"id":55,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025403838,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":82871,"timestamp":31928227524,"id":53,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025403827,"traceId":"2a574986e10357f1"},{"name":"client-hmr-latency","duration":83000,"timestamp":31928185026,"id":56,"parentId":3,"tags":{"updatedModules":[],"page":"/users","isPageHidden":true},"startTime":1772025403945,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":3976,"timestamp":31928347229,"id":58,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025403947,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":30541,"timestamp":31928349293,"id":60,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025403949,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":52176,"timestamp":31928350399,"id":62,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025403950,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":2685,"timestamp":31928430563,"id":64,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025404030,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":255021,"timestamp":31928223365,"id":52,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025403823,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":14,"timestamp":31928478502,"id":65,"parentId":52,"tags":{"url":"/users?_rsc=15or5","memory.rss":"318005248","memory.heapUsed":"99302600","memory.heapTotal":"113610752"},"startTime":1772025404078,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":244535,"timestamp":31928237546,"id":54,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025403837,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":13,"timestamp":31928482192,"id":66,"parentId":54,"tags":{"url":"/users?_rsc=15or5","memory.rss":"318136320","memory.heapUsed":"99421872","memory.heapTotal":"113610752"},"startTime":1772025404082,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":7490,"timestamp":31928488253,"id":68,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025404088,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":46430,"timestamp":31928493918,"id":70,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025404094,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":223486,"timestamp":31928346670,"id":57,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025403946,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":12,"timestamp":31928570278,"id":71,"parentId":57,"tags":{"url":"/users?_rsc=15or5","memory.rss":"321806336","memory.heapUsed":"97736632","memory.heapTotal":"114135040"},"startTime":1772025404170,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":225626,"timestamp":31928349974,"id":61,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025403950,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":22,"timestamp":31928575792,"id":72,"parentId":61,"tags":{"url":"/users?_rsc=15or5","memory.rss":"321937408","memory.heapUsed":"97874928","memory.heapTotal":"114135040"},"startTime":1772025404175,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":229033,"timestamp":31928348799,"id":59,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025403948,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":12,"timestamp":31928577931,"id":73,"parentId":59,"tags":{"url":"/users?_rsc=15or5","memory.rss":"321937408","memory.heapUsed":"97915744","memory.heapTotal":"114135040"},"startTime":1772025404178,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":153418,"timestamp":31928429879,"id":63,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025404029,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":9,"timestamp":31928583394,"id":76,"parentId":63,"tags":{"url":"/users?_rsc=15or5","memory.rss":"322330624","memory.heapUsed":"98233320","memory.heapTotal":"114397184"},"startTime":1772025404183,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":6331,"timestamp":31928581727,"id":75,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025404181,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":28849,"timestamp":31928585471,"id":78,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025404185,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":60798,"timestamp":31928587145,"id":80,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025404187,"traceId":"2a574986e10357f1"},{"name":"ensure-page","duration":4614,"timestamp":31928677984,"id":82,"parentId":3,"tags":{"inputPage":"/users/page"},"startTime":1772025404278,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":229170,"timestamp":31928487375,"id":67,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025404087,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":10,"timestamp":31928716640,"id":83,"parentId":67,"tags":{"url":"/users?_rsc=15or5","memory.rss":"327704576","memory.heapUsed":"102408240","memory.heapTotal":"116232192"},"startTime":1772025404316,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":226827,"timestamp":31928491142,"id":69,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025404091,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":9,"timestamp":31928718068,"id":84,"parentId":69,"tags":{"url":"/users?_rsc=15or5","memory.rss":"327704576","memory.heapUsed":"102459896","memory.heapTotal":"116232192"},"startTime":1772025404318,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":140170,"timestamp":31928581156,"id":74,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025404181,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":12,"timestamp":31928721432,"id":85,"parentId":74,"tags":{"url":"/users?_rsc=15or5","memory.rss":"327704576","memory.heapUsed":"102545288","memory.heapTotal":"116232192"},"startTime":1772025404321,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":137767,"timestamp":31928584600,"id":77,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025404184,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":11,"timestamp":31928722468,"id":86,"parentId":77,"tags":{"url":"/users?_rsc=15or5","memory.rss":"327704576","memory.heapUsed":"102588424","memory.heapTotal":"116232192"},"startTime":1772025404322,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":137369,"timestamp":31928586199,"id":79,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025404186,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":10,"timestamp":31928723656,"id":87,"parentId":79,"tags":{"url":"/users?_rsc=15or5","memory.rss":"327704576","memory.heapUsed":"102628424","memory.heapTotal":"116232192"},"startTime":1772025404323,"traceId":"2a574986e10357f1"},{"name":"handle-request","duration":47802,"timestamp":31928677113,"id":81,"tags":{"url":"/users?_rsc=15or5"},"startTime":1772025404277,"traceId":"2a574986e10357f1"},{"name":"memory-usage","duration":11,"timestamp":31928725030,"id":88,"parentId":81,"tags":{"url":"/users?_rsc=15or5","memory.rss":"327704576","memory.heapUsed":"102676928","memory.heapTotal":"116232192"},"startTime":1772025404325,"traceId":"2a574986e10357f1"},{"name":"client-hmr-latency","duration":43000,"timestamp":31936049626,"id":89,"parentId":3,"tags":{"updatedModules":[],"page":"/users","isPageHidden":true},"startTime":1772025411719,"traceId":"2a574986e10357f1"},{"name":"compile-path","duration":1452290,"timestamp":31965297129,"id":92,"tags":{"trigger":"/login"},"startTime":1772025440897,"traceId":"2a574986e10357f1"}] -[{"name":"hot-reloader","duration":66,"timestamp":32488973496,"id":3,"tags":{"version":"16.1.6"},"startTime":1772025964573,"traceId":"cd307180e6d22c45"},{"name":"setup-dev-bundler","duration":255198,"timestamp":32488846355,"id":2,"parentId":1,"tags":{},"startTime":1772025964446,"traceId":"cd307180e6d22c45"},{"name":"start-dev-server","duration":830562,"timestamp":32488383368,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7246548992","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"327626752","memory.heapTotal":"89329664","memory.heapUsed":"64350240"},"startTime":1772025963983,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":620969,"timestamp":32494758269,"id":6,"tags":{"trigger":"/login"},"startTime":1772025970358,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":621876,"timestamp":32494757779,"id":5,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772025970357,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":1029653,"timestamp":32494751704,"id":4,"tags":{"url":"/login"},"startTime":1772025970351,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":32495781496,"id":7,"parentId":4,"tags":{"url":"/login","memory.rss":"586354688","memory.heapUsed":"85931080","memory.heapTotal":"123105280"},"startTime":1772025971381,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":11573,"timestamp":32618007716,"id":10,"tags":{"trigger":"/login"},"startTime":1772026093607,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":63000,"timestamp":32617934151,"id":11,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772026093713,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":110050,"timestamp":32618006609,"id":8,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772026093606,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":21,"timestamp":32618116786,"id":12,"parentId":8,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"564719616","memory.heapUsed":"88642400","memory.heapTotal":"97492992"},"startTime":1772026093716,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":5922,"timestamp":32712314370,"id":15,"tags":{"trigger":"/login"},"startTime":1772026187914,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":33000,"timestamp":32712276173,"id":16,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772026187982,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":73201,"timestamp":32712313627,"id":13,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772026187913,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":32712386930,"id":17,"parentId":13,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"572108800","memory.heapUsed":"99054872","memory.heapTotal":"106586112"},"startTime":1772026187987,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":393898,"timestamp":32741988176,"id":20,"tags":{"trigger":"/register"},"startTime":1772026217588,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":507440,"timestamp":32741986841,"id":18,"tags":{"url":"/register"},"startTime":1772026217586,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":119,"timestamp":32742494406,"id":21,"parentId":18,"tags":{"url":"/register","memory.rss":"605696000","memory.heapUsed":"102557688","memory.heapTotal":"111218688"},"startTime":1772026218094,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1591,"timestamp":32854607568,"id":22,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330207,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":370,"timestamp":32854609287,"id":23,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330209,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":609,"timestamp":32854610972,"id":24,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330211,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":403,"timestamp":32854611667,"id":25,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330211,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":80769,"timestamp":32854619130,"id":28,"tags":{"trigger":"/_not-found/page"},"startTime":1772026330219,"traceId":"cd307180e6d22c45"}] -[{"name":"ensure-page","duration":1322,"timestamp":32854701840,"id":29,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026330301,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":101000,"timestamp":32854572749,"id":30,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":true},"startTime":1772026330461,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":254342,"timestamp":32854613156,"id":26,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772026330213,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":13,"timestamp":32854867683,"id":31,"parentId":26,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"639504384","memory.heapUsed":"98960176","memory.heapTotal":"107450368"},"startTime":1772026330467,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":347,"timestamp":32854871484,"id":32,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330471,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":269,"timestamp":32854871893,"id":33,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330471,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":644,"timestamp":32854874788,"id":34,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330474,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":471,"timestamp":32854875547,"id":35,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330475,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":375,"timestamp":32854878279,"id":36,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330478,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":300,"timestamp":32854878739,"id":37,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330478,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":409,"timestamp":32854882411,"id":40,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330482,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":549,"timestamp":32854882888,"id":41,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330482,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":484,"timestamp":32854891580,"id":42,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330491,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":271,"timestamp":32854892124,"id":43,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330492,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":13209,"timestamp":32854881067,"id":39,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026330481,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":396,"timestamp":32854897520,"id":45,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330497,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":282,"timestamp":32854898026,"id":46,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330498,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":376,"timestamp":32854898836,"id":47,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330498,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":377,"timestamp":32854899274,"id":48,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330499,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":289,"timestamp":32854899946,"id":49,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330500,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":204,"timestamp":32854900281,"id":50,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330500,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":7022,"timestamp":32854894655,"id":44,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026330494,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":61625,"timestamp":32854879874,"id":38,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772026330479,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":32854941635,"id":51,"parentId":38,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"641863680","memory.heapUsed":"100379808","memory.heapTotal":"107712512"},"startTime":1772026330541,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":473,"timestamp":32854945236,"id":52,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330545,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":284,"timestamp":32854945768,"id":53,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330545,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":346,"timestamp":32854946986,"id":54,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330547,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":282,"timestamp":32854947387,"id":55,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330547,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":290,"timestamp":32854947903,"id":56,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330547,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":425,"timestamp":32854948239,"id":57,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330548,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":344,"timestamp":32854949267,"id":58,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330549,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":290,"timestamp":32854949668,"id":59,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330549,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":367,"timestamp":32854952967,"id":60,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330553,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":308,"timestamp":32854953397,"id":61,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330553,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":342,"timestamp":32854955378,"id":62,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330555,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":280,"timestamp":32854955787,"id":63,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026330555,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1747,"timestamp":32854958051,"id":65,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026330558,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1504,"timestamp":32854960075,"id":66,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026330560,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":130641,"timestamp":32854956894,"id":64,"tags":{"url":"/register"},"startTime":1772026330556,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":16,"timestamp":32855087692,"id":67,"parentId":64,"tags":{"url":"/register","memory.rss":"646660096","memory.heapUsed":"105818168","memory.heapTotal":"114696192"},"startTime":1772026330687,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":340,"timestamp":32992031558,"id":68,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026467631,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":221,"timestamp":32992031949,"id":69,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026467632,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":308,"timestamp":32992032777,"id":70,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026467632,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":237,"timestamp":32992033138,"id":71,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026467633,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1372,"timestamp":32992034376,"id":73,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026467634,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1282,"timestamp":32992035968,"id":74,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026467636,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":27302,"timestamp":32992033660,"id":72,"tags":{"url":"/register?_rsc=kw9md"},"startTime":1772026467633,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":32992061062,"id":75,"parentId":72,"tags":{"url":"/register?_rsc=kw9md","memory.rss":"647385088","memory.heapUsed":"111617272","memory.heapTotal":"126230528"},"startTime":1772026467661,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":248,"timestamp":32992074311,"id":76,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026467674,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":212,"timestamp":32992074599,"id":77,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026467674,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":237,"timestamp":32992075292,"id":78,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026467675,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":184,"timestamp":32992075571,"id":79,"parentId":3,"tags":{"inputPage":"/register"},"startTime":1772026467675,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1435,"timestamp":32992076782,"id":81,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026467676,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1302,"timestamp":32992078625,"id":82,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772026467678,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":67996,"timestamp":32992075945,"id":80,"tags":{"url":"/register"},"startTime":1772026467676,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":32992144075,"id":83,"parentId":80,"tags":{"url":"/register","memory.rss":"651317248","memory.heapUsed":"110274608","memory.heapTotal":"118571008"},"startTime":1772026467744,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":8303,"timestamp":32998673257,"id":86,"tags":{"trigger":"/login"},"startTime":1772026474273,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":164424,"timestamp":32998672474,"id":84,"tags":{"url":"/login"},"startTime":1772026474272,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":32998837089,"id":87,"parentId":84,"tags":{"url":"/login","memory.rss":"658984960","memory.heapUsed":"116273888","memory.heapTotal":"139116544"},"startTime":1772026474437,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":294279,"timestamp":33000820151,"id":90,"tags":{"trigger":"/signup"},"startTime":1772026476420,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":416142,"timestamp":33000818193,"id":88,"tags":{"url":"/signup"},"startTime":1772026476418,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":10,"timestamp":33001234448,"id":91,"parentId":88,"tags":{"url":"/signup","memory.rss":"678924288","memory.heapUsed":"123921376","memory.heapTotal":"140414976"},"startTime":1772026476834,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":13774,"timestamp":33164444956,"id":94,"tags":{"trigger":"/signup"},"startTime":1772026640045,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":47000,"timestamp":33164389829,"id":95,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026640156,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":118491,"timestamp":33164443366,"id":92,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026640043,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33164561961,"id":96,"parentId":92,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"734568448","memory.heapUsed":"127711688","memory.heapTotal":"134684672"},"startTime":1772026640162,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":12590,"timestamp":33171798923,"id":99,"tags":{"trigger":"/signup"},"startTime":1772026647399,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":48000,"timestamp":33171738584,"id":100,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026647514,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":124860,"timestamp":33171796713,"id":97,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026647396,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33171921671,"id":101,"parentId":97,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"741109760","memory.heapUsed":"129549376","memory.heapTotal":"141565952"},"startTime":1772026647521,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":7827,"timestamp":33188674121,"id":104,"tags":{"trigger":"/signup"},"startTime":1772026664274,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":39000,"timestamp":33188627585,"id":105,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026664407,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":139357,"timestamp":33188672960,"id":102,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026664273,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":10,"timestamp":33188812430,"id":106,"parentId":102,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"719921152","memory.heapUsed":"128952064","memory.heapTotal":"138756096"},"startTime":1772026664412,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":6335,"timestamp":33199905459,"id":109,"tags":{"trigger":"/signup"},"startTime":1772026675505,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":30000,"timestamp":33199867931,"id":110,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026675592,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":93442,"timestamp":33199904312,"id":107,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026675504,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33199997851,"id":111,"parentId":107,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"734183424","memory.heapUsed":"139991200","memory.heapTotal":"158011392"},"startTime":1772026675597,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":8522,"timestamp":33264058978,"id":114,"tags":{"trigger":"/signup"},"startTime":1772026739659,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":28000,"timestamp":33264022318,"id":115,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026739749,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":96018,"timestamp":33264058180,"id":112,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026739658,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33264154273,"id":116,"parentId":112,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"732409856","memory.heapUsed":"141618312","memory.heapTotal":"148774912"},"startTime":1772026739754,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1638,"timestamp":33268511772,"id":118,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772026744111,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":78908,"timestamp":33268510676,"id":117,"tags":{"url":"/login"},"startTime":1772026744110,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33268589666,"id":119,"parentId":117,"tags":{"url":"/login","memory.rss":"755216384","memory.heapUsed":"145587608","memory.heapTotal":"154017792"},"startTime":1772026744189,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":3894,"timestamp":33270384880,"id":121,"parentId":3,"tags":{"inputPage":"/signup/page"},"startTime":1772026745984,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":137896,"timestamp":33270383727,"id":120,"tags":{"url":"/signup"},"startTime":1772026745983,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33270521720,"id":122,"parentId":120,"tags":{"url":"/signup","memory.rss":"764170240","memory.heapUsed":"147261632","memory.heapTotal":"165748736"},"startTime":1772026746121,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1964,"timestamp":33283591732,"id":124,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772026759191,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":67399,"timestamp":33283590517,"id":123,"tags":{"url":"/login"},"startTime":1772026759190,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":18,"timestamp":33283657991,"id":125,"parentId":123,"tags":{"url":"/login","memory.rss":"731750400","memory.heapUsed":"142803312","memory.heapTotal":"150388736"},"startTime":1772026759258,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1381,"timestamp":33287435095,"id":127,"parentId":3,"tags":{"inputPage":"/signup/page"},"startTime":1772026763035,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":56869,"timestamp":33287434613,"id":126,"tags":{"url":"/signup"},"startTime":1772026763034,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":33287491567,"id":128,"parentId":126,"tags":{"url":"/signup","memory.rss":"754950144","memory.heapUsed":"147570992","memory.heapTotal":"156655616"},"startTime":1772026763091,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1528,"timestamp":33292829774,"id":130,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772026768429,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":59831,"timestamp":33292829195,"id":129,"tags":{"url":"/login"},"startTime":1772026768429,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33292889104,"id":131,"parentId":129,"tags":{"url":"/login","memory.rss":"766877696","memory.heapUsed":"148923576","memory.heapTotal":"156073984"},"startTime":1772026768489,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1867,"timestamp":33294607438,"id":133,"parentId":3,"tags":{"inputPage":"/signup/page"},"startTime":1772026770207,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":67247,"timestamp":33294606327,"id":132,"tags":{"url":"/signup"},"startTime":1772026770206,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":33294673651,"id":134,"parentId":132,"tags":{"url":"/signup","memory.rss":"769576960","memory.heapUsed":"148907840","memory.heapTotal":"161316864"},"startTime":1772026770273,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":11858,"timestamp":33303497678,"id":137,"tags":{"trigger":"/signup"},"startTime":1772026779097,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":32000,"timestamp":33303453589,"id":138,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026779197,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":103102,"timestamp":33303496946,"id":135,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026779097,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33303600151,"id":139,"parentId":135,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"779743232","memory.heapUsed":"160050184","memory.heapTotal":"169873408"},"startTime":1772026779200,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":7663,"timestamp":33325941926,"id":142,"tags":{"trigger":"/signup"},"startTime":1772026801541,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":36000,"timestamp":33325899991,"id":143,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026801660,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":121388,"timestamp":33325941146,"id":140,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026801541,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33326062603,"id":144,"parentId":140,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"750419968","memory.heapUsed":"151500912","memory.heapTotal":"161841152"},"startTime":1772026801662,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":13626,"timestamp":33340144877,"id":147,"tags":{"trigger":"/signup"},"startTime":1772026815744,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":41000,"timestamp":33340092257,"id":148,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026815840,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":100293,"timestamp":33340143845,"id":145,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026815743,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33340244213,"id":149,"parentId":145,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"753831936","memory.heapUsed":"160513224","memory.heapTotal":"170708992"},"startTime":1772026815844,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":7316,"timestamp":33387660920,"id":152,"tags":{"trigger":"/signup"},"startTime":1772026863260,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":50000,"timestamp":33387603886,"id":153,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026863361,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":104374,"timestamp":33387660231,"id":150,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026863260,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33387764681,"id":154,"parentId":150,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"751898624","memory.heapUsed":"158567624","memory.heapTotal":"166838272"},"startTime":1772026863364,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":10576,"timestamp":33401851124,"id":157,"tags":{"trigger":"/signup"},"startTime":1772026877451,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":99735,"timestamp":33401850156,"id":155,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026877450,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33401949960,"id":158,"parentId":155,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"762462208","memory.heapUsed":"168803744","memory.heapTotal":"181710848"},"startTime":1772026877550,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":39000,"timestamp":33401803868,"id":159,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026877552,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":5268,"timestamp":33408138134,"id":162,"tags":{"trigger":"/signup"},"startTime":1772026883738,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":35000,"timestamp":33408098512,"id":163,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026883845,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":110894,"timestamp":33408137572,"id":160,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026883737,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33408248541,"id":164,"parentId":160,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"765112320","memory.heapUsed":"167928608","memory.heapTotal":"183083008"},"startTime":1772026883848,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":12257,"timestamp":33445708929,"id":167,"tags":{"trigger":"/signup"},"startTime":1772026921309,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":45000,"timestamp":33445654430,"id":168,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772026921410,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":106188,"timestamp":33445706517,"id":165,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772026921306,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33445812787,"id":169,"parentId":165,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"770060288","memory.heapUsed":"176137656","memory.heapTotal":"184061952"},"startTime":1772026921412,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1205,"timestamp":33501590510,"id":171,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772026977190,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":70857,"timestamp":33501589850,"id":170,"tags":{"url":"/login"},"startTime":1772026977189,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":35,"timestamp":33501660779,"id":172,"parentId":170,"tags":{"url":"/login","memory.rss":"770867200","memory.heapUsed":"178217912","memory.heapTotal":"183013376"},"startTime":1772026977260,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1457,"timestamp":33507414241,"id":174,"parentId":3,"tags":{"inputPage":"/signup/page"},"startTime":1772026983014,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":134092,"timestamp":33507413348,"id":173,"tags":{"url":"/signup"},"startTime":1772026983013,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33507547519,"id":175,"parentId":173,"tags":{"url":"/signup","memory.rss":"796377088","memory.heapUsed":"179810696","memory.heapTotal":"200511488"},"startTime":1772026983147,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1695,"timestamp":33588022262,"id":177,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772027063622,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":54507,"timestamp":33588021130,"id":176,"tags":{"url":"/login"},"startTime":1772027063621,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33588075780,"id":178,"parentId":176,"tags":{"url":"/login","memory.rss":"798130176","memory.heapUsed":"183139656","memory.heapTotal":"199520256"},"startTime":1772027063675,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1209,"timestamp":33591148958,"id":180,"parentId":3,"tags":{"inputPage":"/signup/page"},"startTime":1772027066749,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":64275,"timestamp":33591148362,"id":179,"tags":{"url":"/signup"},"startTime":1772027066748,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33591212713,"id":181,"parentId":179,"tags":{"url":"/signup","memory.rss":"798724096","memory.heapUsed":"181118792","memory.heapTotal":"187199488"},"startTime":1772027066812,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1164,"timestamp":33593010749,"id":183,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772027068610,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":58554,"timestamp":33593010039,"id":182,"tags":{"url":"/login"},"startTime":1772027068610,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33593068686,"id":184,"parentId":182,"tags":{"url":"/login","memory.rss":"780591104","memory.heapUsed":"183725256","memory.heapTotal":"192122880"},"startTime":1772027068668,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1052,"timestamp":33596150859,"id":186,"parentId":3,"tags":{"inputPage":"/signup/page"},"startTime":1772027071750,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":58354,"timestamp":33596150400,"id":185,"tags":{"url":"/signup"},"startTime":1772027071750,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":10,"timestamp":33596208868,"id":187,"parentId":185,"tags":{"url":"/signup","memory.rss":"801824768","memory.heapUsed":"187609912","memory.heapTotal":"197627904"},"startTime":1772027071808,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":301,"timestamp":33606933939,"id":188,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082534,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":153,"timestamp":33606934287,"id":189,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082534,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":198,"timestamp":33606935447,"id":190,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082535,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":142,"timestamp":33606935686,"id":191,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082535,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":2101,"timestamp":33606936947,"id":193,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027082537,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1533,"timestamp":33606939319,"id":194,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027082539,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":329,"timestamp":33607080627,"id":195,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082680,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":276,"timestamp":33607081030,"id":196,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082681,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":59000,"timestamp":33606901210,"id":197,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772027082682,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":295,"timestamp":33607094171,"id":198,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082694,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":342,"timestamp":33607094519,"id":199,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082694,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":412,"timestamp":33607097062,"id":202,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082697,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":213,"timestamp":33607097525,"id":203,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082697,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":307,"timestamp":33607128080,"id":204,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082728,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":243,"timestamp":33607128452,"id":205,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082728,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":34146,"timestamp":33607095926,"id":201,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027082696,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":294,"timestamp":33607133514,"id":207,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082733,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":242,"timestamp":33607133862,"id":208,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082733,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":264,"timestamp":33607135910,"id":211,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082735,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":222,"timestamp":33607136227,"id":212,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082736,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":6702,"timestamp":33607130943,"id":206,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027082731,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":344,"timestamp":33607191880,"id":213,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082791,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":247,"timestamp":33607192285,"id":214,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082792,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":293,"timestamp":33607193086,"id":215,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082793,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":245,"timestamp":33607193431,"id":216,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082793,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":60082,"timestamp":33607134947,"id":210,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027082735,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":363,"timestamp":33607197145,"id":218,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082797,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":288,"timestamp":33607197574,"id":219,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082797,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":3888,"timestamp":33607195294,"id":217,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027082795,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":101193,"timestamp":33607134318,"id":209,"tags":{"url":"/signup?_rsc=1dha0"},"startTime":1772027082734,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33607235619,"id":220,"parentId":209,"tags":{"url":"/signup?_rsc=1dha0","memory.rss":"795148288","memory.heapUsed":"187744552","memory.heapTotal":"216510464"},"startTime":1772027082835,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":465,"timestamp":33607236966,"id":221,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082837,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":306,"timestamp":33607237499,"id":222,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082837,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":345,"timestamp":33607241991,"id":223,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082842,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":259,"timestamp":33607242397,"id":224,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082842,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":303,"timestamp":33607243943,"id":225,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082844,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":222,"timestamp":33607244300,"id":226,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027082844,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1719,"timestamp":33607245423,"id":228,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027082845,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":2607,"timestamp":33607247651,"id":229,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027082847,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":150798,"timestamp":33607244731,"id":227,"tags":{"url":"/signup"},"startTime":1772027082844,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":13,"timestamp":33607395658,"id":230,"parentId":227,"tags":{"url":"/signup","memory.rss":"800915456","memory.heapUsed":"193068632","memory.heapTotal":"218775552"},"startTime":1772027082995,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1026,"timestamp":33691509231,"id":231,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027167109,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":500,"timestamp":33691510371,"id":232,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027167110,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":780,"timestamp":33691512263,"id":233,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027167112,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":480,"timestamp":33691513145,"id":234,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027167113,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":2280,"timestamp":33691517051,"id":236,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027167117,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1817,"timestamp":33691519936,"id":237,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027167120,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":89000,"timestamp":33691405157,"id":238,"parentId":3,"tags":{"updatedModules":[],"page":"/signup","isPageHidden":false},"startTime":1772027167160,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":50384,"timestamp":33691514756,"id":235,"tags":{"url":"/signup?_rsc=kw9md"},"startTime":1772027167114,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":18,"timestamp":33691565323,"id":239,"parentId":235,"tags":{"url":"/signup?_rsc=kw9md","memory.rss":"777691136","memory.heapUsed":"178860296","memory.heapTotal":"184877056"},"startTime":1772027167165,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":273,"timestamp":33691588818,"id":240,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027167188,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":169,"timestamp":33691589140,"id":241,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027167189,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":199,"timestamp":33691589892,"id":242,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027167189,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":160,"timestamp":33691590127,"id":243,"parentId":3,"tags":{"inputPage":"/signup"},"startTime":1772027167190,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":2371,"timestamp":33691591094,"id":245,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027167191,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1323,"timestamp":33691593798,"id":246,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772027167193,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":80028,"timestamp":33691590653,"id":244,"tags":{"url":"/signup"},"startTime":1772027167190,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":33691670795,"id":247,"parentId":244,"tags":{"url":"/signup","memory.rss":"778477568","memory.heapUsed":"180660280","memory.heapTotal":"185663488"},"startTime":1772027167270,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":5837,"timestamp":33718354477,"id":250,"tags":{"trigger":"/login"},"startTime":1772027193954,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":189570,"timestamp":33718353808,"id":248,"tags":{"url":"/login"},"startTime":1772027193953,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33718543462,"id":251,"parentId":248,"tags":{"url":"/login","memory.rss":"816029696","memory.heapUsed":"191383352","memory.heapTotal":"206594048"},"startTime":1772027194143,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":122000,"timestamp":33774251053,"id":252,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772027250003,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":29555,"timestamp":33774422606,"id":255,"tags":{"trigger":"/login"},"startTime":1772027250022,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":13000,"timestamp":33774402924,"id":256,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772027250137,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":117346,"timestamp":33774421783,"id":253,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772027250021,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33774539215,"id":257,"parentId":253,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"813264896","memory.heapUsed":"203700032","memory.heapTotal":"210694144"},"startTime":1772027250139,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":10708,"timestamp":33856327121,"id":260,"tags":{"trigger":"/login"},"startTime":1772027331927,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":35000,"timestamp":33856285126,"id":261,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772027332038,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":116175,"timestamp":33856326402,"id":258,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772027331926,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":33856442682,"id":262,"parentId":258,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"821903360","memory.heapUsed":"215675592","memory.heapTotal":"223731712"},"startTime":1772027332042,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":12629,"timestamp":33889678543,"id":265,"tags":{"trigger":"/login"},"startTime":1772027365278,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":39000,"timestamp":33889631308,"id":266,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772027365411,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":136267,"timestamp":33889677154,"id":263,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772027365277,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":33889813493,"id":267,"parentId":263,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"818081792","memory.heapUsed":"208378912","memory.heapTotal":"217001984"},"startTime":1772027365413,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":7362,"timestamp":34006558632,"id":270,"tags":{"trigger":"/login"},"startTime":1772027482158,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":33000,"timestamp":34006514073,"id":271,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772027482304,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":149160,"timestamp":34006557371,"id":268,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772027482157,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":34006706621,"id":272,"parentId":268,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816140288","memory.heapUsed":"208577368","memory.heapTotal":"215777280"},"startTime":1772027482306,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":8145,"timestamp":34026902920,"id":275,"tags":{"trigger":"/login"},"startTime":1772027502502,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":31000,"timestamp":34026865277,"id":276,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772027502699,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":201320,"timestamp":34026902119,"id":273,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772027502502,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":17,"timestamp":34027103574,"id":277,"parentId":273,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"828936192","memory.heapUsed":"219479680","memory.heapTotal":"228552704"},"startTime":1772027502703,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":8137,"timestamp":34054365483,"id":280,"tags":{"trigger":"/login"},"startTime":1772027529965,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":34000,"timestamp":34054325410,"id":281,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772027530145,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":183687,"timestamp":34054364825,"id":278,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772027529964,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":34054548604,"id":282,"parentId":278,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"828190720","memory.heapUsed":"218814280","memory.heapTotal":"226779136"},"startTime":1772027530148,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":13256,"timestamp":34064976698,"id":285,"tags":{"trigger":"/login"},"startTime":1772027540576,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":263375,"timestamp":34064975906,"id":283,"tags":{"url":"/login"},"startTime":1772027540575,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":34065239390,"id":286,"parentId":283,"tags":{"url":"/login","memory.rss":"920813568","memory.heapUsed":"236781608","memory.heapTotal":"256974848"},"startTime":1772027540839,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":338553,"timestamp":34160449255,"id":288,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772027636049,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":569781,"timestamp":34160448539,"id":287,"tags":{"url":"/register"},"startTime":1772027636048,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":34161018412,"id":289,"parentId":287,"tags":{"url":"/register","memory.rss":"938053632","memory.heapUsed":"237681248","memory.heapTotal":"248115200"},"startTime":1772027636618,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1230,"timestamp":34162453045,"id":291,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772027638053,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":61384,"timestamp":34162452453,"id":290,"tags":{"url":"/login"},"startTime":1772027638052,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":10,"timestamp":34162513937,"id":292,"parentId":290,"tags":{"url":"/login","memory.rss":"939888640","memory.heapUsed":"241240072","memory.heapTotal":"255922176"},"startTime":1772027638114,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1755,"timestamp":34163775663,"id":294,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772027639375,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":59776,"timestamp":34163774605,"id":293,"tags":{"url":"/register"},"startTime":1772027639374,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":34163834483,"id":295,"parentId":293,"tags":{"url":"/register","memory.rss":"941854720","memory.heapUsed":"244264472","memory.heapTotal":"257757184"},"startTime":1772027639434,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":6224,"timestamp":34201939773,"id":298,"tags":{"trigger":"/register"},"startTime":1772027677539,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":25000,"timestamp":34201909621,"id":299,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":false},"startTime":1772027677609,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":74239,"timestamp":34201939199,"id":296,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772027677539,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":34202013525,"id":300,"parentId":296,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"963878912","memory.heapUsed":"251682216","memory.heapTotal":"267628544"},"startTime":1772027677613,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1258,"timestamp":34222346731,"id":302,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772027697946,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":36000,"timestamp":34222299235,"id":303,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":false},"startTime":1772027697998,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":57162,"timestamp":34222345918,"id":301,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772027697946,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":10,"timestamp":34222403198,"id":304,"parentId":301,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"940498944","memory.heapUsed":"236082336","memory.heapTotal":"242401280"},"startTime":1772027698003,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":8225,"timestamp":34226453437,"id":307,"tags":{"trigger":"/login"},"startTime":1772027702053,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":218729,"timestamp":34226452933,"id":305,"tags":{"url":"/login"},"startTime":1772027702053,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":34226671748,"id":308,"parentId":305,"tags":{"url":"/login","memory.rss":"980971520","memory.heapUsed":"253696176","memory.heapTotal":"274477056"},"startTime":1772027702271,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":2920,"timestamp":34228078892,"id":310,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772027703678,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":86515,"timestamp":34228077305,"id":309,"tags":{"url":"/register"},"startTime":1772027703677,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":34228163903,"id":311,"parentId":309,"tags":{"url":"/register","memory.rss":"979398656","memory.heapUsed":"239826536","memory.heapTotal":"268328960"},"startTime":1772027703763,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":8694,"timestamp":34241668428,"id":314,"tags":{"trigger":"/register"},"startTime":1772027717268,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":35000,"timestamp":34241636110,"id":315,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":false},"startTime":1772027717363,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1028,"timestamp":34241763916,"id":317,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772027717363,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":133580,"timestamp":34241667784,"id":312,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772027717267,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":34241801448,"id":318,"parentId":312,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"965357568","memory.heapUsed":"245327936","memory.heapTotal":"268980224"},"startTime":1772027717401,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":39519,"timestamp":34241763478,"id":316,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772027717363,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":34241803104,"id":319,"parentId":316,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"965357568","memory.heapUsed":"245381904","memory.heapTotal":"268980224"},"startTime":1772027717403,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":11328,"timestamp":34769471076,"id":322,"tags":{"trigger":"/login"},"startTime":1772028245071,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":147072,"timestamp":34769470378,"id":320,"tags":{"url":"/login"},"startTime":1772028245070,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":34769617547,"id":323,"parentId":320,"tags":{"url":"/login","memory.rss":"970809344","memory.heapUsed":"257462360","memory.heapTotal":"271294464"},"startTime":1772028245217,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1227,"timestamp":34770900816,"id":325,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772028246500,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":85977,"timestamp":34770900233,"id":324,"tags":{"url":"/register"},"startTime":1772028246500,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":34770986281,"id":326,"parentId":324,"tags":{"url":"/register","memory.rss":"971726848","memory.heapUsed":"260752792","memory.heapTotal":"269860864"},"startTime":1772028246586,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1892,"timestamp":34773234085,"id":328,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028248834,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":60934,"timestamp":34773233087,"id":327,"tags":{"url":"/login"},"startTime":1772028248833,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":34773294107,"id":329,"parentId":327,"tags":{"url":"/login","memory.rss":"972382208","memory.heapUsed":"262798984","memory.heapTotal":"276414464"},"startTime":1772028248894,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":78000,"timestamp":34883653615,"id":330,"parentId":3,"tags":{"updatedModules":["[project]/src/components/ui/field.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772028359359,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":17159,"timestamp":35048047786,"id":332,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028523647,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":118000,"timestamp":35047919018,"id":333,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772028523766,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":122493,"timestamp":35048046728,"id":331,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028523646,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":35048169305,"id":334,"parentId":331,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"986984448","memory.heapUsed":"257957672","memory.heapTotal":"267988992"},"startTime":1772028523769,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":95942,"timestamp":35050969636,"id":337,"tags":{"trigger":"/login"},"startTime":1772028526569,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":120000,"timestamp":35050839177,"id":338,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772028526840,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":294623,"timestamp":35050968749,"id":335,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028526568,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":13,"timestamp":35051263523,"id":339,"parentId":335,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1071321088","memory.heapUsed":"270069320","memory.heapTotal":"287666176"},"startTime":1772028526863,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":59652,"timestamp":35089906637,"id":342,"tags":{"trigger":"/login"},"startTime":1772028565506,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":109000,"timestamp":35089792357,"id":343,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/client/app-dir/link.js [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772028565632,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":129142,"timestamp":35089906053,"id":340,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028565506,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":35090035293,"id":344,"parentId":340,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1093169152","memory.heapUsed":"262403656","memory.heapTotal":"273092608"},"startTime":1772028565635,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1814,"timestamp":35143830233,"id":356,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619430,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":57336,"timestamp":35143827428,"id":354,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619427,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":76176,"timestamp":35143824891,"id":352,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619424,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":99864,"timestamp":35143821974,"id":350,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619422,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":130619,"timestamp":35143818407,"id":348,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619418,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":177783,"timestamp":35143802112,"id":346,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619402,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":69000,"timestamp":35143774918,"id":357,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/navigation.js [app-client]","[project]/node_modules/@radix-ui/react-slot/dist/index.mjs [app-client]","[project]/src/components/ui/button.tsx [app-client]","[project]/src/components/ui/card.tsx [app-client]","[project]/src/components/ui/input.tsx [app-client]","[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772028619631,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":212566,"timestamp":35143829642,"id":355,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619429,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":16,"timestamp":35144042366,"id":358,"parentId":355,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1119494144","memory.heapUsed":"270357200","memory.heapTotal":"278437888"},"startTime":1772028619642,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":218368,"timestamp":35143826711,"id":353,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619426,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":14,"timestamp":35144045205,"id":359,"parentId":353,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1119494144","memory.heapUsed":"270398520","memory.heapTotal":"278437888"},"startTime":1772028619645,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":224632,"timestamp":35143824353,"id":351,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619424,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":13,"timestamp":35144049127,"id":360,"parentId":351,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1119494144","memory.heapUsed":"270438376","memory.heapTotal":"278437888"},"startTime":1772028619649,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":229256,"timestamp":35143821399,"id":349,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619421,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":17,"timestamp":35144050812,"id":361,"parentId":349,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1119494144","memory.heapUsed":"270487000","memory.heapTotal":"278437888"},"startTime":1772028619650,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":234472,"timestamp":35143817843,"id":347,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619417,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":18,"timestamp":35144052479,"id":362,"parentId":347,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1119494144","memory.heapUsed":"270526600","memory.heapTotal":"278437888"},"startTime":1772028619652,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":252302,"timestamp":35143801548,"id":345,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619401,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":13,"timestamp":35144053986,"id":363,"parentId":345,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1119494144","memory.heapUsed":"270565576","memory.heapTotal":"278437888"},"startTime":1772028619654,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":13082,"timestamp":35144065556,"id":365,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619665,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":45750,"timestamp":35144067908,"id":367,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619667,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":81871,"timestamp":35144073396,"id":369,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619673,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":131749,"timestamp":35144074615,"id":371,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619674,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":166379,"timestamp":35144076095,"id":373,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619676,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":192347,"timestamp":35144077269,"id":375,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619677,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":257331,"timestamp":35144064415,"id":364,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619664,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":10,"timestamp":35144321846,"id":376,"parentId":364,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1121067008","memory.heapUsed":"274879128","memory.heapTotal":"285196288"},"startTime":1772028619921,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":256105,"timestamp":35144066632,"id":366,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619666,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":35144322825,"id":377,"parentId":366,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1121067008","memory.heapUsed":"274918008","memory.heapTotal":"285196288"},"startTime":1772028619922,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":250016,"timestamp":35144073998,"id":370,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619674,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":35144324107,"id":378,"parentId":370,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1121067008","memory.heapUsed":"274988352","memory.heapTotal":"285458432"},"startTime":1772028619924,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":249661,"timestamp":35144075290,"id":372,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619675,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":35144325054,"id":379,"parentId":372,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1121067008","memory.heapUsed":"275027328","memory.heapTotal":"285458432"},"startTime":1772028619925,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":257423,"timestamp":35144068627,"id":368,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619668,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":19,"timestamp":35144326223,"id":380,"parentId":368,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1121067008","memory.heapUsed":"275066568","memory.heapTotal":"285458432"},"startTime":1772028619926,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":251252,"timestamp":35144076672,"id":374,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619676,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":13,"timestamp":35144328070,"id":381,"parentId":374,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1121067008","memory.heapUsed":"275105480","memory.heapTotal":"285458432"},"startTime":1772028619928,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":3584,"timestamp":35144332527,"id":383,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619932,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":32024,"timestamp":35144334837,"id":385,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772028619934,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":66369,"timestamp":35144331534,"id":382,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619931,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":21,"timestamp":35144398189,"id":386,"parentId":382,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1121067008","memory.heapUsed":"276292424","memory.heapTotal":"291225600"},"startTime":1772028619998,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":65753,"timestamp":35144334045,"id":384,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772028619934,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":35144399880,"id":387,"parentId":384,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1121067008","memory.heapUsed":"276336544","memory.heapTotal":"291225600"},"startTime":1772028619999,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":7120,"timestamp":35779616244,"id":390,"tags":{"trigger":"/login"},"startTime":1772029255216,"traceId":"cd307180e6d22c45"}] -[{"name":"client-hmr-latency","duration":123000,"timestamp":35779521586,"id":391,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772029255282,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":70565,"timestamp":35779615766,"id":388,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772029255215,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":35779686419,"id":392,"parentId":388,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1125642240","memory.heapUsed":"286371736","memory.heapTotal":"297254912"},"startTime":1772029255286,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":60370,"timestamp":35802252189,"id":395,"tags":{"trigger":"/register"},"startTime":1772029277852,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":191373,"timestamp":35802249948,"id":393,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772029277850,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":5,"timestamp":35802441397,"id":396,"parentId":393,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1123995648","memory.heapUsed":"277072680","memory.heapTotal":"295456768"},"startTime":1772029278041,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":4663,"timestamp":35803936631,"id":398,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772029279536,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":39162,"timestamp":35803934493,"id":397,"tags":{"url":"/login?_rsc=1x908"},"startTime":1772029279534,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":6,"timestamp":35803973720,"id":399,"parentId":397,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1124782080","memory.heapUsed":"278934048","memory.heapTotal":"297553920"},"startTime":1772029279573,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":322589,"timestamp":35841773585,"id":402,"tags":{"trigger":"/api/auth/login"},"startTime":1772029317373,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":719749,"timestamp":35841772782,"id":400,"tags":{"url":"/api/auth/login"},"startTime":1772029317372,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":12,"timestamp":35842492677,"id":403,"parentId":400,"tags":{"url":"/api/auth/login","memory.rss":"1194074112","memory.heapUsed":"285161984","memory.heapTotal":"293142528"},"startTime":1772029318092,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":365,"timestamp":35842497795,"id":404,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772029318097,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":187,"timestamp":35842498223,"id":405,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772029318098,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":216,"timestamp":35842498943,"id":406,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772029318099,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":160,"timestamp":35842499198,"id":407,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772029318099,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":4291,"timestamp":35842501178,"id":409,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772029318101,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":930,"timestamp":35842505894,"id":410,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772029318105,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":69457,"timestamp":35842499975,"id":408,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772029318100,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":35842569511,"id":411,"parentId":408,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"1206132736","memory.heapUsed":"296108312","memory.heapTotal":"308727808"},"startTime":1772029318169,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":281,"timestamp":35842580682,"id":412,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772029318180,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":284,"timestamp":35842581046,"id":413,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772029318181,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":205,"timestamp":35842581947,"id":414,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772029318182,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":160,"timestamp":35842582192,"id":415,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772029318182,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1299,"timestamp":35842583306,"id":417,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772029318183,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1278,"timestamp":35842584827,"id":418,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772029318184,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":94188,"timestamp":35842582845,"id":416,"tags":{"url":"/dashboard"},"startTime":1772029318182,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":12,"timestamp":35842677191,"id":419,"parentId":416,"tags":{"url":"/dashboard","memory.rss":"1213526016","memory.heapUsed":"300472472","memory.heapTotal":"313114624"},"startTime":1772029318277,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":889,"timestamp":35855292989,"id":421,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772029330893,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":121499,"timestamp":35855292483,"id":420,"tags":{"url":"/login"},"startTime":1772029330892,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":35855414084,"id":422,"parentId":420,"tags":{"url":"/login","memory.rss":"1233911808","memory.heapUsed":"302713264","memory.heapTotal":"312209408"},"startTime":1772029331014,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":881,"timestamp":35870918640,"id":424,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772029346518,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":20669,"timestamp":35870917793,"id":423,"tags":{"url":"/api/auth/login"},"startTime":1772029346517,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":8,"timestamp":35870938567,"id":425,"parentId":423,"tags":{"url":"/api/auth/login","memory.rss":"1256587264","memory.heapUsed":"304917336","memory.heapTotal":"341831680"},"startTime":1772029346538,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":2208,"timestamp":35875020525,"id":427,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772029350620,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":29390,"timestamp":35875019246,"id":426,"tags":{"url":"/api/auth/login"},"startTime":1772029350619,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":18,"timestamp":35875048875,"id":428,"parentId":426,"tags":{"url":"/api/auth/login","memory.rss":"1257766912","memory.heapUsed":"306044672","memory.heapTotal":"342093824"},"startTime":1772029350648,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1672,"timestamp":35915274522,"id":430,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772029390874,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":94452,"timestamp":35915273478,"id":429,"tags":{"url":"/api/auth/login"},"startTime":1772029390873,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":5,"timestamp":35915368021,"id":431,"parentId":429,"tags":{"url":"/api/auth/login","memory.rss":"1265762304","memory.heapUsed":"307187200","memory.heapTotal":"342355968"},"startTime":1772029390968,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1313,"timestamp":36018600291,"id":433,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772029494200,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":29582,"timestamp":36018599214,"id":432,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772029494199,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":36018628874,"id":434,"parentId":432,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1270874112","memory.heapUsed":"310514112","memory.heapTotal":"342822912"},"startTime":1772029494228,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":84000,"timestamp":36018521041,"id":435,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772029494249,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":68411,"timestamp":36025837076,"id":438,"tags":{"trigger":"/register"},"startTime":1772029501437,"traceId":"cd307180e6d22c45"}] -[{"name":"handle-request","duration":132884,"timestamp":36025835341,"id":436,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772029501435,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":6,"timestamp":36025968313,"id":439,"parentId":436,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1315672064","memory.heapUsed":"309202864","memory.heapTotal":"321921024"},"startTime":1772029501568,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":407,"timestamp":36067269095,"id":440,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1772029542869,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":222,"timestamp":36067269568,"id":441,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1772029542869,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":232,"timestamp":36067270459,"id":442,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1772029542870,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":173,"timestamp":36067270739,"id":443,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1772029542870,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":4487,"timestamp":36067271622,"id":445,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772029542871,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1195,"timestamp":36067276315,"id":446,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772029542876,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":70062,"timestamp":36067271111,"id":444,"tags":{"url":"/api/auth/register"},"startTime":1772029542871,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":7,"timestamp":36067341269,"id":447,"parentId":444,"tags":{"url":"/api/auth/register","memory.rss":"1307815936","memory.heapUsed":"310794464","memory.heapTotal":"336338944"},"startTime":1772029542941,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":7690,"timestamp":36166653131,"id":449,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642253,"traceId":"cd307180e6d22c45"},{"name":"client-hmr-latency","duration":91000,"timestamp":36166608909,"id":450,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":true},"startTime":1772029642361,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":110915,"timestamp":36166652406,"id":448,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642252,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":9,"timestamp":36166763425,"id":451,"parentId":448,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1298538496","memory.heapUsed":"316405984","memory.heapTotal":"326971392"},"startTime":1772029642363,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":1525,"timestamp":36166765584,"id":453,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642365,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":7801,"timestamp":36166786504,"id":455,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642386,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":34778,"timestamp":36166789675,"id":457,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642389,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":46749,"timestamp":36166822042,"id":459,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642422,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":57707,"timestamp":36166862895,"id":461,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642462,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":3173,"timestamp":36166964778,"id":463,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642564,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":257128,"timestamp":36166765161,"id":452,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642365,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":12,"timestamp":36167022440,"id":464,"parentId":452,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1299324928","memory.heapUsed":"319853904","memory.heapTotal":"327757824"},"startTime":1772029642622,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":248669,"timestamp":36166786061,"id":454,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642386,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":14,"timestamp":36167034922,"id":465,"parentId":454,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1299324928","memory.heapUsed":"320008848","memory.heapTotal":"327757824"},"startTime":1772029642635,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":254501,"timestamp":36166788960,"id":456,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642389,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":12,"timestamp":36167043599,"id":468,"parentId":456,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"320402224","memory.heapTotal":"330256384"},"startTime":1772029642643,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":3719,"timestamp":36167040962,"id":467,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642641,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":265582,"timestamp":36166821357,"id":458,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642421,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":13,"timestamp":36167087095,"id":469,"parentId":458,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"321350672","memory.heapTotal":"330518528"},"startTime":1772029642687,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":235773,"timestamp":36166862120,"id":460,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642462,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":33,"timestamp":36167098252,"id":472,"parentId":460,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"321661688","memory.heapTotal":"330518528"},"startTime":1772029642698,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":9269,"timestamp":36167091702,"id":471,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642691,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":196528,"timestamp":36166964198,"id":462,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642564,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":18,"timestamp":36167160910,"id":475,"parentId":462,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"322234800","memory.heapTotal":"333402112"},"startTime":1772029642760,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":11861,"timestamp":36167158073,"id":474,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642758,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":48977,"timestamp":36167163380,"id":477,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642763,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":9404,"timestamp":36167252584,"id":479,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642852,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":57523,"timestamp":36167259723,"id":481,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642859,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":334735,"timestamp":36167035700,"id":466,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642635,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":36167370572,"id":482,"parentId":466,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"326838288","memory.heapTotal":"339693568"},"startTime":1772029642970,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":285776,"timestamp":36167090607,"id":470,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642690,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":16,"timestamp":36167376560,"id":483,"parentId":470,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"327027040","memory.heapTotal":"339693568"},"startTime":1772029642976,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":5924,"timestamp":36167378704,"id":485,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029642978,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":285384,"timestamp":36167157117,"id":473,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642757,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":26,"timestamp":36167442774,"id":486,"parentId":473,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"326646200","memory.heapTotal":"340480000"},"startTime":1772029643042,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":285972,"timestamp":36167162190,"id":476,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642762,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":19,"timestamp":36167448380,"id":489,"parentId":476,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"326778920","memory.heapTotal":"340480000"},"startTime":1772029643048,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":5329,"timestamp":36167445146,"id":488,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029643045,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":254400,"timestamp":36167251616,"id":478,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642851,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":16,"timestamp":36167506197,"id":490,"parentId":478,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"326526680","memory.heapTotal":"342052864"},"startTime":1772029643106,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":251956,"timestamp":36167258695,"id":480,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642858,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":14,"timestamp":36167510812,"id":493,"parentId":480,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"326656152","memory.heapTotal":"342052864"},"startTime":1772029643110,"traceId":"cd307180e6d22c45"},{"name":"ensure-page","duration":4267,"timestamp":36167508017,"id":492,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772029643108,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":189801,"timestamp":36167377153,"id":484,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029642977,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":16,"timestamp":36167567178,"id":494,"parentId":484,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"329041048","memory.heapTotal":"342052864"},"startTime":1772029643167,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":125639,"timestamp":36167444274,"id":487,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029643044,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":28,"timestamp":36167570110,"id":495,"parentId":487,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"329090832","memory.heapTotal":"342052864"},"startTime":1772029643170,"traceId":"cd307180e6d22c45"},{"name":"handle-request","duration":65119,"timestamp":36167507017,"id":491,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1772029643107,"traceId":"cd307180e6d22c45"},{"name":"memory-usage","duration":11,"timestamp":36167572299,"id":496,"parentId":491,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1300373504","memory.heapUsed":"329136488","memory.heapTotal":"342052864"},"startTime":1772029643172,"traceId":"cd307180e6d22c45"},{"name":"compile-path","duration":116111,"timestamp":36248539561,"id":499,"tags":{"trigger":"/api/auth/register"},"startTime":1772029724139,"traceId":"cd307180e6d22c45"}] -[{"name":"hot-reloader","duration":61,"timestamp":37114300874,"id":3,"tags":{"version":"16.1.6"},"startTime":1772030589900,"traceId":"b07eb032dcd211b8"},{"name":"setup-dev-bundler","duration":274204,"timestamp":37114215566,"id":2,"parentId":1,"tags":{},"startTime":1772030589815,"traceId":"b07eb032dcd211b8"},{"name":"start-dev-server","duration":896844,"timestamp":37113709546,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7350644736","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"335605760","memory.heapTotal":"89591808","memory.heapUsed":"64818808"},"startTime":1772030589309,"traceId":"b07eb032dcd211b8"},{"name":"compile-path","duration":202696,"timestamp":37114649415,"id":6,"tags":{"trigger":"/login"},"startTime":1772030590249,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":204385,"timestamp":37114648398,"id":5,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772030590248,"traceId":"b07eb032dcd211b8"}] -[{"name":"handle-request","duration":824968,"timestamp":37114637773,"id":4,"tags":{"url":"/login"},"startTime":1772030590237,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":20,"timestamp":37115462916,"id":7,"parentId":4,"tags":{"url":"/login","memory.rss":"526192640","memory.heapUsed":"94386192","memory.heapTotal":"118456320"},"startTime":1772030591063,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1300,"timestamp":37115618590,"id":8,"parentId":3,"tags":{"inputPage":"/placeholder.svg"},"startTime":1772030591218,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":307,"timestamp":37115620011,"id":9,"parentId":3,"tags":{"inputPage":"/placeholder.svg"},"startTime":1772030591220,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":435,"timestamp":37115623527,"id":10,"parentId":3,"tags":{"inputPage":"/placeholder.svg"},"startTime":1772030591223,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":468,"timestamp":37115624090,"id":11,"parentId":3,"tags":{"inputPage":"/placeholder.svg"},"startTime":1772030591224,"traceId":"b07eb032dcd211b8"},{"name":"compile-path","duration":22625,"timestamp":37115627685,"id":14,"tags":{"trigger":"/_not-found/page"},"startTime":1772030591227,"traceId":"b07eb032dcd211b8"}] -[{"name":"ensure-page","duration":1612,"timestamp":37115651482,"id":15,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772030591251,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":163841,"timestamp":37115625555,"id":12,"tags":{"url":"/placeholder.svg"},"startTime":1772030591225,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":37115789489,"id":16,"parentId":12,"tags":{"url":"/placeholder.svg","memory.rss":"568451072","memory.heapUsed":"100586848","memory.heapTotal":"131817472"},"startTime":1772030591389,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":627000,"timestamp":37186371087,"id":17,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":false},"startTime":1772030662634,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":67000,"timestamp":37225177183,"id":18,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":false},"startTime":1772030700873,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":12104,"timestamp":37231596987,"id":20,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772030707197,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":148699,"timestamp":37231595319,"id":19,"tags":{"url":"/login"},"startTime":1772030707195,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":37231744126,"id":21,"parentId":19,"tags":{"url":"/login","memory.rss":"645857280","memory.heapUsed":"100928584","memory.heapTotal":"121360384"},"startTime":1772030707344,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":58000,"timestamp":37351643165,"id":22,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772030827327,"traceId":"b07eb032dcd211b8"},{"name":"compile-path","duration":45908,"timestamp":37373868505,"id":25,"tags":{"trigger":"/register"},"startTime":1772030849468,"traceId":"b07eb032dcd211b8"}] -[{"name":"handle-request","duration":87415,"timestamp":37373863990,"id":23,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772030849464,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":37373951480,"id":26,"parentId":23,"tags":{"url":"/register?_rsc=5c339","memory.rss":"663400448","memory.heapUsed":"103298512","memory.heapTotal":"110268416"},"startTime":1772030849551,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":78000,"timestamp":37412825467,"id":27,"parentId":3,"tags":{"updatedModules":["[project]/src/components/register-form.tsx [app-client]"],"page":"/register","isPageHidden":true},"startTime":1772030888532,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":28572,"timestamp":37424379646,"id":29,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772030899979,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":80742,"timestamp":37424375475,"id":28,"tags":{"url":"/login?_rsc=1x908"},"startTime":1772030899975,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":37424456305,"id":30,"parentId":28,"tags":{"url":"/login?_rsc=1x908","memory.rss":"697901056","memory.heapUsed":"112132312","memory.heapTotal":"115691520"},"startTime":1772030900056,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":5666,"timestamp":37426451106,"id":32,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772030902051,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":73999,"timestamp":37426450443,"id":31,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772030902050,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":37426524536,"id":33,"parentId":31,"tags":{"url":"/register?_rsc=5c339","memory.rss":"710606848","memory.heapUsed":"105036320","memory.heapTotal":"129110016"},"startTime":1772030902124,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":3952,"timestamp":37429866934,"id":35,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772030905467,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":32297,"timestamp":37429864922,"id":34,"tags":{"url":"/register?_rsc=1x908"},"startTime":1772030905465,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":37429897302,"id":36,"parentId":34,"tags":{"url":"/register?_rsc=1x908","memory.rss":"722927616","memory.heapUsed":"107221408","memory.heapTotal":"129110016"},"startTime":1772030905497,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":5608,"timestamp":37431509123,"id":38,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772030907109,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":44747,"timestamp":37431506970,"id":37,"tags":{"url":"/register?_rsc=1x908"},"startTime":1772030907107,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":37431551797,"id":39,"parentId":37,"tags":{"url":"/register?_rsc=1x908","memory.rss":"723058688","memory.heapUsed":"109662296","memory.heapTotal":"129110016"},"startTime":1772030907151,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":4718,"timestamp":37433122791,"id":41,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772030908722,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":38918,"timestamp":37433118997,"id":40,"tags":{"url":"/register?_rsc=1x908"},"startTime":1772030908719,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":37433158015,"id":42,"parentId":40,"tags":{"url":"/register?_rsc=1x908","memory.rss":"724893696","memory.heapUsed":"112105816","memory.heapTotal":"129372160"},"startTime":1772030908758,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1311,"timestamp":37433995963,"id":44,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772030909596,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":25826,"timestamp":37433995039,"id":43,"tags":{"url":"/login?_rsc=1x908"},"startTime":1772030909595,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":22,"timestamp":37434021069,"id":45,"parentId":43,"tags":{"url":"/login?_rsc=1x908","memory.rss":"726859776","memory.heapUsed":"108230576","memory.heapTotal":"129372160"},"startTime":1772030909621,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1737,"timestamp":37435393874,"id":47,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772030910993,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":30445,"timestamp":37435392539,"id":46,"tags":{"url":"/login?_rsc=5c339"},"startTime":1772030910992,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":37435423083,"id":48,"parentId":46,"tags":{"url":"/login?_rsc=5c339","memory.rss":"710537216","memory.heapUsed":"100550968","memory.heapTotal":"110022656"},"startTime":1772030911023,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":3126,"timestamp":37435913283,"id":50,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772030911513,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":45437,"timestamp":37435911274,"id":49,"tags":{"url":"/login?_rsc=5c339"},"startTime":1772030911511,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":37435956782,"id":51,"parentId":49,"tags":{"url":"/login?_rsc=5c339","memory.rss":"711979008","memory.heapUsed":"101376216","memory.heapTotal":"110022656"},"startTime":1772030911556,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":2832,"timestamp":37436730159,"id":53,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772030912330,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":37759,"timestamp":37436728695,"id":52,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772030912328,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":37436766557,"id":54,"parentId":52,"tags":{"url":"/register?_rsc=5c339","memory.rss":"712241152","memory.heapUsed":"101053296","memory.heapTotal":"110284800"},"startTime":1772030912366,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":2918,"timestamp":37438393807,"id":56,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772030913993,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":37910,"timestamp":37438392482,"id":55,"tags":{"url":"/login?_rsc=1x908"},"startTime":1772030913992,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":37438430468,"id":57,"parentId":55,"tags":{"url":"/login?_rsc=1x908","memory.rss":"713027584","memory.heapUsed":"102083944","memory.heapTotal":"110809088"},"startTime":1772030914030,"traceId":"b07eb032dcd211b8"},{"name":"compile-path","duration":6705,"timestamp":37445958936,"id":60,"tags":{"trigger":"/api/auth/login"},"startTime":1772030921559,"traceId":"b07eb032dcd211b8"}] -[{"name":"handle-request","duration":131824,"timestamp":37445958263,"id":58,"tags":{"url":"/api/auth/login"},"startTime":1772030921558,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":37446090185,"id":61,"parentId":58,"tags":{"url":"/api/auth/login","memory.rss":"710041600","memory.heapUsed":"110931408","memory.heapTotal":"122920960"},"startTime":1772030921690,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":2291,"timestamp":37461019151,"id":63,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772030936619,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":33286,"timestamp":37461017642,"id":62,"tags":{"url":"/api/auth/login"},"startTime":1772030936617,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":12,"timestamp":37461051066,"id":64,"parentId":62,"tags":{"url":"/api/auth/login","memory.rss":"692092928","memory.heapUsed":"107838976","memory.heapTotal":"121380864"},"startTime":1772030936651,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":2392,"timestamp":37466149983,"id":66,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772030941750,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":105647,"timestamp":37466148494,"id":65,"tags":{"url":"/api/auth/login"},"startTime":1772030941748,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":5,"timestamp":37466254205,"id":67,"parentId":65,"tags":{"url":"/api/auth/login","memory.rss":"692224000","memory.heapUsed":"109160064","memory.heapTotal":"121380864"},"startTime":1772030941854,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":290,"timestamp":37466257764,"id":68,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772030941857,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":124,"timestamp":37466258097,"id":69,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772030941858,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":275,"timestamp":37466258795,"id":70,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772030941858,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":150,"timestamp":37466259114,"id":71,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772030941859,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":4340,"timestamp":37466260376,"id":73,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772030941860,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1936,"timestamp":37466265157,"id":74,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772030941865,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":31669,"timestamp":37466259914,"id":72,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772030941859,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":37466291668,"id":75,"parentId":72,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"695238656","memory.heapUsed":"108700328","memory.heapTotal":"115089408"},"startTime":1772030941891,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":256,"timestamp":37466307456,"id":76,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772030941907,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":175,"timestamp":37466307778,"id":77,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772030941907,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":295,"timestamp":37466308508,"id":78,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772030941908,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":183,"timestamp":37466308843,"id":79,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772030941908,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":982,"timestamp":37466309588,"id":81,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772030941909,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":999,"timestamp":37466310716,"id":82,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772030941910,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":65799,"timestamp":37466309187,"id":80,"tags":{"url":"/dashboard"},"startTime":1772030941909,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":37466375079,"id":83,"parentId":80,"tags":{"url":"/dashboard","memory.rss":"696025088","memory.heapUsed":"110452568","memory.heapTotal":"115851264"},"startTime":1772030941975,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1258,"timestamp":37468521856,"id":85,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772030944121,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":112150,"timestamp":37468521034,"id":84,"tags":{"url":"/login"},"startTime":1772030944121,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":37468633272,"id":86,"parentId":84,"tags":{"url":"/login","memory.rss":"706830336","memory.heapUsed":"119055664","memory.heapTotal":"137908224"},"startTime":1772030944233,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":27000,"timestamp":37617986516,"id":87,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772031093642,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":3364,"timestamp":37966022656,"id":89,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031441622,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":23000,"timestamp":37965991526,"id":90,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772031441817,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":244570,"timestamp":37966021738,"id":88,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031441621,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":21,"timestamp":37966266481,"id":91,"parentId":88,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"729690112","memory.heapUsed":"118795032","memory.heapTotal":"128774144"},"startTime":1772031441866,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":2309,"timestamp":37966270497,"id":93,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031441870,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":5749,"timestamp":37966338221,"id":95,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031441938,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":62427,"timestamp":37966341986,"id":97,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031441942,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":51973,"timestamp":37966400089,"id":99,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442000,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":50429,"timestamp":37966448662,"id":101,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442048,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":52319,"timestamp":37966497246,"id":103,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442097,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":318784,"timestamp":37966269246,"id":92,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031441869,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":12,"timestamp":37966588130,"id":104,"parentId":92,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"740569088","memory.heapUsed":"125439600","memory.heapTotal":"135565312"},"startTime":1772031442188,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":3165,"timestamp":37966593477,"id":106,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442193,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":315283,"timestamp":37966337389,"id":94,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031441937,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":28,"timestamp":37966652793,"id":107,"parentId":94,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"741093376","memory.heapUsed":"125278992","memory.heapTotal":"136089600"},"startTime":1772031442252,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":313673,"timestamp":37966341266,"id":96,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031441941,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":11,"timestamp":37966655086,"id":108,"parentId":96,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"741093376","memory.heapUsed":"125336016","memory.heapTotal":"136089600"},"startTime":1772031442255,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":259680,"timestamp":37966398902,"id":98,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031441998,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":12,"timestamp":37966658708,"id":109,"parentId":98,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"741224448","memory.heapUsed":"125464904","memory.heapTotal":"136089600"},"startTime":1772031442258,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":215968,"timestamp":37966447193,"id":100,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442047,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":12,"timestamp":37966663308,"id":110,"parentId":100,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"741224448","memory.heapUsed":"125597624","memory.heapTotal":"136089600"},"startTime":1772031442263,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":174229,"timestamp":37966496584,"id":102,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442096,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":37966670927,"id":113,"parentId":102,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"741224448","memory.heapUsed":"125820488","memory.heapTotal":"136089600"},"startTime":1772031442271,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":8002,"timestamp":37966665729,"id":112,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442265,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":63957,"timestamp":37966672188,"id":115,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442272,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":52197,"timestamp":37966733174,"id":117,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442333,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":43197,"timestamp":37966783150,"id":119,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442383,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1973,"timestamp":37966870636,"id":121,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442470,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":311813,"timestamp":37966592389,"id":105,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442192,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":37966904306,"id":122,"parentId":105,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"747515904","memory.heapUsed":"130454816","memory.heapTotal":"147304448"},"startTime":1772031442504,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1863,"timestamp":37966908634,"id":124,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442508,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":288474,"timestamp":37966664180,"id":111,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442264,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":13,"timestamp":37966952803,"id":125,"parentId":111,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"749744128","memory.heapUsed":"133063672","memory.heapTotal":"147304448"},"startTime":1772031442552,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":285267,"timestamp":37966671396,"id":114,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442271,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":11,"timestamp":37966956785,"id":126,"parentId":114,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"749875200","memory.heapUsed":"133201768","memory.heapTotal":"147304448"},"startTime":1772031442556,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":227181,"timestamp":37966731641,"id":116,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442331,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":37966958924,"id":127,"parentId":116,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"749875200","memory.heapUsed":"133265744","memory.heapTotal":"147304448"},"startTime":1772031442559,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":181933,"timestamp":37966781990,"id":118,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442382,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":14,"timestamp":37966964057,"id":130,"parentId":118,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"750137344","memory.heapUsed":"133472512","memory.heapTotal":"147304448"},"startTime":1772031442564,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":5264,"timestamp":37966961073,"id":129,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442561,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":143698,"timestamp":37966869929,"id":120,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442470,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":37967013748,"id":133,"parentId":120,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"753414144","memory.heapUsed":"130607472","memory.heapTotal":"149139456"},"startTime":1772031442613,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":8882,"timestamp":37967008347,"id":132,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442608,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":46442,"timestamp":37967015412,"id":135,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442615,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":39284,"timestamp":37967057764,"id":137,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031442657,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":233271,"timestamp":37966907938,"id":123,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442508,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":37967141301,"id":138,"parentId":123,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"756166656","memory.heapUsed":"132335360","memory.heapTotal":"151236608"},"startTime":1772031442741,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":190972,"timestamp":37966959834,"id":128,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442559,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":32,"timestamp":37967150990,"id":139,"parentId":128,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"756166656","memory.heapUsed":"132430184","memory.heapTotal":"151236608"},"startTime":1772031442751,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":146618,"timestamp":37967007729,"id":131,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442607,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":13,"timestamp":37967154471,"id":140,"parentId":131,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"756166656","memory.heapUsed":"132490480","memory.heapTotal":"151236608"},"startTime":1772031442754,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":142369,"timestamp":37967014483,"id":134,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442614,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":37967156956,"id":141,"parentId":134,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"756166656","memory.heapUsed":"132538312","memory.heapTotal":"151236608"},"startTime":1772031442757,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":101749,"timestamp":37967056895,"id":136,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031442656,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":37967158753,"id":142,"parentId":136,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"756166656","memory.heapUsed":"132582120","memory.heapTotal":"151236608"},"startTime":1772031442758,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1220,"timestamp":38027269068,"id":144,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031502869,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":11000,"timestamp":38027248151,"id":145,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772031502997,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":130202,"timestamp":38027268208,"id":143,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031502868,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":38027398484,"id":146,"parentId":143,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"748834816","memory.heapUsed":"142156416","memory.heapTotal":"156893184"},"startTime":1772031502998,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1015,"timestamp":38046076269,"id":148,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031521676,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":15000,"timestamp":38046053519,"id":149,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772031521774,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":101122,"timestamp":38046075766,"id":147,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772031521675,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":38046176957,"id":150,"parentId":147,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"776884224","memory.heapUsed":"152765384","memory.heapTotal":"165847040"},"startTime":1772031521777,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":10442,"timestamp":38175608918,"id":152,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772031651208,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":103559,"timestamp":38175608256,"id":151,"tags":{"url":"/api/auth/login"},"startTime":1772031651208,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":38175711908,"id":153,"parentId":151,"tags":{"url":"/api/auth/login","memory.rss":"737165312","memory.heapUsed":"141065552","memory.heapTotal":"146882560"},"startTime":1772031651311,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":2621,"timestamp":38187614253,"id":155,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772031663214,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":92339,"timestamp":38187612501,"id":154,"tags":{"url":"/api/auth/login"},"startTime":1772031663212,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":4,"timestamp":38187704935,"id":156,"parentId":154,"tags":{"url":"/api/auth/login","memory.rss":"738406400","memory.heapUsed":"141737880","memory.heapTotal":"146358272"},"startTime":1772031663305,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":289,"timestamp":38187708879,"id":157,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031663308,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":120,"timestamp":38187709204,"id":158,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031663309,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":140,"timestamp":38187709747,"id":159,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031663309,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":131,"timestamp":38187709915,"id":160,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031663309,"traceId":"b07eb032dcd211b8"}] -[{"name":"ensure-page","duration":2305,"timestamp":38187712258,"id":162,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772031663312,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1003,"timestamp":38187714856,"id":163,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772031663314,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":85539,"timestamp":38187711701,"id":161,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772031663311,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":11,"timestamp":38187797338,"id":164,"parentId":161,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"743899136","memory.heapUsed":"144938328","memory.heapTotal":"154030080"},"startTime":1772031663397,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":315,"timestamp":38187808871,"id":165,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031663408,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":205,"timestamp":38187809240,"id":166,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031663409,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":168,"timestamp":38187810016,"id":167,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031663410,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":184,"timestamp":38187810241,"id":168,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031663410,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1460,"timestamp":38187811644,"id":170,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772031663411,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1438,"timestamp":38187813304,"id":171,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772031663413,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":87724,"timestamp":38187810992,"id":169,"tags":{"url":"/dashboard"},"startTime":1772031663411,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":38187898801,"id":172,"parentId":169,"tags":{"url":"/dashboard","memory.rss":"748847104","memory.heapUsed":"150229272","memory.heapTotal":"160514048"},"startTime":1772031663498,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1347,"timestamp":38191930761,"id":174,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772031667530,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":125042,"timestamp":38191930046,"id":173,"tags":{"url":"/login"},"startTime":1772031667530,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":38192055178,"id":175,"parentId":173,"tags":{"url":"/login","memory.rss":"781217792","memory.heapUsed":"160077200","memory.heapTotal":"177090560"},"startTime":1772031667655,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":63000,"timestamp":38302423653,"id":176,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772031778114,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":56000,"timestamp":38435420129,"id":177,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":false},"startTime":1772031911107,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":51000,"timestamp":38452097110,"id":178,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772031927777,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":17858,"timestamp":38462294887,"id":180,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772031937894,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":97155,"timestamp":38462293982,"id":179,"tags":{"url":"/api/auth/login"},"startTime":1772031937894,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":15,"timestamp":38462391223,"id":181,"parentId":179,"tags":{"url":"/api/auth/login","memory.rss":"773496832","memory.heapUsed":"161708976","memory.heapTotal":"166346752"},"startTime":1772031937991,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1033,"timestamp":38476185360,"id":183,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772031951785,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":78412,"timestamp":38476184746,"id":182,"tags":{"url":"/api/auth/login"},"startTime":1772031951784,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":5,"timestamp":38476263221,"id":184,"parentId":182,"tags":{"url":"/api/auth/login","memory.rss":"775475200","memory.heapUsed":"162021992","memory.heapTotal":"166871040"},"startTime":1772031951863,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":182,"timestamp":38476266728,"id":185,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031951866,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":140,"timestamp":38476266944,"id":186,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031951867,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":172,"timestamp":38476267615,"id":187,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031951867,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":135,"timestamp":38476267824,"id":188,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031951867,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":2237,"timestamp":38476269047,"id":190,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772031951869,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":860,"timestamp":38476271556,"id":191,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772031951871,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":22654,"timestamp":38476268437,"id":189,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772031951868,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":18,"timestamp":38476291229,"id":192,"parentId":189,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"775868416","memory.heapUsed":"162768776","memory.heapTotal":"167395328"},"startTime":1772031951891,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":212,"timestamp":38476306398,"id":193,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031951906,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":157,"timestamp":38476306650,"id":194,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031951906,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":288,"timestamp":38476307339,"id":195,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031951907,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":184,"timestamp":38476307667,"id":196,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772031951907,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":868,"timestamp":38476308598,"id":198,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772031951908,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1604,"timestamp":38476309595,"id":199,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772031951909,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":47795,"timestamp":38476308235,"id":197,"tags":{"url":"/dashboard"},"startTime":1772031951908,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":38476356132,"id":200,"parentId":197,"tags":{"url":"/dashboard","memory.rss":"777179136","memory.heapUsed":"164388728","memory.heapTotal":"170254336"},"startTime":1772031951956,"traceId":"b07eb032dcd211b8"},{"name":"compile-path","duration":9360,"timestamp":38617835341,"id":203,"tags":{"trigger":"/"},"startTime":1772032093435,"traceId":"b07eb032dcd211b8"}] -[{"name":"handle-request","duration":138655,"timestamp":38617834098,"id":201,"tags":{"url":"/"},"startTime":1772032093434,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":38617972903,"id":204,"parentId":201,"tags":{"url":"/","memory.rss":"800538624","memory.heapUsed":"169325736","memory.heapTotal":"173912064"},"startTime":1772032093572,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":10373,"timestamp":38623849548,"id":206,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772032099449,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":243468,"timestamp":38623848903,"id":205,"tags":{"url":"/login"},"startTime":1772032099448,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":38624092479,"id":207,"parentId":205,"tags":{"url":"/login","memory.rss":"813060096","memory.heapUsed":"173682312","memory.heapTotal":"197824512"},"startTime":1772032099692,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":21177,"timestamp":38625834298,"id":209,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772032101434,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":124694,"timestamp":38625832531,"id":208,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772032101432,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":38625957294,"id":210,"parentId":208,"tags":{"url":"/register?_rsc=5c339","memory.rss":"828510208","memory.heapUsed":"186110456","memory.heapTotal":"204652544"},"startTime":1772032101557,"traceId":"b07eb032dcd211b8"},{"name":"compile-path","duration":13536,"timestamp":38652099995,"id":213,"tags":{"trigger":"/api/auth/register"},"startTime":1772032127700,"traceId":"b07eb032dcd211b8"}] -[{"name":"handle-request","duration":116285,"timestamp":38652099393,"id":211,"tags":{"url":"/api/auth/register"},"startTime":1772032127699,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":5,"timestamp":38652215749,"id":214,"parentId":211,"tags":{"url":"/api/auth/register","memory.rss":"793464832","memory.heapUsed":"176132800","memory.heapTotal":"181923840"},"startTime":1772032127815,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":233,"timestamp":38652221819,"id":215,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032127821,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":156,"timestamp":38652222093,"id":216,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032127822,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":182,"timestamp":38652222736,"id":217,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032127822,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":286,"timestamp":38652222951,"id":218,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032127823,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1881,"timestamp":38652224765,"id":220,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772032127824,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":2691,"timestamp":38652227046,"id":221,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772032127827,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":37028,"timestamp":38652223524,"id":219,"tags":{"url":"/dashboard?_rsc=1x908"},"startTime":1772032127823,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":11,"timestamp":38652260666,"id":222,"parentId":219,"tags":{"url":"/dashboard?_rsc=1x908","memory.rss":"793989120","memory.heapUsed":"176999880","memory.heapTotal":"182448128"},"startTime":1772032127860,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":318,"timestamp":38652278955,"id":223,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032127879,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":237,"timestamp":38652279325,"id":224,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032127879,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":222,"timestamp":38652280464,"id":225,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032127880,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":214,"timestamp":38652280731,"id":226,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032127880,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1155,"timestamp":38652281593,"id":228,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772032127881,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1503,"timestamp":38652282911,"id":229,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772032127882,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":77019,"timestamp":38652281144,"id":227,"tags":{"url":"/dashboard"},"startTime":1772032127881,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":19,"timestamp":38652358324,"id":230,"parentId":227,"tags":{"url":"/dashboard","memory.rss":"796479488","memory.heapUsed":"179077064","memory.heapTotal":"186380288"},"startTime":1772032127958,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1806,"timestamp":39204551040,"id":232,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772032680151,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":70185,"timestamp":39204550048,"id":231,"tags":{"url":"/login"},"startTime":1772032680150,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":39204620367,"id":233,"parentId":231,"tags":{"url":"/login","memory.rss":"818085888","memory.heapUsed":"180967632","memory.heapTotal":"185831424"},"startTime":1772032680220,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1551,"timestamp":39222654782,"id":235,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772032698254,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":17085,"timestamp":39222654211,"id":234,"tags":{"url":"/api/auth/login"},"startTime":1772032698254,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":39222671400,"id":236,"parentId":234,"tags":{"url":"/api/auth/login","memory.rss":"818970624","memory.heapUsed":"183202288","memory.heapTotal":"187609088"},"startTime":1772032698271,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":3981,"timestamp":39226947933,"id":238,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772032702548,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":38619,"timestamp":39226945937,"id":237,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772032702546,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":39226984653,"id":239,"parentId":237,"tags":{"url":"/register?_rsc=5c339","memory.rss":"818962432","memory.heapUsed":"183716336","memory.heapTotal":"189444096"},"startTime":1772032702584,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":956,"timestamp":39251122749,"id":241,"parentId":3,"tags":{"inputPage":"/api/auth/register/route"},"startTime":1772032726722,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":85908,"timestamp":39251122086,"id":240,"tags":{"url":"/api/auth/register"},"startTime":1772032726722,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":39251208088,"id":242,"parentId":240,"tags":{"url":"/api/auth/register","memory.rss":"818761728","memory.heapUsed":"184203392","memory.heapTotal":"189181952"},"startTime":1772032726808,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":204,"timestamp":39251216340,"id":243,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032726816,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":144,"timestamp":39251216582,"id":244,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032726816,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":196,"timestamp":39251217228,"id":245,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032726817,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":156,"timestamp":39251217469,"id":246,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032726817,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":3093,"timestamp":39251218548,"id":248,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772032726818,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1819,"timestamp":39251221835,"id":249,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772032726821,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":30482,"timestamp":39251217849,"id":247,"tags":{"url":"/dashboard?_rsc=1x908"},"startTime":1772032726817,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":39251248418,"id":250,"parentId":247,"tags":{"url":"/dashboard?_rsc=1x908","memory.rss":"819417088","memory.heapUsed":"184855664","memory.heapTotal":"189706240"},"startTime":1772032726848,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":358,"timestamp":39251259792,"id":251,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032726859,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":289,"timestamp":39251260223,"id":252,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032726860,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":260,"timestamp":39251261282,"id":253,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032726861,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":162,"timestamp":39251261588,"id":254,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772032726861,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1078,"timestamp":39251262478,"id":256,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772032726862,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":974,"timestamp":39251263703,"id":257,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772032726863,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":62618,"timestamp":39251261960,"id":255,"tags":{"url":"/dashboard"},"startTime":1772032726862,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":15,"timestamp":39251324751,"id":258,"parentId":255,"tags":{"url":"/dashboard","memory.rss":"820203520","memory.heapUsed":"186527984","memory.heapTotal":"191016960"},"startTime":1772032726924,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1735,"timestamp":39259064458,"id":260,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772032734664,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":69536,"timestamp":39259063633,"id":259,"tags":{"url":"/login"},"startTime":1772032734663,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":39259133265,"id":261,"parentId":259,"tags":{"url":"/login","memory.rss":"820183040","memory.heapUsed":"182019216","memory.heapTotal":"190820352"},"startTime":1772032734733,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":822,"timestamp":39273331338,"id":263,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772032748931,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":19037,"timestamp":39273330791,"id":262,"tags":{"url":"/api/auth/login"},"startTime":1772032748930,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":11,"timestamp":39273349935,"id":264,"parentId":262,"tags":{"url":"/api/auth/login","memory.rss":"821915648","memory.heapUsed":"183454624","memory.heapTotal":"190820352"},"startTime":1772032748950,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":53201,"timestamp":39976854581,"id":266,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772033452454,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":224280,"timestamp":39976852405,"id":265,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772033452452,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":39977076769,"id":267,"parentId":265,"tags":{"url":"/register?_rsc=5c339","memory.rss":"810369024","memory.heapUsed":"194421936","memory.heapTotal":"199507968"},"startTime":1772033452676,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1455,"timestamp":39999051253,"id":269,"parentId":3,"tags":{"inputPage":"/api/auth/register/route"},"startTime":1772033474651,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":78572,"timestamp":39999050871,"id":268,"tags":{"url":"/api/auth/register"},"startTime":1772033474650,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":8,"timestamp":39999129521,"id":270,"parentId":268,"tags":{"url":"/api/auth/register","memory.rss":"811413504","memory.heapUsed":"195259312","memory.heapTotal":"199770112"},"startTime":1772033474729,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":1403,"timestamp":40001409269,"id":272,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772033477009,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":30537,"timestamp":40001408496,"id":271,"tags":{"url":"/login?_rsc=1x908"},"startTime":1772033477008,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":40001439123,"id":273,"parentId":271,"tags":{"url":"/login?_rsc=1x908","memory.rss":"831336448","memory.heapUsed":"196191008","memory.heapTotal":"202072064"},"startTime":1772033477039,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":46000,"timestamp":40128335064,"id":274,"parentId":3,"tags":{"updatedModules":["[project]/src/components/register-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772033604010,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":99000,"timestamp":40184525492,"id":275,"parentId":3,"tags":{"updatedModules":["[project]/src/components/register-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772033660254,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":47000,"timestamp":40194304073,"id":276,"parentId":3,"tags":{"updatedModules":["[project]/src/components/register-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772033669980,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":44000,"timestamp":40219568156,"id":277,"parentId":3,"tags":{"updatedModules":["[project]/src/components/register-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772033695242,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":17723,"timestamp":40269147137,"id":279,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1772033744747,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":161152,"timestamp":40269145146,"id":278,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772033744745,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":40269306366,"id":280,"parentId":278,"tags":{"url":"/register?_rsc=5c339","memory.rss":"821972992","memory.heapUsed":"194054600","memory.heapTotal":"211857408"},"startTime":1772033744906,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":933,"timestamp":40293429476,"id":282,"parentId":3,"tags":{"inputPage":"/api/auth/register/route"},"startTime":1772033769029,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":91142,"timestamp":40293428913,"id":281,"tags":{"url":"/api/auth/register"},"startTime":1772033769028,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":7,"timestamp":40293520134,"id":283,"parentId":281,"tags":{"url":"/api/auth/register","memory.rss":"811483136","memory.heapUsed":"189725904","memory.heapTotal":"197259264"},"startTime":1772033769120,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":4284,"timestamp":40296544557,"id":285,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772033772144,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":46407,"timestamp":40296542717,"id":284,"tags":{"url":"/login?_rsc=1x908"},"startTime":1772033772142,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":6,"timestamp":40296589192,"id":286,"parentId":284,"tags":{"url":"/login?_rsc=1x908","memory.rss":"831143936","memory.heapUsed":"190391840","memory.heapTotal":"197783552"},"startTime":1772033772189,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":744,"timestamp":40314486820,"id":288,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772033790086,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":16181,"timestamp":40314486128,"id":287,"tags":{"url":"/api/auth/login"},"startTime":1772033790086,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":21,"timestamp":40314502491,"id":289,"parentId":287,"tags":{"url":"/api/auth/login","memory.rss":"812011520","memory.heapUsed":"191024264","memory.heapTotal":"196997120"},"startTime":1772033790102,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":33000,"timestamp":40400380267,"id":290,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772033876050,"traceId":"b07eb032dcd211b8"},{"name":"client-hmr-latency","duration":17000,"timestamp":40400445563,"id":291,"parentId":3,"tags":{"updatedModules":["[project]/src/components/register-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772033876091,"traceId":"b07eb032dcd211b8"},{"name":"compile-path","duration":454007,"timestamp":41388873359,"id":292,"tags":{"trigger":"middleware"},"startTime":1772034864473,"traceId":"b07eb032dcd211b8"}] -[{"name":"ensure-page","duration":12867,"timestamp":41389340963,"id":294,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034864941,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":247161,"timestamp":41389340231,"id":293,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034864940,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":41389587483,"id":295,"parentId":293,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"863100928","memory.heapUsed":"202710272","memory.heapTotal":"211165184"},"startTime":1772034865187,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":5333,"timestamp":41389591715,"id":297,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865191,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":46905,"timestamp":41389594957,"id":299,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865195,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":54379,"timestamp":41389640565,"id":301,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865240,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":54006,"timestamp":41389692296,"id":303,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865292,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":60284,"timestamp":41389743692,"id":305,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865343,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":80952,"timestamp":41389800179,"id":307,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865400,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":334437,"timestamp":41389591047,"id":296,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865191,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":41389925581,"id":308,"parentId":296,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"868560896","memory.heapUsed":"202986360","memory.heapTotal":"217047040"},"startTime":1772034865525,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":335470,"timestamp":41389594064,"id":298,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865194,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":13,"timestamp":41389929638,"id":309,"parentId":298,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"868560896","memory.heapUsed":"203110832","memory.heapTotal":"217047040"},"startTime":1772034865529,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":293218,"timestamp":41389640072,"id":300,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865240,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":27,"timestamp":41389933502,"id":310,"parentId":300,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"868560896","memory.heapUsed":"203180848","memory.heapTotal":"217047040"},"startTime":1772034865533,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":248690,"timestamp":41389691462,"id":302,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865291,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":12,"timestamp":41389940241,"id":313,"parentId":302,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"868823040","memory.heapUsed":"203606848","memory.heapTotal":"217284608"},"startTime":1772034865540,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":5790,"timestamp":41389935723,"id":312,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865535,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":257036,"timestamp":41389742460,"id":304,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865342,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":15,"timestamp":41389999640,"id":316,"parentId":304,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"870264832","memory.heapUsed":"203049824","memory.heapTotal":"217284608"},"startTime":1772034865599,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":8271,"timestamp":41389994813,"id":315,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865594,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":249898,"timestamp":41389798449,"id":306,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865398,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":12,"timestamp":41390048502,"id":319,"parentId":306,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"872099840","memory.heapUsed":"203087080","memory.heapTotal":"225673216"},"startTime":1772034865648,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":50651,"timestamp":41390001165,"id":318,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865601,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":35367,"timestamp":41390050032,"id":321,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865650,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":4775,"timestamp":41390119760,"id":323,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865719,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":47103,"timestamp":41390122917,"id":325,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865722,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":276140,"timestamp":41389934533,"id":311,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865534,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":12,"timestamp":41390210969,"id":326,"parentId":311,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"875769856","memory.heapUsed":"207334984","memory.heapTotal":"225673216"},"startTime":1772034865811,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":228824,"timestamp":41389993127,"id":314,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865593,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":41390222071,"id":327,"parentId":314,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"875769856","memory.heapUsed":"207491096","memory.heapTotal":"225673216"},"startTime":1772034865822,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":227908,"timestamp":41390000398,"id":317,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865600,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":11,"timestamp":41390228415,"id":328,"parentId":317,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"875769856","memory.heapUsed":"207569288","memory.heapTotal":"225673216"},"startTime":1772034865828,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":186652,"timestamp":41390048989,"id":320,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865649,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":41390235750,"id":331,"parentId":320,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"875769856","memory.heapUsed":"207874848","memory.heapTotal":"225673216"},"startTime":1772034865835,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":8301,"timestamp":41390230724,"id":330,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865830,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":37217,"timestamp":41390236883,"id":333,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865836,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":47543,"timestamp":41390272597,"id":335,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865872,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":237185,"timestamp":41390118568,"id":322,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865718,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":10,"timestamp":41390355872,"id":336,"parentId":322,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"881668096","memory.heapUsed":"210119624","memory.heapTotal":"227713024"},"startTime":1772034865955,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":236610,"timestamp":41390122195,"id":324,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865722,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":9,"timestamp":41390358917,"id":339,"parentId":324,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"881668096","memory.heapUsed":"210258808","memory.heapTotal":"227713024"},"startTime":1772034865958,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":4569,"timestamp":41390357158,"id":338,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865957,"traceId":"b07eb032dcd211b8"},{"name":"ensure-page","duration":3345,"timestamp":41390399549,"id":341,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772034865999,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":229051,"timestamp":41390230092,"id":329,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865830,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":13,"timestamp":41390459273,"id":342,"parentId":329,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"884027392","memory.heapUsed":"209832584","memory.heapTotal":"229810176"},"startTime":1772034866059,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":225651,"timestamp":41390236161,"id":332,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865836,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":12,"timestamp":41390461942,"id":343,"parentId":332,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"884158464","memory.heapUsed":"209875672","memory.heapTotal":"229810176"},"startTime":1772034866062,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":117882,"timestamp":41390356513,"id":337,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865956,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":14,"timestamp":41390474548,"id":344,"parentId":337,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"884158464","memory.heapUsed":"209940280","memory.heapTotal":"229810176"},"startTime":1772034866074,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":203819,"timestamp":41390271999,"id":334,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865872,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":13,"timestamp":41390475947,"id":345,"parentId":334,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"884158464","memory.heapUsed":"209981296","memory.heapTotal":"229810176"},"startTime":1772034866076,"traceId":"b07eb032dcd211b8"},{"name":"handle-request","duration":80936,"timestamp":41390398783,"id":340,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772034865998,"traceId":"b07eb032dcd211b8"},{"name":"memory-usage","duration":11,"timestamp":41390479838,"id":346,"parentId":340,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"884158464","memory.heapUsed":"210030512","memory.heapTotal":"229810176"},"startTime":1772034866079,"traceId":"b07eb032dcd211b8"},{"name":"compile-path","duration":11963,"timestamp":41401788830,"id":347,"tags":{"trigger":"middleware"},"startTime":1772034877388,"traceId":"b07eb032dcd211b8"}] -[{"name":"compile-path","duration":33593,"timestamp":41438353210,"id":348,"tags":{"trigger":"middleware"},"startTime":1772034913953,"traceId":"b07eb032dcd211b8"}] -[{"name":"hot-reloader","duration":59,"timestamp":41478838758,"id":3,"tags":{"version":"16.1.6"},"startTime":1772034954438,"traceId":"ee99fc954e71cb92"},{"name":"compile-path","duration":10256,"timestamp":41478907975,"id":4,"tags":{"trigger":"middleware"},"startTime":1772034954508,"traceId":"ee99fc954e71cb92"}] -[{"name":"setup-dev-bundler","duration":250340,"timestamp":41478754781,"id":2,"parentId":1,"tags":{},"startTime":1772034954354,"traceId":"ee99fc954e71cb92"},{"name":"start-dev-server","duration":781567,"timestamp":41478309422,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7470641152","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"357638144","memory.heapTotal":"89853952","memory.heapUsed":"64891864"},"startTime":1772034953909,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":104671,"timestamp":41479177327,"id":5,"tags":{"url":"/login"},"startTime":1772034954777,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":5090,"timestamp":41479292219,"id":6,"tags":{"url":"/dashboard"},"startTime":1772034954892,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":2200,"timestamp":41479298844,"id":7,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034954898,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":179,"timestamp":41479301134,"id":8,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034954901,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":204,"timestamp":41479302057,"id":9,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034954902,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":302,"timestamp":41479302663,"id":10,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034954902,"traceId":"ee99fc954e71cb92"},{"name":"compile-path","duration":152840,"timestamp":41479306147,"id":13,"tags":{"trigger":"/_not-found/page"},"startTime":1772034954906,"traceId":"ee99fc954e71cb92"}] -[{"name":"ensure-page","duration":2192,"timestamp":41479462278,"id":14,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772034955062,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":767659,"timestamp":41479304289,"id":11,"tags":{"url":"/dashboard"},"startTime":1772034954904,"traceId":"ee99fc954e71cb92"},{"name":"memory-usage","duration":24,"timestamp":41480072252,"id":15,"parentId":11,"tags":{"url":"/dashboard","memory.rss":"523165696","memory.heapUsed":"87877944","memory.heapTotal":"117944320"},"startTime":1772034955672,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":8355,"timestamp":41484446327,"id":16,"tags":{"url":"/dashboard"},"startTime":1772034960046,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":395,"timestamp":41484455836,"id":17,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034960055,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":295,"timestamp":41484456308,"id":18,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034960056,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":567,"timestamp":41484457360,"id":19,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034960057,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":283,"timestamp":41484457986,"id":20,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034960058,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":1480,"timestamp":41484459768,"id":22,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772034960059,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":1449,"timestamp":41484461480,"id":23,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772034960061,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":54319,"timestamp":41484458940,"id":21,"tags":{"url":"/dashboard"},"startTime":1772034960059,"traceId":"ee99fc954e71cb92"},{"name":"memory-usage","duration":9,"timestamp":41484513357,"id":24,"parentId":21,"tags":{"url":"/dashboard","memory.rss":"601567232","memory.heapUsed":"91919272","memory.heapTotal":"125259776"},"startTime":1772034960113,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":6187,"timestamp":41489962555,"id":25,"tags":{"url":"/login"},"startTime":1772034965562,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":4320,"timestamp":41489973713,"id":26,"tags":{"url":"/dashboard"},"startTime":1772034965573,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":247,"timestamp":41489978811,"id":27,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034965578,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":194,"timestamp":41489979114,"id":28,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034965579,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":243,"timestamp":41489979941,"id":29,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034965580,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":185,"timestamp":41489980226,"id":30,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772034965580,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":1581,"timestamp":41489981141,"id":32,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772034965581,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":2031,"timestamp":41489983069,"id":33,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772034965583,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":47607,"timestamp":41489980613,"id":31,"tags":{"url":"/dashboard"},"startTime":1772034965580,"traceId":"ee99fc954e71cb92"},{"name":"memory-usage","duration":10,"timestamp":41490028342,"id":34,"parentId":31,"tags":{"url":"/dashboard","memory.rss":"600494080","memory.heapUsed":"101627224","memory.heapTotal":"126251008"},"startTime":1772034965628,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":6506,"timestamp":41576343044,"id":35,"tags":{"url":"/dashboard"},"startTime":1772035051943,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":501,"timestamp":41576354999,"id":36,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772035051955,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":255,"timestamp":41576355574,"id":37,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772035051955,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":335,"timestamp":41576358891,"id":38,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772035051958,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":190,"timestamp":41576359268,"id":39,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772035051959,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":5448,"timestamp":41576361020,"id":41,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772035051961,"traceId":"ee99fc954e71cb92"},{"name":"ensure-page","duration":2753,"timestamp":41576367464,"id":42,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772035051967,"traceId":"ee99fc954e71cb92"},{"name":"handle-request","duration":72396,"timestamp":41576359892,"id":40,"tags":{"url":"/dashboard"},"startTime":1772035051959,"traceId":"ee99fc954e71cb92"},{"name":"memory-usage","duration":8,"timestamp":41576432404,"id":43,"parentId":40,"tags":{"url":"/dashboard","memory.rss":"531664896","memory.heapUsed":"87545200","memory.heapTotal":"91205632"},"startTime":1772035052032,"traceId":"ee99fc954e71cb92"},{"name":"compile-path","duration":4263,"timestamp":42478107593,"id":44,"tags":{"trigger":"middleware"},"startTime":1772035953707,"traceId":"ee99fc954e71cb92"}] -[{"name":"client-hmr-latency","duration":556000,"timestamp":42478076808,"id":46,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1772035994446,"traceId":"ee99fc954e71cb92"},{"name":"compile-path","duration":17195,"timestamp":42518843981,"id":45,"tags":{"trigger":"middleware"},"startTime":1772035994444,"traceId":"ee99fc954e71cb92"}] -[{"name":"hot-reloader","duration":89,"timestamp":42521893961,"id":3,"tags":{"version":"16.1.6"},"startTime":1772035997494,"traceId":"69f8777e727bcddc"},{"name":"compile-path","duration":11892,"timestamp":42521962158,"id":4,"tags":{"trigger":"middleware"},"startTime":1772035997562,"traceId":"69f8777e727bcddc"}] -[{"name":"setup-dev-bundler","duration":231336,"timestamp":42521812280,"id":2,"parentId":1,"tags":{},"startTime":1772035997412,"traceId":"69f8777e727bcddc"},{"name":"start-dev-server","duration":749020,"timestamp":42521367759,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6725791744","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"349118464","memory.heapTotal":"89591808","memory.heapUsed":"64925472"},"startTime":1772035996968,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":81058,"timestamp":42530460085,"id":5,"tags":{"url":"/"},"startTime":1772036006060,"traceId":"69f8777e727bcddc"},{"name":"compile-path","duration":65505,"timestamp":42530544173,"id":8,"tags":{"trigger":"/"},"startTime":1772036006144,"traceId":"69f8777e727bcddc"}] -[{"name":"handle-request","duration":380766,"timestamp":42530542915,"id":6,"tags":{"url":"/"},"startTime":1772036006142,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":12,"timestamp":42530923890,"id":9,"parentId":6,"tags":{"url":"/","memory.rss":"503320576","memory.heapUsed":"84993432","memory.heapTotal":"124063744"},"startTime":1772036006523,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":6930,"timestamp":42535350628,"id":10,"tags":{"url":"/login"},"startTime":1772036010950,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":6048,"timestamp":42535381449,"id":11,"tags":{"url":"/dashboard"},"startTime":1772036010981,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":699,"timestamp":42535388851,"id":12,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772036010988,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":256,"timestamp":42535389627,"id":13,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772036010989,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":371,"timestamp":42535390841,"id":14,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772036010990,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":188,"timestamp":42535391271,"id":15,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772036010991,"traceId":"69f8777e727bcddc"},{"name":"compile-path","duration":22008,"timestamp":42535394465,"id":18,"tags":{"trigger":"/_not-found/page"},"startTime":1772036010994,"traceId":"69f8777e727bcddc"}] -[{"name":"ensure-page","duration":1101,"timestamp":42535417376,"id":19,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772036011017,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":131231,"timestamp":42535392308,"id":16,"tags":{"url":"/dashboard"},"startTime":1772036010992,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":10,"timestamp":42535523648,"id":20,"parentId":16,"tags":{"url":"/dashboard","memory.rss":"585682944","memory.heapUsed":"99521784","memory.heapTotal":"130764800"},"startTime":1772036011123,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":3796,"timestamp":42538072779,"id":21,"tags":{"url":"/"},"startTime":1772036013672,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":750,"timestamp":42538077887,"id":23,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772036013677,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":53796,"timestamp":42538077346,"id":22,"tags":{"url":"/"},"startTime":1772036013677,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":9,"timestamp":42538131252,"id":24,"parentId":22,"tags":{"url":"/","memory.rss":"595382272","memory.heapUsed":"101999104","memory.heapTotal":"136474624"},"startTime":1772036013731,"traceId":"69f8777e727bcddc"},{"name":"compile-path","duration":555370,"timestamp":42576597627,"id":25,"tags":{"trigger":"proxy"},"startTime":1772036052197,"traceId":"69f8777e727bcddc"}] -[{"name":"ensure-page","duration":6100,"timestamp":42577207312,"id":26,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036052807,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":11201,"timestamp":42577216039,"id":28,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036052816,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":9822,"timestamp":42577230136,"id":29,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036052830,"traceId":"69f8777e727bcddc"},{"name":"compile-path","duration":2426171,"timestamp":42577367522,"id":31,"tags":{"trigger":"/_error"},"startTime":1772036052967,"traceId":"69f8777e727bcddc"}] -[{"name":"handle-request","duration":2963757,"timestamp":42577213692,"id":27,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772036052813,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":7,"timestamp":42580177582,"id":32,"parentId":27,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"840544256","memory.heapUsed":"109491680","memory.heapTotal":"129343488"},"startTime":1772036055777,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":2916,"timestamp":42580178977,"id":34,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772036055779,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":2156,"timestamp":42580182125,"id":35,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772036055782,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":56170,"timestamp":42580177805,"id":33,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772036055777,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":9,"timestamp":42580234112,"id":36,"parentId":33,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"842903552","memory.heapUsed":"112294568","memory.heapTotal":"129605632"},"startTime":1772036055834,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":5545,"timestamp":42580236967,"id":37,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055837,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":6839,"timestamp":42580244930,"id":39,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055845,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":6320,"timestamp":42580248330,"id":40,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055848,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":8121,"timestamp":42580256771,"id":42,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055856,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":4437,"timestamp":42580261806,"id":43,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055861,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":9093,"timestamp":42580263696,"id":44,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055863,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":13099,"timestamp":42580267202,"id":46,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055867,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":11386,"timestamp":42580270272,"id":47,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055870,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":14416,"timestamp":42580279163,"id":49,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055879,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":17408,"timestamp":42580282778,"id":51,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055882,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":9814,"timestamp":42580291713,"id":52,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055891,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":13839,"timestamp":42580298385,"id":54,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055898,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":13915,"timestamp":42580302545,"id":56,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055902,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":8867,"timestamp":42580308688,"id":57,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055908,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":13950,"timestamp":42580315377,"id":59,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055915,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":15060,"timestamp":42580318766,"id":61,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055918,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":8975,"timestamp":42580326242,"id":62,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055926,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":65819,"timestamp":42580278247,"id":48,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772036055878,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":127870,"timestamp":42580243091,"id":38,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772036055843,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":15,"timestamp":42580371165,"id":67,"parentId":38,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"849735680","memory.heapUsed":"112321384","memory.heapTotal":"129863680"},"startTime":1772036055971,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":39030,"timestamp":42580332607,"id":64,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055932,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":42066,"timestamp":42580337220,"id":66,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055937,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":87669,"timestamp":42580296842,"id":53,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772036055896,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":159179,"timestamp":42580254876,"id":41,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772036055854,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":10,"timestamp":42580414189,"id":70,"parentId":41,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"851177472","memory.heapUsed":"113850200","memory.heapTotal":"130363392"},"startTime":1772036056014,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":37588,"timestamp":42580377495,"id":69,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036055977,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":110545,"timestamp":42580314570,"id":58,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772036055914,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":183112,"timestamp":42580266370,"id":45,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772036055866,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":12,"timestamp":42580449626,"id":73,"parentId":45,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"852357120","memory.heapUsed":"115040384","memory.heapTotal":"130625536"},"startTime":1772036056049,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":36636,"timestamp":42580418351,"id":72,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036056018,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":130226,"timestamp":42580331841,"id":63,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772036055931,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":201224,"timestamp":42580281790,"id":50,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772036055881,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":11,"timestamp":42580483140,"id":75,"parentId":50,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"853929984","memory.heapUsed":"112364168","memory.heapTotal":"132460544"},"startTime":1772036056083,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":110899,"timestamp":42580375767,"id":68,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772036055975,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":204778,"timestamp":42580301697,"id":55,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772036055901,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":14,"timestamp":42580506669,"id":76,"parentId":55,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"854061056","memory.heapUsed":"113230040","memory.heapTotal":"132460544"},"startTime":1772036056106,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":92182,"timestamp":42580417440,"id":71,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772036056017,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":208761,"timestamp":42580317675,"id":60,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772036055917,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":18,"timestamp":42580526619,"id":77,"parentId":60,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"854323200","memory.heapUsed":"114061216","memory.heapTotal":"132460544"},"startTime":1772036056126,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":69476,"timestamp":42580458401,"id":74,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772036056058,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":209485,"timestamp":42580335504,"id":65,"tags":{"url":"/"},"startTime":1772036055935,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":9,"timestamp":42580545098,"id":78,"parentId":65,"tags":{"url":"/","memory.rss":"854454272","memory.heapUsed":"114926552","memory.heapTotal":"132460544"},"startTime":1772036056145,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":1849,"timestamp":42580545860,"id":80,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772036056145,"traceId":"69f8777e727bcddc"},{"name":"ensure-page","duration":2109,"timestamp":42580547964,"id":81,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772036056148,"traceId":"69f8777e727bcddc"},{"name":"handle-request","duration":112180,"timestamp":42580545312,"id":79,"tags":{"url":"/"},"startTime":1772036056145,"traceId":"69f8777e727bcddc"},{"name":"memory-usage","duration":14,"timestamp":42580657632,"id":82,"parentId":79,"tags":{"url":"/","memory.rss":"856158208","memory.heapUsed":"114447744","memory.heapTotal":"150286336"},"startTime":1772036056257,"traceId":"69f8777e727bcddc"},{"name":"navigation-to-hydration","duration":1440000,"timestamp":42580188875,"id":83,"parentId":3,"tags":{"pathname":"/","query":""},"startTime":1772036057232,"traceId":"69f8777e727bcddc"},{"name":"compile-path","duration":8602,"timestamp":42586366220,"id":84,"tags":{"trigger":"middleware"},"startTime":1772036061966,"traceId":"69f8777e727bcddc"}] -[{"name":"hot-reloader","duration":59,"timestamp":42603446326,"id":3,"tags":{"version":"16.1.6"},"startTime":1772036079046,"traceId":"1e20508449e0220a"},{"name":"compile-path","duration":18108,"timestamp":42603522586,"id":4,"tags":{"trigger":"proxy"},"startTime":1772036079122,"traceId":"1e20508449e0220a"}] -[{"name":"setup-dev-bundler","duration":253863,"timestamp":42603362077,"id":2,"parentId":1,"tags":{},"startTime":1772036078962,"traceId":"1e20508449e0220a"},{"name":"start-dev-server","duration":801662,"timestamp":42602908665,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6751141888","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"378687488","memory.heapTotal":"89853952","memory.heapUsed":"65243536"},"startTime":1772036078508,"traceId":"1e20508449e0220a"},{"name":"ensure-page","duration":1839,"timestamp":42603764399,"id":5,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036079364,"traceId":"1e20508449e0220a"},{"name":"ensure-page","duration":762,"timestamp":42603779070,"id":7,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036079379,"traceId":"1e20508449e0220a"},{"name":"ensure-page","duration":448,"timestamp":42603781960,"id":8,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036079382,"traceId":"1e20508449e0220a"},{"name":"compile-path","duration":93158,"timestamp":42603948798,"id":10,"tags":{"trigger":"/_error"},"startTime":1772036079548,"traceId":"1e20508449e0220a"}] -[{"name":"handle-request","duration":542758,"timestamp":42603767687,"id":6,"tags":{"url":"/"},"startTime":1772036079367,"traceId":"1e20508449e0220a"},{"name":"memory-usage","duration":8,"timestamp":42604310694,"id":11,"parentId":6,"tags":{"url":"/","memory.rss":"474820608","memory.heapUsed":"85286384","memory.heapTotal":"115597312"},"startTime":1772036079910,"traceId":"1e20508449e0220a"},{"name":"compile-path","duration":163198,"timestamp":42604312496,"id":14,"tags":{"trigger":"/_not-found/page"},"startTime":1772036079912,"traceId":"1e20508449e0220a"}] -[{"name":"hot-reloader","duration":111,"timestamp":42627822072,"id":3,"tags":{"version":"16.1.6"},"startTime":1772036103422,"traceId":"3b8c331447ab133f"},{"name":"compile-path","duration":37491,"timestamp":42627918927,"id":4,"tags":{"trigger":"proxy"},"startTime":1772036103519,"traceId":"3b8c331447ab133f"}] -[{"name":"hot-reloader","duration":67,"timestamp":42694935690,"id":3,"tags":{"version":"16.1.6"},"startTime":1772036170535,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":35865,"timestamp":42694998427,"id":4,"tags":{"trigger":"proxy"},"startTime":1772036170598,"traceId":"86d2e820c6b52a92"}] -[{"name":"setup-dev-bundler","duration":243899,"timestamp":42694856880,"id":2,"parentId":1,"tags":{},"startTime":1772036170456,"traceId":"86d2e820c6b52a92"},{"name":"start-dev-server","duration":764372,"timestamp":42694428120,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6761312256","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"431050752","memory.heapTotal":"89591808","memory.heapUsed":"64757720"},"startTime":1772036170028,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1654,"timestamp":42702729275,"id":5,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036178329,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":463,"timestamp":42702738452,"id":7,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036178338,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":255,"timestamp":42702739944,"id":8,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036178340,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":135591,"timestamp":42702732223,"id":6,"tags":{"url":"/"},"startTime":1772036178332,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":420986,"timestamp":42702875241,"id":11,"tags":{"trigger":"/"},"startTime":1772036178475,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":686263,"timestamp":42702873838,"id":9,"tags":{"url":"/"},"startTime":1772036178473,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":8,"timestamp":42703560276,"id":12,"parentId":9,"tags":{"url":"/","memory.rss":"543584256","memory.heapUsed":"83803864","memory.heapTotal":"121167872"},"startTime":1772036179160,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2309,"timestamp":42703632330,"id":13,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179232,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1585,"timestamp":42703635806,"id":15,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179235,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2669,"timestamp":42703639978,"id":16,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179240,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7524,"timestamp":42703641171,"id":17,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179241,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":16784,"timestamp":42703634842,"id":14,"tags":{"url":"/_next/static/chunks/%5Broot-of-the-server%5D__0f0ba101._.css"},"startTime":1772036179234,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7998,"timestamp":42703644282,"id":19,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179244,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6429,"timestamp":42703646830,"id":20,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179246,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4289,"timestamp":42703654123,"id":22,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179254,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4917,"timestamp":42703655544,"id":23,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179255,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7781,"timestamp":42703657254,"id":24,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179257,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":24029,"timestamp":42703642929,"id":18,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js"},"startTime":1772036179243,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6736,"timestamp":42703661471,"id":26,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179261,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7316,"timestamp":42703662811,"id":27,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179262,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5792,"timestamp":42703667417,"id":28,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179267,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":21352,"timestamp":42703653371,"id":21,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js"},"startTime":1772036179253,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6303,"timestamp":42703669503,"id":29,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179269,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6256,"timestamp":42703670719,"id":31,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179270,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3369,"timestamp":42703675144,"id":32,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179275,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":19464,"timestamp":42703660732,"id":25,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js"},"startTime":1772036179260,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4357,"timestamp":42703676374,"id":34,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179276,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2745,"timestamp":42703681452,"id":35,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179281,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":15183,"timestamp":42703670226,"id":30,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js"},"startTime":1772036179270,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2853,"timestamp":42703683521,"id":36,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179283,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":12168,"timestamp":42703675897,"id":33,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js"},"startTime":1772036179275,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3315,"timestamp":42703693698,"id":37,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179293,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4024,"timestamp":42703695206,"id":38,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179295,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3803,"timestamp":42703698339,"id":40,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179298,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3302,"timestamp":42703700211,"id":42,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179300,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2604,"timestamp":42703705757,"id":43,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179305,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":13131,"timestamp":42703697175,"id":39,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_client_17643121._.js"},"startTime":1772036179297,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4291,"timestamp":42703706811,"id":44,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179306,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":14285,"timestamp":42703699352,"id":41,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_f3530cac._.js"},"startTime":1772036179299,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2042,"timestamp":42703716724,"id":45,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179316,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1875,"timestamp":42703719680,"id":47,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179319,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3486,"timestamp":42703724499,"id":48,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179324,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":11137,"timestamp":42703718911,"id":46,"tags":{"url":"/_next/static/chunks/node_modules_%40swc_helpers_cjs_d80fb378._.js"},"startTime":1772036179318,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4828,"timestamp":42703726442,"id":49,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179326,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2133,"timestamp":42703731936,"id":51,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179332,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2522,"timestamp":42703736245,"id":52,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179336,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":9659,"timestamp":42703731394,"id":50,"tags":{"url":"/_next/static/chunks/_a0ff3932._.js"},"startTime":1772036179331,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3254,"timestamp":42703750260,"id":53,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179350,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3873,"timestamp":42703751674,"id":54,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179351,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4634,"timestamp":42703752702,"id":55,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179352,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4869,"timestamp":42703754087,"id":57,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179354,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5385,"timestamp":42703756133,"id":59,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179356,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5962,"timestamp":42703757948,"id":61,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179358,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4592,"timestamp":42703765085,"id":62,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179365,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":18489,"timestamp":42703753620,"id":56,"tags":{"url":"/_next/static/chunks/turbopack-_23a915ee._.js"},"startTime":1772036179353,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6130,"timestamp":42703766587,"id":63,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179366,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":18264,"timestamp":42703755670,"id":58,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_be32b49c._.js"},"startTime":1772036179355,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7126,"timestamp":42703768163,"id":64,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179368,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":20845,"timestamp":42703757459,"id":60,"tags":{"url":"/_next/static/chunks/src_app_favicon_ico_mjs_81d86e48._.js"},"startTime":1772036179357,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3141,"timestamp":42703791618,"id":65,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179391,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2172,"timestamp":42703795622,"id":67,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179395,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3291,"timestamp":42703799853,"id":68,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179399,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":9419,"timestamp":42703795037,"id":66,"tags":{"url":"/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"},"startTime":1772036179395,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1570,"timestamp":42703805291,"id":69,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179405,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5863,"timestamp":42703807424,"id":71,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179407,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5300,"timestamp":42703808923,"id":72,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179408,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4488,"timestamp":42703811052,"id":73,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179411,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4478,"timestamp":42703814715,"id":75,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179414,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3919,"timestamp":42703817135,"id":77,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179417,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3884,"timestamp":42703818404,"id":78,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179418,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":16349,"timestamp":42703806988,"id":70,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_2c670af9._.js"},"startTime":1772036179407,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4074,"timestamp":42703820295,"id":79,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179420,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4912,"timestamp":42703823681,"id":80,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179423,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":15658,"timestamp":42703814323,"id":74,"tags":{"url":"/_next/static/chunks/src_app_page_tsx_47b43e25._.js"},"startTime":1772036179414,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5604,"timestamp":42703824827,"id":82,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179424,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5111,"timestamp":42703826193,"id":83,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179426,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5480,"timestamp":42703827408,"id":84,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179427,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":18375,"timestamp":42703815704,"id":76,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"},"startTime":1772036179415,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3733,"timestamp":42703831946,"id":86,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179432,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2210,"timestamp":42703834913,"id":87,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179434,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":13999,"timestamp":42703824461,"id":81,"tags":{"url":"/next.svg"},"startTime":1772036179424,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1702,"timestamp":42703838931,"id":88,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179439,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":10680,"timestamp":42703831399,"id":85,"tags":{"url":"/vercel.svg"},"startTime":1772036179431,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3975,"timestamp":42703960722,"id":89,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179560,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3606,"timestamp":42703963556,"id":90,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179563,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3945,"timestamp":42703965440,"id":92,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179565,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2524,"timestamp":42703968142,"id":94,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179568,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5976,"timestamp":42703971918,"id":95,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179571,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":15010,"timestamp":42703964839,"id":91,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js"},"startTime":1772036179564,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3956,"timestamp":42703976560,"id":96,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179576,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":14824,"timestamp":42703967563,"id":93,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_c7192189._.js"},"startTime":1772036179567,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":946,"timestamp":42704008478,"id":97,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179608,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":764,"timestamp":42704010029,"id":99,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179610,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":845,"timestamp":42704011576,"id":100,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179611,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":3987,"timestamp":42704009519,"id":98,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_f3530cac._.js.map"},"startTime":1772036179609,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":749,"timestamp":42704089378,"id":101,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179689,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":978,"timestamp":42704090713,"id":103,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179690,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1275,"timestamp":42704093335,"id":104,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179693,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":5930,"timestamp":42704090238,"id":102,"tags":{"url":"/_next/static/chunks/%5Broot-of-the-server%5D__0f0ba101._.css.map"},"startTime":1772036179690,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1013,"timestamp":42704280597,"id":105,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179880,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1476,"timestamp":42704282323,"id":107,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179882,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":977,"timestamp":42704285806,"id":108,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036179885,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":6755,"timestamp":42704281736,"id":106,"tags":{"url":"/favicon.ico?favicon.0b3bf435.ico"},"startTime":1772036179881,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":815,"timestamp":42707876798,"id":109,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183476,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":795,"timestamp":42707878171,"id":111,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183478,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":736,"timestamp":42707879746,"id":112,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183479,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":5188,"timestamp":42707877711,"id":110,"tags":{"url":"/login"},"startTime":1772036183477,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":814,"timestamp":42707892650,"id":113,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183492,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1005,"timestamp":42707894065,"id":115,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183494,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":843,"timestamp":42707896134,"id":116,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183496,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":4839,"timestamp":42707893565,"id":114,"tags":{"url":"/dashboard"},"startTime":1772036183493,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1138,"timestamp":42707900530,"id":117,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772036183500,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":795,"timestamp":42707901912,"id":118,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772036183501,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":254,"timestamp":42707904319,"id":119,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772036183504,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":270,"timestamp":42707904631,"id":120,"parentId":3,"tags":{"inputPage":"/dashboard"},"startTime":1772036183504,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":13085,"timestamp":42707907448,"id":123,"tags":{"trigger":"/_not-found/page"},"startTime":1772036183507,"traceId":"86d2e820c6b52a92"}] -[{"name":"ensure-page","duration":1270,"timestamp":42707921441,"id":124,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772036183521,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":130031,"timestamp":42707905866,"id":121,"tags":{"url":"/dashboard"},"startTime":1772036183505,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":42708036018,"id":125,"parentId":121,"tags":{"url":"/dashboard","memory.rss":"618471424","memory.heapUsed":"102590848","memory.heapTotal":"133054464"},"startTime":1772036183636,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2465,"timestamp":42708132882,"id":126,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183732,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2226,"timestamp":42708134383,"id":127,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183734,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2330,"timestamp":42708135852,"id":129,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183735,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2116,"timestamp":42708137113,"id":131,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183737,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4023,"timestamp":42708140630,"id":132,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183740,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6639,"timestamp":42708141733,"id":133,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183741,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6847,"timestamp":42708142648,"id":134,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183742,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":15444,"timestamp":42708135446,"id":128,"tags":{"url":"/_next/static/chunks/%5Broot-of-the-server%5D__0f0ba101._.css"},"startTime":1772036183735,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7719,"timestamp":42708143788,"id":135,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183743,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":16057,"timestamp":42708136712,"id":130,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js"},"startTime":1772036183736,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7963,"timestamp":42708145180,"id":137,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183745,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7389,"timestamp":42708146410,"id":138,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183746,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7155,"timestamp":42708147727,"id":139,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183747,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7130,"timestamp":42708148796,"id":141,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183748,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3262,"timestamp":42708154226,"id":143,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183754,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2925,"timestamp":42708155268,"id":145,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183755,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5059,"timestamp":42708156841,"id":146,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183756,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":18490,"timestamp":42708144755,"id":136,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js"},"startTime":1772036183744,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5987,"timestamp":42708158816,"id":147,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183758,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":17256,"timestamp":42708148455,"id":140,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js"},"startTime":1772036183748,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3043,"timestamp":42708163612,"id":148,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183763,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":14013,"timestamp":42708153875,"id":142,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js"},"startTime":1772036183753,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4022,"timestamp":42708164208,"id":149,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183764,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":14149,"timestamp":42708154950,"id":144,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js"},"startTime":1772036183755,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1366,"timestamp":42708171718,"id":150,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183771,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3461,"timestamp":42708173691,"id":152,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183773,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2723,"timestamp":42708179062,"id":153,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183779,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":9644,"timestamp":42708173217,"id":151,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_client_17643121._.js"},"startTime":1772036183773,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2899,"timestamp":42708180670,"id":154,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183780,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2159,"timestamp":42708184134,"id":156,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183784,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2306,"timestamp":42708188506,"id":157,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183788,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":8642,"timestamp":42708183680,"id":155,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_f3530cac._.js"},"startTime":1772036183783,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2054,"timestamp":42708193972,"id":158,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183794,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2532,"timestamp":42708194840,"id":159,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183794,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2350,"timestamp":42708196425,"id":161,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183796,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2196,"timestamp":42708197851,"id":163,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183797,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2935,"timestamp":42708201321,"id":164,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183801,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":9636,"timestamp":42708196116,"id":160,"tags":{"url":"/_next/static/chunks/node_modules_%40swc_helpers_cjs_d80fb378._.js"},"startTime":1772036183796,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3812,"timestamp":42708203142,"id":165,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183803,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":11814,"timestamp":42708197450,"id":162,"tags":{"url":"/_next/static/chunks/_a0ff3932._.js"},"startTime":1772036183797,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1688,"timestamp":42708216838,"id":166,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183816,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2960,"timestamp":42708219162,"id":168,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183819,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3906,"timestamp":42708223900,"id":169,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183823,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3689,"timestamp":42708225980,"id":170,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183826,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":12208,"timestamp":42708218648,"id":167,"tags":{"url":"/_next/static/chunks/turbopack-_23a915ee._.js"},"startTime":1772036183818,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4514,"timestamp":42708228537,"id":172,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183828,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2732,"timestamp":42708232162,"id":173,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183832,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":8517,"timestamp":42708235565,"id":175,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183835,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3903,"timestamp":42708241467,"id":176,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183841,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":18666,"timestamp":42708228078,"id":171,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_be32b49c._.js"},"startTime":1772036183828,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1453,"timestamp":42708247588,"id":177,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183847,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":15371,"timestamp":42708235053,"id":174,"tags":{"url":"/_next/static/chunks/src_app_favicon_ico_mjs_81d86e48._.js"},"startTime":1772036183835,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1218,"timestamp":42708256914,"id":178,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183856,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":813,"timestamp":42708258535,"id":180,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183858,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":939,"timestamp":42708260141,"id":181,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183860,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":3832,"timestamp":42708258218,"id":179,"tags":{"url":"/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"},"startTime":1772036183858,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":701,"timestamp":42708378512,"id":182,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183978,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1805,"timestamp":42708379702,"id":184,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183979,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1824,"timestamp":42708380881,"id":185,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183980,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2541,"timestamp":42708383182,"id":187,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183983,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2811,"timestamp":42708383856,"id":188,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183983,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":8811,"timestamp":42708379313,"id":183,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js"},"startTime":1772036183979,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":906,"timestamp":42708388628,"id":189,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183988,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":7783,"timestamp":42708382795,"id":186,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_c7192189._.js"},"startTime":1772036183982,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":826,"timestamp":42708397455,"id":190,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183997,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":845,"timestamp":42708398769,"id":192,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036183998,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1286,"timestamp":42708400496,"id":193,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036184000,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":4843,"timestamp":42708398395,"id":191,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_f3530cac._.js.map"},"startTime":1772036183998,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":581,"timestamp":42708518822,"id":194,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036184118,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":659,"timestamp":42708519754,"id":196,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036184119,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":607,"timestamp":42708521022,"id":197,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036184121,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":4111,"timestamp":42708519474,"id":195,"tags":{"url":"/_next/static/chunks/%5Broot-of-the-server%5D__0f0ba101._.css.map"},"startTime":1772036184119,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1158,"timestamp":42710153867,"id":198,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185753,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1086,"timestamp":42710155763,"id":200,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185755,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1134,"timestamp":42710158045,"id":201,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185758,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":5967,"timestamp":42710155175,"id":199,"tags":{"url":"/"},"startTime":1772036185755,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1073,"timestamp":42710162657,"id":203,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772036185762,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":43691,"timestamp":42710162093,"id":202,"tags":{"url":"/"},"startTime":1772036185762,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":8,"timestamp":42710205887,"id":204,"parentId":202,"tags":{"url":"/","memory.rss":"625184768","memory.heapUsed":"114412512","memory.heapTotal":"140009472"},"startTime":1772036185805,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2893,"timestamp":42710280907,"id":205,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185880,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2982,"timestamp":42710282739,"id":206,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185882,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3023,"timestamp":42710284575,"id":208,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185884,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2239,"timestamp":42710286479,"id":210,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185886,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4516,"timestamp":42710289782,"id":211,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185889,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":12389,"timestamp":42710283945,"id":207,"tags":{"url":"/_next/static/chunks/%5Broot-of-the-server%5D__0f0ba101._.css"},"startTime":1772036185884,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6006,"timestamp":42710290844,"id":212,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185890,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":12576,"timestamp":42710285858,"id":209,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_956a0d3a._.js"},"startTime":1772036185885,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6279,"timestamp":42710292699,"id":213,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185892,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3598,"timestamp":42710299639,"id":215,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185899,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2657,"timestamp":42710301335,"id":216,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185901,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4549,"timestamp":42710304498,"id":218,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185904,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3956,"timestamp":42710305873,"id":219,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185905,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4357,"timestamp":42710307088,"id":220,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185907,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6024,"timestamp":42710308200,"id":221,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185908,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":16482,"timestamp":42710299106,"id":214,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_react-dom_1e674e59._.js"},"startTime":1772036185899,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":11947,"timestamp":42710310421,"id":223,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185910,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":11058,"timestamp":42710312216,"id":225,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185912,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":8568,"timestamp":42710315968,"id":226,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185916,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":22525,"timestamp":42710304088,"id":217,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_react-server-dom-turbopack_9212ccad._.js"},"startTime":1772036185904,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2825,"timestamp":42710327254,"id":227,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185927,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":21382,"timestamp":42710309919,"id":222,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_next-devtools_index_1dd7fb59.js"},"startTime":1772036185909,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3622,"timestamp":42710328102,"id":228,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185928,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":21490,"timestamp":42710311600,"id":224,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_compiled_a0e4c7b4._.js"},"startTime":1772036185911,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2181,"timestamp":42710334464,"id":229,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185934,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2233,"timestamp":42710337131,"id":231,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185937,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3238,"timestamp":42710341316,"id":232,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185941,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4069,"timestamp":42710342112,"id":233,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185942,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":10749,"timestamp":42710336751,"id":230,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_client_17643121._.js"},"startTime":1772036185936,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3735,"timestamp":42710345142,"id":235,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185945,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2138,"timestamp":42710351837,"id":236,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185951,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":11045,"timestamp":42710344657,"id":234,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_f3530cac._.js"},"startTime":1772036185944,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2466,"timestamp":42710360639,"id":237,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185960,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4581,"timestamp":42710363792,"id":239,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185963,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3592,"timestamp":42710366197,"id":240,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185966,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3790,"timestamp":42710370679,"id":242,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185970,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2977,"timestamp":42710372512,"id":243,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185972,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":13963,"timestamp":42710363244,"id":238,"tags":{"url":"/_next/static/chunks/node_modules_%40swc_helpers_cjs_d80fb378._.js"},"startTime":1772036185963,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2166,"timestamp":42710378380,"id":244,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185978,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":11846,"timestamp":42710369961,"id":241,"tags":{"url":"/_next/static/chunks/_a0ff3932._.js"},"startTime":1772036185970,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3933,"timestamp":42710386770,"id":245,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185986,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3683,"timestamp":42710389710,"id":246,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185989,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5360,"timestamp":42710391502,"id":248,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185991,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4358,"timestamp":42710394200,"id":250,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185994,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4080,"timestamp":42710395812,"id":251,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036185995,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5879,"timestamp":42710400545,"id":253,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186000,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5625,"timestamp":42710401717,"id":254,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186001,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":17676,"timestamp":42710390833,"id":247,"tags":{"url":"/_next/static/chunks/turbopack-_23a915ee._.js"},"startTime":1772036185990,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5347,"timestamp":42710403727,"id":255,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186003,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":17398,"timestamp":42710393565,"id":249,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_be32b49c._.js"},"startTime":1772036185993,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2247,"timestamp":42710412121,"id":256,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186012,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":15543,"timestamp":42710400031,"id":252,"tags":{"url":"/_next/static/chunks/src_app_favicon_ico_mjs_81d86e48._.js"},"startTime":1772036186000,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1227,"timestamp":42710423139,"id":257,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186023,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2846,"timestamp":42710424940,"id":259,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186025,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1384,"timestamp":42710430531,"id":260,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186030,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":8793,"timestamp":42710424485,"id":258,"tags":{"url":"/_next/static/chunks/src_app_layout_tsx_1cf6b850._.js"},"startTime":1772036186024,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3416,"timestamp":42710434324,"id":261,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186034,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3289,"timestamp":42710435603,"id":262,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186035,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3367,"timestamp":42710436541,"id":263,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186036,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3488,"timestamp":42710438228,"id":265,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186038,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3158,"timestamp":42710439300,"id":267,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186039,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3176,"timestamp":42710440341,"id":269,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186040,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3205,"timestamp":42710445038,"id":270,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186045,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":11892,"timestamp":42710437846,"id":264,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_2c670af9._.js"},"startTime":1772036186037,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4450,"timestamp":42710446050,"id":271,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186046,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":13141,"timestamp":42710438971,"id":266,"tags":{"url":"/_next/static/chunks/src_app_page_tsx_47b43e25._.js"},"startTime":1772036186039,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6172,"timestamp":42710446612,"id":272,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186046,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":14409,"timestamp":42710439993,"id":268,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_client_components_builtin_global-error_1cf6b850.js"},"startTime":1772036186040,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":891,"timestamp":42710620599,"id":273,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186220,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":831,"timestamp":42710622152,"id":275,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186222,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":974,"timestamp":42710623874,"id":276,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186223,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":4759,"timestamp":42710621610,"id":274,"tags":{"url":"/_next/static/chunks/%5Broot-of-the-server%5D__0f0ba101._.css.map"},"startTime":1772036186221,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3794,"timestamp":42710630450,"id":277,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186230,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4259,"timestamp":42710631517,"id":278,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186231,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2389,"timestamp":42710634819,"id":280,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186234,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1929,"timestamp":42710636402,"id":282,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186236,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3493,"timestamp":42710639140,"id":283,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186239,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":10358,"timestamp":42710634369,"id":279,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_c8c997ce._.js"},"startTime":1772036186234,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4656,"timestamp":42710641317,"id":284,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186241,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":12266,"timestamp":42710635913,"id":281,"tags":{"url":"/_next/static/chunks/%5Bturbopack%5D_browser_dev_hmr-client_hmr-client_ts_c7192189._.js"},"startTime":1772036186235,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":942,"timestamp":42710690736,"id":285,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186290,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1254,"timestamp":42710692175,"id":287,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186292,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1028,"timestamp":42710694635,"id":288,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772036186294,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":5081,"timestamp":42710691771,"id":286,"tags":{"url":"/_next/static/chunks/node_modules_next_dist_f3530cac._.js.map"},"startTime":1772036186291,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":6890,"timestamp":44382170656,"id":289,"tags":{"trigger":"proxy"},"startTime":1772037857770,"traceId":"86d2e820c6b52a92"}] -[{"name":"compile-path","duration":5521,"timestamp":44685775714,"id":290,"tags":{"trigger":"proxy"},"startTime":1772038161375,"traceId":"86d2e820c6b52a92"}] -[{"name":"client-hmr-latency","duration":71000,"timestamp":44812622854,"id":291,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":true},"startTime":1772038288319,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":955,"timestamp":44824715370,"id":292,"tags":{"trigger":"proxy"},"startTime":1772038300315,"traceId":"86d2e820c6b52a92"}] -[{"name":"ensure-page","duration":1546,"timestamp":44824746122,"id":294,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300346,"traceId":"86d2e820c6b52a92"},{"name":"client-hmr-latency","duration":102000,"timestamp":44824692365,"id":295,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":true},"startTime":1772038300451,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":111871,"timestamp":44824745224,"id":293,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300345,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":9,"timestamp":44824857238,"id":296,"parentId":293,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"616759296","memory.heapUsed":"97017248","memory.heapTotal":"119283712"},"startTime":1772038300457,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6559,"timestamp":44824865060,"id":298,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300465,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":49776,"timestamp":44824866212,"id":300,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300466,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":95146,"timestamp":44824870298,"id":302,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300470,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":53010,"timestamp":44824963497,"id":304,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300563,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":6279,"timestamp":44825053711,"id":306,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300653,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":35705,"timestamp":44825057185,"id":308,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300657,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":300569,"timestamp":44824864310,"id":297,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300464,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":15,"timestamp":44825165223,"id":309,"parentId":297,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"623837184","memory.heapUsed":"101401104","memory.heapTotal":"128172032"},"startTime":1772038300765,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":301816,"timestamp":44824865536,"id":299,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300465,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":19,"timestamp":44825167539,"id":310,"parentId":299,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"623837184","memory.heapUsed":"101441304","memory.heapTotal":"128172032"},"startTime":1772038300767,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":302745,"timestamp":44824869354,"id":301,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300469,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":13,"timestamp":44825172252,"id":311,"parentId":301,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"624099328","memory.heapUsed":"101560992","memory.heapTotal":"128172032"},"startTime":1772038300772,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":216271,"timestamp":44824962653,"id":303,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300562,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":17,"timestamp":44825179103,"id":312,"parentId":303,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"624230400","memory.heapUsed":"101726368","memory.heapTotal":"128172032"},"startTime":1772038300779,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":7046,"timestamp":44825181069,"id":314,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300781,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":177567,"timestamp":44825055887,"id":307,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300655,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":10,"timestamp":44825233582,"id":317,"parentId":307,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"624492544","memory.heapUsed":"104446064","memory.heapTotal":"128172032"},"startTime":1772038300833,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":54346,"timestamp":44825186038,"id":316,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300786,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":243839,"timestamp":44825052918,"id":305,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300652,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":44825296891,"id":320,"parentId":305,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"626589696","memory.heapUsed":"107006912","memory.heapTotal":"128434176"},"startTime":1772038300896,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":68492,"timestamp":44825234781,"id":319,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300834,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":67694,"timestamp":44825298264,"id":322,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038300898,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4193,"timestamp":44825401414,"id":324,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301001,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":47144,"timestamp":44825404548,"id":326,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301004,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":339638,"timestamp":44825180089,"id":313,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300780,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":12,"timestamp":44825519878,"id":327,"parentId":313,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"633536512","memory.heapUsed":"105637672","memory.heapTotal":"128901120"},"startTime":1772038301119,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":340992,"timestamp":44825185064,"id":315,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300785,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":17,"timestamp":44825527173,"id":328,"parentId":315,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"633536512","memory.heapUsed":"105732568","memory.heapTotal":"128901120"},"startTime":1772038301127,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":301613,"timestamp":44825233964,"id":318,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300834,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":24,"timestamp":44825535802,"id":329,"parentId":318,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"633536512","memory.heapUsed":"105930488","memory.heapTotal":"128901120"},"startTime":1772038301135,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":245215,"timestamp":44825297497,"id":321,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038300897,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":13,"timestamp":44825542835,"id":332,"parentId":321,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"633536512","memory.heapUsed":"106076728","memory.heapTotal":"128901120"},"startTime":1772038301142,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5925,"timestamp":44825538248,"id":331,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301138,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":203969,"timestamp":44825400436,"id":323,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301000,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":26,"timestamp":44825604673,"id":335,"parentId":323,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"633667584","memory.heapUsed":"108600088","memory.heapTotal":"128901120"},"startTime":1772038301204,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":11226,"timestamp":44825598574,"id":334,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301198,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":247848,"timestamp":44825403642,"id":325,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301003,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":24,"timestamp":44825652399,"id":338,"parentId":325,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"633667584","memory.heapUsed":"110927848","memory.heapTotal":"128901120"},"startTime":1772038301252,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":51216,"timestamp":44825607252,"id":337,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301207,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":59888,"timestamp":44825653549,"id":340,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301253,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":4816,"timestamp":44825748563,"id":344,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301348,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":40420,"timestamp":44825746917,"id":342,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301346,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":308992,"timestamp":44825537321,"id":330,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301137,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":44825846436,"id":345,"parentId":330,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"634191872","memory.heapUsed":"109585888","memory.heapTotal":"145940480"},"startTime":1772038301446,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":255233,"timestamp":44825596045,"id":333,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301196,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":18,"timestamp":44825851495,"id":346,"parentId":333,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"634191872","memory.heapUsed":"109717664","memory.heapTotal":"145940480"},"startTime":1772038301451,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":248093,"timestamp":44825605962,"id":336,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301206,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":13,"timestamp":44825854187,"id":347,"parentId":336,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"634191872","memory.heapUsed":"109780680","memory.heapTotal":"145940480"},"startTime":1772038301454,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":204570,"timestamp":44825652845,"id":339,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301252,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":44825857536,"id":350,"parentId":339,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"634191872","memory.heapUsed":"109909664","memory.heapTotal":"145940480"},"startTime":1772038301457,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3474,"timestamp":44825855328,"id":349,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772038301455,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":152370,"timestamp":44825747988,"id":343,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301348,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":44825900473,"id":351,"parentId":343,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"634191872","memory.heapUsed":"112178472","memory.heapTotal":"145940480"},"startTime":1772038301500,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":155686,"timestamp":44825746305,"id":341,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301346,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":12,"timestamp":44825902126,"id":352,"parentId":341,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"634191872","memory.heapUsed":"112217808","memory.heapTotal":"145940480"},"startTime":1772038301502,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":57135,"timestamp":44825854499,"id":348,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772038301454,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":10,"timestamp":44825911738,"id":353,"parentId":348,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"634191872","memory.heapUsed":"112286280","memory.heapTotal":"145940480"},"startTime":1772038301511,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":26120,"timestamp":44955095162,"id":356,"tags":{"trigger":"/login"},"startTime":1772038430695,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":144985,"timestamp":44955094645,"id":354,"tags":{"url":"/login"},"startTime":1772038430694,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":19,"timestamp":44955239849,"id":357,"parentId":354,"tags":{"url":"/login","memory.rss":"671010816","memory.heapUsed":"120510784","memory.heapTotal":"129179648"},"startTime":1772038430839,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":13184,"timestamp":44978124594,"id":360,"tags":{"trigger":"/api/auth/login"},"startTime":1772038453724,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":156760,"timestamp":44978124056,"id":358,"tags":{"url":"/api/auth/login"},"startTime":1772038453724,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":8,"timestamp":44978280914,"id":361,"parentId":358,"tags":{"url":"/api/auth/login","memory.rss":"684888064","memory.heapUsed":"123532144","memory.heapTotal":"149790720"},"startTime":1772038453880,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":692,"timestamp":44978284647,"id":362,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038453884,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":863,"timestamp":44978286061,"id":364,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038453886,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":763,"timestamp":44978287920,"id":365,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038453887,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":16506,"timestamp":44978285451,"id":363,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772038453885,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":739682,"timestamp":44978303698,"id":368,"tags":{"trigger":"/dashboard"},"startTime":1772038453903,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":825625,"timestamp":44978303033,"id":366,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772038453903,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":9,"timestamp":44979128780,"id":369,"parentId":366,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"826765312","memory.heapUsed":"122574216","memory.heapTotal":"163131392"},"startTime":1772038454728,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1299,"timestamp":45067349419,"id":370,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038542949,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2494,"timestamp":45067351975,"id":372,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038542952,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2206,"timestamp":45067356277,"id":373,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038542956,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":12763,"timestamp":45067350899,"id":371,"tags":{"url":"/dashboard"},"startTime":1772038542950,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":17962,"timestamp":45067366870,"id":376,"tags":{"trigger":"/dashboard"},"startTime":1772038542966,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":277582,"timestamp":45067366313,"id":374,"tags":{"url":"/dashboard"},"startTime":1772038542966,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":27,"timestamp":45067644223,"id":377,"parentId":374,"tags":{"url":"/dashboard","memory.rss":"840036352","memory.heapUsed":"124577976","memory.heapTotal":"135548928"},"startTime":1772038543244,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2879,"timestamp":45099528306,"id":378,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038575128,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":3764,"timestamp":45099531998,"id":380,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038575132,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1127,"timestamp":45099536919,"id":381,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038575136,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":8724,"timestamp":45099531371,"id":379,"tags":{"url":"/dashboard"},"startTime":1772038575131,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":15230,"timestamp":45099542182,"id":384,"tags":{"trigger":"/dashboard"},"startTime":1772038575142,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":188368,"timestamp":45099541594,"id":382,"tags":{"url":"/dashboard"},"startTime":1772038575141,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":10,"timestamp":45099730086,"id":385,"parentId":382,"tags":{"url":"/dashboard","memory.rss":"844681216","memory.heapUsed":"133464792","memory.heapTotal":"137670656"},"startTime":1772038575330,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":944,"timestamp":45115266330,"id":386,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038590866,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1189,"timestamp":45115267879,"id":388,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038590867,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":805,"timestamp":45115269949,"id":389,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038590870,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":5106,"timestamp":45115267391,"id":387,"tags":{"url":"/dashboard"},"startTime":1772038590867,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":12026,"timestamp":45115275900,"id":391,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772038590875,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":196025,"timestamp":45115275432,"id":390,"tags":{"url":"/dashboard"},"startTime":1772038590875,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":6,"timestamp":45115471551,"id":392,"parentId":390,"tags":{"url":"/dashboard","memory.rss":"848736256","memory.heapUsed":"134747576","memory.heapTotal":"152236032"},"startTime":1772038591071,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":929,"timestamp":45145892992,"id":393,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038621493,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1487,"timestamp":45145894767,"id":395,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038621494,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":961,"timestamp":45145898209,"id":396,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038621498,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":7160,"timestamp":45145894089,"id":394,"tags":{"url":"/dashboard"},"startTime":1772038621494,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":10633,"timestamp":45145904053,"id":399,"tags":{"trigger":"/dashboard"},"startTime":1772038621504,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":158397,"timestamp":45145903315,"id":397,"tags":{"url":"/dashboard"},"startTime":1772038621503,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":6,"timestamp":45146061797,"id":400,"parentId":397,"tags":{"url":"/dashboard","memory.rss":"841789440","memory.heapUsed":"136255648","memory.heapTotal":"147853312"},"startTime":1772038621661,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":256961,"timestamp":45146332633,"id":403,"tags":{"trigger":"/api/auth/me"},"startTime":1772038621932,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":347605,"timestamp":45146331992,"id":401,"tags":{"url":"/api/auth/me"},"startTime":1772038621932,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":25,"timestamp":45146679881,"id":404,"parentId":401,"tags":{"url":"/api/auth/me","memory.rss":"853610496","memory.heapUsed":"139785896","memory.heapTotal":"158384128"},"startTime":1772038622279,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1226,"timestamp":45168137737,"id":405,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038643737,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1897,"timestamp":45168139814,"id":407,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038643739,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1054,"timestamp":45168143397,"id":408,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038643743,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":8736,"timestamp":45168139141,"id":406,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772038643739,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":18239,"timestamp":45168150111,"id":411,"tags":{"trigger":"/dashboard"},"startTime":1772038643750,"traceId":"86d2e820c6b52a92"}] -[{"name":"client-hmr-latency","duration":40000,"timestamp":45168088709,"id":412,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772038643883,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":135783,"timestamp":45168149270,"id":409,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772038643749,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":9,"timestamp":45168285177,"id":413,"parentId":409,"tags":{"url":"/dashboard?_rsc=1h18q","memory.rss":"882143232","memory.heapUsed":"146601096","memory.heapTotal":"161394688"},"startTime":1772038643885,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1130,"timestamp":45176867643,"id":414,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038652467,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":990,"timestamp":45176869545,"id":416,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038652469,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1012,"timestamp":45176871745,"id":417,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038652471,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":6547,"timestamp":45176868937,"id":415,"tags":{"url":"/dashboard"},"startTime":1772038652469,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":12574,"timestamp":45176877338,"id":420,"tags":{"trigger":"/dashboard"},"startTime":1772038652477,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":245328,"timestamp":45176876742,"id":418,"tags":{"url":"/dashboard"},"startTime":1772038652476,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":12,"timestamp":45177122226,"id":421,"parentId":418,"tags":{"url":"/dashboard","memory.rss":"904536064","memory.heapUsed":"149256096","memory.heapTotal":"185294848"},"startTime":1772038652722,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":834,"timestamp":45177463460,"id":423,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772038653063,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":12624,"timestamp":45177462827,"id":422,"tags":{"url":"/api/auth/me"},"startTime":1772038653062,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":8,"timestamp":45177475558,"id":424,"parentId":422,"tags":{"url":"/api/auth/me","memory.rss":"905846784","memory.heapUsed":"153507456","memory.heapTotal":"185294848"},"startTime":1772038653075,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1725,"timestamp":45192741273,"id":426,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772038668341,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":36300,"timestamp":45192739908,"id":425,"tags":{"url":"/login?_rsc=t4x0q"},"startTime":1772038668339,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":6,"timestamp":45192776286,"id":427,"parentId":425,"tags":{"url":"/login?_rsc=t4x0q","memory.rss":"871088128","memory.heapUsed":"146663096","memory.heapTotal":"152109056"},"startTime":1772038668376,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2737,"timestamp":45208620070,"id":429,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772038684220,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":94274,"timestamp":45208617788,"id":428,"tags":{"url":"/api/auth/login"},"startTime":1772038684217,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":5,"timestamp":45208712137,"id":430,"parentId":428,"tags":{"url":"/api/auth/login","memory.rss":"870342656","memory.heapUsed":"147884376","memory.heapTotal":"152371200"},"startTime":1772038684312,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":594,"timestamp":45208715680,"id":431,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038684315,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":761,"timestamp":45208716736,"id":433,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038684316,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":471,"timestamp":45208718253,"id":434,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038684318,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":3473,"timestamp":45208716385,"id":432,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772038684316,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1455,"timestamp":45208720757,"id":436,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772038684320,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":34156,"timestamp":45208720474,"id":435,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772038684320,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":5,"timestamp":45208754697,"id":437,"parentId":435,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"870866944","memory.heapUsed":"148645712","memory.heapTotal":"153157632"},"startTime":1772038684354,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":581,"timestamp":45208784237,"id":439,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772038684384,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":11407,"timestamp":45208783794,"id":438,"tags":{"url":"/api/auth/me"},"startTime":1772038684383,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":16,"timestamp":45208795289,"id":440,"parentId":438,"tags":{"url":"/api/auth/me","memory.rss":"871260160","memory.heapUsed":"148982280","memory.heapTotal":"153681920"},"startTime":1772038684395,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":630,"timestamp":45208799362,"id":442,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772038684399,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":11904,"timestamp":45208798592,"id":441,"tags":{"url":"/api/auth/me"},"startTime":1772038684398,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":7,"timestamp":45208810586,"id":443,"parentId":441,"tags":{"url":"/api/auth/me","memory.rss":"872046592","memory.heapUsed":"149642880","memory.heapTotal":"154181632"},"startTime":1772038684410,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1407,"timestamp":45330502052,"id":444,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038806102,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1152,"timestamp":45330504626,"id":446,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038806104,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1064,"timestamp":45330508077,"id":447,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038806108,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":7226,"timestamp":45330503709,"id":445,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772038806103,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":13310,"timestamp":45330513598,"id":450,"tags":{"trigger":"/dashboard"},"startTime":1772038806113,"traceId":"86d2e820c6b52a92"}] -[{"name":"client-hmr-latency","duration":75000,"timestamp":45330416344,"id":451,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772038806266,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":157305,"timestamp":45330512667,"id":448,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772038806112,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":9,"timestamp":45330670104,"id":452,"parentId":448,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"905003008","memory.heapUsed":"161677480","memory.heapTotal":"173867008"},"startTime":1772038806270,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1236,"timestamp":45368383608,"id":453,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038843983,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1197,"timestamp":45368385633,"id":455,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038843985,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":877,"timestamp":45368387774,"id":456,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038843987,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":5442,"timestamp":45368385000,"id":454,"tags":{"url":"/dashboard"},"startTime":1772038843985,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":6977,"timestamp":45368391765,"id":459,"tags":{"trigger":"/dashboard"},"startTime":1772038843991,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":157278,"timestamp":45368391332,"id":457,"tags":{"url":"/dashboard"},"startTime":1772038843991,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":20,"timestamp":45368548851,"id":460,"parentId":457,"tags":{"url":"/dashboard","memory.rss":"894230528","memory.heapUsed":"169758328","memory.heapTotal":"177954816"},"startTime":1772038844148,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1279,"timestamp":45393298873,"id":461,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038868898,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1440,"timestamp":45393301453,"id":463,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038868901,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1531,"timestamp":45393304316,"id":464,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038868904,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":7322,"timestamp":45393300445,"id":462,"tags":{"url":"/dashboard"},"startTime":1772038868900,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":16465,"timestamp":45393310399,"id":467,"tags":{"trigger":"/dashboard"},"startTime":1772038868910,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":216336,"timestamp":45393309834,"id":465,"tags":{"url":"/dashboard"},"startTime":1772038868909,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":45393526297,"id":468,"parentId":465,"tags":{"url":"/dashboard","memory.rss":"898027520","memory.heapUsed":"172938376","memory.heapTotal":"182300672"},"startTime":1772038869126,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":728,"timestamp":45393836494,"id":470,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772038869436,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":18673,"timestamp":45393835954,"id":469,"tags":{"url":"/api/auth/me"},"startTime":1772038869436,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":9,"timestamp":45393854732,"id":471,"parentId":469,"tags":{"url":"/api/auth/me","memory.rss":"891949056","memory.heapUsed":"163225400","memory.heapTotal":"176320512"},"startTime":1772038869454,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1747,"timestamp":45413344905,"id":472,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038888944,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1976,"timestamp":45413348100,"id":474,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038888948,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1859,"timestamp":45413352543,"id":475,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038888952,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":10182,"timestamp":45413347099,"id":473,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772038888947,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":12859,"timestamp":45413359536,"id":478,"tags":{"trigger":"/dashboard"},"startTime":1772038888959,"traceId":"86d2e820c6b52a92"}] -[{"name":"client-hmr-latency","duration":83000,"timestamp":45413256450,"id":479,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772038889102,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":147578,"timestamp":45413358646,"id":476,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772038888958,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":8,"timestamp":45413506334,"id":480,"parentId":476,"tags":{"url":"/dashboard?_rsc=1h18q","memory.rss":"902746112","memory.heapUsed":"175788688","memory.heapTotal":"183267328"},"startTime":1772038889106,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1274,"timestamp":45416536680,"id":481,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038892136,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1007,"timestamp":45416538684,"id":483,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038892138,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":767,"timestamp":45416540503,"id":484,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038892140,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":4524,"timestamp":45416538080,"id":482,"tags":{"url":"/dashboard"},"startTime":1772038892138,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":10583,"timestamp":45416544246,"id":487,"tags":{"trigger":"/dashboard"},"startTime":1772038892144,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":157481,"timestamp":45416543772,"id":485,"tags":{"url":"/dashboard"},"startTime":1772038892143,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":13,"timestamp":45416701435,"id":488,"parentId":485,"tags":{"url":"/dashboard","memory.rss":"937385984","memory.heapUsed":"190251456","memory.heapTotal":"207462400"},"startTime":1772038892301,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":688,"timestamp":45417077539,"id":490,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772038892677,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":16695,"timestamp":45417076978,"id":489,"tags":{"url":"/api/auth/me"},"startTime":1772038892677,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":7,"timestamp":45417093764,"id":491,"parentId":489,"tags":{"url":"/api/auth/me","memory.rss":"926220288","memory.heapUsed":"176510680","memory.heapTotal":"196677632"},"startTime":1772038892693,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1006,"timestamp":45513079796,"id":492,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038988679,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2085,"timestamp":45513082357,"id":494,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038988682,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2115,"timestamp":45513086200,"id":495,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772038988686,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":10109,"timestamp":45513080956,"id":493,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772038988681,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":18268,"timestamp":45513094278,"id":498,"tags":{"trigger":"/dashboard"},"startTime":1772038988694,"traceId":"86d2e820c6b52a92"}] -[{"name":"client-hmr-latency","duration":49000,"timestamp":45513024543,"id":499,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772038988828,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":136960,"timestamp":45513093540,"id":496,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772038988693,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":8,"timestamp":45513230589,"id":500,"parentId":496,"tags":{"url":"/dashboard?_rsc=1h18q","memory.rss":"912347136","memory.heapUsed":"183009232","memory.heapTotal":"190623744"},"startTime":1772038988830,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":930,"timestamp":45528112651,"id":501,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039003712,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":854,"timestamp":45528114206,"id":503,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039003714,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":892,"timestamp":45528115957,"id":504,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039003716,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":4546,"timestamp":45528113692,"id":502,"tags":{"url":"/dashboard"},"startTime":1772039003713,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":8576,"timestamp":45528119512,"id":507,"tags":{"trigger":"/dashboard"},"startTime":1772039003719,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":176435,"timestamp":45528119057,"id":505,"tags":{"url":"/dashboard"},"startTime":1772039003719,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":7,"timestamp":45528295577,"id":508,"parentId":505,"tags":{"url":"/dashboard","memory.rss":"926212096","memory.heapUsed":"195911120","memory.heapTotal":"211587072"},"startTime":1772039003895,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":792,"timestamp":45542745264,"id":509,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039018345,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":822,"timestamp":45542746609,"id":511,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039018346,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1372,"timestamp":45542748407,"id":512,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039018348,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":6072,"timestamp":45542746162,"id":510,"tags":{"url":"/dashboard"},"startTime":1772039018346,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":9211,"timestamp":45542754823,"id":514,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772039018354,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":215057,"timestamp":45542754287,"id":513,"tags":{"url":"/dashboard"},"startTime":1772039018354,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":8,"timestamp":45542969464,"id":515,"parentId":513,"tags":{"url":"/dashboard","memory.rss":"956583936","memory.heapUsed":"216674544","memory.heapTotal":"251731968"},"startTime":1772039018569,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2246,"timestamp":45553544241,"id":516,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039029144,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1022,"timestamp":45553547548,"id":518,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039029147,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1158,"timestamp":45553550360,"id":519,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039029150,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":8743,"timestamp":45553546633,"id":517,"tags":{"url":"/dashboard"},"startTime":1772039029146,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":15519,"timestamp":45553560271,"id":522,"tags":{"trigger":"/dashboard"},"startTime":1772039029160,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":312543,"timestamp":45553559606,"id":520,"tags":{"url":"/dashboard"},"startTime":1772039029159,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":45553872289,"id":523,"parentId":520,"tags":{"url":"/dashboard","memory.rss":"963592192","memory.heapUsed":"224903512","memory.heapTotal":"258633728"},"startTime":1772039029472,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1613,"timestamp":45557729841,"id":524,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039033329,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":805,"timestamp":45557732123,"id":526,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039033332,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":859,"timestamp":45557733821,"id":527,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039033333,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":4820,"timestamp":45557731596,"id":525,"tags":{"url":"/dashboard"},"startTime":1772039033331,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1087,"timestamp":45557738281,"id":529,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772039033338,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":80606,"timestamp":45557737687,"id":528,"tags":{"url":"/dashboard"},"startTime":1772039033337,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":45557818411,"id":530,"parentId":528,"tags":{"url":"/dashboard","memory.rss":"963792896","memory.heapUsed":"219835328","memory.heapTotal":"254697472"},"startTime":1772039033418,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1169,"timestamp":45561994987,"id":531,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039037595,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":956,"timestamp":45561996815,"id":533,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039037596,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1747,"timestamp":45561998747,"id":534,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039037598,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":6312,"timestamp":45561996294,"id":532,"tags":{"url":"/dashboard"},"startTime":1772039037596,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":10567,"timestamp":45562004895,"id":537,"tags":{"trigger":"/dashboard"},"startTime":1772039037604,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":212560,"timestamp":45562004197,"id":535,"tags":{"url":"/dashboard"},"startTime":1772039037604,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":17,"timestamp":45562217203,"id":538,"parentId":535,"tags":{"url":"/dashboard","memory.rss":"993472512","memory.heapUsed":"238732640","memory.heapTotal":"272474112"},"startTime":1772039037817,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1456,"timestamp":45630218542,"id":539,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039105818,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1663,"timestamp":45630221135,"id":541,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039105821,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1203,"timestamp":45630225180,"id":542,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039105825,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":7965,"timestamp":45630220194,"id":540,"tags":{"url":"/dashboard"},"startTime":1772039105820,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":15920,"timestamp":45630229802,"id":545,"tags":{"trigger":"/dashboard"},"startTime":1772039105829,"traceId":"86d2e820c6b52a92"}] -[{"name":"handle-request","duration":215100,"timestamp":45630229178,"id":543,"tags":{"url":"/dashboard"},"startTime":1772039105829,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":9,"timestamp":45630444388,"id":546,"parentId":543,"tags":{"url":"/dashboard","memory.rss":"1002758144","memory.heapUsed":"250531240","memory.heapTotal":"256712704"},"startTime":1772039106044,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":692,"timestamp":45644670142,"id":548,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772039120270,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":25382,"timestamp":45644669562,"id":547,"tags":{"url":"/api/auth/me"},"startTime":1772039120269,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":6,"timestamp":45644695035,"id":549,"parentId":547,"tags":{"url":"/api/auth/me","memory.rss":"1001525248","memory.heapUsed":"250148256","memory.heapTotal":"269381632"},"startTime":1772039120295,"traceId":"86d2e820c6b52a92"},{"name":"client-hmr-latency","duration":66000,"timestamp":45644585506,"id":550,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":true},"startTime":1772039120302,"traceId":"86d2e820c6b52a92"},{"name":"client-hmr-latency","duration":51000,"timestamp":45676660797,"id":551,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":false},"startTime":1772039152338,"traceId":"86d2e820c6b52a92"},{"name":"client-hmr-latency","duration":48000,"timestamp":45788848196,"id":552,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":true},"startTime":1772039264524,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1040,"timestamp":45796777657,"id":553,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039272377,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":905,"timestamp":45796779536,"id":555,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039272379,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":930,"timestamp":45796783405,"id":556,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039272383,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":7084,"timestamp":45796778846,"id":554,"tags":{"url":"/dashboard"},"startTime":1772039272378,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":8888,"timestamp":45796787382,"id":558,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772039272387,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":109245,"timestamp":45796786917,"id":557,"tags":{"url":"/dashboard"},"startTime":1772039272386,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":7,"timestamp":45796896241,"id":559,"parentId":557,"tags":{"url":"/dashboard","memory.rss":"999190528","memory.heapUsed":"240020224","memory.heapTotal":"253964288"},"startTime":1772039272496,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":827,"timestamp":45797144147,"id":561,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772039272744,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":13642,"timestamp":45797143326,"id":560,"tags":{"url":"/api/auth/me"},"startTime":1772039272743,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":5,"timestamp":45797157069,"id":562,"parentId":560,"tags":{"url":"/api/auth/me","memory.rss":"1000370176","memory.heapUsed":"241873040","memory.heapTotal":"263139328"},"startTime":1772039272757,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1140,"timestamp":46012627592,"id":563,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039488227,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1303,"timestamp":46012630127,"id":565,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039488230,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2834,"timestamp":46012633737,"id":566,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039488233,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":10262,"timestamp":46012628925,"id":564,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772039488229,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":12496,"timestamp":46012640733,"id":569,"tags":{"trigger":"/dashboard"},"startTime":1772039488240,"traceId":"86d2e820c6b52a92"}] -[{"name":"client-hmr-latency","duration":40000,"timestamp":46012582678,"id":570,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772039488372,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":135686,"timestamp":46012640153,"id":567,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772039488240,"traceId":"86d2e820c6b52a92"},{"name":"memory-usage","duration":11,"timestamp":46012775963,"id":571,"parentId":567,"tags":{"url":"/dashboard?_rsc=1h18q","memory.rss":"993214464","memory.heapUsed":"247518000","memory.heapTotal":"254877696"},"startTime":1772039488376,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":1287,"timestamp":46019217672,"id":572,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039494817,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":5620,"timestamp":46019219712,"id":574,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039494819,"traceId":"86d2e820c6b52a92"},{"name":"ensure-page","duration":2505,"timestamp":46019227591,"id":575,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039494827,"traceId":"86d2e820c6b52a92"},{"name":"handle-request","duration":13233,"timestamp":46019219095,"id":573,"tags":{"url":"/dashboard"},"startTime":1772039494819,"traceId":"86d2e820c6b52a92"},{"name":"compile-path","duration":18780,"timestamp":46019239555,"id":578,"tags":{"trigger":"/dashboard"},"startTime":1772039494839,"traceId":"86d2e820c6b52a92"}] -[{"name":"hot-reloader","duration":77,"timestamp":46066106632,"id":3,"tags":{"version":"16.1.6"},"startTime":1772039541706,"traceId":"71293b43eb2c28d7"},{"name":"compile-path","duration":32504,"timestamp":46066215102,"id":4,"tags":{"trigger":"proxy"},"startTime":1772039541815,"traceId":"71293b43eb2c28d7"}] -[{"name":"setup-dev-bundler","duration":377102,"timestamp":46065962272,"id":2,"parentId":1,"tags":{},"startTime":1772039541562,"traceId":"71293b43eb2c28d7"},{"name":"start-dev-server","duration":1192906,"timestamp":46065266462,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6717964288","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"384184320","memory.heapTotal":"89853952","memory.heapUsed":"64927456"},"startTime":1772039540866,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":2488,"timestamp":46069320888,"id":5,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039544920,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":2111,"timestamp":46069334291,"id":7,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039544934,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":450,"timestamp":46069338608,"id":8,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039544938,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":183754,"timestamp":46069325146,"id":6,"tags":{"url":"/dashboard"},"startTime":1772039544925,"traceId":"71293b43eb2c28d7"},{"name":"compile-path","duration":106122,"timestamp":46069517120,"id":11,"tags":{"trigger":"/dashboard"},"startTime":1772039545117,"traceId":"71293b43eb2c28d7"}] -[{"name":"handle-request","duration":364554,"timestamp":46069515743,"id":9,"tags":{"url":"/dashboard"},"startTime":1772039545115,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":8,"timestamp":46069880408,"id":12,"parentId":9,"tags":{"url":"/dashboard","memory.rss":"507736064","memory.heapUsed":"89620536","memory.heapTotal":"117301248"},"startTime":1772039545480,"traceId":"71293b43eb2c28d7"},{"name":"compile-path","duration":6797,"timestamp":46070148921,"id":15,"tags":{"trigger":"/api/auth/me"},"startTime":1772039545748,"traceId":"71293b43eb2c28d7"}] -[{"name":"handle-request","duration":96080,"timestamp":46070147839,"id":13,"tags":{"url":"/api/auth/me"},"startTime":1772039545747,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":17,"timestamp":46070243997,"id":16,"parentId":13,"tags":{"url":"/api/auth/me","memory.rss":"570503168","memory.heapUsed":"95926336","memory.heapTotal":"127848448"},"startTime":1772039545844,"traceId":"71293b43eb2c28d7"},{"name":"client-hmr-latency","duration":475000,"timestamp":46174206685,"id":17,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":true},"startTime":1772039650310,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1269,"timestamp":46184999660,"id":18,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039660599,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1853,"timestamp":46185002114,"id":20,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039660602,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":796,"timestamp":46185004946,"id":21,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039660605,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":7372,"timestamp":46185001110,"id":19,"tags":{"url":"/dashboard"},"startTime":1772039660601,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":11291,"timestamp":46185010558,"id":23,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772039660610,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":133440,"timestamp":46185009672,"id":22,"tags":{"url":"/dashboard"},"startTime":1772039660609,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":19,"timestamp":46185143376,"id":24,"parentId":22,"tags":{"url":"/dashboard","memory.rss":"573255680","memory.heapUsed":"96478920","memory.heapTotal":"109387776"},"startTime":1772039660743,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":530,"timestamp":46185384455,"id":26,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772039660984,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":15878,"timestamp":46185383760,"id":25,"tags":{"url":"/api/auth/me"},"startTime":1772039660983,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":7,"timestamp":46185399720,"id":27,"parentId":25,"tags":{"url":"/api/auth/me","memory.rss":"576794624","memory.heapUsed":"98808880","memory.heapTotal":"118276096"},"startTime":1772039660999,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1478,"timestamp":46487875532,"id":28,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039963475,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":3348,"timestamp":46487879992,"id":30,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039963480,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":918,"timestamp":46487884493,"id":31,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039963484,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":10559,"timestamp":46487877244,"id":29,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772039963477,"traceId":"71293b43eb2c28d7"},{"name":"compile-path","duration":15741,"timestamp":46487889598,"id":34,"tags":{"trigger":"/dashboard"},"startTime":1772039963489,"traceId":"71293b43eb2c28d7"}] -[{"name":"client-hmr-latency","duration":71000,"timestamp":46487798039,"id":35,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772039963666,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":180060,"timestamp":46487888845,"id":32,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772039963488,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":11,"timestamp":46488069022,"id":36,"parentId":32,"tags":{"url":"/dashboard?_rsc=1h18q","memory.rss":"610291712","memory.heapUsed":"109000432","memory.heapTotal":"113737728"},"startTime":1772039963669,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":2453,"timestamp":46498511937,"id":37,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039974112,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":943,"timestamp":46498516328,"id":39,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039974116,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1057,"timestamp":46498520611,"id":40,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772039974120,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":11553,"timestamp":46498514855,"id":38,"tags":{"url":"/dashboard"},"startTime":1772039974114,"traceId":"71293b43eb2c28d7"},{"name":"compile-path","duration":8614,"timestamp":46498531192,"id":43,"tags":{"trigger":"/dashboard"},"startTime":1772039974131,"traceId":"71293b43eb2c28d7"}] -[{"name":"handle-request","duration":188201,"timestamp":46498529390,"id":41,"tags":{"url":"/dashboard"},"startTime":1772039974129,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":13,"timestamp":46498717796,"id":44,"parentId":41,"tags":{"url":"/dashboard","memory.rss":"615792640","memory.heapUsed":"110353192","memory.heapTotal":"127840256"},"startTime":1772039974317,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":958,"timestamp":46499085451,"id":46,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772039974685,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":80495,"timestamp":46499084535,"id":45,"tags":{"url":"/api/auth/me"},"startTime":1772039974684,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":17,"timestamp":46499165276,"id":47,"parentId":45,"tags":{"url":"/api/auth/me","memory.rss":"614961152","memory.heapUsed":"103592832","memory.heapTotal":"138678272"},"startTime":1772039974765,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":953,"timestamp":46510771732,"id":49,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772039986371,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":381,"timestamp":46510780766,"id":50,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772039986380,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":152,"timestamp":46510781200,"id":51,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772039986381,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":188,"timestamp":46510782466,"id":52,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772039986382,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":266,"timestamp":46510782696,"id":53,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772039986382,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":20517,"timestamp":46510771068,"id":48,"tags":{"url":"/api/auth/me"},"startTime":1772039986371,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":30,"timestamp":46510791933,"id":57,"parentId":48,"tags":{"url":"/api/auth/me","memory.rss":"614813696","memory.heapUsed":"100041912","memory.heapTotal":"105996288"},"startTime":1772039986392,"traceId":"71293b43eb2c28d7"},{"name":"compile-path","duration":19994,"timestamp":46510785307,"id":56,"tags":{"trigger":"/_not-found/page"},"startTime":1772039986385,"traceId":"71293b43eb2c28d7"}] -[{"name":"ensure-page","duration":1077,"timestamp":46510806361,"id":58,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772039986406,"traceId":"71293b43eb2c28d7"},{"name":"client-hmr-latency","duration":117000,"timestamp":46510637703,"id":59,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":true},"startTime":1772039986540,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":171828,"timestamp":46510783703,"id":54,"tags":{"url":"/api/users"},"startTime":1772039986383,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":8,"timestamp":46510955646,"id":60,"parentId":54,"tags":{"url":"/api/users","memory.rss":"637796352","memory.heapUsed":"109987304","memory.heapTotal":"131596288"},"startTime":1772039986555,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1601,"timestamp":46525994579,"id":61,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040001594,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1294,"timestamp":46525996905,"id":63,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040001596,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1658,"timestamp":46526000944,"id":64,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040001601,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":9550,"timestamp":46525996305,"id":62,"tags":{"url":"/dashboard"},"startTime":1772040001596,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":8437,"timestamp":46526007146,"id":66,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772040001607,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":113260,"timestamp":46526006725,"id":65,"tags":{"url":"/dashboard"},"startTime":1772040001606,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":10,"timestamp":46526120131,"id":67,"parentId":65,"tags":{"url":"/dashboard","memory.rss":"635199488","memory.heapUsed":"117370192","memory.heapTotal":"136491008"},"startTime":1772040001720,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":244,"timestamp":46526374494,"id":70,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040001974,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":152,"timestamp":46526374780,"id":71,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040001974,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1166,"timestamp":46526374255,"id":69,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772040001974,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":334,"timestamp":46526388515,"id":72,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040001988,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":353,"timestamp":46526388915,"id":73,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040001988,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":2241,"timestamp":46526390658,"id":75,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040001990,"traceId":"71293b43eb2c28d7"},{"name":"ensure-page","duration":1532,"timestamp":46526393254,"id":76,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040001993,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":79491,"timestamp":46526373867,"id":68,"tags":{"url":"/api/auth/me"},"startTime":1772040001973,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":5,"timestamp":46526453449,"id":77,"parentId":68,"tags":{"url":"/api/auth/me","memory.rss":"638689280","memory.heapUsed":"116801872","memory.heapTotal":"157126656"},"startTime":1772040002053,"traceId":"71293b43eb2c28d7"},{"name":"handle-request","duration":73971,"timestamp":46526389984,"id":74,"tags":{"url":"/api/users"},"startTime":1772040001990,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":11,"timestamp":46526464090,"id":78,"parentId":74,"tags":{"url":"/api/users","memory.rss":"638689280","memory.heapUsed":"118228304","memory.heapTotal":"157126656"},"startTime":1772040002064,"traceId":"71293b43eb2c28d7"},{"name":"compile-path","duration":26656,"timestamp":46537861984,"id":81,"tags":{"trigger":"/login"},"startTime":1772040013462,"traceId":"71293b43eb2c28d7"}] -[{"name":"handle-request","duration":165351,"timestamp":46537860964,"id":79,"tags":{"url":"/login"},"startTime":1772040013461,"traceId":"71293b43eb2c28d7"},{"name":"memory-usage","duration":8,"timestamp":46538026412,"id":82,"parentId":79,"tags":{"url":"/login","memory.rss":"665116672","memory.heapUsed":"122454616","memory.heapTotal":"134995968"},"startTime":1772040013626,"traceId":"71293b43eb2c28d7"},{"name":"compile-path","duration":17410,"timestamp":46550129356,"id":85,"tags":{"trigger":"/api/auth/login"},"startTime":1772040025729,"traceId":"71293b43eb2c28d7"}] -[{"name":"hot-reloader","duration":66,"timestamp":46586420266,"id":3,"tags":{"version":"16.1.6"},"startTime":1772040062020,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":25341,"timestamp":46586495555,"id":4,"tags":{"trigger":"proxy"},"startTime":1772040062095,"traceId":"ce8fa190e7d93e11"}] -[{"name":"setup-dev-bundler","duration":267962,"timestamp":46586336324,"id":2,"parentId":1,"tags":{},"startTime":1772040061936,"traceId":"ce8fa190e7d93e11"},{"name":"start-dev-server","duration":802599,"timestamp":46585919129,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6598696960","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"371761152","memory.heapTotal":"89591808","memory.heapUsed":"65465320"},"startTime":1772040061519,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":155812,"timestamp":46586774537,"id":7,"tags":{"trigger":"/login"},"startTime":1772040062374,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":775250,"timestamp":46586764564,"id":5,"tags":{"url":"/login"},"startTime":1772040062364,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":46587539972,"id":8,"parentId":5,"tags":{"url":"/login","memory.rss":"524800000","memory.heapUsed":"94446088","memory.heapTotal":"118575104"},"startTime":1772040063140,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":17191,"timestamp":46594283393,"id":11,"tags":{"trigger":"/api/auth/login"},"startTime":1772040069883,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":107868,"timestamp":46594278867,"id":9,"tags":{"url":"/api/auth/login"},"startTime":1772040069878,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":46594386828,"id":12,"parentId":9,"tags":{"url":"/api/auth/login","memory.rss":"580472832","memory.heapUsed":"104605024","memory.heapTotal":"130154496"},"startTime":1772040069986,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3673,"timestamp":46604814567,"id":14,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040080414,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":93515,"timestamp":46604811873,"id":13,"tags":{"url":"/api/auth/login"},"startTime":1772040080411,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":5,"timestamp":46604905503,"id":15,"parentId":13,"tags":{"url":"/api/auth/login","memory.rss":"551718912","memory.heapUsed":"93171976","memory.heapTotal":"97509376"},"startTime":1772040080505,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1417,"timestamp":46604910132,"id":16,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040080510,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1322,"timestamp":46604913016,"id":18,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040080513,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":983,"timestamp":46604916718,"id":19,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040080516,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":51608,"timestamp":46604911706,"id":17,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040080511,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2423,"timestamp":46604969590,"id":21,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040080569,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":24947,"timestamp":46604968920,"id":20,"tags":{"url":"/login"},"startTime":1772040080568,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":46604993943,"id":22,"parentId":20,"tags":{"url":"/login","memory.rss":"557195264","memory.heapUsed":"97659936","memory.heapTotal":"107782144"},"startTime":1772040080594,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":478000,"timestamp":46708209368,"id":23,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772040184315,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1447,"timestamp":46721406640,"id":25,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040197006,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":85551,"timestamp":46721404863,"id":24,"tags":{"url":"/api/auth/login"},"startTime":1772040197004,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":46721490518,"id":26,"parentId":24,"tags":{"url":"/api/auth/login","memory.rss":"579231744","memory.heapUsed":"94861720","memory.heapTotal":"100990976"},"startTime":1772040197090,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1693,"timestamp":46721500721,"id":27,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040197100,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":932,"timestamp":46721503388,"id":29,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040197103,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":809,"timestamp":46721506474,"id":30,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040197106,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6977,"timestamp":46721502603,"id":28,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040197102,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":11545,"timestamp":46721575576,"id":32,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040197175,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":77578,"timestamp":46721574958,"id":31,"tags":{"url":"/login"},"startTime":1772040197175,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":46721652639,"id":33,"parentId":31,"tags":{"url":"/login","memory.rss":"589053952","memory.heapUsed":"105104304","memory.heapTotal":"112648192"},"startTime":1772040197252,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2332,"timestamp":46722754703,"id":35,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040198354,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":101111,"timestamp":46722752402,"id":34,"tags":{"url":"/api/auth/login"},"startTime":1772040198352,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":6,"timestamp":46722853579,"id":36,"parentId":34,"tags":{"url":"/api/auth/login","memory.rss":"582651904","memory.heapUsed":"96422160","memory.heapTotal":"106860544"},"startTime":1772040198453,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":588,"timestamp":46722856840,"id":37,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040198456,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":753,"timestamp":46722858097,"id":39,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040198458,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":796,"timestamp":46722859901,"id":40,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040198459,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":5452,"timestamp":46722857601,"id":38,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040198457,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2055,"timestamp":46722872916,"id":42,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040198472,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":30068,"timestamp":46722872072,"id":41,"tags":{"url":"/login"},"startTime":1772040198472,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":46722902255,"id":43,"parentId":41,"tags":{"url":"/login","memory.rss":"585142272","memory.heapUsed":"96967192","memory.heapTotal":"106860544"},"startTime":1772040198502,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1531,"timestamp":46724363804,"id":45,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040199963,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":97678,"timestamp":46724363191,"id":44,"tags":{"url":"/login"},"startTime":1772040199963,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":46724460984,"id":46,"parentId":44,"tags":{"url":"/login","memory.rss":"592318464","memory.heapUsed":"103459136","memory.heapTotal":"122613760"},"startTime":1772040200061,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3287,"timestamp":46740608810,"id":48,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040216208,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":90946,"timestamp":46740606780,"id":47,"tags":{"url":"/api/auth/login"},"startTime":1772040216206,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":5,"timestamp":46740697826,"id":49,"parentId":47,"tags":{"url":"/api/auth/login","memory.rss":"596496384","memory.heapUsed":"108613856","memory.heapTotal":"122851328"},"startTime":1772040216297,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":575,"timestamp":46740701931,"id":50,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040216302,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":819,"timestamp":46740702921,"id":52,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040216302,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":663,"timestamp":46740704668,"id":53,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040216304,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":4362,"timestamp":46740702581,"id":51,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040216302,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3233,"timestamp":46740711901,"id":55,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040216311,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":29274,"timestamp":46740711520,"id":54,"tags":{"url":"/login"},"startTime":1772040216311,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":46740740877,"id":56,"parentId":54,"tags":{"url":"/login","memory.rss":"597938176","memory.heapUsed":"105575352","memory.heapTotal":"113676288"},"startTime":1772040216340,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2610,"timestamp":46741444345,"id":58,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040217044,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":83431,"timestamp":46741442696,"id":57,"tags":{"url":"/api/auth/login"},"startTime":1772040217042,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":21,"timestamp":46741526243,"id":59,"parentId":57,"tags":{"url":"/api/auth/login","memory.rss":"598462464","memory.heapUsed":"107240920","memory.heapTotal":"114143232"},"startTime":1772040217126,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":578,"timestamp":46741529591,"id":60,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217129,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":605,"timestamp":46741530574,"id":62,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217130,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":807,"timestamp":46741532091,"id":63,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217132,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":4312,"timestamp":46741530240,"id":61,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040217130,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":824,"timestamp":46741540811,"id":65,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040217140,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":23370,"timestamp":46741540490,"id":64,"tags":{"url":"/login"},"startTime":1772040217140,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":29,"timestamp":46741563983,"id":66,"parentId":64,"tags":{"url":"/login","memory.rss":"598462464","memory.heapUsed":"107482744","memory.heapTotal":"112832512"},"startTime":1772040217164,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":682,"timestamp":46741608188,"id":68,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040217208,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":72496,"timestamp":46741607696,"id":67,"tags":{"url":"/api/auth/login"},"startTime":1772040217207,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":6,"timestamp":46741680279,"id":69,"parentId":67,"tags":{"url":"/api/auth/login","memory.rss":"598462464","memory.heapUsed":"108583352","memory.heapTotal":"113094656"},"startTime":1772040217280,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":597,"timestamp":46741683796,"id":70,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217283,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":544,"timestamp":46741684800,"id":72,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217284,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":554,"timestamp":46741685958,"id":73,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217286,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":3402,"timestamp":46741684465,"id":71,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040217284,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":769,"timestamp":46741693590,"id":75,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040217293,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":24709,"timestamp":46741693263,"id":74,"tags":{"url":"/login"},"startTime":1772040217293,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":46741718065,"id":76,"parentId":74,"tags":{"url":"/login","memory.rss":"598593536","memory.heapUsed":"108652952","memory.heapTotal":"117813248"},"startTime":1772040217318,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":642,"timestamp":46741754938,"id":78,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040217355,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":71272,"timestamp":46741754500,"id":77,"tags":{"url":"/api/auth/login"},"startTime":1772040217354,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":46741825850,"id":79,"parentId":77,"tags":{"url":"/api/auth/login","memory.rss":"598855680","memory.heapUsed":"109699192","memory.heapTotal":"117813248"},"startTime":1772040217425,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":727,"timestamp":46741829401,"id":80,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217429,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1062,"timestamp":46741831397,"id":82,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217431,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":826,"timestamp":46741833631,"id":83,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217433,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6213,"timestamp":46741830220,"id":81,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040217430,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":905,"timestamp":46741842226,"id":85,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040217442,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":24621,"timestamp":46741841856,"id":84,"tags":{"url":"/login"},"startTime":1772040217441,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":46741866562,"id":86,"parentId":84,"tags":{"url":"/login","memory.rss":"599511040","memory.heapUsed":"110427400","memory.heapTotal":"118861824"},"startTime":1772040217466,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":792,"timestamp":46741902616,"id":88,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040217502,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":74651,"timestamp":46741901953,"id":87,"tags":{"url":"/api/auth/login"},"startTime":1772040217502,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":6,"timestamp":46741976687,"id":89,"parentId":87,"tags":{"url":"/api/auth/login","memory.rss":"599904256","memory.heapUsed":"111713936","memory.heapTotal":"119123968"},"startTime":1772040217576,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":521,"timestamp":46741979654,"id":90,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217579,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":664,"timestamp":46741980541,"id":92,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217580,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":761,"timestamp":46741981906,"id":93,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217581,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":3799,"timestamp":46741980241,"id":91,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040217580,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":868,"timestamp":46741990319,"id":95,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040217590,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":732,"timestamp":46742010760,"id":97,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040217610,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":32491,"timestamp":46741989946,"id":94,"tags":{"url":"/login"},"startTime":1772040217590,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":46742022522,"id":98,"parentId":94,"tags":{"url":"/login","memory.rss":"600559616","memory.heapUsed":"111934704","memory.heapTotal":"120958976"},"startTime":1772040217622,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":79575,"timestamp":46742010210,"id":96,"tags":{"url":"/api/auth/login"},"startTime":1772040217610,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":6,"timestamp":46742089848,"id":99,"parentId":96,"tags":{"url":"/api/auth/login","memory.rss":"600690688","memory.heapUsed":"112220368","memory.heapTotal":"120958976"},"startTime":1772040217689,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":807,"timestamp":46742093034,"id":100,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217693,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":826,"timestamp":46742094385,"id":102,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217694,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":731,"timestamp":46742096227,"id":103,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040217696,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":5351,"timestamp":46742093936,"id":101,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040217694,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":912,"timestamp":46742106790,"id":105,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040217706,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":28826,"timestamp":46742106398,"id":104,"tags":{"url":"/login"},"startTime":1772040217706,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":46742135343,"id":106,"parentId":104,"tags":{"url":"/login","memory.rss":"601870336","memory.heapUsed":"113319544","memory.heapTotal":"128561152"},"startTime":1772040217735,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1242,"timestamp":46746367997,"id":107,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040221968,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1353,"timestamp":46746370263,"id":109,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040221970,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1068,"timestamp":46746372756,"id":110,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040221972,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6647,"timestamp":46746369439,"id":108,"tags":{"url":"/dashboard"},"startTime":1772040221969,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1106,"timestamp":46746382157,"id":112,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040221982,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":62904,"timestamp":46746381409,"id":111,"tags":{"url":"/login"},"startTime":1772040221981,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":46746444414,"id":113,"parentId":111,"tags":{"url":"/login","memory.rss":"622702592","memory.heapUsed":"110865232","memory.heapTotal":"128036864"},"startTime":1772040222044,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2779,"timestamp":46780475027,"id":115,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040256075,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":119696,"timestamp":46780473389,"id":114,"tags":{"url":"/api/auth/login"},"startTime":1772040256073,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":5,"timestamp":46780593149,"id":116,"parentId":114,"tags":{"url":"/api/auth/login","memory.rss":"604647424","memory.heapUsed":"97805480","memory.heapTotal":"106123264"},"startTime":1772040256193,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":720,"timestamp":46780597463,"id":117,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040256197,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1080,"timestamp":46780598625,"id":119,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040256198,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1043,"timestamp":46780601859,"id":120,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040256201,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":7514,"timestamp":46780598266,"id":118,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040256198,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":13138,"timestamp":46780608056,"id":123,"tags":{"trigger":"/dashboard"},"startTime":1772040256208,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":62914,"timestamp":46780606883,"id":121,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040256206,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":46780669871,"id":124,"parentId":121,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"612511744","memory.heapUsed":"101071256","memory.heapTotal":"107286528"},"startTime":1772040256269,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":336,"timestamp":46780732432,"id":125,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040256332,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":156,"timestamp":46780732826,"id":126,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040256332,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":398,"timestamp":46780734741,"id":130,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040256334,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":421,"timestamp":46780735225,"id":131,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040256335,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7461,"timestamp":46780733927,"id":128,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772040256333,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":48812,"timestamp":46780733983,"id":129,"tags":{"trigger":"/api/auth/me"},"startTime":1772040256334,"traceId":"ce8fa190e7d93e11"}] -[{"name":"ensure-page","duration":1243,"timestamp":46780783846,"id":134,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040256383,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":123146,"timestamp":46780733521,"id":127,"tags":{"url":"/api/auth/me"},"startTime":1772040256333,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":6,"timestamp":46780856740,"id":135,"parentId":127,"tags":{"url":"/api/auth/me","memory.rss":"635797504","memory.heapUsed":"110288664","memory.heapTotal":"123584512"},"startTime":1772040256456,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5070,"timestamp":46780900551,"id":137,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772040256500,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":174517,"timestamp":46780737987,"id":132,"tags":{"url":"/api/users"},"startTime":1772040256338,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":46780912583,"id":138,"parentId":132,"tags":{"url":"/api/users","memory.rss":"643178496","memory.heapUsed":"114661080","memory.heapTotal":"133738496"},"startTime":1772040256512,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":16512,"timestamp":46780900123,"id":136,"tags":{"url":"/api/auth/me"},"startTime":1772040256500,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":46780916751,"id":139,"parentId":136,"tags":{"url":"/api/auth/me","memory.rss":"643440640","memory.heapUsed":"114979696","memory.heapTotal":"133738496"},"startTime":1772040256516,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":413,"timestamp":46780917569,"id":140,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040256517,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":370,"timestamp":46780918092,"id":141,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040256518,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":228,"timestamp":46780919163,"id":142,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040256519,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":164,"timestamp":46780919444,"id":143,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040256519,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1013,"timestamp":46780920494,"id":145,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040256520,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":845,"timestamp":46780921761,"id":146,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040256521,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":46322,"timestamp":46780920107,"id":144,"tags":{"url":"/api/users"},"startTime":1772040256520,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":46780966517,"id":147,"parentId":144,"tags":{"url":"/api/users","memory.rss":"648683520","memory.heapUsed":"115811288","memory.heapTotal":"135811072"},"startTime":1772040256566,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":781,"timestamp":46804841263,"id":148,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040280441,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":692,"timestamp":46804842616,"id":150,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040280442,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":608,"timestamp":46804844024,"id":151,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040280444,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":3944,"timestamp":46804842134,"id":149,"tags":{"url":"/dashboard"},"startTime":1772040280442,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":988,"timestamp":46804847834,"id":153,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772040280447,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":60823,"timestamp":46804847503,"id":152,"tags":{"url":"/dashboard"},"startTime":1772040280447,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":46804908414,"id":154,"parentId":152,"tags":{"url":"/dashboard","memory.rss":"625164288","memory.heapUsed":"112239952","memory.heapTotal":"119320576"},"startTime":1772040280508,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":210,"timestamp":46805276944,"id":157,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040280877,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":152,"timestamp":46805277285,"id":158,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040280877,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1106,"timestamp":46805276712,"id":156,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772040280876,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":204,"timestamp":46805282941,"id":159,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040280883,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":147,"timestamp":46805283183,"id":160,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040280883,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1368,"timestamp":46805283833,"id":162,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040280883,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1092,"timestamp":46805285393,"id":163,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040280885,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":50244,"timestamp":46805276298,"id":155,"tags":{"url":"/api/auth/me"},"startTime":1772040280876,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":6,"timestamp":46805326611,"id":164,"parentId":155,"tags":{"url":"/api/auth/me","memory.rss":"628965376","memory.heapUsed":"115741096","memory.heapTotal":"122703872"},"startTime":1772040280926,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":54390,"timestamp":46805283485,"id":161,"tags":{"url":"/api/users"},"startTime":1772040280883,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":46805338032,"id":165,"parentId":161,"tags":{"url":"/api/users","memory.rss":"629227520","memory.heapUsed":"115893312","memory.heapTotal":"122966016"},"startTime":1772040280938,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1356,"timestamp":46809320338,"id":166,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040284920,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1405,"timestamp":46809322633,"id":168,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040284922,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2756,"timestamp":46809325406,"id":169,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040284925,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":7769,"timestamp":46809321839,"id":167,"tags":{"url":"/dashboard"},"startTime":1772040284921,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1149,"timestamp":46809330829,"id":171,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772040284930,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":49165,"timestamp":46809330427,"id":170,"tags":{"url":"/dashboard"},"startTime":1772040284930,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":46809379674,"id":172,"parentId":170,"tags":{"url":"/dashboard","memory.rss":"651046912","memory.heapUsed":"118544872","memory.heapTotal":"127889408"},"startTime":1772040284979,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":672,"timestamp":46809849152,"id":175,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040285449,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":506,"timestamp":46809849931,"id":176,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040285450,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4224,"timestamp":46809847883,"id":174,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772040285447,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":456,"timestamp":46809863943,"id":177,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040285464,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":354,"timestamp":46809864483,"id":178,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040285464,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3902,"timestamp":46809866790,"id":180,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040285466,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2266,"timestamp":46809871375,"id":181,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040285471,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":94196,"timestamp":46809846889,"id":173,"tags":{"url":"/api/auth/me"},"startTime":1772040285446,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":46809941157,"id":182,"parentId":173,"tags":{"url":"/api/auth/me","memory.rss":"636190720","memory.heapUsed":"117177840","memory.heapTotal":"129462272"},"startTime":1772040285541,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":86680,"timestamp":46809865435,"id":179,"tags":{"url":"/api/users"},"startTime":1772040285465,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":46809952197,"id":183,"parentId":179,"tags":{"url":"/api/users","memory.rss":"636452864","memory.heapUsed":"116624488","memory.heapTotal":"137850880"},"startTime":1772040285552,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1375,"timestamp":47023560578,"id":184,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040499160,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1222,"timestamp":47023562767,"id":186,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040499162,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1220,"timestamp":47023565203,"id":187,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040499165,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":7102,"timestamp":47023562099,"id":185,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772040499162,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":15254,"timestamp":47023571199,"id":190,"tags":{"trigger":"/dashboard"},"startTime":1772040499171,"traceId":"ce8fa190e7d93e11"}] -[{"name":"client-hmr-latency","duration":85000,"timestamp":47023467323,"id":191,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772040499385,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":234908,"timestamp":47023570371,"id":188,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772040499170,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":14,"timestamp":47023805427,"id":192,"parentId":188,"tags":{"url":"/dashboard?_rsc=1h18q","memory.rss":"655376384","memory.heapUsed":"126490912","memory.heapTotal":"145375232"},"startTime":1772040499405,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1000,"timestamp":47028800859,"id":193,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040504400,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":895,"timestamp":47028802485,"id":195,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040504402,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":987,"timestamp":47028804303,"id":196,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040504404,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":7097,"timestamp":47028801990,"id":194,"tags":{"url":"/dashboard"},"startTime":1772040504402,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":9521,"timestamp":47028813258,"id":199,"tags":{"trigger":"/dashboard"},"startTime":1772040504413,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":315854,"timestamp":47028812696,"id":197,"tags":{"url":"/dashboard"},"startTime":1772040504412,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":16,"timestamp":47029128752,"id":200,"parentId":197,"tags":{"url":"/dashboard","memory.rss":"683171840","memory.heapUsed":"131715408","memory.heapTotal":"154476544"},"startTime":1772040504728,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":892,"timestamp":47029469742,"id":202,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772040505069,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":263,"timestamp":47029484106,"id":203,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040505084,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":187,"timestamp":47029484460,"id":204,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040505084,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":254,"timestamp":47029485970,"id":205,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040505086,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":184,"timestamp":47029486272,"id":206,"parentId":3,"tags":{"inputPage":"/api/users"},"startTime":1772040505086,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2487,"timestamp":47029487640,"id":208,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040505087,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1990,"timestamp":47029490549,"id":209,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772040505090,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":88733,"timestamp":47029469196,"id":201,"tags":{"url":"/api/auth/me"},"startTime":1772040505069,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":47029558097,"id":210,"parentId":201,"tags":{"url":"/api/auth/me","memory.rss":"665890816","memory.heapUsed":"133870280","memory.heapTotal":"154714112"},"startTime":1772040505158,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":89876,"timestamp":47029487083,"id":207,"tags":{"url":"/api/users"},"startTime":1772040505087,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":23,"timestamp":47029577242,"id":211,"parentId":207,"tags":{"url":"/api/users","memory.rss":"665890816","memory.heapUsed":"135145416","memory.heapTotal":"154714112"},"startTime":1772040505177,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":53000,"timestamp":47040149499,"id":212,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":true},"startTime":1772040515831,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":589,"timestamp":47051580620,"id":213,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040527180,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":619,"timestamp":47051581735,"id":215,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040527181,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":577,"timestamp":47051582935,"id":216,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040527183,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":3528,"timestamp":47051581287,"id":214,"tags":{"url":"/dashboard"},"startTime":1772040527181,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9808,"timestamp":47051586105,"id":218,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772040527186,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":189052,"timestamp":47051585632,"id":217,"tags":{"url":"/dashboard"},"startTime":1772040527185,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":47051774799,"id":219,"parentId":217,"tags":{"url":"/dashboard","memory.rss":"674521088","memory.heapUsed":"140601776","memory.heapTotal":"162947072"},"startTime":1772040527374,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":612,"timestamp":47052030577,"id":221,"parentId":3,"tags":{"inputPage":"/api/auth/me/route"},"startTime":1772040527630,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":19924,"timestamp":47052029898,"id":220,"tags":{"url":"/api/auth/me"},"startTime":1772040527629,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":47052049918,"id":222,"parentId":220,"tags":{"url":"/api/auth/me","memory.rss":"676093952","memory.heapUsed":"145185856","memory.heapTotal":"163184640"},"startTime":1772040527649,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":827,"timestamp":47134937670,"id":223,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040610537,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1590,"timestamp":47134939126,"id":225,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040610539,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3145,"timestamp":47134942518,"id":226,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040610542,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":9485,"timestamp":47134938618,"id":224,"tags":{"url":"/dashboard"},"startTime":1772040610538,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":840,"timestamp":47134980754,"id":228,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040610580,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":49995,"timestamp":47134980396,"id":227,"tags":{"url":"/login"},"startTime":1772040610580,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":47135030464,"id":229,"parentId":227,"tags":{"url":"/login","memory.rss":"678604800","memory.heapUsed":"143468936","memory.heapTotal":"149291008"},"startTime":1772040610630,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":44000,"timestamp":47242495731,"id":230,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":true},"startTime":1772040718167,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":728,"timestamp":47252552360,"id":231,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040728152,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":764,"timestamp":47252553586,"id":233,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040728153,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":726,"timestamp":47252555059,"id":234,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040728155,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":3763,"timestamp":47252553187,"id":232,"tags":{"url":"/dashboard"},"startTime":1772040728153,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10077,"timestamp":47252559207,"id":236,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772040728159,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":205943,"timestamp":47252558659,"id":235,"tags":{"url":"/dashboard"},"startTime":1772040728158,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":47252764697,"id":237,"parentId":235,"tags":{"url":"/dashboard","memory.rss":"687710208","memory.heapUsed":"151467272","memory.heapTotal":"174538752"},"startTime":1772040728364,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":864,"timestamp":47304817724,"id":238,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040780417,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":810,"timestamp":47304819239,"id":240,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040780419,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":747,"timestamp":47304820791,"id":241,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040780420,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":4524,"timestamp":47304818691,"id":239,"tags":{"url":"/dashboard"},"startTime":1772040780418,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1385,"timestamp":47304835050,"id":243,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772040780435,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":55128,"timestamp":47304834131,"id":242,"tags":{"url":"/login"},"startTime":1772040780434,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":47304889339,"id":244,"parentId":242,"tags":{"url":"/login","memory.rss":"679452672","memory.heapUsed":"148992056","memory.heapTotal":"155426816"},"startTime":1772040780489,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1276,"timestamp":47316873170,"id":246,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772040792473,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":107891,"timestamp":47316871604,"id":245,"tags":{"url":"/api/auth/login"},"startTime":1772040792471,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":6,"timestamp":47316979569,"id":247,"parentId":245,"tags":{"url":"/api/auth/login","memory.rss":"700424192","memory.heapUsed":"151234048","memory.heapTotal":"158810112"},"startTime":1772040792579,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":884,"timestamp":47316985724,"id":248,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040792585,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":907,"timestamp":47316987297,"id":250,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040792587,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1022,"timestamp":47316990448,"id":251,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772040792590,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6544,"timestamp":47316986725,"id":249,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040792586,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1108,"timestamp":47316994740,"id":253,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772040792594,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":26487,"timestamp":47316994250,"id":252,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772040792594,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":47317020813,"id":254,"parentId":252,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"700817408","memory.heapUsed":"151327984","memory.heapTotal":"156188672"},"startTime":1772040792620,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":629,"timestamp":47656372813,"id":255,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041131972,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":610,"timestamp":47656373876,"id":257,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041131973,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":564,"timestamp":47656375096,"id":258,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041131975,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":3247,"timestamp":47656373526,"id":256,"tags":{"url":"/dashboard"},"startTime":1772041131973,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":744,"timestamp":47656378850,"id":260,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772041131978,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":50889,"timestamp":47656378531,"id":259,"tags":{"url":"/dashboard"},"startTime":1772041131978,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":47656429517,"id":261,"parentId":259,"tags":{"url":"/dashboard","memory.rss":"682954752","memory.heapUsed":"153866680","memory.heapTotal":"158228480"},"startTime":1772041132029,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2612,"timestamp":47673664740,"id":263,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772041149264,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":61079,"timestamp":47673664245,"id":262,"tags":{"url":"/login"},"startTime":1772041149264,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":47673725421,"id":264,"parentId":262,"tags":{"url":"/login","memory.rss":"685510656","memory.heapUsed":"156326080","memory.heapTotal":"160325632"},"startTime":1772041149325,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2524,"timestamp":47684724062,"id":266,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772041160324,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":108417,"timestamp":47684722076,"id":265,"tags":{"url":"/api/auth/login"},"startTime":1772041160322,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":5,"timestamp":47684830561,"id":267,"parentId":265,"tags":{"url":"/api/auth/login","memory.rss":"705826816","memory.heapUsed":"157285424","memory.heapTotal":"162684928"},"startTime":1772041160430,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":616,"timestamp":47684838706,"id":268,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041160438,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":709,"timestamp":47684839803,"id":270,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041160439,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1193,"timestamp":47684842928,"id":271,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041160443,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":5918,"timestamp":47684839400,"id":269,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772041160439,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1745,"timestamp":47684853429,"id":273,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772041160453,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":24150,"timestamp":47684852954,"id":272,"tags":{"url":"/login"},"startTime":1772041160453,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":47684877194,"id":274,"parentId":272,"tags":{"url":"/login","memory.rss":"706744320","memory.heapUsed":"158269928","memory.heapTotal":"163471360"},"startTime":1772041160477,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1159,"timestamp":47734514550,"id":276,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772041210114,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":104357,"timestamp":47734513877,"id":275,"tags":{"url":"/api/auth/login"},"startTime":1772041210113,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":47734618317,"id":277,"parentId":275,"tags":{"url":"/api/auth/login","memory.rss":"708014080","memory.heapUsed":"159822008","memory.heapTotal":"163610624"},"startTime":1772041210218,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":565,"timestamp":47734622373,"id":278,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041210222,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":544,"timestamp":47734623325,"id":280,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041210223,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":968,"timestamp":47734624762,"id":281,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772041210224,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":4513,"timestamp":47734623022,"id":279,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772041210223,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1575,"timestamp":47734629129,"id":283,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772041210229,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":27068,"timestamp":47734628602,"id":282,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772041210228,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":47734655807,"id":284,"parentId":282,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"709062656","memory.heapUsed":"160239688","memory.heapTotal":"164659200"},"startTime":1772041210255,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":12351,"timestamp":50255052882,"id":287,"tags":{"trigger":"/"},"startTime":1772043730652,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":120939,"timestamp":50255051714,"id":285,"tags":{"url":"/"},"startTime":1772043730651,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":50255172741,"id":288,"parentId":285,"tags":{"url":"/","memory.rss":"692154368","memory.heapUsed":"157729104","memory.heapTotal":"166014976"},"startTime":1772043730772,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":817,"timestamp":50312453734,"id":291,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043788053,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3740,"timestamp":50312452863,"id":290,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772043788052,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":32860,"timestamp":50312455182,"id":293,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043788055,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":82000,"timestamp":50312361494,"id":294,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1772043788089,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":82000,"timestamp":50312362654,"id":295,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":true},"startTime":1772043788089,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":849,"timestamp":50312489759,"id":296,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043788089,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":38348,"timestamp":50312454677,"id":292,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772043788054,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":13083,"timestamp":50312495242,"id":299,"tags":{"trigger":"/dashboard"},"startTime":1772043788095,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":249301,"timestamp":50312452115,"id":289,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772043788052,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":50312701550,"id":300,"parentId":289,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"701616128","memory.heapUsed":"160335616","memory.heapTotal":"177889280"},"startTime":1772043788301,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":209388,"timestamp":50312494543,"id":297,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772043788094,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":50312704054,"id":301,"parentId":297,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"701616128","memory.heapUsed":"160395728","memory.heapTotal":"177889280"},"startTime":1772043788304,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3548,"timestamp":50317380936,"id":302,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043792981,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2725,"timestamp":50317385543,"id":306,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043792985,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6455,"timestamp":50317384057,"id":304,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1772043792984,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":37000,"timestamp":50317317693,"id":308,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":true},"startTime":1772043793025,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1407,"timestamp":50317424555,"id":307,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043793024,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":44122,"timestamp":50317384609,"id":305,"tags":{"url":"/dashboard"},"startTime":1772043792984,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":10398,"timestamp":50317430913,"id":311,"tags":{"trigger":"/dashboard"},"startTime":1772043793030,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":262104,"timestamp":50317383274,"id":303,"tags":{"url":"/?_rsc=1ch6o"},"startTime":1772043792983,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":14,"timestamp":50317645507,"id":312,"parentId":303,"tags":{"url":"/?_rsc=1ch6o","memory.rss":"735092736","memory.heapUsed":"174453272","memory.heapTotal":"191889408"},"startTime":1772043793245,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":224201,"timestamp":50317430338,"id":309,"tags":{"url":"/dashboard"},"startTime":1772043793030,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":20,"timestamp":50317654683,"id":313,"parentId":309,"tags":{"url":"/dashboard","memory.rss":"735223808","memory.heapUsed":"174523272","memory.heapTotal":"191889408"},"startTime":1772043793254,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":297,"timestamp":50327800697,"id":314,"parentId":3,"tags":{"inputPage":"/auth/me"},"startTime":1772043803400,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":178,"timestamp":50327801067,"id":315,"parentId":3,"tags":{"inputPage":"/auth/me"},"startTime":1772043803401,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":199,"timestamp":50327801817,"id":316,"parentId":3,"tags":{"inputPage":"/auth/me"},"startTime":1772043803401,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":160,"timestamp":50327802057,"id":317,"parentId":3,"tags":{"inputPage":"/auth/me"},"startTime":1772043803402,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1068,"timestamp":50327803536,"id":319,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772043803403,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":841,"timestamp":50327804769,"id":320,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772043803404,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":51000,"timestamp":50327733513,"id":321,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":false},"startTime":1772043803438,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":51000,"timestamp":50327733621,"id":322,"parentId":3,"tags":{"updatedModules":["[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/","isPageHidden":true},"startTime":1772043803438,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":37670,"timestamp":50327802983,"id":318,"tags":{"url":"/auth/me"},"startTime":1772043803403,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":50327840733,"id":323,"parentId":318,"tags":{"url":"/auth/me","memory.rss":"723824640","memory.heapUsed":"181792192","memory.heapTotal":"212803584"},"startTime":1772043803440,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1270,"timestamp":50413196312,"id":325,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772043888796,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":54806,"timestamp":50413195611,"id":324,"tags":{"url":"/login"},"startTime":1772043888795,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":22,"timestamp":50413250644,"id":326,"parentId":324,"tags":{"url":"/login","memory.rss":"727814144","memory.heapUsed":"186564600","memory.heapTotal":"213065728"},"startTime":1772043888850,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2617,"timestamp":50424678040,"id":328,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772043900278,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":123028,"timestamp":50424676436,"id":327,"tags":{"url":"/api/auth/login"},"startTime":1772043900276,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":4,"timestamp":50424799532,"id":329,"parentId":327,"tags":{"url":"/api/auth/login","memory.rss":"749309952","memory.heapUsed":"178653304","memory.heapTotal":"193929216"},"startTime":1772043900399,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":560,"timestamp":50424802951,"id":330,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043900403,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":636,"timestamp":50424803961,"id":332,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043900404,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":579,"timestamp":50424805258,"id":333,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043900405,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":3983,"timestamp":50424803587,"id":331,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772043900403,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1051,"timestamp":50424811777,"id":335,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772043900411,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":17418,"timestamp":50424811467,"id":334,"tags":{"url":"/login"},"startTime":1772043900411,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":50424828985,"id":336,"parentId":334,"tags":{"url":"/login","memory.rss":"749309952","memory.heapUsed":"181353360","memory.heapTotal":"193929216"},"startTime":1772043900429,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2353,"timestamp":50425780030,"id":338,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772043901380,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":89819,"timestamp":50425778708,"id":337,"tags":{"url":"/api/auth/login"},"startTime":1772043901378,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":4,"timestamp":50425868614,"id":339,"parentId":337,"tags":{"url":"/api/auth/login","memory.rss":"729272320","memory.heapUsed":"182447440","memory.heapTotal":"193929216"},"startTime":1772043901468,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":513,"timestamp":50425872354,"id":340,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043901472,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":460,"timestamp":50425873239,"id":342,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043901473,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2911,"timestamp":50425874290,"id":343,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043901474,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6020,"timestamp":50425872936,"id":341,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772043901473,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1082,"timestamp":50425883891,"id":345,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772043901483,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":23108,"timestamp":50425883451,"id":344,"tags":{"url":"/login"},"startTime":1772043901483,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":50425906648,"id":346,"parentId":344,"tags":{"url":"/login","memory.rss":"729272320","memory.heapUsed":"181155040","memory.heapTotal":"192880640"},"startTime":1772043901506,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1561,"timestamp":50431543914,"id":348,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772043907143,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":55671,"timestamp":50431543520,"id":347,"tags":{"url":"/login"},"startTime":1772043907143,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":50431599286,"id":349,"parentId":347,"tags":{"url":"/login","memory.rss":"748933120","memory.heapUsed":"183574648","memory.heapTotal":"189874176"},"startTime":1772043907199,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1284,"timestamp":50435039674,"id":351,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772043910639,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":44489,"timestamp":50435038970,"id":350,"tags":{"url":"/login"},"startTime":1772043910639,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":50435083616,"id":352,"parentId":350,"tags":{"url":"/login","memory.rss":"749764608","memory.heapUsed":"184906576","memory.heapTotal":"194592768"},"startTime":1772043910683,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1897,"timestamp":50465045168,"id":354,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772043940645,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":96293,"timestamp":50465043641,"id":353,"tags":{"url":"/api/auth/login"},"startTime":1772043940643,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":50465140049,"id":355,"parentId":353,"tags":{"url":"/api/auth/login","memory.rss":"749957120","memory.heapUsed":"186170792","memory.heapTotal":"195641344"},"startTime":1772043940740,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":721,"timestamp":50465151755,"id":356,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043940751,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1082,"timestamp":50465153110,"id":358,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043940753,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1022,"timestamp":50465155665,"id":359,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043940755,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6051,"timestamp":50465152571,"id":357,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772043940752,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1705,"timestamp":50465180821,"id":361,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772043940780,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":28409,"timestamp":50465180328,"id":360,"tags":{"url":"/login"},"startTime":1772043940780,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":50465208852,"id":362,"parentId":360,"tags":{"url":"/login","memory.rss":"749957120","memory.heapUsed":"186815920","memory.heapTotal":"191709184"},"startTime":1772043940808,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1407,"timestamp":50508146803,"id":364,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772043983746,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":79778,"timestamp":50508145978,"id":363,"tags":{"url":"/api/auth/login"},"startTime":1772043983746,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":50508225850,"id":365,"parentId":363,"tags":{"url":"/api/auth/login","memory.rss":"731013120","memory.heapUsed":"187192128","memory.heapTotal":"193544192"},"startTime":1772043983825,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":641,"timestamp":50508238077,"id":366,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043983838,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1016,"timestamp":50508239659,"id":368,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043983839,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1217,"timestamp":50508243132,"id":369,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043983843,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6828,"timestamp":50508238803,"id":367,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772043983838,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1179,"timestamp":50508255776,"id":371,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772043983855,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":26217,"timestamp":50508255387,"id":370,"tags":{"url":"/login"},"startTime":1772043983855,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":50508281754,"id":372,"parentId":370,"tags":{"url":"/login","memory.rss":"731013120","memory.heapUsed":"187863280","memory.heapTotal":"192495616"},"startTime":1772043983881,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":822,"timestamp":50511756049,"id":374,"parentId":3,"tags":{"inputPage":"/api/auth/login/route"},"startTime":1772043987356,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":79431,"timestamp":50511755621,"id":373,"tags":{"url":"/api/auth/login"},"startTime":1772043987355,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":50511835158,"id":375,"parentId":373,"tags":{"url":"/api/auth/login","memory.rss":"749756416","memory.heapUsed":"188384584","memory.heapTotal":"192757760"},"startTime":1772043987435,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":895,"timestamp":50511852311,"id":376,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043987452,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":802,"timestamp":50511853684,"id":378,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043987453,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1286,"timestamp":50511855631,"id":379,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772043987455,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":5608,"timestamp":50511853298,"id":377,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772043987453,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2956,"timestamp":50511882185,"id":381,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772043987482,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":42016,"timestamp":50511881524,"id":380,"tags":{"url":"/login"},"startTime":1772043987481,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":50511923659,"id":382,"parentId":380,"tags":{"url":"/login","memory.rss":"749756416","memory.heapUsed":"188710960","memory.heapTotal":"194854912"},"startTime":1772043987523,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":116000,"timestamp":51289549795,"id":383,"parentId":3,"tags":{"updatedModules":["[project]/src/lib/api.ts [app-client]","[project]/src/components/login-form.tsx [app-client]"],"page":"/dashboard","isPageHidden":false},"startTime":1772044765295,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":118000,"timestamp":51289548942,"id":384,"parentId":3,"tags":{"updatedModules":["[project]/src/lib/api.ts [app-client]","[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772044765296,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":63000,"timestamp":51304369196,"id":385,"parentId":3,"tags":{"updatedModules":["[project]/src/lib/api.ts [app-client]","[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/dashboard","isPageHidden":false},"startTime":1772044780062,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":62000,"timestamp":51304369402,"id":386,"parentId":3,"tags":{"updatedModules":["[project]/src/lib/api.ts [app-client]","[project]/src/app/dashboard/page.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772044780062,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2016,"timestamp":51314711966,"id":387,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772044790312,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1504,"timestamp":51314715036,"id":389,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772044790315,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1250,"timestamp":51314718428,"id":390,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772044790318,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":7479,"timestamp":51314714167,"id":388,"tags":{"url":"/dashboard?_rsc=1h18q"},"startTime":1772044790314,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":12800,"timestamp":51314723678,"id":392,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772044790323,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":36000,"timestamp":51314667795,"id":393,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1772044790515,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":35000,"timestamp":51314667347,"id":394,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772044790516,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":954,"timestamp":51314916965,"id":396,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772044790517,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":230305,"timestamp":51314723079,"id":391,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772044790323,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":51314953504,"id":397,"parentId":391,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"826556416","memory.heapUsed":"183194944","memory.heapTotal":"203894784"},"startTime":1772044790553,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":39170,"timestamp":51314916555,"id":395,"tags":{"url":"/login"},"startTime":1772044790516,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":51314955831,"id":398,"parentId":395,"tags":{"url":"/login","memory.rss":"826556416","memory.heapUsed":"183268232","memory.heapTotal":"203894784"},"startTime":1772044790555,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2771,"timestamp":51319485130,"id":400,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772044795085,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":37000,"timestamp":51319437413,"id":403,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772044795122,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":37000,"timestamp":51319438515,"id":404,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772044795122,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1936,"timestamp":51319521558,"id":402,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772044795121,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":71338,"timestamp":51319484194,"id":399,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772044795084,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":51319555652,"id":405,"parentId":399,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"848355328","memory.heapUsed":"186434736","memory.heapTotal":"208326656"},"startTime":1772044795155,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":35861,"timestamp":51319521068,"id":401,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772044795121,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":51319557058,"id":406,"parentId":401,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"848355328","memory.heapUsed":"186481704","memory.heapTotal":"208326656"},"startTime":1772044795157,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1564,"timestamp":51337348764,"id":408,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772044812948,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1809,"timestamp":51337380240,"id":410,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772044812980,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":38000,"timestamp":51337303617,"id":411,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772044813006,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":37000,"timestamp":51337305725,"id":412,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1772044813006,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":64422,"timestamp":51337347391,"id":407,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772044812947,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":21,"timestamp":51337412123,"id":413,"parentId":407,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"809410560","memory.heapUsed":"177201696","memory.heapTotal":"183390208"},"startTime":1772044813012,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":35937,"timestamp":51337379828,"id":409,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772044812979,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":51337415849,"id":414,"parentId":409,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"809410560","memory.heapUsed":"177278184","memory.heapTotal":"183390208"},"startTime":1772044813015,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":97000,"timestamp":51361908018,"id":415,"parentId":3,"tags":{"updatedModules":["[project]/src/lib/api.ts [app-client]"],"page":"/login","isPageHidden":false},"startTime":1772044837626,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":100000,"timestamp":51361910340,"id":416,"parentId":3,"tags":{"updatedModules":["[project]/src/lib/api.ts [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772044837626,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":577,"timestamp":51422977178,"id":417,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772044898577,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":674,"timestamp":51422978233,"id":419,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772044898578,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1065,"timestamp":51422981427,"id":420,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772044898581,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6484,"timestamp":51422977837,"id":418,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772044898577,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":8772,"timestamp":51422985488,"id":423,"tags":{"trigger":"/dashboard"},"startTime":1772044898585,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":138796,"timestamp":51422985011,"id":421,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772044898585,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":51423123899,"id":424,"parentId":421,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"820125696","memory.heapUsed":"188858024","memory.heapTotal":"197591040"},"startTime":1772044898723,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1002,"timestamp":52601462224,"id":427,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046077062,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1317,"timestamp":52601463931,"id":429,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046077064,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1410,"timestamp":52601466678,"id":430,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046077066,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":55153,"timestamp":52601463371,"id":428,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046077063,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":60126,"timestamp":52601460409,"id":426,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077060,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":4518,"timestamp":52601745500,"id":431,"tags":{"trigger":"proxy"},"startTime":1772046077345,"traceId":"ce8fa190e7d93e11"}] -[{"name":"client-hmr-latency","duration":27000,"timestamp":52601425801,"id":432,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772046077352,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":27000,"timestamp":52601426127,"id":433,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772046077353,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2361,"timestamp":52601762414,"id":435,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046077362,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":391307,"timestamp":52601459691,"id":425,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077059,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52601851138,"id":436,"parentId":425,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"730230784","memory.heapUsed":"197002224","memory.heapTotal":"217067520"},"startTime":1772046077451,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":101620,"timestamp":52601753511,"id":434,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046077353,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":18,"timestamp":52601855306,"id":437,"parentId":434,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"730230784","memory.heapUsed":"197063632","memory.heapTotal":"217067520"},"startTime":1772046077455,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":70000,"timestamp":52601748510,"id":438,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772046077471,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":12747,"timestamp":52601889975,"id":440,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077490,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":49264,"timestamp":52601896068,"id":442,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077496,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":119995,"timestamp":52601900912,"id":444,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077500,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":130000,"timestamp":52601749472,"id":447,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772046077661,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":49544,"timestamp":52602017920,"id":446,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077617,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":40848,"timestamp":52602065633,"id":449,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077665,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":53428,"timestamp":52602105203,"id":451,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077705,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":326298,"timestamp":52601887931,"id":439,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077488,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":52602214415,"id":452,"parentId":439,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"742289408","memory.heapUsed":"201963944","memory.heapTotal":"219926528"},"startTime":1772046077814,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":327139,"timestamp":52601890819,"id":441,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077490,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":16,"timestamp":52602218139,"id":453,"parentId":441,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"742289408","memory.heapUsed":"202005896","memory.heapTotal":"219926528"},"startTime":1772046077818,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":325031,"timestamp":52601898873,"id":443,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077498,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52602224037,"id":454,"parentId":443,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"742289408","memory.heapUsed":"202199248","memory.heapTotal":"219926528"},"startTime":1772046077824,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":209830,"timestamp":52602017256,"id":445,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077617,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":17,"timestamp":52602227264,"id":455,"parentId":445,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"742289408","memory.heapUsed":"202277968","memory.heapTotal":"219926528"},"startTime":1772046077827,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":168423,"timestamp":52602064894,"id":448,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077664,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52602233426,"id":460,"parentId":448,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"742289408","memory.heapUsed":"202569920","memory.heapTotal":"219926528"},"startTime":1772046077833,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5558,"timestamp":52602228791,"id":457,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077828,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":42199,"timestamp":52602230226,"id":459,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077830,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":213519,"timestamp":52602104505,"id":450,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077704,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":17,"timestamp":52602318161,"id":463,"parentId":450,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"743993344","memory.heapUsed":"202151440","memory.heapTotal":"222023680"},"startTime":1772046077918,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10854,"timestamp":52602316468,"id":462,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077916,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":40461,"timestamp":52602320923,"id":465,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077921,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":67787,"timestamp":52602325627,"id":467,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046077925,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2034,"timestamp":52602430069,"id":469,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078030,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":254372,"timestamp":52602227905,"id":456,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077827,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52602482404,"id":470,"parentId":456,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"747270144","memory.heapUsed":"206986096","memory.heapTotal":"241102848"},"startTime":1772046078082,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":254378,"timestamp":52602229506,"id":458,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077829,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52602483980,"id":471,"parentId":458,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"747401216","memory.heapUsed":"207053000","memory.heapTotal":"241364992"},"startTime":1772046078084,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":178589,"timestamp":52602315960,"id":461,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077916,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52602494649,"id":476,"parentId":461,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"747401216","memory.heapUsed":"207460984","memory.heapTotal":"241364992"},"startTime":1772046078094,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":175748,"timestamp":52602319990,"id":464,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077920,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52602495863,"id":477,"parentId":464,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"747401216","memory.heapUsed":"207502576","memory.heapTotal":"241364992"},"startTime":1772046078095,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5962,"timestamp":52602491135,"id":473,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078091,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":212582,"timestamp":52602322885,"id":466,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046077922,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":32,"timestamp":52602535779,"id":478,"parentId":466,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"747663360","memory.heapUsed":"209862200","memory.heapTotal":"241627136"},"startTime":1772046078135,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":44649,"timestamp":52602492917,"id":475,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078092,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":148165,"timestamp":52602429414,"id":468,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078029,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52602577680,"id":479,"parentId":468,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"748449792","memory.heapUsed":"212425424","memory.heapTotal":"241889280"},"startTime":1772046078177,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5219,"timestamp":52602579209,"id":481,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078179,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":40771,"timestamp":52602580551,"id":483,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078180,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":78428,"timestamp":52602583080,"id":485,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078183,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3431,"timestamp":52602700384,"id":487,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078300,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":255707,"timestamp":52602490065,"id":472,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078090,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52602745894,"id":488,"parentId":472,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"757231616","memory.heapUsed":"211108008","memory.heapTotal":"244510720"},"startTime":1772046078345,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":255181,"timestamp":52602492199,"id":474,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078092,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52602747487,"id":489,"parentId":474,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"757231616","memory.heapUsed":"211160328","memory.heapTotal":"244510720"},"startTime":1772046078347,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":178469,"timestamp":52602578400,"id":480,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078178,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52602757085,"id":492,"parentId":480,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"757231616","memory.heapUsed":"211493512","memory.heapTotal":"244510720"},"startTime":1772046078357,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7606,"timestamp":52602753497,"id":491,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078353,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":221345,"timestamp":52602579842,"id":482,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078179,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52602801320,"id":495,"parentId":482,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"757493760","memory.heapUsed":"213910328","memory.heapTotal":"244772864"},"startTime":1772046078401,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":44064,"timestamp":52602759310,"id":494,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078359,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":262191,"timestamp":52602582221,"id":484,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078182,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52602844510,"id":496,"parentId":484,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"759328768","memory.heapUsed":"216289856","memory.heapTotal":"245035008"},"startTime":1772046078444,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2416,"timestamp":52602846040,"id":497,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078446,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":154129,"timestamp":52602699756,"id":486,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078299,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52602854117,"id":503,"parentId":486,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"759853056","memory.heapUsed":"216858304","memory.heapTotal":"245035008"},"startTime":1772046078454,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6567,"timestamp":52602849016,"id":501,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078449,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10810,"timestamp":52602848097,"id":499,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046078448,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":44699,"timestamp":52602850953,"id":502,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078451,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4541,"timestamp":52602896412,"id":505,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078496,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6208,"timestamp":52602897636,"id":506,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078497,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":59671,"timestamp":52602848566,"id":500,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078448,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10189,"timestamp":52602899736,"id":507,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078499,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2488,"timestamp":52602910979,"id":509,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078511,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2592,"timestamp":52602911883,"id":510,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078511,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":20496,"timestamp":52602895819,"id":504,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078495,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":13759,"timestamp":52602917799,"id":512,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078517,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":34208,"timestamp":52602929198,"id":513,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078529,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":55044,"timestamp":52602910286,"id":508,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078510,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4758,"timestamp":52602966491,"id":515,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078566,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2850,"timestamp":52602997455,"id":517,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078597,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":280854,"timestamp":52602751702,"id":490,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078351,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52603032674,"id":518,"parentId":490,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"767848448","memory.heapUsed":"220396744","memory.heapTotal":"249630720"},"startTime":1772046078632,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":276524,"timestamp":52602757913,"id":493,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078358,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52603034566,"id":519,"parentId":493,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"767848448","memory.heapUsed":"220456120","memory.heapTotal":"249630720"},"startTime":1772046078634,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5897,"timestamp":52603036255,"id":520,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078636,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3816,"timestamp":52603040448,"id":521,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078640,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2728,"timestamp":52603042969,"id":523,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078643,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2115,"timestamp":52603044852,"id":525,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078644,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":202294,"timestamp":52602847472,"id":498,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046078447,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603049887,"id":527,"parentId":498,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"767848448","memory.heapUsed":"221345744","memory.heapTotal":"249630720"},"startTime":1772046078649,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3002,"timestamp":52603048121,"id":526,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078648,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":13019,"timestamp":52603042309,"id":522,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078642,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9816,"timestamp":52603050156,"id":528,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078650,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":17742,"timestamp":52603044402,"id":524,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078644,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5182,"timestamp":52603057901,"id":529,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078657,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2836,"timestamp":52603063652,"id":531,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078663,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8404,"timestamp":52603065717,"id":533,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078665,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":39978,"timestamp":52603070862,"id":536,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078670,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":49981,"timestamp":52603063198,"id":530,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078663,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":44393,"timestamp":52603069997,"id":535,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078670,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":243135,"timestamp":52602917175,"id":511,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078517,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603160409,"id":537,"parentId":511,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"770519040","memory.heapUsed":"216896584","memory.heapTotal":"253038592"},"startTime":1772046078760,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2255,"timestamp":52603166343,"id":540,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078766,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9141,"timestamp":52603163908,"id":539,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078763,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":239807,"timestamp":52602965827,"id":514,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078565,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52603205758,"id":543,"parentId":514,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"770781184","memory.heapUsed":"219736224","memory.heapTotal":"253038592"},"startTime":1772046078805,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":36260,"timestamp":52603170505,"id":542,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078770,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":216889,"timestamp":52602997108,"id":516,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078597,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52603214125,"id":546,"parentId":516,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"770781184","memory.heapUsed":"220163496","memory.heapTotal":"253038592"},"startTime":1772046078814,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4192,"timestamp":52603210326,"id":544,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078810,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":47637,"timestamp":52603168964,"id":541,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078769,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5175,"timestamp":52603212090,"id":545,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078812,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5197,"timestamp":52603218074,"id":548,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078818,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5658,"timestamp":52603222024,"id":549,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078822,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4644,"timestamp":52603226931,"id":551,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078827,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":34864,"timestamp":52603228361,"id":553,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078828,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":34915,"timestamp":52603229206,"id":554,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078829,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":49096,"timestamp":52603217398,"id":547,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078817,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2638,"timestamp":52603268687,"id":555,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078868,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":46625,"timestamp":52603227815,"id":552,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078827,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2121,"timestamp":52603275676,"id":557,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078875,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3126,"timestamp":52603302938,"id":559,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078903,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":271238,"timestamp":52603065122,"id":532,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078665,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":25,"timestamp":52603336579,"id":560,"parentId":532,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"774582272","memory.heapUsed":"220339784","memory.heapTotal":"256970752"},"startTime":1772046078936,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":272870,"timestamp":52603068580,"id":534,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078668,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52603341597,"id":561,"parentId":534,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"774582272","memory.heapUsed":"220468240","memory.heapTotal":"256970752"},"startTime":1772046078941,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1375,"timestamp":52603343199,"id":562,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078943,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2314,"timestamp":52603345239,"id":564,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078945,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1840,"timestamp":52603346591,"id":565,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078946,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":187280,"timestamp":52603163225,"id":538,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078763,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52603350635,"id":568,"parentId":538,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"774713344","memory.heapUsed":"221180088","memory.heapTotal":"256970752"},"startTime":1772046078950,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3300,"timestamp":52603348963,"id":567,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078949,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4562,"timestamp":52603350901,"id":569,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078950,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":13509,"timestamp":52603344709,"id":563,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078944,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5247,"timestamp":52603354467,"id":570,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078954,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2703,"timestamp":52603358728,"id":571,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078958,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":14758,"timestamp":52603348527,"id":566,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078948,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4066,"timestamp":52603360300,"id":573,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078960,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5555,"timestamp":52603366184,"id":575,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078966,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":30609,"timestamp":52603367581,"id":576,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046078967,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":39467,"timestamp":52603359821,"id":572,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078959,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":174185,"timestamp":52603226105,"id":550,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078826,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603400391,"id":579,"parentId":550,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"775106560","memory.heapUsed":"224930464","memory.heapTotal":"256970752"},"startTime":1772046079000,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":31737,"timestamp":52603369987,"id":578,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046078970,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2704,"timestamp":52603430596,"id":580,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079030,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2057,"timestamp":52603433891,"id":584,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079033,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5306,"timestamp":52603432647,"id":582,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079032,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":191272,"timestamp":52603275079,"id":556,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078875,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52603466468,"id":585,"parentId":556,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"775630848","memory.heapUsed":"230296536","memory.heapTotal":"257495040"},"startTime":1772046079066,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3318,"timestamp":52603466931,"id":586,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079067,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":38719,"timestamp":52603433423,"id":583,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079033,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":173698,"timestamp":52603301902,"id":558,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078901,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603475716,"id":587,"parentId":558,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"775630848","memory.heapUsed":"230707368","memory.heapTotal":"257757184"},"startTime":1772046079075,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4674,"timestamp":52603478179,"id":589,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079078,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":35401,"timestamp":52603480476,"id":590,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079080,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2485,"timestamp":52603516329,"id":592,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079116,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3113,"timestamp":52603521044,"id":593,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079121,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":9595,"timestamp":52603515962,"id":591,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079116,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2961,"timestamp":52603523312,"id":594,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079123,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1226,"timestamp":52603526962,"id":596,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079127,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1993,"timestamp":52603529847,"id":598,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079129,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":187262,"timestamp":52603365680,"id":574,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078965,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52603553045,"id":600,"parentId":574,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"778514432","memory.heapUsed":"227418016","memory.heapTotal":"260640768"},"startTime":1772046079153,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":22597,"timestamp":52603530593,"id":599,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079130,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":28111,"timestamp":52603526402,"id":595,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079126,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":187176,"timestamp":52603369348,"id":577,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046078969,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52603556609,"id":601,"parentId":577,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"778514432","memory.heapUsed":"227664296","memory.heapTotal":"260640768"},"startTime":1772046079156,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1742,"timestamp":52603557341,"id":602,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079157,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1983,"timestamp":52603559568,"id":606,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079159,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4395,"timestamp":52603558590,"id":604,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079158,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":21773,"timestamp":52603560593,"id":607,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079160,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":151537,"timestamp":52603432267,"id":581,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079032,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603583893,"id":610,"parentId":581,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"778776576","memory.heapUsed":"230736840","memory.heapTotal":"260640768"},"startTime":1772046079183,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3756,"timestamp":52603582753,"id":609,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079182,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3616,"timestamp":52603584074,"id":611,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079184,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":30709,"timestamp":52603559196,"id":605,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079159,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1829,"timestamp":52603594115,"id":612,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079194,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2948,"timestamp":52603594998,"id":613,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079195,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":16737,"timestamp":52603582443,"id":608,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079182,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4169,"timestamp":52603596575,"id":615,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079196,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4855,"timestamp":52603600298,"id":617,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079200,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":24341,"timestamp":52603603473,"id":618,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079203,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":32898,"timestamp":52603596089,"id":614,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079196,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":153398,"timestamp":52603477549,"id":588,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079077,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603631063,"id":621,"parentId":588,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"781004800","memory.heapUsed":"236413352","memory.heapTotal":"263008256"},"startTime":1772046079231,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4988,"timestamp":52603627321,"id":620,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079227,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1653,"timestamp":52603661448,"id":624,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079261,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4369,"timestamp":52603660397,"id":623,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079260,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":21508,"timestamp":52603663656,"id":626,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079263,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1926,"timestamp":52603687856,"id":627,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079287,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":28602,"timestamp":52603663211,"id":625,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079263,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":163915,"timestamp":52603529354,"id":597,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079129,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603693372,"id":628,"parentId":597,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"784412672","memory.heapUsed":"232503624","memory.heapTotal":"266153984"},"startTime":1772046079293,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1005,"timestamp":52603695520,"id":631,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079295,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3375,"timestamp":52603694845,"id":630,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079294,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":20452,"timestamp":52603697057,"id":633,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079297,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":162761,"timestamp":52603558229,"id":603,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079158,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52603721127,"id":634,"parentId":603,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"784674816","memory.heapUsed":"235388896","memory.heapTotal":"266153984"},"startTime":1772046079321,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2485,"timestamp":52603721855,"id":635,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079321,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":30216,"timestamp":52603696651,"id":632,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079296,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1673,"timestamp":52603728272,"id":636,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079328,"traceId":"ce8fa190e7d93e11"}] -[{"name":"ensure-page","duration":2488,"timestamp":52603731148,"id":638,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079331,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4849,"timestamp":52603733182,"id":640,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079333,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":162323,"timestamp":52603599902,"id":616,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079199,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603762319,"id":642,"parentId":616,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"785068032","memory.heapUsed":"238620192","memory.heapTotal":"266416128"},"startTime":1772046079362,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":26902,"timestamp":52603735614,"id":641,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046079335,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":33479,"timestamp":52603730598,"id":637,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079330,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":139468,"timestamp":52603626989,"id":619,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079227,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52603766558,"id":643,"parentId":619,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"785068032","memory.heapUsed":"238892304","memory.heapTotal":"266416128"},"startTime":1772046079366,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2315,"timestamp":52603767382,"id":645,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046079367,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":139694,"timestamp":52603659940,"id":622,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079260,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52603799731,"id":646,"parentId":622,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"787820544","memory.heapUsed":"232575008","memory.heapTotal":"269299712"},"startTime":1772046079399,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":109260,"timestamp":52603694425,"id":629,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079294,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52603803782,"id":647,"parentId":629,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"787820544","memory.heapUsed":"232722440","memory.heapTotal":"269299712"},"startTime":1772046079403,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":73692,"timestamp":52603732627,"id":639,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079332,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":17,"timestamp":52603806523,"id":648,"parentId":639,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"787820544","memory.heapUsed":"232795112","memory.heapTotal":"269299712"},"startTime":1772046079406,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":41296,"timestamp":52603766962,"id":644,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046079367,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52603808369,"id":649,"parentId":644,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"787820544","memory.heapUsed":"232846080","memory.heapTotal":"269299712"},"startTime":1772046079408,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":1072,"timestamp":52621799058,"id":650,"tags":{"trigger":"proxy"},"startTime":1772046097399,"traceId":"ce8fa190e7d93e11"}] -[{"name":"ensure-page","duration":972,"timestamp":52621812821,"id":653,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046097412,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1139,"timestamp":52621814668,"id":655,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046097414,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1247,"timestamp":52621817018,"id":656,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046097417,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":72586,"timestamp":52621813989,"id":654,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046097414,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":75802,"timestamp":52621811834,"id":652,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046097411,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":67000,"timestamp":52621775402,"id":657,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772046097611,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":110000,"timestamp":52621775521,"id":658,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772046097611,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2730,"timestamp":52622012319,"id":660,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046097612,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2605,"timestamp":52622061577,"id":661,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046097661,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5458,"timestamp":52622065055,"id":663,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046097665,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9720,"timestamp":52622069086,"id":665,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046097669,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":51953,"timestamp":52622074748,"id":666,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046097674,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":64726,"timestamp":52622064332,"id":662,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046097664,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":52815,"timestamp":52622077724,"id":668,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046097677,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6363,"timestamp":52622171357,"id":670,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046097771,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":47866,"timestamp":52622174613,"id":672,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046097774,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":532770,"timestamp":52621811114,"id":651,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046097411,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":22,"timestamp":52622344132,"id":673,"parentId":651,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"811991040","memory.heapUsed":"224652168","memory.heapTotal":"286826496"},"startTime":1772046097944,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1740,"timestamp":52622348875,"id":675,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046097948,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":372890,"timestamp":52622011777,"id":659,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046097611,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52622384783,"id":676,"parentId":659,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"811991040","memory.heapUsed":"227193208","memory.heapTotal":"286826496"},"startTime":1772046097984,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":319842,"timestamp":52622068221,"id":664,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046097668,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":14,"timestamp":52622388208,"id":677,"parentId":664,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"811991040","memory.heapUsed":"227247400","memory.heapTotal":"286826496"},"startTime":1772046097988,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":320189,"timestamp":52622076829,"id":667,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046097676,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52622397142,"id":678,"parentId":667,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"811991040","memory.heapUsed":"227459984","memory.heapTotal":"286826496"},"startTime":1772046097997,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5269,"timestamp":52622398665,"id":680,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046097998,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":279111,"timestamp":52622170609,"id":669,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046097770,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52622449858,"id":683,"parentId":669,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"812253184","memory.heapUsed":"230042144","memory.heapTotal":"286826496"},"startTime":1772046098049,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":50336,"timestamp":52622401434,"id":682,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098001,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3519,"timestamp":52622494725,"id":685,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098094,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":361437,"timestamp":52622173991,"id":671,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046097774,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":18,"timestamp":52622535584,"id":686,"parentId":671,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"812253184","memory.heapUsed":"234972360","memory.heapTotal":"287088640"},"startTime":1772046098135,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6716,"timestamp":52622538969,"id":688,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098139,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1902,"timestamp":52622580844,"id":690,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098180,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":278972,"timestamp":52622348172,"id":674,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046097948,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":18,"timestamp":52622627388,"id":691,"parentId":674,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"812777472","memory.heapUsed":"229586120","memory.heapTotal":"287555584"},"startTime":1772046098227,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":234951,"timestamp":52622397857,"id":679,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046097997,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52622632900,"id":694,"parentId":679,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"812777472","memory.heapUsed":"229833976","memory.heapTotal":"287555584"},"startTime":1772046098232,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2503,"timestamp":52622631323,"id":693,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098231,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":266888,"timestamp":52622400674,"id":681,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098000,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":14,"timestamp":52622667692,"id":695,"parentId":681,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"812777472","memory.heapUsed":"232196496","memory.heapTotal":"287555584"},"startTime":1772046098267,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":184994,"timestamp":52622493914,"id":684,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098093,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52622679034,"id":698,"parentId":684,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"812777472","memory.heapUsed":"232516344","memory.heapTotal":"287555584"},"startTime":1772046098279,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5664,"timestamp":52622676424,"id":697,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098276,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":32055,"timestamp":52622680675,"id":700,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098280,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":206358,"timestamp":52622537798,"id":687,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098137,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52622744261,"id":701,"parentId":687,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"813432832","memory.heapUsed":"237303064","memory.heapTotal":"287555584"},"startTime":1772046098344,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1204,"timestamp":52622745819,"id":703,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098345,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":197216,"timestamp":52622580034,"id":689,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098180,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52622777358,"id":704,"parentId":689,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"813694976","memory.heapUsed":"239779016","memory.heapTotal":"287555584"},"startTime":1772046098377,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2412,"timestamp":52622781450,"id":706,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098381,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2297,"timestamp":52622844236,"id":708,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098444,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":246713,"timestamp":52622630819,"id":692,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098230,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52622877652,"id":709,"parentId":692,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816578560","memory.heapUsed":"235439856","memory.heapTotal":"287555584"},"startTime":1772046098477,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1457,"timestamp":52622882096,"id":711,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098482,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":240181,"timestamp":52622674877,"id":696,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098274,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52622915198,"id":712,"parentId":696,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816578560","memory.heapUsed":"237976680","memory.heapTotal":"287555584"},"startTime":1772046098515,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":236461,"timestamp":52622679998,"id":699,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098280,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":52622916587,"id":713,"parentId":699,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816578560","memory.heapUsed":"238021232","memory.heapTotal":"287555584"},"startTime":1772046098516,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":177979,"timestamp":52622745109,"id":702,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098345,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52622923214,"id":714,"parentId":702,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816578560","memory.heapUsed":"238256616","memory.heapTotal":"287555584"},"startTime":1772046098523,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4820,"timestamp":52622925750,"id":716,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098525,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":40537,"timestamp":52622928817,"id":718,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098528,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":230530,"timestamp":52622780760,"id":705,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098380,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52623011402,"id":719,"parentId":705,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816578560","memory.heapUsed":"243091984","memory.heapTotal":"287555584"},"startTime":1772046098611,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2439,"timestamp":52623013054,"id":721,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098613,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":222101,"timestamp":52622842862,"id":707,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098442,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52623065096,"id":722,"parentId":707,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816578560","memory.heapUsed":"236431120","memory.heapTotal":"287555584"},"startTime":1772046098665,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5324,"timestamp":52623067952,"id":724,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098668,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2430,"timestamp":52623111855,"id":726,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098711,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":264977,"timestamp":52622881472,"id":710,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098481,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52623146579,"id":727,"parentId":710,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816578560","memory.heapUsed":"241341760","memory.heapTotal":"287555584"},"startTime":1772046098746,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2177,"timestamp":52623151017,"id":729,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098751,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":262218,"timestamp":52622924479,"id":715,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098524,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":61,"timestamp":52623186983,"id":730,"parentId":715,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"817496064","memory.heapUsed":"244799096","memory.heapTotal":"288481280"},"startTime":1772046098787,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":261925,"timestamp":52622927644,"id":717,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098527,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":22,"timestamp":52623189864,"id":731,"parentId":717,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"817496064","memory.heapUsed":"244858760","memory.heapTotal":"288481280"},"startTime":1772046098789,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":184989,"timestamp":52623012316,"id":720,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098612,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52623197416,"id":733,"parentId":720,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"817496064","memory.heapUsed":"245127568","memory.heapTotal":"288481280"},"startTime":1772046098797,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3611,"timestamp":52623194367,"id":732,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098794,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6148,"timestamp":52623198824,"id":735,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098798,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7636,"timestamp":52623200930,"id":737,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046098801,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":38451,"timestamp":52623203323,"id":738,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098803,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":179235,"timestamp":52623067192,"id":723,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098667,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52623246575,"id":742,"parentId":723,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"817496064","memory.heapUsed":"248141736","memory.heapTotal":"288481280"},"startTime":1772046098846,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4272,"timestamp":52623243058,"id":740,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098843,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4293,"timestamp":52623244335,"id":741,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098844,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":52131,"timestamp":52623198165,"id":734,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046098798,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3608,"timestamp":52623251675,"id":743,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098851,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4669,"timestamp":52623253471,"id":744,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098853,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":18470,"timestamp":52623242105,"id":739,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046098842,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":151601,"timestamp":52623110967,"id":725,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098711,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52623262692,"id":749,"parentId":725,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"817496064","memory.heapUsed":"249042576","memory.heapTotal":"288481280"},"startTime":1772046098862,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6947,"timestamp":52623256212,"id":746,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098856,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4859,"timestamp":52623261495,"id":748,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046098861,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":41709,"timestamp":52623264986,"id":750,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098865,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":54713,"timestamp":52623255512,"id":745,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046098855,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9116,"timestamp":52623301718,"id":751,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098901,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3246,"timestamp":52623311369,"id":755,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098911,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10003,"timestamp":52623306121,"id":753,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046098906,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":208924,"timestamp":52623150348,"id":728,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098750,"traceId":"ce8fa190e7d93e11"}] -[{"name":"memory-usage","duration":19,"timestamp":52623360439,"id":759,"parentId":728,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"818413568","memory.heapUsed":"244524072","memory.heapTotal":"288481280"},"startTime":1772046098960,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7220,"timestamp":52623354821,"id":758,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046098954,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":53956,"timestamp":52623310931,"id":754,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046098911,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":12595,"timestamp":52623354253,"id":757,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046098954,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9412,"timestamp":52623410908,"id":760,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099010,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8002,"timestamp":52623418238,"id":762,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099018,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":59261,"timestamp":52623421138,"id":764,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099021,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2313,"timestamp":52623483511,"id":765,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099083,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":68689,"timestamp":52623420493,"id":763,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099020,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":290869,"timestamp":52623200206,"id":736,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046098800,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52623491209,"id":766,"parentId":736,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"818413568","memory.heapUsed":"250240344","memory.heapTotal":"288481280"},"startTime":1772046099091,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3028,"timestamp":52623496736,"id":768,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099096,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3098,"timestamp":52623544757,"id":769,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099144,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2925,"timestamp":52623548605,"id":771,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099148,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":306362,"timestamp":52623261102,"id":747,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046098861,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52623567616,"id":773,"parentId":747,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"818413568","memory.heapUsed":"244572304","memory.heapTotal":"288481280"},"startTime":1772046099167,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3857,"timestamp":52623564762,"id":772,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099164,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":24525,"timestamp":52623547989,"id":770,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099148,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":274814,"timestamp":52623305606,"id":752,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046098905,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52623580570,"id":775,"parentId":752,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"818413568","memory.heapUsed":"244911504","memory.heapTotal":"288481280"},"startTime":1772046099180,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4053,"timestamp":52623577244,"id":774,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099177,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":233498,"timestamp":52623353153,"id":756,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046098953,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":19,"timestamp":52623590089,"id":780,"parentId":756,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"818413568","memory.heapUsed":"245183776","memory.heapTotal":"288481280"},"startTime":1772046099190,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":13840,"timestamp":52623582213,"id":777,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099182,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":14537,"timestamp":52623584519,"id":779,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099184,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":51800,"timestamp":52623591490,"id":781,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099191,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7029,"timestamp":52623639840,"id":782,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099239,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5401,"timestamp":52623644265,"id":784,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099244,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5256,"timestamp":52623645514,"id":785,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099245,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":73684,"timestamp":52623581478,"id":776,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099181,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8665,"timestamp":52623647603,"id":787,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099247,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":243554,"timestamp":52623417623,"id":761,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099017,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52623661296,"id":789,"parentId":761,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"818544640","memory.heapUsed":"248837056","memory.heapTotal":"288481280"},"startTime":1772046099261,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4109,"timestamp":52623658619,"id":788,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099258,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":21607,"timestamp":52623643517,"id":783,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099243,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5435,"timestamp":52623661494,"id":790,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099261,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":21929,"timestamp":52623647018,"id":786,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099247,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2341,"timestamp":52623671088,"id":793,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099271,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10440,"timestamp":52623666320,"id":792,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099266,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":33040,"timestamp":52623674289,"id":795,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099274,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7152,"timestamp":52623704499,"id":797,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099304,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":26514,"timestamp":52623706552,"id":799,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099306,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":47185,"timestamp":52623710058,"id":800,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099310,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":84722,"timestamp":52623673582,"id":794,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099273,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":267638,"timestamp":52623495760,"id":767,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099095,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52623763502,"id":801,"parentId":767,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"818544640","memory.heapUsed":"248407168","memory.heapTotal":"288481280"},"startTime":1772046099363,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3276,"timestamp":52623764520,"id":803,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099364,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":30543,"timestamp":52623765727,"id":804,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099365,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2321,"timestamp":52623796961,"id":806,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099397,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4397,"timestamp":52623802741,"id":807,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099402,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":12770,"timestamp":52623796399,"id":805,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099396,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":228894,"timestamp":52623583757,"id":778,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099183,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52623812829,"id":808,"parentId":778,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"818544640","memory.heapUsed":"251556824","memory.heapTotal":"288481280"},"startTime":1772046099412,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3434,"timestamp":52623813987,"id":810,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099414,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":65866,"timestamp":52623815562,"id":811,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099415,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3319,"timestamp":52623881918,"id":813,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099481,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1615,"timestamp":52623887345,"id":814,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099487,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":9190,"timestamp":52623881538,"id":812,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099481,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":227097,"timestamp":52623665792,"id":791,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099265,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":17,"timestamp":52623893098,"id":815,"parentId":791,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"815747072","memory.heapUsed":"227991920","memory.heapTotal":"287080448"},"startTime":1772046099493,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":191284,"timestamp":52623705879,"id":798,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099305,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52623897241,"id":819,"parentId":798,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"815747072","memory.heapUsed":"228271360","memory.heapTotal":"287080448"},"startTime":1772046099497,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2657,"timestamp":52623895040,"id":816,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099495,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":196017,"timestamp":52623703798,"id":796,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099303,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52623899919,"id":822,"parentId":796,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"815747072","memory.heapUsed":"228464656","memory.heapTotal":"287080448"},"startTime":1772046099499,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4513,"timestamp":52623896253,"id":818,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099496,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":29235,"timestamp":52623898225,"id":821,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099498,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2386,"timestamp":52623926030,"id":823,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099526,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3636,"timestamp":52623928875,"id":825,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099528,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3004,"timestamp":52623930210,"id":826,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099530,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3077,"timestamp":52623931521,"id":827,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099531,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":37967,"timestamp":52623897788,"id":820,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099497,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3929,"timestamp":52623933689,"id":829,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099533,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":176459,"timestamp":52623763963,"id":802,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099364,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":27,"timestamp":52623940693,"id":831,"parentId":802,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"815747072","memory.heapUsed":"232043768","memory.heapTotal":"287080448"},"startTime":1772046099540,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4449,"timestamp":52623936833,"id":830,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099536,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":14958,"timestamp":52623928515,"id":824,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099528,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1830,"timestamp":52623944022,"id":832,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099544,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":13820,"timestamp":52623933310,"id":828,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099533,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5856,"timestamp":52623945277,"id":834,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099545,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":28529,"timestamp":52623948170,"id":835,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099548,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":29280,"timestamp":52623950017,"id":837,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099550,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":20975,"timestamp":52623977284,"id":839,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099577,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":21328,"timestamp":52623978450,"id":841,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099578,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3171,"timestamp":52624021566,"id":842,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099621,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":50010,"timestamp":52623976866,"id":838,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099576,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":215192,"timestamp":52623813407,"id":809,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099413,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52624028703,"id":843,"parentId":809,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"240833512","memory.heapTotal":"287547392"},"startTime":1772046099628,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1178,"timestamp":52624031247,"id":846,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099631,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4366,"timestamp":52624029808,"id":845,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099629,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":27887,"timestamp":52624033072,"id":848,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099633,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1465,"timestamp":52624064320,"id":849,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099664,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":34540,"timestamp":52624032556,"id":847,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099632,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":172497,"timestamp":52623895859,"id":817,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099495,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52624068453,"id":850,"parentId":817,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"232932704","memory.heapTotal":"287547392"},"startTime":1772046099668,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1621,"timestamp":52624072083,"id":853,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099672,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6188,"timestamp":52624071054,"id":852,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099671,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":32108,"timestamp":52624074808,"id":855,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099674,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1919,"timestamp":52624110017,"id":856,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099710,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":39484,"timestamp":52624073869,"id":854,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099673,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":169716,"timestamp":52623944880,"id":833,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099544,"traceId":"ce8fa190e7d93e11"}] -[{"name":"memory-usage","duration":9,"timestamp":52624115210,"id":857,"parentId":833,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"236130016","memory.heapTotal":"287809536"},"startTime":1772046099715,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":167253,"timestamp":52623949443,"id":836,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099549,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52624116789,"id":858,"parentId":836,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"236199360","memory.heapTotal":"287809536"},"startTime":1772046099716,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":142468,"timestamp":52623978117,"id":840,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099578,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":14,"timestamp":52624120822,"id":862,"parentId":840,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"236450536","memory.heapTotal":"287809536"},"startTime":1772046099720,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4579,"timestamp":52624117610,"id":860,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099717,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":33338,"timestamp":52624118370,"id":861,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099718,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3363,"timestamp":52624150340,"id":863,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099750,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6443,"timestamp":52624152188,"id":865,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099752,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5498,"timestamp":52624154460,"id":867,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099754,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4429,"timestamp":52624156425,"id":868,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099756,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2188,"timestamp":52624161354,"id":870,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099761,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2304,"timestamp":52624161980,"id":871,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099762,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":13645,"timestamp":52624151803,"id":864,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099751,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3246,"timestamp":52624162792,"id":872,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099762,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":13351,"timestamp":52624153854,"id":866,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099753,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":139838,"timestamp":52624029284,"id":844,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099629,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":19,"timestamp":52624169310,"id":874,"parentId":844,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"240390344","memory.heapTotal":"287809536"},"startTime":1772046099769,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3446,"timestamp":52624167543,"id":873,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099767,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":11626,"timestamp":52624160949,"id":869,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099761,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2346,"timestamp":52624176297,"id":877,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099776,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6172,"timestamp":52624174138,"id":876,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099774,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":26024,"timestamp":52624179140,"id":881,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099779,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":29840,"timestamp":52624177930,"id":879,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099778,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":34022,"timestamp":52624204573,"id":883,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099804,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":24828,"timestamp":52624236897,"id":884,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046099836,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":84120,"timestamp":52624178736,"id":880,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099778,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":194992,"timestamp":52624070179,"id":851,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099670,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52624265256,"id":885,"parentId":851,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"238841816","memory.heapTotal":"287809536"},"startTime":1772046099865,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1364,"timestamp":52624266172,"id":887,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046099866,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":176866,"timestamp":52624117158,"id":859,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099717,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52624294128,"id":888,"parentId":859,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"241338992","memory.heapTotal":"287809536"},"startTime":1772046099894,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":122610,"timestamp":52624173311,"id":875,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099773,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52624296015,"id":889,"parentId":875,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"241435008","memory.heapTotal":"287809536"},"startTime":1772046099896,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":119149,"timestamp":52624177537,"id":878,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099777,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52624296761,"id":890,"parentId":878,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"241480056","memory.heapTotal":"287809536"},"startTime":1772046099896,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":93727,"timestamp":52624204118,"id":882,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099804,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52624297924,"id":891,"parentId":882,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"241534088","memory.heapTotal":"287809536"},"startTime":1772046099898,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":33436,"timestamp":52624265684,"id":886,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046099865,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52624299227,"id":892,"parentId":886,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"816271360","memory.heapUsed":"241601216","memory.heapTotal":"287809536"},"startTime":1772046099899,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":921,"timestamp":52677929516,"id":894,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046153529,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":4700,"timestamp":52678064205,"id":895,"tags":{"trigger":"proxy"},"startTime":1772046153664,"traceId":"ce8fa190e7d93e11"}] -[{"name":"client-hmr-latency","duration":21000,"timestamp":52677899060,"id":897,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772046153670,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":22000,"timestamp":52677899194,"id":898,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772046153670,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9910,"timestamp":52678067461,"id":896,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153667,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1506,"timestamp":52678078191,"id":900,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153678,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1216,"timestamp":52678081470,"id":901,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153681,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":102161,"timestamp":52678077522,"id":899,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153677,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6220,"timestamp":52678193630,"id":904,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153793,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4411,"timestamp":52678197761,"id":905,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153797,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":13685,"timestamp":52678192075,"id":903,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046153792,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":66976,"timestamp":52678200784,"id":907,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153800,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":65853,"timestamp":52678202987,"id":909,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153803,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4315,"timestamp":52678265930,"id":910,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153866,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":65000,"timestamp":52678068910,"id":913,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772046153873,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":96000,"timestamp":52678069481,"id":914,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772046153873,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":348866,"timestamp":52677928928,"id":893,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046153529,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52678277910,"id":916,"parentId":893,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"784023552","memory.heapUsed":"240699544","memory.heapTotal":"253145088"},"startTime":1772046153877,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8925,"timestamp":52678271300,"id":912,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153871,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7157,"timestamp":52678274308,"id":915,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153874,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5135,"timestamp":52678278151,"id":917,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153878,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":85201,"timestamp":52678200042,"id":906,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153800,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6732,"timestamp":52678279032,"id":918,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153879,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":85305,"timestamp":52678202322,"id":908,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153802,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6885,"timestamp":52678282181,"id":920,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153882,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4363,"timestamp":52678288267,"id":921,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153888,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":25006,"timestamp":52678270520,"id":911,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153870,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6607,"timestamp":52678290369,"id":922,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153890,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8637,"timestamp":52678295971,"id":923,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153896,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":26628,"timestamp":52678281615,"id":919,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153881,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":11632,"timestamp":52678297596,"id":925,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153897,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":12259,"timestamp":52678302479,"id":927,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046153902,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":43629,"timestamp":52678303426,"id":929,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046153903,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":86475,"timestamp":52678313476,"id":932,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046153913,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":105448,"timestamp":52678297099,"id":924,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153897,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":91795,"timestamp":52678312757,"id":931,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046153912,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":60329,"timestamp":52678399408,"id":934,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046153999,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":21367,"timestamp":52678507363,"id":936,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046154107,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":427896,"timestamp":52678190974,"id":902,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153791,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":18,"timestamp":52678619257,"id":937,"parentId":902,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"789180416","memory.heapUsed":"237211560","memory.heapTotal":"262762496"},"startTime":1772046154219,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2516,"timestamp":52678627902,"id":939,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154227,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":367862,"timestamp":52678301939,"id":926,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153902,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52678669933,"id":940,"parentId":926,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"789311488","memory.heapUsed":"239810232","memory.heapTotal":"262762496"},"startTime":1772046154270,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":370326,"timestamp":52678302983,"id":928,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153903,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52678673428,"id":941,"parentId":928,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"789311488","memory.heapUsed":"239861792","memory.heapTotal":"262762496"},"startTime":1772046154273,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":365267,"timestamp":52678312051,"id":930,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153912,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52678677451,"id":942,"parentId":930,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"789311488","memory.heapUsed":"239995920","memory.heapTotal":"262762496"},"startTime":1772046154277,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":280938,"timestamp":52678398565,"id":933,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046153998,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52678679616,"id":943,"parentId":933,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"789311488","memory.heapUsed":"240063120","memory.heapTotal":"262762496"},"startTime":1772046154279,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4084,"timestamp":52678681018,"id":945,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154281,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":238675,"timestamp":52678506749,"id":935,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046154106,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52678745561,"id":946,"parentId":935,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"789311488","memory.heapUsed":"242842808","memory.heapTotal":"262762496"},"startTime":1772046154345,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8845,"timestamp":52678747184,"id":948,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154347,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":59345,"timestamp":52678751533,"id":950,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154351,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9493,"timestamp":52678869769,"id":952,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154469,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":62798,"timestamp":52678877546,"id":954,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154477,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":378238,"timestamp":52678627148,"id":938,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154227,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":52679005676,"id":955,"parentId":938,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"795602944","memory.heapUsed":"241062720","memory.heapTotal":"262762496"},"startTime":1772046154605,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":339517,"timestamp":52678680247,"id":944,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154280,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52679019921,"id":958,"parentId":944,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"795602944","memory.heapUsed":"241359008","memory.heapTotal":"262762496"},"startTime":1772046154620,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6548,"timestamp":52679016610,"id":957,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154616,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":329529,"timestamp":52678746361,"id":947,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154346,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":18,"timestamp":52679076061,"id":959,"parentId":947,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"795734016","memory.heapUsed":"243659992","memory.heapTotal":"263024640"},"startTime":1772046154676,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":328494,"timestamp":52678749966,"id":949,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154350,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":39,"timestamp":52679078807,"id":960,"parentId":949,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"795734016","memory.heapUsed":"243702432","memory.heapTotal":"263024640"},"startTime":1772046154678,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":219742,"timestamp":52678868873,"id":951,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154468,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":51,"timestamp":52679088969,"id":961,"parentId":951,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"795734016","memory.heapUsed":"243993496","memory.heapTotal":"263024640"},"startTime":1772046154689,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8710,"timestamp":52679090459,"id":963,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154690,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":279527,"timestamp":52678876550,"id":953,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154476,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":31,"timestamp":52679156356,"id":968,"parentId":953,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"795996160","memory.heapUsed":"246696120","memory.heapTotal":"263286784"},"startTime":1772046154756,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":62891,"timestamp":52679095572,"id":965,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154695,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":125616,"timestamp":52679097169,"id":967,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154697,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5785,"timestamp":52679274622,"id":970,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154874,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2485,"timestamp":52679316847,"id":972,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154916,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":330278,"timestamp":52679015712,"id":956,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154615,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52679346118,"id":973,"parentId":956,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"799797248","memory.heapUsed":"251603696","memory.heapTotal":"283086848"},"startTime":1772046154946,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2065,"timestamp":52679349689,"id":975,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154949,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":288499,"timestamp":52679089568,"id":962,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154689,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52679378155,"id":976,"parentId":962,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"802287616","memory.heapUsed":"254158704","memory.heapTotal":"283086848"},"startTime":1772046154978,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":285018,"timestamp":52679094305,"id":964,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154694,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52679379426,"id":977,"parentId":964,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"802287616","memory.heapUsed":"254213200","memory.heapTotal":"283086848"},"startTime":1772046154979,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":284334,"timestamp":52679096345,"id":966,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154696,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52679380790,"id":978,"parentId":966,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"802418688","memory.heapUsed":"254259328","memory.heapTotal":"283086848"},"startTime":1772046154980,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":115544,"timestamp":52679273705,"id":969,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154873,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52679389365,"id":981,"parentId":969,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"802811904","memory.heapUsed":"254689304","memory.heapTotal":"283086848"},"startTime":1772046154989,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7420,"timestamp":52679385985,"id":980,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154986,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":29527,"timestamp":52679390960,"id":983,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154991,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":55387,"timestamp":52679392595,"id":985,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046154992,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":163667,"timestamp":52679316206,"id":971,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154916,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":30,"timestamp":52679479997,"id":986,"parentId":971,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"810020864","memory.heapUsed":"249690480","memory.heapTotal":"285970432"},"startTime":1772046155080,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2489,"timestamp":52679482466,"id":988,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155082,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1466,"timestamp":52679509129,"id":990,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155109,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":182671,"timestamp":52679349084,"id":974,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154949,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52679531845,"id":991,"parentId":974,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"810807296","memory.heapUsed":"254579136","memory.heapTotal":"285970432"},"startTime":1772046155131,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":150799,"timestamp":52679385469,"id":979,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154985,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52679536390,"id":994,"parentId":979,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"811069440","memory.heapUsed":"254840824","memory.heapTotal":"285970432"},"startTime":1772046155136,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3105,"timestamp":52679534578,"id":993,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155134,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":170999,"timestamp":52679391945,"id":984,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154992,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52679563042,"id":995,"parentId":984,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"813297664","memory.heapUsed":"257142096","memory.heapTotal":"285970432"},"startTime":1772046155163,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":174743,"timestamp":52679390040,"id":982,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046154990,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52679564885,"id":996,"parentId":982,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"813428736","memory.heapUsed":"257256472","memory.heapTotal":"285970432"},"startTime":1772046155164,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5737,"timestamp":52679567587,"id":998,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155167,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":115450,"timestamp":52679481768,"id":987,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155081,"traceId":"ce8fa190e7d93e11"}] -[{"name":"memory-usage","duration":9,"timestamp":52679597888,"id":1001,"parentId":987,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"816181248","memory.heapUsed":"260009264","memory.heapTotal":"286232576"},"startTime":1772046155197,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":28560,"timestamp":52679570989,"id":1000,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155171,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":31320,"timestamp":52679598673,"id":1003,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155198,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":144681,"timestamp":52679508445,"id":989,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155108,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52679653219,"id":1004,"parentId":989,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"821555200","memory.heapUsed":"254636040","memory.heapTotal":"289902592"},"startTime":1772046155253,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1676,"timestamp":52679655607,"id":1006,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155255,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1424,"timestamp":52679681612,"id":1008,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155281,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":171900,"timestamp":52679534075,"id":992,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155134,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52679706120,"id":1009,"parentId":992,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"822079488","memory.heapUsed":"259482272","memory.heapTotal":"290164736"},"startTime":1772046155306,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":145301,"timestamp":52679567061,"id":997,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155167,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52679712476,"id":1012,"parentId":997,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"822079488","memory.heapUsed":"259731984","memory.heapTotal":"290164736"},"startTime":1772046155312,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2418,"timestamp":52679711038,"id":1011,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046155311,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":168853,"timestamp":52679570091,"id":999,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155170,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":14,"timestamp":52679739104,"id":1013,"parentId":999,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"822210560","memory.heapUsed":"262019256","memory.heapTotal":"290426880"},"startTime":1772046155339,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3414,"timestamp":52679740756,"id":1014,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155340,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":148742,"timestamp":52679598200,"id":1002,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155198,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52679747067,"id":1018,"parentId":1002,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"822341632","memory.heapUsed":"262477712","memory.heapTotal":"290426880"},"startTime":1772046155347,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4195,"timestamp":52679743120,"id":1015,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155343,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3877,"timestamp":52679744953,"id":1017,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155345,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2206,"timestamp":52679747856,"id":1020,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155347,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4015,"timestamp":52679751766,"id":1021,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155351,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4926,"timestamp":52679752625,"id":1022,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155352,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":15878,"timestamp":52679744330,"id":1016,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155344,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":107321,"timestamp":52679654067,"id":1005,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155254,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52679761495,"id":1026,"parentId":1005,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"822472704","memory.heapUsed":"263497136","memory.heapTotal":"290426880"},"startTime":1772046155361,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8381,"timestamp":52679753785,"id":1023,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155353,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":16256,"timestamp":52679747446,"id":1019,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155347,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7823,"timestamp":52679756327,"id":1025,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155356,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3949,"timestamp":52679765858,"id":1027,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155365,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6229,"timestamp":52679766492,"id":1028,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155366,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":20719,"timestamp":52679755889,"id":1024,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155355,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":96855,"timestamp":52679680850,"id":1007,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155280,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52679777803,"id":1035,"parentId":1007,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"822603776","memory.heapUsed":"264558016","memory.heapTotal":"290426880"},"startTime":1772046155377,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10791,"timestamp":52679767805,"id":1030,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155367,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":32836,"timestamp":52679769031,"id":1032,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155369,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":76764,"timestamp":52679770718,"id":1034,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155370,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8391,"timestamp":52679849872,"id":1036,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155449,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8327,"timestamp":52679853742,"id":1037,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155453,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":95227,"timestamp":52679769957,"id":1033,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155370,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6044,"timestamp":52679860116,"id":1041,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155460,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":11047,"timestamp":52679857275,"id":1039,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155457,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4558,"timestamp":52679902300,"id":1042,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155502,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":50780,"timestamp":52679858736,"id":1040,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155458,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":200923,"timestamp":52679710411,"id":1010,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046155310,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52679911464,"id":1045,"parentId":1010,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"825749504","memory.heapUsed":"261678720","memory.heapTotal":"293834752"},"startTime":1772046155511,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7040,"timestamp":52679906136,"id":1044,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155506,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3218,"timestamp":52679955199,"id":1048,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155555,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8536,"timestamp":52679953233,"id":1047,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155553,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":30554,"timestamp":52679959698,"id":1050,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155559,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1711,"timestamp":52679993208,"id":1051,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155593,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":37738,"timestamp":52679958761,"id":1049,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155558,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1183,"timestamp":52679998574,"id":1053,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155598,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":265359,"timestamp":52679768444,"id":1031,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155368,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52680033922,"id":1054,"parentId":1031,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"829550592","memory.heapUsed":"260327688","memory.heapTotal":"298168320"},"startTime":1772046155634,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":267549,"timestamp":52679767390,"id":1029,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155367,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52680035074,"id":1055,"parentId":1029,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"829550592","memory.heapUsed":"260372944","memory.heapTotal":"298168320"},"startTime":1772046155635,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3271,"timestamp":52680036778,"id":1056,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155636,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3703,"timestamp":52680038562,"id":1057,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155638,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3759,"timestamp":52680040936,"id":1059,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155641,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2930,"timestamp":52680043208,"id":1061,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155643,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":192101,"timestamp":52679856534,"id":1038,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155456,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52680048768,"id":1062,"parentId":1038,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"829550592","memory.heapUsed":"261174056","memory.heapTotal":"298168320"},"startTime":1772046155648,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3113,"timestamp":52680049370,"id":1063,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155649,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":14530,"timestamp":52680040217,"id":1058,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155640,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5054,"timestamp":52680050842,"id":1064,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155650,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":16082,"timestamp":52680042412,"id":1060,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155642,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":154938,"timestamp":52679905335,"id":1043,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155505,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52680060406,"id":1065,"parentId":1043,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"829681664","memory.heapUsed":"261674848","memory.heapTotal":"298168320"},"startTime":1772046155660,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2429,"timestamp":52680061251,"id":1066,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155661,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6801,"timestamp":52680064491,"id":1068,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155664,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6522,"timestamp":52680066838,"id":1069,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155666,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":125513,"timestamp":52679952537,"id":1046,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155552,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":17,"timestamp":52680078217,"id":1076,"parentId":1046,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"829681664","memory.heapUsed":"262557432","memory.heapTotal":"298168320"},"startTime":1772046155678,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":12838,"timestamp":52680069068,"id":1071,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155669,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":51656,"timestamp":52680070438,"id":1073,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155670,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":76229,"timestamp":52680074104,"id":1075,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155674,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":72831,"timestamp":52680078631,"id":1077,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155678,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":89178,"timestamp":52680063840,"id":1067,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155663,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4448,"timestamp":52680154395,"id":1078,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155754,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3524,"timestamp":52680156762,"id":1079,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155756,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":88036,"timestamp":52680073494,"id":1074,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155673,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3367,"timestamp":52680159460,"id":1081,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155759,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2016,"timestamp":52680162453,"id":1083,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155762,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2990,"timestamp":52680187447,"id":1084,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155787,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":33083,"timestamp":52680158989,"id":1080,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155759,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4372,"timestamp":52680188972,"id":1086,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155789,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":222347,"timestamp":52679998129,"id":1052,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155598,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52680220581,"id":1087,"parentId":1052,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"832958464","memory.heapUsed":"263852984","memory.heapTotal":"301576192"},"startTime":1772046155820,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2307,"timestamp":52680226142,"id":1090,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155826,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7590,"timestamp":52680224060,"id":1089,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155824,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":32911,"timestamp":52680229515,"id":1092,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155829,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1572,"timestamp":52680264814,"id":1093,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155864,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":39326,"timestamp":52680228658,"id":1091,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155828,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1985,"timestamp":52680270418,"id":1095,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155870,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":224197,"timestamp":52680068332,"id":1070,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155668,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52680292642,"id":1096,"parentId":1070,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"835448832","memory.heapUsed":"271448800","memory.heapTotal":"303419392"},"startTime":1772046155892,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":224070,"timestamp":52680069729,"id":1072,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155669,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52680293899,"id":1097,"parentId":1072,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"835448832","memory.heapUsed":"271498464","memory.heapTotal":"303419392"},"startTime":1772046155893,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2430,"timestamp":52680294829,"id":1098,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155894,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2878,"timestamp":52680296453,"id":1099,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155896,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2915,"timestamp":52680298013,"id":1101,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155898,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":142016,"timestamp":52680162055,"id":1082,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155762,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":16,"timestamp":52680304250,"id":1104,"parentId":1082,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"835448832","memory.heapUsed":"272257328","memory.heapTotal":"303419392"},"startTime":1772046155904,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5233,"timestamp":52680300029,"id":1103,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155900,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4795,"timestamp":52680306594,"id":1105,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155906,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":15736,"timestamp":52680297451,"id":1100,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155897,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":125745,"timestamp":52680188566,"id":1085,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155788,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52680314409,"id":1108,"parentId":1085,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"835579904","memory.heapUsed":"272863240","memory.heapTotal":"303419392"},"startTime":1772046155914,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6255,"timestamp":52680308780,"id":1106,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155908,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6147,"timestamp":52680310085,"id":1107,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155910,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":17885,"timestamp":52680299476,"id":1102,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155899,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3791,"timestamp":52680315537,"id":1110,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155915,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3109,"timestamp":52680318576,"id":1111,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155918,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":104331,"timestamp":52680223480,"id":1088,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155823,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":14,"timestamp":52680328069,"id":1119,"parentId":1088,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"835579904","memory.heapUsed":"273853256","memory.heapTotal":"303681536"},"startTime":1772046155928,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5656,"timestamp":52680322748,"id":1115,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155922,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9438,"timestamp":52680320744,"id":1113,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155920,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":29933,"timestamp":52680323761,"id":1116,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155923,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":40004,"timestamp":52680315150,"id":1109,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155915,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":31820,"timestamp":52680325919,"id":1118,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155925,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":27750,"timestamp":52680356036,"id":1120,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155956,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":62752,"timestamp":52680322144,"id":1114,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155922,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4031,"timestamp":52680381435,"id":1121,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155981,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2673,"timestamp":52680385921,"id":1123,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155985,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4495,"timestamp":52680387789,"id":1125,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155987,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":17410,"timestamp":52680391190,"id":1128,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046155991,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":24019,"timestamp":52680385547,"id":1122,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155985,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":19693,"timestamp":52680390714,"id":1127,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046155990,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":157515,"timestamp":52680269835,"id":1094,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155869,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52680427442,"id":1129,"parentId":1094,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"839118848","memory.heapUsed":"274949208","memory.heapTotal":"307089408"},"startTime":1772046156027,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2773,"timestamp":52680429371,"id":1131,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046156029,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":20778,"timestamp":52680430468,"id":1132,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156030,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1476,"timestamp":52680451649,"id":1134,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156051,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1947,"timestamp":52680454682,"id":1135,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156054,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":6747,"timestamp":52680451326,"id":1133,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046156051,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1314,"timestamp":52680460076,"id":1137,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046156060,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":161555,"timestamp":52680320334,"id":1112,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155920,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52680481989,"id":1138,"parentId":1112,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"839774208","memory.heapUsed":"280717168","memory.heapTotal":"307752960"},"startTime":1772046156082,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":159255,"timestamp":52680325231,"id":1117,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155925,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52680484615,"id":1140,"parentId":1117,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"839774208","memory.heapUsed":"280900016","memory.heapTotal":"307752960"},"startTime":1772046156084,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2277,"timestamp":52680482928,"id":1139,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156083,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2542,"timestamp":52680485838,"id":1142,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156085,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2115,"timestamp":52680487561,"id":1143,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156087,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":110007,"timestamp":52680387431,"id":1124,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155987,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52680497524,"id":1147,"parentId":1124,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"842002432","memory.heapUsed":"272746928","memory.heapTotal":"310898688"},"startTime":1772046156097,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7386,"timestamp":52680490334,"id":1145,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156090,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":109033,"timestamp":52680390195,"id":1126,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046155990,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52680499324,"id":1148,"parentId":1126,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"842133504","memory.heapUsed":"272900224","memory.heapTotal":"310898688"},"startTime":1772046156099,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3213,"timestamp":52680496228,"id":1146,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156096,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":15242,"timestamp":52680485335,"id":1141,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046156085,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1030,"timestamp":52680501161,"id":1149,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046156101,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":14106,"timestamp":52680489804,"id":1144,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046156089,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":78346,"timestamp":52680428958,"id":1130,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046156029,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52680507436,"id":1152,"parentId":1130,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"842133504","memory.heapUsed":"273442216","memory.heapTotal":"310898688"},"startTime":1772046156107,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4196,"timestamp":52680505186,"id":1151,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046156105,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":22853,"timestamp":52680508440,"id":1154,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046156108,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":93211,"timestamp":52680459610,"id":1136,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046156059,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52680552926,"id":1155,"parentId":1136,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"842526720","memory.heapUsed":"278269304","memory.heapTotal":"310898688"},"startTime":1772046156153,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":51251,"timestamp":52680504689,"id":1150,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046156104,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52680556069,"id":1156,"parentId":1150,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"842526720","memory.heapUsed":"278354200","memory.heapTotal":"310898688"},"startTime":1772046156156,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":49466,"timestamp":52680507842,"id":1153,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046156107,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52680557435,"id":1157,"parentId":1153,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"842526720","memory.heapUsed":"278404848","memory.heapTotal":"310898688"},"startTime":1772046156157,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1040,"timestamp":52691929990,"id":1159,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046167530,"traceId":"ce8fa190e7d93e11"},{"name":"compile-path","duration":5758,"timestamp":52692037263,"id":1160,"tags":{"trigger":"proxy"},"startTime":1772046167637,"traceId":"ce8fa190e7d93e11"}] -[{"name":"client-hmr-latency","duration":18000,"timestamp":52691904292,"id":1161,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772046167644,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":19000,"timestamp":52691904392,"id":1162,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772046167644,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3473,"timestamp":52692045435,"id":1163,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167645,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1139,"timestamp":52692049638,"id":1165,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167649,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1040,"timestamp":52692052165,"id":1166,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167652,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":88646,"timestamp":52692049043,"id":1164,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167649,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2778,"timestamp":52692142168,"id":1168,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046167742,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":75000,"timestamp":52692042459,"id":1169,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1772046167809,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":286020,"timestamp":52691929495,"id":1158,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046167529,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":52692215672,"id":1171,"parentId":1158,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"875937792","memory.heapUsed":"292110856","memory.heapTotal":"321257472"},"startTime":1772046167815,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5737,"timestamp":52692212879,"id":1170,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167812,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8859,"timestamp":52692217114,"id":1172,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167817,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9230,"timestamp":52692219400,"id":1174,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167819,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8619,"timestamp":52692221939,"id":1175,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167822,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10984,"timestamp":52692224368,"id":1176,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167824,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":11381,"timestamp":52692227021,"id":1178,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167827,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10369,"timestamp":52692231288,"id":1180,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167831,"traceId":"ce8fa190e7d93e11"},{"name":"client-hmr-latency","duration":121000,"timestamp":52692043579,"id":1185,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":true},"startTime":1772046167843,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10012,"timestamp":52692234069,"id":1181,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167834,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10310,"timestamp":52692236277,"id":1183,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167836,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8335,"timestamp":52692240315,"id":1184,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167840,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":31876,"timestamp":52692218801,"id":1173,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167818,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7521,"timestamp":52692245397,"id":1187,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167845,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8570,"timestamp":52692247804,"id":1188,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167847,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":33521,"timestamp":52692226200,"id":1177,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167826,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10298,"timestamp":52692251420,"id":1189,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167851,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":34100,"timestamp":52692230681,"id":1179,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167830,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":12433,"timestamp":52692254159,"id":1190,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167854,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":34175,"timestamp":52692235523,"id":1182,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167835,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":16623,"timestamp":52692265481,"id":1191,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046167865,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":39844,"timestamp":52692244384,"id":1186,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167844,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":17977,"timestamp":52692271245,"id":1193,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046167871,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":48869,"timestamp":52692285967,"id":1195,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046167886,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":91212,"timestamp":52692287519,"id":1197,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046167887,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":82962,"timestamp":52692333267,"id":1199,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046167933,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":37193,"timestamp":52692414587,"id":1201,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046168014,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":362226,"timestamp":52692141446,"id":1167,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167741,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52692503817,"id":1202,"parentId":1167,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"883150848","memory.heapUsed":"290908600","memory.heapTotal":"328663040"},"startTime":1772046168103,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2763,"timestamp":52692512135,"id":1204,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168112,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":295972,"timestamp":52692270656,"id":1192,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167870,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52692566772,"id":1205,"parentId":1192,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"883544064","memory.heapUsed":"293512368","memory.heapTotal":"328663040"},"startTime":1772046168166,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":281570,"timestamp":52692286751,"id":1196,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167886,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52692568474,"id":1206,"parentId":1196,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"883544064","memory.heapUsed":"293568312","memory.heapTotal":"328663040"},"startTime":1772046168168,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":284201,"timestamp":52692285388,"id":1194,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167885,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52692569733,"id":1207,"parentId":1194,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"883544064","memory.heapUsed":"293610704","memory.heapTotal":"328663040"},"startTime":1772046168169,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":240711,"timestamp":52692332655,"id":1198,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046167932,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":52692573719,"id":1208,"parentId":1198,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"883544064","memory.heapUsed":"293724144","memory.heapTotal":"328663040"},"startTime":1772046168173,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":171019,"timestamp":52692414146,"id":1200,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046168014,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52692585404,"id":1211,"parentId":1200,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"883544064","memory.heapUsed":"294113016","memory.heapTotal":"328663040"},"startTime":1772046168185,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":10499,"timestamp":52692580588,"id":1210,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168180,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":48572,"timestamp":52692586811,"id":1213,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168186,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":85371,"timestamp":52692588988,"id":1215,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168189,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":76768,"timestamp":52692633815,"id":1217,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168233,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1999,"timestamp":52692765390,"id":1219,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168365,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":301382,"timestamp":52692510665,"id":1203,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168110,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":17,"timestamp":52692812281,"id":1220,"parentId":1203,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"887083008","memory.heapUsed":"296724528","memory.heapTotal":"332333056"},"startTime":1772046168412,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1659,"timestamp":52692816679,"id":1222,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168416,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":285196,"timestamp":52692578719,"id":1209,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168178,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52692864092,"id":1223,"parentId":1209,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"887214080","memory.heapUsed":"299297528","memory.heapTotal":"332333056"},"startTime":1772046168464,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":279644,"timestamp":52692585922,"id":1212,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168186,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52692865697,"id":1224,"parentId":1212,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"887214080","memory.heapUsed":"299350288","memory.heapTotal":"332333056"},"startTime":1772046168465,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":279088,"timestamp":52692587588,"id":1214,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168187,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52692866800,"id":1225,"parentId":1214,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"887214080","memory.heapUsed":"299391608","memory.heapTotal":"332333056"},"startTime":1772046168466,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":235993,"timestamp":52692633025,"id":1216,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168233,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52692869157,"id":1226,"parentId":1216,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"887214080","memory.heapUsed":"299507856","memory.heapTotal":"332333056"},"startTime":1772046168469,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":119043,"timestamp":52692764586,"id":1218,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168364,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52692883781,"id":1233,"parentId":1218,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"887345152","memory.heapUsed":"300095760","memory.heapTotal":"332333056"},"startTime":1772046168483,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7970,"timestamp":52692878116,"id":1228,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168478,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":48882,"timestamp":52692880439,"id":1230,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168480,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":82792,"timestamp":52692881677,"id":1232,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168481,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":124595,"timestamp":52692884934,"id":1235,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168485,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1371,"timestamp":52693047490,"id":1237,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168647,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":266135,"timestamp":52692816013,"id":1221,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168416,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52693082270,"id":1238,"parentId":1221,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"890753024","memory.heapUsed":"302467632","memory.heapTotal":"336265216"},"startTime":1772046168682,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4877,"timestamp":52693088047,"id":1240,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168688,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":257164,"timestamp":52692876383,"id":1227,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168476,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52693133669,"id":1241,"parentId":1227,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"890884096","memory.heapUsed":"305058920","memory.heapTotal":"336265216"},"startTime":1772046168733,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":253814,"timestamp":52692881020,"id":1231,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168481,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52693134935,"id":1242,"parentId":1231,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"890884096","memory.heapUsed":"305105136","memory.heapTotal":"336265216"},"startTime":1772046168735,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":251439,"timestamp":52692884201,"id":1234,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168484,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52693135730,"id":1243,"parentId":1234,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"890884096","memory.heapUsed":"305146440","memory.heapTotal":"336265216"},"startTime":1772046168735,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":256896,"timestamp":52692879632,"id":1229,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168479,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52693136625,"id":1244,"parentId":1229,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"890884096","memory.heapUsed":"305187792","memory.heapTotal":"336265216"},"startTime":1772046168736,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":106626,"timestamp":52693046873,"id":1236,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168646,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":7,"timestamp":52693153611,"id":1249,"parentId":1236,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"890884096","memory.heapUsed":"305758984","memory.heapTotal":"336265216"},"startTime":1772046168753,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9712,"timestamp":52693150262,"id":1246,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168750,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":51621,"timestamp":52693152421,"id":1248,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168752,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":90307,"timestamp":52693154789,"id":1251,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168754,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":96698,"timestamp":52693202757,"id":1253,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168802,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9908,"timestamp":52693340150,"id":1255,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046168940,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":310911,"timestamp":52693087215,"id":1239,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168687,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52693398248,"id":1256,"parentId":1239,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"894423040","memory.heapUsed":"306483776","memory.heapTotal":"340197376"},"startTime":1772046168998,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1944,"timestamp":52693412526,"id":1258,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169012,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":332041,"timestamp":52693148589,"id":1245,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168748,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52693480759,"id":1259,"parentId":1245,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"894554112","memory.heapUsed":"309078168","memory.heapTotal":"340459520"},"startTime":1772046169080,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":327968,"timestamp":52693153893,"id":1250,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168753,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52693485065,"id":1260,"parentId":1250,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"894554112","memory.heapUsed":"309123032","memory.heapTotal":"340459520"},"startTime":1772046169085,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":334257,"timestamp":52693151867,"id":1247,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168751,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52693486247,"id":1261,"parentId":1247,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"894554112","memory.heapUsed":"309164368","memory.heapTotal":"340459520"},"startTime":1772046169086,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":299667,"timestamp":52693202064,"id":1252,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168802,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52693501874,"id":1262,"parentId":1252,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"894685184","memory.heapUsed":"309285528","memory.heapTotal":"340459520"},"startTime":1772046169101,"traceId":"ce8fa190e7d93e11"}] -[{"name":"handle-request","duration":176253,"timestamp":52693339313,"id":1254,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046168939,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":9,"timestamp":52693515699,"id":1265,"parentId":1254,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"894685184","memory.heapUsed":"309719464","memory.heapTotal":"340459520"},"startTime":1772046169115,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":119385,"timestamp":52693514217,"id":1264,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169114,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":158289,"timestamp":52693516849,"id":1267,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169116,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":190941,"timestamp":52693524496,"id":1269,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169124,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":115942,"timestamp":52693632611,"id":1271,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169232,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1637,"timestamp":52693781312,"id":1273,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169381,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":411816,"timestamp":52693404957,"id":1257,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169005,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52693816897,"id":1274,"parentId":1257,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"895987712","memory.heapUsed":"290450560","memory.heapTotal":"341745664"},"startTime":1772046169416,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1086,"timestamp":52693819841,"id":1276,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169419,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":354323,"timestamp":52693516182,"id":1266,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169116,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":31,"timestamp":52693870801,"id":1277,"parentId":1266,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"895987712","memory.heapUsed":"293010288","memory.heapTotal":"341745664"},"startTime":1772046169470,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":362063,"timestamp":52693511911,"id":1263,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169111,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":21,"timestamp":52693874523,"id":1278,"parentId":1263,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"895987712","memory.heapUsed":"293056000","memory.heapTotal":"341745664"},"startTime":1772046169474,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":353795,"timestamp":52693523736,"id":1268,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169123,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":23,"timestamp":52693877793,"id":1279,"parentId":1268,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"895987712","memory.heapUsed":"293102576","memory.heapTotal":"341745664"},"startTime":1772046169477,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":248022,"timestamp":52693632128,"id":1270,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169232,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":29,"timestamp":52693880427,"id":1280,"parentId":1270,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"895987712","memory.heapUsed":"293146880","memory.heapTotal":"341745664"},"startTime":1772046169480,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8139,"timestamp":52693886093,"id":1281,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169486,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8389,"timestamp":52693888462,"id":1282,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169488,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":126494,"timestamp":52693780795,"id":1272,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169380,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":15,"timestamp":52693907470,"id":1291,"parentId":1272,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"895987712","memory.heapUsed":"283254104","memory.heapTotal":"341745664"},"startTime":1772046169507,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":12575,"timestamp":52693895215,"id":1288,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169495,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":11885,"timestamp":52693898019,"id":1290,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169498,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":21250,"timestamp":52693892033,"id":1284,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169492,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":57317,"timestamp":52693893669,"id":1286,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772046169493,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3929,"timestamp":52693976639,"id":1292,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169576,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":89167,"timestamp":52693894430,"id":1287,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169494,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6578,"timestamp":52693977624,"id":1293,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169577,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":89662,"timestamp":52693897108,"id":1289,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169497,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":8852,"timestamp":52693979497,"id":1294,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169579,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2331,"timestamp":52693989653,"id":1296,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169589,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3898,"timestamp":52693994411,"id":1298,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169594,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":37341,"timestamp":52693995428,"id":1300,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169595,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":71236,"timestamp":52693996232,"id":1301,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169596,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":82284,"timestamp":52693988671,"id":1295,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169588,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":257764,"timestamp":52693819296,"id":1275,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169419,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":14,"timestamp":52694077281,"id":1302,"parentId":1275,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"895987712","memory.heapUsed":"294050552","memory.heapTotal":"341745664"},"startTime":1772046169677,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3367,"timestamp":52694078933,"id":1304,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169679,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":46683,"timestamp":52694080285,"id":1305,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169680,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2359,"timestamp":52694128797,"id":1307,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169728,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1546,"timestamp":52694132734,"id":1308,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169732,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":10192,"timestamp":52694127138,"id":1306,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169727,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":254114,"timestamp":52693890701,"id":1283,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169490,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":13,"timestamp":52694144983,"id":1311,"parentId":1283,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"897298432","memory.heapUsed":"288616704","memory.heapTotal":"342671360"},"startTime":1772046169745,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3992,"timestamp":52694142130,"id":1310,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169742,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":292690,"timestamp":52693892865,"id":1285,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1772046169492,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52694185717,"id":1312,"parentId":1285,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"897298432","memory.heapUsed":"290938704","memory.heapTotal":"342671360"},"startTime":1772046169785,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3773,"timestamp":52694186830,"id":1313,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169786,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3327,"timestamp":52694191816,"id":1315,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169791,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2328,"timestamp":52694194067,"id":1316,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169794,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2431,"timestamp":52694197015,"id":1318,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169797,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2371,"timestamp":52694198367,"id":1319,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169798,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":11648,"timestamp":52694190903,"id":1314,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169790,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3251,"timestamp":52694203306,"id":1320,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169803,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":12131,"timestamp":52694196516,"id":1317,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169796,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":216582,"timestamp":52693993735,"id":1297,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169593,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52694210459,"id":1321,"parentId":1297,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"897298432","memory.heapUsed":"292275376","memory.heapTotal":"342671360"},"startTime":1772046169810,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":216942,"timestamp":52693994944,"id":1299,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169595,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52694212040,"id":1322,"parentId":1299,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"897298432","memory.heapUsed":"292317080","memory.heapTotal":"342671360"},"startTime":1772046169812,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4711,"timestamp":52694214469,"id":1325,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169814,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":9578,"timestamp":52694213078,"id":1324,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169813,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":36206,"timestamp":52694216148,"id":1326,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169816,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":34532,"timestamp":52694219975,"id":1330,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169820,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":39181,"timestamp":52694218448,"id":1328,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169818,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":38300,"timestamp":52694253247,"id":1332,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169853,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":216382,"timestamp":52694078154,"id":1303,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169678,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52694294678,"id":1333,"parentId":1303,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"897298432","memory.heapUsed":"297898784","memory.heapTotal":"342671360"},"startTime":1772046169894,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4663,"timestamp":52694295048,"id":1334,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169895,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":82387,"timestamp":52694219361,"id":1329,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169819,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":7270,"timestamp":52694298050,"id":1335,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169898,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":55781,"timestamp":52694252542,"id":1331,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169852,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":6786,"timestamp":52694303420,"id":1336,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169903,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3738,"timestamp":52694311337,"id":1338,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169911,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4795,"timestamp":52694314050,"id":1340,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169914,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":40121,"timestamp":52694317158,"id":1342,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169917,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":32728,"timestamp":52694354860,"id":1343,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169954,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":78381,"timestamp":52694310478,"id":1337,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169910,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":250377,"timestamp":52694141277,"id":1309,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169741,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":10,"timestamp":52694391792,"id":1344,"parentId":1309,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"897298432","memory.heapUsed":"294294080","memory.heapTotal":"342671360"},"startTime":1772046169991,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":4258,"timestamp":52694393508,"id":1346,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046169993,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":32289,"timestamp":52694395574,"id":1347,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046169995,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2054,"timestamp":52694428945,"id":1349,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046170029,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1311,"timestamp":52694432359,"id":1350,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046170032,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":7251,"timestamp":52694428023,"id":1348,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046170028,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":227940,"timestamp":52694212585,"id":1323,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169812,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":12,"timestamp":52694440677,"id":1353,"parentId":1323,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"897298432","memory.heapUsed":"297516648","memory.heapTotal":"342671360"},"startTime":1772046170040,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":224644,"timestamp":52694217748,"id":1327,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169817,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":11,"timestamp":52694442546,"id":1354,"parentId":1327,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"897298432","memory.heapUsed":"297571384","memory.heapTotal":"342671360"},"startTime":1772046170042,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":5052,"timestamp":52694438514,"id":1352,"parentId":3,"tags":{"inputPage":"/dashboard/page"},"startTime":1772046170038,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1497,"timestamp":52694467433,"id":1355,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046170067,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":3647,"timestamp":52694469694,"id":1357,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046170069,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2834,"timestamp":52694471345,"id":1358,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046170071,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2562,"timestamp":52694474776,"id":1360,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046170074,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":2013,"timestamp":52694476401,"id":1361,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046170076,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":10609,"timestamp":52694469087,"id":1356,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046170069,"traceId":"ce8fa190e7d93e11"},{"name":"ensure-page","duration":1107,"timestamp":52694480080,"id":1362,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772046170080,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":8127,"timestamp":52694474295,"id":1359,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046170074,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":170080,"timestamp":52694313420,"id":1339,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169913,"traceId":"ce8fa190e7d93e11"},{"name":"memory-usage","duration":8,"timestamp":52694483615,"id":1363,"parentId":1339,"tags":{"url":"/dashboard?_rsc=qd3d7","memory.rss":"897298432","memory.heapUsed":"301187584","memory.heapTotal":"342671360"},"startTime":1772046170083,"traceId":"ce8fa190e7d93e11"},{"name":"handle-request","duration":169590,"timestamp":52694316508,"id":1341,"tags":{"url":"/dashboard?_rsc=qd3d7"},"startTime":1772046169916,"traceId":"ce8fa190e7d93e11"}] -[{"name":"hot-reloader","duration":112,"timestamp":54159914466,"id":3,"tags":{"version":"16.1.6"},"startTime":1772047635514,"traceId":"094eab47d67b804a"},{"name":"compile-path","duration":64594,"timestamp":54160172273,"id":4,"tags":{"trigger":"proxy"},"startTime":1772047635772,"traceId":"094eab47d67b804a"}] -[{"name":"setup-dev-bundler","duration":574042,"timestamp":54159765439,"id":2,"parentId":1,"tags":{},"startTime":1772047635365,"traceId":"094eab47d67b804a"},{"name":"start-dev-server","duration":1225211,"timestamp":54159263383,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6754983936","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"422858752","memory.heapTotal":"89591808","memory.heapUsed":"65815504"},"startTime":1772047634863,"traceId":"094eab47d67b804a"},{"name":"ensure-page","duration":1621,"timestamp":54176905733,"id":5,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772047652505,"traceId":"094eab47d67b804a"},{"name":"ensure-page","duration":1021,"timestamp":54176915527,"id":7,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772047652515,"traceId":"094eab47d67b804a"},{"name":"ensure-page","duration":432,"timestamp":54176918265,"id":8,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772047652518,"traceId":"094eab47d67b804a"},{"name":"handle-request","duration":173001,"timestamp":54176908692,"id":6,"tags":{"url":"/dashboard"},"startTime":1772047652508,"traceId":"094eab47d67b804a"},{"name":"compile-path","duration":580903,"timestamp":54177085734,"id":11,"tags":{"trigger":"/dashboard"},"startTime":1772047652685,"traceId":"094eab47d67b804a"}] -[{"name":"handle-request","duration":862090,"timestamp":54177084362,"id":9,"tags":{"url":"/dashboard"},"startTime":1772047652684,"traceId":"094eab47d67b804a"},{"name":"memory-usage","duration":10,"timestamp":54177946604,"id":12,"parentId":9,"tags":{"url":"/dashboard","memory.rss":"592707584","memory.heapUsed":"84535016","memory.heapTotal":"120184832"},"startTime":1772047653546,"traceId":"094eab47d67b804a"},{"name":"compile-path","duration":1464114,"timestamp":54181484060,"id":15,"tags":{"trigger":"/admin"},"startTime":1772047657084,"traceId":"094eab47d67b804a"}] -[{"name":"handle-request","duration":1619995,"timestamp":54181482545,"id":13,"tags":{"url":"/admin"},"startTime":1772047657082,"traceId":"094eab47d67b804a"},{"name":"memory-usage","duration":7,"timestamp":54183102647,"id":16,"parentId":13,"tags":{"url":"/admin","memory.rss":"914546688","memory.heapUsed":"95451192","memory.heapTotal":"125661184"},"startTime":1772047658702,"traceId":"094eab47d67b804a"},{"name":"ensure-page","duration":829,"timestamp":54183694570,"id":17,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772047659294,"traceId":"094eab47d67b804a"},{"name":"ensure-page","duration":402,"timestamp":54183695522,"id":18,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772047659295,"traceId":"094eab47d67b804a"},{"name":"ensure-page","duration":259,"timestamp":54183697016,"id":19,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772047659297,"traceId":"094eab47d67b804a"},{"name":"ensure-page","duration":200,"timestamp":54183697328,"id":20,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772047659297,"traceId":"094eab47d67b804a"},{"name":"compile-path","duration":21890,"timestamp":54183701657,"id":23,"tags":{"trigger":"/_not-found/page"},"startTime":1772047659301,"traceId":"094eab47d67b804a"}] -[{"name":"hot-reloader","duration":62,"timestamp":54865967488,"id":3,"tags":{"version":"16.1.6"},"startTime":1772048341567,"traceId":"46183f2f31377b99"},{"name":"compile-path","duration":26716,"timestamp":54866048026,"id":4,"tags":{"trigger":"proxy"},"startTime":1772048341648,"traceId":"46183f2f31377b99"}] -[{"name":"setup-dev-bundler","duration":264340,"timestamp":54865887294,"id":2,"parentId":1,"tags":{},"startTime":1772048341487,"traceId":"46183f2f31377b99"},{"name":"start-dev-server","duration":788730,"timestamp":54865458412,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6533910528","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"417296384","memory.heapTotal":"89591808","memory.heapUsed":"65736744"},"startTime":1772048341058,"traceId":"46183f2f31377b99"},{"name":"compile-path","duration":655164,"timestamp":54886472788,"id":7,"tags":{"trigger":"/login"},"startTime":1772048362072,"traceId":"46183f2f31377b99"}] -[{"name":"handle-request","duration":1148593,"timestamp":54886464512,"id":5,"tags":{"url":"/login"},"startTime":1772048362064,"traceId":"46183f2f31377b99"},{"name":"memory-usage","duration":20,"timestamp":54887613365,"id":8,"parentId":5,"tags":{"url":"/login","memory.rss":"658731008","memory.heapUsed":"85436104","memory.heapTotal":"119992320"},"startTime":1772048363213,"traceId":"46183f2f31377b99"},{"name":"ensure-page","duration":1267,"timestamp":54902804874,"id":9,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772048378404,"traceId":"46183f2f31377b99"},{"name":"ensure-page","duration":1229,"timestamp":54902807405,"id":11,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772048378407,"traceId":"46183f2f31377b99"},{"name":"ensure-page","duration":731,"timestamp":54902812045,"id":12,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772048378412,"traceId":"46183f2f31377b99"},{"name":"handle-request","duration":44521,"timestamp":54902806363,"id":10,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772048378406,"traceId":"46183f2f31377b99"},{"name":"compile-path","duration":17750,"timestamp":54902852920,"id":15,"tags":{"trigger":"/dashboard"},"startTime":1772048378452,"traceId":"46183f2f31377b99"}] -[{"name":"handle-request","duration":68897,"timestamp":54902852257,"id":13,"tags":{"url":"/dashboard?_rsc=5c339"},"startTime":1772048378452,"traceId":"46183f2f31377b99"},{"name":"memory-usage","duration":9,"timestamp":54902921258,"id":16,"parentId":13,"tags":{"url":"/dashboard?_rsc=5c339","memory.rss":"717012992","memory.heapUsed":"97833472","memory.heapTotal":"124919808"},"startTime":1772048378521,"traceId":"46183f2f31377b99"},{"name":"compile-path","duration":49022,"timestamp":54908384798,"id":19,"tags":{"trigger":"/admin"},"startTime":1772048383984,"traceId":"46183f2f31377b99"}] -[{"name":"handle-request","duration":219407,"timestamp":54908383058,"id":17,"tags":{"url":"/admin"},"startTime":1772048383983,"traceId":"46183f2f31377b99"},{"name":"memory-usage","duration":10,"timestamp":54908602641,"id":20,"parentId":17,"tags":{"url":"/admin","memory.rss":"766558208","memory.heapUsed":"93924520","memory.heapTotal":"112836608"},"startTime":1772048384202,"traceId":"46183f2f31377b99"},{"name":"ensure-page","duration":337,"timestamp":54908942500,"id":21,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772048384542,"traceId":"46183f2f31377b99"},{"name":"ensure-page","duration":213,"timestamp":54908942897,"id":22,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772048384542,"traceId":"46183f2f31377b99"},{"name":"ensure-page","duration":243,"timestamp":54908943854,"id":23,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772048384543,"traceId":"46183f2f31377b99"},{"name":"ensure-page","duration":342,"timestamp":54908944150,"id":24,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772048384544,"traceId":"46183f2f31377b99"},{"name":"compile-path","duration":13642,"timestamp":54908947039,"id":27,"tags":{"trigger":"/_not-found/page"},"startTime":1772048384547,"traceId":"46183f2f31377b99"}] -[{"name":"ensure-page","duration":1042,"timestamp":54908961541,"id":28,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772048384561,"traceId":"46183f2f31377b99"},{"name":"compile-path","duration":3939301,"timestamp":54915331899,"id":31,"tags":{"trigger":"/admin/users"},"startTime":1772048390931,"traceId":"46183f2f31377b99"}] -[{"name":"hot-reloader","duration":551,"timestamp":150572972,"id":3,"tags":{"version":"16.1.6"},"startTime":1772092191545,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":267052,"timestamp":151662043,"id":4,"tags":{"trigger":"proxy"},"startTime":1772092192635,"traceId":"da317052deb23f8c"}] -[{"name":"setup-dev-bundler","duration":1966601,"timestamp":150103753,"id":2,"parentId":1,"tags":{},"startTime":1772092191076,"traceId":"da317052deb23f8c"},{"name":"start-dev-server","duration":3541367,"timestamp":148770759,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"10440908800","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"431546368","memory.heapTotal":"89067520","memory.heapUsed":"64511520"},"startTime":1772092189744,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":7413,"timestamp":369395541,"id":5,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772092410368,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2391,"timestamp":369431915,"id":7,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772092410404,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1227,"timestamp":369440602,"id":8,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1772092410413,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":755219,"timestamp":369406903,"id":6,"tags":{"url":"/dashboard"},"startTime":1772092410379,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":671452,"timestamp":370181600,"id":11,"tags":{"trigger":"/dashboard"},"startTime":1772092411154,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":1275113,"timestamp":370173848,"id":9,"tags":{"url":"/dashboard"},"startTime":1772092411146,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":16,"timestamp":371449285,"id":12,"parentId":9,"tags":{"url":"/dashboard","memory.rss":"579833856","memory.heapUsed":"86025256","memory.heapTotal":"100261888"},"startTime":1772092412422,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":296258,"timestamp":377941108,"id":15,"tags":{"trigger":"/admin/users"},"startTime":1772092418914,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":882905,"timestamp":377938240,"id":13,"tags":{"url":"/admin/users"},"startTime":1772092418911,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":13,"timestamp":378821298,"id":16,"parentId":13,"tags":{"url":"/admin/users","memory.rss":"774643712","memory.heapUsed":"117712520","memory.heapTotal":"141504512"},"startTime":1772092419794,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":8770,"timestamp":1116125721,"id":18,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772093157098,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":185485,"timestamp":1116120703,"id":17,"tags":{"url":"/admin/users"},"startTime":1772093157093,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":15,"timestamp":1116306370,"id":19,"parentId":17,"tags":{"url":"/admin/users","memory.rss":"739471360","memory.heapUsed":"101329472","memory.heapTotal":"106151936"},"startTime":1772093157279,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":228812,"timestamp":1121600386,"id":22,"tags":{"trigger":"/admin"},"startTime":1772093162573,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":609119,"timestamp":1121596205,"id":20,"tags":{"url":"/admin"},"startTime":1772093162569,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":16,"timestamp":1122205445,"id":23,"parentId":20,"tags":{"url":"/admin","memory.rss":"781074432","memory.heapUsed":"110568464","memory.heapTotal":"121589760"},"startTime":1772093163178,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":930,"timestamp":1122834502,"id":24,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772093163807,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":452,"timestamp":1122835566,"id":25,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772093163808,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1110,"timestamp":1122837399,"id":26,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772093163810,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":417,"timestamp":1122838616,"id":27,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772093163811,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":51185,"timestamp":1122845900,"id":30,"tags":{"trigger":"/_not-found/page"},"startTime":1772093163818,"traceId":"da317052deb23f8c"}] -[{"name":"ensure-page","duration":1999,"timestamp":1122898797,"id":31,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093163871,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":286,"timestamp":1155366963,"id":32,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772093196339,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":209,"timestamp":1155367313,"id":33,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772093196340,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":466,"timestamp":1155368134,"id":34,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772093196341,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":238,"timestamp":1155368665,"id":35,"parentId":3,"tags":{"inputPage":"/avatars/shadcn.jpg"},"startTime":1772093196341,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1775,"timestamp":1155370353,"id":37,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093196343,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1569,"timestamp":1155372371,"id":38,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093196345,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":1034000,"timestamp":1486454032,"id":39,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772093528492,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":1035000,"timestamp":1486454412,"id":40,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin","isPageHidden":true},"startTime":1772093528578,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":450,"timestamp":1487607620,"id":41,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093528580,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":267,"timestamp":1487608153,"id":42,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093528581,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":258,"timestamp":1487609359,"id":43,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093528582,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":261,"timestamp":1487609877,"id":44,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093528582,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3480,"timestamp":1487611244,"id":46,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093528584,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2019,"timestamp":1487615575,"id":47,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093528588,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":36109,"timestamp":1510386768,"id":49,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772093551359,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":442921,"timestamp":1510383511,"id":48,"tags":{"url":"/admin"},"startTime":1772093551356,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":43,"timestamp":1510826673,"id":50,"parentId":48,"tags":{"url":"/admin","memory.rss":"931553280","memory.heapUsed":"131090440","memory.heapTotal":"153014272"},"startTime":1772093551799,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":391,"timestamp":1511582274,"id":51,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093552555,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":546,"timestamp":1511582782,"id":52,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093552555,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":701,"timestamp":1511585102,"id":53,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093552558,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":405,"timestamp":1511585936,"id":54,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093552558,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3612,"timestamp":1511588228,"id":56,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093552561,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1454,"timestamp":1511592149,"id":57,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093552565,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":351,"timestamp":1552452137,"id":58,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093593425,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":246,"timestamp":1552452553,"id":59,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093593425,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":298,"timestamp":1552453645,"id":60,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093593426,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":251,"timestamp":1552454019,"id":61,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093593427,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2027,"timestamp":1552456316,"id":63,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093593429,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1682,"timestamp":1552458876,"id":64,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093593431,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":229000,"timestamp":1602977520,"id":65,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772093644208,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":230000,"timestamp":1602977604,"id":66,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin","isPageHidden":false},"startTime":1772093644233,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":210000,"timestamp":1648611240,"id":67,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772093689821,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":211000,"timestamp":1648611687,"id":68,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin","isPageHidden":false},"startTime":1772093689921,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":400000,"timestamp":1849407479,"id":69,"parentId":3,"tags":{"updatedModules":["[project]/src/components/nav-main.tsx [app-client]","[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-client]","[project]/node_modules/next/dist/shared/lib/router/utils/format-url.js [app-client]","[project]/node_modules/next/dist/client/use-merged-ref.js [app-client]","[project]/node_modules/next/dist/shared/lib/utils.js [app-client]","[project]/node_modules/next/dist/shared/lib/router/utils/is-local-url.js [app-client]","[project]/node_modules/next/dist/shared/lib/utils/error-once.js [app-client]","[project]/node_modules/next/dist/client/app-dir/link.js [app-client]","[project]/node_modules/next/navigation.js [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772093890803,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":398000,"timestamp":1849409620,"id":70,"parentId":3,"tags":{"updatedModules":["[project]/src/components/nav-main.tsx [app-client]","[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-client]","[project]/node_modules/next/dist/shared/lib/router/utils/format-url.js [app-client]","[project]/node_modules/next/dist/client/use-merged-ref.js [app-client]","[project]/node_modules/next/dist/shared/lib/utils.js [app-client]","[project]/node_modules/next/dist/shared/lib/router/utils/is-local-url.js [app-client]","[project]/node_modules/next/dist/shared/lib/utils/error-once.js [app-client]","[project]/node_modules/next/dist/client/app-dir/link.js [app-client]","[project]/node_modules/next/navigation.js [app-client]"],"page":"/admin","isPageHidden":true},"startTime":1772093890887,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":47818,"timestamp":1877011682,"id":72,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772093917984,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":504475,"timestamp":1877009471,"id":71,"tags":{"url":"/admin"},"startTime":1772093917982,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":14,"timestamp":1877514171,"id":73,"parentId":71,"tags":{"url":"/admin","memory.rss":"1189105664","memory.heapUsed":"133214056","memory.heapTotal":"155529216"},"startTime":1772093918487,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":450,"timestamp":1878067343,"id":74,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093919040,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":301,"timestamp":1878067863,"id":75,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093919040,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":326,"timestamp":1878068951,"id":76,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093919041,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":249,"timestamp":1878069334,"id":77,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093919042,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2549,"timestamp":1878070617,"id":79,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093919043,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2785,"timestamp":1878073872,"id":80,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093919046,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":101906,"timestamp":1878069879,"id":78,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772093919042,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":15,"timestamp":1878171970,"id":81,"parentId":78,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1192513536","memory.heapUsed":"137255648","memory.heapTotal":"155766784"},"startTime":1772093919144,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3250,"timestamp":1880441518,"id":83,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772093921414,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":78717,"timestamp":1880439616,"id":82,"tags":{"url":"/admin?_rsc=1szk4"},"startTime":1772093921412,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":26,"timestamp":1880518620,"id":84,"parentId":82,"tags":{"url":"/admin?_rsc=1szk4","memory.rss":"1210982400","memory.heapUsed":"139509960","memory.heapTotal":"155766784"},"startTime":1772093921491,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":951,"timestamp":1884518147,"id":85,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1772093925491,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":542,"timestamp":1884519249,"id":86,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1772093925492,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":666,"timestamp":1884521560,"id":87,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1772093925494,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":512,"timestamp":1884522345,"id":88,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1772093925495,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3762,"timestamp":1884524884,"id":90,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093925497,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4591,"timestamp":1884529227,"id":91,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093925502,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":113271,"timestamp":1884523446,"id":89,"tags":{"url":"/admin/championships?_rsc=1szk4"},"startTime":1772093925496,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":35,"timestamp":1884637159,"id":92,"parentId":89,"tags":{"url":"/admin/championships?_rsc=1szk4","memory.rss":"1211543552","memory.heapUsed":"137180904","memory.heapTotal":"172544000"},"startTime":1772093925610,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1375,"timestamp":1884711779,"id":93,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1772093925684,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1249,"timestamp":1884713436,"id":94,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1772093925686,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1303,"timestamp":1884717352,"id":95,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1772093925690,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":980,"timestamp":1884718821,"id":96,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1772093925691,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":5104,"timestamp":1884722622,"id":98,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093925695,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4737,"timestamp":1884729028,"id":99,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093925702,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":206853,"timestamp":1884720711,"id":97,"tags":{"url":"/admin/championships"},"startTime":1772093925693,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":23,"timestamp":1884927852,"id":100,"parentId":97,"tags":{"url":"/admin/championships","memory.rss":"1212329984","memory.heapUsed":"142483040","memory.heapTotal":"173273088"},"startTime":1772093925900,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3332,"timestamp":1887111652,"id":102,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772093928084,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":199984,"timestamp":1887109737,"id":101,"tags":{"url":"/admin"},"startTime":1772093928082,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":13,"timestamp":1887309859,"id":103,"parentId":101,"tags":{"url":"/admin","memory.rss":"1221242880","memory.heapUsed":"142239888","memory.heapTotal":"175370240"},"startTime":1772093928282,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":489,"timestamp":1888191524,"id":104,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093929164,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":557,"timestamp":1888192258,"id":105,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093929165,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":728,"timestamp":1888194498,"id":106,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093929167,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":531,"timestamp":1888195382,"id":107,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093929168,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2999,"timestamp":1888197765,"id":109,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093929170,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2113,"timestamp":1888201440,"id":110,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093929174,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3623,"timestamp":1888417697,"id":112,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772093929390,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":145589,"timestamp":1888416070,"id":111,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1772093929389,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":30,"timestamp":1888562666,"id":113,"parentId":111,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"1231204352","memory.heapUsed":"145281800","memory.heapTotal":"179703808"},"startTime":1772093929535,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":306,"timestamp":1890371338,"id":114,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093931344,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":205,"timestamp":1890371705,"id":115,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093931344,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":213,"timestamp":1890372561,"id":116,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093931345,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":240,"timestamp":1890372823,"id":117,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093931345,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1892,"timestamp":1890373889,"id":119,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093931346,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1357,"timestamp":1890376055,"id":120,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093931349,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":71011,"timestamp":1890373319,"id":118,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772093931346,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":32,"timestamp":1890444687,"id":121,"parentId":118,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1211588608","memory.heapUsed":"143897376","memory.heapTotal":"178421760"},"startTime":1772093931417,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1015,"timestamp":1898978661,"id":122,"parentId":3,"tags":{"inputPage":"/admin/settings"},"startTime":1772093939951,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":875,"timestamp":1898979820,"id":123,"parentId":3,"tags":{"inputPage":"/admin/settings"},"startTime":1772093939952,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":966,"timestamp":1898982726,"id":124,"parentId":3,"tags":{"inputPage":"/admin/settings"},"startTime":1772093939955,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":793,"timestamp":1898983826,"id":125,"parentId":3,"tags":{"inputPage":"/admin/settings"},"startTime":1772093939956,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4448,"timestamp":1898988700,"id":127,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093939961,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3243,"timestamp":1898994429,"id":128,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093939967,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":156317,"timestamp":1898985251,"id":126,"tags":{"url":"/admin/settings"},"startTime":1772093939958,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":13,"timestamp":1899141703,"id":129,"parentId":126,"tags":{"url":"/admin/settings","memory.rss":"1198587904","memory.heapUsed":"132321168","memory.heapTotal":"141688832"},"startTime":1772093940114,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3766,"timestamp":1901106862,"id":131,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772093942079,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":181342,"timestamp":1901105224,"id":130,"tags":{"url":"/admin"},"startTime":1772093942078,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":14,"timestamp":1901286695,"id":132,"parentId":130,"tags":{"url":"/admin","memory.rss":"1202257920","memory.heapUsed":"135330032","memory.heapTotal":"146382848"},"startTime":1772093942259,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":859,"timestamp":1901850243,"id":133,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093942823,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":344,"timestamp":1901851188,"id":134,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093942824,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":275,"timestamp":1901852292,"id":135,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093942825,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":211,"timestamp":1901852624,"id":136,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093942825,"traceId":"da317052deb23f8c"}] -[{"name":"ensure-page","duration":2157,"timestamp":1901854961,"id":138,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093942827,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3082,"timestamp":1901857474,"id":139,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093942830,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1163,"timestamp":1902778295,"id":140,"parentId":3,"tags":{"inputPage":"/admin/help"},"startTime":1772093943751,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":726,"timestamp":1902779670,"id":141,"parentId":3,"tags":{"inputPage":"/admin/help"},"startTime":1772093943752,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":570,"timestamp":1902782106,"id":142,"parentId":3,"tags":{"inputPage":"/admin/help"},"startTime":1772093943755,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":475,"timestamp":1902782796,"id":143,"parentId":3,"tags":{"inputPage":"/admin/help"},"startTime":1772093943755,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4195,"timestamp":1902784765,"id":145,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093943757,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3419,"timestamp":1902789562,"id":146,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093943762,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":165418,"timestamp":1902783698,"id":144,"tags":{"url":"/admin/help"},"startTime":1772093943756,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":29,"timestamp":1902949383,"id":147,"parentId":144,"tags":{"url":"/admin/help","memory.rss":"1210695680","memory.heapUsed":"138585952","memory.heapTotal":"157335552"},"startTime":1772093943922,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3221,"timestamp":1904290722,"id":149,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772093945263,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":278751,"timestamp":1904288559,"id":148,"tags":{"url":"/admin"},"startTime":1772093945261,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":22,"timestamp":1904567533,"id":150,"parentId":148,"tags":{"url":"/admin","memory.rss":"1216331776","memory.heapUsed":"138741544","memory.heapTotal":"157573120"},"startTime":1772093945540,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":672,"timestamp":1905610182,"id":151,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093946583,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":528,"timestamp":1905610986,"id":152,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093946583,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":658,"timestamp":1905613317,"id":153,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093946586,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":653,"timestamp":1905614201,"id":154,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093946587,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3697,"timestamp":1905616993,"id":156,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093946590,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4753,"timestamp":1905621583,"id":157,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093946594,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":162078,"timestamp":1905615576,"id":155,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772093946588,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":33,"timestamp":1905777959,"id":158,"parentId":155,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1218297856","memory.heapUsed":"141808808","memory.heapTotal":"158826496"},"startTime":1772093946750,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":817,"timestamp":1906241643,"id":159,"parentId":3,"tags":{"inputPage":"/admin/search"},"startTime":1772093947214,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":456,"timestamp":1906242573,"id":160,"parentId":3,"tags":{"inputPage":"/admin/search"},"startTime":1772093947215,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":549,"timestamp":1906244542,"id":161,"parentId":3,"tags":{"inputPage":"/admin/search"},"startTime":1772093947217,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":459,"timestamp":1906245228,"id":162,"parentId":3,"tags":{"inputPage":"/admin/search"},"startTime":1772093947218,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3237,"timestamp":1906247633,"id":164,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093947220,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2935,"timestamp":1906251403,"id":165,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093947224,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":163179,"timestamp":1906246362,"id":163,"tags":{"url":"/admin/search"},"startTime":1772093947219,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":44,"timestamp":1906409902,"id":166,"parentId":163,"tags":{"url":"/admin/search","memory.rss":"1220788224","memory.heapUsed":"142503096","memory.heapTotal":"177438720"},"startTime":1772093947382,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3633,"timestamp":1908027800,"id":168,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772093949000,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":265403,"timestamp":1908026188,"id":167,"tags":{"url":"/admin"},"startTime":1772093948999,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":27,"timestamp":1908291858,"id":169,"parentId":167,"tags":{"url":"/admin","memory.rss":"1224982528","memory.heapUsed":"151403008","memory.heapTotal":"177438720"},"startTime":1772093949264,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":355,"timestamp":1909072315,"id":170,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093950045,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":270,"timestamp":1909072769,"id":171,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093950045,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":283,"timestamp":1909074426,"id":172,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093950047,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":232,"timestamp":1909074765,"id":173,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093950047,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2693,"timestamp":1909076219,"id":175,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093950049,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1414,"timestamp":1909079325,"id":176,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093950052,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":73374,"timestamp":1909075335,"id":174,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772093950048,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":13,"timestamp":1909148834,"id":177,"parentId":174,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1226387456","memory.heapUsed":"141669416","memory.heapTotal":"176734208"},"startTime":1772093950121,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":273,"timestamp":1929372042,"id":178,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093970345,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":186,"timestamp":1929372369,"id":179,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093970345,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":207,"timestamp":1929373169,"id":180,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093970346,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":183,"timestamp":1929373421,"id":181,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093970346,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1533,"timestamp":1929374350,"id":183,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093970347,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1262,"timestamp":1929376107,"id":184,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093970349,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":333,"timestamp":1934650997,"id":185,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093975623,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":228,"timestamp":1934651391,"id":186,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093975624,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":272,"timestamp":1934652412,"id":187,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093975625,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":221,"timestamp":1934652740,"id":188,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093975625,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2169,"timestamp":1934653821,"id":190,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093975626,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1587,"timestamp":1934656294,"id":191,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093975629,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3094,"timestamp":1944380643,"id":193,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772093985353,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":173444,"timestamp":1944379163,"id":192,"tags":{"url":"/admin"},"startTime":1772093985352,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":1944552725,"id":194,"parentId":192,"tags":{"url":"/admin","memory.rss":"1234120704","memory.heapUsed":"145374656","memory.heapTotal":"159350784"},"startTime":1772093985525,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":466,"timestamp":1945079470,"id":195,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093986052,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":376,"timestamp":1945080088,"id":196,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093986053,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":405,"timestamp":1945082252,"id":197,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093986055,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":291,"timestamp":1945082734,"id":198,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772093986055,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1655,"timestamp":1945084061,"id":200,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093986057,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1319,"timestamp":1945085911,"id":201,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772093986058,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":126000,"timestamp":2022650507,"id":202,"parentId":3,"tags":{"updatedModules":["[project]/src/components/nav-secondary.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772094063781,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":127000,"timestamp":2022650380,"id":203,"parentId":3,"tags":{"updatedModules":["[project]/src/components/nav-secondary.tsx [app-client]"],"page":"/admin","isPageHidden":true},"startTime":1772094063837,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":32430,"timestamp":2030077603,"id":205,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772094071050,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":595999,"timestamp":2030076037,"id":204,"tags":{"url":"/admin"},"startTime":1772094071049,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":13,"timestamp":2030672155,"id":206,"parentId":204,"tags":{"url":"/admin","memory.rss":"1242914816","memory.heapUsed":"149150072","memory.heapTotal":"163241984"},"startTime":1772094071645,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":321,"timestamp":2031206754,"id":207,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094072179,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":200,"timestamp":2031207136,"id":208,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094072180,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":220,"timestamp":2031207973,"id":209,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094072180,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":181,"timestamp":2031208239,"id":210,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094072181,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4074,"timestamp":2031209201,"id":212,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094072182,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2031,"timestamp":2031213639,"id":213,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094072186,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":313000,"timestamp":2202765408,"id":214,"parentId":3,"tags":{"updatedModules":["[project]/src/components/nav-user.tsx [app-client]"],"page":"/admin","isPageHidden":true},"startTime":1772094244138,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":478,"timestamp":2203169337,"id":215,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094244142,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":397,"timestamp":2203169933,"id":216,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094244142,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":421,"timestamp":2203171339,"id":217,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094244144,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":485,"timestamp":2203171862,"id":218,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094244144,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4011,"timestamp":2203174537,"id":220,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094244147,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3201,"timestamp":2203179348,"id":221,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094244152,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":19686,"timestamp":2311185499,"id":224,"tags":{"trigger":"/admin"},"startTime":1772094352158,"traceId":"da317052deb23f8c"}] -[{"name":"client-hmr-latency","duration":160000,"timestamp":2311035174,"id":225,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/page.tsx [app-client]","[project]/src/components/dashboard-header.tsx [app-client]"],"page":"/admin","isPageHidden":true},"startTime":1772094352389,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":254351,"timestamp":2311183354,"id":222,"tags":{"url":"/admin?_rsc=1igku"},"startTime":1772094352156,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":13,"timestamp":2311437855,"id":226,"parentId":222,"tags":{"url":"/admin?_rsc=1igku","memory.rss":"1237831680","memory.heapUsed":"154713168","memory.heapTotal":"162836480"},"startTime":1772094352410,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":229000,"timestamp":2381776176,"id":227,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard-header.tsx [app-client]"],"page":"/admin","isPageHidden":true},"startTime":1772094423008,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":22897,"timestamp":2391775598,"id":229,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772094432748,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":670562,"timestamp":2391773832,"id":228,"tags":{"url":"/admin"},"startTime":1772094432746,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":13,"timestamp":2392444533,"id":230,"parentId":228,"tags":{"url":"/admin","memory.rss":"1277911040","memory.heapUsed":"164030744","memory.heapTotal":"183955456"},"startTime":1772094433417,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":397,"timestamp":2393292269,"id":231,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094434265,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":257,"timestamp":2393292738,"id":232,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094434265,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":304,"timestamp":2393293803,"id":233,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094434266,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":365,"timestamp":2393294164,"id":234,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094434267,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1961,"timestamp":2393296733,"id":236,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094434269,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2601,"timestamp":2393298991,"id":237,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094434271,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3609,"timestamp":2405317231,"id":239,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772094446290,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":94502,"timestamp":2405315205,"id":238,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1772094446288,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":15,"timestamp":2405409849,"id":240,"parentId":238,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"1243103232","memory.heapUsed":"152511008","memory.heapTotal":"159784960"},"startTime":1772094446382,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":497,"timestamp":2407452406,"id":241,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094448425,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":432,"timestamp":2407453016,"id":242,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094448425,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":630,"timestamp":2407454853,"id":243,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094448427,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":360,"timestamp":2407455582,"id":244,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094448428,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1868,"timestamp":2407457610,"id":246,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094448430,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1535,"timestamp":2407459760,"id":247,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094448432,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":83088,"timestamp":2407456821,"id":245,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772094448429,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":11,"timestamp":2407540165,"id":248,"parentId":245,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1245986816","memory.heapUsed":"155794784","memory.heapTotal":"163430400"},"startTime":1772094448513,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":754000,"timestamp":2593277669,"id":249,"parentId":3,"tags":{"updatedModules":["[project]/src/components/section-cards.tsx [app-client]"],"page":"/admin","isPageHidden":true},"startTime":1772094635076,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":20424,"timestamp":2673513252,"id":252,"tags":{"trigger":"/admin"},"startTime":1772094714486,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":742533,"timestamp":2673512265,"id":250,"tags":{"url":"/admin"},"startTime":1772094714485,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":12,"timestamp":2674254919,"id":253,"parentId":250,"tags":{"url":"/admin","memory.rss":"1305935872","memory.heapUsed":"168559688","memory.heapTotal":"191684608"},"startTime":1772094715227,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1108,"timestamp":2675122419,"id":254,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094716095,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":660,"timestamp":2675123867,"id":255,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094716096,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":526,"timestamp":2675126500,"id":256,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094716099,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":305,"timestamp":2675127126,"id":257,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094716100,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":21181,"timestamp":2675130313,"id":259,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094716103,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1570,"timestamp":2675151822,"id":260,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094716124,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":121505,"timestamp":2675129098,"id":258,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772094716102,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":12,"timestamp":2675250716,"id":261,"parentId":258,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1317076992","memory.heapUsed":"173656240","memory.heapTotal":"191922176"},"startTime":1772094716223,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":11212,"timestamp":2724789068,"id":263,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772094765762,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":415617,"timestamp":2724788128,"id":262,"tags":{"url":"/admin"},"startTime":1772094765761,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":2725203850,"id":264,"parentId":262,"tags":{"url":"/admin","memory.rss":"1323868160","memory.heapUsed":"189957880","memory.heapTotal":"218447872"},"startTime":1772094766176,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":17758,"timestamp":2755041197,"id":266,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772094796014,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":562838,"timestamp":2755040110,"id":265,"tags":{"url":"/admin"},"startTime":1772094796013,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":11,"timestamp":2755603080,"id":267,"parentId":265,"tags":{"url":"/admin","memory.rss":"1310486528","memory.heapUsed":"177930888","memory.heapTotal":"198537216"},"startTime":1772094796576,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":467,"timestamp":2756388814,"id":268,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094797361,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":265,"timestamp":2756389348,"id":269,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094797362,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":305,"timestamp":2756390471,"id":270,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094797363,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":262,"timestamp":2756390837,"id":271,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094797363,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3426,"timestamp":2756394118,"id":273,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094797367,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2135,"timestamp":2756397962,"id":274,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094797370,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2995,"timestamp":2767224494,"id":276,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772094808197,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":185485,"timestamp":2767222923,"id":275,"tags":{"url":"/admin"},"startTime":1772094808195,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":2767408515,"id":277,"parentId":275,"tags":{"url":"/admin","memory.rss":"1316220928","memory.heapUsed":"178456352","memory.heapTotal":"186716160"},"startTime":1772094808381,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":991,"timestamp":2768347177,"id":278,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094809320,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1181,"timestamp":2768348383,"id":279,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094809321,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1568,"timestamp":2768352314,"id":280,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094809325,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":755,"timestamp":2768354091,"id":281,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772094809327,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":5210,"timestamp":2768360245,"id":283,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094809333,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4351,"timestamp":2768366106,"id":284,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772094809339,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":27266,"timestamp":2868920664,"id":287,"tags":{"trigger":"/admin"},"startTime":1772094909893,"traceId":"da317052deb23f8c"}] -[{"name":"client-hmr-latency","duration":3687000,"timestamp":2867136541,"id":290,"parentId":3,"tags":{"updatedModules":[],"page":"/admin","isPageHidden":true},"startTime":1772094911803,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":145922,"timestamp":2870820844,"id":289,"tags":{"trigger":"/_error"},"startTime":1772094911793,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":2377832,"timestamp":2868918514,"id":285,"tags":{"url":"/admin?_rsc=1igku"},"startTime":1772094909891,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":2871296449,"id":291,"parentId":285,"tags":{"url":"/admin?_rsc=1igku","memory.rss":"1588887552","memory.heapUsed":"230433168","memory.heapTotal":"278790144"},"startTime":1772094912269,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1153,"timestamp":2871302687,"id":293,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772094912275,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":8864,"timestamp":2872495874,"id":294,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772094913468,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":1220186,"timestamp":2871302094,"id":292,"tags":{"url":"/admin?_rsc=1igku"},"startTime":1772094912275,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":2872522386,"id":295,"parentId":292,"tags":{"url":"/admin?_rsc=1igku","memory.rss":"1647472640","memory.heapUsed":"310925384","memory.heapTotal":"344145920"},"startTime":1772094913495,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1698,"timestamp":2872525140,"id":297,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772094913498,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":13020,"timestamp":2873593354,"id":298,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1772094914566,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":1100578,"timestamp":2872524266,"id":296,"tags":{"url":"/admin"},"startTime":1772094913497,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":2873624942,"id":299,"parentId":296,"tags":{"url":"/admin","memory.rss":"1728090112","memory.heapUsed":"389765440","memory.heapTotal":"425484288"},"startTime":1772094914597,"traceId":"da317052deb23f8c"},{"name":"navigation-to-hydration","duration":3365000,"timestamp":2871304634,"id":300,"parentId":3,"tags":{"pathname":"/admin","query":""},"startTime":1772094915643,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":292917,"timestamp":3006423994,"id":303,"tags":{"trigger":"/admin"},"startTime":1772095047396,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":923234,"timestamp":3006421860,"id":301,"tags":{"url":"/admin"},"startTime":1772095047394,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":3007345276,"id":304,"parentId":301,"tags":{"url":"/admin","memory.rss":"1573011456","memory.heapUsed":"208693256","memory.heapTotal":"229740544"},"startTime":1772095048318,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":383,"timestamp":3007829533,"id":305,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095048802,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":230,"timestamp":3007830010,"id":306,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095048802,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":325,"timestamp":3007833345,"id":307,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095048806,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":421,"timestamp":3007833777,"id":308,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095048806,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":8756,"timestamp":3007835765,"id":310,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772095048808,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1867,"timestamp":3007844747,"id":311,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772095048817,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3976,"timestamp":3019752705,"id":313,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772095060725,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":243915,"timestamp":3019751037,"id":312,"tags":{"url":"/admin"},"startTime":1772095060724,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":3019995095,"id":314,"parentId":312,"tags":{"url":"/admin","memory.rss":"1523802112","memory.heapUsed":"212761904","memory.heapTotal":"222900224"},"startTime":1772095060968,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":265,"timestamp":3020654032,"id":315,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095061627,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":284,"timestamp":3020654370,"id":316,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095061627,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":224,"timestamp":3020655558,"id":317,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095061628,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":206,"timestamp":3020655830,"id":318,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095061628,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1442,"timestamp":3020657176,"id":320,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772095061630,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1303,"timestamp":3020658824,"id":321,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772095061631,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":845075,"timestamp":3064981723,"id":324,"tags":{"trigger":"/admin/users"},"startTime":1772095105954,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":1172997,"timestamp":3064980969,"id":322,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1772095105953,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":23,"timestamp":3066154281,"id":325,"parentId":322,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"1630498816","memory.heapUsed":"224325576","memory.heapTotal":"239923200"},"startTime":1772095107127,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":362000,"timestamp":3569053324,"id":326,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772095610450,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":33177,"timestamp":3579810251,"id":328,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772095620783,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":543363,"timestamp":3579808632,"id":327,"tags":{"url":"/admin/users"},"startTime":1772095620781,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":3580352161,"id":329,"parentId":327,"tags":{"url":"/admin/users","memory.rss":"1636966400","memory.heapUsed":"223524944","memory.heapTotal":"241725440"},"startTime":1772095621325,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":368,"timestamp":3580987677,"id":330,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095621960,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":209,"timestamp":3580988115,"id":331,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095621961,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":245,"timestamp":3580988963,"id":332,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095621961,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":191,"timestamp":3580989257,"id":333,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772095621962,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":11475,"timestamp":3580990790,"id":335,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772095621963,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1354,"timestamp":3581002473,"id":336,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772095621975,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":249000,"timestamp":4078131752,"id":337,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772096119434,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":181000,"timestamp":4382153269,"id":338,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard-header.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772096423373,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":92000,"timestamp":4471424744,"id":339,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772096512605,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1093,"timestamp":4534447185,"id":340,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1772096575420,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":894,"timestamp":4534448435,"id":341,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1772096575421,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":868,"timestamp":4534451423,"id":342,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1772096575424,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":703,"timestamp":4534452456,"id":343,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1772096575425,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":21704,"timestamp":4534456424,"id":345,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772096575429,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3248,"timestamp":4534478602,"id":346,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772096575451,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":88253,"timestamp":4534454856,"id":344,"tags":{"url":"/admin/partners?_rsc=wkrq7"},"startTime":1772096575427,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":14,"timestamp":4534543307,"id":347,"parentId":344,"tags":{"url":"/admin/partners?_rsc=wkrq7","memory.rss":"1637302272","memory.heapUsed":"226246312","memory.heapTotal":"259379200"},"startTime":1772096575516,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":952,"timestamp":4534586466,"id":348,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1772096575559,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1109,"timestamp":4534587625,"id":349,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1772096575560,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":627,"timestamp":4534591138,"id":350,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1772096575564,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":520,"timestamp":4534591887,"id":351,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1772096575564,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3049,"timestamp":4534593948,"id":353,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772096575566,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2624,"timestamp":4534597412,"id":354,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772096575570,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":119704,"timestamp":4534592906,"id":352,"tags":{"url":"/admin/partners"},"startTime":1772096575565,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":4534712739,"id":355,"parentId":352,"tags":{"url":"/admin/partners","memory.rss":"1642283008","memory.heapUsed":"231431856","memory.heapTotal":"259846144"},"startTime":1772096575685,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":39743,"timestamp":4536407532,"id":357,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772096577380,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":516907,"timestamp":4536405976,"id":356,"tags":{"url":"/admin/users"},"startTime":1772096577378,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":4536923050,"id":358,"parentId":356,"tags":{"url":"/admin/users","memory.rss":"1657610240","memory.heapUsed":"249335272","memory.heapTotal":"267878400"},"startTime":1772096577896,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":342,"timestamp":4537848434,"id":359,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772096578821,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":251,"timestamp":4537848847,"id":360,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772096578821,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":291,"timestamp":4537849797,"id":361,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772096578822,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":197,"timestamp":4537850142,"id":362,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772096578823,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1654,"timestamp":4537851202,"id":364,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772096578824,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1391,"timestamp":4537853079,"id":365,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772096578826,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":72523,"timestamp":4537850558,"id":363,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772096578823,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":4537923180,"id":366,"parentId":363,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1652846592","memory.heapUsed":"230191464","memory.heapTotal":"261160960"},"startTime":1772096578896,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":103000,"timestamp":4676381942,"id":367,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1772096717575,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":69000,"timestamp":4765667126,"id":368,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard-header.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772096806738,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":11592,"timestamp":4886388482,"id":370,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772096927361,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":258797,"timestamp":4886387818,"id":369,"tags":{"url":"/admin/users"},"startTime":1772096927360,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":4886646689,"id":371,"parentId":369,"tags":{"url":"/admin/users","memory.rss":"1655123968","memory.heapUsed":"244335408","memory.heapTotal":"265928704"},"startTime":1772096927619,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":233,"timestamp":4887029532,"id":372,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772096928002,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":148,"timestamp":4887029812,"id":373,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772096928002,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":265,"timestamp":4887030515,"id":374,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772096928003,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":162,"timestamp":4887030824,"id":375,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772096928003,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1650,"timestamp":4887031630,"id":377,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772096928004,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2277,"timestamp":4887033506,"id":378,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772096928006,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":102822,"timestamp":4887031173,"id":376,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772096928004,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":4887134133,"id":379,"parentId":376,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1649405952","memory.heapUsed":"232216616","memory.heapTotal":"260169728"},"startTime":1772096928107,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":66000,"timestamp":4909133471,"id":380,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1772096950262,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":25408,"timestamp":4923481666,"id":382,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1772096964454,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":135555,"timestamp":4923479968,"id":381,"tags":{"url":"/admin?_rsc=wkrq7"},"startTime":1772096964452,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":4,"timestamp":4923615595,"id":383,"parentId":381,"tags":{"url":"/admin?_rsc=wkrq7","memory.rss":"1657434112","memory.heapUsed":"240566664","memory.heapTotal":"263733248"},"startTime":1772096964588,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":6856,"timestamp":4926174165,"id":385,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772096967147,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":124491,"timestamp":4926173727,"id":384,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1772096967146,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":4926298293,"id":386,"parentId":384,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"1684787200","memory.heapUsed":"249157192","memory.heapTotal":"255438848"},"startTime":1772096967271,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":175,"timestamp":5008949883,"id":387,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097049922,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":105,"timestamp":5008950091,"id":388,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097049923,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":179,"timestamp":5008951129,"id":389,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097049924,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":116,"timestamp":5008951350,"id":390,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097049924,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2374,"timestamp":5008951913,"id":392,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772097049924,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":791,"timestamp":5008954407,"id":393,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772097049927,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":52000,"timestamp":5038359909,"id":394,"parentId":3,"tags":{"updatedModules":["[project]/src/components/nav-user.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1772097079429,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":64000,"timestamp":5547255039,"id":395,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772097588333,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":37000,"timestamp":5622222578,"id":396,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772097663262,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":201000,"timestamp":5622546889,"id":397,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]","[project]/src/components/nav-main.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772097663771,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":46000,"timestamp":5622798761,"id":398,"parentId":3,"tags":{"updatedModules":["[project]/src/components/nav-user.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772097663848,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":74000,"timestamp":5728393749,"id":399,"parentId":3,"tags":{"updatedModules":["[project]/src/components/ui/sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772097769523,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":197,"timestamp":5728553231,"id":400,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097769526,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":123,"timestamp":5728553465,"id":401,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097769526,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":141,"timestamp":5728553954,"id":402,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097769526,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":109,"timestamp":5728554123,"id":403,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097769527,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1144,"timestamp":5728554936,"id":405,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772097769527,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1027,"timestamp":5728556239,"id":406,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772097769529,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":46685,"timestamp":5728554642,"id":404,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772097769527,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":5728601401,"id":407,"parentId":404,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1683742720","memory.heapUsed":"253878520","memory.heapTotal":"260362240"},"startTime":1772097769574,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":201,"timestamp":5737794338,"id":408,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097778767,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":142,"timestamp":5737794583,"id":409,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097778767,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":209,"timestamp":5737795315,"id":410,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097778768,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":194,"timestamp":5737795570,"id":411,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097778768,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2746,"timestamp":5737797081,"id":413,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772097778770,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1225,"timestamp":5737800024,"id":414,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772097778773,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":52000,"timestamp":5737622403,"id":415,"parentId":3,"tags":{"updatedModules":["[project]/src/components/ui/sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772097778798,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":53552,"timestamp":5737796531,"id":412,"tags":{"url":"/avatars/admin.jpg"},"startTime":1772097778769,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":5737850184,"id":416,"parentId":412,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1702383616","memory.heapUsed":"255632448","memory.heapTotal":"261672960"},"startTime":1772097778823,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":163,"timestamp":5764192698,"id":417,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097805165,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":124,"timestamp":5764192908,"id":418,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097805165,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":122,"timestamp":5764193418,"id":419,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097805166,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":108,"timestamp":5764193566,"id":420,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1772097805166,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":107000,"timestamp":5764035567,"id":423,"parentId":3,"tags":{"updatedModules":["[project]/src/components/ui/sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772097805169,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":5816,"timestamp":5764194117,"id":422,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772097805167,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1558,"timestamp":5764200069,"id":424,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772097805173,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":6973,"timestamp":6027593254,"id":425,"tags":{"trigger":"proxy"},"startTime":1772098068566,"traceId":"da317052deb23f8c"}] -[{"name":"ensure-page","duration":37785,"timestamp":6027596528,"id":427,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098068569,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":117000,"timestamp":6027542653,"id":428,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1772098068768,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":207115,"timestamp":6027595736,"id":426,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098068568,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6027802955,"id":429,"parentId":426,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1704198144","memory.heapUsed":"239185128","memory.heapTotal":"265732096"},"startTime":1772098068775,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4063,"timestamp":6027806755,"id":431,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098068779,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":43062,"timestamp":6027809404,"id":433,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098068782,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":7343,"timestamp":6027892058,"id":435,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098068865,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":37582,"timestamp":6027893312,"id":437,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098068866,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":63378,"timestamp":6027897407,"id":439,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098068870,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":29266,"timestamp":6027959602,"id":441,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098068932,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":215626,"timestamp":6027806168,"id":430,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098068779,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":6028021872,"id":442,"parentId":430,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1708654592","memory.heapUsed":"244127096","memory.heapTotal":"278552576"},"startTime":1772098068994,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":215169,"timestamp":6027808752,"id":432,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098068781,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":6028024020,"id":443,"parentId":432,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1708654592","memory.heapUsed":"244246784","memory.heapTotal":"278552576"},"startTime":1772098068997,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":137961,"timestamp":6027891512,"id":434,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098068864,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6028029580,"id":446,"parentId":434,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1708654592","memory.heapUsed":"244483704","memory.heapTotal":"278552576"},"startTime":1772098069002,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":138207,"timestamp":6027892763,"id":436,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098068865,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":11,"timestamp":6028031248,"id":447,"parentId":436,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1708654592","memory.heapUsed":"244526184","memory.heapTotal":"278552576"},"startTime":1772098069004,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":6818,"timestamp":6028025921,"id":445,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098068998,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":161197,"timestamp":6027896769,"id":438,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098068869,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028058075,"id":448,"parentId":438,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1708654592","memory.heapUsed":"247137736","memory.heapTotal":"278552576"},"startTime":1772098069031,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":5112,"timestamp":6028058924,"id":450,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069031,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":133107,"timestamp":6027959044,"id":440,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098068932,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":6028092230,"id":451,"parentId":440,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1710751744","memory.heapUsed":"250265776","memory.heapTotal":"278552576"},"startTime":1772098069065,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4979,"timestamp":6028092865,"id":453,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069065,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":36984,"timestamp":6028093787,"id":455,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069066,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":68730,"timestamp":6028096624,"id":457,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069069,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1294,"timestamp":6028191580,"id":459,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069164,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":195126,"timestamp":6028025389,"id":444,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098068998,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028220610,"id":460,"parentId":444,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1716518912","memory.heapUsed":"251478576","memory.heapTotal":"279019520"},"startTime":1772098069193,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":165678,"timestamp":6028058358,"id":449,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069031,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028224133,"id":461,"parentId":449,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1716518912","memory.heapUsed":"251659328","memory.heapTotal":"279281664"},"startTime":1772098069197,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1717,"timestamp":6028225319,"id":463,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069198,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":162762,"timestamp":6028092467,"id":452,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069065,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6028255344,"id":464,"parentId":452,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1716518912","memory.heapUsed":"254412800","memory.heapTotal":"279281664"},"startTime":1772098069228,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":163061,"timestamp":6028093198,"id":454,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069066,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028256341,"id":465,"parentId":454,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1716518912","memory.heapUsed":"254455352","memory.heapTotal":"279281664"},"startTime":1772098069229,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":166837,"timestamp":6028095930,"id":456,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069068,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":12,"timestamp":6028262942,"id":466,"parentId":456,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1716518912","memory.heapUsed":"250307088","memory.heapTotal":"279281664"},"startTime":1772098069235,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":5327,"timestamp":6028264351,"id":468,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069237,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":114938,"timestamp":6028191194,"id":458,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069164,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028306242,"id":473,"parentId":458,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1716518912","memory.heapUsed":"253452120","memory.heapTotal":"279281664"},"startTime":1772098069279,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":5070,"timestamp":6028303239,"id":470,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069276,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":34367,"timestamp":6028304925,"id":472,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069277,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":65946,"timestamp":6028307380,"id":475,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069280,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1392,"timestamp":6028406866,"id":477,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069379,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":208351,"timestamp":6028224774,"id":462,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069197,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":11,"timestamp":6028433265,"id":478,"parentId":462,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1717829632","memory.heapUsed":"258685440","memory.heapTotal":"296058880"},"startTime":1772098069406,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":175138,"timestamp":6028263658,"id":467,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069236,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":6028438912,"id":481,"parentId":467,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1717829632","memory.heapUsed":"258933832","memory.heapTotal":"296058880"},"startTime":1772098069411,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3058,"timestamp":6028436908,"id":480,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069409,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":175268,"timestamp":6028302787,"id":469,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069275,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":31,"timestamp":6028478424,"id":482,"parentId":469,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1720057856","memory.heapUsed":"261583528","memory.heapTotal":"296058880"},"startTime":1772098069451,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":173531,"timestamp":6028306768,"id":474,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069279,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028480406,"id":483,"parentId":474,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1720057856","memory.heapUsed":"261649664","memory.heapTotal":"296058880"},"startTime":1772098069453,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":177298,"timestamp":6028304385,"id":471,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069277,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6028481799,"id":484,"parentId":471,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1720188928","memory.heapUsed":"261690808","memory.heapTotal":"296058880"},"startTime":1772098069454,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":5867,"timestamp":6028484712,"id":486,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069457,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":39786,"timestamp":6028489035,"id":488,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069462,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":165245,"timestamp":6028406412,"id":476,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069379,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028571763,"id":493,"parentId":476,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1726349312","memory.heapUsed":"257458224","memory.heapTotal":"296984576"},"startTime":1772098069544,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":47274,"timestamp":6028525561,"id":490,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069498,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":75999,"timestamp":6028526667,"id":492,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069499,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1047,"timestamp":6028625496,"id":495,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069598,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":215780,"timestamp":6028436211,"id":479,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069409,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":6028652100,"id":496,"parentId":479,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1728839680","memory.heapUsed":"265280408","memory.heapTotal":"296984576"},"startTime":1772098069625,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":977,"timestamp":6028655148,"id":498,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069628,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":199745,"timestamp":6028483738,"id":485,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069456,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":31,"timestamp":6028683713,"id":499,"parentId":485,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1731330048","memory.heapUsed":"268126064","memory.heapTotal":"296984576"},"startTime":1772098069656,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":198393,"timestamp":6028488390,"id":487,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069461,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":6028686863,"id":500,"parentId":487,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1731461120","memory.heapUsed":"268260088","memory.heapTotal":"296984576"},"startTime":1772098069659,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":167569,"timestamp":6028526085,"id":491,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069499,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028693751,"id":501,"parentId":491,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1731985408","memory.heapUsed":"260360160","memory.heapTotal":"297771008"},"startTime":1772098069666,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":170586,"timestamp":6028525045,"id":489,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069498,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":6028695726,"id":502,"parentId":489,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1731985408","memory.heapUsed":"260401304","memory.heapTotal":"297771008"},"startTime":1772098069668,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4246,"timestamp":6028696726,"id":504,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069669,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4118,"timestamp":6028724991,"id":506,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069697,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":137217,"timestamp":6028625037,"id":494,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069598,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":6028762384,"id":509,"parentId":494,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1732378624","memory.heapUsed":"265930824","memory.heapTotal":"297771008"},"startTime":1772098069735,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":36405,"timestamp":6028727270,"id":508,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772098069700,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":147003,"timestamp":6028654661,"id":497,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069627,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":15,"timestamp":6028801892,"id":510,"parentId":497,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1732509696","memory.heapUsed":"268538528","memory.heapTotal":"297771008"},"startTime":1772098069774,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":107870,"timestamp":6028696218,"id":503,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069669,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028804186,"id":511,"parentId":503,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1732509696","memory.heapUsed":"268612048","memory.heapTotal":"297771008"},"startTime":1772098069777,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":82478,"timestamp":6028724542,"id":505,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069697,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6028807124,"id":512,"parentId":505,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1732509696","memory.heapUsed":"268664808","memory.heapTotal":"297771008"},"startTime":1772098069780,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":81725,"timestamp":6028726513,"id":507,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772098069699,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":6028808348,"id":513,"parentId":507,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1732509696","memory.heapUsed":"268707496","memory.heapTotal":"297771008"},"startTime":1772098069781,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":3471,"timestamp":6991334509,"id":514,"tags":{"trigger":"proxy"},"startTime":1772099032307,"traceId":"da317052deb23f8c"}] -[{"name":"ensure-page","duration":37873,"timestamp":6991335930,"id":516,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032308,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":94000,"timestamp":6991295388,"id":517,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1772099032457,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":155914,"timestamp":6991335232,"id":515,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032308,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":6991491250,"id":518,"parentId":515,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1610948608","memory.heapUsed":"235695728","memory.heapTotal":"243941376"},"startTime":1772099032464,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4814,"timestamp":6991496160,"id":520,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032469,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":42127,"timestamp":6991499556,"id":522,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032472,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":37136,"timestamp":6991540237,"id":524,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032513,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":43088,"timestamp":6991575197,"id":526,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032548,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":42067,"timestamp":6991616679,"id":528,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032589,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":34408,"timestamp":6991656938,"id":530,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032629,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":259319,"timestamp":6991495314,"id":519,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032468,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6991754745,"id":531,"parentId":519,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1621434368","memory.heapUsed":"240416680","memory.heapTotal":"262266880"},"startTime":1772099032727,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":265476,"timestamp":6991498805,"id":521,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032471,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":13,"timestamp":6991764472,"id":532,"parentId":521,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1621434368","memory.heapUsed":"240548200","memory.heapTotal":"262266880"},"startTime":1772099032737,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":227564,"timestamp":6991539650,"id":523,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032512,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":6991767333,"id":533,"parentId":523,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1621434368","memory.heapUsed":"240615056","memory.heapTotal":"262266880"},"startTime":1772099032740,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":198924,"timestamp":6991574475,"id":525,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032547,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":12,"timestamp":6991773615,"id":536,"parentId":525,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1621434368","memory.heapUsed":"240826824","memory.heapTotal":"262266880"},"startTime":1772099032746,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":6431,"timestamp":6991769450,"id":535,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032742,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":206400,"timestamp":6991616053,"id":527,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032589,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6991822560,"id":537,"parentId":527,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1621696512","memory.heapUsed":"243482824","memory.heapTotal":"262266880"},"startTime":1772099032795,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":174218,"timestamp":6991655587,"id":529,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032628,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6991829906,"id":540,"parentId":529,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1621696512","memory.heapUsed":"243704208","memory.heapTotal":"262266880"},"startTime":1772099032802,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":8584,"timestamp":6991824177,"id":539,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032797,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":69340,"timestamp":6991831367,"id":542,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032804,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":30855,"timestamp":6991899379,"id":544,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032872,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":29425,"timestamp":6991929153,"id":546,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032902,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":35185,"timestamp":6991955547,"id":548,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099032928,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":251324,"timestamp":6991768607,"id":534,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032741,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":22,"timestamp":6992020172,"id":549,"parentId":534,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1624875008","memory.heapUsed":"242190184","memory.heapTotal":"261038080"},"startTime":1772099032993,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":204133,"timestamp":6991822916,"id":538,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032795,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":21,"timestamp":6992028242,"id":550,"parentId":538,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1625006080","memory.heapUsed":"242342640","memory.heapTotal":"261038080"},"startTime":1772099033001,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":201525,"timestamp":6991830673,"id":541,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032803,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6992032290,"id":553,"parentId":541,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1625006080","memory.heapUsed":"242485784","memory.heapTotal":"261038080"},"startTime":1772099033005,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3162,"timestamp":6992029931,"id":552,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033002,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":179443,"timestamp":6991898817,"id":543,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032871,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":15,"timestamp":6992078482,"id":554,"parentId":543,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1628151808","memory.heapUsed":"241100520","memory.heapTotal":"262610944"},"startTime":1772099033051,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":155313,"timestamp":6991928618,"id":545,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032901,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6992084044,"id":557,"parentId":545,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1628151808","memory.heapUsed":"241413704","memory.heapTotal":"262610944"},"startTime":1772099033057,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":6485,"timestamp":6992082820,"id":556,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033055,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":166961,"timestamp":6991954880,"id":547,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099032927,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":6992121967,"id":562,"parentId":547,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1628807168","memory.heapUsed":"244713232","memory.heapTotal":"263077888"},"startTime":1772099033094,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":38400,"timestamp":6992085644,"id":559,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033058,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":72835,"timestamp":6992088144,"id":561,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033061,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4677,"timestamp":6992188248,"id":564,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033161,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1255,"timestamp":6992214956,"id":566,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033187,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":208887,"timestamp":6992029156,"id":551,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033002,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6992238156,"id":567,"parentId":551,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1632346112","memory.heapUsed":"249813160","memory.heapTotal":"281427968"},"startTime":1772099033211,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1834,"timestamp":6992242939,"id":569,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033215,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":183948,"timestamp":6992082244,"id":555,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033055,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":6992266287,"id":570,"parentId":555,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1635098624","memory.heapUsed":"252563680","memory.heapTotal":"281427968"},"startTime":1772099033239,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":183975,"timestamp":6992085061,"id":558,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033058,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6992269127,"id":571,"parentId":558,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1635229696","memory.heapUsed":"252694256","memory.heapTotal":"281427968"},"startTime":1772099033242,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":186181,"timestamp":6992086568,"id":560,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033059,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":6992272844,"id":572,"parentId":560,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1635360768","memory.heapUsed":"252739376","memory.heapTotal":"281427968"},"startTime":1772099033245,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":92965,"timestamp":6992187018,"id":563,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033160,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":6992280081,"id":573,"parentId":563,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1635491840","memory.heapUsed":"252960216","memory.heapTotal":"281427968"},"startTime":1772099033253,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":68168,"timestamp":6992214439,"id":565,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033187,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":6992282745,"id":576,"parentId":565,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1635753984","memory.heapUsed":"253146480","memory.heapTotal":"281427968"},"startTime":1772099033255,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3540,"timestamp":6992280760,"id":575,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033253,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":30391,"timestamp":6992283543,"id":578,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033256,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":36103,"timestamp":6992312533,"id":580,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033285,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":32908,"timestamp":6992347543,"id":582,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033320,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":26631,"timestamp":6992379399,"id":584,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033352,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":194185,"timestamp":6992242158,"id":568,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033215,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":6992436434,"id":585,"parentId":568,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1645453312","memory.heapUsed":"255543272","memory.heapTotal":"283787264"},"startTime":1772099033409,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":167099,"timestamp":6992280329,"id":574,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033253,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6992447547,"id":588,"parentId":574,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1645715456","memory.heapUsed":"255811832","memory.heapTotal":"283787264"},"startTime":1772099033420,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4308,"timestamp":6992444200,"id":587,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033417,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":202288,"timestamp":6992283041,"id":577,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033256,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":6992485419,"id":589,"parentId":577,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1648336896","memory.heapUsed":"258444080","memory.heapTotal":"284049408"},"startTime":1772099033458,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":185210,"timestamp":6992312118,"id":579,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033285,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":6992497449,"id":590,"parentId":579,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1651482624","memory.heapUsed":"250599720","memory.heapTotal":"287719424"},"startTime":1772099033470,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":153975,"timestamp":6992346867,"id":581,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033319,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":12,"timestamp":6992500968,"id":593,"parentId":581,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1651482624","memory.heapUsed":"250799272","memory.heapTotal":"287719424"},"startTime":1772099033473,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4081,"timestamp":6992498505,"id":592,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033471,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":160642,"timestamp":6992378820,"id":583,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033351,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":22,"timestamp":6992539752,"id":596,"parentId":583,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1651613696","memory.heapUsed":"253540480","memory.heapTotal":"287719424"},"startTime":1772099033512,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":9720,"timestamp":6992536063,"id":595,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033509,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":37983,"timestamp":6992543404,"id":598,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772099033516,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":176695,"timestamp":6992442975,"id":586,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033415,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":6992619814,"id":599,"parentId":586,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1652793344","memory.heapUsed":"259664096","memory.heapTotal":"288645120"},"startTime":1772099033592,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":127429,"timestamp":6992497822,"id":591,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033470,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":6992625386,"id":600,"parentId":591,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1652793344","memory.heapUsed":"259735000","memory.heapTotal":"288645120"},"startTime":1772099033598,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":92911,"timestamp":6992535542,"id":594,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033508,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":6992628594,"id":601,"parentId":594,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1652793344","memory.heapUsed":"259792984","memory.heapTotal":"288645120"},"startTime":1772099033601,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":88840,"timestamp":6992541225,"id":597,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772099033514,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":6992630192,"id":602,"parentId":597,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1652793344","memory.heapUsed":"259834336","memory.heapTotal":"288645120"},"startTime":1772099033603,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":64000,"timestamp":7176892827,"id":603,"parentId":3,"tags":{"updatedModules":["[project]/src/components/app-sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772099217958,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":74000,"timestamp":7198813346,"id":604,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard-header.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1772099239889,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":1351,"timestamp":13870669461,"id":607,"tags":{"trigger":"proxy"},"startTime":1772105911642,"traceId":"da317052deb23f8c"}] -[{"name":"ensure-page","duration":431183,"timestamp":13870605114,"id":606,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105911578,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":272000,"timestamp":13870511209,"id":608,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1772105912280,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":707027,"timestamp":13870603787,"id":605,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105911576,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":13871310939,"id":609,"parentId":605,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1294757888","memory.heapUsed":"265602640","memory.heapTotal":"274845696"},"startTime":1772105912283,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3007,"timestamp":13871315208,"id":611,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912288,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4772,"timestamp":13871345222,"id":613,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912318,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":30497,"timestamp":13871346123,"id":615,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912319,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":56011,"timestamp":13871349098,"id":617,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912322,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":26255,"timestamp":13871403330,"id":619,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912376,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":28287,"timestamp":13871428439,"id":621,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912401,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":176596,"timestamp":13871314537,"id":610,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912287,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":13871491245,"id":622,"parentId":610,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1294888960","memory.heapUsed":"272170288","memory.heapTotal":"283496448"},"startTime":1772105912464,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":151211,"timestamp":13871344727,"id":612,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912317,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":13871496049,"id":623,"parentId":612,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1294888960","memory.heapUsed":"270268800","memory.heapTotal":"284282880"},"startTime":1772105912469,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":151429,"timestamp":13871348550,"id":616,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912321,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":28,"timestamp":13871500354,"id":626,"parentId":616,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1294888960","memory.heapUsed":"270408848","memory.heapTotal":"284282880"},"startTime":1772105912473,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":4317,"timestamp":13871497300,"id":625,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912470,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":131276,"timestamp":13871402373,"id":618,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912375,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":13871533780,"id":627,"parentId":618,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1295020032","memory.heapUsed":"273066760","memory.heapTotal":"284282880"},"startTime":1772105912506,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":110190,"timestamp":13871427863,"id":620,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912400,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":21,"timestamp":13871538322,"id":628,"parentId":620,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1295020032","memory.heapUsed":"273201376","memory.heapTotal":"284282880"},"startTime":1772105912511,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":199263,"timestamp":13871345615,"id":614,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912318,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":13871544990,"id":631,"parentId":614,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1295020032","memory.heapUsed":"271226360","memory.heapTotal":"293457920"},"startTime":1772105912517,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":6909,"timestamp":13871540319,"id":630,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912513,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":40409,"timestamp":13871545943,"id":633,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912518,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":35491,"timestamp":13871583643,"id":635,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912556,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":34183,"timestamp":13871617053,"id":637,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912590,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":41204,"timestamp":13871647997,"id":639,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912621,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":243868,"timestamp":13871496653,"id":624,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912469,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":13871740633,"id":640,"parentId":624,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1298821120","memory.heapUsed":"275089120","memory.heapTotal":"297390080"},"startTime":1772105912713,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":205267,"timestamp":13871539231,"id":629,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912512,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":13871744588,"id":641,"parentId":629,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1298952192","memory.heapUsed":"275246152","memory.heapTotal":"297390080"},"startTime":1772105912717,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":242769,"timestamp":13871545368,"id":632,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912518,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":13871788246,"id":644,"parentId":632,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1295306752","memory.heapUsed":"248323152","memory.heapTotal":"294440960"},"startTime":1772105912761,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":43731,"timestamp":13871745648,"id":643,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912718,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":239975,"timestamp":13871582853,"id":634,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912555,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":13871822930,"id":645,"parentId":634,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1295306752","memory.heapUsed":"251050872","memory.heapTotal":"294440960"},"startTime":1772105912795,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":209056,"timestamp":13871616381,"id":636,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912589,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":13871825529,"id":648,"parentId":636,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1295306752","memory.heapUsed":"251206544","memory.heapTotal":"294440960"},"startTime":1772105912798,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3089,"timestamp":13871824088,"id":647,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912797,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":205614,"timestamp":13871647232,"id":638,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912620,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":11,"timestamp":13871853029,"id":651,"parentId":638,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1295306752","memory.heapUsed":"253884984","memory.heapTotal":"294440960"},"startTime":1772105912826,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":28282,"timestamp":13871826346,"id":650,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912799,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":6634,"timestamp":13871881692,"id":653,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912854,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":29758,"timestamp":13871886467,"id":655,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912859,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":50525,"timestamp":13871913993,"id":657,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912886,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":260219,"timestamp":13871745009,"id":642,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912717,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":12,"timestamp":13872005347,"id":658,"parentId":642,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1296224256","memory.heapUsed":"255282368","memory.heapTotal":"311685120"},"startTime":1772105912978,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":187524,"timestamp":13871823561,"id":646,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912796,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":13872011177,"id":661,"parentId":646,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1296224256","memory.heapUsed":"255527720","memory.heapTotal":"311685120"},"startTime":1772105912984,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2460,"timestamp":13872009739,"id":660,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105912982,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":218688,"timestamp":13871825831,"id":649,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912798,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":13872044626,"id":662,"parentId":649,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1296224256","memory.heapUsed":"258072480","memory.heapTotal":"311685120"},"startTime":1772105913017,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":168903,"timestamp":13871880913,"id":652,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912853,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":11,"timestamp":13872049949,"id":663,"parentId":652,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1296224256","memory.heapUsed":"258293200","memory.heapTotal":"311685120"},"startTime":1772105913022,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":169572,"timestamp":13871885470,"id":654,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912858,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":11,"timestamp":13872055234,"id":666,"parentId":654,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1296224256","memory.heapUsed":"258444104","memory.heapTotal":"311685120"},"startTime":1772105913028,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":6847,"timestamp":13872051900,"id":665,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913024,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":178564,"timestamp":13871913577,"id":656,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912886,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":13872092233,"id":669,"parentId":656,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1297272832","memory.heapUsed":"261161696","memory.heapTotal":"311685120"},"startTime":1772105913065,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":36096,"timestamp":13872057226,"id":668,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913030,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":3161,"timestamp":13872118793,"id":671,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913091,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":28127,"timestamp":13872121114,"id":673,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913094,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":24467,"timestamp":13872147322,"id":675,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913120,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":184036,"timestamp":13872008893,"id":659,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105912981,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":13872193024,"id":676,"parentId":659,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1303040000","memory.heapUsed":"261688192","memory.heapTotal":"311685120"},"startTime":1772105913166,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":145274,"timestamp":13872051218,"id":664,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913024,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":13872196563,"id":679,"parentId":664,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1303302144","memory.heapUsed":"261937288","memory.heapTotal":"311685120"},"startTime":1772105913169,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1902,"timestamp":13872195545,"id":678,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913168,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":164490,"timestamp":13872056183,"id":667,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913029,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":13872220750,"id":680,"parentId":667,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1305661440","memory.heapUsed":"264489856","memory.heapTotal":"311685120"},"startTime":1772105913193,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":105561,"timestamp":13872118349,"id":670,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913091,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":13872223985,"id":681,"parentId":670,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1305792512","memory.heapUsed":"264706616","memory.heapTotal":"311685120"},"startTime":1772105913196,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2231,"timestamp":13872224754,"id":683,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913197,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":135687,"timestamp":13872120621,"id":672,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913093,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":13872256394,"id":686,"parentId":672,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1305546752","memory.heapUsed":"267494072","memory.heapTotal":"311685120"},"startTime":1772105913229,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":31217,"timestamp":13872226291,"id":685,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913199,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":139075,"timestamp":13872146828,"id":674,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913119,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":15,"timestamp":13872286182,"id":687,"parentId":674,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1307906048","memory.heapUsed":"260187200","memory.heapTotal":"311685120"},"startTime":1772105913259,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":2461,"timestamp":13872287308,"id":689,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913260,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1896,"timestamp":13872324622,"id":691,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1772105913297,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":166333,"timestamp":13872195135,"id":677,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913168,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":8,"timestamp":13872361595,"id":692,"parentId":677,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1307906048","memory.heapUsed":"265578392","memory.heapTotal":"311685120"},"startTime":1772105913334,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":140143,"timestamp":13872224332,"id":682,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913197,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":13872364606,"id":693,"parentId":682,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1307906048","memory.heapUsed":"265656728","memory.heapTotal":"311685120"},"startTime":1772105913337,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":140300,"timestamp":13872225670,"id":684,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913198,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":9,"timestamp":13872366090,"id":694,"parentId":684,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1307906048","memory.heapUsed":"265705920","memory.heapTotal":"311685120"},"startTime":1772105913339,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":80817,"timestamp":13872286829,"id":688,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913259,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":10,"timestamp":13872367765,"id":695,"parentId":688,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1307906048","memory.heapUsed":"265755600","memory.heapTotal":"311685120"},"startTime":1772105913340,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":46914,"timestamp":13872323532,"id":690,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1772105913296,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":11,"timestamp":13872370567,"id":696,"parentId":690,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1307906048","memory.heapUsed":"265805392","memory.heapTotal":"311685120"},"startTime":1772105913343,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":195000,"timestamp":13891551044,"id":697,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1772105932778,"traceId":"da317052deb23f8c"},{"name":"client-hmr-latency","duration":144000,"timestamp":14499925622,"id":698,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1772106541075,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":142827,"timestamp":15179774961,"id":701,"tags":{"trigger":"/login"},"startTime":1772107220747,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":288644,"timestamp":15179774478,"id":699,"tags":{"url":"/login"},"startTime":1772107220747,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":15180063222,"id":702,"parentId":699,"tags":{"url":"/login","memory.rss":"1335394304","memory.heapUsed":"255987432","memory.heapTotal":"264404992"},"startTime":1772107221036,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":98154,"timestamp":15252936320,"id":705,"tags":{"trigger":"/register"},"startTime":1772107293909,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":156075,"timestamp":15252935324,"id":703,"tags":{"url":"/register"},"startTime":1772107293908,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":6,"timestamp":15253091480,"id":706,"parentId":703,"tags":{"url":"/register","memory.rss":"1368018944","memory.heapUsed":"253099144","memory.heapTotal":"262553600"},"startTime":1772107294064,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":44469,"timestamp":15286487743,"id":709,"tags":{"trigger":"/api/auth/register"},"startTime":1772107327460,"traceId":"da317052deb23f8c"}] -[{"name":"handle-request","duration":194206,"timestamp":15286487388,"id":707,"tags":{"url":"/api/auth/register"},"startTime":1772107327460,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":15286681667,"id":710,"parentId":707,"tags":{"url":"/api/auth/register","memory.rss":"1384022016","memory.heapUsed":"263657448","memory.heapTotal":"270905344"},"startTime":1772107327654,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1400,"timestamp":15322701726,"id":712,"parentId":3,"tags":{"inputPage":"/api/auth/register/route"},"startTime":1772107363674,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":1212945,"timestamp":15322700151,"id":711,"tags":{"url":"/api/auth/register"},"startTime":1772107363673,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":7,"timestamp":15323913219,"id":713,"parentId":711,"tags":{"url":"/api/auth/register","memory.rss":"1383559168","memory.heapUsed":"264134088","memory.heapTotal":"271691776"},"startTime":1772107364886,"traceId":"da317052deb23f8c"},{"name":"ensure-page","duration":1371,"timestamp":15329044134,"id":715,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772107370017,"traceId":"da317052deb23f8c"},{"name":"handle-request","duration":23371,"timestamp":15329043468,"id":714,"tags":{"url":"/login?_rsc=1x908"},"startTime":1772107370016,"traceId":"da317052deb23f8c"},{"name":"memory-usage","duration":5,"timestamp":15329066913,"id":716,"parentId":714,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1402826752","memory.heapUsed":"264646128","memory.heapTotal":"272740352"},"startTime":1772107370039,"traceId":"da317052deb23f8c"},{"name":"compile-path","duration":832126,"timestamp":15356443144,"id":719,"tags":{"trigger":"/verify-email"},"startTime":1772107397416,"traceId":"da317052deb23f8c"}] -[{"name":"hot-reloader","duration":71,"timestamp":15461621581,"id":3,"tags":{"version":"16.1.6"},"startTime":1772107502594,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":67137,"timestamp":15461873496,"id":4,"tags":{"trigger":"proxy"},"startTime":1772107502846,"traceId":"b77b0683d1c39420"}] -[{"name":"setup-dev-bundler","duration":577692,"timestamp":15461459373,"id":2,"parentId":1,"tags":{},"startTime":1772107502432,"traceId":"b77b0683d1c39420"},{"name":"start-dev-server","duration":1298688,"timestamp":15460889352,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7869939712","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"444686336","memory.heapTotal":"89853952","memory.heapUsed":"66163512"},"startTime":1772107501862,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":145713,"timestamp":15462236103,"id":9,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772107503209,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":453427,"timestamp":15462233990,"id":7,"tags":{"trigger":"/login"},"startTime":1772107503206,"traceId":"b77b0683d1c39420"}] -[{"name":"handle-request","duration":778227,"timestamp":15462227305,"id":5,"tags":{"url":"/login"},"startTime":1772107503200,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":14,"timestamp":15463005711,"id":10,"parentId":5,"tags":{"url":"/login","memory.rss":"622624768","memory.heapUsed":"92616192","memory.heapTotal":"124403712"},"startTime":1772107503978,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":771684,"timestamp":15462235371,"id":8,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59"},"startTime":1772107503208,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":7,"timestamp":15463007189,"id":11,"parentId":8,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59","memory.rss":"622624768","memory.heapUsed":"92686872","memory.heapTotal":"124403712"},"startTime":1772107503980,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":1849,"timestamp":15463443760,"id":12,"parentId":3,"tags":{"inputPage":"/api/auth/verify-email"},"startTime":1772107504416,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":289,"timestamp":15463445709,"id":13,"parentId":3,"tags":{"inputPage":"/api/auth/verify-email"},"startTime":1772107504418,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":474,"timestamp":15463449885,"id":14,"parentId":3,"tags":{"inputPage":"/api/auth/verify-email"},"startTime":1772107504422,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":605,"timestamp":15463450457,"id":15,"parentId":3,"tags":{"inputPage":"/api/auth/verify-email"},"startTime":1772107504423,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":39981,"timestamp":15463456502,"id":18,"tags":{"trigger":"/_not-found/page"},"startTime":1772107504429,"traceId":"b77b0683d1c39420"}] -[{"name":"ensure-page","duration":1889,"timestamp":15463497911,"id":19,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1772107504470,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":172562,"timestamp":15463452680,"id":16,"tags":{"url":"/api/auth/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59"},"startTime":1772107504425,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":10,"timestamp":15463625365,"id":20,"parentId":16,"tags":{"url":"/api/auth/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59","memory.rss":"714571776","memory.heapUsed":"108842872","memory.heapTotal":"136765440"},"startTime":1772107504598,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":662,"timestamp":16088591558,"id":23,"tags":{"trigger":"proxy"},"startTime":1772108129564,"traceId":"b77b0683d1c39420"}] -[{"name":"ensure-page","duration":480219,"timestamp":16088572704,"id":22,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108129545,"traceId":"b77b0683d1c39420"},{"name":"client-hmr-latency","duration":133000,"timestamp":16088523610,"id":24,"parentId":3,"tags":{"updatedModules":[],"page":"/verify-email","isPageHidden":true},"startTime":1772108130078,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":551839,"timestamp":16088558777,"id":21,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108129531,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":8,"timestamp":16089110765,"id":25,"parentId":21,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"731779072","memory.heapUsed":"106181352","memory.heapTotal":"114008064"},"startTime":1772108130083,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":4934,"timestamp":16089120339,"id":27,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130093,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":43868,"timestamp":16089123769,"id":29,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130096,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":30010,"timestamp":16089166356,"id":31,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130139,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":31281,"timestamp":16089194982,"id":33,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130167,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":26584,"timestamp":16089224818,"id":35,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130197,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":23073,"timestamp":16089249959,"id":37,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130222,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":188085,"timestamp":16089118946,"id":26,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130091,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":7,"timestamp":16089307116,"id":38,"parentId":26,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"732835840","memory.heapUsed":"104487032","memory.heapTotal":"114929664"},"startTime":1772108130280,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":186250,"timestamp":16089122735,"id":28,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130095,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":8,"timestamp":16089309080,"id":39,"parentId":28,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"732966912","memory.heapUsed":"104626456","memory.heapTotal":"114929664"},"startTime":1772108130282,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":145834,"timestamp":16089164694,"id":30,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130137,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":6,"timestamp":16089310604,"id":40,"parentId":30,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"732966912","memory.heapUsed":"104703640","memory.heapTotal":"114929664"},"startTime":1772108130283,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":118032,"timestamp":16089194389,"id":32,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130167,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":7,"timestamp":16089312507,"id":41,"parentId":32,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"732966912","memory.heapUsed":"104813096","memory.heapTotal":"115191808"},"startTime":1772108130285,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":90725,"timestamp":16089224112,"id":34,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130197,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":57,"timestamp":16089315477,"id":42,"parentId":34,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"733097984","memory.heapUsed":"104957256","memory.heapTotal":"115191808"},"startTime":1772108130288,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":67819,"timestamp":16089249378,"id":36,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130222,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":10,"timestamp":16089317315,"id":43,"parentId":36,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"733097984","memory.heapUsed":"105036032","memory.heapTotal":"115191808"},"startTime":1772108130290,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":7313,"timestamp":16089327281,"id":45,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130300,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":30945,"timestamp":16089328346,"id":47,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130301,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":49090,"timestamp":16089329475,"id":49,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130302,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":67466,"timestamp":16089330621,"id":51,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130303,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":87671,"timestamp":16089332232,"id":53,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130305,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":107997,"timestamp":16089333749,"id":55,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130306,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":145129,"timestamp":16089326463,"id":44,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130299,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":10,"timestamp":16089471722,"id":56,"parentId":44,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"743190528","memory.heapUsed":"112082112","memory.heapTotal":"126406656"},"startTime":1772108130444,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":144986,"timestamp":16089328873,"id":48,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130301,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":9,"timestamp":16089473959,"id":57,"parentId":48,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"743321600","memory.heapUsed":"112158592","memory.heapTotal":"126406656"},"startTime":1772108130446,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":147323,"timestamp":16089327733,"id":46,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130300,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":8,"timestamp":16089475143,"id":58,"parentId":46,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"743321600","memory.heapUsed":"112200528","memory.heapTotal":"126406656"},"startTime":1772108130448,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":145221,"timestamp":16089331229,"id":52,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130304,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":10,"timestamp":16089476550,"id":59,"parentId":52,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"743452672","memory.heapUsed":"112253360","memory.heapTotal":"126406656"},"startTime":1772108130449,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":147562,"timestamp":16089329934,"id":50,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130302,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":8,"timestamp":16089477578,"id":60,"parentId":50,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"743452672","memory.heapUsed":"112294888","memory.heapTotal":"126406656"},"startTime":1772108130450,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":149491,"timestamp":16089333217,"id":54,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130306,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":20,"timestamp":16089483062,"id":61,"parentId":54,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"743714816","memory.heapUsed":"112554016","memory.heapTotal":"126406656"},"startTime":1772108130456,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":6837,"timestamp":16089489585,"id":63,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130462,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":34574,"timestamp":16089491128,"id":65,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130464,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":52616,"timestamp":16089492345,"id":67,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130465,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":72599,"timestamp":16089495043,"id":69,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130468,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":96388,"timestamp":16089495758,"id":71,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130468,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":3541,"timestamp":16089617097,"id":73,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130590,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":164883,"timestamp":16089488752,"id":62,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130461,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":13,"timestamp":16089653806,"id":74,"parentId":62,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"750530560","memory.heapUsed":"116173152","memory.heapTotal":"130600960"},"startTime":1772108130626,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":163818,"timestamp":16089491696,"id":66,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130464,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":10,"timestamp":16089655608,"id":75,"parentId":66,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"750530560","memory.heapUsed":"116220416","memory.heapTotal":"130600960"},"startTime":1772108130628,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":166241,"timestamp":16089490343,"id":64,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130463,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":8,"timestamp":16089656663,"id":76,"parentId":64,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"750530560","memory.heapUsed":"116264808","memory.heapTotal":"130600960"},"startTime":1772108130629,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":162937,"timestamp":16089494587,"id":68,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130467,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":7,"timestamp":16089657598,"id":77,"parentId":68,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"750530560","memory.heapUsed":"116307752","memory.heapTotal":"130600960"},"startTime":1772108130630,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":166684,"timestamp":16089495366,"id":70,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130468,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":14,"timestamp":16089662187,"id":78,"parentId":70,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"750661632","memory.heapUsed":"116585896","memory.heapTotal":"130600960"},"startTime":1772108130635,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":55069,"timestamp":16089616522,"id":72,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130589,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":10,"timestamp":16089671688,"id":85,"parentId":72,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"750661632","memory.heapUsed":"117101904","memory.heapTotal":"130600960"},"startTime":1772108130644,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":9280,"timestamp":16089664602,"id":80,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130637,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":34165,"timestamp":16089666215,"id":82,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130639,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":59926,"timestamp":16089667263,"id":84,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130640,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":76866,"timestamp":16089672694,"id":87,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130645,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":25339,"timestamp":16089747468,"id":89,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130720,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":1524,"timestamp":16089792163,"id":91,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130765,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":152083,"timestamp":16089665593,"id":81,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130638,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":16,"timestamp":16089817871,"id":92,"parentId":81,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"757346304","memory.heapUsed":"125543192","memory.heapTotal":"150261760"},"startTime":1772108130790,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":155154,"timestamp":16089663981,"id":79,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130636,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":17,"timestamp":16089819332,"id":93,"parentId":79,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"757477376","memory.heapUsed":"125583472","memory.heapTotal":"150261760"},"startTime":1772108130792,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":154202,"timestamp":16089666665,"id":83,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130639,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":8,"timestamp":16089820942,"id":94,"parentId":83,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"757477376","memory.heapUsed":"125623936","memory.heapTotal":"150261760"},"startTime":1772108130793,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":150965,"timestamp":16089672052,"id":86,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130645,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":9,"timestamp":16089823108,"id":95,"parentId":86,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"757608448","memory.heapUsed":"125744688","memory.heapTotal":"150261760"},"startTime":1772108130796,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":79646,"timestamp":16089746909,"id":88,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130719,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":7,"timestamp":16089826632,"id":96,"parentId":88,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"758657024","memory.heapUsed":"126865656","memory.heapTotal":"151187456"},"startTime":1772108130799,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":6333,"timestamp":16089828501,"id":98,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130801,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":25683,"timestamp":16089829662,"id":100,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130802,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":44758,"timestamp":16089830413,"id":102,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130803,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":106278,"timestamp":16089791541,"id":90,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130764,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":22,"timestamp":16089898024,"id":105,"parentId":90,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"765341696","memory.heapUsed":"121987768","memory.heapTotal":"154071040"},"startTime":1772108130871,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":67823,"timestamp":16089833549,"id":104,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130806,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":31650,"timestamp":16089899834,"id":107,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1772108130872,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":143174,"timestamp":16089830010,"id":101,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130802,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":7,"timestamp":16089973254,"id":108,"parentId":101,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"766996480","memory.heapUsed":"111308040","memory.heapTotal":"155643904"},"startTime":1772108130946,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":144665,"timestamp":16089829135,"id":99,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130802,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":6,"timestamp":16089973855,"id":109,"parentId":99,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"766996480","memory.heapUsed":"111349688","memory.heapTotal":"155643904"},"startTime":1772108130946,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":146469,"timestamp":16089828091,"id":97,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130801,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":6,"timestamp":16089974614,"id":110,"parentId":97,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"766996480","memory.heapUsed":"111395144","memory.heapTotal":"155643904"},"startTime":1772108130947,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":142216,"timestamp":16089833110,"id":103,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130806,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":6,"timestamp":16089975381,"id":111,"parentId":103,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"766996480","memory.heapUsed":"111439224","memory.heapTotal":"155643904"},"startTime":1772108130948,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":76847,"timestamp":16089899139,"id":106,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw"},"startTime":1772108130872,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":5,"timestamp":16089976053,"id":112,"parentId":106,"tags":{"url":"/verify-email?token=0790a15016705b39d309559fb5469c25d52912ba65868b435d3a008e8e427e59&_rsc=mqfnw","memory.rss":"766996480","memory.heapUsed":"111481384","memory.heapTotal":"155643904"},"startTime":1772108130949,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":8647,"timestamp":17230678810,"id":115,"tags":{"trigger":"/"},"startTime":1772109271651,"traceId":"b77b0683d1c39420"}] -[{"name":"handle-request","duration":157168,"timestamp":17230677705,"id":113,"tags":{"url":"/"},"startTime":1772109271650,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":35,"timestamp":17230834984,"id":116,"parentId":113,"tags":{"url":"/","memory.rss":"779476992","memory.heapUsed":"108121016","memory.heapTotal":"118534144"},"startTime":1772109271807,"traceId":"b77b0683d1c39420"},{"name":"ensure-page","duration":10728,"timestamp":17235150073,"id":118,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772109276123,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":133347,"timestamp":17235149472,"id":117,"tags":{"url":"/login"},"startTime":1772109276122,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":9,"timestamp":17235282905,"id":119,"parentId":117,"tags":{"url":"/login","memory.rss":"814313472","memory.heapUsed":"112614888","memory.heapTotal":"134836224"},"startTime":1772109276255,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":40637,"timestamp":17237002336,"id":122,"tags":{"trigger":"/register"},"startTime":1772109277975,"traceId":"b77b0683d1c39420"}] -[{"name":"handle-request","duration":79010,"timestamp":17236999579,"id":120,"tags":{"url":"/register?_rsc=5c339"},"startTime":1772109277972,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":9,"timestamp":17237078694,"id":123,"parentId":120,"tags":{"url":"/register?_rsc=5c339","memory.rss":"833187840","memory.heapUsed":"117777840","memory.heapTotal":"136093696"},"startTime":1772109278051,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":6649,"timestamp":17256365055,"id":126,"tags":{"trigger":"/api/auth/register"},"startTime":1772109297338,"traceId":"b77b0683d1c39420"}] -[{"name":"handle-request","duration":125487,"timestamp":17256364408,"id":124,"tags":{"url":"/api/auth/register"},"startTime":1772109297337,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":7,"timestamp":17256489979,"id":127,"parentId":124,"tags":{"url":"/api/auth/register","memory.rss":"827830272","memory.heapUsed":"117375776","memory.heapTotal":"126214144"},"startTime":1772109297462,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":13039,"timestamp":17860539884,"id":130,"tags":{"trigger":"/login"},"startTime":1772109901512,"traceId":"b77b0683d1c39420"}] -[{"name":"ensure-page","duration":1014,"timestamp":17860716171,"id":132,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772109901689,"traceId":"b77b0683d1c39420"},{"name":"handle-request","duration":632261,"timestamp":17860715771,"id":131,"tags":{"url":"/login"},"startTime":1772109901688,"traceId":"b77b0683d1c39420"},{"name":"memory-usage","duration":5,"timestamp":17861348154,"id":133,"parentId":131,"tags":{"url":"/login","memory.rss":"1085698048","memory.heapUsed":"169048968","memory.heapTotal":"202936320"},"startTime":1772109902321,"traceId":"b77b0683d1c39420"},{"name":"compile-path","duration":17796,"timestamp":18053081795,"id":136,"tags":{"trigger":"/login"},"startTime":1772110094054,"traceId":"b77b0683d1c39420"}] -[{"name":"hot-reloader","duration":70,"timestamp":18211775113,"id":3,"tags":{"version":"16.1.6"},"startTime":1772110252748,"traceId":"2337737abd39778b"},{"name":"compile-path","duration":32637,"timestamp":18211886580,"id":4,"tags":{"trigger":"proxy"},"startTime":1772110252859,"traceId":"2337737abd39778b"}] -[{"name":"setup-dev-bundler","duration":297910,"timestamp":18211696421,"id":2,"parentId":1,"tags":{},"startTime":1772110252669,"traceId":"2337737abd39778b"},{"name":"start-dev-server","duration":816724,"timestamp":18211282476,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7862075392","memory.totalMem":"16408383488","memory.heapSizeLimit":"8254390272","memory.rss":"417316864","memory.heapTotal":"89853952","memory.heapUsed":"65905264"},"startTime":1772110252255,"traceId":"2337737abd39778b"},{"name":"compile-path","duration":104038,"timestamp":18212156795,"id":7,"tags":{"trigger":"/login"},"startTime":1772110253129,"traceId":"2337737abd39778b"}] -[{"name":"handle-request","duration":609206,"timestamp":18212150219,"id":5,"tags":{"url":"/login"},"startTime":1772110253123,"traceId":"2337737abd39778b"},{"name":"memory-usage","duration":12,"timestamp":18212759646,"id":8,"parentId":5,"tags":{"url":"/login","memory.rss":"560902144","memory.heapUsed":"94707632","memory.heapTotal":"118837248"},"startTime":1772110253732,"traceId":"2337737abd39778b"},{"name":"ensure-page","duration":1050,"timestamp":18217275359,"id":10,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1772110258248,"traceId":"2337737abd39778b"},{"name":"handle-request","duration":50353,"timestamp":18217274702,"id":9,"tags":{"url":"/login"},"startTime":1772110258247,"traceId":"2337737abd39778b"},{"name":"memory-usage","duration":10,"timestamp":18217325183,"id":11,"parentId":9,"tags":{"url":"/login","memory.rss":"649461760","memory.heapUsed":"97345832","memory.heapTotal":"122851328"},"startTime":1772110258298,"traceId":"2337737abd39778b"},{"name":"client-hmr-latency","duration":834000,"timestamp":18400379303,"id":12,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772110442242,"traceId":"2337737abd39778b"},{"name":"client-hmr-latency","duration":70000,"timestamp":18407824643,"id":13,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1772110448896,"traceId":"2337737abd39778b"},{"name":"compile-path","duration":14530,"timestamp":18416407403,"id":16,"tags":{"trigger":"/register"},"startTime":1772110457380,"traceId":"2337737abd39778b"}] -[{"name":"hot-reloader","duration":118,"timestamp":5099596648,"id":3,"tags":{"version":"16.1.6"},"startTime":1772789218069,"traceId":"945d7e896693c5ba"},{"name":"compile-path","duration":197467,"timestamp":5099978507,"id":4,"tags":{"trigger":"proxy"},"startTime":1772789218451,"traceId":"945d7e896693c5ba"}] -[{"name":"setup-dev-bundler","duration":911175,"timestamp":5099417406,"id":2,"parentId":1,"tags":{},"startTime":1772789217890,"traceId":"945d7e896693c5ba"},{"name":"start-dev-server","duration":2192084,"timestamp":5098349208,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"5660237824","memory.totalMem":"16408379392","memory.heapSizeLimit":"8254390272","memory.rss":"403853312","memory.heapTotal":"89591808","memory.heapUsed":"65735376"},"startTime":1772789216822,"traceId":"945d7e896693c5ba"},{"name":"compile-path","duration":421614,"timestamp":5104540115,"id":7,"tags":{"trigger":"/"},"startTime":1772789223013,"traceId":"945d7e896693c5ba"}] -[{"name":"handle-request","duration":1264058,"timestamp":5104529026,"id":5,"tags":{"url":"/"},"startTime":1772789223002,"traceId":"945d7e896693c5ba"},{"name":"memory-usage","duration":20,"timestamp":5105793327,"id":8,"parentId":5,"tags":{"url":"/","memory.rss":"557150208","memory.heapUsed":"81331384","memory.heapTotal":"120332288"},"startTime":1772789224266,"traceId":"945d7e896693c5ba"},{"name":"compile-path","duration":52421,"timestamp":5110298411,"id":11,"tags":{"trigger":"/login"},"startTime":1772789228771,"traceId":"945d7e896693c5ba"}] -[{"name":"hot-reloader","duration":86,"timestamp":160795448415,"id":3,"tags":{"version":"16.1.6"},"startTime":1774537492549,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":171530,"timestamp":160795835259,"id":4,"tags":{"trigger":"proxy"},"startTime":1774537492936,"traceId":"7ac956ef30b58d2f"}] -[{"name":"setup-dev-bundler","duration":770491,"timestamp":160795323223,"id":2,"parentId":1,"tags":{},"startTime":1774537492424,"traceId":"7ac956ef30b58d2f"},{"name":"start-dev-server","duration":1561526,"timestamp":160794717291,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6513594368","memory.totalMem":"16408375296","memory.heapSizeLimit":"8254390272","memory.rss":"453308416","memory.heapTotal":"89329664","memory.heapUsed":"64652664"},"startTime":1774537491819,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":1783141,"timestamp":160800065402,"id":7,"tags":{"trigger":"/"},"startTime":1774537497166,"traceId":"7ac956ef30b58d2f"}] -[{"name":"compile-path","duration":215770,"timestamp":160801861571,"id":9,"tags":{"trigger":"/_error"},"startTime":1774537498963,"traceId":"7ac956ef30b58d2f"}] -[{"name":"handle-request","duration":2337561,"timestamp":160800047923,"id":5,"tags":{"url":"/"},"startTime":1774537497149,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":27,"timestamp":160802385822,"id":10,"parentId":5,"tags":{"url":"/","memory.rss":"962584576","memory.heapUsed":"82247176","memory.heapTotal":"107257856"},"startTime":1774537499487,"traceId":"7ac956ef30b58d2f"},{"name":"navigation-to-hydration","duration":2857000,"timestamp":160799875747,"id":11,"parentId":3,"tags":{"pathname":"/","query":""},"startTime":1774537499840,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":327,"timestamp":160802739482,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537499840,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":424,"timestamp":160802739873,"id":13,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537499841,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":247,"timestamp":160802740928,"id":14,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537499842,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":170,"timestamp":160802741225,"id":15,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537499842,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":389559,"timestamp":160824805724,"id":18,"tags":{"trigger":"/login"},"startTime":1774537521907,"traceId":"7ac956ef30b58d2f"}] -[{"name":"ensure-page","duration":2007,"timestamp":160825198327,"id":19,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1774537522299,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":414335,"timestamp":160824803360,"id":16,"tags":{"url":"/login"},"startTime":1774537521904,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":6,"timestamp":160825217839,"id":20,"parentId":16,"tags":{"url":"/login","memory.rss":"1091219456","memory.heapUsed":"72219232","memory.heapTotal":"76193792"},"startTime":1774537522319,"traceId":"7ac956ef30b58d2f"},{"name":"navigation-to-hydration","duration":748000,"timestamp":160824776084,"id":21,"parentId":3,"tags":{"pathname":"/login","query":""},"startTime":1774537522625,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":1587,"timestamp":160864088817,"id":24,"tags":{"trigger":"proxy"},"startTime":1774537561190,"traceId":"7ac956ef30b58d2f"}] -[{"name":"ensure-page","duration":59286,"timestamp":160864070946,"id":23,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774537561172,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":6782,"timestamp":160864132121,"id":25,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1774537561233,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":83255,"timestamp":160864067560,"id":22,"tags":{"url":"/login"},"startTime":1774537561169,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":7,"timestamp":160864150907,"id":26,"parentId":22,"tags":{"url":"/login","memory.rss":"1120243712","memory.heapUsed":"73228112","memory.heapTotal":"75931648"},"startTime":1774537561252,"traceId":"7ac956ef30b58d2f"},{"name":"navigation-to-hydration","duration":545000,"timestamp":160864044226,"id":27,"parentId":3,"tags":{"pathname":"/login","query":""},"startTime":1774537561707,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":241,"timestamp":160864609735,"id":28,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537561711,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":299,"timestamp":160864610051,"id":29,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537561711,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":184,"timestamp":160864610727,"id":30,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537561712,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":237,"timestamp":160864610954,"id":31,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537561712,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":374,"timestamp":160868510494,"id":32,"tags":{"trigger":"proxy"},"startTime":1774537565611,"traceId":"7ac956ef30b58d2f"}] -[{"name":"ensure-page","duration":27682,"timestamp":160868539136,"id":34,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774537565640,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":4847,"timestamp":160868567761,"id":35,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1774537565669,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":52683,"timestamp":160868538079,"id":33,"tags":{"url":"/login"},"startTime":1774537565639,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":25,"timestamp":160868591082,"id":36,"parentId":33,"tags":{"url":"/login","memory.rss":"1124048896","memory.heapUsed":"73950064","memory.heapTotal":"76718080"},"startTime":1774537565692,"traceId":"7ac956ef30b58d2f"},{"name":"navigation-to-hydration","duration":493000,"timestamp":160868521630,"id":37,"parentId":3,"tags":{"pathname":"/login","query":""},"startTime":1774537566124,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":252,"timestamp":160869029520,"id":38,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537566130,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":234,"timestamp":160869029852,"id":39,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537566131,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":463,"timestamp":160869031439,"id":40,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537566132,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":300,"timestamp":160869031971,"id":41,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537566133,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":500,"timestamp":160871270603,"id":42,"tags":{"trigger":"proxy"},"startTime":1774537568372,"traceId":"7ac956ef30b58d2f"}] -[{"name":"ensure-page","duration":36136,"timestamp":160871301833,"id":44,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774537568403,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":3092,"timestamp":160871343018,"id":45,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1774537568444,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":65599,"timestamp":160871300255,"id":43,"tags":{"url":"/login"},"startTime":1774537568401,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":11,"timestamp":160871365964,"id":46,"parentId":43,"tags":{"url":"/login","memory.rss":"1146200064","memory.heapUsed":"74959208","memory.heapTotal":"80388096"},"startTime":1774537568467,"traceId":"7ac956ef30b58d2f"},{"name":"navigation-to-hydration","duration":543000,"timestamp":160871282457,"id":47,"parentId":3,"tags":{"pathname":"/login","query":""},"startTime":1774537568935,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":277,"timestamp":160871844274,"id":48,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537568945,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":205,"timestamp":160871844608,"id":49,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537568946,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":463,"timestamp":160871847364,"id":50,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537568948,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":231,"timestamp":160871847889,"id":51,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537568949,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":31365,"timestamp":161229091133,"id":54,"tags":{"trigger":"/login"},"startTime":1774537926192,"traceId":"7ac956ef30b58d2f"}] -[{"name":"handle-request","duration":631255,"timestamp":161229089658,"id":52,"tags":{"url":"/login"},"startTime":1774537926191,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":26,"timestamp":161229721503,"id":55,"parentId":52,"tags":{"url":"/login","memory.rss":"1166594048","memory.heapUsed":"104613856","memory.heapTotal":"123322368"},"startTime":1774537926822,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1203,"timestamp":161229920231,"id":56,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537927021,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":409,"timestamp":161229921554,"id":57,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537927023,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":547,"timestamp":161229923710,"id":58,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774537927025,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":807,"timestamp":161229924369,"id":59,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774537927025,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":341692,"timestamp":161314943510,"id":62,"tags":{"trigger":"/forgot-password"},"startTime":1774538012044,"traceId":"7ac956ef30b58d2f"}] -[{"name":"handle-request","duration":419774,"timestamp":161314940883,"id":60,"tags":{"url":"/forgot-password"},"startTime":1774538012042,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":8,"timestamp":161315360785,"id":63,"parentId":60,"tags":{"url":"/forgot-password","memory.rss":"1169973248","memory.heapUsed":"93903424","memory.heapTotal":"100753408"},"startTime":1774538012462,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":314,"timestamp":161315567932,"id":64,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538012669,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":198,"timestamp":161315568299,"id":65,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538012669,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":233,"timestamp":161315569038,"id":66,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538012670,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":198,"timestamp":161315569313,"id":67,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538012670,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":759,"timestamp":161319934736,"id":69,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774538017036,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":58788,"timestamp":161319934128,"id":68,"tags":{"url":"/login"},"startTime":1774538017035,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":12,"timestamp":161319993058,"id":70,"parentId":68,"tags":{"url":"/login","memory.rss":"1260277760","memory.heapUsed":"97472456","memory.heapTotal":"104136704"},"startTime":1774538017094,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":256,"timestamp":161320230619,"id":71,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538017332,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":217,"timestamp":161320230923,"id":72,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538017332,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":178,"timestamp":161320231644,"id":73,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538017333,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":168,"timestamp":161320231856,"id":74,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538017333,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1975,"timestamp":161329565562,"id":76,"parentId":3,"tags":{"inputPage":"/forgot-password/page"},"startTime":1774538026667,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":53591,"timestamp":161329564308,"id":75,"tags":{"url":"/forgot-password"},"startTime":1774538026665,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":12,"timestamp":161329618078,"id":77,"parentId":75,"tags":{"url":"/forgot-password","memory.rss":"1215442944","memory.heapUsed":"97725816","memory.heapTotal":"105435136"},"startTime":1774538026719,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":218,"timestamp":161329811806,"id":78,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538026913,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":167,"timestamp":161329812086,"id":79,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538026913,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":150,"timestamp":161329812679,"id":80,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538026914,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":126,"timestamp":161329812860,"id":81,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538026914,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1833,"timestamp":161411425370,"id":83,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774538108526,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":57590,"timestamp":161411423865,"id":82,"tags":{"url":"/login"},"startTime":1774538108525,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":12,"timestamp":161411481624,"id":84,"parentId":82,"tags":{"url":"/login","memory.rss":"1215090688","memory.heapUsed":"100142352","memory.heapTotal":"104886272"},"startTime":1774538108583,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":240,"timestamp":161411672359,"id":85,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538108773,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":184,"timestamp":161411672646,"id":86,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538108774,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":208,"timestamp":161411673346,"id":87,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538108774,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":166,"timestamp":161411673593,"id":88,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538108775,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":363724,"timestamp":161414410618,"id":91,"tags":{"trigger":"/register"},"startTime":1774538111512,"traceId":"7ac956ef30b58d2f"}] -[{"name":"handle-request","duration":432693,"timestamp":161414409412,"id":89,"tags":{"url":"/register"},"startTime":1774538111510,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":16,"timestamp":161414842302,"id":92,"parentId":89,"tags":{"url":"/register","memory.rss":"1321877504","memory.heapUsed":"103757784","memory.heapTotal":"111063040"},"startTime":1774538111943,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":337,"timestamp":161415070010,"id":93,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538112171,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":236,"timestamp":161415070408,"id":94,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538112171,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":267,"timestamp":161415071316,"id":95,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538112172,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":230,"timestamp":161415071638,"id":96,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538112173,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":305608,"timestamp":161457409469,"id":99,"tags":{"trigger":"/reset-password"},"startTime":1774538154510,"traceId":"7ac956ef30b58d2f"}] -[{"name":"handle-request","duration":377357,"timestamp":161457408427,"id":97,"tags":{"url":"/reset-password?token=c750f07b5515c41093e9c048567c0d81c7d98a8c8a44e39b088dd7271a28c3eb"},"startTime":1774538154509,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":11,"timestamp":161457785887,"id":100,"parentId":97,"tags":{"url":"/reset-password?token=c750f07b5515c41093e9c048567c0d81c7d98a8c8a44e39b088dd7271a28c3eb","memory.rss":"1270104064","memory.heapUsed":"102269272","memory.heapTotal":"110505984"},"startTime":1774538154887,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":331,"timestamp":161457929588,"id":101,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538155031,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":558,"timestamp":161457929983,"id":102,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538155031,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":237,"timestamp":161457931703,"id":103,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538155033,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":178,"timestamp":161457931989,"id":104,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538155033,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":3058,"timestamp":161473763339,"id":106,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774538170864,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":35950,"timestamp":161473761275,"id":105,"tags":{"url":"/login?_rsc=vo50g"},"startTime":1774538170862,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":8,"timestamp":161473797328,"id":107,"parentId":105,"tags":{"url":"/login?_rsc=vo50g","memory.rss":"1292451840","memory.heapUsed":"104364360","memory.heapTotal":"110743552"},"startTime":1774538170898,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":2129,"timestamp":161490203588,"id":109,"parentId":3,"tags":{"inputPage":"/forgot-password/page"},"startTime":1774538187305,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":70896,"timestamp":161490203030,"id":108,"tags":{"url":"/forgot-password"},"startTime":1774538187304,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":12,"timestamp":161490274061,"id":110,"parentId":108,"tags":{"url":"/forgot-password","memory.rss":"1280299008","memory.heapUsed":"105762296","memory.heapTotal":"111267840"},"startTime":1774538187375,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":285,"timestamp":161490523688,"id":111,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538187625,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":149,"timestamp":161490524036,"id":112,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538187625,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":152,"timestamp":161490524674,"id":113,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538187626,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":210,"timestamp":161490524858,"id":114,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538187626,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1769,"timestamp":161500448957,"id":116,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774538197550,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":72675,"timestamp":161500448124,"id":115,"tags":{"url":"/login"},"startTime":1774538197549,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":9,"timestamp":161500520900,"id":117,"parentId":115,"tags":{"url":"/login","memory.rss":"1290506240","memory.heapUsed":"98124824","memory.heapTotal":"102461440"},"startTime":1774538197622,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":334,"timestamp":161500734390,"id":118,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538197835,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":329,"timestamp":161500734924,"id":119,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538197836,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":230,"timestamp":161500735912,"id":120,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538197837,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":166,"timestamp":161500736186,"id":121,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538197837,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1236,"timestamp":161548862303,"id":123,"parentId":3,"tags":{"inputPage":"/reset-password/page"},"startTime":1774538245963,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":52712,"timestamp":161548861599,"id":122,"tags":{"url":"/reset-password?token=fc9f54513b7fc3d021337fe236f3e33afd70ad0e6f859c6aec65abcc491af09c"},"startTime":1774538245963,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":9,"timestamp":161548914403,"id":124,"parentId":122,"tags":{"url":"/reset-password?token=fc9f54513b7fc3d021337fe236f3e33afd70ad0e6f859c6aec65abcc491af09c","memory.rss":"1292824576","memory.heapUsed":"100789096","memory.heapTotal":"104009728"},"startTime":1774538246015,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":281,"timestamp":161549049773,"id":125,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538246151,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":227,"timestamp":161549050106,"id":126,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538246151,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":275,"timestamp":161549050979,"id":127,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774538246152,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":175,"timestamp":161549051300,"id":128,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774538246152,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":4991,"timestamp":161578732948,"id":130,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774538275834,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":44442,"timestamp":161578731539,"id":129,"tags":{"url":"/login?_rsc=vo50g"},"startTime":1774538275833,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":7,"timestamp":161578776076,"id":131,"parentId":129,"tags":{"url":"/login?_rsc=vo50g","memory.rss":"1293930496","memory.heapUsed":"102592176","memory.heapTotal":"107098112"},"startTime":1774538275877,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1265,"timestamp":164399646251,"id":132,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774541096747,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":927,"timestamp":164399648639,"id":134,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774541096750,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1053,"timestamp":164399652659,"id":135,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774541096754,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":63348,"timestamp":164399647649,"id":133,"tags":{"url":"/dashboard"},"startTime":1774541096749,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1478,"timestamp":164399719771,"id":137,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774541096821,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":73624,"timestamp":164399718492,"id":136,"tags":{"url":"/login"},"startTime":1774541096819,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":8,"timestamp":164399792209,"id":138,"parentId":136,"tags":{"url":"/login","memory.rss":"1182404608","memory.heapUsed":"104518360","memory.heapTotal":"111603712"},"startTime":1774541096893,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":519,"timestamp":164400029173,"id":139,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541097130,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1075,"timestamp":164400029810,"id":140,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541097131,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":317,"timestamp":164400032250,"id":141,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541097133,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":245,"timestamp":164400032628,"id":142,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541097134,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":484429,"timestamp":164404447422,"id":145,"tags":{"trigger":"/admin"},"startTime":1774541101548,"traceId":"7ac956ef30b58d2f"}] -[{"name":"ensure-page","duration":2515,"timestamp":164404934658,"id":146,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1774541102036,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":513569,"timestamp":164404446758,"id":143,"tags":{"url":"/admin"},"startTime":1774541101548,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":8,"timestamp":164404960419,"id":147,"parentId":143,"tags":{"url":"/admin","memory.rss":"1293815808","memory.heapUsed":"106489064","memory.heapTotal":"114987008"},"startTime":1774541102061,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":192,"timestamp":164405300550,"id":148,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541102402,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":147,"timestamp":164405300783,"id":149,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541102402,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":174,"timestamp":164405301446,"id":150,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541102402,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":139,"timestamp":164405301653,"id":151,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541102403,"traceId":"7ac956ef30b58d2f"},{"name":"navigation-to-hydration","duration":911000,"timestamp":164404396415,"id":152,"parentId":3,"tags":{"pathname":"/admin","query":""},"startTime":1774541102408,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":3186,"timestamp":164486012146,"id":154,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774541183113,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":51369,"timestamp":164486014145,"id":157,"tags":{"trigger":"/admin"},"startTime":1774541183115,"traceId":"7ac956ef30b58d2f"}] -[{"name":"client-hmr-latency","duration":71000,"timestamp":164485923127,"id":158,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1774541183323,"traceId":"7ac956ef30b58d2f"},{"name":"client-hmr-latency","duration":70000,"timestamp":164485923401,"id":159,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1774541183323,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":437462,"timestamp":164486011204,"id":153,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1774541183112,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":8,"timestamp":164486448795,"id":160,"parentId":153,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1320669184","memory.heapUsed":"120725768","memory.heapTotal":"141529088"},"startTime":1774541183550,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":440578,"timestamp":164486013239,"id":155,"tags":{"url":"/admin"},"startTime":1774541183114,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":8,"timestamp":164486453904,"id":163,"parentId":155,"tags":{"url":"/admin","memory.rss":"1320800256","memory.heapUsed":"120980856","memory.heapTotal":"141529088"},"startTime":1774541183555,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":2387,"timestamp":164486452155,"id":162,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774541183553,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":41170,"timestamp":164486451521,"id":161,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1774541183553,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":11,"timestamp":164486492806,"id":164,"parentId":161,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1322897408","memory.heapUsed":"123293808","memory.heapTotal":"141529088"},"startTime":1774541183594,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":256,"timestamp":164486656156,"id":165,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541183757,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":157,"timestamp":164486656460,"id":166,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541183757,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":234,"timestamp":164486657283,"id":167,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541183758,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":174,"timestamp":164486657566,"id":168,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541183759,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":208,"timestamp":164486862926,"id":169,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541183964,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":126,"timestamp":164486863173,"id":170,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541183964,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":145,"timestamp":164486863667,"id":171,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541183965,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":130,"timestamp":164486863841,"id":172,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541183965,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":330005,"timestamp":164486866749,"id":175,"tags":{"trigger":"/_not-found/page"},"startTime":1774541183968,"traceId":"7ac956ef30b58d2f"}] -[{"name":"ensure-page","duration":8424,"timestamp":164487197843,"id":176,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541184299,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":333757,"timestamp":164492627220,"id":179,"tags":{"trigger":"/admin/users"},"startTime":1774541189728,"traceId":"7ac956ef30b58d2f"}] -[{"name":"handle-request","duration":365144,"timestamp":164492626738,"id":177,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1774541189728,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":8,"timestamp":164492991969,"id":180,"parentId":177,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"1498087424","memory.heapUsed":"129569360","memory.heapTotal":"164429824"},"startTime":1774541190093,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1831,"timestamp":164496720708,"id":182,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774541193822,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":98020,"timestamp":164496719848,"id":181,"tags":{"url":"/admin/users"},"startTime":1774541193821,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":9,"timestamp":164496817951,"id":183,"parentId":181,"tags":{"url":"/admin/users","memory.rss":"1573412864","memory.heapUsed":"126610648","memory.heapTotal":"138428416"},"startTime":1774541193919,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":356,"timestamp":164497014412,"id":184,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541194115,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":281,"timestamp":164497014835,"id":185,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541194116,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":322,"timestamp":164497015892,"id":186,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541194117,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":247,"timestamp":164497016270,"id":187,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541194117,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":170,"timestamp":164497282112,"id":188,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541194383,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":122,"timestamp":164497282316,"id":189,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541194383,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":170,"timestamp":164497282934,"id":190,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541194384,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":145,"timestamp":164497283136,"id":191,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541194384,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":3902,"timestamp":164497283841,"id":193,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541194385,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":4389,"timestamp":164497287985,"id":194,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541194389,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":178,"timestamp":164599401927,"id":195,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541296503,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":113,"timestamp":164599402139,"id":196,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541296503,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":137,"timestamp":164599402670,"id":197,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541296504,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":115,"timestamp":164599402836,"id":198,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541296504,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":2828,"timestamp":164599403403,"id":200,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541296504,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":2272,"timestamp":164599406369,"id":201,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541296507,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":809,"timestamp":164600271963,"id":202,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774541297373,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":624,"timestamp":164600272928,"id":203,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774541297374,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":540,"timestamp":164600275183,"id":204,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774541297376,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":439,"timestamp":164600275836,"id":205,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774541297377,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":8175,"timestamp":164600278028,"id":207,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541297379,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":4852,"timestamp":164600286607,"id":208,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541297388,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":3132,"timestamp":164600350045,"id":210,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774541297451,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":35644,"timestamp":164600349091,"id":209,"tags":{"url":"/login?_rsc=wkrq7"},"startTime":1774541297450,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":9,"timestamp":164600384846,"id":211,"parentId":209,"tags":{"url":"/login?_rsc=wkrq7","memory.rss":"1440804864","memory.heapUsed":"132291304","memory.heapTotal":"139919360"},"startTime":1774541297486,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":115202,"timestamp":164600276737,"id":206,"tags":{"url":"/api/auth/logout"},"startTime":1774541297378,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":14,"timestamp":164600392153,"id":212,"parentId":206,"tags":{"url":"/api/auth/logout","memory.rss":"1440804864","memory.heapUsed":"132366184","memory.heapTotal":"139919360"},"startTime":1774541297493,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":10287,"timestamp":164600415256,"id":214,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774541297516,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":92891,"timestamp":164600414406,"id":213,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774541297515,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":13,"timestamp":164600507433,"id":215,"parentId":213,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1439268864","memory.heapUsed":"128867744","memory.heapTotal":"141230080"},"startTime":1774541297608,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":901,"timestamp":164606393826,"id":216,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774541303495,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":893,"timestamp":164606395315,"id":218,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774541303496,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":792,"timestamp":164606397071,"id":219,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774541303498,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":15694,"timestamp":164606394830,"id":217,"tags":{"url":"/dashboard"},"startTime":1774541303496,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1397,"timestamp":164606416633,"id":221,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774541303518,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":62587,"timestamp":164606416018,"id":220,"tags":{"url":"/login"},"startTime":1774541303517,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":9,"timestamp":164606478706,"id":222,"parentId":220,"tags":{"url":"/login","memory.rss":"1457516544","memory.heapUsed":"130782784","memory.heapTotal":"142516224"},"startTime":1774541303580,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":621,"timestamp":164606690044,"id":223,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541303791,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":408,"timestamp":164606690777,"id":224,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541303792,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":356,"timestamp":164606692411,"id":225,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541303793,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":302,"timestamp":164606692839,"id":226,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541303794,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":2584,"timestamp":164609978375,"id":228,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774541307079,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":81328,"timestamp":164609977987,"id":227,"tags":{"url":"/admin"},"startTime":1774541307079,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":9,"timestamp":164610059400,"id":229,"parentId":227,"tags":{"url":"/admin","memory.rss":"1446858752","memory.heapUsed":"136282520","memory.heapTotal":"148226048"},"startTime":1774541307160,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":291,"timestamp":164610298611,"id":230,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541307400,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":225,"timestamp":164610298958,"id":231,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541307400,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":424,"timestamp":164610299767,"id":232,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541307401,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":238,"timestamp":164610300247,"id":233,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541307401,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":189,"timestamp":164610452130,"id":234,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541307553,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":287,"timestamp":164610452361,"id":235,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541307553,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":290,"timestamp":164610453617,"id":236,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541307555,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":212,"timestamp":164610453959,"id":237,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541307555,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":3672,"timestamp":164610455044,"id":239,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541307556,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":2473,"timestamp":164610458870,"id":240,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541307560,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1902,"timestamp":164614793796,"id":242,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774541311895,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":25407,"timestamp":164614793055,"id":241,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1774541311894,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":12,"timestamp":164614818556,"id":243,"parentId":241,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"1459785728","memory.heapUsed":"130775728","memory.heapTotal":"147521536"},"startTime":1774541311920,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":184,"timestamp":164616551321,"id":244,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541313652,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":129,"timestamp":164616551548,"id":245,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541313653,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":134,"timestamp":164616552062,"id":246,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541313653,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":128,"timestamp":164616552295,"id":247,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774541313653,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":3064,"timestamp":164616552902,"id":249,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541313654,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1271,"timestamp":164616556132,"id":250,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774541313657,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":5924,"timestamp":164642609226,"id":252,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774541339710,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":57941,"timestamp":164642608407,"id":251,"tags":{"url":"/register"},"startTime":1774541339709,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":11,"timestamp":164642666463,"id":253,"parentId":251,"tags":{"url":"/register","memory.rss":"1444249600","memory.heapUsed":"139224768","memory.heapTotal":"158711808"},"startTime":1774541339767,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":633,"timestamp":164642900462,"id":254,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541340001,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":388,"timestamp":164642901224,"id":255,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541340002,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":228,"timestamp":164642902529,"id":256,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541340004,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":164,"timestamp":164642902805,"id":257,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541340004,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":1439,"timestamp":164647090870,"id":259,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774541344192,"traceId":"7ac956ef30b58d2f"},{"name":"handle-request","duration":48903,"timestamp":164647090449,"id":258,"tags":{"url":"/login"},"startTime":1774541344191,"traceId":"7ac956ef30b58d2f"},{"name":"memory-usage","duration":11,"timestamp":164647139463,"id":260,"parentId":258,"tags":{"url":"/login","memory.rss":"1464827904","memory.heapUsed":"136733928","memory.heapTotal":"143245312"},"startTime":1774541344240,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":235,"timestamp":164647311338,"id":261,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541344412,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":176,"timestamp":164647311623,"id":262,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541344413,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":196,"timestamp":164647312341,"id":263,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774541344413,"traceId":"7ac956ef30b58d2f"},{"name":"ensure-page","duration":153,"timestamp":164647312577,"id":264,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774541344414,"traceId":"7ac956ef30b58d2f"},{"name":"compile-path","duration":5455,"timestamp":164649845519,"id":267,"tags":{"trigger":"/"},"startTime":1774541346946,"traceId":"7ac956ef30b58d2f"}] -[{"name":"hot-reloader","duration":60,"timestamp":166244593825,"id":3,"tags":{"version":"16.1.6"},"startTime":1774542941695,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":31141,"timestamp":166244763011,"id":4,"tags":{"trigger":"proxy"},"startTime":1774542941864,"traceId":"0849047be6eba3ab"}] -[{"name":"setup-dev-bundler","duration":406914,"timestamp":166244468561,"id":2,"parentId":1,"tags":{},"startTime":1774542941570,"traceId":"0849047be6eba3ab"},{"name":"start-dev-server","duration":959285,"timestamp":166244019687,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6100598784","memory.totalMem":"16408375296","memory.heapSizeLimit":"8254390272","memory.rss":"468017152","memory.heapTotal":"89591808","memory.heapUsed":"65319416"},"startTime":1774542941121,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":124937,"timestamp":166247732795,"id":7,"tags":{"trigger":"/login"},"startTime":1774542944834,"traceId":"0849047be6eba3ab"}] -[{"name":"handle-request","duration":547416,"timestamp":166247726180,"id":5,"tags":{"url":"/login"},"startTime":1774542944827,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":10,"timestamp":166248273755,"id":8,"parentId":5,"tags":{"url":"/login","memory.rss":"613023744","memory.heapUsed":"86359352","memory.heapTotal":"113852416"},"startTime":1774542945375,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1552,"timestamp":166248623798,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774542945725,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":202,"timestamp":166248625450,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774542945726,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":461,"timestamp":166248626849,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774542945728,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":730,"timestamp":166248627405,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774542945728,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":135517,"timestamp":166321435901,"id":15,"tags":{"trigger":"/admin"},"startTime":1774543018537,"traceId":"0849047be6eba3ab"}] -[{"name":"handle-request","duration":189595,"timestamp":166321433997,"id":13,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774543018535,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":9,"timestamp":166321623710,"id":16,"parentId":13,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"769179648","memory.heapUsed":"83620696","memory.heapTotal":"89169920"},"startTime":1774543018725,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":330,"timestamp":166321734855,"id":17,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543018836,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":278,"timestamp":166321735252,"id":18,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543018836,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":491,"timestamp":166321736156,"id":19,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543018837,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":265,"timestamp":166321736718,"id":20,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543018838,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":15113,"timestamp":166321739911,"id":23,"tags":{"trigger":"/_not-found/page"},"startTime":1774543018841,"traceId":"0849047be6eba3ab"}] -[{"name":"ensure-page","duration":3665,"timestamp":166321756150,"id":24,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543018857,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":153781,"timestamp":166321737749,"id":21,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774543018839,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":7,"timestamp":166321891640,"id":25,"parentId":21,"tags":{"url":"/avatars/admin.jpg","memory.rss":"783601664","memory.heapUsed":"90952272","memory.heapTotal":"97439744"},"startTime":1774543018993,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":268,"timestamp":166321903777,"id":26,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543019005,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":194,"timestamp":166321904115,"id":27,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543019005,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":306,"timestamp":166321906409,"id":28,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543019007,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":164,"timestamp":166321906763,"id":29,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543019008,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":273,"timestamp":166321908238,"id":30,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543019009,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":159,"timestamp":166321908548,"id":31,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543019010,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":184,"timestamp":166321909322,"id":32,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543019010,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":143,"timestamp":166321909539,"id":33,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543019011,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3416,"timestamp":166321910348,"id":35,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543019011,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3821,"timestamp":166321914079,"id":36,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543019015,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":308,"timestamp":166327632248,"id":37,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543024733,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":247,"timestamp":166327632612,"id":38,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543024734,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":278,"timestamp":166327633547,"id":39,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543024735,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":270,"timestamp":166327633874,"id":40,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543024735,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2907,"timestamp":166327635362,"id":42,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543024736,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2417,"timestamp":166327638404,"id":43,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543024739,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":683,"timestamp":166328605395,"id":44,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774543025706,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":504,"timestamp":166328606223,"id":45,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774543025707,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":575,"timestamp":166328608362,"id":46,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774543025709,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":492,"timestamp":166328609098,"id":47,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774543025710,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":10042,"timestamp":166328611622,"id":49,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543025713,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5981,"timestamp":166328622100,"id":50,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543025723,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1055,"timestamp":166328675446,"id":52,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774543025776,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":87301,"timestamp":166328610151,"id":48,"tags":{"url":"/api/auth/logout"},"startTime":1774543025711,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":10,"timestamp":166328697575,"id":53,"parentId":48,"tags":{"url":"/api/auth/logout","memory.rss":"856346624","memory.heapUsed":"97308864","memory.heapTotal":"104697856"},"startTime":1774543025799,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":25026,"timestamp":166328674379,"id":51,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774543025775,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":7,"timestamp":166328699491,"id":54,"parentId":51,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"856346624","memory.heapUsed":"97364264","memory.heapTotal":"104697856"},"startTime":1774543025800,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":780,"timestamp":166328704863,"id":56,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774543025806,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":26182,"timestamp":166328704079,"id":55,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774543025805,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":9,"timestamp":166328730385,"id":57,"parentId":55,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"857526272","memory.heapUsed":"97975872","memory.heapTotal":"105484288"},"startTime":1774543025831,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1166,"timestamp":166334165374,"id":58,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774543031266,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":952,"timestamp":166334167927,"id":60,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774543031269,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":784,"timestamp":166334170829,"id":61,"parentId":3,"tags":{"inputPage":"/src/proxy"},"startTime":1774543031272,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":53880,"timestamp":166334166689,"id":59,"tags":{"url":"/dashboard"},"startTime":1774543031268,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":373946,"timestamp":166334222010,"id":64,"tags":{"trigger":"/dashboard"},"startTime":1774543031323,"traceId":"0849047be6eba3ab"}] -[{"name":"handle-request","duration":468317,"timestamp":166334221529,"id":62,"tags":{"url":"/dashboard"},"startTime":1774543031323,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":8,"timestamp":166334689984,"id":65,"parentId":62,"tags":{"url":"/dashboard","memory.rss":"990007296","memory.heapUsed":"99862696","memory.heapTotal":"116654080"},"startTime":1774543031791,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":330,"timestamp":166334809277,"id":66,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774543031910,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":250,"timestamp":166334809660,"id":67,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774543031911,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":264,"timestamp":166334810563,"id":68,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774543031912,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":243,"timestamp":166334810871,"id":69,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774543031912,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1451,"timestamp":166340517967,"id":71,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774543037619,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":170443,"timestamp":166340517041,"id":70,"tags":{"url":"/admin"},"startTime":1774543037618,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":14,"timestamp":166340687603,"id":72,"parentId":70,"tags":{"url":"/admin","memory.rss":"1085079552","memory.heapUsed":"112465192","memory.heapTotal":"132132864"},"startTime":1774543037789,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":198,"timestamp":166340825610,"id":73,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774543037927,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":129,"timestamp":166340825843,"id":74,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774543037927,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":138,"timestamp":166340826341,"id":75,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774543037927,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":112,"timestamp":166340826505,"id":76,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774543037927,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":182,"timestamp":166341002089,"id":77,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543038103,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":123,"timestamp":166341002304,"id":78,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543038103,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":174,"timestamp":166341002888,"id":79,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543038104,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":119,"timestamp":166341003092,"id":80,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543038104,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2654,"timestamp":166341003987,"id":82,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543038105,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1999,"timestamp":166341006856,"id":83,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543038108,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":39069,"timestamp":166341003496,"id":81,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774543038104,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":7,"timestamp":166341042654,"id":84,"parentId":81,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1088094208","memory.heapUsed":"112048328","memory.heapTotal":"133201920"},"startTime":1774543038144,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":178,"timestamp":166346183799,"id":85,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543043285,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":143,"timestamp":166346184023,"id":86,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543043285,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":153,"timestamp":166346184535,"id":87,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543043286,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":130,"timestamp":166346184716,"id":88,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543043286,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2945,"timestamp":166346185348,"id":90,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543043286,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2037,"timestamp":166346188426,"id":91,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543043289,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":372,"timestamp":166347803203,"id":92,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774543044904,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":291,"timestamp":166347803649,"id":93,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774543044905,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":368,"timestamp":166347804792,"id":94,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774543044906,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":295,"timestamp":166347805224,"id":95,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774543044906,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":4408,"timestamp":166347806566,"id":97,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543044908,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":4163,"timestamp":166347811315,"id":98,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543044912,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":58124,"timestamp":166347805803,"id":96,"tags":{"url":"/api/auth/logout"},"startTime":1774543044907,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":7,"timestamp":166347864019,"id":99,"parentId":96,"tags":{"url":"/api/auth/logout","memory.rss":"1097400320","memory.heapUsed":"110225752","memory.heapTotal":"134455296"},"startTime":1774543044965,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2265,"timestamp":166347865106,"id":101,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774543044966,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":19482,"timestamp":166347864445,"id":100,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774543044965,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":8,"timestamp":166347884012,"id":102,"parentId":100,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"1097662464","memory.heapUsed":"112192832","memory.heapTotal":"134717440"},"startTime":1774543044985,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1594,"timestamp":166347897846,"id":104,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774543044999,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":24273,"timestamp":166347897087,"id":103,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774543044998,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":7,"timestamp":166347921432,"id":105,"parentId":103,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1098579968","memory.heapUsed":"115018728","memory.heapTotal":"135241728"},"startTime":1774543045022,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1213,"timestamp":166357772294,"id":107,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774543054873,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":20936,"timestamp":166357771621,"id":106,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774543054873,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":6,"timestamp":166357792619,"id":108,"parentId":106,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1011183616","memory.heapUsed":"98083136","memory.heapTotal":"103428096"},"startTime":1774543054894,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":204,"timestamp":166357838454,"id":109,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054939,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":194,"timestamp":166357838699,"id":110,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054940,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":287,"timestamp":166357839401,"id":111,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054940,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":189,"timestamp":166357839722,"id":112,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054941,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3543,"timestamp":166357840651,"id":114,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543054942,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3262,"timestamp":166357844555,"id":115,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543054946,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":49644,"timestamp":166357840101,"id":113,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774543054941,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":7,"timestamp":166357889820,"id":116,"parentId":113,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1006002176","memory.heapUsed":"99678448","memory.heapTotal":"103690240"},"startTime":1774543054991,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":224,"timestamp":166357893276,"id":117,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054994,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":176,"timestamp":166357893553,"id":118,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054995,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":178,"timestamp":166357894359,"id":119,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054995,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":136,"timestamp":166357894571,"id":120,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054996,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":163,"timestamp":166357894967,"id":121,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054996,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":132,"timestamp":166357895160,"id":122,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054996,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":160,"timestamp":166357895574,"id":123,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054997,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":132,"timestamp":166357895763,"id":124,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543054997,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2587,"timestamp":166357896486,"id":126,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543054997,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2966,"timestamp":166357899416,"id":127,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543055000,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":190,"timestamp":166360230899,"id":128,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543057332,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":121,"timestamp":166360231120,"id":129,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543057332,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":148,"timestamp":166360231750,"id":130,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543057333,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":128,"timestamp":166360231925,"id":131,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774543057333,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2517,"timestamp":166360232537,"id":133,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543057334,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2198,"timestamp":166360235178,"id":134,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774543057336,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":14227,"timestamp":166368225024,"id":137,"tags":{"trigger":"/admin/users"},"startTime":1774543065326,"traceId":"0849047be6eba3ab"}] -[{"name":"handle-request","duration":50323,"timestamp":166368224346,"id":135,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774543065325,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":8,"timestamp":166368274775,"id":138,"parentId":135,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1004003328","memory.heapUsed":"105293016","memory.heapTotal":"109117440"},"startTime":1774543065376,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2712,"timestamp":167484406872,"id":140,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774544181508,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":33386,"timestamp":167484405369,"id":139,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774544181506,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":8,"timestamp":167484438841,"id":141,"parentId":139,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"985751552","memory.heapUsed":"106109264","memory.heapTotal":"109060096"},"startTime":1774544181540,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":184,"timestamp":167486996197,"id":142,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774544184097,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":130,"timestamp":167486996415,"id":143,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774544184097,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":152,"timestamp":167486996913,"id":144,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774544184098,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":117,"timestamp":167486997092,"id":145,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774544184098,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5616,"timestamp":167486997780,"id":147,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774544184099,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3154,"timestamp":167487003897,"id":148,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774544184105,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":648,"timestamp":167487930664,"id":149,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774544185032,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":479,"timestamp":167487931432,"id":150,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774544185032,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":597,"timestamp":167487933476,"id":151,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774544185034,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":453,"timestamp":167487934193,"id":152,"parentId":3,"tags":{"inputPage":"/api/auth/logout"},"startTime":1774544185035,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":8554,"timestamp":167487936367,"id":154,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774544185037,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":7871,"timestamp":167487945407,"id":155,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774544185046,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1106,"timestamp":167487996318,"id":157,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774544185097,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":80184,"timestamp":167487935111,"id":153,"tags":{"url":"/api/auth/logout"},"startTime":1774544185036,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":8,"timestamp":167488015380,"id":158,"parentId":153,"tags":{"url":"/api/auth/logout","memory.rss":"986341376","memory.heapUsed":"106560536","memory.heapTotal":"113229824"},"startTime":1774544185116,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":21195,"timestamp":167487995862,"id":156,"tags":{"url":"/login?_rsc=3jpne"},"startTime":1774544185097,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":11,"timestamp":167488017218,"id":159,"parentId":156,"tags":{"url":"/login?_rsc=3jpne","memory.rss":"986341376","memory.heapUsed":"106617648","memory.heapTotal":"113229824"},"startTime":1774544185118,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":910,"timestamp":167488022687,"id":161,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774544185124,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":21838,"timestamp":167488021873,"id":160,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774544185123,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":7,"timestamp":167488043779,"id":162,"parentId":160,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"986472448","memory.heapUsed":"106594040","memory.heapTotal":"117948416"},"startTime":1774544185145,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":1522,"timestamp":167500551613,"id":164,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774544197653,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":84115,"timestamp":167500551044,"id":163,"tags":{"url":"/admin"},"startTime":1774544197652,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":8,"timestamp":167500635244,"id":165,"parentId":163,"tags":{"url":"/admin","memory.rss":"970182656","memory.heapUsed":"108380808","memory.heapTotal":"112181248"},"startTime":1774544197736,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":223,"timestamp":167500793816,"id":166,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774544197895,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":124,"timestamp":167500794074,"id":167,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774544197895,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":140,"timestamp":167500794554,"id":168,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774544197896,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":103,"timestamp":167500794722,"id":169,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774544197896,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":190,"timestamp":167500981712,"id":170,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774544198083,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":221,"timestamp":167500981940,"id":171,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774544198083,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":283,"timestamp":167500983054,"id":172,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774544198084,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":150,"timestamp":167500983373,"id":173,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774544198084,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":6282,"timestamp":167500984179,"id":175,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774544198085,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5934,"timestamp":167500990902,"id":176,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774544198092,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":4777,"timestamp":167502473443,"id":178,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774544199574,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":44640,"timestamp":167502471882,"id":177,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1774544199573,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":8,"timestamp":167502516609,"id":179,"parentId":177,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"969641984","memory.heapUsed":"104973200","memory.heapTotal":"116113408"},"startTime":1774544199618,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":308,"timestamp":170768739440,"id":180,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774547465840,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":261,"timestamp":170768739803,"id":181,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774547465841,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":289,"timestamp":170768740805,"id":182,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774547465842,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":226,"timestamp":170768741151,"id":183,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774547465842,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3591,"timestamp":170768742174,"id":185,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774547465843,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":4303,"timestamp":170768745976,"id":186,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774547465847,"traceId":"0849047be6eba3ab"},{"name":"client-hmr-latency","duration":1329000,"timestamp":178120095105,"id":187,"parentId":3,"tags":{"updatedModules":["[project]/src/components/nav-user.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774554818601,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":376,"timestamp":179756607855,"id":188,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556453709,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":218,"timestamp":179756608289,"id":189,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556453709,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":744,"timestamp":179756609137,"id":190,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556453710,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":233,"timestamp":179756609949,"id":191,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556453711,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":15926,"timestamp":179756611102,"id":193,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556453712,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5242,"timestamp":179756627288,"id":194,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556453728,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":27040,"timestamp":179757991856,"id":196,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774556455093,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":103711,"timestamp":179757989369,"id":195,"tags":{"url":"/login?_rsc=wkrq7"},"startTime":1774556455090,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":26,"timestamp":179758093343,"id":197,"parentId":195,"tags":{"url":"/login?_rsc=wkrq7","memory.rss":"870088704","memory.heapUsed":"110758304","memory.heapTotal":"114483200"},"startTime":1774556455194,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":9349,"timestamp":179758161595,"id":199,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774556455263,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":163292,"timestamp":179758158442,"id":198,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774556455259,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":9,"timestamp":179758321832,"id":200,"parentId":198,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"869515264","memory.heapUsed":"104230408","memory.heapTotal":"117972992"},"startTime":1774556455423,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":54414,"timestamp":179763798442,"id":202,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774556460899,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":699704,"timestamp":179763796250,"id":201,"tags":{"url":"/admin"},"startTime":1774556460897,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":11,"timestamp":179764496069,"id":203,"parentId":201,"tags":{"url":"/admin","memory.rss":"887152640","memory.heapUsed":"117982304","memory.heapTotal":"142454784"},"startTime":1774556461597,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":311,"timestamp":179764729408,"id":204,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556461830,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":209,"timestamp":179764729776,"id":205,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556461831,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":230,"timestamp":179764730653,"id":206,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556461832,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":264,"timestamp":179764730937,"id":207,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556461832,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":320,"timestamp":179765037924,"id":208,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556462139,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":228,"timestamp":179765038300,"id":209,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556462139,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":431,"timestamp":179765039271,"id":210,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556462140,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":385,"timestamp":179765039788,"id":211,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556462141,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5303,"timestamp":179765042118,"id":213,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556462143,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3163,"timestamp":179765047660,"id":214,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556462149,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":299,"timestamp":179767032901,"id":215,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556464134,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":223,"timestamp":179767033255,"id":216,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556464134,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":250,"timestamp":179767034207,"id":217,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556464135,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":208,"timestamp":179767034505,"id":218,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556464135,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3674,"timestamp":179767035460,"id":220,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556464136,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3652,"timestamp":179767039416,"id":221,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556464140,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":747079,"timestamp":179770031417,"id":224,"tags":{"trigger":"/admin/clubs"},"startTime":1774556467132,"traceId":"0849047be6eba3ab"}] -[{"name":"handle-request","duration":826831,"timestamp":179770029236,"id":222,"tags":{"url":"/admin/clubs?_rsc=1szk4"},"startTime":1774556467130,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":15,"timestamp":179770856220,"id":225,"parentId":222,"tags":{"url":"/admin/clubs?_rsc=1szk4","memory.rss":"925036544","memory.heapUsed":"120598672","memory.heapTotal":"160669696"},"startTime":1774556467957,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":29275,"timestamp":179772118953,"id":227,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556469220,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":233758,"timestamp":179772117616,"id":226,"tags":{"url":"/admin/users?_rsc=1o40w"},"startTime":1774556469219,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":9,"timestamp":179772351470,"id":228,"parentId":226,"tags":{"url":"/admin/users?_rsc=1o40w","memory.rss":"934998016","memory.heapUsed":"134412312","memory.heapTotal":"166658048"},"startTime":1774556469452,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":13329,"timestamp":179917458855,"id":229,"tags":{"trigger":"proxy"},"startTime":1774556614560,"traceId":"0849047be6eba3ab"}] -[{"name":"ensure-page","duration":58440,"timestamp":179933435520,"id":231,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630537,"traceId":"0849047be6eba3ab"},{"name":"client-hmr-latency","duration":273000,"timestamp":179933240716,"id":232,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1774556630649,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":116954,"timestamp":179933434518,"id":230,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630535,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":179933551609,"id":233,"parentId":230,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"924057600","memory.heapUsed":"117774568","memory.heapTotal":"122736640"},"startTime":1774556630653,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5374,"timestamp":179933557981,"id":235,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630659,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":44425,"timestamp":179933561631,"id":237,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630663,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":38914,"timestamp":179933603918,"id":239,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630705,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":37776,"timestamp":179933641202,"id":241,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630742,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":34325,"timestamp":179933677166,"id":243,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630778,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":30978,"timestamp":179933710204,"id":245,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630811,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":219301,"timestamp":179933557210,"id":234,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630658,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":10,"timestamp":179933776615,"id":246,"parentId":234,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"930480128","memory.heapUsed":"124588208","memory.heapTotal":"132673536"},"startTime":1774556630878,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":221603,"timestamp":179933560717,"id":236,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630662,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":9,"timestamp":179933782415,"id":247,"parentId":236,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"931004416","memory.heapUsed":"122333736","memory.heapTotal":"133722112"},"startTime":1774556630883,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":180245,"timestamp":179933603314,"id":238,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630704,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":9,"timestamp":179933783645,"id":248,"parentId":238,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"931004416","memory.heapUsed":"122378232","memory.heapTotal":"133722112"},"startTime":1774556630885,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":145861,"timestamp":179933640496,"id":240,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630741,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":179933786478,"id":251,"parentId":240,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"931135488","memory.heapUsed":"122511584","memory.heapTotal":"133722112"},"startTime":1774556630887,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":2957,"timestamp":179933784615,"id":250,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630886,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":148018,"timestamp":179933676496,"id":242,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630777,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":179933824645,"id":252,"parentId":242,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"932839424","memory.heapUsed":"125401536","memory.heapTotal":"133722112"},"startTime":1774556630926,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":124536,"timestamp":179933709325,"id":244,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630810,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":11,"timestamp":179933833978,"id":257,"parentId":244,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"933494784","memory.heapUsed":"123311448","memory.heapTotal":"134246400"},"startTime":1774556630935,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":10427,"timestamp":179933826342,"id":254,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630927,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":49680,"timestamp":179933827966,"id":256,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630929,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":93351,"timestamp":179933835379,"id":259,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556630936,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5714,"timestamp":179933987958,"id":261,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631089,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":3596,"timestamp":179934068398,"id":263,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631169,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":342289,"timestamp":179933784040,"id":249,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630885,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":15,"timestamp":179934126527,"id":264,"parentId":249,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"937852928","memory.heapUsed":"122845528","memory.heapTotal":"146960384"},"startTime":1774556631228,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":308207,"timestamp":179933827095,"id":255,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630928,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":10,"timestamp":179934135406,"id":265,"parentId":255,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"937852928","memory.heapUsed":"123010520","memory.heapTotal":"146960384"},"startTime":1774556631236,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":315629,"timestamp":179933825421,"id":253,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630926,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":179934141194,"id":268,"parentId":253,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"937984000","memory.heapUsed":"123150952","memory.heapTotal":"146960384"},"startTime":1774556631242,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":6859,"timestamp":179934136790,"id":267,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631238,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":357246,"timestamp":179933834457,"id":258,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556630935,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":14,"timestamp":179934191841,"id":269,"parentId":258,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"939163648","memory.heapUsed":"125693512","memory.heapTotal":"146960384"},"startTime":1774556631293,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":215902,"timestamp":179933986980,"id":260,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631088,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":11,"timestamp":179934202985,"id":272,"parentId":260,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"939425792","memory.heapUsed":"126004072","memory.heapTotal":"146960384"},"startTime":1774556631304,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":8310,"timestamp":179934201223,"id":271,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631302,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":209011,"timestamp":179934067706,"id":262,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631169,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":179934276843,"id":277,"parentId":262,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"941916160","memory.heapUsed":"122476400","memory.heapTotal":"146960384"},"startTime":1774556631378,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":73011,"timestamp":179934205296,"id":274,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631306,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":138507,"timestamp":179934208048,"id":276,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631309,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":8018,"timestamp":179934411614,"id":279,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631513,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":80442,"timestamp":179934417461,"id":281,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631518,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":419888,"timestamp":179934135897,"id":266,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631237,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":11,"timestamp":179934555907,"id":282,"parentId":266,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"947814400","memory.heapUsed":"127927592","memory.heapTotal":"147427328"},"startTime":1774556631657,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":365096,"timestamp":179934200387,"id":270,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631301,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":14,"timestamp":179934565624,"id":285,"parentId":270,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"947167232","memory.heapUsed":"128185152","memory.heapTotal":"147427328"},"startTime":1774556631667,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":4014,"timestamp":179934563124,"id":284,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631664,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":426267,"timestamp":179934204408,"id":273,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631305,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":179934630794,"id":286,"parentId":273,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"947167232","memory.heapUsed":"130662896","memory.heapTotal":"147427328"},"startTime":1774556631732,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":444205,"timestamp":179934206903,"id":275,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631308,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":19,"timestamp":179934651320,"id":287,"parentId":275,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"947167232","memory.heapUsed":"126502112","memory.heapTotal":"147427328"},"startTime":1774556631752,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":11780,"timestamp":179934659445,"id":289,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631760,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":334607,"timestamp":179934410681,"id":278,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631512,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":17,"timestamp":179934745489,"id":292,"parentId":278,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"948346880","memory.heapUsed":"129397480","memory.heapTotal":"147427328"},"startTime":1774556631846,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":80480,"timestamp":179934669095,"id":291,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631770,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":372987,"timestamp":179934415512,"id":280,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631516,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":179934788634,"id":295,"parentId":280,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"948346880","memory.heapUsed":"131993320","memory.heapTotal":"147427328"},"startTime":1774556631890,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":43037,"timestamp":179934747318,"id":294,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631848,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":4232,"timestamp":179934847660,"id":297,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556631949,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":360177,"timestamp":179934561642,"id":283,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631663,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":15,"timestamp":179934921936,"id":298,"parentId":283,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"949526528","memory.heapUsed":"131930440","memory.heapTotal":"164466688"},"startTime":1774556632023,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":268695,"timestamp":179934658489,"id":288,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631759,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":179934927321,"id":299,"parentId":288,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"949526528","memory.heapUsed":"132004856","memory.heapTotal":"164466688"},"startTime":1774556632028,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":261745,"timestamp":179934667853,"id":290,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631769,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":14,"timestamp":179934929753,"id":300,"parentId":290,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"949526528","memory.heapUsed":"132052944","memory.heapTotal":"164466688"},"startTime":1774556632031,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":185112,"timestamp":179934746284,"id":293,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631847,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":11,"timestamp":179934931517,"id":301,"parentId":293,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"949526528","memory.heapUsed":"132097544","memory.heapTotal":"164466688"},"startTime":1774556632032,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":88309,"timestamp":179934844913,"id":296,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556631946,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":179934933334,"id":302,"parentId":296,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"949526528","memory.heapUsed":"132145864","memory.heapTotal":"164466688"},"startTime":1774556632034,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":104887,"timestamp":180079147473,"id":303,"tags":{"trigger":"middleware"},"startTime":1774556776248,"traceId":"0849047be6eba3ab"}] -[{"name":"ensure-page","duration":7590,"timestamp":180079277989,"id":307,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776379,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":73388,"timestamp":180079272300,"id":305,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776373,"traceId":"0849047be6eba3ab"},{"name":"client-hmr-latency","duration":247000,"timestamp":180079102672,"id":310,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1774556776508,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":6367,"timestamp":180079404186,"id":309,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776505,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":18248,"timestamp":180079455282,"id":312,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776556,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":52880,"timestamp":180079472090,"id":314,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776573,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":51424,"timestamp":180079517677,"id":316,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776619,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":345117,"timestamp":180079276664,"id":306,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776378,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":34,"timestamp":180079622066,"id":317,"parentId":306,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1080922112","memory.heapUsed":"134585344","memory.heapTotal":"139300864"},"startTime":1774556776723,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":352859,"timestamp":180079271367,"id":304,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776372,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180079624369,"id":318,"parentId":304,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1080922112","memory.heapUsed":"134626136","memory.heapTotal":"139300864"},"startTime":1774556776725,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":233833,"timestamp":180079403416,"id":308,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776504,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":14,"timestamp":180079637400,"id":323,"parentId":308,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1080922112","memory.heapUsed":"135036512","memory.heapTotal":"139300864"},"startTime":1774556776738,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":8266,"timestamp":180079633145,"id":320,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776734,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":64016,"timestamp":180079634659,"id":322,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776736,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":309795,"timestamp":180079453882,"id":311,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776555,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180079763803,"id":324,"parentId":311,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1081970688","memory.heapUsed":"136853272","memory.heapTotal":"141275136"},"startTime":1774556776865,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":296795,"timestamp":180079471232,"id":313,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776572,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":14,"timestamp":180079768183,"id":325,"parentId":313,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1081970688","memory.heapUsed":"136921200","memory.heapTotal":"141275136"},"startTime":1774556776869,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":260035,"timestamp":180079516755,"id":315,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776618,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":180079776922,"id":328,"parentId":315,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1081970688","memory.heapUsed":"137117488","memory.heapTotal":"141275136"},"startTime":1774556776878,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":7567,"timestamp":180079771742,"id":327,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776873,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":17412,"timestamp":180079842232,"id":330,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556776943,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5664,"timestamp":180079923616,"id":332,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777025,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":59363,"timestamp":180079925846,"id":334,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777027,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":452380,"timestamp":180079632285,"id":319,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776733,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":21,"timestamp":180080087727,"id":335,"parentId":319,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1081970688","memory.heapUsed":"139963152","memory.heapTotal":"151498752"},"startTime":1774556777189,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":463216,"timestamp":180079633910,"id":321,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776735,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":19,"timestamp":180080097323,"id":336,"parentId":321,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1081970688","memory.heapUsed":"140003984","memory.heapTotal":"151498752"},"startTime":1774556777198,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":5116,"timestamp":180080119193,"id":338,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777220,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":410367,"timestamp":180079770570,"id":326,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776872,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":37,"timestamp":180080181994,"id":341,"parentId":326,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1080438784","memory.heapUsed":"142833272","memory.heapTotal":"151760896"},"startTime":1774556777283,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":68076,"timestamp":180080122757,"id":340,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777224,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":416148,"timestamp":180079840518,"id":329,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556776941,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180080256813,"id":342,"parentId":329,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1080438784","memory.heapUsed":"142378264","memory.heapTotal":"152547328"},"startTime":1774556777358,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":342261,"timestamp":180079924982,"id":333,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777026,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180080267393,"id":345,"parentId":333,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1080438784","memory.heapUsed":"142608096","memory.heapTotal":"152547328"},"startTime":1774556777368,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":346769,"timestamp":180079922491,"id":331,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777023,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180080269541,"id":346,"parentId":331,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1080438784","memory.heapUsed":"142647904","memory.heapTotal":"152547328"},"startTime":1774556777371,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":10935,"timestamp":180080263972,"id":344,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777365,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":13309,"timestamp":180080360098,"id":348,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777461,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":69376,"timestamp":180080367434,"id":350,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777468,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":132082,"timestamp":180080371447,"id":352,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777472,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":466392,"timestamp":180080118210,"id":337,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777219,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":12,"timestamp":180080584763,"id":353,"parentId":337,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1082535936","memory.heapUsed":"145360816","memory.heapTotal":"164081664"},"startTime":1774556777686,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":465200,"timestamp":180080121878,"id":339,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777223,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180080587225,"id":354,"parentId":339,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1082667008","memory.heapUsed":"145405192","memory.heapTotal":"164081664"},"startTime":1774556777688,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":9515,"timestamp":180080603833,"id":356,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777705,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":160236,"timestamp":180080609295,"id":358,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777710,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":565853,"timestamp":180080261978,"id":343,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777363,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180080827958,"id":359,"parentId":343,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1082462208","memory.heapUsed":"134943800","memory.heapTotal":"164425728"},"startTime":1774556777929,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":478487,"timestamp":180080358903,"id":347,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777460,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180080837523,"id":360,"parentId":347,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1082462208","memory.heapUsed":"135108280","memory.heapTotal":"164425728"},"startTime":1774556777939,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":472758,"timestamp":180080366437,"id":349,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777467,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":18,"timestamp":180080839375,"id":361,"parentId":349,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1082462208","memory.heapUsed":"135149432","memory.heapTotal":"164425728"},"startTime":1774556777940,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":476160,"timestamp":180080368181,"id":351,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777469,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180080844500,"id":364,"parentId":351,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1082462208","memory.heapUsed":"135291392","memory.heapTotal":"164425728"},"startTime":1774556777945,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":9740,"timestamp":180080842432,"id":363,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556777943,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":9591,"timestamp":180080922824,"id":366,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556778024,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":73326,"timestamp":180080925488,"id":368,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556778026,"traceId":"0849047be6eba3ab"},{"name":"ensure-page","duration":124335,"timestamp":180080929206,"id":370,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556778030,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":505854,"timestamp":180080607722,"id":357,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777709,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":25,"timestamp":180081113738,"id":371,"parentId":357,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1085607936","memory.heapUsed":"139162184","memory.heapTotal":"164425728"},"startTime":1774556778215,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":515701,"timestamp":180080602861,"id":355,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777704,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":11,"timestamp":180081118718,"id":372,"parentId":355,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1085607936","memory.heapUsed":"139202936","memory.heapTotal":"164425728"},"startTime":1774556778220,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":295712,"timestamp":180080841216,"id":362,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556777942,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":21,"timestamp":180081138289,"id":373,"parentId":362,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1085739008","memory.heapUsed":"139278568","memory.heapTotal":"164425728"},"startTime":1774556778239,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":229790,"timestamp":180080923602,"id":367,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556778025,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":14,"timestamp":180081153560,"id":374,"parentId":367,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1085870080","memory.heapUsed":"139349544","memory.heapTotal":"164425728"},"startTime":1774556778255,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":241887,"timestamp":180080921307,"id":365,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556778022,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180081163343,"id":375,"parentId":365,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1085870080","memory.heapUsed":"139416176","memory.heapTotal":"164425728"},"startTime":1774556778264,"traceId":"0849047be6eba3ab"},{"name":"handle-request","duration":236507,"timestamp":180080928165,"id":369,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774556778029,"traceId":"0849047be6eba3ab"},{"name":"memory-usage","duration":13,"timestamp":180081165338,"id":376,"parentId":369,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1085870080","memory.heapUsed":"139456160","memory.heapTotal":"164425728"},"startTime":1774556778266,"traceId":"0849047be6eba3ab"},{"name":"compile-path","duration":10618,"timestamp":180109165736,"id":377,"tags":{"trigger":"middleware"},"startTime":1774556806267,"traceId":"0849047be6eba3ab"}] -[{"name":"hot-reloader","duration":204,"timestamp":180121734534,"id":3,"tags":{"version":"16.1.6"},"startTime":1774556818836,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":42626,"timestamp":180122090090,"id":4,"tags":{"trigger":"middleware"},"startTime":1774556819191,"traceId":"a42fa43d3e30758d"}] -[{"name":"setup-dev-bundler","duration":732419,"timestamp":180121495244,"id":2,"parentId":1,"tags":{},"startTime":1774556818596,"traceId":"a42fa43d3e30758d"},{"name":"start-dev-server","duration":1957940,"timestamp":180120505249,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"6667075584","memory.totalMem":"16408375296","memory.heapSizeLimit":"8254390272","memory.rss":"403357696","memory.heapTotal":"89591808","memory.heapUsed":"65202368"},"startTime":1774556817607,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":340331,"timestamp":180122537866,"id":7,"tags":{"trigger":"/admin/users"},"startTime":1774556819639,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":1283479,"timestamp":180122527842,"id":5,"tags":{"url":"/admin/users"},"startTime":1774556819629,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":30,"timestamp":180123811617,"id":8,"parentId":5,"tags":{"url":"/admin/users","memory.rss":"577888256","memory.heapUsed":"100714824","memory.heapTotal":"126443520"},"startTime":1774556820913,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4091,"timestamp":180124164851,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556821266,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":674,"timestamp":180124169380,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556821270,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8978,"timestamp":180124171965,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556821273,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2525,"timestamp":180124181122,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556821282,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":606,"timestamp":180124634733,"id":13,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556821736,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":348,"timestamp":180124635461,"id":14,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556821736,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":416,"timestamp":180124636752,"id":15,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556821738,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":953,"timestamp":180124637284,"id":16,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556821738,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":44954,"timestamp":180124644248,"id":19,"tags":{"trigger":"/_not-found/page"},"startTime":1774556821745,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":8248,"timestamp":180124691677,"id":20,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556821793,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":45770,"timestamp":180143149784,"id":22,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774556840251,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":445509,"timestamp":180143153314,"id":25,"tags":{"trigger":"/login"},"startTime":1774556840254,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":1873,"timestamp":180143701941,"id":26,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556840803,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3111,"timestamp":180143703974,"id":27,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556840805,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":349,"timestamp":180143719236,"id":28,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556840820,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":258,"timestamp":180143719653,"id":29,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556840821,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":10519,"timestamp":180143722988,"id":31,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556840824,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5103,"timestamp":180143733972,"id":32,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556840835,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":817483,"timestamp":180143148059,"id":21,"tags":{"url":"/admin/users"},"startTime":1774556840249,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":180143965768,"id":33,"parentId":21,"tags":{"url":"/admin/users","memory.rss":"954605568","memory.heapUsed":"105816864","memory.heapTotal":"145276928"},"startTime":1774556841067,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2696,"timestamp":180144273636,"id":34,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556841375,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":518,"timestamp":180144276441,"id":35,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556841377,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1121,"timestamp":180144278153,"id":36,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556841379,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":531,"timestamp":180144279398,"id":37,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556841380,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3148,"timestamp":180144553420,"id":39,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774556841654,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":44737,"timestamp":180144551778,"id":38,"tags":{"url":"/login?_rsc=wkrq7"},"startTime":1774556841653,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":180144596696,"id":40,"parentId":38,"tags":{"url":"/login?_rsc=wkrq7","memory.rss":"956309504","memory.heapUsed":"111466424","memory.heapTotal":"145514496"},"startTime":1774556841698,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":886,"timestamp":180144755332,"id":41,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556841856,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":458,"timestamp":180144756335,"id":42,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556841857,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":888,"timestamp":180144759787,"id":43,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556841861,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":645,"timestamp":180144760822,"id":44,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556841862,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7736,"timestamp":180144763361,"id":46,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556841864,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6594,"timestamp":180144771649,"id":47,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556841873,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":175308,"timestamp":180163653844,"id":50,"tags":{"trigger":"/admin/clubs"},"startTime":1774556860755,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":303625,"timestamp":180163650613,"id":48,"tags":{"url":"/admin/clubs?_rsc=bgfql"},"startTime":1774556860752,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":180163954446,"id":51,"parentId":48,"tags":{"url":"/admin/clubs?_rsc=bgfql","memory.rss":"987738112","memory.heapUsed":"102694760","memory.heapTotal":"108085248"},"startTime":1774556861055,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3126,"timestamp":180164036907,"id":53,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774556861138,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":59738,"timestamp":180164035163,"id":52,"tags":{"url":"/login?_rsc=1o40w"},"startTime":1774556861136,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":180164095074,"id":54,"parentId":52,"tags":{"url":"/login?_rsc=1o40w","memory.rss":"988786688","memory.heapUsed":"103510528","memory.heapTotal":"107560960"},"startTime":1774556861196,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":635,"timestamp":180164180534,"id":55,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556861282,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":360,"timestamp":180164181247,"id":56,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556861282,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":389,"timestamp":180164182610,"id":57,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556861284,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":551,"timestamp":180164183085,"id":58,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556861284,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4248,"timestamp":180164185240,"id":60,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556861286,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3746,"timestamp":180164189804,"id":61,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556861291,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":9546,"timestamp":180164265659,"id":63,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774556861367,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":44049,"timestamp":180164264822,"id":62,"tags":{"url":"/login?_rsc=5c339"},"startTime":1774556861366,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":180164309060,"id":64,"parentId":62,"tags":{"url":"/login?_rsc=5c339","memory.rss":"992718848","memory.heapUsed":"106038368","memory.heapTotal":"113041408"},"startTime":1774556861410,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":14858,"timestamp":180177588542,"id":67,"tags":{"trigger":"/admin"},"startTime":1774556874690,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":256453,"timestamp":180177586397,"id":65,"tags":{"url":"/admin"},"startTime":1774556874687,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":24,"timestamp":180177843360,"id":68,"parentId":65,"tags":{"url":"/admin","memory.rss":"994861056","memory.heapUsed":"108952584","memory.heapTotal":"113512448"},"startTime":1774556874944,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":509,"timestamp":180178263920,"id":69,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556875365,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":378,"timestamp":180178264520,"id":70,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556875365,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":414,"timestamp":180178265863,"id":71,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556875367,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":359,"timestamp":180178266354,"id":72,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556875367,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3810,"timestamp":180178675824,"id":74,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774556875777,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":87451,"timestamp":180178672717,"id":73,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774556875774,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":23,"timestamp":180178760546,"id":75,"parentId":73,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"996958208","memory.heapUsed":"108480960","memory.heapTotal":"116396032"},"startTime":1774556875862,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":322,"timestamp":180178959318,"id":76,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556876060,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":258,"timestamp":180178959705,"id":77,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556876061,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":256,"timestamp":180178960672,"id":78,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556876062,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":258,"timestamp":180178960976,"id":79,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556876062,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3767,"timestamp":180178962127,"id":81,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556876063,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3288,"timestamp":180178966307,"id":82,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556876067,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":97377,"timestamp":180178961497,"id":80,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774556876062,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":20,"timestamp":180179059231,"id":83,"parentId":80,"tags":{"url":"/avatars/admin.jpg","memory.rss":"998793216","memory.heapUsed":"110315008","memory.heapTotal":"116633600"},"startTime":1774556876160,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1925,"timestamp":180184811997,"id":85,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774556881913,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":76064,"timestamp":180184811275,"id":84,"tags":{"url":"/admin"},"startTime":1774556881912,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":180184887505,"id":86,"parentId":84,"tags":{"url":"/admin","memory.rss":"1035493376","memory.heapUsed":"111405616","memory.heapTotal":"115060736"},"startTime":1774556881988,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":483,"timestamp":180185172861,"id":87,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556882274,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":374,"timestamp":180185173426,"id":88,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556882274,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":472,"timestamp":180185174801,"id":89,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556882276,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":359,"timestamp":180185175367,"id":90,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556882276,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5304,"timestamp":180185533376,"id":92,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774556882634,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":102089,"timestamp":180185530731,"id":91,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774556882632,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":19,"timestamp":180185633101,"id":93,"parentId":91,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"1036705792","memory.heapUsed":"110267504","memory.heapTotal":"119721984"},"startTime":1774556882734,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":403,"timestamp":180185806197,"id":94,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556882907,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":355,"timestamp":180185806684,"id":95,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556882908,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":404,"timestamp":180185807926,"id":96,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556882909,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":341,"timestamp":180185808401,"id":97,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556882909,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5107,"timestamp":180185810335,"id":99,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556882911,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7158,"timestamp":180185815750,"id":100,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556882917,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6367,"timestamp":180241075850,"id":102,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774556938177,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":138086,"timestamp":180241072608,"id":101,"tags":{"url":"/admin"},"startTime":1774556938174,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":180241210796,"id":103,"parentId":101,"tags":{"url":"/admin","memory.rss":"995561472","memory.heapUsed":"106921968","memory.heapTotal":"111964160"},"startTime":1774556938312,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":490,"timestamp":180241426849,"id":104,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556938528,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":374,"timestamp":180241427421,"id":105,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556938528,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":410,"timestamp":180241430016,"id":106,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774556938531,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":344,"timestamp":180241430501,"id":107,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774556938531,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4447,"timestamp":180241780545,"id":109,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774556938882,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":123456,"timestamp":180241778101,"id":108,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774556938879,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":33,"timestamp":180241901843,"id":110,"parentId":108,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"997134336","memory.heapUsed":"109042000","memory.heapTotal":"115609600"},"startTime":1774556939003,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":610,"timestamp":180242203770,"id":111,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556939305,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":275,"timestamp":180242204449,"id":112,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556939305,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":458,"timestamp":180242205607,"id":113,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556939307,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":282,"timestamp":180242206133,"id":114,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774556939307,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4256,"timestamp":180242207691,"id":116,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556939309,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2379,"timestamp":180242212429,"id":117,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774556939313,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":138000,"timestamp":180398329708,"id":118,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/layout.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1774557095601,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":230000,"timestamp":180412203135,"id":119,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/layout.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1774557109563,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":20747,"timestamp":180423322939,"id":121,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774557120424,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":468710,"timestamp":180423322395,"id":120,"tags":{"url":"/admin"},"startTime":1774557120423,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":180423791209,"id":122,"parentId":120,"tags":{"url":"/admin","memory.rss":"1015214080","memory.heapUsed":"118651144","memory.heapTotal":"141561856"},"startTime":1774557120892,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":448,"timestamp":180424040507,"id":123,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557121141,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":316,"timestamp":180424041054,"id":124,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557121142,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":335,"timestamp":180424042639,"id":125,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557121144,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":218,"timestamp":180424043055,"id":126,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557121144,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3476,"timestamp":180424270231,"id":128,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774557121371,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":75274,"timestamp":180424268271,"id":127,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774557121369,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":32,"timestamp":180424343808,"id":129,"parentId":127,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"1017180160","memory.heapUsed":"124736696","memory.heapTotal":"141799424"},"startTime":1774557121445,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2885,"timestamp":180429756674,"id":131,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774557126858,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":170484,"timestamp":180429755250,"id":130,"tags":{"url":"/admin"},"startTime":1774557126856,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":180429925912,"id":132,"parentId":130,"tags":{"url":"/admin","memory.rss":"1042579456","memory.heapUsed":"123670160","memory.heapTotal":"141799424"},"startTime":1774557127027,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":423,"timestamp":180430247399,"id":133,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557127348,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":386,"timestamp":180430247901,"id":134,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557127349,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":321,"timestamp":180430254076,"id":135,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557127355,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":219,"timestamp":180430254455,"id":136,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557127355,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2359,"timestamp":180430544112,"id":138,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774557127645,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":46431,"timestamp":180430542739,"id":137,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774557127644,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":180430589321,"id":139,"parentId":137,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"1046773760","memory.heapUsed":"125818048","memory.heapTotal":"143839232"},"startTime":1774557127690,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1325,"timestamp":180442238593,"id":141,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774557139340,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":36371,"timestamp":180442237845,"id":140,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774557139339,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":180442274314,"id":142,"parentId":140,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1010044928","memory.heapUsed":"119175752","memory.heapTotal":"125046784"},"startTime":1774557139375,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":459,"timestamp":180442490277,"id":143,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557139591,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":291,"timestamp":180442490813,"id":144,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557139592,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":553,"timestamp":180442491970,"id":145,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557139593,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":467,"timestamp":180442492602,"id":146,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557139594,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4177,"timestamp":180442494262,"id":148,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557139595,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4557,"timestamp":180442498740,"id":149,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557139600,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":36899,"timestamp":180450577354,"id":151,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774557147678,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":256817,"timestamp":180450575299,"id":150,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774557147676,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":180450832246,"id":152,"parentId":150,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1022930944","memory.heapUsed":"130427960","memory.heapTotal":"142544896"},"startTime":1774557147933,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":27651,"timestamp":180453475121,"id":154,"parentId":3,"tags":{"inputPage":"/admin/clubs/page"},"startTime":1774557150576,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":242184,"timestamp":180453473489,"id":153,"tags":{"url":"/admin/clubs?_rsc=3jpne"},"startTime":1774557150574,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":17,"timestamp":180453715840,"id":155,"parentId":153,"tags":{"url":"/admin/clubs?_rsc=3jpne","memory.rss":"1045610496","memory.heapUsed":"129750648","memory.heapTotal":"150171648"},"startTime":1774557150817,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1220,"timestamp":180455516824,"id":156,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557152618,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":682,"timestamp":180455518218,"id":157,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557152619,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1147,"timestamp":180455521541,"id":158,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557152623,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1039,"timestamp":180455522898,"id":159,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557152624,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":11273,"timestamp":180455526483,"id":161,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557152627,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":10972,"timestamp":180455539310,"id":162,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557152640,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":97784,"timestamp":180455524609,"id":160,"tags":{"url":"/admin/news?_rsc=18mo8"},"startTime":1774557152626,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":23,"timestamp":180455622618,"id":163,"parentId":160,"tags":{"url":"/admin/news?_rsc=18mo8","memory.rss":"1030811648","memory.heapUsed":"133035816","memory.heapTotal":"150409216"},"startTime":1774557152724,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1187,"timestamp":180455664989,"id":164,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557152766,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":821,"timestamp":180455666401,"id":165,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557152767,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":706,"timestamp":180455668984,"id":166,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557152770,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":598,"timestamp":180455669819,"id":167,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557152771,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7289,"timestamp":180455672664,"id":169,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557152774,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3311,"timestamp":180455680505,"id":170,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557152781,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":119654,"timestamp":180455670971,"id":168,"tags":{"url":"/admin/news"},"startTime":1774557152772,"traceId":"a42fa43d3e30758d"}] -[{"name":"memory-usage","duration":14,"timestamp":180455792429,"id":171,"parentId":168,"tags":{"url":"/admin/news","memory.rss":"1034088448","memory.heapUsed":"133048608","memory.heapTotal":"151719936"},"startTime":1774557152893,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":872,"timestamp":180455973820,"id":172,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557153075,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":508,"timestamp":180455974818,"id":173,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557153076,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":500,"timestamp":180455978404,"id":174,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557153079,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":429,"timestamp":180455979178,"id":175,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557153080,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6275,"timestamp":180457674199,"id":177,"parentId":3,"tags":{"inputPage":"/admin/clubs/page"},"startTime":1774557154775,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":443661,"timestamp":180457671844,"id":176,"tags":{"url":"/admin/clubs"},"startTime":1774557154773,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":180458115633,"id":178,"parentId":176,"tags":{"url":"/admin/clubs","memory.rss":"1045651456","memory.heapUsed":"140750368","memory.heapTotal":"176726016"},"startTime":1774557155217,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":617,"timestamp":180458373934,"id":179,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557155475,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":657,"timestamp":180458374644,"id":180,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557155476,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":390,"timestamp":180458376259,"id":181,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557155477,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":239,"timestamp":180458376715,"id":182,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557155478,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":290,"timestamp":180458727546,"id":183,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557155829,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":261,"timestamp":180458727908,"id":184,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557155829,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":277,"timestamp":180458728924,"id":185,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557155830,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":229,"timestamp":180458729253,"id":186,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557155830,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5004,"timestamp":180458730393,"id":188,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557155831,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7416,"timestamp":180458735719,"id":189,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557155837,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":2017267,"timestamp":180459790770,"id":192,"tags":{"trigger":"/admin/teams"},"startTime":1774557156892,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":2091523,"timestamp":180459788521,"id":190,"tags":{"url":"/admin/teams?_rsc=1o40w"},"startTime":1774557156890,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":180461880202,"id":193,"parentId":190,"tags":{"url":"/admin/teams?_rsc=1o40w","memory.rss":"1099554816","memory.heapUsed":"148403576","memory.heapTotal":"180359168"},"startTime":1774557158981,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1615,"timestamp":180464628864,"id":195,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774557161730,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":26805,"timestamp":180464628212,"id":194,"tags":{"url":"/admin/teams?_rsc=elqic"},"startTime":1774557161729,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":180464655146,"id":196,"parentId":194,"tags":{"url":"/admin/teams?_rsc=elqic","memory.rss":"1165615104","memory.heapUsed":"151092232","memory.heapTotal":"180621312"},"startTime":1774557161756,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1124,"timestamp":180466865366,"id":197,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557163966,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":911,"timestamp":180466866697,"id":198,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557163968,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":607,"timestamp":180466869349,"id":199,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557163970,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":527,"timestamp":180466870105,"id":200,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557163971,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":9847,"timestamp":180466872611,"id":202,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557163974,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7840,"timestamp":180466882976,"id":203,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557163984,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":93252,"timestamp":180466871142,"id":201,"tags":{"url":"/admin/news?_rsc=elqic"},"startTime":1774557163972,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":25,"timestamp":180466964679,"id":204,"parentId":201,"tags":{"url":"/admin/news?_rsc=elqic","memory.rss":"1121927168","memory.heapUsed":"141189168","memory.heapTotal":"149172224"},"startTime":1774557164066,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":808,"timestamp":180467016494,"id":205,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557164117,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":562,"timestamp":180467017531,"id":206,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557164119,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1138,"timestamp":180467019994,"id":207,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557164121,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1052,"timestamp":180467021349,"id":208,"parentId":3,"tags":{"inputPage":"/admin/news"},"startTime":1774557164122,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6469,"timestamp":180467024799,"id":210,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557164126,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2756,"timestamp":180467031636,"id":211,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557164133,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":177398,"timestamp":180467023149,"id":209,"tags":{"url":"/admin/news"},"startTime":1774557164124,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":180467200681,"id":212,"parentId":209,"tags":{"url":"/admin/news","memory.rss":"1120821248","memory.heapUsed":"142110376","memory.heapTotal":"147312640"},"startTime":1774557164302,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":544,"timestamp":180467396350,"id":213,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557164497,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":453,"timestamp":180467396988,"id":214,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557164498,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":435,"timestamp":180467400515,"id":215,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557164501,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":355,"timestamp":180467401040,"id":216,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557164502,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6033,"timestamp":180468311481,"id":218,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774557165412,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":199761,"timestamp":180468307838,"id":217,"tags":{"url":"/admin/teams"},"startTime":1774557165409,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":30,"timestamp":180468507906,"id":219,"parentId":217,"tags":{"url":"/admin/teams","memory.rss":"1125257216","memory.heapUsed":"142397136","memory.heapTotal":"154677248"},"startTime":1774557165609,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":708,"timestamp":180469449498,"id":220,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557166550,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":572,"timestamp":180469450333,"id":221,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557166551,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":871,"timestamp":180469452543,"id":222,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557166554,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":636,"timestamp":180469453645,"id":223,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557166555,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7601,"timestamp":180469456190,"id":225,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557166557,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":13266,"timestamp":180469464174,"id":226,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557166565,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":900,"timestamp":180471729739,"id":227,"parentId":3,"tags":{"inputPage":"/admin/players"},"startTime":1774557168831,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":544,"timestamp":180471730771,"id":228,"parentId":3,"tags":{"inputPage":"/admin/players"},"startTime":1774557168832,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":660,"timestamp":180471732948,"id":229,"parentId":3,"tags":{"inputPage":"/admin/players"},"startTime":1774557168834,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":555,"timestamp":180471733719,"id":230,"parentId":3,"tags":{"inputPage":"/admin/players"},"startTime":1774557168835,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":9085,"timestamp":180471736414,"id":232,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557168837,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7145,"timestamp":180471745908,"id":233,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557168847,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":82168,"timestamp":180471734689,"id":231,"tags":{"url":"/admin/players?_rsc=elqic"},"startTime":1774557168836,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":180471817036,"id":234,"parentId":231,"tags":{"url":"/admin/players?_rsc=elqic","memory.rss":"1150423040","memory.heapUsed":"145725432","memory.heapTotal":"157503488"},"startTime":1774557168918,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":542,"timestamp":180471849188,"id":235,"parentId":3,"tags":{"inputPage":"/admin/players"},"startTime":1774557168950,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":464,"timestamp":180471849836,"id":236,"parentId":3,"tags":{"inputPage":"/admin/players"},"startTime":1774557168951,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":619,"timestamp":180471851608,"id":237,"parentId":3,"tags":{"inputPage":"/admin/players"},"startTime":1774557168953,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":484,"timestamp":180471852334,"id":238,"parentId":3,"tags":{"inputPage":"/admin/players"},"startTime":1774557168953,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4959,"timestamp":180471854261,"id":240,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557168955,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2246,"timestamp":180471859540,"id":241,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557168961,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":131520,"timestamp":180471853232,"id":239,"tags":{"url":"/admin/players"},"startTime":1774557168954,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":17,"timestamp":180471984896,"id":242,"parentId":239,"tags":{"url":"/admin/players","memory.rss":"1153830912","memory.heapUsed":"147998800","memory.heapTotal":"166678528"},"startTime":1774557169086,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":473,"timestamp":180472187706,"id":243,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557169289,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":280,"timestamp":180472188261,"id":244,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557169289,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":254,"timestamp":180472189289,"id":245,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557169290,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":286,"timestamp":180472189592,"id":246,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557169291,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":9066,"timestamp":180473629026,"id":248,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774557170730,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":176322,"timestamp":180473627668,"id":247,"tags":{"url":"/admin/teams"},"startTime":1774557170729,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":22,"timestamp":180473804234,"id":249,"parentId":247,"tags":{"url":"/admin/teams","memory.rss":"1139761152","memory.heapUsed":"144977312","memory.heapTotal":"166940672"},"startTime":1774557170905,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":710,"timestamp":180474918182,"id":250,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557172019,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":723,"timestamp":180474919080,"id":251,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557172020,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":916,"timestamp":180474921864,"id":252,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557172023,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":815,"timestamp":180474922963,"id":253,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557172024,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8832,"timestamp":180474925786,"id":255,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557172027,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":12152,"timestamp":180474935285,"id":256,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557172036,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":663,"timestamp":180476645691,"id":257,"parentId":3,"tags":{"inputPage":"/admin/matches"},"startTime":1774557173747,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":265,"timestamp":180476646436,"id":258,"parentId":3,"tags":{"inputPage":"/admin/matches"},"startTime":1774557173747,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":265,"timestamp":180476647421,"id":259,"parentId":3,"tags":{"inputPage":"/admin/matches"},"startTime":1774557173748,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":200,"timestamp":180476647738,"id":260,"parentId":3,"tags":{"inputPage":"/admin/matches"},"startTime":1774557173749,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3812,"timestamp":180476648687,"id":262,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557173750,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3302,"timestamp":180476652731,"id":263,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557173754,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":30071,"timestamp":180476648137,"id":261,"tags":{"url":"/admin/matches?_rsc=elqic"},"startTime":1774557173749,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":180476678331,"id":264,"parentId":261,"tags":{"url":"/admin/matches?_rsc=elqic","memory.rss":"1143824384","memory.heapUsed":"151468408","memory.heapTotal":"168194048"},"startTime":1774557173779,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":394,"timestamp":180476698208,"id":265,"parentId":3,"tags":{"inputPage":"/admin/matches"},"startTime":1774557173799,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":338,"timestamp":180476698687,"id":266,"parentId":3,"tags":{"inputPage":"/admin/matches"},"startTime":1774557173800,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":252,"timestamp":180476699720,"id":267,"parentId":3,"tags":{"inputPage":"/admin/matches"},"startTime":1774557173801,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":213,"timestamp":180476700037,"id":268,"parentId":3,"tags":{"inputPage":"/admin/matches"},"startTime":1774557173801,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3970,"timestamp":180476700961,"id":270,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557173802,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1625,"timestamp":180476705116,"id":271,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557173806,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":66217,"timestamp":180476700480,"id":269,"tags":{"url":"/admin/matches"},"startTime":1774557173801,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":180476766831,"id":272,"parentId":269,"tags":{"url":"/admin/matches","memory.rss":"1145135104","memory.heapUsed":"151068224","memory.heapTotal":"168718336"},"startTime":1774557173868,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":328,"timestamp":180476945265,"id":273,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557174046,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":392,"timestamp":180476945657,"id":274,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557174047,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":324,"timestamp":180476946783,"id":275,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557174048,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":204,"timestamp":180476947158,"id":276,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557174048,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5476,"timestamp":180478043404,"id":278,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774557175144,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":159187,"timestamp":180478041739,"id":277,"tags":{"url":"/admin/teams"},"startTime":1774557175143,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":24,"timestamp":180478201254,"id":279,"parentId":277,"tags":{"url":"/admin/teams","memory.rss":"1149460480","memory.heapUsed":"154022000","memory.heapTotal":"187994112"},"startTime":1774557175302,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":333,"timestamp":180479083788,"id":280,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557176185,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":222,"timestamp":180479084183,"id":281,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557176185,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":260,"timestamp":180479085067,"id":282,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557176186,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":248,"timestamp":180479085379,"id":283,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557176186,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4538,"timestamp":180479087403,"id":285,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557176188,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6903,"timestamp":180479092205,"id":286,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557176193,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1349,"timestamp":180479690995,"id":287,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1774557176792,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":836,"timestamp":180479692529,"id":288,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1774557176794,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":884,"timestamp":180479695452,"id":289,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1774557176796,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":804,"timestamp":180479696507,"id":290,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1774557176797,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":11047,"timestamp":180479699732,"id":292,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557176801,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8512,"timestamp":180479711325,"id":293,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557176812,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":82708,"timestamp":180479697895,"id":291,"tags":{"url":"/admin/championships?_rsc=elqic"},"startTime":1774557176799,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":23,"timestamp":180479780836,"id":294,"parentId":291,"tags":{"url":"/admin/championships?_rsc=elqic","memory.rss":"1150189568","memory.heapUsed":"154224872","memory.heapTotal":"188551168"},"startTime":1774557176882,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":724,"timestamp":180479828648,"id":295,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1774557176930,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":615,"timestamp":180479831261,"id":296,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1774557176932,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":635,"timestamp":180479833551,"id":297,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1774557176935,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":527,"timestamp":180479834311,"id":298,"parentId":3,"tags":{"inputPage":"/admin/championships"},"startTime":1774557176935,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7649,"timestamp":180479836709,"id":300,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557176938,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3133,"timestamp":180479844741,"id":301,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557176946,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":156608,"timestamp":180479835333,"id":299,"tags":{"url":"/admin/championships"},"startTime":1774557176936,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":31,"timestamp":180479992822,"id":302,"parentId":299,"tags":{"url":"/admin/championships","memory.rss":"1153466368","memory.heapUsed":"158884176","memory.heapTotal":"188551168"},"startTime":1774557177094,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":459,"timestamp":180480272794,"id":303,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557177374,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":391,"timestamp":180480273338,"id":304,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557177374,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":514,"timestamp":180480274996,"id":305,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557177376,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":341,"timestamp":180480275584,"id":306,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557177377,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4595,"timestamp":180481030914,"id":308,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774557178132,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":146424,"timestamp":180481029712,"id":307,"tags":{"url":"/admin/teams"},"startTime":1774557178131,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":31,"timestamp":180481176496,"id":309,"parentId":307,"tags":{"url":"/admin/teams","memory.rss":"1156349952","memory.heapUsed":"156066616","memory.heapTotal":"189018112"},"startTime":1774557178277,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":771,"timestamp":180482276933,"id":310,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557179378,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":601,"timestamp":180482277850,"id":311,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557179379,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":536,"timestamp":180482279980,"id":312,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557179381,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":552,"timestamp":180482280652,"id":313,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557179382,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8028,"timestamp":180482283052,"id":315,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557179384,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":9731,"timestamp":180482291712,"id":316,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557179393,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":858,"timestamp":180482825631,"id":317,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1774557179927,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":505,"timestamp":180482826610,"id":318,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1774557179928,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":658,"timestamp":180482828652,"id":319,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1774557179930,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":607,"timestamp":180482829445,"id":320,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1774557179930,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7707,"timestamp":180482832281,"id":322,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557179933,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7360,"timestamp":180482840412,"id":323,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557179941,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":68179,"timestamp":180482830637,"id":321,"tags":{"url":"/admin/partners?_rsc=elqic"},"startTime":1774557179932,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":24,"timestamp":180482899074,"id":324,"parentId":321,"tags":{"url":"/admin/partners?_rsc=elqic","memory.rss":"1164476416","memory.heapUsed":"157781480","memory.heapTotal":"191115264"},"startTime":1774557180000,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":617,"timestamp":180482938610,"id":325,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1774557180040,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":443,"timestamp":180482939332,"id":326,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1774557180040,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":523,"timestamp":180482941251,"id":327,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1774557180042,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":474,"timestamp":180482941877,"id":328,"parentId":3,"tags":{"inputPage":"/admin/partners"},"startTime":1774557180043,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6448,"timestamp":180482943658,"id":330,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557180045,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2775,"timestamp":180482950429,"id":331,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557180051,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":97138,"timestamp":180482942721,"id":329,"tags":{"url":"/admin/partners"},"startTime":1774557180044,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":27,"timestamp":180483039994,"id":332,"parentId":329,"tags":{"url":"/admin/partners","memory.rss":"1165787136","memory.heapUsed":"163327512","memory.heapTotal":"192303104"},"startTime":1774557180141,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5111,"timestamp":180484180079,"id":334,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774557181281,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":168631,"timestamp":180484178291,"id":333,"tags":{"url":"/admin/teams"},"startTime":1774557181279,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":29,"timestamp":180484347240,"id":335,"parentId":333,"tags":{"url":"/admin/teams","memory.rss":"1168408576","memory.heapUsed":"161039336","memory.heapTotal":"194400256"},"startTime":1774557181448,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":302,"timestamp":180484681429,"id":336,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557181782,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":236,"timestamp":180484681790,"id":337,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557181783,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":229,"timestamp":180484682651,"id":338,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557181784,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":235,"timestamp":180484682929,"id":339,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557181784,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":489,"timestamp":180485043249,"id":340,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557182144,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":244,"timestamp":180485043799,"id":341,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557182145,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":268,"timestamp":180485044783,"id":342,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557182146,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":227,"timestamp":180485045102,"id":343,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557182146,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3816,"timestamp":180485045977,"id":345,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557182147,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4834,"timestamp":180485049994,"id":346,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557182151,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":68262,"timestamp":180485045523,"id":344,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774557182146,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":180485113895,"id":347,"parentId":344,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1169195008","memory.heapUsed":"169286016","memory.heapTotal":"194662400"},"startTime":1774557182215,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":288,"timestamp":180564746083,"id":348,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557261847,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":220,"timestamp":180564746427,"id":349,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557261847,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":246,"timestamp":180564747358,"id":350,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557261848,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":202,"timestamp":180564747652,"id":351,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774557261849,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4106,"timestamp":180564748543,"id":353,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557261850,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3640,"timestamp":180564752829,"id":354,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774557261854,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5252,"timestamp":180567500051,"id":356,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774557264601,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":83375,"timestamp":180567498555,"id":355,"tags":{"url":"/login?_rsc=elqic"},"startTime":1774557264600,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":25,"timestamp":180567582203,"id":357,"parentId":355,"tags":{"url":"/login?_rsc=elqic","memory.rss":"1178750976","memory.heapUsed":"164734320","memory.heapTotal":"178147328"},"startTime":1774557264683,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7207,"timestamp":180567795237,"id":359,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774557264896,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":78868,"timestamp":180567793124,"id":358,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774557264894,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":180567872137,"id":360,"parentId":358,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1178750976","memory.heapUsed":"164538696","memory.heapTotal":"169758720"},"startTime":1774557264973,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5046,"timestamp":180573573942,"id":362,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774557270675,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":173722,"timestamp":180573571616,"id":361,"tags":{"url":"/admin"},"startTime":1774557270673,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":180573745455,"id":363,"parentId":361,"tags":{"url":"/admin","memory.rss":"1176858624","memory.heapUsed":"166274168","memory.heapTotal":"172118016"},"startTime":1774557270846,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":282,"timestamp":180573968211,"id":364,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557271069,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":205,"timestamp":180573968556,"id":365,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557271070,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":230,"timestamp":180573969398,"id":366,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557271070,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":195,"timestamp":180573969676,"id":367,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557271071,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1652,"timestamp":180574208846,"id":369,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774557271310,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":34899,"timestamp":180574204345,"id":368,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774557271305,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":180574239400,"id":370,"parentId":368,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"1179086848","memory.heapUsed":"169451720","memory.heapTotal":"177893376"},"startTime":1774557271340,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":56667,"timestamp":180584571848,"id":373,"tags":{"trigger":"/forgot-password"},"startTime":1774557281673,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":209140,"timestamp":180584570222,"id":371,"tags":{"url":"/forgot-password"},"startTime":1774557281671,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":180584779500,"id":374,"parentId":371,"tags":{"url":"/forgot-password","memory.rss":"1188028416","memory.heapUsed":"174391952","memory.heapTotal":"180125696"},"startTime":1774557281880,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2377,"timestamp":180589510538,"id":376,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774557286612,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":161145,"timestamp":180589509106,"id":375,"tags":{"url":"/login"},"startTime":1774557286610,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":180589670390,"id":377,"parentId":375,"tags":{"url":"/login","memory.rss":"1186926592","memory.heapUsed":"157723128","memory.heapTotal":"185819136"},"startTime":1774557286771,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":346,"timestamp":180589848544,"id":378,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557286950,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":244,"timestamp":180589848953,"id":379,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557286950,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":270,"timestamp":180589849867,"id":380,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557286951,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":200,"timestamp":180589850185,"id":381,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557286951,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":53005,"timestamp":180594531058,"id":384,"tags":{"trigger":"/register"},"startTime":1774557291632,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":214555,"timestamp":180594529176,"id":382,"tags":{"url":"/register"},"startTime":1774557291630,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":180594743855,"id":385,"parentId":382,"tags":{"url":"/register","memory.rss":"1169321984","memory.heapUsed":"148469752","memory.heapTotal":"161091584"},"startTime":1774557291845,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":467,"timestamp":180594932194,"id":386,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557292033,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":374,"timestamp":180594932745,"id":387,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557292034,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":370,"timestamp":180594934046,"id":388,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557292035,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":331,"timestamp":180594934495,"id":389,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557292035,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":11850,"timestamp":180781439948,"id":391,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774557478541,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":568000,"timestamp":180780846691,"id":392,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":true},"startTime":1774557478625,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":116067,"timestamp":180781437582,"id":390,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1774557478539,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":22,"timestamp":180781553947,"id":393,"parentId":390,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1071906816","memory.heapUsed":"149522936","memory.heapTotal":"154775552"},"startTime":1774557478655,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":719,"timestamp":180799217407,"id":395,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774557496318,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":18344,"timestamp":180799216998,"id":394,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1774557496318,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":180799235419,"id":396,"parentId":394,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1079771136","memory.heapUsed":"150670176","memory.heapTotal":"155037696"},"startTime":1774557496336,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":75000,"timestamp":180799139138,"id":397,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":true},"startTime":1774557496351,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":42214,"timestamp":180979749726,"id":400,"tags":{"trigger":"/login"},"startTime":1774557676851,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":253859,"timestamp":180979749268,"id":398,"tags":{"url":"/login"},"startTime":1774557676850,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":180980003237,"id":401,"parentId":398,"tags":{"url":"/login","memory.rss":"1257762816","memory.heapUsed":"159670768","memory.heapTotal":"173232128"},"startTime":1774557677104,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":419,"timestamp":180980204659,"id":402,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557677306,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":281,"timestamp":180980205146,"id":403,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557677306,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":652,"timestamp":180980206505,"id":404,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774557677307,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":426,"timestamp":180980207278,"id":405,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774557677308,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":61000,"timestamp":181013150590,"id":406,"parentId":3,"tags":{"updatedModules":["[project]/src/app/login/page.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1774557710348,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":127000,"timestamp":181096338068,"id":407,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/shared/lib/router/utils/querystring.js [app-client]","[project]/node_modules/next/dist/shared/lib/router/utils/format-url.js [app-client]","[project]/node_modules/next/dist/client/use-merged-ref.js [app-client]","[project]/node_modules/next/dist/shared/lib/utils.js [app-client]","[project]/node_modules/next/dist/shared/lib/router/utils/is-local-url.js [app-client]","[project]/node_modules/next/dist/shared/lib/utils/error-once.js [app-client]","[project]/node_modules/next/dist/client/app-dir/link.js [app-client]","[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1774557793594,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1044,"timestamp":181110481107,"id":409,"parentId":3,"tags":{"inputPage":"/forgot-password/page"},"startTime":1774557807582,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":18581,"timestamp":181110480557,"id":408,"tags":{"url":"/forgot-password?_rsc=5c339"},"startTime":1774557807582,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181110499226,"id":410,"parentId":408,"tags":{"url":"/forgot-password?_rsc=5c339","memory.rss":"1288925184","memory.heapUsed":"162980248","memory.heapTotal":"174010368"},"startTime":1774557807600,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":77000,"timestamp":181128524679,"id":411,"parentId":3,"tags":{"updatedModules":["[project]/src/components/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1774557825734,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":19351,"timestamp":181318525090,"id":413,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558015626,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":100777,"timestamp":181318524711,"id":412,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774558015626,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":181318625569,"id":414,"parentId":412,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1310515200","memory.heapUsed":"171696856","memory.heapTotal":"179191808"},"startTime":1774558015727,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2352,"timestamp":181318642095,"id":416,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558015743,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":42401,"timestamp":181318641531,"id":415,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774558015743,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181318684231,"id":417,"parentId":415,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1311825920","memory.heapUsed":"172987280","memory.heapTotal":"179658752"},"startTime":1774558015785,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":231,"timestamp":181318874824,"id":418,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774558015976,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":168,"timestamp":181318875100,"id":419,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774558015976,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":216,"timestamp":181318875808,"id":420,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774558015977,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":176,"timestamp":181318876066,"id":421,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774558015977,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2987,"timestamp":181318877273,"id":423,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558015978,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2123,"timestamp":181318880352,"id":424,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558015981,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":6229,"timestamp":181424719248,"id":425,"tags":{"trigger":"middleware"},"startTime":1774558121820,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":22020,"timestamp":181424745864,"id":427,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558121847,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":166000,"timestamp":181424625748,"id":428,"parentId":3,"tags":{"updatedModules":[],"page":"/admin","isPageHidden":false},"startTime":1774558122039,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":202371,"timestamp":181424741964,"id":426,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558121843,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181424944446,"id":429,"parentId":426,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1314058240","memory.heapUsed":"169994808","memory.heapTotal":"178507776"},"startTime":1774558122045,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3811,"timestamp":181424954427,"id":431,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122055,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7310,"timestamp":181424999365,"id":433,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122100,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":44275,"timestamp":181425000649,"id":435,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122102,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":100882,"timestamp":181425004846,"id":437,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122106,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":59197,"timestamp":181425101312,"id":439,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122202,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":75129,"timestamp":181425157502,"id":441,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122258,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":324303,"timestamp":181424951966,"id":430,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122053,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181425276382,"id":442,"parentId":430,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1317883904","memory.heapUsed":"168706416","memory.heapTotal":"183160832"},"startTime":1774558122377,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":283430,"timestamp":181424998396,"id":432,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122099,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181425281948,"id":443,"parentId":432,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1317883904","memory.heapUsed":"168871064","memory.heapTotal":"183160832"},"startTime":1774558122383,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":284120,"timestamp":181424999952,"id":434,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122101,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181425284176,"id":444,"parentId":434,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1317883904","memory.heapUsed":"168917776","memory.heapTotal":"183160832"},"startTime":1774558122385,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1572,"timestamp":181425285365,"id":446,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122386,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":317796,"timestamp":181425004184,"id":436,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122105,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":36,"timestamp":181425322347,"id":447,"parentId":436,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1318146048","memory.heapUsed":"168326144","memory.heapTotal":"191549440"},"startTime":1774558122423,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":227199,"timestamp":181425100397,"id":438,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122201,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":17,"timestamp":181425327762,"id":448,"parentId":438,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1318146048","memory.heapUsed":"168418056","memory.heapTotal":"191549440"},"startTime":1774558122429,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":179437,"timestamp":181425156492,"id":440,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122257,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181425336096,"id":453,"parentId":440,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1318539264","memory.heapUsed":"169162880","memory.heapTotal":"192016384"},"startTime":1774558122437,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7562,"timestamp":181425330106,"id":450,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122431,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":52075,"timestamp":181425334283,"id":452,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122435,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":45372,"timestamp":181425384099,"id":455,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122485,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":47479,"timestamp":181425427622,"id":457,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122529,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":38476,"timestamp":181425473599,"id":459,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122575,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":273879,"timestamp":181425284775,"id":445,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122386,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":28,"timestamp":181425558950,"id":460,"parentId":445,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1326272512","memory.heapUsed":"175657176","memory.heapTotal":"192016384"},"startTime":1774558122660,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":243148,"timestamp":181425328810,"id":449,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122430,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181425572233,"id":463,"parentId":449,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1326534656","memory.heapUsed":"175955336","memory.heapTotal":"192278528"},"startTime":1774558122673,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7462,"timestamp":181425565909,"id":462,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122667,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":289510,"timestamp":181425333439,"id":451,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122434,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":181425623144,"id":464,"parentId":451,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1328762880","memory.heapUsed":"173003800","memory.heapTotal":"192540672"},"startTime":1774558122724,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":243933,"timestamp":181425382819,"id":454,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122484,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181425626878,"id":465,"parentId":454,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1328762880","memory.heapUsed":"173118248","memory.heapTotal":"192540672"},"startTime":1774558122728,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":205563,"timestamp":181425426717,"id":456,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122528,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181425632422,"id":466,"parentId":456,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1328762880","memory.heapUsed":"173256592","memory.heapTotal":"192540672"},"startTime":1774558122733,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4599,"timestamp":181425634072,"id":468,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122735,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":202337,"timestamp":181425472574,"id":458,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122574,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181425675020,"id":471,"parentId":458,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1329025024","memory.heapUsed":"175940944","memory.heapTotal":"192802816"},"startTime":1774558122776,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":40569,"timestamp":181425637373,"id":470,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122738,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":50659,"timestamp":181425675964,"id":473,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122777,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":43892,"timestamp":181425724570,"id":475,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122826,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1910,"timestamp":181425793270,"id":477,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122894,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":262186,"timestamp":181425565075,"id":461,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122666,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181425827357,"id":478,"parentId":461,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1330860032","memory.heapUsed":"180207824","memory.heapTotal":"194899968"},"startTime":1774558122928,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1502,"timestamp":181425832607,"id":480,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122934,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":240580,"timestamp":181425632860,"id":467,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122734,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181425873541,"id":481,"parentId":467,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1333088256","memory.heapUsed":"177399016","memory.heapTotal":"213774336"},"startTime":1774558122975,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":237816,"timestamp":181425636700,"id":469,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122738,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181425874602,"id":482,"parentId":469,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1333088256","memory.heapUsed":"177444048","memory.heapTotal":"213774336"},"startTime":1774558122976,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":202407,"timestamp":181425675332,"id":472,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122776,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181425877826,"id":483,"parentId":472,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1333088256","memory.heapUsed":"177644672","memory.heapTotal":"213774336"},"startTime":1774558122979,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":155843,"timestamp":181425723414,"id":474,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122824,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181425879346,"id":484,"parentId":474,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1333088256","memory.heapUsed":"177721320","memory.heapTotal":"213774336"},"startTime":1774558122980,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5001,"timestamp":181425881858,"id":486,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122983,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":39715,"timestamp":181425883817,"id":488,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558122985,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":157029,"timestamp":181425792763,"id":476,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122894,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":26,"timestamp":181425950048,"id":489,"parentId":476,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1333612544","memory.heapUsed":"182623864","memory.heapTotal":"213774336"},"startTime":1774558123051,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6894,"timestamp":181425953153,"id":491,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558123054,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":49374,"timestamp":181425957772,"id":493,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558123059,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":52932,"timestamp":181426005411,"id":495,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558123106,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":274002,"timestamp":181425831628,"id":479,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122933,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181426105735,"id":496,"parentId":479,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1339248640","memory.heapUsed":"189902784","memory.heapTotal":"214560768"},"startTime":1774558123207,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":242676,"timestamp":181425880426,"id":485,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122981,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181426123242,"id":499,"parentId":485,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1340821504","memory.heapUsed":"180536008","memory.heapTotal":"216395776"},"startTime":1774558123224,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":12800,"timestamp":181426111699,"id":498,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558123213,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":268113,"timestamp":181425882509,"id":487,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558122983,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181426150750,"id":500,"parentId":487,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1342001152","memory.heapUsed":"183763496","memory.heapTotal":"217321472"},"startTime":1774558123252,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":201324,"timestamp":181425952393,"id":490,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558123053,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181426153876,"id":501,"parentId":490,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1342001152","memory.heapUsed":"183832776","memory.heapTotal":"217321472"},"startTime":1774558123255,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":198614,"timestamp":181425956648,"id":492,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558123058,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181426155344,"id":502,"parentId":492,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1342001152","memory.heapUsed":"183885048","memory.heapTotal":"217321472"},"startTime":1774558123256,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":151907,"timestamp":181426004485,"id":494,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558123105,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181426156505,"id":503,"parentId":494,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1342001152","memory.heapUsed":"183928536","memory.heapTotal":"217321472"},"startTime":1774558123257,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":48685,"timestamp":181426110896,"id":497,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558123212,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181426159684,"id":504,"parentId":497,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1342001152","memory.heapUsed":"183989776","memory.heapTotal":"217321472"},"startTime":1774558123261,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":1864,"timestamp":181613038661,"id":505,"tags":{"trigger":"middleware"},"startTime":1774558310140,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":29067,"timestamp":181613064846,"id":517,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310166,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":139526,"timestamp":181613063518,"id":515,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310164,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":175571,"timestamp":181613059906,"id":513,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310161,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":202507,"timestamp":181613055882,"id":511,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310157,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":229096,"timestamp":181613052868,"id":509,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310154,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":263495,"timestamp":181613048145,"id":507,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310149,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":91000,"timestamp":181613000789,"id":518,"parentId":3,"tags":{"updatedModules":[],"page":"/admin","isPageHidden":false},"startTime":1774558310442,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":285952,"timestamp":181613064280,"id":516,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310165,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":23,"timestamp":181613350546,"id":519,"parentId":516,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362120704","memory.heapUsed":"196018488","memory.heapTotal":"213168128"},"startTime":1774558310452,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":293409,"timestamp":181613059248,"id":512,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310160,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181613352782,"id":520,"parentId":512,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362120704","memory.heapUsed":"196060136","memory.heapTotal":"213168128"},"startTime":1774558310454,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":298574,"timestamp":181613055304,"id":510,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310156,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181613354011,"id":521,"parentId":510,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362120704","memory.heapUsed":"196102856","memory.heapTotal":"213168128"},"startTime":1774558310455,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":303019,"timestamp":181613052327,"id":508,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310153,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181613355468,"id":522,"parentId":508,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362120704","memory.heapUsed":"196144216","memory.heapTotal":"213168128"},"startTime":1774558310456,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":293522,"timestamp":181613063030,"id":514,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310164,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181613356676,"id":523,"parentId":514,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362120704","memory.heapUsed":"196185728","memory.heapTotal":"213168128"},"startTime":1774558310458,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":310118,"timestamp":181613047654,"id":506,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310149,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181613357891,"id":524,"parentId":506,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362120704","memory.heapUsed":"196228592","memory.heapTotal":"213168128"},"startTime":1774558310459,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8643,"timestamp":181613369707,"id":526,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310471,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":39606,"timestamp":181613371498,"id":528,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310472,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":70485,"timestamp":181613372776,"id":530,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310474,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":129205,"timestamp":181613373905,"id":532,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310475,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":173868,"timestamp":181613374859,"id":534,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310476,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":225150,"timestamp":181613376974,"id":536,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310478,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":300599,"timestamp":181613370734,"id":527,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310472,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181613671476,"id":537,"parentId":527,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"197428224","memory.heapTotal":"202944512"},"startTime":1774558310772,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":300396,"timestamp":181613372144,"id":529,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310473,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181613672660,"id":538,"parentId":529,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"197471072","memory.heapTotal":"202944512"},"startTime":1774558310774,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":299557,"timestamp":181613374363,"id":533,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310475,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181613674048,"id":539,"parentId":533,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"197544720","memory.heapTotal":"202944512"},"startTime":1774558310775,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":301846,"timestamp":181613373392,"id":531,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310474,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181613675360,"id":540,"parentId":531,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"197595928","memory.heapTotal":"202944512"},"startTime":1774558310776,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":309392,"timestamp":181613368671,"id":525,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310470,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181613678192,"id":541,"parentId":525,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"197773912","memory.heapTotal":"202944512"},"startTime":1774558310779,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":303398,"timestamp":181613376040,"id":535,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310477,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181613679538,"id":542,"parentId":535,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"197816360","memory.heapTotal":"202944512"},"startTime":1774558310781,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8924,"timestamp":181613682338,"id":544,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310783,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":47452,"timestamp":181613685417,"id":546,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310786,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":93799,"timestamp":181613689742,"id":548,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310791,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":47673,"timestamp":181613778930,"id":550,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310880,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":80779,"timestamp":181613780133,"id":552,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310881,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":120505,"timestamp":181613781226,"id":554,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558310882,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":263820,"timestamp":181613681751,"id":543,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310783,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181613945737,"id":555,"parentId":543,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"201630520","memory.heapTotal":"214478848"},"startTime":1774558311047,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":262627,"timestamp":181613684670,"id":545,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310786,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181613947445,"id":556,"parentId":545,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"201675008","memory.heapTotal":"214478848"},"startTime":1774558311048,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":263150,"timestamp":181613689105,"id":547,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310790,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181613952422,"id":557,"parentId":547,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"201865016","memory.heapTotal":"214478848"},"startTime":1774558311053,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":175788,"timestamp":181613778208,"id":549,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310879,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181613954166,"id":558,"parentId":549,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"201909016","memory.heapTotal":"214478848"},"startTime":1774558311055,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":176600,"timestamp":181613780618,"id":553,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310882,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181613957397,"id":559,"parentId":553,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"201980664","memory.heapTotal":"214478848"},"startTime":1774558311058,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":179267,"timestamp":181613779505,"id":551,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558310880,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181613958911,"id":560,"parentId":551,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1362251776","memory.heapUsed":"202023112","memory.heapTotal":"214478848"},"startTime":1774558311060,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5122,"timestamp":181613960082,"id":562,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558311061,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":43163,"timestamp":181613961328,"id":564,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558311062,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5574,"timestamp":181614039713,"id":566,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558311141,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":37304,"timestamp":181614040642,"id":568,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558311142,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":62863,"timestamp":181614043111,"id":570,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558311144,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":89669,"timestamp":181614044361,"id":572,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558311145,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":241958,"timestamp":181613960663,"id":563,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558311062,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181614202810,"id":573,"parentId":563,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1367101440","memory.heapUsed":"207850368","memory.heapTotal":"228380672"},"startTime":1774558311304,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":252053,"timestamp":181613959333,"id":561,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558311060,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":19,"timestamp":181614211662,"id":574,"parentId":561,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1367101440","memory.heapUsed":"207978312","memory.heapTotal":"228380672"},"startTime":1774558311313,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":173120,"timestamp":181614040177,"id":567,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558311141,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":17,"timestamp":181614213497,"id":575,"parentId":567,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1367101440","memory.heapUsed":"208026088","memory.heapTotal":"228380672"},"startTime":1774558311314,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":181885,"timestamp":181614039189,"id":565,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558311140,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":27,"timestamp":181614221404,"id":578,"parentId":565,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1367101440","memory.heapUsed":"208239960","memory.heapTotal":"228380672"},"startTime":1774558311322,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":179177,"timestamp":181614043680,"id":571,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558311145,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":20,"timestamp":181614222992,"id":579,"parentId":571,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1367101440","memory.heapUsed":"208281536","memory.heapTotal":"228380672"},"startTime":1774558311324,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":181813,"timestamp":181614042373,"id":569,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558311143,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181614224307,"id":580,"parentId":569,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1367101440","memory.heapUsed":"208323112","memory.heapTotal":"228380672"},"startTime":1774558311325,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8795,"timestamp":181614216844,"id":577,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558311318,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3549,"timestamp":181614326165,"id":582,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558311427,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":161808,"timestamp":181614215303,"id":576,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558311316,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":17,"timestamp":181614377247,"id":583,"parentId":576,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1367715840","memory.heapUsed":"186916944","memory.heapTotal":"229167104"},"startTime":1774558311478,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":55726,"timestamp":181614324423,"id":581,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558311425,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181614380269,"id":584,"parentId":581,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1367715840","memory.heapUsed":"186970792","memory.heapTotal":"229167104"},"startTime":1774558311481,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":1267,"timestamp":181783964790,"id":587,"tags":{"trigger":"middleware"},"startTime":1774558481066,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":44437,"timestamp":181783958052,"id":586,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481059,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":197000,"timestamp":181783833579,"id":588,"parentId":3,"tags":{"updatedModules":[],"page":"/admin","isPageHidden":false},"startTime":1774558481227,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":170786,"timestamp":181783957373,"id":585,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481058,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181784128262,"id":589,"parentId":585,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1357488128","memory.heapUsed":"183022552","memory.heapTotal":"189943808"},"startTime":1774558481229,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2298,"timestamp":181784132614,"id":591,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481234,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4702,"timestamp":181784155310,"id":593,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481256,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":42238,"timestamp":181784157849,"id":595,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481259,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":68122,"timestamp":181784159137,"id":597,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481260,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":64578,"timestamp":181784198459,"id":599,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481299,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":48369,"timestamp":181784260828,"id":601,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481362,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":227072,"timestamp":181784132066,"id":590,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481233,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181784359264,"id":602,"parentId":590,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188249480","memory.heapTotal":"198307840"},"startTime":1774558481460,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":204538,"timestamp":181784157278,"id":594,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481258,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181784361920,"id":603,"parentId":594,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188326632","memory.heapTotal":"198307840"},"startTime":1774558481463,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":210780,"timestamp":181784154936,"id":592,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481256,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181784365824,"id":604,"parentId":592,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188369400","memory.heapTotal":"198307840"},"startTime":1774558481467,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":209524,"timestamp":181784158550,"id":596,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481260,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181784368175,"id":605,"parentId":596,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188416480","memory.heapTotal":"198307840"},"startTime":1774558481469,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":171487,"timestamp":181784197749,"id":598,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481299,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181784369332,"id":606,"parentId":598,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188459528","memory.heapTotal":"198307840"},"startTime":1774558481470,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":118766,"timestamp":181784259809,"id":600,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481361,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181784378686,"id":607,"parentId":600,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366138880","memory.heapUsed":"188895296","memory.heapTotal":"198307840"},"startTime":1774558481480,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":21053,"timestamp":181784380058,"id":609,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481481,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":147252,"timestamp":181784381828,"id":611,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481483,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":184960,"timestamp":181784383552,"id":613,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481485,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":215707,"timestamp":181784395097,"id":615,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481496,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":248251,"timestamp":181784399632,"id":617,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481501,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3045,"timestamp":181784698058,"id":619,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481799,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":379997,"timestamp":181784379102,"id":608,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481480,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181784759244,"id":620,"parentId":608,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371099136","memory.heapUsed":"188711200","memory.heapTotal":"206487552"},"startTime":1774558481860,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":380407,"timestamp":181784381075,"id":610,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481482,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181784761623,"id":621,"parentId":610,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371230208","memory.heapUsed":"188785952","memory.heapTotal":"206749696"},"startTime":1774558481863,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":380276,"timestamp":181784382620,"id":612,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481484,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181784763632,"id":622,"parentId":612,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371230208","memory.heapUsed":"188828504","memory.heapTotal":"206749696"},"startTime":1774558481865,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":373396,"timestamp":181784398738,"id":616,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481500,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181784772244,"id":623,"parentId":616,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371492352","memory.heapUsed":"189085576","memory.heapTotal":"206749696"},"startTime":1774558481873,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":381875,"timestamp":181784394368,"id":614,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481495,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181784776343,"id":624,"parentId":614,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371623424","memory.heapUsed":"189176592","memory.heapTotal":"206749696"},"startTime":1774558481877,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":88697,"timestamp":181784696484,"id":618,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481797,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181784785285,"id":631,"parentId":618,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1372016640","memory.heapUsed":"189552120","memory.heapTotal":"206749696"},"startTime":1774558481886,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":9688,"timestamp":181784777398,"id":626,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481878,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":46340,"timestamp":181784779629,"id":628,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481881,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":79926,"timestamp":181784781410,"id":630,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481882,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4116,"timestamp":181784905046,"id":633,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482006,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":10025,"timestamp":181784944042,"id":635,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482045,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":42782,"timestamp":181784944879,"id":637,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482046,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":237339,"timestamp":181784780449,"id":629,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481881,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181785017922,"id":638,"parentId":629,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1378177024","memory.heapUsed":"194215432","memory.heapTotal":"210419712"},"startTime":1774558482119,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":241403,"timestamp":181784778206,"id":627,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481879,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181785019704,"id":639,"parentId":627,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1378177024","memory.heapUsed":"194266112","memory.heapTotal":"210419712"},"startTime":1774558482121,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":245399,"timestamp":181784776729,"id":625,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481878,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181785022222,"id":640,"parentId":625,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1378177024","memory.heapUsed":"194380928","memory.heapTotal":"210419712"},"startTime":1774558482123,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":122119,"timestamp":181784904375,"id":632,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482005,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181785026720,"id":641,"parentId":632,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1378177024","memory.heapUsed":"194515048","memory.heapTotal":"210419712"},"startTime":1774558482128,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7960,"timestamp":181785028994,"id":643,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482130,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":33052,"timestamp":181785032179,"id":645,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482133,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":150238,"timestamp":181784944496,"id":636,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482045,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181785094837,"id":648,"parentId":636,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1381322752","memory.heapUsed":"194761760","memory.heapTotal":"230219776"},"startTime":1774558482196,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":152289,"timestamp":181784943543,"id":634,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482045,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181785095968,"id":649,"parentId":634,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1381322752","memory.heapUsed":"194804472","memory.heapTotal":"230219776"},"startTime":1774558482197,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":64235,"timestamp":181785035678,"id":647,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482137,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":28793,"timestamp":181785097925,"id":651,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482199,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2055,"timestamp":181785157933,"id":653,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482259,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":28908,"timestamp":181785158908,"id":655,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482260,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":193226,"timestamp":181785028460,"id":642,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482129,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181785221787,"id":656,"parentId":642,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1386172416","memory.heapUsed":"204458520","memory.heapTotal":"230481920"},"startTime":1774558482323,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":191250,"timestamp":181785031503,"id":644,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482132,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":181785222829,"id":657,"parentId":644,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1386172416","memory.heapUsed":"204504832","memory.heapTotal":"230481920"},"startTime":1774558482324,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":128624,"timestamp":181785096549,"id":650,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482198,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":181785225256,"id":658,"parentId":650,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1386303488","memory.heapUsed":"204650520","memory.heapTotal":"230481920"},"startTime":1774558482326,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":192818,"timestamp":181785034429,"id":646,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482135,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181785227341,"id":661,"parentId":646,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1386434560","memory.heapUsed":"204778568","memory.heapTotal":"230481920"},"startTime":1774558482328,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2567,"timestamp":181785225962,"id":660,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482327,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":114022,"timestamp":181785158416,"id":654,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482259,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181785272546,"id":662,"parentId":654,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1390235648","memory.heapUsed":"196685864","memory.heapTotal":"232841216"},"startTime":1774558482374,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":116132,"timestamp":181785157374,"id":652,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482258,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181785273611,"id":663,"parentId":652,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1390235648","memory.heapUsed":"196727688","memory.heapTotal":"232841216"},"startTime":1774558482375,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":51238,"timestamp":181785225499,"id":659,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482326,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181785276848,"id":664,"parentId":659,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1390235648","memory.heapUsed":"196791928","memory.heapTotal":"232841216"},"startTime":1774558482378,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":363,"timestamp":181789013263,"id":665,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486114,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":212,"timestamp":181789013679,"id":666,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486115,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":229,"timestamp":181789014506,"id":667,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486115,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":197,"timestamp":181789014777,"id":668,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486116,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7419,"timestamp":181789016391,"id":670,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558486117,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1343,"timestamp":181789023989,"id":671,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558486125,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":83112,"timestamp":181789015803,"id":669,"tags":{"url":"/admin/clubs?_rsc=1b24o"},"startTime":1774558486117,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181789098990,"id":672,"parentId":669,"tags":{"url":"/admin/clubs?_rsc=1b24o","memory.rss":"1695371264","memory.heapUsed":"207418936","memory.heapTotal":"238686208"},"startTime":1774558486200,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":248,"timestamp":181789119111,"id":673,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486220,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":187,"timestamp":181789119410,"id":674,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486220,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":226,"timestamp":181789120158,"id":675,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486221,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":181,"timestamp":181789120422,"id":676,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486221,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3088,"timestamp":181789123940,"id":678,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558486225,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":968,"timestamp":181789127152,"id":679,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558486228,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":133476,"timestamp":181789123448,"id":677,"tags":{"url":"/admin/clubs"},"startTime":1774558486224,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":31,"timestamp":181789257336,"id":680,"parentId":677,"tags":{"url":"/admin/clubs","memory.rss":"1714114560","memory.heapUsed":"217592360","memory.heapTotal":"242475008"},"startTime":1774558486358,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":267,"timestamp":181789441634,"id":681,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774558486543,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":212,"timestamp":181789441948,"id":682,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774558486543,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":222,"timestamp":181789442707,"id":683,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774558486544,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":191,"timestamp":181789442972,"id":684,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774558486544,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":359642,"timestamp":181800416962,"id":687,"tags":{"trigger":"/admin/club"},"startTime":1774558497518,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":44437,"timestamp":181783958052,"id":586,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481059,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":197000,"timestamp":181783833579,"id":588,"parentId":3,"tags":{"updatedModules":[],"page":"/admin","isPageHidden":false},"startTime":1774558481227,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":170786,"timestamp":181783957373,"id":585,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481058,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181784128262,"id":589,"parentId":585,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1357488128","memory.heapUsed":"183022552","memory.heapTotal":"189943808"},"startTime":1774558481229,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2298,"timestamp":181784132614,"id":591,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481234,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4702,"timestamp":181784155310,"id":593,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481256,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":42238,"timestamp":181784157849,"id":595,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481259,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":68122,"timestamp":181784159137,"id":597,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481260,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":64578,"timestamp":181784198459,"id":599,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481299,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":48369,"timestamp":181784260828,"id":601,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481362,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":227072,"timestamp":181784132066,"id":590,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481233,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181784359264,"id":602,"parentId":590,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188249480","memory.heapTotal":"198307840"},"startTime":1774558481460,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":204538,"timestamp":181784157278,"id":594,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481258,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181784361920,"id":603,"parentId":594,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188326632","memory.heapTotal":"198307840"},"startTime":1774558481463,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":210780,"timestamp":181784154936,"id":592,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481256,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181784365824,"id":604,"parentId":592,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188369400","memory.heapTotal":"198307840"},"startTime":1774558481467,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":209524,"timestamp":181784158550,"id":596,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481260,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181784368175,"id":605,"parentId":596,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188416480","memory.heapTotal":"198307840"},"startTime":1774558481469,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":171487,"timestamp":181784197749,"id":598,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481299,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181784369332,"id":606,"parentId":598,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366007808","memory.heapUsed":"188459528","memory.heapTotal":"198307840"},"startTime":1774558481470,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":118766,"timestamp":181784259809,"id":600,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481361,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181784378686,"id":607,"parentId":600,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1366138880","memory.heapUsed":"188895296","memory.heapTotal":"198307840"},"startTime":1774558481480,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":21053,"timestamp":181784380058,"id":609,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481481,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":147252,"timestamp":181784381828,"id":611,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481483,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":184960,"timestamp":181784383552,"id":613,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481485,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":215707,"timestamp":181784395097,"id":615,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481496,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":248251,"timestamp":181784399632,"id":617,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481501,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3045,"timestamp":181784698058,"id":619,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481799,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":379997,"timestamp":181784379102,"id":608,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481480,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181784759244,"id":620,"parentId":608,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371099136","memory.heapUsed":"188711200","memory.heapTotal":"206487552"},"startTime":1774558481860,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":380407,"timestamp":181784381075,"id":610,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481482,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181784761623,"id":621,"parentId":610,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371230208","memory.heapUsed":"188785952","memory.heapTotal":"206749696"},"startTime":1774558481863,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":380276,"timestamp":181784382620,"id":612,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481484,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181784763632,"id":622,"parentId":612,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371230208","memory.heapUsed":"188828504","memory.heapTotal":"206749696"},"startTime":1774558481865,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":373396,"timestamp":181784398738,"id":616,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481500,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181784772244,"id":623,"parentId":616,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371492352","memory.heapUsed":"189085576","memory.heapTotal":"206749696"},"startTime":1774558481873,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":381875,"timestamp":181784394368,"id":614,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481495,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181784776343,"id":624,"parentId":614,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1371623424","memory.heapUsed":"189176592","memory.heapTotal":"206749696"},"startTime":1774558481877,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":88697,"timestamp":181784696484,"id":618,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481797,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181784785285,"id":631,"parentId":618,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1372016640","memory.heapUsed":"189552120","memory.heapTotal":"206749696"},"startTime":1774558481886,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":9688,"timestamp":181784777398,"id":626,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481878,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":46340,"timestamp":181784779629,"id":628,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481881,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":79926,"timestamp":181784781410,"id":630,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558481882,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4116,"timestamp":181784905046,"id":633,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482006,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":10025,"timestamp":181784944042,"id":635,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482045,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":42782,"timestamp":181784944879,"id":637,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482046,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":237339,"timestamp":181784780449,"id":629,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481881,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181785017922,"id":638,"parentId":629,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1378177024","memory.heapUsed":"194215432","memory.heapTotal":"210419712"},"startTime":1774558482119,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":241403,"timestamp":181784778206,"id":627,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481879,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181785019704,"id":639,"parentId":627,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1378177024","memory.heapUsed":"194266112","memory.heapTotal":"210419712"},"startTime":1774558482121,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":245399,"timestamp":181784776729,"id":625,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558481878,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181785022222,"id":640,"parentId":625,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1378177024","memory.heapUsed":"194380928","memory.heapTotal":"210419712"},"startTime":1774558482123,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":122119,"timestamp":181784904375,"id":632,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482005,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":181785026720,"id":641,"parentId":632,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1378177024","memory.heapUsed":"194515048","memory.heapTotal":"210419712"},"startTime":1774558482128,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7960,"timestamp":181785028994,"id":643,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482130,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":33052,"timestamp":181785032179,"id":645,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482133,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":150238,"timestamp":181784944496,"id":636,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482045,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181785094837,"id":648,"parentId":636,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1381322752","memory.heapUsed":"194761760","memory.heapTotal":"230219776"},"startTime":1774558482196,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":152289,"timestamp":181784943543,"id":634,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482045,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181785095968,"id":649,"parentId":634,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1381322752","memory.heapUsed":"194804472","memory.heapTotal":"230219776"},"startTime":1774558482197,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":64235,"timestamp":181785035678,"id":647,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482137,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":28793,"timestamp":181785097925,"id":651,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482199,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2055,"timestamp":181785157933,"id":653,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482259,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":28908,"timestamp":181785158908,"id":655,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482260,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":193226,"timestamp":181785028460,"id":642,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482129,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181785221787,"id":656,"parentId":642,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1386172416","memory.heapUsed":"204458520","memory.heapTotal":"230481920"},"startTime":1774558482323,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":191250,"timestamp":181785031503,"id":644,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482132,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":181785222829,"id":657,"parentId":644,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1386172416","memory.heapUsed":"204504832","memory.heapTotal":"230481920"},"startTime":1774558482324,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":128624,"timestamp":181785096549,"id":650,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482198,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":181785225256,"id":658,"parentId":650,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1386303488","memory.heapUsed":"204650520","memory.heapTotal":"230481920"},"startTime":1774558482326,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":192818,"timestamp":181785034429,"id":646,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482135,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181785227341,"id":661,"parentId":646,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1386434560","memory.heapUsed":"204778568","memory.heapTotal":"230481920"},"startTime":1774558482328,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2567,"timestamp":181785225962,"id":660,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774558482327,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":114022,"timestamp":181785158416,"id":654,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482259,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181785272546,"id":662,"parentId":654,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1390235648","memory.heapUsed":"196685864","memory.heapTotal":"232841216"},"startTime":1774558482374,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":116132,"timestamp":181785157374,"id":652,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482258,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181785273611,"id":663,"parentId":652,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1390235648","memory.heapUsed":"196727688","memory.heapTotal":"232841216"},"startTime":1774558482375,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":51238,"timestamp":181785225499,"id":659,"tags":{"url":"/admin?_rsc=18oqh"},"startTime":1774558482326,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181785276848,"id":664,"parentId":659,"tags":{"url":"/admin?_rsc=18oqh","memory.rss":"1390235648","memory.heapUsed":"196791928","memory.heapTotal":"232841216"},"startTime":1774558482378,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":363,"timestamp":181789013263,"id":665,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486114,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":212,"timestamp":181789013679,"id":666,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486115,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":229,"timestamp":181789014506,"id":667,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486115,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":197,"timestamp":181789014777,"id":668,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486116,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7419,"timestamp":181789016391,"id":670,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558486117,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1343,"timestamp":181789023989,"id":671,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558486125,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":83112,"timestamp":181789015803,"id":669,"tags":{"url":"/admin/clubs?_rsc=1b24o"},"startTime":1774558486117,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181789098990,"id":672,"parentId":669,"tags":{"url":"/admin/clubs?_rsc=1b24o","memory.rss":"1695371264","memory.heapUsed":"207418936","memory.heapTotal":"238686208"},"startTime":1774558486200,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":248,"timestamp":181789119111,"id":673,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486220,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":187,"timestamp":181789119410,"id":674,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486220,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":226,"timestamp":181789120158,"id":675,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486221,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":181,"timestamp":181789120422,"id":676,"parentId":3,"tags":{"inputPage":"/admin/clubs"},"startTime":1774558486221,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3088,"timestamp":181789123940,"id":678,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558486225,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":968,"timestamp":181789127152,"id":679,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558486228,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":133476,"timestamp":181789123448,"id":677,"tags":{"url":"/admin/clubs"},"startTime":1774558486224,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":31,"timestamp":181789257336,"id":680,"parentId":677,"tags":{"url":"/admin/clubs","memory.rss":"1714114560","memory.heapUsed":"217592360","memory.heapTotal":"242475008"},"startTime":1774558486358,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":267,"timestamp":181789441634,"id":681,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774558486543,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":212,"timestamp":181789441948,"id":682,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774558486543,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":222,"timestamp":181789442707,"id":683,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774558486544,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":191,"timestamp":181789442972,"id":684,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774558486544,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":359642,"timestamp":181800416962,"id":687,"tags":{"trigger":"/admin/club"},"startTime":1774558497518,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":360199,"timestamp":181800416894,"id":686,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558497518,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":575801,"timestamp":181800416445,"id":685,"tags":{"url":"/admin/club"},"startTime":1774558497517,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181800992352,"id":688,"parentId":685,"tags":{"url":"/admin/club","memory.rss":"1445376000","memory.heapUsed":"233350064","memory.heapTotal":"260788224"},"startTime":1774558498093,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":288,"timestamp":181801225582,"id":689,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774558498327,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":233,"timestamp":181801225922,"id":690,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774558498327,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":786,"timestamp":181801226725,"id":691,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774558498328,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":232,"timestamp":181801227564,"id":692,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774558498329,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":198,"timestamp":181801457193,"id":693,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774558498558,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":129,"timestamp":181801457428,"id":694,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774558498558,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":142,"timestamp":181801457908,"id":695,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774558498559,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":119,"timestamp":181801458079,"id":696,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774558498559,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2805,"timestamp":181801458708,"id":698,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558498560,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1958,"timestamp":181801461611,"id":699,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774558498563,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5111,"timestamp":181804216929,"id":701,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558501318,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":35355,"timestamp":181804214949,"id":700,"tags":{"url":"/admin/club?_rsc=hkw9d"},"startTime":1774558501316,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":181804250396,"id":702,"parentId":700,"tags":{"url":"/admin/club?_rsc=hkw9d","memory.rss":"1515786240","memory.heapUsed":"233369736","memory.heapTotal":"259424256"},"startTime":1774558501351,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":34978,"timestamp":181805560563,"id":704,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774558502662,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":126420,"timestamp":181805559381,"id":703,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774558502660,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":181805685885,"id":705,"parentId":703,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"1454653440","memory.heapUsed":"235583360","memory.heapTotal":"268640256"},"startTime":1774558502787,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3354,"timestamp":181806875448,"id":707,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558503976,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":34046,"timestamp":181806873680,"id":706,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774558503975,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181806907830,"id":708,"parentId":706,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1454256128","memory.heapUsed":"219157656","memory.heapTotal":"270565376"},"startTime":1774558504009,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":1362,"timestamp":181959102097,"id":709,"tags":{"trigger":"middleware"},"startTime":1774558656203,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":15442,"timestamp":181959123164,"id":711,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656224,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":147000,"timestamp":181959035420,"id":712,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":false},"startTime":1774558656377,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":184473,"timestamp":181959105491,"id":710,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656206,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":16,"timestamp":181959292157,"id":713,"parentId":710,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1415970816","memory.heapUsed":"218427856","memory.heapTotal":"227450880"},"startTime":1774558656393,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4822,"timestamp":181959304251,"id":715,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656405,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6518,"timestamp":181959355659,"id":717,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656457,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":39161,"timestamp":181959356790,"id":719,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656458,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":60527,"timestamp":181959361133,"id":721,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656462,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6447,"timestamp":181959454189,"id":723,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656555,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":39834,"timestamp":181959458590,"id":725,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656560,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":263320,"timestamp":181959303398,"id":714,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656404,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181959566843,"id":726,"parentId":714,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1425932288","memory.heapUsed":"225289168","memory.heapTotal":"235782144"},"startTime":1774558656668,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":217118,"timestamp":181959354988,"id":716,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656456,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":181959572265,"id":727,"parentId":716,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1425932288","memory.heapUsed":"225424400","memory.heapTotal":"235782144"},"startTime":1774558656673,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":218090,"timestamp":181959356139,"id":718,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656457,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":24,"timestamp":181959575213,"id":728,"parentId":718,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1425932288","memory.heapUsed":"225467112","memory.heapTotal":"235782144"},"startTime":1774558656676,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":225276,"timestamp":181959360478,"id":720,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656461,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":17,"timestamp":181959585915,"id":731,"parentId":720,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1425932288","memory.heapUsed":"225625928","memory.heapTotal":"235782144"},"startTime":1774558656687,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":11374,"timestamp":181959578971,"id":730,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656680,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":190848,"timestamp":181959457410,"id":724,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656558,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181959648377,"id":732,"parentId":724,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1426849792","memory.heapUsed":"225661544","memory.heapTotal":"236830720"},"startTime":1774558656749,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":196664,"timestamp":181959453415,"id":722,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656554,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181959650208,"id":733,"parentId":722,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1426849792","memory.heapUsed":"225704384","memory.heapTotal":"236830720"},"startTime":1774558656751,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7473,"timestamp":181959652282,"id":735,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656753,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":54249,"timestamp":181959654555,"id":737,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656756,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":104722,"timestamp":181959657213,"id":739,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656758,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5205,"timestamp":181959806019,"id":741,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656907,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":82568,"timestamp":181959808595,"id":743,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558656910,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":360262,"timestamp":181959577845,"id":729,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656679,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181959938215,"id":744,"parentId":729,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1430630400","memory.heapUsed":"221043704","memory.heapTotal":"245641216"},"startTime":1774558657039,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":293238,"timestamp":181959650878,"id":734,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656752,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181959944238,"id":745,"parentId":734,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1430761472","memory.heapUsed":"221233800","memory.heapTotal":"245641216"},"startTime":1774558657045,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":293710,"timestamp":181959653612,"id":736,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656755,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181959947428,"id":748,"parentId":736,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1430761472","memory.heapUsed":"221369992","memory.heapTotal":"245641216"},"startTime":1774558657048,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2794,"timestamp":181959945655,"id":747,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657047,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":335996,"timestamp":181959656173,"id":738,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656757,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181959992279,"id":749,"parentId":738,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1430892544","memory.heapUsed":"223888472","memory.heapTotal":"245641216"},"startTime":1774558657093,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":10135,"timestamp":181959997244,"id":751,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657098,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":251031,"timestamp":181959805258,"id":740,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656906,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":181960056449,"id":754,"parentId":740,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1431023616","memory.heapUsed":"220853736","memory.heapTotal":"245641216"},"startTime":1774558657157,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":251584,"timestamp":181959807036,"id":742,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558656908,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":16,"timestamp":181960058770,"id":755,"parentId":742,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1431023616","memory.heapUsed":"220896448","memory.heapTotal":"245641216"},"startTime":1774558657160,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":60737,"timestamp":181960004620,"id":753,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657106,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":45606,"timestamp":181960063779,"id":757,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657165,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5277,"timestamp":181960155405,"id":759,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657256,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":69615,"timestamp":181960156379,"id":761,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657257,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":329343,"timestamp":181959944971,"id":746,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657046,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181960274452,"id":762,"parentId":746,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1436921856","memory.heapUsed":"226763544","memory.heapTotal":"246829056"},"startTime":1774558657375,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":291633,"timestamp":181959995944,"id":750,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657097,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":181960287785,"id":763,"parentId":750,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1436921856","memory.heapUsed":"226920448","memory.heapTotal":"246829056"},"startTime":1774558657389,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7884,"timestamp":181960293695,"id":765,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657395,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":358631,"timestamp":181960003430,"id":752,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657104,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":181960362182,"id":766,"parentId":752,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1436921856","memory.heapUsed":"229537024","memory.heapTotal":"246829056"},"startTime":1774558657463,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":305487,"timestamp":181960063033,"id":756,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657164,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181960368620,"id":767,"parentId":756,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1436921856","memory.heapUsed":"229600184","memory.heapTotal":"246829056"},"startTime":1774558657470,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5110,"timestamp":181960387319,"id":769,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657488,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":288153,"timestamp":181960154908,"id":758,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657256,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181960443239,"id":772,"parentId":758,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1437577216","memory.heapUsed":"228134472","memory.heapTotal":"263606272"},"startTime":1774558657544,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":291133,"timestamp":181960155861,"id":760,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657257,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181960447123,"id":773,"parentId":760,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1437577216","memory.heapUsed":"228176640","memory.heapTotal":"263606272"},"startTime":1774558657548,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":17714,"timestamp":181960438534,"id":771,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657540,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":45563,"timestamp":181960454300,"id":775,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657555,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5983,"timestamp":181960541212,"id":777,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657642,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":49130,"timestamp":181960543346,"id":779,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657644,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":342833,"timestamp":181960292460,"id":764,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657393,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181960635413,"id":780,"parentId":764,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1442820096","memory.heapUsed":"238302608","memory.heapTotal":"264392704"},"startTime":1774558657736,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":259539,"timestamp":181960386182,"id":768,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657487,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181960645856,"id":783,"parentId":768,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1442951168","memory.heapUsed":"238559752","memory.heapTotal":"264392704"},"startTime":1774558657747,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4188,"timestamp":181960642915,"id":782,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558657744,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":260863,"timestamp":181960437846,"id":770,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657539,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181960698871,"id":784,"parentId":770,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1446359040","memory.heapUsed":"229811704","memory.heapTotal":"265965568"},"startTime":1774558657800,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":248307,"timestamp":181960452290,"id":774,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657553,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181960700706,"id":785,"parentId":774,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1446359040","memory.heapUsed":"229858288","memory.heapTotal":"265965568"},"startTime":1774558657802,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":162201,"timestamp":181960540268,"id":776,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657641,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181960702579,"id":786,"parentId":776,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1446359040","memory.heapUsed":"229918472","memory.heapTotal":"265965568"},"startTime":1774558657804,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":161161,"timestamp":181960542437,"id":778,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657643,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181960703701,"id":787,"parentId":778,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1446359040","memory.heapUsed":"229960136","memory.heapTotal":"265965568"},"startTime":1774558657805,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":63850,"timestamp":181960641922,"id":781,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558657743,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181960705892,"id":788,"parentId":781,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1446359040","memory.heapUsed":"230019800","memory.heapTotal":"265965568"},"startTime":1774558657807,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":3306,"timestamp":181990812757,"id":789,"tags":{"trigger":"middleware"},"startTime":1774558687914,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":25691,"timestamp":181990842387,"id":795,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558687943,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":145062,"timestamp":181990839106,"id":793,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558687940,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":181931,"timestamp":181990827894,"id":791,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558687929,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":200961,"timestamp":181990852142,"id":799,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558687953,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":229951,"timestamp":181990854015,"id":801,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558687955,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":274762,"timestamp":181990846246,"id":797,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558687947,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":136000,"timestamp":181990767489,"id":802,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":false},"startTime":1774558688258,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":330931,"timestamp":181990838367,"id":792,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558687939,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181991169396,"id":803,"parentId":792,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"243144240","memory.heapTotal":"261341184"},"startTime":1774558688270,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":328998,"timestamp":181990841341,"id":794,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558687942,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181991170428,"id":804,"parentId":794,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"243191928","memory.heapTotal":"261341184"},"startTime":1774558688271,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":352484,"timestamp":181990818768,"id":790,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558687920,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":181991171354,"id":805,"parentId":790,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"243236520","memory.heapTotal":"261341184"},"startTime":1774558688272,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":328452,"timestamp":181990845520,"id":796,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558687947,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":181991174072,"id":806,"parentId":796,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"243487680","memory.heapTotal":"261341184"},"startTime":1774558688275,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":323877,"timestamp":181990850921,"id":798,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558687952,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181991174897,"id":807,"parentId":798,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"243529360","memory.heapTotal":"261341184"},"startTime":1774558688276,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":323633,"timestamp":181990853221,"id":800,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558687954,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":20,"timestamp":181991176974,"id":808,"parentId":800,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"243571392","memory.heapTotal":"261341184"},"startTime":1774558688278,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7055,"timestamp":181991178546,"id":810,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688280,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":31780,"timestamp":181991179949,"id":812,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688281,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":70198,"timestamp":181991181521,"id":814,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688283,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5682,"timestamp":181991289685,"id":816,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688391,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":39470,"timestamp":181991290841,"id":818,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688392,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":77727,"timestamp":181991292072,"id":820,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688393,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":232180,"timestamp":181991178966,"id":811,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688280,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181991411292,"id":821,"parentId":811,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"247600624","memory.heapTotal":"265273344"},"startTime":1774558688512,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":234658,"timestamp":181991177986,"id":809,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688279,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181991412779,"id":822,"parentId":809,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"247645464","memory.heapTotal":"265273344"},"startTime":1774558688514,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":233852,"timestamp":181991180711,"id":813,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688282,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":25,"timestamp":181991414775,"id":823,"parentId":813,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"247701440","memory.heapTotal":"265273344"},"startTime":1774558688516,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":133121,"timestamp":181991290161,"id":817,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688391,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181991423399,"id":824,"parentId":817,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"247986976","memory.heapTotal":"265273344"},"startTime":1774558688524,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":137760,"timestamp":181991291314,"id":819,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688392,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181991429225,"id":829,"parentId":819,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"248220192","memory.heapTotal":"265273344"},"startTime":1774558688530,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":141318,"timestamp":181991289188,"id":815,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688390,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181991430646,"id":830,"parentId":815,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1462042624","memory.heapUsed":"248260200","memory.heapTotal":"265273344"},"startTime":1774558688532,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7283,"timestamp":181991424420,"id":826,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688525,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":54766,"timestamp":181991426782,"id":828,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688528,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8851,"timestamp":181991535894,"id":832,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688637,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":49902,"timestamp":181991541683,"id":834,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688643,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":41467,"timestamp":181991588986,"id":836,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688690,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":74887,"timestamp":181991590188,"id":838,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688691,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":289629,"timestamp":181991423736,"id":825,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688525,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181991713514,"id":839,"parentId":825,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1468465152","memory.heapUsed":"257612112","memory.heapTotal":"284147712"},"startTime":1774558688814,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":289802,"timestamp":181991425057,"id":827,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688526,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":25,"timestamp":181991714995,"id":840,"parentId":827,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1468465152","memory.heapUsed":"257655032","memory.heapTotal":"284147712"},"startTime":1774558688816,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":188099,"timestamp":181991535116,"id":831,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688636,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181991723372,"id":841,"parentId":831,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1468727296","memory.heapUsed":"257879576","memory.heapTotal":"284147712"},"startTime":1774558688824,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":189441,"timestamp":181991540909,"id":833,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688642,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":16,"timestamp":181991730509,"id":846,"parentId":833,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1468989440","memory.heapUsed":"258104528","memory.heapTotal":"284147712"},"startTime":1774558688831,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6279,"timestamp":181991725483,"id":843,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688826,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":50834,"timestamp":181991727751,"id":845,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688829,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":242011,"timestamp":181991588155,"id":835,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688689,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181991830308,"id":847,"parentId":835,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1474101248","memory.heapUsed":"251012672","memory.heapTotal":"286507008"},"startTime":1774558688931,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":241883,"timestamp":181991589567,"id":837,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688691,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181991831581,"id":848,"parentId":837,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1474101248","memory.heapUsed":"251052528","memory.heapTotal":"286507008"},"startTime":1774558688933,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6010,"timestamp":181991839186,"id":850,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688940,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":34704,"timestamp":181991840531,"id":852,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688942,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":64525,"timestamp":181991843045,"id":854,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688944,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":94029,"timestamp":181991844156,"id":856,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558688945,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":246200,"timestamp":181991724423,"id":842,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688825,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":181991970771,"id":857,"parentId":842,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1475018752","memory.heapUsed":"261331656","memory.heapTotal":"287031296"},"startTime":1774558689072,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":245337,"timestamp":181991726634,"id":844,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688828,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181991972107,"id":858,"parentId":844,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1475018752","memory.heapUsed":"261371544","memory.heapTotal":"287031296"},"startTime":1774558689073,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3717,"timestamp":181991986413,"id":860,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558689087,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":38314,"timestamp":181991987375,"id":862,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558689088,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":228404,"timestamp":181991839906,"id":851,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688941,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181992068512,"id":863,"parentId":851,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1480261632","memory.heapUsed":"260087544","memory.heapTotal":"292544512"},"startTime":1774558689169,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":231790,"timestamp":181991838461,"id":849,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688939,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181992070399,"id":864,"parentId":849,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1480261632","memory.heapUsed":"260131840","memory.heapTotal":"292544512"},"startTime":1774558689171,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":230249,"timestamp":181991842238,"id":853,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688943,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181992072673,"id":865,"parentId":853,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1480261632","memory.heapUsed":"260183912","memory.heapTotal":"292544512"},"startTime":1774558689174,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":234561,"timestamp":181991843570,"id":855,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558688945,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":181992078336,"id":866,"parentId":855,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1480392704","memory.heapUsed":"260366616","memory.heapTotal":"292544512"},"startTime":1774558689179,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4334,"timestamp":181992086569,"id":868,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558689188,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":60600,"timestamp":181992089165,"id":870,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558689190,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":265787,"timestamp":181991985718,"id":859,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558689087,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":181992251689,"id":871,"parentId":859,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1481220096","memory.heapUsed":"244356216","memory.heapTotal":"294903808"},"startTime":1774558689353,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":266728,"timestamp":181991986895,"id":861,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558689088,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181992253750,"id":872,"parentId":861,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1481220096","memory.heapUsed":"244400928","memory.heapTotal":"294903808"},"startTime":1774558689355,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":170432,"timestamp":181992085738,"id":867,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558689187,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":181992256296,"id":873,"parentId":867,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1481220096","memory.heapUsed":"244462672","memory.heapTotal":"294903808"},"startTime":1774558689357,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":170054,"timestamp":181992087274,"id":869,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558689188,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":181992257450,"id":874,"parentId":869,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1481220096","memory.heapUsed":"244503592","memory.heapTotal":"294903808"},"startTime":1774558689358,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":1599,"timestamp":182012408839,"id":875,"tags":{"trigger":"middleware"},"startTime":1774558709510,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":9966,"timestamp":182012442307,"id":881,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709543,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":167515,"timestamp":182012444507,"id":883,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709545,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":210583,"timestamp":182012433414,"id":879,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709534,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":257200,"timestamp":182012427432,"id":877,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709528,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4576,"timestamp":182012724737,"id":885,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709826,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":130000,"timestamp":182012366603,"id":886,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":false},"startTime":1774558709860,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4353,"timestamp":182012761600,"id":888,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709863,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":371075,"timestamp":182012443206,"id":882,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709544,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":182012814396,"id":889,"parentId":882,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443917824","memory.heapUsed":"243491944","memory.heapTotal":"255369216"},"startTime":1774558709915,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":374729,"timestamp":182012441567,"id":880,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709543,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":17,"timestamp":182012816499,"id":890,"parentId":880,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443917824","memory.heapUsed":"243533104","memory.heapTotal":"255369216"},"startTime":1774558709917,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":388023,"timestamp":182012432543,"id":878,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709534,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182012820706,"id":891,"parentId":878,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443917824","memory.heapUsed":"243573896","memory.heapTotal":"255369216"},"startTime":1774558709922,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":402746,"timestamp":182012421045,"id":876,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709522,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182012823924,"id":892,"parentId":876,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443917824","memory.heapUsed":"243614680","memory.heapTotal":"255369216"},"startTime":1774558709925,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":115124,"timestamp":182012724079,"id":884,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709825,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":182012839320,"id":901,"parentId":884,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1444048896","memory.heapUsed":"244362632","memory.heapTotal":"255369216"},"startTime":1774558709940,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6292,"timestamp":182012834122,"id":894,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709935,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":63112,"timestamp":182012835101,"id":896,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709936,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":113848,"timestamp":182012835858,"id":898,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709937,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":164197,"timestamp":182012836837,"id":900,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558709938,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":312861,"timestamp":182012760040,"id":887,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709861,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":182013073028,"id":902,"parentId":887,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1450864640","memory.heapUsed":"245553144","memory.heapTotal":"266641408"},"startTime":1774558710174,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7286,"timestamp":182013101684,"id":904,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710203,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":54271,"timestamp":182013107505,"id":906,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710208,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":397069,"timestamp":182012833490,"id":893,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709934,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":182013230655,"id":907,"parentId":893,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1453617152","memory.heapUsed":"250781768","memory.heapTotal":"267165696"},"startTime":1774558710332,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":397882,"timestamp":182012834616,"id":895,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709936,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182013232629,"id":908,"parentId":895,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1453617152","memory.heapUsed":"250824024","memory.heapTotal":"267165696"},"startTime":1774558710334,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":398674,"timestamp":182012836245,"id":899,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709937,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":182013235073,"id":909,"parentId":899,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1453617152","memory.heapUsed":"250871248","memory.heapTotal":"267165696"},"startTime":1774558710336,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":401330,"timestamp":182012835471,"id":897,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558709936,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":182013236931,"id":910,"parentId":897,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1453748224","memory.heapUsed":"250921784","memory.heapTotal":"267165696"},"startTime":1774558710338,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8881,"timestamp":182013271995,"id":912,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710373,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":37074,"timestamp":182013273953,"id":914,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710375,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":60622,"timestamp":182013276197,"id":916,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710377,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":91714,"timestamp":182013277633,"id":918,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710379,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":299365,"timestamp":182013106780,"id":905,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710208,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":182013406234,"id":919,"parentId":905,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1450528768","memory.heapUsed":"244411224","memory.heapTotal":"264966144"},"startTime":1774558710507,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":308938,"timestamp":182013098743,"id":903,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710200,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":182013407772,"id":920,"parentId":903,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1450528768","memory.heapUsed":"244474344","memory.heapTotal":"264966144"},"startTime":1774558710509,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4177,"timestamp":182013412613,"id":922,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710514,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":31737,"timestamp":182013415827,"id":924,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710517,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":230803,"timestamp":182013270455,"id":911,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710371,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":182013501416,"id":925,"parentId":911,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1455247360","memory.heapUsed":"245088896","memory.heapTotal":"283054080"},"startTime":1774558710602,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":227665,"timestamp":182013275166,"id":915,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710376,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":29,"timestamp":182013502990,"id":926,"parentId":915,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1455247360","memory.heapUsed":"245129448","memory.heapTotal":"283054080"},"startTime":1774558710604,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":228244,"timestamp":182013276878,"id":917,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710378,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":182013505228,"id":927,"parentId":917,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1455247360","memory.heapUsed":"245173360","memory.heapTotal":"283054080"},"startTime":1774558710606,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":233569,"timestamp":182013273086,"id":913,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710374,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182013506765,"id":928,"parentId":913,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1455247360","memory.heapUsed":"245213912","memory.heapTotal":"283054080"},"startTime":1774558710608,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5490,"timestamp":182013517033,"id":930,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710618,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":36212,"timestamp":182013517918,"id":932,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710619,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":67074,"timestamp":182013519514,"id":934,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710620,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":98282,"timestamp":182013520802,"id":936,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710622,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":245780,"timestamp":182013411881,"id":921,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710513,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":182013657772,"id":937,"parentId":921,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1459572736","memory.heapUsed":"256384800","memory.heapTotal":"284766208"},"startTime":1774558710759,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":248958,"timestamp":182013415296,"id":923,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710516,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":182013664398,"id":938,"parentId":923,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1459703808","memory.heapUsed":"256513912","memory.heapTotal":"284766208"},"startTime":1774558710765,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7736,"timestamp":182013667499,"id":940,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710768,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2412,"timestamp":182013717398,"id":942,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710818,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":244293,"timestamp":182013516486,"id":929,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710617,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":48,"timestamp":182013760996,"id":943,"parentId":929,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1465602048","memory.heapUsed":"250389272","memory.heapTotal":"286601216"},"startTime":1774558710862,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":245265,"timestamp":182013517452,"id":931,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710618,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182013762848,"id":944,"parentId":931,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1465602048","memory.heapUsed":"250434664","memory.heapTotal":"286601216"},"startTime":1774558710864,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":244185,"timestamp":182013520108,"id":935,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710621,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":182013764443,"id":945,"parentId":935,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1465602048","memory.heapUsed":"250475160","memory.heapTotal":"286601216"},"startTime":1774558710865,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":250792,"timestamp":182013518353,"id":933,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710619,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":29,"timestamp":182013769436,"id":946,"parentId":933,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1465602048","memory.heapUsed":"250587760","memory.heapTotal":"286601216"},"startTime":1774558710870,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7119,"timestamp":182013774316,"id":948,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710875,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":41780,"timestamp":182013778028,"id":950,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710879,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":73834,"timestamp":182013779687,"id":952,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710881,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":69347,"timestamp":182013818081,"id":954,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558710919,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":252858,"timestamp":182013665957,"id":939,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710767,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":30,"timestamp":182013918982,"id":955,"parentId":939,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1471369216","memory.heapUsed":"260776544","memory.heapTotal":"287125504"},"startTime":1774558711020,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":207271,"timestamp":182013716353,"id":941,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710817,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182013923762,"id":956,"parentId":941,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1471500288","memory.heapUsed":"260904216","memory.heapTotal":"287125504"},"startTime":1774558711025,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3811,"timestamp":182013928918,"id":958,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558711030,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2107,"timestamp":182013972498,"id":960,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558711073,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":229918,"timestamp":182013773546,"id":947,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710875,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":182014003671,"id":961,"parentId":947,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1477529600","memory.heapUsed":"256358368","memory.heapTotal":"291319808"},"startTime":1774558711105,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":229189,"timestamp":182013776664,"id":949,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710878,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":182014005959,"id":962,"parentId":949,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1477529600","memory.heapUsed":"256424624","memory.heapTotal":"291319808"},"startTime":1774558711107,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":228546,"timestamp":182013778597,"id":951,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710880,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182014007246,"id":963,"parentId":951,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1477529600","memory.heapUsed":"256468608","memory.heapTotal":"291319808"},"startTime":1774558711108,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":191348,"timestamp":182013817280,"id":953,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558710918,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":182014008746,"id":964,"parentId":953,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1477529600","memory.heapUsed":"256515952","memory.heapTotal":"291319808"},"startTime":1774558711110,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":83735,"timestamp":182013928047,"id":957,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558711029,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182014011908,"id":965,"parentId":957,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1477529600","memory.heapUsed":"256573832","memory.heapTotal":"291319808"},"startTime":1774558711113,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":42513,"timestamp":182013971769,"id":959,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558711073,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":182014014454,"id":966,"parentId":959,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1477529600","memory.heapUsed":"256621128","memory.heapTotal":"291319808"},"startTime":1774558711115,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":1826,"timestamp":182067963800,"id":967,"tags":{"trigger":"middleware"},"startTime":1774558765065,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":5019,"timestamp":182068003595,"id":979,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765105,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":136596,"timestamp":182068001051,"id":977,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765102,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":171064,"timestamp":182067997225,"id":975,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765098,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":220881,"timestamp":182067993174,"id":973,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765094,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":263271,"timestamp":182067990398,"id":971,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765091,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":307613,"timestamp":182067977295,"id":969,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765078,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":129000,"timestamp":182067926622,"id":980,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":false},"startTime":1774558765428,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":341155,"timestamp":182068002632,"id":978,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765104,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182068343929,"id":981,"parentId":978,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"264866280","memory.heapTotal":"272539648"},"startTime":1774558765445,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":344549,"timestamp":182068000300,"id":976,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765101,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":182068344954,"id":982,"parentId":976,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"264905824","memory.heapTotal":"272539648"},"startTime":1774558765446,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":350415,"timestamp":182067995666,"id":974,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765097,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":19,"timestamp":182068346280,"id":983,"parentId":974,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"264945304","memory.heapTotal":"272539648"},"startTime":1774558765447,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":362106,"timestamp":182067989615,"id":970,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765091,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":182068351931,"id":984,"parentId":970,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"265206008","memory.heapTotal":"272539648"},"startTime":1774558765453,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":362330,"timestamp":182067992428,"id":972,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765093,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":182068354906,"id":985,"parentId":972,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"265292448","memory.heapTotal":"272539648"},"startTime":1774558765456,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":385973,"timestamp":182067976672,"id":968,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765078,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":182068362776,"id":992,"parentId":968,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"265662376","memory.heapTotal":"272539648"},"startTime":1774558765464,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7876,"timestamp":182068356237,"id":987,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765457,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":44824,"timestamp":182068357917,"id":989,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765459,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":89198,"timestamp":182068361174,"id":991,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765462,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":53022,"timestamp":182068448896,"id":994,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765550,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3645,"timestamp":182068557428,"id":996,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765658,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":53407,"timestamp":182068559155,"id":998,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765660,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":325617,"timestamp":182068356959,"id":988,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765458,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":182068682718,"id":999,"parentId":988,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"269610712","memory.heapTotal":"279093248"},"startTime":1774558765784,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":330010,"timestamp":182068355316,"id":986,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765456,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182068685467,"id":1000,"parentId":986,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"269655280","memory.heapTotal":"279093248"},"startTime":1774558765786,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":331523,"timestamp":182068360208,"id":990,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765461,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":13,"timestamp":182068691868,"id":1001,"parentId":990,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"269774592","memory.heapTotal":"279093248"},"startTime":1774558765793,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":252365,"timestamp":182068448226,"id":993,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765549,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182068700730,"id":1002,"parentId":993,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"269903968","memory.heapTotal":"279093248"},"startTime":1774558765802,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6770,"timestamp":182068702322,"id":1004,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765803,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":205830,"timestamp":182068558433,"id":997,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765659,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":182068764456,"id":1007,"parentId":997,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"271418568","memory.heapTotal":"284073984"},"startTime":1774558765865,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":209780,"timestamp":182068556711,"id":995,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765658,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":182068766646,"id":1008,"parentId":995,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443221504","memory.heapUsed":"271458200","memory.heapTotal":"284073984"},"startTime":1774558765868,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":61219,"timestamp":182068707924,"id":1006,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765809,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":9458,"timestamp":182068817685,"id":1010,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765919,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":46296,"timestamp":182068821074,"id":1012,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558765922,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3790,"timestamp":182068906242,"id":1014,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766007,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":45831,"timestamp":182068907612,"id":1016,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766009,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":302814,"timestamp":182068701386,"id":1003,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765802,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":182069004311,"id":1017,"parentId":1003,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443614720","memory.heapUsed":"273836288","memory.heapTotal":"296394752"},"startTime":1774558766105,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":298416,"timestamp":182068707195,"id":1005,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765808,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":26,"timestamp":182069005850,"id":1018,"parentId":1005,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443614720","memory.heapUsed":"273879856","memory.heapTotal":"296394752"},"startTime":1774558766107,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":192233,"timestamp":182068819441,"id":1011,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765920,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":182069011813,"id":1019,"parentId":1011,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443614720","memory.heapUsed":"274104312","memory.heapTotal":"296394752"},"startTime":1774558766113,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":201290,"timestamp":182068816494,"id":1009,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558765917,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182069017921,"id":1024,"parentId":1009,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443614720","memory.heapUsed":"274326872","memory.heapTotal":"296394752"},"startTime":1774558766119,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7233,"timestamp":182069013856,"id":1021,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766115,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":45972,"timestamp":182069016110,"id":1023,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766117,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":194381,"timestamp":182068906915,"id":1015,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766008,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182069101449,"id":1025,"parentId":1015,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1443876864","memory.heapUsed":"279256000","memory.heapTotal":"296394752"},"startTime":1774558766202,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":202837,"timestamp":182068905551,"id":1013,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766007,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":182069108522,"id":1026,"parentId":1013,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1445711872","memory.heapUsed":"281145672","memory.heapTotal":"298237952"},"startTime":1774558766210,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":6152,"timestamp":182069110320,"id":1028,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766211,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":45730,"timestamp":182069113342,"id":1030,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766214,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":36237,"timestamp":182069156074,"id":1032,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766257,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":65168,"timestamp":182069157489,"id":1034,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766258,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":254512,"timestamp":182069012485,"id":1020,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766113,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":34,"timestamp":182069267394,"id":1035,"parentId":1020,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1448857600","memory.heapUsed":"280166136","memory.heapTotal":"301907968"},"startTime":1774558766368,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":255045,"timestamp":182069014729,"id":1022,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766116,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":182069269913,"id":1036,"parentId":1022,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1448857600","memory.heapUsed":"280205624","memory.heapTotal":"301907968"},"startTime":1774558766371,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":170093,"timestamp":182069109640,"id":1027,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766211,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":34,"timestamp":182069280098,"id":1041,"parentId":1027,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1448857600","memory.heapUsed":"280613848","memory.heapTotal":"301907968"},"startTime":1774558766381,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4523,"timestamp":182069276935,"id":1038,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766378,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":208018,"timestamp":182069112486,"id":1029,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766213,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":25,"timestamp":182069320797,"id":1042,"parentId":1029,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1449119744","memory.heapUsed":"283108488","memory.heapTotal":"301907968"},"startTime":1774558766422,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":44561,"timestamp":182069278121,"id":1040,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766379,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":206352,"timestamp":182069155185,"id":1031,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766256,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":19,"timestamp":182069361709,"id":1043,"parentId":1031,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1449512960","memory.heapUsed":"285805024","memory.heapTotal":"302047232"},"startTime":1774558766463,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":210394,"timestamp":182069156890,"id":1033,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766258,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":15,"timestamp":182069367444,"id":1046,"parentId":1033,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1449512960","memory.heapUsed":"285949648","memory.heapTotal":"302047232"},"startTime":1774558766468,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4181,"timestamp":182069364771,"id":1045,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766466,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4231,"timestamp":182069408595,"id":1048,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766510,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":33220,"timestamp":182069411734,"id":1050,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766513,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":41412,"timestamp":182069444015,"id":1052,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766545,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":248101,"timestamp":182069276295,"id":1037,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766377,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":182069524646,"id":1053,"parentId":1037,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1453707264","memory.heapUsed":"286328520","memory.heapTotal":"323280896"},"startTime":1774558766626,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":251669,"timestamp":182069277496,"id":1039,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766378,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182069529310,"id":1054,"parentId":1039,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1453707264","memory.heapUsed":"286376192","memory.heapTotal":"323280896"},"startTime":1774558766630,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2554,"timestamp":182069542172,"id":1056,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766643,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":217167,"timestamp":182069363872,"id":1044,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766465,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":182069581173,"id":1059,"parentId":1044,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1453969408","memory.heapUsed":"289236176","memory.heapTotal":"323280896"},"startTime":1774558766682,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4251,"timestamp":182069578339,"id":1058,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774558766679,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":263737,"timestamp":182069408019,"id":1047,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766509,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":49,"timestamp":182069671999,"id":1060,"parentId":1047,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1454718976","memory.heapUsed":"266117984","memory.heapTotal":"326164480"},"startTime":1774558766773,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":262805,"timestamp":182069411033,"id":1049,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766512,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":12,"timestamp":182069673950,"id":1061,"parentId":1049,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1454718976","memory.heapUsed":"266165448","memory.heapTotal":"326164480"},"startTime":1774558766775,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":231639,"timestamp":182069443527,"id":1051,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766545,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":57,"timestamp":182069675252,"id":1062,"parentId":1051,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1454718976","memory.heapUsed":"266212376","memory.heapTotal":"326164480"},"startTime":1774558766776,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":136132,"timestamp":182069541405,"id":1055,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766642,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":182069677637,"id":1063,"parentId":1055,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1454718976","memory.heapUsed":"266284192","memory.heapTotal":"326164480"},"startTime":1774558766779,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":100951,"timestamp":182069577862,"id":1057,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774558766679,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":182069678902,"id":1064,"parentId":1057,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1454718976","memory.heapUsed":"266331360","memory.heapTotal":"326164480"},"startTime":1774558766780,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":115000,"timestamp":182376803930,"id":1065,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":true},"startTime":1774559074051,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":201,"timestamp":182451159895,"id":1066,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774559148261,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":120,"timestamp":182451160130,"id":1067,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774559148261,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":196,"timestamp":182451160696,"id":1068,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774559148262,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":275,"timestamp":182451161394,"id":1069,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774559148262,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8530,"timestamp":182451162862,"id":1071,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774559148264,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3092,"timestamp":182451171528,"id":1072,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774559148273,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":12489,"timestamp":182453385840,"id":1074,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774559150487,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":109053,"timestamp":182453385450,"id":1073,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774559150486,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":182453494581,"id":1075,"parentId":1073,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"1541279744","memory.heapUsed":"271044328","memory.heapTotal":"283275264"},"startTime":1774559150596,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1030,"timestamp":182453508207,"id":1077,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774559150609,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":43137,"timestamp":182453507716,"id":1076,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774559150609,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":21,"timestamp":182453551152,"id":1078,"parentId":1076,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1545605120","memory.heapUsed":"272634520","memory.heapTotal":"294490112"},"startTime":1774559150652,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":43160,"timestamp":182457308719,"id":1080,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774559154410,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":120770,"timestamp":182457307750,"id":1079,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774559154409,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":182457428596,"id":1081,"parentId":1079,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1541468160","memory.heapUsed":"276407904","memory.heapTotal":"295608320"},"startTime":1774559154530,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":24280,"timestamp":183530220209,"id":1084,"tags":{"trigger":"/register"},"startTime":1774560227321,"traceId":"a42fa43d3e30758d"}] -[{"name":"client-hmr-latency","duration":103000,"timestamp":183530107560,"id":1085,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":true},"startTime":1774560227435,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":115556,"timestamp":183530219552,"id":1082,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1774560227321,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":183530335180,"id":1086,"parentId":1082,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1554788352","memory.heapUsed":"279723648","memory.heapTotal":"296419328"},"startTime":1774560227436,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":116000,"timestamp":183539134718,"id":1087,"parentId":3,"tags":{"updatedModules":["[project]/src/components/register-form.tsx [app-client]"],"page":"/register","isPageHidden":true},"startTime":1774560236380,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5664,"timestamp":183544156210,"id":1089,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774560241257,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":199788,"timestamp":183544155440,"id":1088,"tags":{"url":"/register"},"startTime":1774560241256,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":183544355330,"id":1090,"parentId":1088,"tags":{"url":"/register","memory.rss":"1618116608","memory.heapUsed":"295918032","memory.heapTotal":"318513152"},"startTime":1774560241456,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":571,"timestamp":183544509157,"id":1091,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774560241610,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":150,"timestamp":183544509778,"id":1092,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774560241611,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":197,"timestamp":183544510457,"id":1093,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774560241611,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":203,"timestamp":183544510705,"id":1094,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774560241612,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2919,"timestamp":183552972176,"id":1096,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774560250073,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":37720,"timestamp":183552970694,"id":1095,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774560250072,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":183553008511,"id":1097,"parentId":1095,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1585057792","memory.heapUsed":"285905096","memory.heapTotal":"297308160"},"startTime":1774560250109,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3060,"timestamp":183565266050,"id":1099,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774560262367,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":37793,"timestamp":183565264399,"id":1098,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774560262365,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":183565302291,"id":1100,"parentId":1098,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1575817216","memory.heapUsed":"285258680","memory.heapTotal":"293695488"},"startTime":1774560262403,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":923,"timestamp":183856797499,"id":1102,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774560553898,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":53805,"timestamp":183856796972,"id":1101,"tags":{"url":"/register"},"startTime":1774560553898,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":183856850858,"id":1103,"parentId":1101,"tags":{"url":"/register","memory.rss":"1596395520","memory.heapUsed":"286450704","memory.heapTotal":"293695488"},"startTime":1774560553952,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":273,"timestamp":183857041239,"id":1104,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774560554142,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":748,"timestamp":183857041569,"id":1105,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774560554143,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":193,"timestamp":183857043011,"id":1106,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774560554144,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":136,"timestamp":183857043247,"id":1107,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774560554144,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2451,"timestamp":183859647240,"id":1109,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774560556748,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":29376,"timestamp":183859645992,"id":1108,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774560556747,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":183859675452,"id":1110,"parentId":1108,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1600327680","memory.heapUsed":"289366800","memory.heapTotal":"298618880"},"startTime":1774560556776,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2731,"timestamp":183861678242,"id":1112,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774560558779,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":42154,"timestamp":183861676946,"id":1111,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774560558778,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":183861719188,"id":1113,"parentId":1111,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1601376256","memory.heapUsed":"289685592","memory.heapTotal":"299667456"},"startTime":1774560558820,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":593,"timestamp":183891665404,"id":1114,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560588766,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":371,"timestamp":183891666128,"id":1115,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560588767,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":480,"timestamp":183891667938,"id":1116,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560588769,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":320,"timestamp":183891668511,"id":1117,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560588769,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4282,"timestamp":183891669797,"id":1119,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774560588771,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4294,"timestamp":183891674236,"id":1120,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774560588775,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":58182,"timestamp":183891669163,"id":1118,"tags":{"url":"/api/auth/register"},"startTime":1774560588770,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":183891727450,"id":1121,"parentId":1118,"tags":{"url":"/api/auth/register","memory.rss":"1602949120","memory.heapUsed":"290793128","memory.heapTotal":"298881024"},"startTime":1774560588828,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2367,"timestamp":183910201990,"id":1123,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774560607303,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":72997,"timestamp":183910201646,"id":1122,"tags":{"url":"/register"},"startTime":1774560607303,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":183910274754,"id":1124,"parentId":1122,"tags":{"url":"/register","memory.rss":"1582465024","memory.heapUsed":"292482600","memory.heapTotal":"299929600"},"startTime":1774560607376,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":394,"timestamp":183914795902,"id":1125,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560611897,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":302,"timestamp":183914796368,"id":1126,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560611897,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":358,"timestamp":183914797556,"id":1127,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560611899,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":370,"timestamp":183914797985,"id":1128,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560611899,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4270,"timestamp":183914799924,"id":1130,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774560611901,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4148,"timestamp":183914804311,"id":1131,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774560611905,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":52813,"timestamp":183914798755,"id":1129,"tags":{"url":"/api/auth/register"},"startTime":1774560611900,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":183914851651,"id":1132,"parentId":1129,"tags":{"url":"/api/auth/register","memory.rss":"1603387392","memory.heapUsed":"295034304","memory.heapTotal":"305573888"},"startTime":1774560611953,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":542,"timestamp":183970127157,"id":1133,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560667228,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":439,"timestamp":183970127794,"id":1134,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560667229,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":380,"timestamp":183970129414,"id":1135,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560667230,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":354,"timestamp":183970129868,"id":1136,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560667231,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4564,"timestamp":183970131238,"id":1138,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774560667232,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3503,"timestamp":183970135995,"id":1139,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774560667237,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":55649,"timestamp":183970130554,"id":1137,"tags":{"url":"/api/auth/register"},"startTime":1774560667232,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":183970186308,"id":1140,"parentId":1137,"tags":{"url":"/api/auth/register","memory.rss":"1587625984","memory.heapUsed":"296960352","memory.heapTotal":"304263168"},"startTime":1774560667287,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":309,"timestamp":183972537994,"id":1141,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560669639,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":242,"timestamp":183972538362,"id":1142,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560669639,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":263,"timestamp":183972539357,"id":1143,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560669640,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":227,"timestamp":183972539669,"id":1144,"parentId":3,"tags":{"inputPage":"/api/auth/register"},"startTime":1774560669641,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4320,"timestamp":183972540601,"id":1146,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774560669642,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4702,"timestamp":183972545275,"id":1147,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774560669646,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":56105,"timestamp":183972540119,"id":1145,"tags":{"url":"/api/auth/register"},"startTime":1774560669641,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":183972596319,"id":1148,"parentId":1145,"tags":{"url":"/api/auth/register","memory.rss":"1608597504","memory.heapUsed":"298819992","memory.heapTotal":"306622464"},"startTime":1774560669697,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":71000,"timestamp":184205615720,"id":1149,"parentId":3,"tags":{"updatedModules":["[project]/src/lib/api.ts [app-client]","[project]/src/components/register-form.tsx [app-client]"],"page":"/register","isPageHidden":true},"startTime":1774560902814,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":7313,"timestamp":184249453617,"id":1151,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774560946555,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":252058,"timestamp":184249453241,"id":1150,"tags":{"url":"/register"},"startTime":1774560946554,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":184249705400,"id":1152,"parentId":1150,"tags":{"url":"/register","memory.rss":"1607049216","memory.heapUsed":"301428672","memory.heapTotal":"334352384"},"startTime":1774560946806,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":311,"timestamp":184249954562,"id":1153,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774560947056,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":236,"timestamp":184249954929,"id":1154,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774560947056,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":245,"timestamp":184249955729,"id":1155,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774560947057,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":209,"timestamp":184249956027,"id":1156,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774560947057,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1814,"timestamp":184476868255,"id":1158,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774561173969,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":78354,"timestamp":184476867415,"id":1157,"tags":{"url":"/register"},"startTime":1774561173968,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":184476945884,"id":1159,"parentId":1157,"tags":{"url":"/register","memory.rss":"1637560320","memory.heapUsed":"304494648","memory.heapTotal":"323866624"},"startTime":1774561174047,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":716,"timestamp":184477227865,"id":1160,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561174329,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":501,"timestamp":184477228702,"id":1161,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561174330,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":239,"timestamp":184477230213,"id":1162,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561174331,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":189,"timestamp":184477230498,"id":1163,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561174331,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2147,"timestamp":184536609371,"id":1165,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774561233710,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":28609,"timestamp":184536608346,"id":1164,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774561233709,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":184536637069,"id":1166,"parentId":1164,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1619681280","memory.heapUsed":"307073960","memory.heapTotal":"319811584"},"startTime":1774561233738,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1792,"timestamp":184599538606,"id":1168,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774561296640,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":93494,"timestamp":184599537586,"id":1167,"tags":{"url":"/login"},"startTime":1774561296639,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":14,"timestamp":184599631259,"id":1169,"parentId":1167,"tags":{"url":"/login","memory.rss":"1622970368","memory.heapUsed":"314540184","memory.heapTotal":"324173824"},"startTime":1774561296732,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":365,"timestamp":184599817371,"id":1170,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561296918,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":257,"timestamp":184599817801,"id":1171,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561296919,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":333,"timestamp":184599818765,"id":1172,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561296920,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":223,"timestamp":184599819152,"id":1173,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561296920,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1947,"timestamp":184602409624,"id":1175,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774561299511,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":25745,"timestamp":184602408313,"id":1174,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774561299509,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":184602434162,"id":1176,"parentId":1174,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1641975808","memory.heapUsed":"316790752","memory.heapTotal":"327319552"},"startTime":1774561299535,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":743,"timestamp":184801982413,"id":1178,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774561499083,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":41649,"timestamp":184801982047,"id":1177,"tags":{"url":"/register"},"startTime":1774561499083,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":11,"timestamp":184802023822,"id":1179,"parentId":1177,"tags":{"url":"/register","memory.rss":"1642254336","memory.heapUsed":"318052440","memory.heapTotal":"325484544"},"startTime":1774561499125,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":209,"timestamp":184802229908,"id":1180,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561499331,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":132,"timestamp":184802230159,"id":1181,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561499331,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":212,"timestamp":184802230706,"id":1182,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561499332,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":146,"timestamp":184802230953,"id":1183,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561499332,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1625,"timestamp":184814851195,"id":1185,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774561511952,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":55071,"timestamp":184814850773,"id":1184,"tags":{"url":"/register"},"startTime":1774561511952,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":184814905946,"id":1186,"parentId":1184,"tags":{"url":"/register","memory.rss":"1642418176","memory.heapUsed":"320707128","memory.heapTotal":"328630272"},"startTime":1774561512007,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":350319,"timestamp":184896768881,"id":1189,"tags":{"trigger":"/verify-email"},"startTime":1774561593870,"traceId":"a42fa43d3e30758d"}] -[{"name":"compile-path","duration":98779,"timestamp":184897943246,"id":1191,"tags":{"trigger":"/_error"},"startTime":1774561595044,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":1430670,"timestamp":184896768065,"id":1187,"tags":{"url":"/verify-email?token=25f3c0f56611cfbed3f27de0bed4c4f40644d385a88c0fe13d1b3715a76722bf"},"startTime":1774561593869,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":184898198831,"id":1192,"parentId":1187,"tags":{"url":"/verify-email?token=25f3c0f56611cfbed3f27de0bed4c4f40644d385a88c0fe13d1b3715a76722bf","memory.rss":"1833676800","memory.heapUsed":"423443648","memory.heapTotal":"451510272"},"startTime":1774561595300,"traceId":"a42fa43d3e30758d"},{"name":"navigation-to-hydration","duration":1726000,"timestamp":184896742686,"id":1193,"parentId":3,"tags":{"pathname":"/verify-email","query":"?token=25f3c0f56611cfbed3f27de0bed4c4f40644d385a88c0fe13d1b3715a76722bf"},"startTime":1774561595571,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":281,"timestamp":184898471346,"id":1194,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561595572,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":207,"timestamp":184898471674,"id":1195,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561595573,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":215,"timestamp":184898472434,"id":1196,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561595573,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":193,"timestamp":184898472687,"id":1197,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561595574,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1375,"timestamp":184984722278,"id":1199,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1774561681823,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2819,"timestamp":184985493472,"id":1200,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1774561682594,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":786721,"timestamp":184984721632,"id":1198,"tags":{"url":"/verify-email?token=d5b0c3527bcba16cd483082fd16f828b82a162d350999cfdd66f80f86182d857"},"startTime":1774561681823,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":4,"timestamp":184985508432,"id":1201,"parentId":1198,"tags":{"url":"/verify-email?token=d5b0c3527bcba16cd483082fd16f828b82a162d350999cfdd66f80f86182d857","memory.rss":"1825026048","memory.heapUsed":"375742224","memory.heapTotal":"417165312"},"startTime":1774561682609,"traceId":"a42fa43d3e30758d"},{"name":"navigation-to-hydration","duration":1117000,"timestamp":184984695556,"id":1202,"parentId":3,"tags":{"pathname":"/verify-email","query":"?token=d5b0c3527bcba16cd483082fd16f828b82a162d350999cfdd66f80f86182d857"},"startTime":1774561682914,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":223,"timestamp":184985814877,"id":1203,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561682916,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":137,"timestamp":184985815132,"id":1204,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561682916,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":147,"timestamp":184985815668,"id":1205,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561682917,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":135,"timestamp":184985815834,"id":1206,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561682917,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2260,"timestamp":185145496209,"id":1211,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774561842597,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":80950,"timestamp":185145490544,"id":1209,"tags":{"trigger":"/verify-email"},"startTime":1774561842592,"traceId":"a42fa43d3e30758d"}] -[{"name":"client-hmr-latency","duration":78000,"timestamp":185145386069,"id":1212,"parentId":3,"tags":{"updatedModules":[],"page":"/register","isPageHidden":true},"startTime":1774561842951,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":368310,"timestamp":185145495312,"id":1210,"tags":{"url":"/register?_rsc=1fvs3"},"startTime":1774561842596,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185145863720,"id":1213,"parentId":1210,"tags":{"url":"/register?_rsc=1fvs3","memory.rss":"1789947904","memory.heapUsed":"348487280","memory.heapTotal":"362258432"},"startTime":1774561842965,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":376901,"timestamp":185145488959,"id":1207,"tags":{"url":"/verify-email?token=25f3c0f56611cfbed3f27de0bed4c4f40644d385a88c0fe13d1b3715a76722bf"},"startTime":1774561842590,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":185145865959,"id":1214,"parentId":1207,"tags":{"url":"/verify-email?token=25f3c0f56611cfbed3f27de0bed4c4f40644d385a88c0fe13d1b3715a76722bf","memory.rss":"1789947904","memory.heapUsed":"348547672","memory.heapTotal":"362258432"},"startTime":1774561842967,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":326,"timestamp":185146037234,"id":1215,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561843138,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":248,"timestamp":185146037609,"id":1216,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561843139,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":294,"timestamp":185146038664,"id":1217,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774561843140,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":250,"timestamp":185146039014,"id":1218,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774561843140,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":47000,"timestamp":185155455915,"id":1219,"parentId":3,"tags":{"updatedModules":["[project]/src/app/verify-email/page.tsx [app-client]"],"page":"/register","isPageHidden":true},"startTime":1774561852633,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":47000,"timestamp":185155456086,"id":1220,"parentId":3,"tags":{"updatedModules":["[project]/src/app/verify-email/page.tsx [app-client]"],"page":"/verify-email","isPageHidden":true},"startTime":1774561852633,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":93000,"timestamp":185193407203,"id":1221,"parentId":3,"tags":{"updatedModules":["[project]/src/app/verify-email/page.tsx [app-client]"],"page":"/register","isPageHidden":true},"startTime":1774561890630,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":93000,"timestamp":185193407315,"id":1222,"parentId":3,"tags":{"updatedModules":["[project]/src/app/verify-email/page.tsx [app-client]"],"page":"/verify-email","isPageHidden":true},"startTime":1774561890630,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1069,"timestamp":185212720862,"id":1224,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774561909822,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":27550,"timestamp":185212720273,"id":1223,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774561909821,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":4,"timestamp":185212747897,"id":1225,"parentId":1223,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1781092352","memory.heapUsed":"350027960","memory.heapTotal":"359317504"},"startTime":1774561909849,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5641,"timestamp":185220339070,"id":1227,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774561917440,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":94175,"timestamp":185220338711,"id":1226,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774561917440,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":4,"timestamp":185220432980,"id":1228,"parentId":1226,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1787015168","memory.heapUsed":"360058248","memory.heapTotal":"378134528"},"startTime":1774561917534,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4337,"timestamp":185220500315,"id":1230,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774561917601,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":81531,"timestamp":185220499195,"id":1229,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774561917600,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":185220580897,"id":1231,"parentId":1229,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1790029824","memory.heapUsed":"360408976","memory.heapTotal":"379445248"},"startTime":1774561917682,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1122,"timestamp":185220777999,"id":1233,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774561917879,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":15640,"timestamp":185220777640,"id":1232,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774561917879,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185220793374,"id":1234,"parentId":1232,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1784578048","memory.heapUsed":"353408104","memory.heapTotal":"374636544"},"startTime":1774561917894,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":749,"timestamp":185220795850,"id":1236,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774561917897,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":15268,"timestamp":185220795326,"id":1235,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774561917896,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":4,"timestamp":185220810664,"id":1237,"parentId":1235,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1784578048","memory.heapUsed":"355438880","memory.heapTotal":"374636544"},"startTime":1774561917912,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":986,"timestamp":185256883923,"id":1239,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774561953985,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":18326,"timestamp":185256883542,"id":1238,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774561953985,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185256901952,"id":1240,"parentId":1238,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1785507840","memory.heapUsed":"352812136","memory.heapTotal":"364675072"},"startTime":1774561954003,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1335,"timestamp":185256910946,"id":1242,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774561954012,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":46290,"timestamp":185256910396,"id":1241,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774561954011,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":44,"timestamp":185256956993,"id":1243,"parentId":1241,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1785507840","memory.heapUsed":"354263544","memory.heapTotal":"367296512"},"startTime":1774561954058,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":259,"timestamp":185257179179,"id":1244,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774561954280,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":189,"timestamp":185257179479,"id":1245,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774561954280,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":199,"timestamp":185257180184,"id":1246,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774561954281,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":172,"timestamp":185257180412,"id":1247,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774561954281,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3079,"timestamp":185257181677,"id":1249,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774561954283,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2576,"timestamp":185257184882,"id":1250,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774561954286,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4805,"timestamp":185259144603,"id":1252,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774561956246,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":55593,"timestamp":185259143306,"id":1251,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774561956244,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":185259198983,"id":1253,"parentId":1251,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1786507264","memory.heapUsed":"357558064","memory.heapTotal":"366661632"},"startTime":1774561956300,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4382,"timestamp":185385777846,"id":1255,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774562082879,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":36045,"timestamp":185385781345,"id":1258,"tags":{"trigger":"/verify-email"},"startTime":1774562082882,"traceId":"a42fa43d3e30758d"}] -[{"name":"client-hmr-latency","duration":84000,"timestamp":185385689132,"id":1259,"parentId":3,"tags":{"updatedModules":["[project]/src/app/verify-email/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774562082946,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":90000,"timestamp":185385688596,"id":1260,"parentId":3,"tags":{"updatedModules":["[project]/src/app/verify-email/page.tsx [app-client]"],"page":"/verify-email","isPageHidden":true},"startTime":1774562082949,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":74173,"timestamp":185385780701,"id":1256,"tags":{"url":"/verify-email?token=25f3c0f56611cfbed3f27de0bed4c4f40644d385a88c0fe13d1b3715a76722bf&_rsc=3lcms"},"startTime":1774562082882,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":185385855061,"id":1261,"parentId":1256,"tags":{"url":"/verify-email?token=25f3c0f56611cfbed3f27de0bed4c4f40644d385a88c0fe13d1b3715a76722bf&_rsc=3lcms","memory.rss":"1787064320","memory.heapUsed":"359749832","memory.heapTotal":"368496640"},"startTime":1774562082956,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":84223,"timestamp":185385777304,"id":1254,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774562082878,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":185385861639,"id":1262,"parentId":1254,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1787064320","memory.heapUsed":"359796176","memory.heapTotal":"368496640"},"startTime":1774562082963,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":66000,"timestamp":185457552121,"id":1263,"parentId":3,"tags":{"updatedModules":["[project]/src/app/verify-email/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774562154748,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":67000,"timestamp":185457552197,"id":1264,"parentId":3,"tags":{"updatedModules":["[project]/src/app/verify-email/page.tsx [app-client]"],"page":"/verify-email","isPageHidden":true},"startTime":1774562154748,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":225,"timestamp":185488660798,"id":1265,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774562185762,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":180,"timestamp":185488661059,"id":1266,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774562185762,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":224,"timestamp":185488661684,"id":1267,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774562185763,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":169,"timestamp":185488661935,"id":1268,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774562185763,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3234,"timestamp":185488662671,"id":1270,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774562185764,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2724,"timestamp":185488666057,"id":1271,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774562185767,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1321,"timestamp":185489954060,"id":1273,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774562187055,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":32588,"timestamp":185489953612,"id":1272,"tags":{"url":"/login?_rsc=3jpne"},"startTime":1774562187055,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":185489986295,"id":1274,"parentId":1272,"tags":{"url":"/login?_rsc=3jpne","memory.rss":"1786122240","memory.heapUsed":"361967392","memory.heapTotal":"369807360"},"startTime":1774562187087,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1316,"timestamp":185490002077,"id":1276,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774562187103,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":45409,"timestamp":185490000640,"id":1275,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774562187102,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":21,"timestamp":185490046206,"id":1277,"parentId":1275,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1786122240","memory.heapUsed":"362470280","memory.heapTotal":"370855936"},"startTime":1774562187147,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":20726,"timestamp":185508454312,"id":1279,"parentId":3,"tags":{"inputPage":"/forgot-password/page"},"startTime":1774562205555,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":70025,"timestamp":185508452748,"id":1278,"tags":{"url":"/forgot-password?_rsc=5c339"},"startTime":1774562205554,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":185508522853,"id":1280,"parentId":1278,"tags":{"url":"/forgot-password?_rsc=5c339","memory.rss":"1788170240","memory.heapUsed":"365713064","memory.heapTotal":"374095872"},"startTime":1774562205624,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1485,"timestamp":185510270735,"id":1282,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774562207372,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":58378,"timestamp":185510270106,"id":1281,"tags":{"url":"/login"},"startTime":1774562207371,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":185510328606,"id":1283,"parentId":1281,"tags":{"url":"/login","memory.rss":"1788301312","memory.heapUsed":"367357384","memory.heapTotal":"375406592"},"startTime":1774562207430,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":291,"timestamp":185510533585,"id":1284,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774562207635,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":202,"timestamp":185510533922,"id":1285,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774562207635,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":236,"timestamp":185510534718,"id":1286,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774562207636,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":178,"timestamp":185510534986,"id":1287,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774562207636,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3980,"timestamp":185511923307,"id":1289,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774562209024,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":33007,"timestamp":185511921896,"id":1288,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774562209023,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":185511955030,"id":1290,"parentId":1288,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1789677568","memory.heapUsed":"369103312","memory.heapTotal":"380125184"},"startTime":1774562209056,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3097,"timestamp":185516304709,"id":1292,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774562213406,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":34844,"timestamp":185516303383,"id":1291,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774562213404,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":185516338340,"id":1293,"parentId":1291,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1809428480","memory.heapUsed":"369487456","memory.heapTotal":"380911616"},"startTime":1774562213439,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4857,"timestamp":185520732239,"id":1295,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774562217833,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":33176,"timestamp":185520730965,"id":1294,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774562217832,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185520764230,"id":1296,"parentId":1294,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1800417280","memory.heapUsed":"370282920","memory.heapTotal":"381173760"},"startTime":1774562217865,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":8804,"timestamp":185585295435,"id":1298,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1774562282396,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":194717,"timestamp":185585294639,"id":1297,"tags":{"url":"/verify-email?token=196edadcec6c1de646fa026b152270afa1d9aadac0be00d04836324b29f65f5d"},"startTime":1774562282396,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185585489450,"id":1299,"parentId":1297,"tags":{"url":"/verify-email?token=196edadcec6c1de646fa026b152270afa1d9aadac0be00d04836324b29f65f5d","memory.rss":"1809076224","memory.heapUsed":"387332144","memory.heapTotal":"401965056"},"startTime":1774562282590,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":750,"timestamp":185585731315,"id":1300,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774562282832,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":505,"timestamp":185585732202,"id":1301,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774562282833,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":430,"timestamp":185585734157,"id":1302,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774562282835,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":264,"timestamp":185585734638,"id":1303,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774562282836,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4194,"timestamp":185588344849,"id":1305,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774562285446,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":46306,"timestamp":185588342708,"id":1304,"tags":{"url":"/login?_rsc=s7obu"},"startTime":1774562285444,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":185588389155,"id":1306,"parentId":1304,"tags":{"url":"/login?_rsc=s7obu","memory.rss":"1825128448","memory.heapUsed":"370380240","memory.heapTotal":"405303296"},"startTime":1774562285490,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1237,"timestamp":185604696589,"id":1308,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774562301798,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":21102,"timestamp":185604696187,"id":1307,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774562301797,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185604717377,"id":1309,"parentId":1307,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1780846592","memory.heapUsed":"360018000","memory.heapTotal":"369418240"},"startTime":1774562301818,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1864,"timestamp":185604739196,"id":1311,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774562301840,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":51904,"timestamp":185604738667,"id":1310,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774562301840,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185604790678,"id":1312,"parentId":1310,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1781108736","memory.heapUsed":"360970360","memory.heapTotal":"369418240"},"startTime":1774562301892,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1475,"timestamp":185604921998,"id":1314,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774562302023,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":24338,"timestamp":185604921488,"id":1313,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774562302022,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185604945917,"id":1315,"parentId":1313,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1781370880","memory.heapUsed":"361656040","memory.heapTotal":"369680384"},"startTime":1774562302047,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1139,"timestamp":185604947988,"id":1317,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774562302049,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":27111,"timestamp":185604947474,"id":1316,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774562302048,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":185604974699,"id":1318,"parentId":1316,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1781764096","memory.heapUsed":"362405880","memory.heapTotal":"374136832"},"startTime":1774562302076,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1180,"timestamp":185624791404,"id":1320,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774562321892,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":19970,"timestamp":185624790920,"id":1319,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774562321892,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":16,"timestamp":185624810998,"id":1321,"parentId":1319,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1783353344","memory.heapUsed":"363183384","memory.heapTotal":"371982336"},"startTime":1774562321912,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":868,"timestamp":185624817558,"id":1323,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774562321919,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":22971,"timestamp":185624817139,"id":1322,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774562321918,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185624840198,"id":1324,"parentId":1322,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1783484416","memory.heapUsed":"364480960","memory.heapTotal":"372506624"},"startTime":1774562321941,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":211,"timestamp":185624988657,"id":1325,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774562322090,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":172,"timestamp":185624988900,"id":1326,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774562322090,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":164,"timestamp":185624989551,"id":1327,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774562322091,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":115,"timestamp":185624989738,"id":1328,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774562322091,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4081,"timestamp":185624990349,"id":1330,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774562322091,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3618,"timestamp":185624994597,"id":1331,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774562322096,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4818,"timestamp":185627553596,"id":1333,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774562324655,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":46200,"timestamp":185627552192,"id":1332,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774562324653,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":185627598486,"id":1334,"parentId":1332,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1805897728","memory.heapUsed":"366518080","memory.heapTotal":"378011648"},"startTime":1774562324699,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":232,"timestamp":186308254988,"id":1335,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563005356,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":211,"timestamp":186308255316,"id":1336,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563005356,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":204,"timestamp":186308256086,"id":1337,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563005357,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":240,"timestamp":186308256319,"id":1338,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563005357,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5033,"timestamp":186308257196,"id":1340,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774563005358,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3142,"timestamp":186308262323,"id":1341,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774563005363,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2046,"timestamp":186310086071,"id":1343,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563007187,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":21670,"timestamp":186310085683,"id":1342,"tags":{"url":"/login?_rsc=3jpne"},"startTime":1774563007187,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":4,"timestamp":186310107440,"id":1344,"parentId":1342,"tags":{"url":"/login?_rsc=3jpne","memory.rss":"1788280832","memory.heapUsed":"368723984","memory.heapTotal":"378535936"},"startTime":1774563007208,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3439,"timestamp":186310117576,"id":1346,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563007219,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":44934,"timestamp":186310116299,"id":1345,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774563007217,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":186310161913,"id":1347,"parentId":1345,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1788805120","memory.heapUsed":"369884040","memory.heapTotal":"378011648"},"startTime":1774563007263,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5408,"timestamp":186312797334,"id":1349,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774563009898,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":42378,"timestamp":186312795965,"id":1348,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774563009897,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":186312838451,"id":1350,"parentId":1348,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1812398080","memory.heapUsed":"371054320","memory.heapTotal":"382869504"},"startTime":1774563009939,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2089,"timestamp":186328763503,"id":1352,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563025864,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":29273,"timestamp":186328761539,"id":1351,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774563025863,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":186328790933,"id":1353,"parentId":1351,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1793310720","memory.heapUsed":"372093616","memory.heapTotal":"381558784"},"startTime":1774563025892,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2587,"timestamp":186469269038,"id":1355,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774563166370,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":61867,"timestamp":186469268192,"id":1354,"tags":{"url":"/register"},"startTime":1774563166369,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":3,"timestamp":186469330144,"id":1356,"parentId":1354,"tags":{"url":"/register","memory.rss":"1812316160","memory.heapUsed":"373300784","memory.heapTotal":"383393792"},"startTime":1774563166431,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":340,"timestamp":186469525619,"id":1357,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563166627,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":274,"timestamp":186469526026,"id":1358,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563166627,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":286,"timestamp":186469527034,"id":1359,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563166628,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":284,"timestamp":186469527353,"id":1360,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563166628,"traceId":"a42fa43d3e30758d"}] -[{"name":"ensure-page","duration":1755,"timestamp":186509931453,"id":1362,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1774563207032,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":56833,"timestamp":186509931057,"id":1361,"tags":{"url":"/verify-email?token=c39f1437c0ab76813bc42e10675e15952f599fe6c20a450c64a8f1771de937e9"},"startTime":1774563207032,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":4,"timestamp":186509987991,"id":1363,"parentId":1361,"tags":{"url":"/verify-email?token=c39f1437c0ab76813bc42e10675e15952f599fe6c20a450c64a8f1771de937e9","memory.rss":"1795637248","memory.heapUsed":"376021472","memory.heapTotal":"384180224"},"startTime":1774563207089,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":510,"timestamp":186510220905,"id":1364,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563207322,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":179,"timestamp":186510221457,"id":1365,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563207322,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":191,"timestamp":186510222150,"id":1366,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563207323,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":161,"timestamp":186510222366,"id":1367,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563207323,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3124,"timestamp":186519510606,"id":1369,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563216612,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":35986,"timestamp":186519509228,"id":1368,"tags":{"url":"/login?_rsc=s7obu"},"startTime":1774563216610,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":186519545331,"id":1370,"parentId":1368,"tags":{"url":"/login?_rsc=s7obu","memory.rss":"1816248320","memory.heapUsed":"377380312","memory.heapTotal":"386015232"},"startTime":1774563216646,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1237,"timestamp":186534824408,"id":1372,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774563231925,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":18592,"timestamp":186534823949,"id":1371,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774563231925,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":186534842633,"id":1373,"parentId":1371,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1817337856","memory.heapUsed":"378126760","memory.heapTotal":"387063808"},"startTime":1774563231944,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4261,"timestamp":186534857573,"id":1375,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774563231959,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":53137,"timestamp":186534857081,"id":1374,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774563231958,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":186534910340,"id":1376,"parentId":1374,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1818255360","memory.heapUsed":"378925320","memory.heapTotal":"387850240"},"startTime":1774563232011,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":218,"timestamp":186535101393,"id":1377,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563232202,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":171,"timestamp":186535101646,"id":1378,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563232203,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":150,"timestamp":186535102255,"id":1379,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563232203,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":116,"timestamp":186535102427,"id":1380,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563232203,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3725,"timestamp":186535102962,"id":1382,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774563232204,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":5281,"timestamp":186535106844,"id":1383,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774563232208,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2678,"timestamp":186537162597,"id":1385,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774563234264,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":35138,"timestamp":186537161911,"id":1384,"tags":{"url":"/admin/club?_rsc=1b24o"},"startTime":1774563234263,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":186537197155,"id":1386,"parentId":1384,"tags":{"url":"/admin/club?_rsc=1b24o","memory.rss":"1824284672","memory.heapUsed":"381566592","memory.heapTotal":"393617408"},"startTime":1774563234298,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1831,"timestamp":186538650356,"id":1388,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774563235751,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":24291,"timestamp":186538649890,"id":1387,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774563235751,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":186538674279,"id":1389,"parentId":1387,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"1828478976","memory.heapUsed":"384844256","memory.heapTotal":"395984896"},"startTime":1774563235775,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":177,"timestamp":186549463951,"id":1390,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563246565,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":114,"timestamp":186549464153,"id":1391,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563246565,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":635,"timestamp":186549464679,"id":1392,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563246566,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":116,"timestamp":186549465337,"id":1393,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774563246566,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3960,"timestamp":186549465879,"id":1395,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774563246567,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":3964,"timestamp":186549469958,"id":1396,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774563246571,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4150,"timestamp":186550578845,"id":1398,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563247680,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":44048,"timestamp":186550578296,"id":1397,"tags":{"url":"/login?_rsc=3jpne"},"startTime":1774563247679,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":10,"timestamp":186550622554,"id":1399,"parentId":1397,"tags":{"url":"/login?_rsc=3jpne","memory.rss":"1833197568","memory.heapUsed":"386539432","memory.heapTotal":"395198464"},"startTime":1774563247724,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1300,"timestamp":186550676891,"id":1401,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563247778,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":38173,"timestamp":186550676230,"id":1400,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774563247777,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":24,"timestamp":186550714659,"id":1402,"parentId":1400,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1833197568","memory.heapUsed":"387000456","memory.heapTotal":"397033472"},"startTime":1774563247816,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4271,"timestamp":186553713663,"id":1404,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774563250815,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":46014,"timestamp":186553712392,"id":1403,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774563250813,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":4,"timestamp":186553758513,"id":1405,"parentId":1403,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1833459712","memory.heapUsed":"387826856","memory.heapTotal":"397557760"},"startTime":1774563250859,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1395,"timestamp":186595872363,"id":1407,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1774563292973,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":58380,"timestamp":186595871832,"id":1406,"tags":{"url":"/verify-email?token=ad86c6f5ce7a58c45572018ac32af8c53dd21e03e103db891b97aed458b6d078"},"startTime":1774563292973,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":186595930331,"id":1408,"parentId":1406,"tags":{"url":"/verify-email?token=ad86c6f5ce7a58c45572018ac32af8c53dd21e03e103db891b97aed458b6d078","memory.rss":"1812791296","memory.heapUsed":"389568800","memory.heapTotal":"398082048"},"startTime":1774563293031,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":214,"timestamp":186596273535,"id":1409,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563293375,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":144,"timestamp":186596273781,"id":1410,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563293375,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":144,"timestamp":186596274319,"id":1411,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563293375,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":126,"timestamp":186596274484,"id":1412,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563293375,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":2136,"timestamp":186597937752,"id":1414,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563295039,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":23957,"timestamp":186597937097,"id":1413,"tags":{"url":"/login?_rsc=s7obu"},"startTime":1774563295038,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":186597961176,"id":1415,"parentId":1413,"tags":{"url":"/login?_rsc=s7obu","memory.rss":"1813630976","memory.heapUsed":"377023864","memory.heapTotal":"399679488"},"startTime":1774563295062,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1784,"timestamp":186603952696,"id":1417,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1774563301054,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":74129,"timestamp":186603952341,"id":1416,"tags":{"url":"/verify-email?token=c39f1437c0ab76813bc42e10675e15952f599fe6c20a450c64a8f1771de937e9"},"startTime":1774563301053,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":186604026590,"id":1418,"parentId":1416,"tags":{"url":"/verify-email?token=c39f1437c0ab76813bc42e10675e15952f599fe6c20a450c64a8f1771de937e9","memory.rss":"1832660992","memory.heapUsed":"379438480","memory.heapTotal":"401776640"},"startTime":1774563301128,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1291,"timestamp":186666414170,"id":1420,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1774563363515,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":59476,"timestamp":186666413648,"id":1419,"tags":{"url":"/verify-email?token=ad86c6f5ce7a58c45572018ac32af8c53dd21e03e103db891b97aed458b6d078"},"startTime":1774563363515,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":9,"timestamp":186666473332,"id":1421,"parentId":1419,"tags":{"url":"/verify-email?token=ad86c6f5ce7a58c45572018ac32af8c53dd21e03e103db891b97aed458b6d078","memory.rss":"1816428544","memory.heapUsed":"382754496","memory.heapTotal":"400605184"},"startTime":1774563363574,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":777,"timestamp":186666693899,"id":1422,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563363795,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":526,"timestamp":186666694796,"id":1423,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563363796,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":397,"timestamp":186666696539,"id":1424,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563363798,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":415,"timestamp":186666697035,"id":1425,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563363798,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4288,"timestamp":186669294895,"id":1427,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774563366396,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":42081,"timestamp":186669293068,"id":1426,"tags":{"url":"/register?_rsc=s7obu"},"startTime":1774563366394,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":186669335271,"id":1428,"parentId":1426,"tags":{"url":"/register?_rsc=s7obu","memory.rss":"1835040768","memory.heapUsed":"384206768","memory.heapTotal":"402702336"},"startTime":1774563366436,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4479,"timestamp":186676763294,"id":1430,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563373864,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":37345,"timestamp":186676762093,"id":1429,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774563373863,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":186676799618,"id":1431,"parentId":1429,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1835302912","memory.heapUsed":"385181304","memory.heapTotal":"399556608"},"startTime":1774563373901,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1595,"timestamp":186999989729,"id":1433,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563697091,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":45077,"timestamp":186999989042,"id":1432,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774563697090,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":8,"timestamp":187000034261,"id":1434,"parentId":1432,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1835356160","memory.heapUsed":"386156488","memory.heapTotal":"399818752"},"startTime":1774563697135,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":4430,"timestamp":187001307973,"id":1436,"parentId":3,"tags":{"inputPage":"/forgot-password/page"},"startTime":1774563698409,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":39821,"timestamp":187001306593,"id":1435,"tags":{"url":"/forgot-password?_rsc=5c339"},"startTime":1774563698408,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":18,"timestamp":187001346781,"id":1437,"parentId":1435,"tags":{"url":"/forgot-password?_rsc=5c339","memory.rss":"1835487232","memory.heapUsed":"386597592","memory.heapTotal":"399818752"},"startTime":1774563698448,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1219,"timestamp":187198411506,"id":1439,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563895512,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":53225,"timestamp":187198410696,"id":1438,"tags":{"url":"/login"},"startTime":1774563895512,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":7,"timestamp":187198464085,"id":1440,"parentId":1438,"tags":{"url":"/login","memory.rss":"1835380736","memory.heapUsed":"388246192","memory.heapTotal":"399818752"},"startTime":1774563895565,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":356,"timestamp":187198665846,"id":1441,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563895767,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":276,"timestamp":187198666254,"id":1442,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563895767,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":295,"timestamp":187198667292,"id":1443,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563895768,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":263,"timestamp":187198667631,"id":1444,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563895769,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":9099,"timestamp":187210180892,"id":1447,"tags":{"trigger":"/"},"startTime":1774563907282,"traceId":"a42fa43d3e30758d"}] -[{"name":"handle-request","duration":98034,"timestamp":187210180334,"id":1445,"tags":{"url":"/"},"startTime":1774563907281,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":187210278494,"id":1448,"parentId":1445,"tags":{"url":"/","memory.rss":"1817841664","memory.heapUsed":"392770696","memory.heapTotal":"401956864"},"startTime":1774563907379,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":274,"timestamp":187210459035,"id":1449,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563907560,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":204,"timestamp":187210459345,"id":1450,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563907560,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":280,"timestamp":187210461534,"id":1451,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563907563,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":192,"timestamp":187210461848,"id":1452,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563907563,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":1602,"timestamp":187214864026,"id":1454,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774563911965,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":130210,"timestamp":187214863606,"id":1453,"tags":{"url":"/admin"},"startTime":1774563911965,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":3,"timestamp":187214993892,"id":1455,"parentId":1453,"tags":{"url":"/admin","memory.rss":"1851023360","memory.heapUsed":"401976176","memory.heapTotal":"427433984"},"startTime":1774563912095,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":271,"timestamp":187215292438,"id":1456,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563912393,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":206,"timestamp":187215292748,"id":1457,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563912394,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":209,"timestamp":187215293453,"id":1458,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774563912394,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":192,"timestamp":187215293691,"id":1459,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774563912395,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":717,"timestamp":187215409790,"id":1461,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774563912511,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":18759,"timestamp":187215409391,"id":1460,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774563912510,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":6,"timestamp":187215428268,"id":1462,"parentId":1460,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"1850535936","memory.heapUsed":"391007032","memory.heapTotal":"426770432"},"startTime":1774563912529,"traceId":"a42fa43d3e30758d"},{"name":"client-hmr-latency","duration":162000,"timestamp":188017367170,"id":1463,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1774564714659,"traceId":"a42fa43d3e30758d"},{"name":"ensure-page","duration":14759,"timestamp":188073760596,"id":1465,"parentId":3,"tags":{"inputPage":"/forgot-password/page"},"startTime":1774564770862,"traceId":"a42fa43d3e30758d"},{"name":"handle-request","duration":39253,"timestamp":188073759133,"id":1464,"tags":{"url":"/forgot-password?_rsc=5c339"},"startTime":1774564770860,"traceId":"a42fa43d3e30758d"},{"name":"memory-usage","duration":5,"timestamp":188073798509,"id":1466,"parentId":1464,"tags":{"url":"/forgot-password?_rsc=5c339","memory.rss":"1796128768","memory.heapUsed":"370400888","memory.heapTotal":"380956672"},"startTime":1774564770899,"traceId":"a42fa43d3e30758d"},{"name":"compile-path","duration":46534,"timestamp":188327803817,"id":1469,"tags":{"trigger":"/reset-password"},"startTime":1774565024905,"traceId":"a42fa43d3e30758d"}] -[{"name":"hot-reloader","duration":120,"timestamp":283996684,"id":3,"tags":{"version":"16.1.6"},"startTime":1774567316243,"traceId":"7066332597972963"},{"name":"compile-path","duration":232602,"timestamp":284866905,"id":4,"tags":{"trigger":"middleware"},"startTime":1774567317114,"traceId":"7066332597972963"}] -[{"name":"setup-dev-bundler","duration":1559690,"timestamp":283808271,"id":2,"parentId":1,"tags":{},"startTime":1774567316055,"traceId":"7066332597972963"},{"name":"start-dev-server","duration":2971571,"timestamp":282659469,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"11385257984","memory.totalMem":"16408379392","memory.heapSizeLimit":"8254390272","memory.rss":"495390720","memory.heapTotal":"89329664","memory.heapUsed":"65721480"},"startTime":1774567314907,"traceId":"7066332597972963"},{"name":"compile-path","duration":413673,"timestamp":285651083,"id":7,"tags":{"trigger":"/login"},"startTime":1774567317898,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":1333531,"timestamp":285640489,"id":5,"tags":{"url":"/login"},"startTime":1774567317887,"traceId":"7066332597972963"},{"name":"memory-usage","duration":21,"timestamp":286974187,"id":8,"parentId":5,"tags":{"url":"/login","memory.rss":"647581696","memory.heapUsed":"91369104","memory.heapTotal":"116621312"},"startTime":1774567319221,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1409,"timestamp":287206642,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774567319453,"traceId":"7066332597972963"},{"name":"ensure-page","duration":463,"timestamp":287208341,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774567319455,"traceId":"7066332597972963"},{"name":"ensure-page","duration":527,"timestamp":287219418,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774567319466,"traceId":"7066332597972963"},{"name":"ensure-page","duration":575,"timestamp":287220094,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774567319467,"traceId":"7066332597972963"},{"name":"ensure-page","duration":18130,"timestamp":290909189,"id":14,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774567323156,"traceId":"7066332597972963"},{"name":"handle-request","duration":214045,"timestamp":290903774,"id":13,"tags":{"url":"/login"},"startTime":1774567323150,"traceId":"7066332597972963"},{"name":"memory-usage","duration":52,"timestamp":291118202,"id":15,"parentId":13,"tags":{"url":"/login","memory.rss":"722878464","memory.heapUsed":"94195272","memory.heapTotal":"121425920"},"startTime":1774567323365,"traceId":"7066332597972963"},{"name":"compile-path","duration":60615,"timestamp":292935681,"id":18,"tags":{"trigger":"/forgot-password"},"startTime":1774567325182,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":306410,"timestamp":292932995,"id":16,"tags":{"url":"/forgot-password"},"startTime":1774567325180,"traceId":"7066332597972963"},{"name":"memory-usage","duration":10,"timestamp":293239540,"id":19,"parentId":16,"tags":{"url":"/forgot-password","memory.rss":"745127936","memory.heapUsed":"97972712","memory.heapTotal":"127471616"},"startTime":1774567325486,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":1098000,"timestamp":503165237,"id":20,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":true},"startTime":1774567536542,"traceId":"7066332597972963"},{"name":"compile-path","duration":10442,"timestamp":1505158019,"id":23,"tags":{"trigger":"/login"},"startTime":1774568537405,"traceId":"7066332597972963"}] -[{"name":"ensure-page","duration":1520,"timestamp":1505332438,"id":25,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774568537579,"traceId":"7066332597972963"},{"name":"handle-request","duration":201635,"timestamp":1505330790,"id":24,"tags":{"url":"/login"},"startTime":1774568537577,"traceId":"7066332597972963"},{"name":"memory-usage","duration":16,"timestamp":1505532715,"id":26,"parentId":24,"tags":{"url":"/login","memory.rss":"1025417216","memory.heapUsed":"95811600","memory.heapTotal":"104804352"},"startTime":1774568537779,"traceId":"7066332597972963"},{"name":"ensure-page","duration":651,"timestamp":1505925698,"id":27,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774568538172,"traceId":"7066332597972963"},{"name":"ensure-page","duration":604,"timestamp":1505926473,"id":28,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774568538173,"traceId":"7066332597972963"},{"name":"ensure-page","duration":686,"timestamp":1505929629,"id":29,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774568538176,"traceId":"7066332597972963"},{"name":"ensure-page","duration":653,"timestamp":1505930481,"id":30,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774568538177,"traceId":"7066332597972963"},{"name":"compile-path","duration":436051,"timestamp":1600644800,"id":33,"tags":{"trigger":"/admin"},"startTime":1774568632891,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":495658,"timestamp":1600643871,"id":31,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774568632891,"traceId":"7066332597972963"},{"name":"memory-usage","duration":12,"timestamp":1601139662,"id":34,"parentId":31,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1156653056","memory.heapUsed":"102713952","memory.heapTotal":"116011008"},"startTime":1774568633386,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4346,"timestamp":1601172972,"id":36,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774568633420,"traceId":"7066332597972963"},{"name":"handle-request","duration":72514,"timestamp":1601171395,"id":35,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774568633418,"traceId":"7066332597972963"},{"name":"memory-usage","duration":23,"timestamp":1601244476,"id":37,"parentId":35,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1156685824","memory.heapUsed":"99499520","memory.heapTotal":"107610112"},"startTime":1774568633491,"traceId":"7066332597972963"},{"name":"ensure-page","duration":973,"timestamp":1601573652,"id":38,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774568633820,"traceId":"7066332597972963"},{"name":"ensure-page","duration":559,"timestamp":1601574784,"id":39,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774568633821,"traceId":"7066332597972963"},{"name":"ensure-page","duration":538,"timestamp":1601576765,"id":40,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774568633823,"traceId":"7066332597972963"},{"name":"ensure-page","duration":395,"timestamp":1601577375,"id":41,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774568633824,"traceId":"7066332597972963"},{"name":"compile-path","duration":34831,"timestamp":1601581941,"id":44,"tags":{"trigger":"/_not-found/page"},"startTime":1774568633829,"traceId":"7066332597972963"}] -[{"name":"ensure-page","duration":5017,"timestamp":1601618116,"id":45,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774568633865,"traceId":"7066332597972963"},{"name":"compile-path","duration":294504,"timestamp":1605156299,"id":48,"tags":{"trigger":"/admin/users"},"startTime":1774568637403,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":358152,"timestamp":1605152910,"id":46,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774568637400,"traceId":"7066332597972963"},{"name":"memory-usage","duration":14,"timestamp":1605511316,"id":49,"parentId":46,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1234468864","memory.heapUsed":"102734912","memory.heapTotal":"111706112"},"startTime":1774568637758,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":190000,"timestamp":1820637969,"id":50,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/user-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774568853101,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":185000,"timestamp":1830892955,"id":51,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/user-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774568863354,"traceId":"7066332597972963"},{"name":"ensure-page","duration":33637,"timestamp":1850652477,"id":53,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774568882899,"traceId":"7066332597972963"},{"name":"handle-request","duration":416641,"timestamp":1850649634,"id":52,"tags":{"url":"/admin/users"},"startTime":1774568882896,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":1851066480,"id":54,"parentId":52,"tags":{"url":"/admin/users","memory.rss":"1255432192","memory.heapUsed":"108479576","memory.heapTotal":"128278528"},"startTime":1774568883313,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1331,"timestamp":1851314918,"id":55,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774568883562,"traceId":"7066332597972963"},{"name":"ensure-page","duration":504,"timestamp":1851316365,"id":56,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774568883563,"traceId":"7066332597972963"},{"name":"ensure-page","duration":637,"timestamp":1851318152,"id":57,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774568883565,"traceId":"7066332597972963"},{"name":"ensure-page","duration":400,"timestamp":1851318876,"id":58,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774568883566,"traceId":"7066332597972963"},{"name":"ensure-page","duration":296,"timestamp":1851979051,"id":59,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774568884226,"traceId":"7066332597972963"},{"name":"ensure-page","duration":227,"timestamp":1851979410,"id":60,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774568884226,"traceId":"7066332597972963"},{"name":"ensure-page","duration":248,"timestamp":1851980377,"id":61,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774568884227,"traceId":"7066332597972963"},{"name":"ensure-page","duration":214,"timestamp":1851980673,"id":62,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774568884227,"traceId":"7066332597972963"},{"name":"ensure-page","duration":5287,"timestamp":1851982336,"id":64,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774568884229,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4919,"timestamp":1851987877,"id":65,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774568884235,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":67000,"timestamp":1998899923,"id":66,"parentId":3,"tags":{"updatedModules":["[project]/src/services/userService.ts [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774569031244,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":201000,"timestamp":2042230182,"id":67,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/user-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774569074706,"traceId":"7066332597972963"},{"name":"ensure-page","duration":26799,"timestamp":2233075693,"id":69,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774569265322,"traceId":"7066332597972963"},{"name":"handle-request","duration":303496,"timestamp":2233073365,"id":68,"tags":{"url":"/admin/users"},"startTime":1774569265320,"traceId":"7066332597972963"},{"name":"memory-usage","duration":14,"timestamp":2233377088,"id":70,"parentId":68,"tags":{"url":"/admin/users","memory.rss":"1285750784","memory.heapUsed":"114111792","memory.heapTotal":"130367488"},"startTime":1774569265624,"traceId":"7066332597972963"},{"name":"ensure-page","duration":335,"timestamp":2233600758,"id":71,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774569265847,"traceId":"7066332597972963"},{"name":"ensure-page","duration":222,"timestamp":2233601155,"id":72,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774569265848,"traceId":"7066332597972963"},{"name":"ensure-page","duration":237,"timestamp":2233602015,"id":73,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774569265849,"traceId":"7066332597972963"},{"name":"ensure-page","duration":202,"timestamp":2233602302,"id":74,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774569265849,"traceId":"7066332597972963"},{"name":"ensure-page","duration":344,"timestamp":2234283016,"id":75,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569266530,"traceId":"7066332597972963"},{"name":"ensure-page","duration":227,"timestamp":2234283419,"id":76,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569266530,"traceId":"7066332597972963"},{"name":"ensure-page","duration":381,"timestamp":2234284414,"id":77,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569266531,"traceId":"7066332597972963"},{"name":"ensure-page","duration":511,"timestamp":2234284879,"id":78,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569266532,"traceId":"7066332597972963"},{"name":"ensure-page","duration":6075,"timestamp":2234287813,"id":80,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774569266535,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4582,"timestamp":2234294218,"id":81,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774569266541,"traceId":"7066332597972963"},{"name":"ensure-page","duration":495,"timestamp":2265056961,"id":82,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569297304,"traceId":"7066332597972963"},{"name":"ensure-page","duration":406,"timestamp":2265057548,"id":83,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569297304,"traceId":"7066332597972963"},{"name":"ensure-page","duration":443,"timestamp":2265059050,"id":84,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569297306,"traceId":"7066332597972963"},{"name":"ensure-page","duration":400,"timestamp":2265059575,"id":85,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569297306,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3891,"timestamp":2265062407,"id":87,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774569297309,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3256,"timestamp":2265066521,"id":88,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774569297313,"traceId":"7066332597972963"},{"name":"ensure-page","duration":5547,"timestamp":2266002882,"id":90,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774569298250,"traceId":"7066332597972963"},{"name":"handle-request","duration":71135,"timestamp":2265999946,"id":89,"tags":{"url":"/login?_rsc=wkrq7"},"startTime":1774569298247,"traceId":"7066332597972963"},{"name":"memory-usage","duration":34,"timestamp":2266071580,"id":91,"parentId":89,"tags":{"url":"/login?_rsc=wkrq7","memory.rss":"1250811904","memory.heapUsed":"108432384","memory.heapTotal":"111751168"},"startTime":1774569298318,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1947,"timestamp":2266151881,"id":93,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774569298399,"traceId":"7066332597972963"},{"name":"handle-request","duration":77451,"timestamp":2266150655,"id":92,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774569298397,"traceId":"7066332597972963"},{"name":"memory-usage","duration":14,"timestamp":2266228292,"id":94,"parentId":92,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1251860480","memory.heapUsed":"109062144","memory.heapTotal":"115658752"},"startTime":1774569298475,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1623,"timestamp":2285714830,"id":96,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774569317962,"traceId":"7066332597972963"},{"name":"handle-request","duration":38839,"timestamp":2285714186,"id":95,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774569317961,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":2285753144,"id":97,"parentId":95,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1254592512","memory.heapUsed":"109826032","memory.heapTotal":"113561600"},"startTime":1774569318000,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1435,"timestamp":2285766157,"id":99,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774569318013,"traceId":"7066332597972963"},{"name":"handle-request","duration":47841,"timestamp":2285765256,"id":98,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774569318012,"traceId":"7066332597972963"},{"name":"memory-usage","duration":30,"timestamp":2285813273,"id":100,"parentId":98,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1254985728","memory.heapUsed":"110724968","memory.heapTotal":"114610176"},"startTime":1774569318060,"traceId":"7066332597972963"},{"name":"ensure-page","duration":264,"timestamp":2285976384,"id":101,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569318223,"traceId":"7066332597972963"},{"name":"ensure-page","duration":191,"timestamp":2285976708,"id":102,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569318223,"traceId":"7066332597972963"},{"name":"ensure-page","duration":246,"timestamp":2285977658,"id":103,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569318224,"traceId":"7066332597972963"},{"name":"ensure-page","duration":219,"timestamp":2285977956,"id":104,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774569318225,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4578,"timestamp":2285978971,"id":106,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774569318226,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4308,"timestamp":2285983753,"id":107,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774569318230,"traceId":"7066332597972963"},{"name":"ensure-page","duration":7820,"timestamp":2288120374,"id":109,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774569320367,"traceId":"7066332597972963"},{"name":"handle-request","duration":93376,"timestamp":2288117500,"id":108,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774569320364,"traceId":"7066332597972963"},{"name":"memory-usage","duration":21,"timestamp":2288211167,"id":110,"parentId":108,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1275301888","memory.heapUsed":"114203224","memory.heapTotal":"120320000"},"startTime":1774569320458,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":84000,"timestamp":2501987070,"id":111,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774569534357,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":93000,"timestamp":2656944250,"id":112,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774569689315,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":114000,"timestamp":2685136639,"id":113,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774569717563,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":159000,"timestamp":2938745212,"id":114,"parentId":3,"tags":{"updatedModules":["[project]/src/components/auth/login-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774569971181,"traceId":"7066332597972963"},{"name":"ensure-page","duration":10851,"timestamp":2974685084,"id":116,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774570006932,"traceId":"7066332597972963"},{"name":"handle-request","duration":286497,"timestamp":2974684379,"id":115,"tags":{"url":"/login"},"startTime":1774570006931,"traceId":"7066332597972963"},{"name":"memory-usage","duration":14,"timestamp":2974971039,"id":117,"parentId":115,"tags":{"url":"/login","memory.rss":"1272557568","memory.heapUsed":"122076304","memory.heapTotal":"133844992"},"startTime":1774570007218,"traceId":"7066332597972963"},{"name":"ensure-page","duration":858,"timestamp":2975246742,"id":118,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570007493,"traceId":"7066332597972963"},{"name":"ensure-page","duration":640,"timestamp":2975247769,"id":119,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570007494,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1616,"timestamp":2975249873,"id":120,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570007497,"traceId":"7066332597972963"},{"name":"ensure-page","duration":557,"timestamp":2975251610,"id":121,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570007498,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3078,"timestamp":2975675417,"id":123,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774570007922,"traceId":"7066332597972963"},{"name":"handle-request","duration":66239,"timestamp":2975674236,"id":122,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774570007921,"traceId":"7066332597972963"},{"name":"memory-usage","duration":19,"timestamp":2975740701,"id":124,"parentId":122,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1271398400","memory.heapUsed":"121806312","memory.heapTotal":"140361728"},"startTime":1774570007987,"traceId":"7066332597972963"},{"name":"ensure-page","duration":494,"timestamp":2976582963,"id":125,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570008830,"traceId":"7066332597972963"},{"name":"ensure-page","duration":378,"timestamp":2976583541,"id":126,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570008830,"traceId":"7066332597972963"},{"name":"ensure-page","duration":563,"timestamp":2976584914,"id":127,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570008832,"traceId":"7066332597972963"},{"name":"ensure-page","duration":428,"timestamp":2976585567,"id":128,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570008832,"traceId":"7066332597972963"},{"name":"ensure-page","duration":10018,"timestamp":2976588648,"id":130,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774570008835,"traceId":"7066332597972963"},{"name":"ensure-page","duration":10765,"timestamp":2976599555,"id":131,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774570008846,"traceId":"7066332597972963"},{"name":"compile-path","duration":1185961,"timestamp":2984005862,"id":134,"tags":{"trigger":"/admin/news"},"startTime":1774570016253,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":1256992,"timestamp":2984003258,"id":132,"tags":{"url":"/admin/news?_rsc=1b24o"},"startTime":1774570016250,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":2985260387,"id":135,"parentId":132,"tags":{"url":"/admin/news?_rsc=1b24o","memory.rss":"1305935872","memory.heapUsed":"116653664","memory.heapTotal":"125759488"},"startTime":1774570017507,"traceId":"7066332597972963"},{"name":"compile-path","duration":79822,"timestamp":2985410704,"id":138,"tags":{"trigger":"/admin/club"},"startTime":1774570017657,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":139285,"timestamp":2985409465,"id":136,"tags":{"url":"/admin/club?_rsc=tvrcw"},"startTime":1774570017656,"traceId":"7066332597972963"},{"name":"memory-usage","duration":14,"timestamp":2985548896,"id":139,"parentId":136,"tags":{"url":"/admin/club?_rsc=tvrcw","memory.rss":"1316892672","memory.heapUsed":"119010480","memory.heapTotal":"131473408"},"startTime":1774570017796,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3347,"timestamp":2987258483,"id":141,"parentId":3,"tags":{"inputPage":"/admin/news/page"},"startTime":1774570019505,"traceId":"7066332597972963"},{"name":"handle-request","duration":75799,"timestamp":2987257096,"id":140,"tags":{"url":"/admin/news?_rsc=1b53t"},"startTime":1774570019504,"traceId":"7066332597972963"},{"name":"memory-usage","duration":28,"timestamp":2987333195,"id":142,"parentId":140,"tags":{"url":"/admin/news?_rsc=1b53t","memory.rss":"1318465536","memory.heapUsed":"121788232","memory.heapTotal":"131473408"},"startTime":1774570019580,"traceId":"7066332597972963"},{"name":"ensure-page","duration":36474,"timestamp":2988220731,"id":144,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774570020467,"traceId":"7066332597972963"},{"name":"handle-request","duration":213145,"timestamp":2988219181,"id":143,"tags":{"url":"/admin/users?_rsc=tvrcw"},"startTime":1774570020466,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":2988432469,"id":145,"parentId":143,"tags":{"url":"/admin/users?_rsc=tvrcw","memory.rss":"1324183552","memory.heapUsed":"125900600","memory.heapTotal":"143953920"},"startTime":1774570020679,"traceId":"7066332597972963"},{"name":"compile-path","duration":232195,"timestamp":2993375310,"id":148,"tags":{"trigger":"/register"},"startTime":1774570025622,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":426468,"timestamp":2993374648,"id":146,"tags":{"url":"/register"},"startTime":1774570025621,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":2993801254,"id":149,"parentId":146,"tags":{"url":"/register","memory.rss":"1677283328","memory.heapUsed":"131146320","memory.heapTotal":"146268160"},"startTime":1774570026048,"traceId":"7066332597972963"},{"name":"ensure-page","duration":372,"timestamp":2994120270,"id":150,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570026367,"traceId":"7066332597972963"},{"name":"ensure-page","duration":214,"timestamp":2994120703,"id":151,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570026367,"traceId":"7066332597972963"},{"name":"ensure-page","duration":448,"timestamp":2994121894,"id":152,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570026369,"traceId":"7066332597972963"},{"name":"ensure-page","duration":297,"timestamp":2994122439,"id":153,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570026369,"traceId":"7066332597972963"},{"name":"compile-path","duration":65725,"timestamp":3030075531,"id":156,"tags":{"trigger":"/verify-email"},"startTime":1774570062322,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":366211,"timestamp":3030072703,"id":154,"tags":{"url":"/verify-email?token=67b45bf3e4501a0095b4fcd7791d47f2aa2252b66c316399208e0243854b9cc0"},"startTime":1774570062319,"traceId":"7066332597972963"},{"name":"memory-usage","duration":21,"timestamp":3030439173,"id":157,"parentId":154,"tags":{"url":"/verify-email?token=67b45bf3e4501a0095b4fcd7791d47f2aa2252b66c316399208e0243854b9cc0","memory.rss":"1355743232","memory.heapUsed":"130251816","memory.heapTotal":"136060928"},"startTime":1774570062686,"traceId":"7066332597972963"},{"name":"ensure-page","duration":405,"timestamp":3030767914,"id":158,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570063015,"traceId":"7066332597972963"},{"name":"ensure-page","duration":363,"timestamp":3030768400,"id":159,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570063015,"traceId":"7066332597972963"},{"name":"ensure-page","duration":388,"timestamp":3030769735,"id":160,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570063016,"traceId":"7066332597972963"},{"name":"ensure-page","duration":290,"timestamp":3030770191,"id":161,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570063017,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3769,"timestamp":3032879051,"id":163,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774570065126,"traceId":"7066332597972963"},{"name":"handle-request","duration":77738,"timestamp":3032877383,"id":162,"tags":{"url":"/login?_rsc=s7obu"},"startTime":1774570065124,"traceId":"7066332597972963"},{"name":"memory-usage","duration":22,"timestamp":3032955369,"id":164,"parentId":162,"tags":{"url":"/login?_rsc=s7obu","memory.rss":"1360199680","memory.heapUsed":"131982488","memory.heapTotal":"139444224"},"startTime":1774570065202,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4521,"timestamp":3033216385,"id":166,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774570065463,"traceId":"7066332597972963"},{"name":"handle-request","duration":86012,"timestamp":3033214518,"id":165,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774570065461,"traceId":"7066332597972963"},{"name":"memory-usage","duration":29,"timestamp":3033300842,"id":167,"parentId":165,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1360855040","memory.heapUsed":"133685376","memory.heapTotal":"140230656"},"startTime":1774570065548,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3548,"timestamp":3033372292,"id":169,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774570065619,"traceId":"7066332597972963"},{"name":"handle-request","duration":34782,"timestamp":3033371679,"id":168,"tags":{"url":"/admin?_rsc=1b24o"},"startTime":1774570065618,"traceId":"7066332597972963"},{"name":"memory-usage","duration":12,"timestamp":3033406601,"id":170,"parentId":168,"tags":{"url":"/admin?_rsc=1b24o","memory.rss":"1362034688","memory.heapUsed":"135333880","memory.heapTotal":"144949248"},"startTime":1774570065653,"traceId":"7066332597972963"},{"name":"ensure-page","duration":400,"timestamp":3033695415,"id":171,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570065942,"traceId":"7066332597972963"},{"name":"ensure-page","duration":245,"timestamp":3033695878,"id":172,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570065943,"traceId":"7066332597972963"},{"name":"ensure-page","duration":439,"timestamp":3033697994,"id":173,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570065945,"traceId":"7066332597972963"},{"name":"ensure-page","duration":366,"timestamp":3033698528,"id":174,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570065945,"traceId":"7066332597972963"},{"name":"ensure-page","duration":7500,"timestamp":3033700290,"id":176,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774570065947,"traceId":"7066332597972963"},{"name":"ensure-page","duration":7276,"timestamp":3033708017,"id":177,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774570065955,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3932,"timestamp":3037983816,"id":179,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774570070231,"traceId":"7066332597972963"},{"name":"handle-request","duration":80024,"timestamp":3037981972,"id":178,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774570070229,"traceId":"7066332597972963"},{"name":"memory-usage","duration":23,"timestamp":3038062287,"id":180,"parentId":178,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1372958720","memory.heapUsed":"133213904","memory.heapTotal":"145199104"},"startTime":1774570070309,"traceId":"7066332597972963"},{"name":"ensure-page","duration":270,"timestamp":3065940184,"id":181,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570098187,"traceId":"7066332597972963"},{"name":"ensure-page","duration":204,"timestamp":3065940512,"id":182,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570098187,"traceId":"7066332597972963"},{"name":"ensure-page","duration":263,"timestamp":3065941532,"id":183,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570098188,"traceId":"7066332597972963"},{"name":"ensure-page","duration":231,"timestamp":3065941848,"id":184,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570098189,"traceId":"7066332597972963"},{"name":"ensure-page","duration":5197,"timestamp":3065942795,"id":186,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774570098189,"traceId":"7066332597972963"},{"name":"ensure-page","duration":5303,"timestamp":3065948278,"id":187,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774570098195,"traceId":"7066332597972963"},{"name":"ensure-page","duration":6296,"timestamp":3066951754,"id":189,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774570099198,"traceId":"7066332597972963"},{"name":"handle-request","duration":92517,"timestamp":3066949684,"id":188,"tags":{"url":"/login?_rsc=3jpne"},"startTime":1774570099196,"traceId":"7066332597972963"},{"name":"memory-usage","duration":35,"timestamp":3067042490,"id":190,"parentId":188,"tags":{"url":"/login?_rsc=3jpne","memory.rss":"1354534912","memory.heapUsed":"135924336","memory.heapTotal":"140193792"},"startTime":1774570099289,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4499,"timestamp":3067118836,"id":192,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774570099366,"traceId":"7066332597972963"},{"name":"handle-request","duration":99159,"timestamp":3067116517,"id":191,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774570099363,"traceId":"7066332597972963"},{"name":"memory-usage","duration":45,"timestamp":3067216294,"id":193,"parentId":191,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1356238848","memory.heapUsed":"136482104","memory.heapTotal":"140980224"},"startTime":1774570099463,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3920,"timestamp":3114797431,"id":195,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774570147044,"traceId":"7066332597972963"},{"name":"handle-request","duration":72610,"timestamp":3114796088,"id":194,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774570147043,"traceId":"7066332597972963"},{"name":"memory-usage","duration":26,"timestamp":3114868964,"id":196,"parentId":194,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1354862592","memory.heapUsed":"137813776","memory.heapTotal":"141971456"},"startTime":1774570147116,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":108000,"timestamp":3671577919,"id":197,"parentId":3,"tags":{"updatedModules":["[project]/src/components/auth/register-form.tsx [app-client]"],"page":"/register","isPageHidden":true},"startTime":1774570703974,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":112000,"timestamp":3680919698,"id":198,"parentId":3,"tags":{"updatedModules":["[project]/src/components/auth/register-form.tsx [app-client]"],"page":"/register","isPageHidden":true},"startTime":1774570713307,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":90000,"timestamp":3687807678,"id":199,"parentId":3,"tags":{"updatedModules":["[project]/src/components/auth/register-form.tsx [app-client]"],"page":"/register","isPageHidden":true},"startTime":1774570720170,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4380,"timestamp":3788327087,"id":201,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774570820574,"traceId":"7066332597972963"},{"name":"handle-request","duration":67115,"timestamp":3788324813,"id":200,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774570820572,"traceId":"7066332597972963"},{"name":"memory-usage","duration":21,"timestamp":3788392185,"id":202,"parentId":200,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1343586304","memory.heapUsed":"139039272","memory.heapTotal":"144068608"},"startTime":1774570820639,"traceId":"7066332597972963"},{"name":"ensure-page","duration":27142,"timestamp":3800192834,"id":204,"parentId":3,"tags":{"inputPage":"/register/page"},"startTime":1774570832440,"traceId":"7066332597972963"},{"name":"handle-request","duration":152492,"timestamp":3800191422,"id":203,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774570832438,"traceId":"7066332597972963"},{"name":"memory-usage","duration":11,"timestamp":3800344058,"id":205,"parentId":203,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1349820416","memory.heapUsed":"147259896","memory.heapTotal":"154144768"},"startTime":1774570832591,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3339,"timestamp":3828685719,"id":207,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774570860932,"traceId":"7066332597972963"},{"name":"handle-request","duration":78262,"timestamp":3828684053,"id":206,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774570860931,"traceId":"7066332597972963"},{"name":"memory-usage","duration":22,"timestamp":3828762551,"id":208,"parentId":206,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1334304768","memory.heapUsed":"131352672","memory.heapTotal":"136601600"},"startTime":1774570861009,"traceId":"7066332597972963"},{"name":"ensure-page","duration":12708,"timestamp":3849173928,"id":210,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1774570881421,"traceId":"7066332597972963"},{"name":"handle-request","duration":205125,"timestamp":3849172215,"id":209,"tags":{"url":"/verify-email?token=56f009eeb33b2ffeee7ecdea83e01aa8e8e555ca3ff2b0a89e098b4782af5717"},"startTime":1774570881419,"traceId":"7066332597972963"},{"name":"memory-usage","duration":24,"timestamp":3849377597,"id":211,"parentId":209,"tags":{"url":"/verify-email?token=56f009eeb33b2ffeee7ecdea83e01aa8e8e555ca3ff2b0a89e098b4782af5717","memory.rss":"1334603776","memory.heapUsed":"132956440","memory.heapTotal":"137363456"},"startTime":1774570881624,"traceId":"7066332597972963"},{"name":"ensure-page","duration":821,"timestamp":3849888600,"id":212,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570882135,"traceId":"7066332597972963"},{"name":"ensure-page","duration":724,"timestamp":3849889584,"id":213,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570882136,"traceId":"7066332597972963"},{"name":"ensure-page","duration":492,"timestamp":3849893392,"id":214,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570882140,"traceId":"7066332597972963"},{"name":"ensure-page","duration":466,"timestamp":3849893978,"id":215,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570882141,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2987,"timestamp":3851109532,"id":217,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774570883356,"traceId":"7066332597972963"},{"name":"handle-request","duration":68488,"timestamp":3851108069,"id":216,"tags":{"url":"/login?_rsc=s7obu"},"startTime":1774570883355,"traceId":"7066332597972963"},{"name":"memory-usage","duration":27,"timestamp":3851176809,"id":218,"parentId":216,"tags":{"url":"/login?_rsc=s7obu","memory.rss":"1337487360","memory.heapUsed":"135113232","memory.heapTotal":"142082048"},"startTime":1774570883424,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4220,"timestamp":3956183554,"id":220,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774570988430,"traceId":"7066332597972963"},{"name":"handle-request","duration":300473,"timestamp":3956181510,"id":219,"tags":{"url":"/admin"},"startTime":1774570988428,"traceId":"7066332597972963"},{"name":"memory-usage","duration":11,"timestamp":3956482112,"id":221,"parentId":219,"tags":{"url":"/admin","memory.rss":"1348022272","memory.heapUsed":"144380264","memory.heapTotal":"151724032"},"startTime":1774570988729,"traceId":"7066332597972963"},{"name":"ensure-page","duration":453,"timestamp":3956715777,"id":222,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570988962,"traceId":"7066332597972963"},{"name":"ensure-page","duration":299,"timestamp":3956716303,"id":223,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570988963,"traceId":"7066332597972963"},{"name":"ensure-page","duration":370,"timestamp":3956720716,"id":224,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774570988967,"traceId":"7066332597972963"},{"name":"ensure-page","duration":245,"timestamp":3956721153,"id":225,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774570988968,"traceId":"7066332597972963"},{"name":"ensure-page","duration":293,"timestamp":3957530372,"id":226,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570989777,"traceId":"7066332597972963"},{"name":"ensure-page","duration":223,"timestamp":3957530723,"id":227,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570989777,"traceId":"7066332597972963"},{"name":"ensure-page","duration":255,"timestamp":3957531683,"id":228,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570989778,"traceId":"7066332597972963"},{"name":"ensure-page","duration":251,"timestamp":3957531989,"id":229,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774570989779,"traceId":"7066332597972963"},{"name":"ensure-page","duration":9445,"timestamp":3957534273,"id":231,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774570989781,"traceId":"7066332597972963"},{"name":"ensure-page","duration":6796,"timestamp":3957544019,"id":232,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774570989791,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2141,"timestamp":3959842073,"id":234,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774570992089,"traceId":"7066332597972963"},{"name":"handle-request","duration":47065,"timestamp":3959840555,"id":233,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1774570992087,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":3959887747,"id":235,"parentId":233,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"1371213824","memory.heapUsed":"142933448","memory.heapTotal":"155389952"},"startTime":1774570992134,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4435,"timestamp":4122752703,"id":237,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571154999,"traceId":"7066332597972963"},{"name":"ensure-page","duration":60770,"timestamp":4122755859,"id":239,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774571155003,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":151000,"timestamp":4122617168,"id":240,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/navigation.js [app-client]","[project]/src/lib/auth.ts [app-client]","[project]/src/components/auth/register-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774571155115,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2652,"timestamp":4122874892,"id":242,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571155122,"traceId":"7066332597972963"},{"name":"handle-request","duration":212637,"timestamp":4122753904,"id":238,"tags":{"url":"/admin/users?_rsc=1yew1"},"startTime":1774571155001,"traceId":"7066332597972963"},{"name":"memory-usage","duration":14,"timestamp":4122966681,"id":243,"parentId":238,"tags":{"url":"/admin/users?_rsc=1yew1","memory.rss":"1367527424","memory.heapUsed":"146218280","memory.heapTotal":"150671360"},"startTime":1774571155213,"traceId":"7066332597972963"},{"name":"handle-request","duration":106273,"timestamp":4122874067,"id":241,"tags":{"url":"/login"},"startTime":1774571155121,"traceId":"7066332597972963"},{"name":"memory-usage","duration":22,"timestamp":4122983137,"id":244,"parentId":241,"tags":{"url":"/login","memory.rss":"1367658496","memory.heapUsed":"146283224","memory.heapTotal":"150671360"},"startTime":1774571155230,"traceId":"7066332597972963"},{"name":"ensure-page","duration":502,"timestamp":4123220765,"id":245,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571155467,"traceId":"7066332597972963"},{"name":"ensure-page","duration":359,"timestamp":4123221356,"id":246,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571155468,"traceId":"7066332597972963"},{"name":"ensure-page","duration":327,"timestamp":4123224033,"id":247,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571155471,"traceId":"7066332597972963"},{"name":"ensure-page","duration":211,"timestamp":4123224420,"id":248,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571155471,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2427,"timestamp":4123455533,"id":250,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571155702,"traceId":"7066332597972963"},{"name":"handle-request","duration":65747,"timestamp":4123453792,"id":249,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774571155700,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":4123519687,"id":251,"parentId":249,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1368444928","memory.heapUsed":"148405056","memory.heapTotal":"155652096"},"startTime":1774571155766,"traceId":"7066332597972963"},{"name":"ensure-page","duration":555,"timestamp":4123915053,"id":252,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571156162,"traceId":"7066332597972963"},{"name":"ensure-page","duration":439,"timestamp":4123915706,"id":253,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571156162,"traceId":"7066332597972963"},{"name":"ensure-page","duration":535,"timestamp":4123917328,"id":254,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571156164,"traceId":"7066332597972963"},{"name":"ensure-page","duration":530,"timestamp":4123917944,"id":255,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571156165,"traceId":"7066332597972963"},{"name":"ensure-page","duration":6827,"timestamp":4123920406,"id":257,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571156167,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4530,"timestamp":4123927431,"id":258,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571156174,"traceId":"7066332597972963"},{"name":"ensure-page","duration":260,"timestamp":4255869078,"id":259,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571288116,"traceId":"7066332597972963"},{"name":"ensure-page","duration":205,"timestamp":4255869413,"id":260,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571288116,"traceId":"7066332597972963"},{"name":"ensure-page","duration":241,"timestamp":4255870290,"id":261,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571288117,"traceId":"7066332597972963"}] -[{"name":"ensure-page","duration":263,"timestamp":4255871214,"id":262,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571288118,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4402,"timestamp":4255872265,"id":264,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571288119,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3871,"timestamp":4255876908,"id":265,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571288124,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4932,"timestamp":4256821243,"id":267,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571289068,"traceId":"7066332597972963"},{"name":"handle-request","duration":86962,"timestamp":4256819244,"id":266,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774571289066,"traceId":"7066332597972963"},{"name":"memory-usage","duration":22,"timestamp":4256906441,"id":268,"parentId":266,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1394900992","memory.heapUsed":"152881432","memory.heapTotal":"157102080"},"startTime":1774571289153,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4206,"timestamp":4256977443,"id":270,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571289224,"traceId":"7066332597972963"},{"name":"handle-request","duration":117273,"timestamp":4256974959,"id":269,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774571289222,"traceId":"7066332597972963"},{"name":"memory-usage","duration":14,"timestamp":4257092388,"id":271,"parentId":269,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1394900992","memory.heapUsed":"153275616","memory.heapTotal":"157888512"},"startTime":1774571289339,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3300,"timestamp":4269490971,"id":273,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571301738,"traceId":"7066332597972963"},{"name":"handle-request","duration":135225,"timestamp":4269489315,"id":272,"tags":{"url":"/login"},"startTime":1774571301736,"traceId":"7066332597972963"},{"name":"memory-usage","duration":12,"timestamp":4269624665,"id":274,"parentId":272,"tags":{"url":"/login","memory.rss":"1373765632","memory.heapUsed":"154594352","memory.heapTotal":"160247808"},"startTime":1774571301871,"traceId":"7066332597972963"},{"name":"ensure-page","duration":339,"timestamp":4269898337,"id":275,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571302145,"traceId":"7066332597972963"},{"name":"ensure-page","duration":232,"timestamp":4269898743,"id":276,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571302145,"traceId":"7066332597972963"},{"name":"ensure-page","duration":395,"timestamp":4269899771,"id":277,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571302146,"traceId":"7066332597972963"},{"name":"ensure-page","duration":338,"timestamp":4269900237,"id":278,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571302147,"traceId":"7066332597972963"},{"name":"ensure-page","duration":5138,"timestamp":4270319613,"id":280,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571302566,"traceId":"7066332597972963"},{"name":"handle-request","duration":96369,"timestamp":4270317611,"id":279,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774571302564,"traceId":"7066332597972963"},{"name":"memory-usage","duration":34,"timestamp":4270414377,"id":281,"parentId":279,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1373171712","memory.heapUsed":"147715024","memory.heapTotal":"160567296"},"startTime":1774571302661,"traceId":"7066332597972963"},{"name":"ensure-page","duration":456,"timestamp":4271071691,"id":282,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571303318,"traceId":"7066332597972963"},{"name":"ensure-page","duration":497,"timestamp":4271072247,"id":283,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571303319,"traceId":"7066332597972963"},{"name":"ensure-page","duration":508,"timestamp":4271074068,"id":284,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571303321,"traceId":"7066332597972963"},{"name":"ensure-page","duration":280,"timestamp":4271074665,"id":285,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571303321,"traceId":"7066332597972963"},{"name":"ensure-page","duration":7514,"timestamp":4271076557,"id":287,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571303323,"traceId":"7066332597972963"},{"name":"ensure-page","duration":5461,"timestamp":4271084329,"id":288,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571303331,"traceId":"7066332597972963"},{"name":"ensure-page","duration":303,"timestamp":4278473852,"id":289,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571310721,"traceId":"7066332597972963"},{"name":"ensure-page","duration":201,"timestamp":4278474213,"id":290,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571310721,"traceId":"7066332597972963"},{"name":"ensure-page","duration":232,"timestamp":4278475051,"id":291,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571310722,"traceId":"7066332597972963"},{"name":"ensure-page","duration":195,"timestamp":4278475333,"id":292,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571310722,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4109,"timestamp":4278476221,"id":294,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571310723,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4300,"timestamp":4278480534,"id":295,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571310727,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2262,"timestamp":4279932565,"id":297,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571312179,"traceId":"7066332597972963"},{"name":"handle-request","duration":41115,"timestamp":4279931908,"id":296,"tags":{"url":"/login?_rsc=wkrq7"},"startTime":1774571312179,"traceId":"7066332597972963"},{"name":"memory-usage","duration":12,"timestamp":4279973154,"id":298,"parentId":296,"tags":{"url":"/login?_rsc=wkrq7","memory.rss":"1394962432","memory.heapUsed":"151752888","memory.heapTotal":"163631104"},"startTime":1774571312220,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3120,"timestamp":4279994171,"id":300,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571312241,"traceId":"7066332597972963"},{"name":"handle-request","duration":46124,"timestamp":4279993482,"id":299,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774571312240,"traceId":"7066332597972963"},{"name":"memory-usage","duration":15,"timestamp":4280039760,"id":301,"parentId":299,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1394962432","memory.heapUsed":"153056424","memory.heapTotal":"163631104"},"startTime":1774571312286,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3394,"timestamp":4283427298,"id":303,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571315674,"traceId":"7066332597972963"},{"name":"handle-request","duration":63901,"timestamp":4283426519,"id":302,"tags":{"url":"/login"},"startTime":1774571315673,"traceId":"7066332597972963"},{"name":"memory-usage","duration":11,"timestamp":4283490546,"id":304,"parentId":302,"tags":{"url":"/login","memory.rss":"1396928512","memory.heapUsed":"154417600","memory.heapTotal":"167825408"},"startTime":1774571315737,"traceId":"7066332597972963"},{"name":"ensure-page","duration":583,"timestamp":4283728329,"id":305,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571315975,"traceId":"7066332597972963"},{"name":"ensure-page","duration":381,"timestamp":4283729057,"id":306,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571315976,"traceId":"7066332597972963"},{"name":"ensure-page","duration":336,"timestamp":4283730751,"id":307,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571315977,"traceId":"7066332597972963"},{"name":"ensure-page","duration":331,"timestamp":4283731167,"id":308,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571315978,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3832,"timestamp":4431252687,"id":310,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571463499,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":195000,"timestamp":4431023730,"id":311,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1774571463593,"traceId":"7066332597972963"},{"name":"handle-request","duration":108861,"timestamp":4431250942,"id":309,"tags":{"url":"/login?_rsc=hl69e"},"startTime":1774571463498,"traceId":"7066332597972963"},{"name":"memory-usage","duration":31,"timestamp":4431360136,"id":312,"parentId":309,"tags":{"url":"/login?_rsc=hl69e","memory.rss":"1360760832","memory.heapUsed":"140173496","memory.heapTotal":"145567744"},"startTime":1774571463607,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":95000,"timestamp":4479788512,"id":313,"parentId":3,"tags":{"updatedModules":["[project]/src/components/auth/login-form.tsx [app-client]"],"page":"/login","isPageHidden":false},"startTime":1774571512159,"traceId":"7066332597972963"},{"name":"client-hmr-latency","duration":97000,"timestamp":4497548938,"id":314,"parentId":3,"tags":{"updatedModules":["[project]/src/components/auth/login-form.tsx [app-client]"],"page":"/login","isPageHidden":false},"startTime":1774571529923,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1770,"timestamp":4500085440,"id":316,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571532332,"traceId":"7066332597972963"},{"name":"handle-request","duration":36936,"timestamp":4500084846,"id":315,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774571532332,"traceId":"7066332597972963"},{"name":"memory-usage","duration":11,"timestamp":4500121903,"id":317,"parentId":315,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1383141376","memory.heapUsed":"141229640","memory.heapTotal":"146329600"},"startTime":1774571532369,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3966,"timestamp":4500149648,"id":319,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571532396,"traceId":"7066332597972963"},{"name":"handle-request","duration":57795,"timestamp":4500148880,"id":318,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774571532396,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":4500206816,"id":320,"parentId":318,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1383796736","memory.heapUsed":"142193224","memory.heapTotal":"147116032"},"startTime":1774571532454,"traceId":"7066332597972963"},{"name":"ensure-page","duration":462,"timestamp":4500701900,"id":321,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571532949,"traceId":"7066332597972963"},{"name":"ensure-page","duration":357,"timestamp":4500702453,"id":322,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571532949,"traceId":"7066332597972963"},{"name":"ensure-page","duration":326,"timestamp":4500704784,"id":323,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571532951,"traceId":"7066332597972963"},{"name":"ensure-page","duration":207,"timestamp":4500705168,"id":324,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571532952,"traceId":"7066332597972963"},{"name":"ensure-page","duration":5848,"timestamp":4500706181,"id":326,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571532953,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4170,"timestamp":4500712239,"id":327,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571532959,"traceId":"7066332597972963"},{"name":"ensure-page","duration":294,"timestamp":4506298481,"id":328,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571538545,"traceId":"7066332597972963"},{"name":"ensure-page","duration":242,"timestamp":4506298836,"id":329,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571538546,"traceId":"7066332597972963"},{"name":"ensure-page","duration":282,"timestamp":4506299775,"id":330,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571538546,"traceId":"7066332597972963"},{"name":"ensure-page","duration":227,"timestamp":4506300109,"id":331,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571538547,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3540,"timestamp":4506301087,"id":333,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571538548,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3754,"timestamp":4506304791,"id":334,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571538551,"traceId":"7066332597972963"},{"name":"ensure-page","duration":23681,"timestamp":4508071505,"id":336,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571540318,"traceId":"7066332597972963"},{"name":"handle-request","duration":240947,"timestamp":4508070264,"id":335,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774571540317,"traceId":"7066332597972963"},{"name":"memory-usage","duration":11,"timestamp":4508311350,"id":337,"parentId":335,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1396998144","memory.heapUsed":"154964696","memory.heapTotal":"165871616"},"startTime":1774571540558,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1868,"timestamp":4508322366,"id":339,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571540569,"traceId":"7066332597972963"},{"name":"handle-request","duration":82030,"timestamp":4508321400,"id":338,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774571540568,"traceId":"7066332597972963"},{"name":"memory-usage","duration":23,"timestamp":4508403559,"id":340,"parentId":338,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1396817920","memory.heapUsed":"150082368","memory.heapTotal":"174096384"},"startTime":1774571540650,"traceId":"7066332597972963"},{"name":"compile-path","duration":36082,"timestamp":4510166666,"id":343,"tags":{"trigger":"/register"},"startTime":1774571542413,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":107958,"timestamp":4510164950,"id":341,"tags":{"url":"/register?_rsc=5c339"},"startTime":1774571542412,"traceId":"7066332597972963"},{"name":"memory-usage","duration":21,"timestamp":4510273172,"id":344,"parentId":341,"tags":{"url":"/register?_rsc=5c339","memory.rss":"1396948992","memory.heapUsed":"152287144","memory.heapTotal":"174096384"},"startTime":1774571542520,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3019,"timestamp":4533251091,"id":346,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571565498,"traceId":"7066332597972963"},{"name":"handle-request","duration":59930,"timestamp":4533249764,"id":345,"tags":{"url":"/login?_rsc=1x908"},"startTime":1774571565496,"traceId":"7066332597972963"},{"name":"memory-usage","duration":22,"timestamp":4533309935,"id":347,"parentId":345,"tags":{"url":"/login?_rsc=1x908","memory.rss":"1381269504","memory.heapUsed":"155201816","memory.heapTotal":"174096384"},"startTime":1774571565557,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1790,"timestamp":4580204243,"id":349,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571612451,"traceId":"7066332597972963"},{"name":"handle-request","duration":28663,"timestamp":4580203607,"id":348,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774571612450,"traceId":"7066332597972963"},{"name":"memory-usage","duration":10,"timestamp":4580232373,"id":350,"parentId":348,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1400930304","memory.heapUsed":"157442704","memory.heapTotal":"174096384"},"startTime":1774571612479,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4524,"timestamp":4580239805,"id":352,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571612486,"traceId":"7066332597972963"},{"name":"handle-request","duration":48250,"timestamp":4580239095,"id":351,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774571612486,"traceId":"7066332597972963"},{"name":"memory-usage","duration":12,"timestamp":4580287470,"id":353,"parentId":351,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1402372096","memory.heapUsed":"153487008","memory.heapTotal":"163086336"},"startTime":1774571612534,"traceId":"7066332597972963"},{"name":"ensure-page","duration":424,"timestamp":4580448189,"id":354,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571612695,"traceId":"7066332597972963"},{"name":"ensure-page","duration":388,"timestamp":4580448699,"id":355,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571612695,"traceId":"7066332597972963"},{"name":"ensure-page","duration":355,"timestamp":4580449919,"id":356,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571612697,"traceId":"7066332597972963"},{"name":"ensure-page","duration":228,"timestamp":4580450346,"id":357,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571612697,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4033,"timestamp":4580451344,"id":359,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571612698,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4105,"timestamp":4580455674,"id":360,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571612702,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4580,"timestamp":4583017369,"id":362,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774571615264,"traceId":"7066332597972963"},{"name":"handle-request","duration":68160,"timestamp":4583015532,"id":361,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774571615262,"traceId":"7066332597972963"},{"name":"memory-usage","duration":33,"timestamp":4583084036,"id":363,"parentId":361,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1406173184","memory.heapUsed":"155897456","memory.heapTotal":"160407552"},"startTime":1774571615331,"traceId":"7066332597972963"},{"name":"ensure-page","duration":264,"timestamp":4598388327,"id":364,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571630635,"traceId":"7066332597972963"},{"name":"ensure-page","duration":178,"timestamp":4598388646,"id":365,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571630635,"traceId":"7066332597972963"},{"name":"ensure-page","duration":263,"timestamp":4598390497,"id":366,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571630637,"traceId":"7066332597972963"},{"name":"ensure-page","duration":210,"timestamp":4598390813,"id":367,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774571630637,"traceId":"7066332597972963"},{"name":"ensure-page","duration":5000,"timestamp":4598391726,"id":369,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571630638,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4425,"timestamp":4598396890,"id":370,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774571630644,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2060,"timestamp":4599737923,"id":372,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571631985,"traceId":"7066332597972963"},{"name":"handle-request","duration":47852,"timestamp":4599737140,"id":371,"tags":{"url":"/login?_rsc=3jpne"},"startTime":1774571631984,"traceId":"7066332597972963"},{"name":"memory-usage","duration":16,"timestamp":4599785177,"id":373,"parentId":371,"tags":{"url":"/login?_rsc=3jpne","memory.rss":"1382653952","memory.heapUsed":"158040080","memory.heapTotal":"162766848"},"startTime":1774571632032,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2106,"timestamp":4599796571,"id":375,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571632043,"traceId":"7066332597972963"},{"name":"handle-request","duration":57044,"timestamp":4599795351,"id":374,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774571632042,"traceId":"7066332597972963"},{"name":"memory-usage","duration":25,"timestamp":4599852703,"id":376,"parentId":374,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1382653952","memory.heapUsed":"158547840","memory.heapTotal":"164601856"},"startTime":1774571632099,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4191,"timestamp":4623557571,"id":378,"parentId":3,"tags":{"inputPage":"/verify-email/page"},"startTime":1774571655804,"traceId":"7066332597972963"},{"name":"handle-request","duration":175070,"timestamp":4623555678,"id":377,"tags":{"url":"/verify-email?token=86174cf3875a678d42ab3771bb294bad9623a0c74f36ce1df41267ac63803b28"},"startTime":1774571655802,"traceId":"7066332597972963"},{"name":"memory-usage","duration":29,"timestamp":4623731384,"id":379,"parentId":377,"tags":{"url":"/verify-email?token=86174cf3875a678d42ab3771bb294bad9623a0c74f36ce1df41267ac63803b28","memory.rss":"1382486016","memory.heapUsed":"159945248","memory.heapTotal":"165912576"},"startTime":1774571655978,"traceId":"7066332597972963"},{"name":"ensure-page","duration":316,"timestamp":4624176388,"id":380,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571656423,"traceId":"7066332597972963"},{"name":"ensure-page","duration":250,"timestamp":4624176773,"id":381,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571656423,"traceId":"7066332597972963"},{"name":"ensure-page","duration":247,"timestamp":4624177703,"id":382,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571656424,"traceId":"7066332597972963"},{"name":"ensure-page","duration":219,"timestamp":4624178031,"id":383,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571656425,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2890,"timestamp":4627533945,"id":385,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571659781,"traceId":"7066332597972963"},{"name":"handle-request","duration":67954,"timestamp":4627532644,"id":384,"tags":{"url":"/login?_rsc=s7obu"},"startTime":1774571659779,"traceId":"7066332597972963"},{"name":"memory-usage","duration":22,"timestamp":4627600856,"id":386,"parentId":384,"tags":{"url":"/login?_rsc=s7obu","memory.rss":"1404112896","memory.heapUsed":"162706232","memory.heapTotal":"168148992"},"startTime":1774571659848,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3547,"timestamp":4634140270,"id":388,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571666387,"traceId":"7066332597972963"},{"name":"handle-request","duration":33346,"timestamp":4634139725,"id":387,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774571666386,"traceId":"7066332597972963"},{"name":"memory-usage","duration":12,"timestamp":4634173200,"id":389,"parentId":387,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1385152512","memory.heapUsed":"163231248","memory.heapTotal":"168148992"},"startTime":1774571666420,"traceId":"7066332597972963"},{"name":"ensure-page","duration":4678,"timestamp":4634199062,"id":391,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571666446,"traceId":"7066332597972963"},{"name":"handle-request","duration":50249,"timestamp":4634198268,"id":390,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774571666445,"traceId":"7066332597972963"},{"name":"memory-usage","duration":10,"timestamp":4634248641,"id":392,"parentId":390,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1385152512","memory.heapUsed":"164108528","memory.heapTotal":"172081152"},"startTime":1774571666495,"traceId":"7066332597972963"},{"name":"compile-path","duration":10121,"timestamp":4634399899,"id":395,"tags":{"trigger":"/"},"startTime":1774571666647,"traceId":"7066332597972963"}] -[{"name":"handle-request","duration":103283,"timestamp":4634398715,"id":393,"tags":{"url":"/?_rsc=1b24o"},"startTime":1774571666645,"traceId":"7066332597972963"},{"name":"memory-usage","duration":12,"timestamp":4634502155,"id":396,"parentId":393,"tags":{"url":"/?_rsc=1b24o","memory.rss":"1388281856","memory.heapUsed":"158035848","memory.heapTotal":"174657536"},"startTime":1774571666749,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3237,"timestamp":4634505063,"id":398,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1774571666752,"traceId":"7066332597972963"},{"name":"handle-request","duration":47243,"timestamp":4634504343,"id":397,"tags":{"url":"/?_rsc=1b24o"},"startTime":1774571666751,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":4634551730,"id":399,"parentId":397,"tags":{"url":"/?_rsc=1b24o","memory.rss":"1388937216","memory.heapUsed":"158790208","memory.heapTotal":"178851840"},"startTime":1774571666798,"traceId":"7066332597972963"},{"name":"ensure-page","duration":50647,"timestamp":4721104963,"id":401,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571753352,"traceId":"7066332597972963"},{"name":"handle-request","duration":428447,"timestamp":4721103100,"id":400,"tags":{"url":"/login"},"startTime":1774571753350,"traceId":"7066332597972963"},{"name":"memory-usage","duration":12,"timestamp":4721531690,"id":402,"parentId":400,"tags":{"url":"/login","memory.rss":"1395023872","memory.heapUsed":"170124128","memory.heapTotal":"179367936"},"startTime":1774571753778,"traceId":"7066332597972963"},{"name":"ensure-page","duration":536,"timestamp":4721823406,"id":403,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571754070,"traceId":"7066332597972963"},{"name":"ensure-page","duration":301,"timestamp":4721824043,"id":404,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571754071,"traceId":"7066332597972963"},{"name":"ensure-page","duration":471,"timestamp":4721825313,"id":405,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571754072,"traceId":"7066332597972963"},{"name":"ensure-page","duration":384,"timestamp":4721825880,"id":406,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571754073,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3352,"timestamp":4722238915,"id":408,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1774571754486,"traceId":"7066332597972963"},{"name":"handle-request","duration":86959,"timestamp":4722236756,"id":407,"tags":{"url":"/?_rsc=5c339"},"startTime":1774571754483,"traceId":"7066332597972963"},{"name":"memory-usage","duration":18,"timestamp":4722323911,"id":409,"parentId":407,"tags":{"url":"/?_rsc=5c339","memory.rss":"1393590272","memory.heapUsed":"169899136","memory.heapTotal":"186093568"},"startTime":1774571754571,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2746,"timestamp":4734212933,"id":411,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774571766460,"traceId":"7066332597972963"},{"name":"handle-request","duration":184900,"timestamp":4734211182,"id":410,"tags":{"url":"/admin"},"startTime":1774571766458,"traceId":"7066332597972963"},{"name":"memory-usage","duration":23,"timestamp":4734396306,"id":412,"parentId":410,"tags":{"url":"/admin","memory.rss":"1400332288","memory.heapUsed":"168181240","memory.heapTotal":"185511936"},"startTime":1774571766643,"traceId":"7066332597972963"},{"name":"ensure-page","duration":436,"timestamp":4734830653,"id":413,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571767077,"traceId":"7066332597972963"},{"name":"ensure-page","duration":339,"timestamp":4734831170,"id":414,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571767078,"traceId":"7066332597972963"},{"name":"ensure-page","duration":369,"timestamp":4734832602,"id":415,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571767079,"traceId":"7066332597972963"},{"name":"ensure-page","duration":352,"timestamp":4734833056,"id":416,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571767080,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2142,"timestamp":4735116294,"id":418,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1774571767363,"traceId":"7066332597972963"},{"name":"handle-request","duration":71178,"timestamp":4735115631,"id":417,"tags":{"url":"/?_rsc=1szk4"},"startTime":1774571767362,"traceId":"7066332597972963"},{"name":"memory-usage","duration":26,"timestamp":4735187085,"id":419,"parentId":417,"tags":{"url":"/?_rsc=1szk4","memory.rss":"1402429440","memory.heapUsed":"169402528","memory.heapTotal":"186560512"},"startTime":1774571767434,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2716,"timestamp":4803050106,"id":421,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1774571835297,"traceId":"7066332597972963"},{"name":"handle-request","duration":156945,"timestamp":4803048807,"id":420,"tags":{"url":"/"},"startTime":1774571835295,"traceId":"7066332597972963"},{"name":"memory-usage","duration":13,"timestamp":4803205909,"id":422,"parentId":420,"tags":{"url":"/","memory.rss":"1423130624","memory.heapUsed":"172630256","memory.heapTotal":"177266688"},"startTime":1774571835453,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2994,"timestamp":4807452745,"id":424,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774571839699,"traceId":"7066332597972963"},{"name":"handle-request","duration":123376,"timestamp":4807451375,"id":423,"tags":{"url":"/login"},"startTime":1774571839698,"traceId":"7066332597972963"},{"name":"memory-usage","duration":11,"timestamp":4807574890,"id":425,"parentId":423,"tags":{"url":"/login","memory.rss":"1424572416","memory.heapUsed":"174665744","memory.heapTotal":"180027392"},"startTime":1774571839822,"traceId":"7066332597972963"},{"name":"ensure-page","duration":411,"timestamp":4807740096,"id":426,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571839987,"traceId":"7066332597972963"},{"name":"ensure-page","duration":339,"timestamp":4807740587,"id":427,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571839987,"traceId":"7066332597972963"},{"name":"ensure-page","duration":392,"timestamp":4807741905,"id":428,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774571839989,"traceId":"7066332597972963"},{"name":"ensure-page","duration":331,"timestamp":4807742370,"id":429,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774571839989,"traceId":"7066332597972963"},{"name":"ensure-page","duration":3177,"timestamp":5127391549,"id":431,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572159638,"traceId":"7066332597972963"},{"name":"handle-request","duration":30365,"timestamp":5127390088,"id":430,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774572159637,"traceId":"7066332597972963"},{"name":"memory-usage","duration":11,"timestamp":5127420532,"id":432,"parentId":430,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1424216064","memory.heapUsed":"176175696","memory.heapTotal":"181600256"},"startTime":1774572159667,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1725,"timestamp":5127438240,"id":434,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572159685,"traceId":"7066332597972963"},{"name":"handle-request","duration":24560,"timestamp":5127437769,"id":433,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774572159684,"traceId":"7066332597972963"},{"name":"memory-usage","duration":6,"timestamp":5127462401,"id":435,"parentId":433,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1424216064","memory.heapUsed":"177542992","memory.heapTotal":"182124544"},"startTime":1774572159709,"traceId":"7066332597972963"},{"name":"ensure-page","duration":766,"timestamp":5127541772,"id":437,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572159788,"traceId":"7066332597972963"},{"name":"handle-request","duration":17128,"timestamp":5127541300,"id":436,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572159788,"traceId":"7066332597972963"},{"name":"memory-usage","duration":8,"timestamp":5127558527,"id":438,"parentId":436,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1424216064","memory.heapUsed":"178104840","memory.heapTotal":"183173120"},"startTime":1774572159805,"traceId":"7066332597972963"},{"name":"ensure-page","duration":900,"timestamp":5127560614,"id":440,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572159807,"traceId":"7066332597972963"},{"name":"handle-request","duration":16943,"timestamp":5127560125,"id":439,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572159807,"traceId":"7066332597972963"},{"name":"memory-usage","duration":7,"timestamp":5127577174,"id":441,"parentId":439,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1424216064","memory.heapUsed":"178857112","memory.heapTotal":"187105280"},"startTime":1774572159824,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1116,"timestamp":5140423833,"id":443,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572172671,"traceId":"7066332597972963"},{"name":"handle-request","duration":24863,"timestamp":5140422670,"id":442,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774572172669,"traceId":"7066332597972963"},{"name":"memory-usage","duration":8,"timestamp":5140447622,"id":444,"parentId":442,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1424490496","memory.heapUsed":"179098352","memory.heapTotal":"184483840"},"startTime":1774572172694,"traceId":"7066332597972963"},{"name":"ensure-page","duration":811,"timestamp":5140454050,"id":446,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572172701,"traceId":"7066332597972963"},{"name":"handle-request","duration":21743,"timestamp":5140453543,"id":445,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774572172700,"traceId":"7066332597972963"},{"name":"memory-usage","duration":7,"timestamp":5140475379,"id":447,"parentId":445,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1424490496","memory.heapUsed":"180374656","memory.heapTotal":"185008128"},"startTime":1774572172722,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1247,"timestamp":5140544843,"id":449,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572172792,"traceId":"7066332597972963"},{"name":"ensure-page","duration":745,"timestamp":5140563943,"id":451,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572172811,"traceId":"7066332597972963"},{"name":"handle-request","duration":33978,"timestamp":5140544207,"id":448,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572172791,"traceId":"7066332597972963"},{"name":"memory-usage","duration":6,"timestamp":5140578270,"id":452,"parentId":448,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1424490496","memory.heapUsed":"181161568","memory.heapTotal":"186318848"},"startTime":1774572172825,"traceId":"7066332597972963"},{"name":"handle-request","duration":15964,"timestamp":5140563557,"id":450,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572172810,"traceId":"7066332597972963"},{"name":"memory-usage","duration":5,"timestamp":5140579594,"id":453,"parentId":450,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1424490496","memory.heapUsed":"181216640","memory.heapTotal":"186318848"},"startTime":1774572172826,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2636,"timestamp":5178428271,"id":455,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572210675,"traceId":"7066332597972963"},{"name":"handle-request","duration":35838,"timestamp":5178426997,"id":454,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774572210674,"traceId":"7066332597972963"},{"name":"memory-usage","duration":6,"timestamp":5178462921,"id":456,"parentId":454,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1424523264","memory.heapUsed":"182161480","memory.heapTotal":"186843136"},"startTime":1774572210710,"traceId":"7066332597972963"},{"name":"ensure-page","duration":947,"timestamp":5178468442,"id":458,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572210715,"traceId":"7066332597972963"},{"name":"handle-request","duration":25231,"timestamp":5178467992,"id":457,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774572210715,"traceId":"7066332597972963"},{"name":"memory-usage","duration":6,"timestamp":5178493304,"id":459,"parentId":457,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1424916480","memory.heapUsed":"182890504","memory.heapTotal":"188678144"},"startTime":1774572210740,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1858,"timestamp":5178552856,"id":461,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572210800,"traceId":"7066332597972963"},{"name":"ensure-page","duration":17159,"timestamp":5178553962,"id":463,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572210801,"traceId":"7066332597972963"},{"name":"handle-request","duration":33378,"timestamp":5178552409,"id":460,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572210799,"traceId":"7066332597972963"},{"name":"memory-usage","duration":9,"timestamp":5178585894,"id":464,"parentId":460,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1425301504","memory.heapUsed":"172256432","memory.heapTotal":"187629568"},"startTime":1774572210833,"traceId":"7066332597972963"},{"name":"handle-request","duration":33348,"timestamp":5178553459,"id":462,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572210800,"traceId":"7066332597972963"},{"name":"memory-usage","duration":6,"timestamp":5178586879,"id":465,"parentId":462,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1425301504","memory.heapUsed":"172313784","memory.heapTotal":"187629568"},"startTime":1774572210834,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1673,"timestamp":5183415436,"id":467,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572215662,"traceId":"7066332597972963"},{"name":"handle-request","duration":55547,"timestamp":5183414764,"id":466,"tags":{"url":"/admin"},"startTime":1774572215661,"traceId":"7066332597972963"},{"name":"memory-usage","duration":9,"timestamp":5183470415,"id":468,"parentId":466,"tags":{"url":"/admin","memory.rss":"1426202624","memory.heapUsed":"174490688","memory.heapTotal":"190775296"},"startTime":1774572215717,"traceId":"7066332597972963"},{"name":"ensure-page","duration":288,"timestamp":5183611542,"id":469,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774572215858,"traceId":"7066332597972963"},{"name":"ensure-page","duration":218,"timestamp":5183611884,"id":470,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774572215859,"traceId":"7066332597972963"},{"name":"ensure-page","duration":196,"timestamp":5183612667,"id":471,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774572215859,"traceId":"7066332597972963"},{"name":"ensure-page","duration":185,"timestamp":5183612901,"id":472,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774572215860,"traceId":"7066332597972963"},{"name":"ensure-page","duration":995,"timestamp":5183730488,"id":474,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572215977,"traceId":"7066332597972963"},{"name":"handle-request","duration":20252,"timestamp":5183729910,"id":473,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774572215977,"traceId":"7066332597972963"},{"name":"memory-usage","duration":7,"timestamp":5183750241,"id":475,"parentId":473,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"1409376256","memory.heapUsed":"177382712","memory.heapTotal":"195698688"},"startTime":1774572215997,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1740,"timestamp":5203734427,"id":477,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572235981,"traceId":"7066332597972963"},{"name":"handle-request","duration":26620,"timestamp":5203733390,"id":476,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774572235980,"traceId":"7066332597972963"},{"name":"memory-usage","duration":6,"timestamp":5203760089,"id":478,"parentId":476,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1412370432","memory.heapUsed":"168441944","memory.heapTotal":"174727168"},"startTime":1774572236007,"traceId":"7066332597972963"},{"name":"ensure-page","duration":917,"timestamp":5203773659,"id":480,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572236020,"traceId":"7066332597972963"},{"name":"handle-request","duration":21443,"timestamp":5203773190,"id":479,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774572236020,"traceId":"7066332597972963"},{"name":"memory-usage","duration":7,"timestamp":5203794728,"id":481,"parentId":479,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1412370432","memory.heapUsed":"169216608","memory.heapTotal":"174727168"},"startTime":1774572236041,"traceId":"7066332597972963"},{"name":"ensure-page","duration":2867,"timestamp":5203888057,"id":483,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572236135,"traceId":"7066332597972963"},{"name":"handle-request","duration":25267,"timestamp":5203887547,"id":482,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572236134,"traceId":"7066332597972963"},{"name":"memory-usage","duration":10,"timestamp":5203912923,"id":484,"parentId":482,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1393840128","memory.heapUsed":"169604536","memory.heapTotal":"174964736"},"startTime":1774572236160,"traceId":"7066332597972963"},{"name":"ensure-page","duration":922,"timestamp":5203916796,"id":486,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572236163,"traceId":"7066332597972963"},{"name":"handle-request","duration":19470,"timestamp":5203916329,"id":485,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572236163,"traceId":"7066332597972963"},{"name":"memory-usage","duration":7,"timestamp":5203935891,"id":487,"parentId":485,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"1394233344","memory.heapUsed":"170332360","memory.heapTotal":"176275456"},"startTime":1774572236183,"traceId":"7066332597972963"},{"name":"ensure-page","duration":1897,"timestamp":5903594490,"id":489,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572935841,"traceId":"7066332597972963"},{"name":"handle-request","duration":26359,"timestamp":5903593596,"id":488,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774572935840,"traceId":"7066332597972963"},{"name":"memory-usage","duration":7,"timestamp":5903620058,"id":490,"parentId":488,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1413558272","memory.heapUsed":"171170504","memory.heapTotal":"176275456"},"startTime":1774572935867,"traceId":"7066332597972963"},{"name":"ensure-page","duration":905,"timestamp":5903631725,"id":492,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774572935878,"traceId":"7066332597972963"},{"name":"handle-request","duration":21284,"timestamp":5903631262,"id":491,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774572935878,"traceId":"7066332597972963"},{"name":"memory-usage","duration":7,"timestamp":5903652621,"id":493,"parentId":491,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1414344704","memory.heapUsed":"171716816","memory.heapTotal":"177061888"},"startTime":1774572935899,"traceId":"7066332597972963"},{"name":"ensure-page","duration":778,"timestamp":5903709832,"id":495,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774572935957,"traceId":"7066332597972963"},{"name":"handle-request","duration":16339,"timestamp":5903709433,"id":494,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774572935956,"traceId":"7066332597972963"}] -[{"name":"hot-reloader","duration":88,"timestamp":6015857667,"id":3,"tags":{"version":"16.1.6"},"startTime":1774573048104,"traceId":"4f14c3d45b01d17e"},{"name":"compile-path","duration":81691,"timestamp":6016055786,"id":4,"tags":{"trigger":"middleware"},"startTime":1774573048302,"traceId":"4f14c3d45b01d17e"}] -[{"name":"setup-dev-bundler","duration":597393,"timestamp":6015689192,"id":2,"parentId":1,"tags":{},"startTime":1774573047936,"traceId":"4f14c3d45b01d17e"},{"name":"start-dev-server","duration":1745411,"timestamp":6014749733,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"8686034944","memory.totalMem":"16408379392","memory.heapSizeLimit":"8254390272","memory.rss":"485343232","memory.heapTotal":"89853952","memory.heapUsed":"65841072"},"startTime":1774573046997,"traceId":"4f14c3d45b01d17e"},{"name":"compile-path","duration":475217,"timestamp":6016635459,"id":7,"tags":{"trigger":"/login"},"startTime":1774573048882,"traceId":"4f14c3d45b01d17e"}] -[{"name":"handle-request","duration":1286682,"timestamp":6016620213,"id":5,"tags":{"url":"/login"},"startTime":1774573048867,"traceId":"4f14c3d45b01d17e"},{"name":"memory-usage","duration":10,"timestamp":6017907053,"id":8,"parentId":5,"tags":{"url":"/login","memory.rss":"645070848","memory.heapUsed":"91585392","memory.heapTotal":"116883456"},"startTime":1774573050154,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":1343,"timestamp":6018223774,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774573050470,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":329,"timestamp":6018225261,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774573050472,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":350,"timestamp":6018226813,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774573050473,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":419,"timestamp":6018227243,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774573050474,"traceId":"4f14c3d45b01d17e"},{"name":"compile-path","duration":50595,"timestamp":6029444942,"id":15,"tags":{"trigger":"/admin"},"startTime":1774573061692,"traceId":"4f14c3d45b01d17e"}] -[{"name":"handle-request","duration":82754,"timestamp":6029443646,"id":13,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774573061690,"traceId":"4f14c3d45b01d17e"},{"name":"memory-usage","duration":8,"timestamp":6029526569,"id":16,"parentId":13,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"763842560","memory.heapUsed":"93958544","memory.heapTotal":"122695680"},"startTime":1774573061773,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":1966,"timestamp":6029564263,"id":18,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774573061811,"traceId":"4f14c3d45b01d17e"},{"name":"handle-request","duration":55763,"timestamp":6029563041,"id":17,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774573061810,"traceId":"4f14c3d45b01d17e"},{"name":"memory-usage","duration":26,"timestamp":6029619111,"id":19,"parentId":17,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"777998336","memory.heapUsed":"97540480","memory.heapTotal":"122957824"},"startTime":1774573061866,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":1208,"timestamp":6029770685,"id":21,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774573062017,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":1128,"timestamp":6029793094,"id":23,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774573062040,"traceId":"4f14c3d45b01d17e"},{"name":"handle-request","duration":42829,"timestamp":6029769654,"id":20,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774573062016,"traceId":"4f14c3d45b01d17e"},{"name":"memory-usage","duration":7,"timestamp":6029812563,"id":24,"parentId":20,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"782008320","memory.heapUsed":"93233272","memory.heapTotal":"126877696"},"startTime":1774573062059,"traceId":"4f14c3d45b01d17e"},{"name":"handle-request","duration":21812,"timestamp":6029792043,"id":22,"tags":{"url":"/login?_rsc=1b24o"},"startTime":1774573062039,"traceId":"4f14c3d45b01d17e"},{"name":"memory-usage","duration":8,"timestamp":6029813932,"id":25,"parentId":22,"tags":{"url":"/login?_rsc=1b24o","memory.rss":"782008320","memory.heapUsed":"93289912","memory.heapTotal":"126877696"},"startTime":1774573062061,"traceId":"4f14c3d45b01d17e"},{"name":"client-hmr-latency","duration":455000,"timestamp":6346117594,"id":26,"parentId":3,"tags":{"updatedModules":["[project]/src/components/auth/login-form.tsx [app-client]"],"page":"/login","isPageHidden":true},"startTime":1774573378847,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":1342,"timestamp":6418266321,"id":28,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774573450513,"traceId":"4f14c3d45b01d17e"},{"name":"handle-request","duration":29563,"timestamp":6418265298,"id":27,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774573450512,"traceId":"4f14c3d45b01d17e"},{"name":"memory-usage","duration":9,"timestamp":6418295098,"id":29,"parentId":27,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"913178624","memory.heapUsed":"86383608","memory.heapTotal":"89677824"},"startTime":1774573450542,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":1888,"timestamp":6418306240,"id":31,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774573450553,"traceId":"4f14c3d45b01d17e"},{"name":"handle-request","duration":45751,"timestamp":6418305134,"id":30,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774573450552,"traceId":"4f14c3d45b01d17e"},{"name":"memory-usage","duration":11,"timestamp":6418351029,"id":32,"parentId":30,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"914358272","memory.heapUsed":"87206672","memory.heapTotal":"90464256"},"startTime":1774573450598,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":237,"timestamp":6418543941,"id":33,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774573450791,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":135,"timestamp":6418544223,"id":34,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774573450791,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":146,"timestamp":6418544809,"id":35,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774573450791,"traceId":"4f14c3d45b01d17e"},{"name":"ensure-page","duration":197,"timestamp":6418544990,"id":36,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774573450792,"traceId":"4f14c3d45b01d17e"},{"name":"compile-path","duration":14832,"timestamp":6418549515,"id":39,"tags":{"trigger":"/_not-found/page"},"startTime":1774573450796,"traceId":"4f14c3d45b01d17e"}] -[{"name":"hot-reloader","duration":58,"timestamp":8911676250,"id":3,"tags":{"version":"16.1.6"},"startTime":1774575943923,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":52077,"timestamp":8911790512,"id":4,"tags":{"trigger":"middleware"},"startTime":1774575944037,"traceId":"b95d058b20a6d02d"}] -[{"name":"setup-dev-bundler","duration":310933,"timestamp":8911589193,"id":2,"parentId":1,"tags":{},"startTime":1774575943836,"traceId":"b95d058b20a6d02d"},{"name":"start-dev-server","duration":930408,"timestamp":8911068456,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"8493985792","memory.totalMem":"16408379392","memory.heapSizeLimit":"8254390272","memory.rss":"434794496","memory.heapTotal":"89591808","memory.heapUsed":"65271952"},"startTime":1774575943315,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":541485,"timestamp":8935024434,"id":7,"tags":{"trigger":"/login"},"startTime":1774575967271,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":885984,"timestamp":8935014984,"id":5,"tags":{"url":"/login"},"startTime":1774575967262,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":21,"timestamp":8935901214,"id":8,"parentId":5,"tags":{"url":"/login","memory.rss":"683405312","memory.heapUsed":"91033744","memory.heapTotal":"126353408"},"startTime":1774575968148,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":924,"timestamp":8936058285,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774575968305,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":272,"timestamp":8936059483,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774575968306,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":218,"timestamp":8936061382,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774575968308,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":314,"timestamp":8936061650,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774575968308,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":52344,"timestamp":8942355830,"id":15,"tags":{"trigger":"/admin"},"startTime":1774575974603,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":164951,"timestamp":8942353147,"id":13,"tags":{"url":"/admin"},"startTime":1774575974600,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":94,"timestamp":8942518192,"id":16,"parentId":13,"tags":{"url":"/admin","memory.rss":"834768896","memory.heapUsed":"106129160","memory.heapTotal":"128929792"},"startTime":1774575974765,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":856,"timestamp":8942798910,"id":18,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774575975046,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":24707,"timestamp":8942798165,"id":17,"tags":{"url":"/login?_rsc=1szk4"},"startTime":1774575975045,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":8942822963,"id":19,"parentId":17,"tags":{"url":"/login?_rsc=1szk4","memory.rss":"844677120","memory.heapUsed":"100006080","memory.heapTotal":"125882368"},"startTime":1774575975070,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":928,"timestamp":8957517319,"id":21,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774575989764,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":26066,"timestamp":8957516657,"id":20,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774575989763,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":6,"timestamp":8957542813,"id":22,"parentId":20,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"795426816","memory.heapUsed":"87976584","memory.heapTotal":"94736384"},"startTime":1774575989789,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1897,"timestamp":8957550760,"id":24,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774575989797,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":33189,"timestamp":8957549363,"id":23,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774575989796,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":12,"timestamp":8957582679,"id":25,"parentId":23,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"795557888","memory.heapUsed":"89013744","memory.heapTotal":"95784960"},"startTime":1774575989829,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":290,"timestamp":8957720223,"id":26,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774575989967,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":216,"timestamp":8957720571,"id":27,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774575989967,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":239,"timestamp":8957721371,"id":28,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774575989968,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":206,"timestamp":8957721666,"id":29,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774575989968,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":9969,"timestamp":8957724314,"id":32,"tags":{"trigger":"/_not-found/page"},"startTime":1774575989971,"traceId":"b95d058b20a6d02d"}] -[{"name":"ensure-page","duration":5214,"timestamp":8957735197,"id":33,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774575989982,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":59769,"timestamp":8960934972,"id":36,"tags":{"trigger":"/admin/users"},"startTime":1774575993182,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":89156,"timestamp":8960932357,"id":34,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774575993179,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":6,"timestamp":8961021606,"id":37,"parentId":34,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"902971392","memory.heapUsed":"95964432","memory.heapTotal":"108732416"},"startTime":1774575993268,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":5036,"timestamp":8983220576,"id":39,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774576015467,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":44859,"timestamp":8983218654,"id":38,"tags":{"url":"/admin?_rsc=3jpne"},"startTime":1774576015465,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":8983263593,"id":40,"parentId":38,"tags":{"url":"/admin?_rsc=3jpne","memory.rss":"901246976","memory.heapUsed":"96811432","memory.heapTotal":"102965248"},"startTime":1774576015510,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":982,"timestamp":8985081568,"id":42,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774576017328,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":32066,"timestamp":8985080646,"id":41,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774576017327,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":10,"timestamp":8985112835,"id":43,"parentId":41,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"902295552","memory.heapUsed":"98172952","memory.heapTotal":"103727104"},"startTime":1774576017360,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":3331,"timestamp":8985969129,"id":45,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774576018216,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":47113,"timestamp":8985966406,"id":44,"tags":{"url":"/admin?_rsc=3jpne"},"startTime":1774576018213,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":8,"timestamp":8986013616,"id":46,"parentId":44,"tags":{"url":"/admin?_rsc=3jpne","memory.rss":"902426624","memory.heapUsed":"99122640","memory.heapTotal":"103989248"},"startTime":1774576018260,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":5251,"timestamp":8986660778,"id":48,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774576018907,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":37873,"timestamp":8986657949,"id":47,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774576018905,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":11,"timestamp":8986695944,"id":49,"parentId":47,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"902426624","memory.heapUsed":"99528184","memory.heapTotal":"106086400"},"startTime":1774576018943,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":2848,"timestamp":8987279549,"id":51,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774576019526,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":34624,"timestamp":8987277976,"id":50,"tags":{"url":"/admin?_rsc=3jpne"},"startTime":1774576019525,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":8987312683,"id":52,"parentId":50,"tags":{"url":"/admin?_rsc=3jpne","memory.rss":"902426624","memory.heapUsed":"100347536","memory.heapTotal":"105299968"},"startTime":1774576019559,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1022,"timestamp":8989306748,"id":54,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774576021553,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":18622,"timestamp":8989306278,"id":53,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774576021553,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":8989324972,"id":55,"parentId":53,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"920645632","memory.heapUsed":"101848936","memory.heapTotal":"108445696"},"startTime":1774576021572,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":34455,"timestamp":8996762320,"id":58,"tags":{"trigger":"/admin/club"},"startTime":1774576029009,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":66080,"timestamp":8996760210,"id":56,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774576029007,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":8,"timestamp":8996826367,"id":59,"parentId":56,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"932294656","memory.heapUsed":"102522704","memory.heapTotal":"109178880"},"startTime":1774576029073,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":28436,"timestamp":8997904353,"id":62,"tags":{"trigger":"/admin/news"},"startTime":1774576030151,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":73295,"timestamp":8997902623,"id":60,"tags":{"url":"/admin/news?_rsc=1b53t"},"startTime":1774576030149,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":16,"timestamp":8997975993,"id":63,"parentId":60,"tags":{"url":"/admin/news?_rsc=1b53t","memory.rss":"940027904","memory.heapUsed":"105251120","memory.heapTotal":"112754688"},"startTime":1774576030223,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":135747,"timestamp":8998845898,"id":66,"tags":{"trigger":"/admin/teams"},"startTime":1774576031093,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":168981,"timestamp":8998843412,"id":64,"tags":{"url":"/admin/teams?_rsc=tvrcw"},"startTime":1774576031090,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":8999012459,"id":67,"parentId":64,"tags":{"url":"/admin/teams?_rsc=tvrcw","memory.rss":"1070067712","memory.heapUsed":"102080032","memory.heapTotal":"112922624"},"startTime":1774576031259,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":762657,"timestamp":8999816192,"id":70,"tags":{"trigger":"/admin/players"},"startTime":1774576032063,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":796025,"timestamp":8999814413,"id":68,"tags":{"url":"/admin/players?_rsc=1nn85"},"startTime":1774576032061,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":6,"timestamp":9000610511,"id":71,"parentId":68,"tags":{"url":"/admin/players?_rsc=1nn85","memory.rss":"1145851904","memory.heapUsed":"105370168","memory.heapTotal":"117587968"},"startTime":1774576032857,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":399697,"timestamp":9001678708,"id":74,"tags":{"trigger":"/admin/matches"},"startTime":1774576033925,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":431810,"timestamp":9001677047,"id":72,"tags":{"url":"/admin/matches?_rsc=48qex"},"startTime":1774576033924,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":6,"timestamp":9002108922,"id":75,"parentId":72,"tags":{"url":"/admin/matches?_rsc=48qex","memory.rss":"1172467712","memory.heapUsed":"107244760","memory.heapTotal":"118321152"},"startTime":1774576034356,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":391127,"timestamp":9003217817,"id":78,"tags":{"trigger":"/admin/championships"},"startTime":1774576035465,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":425030,"timestamp":9003215781,"id":76,"tags":{"url":"/admin/championships?_rsc=1qf6c"},"startTime":1774576035462,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":9003640883,"id":79,"parentId":76,"tags":{"url":"/admin/championships?_rsc=1qf6c","memory.rss":"1194377216","memory.heapUsed":"109434912","memory.heapTotal":"119816192"},"startTime":1774576035888,"traceId":"b95d058b20a6d02d"},{"name":"compile-path","duration":588850,"timestamp":9004515270,"id":82,"tags":{"trigger":"/admin/partners"},"startTime":1774576036762,"traceId":"b95d058b20a6d02d"}] -[{"name":"handle-request","duration":622884,"timestamp":9004513492,"id":80,"tags":{"url":"/admin/partners?_rsc=34iga"},"startTime":1774576036760,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":9,"timestamp":9005136470,"id":83,"parentId":80,"tags":{"url":"/admin/partners?_rsc=34iga","memory.rss":"1214332928","memory.heapUsed":"108230128","memory.heapTotal":"129585152"},"startTime":1774576037383,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":3678,"timestamp":9031868998,"id":85,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774576064116,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":38962,"timestamp":9031867305,"id":84,"tags":{"url":"/admin/club?_rsc=1i4zz"},"startTime":1774576064114,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":9031906331,"id":86,"parentId":84,"tags":{"url":"/admin/club?_rsc=1i4zz","memory.rss":"1252990976","memory.heapUsed":"105393984","memory.heapTotal":"110456832"},"startTime":1774576064153,"traceId":"b95d058b20a6d02d"},{"name":"client-hmr-latency","duration":188000,"timestamp":9375288649,"id":87,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":true},"startTime":1774576407754,"traceId":"b95d058b20a6d02d"},{"name":"client-hmr-latency","duration":197000,"timestamp":9386663473,"id":88,"parentId":3,"tags":{"updatedModules":["[project]/src/components/ui/label.tsx [app-client]","[project]/src/components/ui/textarea.tsx [app-client]","[project]/src/components/ui/card.tsx [app-client]","[project]/src/app/admin/club/page.tsx [app-client]","[project]/node_modules/@radix-ui/react-label/dist/index.mjs [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774576419134,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":24119,"timestamp":9417255714,"id":90,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774576449502,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":111174,"timestamp":9417253975,"id":89,"tags":{"url":"/admin/club?_rsc=1b53t"},"startTime":1774576449501,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":9417365225,"id":91,"parentId":89,"tags":{"url":"/admin/club?_rsc=1b53t","memory.rss":"1319071744","memory.heapUsed":"115400240","memory.heapTotal":"119853056"},"startTime":1774576449612,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1282,"timestamp":9670140403,"id":93,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774576702387,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":171841,"timestamp":9670139795,"id":92,"tags":{"url":"/admin/club"},"startTime":1774576702386,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":8,"timestamp":9670311715,"id":94,"parentId":92,"tags":{"url":"/admin/club","memory.rss":"1331093504","memory.heapUsed":"117763104","memory.heapTotal":"130244608"},"startTime":1774576702558,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":410,"timestamp":9670448787,"id":95,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774576702695,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":217,"timestamp":9670449268,"id":96,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774576702696,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":227,"timestamp":9670450134,"id":97,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774576702697,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":211,"timestamp":9670450402,"id":98,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774576702697,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":281,"timestamp":9670652946,"id":99,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774576702900,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":147,"timestamp":9670653267,"id":100,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774576702900,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":147,"timestamp":9670653791,"id":101,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774576702900,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":133,"timestamp":9670653966,"id":102,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774576702901,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":10390,"timestamp":9670655072,"id":104,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774576702902,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":2965,"timestamp":9670665644,"id":105,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774576702912,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":6429,"timestamp":9792368991,"id":107,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774576824616,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":41165,"timestamp":9792367161,"id":106,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774576824614,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":9,"timestamp":9792408413,"id":108,"parentId":106,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"1309409280","memory.heapUsed":"116839840","memory.heapTotal":"121593856"},"startTime":1774576824655,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1305,"timestamp":9795025274,"id":110,"parentId":3,"tags":{"inputPage":"/admin/news/page"},"startTime":1774576827272,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":16949,"timestamp":9795024792,"id":109,"tags":{"url":"/admin/news?_rsc=wkrq7"},"startTime":1774576827271,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":8,"timestamp":9795041813,"id":111,"parentId":109,"tags":{"url":"/admin/news?_rsc=wkrq7","memory.rss":"1330905088","memory.heapUsed":"117715568","memory.heapTotal":"122380288"},"startTime":1774576827288,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1401,"timestamp":9795904786,"id":113,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774576828151,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":22871,"timestamp":9795903451,"id":112,"tags":{"url":"/admin/club?_rsc=1hodn"},"startTime":1774576828150,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":8,"timestamp":9795926412,"id":114,"parentId":112,"tags":{"url":"/admin/club?_rsc=1hodn","memory.rss":"1331429376","memory.heapUsed":"118591360","memory.heapTotal":"123691008"},"startTime":1774576828173,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1368,"timestamp":9798050949,"id":116,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774576830298,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":16057,"timestamp":9798050475,"id":115,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774576830297,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":9798066606,"id":117,"parentId":115,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"1330225152","memory.heapUsed":"118925864","memory.heapTotal":"123953152"},"startTime":1774576830313,"traceId":"b95d058b20a6d02d"},{"name":"client-hmr-latency","duration":83000,"timestamp":9878951122,"id":118,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774576911309,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":15979,"timestamp":9915442448,"id":120,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774576947689,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":116352,"timestamp":9915441739,"id":119,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774576947688,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":7,"timestamp":9915558176,"id":121,"parentId":119,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1320779776","memory.heapUsed":"128005048","memory.heapTotal":"132313088"},"startTime":1774576947805,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":3090,"timestamp":9922579610,"id":123,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774576954826,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":192017,"timestamp":9922578922,"id":122,"tags":{"url":"/admin/club"},"startTime":1774576954826,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":9,"timestamp":9922771043,"id":124,"parentId":122,"tags":{"url":"/admin/club","memory.rss":"1349632000","memory.heapUsed":"129566288","memory.heapTotal":"151580672"},"startTime":1774576955018,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":950,"timestamp":10066488297,"id":126,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774577098735,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":49808,"timestamp":10066487661,"id":125,"tags":{"url":"/admin/club"},"startTime":1774577098734,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":9,"timestamp":10066537551,"id":127,"parentId":125,"tags":{"url":"/admin/club","memory.rss":"1341538304","memory.heapUsed":"128880856","memory.heapTotal":"133492736"},"startTime":1774577098784,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":441,"timestamp":10066806859,"id":128,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774577099054,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":218,"timestamp":10066807359,"id":129,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774577099054,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":238,"timestamp":10066808327,"id":130,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774577099055,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":191,"timestamp":10066808609,"id":131,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774577099055,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":829,"timestamp":10067291117,"id":132,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577099538,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":208,"timestamp":10067292023,"id":133,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577099539,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":318,"timestamp":10067292819,"id":134,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577099539,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":284,"timestamp":10067293200,"id":135,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577099540,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":4430,"timestamp":10067295479,"id":137,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774577099542,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":2944,"timestamp":10067300213,"id":138,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774577099547,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1167,"timestamp":10665214677,"id":140,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774577697461,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":51941,"timestamp":10665214230,"id":139,"tags":{"url":"/admin/club"},"startTime":1774577697461,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":8,"timestamp":10665266251,"id":141,"parentId":139,"tags":{"url":"/admin/club","memory.rss":"1346494464","memory.heapUsed":"132209968","memory.heapTotal":"136613888"},"startTime":1774577697513,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":249,"timestamp":10665976996,"id":142,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577698224,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":170,"timestamp":10665977292,"id":143,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577698224,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":213,"timestamp":10665977977,"id":144,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577698225,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":165,"timestamp":10665978228,"id":145,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577698225,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":3268,"timestamp":10665978989,"id":147,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774577698226,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":3766,"timestamp":10665982501,"id":148,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774577698229,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":72627,"timestamp":10665978569,"id":146,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774577698225,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":9,"timestamp":10666051292,"id":149,"parentId":146,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1331929088","memory.heapUsed":"135934328","memory.heapTotal":"142848000"},"startTime":1774577698298,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1360,"timestamp":10692411446,"id":151,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774577724658,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":49209,"timestamp":10692410985,"id":150,"tags":{"url":"/admin/club"},"startTime":1774577724658,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":14,"timestamp":10692460315,"id":152,"parentId":150,"tags":{"url":"/admin/club","memory.rss":"1333653504","memory.heapUsed":"137329984","memory.heapTotal":"141275136"},"startTime":1774577724707,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":365,"timestamp":10693161266,"id":153,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577725408,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":239,"timestamp":10693161695,"id":154,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577725408,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":287,"timestamp":10693162838,"id":155,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577725410,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":270,"timestamp":10693163203,"id":156,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577725410,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":3563,"timestamp":10693164866,"id":158,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774577725412,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":4980,"timestamp":10693168691,"id":159,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774577725415,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":101751,"timestamp":10693163945,"id":157,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774577725411,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":9,"timestamp":10693265782,"id":160,"parentId":157,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1336688640","memory.heapUsed":"135061088","memory.heapTotal":"147410944"},"startTime":1774577725512,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1545,"timestamp":10816376642,"id":162,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774577848623,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":48381,"timestamp":10816376138,"id":161,"tags":{"url":"/admin/club"},"startTime":1774577848623,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":9,"timestamp":10816424621,"id":163,"parentId":161,"tags":{"url":"/admin/club","memory.rss":"1338077184","memory.heapUsed":"136578776","memory.heapTotal":"145551360"},"startTime":1774577848671,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":177,"timestamp":10816697442,"id":164,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774577848944,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":155,"timestamp":10816697656,"id":165,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774577848944,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":267,"timestamp":10816699384,"id":166,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774577848946,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":206,"timestamp":10816699702,"id":167,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774577848946,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":340,"timestamp":10817100627,"id":168,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577849347,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":304,"timestamp":10817101047,"id":169,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577849348,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":323,"timestamp":10817102145,"id":170,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577849349,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":326,"timestamp":10817102530,"id":171,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577849349,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":3053,"timestamp":10817103609,"id":173,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774577849350,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":6416,"timestamp":10817106880,"id":174,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774577849354,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":81544,"timestamp":10817103062,"id":172,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774577849350,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":12,"timestamp":10817184739,"id":175,"parentId":172,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1338994688","memory.heapUsed":"140064368","memory.heapTotal":"148115456"},"startTime":1774577849431,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":1142,"timestamp":10947032744,"id":177,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774577979279,"traceId":"b95d058b20a6d02d"},{"name":"handle-request","duration":47746,"timestamp":10947032203,"id":176,"tags":{"url":"/admin/club"},"startTime":1774577979279,"traceId":"b95d058b20a6d02d"},{"name":"memory-usage","duration":9,"timestamp":10947080045,"id":178,"parentId":176,"tags":{"url":"/admin/club","memory.rss":"1356693504","memory.heapUsed":"141307424","memory.heapTotal":"146804736"},"startTime":1774577979327,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":234,"timestamp":10947358843,"id":179,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774577979606,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":198,"timestamp":10947359120,"id":180,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774577979606,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":192,"timestamp":10947359777,"id":181,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774577979606,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":136,"timestamp":10947360018,"id":182,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774577979607,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":354,"timestamp":10947835345,"id":183,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577980082,"traceId":"b95d058b20a6d02d"},{"name":"ensure-page","duration":326,"timestamp":10947835779,"id":184,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774577980082,"traceId":"b95d058b20a6d02d"}] -[{"name":"hot-reloader","duration":62,"timestamp":10993644233,"id":3,"tags":{"version":"16.1.6"},"startTime":1774578025891,"traceId":"50c1394ba650c076"},{"name":"compile-path","duration":36668,"timestamp":10993777805,"id":4,"tags":{"trigger":"middleware"},"startTime":1774578026024,"traceId":"50c1394ba650c076"}] -[{"name":"setup-dev-bundler","duration":331620,"timestamp":10993555979,"id":2,"parentId":1,"tags":{},"startTime":1774578025803,"traceId":"50c1394ba650c076"},{"name":"start-dev-server","duration":838865,"timestamp":10993149358,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7676235776","memory.totalMem":"16408379392","memory.heapSizeLimit":"8254390272","memory.rss":"475017216","memory.heapTotal":"89591808","memory.heapUsed":"65582888"},"startTime":1774578025396,"traceId":"50c1394ba650c076"},{"name":"compile-path","duration":166658,"timestamp":10996124306,"id":7,"tags":{"trigger":"/admin/club"},"startTime":1774578028371,"traceId":"50c1394ba650c076"}] -[{"name":"handle-request","duration":592450,"timestamp":10996113239,"id":5,"tags":{"url":"/admin/club"},"startTime":1774578028360,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":9,"timestamp":10996705836,"id":8,"parentId":5,"tags":{"url":"/admin/club","memory.rss":"666140672","memory.heapUsed":"97328888","memory.heapTotal":"120389632"},"startTime":1774578028953,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":1228,"timestamp":10997508736,"id":9,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578029755,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":468,"timestamp":10997510464,"id":10,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578029757,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":584,"timestamp":10997513348,"id":11,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578029760,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":239,"timestamp":10997513998,"id":12,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578029761,"traceId":"50c1394ba650c076"},{"name":"compile-path","duration":31769,"timestamp":10997519970,"id":15,"tags":{"trigger":"/_not-found/page"},"startTime":1774578029767,"traceId":"50c1394ba650c076"}] -[{"name":"ensure-page","duration":2830,"timestamp":10997553393,"id":16,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774578029800,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":201634,"timestamp":10997515985,"id":13,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774578029763,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":26,"timestamp":10997717921,"id":17,"parentId":13,"tags":{"url":"/avatars/admin.jpg","memory.rss":"803635200","memory.heapUsed":"100635392","memory.heapTotal":"131059712"},"startTime":1774578029965,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":533000,"timestamp":11230805837,"id":18,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774578263618,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":136000,"timestamp":11382978340,"id":19,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774578415388,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":82000,"timestamp":11397140790,"id":20,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774578429498,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":10206,"timestamp":11414089419,"id":22,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774578446336,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":150021,"timestamp":11414088321,"id":21,"tags":{"url":"/admin/club"},"startTime":1774578446335,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":9,"timestamp":11414238454,"id":23,"parentId":21,"tags":{"url":"/admin/club","memory.rss":"819851264","memory.heapUsed":"102672544","memory.heapTotal":"123457536"},"startTime":1774578446485,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":396,"timestamp":11414525175,"id":24,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774578446772,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":420,"timestamp":11414525712,"id":25,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774578446772,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":457,"timestamp":11414527104,"id":26,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774578446774,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":203,"timestamp":11414527615,"id":27,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774578446774,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":457,"timestamp":11415061632,"id":28,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578447308,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":368,"timestamp":11415062186,"id":29,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578447309,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":267,"timestamp":11415063240,"id":30,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578447310,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":183,"timestamp":11415064038,"id":31,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578447311,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":3522,"timestamp":11415065652,"id":33,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774578447312,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":4318,"timestamp":11415069434,"id":34,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774578447316,"traceId":"50c1394ba650c076"},{"name":"compile-path","duration":23478,"timestamp":11432434023,"id":37,"tags":{"trigger":"/admin/users"},"startTime":1774578464681,"traceId":"50c1394ba650c076"}] -[{"name":"handle-request","duration":68208,"timestamp":11432430181,"id":35,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774578464677,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":8,"timestamp":11432498518,"id":38,"parentId":35,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"834359296","memory.heapUsed":"96864352","memory.heapTotal":"102301696"},"startTime":1774578464745,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":4559,"timestamp":11433891741,"id":40,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774578466138,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":41813,"timestamp":11433889269,"id":39,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774578466136,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":7,"timestamp":11433931171,"id":41,"parentId":39,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"836587520","memory.heapUsed":"98405640","memory.heapTotal":"102825984"},"startTime":1774578466178,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":5534,"timestamp":11436464810,"id":43,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774578468712,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":38912,"timestamp":11436461695,"id":42,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774578468708,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":8,"timestamp":11436500712,"id":44,"parentId":42,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"855195648","memory.heapUsed":"98841784","memory.heapTotal":"103612416"},"startTime":1774578468747,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":3328,"timestamp":11437478920,"id":46,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774578469726,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":43143,"timestamp":11437476988,"id":45,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774578469724,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":8,"timestamp":11437520221,"id":47,"parentId":45,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"855719936","memory.heapUsed":"99801472","memory.heapTotal":"107544576"},"startTime":1774578469767,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":233000,"timestamp":11564057042,"id":48,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774578596592,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":59000,"timestamp":11586986705,"id":49,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774578619319,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":10194,"timestamp":11601339601,"id":51,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774578633586,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":152357,"timestamp":11601338854,"id":50,"tags":{"url":"/admin/club"},"startTime":1774578633586,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":9,"timestamp":11601491328,"id":52,"parentId":50,"tags":{"url":"/admin/club","memory.rss":"893534208","memory.heapUsed":"105357624","memory.heapTotal":"127201280"},"startTime":1774578633738,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":362,"timestamp":11601679141,"id":53,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774578633926,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":296,"timestamp":11601679605,"id":54,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774578633926,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":267,"timestamp":11601680631,"id":55,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774578633927,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":260,"timestamp":11601680943,"id":56,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774578633928,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":282,"timestamp":11601882112,"id":57,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578634129,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":222,"timestamp":11601882445,"id":58,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578634129,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":230,"timestamp":11601883285,"id":59,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578634130,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":218,"timestamp":11601883556,"id":60,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578634130,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":10072,"timestamp":11601885317,"id":62,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774578634132,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":1487,"timestamp":11601895624,"id":63,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774578634142,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":76985,"timestamp":11601884637,"id":61,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774578634131,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":10,"timestamp":11601961741,"id":64,"parentId":61,"tags":{"url":"/avatars/admin.jpg","memory.rss":"899956736","memory.heapUsed":"110463272","memory.heapTotal":"127700992"},"startTime":1774578634208,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":125000,"timestamp":11788761300,"id":65,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":true},"startTime":1774578821162,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":279000,"timestamp":11841546321,"id":66,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]","[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774578874093,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":10982,"timestamp":11900559727,"id":68,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774578932806,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":146738,"timestamp":11900559017,"id":67,"tags":{"url":"/admin/club"},"startTime":1774578932806,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":8,"timestamp":11900705859,"id":69,"parentId":67,"tags":{"url":"/admin/club","memory.rss":"1077387264","memory.heapUsed":"107060728","memory.heapTotal":"132837376"},"startTime":1774578932953,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":331,"timestamp":11900877545,"id":70,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774578933124,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":327,"timestamp":11900877937,"id":71,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774578933125,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":654,"timestamp":11900878910,"id":72,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774578933126,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":289,"timestamp":11900879629,"id":73,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774578933126,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":427,"timestamp":11901102966,"id":74,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578933350,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":279,"timestamp":11901103449,"id":75,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578933350,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":236,"timestamp":11901104313,"id":76,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578933351,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":207,"timestamp":11901104590,"id":77,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774578933351,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":6727,"timestamp":11901105706,"id":79,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774578933352,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":2539,"timestamp":11901112664,"id":80,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774578933359,"traceId":"50c1394ba650c076"},{"name":"handle-request","duration":58820,"timestamp":11901105057,"id":78,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774578933352,"traceId":"50c1394ba650c076"},{"name":"memory-usage","duration":9,"timestamp":11901163984,"id":81,"parentId":78,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1083940864","memory.heapUsed":"110447352","memory.heapTotal":"133337088"},"startTime":1774578933411,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":98000,"timestamp":11952637211,"id":82,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":true},"startTime":1774578985012,"traceId":"50c1394ba650c076"},{"name":"client-hmr-latency","duration":105000,"timestamp":12052288772,"id":83,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774579084673,"traceId":"50c1394ba650c076"},{"name":"ensure-page","duration":15415,"timestamp":12062539803,"id":85,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774579094786,"traceId":"50c1394ba650c076"},{"name":"compile-path","duration":154545,"timestamp":12062545066,"id":88,"tags":{"trigger":"/login"},"startTime":1774579094792,"traceId":"50c1394ba650c076"}] -[{"name":"hot-reloader","duration":130,"timestamp":2412273765,"id":3,"tags":{"version":"16.1.6"},"startTime":1774608008652,"traceId":"8727193ac4ab6054"},{"name":"compile-path","duration":432071,"timestamp":2412803061,"id":4,"tags":{"trigger":"middleware"},"startTime":1774608009182,"traceId":"8727193ac4ab6054"}] -[{"name":"setup-dev-bundler","duration":1334168,"timestamp":2412114141,"id":2,"parentId":1,"tags":{},"startTime":1774608008493,"traceId":"8727193ac4ab6054"},{"name":"start-dev-server","duration":2270177,"timestamp":2411425317,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"10727182336","memory.totalMem":"16408375296","memory.heapSizeLimit":"8254390272","memory.rss":"456974336","memory.heapTotal":"89591808","memory.heapUsed":"65517376"},"startTime":1774608007804,"traceId":"8727193ac4ab6054"},{"name":"compile-path","duration":209225,"timestamp":2416539758,"id":7,"tags":{"trigger":"/admin/club"},"startTime":1774608012918,"traceId":"8727193ac4ab6054"}] -[{"name":"handle-request","duration":682807,"timestamp":2416533649,"id":5,"tags":{"url":"/admin/club"},"startTime":1774608012912,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":14,"timestamp":2417216656,"id":8,"parentId":5,"tags":{"url":"/admin/club","memory.rss":"620347392","memory.heapUsed":"86145192","memory.heapTotal":"124637184"},"startTime":1774608013595,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":978,"timestamp":2417470152,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774608013849,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":427,"timestamp":2417471315,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774608013850,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":251,"timestamp":2417472579,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774608013851,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":316,"timestamp":2417472890,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774608013852,"traceId":"8727193ac4ab6054"},{"name":"compile-path","duration":120388,"timestamp":2417621127,"id":15,"tags":{"trigger":"/login"},"startTime":1774608014000,"traceId":"8727193ac4ab6054"}] -[{"name":"handle-request","duration":198366,"timestamp":2417619809,"id":13,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774608013998,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":38,"timestamp":2417818597,"id":16,"parentId":13,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"752205824","memory.heapUsed":"96754552","memory.heapTotal":"126664704"},"startTime":1774608014197,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":1541,"timestamp":2558711159,"id":18,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774608155090,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":84102,"timestamp":2558710116,"id":17,"tags":{"url":"/login"},"startTime":1774608155089,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":6,"timestamp":2558794311,"id":19,"parentId":17,"tags":{"url":"/login","memory.rss":"752730112","memory.heapUsed":"94829456","memory.heapTotal":"100106240"},"startTime":1774608155173,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":326,"timestamp":2558924286,"id":20,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774608155303,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":494,"timestamp":2558924674,"id":21,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774608155303,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":306,"timestamp":2558925904,"id":22,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774608155305,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":241,"timestamp":2558926277,"id":23,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774608155305,"traceId":"8727193ac4ab6054"},{"name":"compile-path","duration":10020,"timestamp":2590213722,"id":26,"tags":{"trigger":"/admin"},"startTime":1774608186592,"traceId":"8727193ac4ab6054"}] -[{"name":"handle-request","duration":45842,"timestamp":2590212718,"id":24,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774608186591,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":6,"timestamp":2590258651,"id":27,"parentId":24,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"738349056","memory.heapUsed":"95324688","memory.heapTotal":"101474304"},"startTime":1774608186637,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":2566,"timestamp":2590279701,"id":29,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774608186658,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":50620,"timestamp":2590277705,"id":28,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774608186656,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":27,"timestamp":2590328596,"id":30,"parentId":28,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"739921920","memory.heapUsed":"96016808","memory.heapTotal":"99901440"},"startTime":1774608186707,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":493,"timestamp":2590596959,"id":31,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774608186976,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":312,"timestamp":2590597558,"id":32,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774608186976,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":465,"timestamp":2590598778,"id":33,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774608186977,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":237,"timestamp":2590599309,"id":34,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774608186978,"traceId":"8727193ac4ab6054"},{"name":"compile-path","duration":33001,"timestamp":2590602562,"id":37,"tags":{"trigger":"/_not-found/page"},"startTime":1774608186981,"traceId":"8727193ac4ab6054"}] -[{"name":"ensure-page","duration":3287,"timestamp":2590636496,"id":38,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774608187015,"traceId":"8727193ac4ab6054"},{"name":"compile-path","duration":46560,"timestamp":2592550392,"id":41,"tags":{"trigger":"/admin/users"},"startTime":1774608188929,"traceId":"8727193ac4ab6054"}] -[{"name":"handle-request","duration":85268,"timestamp":2592549512,"id":39,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774608188928,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":8,"timestamp":2592634892,"id":42,"parentId":39,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"783630336","memory.heapUsed":"103066456","memory.heapTotal":"114638848"},"startTime":1774608189014,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":1743000,"timestamp":3740187917,"id":43,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1774609338325,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":155364,"timestamp":3745052279,"id":45,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774609341431,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":341684,"timestamp":3745038119,"id":44,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774609341417,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":8,"timestamp":3745379952,"id":46,"parentId":44,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"582922240","memory.heapUsed":"105609768","memory.heapTotal":"115191808"},"startTime":1774609341759,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":440,"timestamp":3745586467,"id":47,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609341965,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":205,"timestamp":3745586962,"id":48,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609341966,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":171,"timestamp":3745587520,"id":49,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609341966,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":149,"timestamp":3745587725,"id":50,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609341966,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":177,"timestamp":3745588500,"id":51,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609341967,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":154,"timestamp":3745588710,"id":52,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609341967,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":247,"timestamp":3745592269,"id":55,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609341971,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":294,"timestamp":3745592571,"id":56,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609341971,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":18937,"timestamp":3745590896,"id":54,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609341970,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":17059,"timestamp":3745594516,"id":58,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609341973,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":3190,"timestamp":3745610020,"id":59,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609341989,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":47778,"timestamp":3745611837,"id":60,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609341990,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":73000,"timestamp":3774274546,"id":61,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774609370756,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":2493,"timestamp":3784781890,"id":63,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774609381161,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":35309,"timestamp":3784780316,"id":62,"tags":{"url":"/admin?_rsc=1b53t"},"startTime":1774609381159,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":8,"timestamp":3784815727,"id":64,"parentId":62,"tags":{"url":"/admin?_rsc=1b53t","memory.rss":"763002880","memory.heapUsed":"105520664","memory.heapTotal":"121966592"},"startTime":1774609381194,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":6037,"timestamp":3785736810,"id":66,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774609382115,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":49677,"timestamp":3785734798,"id":65,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774609382113,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":7,"timestamp":3785784566,"id":67,"parentId":65,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"765362176","memory.heapUsed":"102305000","memory.heapTotal":"108072960"},"startTime":1774609382163,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":21173,"timestamp":3786549888,"id":69,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774609382929,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":119317,"timestamp":3786548233,"id":68,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774609382927,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":7,"timestamp":3786667649,"id":70,"parentId":68,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"730116096","memory.heapUsed":"111950760","memory.heapTotal":"115634176"},"startTime":1774609383046,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":520,"timestamp":3786729470,"id":71,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609383108,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":302,"timestamp":3786730115,"id":72,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609383109,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":261,"timestamp":3786731901,"id":73,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609383111,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":246,"timestamp":3786732213,"id":74,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609383111,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":258,"timestamp":3786734118,"id":77,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609383113,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":237,"timestamp":3786734423,"id":78,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609383113,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":293,"timestamp":3786735532,"id":79,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609383114,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":247,"timestamp":3786735874,"id":80,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609383115,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":5292,"timestamp":3786733435,"id":76,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609383112,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":6713,"timestamp":3786736852,"id":82,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609383115,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":5891,"timestamp":3786739209,"id":83,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609383118,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":35965,"timestamp":3786743738,"id":84,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609383122,"traceId":"8727193ac4ab6054"},{"name":"compile-path","duration":122373,"timestamp":3787608496,"id":87,"tags":{"trigger":"/admin/news"},"startTime":1774609383987,"traceId":"8727193ac4ab6054"}] -[{"name":"handle-request","duration":161129,"timestamp":3787605104,"id":85,"tags":{"url":"/admin/news?_rsc=1b53t"},"startTime":1774609383984,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":6,"timestamp":3787766307,"id":88,"parentId":85,"tags":{"url":"/admin/news?_rsc=1b53t","memory.rss":"767901696","memory.heapUsed":"110763448","memory.heapTotal":"121405440"},"startTime":1774609384145,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":3589,"timestamp":3788991748,"id":90,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774609385370,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":45408,"timestamp":3788990399,"id":89,"tags":{"url":"/admin/club?_rsc=tvrcw"},"startTime":1774609385369,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":9,"timestamp":3789035896,"id":91,"parentId":89,"tags":{"url":"/admin/club?_rsc=tvrcw","memory.rss":"770260992","memory.heapUsed":"111427344","memory.heapTotal":"122454016"},"startTime":1774609385415,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":282,"timestamp":3789096645,"id":92,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609385475,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":245,"timestamp":3789096978,"id":93,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609385476,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":246,"timestamp":3789097606,"id":94,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609385476,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":230,"timestamp":3789097907,"id":95,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609385477,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":193,"timestamp":3789098918,"id":96,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609385478,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":139,"timestamp":3789099149,"id":97,"parentId":3,"tags":{"inputPage":"/assets/images/default_club_photo.png"},"startTime":1774609385478,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":198,"timestamp":3789100387,"id":100,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609385479,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":157,"timestamp":3789100625,"id":101,"parentId":3,"tags":{"inputPage":"/assets/images/default_logo.png"},"startTime":1774609385479,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":3456,"timestamp":3789099861,"id":99,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609385479,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":3139,"timestamp":3789101536,"id":103,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609385480,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":2693,"timestamp":3789103498,"id":104,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609385482,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":19321,"timestamp":3789104830,"id":105,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774609385483,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":83000,"timestamp":3902615289,"id":106,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/dashboard-header.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774609499106,"traceId":"8727193ac4ab6054"},{"name":"compile-path","duration":6288,"timestamp":4142171136,"id":109,"tags":{"trigger":"/admin/club"},"startTime":1774609738550,"traceId":"8727193ac4ab6054"}] -[{"name":"client-hmr-latency","duration":147000,"timestamp":4142028439,"id":110,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]","[project]/src/components/ui/textarea.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774609738679,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":134300,"timestamp":4142170303,"id":107,"tags":{"url":"/admin/club?_rsc=1fniy"},"startTime":1774609738549,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":9,"timestamp":4142304706,"id":111,"parentId":107,"tags":{"url":"/admin/club?_rsc=1fniy","memory.rss":"965632000","memory.heapUsed":"116784568","memory.heapTotal":"122707968"},"startTime":1774609738683,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":46000,"timestamp":4154146206,"id":112,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774609750601,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":64000,"timestamp":4225655978,"id":113,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774609822130,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":139000,"timestamp":4438632621,"id":114,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610035188,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":80000,"timestamp":4449291059,"id":115,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610045780,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":145000,"timestamp":4466694626,"id":116,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610063246,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":51000,"timestamp":4484475459,"id":117,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610080934,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":40000,"timestamp":4486694027,"id":118,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610083142,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":119000,"timestamp":4505405774,"id":119,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610101932,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":67000,"timestamp":4556421153,"id":120,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610152898,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":52000,"timestamp":4561517962,"id":121,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610157978,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":58000,"timestamp":4582732045,"id":122,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610179205,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":66000,"timestamp":4604295783,"id":123,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610200770,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":56000,"timestamp":4841144451,"id":124,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/app-sidebar.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610437615,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":402000,"timestamp":4948806885,"id":125,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774610545621,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":184000,"timestamp":4968610045,"id":126,"parentId":3,"tags":{"updatedModules":["[project]/src/components/ui/label.tsx [app-client]","[project]/src/components/dashboard/admin/club-form.tsx [app-client]","[project]/node_modules/@radix-ui/react-label/dist/index.mjs [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774610565203,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":58000,"timestamp":4979178864,"id":127,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774610575645,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":118000,"timestamp":5047895528,"id":128,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774610644422,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":54000,"timestamp":5090487751,"id":129,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774610686949,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":8020,"timestamp":5146966024,"id":131,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774610743345,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":329722,"timestamp":5146965318,"id":130,"tags":{"url":"/admin/club"},"startTime":1774610743344,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":9,"timestamp":5147295123,"id":132,"parentId":130,"tags":{"url":"/admin/club","memory.rss":"1018261504","memory.heapUsed":"131629072","memory.heapTotal":"149983232"},"startTime":1774610743674,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":274,"timestamp":5147466391,"id":133,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774610743845,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":152,"timestamp":5147466709,"id":134,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774610743845,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":177,"timestamp":5147467362,"id":135,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774610743846,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":141,"timestamp":5147467571,"id":136,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774610743846,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":215,"timestamp":5147702440,"id":137,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774610744081,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":142,"timestamp":5147702693,"id":138,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774610744081,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":177,"timestamp":5147703332,"id":139,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774610744082,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":129,"timestamp":5147703539,"id":140,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774610744082,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":6922,"timestamp":5147704580,"id":142,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774610744083,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":1976,"timestamp":5147711651,"id":143,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774610744090,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":73536,"timestamp":5147704169,"id":141,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774610744083,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":8,"timestamp":5147777802,"id":144,"parentId":141,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1032941568","memory.heapUsed":"137122992","memory.heapTotal":"152842240"},"startTime":1774610744156,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":54000,"timestamp":5294840685,"id":145,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774610891301,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":59000,"timestamp":5593610316,"id":146,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774611190077,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":66000,"timestamp":5644209279,"id":147,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774611240688,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":36000,"timestamp":5648747195,"id":148,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774611245192,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":226,"timestamp":5763409577,"id":149,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611359788,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":705,"timestamp":5763409845,"id":150,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611359788,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":214,"timestamp":5763411188,"id":151,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611359790,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":162,"timestamp":5763411440,"id":152,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611359790,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":2393,"timestamp":5763412721,"id":154,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774611359791,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":2495,"timestamp":5763415302,"id":155,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774611359794,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":17547,"timestamp":5786687938,"id":157,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774611383067,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":116836,"timestamp":5786685836,"id":156,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774611383064,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":5,"timestamp":5786802739,"id":158,"parentId":156,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"1028628480","memory.heapUsed":"140501592","memory.heapTotal":"144809984"},"startTime":1774611383181,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":24241,"timestamp":5794927497,"id":160,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774611391306,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":122680,"timestamp":5794924845,"id":159,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774611391304,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":6,"timestamp":5795047649,"id":161,"parentId":159,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1053798400","memory.heapUsed":"141949072","memory.heapTotal":"152854528"},"startTime":1774611391426,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":18919,"timestamp":5798800751,"id":163,"parentId":3,"tags":{"inputPage":"/admin/news/page"},"startTime":1774611395179,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":118041,"timestamp":5798798533,"id":162,"tags":{"url":"/admin/news?_rsc=hkw9d"},"startTime":1774611395177,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":6,"timestamp":5798916657,"id":164,"parentId":162,"tags":{"url":"/admin/news?_rsc=hkw9d","memory.rss":"1068474368","memory.heapUsed":"149886592","memory.heapTotal":"163119104"},"startTime":1774611395295,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":3577,"timestamp":5799919359,"id":166,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774611396298,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":33292,"timestamp":5799916802,"id":165,"tags":{"url":"/admin/club?_rsc=1hodn"},"startTime":1774611396295,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":7,"timestamp":5799950181,"id":167,"parentId":165,"tags":{"url":"/admin/club?_rsc=1hodn","memory.rss":"1065168896","memory.heapUsed":"142566360","memory.heapTotal":"161263616"},"startTime":1774611396329,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":896,"timestamp":5982666581,"id":169,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774611579045,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":191301,"timestamp":5982665804,"id":168,"tags":{"url":"/admin/club"},"startTime":1774611579044,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":8,"timestamp":5982857200,"id":170,"parentId":168,"tags":{"url":"/admin/club","memory.rss":"1032806400","memory.heapUsed":"142414832","memory.heapTotal":"155942912"},"startTime":1774611579236,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":491,"timestamp":5983349210,"id":171,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774611579728,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":472,"timestamp":5983349814,"id":172,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774611579728,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":255,"timestamp":5983351023,"id":173,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774611579730,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":192,"timestamp":5983351325,"id":174,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774611579730,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":285,"timestamp":5984344241,"id":175,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611580723,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":187,"timestamp":5984344571,"id":176,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611580723,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":517,"timestamp":5984345546,"id":177,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611580724,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":224,"timestamp":5984346124,"id":178,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611580725,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":5398,"timestamp":5984347314,"id":180,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774611580726,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":7621,"timestamp":5984352882,"id":181,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774611580732,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":85945,"timestamp":5984346573,"id":179,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774611580725,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":11,"timestamp":5984432636,"id":182,"parentId":179,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1038180352","memory.heapUsed":"146758320","memory.heapTotal":"156442624"},"startTime":1774611580811,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":1309,"timestamp":6052270325,"id":184,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774611648649,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":62770,"timestamp":6052269863,"id":183,"tags":{"url":"/admin/club"},"startTime":1774611648649,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":8,"timestamp":6052332721,"id":185,"parentId":183,"tags":{"url":"/admin/club","memory.rss":"1040822272","memory.heapUsed":"147653096","memory.heapTotal":"151666688"},"startTime":1774611648711,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":198,"timestamp":6052697437,"id":186,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774611649076,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":141,"timestamp":6052697676,"id":187,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774611649076,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":217,"timestamp":6052698334,"id":188,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774611649077,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":221,"timestamp":6052698601,"id":189,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774611649077,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":571,"timestamp":6053760383,"id":190,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611650139,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":515,"timestamp":6053761119,"id":191,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611650140,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":435,"timestamp":6053763078,"id":192,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611650142,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":399,"timestamp":6053763591,"id":193,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774611650142,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":4124,"timestamp":6053765266,"id":195,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774611650144,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":4803,"timestamp":6053769635,"id":196,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774611650148,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":2566,"timestamp":6069010371,"id":198,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774611665389,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":32898,"timestamp":6069009495,"id":197,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774611665388,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":9,"timestamp":6069042492,"id":199,"parentId":197,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"1044078592","memory.heapUsed":"150429480","memory.heapTotal":"155598848"},"startTime":1774611665421,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":2337,"timestamp":6073335616,"id":201,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774611669714,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":35576,"timestamp":6073334701,"id":200,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774611669713,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":10,"timestamp":6073370370,"id":202,"parentId":200,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1062891520","memory.heapUsed":"151491240","memory.heapTotal":"156385280"},"startTime":1774611669749,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":114000,"timestamp":6703133303,"id":203,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/club","isPageHidden":true},"startTime":1774612299656,"traceId":"8727193ac4ab6054"},{"name":"client-hmr-latency","duration":63000,"timestamp":6763163725,"id":204,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774612359645,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":15769,"timestamp":6776876917,"id":206,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774612373256,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":330381,"timestamp":6776879193,"id":208,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774612373258,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":372335,"timestamp":6776878177,"id":207,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774612373257,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":10,"timestamp":6777250618,"id":209,"parentId":207,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"1097777152","memory.heapUsed":"167407160","memory.heapTotal":"189607936"},"startTime":1774612373629,"traceId":"8727193ac4ab6054"},{"name":"handle-request","duration":387044,"timestamp":6776875970,"id":205,"tags":{"url":"/admin/club"},"startTime":1774612373255,"traceId":"8727193ac4ab6054"},{"name":"memory-usage","duration":10,"timestamp":6777263124,"id":210,"parentId":205,"tags":{"url":"/admin/club","memory.rss":"1098039296","memory.heapUsed":"167747344","memory.heapTotal":"189607936"},"startTime":1774612373642,"traceId":"8727193ac4ab6054"},{"name":"ensure-page","duration":360,"timestamp":6777459710,"id":211,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774612373838,"traceId":"8727193ac4ab6054"}] -[{"name":"hot-reloader","duration":106,"timestamp":7343214974,"id":3,"tags":{"version":"16.1.6"},"startTime":1774612939594,"traceId":"0772bd21703c78d4"},{"name":"compile-path","duration":139316,"timestamp":7343569892,"id":4,"tags":{"trigger":"middleware"},"startTime":1774612939949,"traceId":"0772bd21703c78d4"}] -[{"name":"setup-dev-bundler","duration":675075,"timestamp":7343099821,"id":2,"parentId":1,"tags":{},"startTime":1774612939478,"traceId":"0772bd21703c78d4"},{"name":"start-dev-server","duration":1710054,"timestamp":7342180547,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"5260562432","memory.totalMem":"16408375296","memory.heapSizeLimit":"8254390272","memory.rss":"444178432","memory.heapTotal":"89591808","memory.heapUsed":"65615576"},"startTime":1774612938560,"traceId":"0772bd21703c78d4"},{"name":"compile-path","duration":979243,"timestamp":10513067665,"id":7,"tags":{"trigger":"/login"},"startTime":1774616109446,"traceId":"0772bd21703c78d4"}] -[{"name":"handle-request","duration":1417771,"timestamp":10513042311,"id":5,"tags":{"url":"/login"},"startTime":1774616109422,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":20,"timestamp":10514460300,"id":8,"parentId":5,"tags":{"url":"/login","memory.rss":"475181056","memory.heapUsed":"84669944","memory.heapTotal":"99692544"},"startTime":1774616110839,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1302,"timestamp":10514695276,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774616111074,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":350,"timestamp":10514696831,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774616111075,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":356,"timestamp":10514698315,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774616111077,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":459,"timestamp":10514698752,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774616111077,"traceId":"0772bd21703c78d4"},{"name":"compile-path","duration":92380,"timestamp":11636185492,"id":15,"tags":{"trigger":"/admin"},"startTime":1774617232564,"traceId":"0772bd21703c78d4"}] -[{"name":"handle-request","duration":130311,"timestamp":11636184483,"id":13,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774617232563,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":10,"timestamp":11636314906,"id":16,"parentId":13,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"577724416","memory.heapUsed":"80557832","memory.heapTotal":"86306816"},"startTime":1774617232694,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4285,"timestamp":11636330739,"id":18,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774617232709,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":44316,"timestamp":11636329850,"id":17,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774617232708,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":15,"timestamp":11636374348,"id":19,"parentId":17,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"580083712","memory.heapUsed":"81911616","memory.heapTotal":"86044672"},"startTime":1774617232753,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":198,"timestamp":11636599025,"id":20,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774617232978,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":293,"timestamp":11636599264,"id":21,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774617232978,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":169,"timestamp":11636599959,"id":22,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774617232979,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":131,"timestamp":11636600160,"id":23,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774617232979,"traceId":"0772bd21703c78d4"},{"name":"compile-path","duration":27660,"timestamp":11636602186,"id":26,"tags":{"trigger":"/_not-found/page"},"startTime":1774617232981,"traceId":"0772bd21703c78d4"}] -[{"name":"ensure-page","duration":2439,"timestamp":11636631148,"id":27,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617233010,"traceId":"0772bd21703c78d4"},{"name":"compile-path","duration":317095,"timestamp":11642363322,"id":30,"tags":{"trigger":"/admin/club"},"startTime":1774617238742,"traceId":"0772bd21703c78d4"}] -[{"name":"handle-request","duration":355322,"timestamp":11642361907,"id":28,"tags":{"url":"/admin/club?_rsc=1b24o"},"startTime":1774617238741,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":8,"timestamp":11642717339,"id":31,"parentId":28,"tags":{"url":"/admin/club?_rsc=1b24o","memory.rss":"751808512","memory.heapUsed":"90918264","memory.heapTotal":"108941312"},"startTime":1774617239096,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":885,"timestamp":11795209873,"id":32,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617391589,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":804,"timestamp":11795211305,"id":33,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617391590,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":721,"timestamp":11795213833,"id":34,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617391592,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":668,"timestamp":11795214678,"id":35,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617391593,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":6119,"timestamp":11795217478,"id":37,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617391596,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4683,"timestamp":11795224035,"id":38,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617391603,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":450459,"timestamp":11795215981,"id":36,"tags":{"url":"/api/upload"},"startTime":1774617391595,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":11795666541,"id":39,"parentId":36,"tags":{"url":"/api/upload","memory.rss":"826683392","memory.heapUsed":"144408440","memory.heapTotal":"173735936"},"startTime":1774617392045,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2820,"timestamp":11808579457,"id":41,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774617404958,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":68543,"timestamp":11808578708,"id":40,"tags":{"url":"/login"},"startTime":1774617404957,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":6,"timestamp":11808647347,"id":42,"parentId":40,"tags":{"url":"/login","memory.rss":"812277760","memory.heapUsed":"150444848","memory.heapTotal":"174260224"},"startTime":1774617405026,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2034,"timestamp":11813841146,"id":44,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774617410220,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":129886,"timestamp":11813840377,"id":43,"tags":{"url":"/admin/club"},"startTime":1774617410219,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":11813970374,"id":45,"parentId":43,"tags":{"url":"/admin/club","memory.rss":"794615808","memory.heapUsed":"114775912","memory.heapTotal":"123531264"},"startTime":1774617410349,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":590,"timestamp":11814639034,"id":46,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774617411018,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":415,"timestamp":11814639706,"id":47,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774617411018,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":296,"timestamp":11814641074,"id":48,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774617411020,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":236,"timestamp":11814641424,"id":49,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774617411020,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":590,"timestamp":11815373821,"id":50,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774617411752,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":355,"timestamp":11815374484,"id":51,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774617411753,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":467,"timestamp":11815375955,"id":52,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774617411755,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":253,"timestamp":11815376494,"id":53,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774617411755,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3582,"timestamp":11815379056,"id":55,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617411758,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2939,"timestamp":11815382866,"id":56,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617411762,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":90726,"timestamp":11815376991,"id":54,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774617411756,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":6,"timestamp":11815467849,"id":57,"parentId":54,"tags":{"url":"/avatars/admin.jpg","memory.rss":"784654336","memory.heapUsed":"116772240","memory.heapTotal":"135327744"},"startTime":1774617411846,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1010,"timestamp":11849559144,"id":58,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617445938,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":971,"timestamp":11849560337,"id":59,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617445939,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1161,"timestamp":11849563928,"id":60,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617445943,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":963,"timestamp":11849565270,"id":61,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617445944,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":7198,"timestamp":11849569277,"id":63,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617445948,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4813,"timestamp":11849576723,"id":64,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617445955,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":427638,"timestamp":11849567236,"id":62,"tags":{"url":"/api/upload"},"startTime":1774617445946,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":6,"timestamp":11849994989,"id":65,"parentId":62,"tags":{"url":"/api/upload","memory.rss":"816087040","memory.heapUsed":"152201664","memory.heapTotal":"176820224"},"startTime":1774617446374,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2653,"timestamp":11891715998,"id":66,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617488095,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":163,"timestamp":11891718698,"id":67,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617488097,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":164,"timestamp":11891719415,"id":68,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617488098,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":144,"timestamp":11891719611,"id":69,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774617488098,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2896,"timestamp":11891721017,"id":71,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617488100,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":5260,"timestamp":11891724176,"id":72,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774617488103,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":417103,"timestamp":11891719954,"id":70,"tags":{"url":"/api/upload"},"startTime":1774617488099,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":11892137175,"id":73,"parentId":70,"tags":{"url":"/api/upload","memory.rss":"824299520","memory.heapUsed":"153146440","memory.heapTotal":"178925568"},"startTime":1774617488516,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":60000,"timestamp":12899021895,"id":74,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774618495492,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":68000,"timestamp":12984248560,"id":75,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774618580721,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":57000,"timestamp":13013457218,"id":76,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774618609922,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":58000,"timestamp":13100157627,"id":77,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774618696623,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":8720,"timestamp":13115878133,"id":79,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774618712257,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":286756,"timestamp":13115877358,"id":78,"tags":{"url":"/admin/club"},"startTime":1774618712256,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":13116164229,"id":80,"parentId":78,"tags":{"url":"/admin/club","memory.rss":"940195840","memory.heapUsed":"129210368","memory.heapTotal":"149295104"},"startTime":1774618712543,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":336,"timestamp":13116501065,"id":81,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774618712880,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":227,"timestamp":13116501460,"id":82,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774618712880,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":340,"timestamp":13116504570,"id":83,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774618712883,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":271,"timestamp":13116504963,"id":84,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774618712884,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":357,"timestamp":13117417066,"id":85,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774618713796,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":343,"timestamp":13117417487,"id":86,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774618713796,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":333,"timestamp":13117418930,"id":87,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774618713798,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":209,"timestamp":13117419316,"id":88,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774618713798,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":9148,"timestamp":13117424680,"id":90,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774618713803,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":5397,"timestamp":13117434158,"id":91,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774618713813,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":111536,"timestamp":13117421594,"id":89,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774618713800,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":6,"timestamp":13117533236,"id":92,"parentId":89,"tags":{"url":"/avatars/admin.jpg","memory.rss":"950812672","memory.heapUsed":"130609520","memory.heapTotal":"150056960"},"startTime":1774618713912,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":619,"timestamp":13128774528,"id":93,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774618725153,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":461,"timestamp":13128775249,"id":94,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774618725154,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":418,"timestamp":13128777029,"id":95,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774618725156,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":364,"timestamp":13128777523,"id":96,"parentId":3,"tags":{"inputPage":"/api/upload"},"startTime":1774618725156,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3522,"timestamp":13128780106,"id":98,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774618725159,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3858,"timestamp":13128783888,"id":99,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774618725163,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":437410,"timestamp":13128778317,"id":97,"tags":{"url":"/api/upload"},"startTime":1774618725157,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":6,"timestamp":13129215813,"id":100,"parentId":97,"tags":{"url":"/api/upload","memory.rss":"997060608","memory.heapUsed":"162652576","memory.heapTotal":"194084864"},"startTime":1774618725594,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":100000,"timestamp":13324989779,"id":101,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774618921492,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":144000,"timestamp":13334898732,"id":102,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/file-upload.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774618931448,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":11637,"timestamp":13348497170,"id":104,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774618944876,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":262715,"timestamp":13348496432,"id":103,"tags":{"url":"/admin/club"},"startTime":1774618944875,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":13348759215,"id":105,"parentId":103,"tags":{"url":"/admin/club","memory.rss":"970412032","memory.heapUsed":"129845536","memory.heapTotal":"153944064"},"startTime":1774618945138,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":369,"timestamp":13349667701,"id":106,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774618946046,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":220,"timestamp":13349668147,"id":107,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774618946047,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":211,"timestamp":13349669052,"id":108,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774618946048,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":209,"timestamp":13349669304,"id":109,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774618946048,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4971,"timestamp":13349671309,"id":111,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774618946050,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":5032,"timestamp":13349676854,"id":112,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774618946056,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1180,"timestamp":13529563333,"id":114,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774619125942,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":44551,"timestamp":13529562887,"id":113,"tags":{"url":"/admin/club"},"startTime":1774619125942,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":13529607511,"id":115,"parentId":113,"tags":{"url":"/admin/club","memory.rss":"999112704","memory.heapUsed":"133039688","memory.heapTotal":"140550144"},"startTime":1774619125986,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":260,"timestamp":13530229103,"id":116,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774619126608,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":176,"timestamp":13530229410,"id":117,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774619126608,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":292,"timestamp":13530231122,"id":118,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774619126610,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":266,"timestamp":13530231475,"id":119,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774619126610,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":266,"timestamp":13530698600,"id":120,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619127077,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":246,"timestamp":13530698919,"id":121,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619127078,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":354,"timestamp":13530699953,"id":122,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619127079,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":277,"timestamp":13530700373,"id":123,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619127079,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3523,"timestamp":13530701342,"id":125,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774619127080,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4938,"timestamp":13530705101,"id":126,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774619127084,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":89477,"timestamp":13530700853,"id":124,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774619127079,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":11,"timestamp":13530790476,"id":127,"parentId":124,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1000947712","memory.heapUsed":"135988448","memory.heapTotal":"142852096"},"startTime":1774619127169,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1515,"timestamp":13739045401,"id":129,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774619335424,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":48639,"timestamp":13739044977,"id":128,"tags":{"url":"/admin/club"},"startTime":1774619335424,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":13739093699,"id":130,"parentId":128,"tags":{"url":"/admin/club","memory.rss":"1000435712","memory.heapUsed":"137273104","memory.heapTotal":"141279232"},"startTime":1774619335472,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":428,"timestamp":13739818021,"id":131,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774619336197,"traceId":"0772bd21703c78d4"}] -[{"name":"ensure-page","duration":566,"timestamp":13739820519,"id":132,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774619336199,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":295,"timestamp":13739822236,"id":133,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774619336201,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":205,"timestamp":13739822588,"id":134,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774619336201,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":580,"timestamp":13740442887,"id":135,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619336822,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":322,"timestamp":13740443584,"id":136,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619336822,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":583,"timestamp":13740444849,"id":137,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619336824,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":329,"timestamp":13740445511,"id":138,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619336824,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4999,"timestamp":13740447130,"id":140,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774619336826,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":7038,"timestamp":13740452376,"id":141,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774619336831,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":120391,"timestamp":13740446303,"id":139,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774619336825,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":8,"timestamp":13740566819,"id":142,"parentId":139,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1001746432","memory.heapUsed":"140768584","memory.heapTotal":"147447808"},"startTime":1774619336945,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1243,"timestamp":13862780440,"id":144,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774619459159,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":56831,"timestamp":13862779962,"id":143,"tags":{"url":"/admin/club"},"startTime":1774619459159,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":36,"timestamp":13862836991,"id":145,"parentId":143,"tags":{"url":"/admin/club","memory.rss":"981151744","memory.heapUsed":"132249712","memory.heapTotal":"142688256"},"startTime":1774619459216,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":310,"timestamp":13863308271,"id":146,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774619459687,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":185,"timestamp":13863308647,"id":147,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774619459687,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":865,"timestamp":13863309510,"id":148,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774619459688,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":405,"timestamp":13863310499,"id":149,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774619459689,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":379,"timestamp":13863820601,"id":150,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619460199,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":435,"timestamp":13863821064,"id":151,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619460200,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":767,"timestamp":13863823686,"id":152,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619460202,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":559,"timestamp":13863824588,"id":153,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619460203,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":6574,"timestamp":13863826990,"id":155,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774619460206,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":11452,"timestamp":13863833852,"id":156,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774619460213,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":114045,"timestamp":13863825790,"id":154,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774619460204,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":23,"timestamp":13863940140,"id":157,"parentId":154,"tags":{"url":"/avatars/admin.jpg","memory.rss":"981676032","memory.heapUsed":"135580664","memory.heapTotal":"146333696"},"startTime":1774619460319,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1269,"timestamp":13877567785,"id":159,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774619473946,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":63523,"timestamp":13877567290,"id":158,"tags":{"url":"/admin/club"},"startTime":1774619473946,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":13877630897,"id":160,"parentId":158,"tags":{"url":"/admin/club","memory.rss":"982351872","memory.heapUsed":"136931104","memory.heapTotal":"144703488"},"startTime":1774619474010,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":325,"timestamp":13878597403,"id":161,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619474976,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":261,"timestamp":13878597801,"id":162,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619474976,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":357,"timestamp":13878598911,"id":163,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619474978,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":336,"timestamp":13878599351,"id":164,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774619474978,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3957,"timestamp":13878600572,"id":166,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774619474979,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":6642,"timestamp":13878605131,"id":167,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774619474984,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":111476,"timestamp":13878599979,"id":165,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774619474979,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":22,"timestamp":13878711722,"id":168,"parentId":165,"tags":{"url":"/avatars/admin.jpg","memory.rss":"982614016","memory.heapUsed":"140005456","memory.heapTotal":"146800640"},"startTime":1774619475090,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":85000,"timestamp":14437631764,"id":169,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774620034122,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":10995,"timestamp":14518270080,"id":171,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774620114649,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":256086,"timestamp":14518269649,"id":170,"tags":{"url":"/admin/club"},"startTime":1774620114648,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":14518525823,"id":172,"parentId":170,"tags":{"url":"/admin/club","memory.rss":"986648576","memory.heapUsed":"135686432","memory.heapTotal":"163700736"},"startTime":1774620114904,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":370,"timestamp":14518899019,"id":173,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774620115278,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":260,"timestamp":14518899460,"id":174,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774620115278,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":231,"timestamp":14518900269,"id":175,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774620115279,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":268,"timestamp":14518900578,"id":176,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774620115279,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":375,"timestamp":14519537400,"id":177,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620115916,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":663,"timestamp":14519537853,"id":178,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620115917,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":387,"timestamp":14519539539,"id":179,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620115918,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":393,"timestamp":14519540443,"id":180,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620115919,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3726,"timestamp":14519541916,"id":182,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774620115921,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":9436,"timestamp":14519545826,"id":183,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774620115924,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":94561,"timestamp":14519541158,"id":181,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774620115920,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":7,"timestamp":14519635817,"id":184,"parentId":181,"tags":{"url":"/avatars/admin.jpg","memory.rss":"992808960","memory.heapUsed":"139870240","memory.heapTotal":"163938304"},"startTime":1774620116014,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":123000,"timestamp":14982366632,"id":185,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/file-upload.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774620578898,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":10781,"timestamp":15018804526,"id":187,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774620615183,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":272637,"timestamp":15018804037,"id":186,"tags":{"url":"/admin/club"},"startTime":1774620615183,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":15019076754,"id":188,"parentId":186,"tags":{"url":"/admin/club","memory.rss":"985366528","memory.heapUsed":"136677600","memory.heapTotal":"161763328"},"startTime":1774620615455,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":313,"timestamp":15019354862,"id":189,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774620615734,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":225,"timestamp":15019355234,"id":190,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774620615734,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":222,"timestamp":15019356186,"id":191,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774620615735,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":214,"timestamp":15019356452,"id":192,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774620615735,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":9956,"timestamp":15019875679,"id":194,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774620616254,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":48476,"timestamp":15019873659,"id":193,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774620616252,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":15019922220,"id":195,"parentId":193,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"993492992","memory.heapUsed":"137393632","memory.heapTotal":"162000896"},"startTime":1774620616301,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1243,"timestamp":15058502753,"id":197,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774620654881,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":57399,"timestamp":15058502059,"id":196,"tags":{"url":"/login"},"startTime":1774620654881,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":15058559524,"id":198,"parentId":196,"tags":{"url":"/login","memory.rss":"995147776","memory.heapUsed":"139424032","memory.heapTotal":"147845120"},"startTime":1774620654938,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":188,"timestamp":15058978776,"id":199,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774620655357,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":200,"timestamp":15058979031,"id":200,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774620655358,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":333,"timestamp":15058980092,"id":201,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774620655359,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":238,"timestamp":15058980492,"id":202,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774620655359,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1218,"timestamp":15167088691,"id":204,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774620763467,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":32453,"timestamp":15167088275,"id":203,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774620763467,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":15167120805,"id":205,"parentId":203,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1013497856","memory.heapUsed":"140782048","memory.heapTotal":"147001344"},"startTime":1774620763499,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1248,"timestamp":15167403643,"id":207,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774620763782,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":36581,"timestamp":15167402997,"id":206,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774620763782,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":15167439661,"id":208,"parentId":206,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1014284288","memory.heapUsed":"141674512","memory.heapTotal":"147001344"},"startTime":1774620763818,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":219,"timestamp":15167730601,"id":209,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620764109,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":192,"timestamp":15167730863,"id":210,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620764110,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":300,"timestamp":15167731802,"id":211,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620764110,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":175,"timestamp":15167732159,"id":212,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620764111,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":7494,"timestamp":15167733266,"id":214,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774620764112,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2306,"timestamp":15167740913,"id":215,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774620764120,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":46353,"timestamp":15167732636,"id":213,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774620764111,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":6,"timestamp":15167779112,"id":216,"parentId":213,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1015201792","memory.heapUsed":"143823096","memory.heapTotal":"150409216"},"startTime":1774620764158,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":5153,"timestamp":15169724609,"id":218,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774620766103,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":47482,"timestamp":15169723276,"id":217,"tags":{"url":"/admin/club?_rsc=1b24o"},"startTime":1774620766102,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":15169770836,"id":219,"parentId":217,"tags":{"url":"/admin/club?_rsc=1b24o","memory.rss":"1015201792","memory.heapUsed":"143956536","memory.heapTotal":"151719936"},"startTime":1774620766149,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":753,"timestamp":15181849743,"id":221,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774620778228,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":44287,"timestamp":15181849352,"id":220,"tags":{"url":"/admin/club"},"startTime":1774620778228,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":7,"timestamp":15181893745,"id":222,"parentId":220,"tags":{"url":"/admin/club","memory.rss":"996278272","memory.heapUsed":"145750048","memory.heapTotal":"149622784"},"startTime":1774620778272,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":632,"timestamp":15182556515,"id":223,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774620778935,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":496,"timestamp":15182557283,"id":224,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774620778936,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":407,"timestamp":15182559047,"id":225,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774620778938,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":394,"timestamp":15182559582,"id":226,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774620778938,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":916,"timestamp":15183095117,"id":227,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620779474,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":426,"timestamp":15183096239,"id":228,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620779475,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":254,"timestamp":15183097544,"id":229,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620779476,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":239,"timestamp":15183097862,"id":230,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774620779477,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":5484,"timestamp":15183099289,"id":232,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774620779478,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4923,"timestamp":15183104978,"id":233,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774620779484,"traceId":"0772bd21703c78d4"}] -[{"name":"handle-request","duration":110695,"timestamp":15183098459,"id":231,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774620779477,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":8,"timestamp":15183209269,"id":234,"parentId":231,"tags":{"url":"/avatars/admin.jpg","memory.rss":"997326848","memory.heapUsed":"149182264","memory.heapTotal":"156315648"},"startTime":1774620779588,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1231,"timestamp":15413572026,"id":236,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774621009951,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":50927,"timestamp":15413571544,"id":235,"tags":{"url":"/admin/club"},"startTime":1774621009950,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":18,"timestamp":15413622693,"id":237,"parentId":235,"tags":{"url":"/admin/club","memory.rss":"1015369728","memory.heapUsed":"150675592","memory.heapTotal":"155791360"},"startTime":1774621010001,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":447,"timestamp":15414237309,"id":238,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774621010616,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":383,"timestamp":15414237842,"id":239,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774621010616,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":780,"timestamp":15414239815,"id":240,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774621010618,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":647,"timestamp":15414240754,"id":241,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774621010619,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1217,"timestamp":15414656773,"id":242,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774621011035,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":921,"timestamp":15414658242,"id":243,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774621011037,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":660,"timestamp":15414661542,"id":244,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774621011040,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1029,"timestamp":15414662412,"id":245,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774621011041,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":8131,"timestamp":15414665672,"id":247,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774621011044,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4492,"timestamp":15414674058,"id":248,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774621011053,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":105968,"timestamp":15414664335,"id":246,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774621011043,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":7,"timestamp":15414770462,"id":249,"parentId":246,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1014837248","memory.heapUsed":"142567720","memory.heapTotal":"157466624"},"startTime":1774621011149,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":153000,"timestamp":15829751460,"id":250,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/file-upload.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774621426311,"traceId":"0772bd21703c78d4"},{"name":"compile-path","duration":10539,"timestamp":15903907399,"id":253,"tags":{"trigger":"/admin/club"},"startTime":1774621500286,"traceId":"0772bd21703c78d4"}] -[{"name":"client-hmr-latency","duration":105000,"timestamp":15903822970,"id":254,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]","[project]/src/components/dashboard/admin/file-upload.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774621500420,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":136519,"timestamp":15903906468,"id":251,"tags":{"url":"/admin/club?_rsc=1ha03"},"startTime":1774621500285,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":15904043079,"id":255,"parentId":251,"tags":{"url":"/admin/club?_rsc=1ha03","memory.rss":"1026486272","memory.heapUsed":"138878968","memory.heapTotal":"144568320"},"startTime":1774621500422,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":751,"timestamp":16017152166,"id":257,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774621613531,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":172169,"timestamp":16017151779,"id":256,"tags":{"url":"/admin/club"},"startTime":1774621613530,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":16017324053,"id":258,"parentId":256,"tags":{"url":"/admin/club","memory.rss":"1032663040","memory.heapUsed":"143008448","memory.heapTotal":"157085696"},"startTime":1774621613703,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":246,"timestamp":16017707072,"id":259,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774621614086,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":160,"timestamp":16017707368,"id":260,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774621614086,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":216,"timestamp":16017708293,"id":261,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774621614087,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":154,"timestamp":16017708554,"id":262,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774621614087,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4137,"timestamp":16018070830,"id":264,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774621614449,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":40062,"timestamp":16018069921,"id":263,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774621614449,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":16018110092,"id":265,"parentId":263,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"1035415552","memory.heapUsed":"145514752","memory.heapTotal":"157585408"},"startTime":1774621614489,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2522,"timestamp":16256574244,"id":267,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774621852953,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":39416,"timestamp":16256572624,"id":266,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774621852951,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":16256612132,"id":268,"parentId":266,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"1041956864","memory.heapUsed":"138474632","memory.heapTotal":"142704640"},"startTime":1774621852991,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3893,"timestamp":16256790527,"id":270,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774621853169,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":69346,"timestamp":16256789451,"id":269,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774621853168,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":9,"timestamp":16256859021,"id":271,"parentId":269,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"1042743296","memory.heapUsed":"138995816","memory.heapTotal":"143228928"},"startTime":1774621853238,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":192,"timestamp":16257200834,"id":272,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774621853579,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":129,"timestamp":16257201065,"id":273,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774621853580,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":160,"timestamp":16257202501,"id":274,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774621853581,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":116,"timestamp":16257202691,"id":275,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774621853581,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2628,"timestamp":16257203253,"id":277,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774621853582,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3753,"timestamp":16257206017,"id":278,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774621853585,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":54733,"timestamp":16257202947,"id":276,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774621853582,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":16257257780,"id":279,"parentId":276,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1046675456","memory.heapUsed":"141604296","memory.heapTotal":"148185088"},"startTime":1774621853636,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1174,"timestamp":16258737656,"id":281,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774621855116,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":22668,"timestamp":16258737134,"id":280,"tags":{"url":"/admin/club?_rsc=1b24o"},"startTime":1774621855116,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":16258759876,"id":282,"parentId":280,"tags":{"url":"/admin/club?_rsc=1b24o","memory.rss":"1048117248","memory.heapUsed":"141492864","memory.heapTotal":"149233664"},"startTime":1774621855139,"traceId":"0772bd21703c78d4"},{"name":"client-hmr-latency","duration":81000,"timestamp":16405735705,"id":283,"parentId":3,"tags":{"updatedModules":["[project]/src/components/ui/textarea.tsx [app-client]","[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774622002226,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":7936,"timestamp":16409226059,"id":285,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774622005605,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":261675,"timestamp":16409225545,"id":284,"tags":{"url":"/admin/club"},"startTime":1774622005604,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":16409487325,"id":286,"parentId":284,"tags":{"url":"/admin/club","memory.rss":"1109356544","memory.heapUsed":"154959296","memory.heapTotal":"178405376"},"startTime":1774622005866,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":215,"timestamp":16409778935,"id":287,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774622006158,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":137,"timestamp":16409779193,"id":288,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774622006158,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":167,"timestamp":16409779885,"id":289,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774622006159,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":127,"timestamp":16409780083,"id":290,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774622006159,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":395,"timestamp":16410499854,"id":291,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622006879,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":235,"timestamp":16410500310,"id":292,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622006879,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":266,"timestamp":16410501246,"id":293,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622006880,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":212,"timestamp":16410501566,"id":294,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622006880,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4895,"timestamp":16410502633,"id":296,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622006881,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":10103,"timestamp":16410507815,"id":297,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622006886,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":125429,"timestamp":16410502033,"id":295,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774622006881,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":7,"timestamp":16410627582,"id":298,"parentId":295,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1080131584","memory.heapUsed":"155553208","memory.heapTotal":"178642944"},"startTime":1774622007006,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2621,"timestamp":17229196653,"id":300,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774622825575,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":51548,"timestamp":17229195915,"id":299,"tags":{"url":"/admin/club"},"startTime":1774622825575,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":17229247535,"id":301,"parentId":299,"tags":{"url":"/admin/club","memory.rss":"1057632256","memory.heapUsed":"151544704","memory.heapTotal":"155774976"},"startTime":1774622825626,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":616,"timestamp":17229807779,"id":302,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774622826186,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":395,"timestamp":17229808495,"id":303,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774622826187,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":320,"timestamp":17229809828,"id":304,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774622826188,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":202,"timestamp":17229810199,"id":305,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774622826189,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":926,"timestamp":17230464247,"id":306,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622826843,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":435,"timestamp":17230465274,"id":307,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622826844,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":671,"timestamp":17230466893,"id":308,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622826846,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":484,"timestamp":17230467660,"id":309,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622826846,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":7880,"timestamp":17230470608,"id":311,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622826849,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":6290,"timestamp":17230478777,"id":312,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622826857,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":97396,"timestamp":17230468597,"id":310,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774622826847,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":7,"timestamp":17230566151,"id":313,"parentId":310,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1061695488","memory.heapUsed":"154843896","memory.heapTotal":"161517568"},"startTime":1774622826945,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1102,"timestamp":17282308442,"id":315,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774622878687,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":58261,"timestamp":17282308024,"id":314,"tags":{"url":"/admin/club"},"startTime":1774622878687,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":18,"timestamp":17282366692,"id":316,"parentId":314,"tags":{"url":"/admin/club","memory.rss":"1062010880","memory.heapUsed":"156032968","memory.heapTotal":"160673792"},"startTime":1774622878745,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":564,"timestamp":17283924253,"id":317,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622880303,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":338,"timestamp":17283924913,"id":318,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622880304,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":267,"timestamp":17283926332,"id":319,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622880305,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":266,"timestamp":17283926682,"id":320,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622880305,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3785,"timestamp":17283927809,"id":322,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622880306,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4926,"timestamp":17283931799,"id":323,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622880310,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":67452,"timestamp":17283927337,"id":321,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774622880306,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":17283994886,"id":324,"parentId":321,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1063452672","memory.heapUsed":"158315968","memory.heapTotal":"165654528"},"startTime":1774622880374,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1298,"timestamp":17375294081,"id":326,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774622971673,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":119212,"timestamp":17375293522,"id":325,"tags":{"url":"/admin/club"},"startTime":1774622971672,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":6,"timestamp":17375412832,"id":327,"parentId":325,"tags":{"url":"/admin/club","memory.rss":"1064697856","memory.heapUsed":"159817296","memory.heapTotal":"165130240"},"startTime":1774622971791,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":691,"timestamp":17375948787,"id":328,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774622972327,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":293,"timestamp":17375949626,"id":329,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774622972328,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":587,"timestamp":17375951986,"id":330,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774622972331,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":340,"timestamp":17375952700,"id":331,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774622972331,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":210,"timestamp":17376800331,"id":332,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622973179,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":188,"timestamp":17376800600,"id":333,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622973179,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":180,"timestamp":17376801323,"id":334,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622973180,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":146,"timestamp":17376801543,"id":335,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622973180,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":4581,"timestamp":17376802461,"id":337,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622973181,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":3149,"timestamp":17376807184,"id":338,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622973186,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":63860,"timestamp":17376801918,"id":336,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774622973181,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":5,"timestamp":17376865870,"id":339,"parentId":336,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1067831296","memory.heapUsed":"158196024","memory.heapTotal":"170430464"},"startTime":1774622973245,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":154,"timestamp":17396172853,"id":340,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622992551,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":102,"timestamp":17396173041,"id":341,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622992552,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":128,"timestamp":17396173537,"id":342,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622992552,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":99,"timestamp":17396173691,"id":343,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774622992552,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2513,"timestamp":17396174200,"id":345,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622992553,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2751,"timestamp":17396176843,"id":346,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774622992555,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":51749,"timestamp":17396173910,"id":344,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774622992553,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":4,"timestamp":17396225742,"id":347,"parentId":344,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1067368448","memory.heapUsed":"159289224","memory.heapTotal":"167284736"},"startTime":1774622992604,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":2242,"timestamp":17397125805,"id":349,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774622993504,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":41920,"timestamp":17397124869,"id":348,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774622993504,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":14,"timestamp":17397167122,"id":350,"parentId":348,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"1067368448","memory.heapUsed":"159723136","memory.heapTotal":"167284736"},"startTime":1774622993546,"traceId":"0772bd21703c78d4"},{"name":"ensure-page","duration":1298,"timestamp":17397247195,"id":352,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774622993626,"traceId":"0772bd21703c78d4"},{"name":"handle-request","duration":50247,"timestamp":17397245974,"id":351,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774622993625,"traceId":"0772bd21703c78d4"},{"name":"memory-usage","duration":20,"timestamp":17397296400,"id":353,"parentId":351,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"1067499520","memory.heapUsed":"161342904","memory.heapTotal":"170430464"},"startTime":1774622993675,"traceId":"0772bd21703c78d4"}] -[{"name":"hot-reloader","duration":55,"timestamp":17468996242,"id":3,"tags":{"version":"16.1.6"},"startTime":1774623065375,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":62371,"timestamp":17469183076,"id":4,"tags":{"trigger":"middleware"},"startTime":1774623065562,"traceId":"b942c89b8788043f"}] -[{"name":"setup-dev-bundler","duration":433466,"timestamp":17468885651,"id":2,"parentId":1,"tags":{},"startTime":1774623065264,"traceId":"b942c89b8788043f"},{"name":"start-dev-server","duration":1117321,"timestamp":17468344628,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"9380712448","memory.totalMem":"16408375296","memory.heapSizeLimit":"8254390272","memory.rss":"448442368","memory.heapTotal":"89591808","memory.heapUsed":"65614048"},"startTime":1774623064724,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":282285,"timestamp":17469624351,"id":7,"tags":{"trigger":"/admin/club"},"startTime":1774623066003,"traceId":"b942c89b8788043f"}] -[{"name":"handle-request","duration":761400,"timestamp":17469617009,"id":5,"tags":{"url":"/admin/club"},"startTime":1774623065996,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":31,"timestamp":17470378616,"id":8,"parentId":5,"tags":{"url":"/admin/club","memory.rss":"612061184","memory.heapUsed":"97114184","memory.heapTotal":"120541184"},"startTime":1774623066757,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2725,"timestamp":17471390556,"id":9,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774623067769,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":387,"timestamp":17471393577,"id":10,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774623067772,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":346,"timestamp":17471395281,"id":11,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774623067774,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":390,"timestamp":17471395699,"id":12,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774623067774,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":33066,"timestamp":17471401484,"id":15,"tags":{"trigger":"/_not-found/page"},"startTime":1774623067780,"traceId":"b942c89b8788043f"}] -[{"name":"ensure-page","duration":6803,"timestamp":17471437292,"id":16,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774623067816,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":231953,"timestamp":17471397491,"id":13,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774623067776,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":34,"timestamp":17471629805,"id":17,"parentId":13,"tags":{"url":"/avatars/admin.jpg","memory.rss":"694685696","memory.heapUsed":"98892768","memory.heapTotal":"130949120"},"startTime":1774623068008,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":209,"timestamp":18851251240,"id":18,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774624447630,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":293,"timestamp":18851251491,"id":19,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774624447630,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":266,"timestamp":18851252314,"id":20,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774624447631,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":154,"timestamp":18851252620,"id":21,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774624447631,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":5027,"timestamp":18851254176,"id":23,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774624447633,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3161,"timestamp":18851259469,"id":24,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774624447638,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":17355,"timestamp":18852647254,"id":27,"tags":{"trigger":"/login"},"startTime":1774624449026,"traceId":"b942c89b8788043f"}] -[{"name":"handle-request","duration":57036,"timestamp":18852646108,"id":25,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774624449025,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":18852703272,"id":28,"parentId":25,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"668442624","memory.heapUsed":"95795032","memory.heapTotal":"98934784"},"startTime":1774624449082,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3871,"timestamp":18852718585,"id":30,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774624449097,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":60248,"timestamp":18852717379,"id":29,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774624449096,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":13,"timestamp":18852777780,"id":31,"parentId":29,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"671588352","memory.heapUsed":"96470008","memory.heapTotal":"102866944"},"startTime":1774624449156,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":3347,"timestamp":19028493405,"id":34,"tags":{"trigger":"/admin"},"startTime":1774624624872,"traceId":"b942c89b8788043f"}] -[{"name":"handle-request","duration":32999,"timestamp":19028492753,"id":32,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774624624871,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":10,"timestamp":19028525849,"id":35,"parentId":32,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"691302400","memory.heapUsed":"99321688","memory.heapTotal":"103837696"},"startTime":1774624624904,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1505,"timestamp":19028534245,"id":37,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774624624913,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":48205,"timestamp":19028533599,"id":36,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774624624912,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":10,"timestamp":19028581934,"id":38,"parentId":36,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"692482048","memory.heapUsed":"99459712","memory.heapTotal":"103051264"},"startTime":1774624624961,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":204,"timestamp":19028726213,"id":39,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774624625105,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":145,"timestamp":19028726467,"id":40,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774624625105,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":459,"timestamp":19028727888,"id":41,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774624625107,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":252,"timestamp":19028728398,"id":42,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774624625107,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3109,"timestamp":19028729420,"id":44,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774624625108,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":6673,"timestamp":19028732700,"id":45,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774624625111,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":61499,"timestamp":19033057462,"id":48,"tags":{"trigger":"/admin/users"},"startTime":1774624629436,"traceId":"b942c89b8788043f"}] -[{"name":"handle-request","duration":95270,"timestamp":19033055888,"id":46,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774624629435,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":19033151271,"id":49,"parentId":46,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"750256128","memory.heapUsed":"101480536","memory.heapTotal":"107978752"},"startTime":1774624629530,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1576,"timestamp":19034932233,"id":51,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774624631311,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":29910,"timestamp":19034931280,"id":50,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774624631310,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":10,"timestamp":19034961335,"id":52,"parentId":50,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"754319360","memory.heapUsed":"102496232","memory.heapTotal":"112697344"},"startTime":1774624631340,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":573000,"timestamp":20247162311,"id":53,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774625844144,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":164000,"timestamp":20732484127,"id":54,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/file-upload.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774626329057,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":15727,"timestamp":20785021134,"id":56,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774626381400,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":155581,"timestamp":20785020083,"id":55,"tags":{"url":"/admin/club"},"startTime":1774626381399,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":20785175810,"id":57,"parentId":55,"tags":{"url":"/admin/club","memory.rss":"881004544","memory.heapUsed":"109824880","memory.heapTotal":"130387968"},"startTime":1774626381554,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":282,"timestamp":20785382691,"id":58,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774626381761,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":178,"timestamp":20785383039,"id":59,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774626381762,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":181,"timestamp":20785383733,"id":60,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774626381762,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":184,"timestamp":20785383951,"id":61,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774626381763,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":178,"timestamp":20785639245,"id":62,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626382018,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":137,"timestamp":20785639457,"id":63,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626382018,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":152,"timestamp":20785639984,"id":64,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626382019,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":120,"timestamp":20785640164,"id":65,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626382019,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":11797,"timestamp":20785640881,"id":67,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626382020,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2259,"timestamp":20785652839,"id":68,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626382031,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2332,"timestamp":20831950750,"id":70,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774626428329,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":61090,"timestamp":20831949640,"id":69,"tags":{"url":"/admin/club"},"startTime":1774626428328,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":20832010851,"id":71,"parentId":69,"tags":{"url":"/admin/club","memory.rss":"863469568","memory.heapUsed":"99379512","memory.heapTotal":"105422848"},"startTime":1774626428389,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":481,"timestamp":20832193212,"id":72,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774626428572,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":317,"timestamp":20832193770,"id":73,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774626428572,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":267,"timestamp":20832194783,"id":74,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774626428573,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":217,"timestamp":20832195094,"id":75,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774626428574,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":301,"timestamp":20832418635,"id":76,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626428797,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":254,"timestamp":20832418995,"id":77,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626428798,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":282,"timestamp":20832419798,"id":78,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626428798,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":173,"timestamp":20832420121,"id":79,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626428799,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2665,"timestamp":20832420922,"id":81,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626428800,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2501,"timestamp":20832423796,"id":82,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626428802,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":64005,"timestamp":20832420478,"id":80,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774626428799,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":21,"timestamp":20832484700,"id":83,"parentId":80,"tags":{"url":"/avatars/admin.jpg","memory.rss":"867270656","memory.heapUsed":"102459304","memory.heapTotal":"109592576"},"startTime":1774626428863,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":176,"timestamp":20846283533,"id":84,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626442662,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":121,"timestamp":20846283741,"id":85,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626442662,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":183,"timestamp":20846285447,"id":86,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626442664,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":127,"timestamp":20846285663,"id":87,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626442664,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2254,"timestamp":20846286287,"id":89,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626442665,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2085,"timestamp":20846288670,"id":90,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626442667,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2084,"timestamp":20847426084,"id":92,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774626443805,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":36277,"timestamp":20847425179,"id":91,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774626443804,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":20847461545,"id":93,"parentId":91,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"871395328","memory.heapUsed":"104927968","memory.heapTotal":"110059520"},"startTime":1774626443840,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1661,"timestamp":20847483476,"id":95,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774626443862,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":61515,"timestamp":20847482560,"id":94,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774626443861,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":11,"timestamp":20847544196,"id":96,"parentId":94,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"870625280","memory.heapUsed":"105282800","memory.heapTotal":"113467392"},"startTime":1774626443923,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1112,"timestamp":20887748909,"id":98,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774626484128,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":17082,"timestamp":20887748500,"id":97,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774626484127,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":20887765649,"id":99,"parentId":97,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"872591360","memory.heapUsed":"101650920","memory.heapTotal":"109273088"},"startTime":1774626484144,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1211,"timestamp":20887773839,"id":101,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774626484152,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":36495,"timestamp":20887773268,"id":100,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774626484152,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":20887809848,"id":102,"parentId":100,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"872591360","memory.heapUsed":"102235984","memory.heapTotal":"109273088"},"startTime":1774626484188,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":321,"timestamp":20887948393,"id":103,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626484327,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":286,"timestamp":20887948768,"id":104,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626484327,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":172,"timestamp":20887949565,"id":105,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626484328,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":150,"timestamp":20887949768,"id":106,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626484328,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2654,"timestamp":20887950759,"id":108,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626484329,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3025,"timestamp":20887953577,"id":109,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626484332,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2026,"timestamp":20891377967,"id":111,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774626487757,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":27047,"timestamp":20891377035,"id":110,"tags":{"url":"/admin/club?_rsc=1ng39"},"startTime":1774626487756,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":20891404157,"id":112,"parentId":110,"tags":{"url":"/admin/club?_rsc=1ng39","memory.rss":"893300736","memory.heapUsed":"105590104","memory.heapTotal":"112918528"},"startTime":1774626487783,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":176,"timestamp":20895474016,"id":113,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626491853,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":119,"timestamp":20895474229,"id":114,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626491853,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":136,"timestamp":20895474722,"id":115,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626491853,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":129,"timestamp":20895474885,"id":116,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626491854,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2281,"timestamp":20895475473,"id":118,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626491854,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2161,"timestamp":20895477884,"id":119,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626491857,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":4399,"timestamp":20896578108,"id":121,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774626492957,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":33276,"timestamp":20896577393,"id":120,"tags":{"url":"/login?_rsc=hkw9d"},"startTime":1774626492956,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":20896610767,"id":122,"parentId":120,"tags":{"url":"/login?_rsc=hkw9d","memory.rss":"878968832","memory.heapUsed":"106708600","memory.heapTotal":"113967104"},"startTime":1774626492989,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1141,"timestamp":20896617986,"id":124,"parentId":3,"tags":{"inputPage":"/login/page"},"startTime":1774626492997,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":35088,"timestamp":20896617495,"id":123,"tags":{"url":"/login?_rsc=1hoe2"},"startTime":1774626492996,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":11,"timestamp":20896652684,"id":125,"parentId":123,"tags":{"url":"/login?_rsc=1hoe2","memory.rss":"879624192","memory.heapUsed":"107814768","memory.heapTotal":"115015680"},"startTime":1774626493031,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":903,"timestamp":21045936368,"id":127,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774626642315,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":16868,"timestamp":21045935972,"id":126,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774626642315,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":7,"timestamp":21045952918,"id":128,"parentId":126,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"899530752","memory.heapUsed":"108741568","memory.heapTotal":"113909760"},"startTime":1774626642332,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":657,"timestamp":21045959628,"id":130,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774626642338,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":28577,"timestamp":21045959275,"id":129,"tags":{"url":"/admin?_rsc=ufnf8"},"startTime":1774626642338,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":28,"timestamp":21045988175,"id":131,"parentId":129,"tags":{"url":"/admin?_rsc=ufnf8","memory.rss":"899661824","memory.heapUsed":"109309824","memory.heapTotal":"114958336"},"startTime":1774626642367,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":209,"timestamp":21046143168,"id":132,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626642522,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":137,"timestamp":21046143415,"id":133,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626642522,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":153,"timestamp":21046143923,"id":134,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626642523,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":154,"timestamp":21046144105,"id":135,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774626642523,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2625,"timestamp":21046144776,"id":137,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626642523,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2361,"timestamp":21046147613,"id":138,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774626642526,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":5660,"timestamp":21049956961,"id":140,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774626646336,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":36843,"timestamp":21049954046,"id":139,"tags":{"url":"/admin/club?_rsc=1b24o"},"startTime":1774626646333,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":21049990976,"id":141,"parentId":139,"tags":{"url":"/admin/club?_rsc=1b24o","memory.rss":"902406144","memory.heapUsed":"103308536","memory.heapTotal":"117923840"},"startTime":1774626646370,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1988,"timestamp":21448256624,"id":143,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774627044635,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":27738,"timestamp":21448256047,"id":142,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774627044635,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":10,"timestamp":21448283884,"id":144,"parentId":142,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"902107136","memory.heapUsed":"103975832","memory.heapTotal":"115826688"},"startTime":1774627044663,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1554,"timestamp":21449667437,"id":146,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774627046046,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":28937,"timestamp":21449666548,"id":145,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774627046045,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":21449695566,"id":147,"parentId":145,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"902369280","memory.heapUsed":"105401048","memory.heapTotal":"116064256"},"startTime":1774627046074,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2947,"timestamp":21450823937,"id":149,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774627047203,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":48166,"timestamp":21450822413,"id":148,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774627047201,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":21450870680,"id":150,"parentId":148,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"902369280","memory.heapUsed":"105656768","memory.heapTotal":"116064256"},"startTime":1774627047249,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3446,"timestamp":21451950447,"id":152,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774627048329,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":37181,"timestamp":21451948367,"id":151,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774627048327,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":18,"timestamp":21451985640,"id":153,"parentId":151,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"902369280","memory.heapUsed":"106558128","memory.heapTotal":"115015680"},"startTime":1774627048364,"traceId":"b942c89b8788043f"}] -[{"name":"ensure-page","duration":3287,"timestamp":21453125916,"id":155,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774627049505,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":38023,"timestamp":21453124581,"id":154,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774627049503,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":18,"timestamp":21453162763,"id":156,"parentId":154,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"902369280","memory.heapUsed":"107465008","memory.heapTotal":"118161408"},"startTime":1774627049541,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":188,"timestamp":21470345086,"id":157,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774627066724,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":118,"timestamp":21470345311,"id":158,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774627066724,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":124,"timestamp":21470345756,"id":159,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774627066724,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":122,"timestamp":21470345906,"id":160,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774627066725,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3525,"timestamp":21470346544,"id":162,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774627066725,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":4271,"timestamp":21470350341,"id":163,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774627066729,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":215000,"timestamp":22258150750,"id":164,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774627854784,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":89000,"timestamp":22298505803,"id":165,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/user-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774627895001,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":150000,"timestamp":22309761799,"id":166,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/user-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774627906318,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":189,"timestamp":22335021081,"id":167,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774627931400,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":117,"timestamp":22335021304,"id":168,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774627931400,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":130,"timestamp":22335021799,"id":169,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774627931400,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":128,"timestamp":22335021955,"id":170,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774627931401,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":9377,"timestamp":22335023073,"id":172,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774627931402,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2153,"timestamp":22335032577,"id":173,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774627931411,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1750,"timestamp":22365820297,"id":175,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774627962199,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":22420,"timestamp":22365819725,"id":174,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774627962198,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":22,"timestamp":22365842337,"id":176,"parentId":174,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"1013637120","memory.heapUsed":"111916944","memory.heapTotal":"117055488"},"startTime":1774627962221,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":28118,"timestamp":22367489638,"id":178,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774627963868,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":120089,"timestamp":22367487806,"id":177,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774627963866,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":7,"timestamp":22367607963,"id":179,"parentId":177,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"1014759424","memory.heapUsed":"103923072","memory.heapTotal":"122146816"},"startTime":1774627963987,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1857,"timestamp":22369308984,"id":181,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774627965688,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":26110,"timestamp":22369307928,"id":180,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774627965687,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":22369334132,"id":182,"parentId":180,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"1015152640","memory.heapUsed":"104537616","memory.heapTotal":"122146816"},"startTime":1774627965713,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":784,"timestamp":22656189174,"id":184,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774628252568,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":19768,"timestamp":22656188715,"id":183,"tags":{"url":"/admin/club?_rsc=1b53t"},"startTime":1774628252567,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":6,"timestamp":22656208547,"id":185,"parentId":183,"tags":{"url":"/admin/club?_rsc=1b53t","memory.rss":"1019559936","memory.heapUsed":"101484784","memory.heapTotal":"105451520"},"startTime":1774628252587,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":7537,"timestamp":22657632587,"id":187,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774628254011,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":45542,"timestamp":22657631154,"id":186,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774628254010,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":7,"timestamp":22657676772,"id":188,"parentId":186,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"1000755200","memory.heapUsed":"101969544","memory.heapTotal":"106762240"},"startTime":1774628254055,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1427,"timestamp":22660138239,"id":190,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774628256517,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":28374,"timestamp":22660137578,"id":189,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774628256516,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":57,"timestamp":22660166072,"id":191,"parentId":189,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"1020022784","memory.heapUsed":"102825256","memory.heapTotal":"106237952"},"startTime":1774628256545,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1543,"timestamp":22661047642,"id":193,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774628257426,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":23925,"timestamp":22661046988,"id":192,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774628257426,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":7,"timestamp":22661070989,"id":194,"parentId":192,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"1020284928","memory.heapUsed":"103167016","memory.heapTotal":"106762240"},"startTime":1774628257450,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3531,"timestamp":22661929135,"id":196,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774628258308,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":45912,"timestamp":22661926917,"id":195,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774628258306,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":22661972926,"id":197,"parentId":195,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"1020940288","memory.heapUsed":"104125256","memory.heapTotal":"110956544"},"startTime":1774628258352,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":4667,"timestamp":22663224982,"id":199,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774628259604,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":30659,"timestamp":22663224298,"id":198,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774628259603,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":22663255052,"id":200,"parentId":198,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"1003769856","memory.heapUsed":"105061096","memory.heapTotal":"111194112"},"startTime":1774628259634,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3300,"timestamp":22664972346,"id":202,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774628261351,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":43106,"timestamp":22664970756,"id":201,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774628261349,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":22665013946,"id":203,"parentId":201,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"1005604864","memory.heapUsed":"105968432","memory.heapTotal":"111980544"},"startTime":1774628261393,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":7760,"timestamp":22700207765,"id":205,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774628296586,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":34993,"timestamp":22700206288,"id":204,"tags":{"url":"/admin?_rsc=1b53t"},"startTime":1774628296585,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":22700241385,"id":206,"parentId":204,"tags":{"url":"/admin?_rsc=1b53t","memory.rss":"1025658880","memory.heapUsed":"106183896","memory.heapTotal":"110669824"},"startTime":1774628296620,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2728,"timestamp":22701639779,"id":208,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774628298018,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":40987,"timestamp":22701638574,"id":207,"tags":{"url":"/admin/users?_rsc=1b24o"},"startTime":1774628298017,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":7,"timestamp":22701679636,"id":209,"parentId":207,"tags":{"url":"/admin/users?_rsc=1b24o","memory.rss":"1025789952","memory.heapUsed":"106502360","memory.heapTotal":"111456256"},"startTime":1774628298058,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2497,"timestamp":22702732186,"id":211,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774628299111,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":38394,"timestamp":22702730569,"id":210,"tags":{"url":"/admin/club?_rsc=3jpne"},"startTime":1774628299109,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":11,"timestamp":22702769074,"id":212,"parentId":210,"tags":{"url":"/admin/club?_rsc=3jpne","memory.rss":"1025789952","memory.heapUsed":"107403008","memory.heapTotal":"110931968"},"startTime":1774628299148,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":69070,"timestamp":22738495222,"id":215,"tags":{"trigger":"/admin/news"},"startTime":1774628334874,"traceId":"b942c89b8788043f"}] -[{"name":"handle-request","duration":100903,"timestamp":22738492972,"id":213,"tags":{"url":"/admin/news?_rsc=1b53t"},"startTime":1774628334872,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":6,"timestamp":22738593948,"id":216,"parentId":213,"tags":{"url":"/admin/news?_rsc=1b53t","memory.rss":"1030283264","memory.heapUsed":"108924496","memory.heapTotal":"112713728"},"startTime":1774628334973,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":32669,"timestamp":22744218235,"id":219,"tags":{"trigger":"/admin/teams"},"startTime":1774628340597,"traceId":"b942c89b8788043f"}] -[{"name":"handle-request","duration":64269,"timestamp":22744216085,"id":217,"tags":{"url":"/admin/teams?_rsc=tvrcw"},"startTime":1774628340595,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":22744280448,"id":220,"parentId":217,"tags":{"url":"/admin/teams?_rsc=tvrcw","memory.rss":"1069801472","memory.heapUsed":"111628768","memory.heapTotal":"114962432"},"startTime":1774628340659,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":25698,"timestamp":22745521461,"id":223,"tags":{"trigger":"/admin/players"},"startTime":1774628341900,"traceId":"b942c89b8788043f"}] -[{"name":"handle-request","duration":67580,"timestamp":22745520726,"id":221,"tags":{"url":"/admin/players?_rsc=1nn85"},"startTime":1774628341899,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":22745588387,"id":224,"parentId":221,"tags":{"url":"/admin/players?_rsc=1nn85","memory.rss":"1087815680","memory.heapUsed":"108226280","memory.heapTotal":"118841344"},"startTime":1774628341967,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2825,"timestamp":22944598334,"id":226,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774628540977,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":39836,"timestamp":22944596986,"id":225,"tags":{"url":"/admin/teams?_rsc=48qex"},"startTime":1774628540976,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":22944636902,"id":227,"parentId":225,"tags":{"url":"/admin/teams?_rsc=48qex","memory.rss":"1094873088","memory.heapUsed":"109690976","memory.heapTotal":"118841344"},"startTime":1774628541016,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":1425,"timestamp":23015821890,"id":229,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774628612201,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":32903,"timestamp":23015820802,"id":228,"tags":{"url":"/admin/club?_rsc=1nn85"},"startTime":1774628612199,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":10,"timestamp":23015853805,"id":230,"parentId":228,"tags":{"url":"/admin/club?_rsc=1nn85","memory.rss":"1095659520","memory.heapUsed":"110262576","memory.heapTotal":"116981760"},"startTime":1774628612232,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":5575,"timestamp":23017013285,"id":232,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774628613392,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":45085,"timestamp":23017011845,"id":231,"tags":{"url":"/admin/users?_rsc=1b53t"},"startTime":1774628613391,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":23017057023,"id":233,"parentId":231,"tags":{"url":"/admin/users?_rsc=1b53t","memory.rss":"1095659520","memory.heapUsed":"110607176","memory.heapTotal":"116981760"},"startTime":1774628613436,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":50000,"timestamp":23124451520,"id":234,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774628720909,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":48000,"timestamp":23124573454,"id":235,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774628721028,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":51000,"timestamp":23124878899,"id":236,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/file-upload.tsx [app-client]","[project]/src/components/dashboard/admin/club-form.tsx [app-client]","[project]/src/components/dashboard/admin/club-preview.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774628721337,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":47000,"timestamp":23251095737,"id":237,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1774628847549,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":6008,"timestamp":23325810691,"id":239,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774628922189,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":210000,"timestamp":23325602844,"id":240,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/shared/lib/image-blur-svg.js [app-client]","[project]/node_modules/next/dist/shared/lib/image-config.js [app-client]","[project]/node_modules/next/dist/shared/lib/get-img-props.js [app-client]","[project]/node_modules/next/dist/shared/lib/side-effect.js [app-client]","[project]/node_modules/next/dist/shared/lib/head.js [app-client]","[project]/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js [app-client]","[project]/node_modules/next/dist/shared/lib/router-context.shared-runtime.js [app-client]","[project]/node_modules/next/dist/shared/lib/find-closest-quality.js [app-client]","[project]/node_modules/next/dist/compiled/picomatch/index.js [app-client]","[project]/node_modules/next/dist/shared/lib/match-local-pattern.js [app-client]","[project]/node_modules/next/dist/shared/lib/match-remote-pattern.js [app-client]","[project]/node_modules/next/dist/shared/lib/image-loader.js [app-client]","[project]/node_modules/next/dist/client/image-component.js [app-client]","[project]/node_modules/next/dist/shared/lib/image-external.js [app-client]","[project]/node_modules/next/image.js [app-client]","[project]/src/components/dashboard/admin/club-preview.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1774628922259,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":71806,"timestamp":23325810134,"id":238,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774628922189,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":6,"timestamp":23325882027,"id":241,"parentId":238,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1149632512","memory.heapUsed":"111825480","memory.heapTotal":"120074240"},"startTime":1774628922261,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":70000,"timestamp":23327953688,"id":242,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1774628924425,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":10517,"timestamp":28037425823,"id":243,"tags":{"trigger":"middleware"},"startTime":1774633633804,"traceId":"b942c89b8788043f"}] -[{"name":"ensure-page","duration":45808,"timestamp":28037462587,"id":245,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633633841,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":169433,"timestamp":28037461556,"id":244,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633633840,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":12,"timestamp":28037632951,"id":246,"parentId":244,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1208602624","memory.heapUsed":"119959632","memory.heapTotal":"126992384"},"startTime":1774633634012,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":4552,"timestamp":28037640871,"id":248,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634020,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":77046,"timestamp":28037644073,"id":250,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634023,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":296000,"timestamp":28037266739,"id":253,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1774633634139,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":47222,"timestamp":28037719528,"id":252,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634098,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":49487,"timestamp":28037764662,"id":255,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634143,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":30292,"timestamp":28037812645,"id":257,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634191,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":21878,"timestamp":28037841642,"id":259,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634220,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":250315,"timestamp":28037639807,"id":247,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634018,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":28037890207,"id":260,"parentId":247,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1212354560","memory.heapUsed":"120666992","memory.heapTotal":"129351680"},"startTime":1774633634269,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":248311,"timestamp":28037643340,"id":249,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634022,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":28037891830,"id":261,"parentId":249,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1212354560","memory.heapUsed":"120711984","memory.heapTotal":"129351680"},"startTime":1774633634270,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":176235,"timestamp":28037718373,"id":251,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634097,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":7,"timestamp":28037894687,"id":262,"parentId":251,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1212354560","memory.heapUsed":"120938216","memory.heapTotal":"129351680"},"startTime":1774633634273,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":134184,"timestamp":28037762972,"id":254,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634142,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":28037897233,"id":265,"parentId":254,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1212354560","memory.heapUsed":"121094392","memory.heapTotal":"129351680"},"startTime":1774633634276,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3277,"timestamp":28037895619,"id":264,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634274,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":110543,"timestamp":28037812033,"id":256,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634191,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":28037922675,"id":268,"parentId":256,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1213403136","memory.heapUsed":"120983256","memory.heapTotal":"138788864"},"startTime":1774633634301,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":25873,"timestamp":28037898193,"id":267,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634277,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":107798,"timestamp":28037841183,"id":258,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634220,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":28037949095,"id":269,"parentId":258,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1214320640","memory.heapUsed":"123597248","memory.heapTotal":"139051008"},"startTime":1774633634328,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3468,"timestamp":28037950127,"id":271,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634329,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":31766,"timestamp":28037952552,"id":273,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634331,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":29116,"timestamp":28037983304,"id":275,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634362,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":22326,"timestamp":28038011614,"id":277,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634390,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":167691,"timestamp":28037895181,"id":263,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634274,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":28038062958,"id":278,"parentId":263,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1224019968","memory.heapUsed":"124010112","memory.heapTotal":"142663680"},"startTime":1774633634442,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":167682,"timestamp":28037897735,"id":266,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634276,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":10,"timestamp":28038065516,"id":279,"parentId":266,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1224151040","memory.heapUsed":"124158456","memory.heapTotal":"142663680"},"startTime":1774633634444,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":121253,"timestamp":28037949585,"id":270,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634328,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":11,"timestamp":28038070962,"id":282,"parentId":270,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1224151040","memory.heapUsed":"124391232","memory.heapTotal":"142663680"},"startTime":1774633634450,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":5130,"timestamp":28038067516,"id":281,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634446,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":159134,"timestamp":28037952091,"id":272,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634331,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":13,"timestamp":28038111366,"id":283,"parentId":272,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1224413184","memory.heapUsed":"126903672","memory.heapTotal":"142663680"},"startTime":1774633634490,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":132999,"timestamp":28037982819,"id":274,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634361,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":12,"timestamp":28038115944,"id":286,"parentId":274,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1224413184","memory.heapUsed":"127113552","memory.heapTotal":"142663680"},"startTime":1774633634495,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":4806,"timestamp":28038112713,"id":285,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634491,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":169947,"timestamp":28038011180,"id":276,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634390,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":12,"timestamp":28038181256,"id":289,"parentId":276,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1226117120","memory.heapUsed":"125606936","memory.heapTotal":"144760832"},"startTime":1774633634560,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":9902,"timestamp":28038174839,"id":288,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634554,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":47602,"timestamp":28038183109,"id":291,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634562,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":52937,"timestamp":28038228930,"id":293,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634608,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":6793,"timestamp":28038351887,"id":295,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634731,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":381693,"timestamp":28038066846,"id":280,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634445,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":40,"timestamp":28038448915,"id":296,"parentId":280,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1228738560","memory.heapUsed":"130327704","memory.heapTotal":"163373056"},"startTime":1774633634828,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":344098,"timestamp":28038111877,"id":284,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634491,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":13,"timestamp":28038456141,"id":297,"parentId":284,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1228738560","memory.heapUsed":"130454736","memory.heapTotal":"163373056"},"startTime":1774633634835,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":290017,"timestamp":28038173343,"id":287,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634552,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":12,"timestamp":28038463489,"id":300,"parentId":287,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1228738560","memory.heapUsed":"130630512","memory.heapTotal":"163373056"},"startTime":1774633634842,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3308,"timestamp":28038461636,"id":299,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634840,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":336448,"timestamp":28038182216,"id":290,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634561,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":10,"timestamp":28038518792,"id":301,"parentId":290,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1229000704","memory.heapUsed":"133279024","memory.heapTotal":"163373056"},"startTime":1774633634897,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":294656,"timestamp":28038227402,"id":292,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634606,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":58,"timestamp":28038522438,"id":302,"parentId":292,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1229000704","memory.heapUsed":"133320104","memory.heapTotal":"163373056"},"startTime":1774633634901,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":185014,"timestamp":28038351012,"id":294,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634730,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":12,"timestamp":28038536155,"id":307,"parentId":294,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1229000704","memory.heapUsed":"133703752","memory.heapTotal":"163373056"},"startTime":1774633634915,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":6475,"timestamp":28038531100,"id":306,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634910,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":60080,"timestamp":28038526758,"id":304,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633634905,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":10696,"timestamp":28038634302,"id":309,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635013,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":81302,"timestamp":28038638875,"id":311,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635018,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":5903,"timestamp":28038770191,"id":313,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635149,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":364619,"timestamp":28038460728,"id":298,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634839,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":18,"timestamp":28038825540,"id":314,"parentId":298,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1240666112","memory.heapUsed":"137409368","memory.heapTotal":"167182336"},"startTime":1774633635204,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":305521,"timestamp":28038529436,"id":305,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634908,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":19,"timestamp":28038835161,"id":317,"parentId":305,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1240666112","memory.heapUsed":"137662152","memory.heapTotal":"167182336"},"startTime":1774633635214,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":4215,"timestamp":28038832283,"id":316,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635211,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":353389,"timestamp":28038524774,"id":303,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633634903,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":11,"timestamp":28038878294,"id":318,"parentId":303,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1242501120","memory.heapUsed":"140133608","memory.heapTotal":"167444480"},"startTime":1774633635257,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":253352,"timestamp":28038633287,"id":308,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635012,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":12,"timestamp":28038886778,"id":319,"parentId":308,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1242632192","memory.heapUsed":"140352640","memory.heapTotal":"167444480"},"startTime":1774633635265,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":6103,"timestamp":28038890600,"id":321,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635269,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":314554,"timestamp":28038637330,"id":310,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635016,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":13,"timestamp":28038952038,"id":324,"parentId":310,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1245384704","memory.heapUsed":"143172824","memory.heapTotal":"167706624"},"startTime":1774633635331,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":187994,"timestamp":28038769481,"id":312,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635148,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":52,"timestamp":28038959096,"id":325,"parentId":312,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1245515776","memory.heapUsed":"143239176","memory.heapTotal":"167706624"},"startTime":1774633635338,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":16487,"timestamp":28038948560,"id":323,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635327,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":83057,"timestamp":28038963786,"id":327,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635342,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":10316,"timestamp":28039102356,"id":329,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635481,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":51385,"timestamp":28039111315,"id":331,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635490,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":384637,"timestamp":28038831468,"id":315,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635210,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":13,"timestamp":28039216245,"id":332,"parentId":315,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1251545088","memory.heapUsed":"143653872","memory.heapTotal":"171114496"},"startTime":1774633635595,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":6077,"timestamp":28039231540,"id":334,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635610,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":459345,"timestamp":28038887765,"id":320,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635266,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":14,"timestamp":28039347281,"id":335,"parentId":320,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1252462592","memory.heapUsed":"131469240","memory.heapTotal":"173498368"},"startTime":1774633635726,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":402887,"timestamp":28038947657,"id":322,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635326,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":30,"timestamp":28039350789,"id":336,"parentId":322,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1252462592","memory.heapUsed":"131517656","memory.heapTotal":"173498368"},"startTime":1774633635729,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":393497,"timestamp":28038962398,"id":326,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635341,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":25,"timestamp":28039356204,"id":337,"parentId":326,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1252462592","memory.heapUsed":"131637616","memory.heapTotal":"173498368"},"startTime":1774633635735,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":263207,"timestamp":28039100774,"id":328,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635479,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":12,"timestamp":28039364124,"id":340,"parentId":328,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1252462592","memory.heapUsed":"131796456","memory.heapTotal":"173498368"},"startTime":1774633635743,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":3722,"timestamp":28039361695,"id":339,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774633635740,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":310958,"timestamp":28039109714,"id":330,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635488,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":12,"timestamp":28039420813,"id":341,"parentId":330,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1252462592","memory.heapUsed":"134272952","memory.heapTotal":"173498368"},"startTime":1774633635799,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":200507,"timestamp":28039230490,"id":333,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635609,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":13,"timestamp":28039431156,"id":342,"parentId":333,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1252462592","memory.heapUsed":"134353328","memory.heapTotal":"173498368"},"startTime":1774633635810,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":75099,"timestamp":28039360408,"id":338,"tags":{"url":"/admin/users?_rsc=1t5hq"},"startTime":1774633635739,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":18,"timestamp":28039435807,"id":343,"parentId":338,"tags":{"url":"/admin/users?_rsc=1t5hq","memory.rss":"1252462592","memory.heapUsed":"134407832","memory.heapTotal":"173498368"},"startTime":1774633635814,"traceId":"b942c89b8788043f"},{"name":"client-hmr-latency","duration":88000,"timestamp":28129864350,"id":344,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/app-sidebar.tsx [app-client]"],"page":"/admin/users","isPageHidden":true},"startTime":1774633726386,"traceId":"b942c89b8788043f"}] -[{"name":"compile-path","duration":805101,"timestamp":28139421678,"id":347,"tags":{"trigger":"/admin/members"},"startTime":1774633735800,"traceId":"b942c89b8788043f"}] -[{"name":"handle-request","duration":887781,"timestamp":28139419504,"id":345,"tags":{"url":"/admin/members?_rsc=3jpne"},"startTime":1774633735798,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":28140307378,"id":348,"parentId":345,"tags":{"url":"/admin/members?_rsc=3jpne","memory.rss":"1274175488","memory.heapUsed":"128020088","memory.heapTotal":"132362240"},"startTime":1774633736686,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":11964,"timestamp":28143421883,"id":350,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774633739801,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":87001,"timestamp":28143420925,"id":349,"tags":{"url":"/admin/teams?_rsc=1rhyq"},"startTime":1774633739800,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":9,"timestamp":28143508123,"id":351,"parentId":349,"tags":{"url":"/admin/teams?_rsc=1rhyq","memory.rss":"1365803008","memory.heapUsed":"126220432","memory.heapTotal":"147636224"},"startTime":1774633739887,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2874,"timestamp":28144565400,"id":353,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774633740944,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":40048,"timestamp":28144563448,"id":352,"tags":{"url":"/admin/members?_rsc=1nn85"},"startTime":1774633740942,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":13,"timestamp":28144603630,"id":354,"parentId":352,"tags":{"url":"/admin/members?_rsc=1nn85","memory.rss":"1365934080","memory.heapUsed":"128663008","memory.heapTotal":"147636224"},"startTime":1774633740982,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":14042,"timestamp":28147488825,"id":356,"parentId":3,"tags":{"inputPage":"/admin/news/page"},"startTime":1774633743867,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":75554,"timestamp":28147487098,"id":355,"tags":{"url":"/admin/news?_rsc=1rhyq"},"startTime":1774633743866,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":7,"timestamp":28147562728,"id":357,"parentId":355,"tags":{"url":"/admin/news?_rsc=1rhyq","memory.rss":"1332350976","memory.heapUsed":"131352128","memory.heapTotal":"148496384"},"startTime":1774633743941,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":2342,"timestamp":28148285555,"id":359,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774633744664,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":45313,"timestamp":28148284632,"id":358,"tags":{"url":"/admin/teams?_rsc=tvrcw"},"startTime":1774633744663,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":10,"timestamp":28148330055,"id":360,"parentId":358,"tags":{"url":"/admin/teams?_rsc=tvrcw","memory.rss":"1334579200","memory.heapUsed":"133572288","memory.heapTotal":"148758528"},"startTime":1774633744709,"traceId":"b942c89b8788043f"},{"name":"ensure-page","duration":22651,"timestamp":30375637481,"id":362,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774635972016,"traceId":"b942c89b8788043f"},{"name":"handle-request","duration":74267,"timestamp":30375635715,"id":361,"tags":{"url":"/admin/users?_rsc=1nn85"},"startTime":1774635972014,"traceId":"b942c89b8788043f"},{"name":"memory-usage","duration":8,"timestamp":30375710074,"id":363,"parentId":361,"tags":{"url":"/admin/users?_rsc=1nn85","memory.rss":"1210900480","memory.heapUsed":"139827560","memory.heapTotal":"144130048"},"startTime":1774635972089,"traceId":"b942c89b8788043f"},{"name":"compile-path","duration":13863,"timestamp":30377088446,"id":366,"tags":{"trigger":"/admin/club"},"startTime":1774635973467,"traceId":"b942c89b8788043f"}] -[{"name":"hot-reloader","duration":130,"timestamp":1422727281,"id":3,"tags":{"version":"16.1.6"},"startTime":1774680570281,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":366623,"timestamp":1423884603,"id":4,"tags":{"trigger":"middleware"},"startTime":1774680571438,"traceId":"73c54f99aab44d5e"}] -[{"name":"setup-dev-bundler","duration":1945229,"timestamp":1422478308,"id":2,"parentId":1,"tags":{},"startTime":1774680570032,"traceId":"73c54f99aab44d5e"},{"name":"start-dev-server","duration":3652095,"timestamp":1421030345,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"12013543424","memory.totalMem":"16408371200","memory.heapSizeLimit":"8254390272","memory.rss":"455806976","memory.heapTotal":"89591808","memory.heapUsed":"65768736"},"startTime":1774680568585,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":1608145,"timestamp":1503416451,"id":7,"tags":{"trigger":"/"},"startTime":1774680650970,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":2737450,"timestamp":1503326437,"id":5,"tags":{"url":"/"},"startTime":1774680650882,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":27,"timestamp":1506064229,"id":8,"parentId":5,"tags":{"url":"/","memory.rss":"298328064","memory.heapUsed":"80658696","memory.heapTotal":"98988032"},"startTime":1774680653618,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3018,"timestamp":1506342581,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774680653896,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1130,"timestamp":1506346360,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774680653900,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":899,"timestamp":1506349758,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774680653903,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":703,"timestamp":1506350805,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774680653904,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":2887000,"timestamp":6945135850,"id":13,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":true},"startTime":1774686095676,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":546834,"timestamp":7025172862,"id":16,"tags":{"trigger":"/login"},"startTime":1774686172726,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":1348729,"timestamp":7025144709,"id":14,"tags":{"url":"/login"},"startTime":1774686172698,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":670,"timestamp":7026494264,"id":17,"parentId":14,"tags":{"url":"/login","memory.rss":"283688960","memory.heapUsed":"85270472","memory.heapTotal":"89686016"},"startTime":1774686174048,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":410,"timestamp":7026864515,"id":18,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686174418,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":360,"timestamp":7026865039,"id":19,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686174418,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":770,"timestamp":7026869491,"id":20,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686174423,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":293,"timestamp":7026870360,"id":21,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686174424,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":447138,"timestamp":7027456122,"id":24,"tags":{"trigger":"/admin"},"startTime":1774686175010,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":602412,"timestamp":7027450987,"id":22,"tags":{"url":"/admin?_rsc=5c339"},"startTime":1774686175005,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":15,"timestamp":7028053555,"id":25,"parentId":22,"tags":{"url":"/admin?_rsc=5c339","memory.rss":"349044736","memory.heapUsed":"85823464","memory.heapTotal":"96796672"},"startTime":1774686175607,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":607,"timestamp":7028439377,"id":26,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686175993,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":317,"timestamp":7028440096,"id":27,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686175994,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":284,"timestamp":7028441174,"id":28,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686175995,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":278,"timestamp":7028441536,"id":29,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686175995,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":44622,"timestamp":7028446260,"id":32,"tags":{"trigger":"/_not-found/page"},"startTime":1774686176000,"traceId":"73c54f99aab44d5e"}] -[{"name":"ensure-page","duration":3666,"timestamp":7028492148,"id":33,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686176046,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":36855,"timestamp":7034742302,"id":36,"tags":{"trigger":"/admin/club"},"startTime":1774686182296,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":93751,"timestamp":7034740711,"id":34,"tags":{"url":"/admin/club?_rsc=1b24o"},"startTime":1774686182294,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":11,"timestamp":7034834581,"id":37,"parentId":34,"tags":{"url":"/admin/club?_rsc=1b24o","memory.rss":"438235136","memory.heapUsed":"93999088","memory.heapTotal":"112103424"},"startTime":1774686182388,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":9451,"timestamp":7041768390,"id":39,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1774686189322,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":145679,"timestamp":7041766270,"id":38,"tags":{"url":"/"},"startTime":1774686189320,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":11,"timestamp":7041912104,"id":40,"parentId":38,"tags":{"url":"/","memory.rss":"459730944","memory.heapUsed":"97982336","memory.heapTotal":"115191808"},"startTime":1774686189466,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":990,"timestamp":7042170750,"id":41,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686189724,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":987,"timestamp":7042171906,"id":42,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686189725,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1150,"timestamp":7042175573,"id":43,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686189729,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":594,"timestamp":7042176845,"id":44,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686189730,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":5349,"timestamp":7043394040,"id":46,"parentId":3,"tags":{"inputPage":"/admin/page"},"startTime":1774686190948,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":358366,"timestamp":7043391405,"id":45,"tags":{"url":"/admin"},"startTime":1774686190945,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":16,"timestamp":7043750031,"id":47,"parentId":45,"tags":{"url":"/admin","memory.rss":"471310336","memory.heapUsed":"108922192","memory.heapTotal":"139227136"},"startTime":1774686191303,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":514,"timestamp":7044647830,"id":48,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686192201,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":360,"timestamp":7044648441,"id":49,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686192202,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":793,"timestamp":7044650361,"id":50,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686192204,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":609,"timestamp":7044651277,"id":51,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686192205,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":13118,"timestamp":7044654144,"id":53,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686192208,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":6088,"timestamp":7044667688,"id":54,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686192221,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":99531,"timestamp":7047772545,"id":57,"tags":{"trigger":"/admin/users"},"startTime":1774686195326,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":203239,"timestamp":7047769364,"id":55,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1774686195323,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":13,"timestamp":7047972748,"id":58,"parentId":55,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"483254272","memory.heapUsed":"109811432","memory.heapTotal":"137203712"},"startTime":1774686195526,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":147092,"timestamp":7049827577,"id":61,"tags":{"trigger":"/admin/teams"},"startTime":1774686197381,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":256674,"timestamp":7049824591,"id":59,"tags":{"url":"/admin/teams?_rsc=wkrq7"},"startTime":1774686197378,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":14,"timestamp":7050081441,"id":62,"parentId":59,"tags":{"url":"/admin/teams?_rsc=wkrq7","memory.rss":"510140416","memory.heapUsed":"107986624","memory.heapTotal":"142057472"},"startTime":1774686197635,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":595310,"timestamp":7052330113,"id":65,"tags":{"trigger":"/admin/members"},"startTime":1774686199884,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":660934,"timestamp":7052328830,"id":63,"tags":{"url":"/admin/members?_rsc=elqic"},"startTime":1774686199882,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":12,"timestamp":7052989926,"id":66,"parentId":63,"tags":{"url":"/admin/members?_rsc=elqic","memory.rss":"810950656","memory.heapUsed":"112801912","memory.heapTotal":"143069184"},"startTime":1774686200543,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3573,"timestamp":7070043684,"id":68,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774686217597,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":87404,"timestamp":7070040536,"id":67,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774686217594,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":16,"timestamp":7070128211,"id":69,"parentId":67,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"838324224","memory.heapUsed":"102192968","memory.heapTotal":"106778624"},"startTime":1774686217682,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":5928,"timestamp":7075041639,"id":71,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774686222595,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":82695,"timestamp":7075038849,"id":70,"tags":{"url":"/admin/members?_rsc=wkrq7"},"startTime":1774686222592,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":22,"timestamp":7075121819,"id":72,"parentId":70,"tags":{"url":"/admin/members?_rsc=wkrq7","memory.rss":"856936448","memory.heapUsed":"102655760","memory.heapTotal":"106778624"},"startTime":1774686222675,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3949,"timestamp":7105001420,"id":74,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774686252555,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":84247,"timestamp":7104999358,"id":73,"tags":{"url":"/admin/teams?_rsc=3qvm5"},"startTime":1774686252553,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":22,"timestamp":7105083813,"id":75,"parentId":73,"tags":{"url":"/admin/teams?_rsc=3qvm5","memory.rss":"857067520","memory.heapUsed":"103189152","memory.heapTotal":"107040768"},"startTime":1774686252637,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3397,"timestamp":7105925760,"id":77,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774686253479,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":93648,"timestamp":7105924307,"id":76,"tags":{"url":"/admin/members?_rsc=elqic"},"startTime":1774686253478,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":22,"timestamp":7106018226,"id":78,"parentId":76,"tags":{"url":"/admin/members?_rsc=elqic","memory.rss":"857460736","memory.heapUsed":"104282696","memory.heapTotal":"108613632"},"startTime":1774686253572,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4276,"timestamp":7108391538,"id":80,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774686255945,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":74238,"timestamp":7108390118,"id":79,"tags":{"url":"/admin/teams?_rsc=3qvm5"},"startTime":1774686255944,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":22,"timestamp":7108464571,"id":81,"parentId":79,"tags":{"url":"/admin/teams?_rsc=3qvm5","memory.rss":"858116096","memory.heapUsed":"104678160","memory.heapTotal":"109137920"},"startTime":1774686256018,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3605,"timestamp":7109253933,"id":83,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774686256807,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":102276,"timestamp":7109252380,"id":82,"tags":{"url":"/admin/members?_rsc=elqic"},"startTime":1774686256806,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":22,"timestamp":7109354895,"id":84,"parentId":82,"tags":{"url":"/admin/members?_rsc=elqic","memory.rss":"860606464","memory.heapUsed":"105376288","memory.heapTotal":"112521216"},"startTime":1774686256908,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4020,"timestamp":7112731517,"id":86,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774686260285,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":74620,"timestamp":7112729311,"id":85,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774686260283,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":18,"timestamp":7112804232,"id":87,"parentId":85,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"862703616","memory.heapUsed":"106209384","memory.heapTotal":"112783360"},"startTime":1774686260358,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":6364,"timestamp":7113801913,"id":89,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774686261355,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":94105,"timestamp":7113800321,"id":88,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774686261354,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":30,"timestamp":7113895340,"id":90,"parentId":88,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"864014336","memory.heapUsed":"107236328","memory.heapTotal":"113307648"},"startTime":1774686261449,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":58010,"timestamp":7450581191,"id":92,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774686598135,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":750787,"timestamp":7450578301,"id":91,"tags":{"url":"/admin/club"},"startTime":1774686598132,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":12,"timestamp":7451329220,"id":93,"parentId":91,"tags":{"url":"/admin/club","memory.rss":"896081920","memory.heapUsed":"117632400","memory.heapTotal":"136609792"},"startTime":1774686598883,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":485,"timestamp":7451560607,"id":94,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686599114,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":353,"timestamp":7451561182,"id":95,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686599115,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":379,"timestamp":7451562593,"id":96,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686599116,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":339,"timestamp":7451563065,"id":97,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686599117,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":720,"timestamp":7452186059,"id":98,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686599740,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":359,"timestamp":7452186884,"id":99,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686599740,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":358,"timestamp":7452188166,"id":100,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686599742,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":288,"timestamp":7452188613,"id":101,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686599742,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":5511,"timestamp":7452190793,"id":103,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686599744,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":6425,"timestamp":7452196668,"id":104,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686599750,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":17956,"timestamp":7483326502,"id":106,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774686630880,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":449797,"timestamp":7483325593,"id":105,"tags":{"url":"/admin/club"},"startTime":1774686630879,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":36,"timestamp":7483775691,"id":107,"parentId":105,"tags":{"url":"/admin/club","memory.rss":"936194048","memory.heapUsed":"120807576","memory.heapTotal":"144584704"},"startTime":1774686631329,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":474,"timestamp":7483988976,"id":108,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686631542,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":375,"timestamp":7483989551,"id":109,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686631543,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":480,"timestamp":7483991090,"id":110,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686631545,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":599,"timestamp":7483991671,"id":111,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686631545,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":386,"timestamp":7484575070,"id":112,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686632129,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":468,"timestamp":7484575576,"id":113,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686632129,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":919,"timestamp":7484577776,"id":114,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686632131,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":507,"timestamp":7484578844,"id":115,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686632132,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":6302,"timestamp":7484582643,"id":117,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686632136,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4932,"timestamp":7484589337,"id":118,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686632143,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":29878,"timestamp":7502344880,"id":120,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774686649898,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":487651,"timestamp":7502343397,"id":119,"tags":{"url":"/admin/club"},"startTime":1774686649897,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":12,"timestamp":7502831181,"id":121,"parentId":119,"tags":{"url":"/admin/club","memory.rss":"957095936","memory.heapUsed":"136677528","memory.heapTotal":"170627072"},"startTime":1774686650385,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":352,"timestamp":7503016451,"id":122,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686650570,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":348,"timestamp":7503016871,"id":123,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686650570,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":241,"timestamp":7503018090,"id":124,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686650572,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":193,"timestamp":7503018382,"id":125,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686650572,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":410,"timestamp":7503597454,"id":126,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686651151,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":347,"timestamp":7503597943,"id":127,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686651151,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":457,"timestamp":7503599682,"id":128,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686651153,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":319,"timestamp":7503600257,"id":129,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686651154,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":6323,"timestamp":7503602018,"id":131,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686651155,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":5475,"timestamp":7503608693,"id":132,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686651162,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":63989,"timestamp":7598574664,"id":134,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774686746128,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":560818,"timestamp":7598572599,"id":133,"tags":{"url":"/admin/club"},"startTime":1774686746126,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":12,"timestamp":7599133551,"id":135,"parentId":133,"tags":{"url":"/admin/club","memory.rss":"965648384","memory.heapUsed":"125357344","memory.heapTotal":"148774912"},"startTime":1774686746687,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":375,"timestamp":7599343876,"id":136,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686746897,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":249,"timestamp":7599344319,"id":137,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686746898,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":443,"timestamp":7599348677,"id":138,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686746902,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":242,"timestamp":7599349183,"id":139,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686746903,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":475,"timestamp":7599839312,"id":140,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686747393,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1066,"timestamp":7599839930,"id":141,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686747393,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":728,"timestamp":7599843040,"id":142,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686747397,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":721,"timestamp":7599844019,"id":143,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686747397,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":8726,"timestamp":7599848208,"id":145,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686747402,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":7949,"timestamp":7599857484,"id":146,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686747411,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":31214,"timestamp":7619378576,"id":148,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774686766932,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":565454,"timestamp":7619376323,"id":147,"tags":{"url":"/admin/club"},"startTime":1774686766930,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":13,"timestamp":7619941911,"id":149,"parentId":147,"tags":{"url":"/admin/club","memory.rss":"990846976","memory.heapUsed":"147980792","memory.heapTotal":"165244928"},"startTime":1774686767495,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":455,"timestamp":7620189769,"id":150,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686767743,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":335,"timestamp":7620190341,"id":151,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686767744,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":338,"timestamp":7620191590,"id":152,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686767745,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":322,"timestamp":7620191994,"id":153,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686767745,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3570,"timestamp":7620829574,"id":154,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686768383,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1142,"timestamp":7620833425,"id":155,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686768387,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1154,"timestamp":7620837795,"id":156,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686768391,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":997,"timestamp":7620839265,"id":157,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686768393,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":16212,"timestamp":7620843360,"id":159,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686768397,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":13267,"timestamp":7620864302,"id":160,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774686768418,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":20499,"timestamp":7676757486,"id":162,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774686824311,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":437958,"timestamp":7676756733,"id":161,"tags":{"url":"/admin/club"},"startTime":1774686824310,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":15,"timestamp":7677194833,"id":163,"parentId":161,"tags":{"url":"/admin/club","memory.rss":"972939264","memory.heapUsed":"125174592","memory.heapTotal":"149655552"},"startTime":1774686824748,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":431,"timestamp":7677548967,"id":164,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686825102,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":298,"timestamp":7677549488,"id":165,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686825103,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":269,"timestamp":7677550609,"id":166,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774686825104,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":248,"timestamp":7677550939,"id":167,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774686825104,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":911,"timestamp":7678019892,"id":168,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686825573,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":494,"timestamp":7678021018,"id":169,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686825574,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":561,"timestamp":7678026213,"id":170,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774686825580,"traceId":"73c54f99aab44d5e"}] -[{"name":"hot-reloader","duration":134,"timestamp":7932165282,"id":3,"tags":{"version":"16.1.6"},"startTime":1774687079719,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":161509,"timestamp":7932525417,"id":4,"tags":{"trigger":"middleware"},"startTime":1774687080079,"traceId":"73c54f99aab44d5e"}] -[{"name":"setup-dev-bundler","duration":1126233,"timestamp":7931873282,"id":2,"parentId":1,"tags":{},"startTime":1774687079427,"traceId":"73c54f99aab44d5e"},{"name":"start-dev-server","duration":2407842,"timestamp":7930791221,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"10629980160","memory.totalMem":"16408371200","memory.heapSizeLimit":"8254390272","memory.rss":"479465472","memory.heapTotal":"89591808","memory.heapUsed":"65917296"},"startTime":1774687078345,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":1543716,"timestamp":7933277297,"id":7,"tags":{"trigger":"/admin/club"},"startTime":1774687080831,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":2221554,"timestamp":7933266941,"id":5,"tags":{"url":"/admin/club"},"startTime":1774687080820,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":27,"timestamp":7935488684,"id":8,"parentId":5,"tags":{"url":"/admin/club","memory.rss":"811835392","memory.heapUsed":"97972648","memory.heapTotal":"120848384"},"startTime":1774687083042,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1657,"timestamp":7935720461,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774687083274,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":539,"timestamp":7935722447,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774687083276,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":366,"timestamp":7935724373,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774687083278,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":493,"timestamp":7935724825,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774687083278,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":298,"timestamp":7936238660,"id":13,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687083792,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":259,"timestamp":7936239045,"id":14,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687083792,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":303,"timestamp":7936240104,"id":15,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687083794,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":511,"timestamp":7936240472,"id":16,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687083794,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":24838,"timestamp":7936245604,"id":19,"tags":{"trigger":"/_not-found/page"},"startTime":1774687083799,"traceId":"73c54f99aab44d5e"}] -[{"name":"hot-reloader","duration":136,"timestamp":7964650479,"id":3,"tags":{"version":"16.1.6"},"startTime":1774687112204,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":106114,"timestamp":7964969712,"id":4,"tags":{"trigger":"middleware"},"startTime":1774687112523,"traceId":"73c54f99aab44d5e"}] -[{"name":"setup-dev-bundler","duration":829117,"timestamp":7964425641,"id":2,"parentId":1,"tags":{},"startTime":1774687111979,"traceId":"73c54f99aab44d5e"},{"name":"start-dev-server","duration":2096255,"timestamp":7963440530,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"10681208832","memory.totalMem":"16408371200","memory.heapSizeLimit":"8254390272","memory.rss":"437334016","memory.heapTotal":"89591808","memory.heapUsed":"65908592"},"startTime":1774687110995,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":1692380,"timestamp":7965678761,"id":7,"tags":{"trigger":"/admin/club"},"startTime":1774687113232,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":2357458,"timestamp":7965656419,"id":5,"tags":{"url":"/admin/club"},"startTime":1774687113210,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":22,"timestamp":7968014060,"id":8,"parentId":5,"tags":{"url":"/admin/club","memory.rss":"724697088","memory.heapUsed":"97870256","memory.heapTotal":"120848384"},"startTime":1774687115568,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1382,"timestamp":7968282977,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774687115836,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":348,"timestamp":7968284687,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774687115838,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":453,"timestamp":7968286286,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774687115840,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":616,"timestamp":7968286831,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774687115840,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":540,"timestamp":7968881152,"id":13,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687116435,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":681,"timestamp":7968881873,"id":14,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687116435,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":547,"timestamp":7968884445,"id":15,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687116438,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":884,"timestamp":7968885174,"id":16,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687116439,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":26504,"timestamp":7968891560,"id":19,"tags":{"trigger":"/_not-found/page"},"startTime":1774687116445,"traceId":"73c54f99aab44d5e"}] -[{"name":"ensure-page","duration":5353,"timestamp":7968919746,"id":20,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774687116473,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":32977,"timestamp":8035358299,"id":22,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774687182912,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":375770,"timestamp":8035357039,"id":21,"tags":{"url":"/admin/club"},"startTime":1774687182910,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":13,"timestamp":8035733095,"id":23,"parentId":21,"tags":{"url":"/admin/club","memory.rss":"932941824","memory.heapUsed":"102823152","memory.heapTotal":"121999360"},"startTime":1774687183287,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":341,"timestamp":8036124593,"id":24,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774687183678,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":272,"timestamp":8036125207,"id":25,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774687183679,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":297,"timestamp":8036126250,"id":26,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774687183680,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":711,"timestamp":8036126602,"id":27,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774687183680,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":344,"timestamp":8036641447,"id":28,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687184195,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":306,"timestamp":8036641993,"id":29,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687184195,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":277,"timestamp":8036643029,"id":30,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687184196,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":241,"timestamp":8036643359,"id":31,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774687184197,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":10286,"timestamp":8036646221,"id":33,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774687184200,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":7101,"timestamp":8036656852,"id":34,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774687184210,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":138869,"timestamp":8036768691,"id":35,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774626395674_logoClub.png&w=128&q=75"},"startTime":1774687184322,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":24,"timestamp":8036907834,"id":37,"parentId":35,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774626395674_logoClub.png&w=128&q=75","memory.rss":"940675072","memory.heapUsed":"106022176","memory.heapTotal":"123023360"},"startTime":1774687184461,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":39007,"timestamp":8036873653,"id":36,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774626670876_clubPhoto.jpg&w=128&q=75"},"startTime":1774687184427,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":17,"timestamp":8036913130,"id":38,"parentId":36,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774626670876_clubPhoto.jpg&w=128&q=75","memory.rss":"940675072","memory.heapUsed":"106081288","memory.heapTotal":"123023360"},"startTime":1774687184467,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":280047,"timestamp":8036644062,"id":32,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774687184198,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":16,"timestamp":8036924278,"id":39,"parentId":32,"tags":{"url":"/avatars/admin.jpg","memory.rss":"940675072","memory.heapUsed":"106177648","memory.heapTotal":"123023360"},"startTime":1774687184478,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":228000,"timestamp":8096050854,"id":40,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774687243900,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":6829,"timestamp":8096439127,"id":41,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774626395674_logoClub.png&w=128&q=75"},"startTime":1774687243993,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":13,"timestamp":8096446103,"id":43,"parentId":41,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774626395674_logoClub.png&w=128&q=75","memory.rss":"1075523584","memory.heapUsed":"106944320","memory.heapTotal":"123023360"},"startTime":1774687244000,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":6866,"timestamp":8096442169,"id":42,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774626670876_clubPhoto.jpg&w=128&q=75"},"startTime":1774687243996,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":12,"timestamp":8096449196,"id":44,"parentId":42,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774626670876_clubPhoto.jpg&w=128&q=75","memory.rss":"1075523584","memory.heapUsed":"106995920","memory.heapTotal":"123023360"},"startTime":1774687244003,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":206000,"timestamp":8141995913,"id":45,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774687289861,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":91000,"timestamp":8154115209,"id":46,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-preview.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774687301789,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":141000,"timestamp":8183512640,"id":47,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774687331236,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":71000,"timestamp":8188354593,"id":48,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/club-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774687336004,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":191000,"timestamp":8359307580,"id":49,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774687507145,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":49012,"timestamp":8407359381,"id":52,"tags":{"trigger":"/admin/teams"},"startTime":1774687554913,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":164343,"timestamp":8407355449,"id":50,"tags":{"url":"/admin/teams?_rsc=hkw9d"},"startTime":1774687554909,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":11,"timestamp":8407519920,"id":53,"parentId":50,"tags":{"url":"/admin/teams?_rsc=hkw9d","memory.rss":"1099657216","memory.heapUsed":"108362648","memory.heapTotal":"113270784"},"startTime":1774687555073,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":52091,"timestamp":8408420432,"id":56,"tags":{"trigger":"/admin/members"},"startTime":1774687555974,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":235181,"timestamp":8408416496,"id":54,"tags":{"url":"/admin/members?_rsc=elqic"},"startTime":1774687555970,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":49,"timestamp":8408651976,"id":57,"parentId":54,"tags":{"url":"/admin/members?_rsc=elqic","memory.rss":"1107951616","memory.heapUsed":"111340664","memory.heapTotal":"119771136"},"startTime":1774687556205,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":93000,"timestamp":8923551680,"id":58,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774688071227,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":30264,"timestamp":8942170631,"id":60,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774688089724,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":163228,"timestamp":8942167249,"id":59,"tags":{"url":"/admin/members?_rsc=3qvm5"},"startTime":1774688089721,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":15,"timestamp":8942330642,"id":61,"parentId":59,"tags":{"url":"/admin/members?_rsc=3qvm5","memory.rss":"1134034944","memory.heapUsed":"120421760","memory.heapTotal":"128479232"},"startTime":1774688089884,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":138768,"timestamp":8946364658,"id":64,"tags":{"trigger":"/admin/users"},"startTime":1774688093918,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":226449,"timestamp":8946362408,"id":62,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774688093916,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":24,"timestamp":8946588992,"id":65,"parentId":62,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"1151041536","memory.heapUsed":"106480176","memory.heapTotal":"120705024"},"startTime":1774688094142,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2997,"timestamp":8948177457,"id":67,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774688095731,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":76391,"timestamp":8948175992,"id":66,"tags":{"url":"/admin/members?_rsc=wkrq7"},"startTime":1774688095729,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":21,"timestamp":8948252607,"id":68,"parentId":66,"tags":{"url":"/admin/members?_rsc=wkrq7","memory.rss":"1151393792","memory.heapUsed":"107040752","memory.heapTotal":"120426496"},"startTime":1774688095806,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":375,"timestamp":8957474895,"id":69,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688105028,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":254,"timestamp":8957475337,"id":70,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688105029,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":298,"timestamp":8957476375,"id":71,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688105030,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":253,"timestamp":8957476728,"id":72,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688105030,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":5724,"timestamp":8957479490,"id":74,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774688105033,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4916,"timestamp":8957485618,"id":75,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774688105039,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":271,"timestamp":8960953079,"id":76,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688108507,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":218,"timestamp":8960953404,"id":77,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688108507,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":237,"timestamp":8960954244,"id":78,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688108508,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":203,"timestamp":8960954529,"id":79,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688108508,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4433,"timestamp":8960956331,"id":81,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774688108510,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":5696,"timestamp":8960961375,"id":82,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774688108515,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":328,"timestamp":8965417978,"id":83,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688112971,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":246,"timestamp":8965418366,"id":84,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688112972,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":406,"timestamp":8965419357,"id":85,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688112973,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":264,"timestamp":8965419821,"id":86,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688112973,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4184,"timestamp":8965420885,"id":88,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774688112974,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4222,"timestamp":8965425330,"id":89,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774688112979,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":91133,"timestamp":8965420324,"id":87,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774688112974,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":12,"timestamp":8965511581,"id":90,"parentId":87,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1154166784","memory.heapUsed":"102442960","memory.heapTotal":"109498368"},"startTime":1774688113065,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3676,"timestamp":8972495472,"id":92,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774688120049,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":78342,"timestamp":8972493334,"id":91,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774688120047,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":23,"timestamp":8972571898,"id":93,"parentId":91,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"1154932736","memory.heapUsed":"102993240","memory.heapTotal":"108187648"},"startTime":1774688120125,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":416,"timestamp":8982177565,"id":94,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688129731,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":394,"timestamp":8982178100,"id":95,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688129732,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":369,"timestamp":8982180087,"id":96,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688129734,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":239,"timestamp":8982180522,"id":97,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774688129734,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":6202,"timestamp":8982181703,"id":99,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774688129735,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":5236,"timestamp":8982188204,"id":100,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774688129742,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":99202,"timestamp":8982181029,"id":98,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774688129734,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":10,"timestamp":8982280329,"id":101,"parentId":98,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1156243456","memory.heapUsed":"104626944","memory.heapTotal":"110227456"},"startTime":1774688129834,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3547,"timestamp":9014103311,"id":103,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774688161657,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":73283,"timestamp":9014101794,"id":102,"tags":{"url":"/admin/members?_rsc=wkrq7"},"startTime":1774688161655,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":26,"timestamp":9014175332,"id":104,"parentId":102,"tags":{"url":"/admin/members?_rsc=wkrq7","memory.rss":"1137037312","memory.heapUsed":"105599288","memory.heapTotal":"109703168"},"startTime":1774688161729,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":100000,"timestamp":9557826846,"id":105,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774688705510,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":248000,"timestamp":9578918772,"id":106,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774688726749,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":8269,"timestamp":10614472811,"id":108,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774689762026,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":136399,"timestamp":10614471925,"id":107,"tags":{"url":"/admin/members"},"startTime":1774689762025,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":10614608398,"id":109,"parentId":107,"tags":{"url":"/admin/members","memory.rss":"1164902400","memory.heapUsed":"109945872","memory.heapTotal":"133570560"},"startTime":1774689762162,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":328,"timestamp":10614819620,"id":110,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774689762373,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":236,"timestamp":10614820012,"id":111,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774689762373,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":259,"timestamp":10614820857,"id":112,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774689762374,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":231,"timestamp":10614821167,"id":113,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774689762375,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":207,"timestamp":10615029180,"id":114,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774689762583,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":143,"timestamp":10615029427,"id":115,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774689762583,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":177,"timestamp":10615029972,"id":116,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774689762583,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":147,"timestamp":10615030186,"id":117,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774689762584,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2596,"timestamp":10615031595,"id":119,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774689762585,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2620,"timestamp":10615034361,"id":120,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774689762588,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1487,"timestamp":10815285702,"id":122,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774689962839,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":112000,"timestamp":10815202418,"id":123,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/members","isPageHidden":true},"startTime":1774689962881,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":49263,"timestamp":10815284923,"id":121,"tags":{"url":"/admin/members?_rsc=1gurf"},"startTime":1774689962838,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":10815334267,"id":124,"parentId":121,"tags":{"url":"/admin/members?_rsc=1gurf","memory.rss":"1193877504","memory.heapUsed":"106889128","memory.heapTotal":"112107520"},"startTime":1774689962888,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":13227,"timestamp":10905974451,"id":127,"tags":{"trigger":"/admin/members"},"startTime":1774690053528,"traceId":"73c54f99aab44d5e"}] -[{"name":"client-hmr-latency","duration":69000,"timestamp":10905911987,"id":128,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774690053594,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":69971,"timestamp":10905973227,"id":125,"tags":{"url":"/admin/members?_rsc=1gurf"},"startTime":1774690053527,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":10906043268,"id":129,"parentId":125,"tags":{"url":"/admin/members?_rsc=1gurf","memory.rss":"1213669376","memory.heapUsed":"115007616","memory.heapTotal":"120610816"},"startTime":1774690053597,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":59000,"timestamp":10914026545,"id":130,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774690061664,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":122000,"timestamp":10947965381,"id":131,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774690095671,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":92000,"timestamp":10996408934,"id":132,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774690144079,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":109000,"timestamp":11056107842,"id":133,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/members","isPageHidden":true},"startTime":1774690203798,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":60000,"timestamp":11084337728,"id":134,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774690231980,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":96000,"timestamp":11172123318,"id":135,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/layout.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774690319817,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":10269,"timestamp":11176201349,"id":137,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774690323755,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":143287,"timestamp":11176200202,"id":136,"tags":{"url":"/admin/members"},"startTime":1774690323754,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":11,"timestamp":11176343595,"id":138,"parentId":136,"tags":{"url":"/admin/members","memory.rss":"1228992512","memory.heapUsed":"117618616","memory.heapTotal":"138424320"},"startTime":1774690323897,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":679,"timestamp":11176573101,"id":139,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774690324127,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":357,"timestamp":11176573853,"id":140,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774690324127,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":492,"timestamp":11176575326,"id":141,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774690324129,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1002,"timestamp":11176575919,"id":142,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774690324129,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":324,"timestamp":11176799268,"id":143,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690324353,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":194,"timestamp":11176799656,"id":144,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690324353,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":221,"timestamp":11176800423,"id":145,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690324354,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":131,"timestamp":11176800683,"id":146,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690324354,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":7597,"timestamp":11176801788,"id":148,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774690324355,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2259,"timestamp":11176809525,"id":149,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774690324363,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":62241,"timestamp":11176801379,"id":147,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774690324355,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":11,"timestamp":11176863746,"id":150,"parentId":147,"tags":{"url":"/avatars/admin.jpg","memory.rss":"1238560768","memory.heapUsed":"120981008","memory.heapTotal":"138924032"},"startTime":1774690324417,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":14795,"timestamp":11180584739,"id":153,"tags":{"trigger":"/admin"},"startTime":1774690328138,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":52625,"timestamp":11180582553,"id":151,"tags":{"url":"/admin?_rsc=3qvm5"},"startTime":1774690328136,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11180635249,"id":154,"parentId":151,"tags":{"url":"/admin?_rsc=3qvm5","memory.rss":"1244528640","memory.heapUsed":"125059928","memory.heapTotal":"140718080"},"startTime":1774690328189,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":27439,"timestamp":11181692229,"id":157,"tags":{"trigger":"/admin/users"},"startTime":1774690329246,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":131225,"timestamp":11181690075,"id":155,"tags":{"url":"/admin/users?_rsc=1szk4"},"startTime":1774690329244,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":31,"timestamp":11181821550,"id":158,"parentId":155,"tags":{"url":"/admin/users?_rsc=1szk4","memory.rss":"1248915456","memory.heapUsed":"125401496","memory.heapTotal":"159916032"},"startTime":1774690329375,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":48454,"timestamp":11182689790,"id":160,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690330243,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":140153,"timestamp":11182687547,"id":159,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774690330241,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11182827775,"id":161,"parentId":159,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1258876928","memory.heapUsed":"139177984","memory.heapTotal":"166490112"},"startTime":1774690330381,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2227,"timestamp":11184492891,"id":163,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774690332046,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":30019,"timestamp":11184491934,"id":162,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774690332045,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11184522041,"id":164,"parentId":162,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"1251557376","memory.heapUsed":"122620872","memory.heapTotal":"161964032"},"startTime":1774690332075,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":215,"timestamp":11201441109,"id":165,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690348995,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":147,"timestamp":11201441366,"id":166,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690348995,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":172,"timestamp":11201441940,"id":167,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690348995,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":142,"timestamp":11201442146,"id":168,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690348996,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3030,"timestamp":11201443265,"id":170,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774690348997,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2782,"timestamp":11201446490,"id":171,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774690349000,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2207,"timestamp":11205553439,"id":173,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690353107,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":24939,"timestamp":11205552317,"id":172,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774690353106,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11205577324,"id":174,"parentId":172,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1247997952","memory.heapUsed":"120412264","memory.heapTotal":"125607936"},"startTime":1774690353131,"traceId":"73c54f99aab44d5e"},{"name":"compile-path","duration":31730,"timestamp":11216721070,"id":177,"tags":{"trigger":"/admin/news"},"startTime":1774690364275,"traceId":"73c54f99aab44d5e"}] -[{"name":"handle-request","duration":62460,"timestamp":11216719343,"id":175,"tags":{"url":"/admin/news?_rsc=hkw9d"},"startTime":1774690364273,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":7,"timestamp":11216781873,"id":178,"parentId":175,"tags":{"url":"/admin/news?_rsc=hkw9d","memory.rss":"1241153536","memory.heapUsed":"121933808","memory.heapTotal":"126078976"},"startTime":1774690364335,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":15706,"timestamp":11217976958,"id":180,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774690365530,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":87239,"timestamp":11217976438,"id":179,"tags":{"url":"/admin/teams?_rsc=1hodn"},"startTime":1774690365530,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":9,"timestamp":11218063775,"id":181,"parentId":179,"tags":{"url":"/admin/teams?_rsc=1hodn","memory.rss":"1253097472","memory.heapUsed":"130837352","memory.heapTotal":"142630912"},"startTime":1774690365617,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2036,"timestamp":11218771362,"id":183,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774690366325,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":29018,"timestamp":11218770382,"id":182,"tags":{"url":"/admin/members?_rsc=elqic"},"startTime":1774690366324,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":11,"timestamp":11218799504,"id":184,"parentId":182,"tags":{"url":"/admin/members?_rsc=elqic","memory.rss":"1249570816","memory.heapUsed":"126534520","memory.heapTotal":"138186752"},"startTime":1774690366353,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":74000,"timestamp":11304786799,"id":185,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774690452445,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":66000,"timestamp":11317151081,"id":186,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774690464801,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3056,"timestamp":11324408246,"id":188,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774690471962,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":38512,"timestamp":11324407121,"id":187,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774690471961,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11324445709,"id":189,"parentId":187,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"1264128000","memory.heapUsed":"126138232","memory.heapTotal":"130846720"},"startTime":1774690471999,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":16959,"timestamp":11327202282,"id":191,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690474756,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":76493,"timestamp":11327199944,"id":190,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774690474753,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":9,"timestamp":11327276527,"id":192,"parentId":190,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1272909824","memory.heapUsed":"134172024","memory.heapTotal":"146636800"},"startTime":1774690474830,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3111,"timestamp":11329716955,"id":194,"parentId":3,"tags":{"inputPage":"/admin/news/page"},"startTime":1774690477270,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":39451,"timestamp":11329714857,"id":193,"tags":{"url":"/admin/news?_rsc=hkw9d"},"startTime":1774690477268,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":7,"timestamp":11329754381,"id":195,"parentId":193,"tags":{"url":"/admin/news?_rsc=hkw9d","memory.rss":"1268285440","memory.heapUsed":"129467920","memory.heapTotal":"141430784"},"startTime":1774690477308,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2642,"timestamp":11330843588,"id":197,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774690478397,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":34724,"timestamp":11330842105,"id":196,"tags":{"url":"/admin/teams?_rsc=1hodn"},"startTime":1774690478396,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11330876971,"id":198,"parentId":196,"tags":{"url":"/admin/teams?_rsc=1hodn","memory.rss":"1270120448","memory.heapUsed":"128559432","memory.heapTotal":"141430784"},"startTime":1774690478430,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":9471,"timestamp":11332871659,"id":200,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774690480425,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":64426,"timestamp":11332870789,"id":199,"tags":{"url":"/admin/members?_rsc=elqic"},"startTime":1774690480424,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":6,"timestamp":11332935279,"id":201,"parentId":199,"tags":{"url":"/admin/members?_rsc=elqic","memory.rss":"1273950208","memory.heapUsed":"135088352","memory.heapTotal":"153911296"},"startTime":1774690480489,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":244,"timestamp":11345404876,"id":202,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690492958,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":172,"timestamp":11345405167,"id":203,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690492959,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":327,"timestamp":11345405822,"id":204,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690492959,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":224,"timestamp":11345406203,"id":205,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690492960,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":6406,"timestamp":11345408108,"id":207,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774690492962,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3310,"timestamp":11345414722,"id":208,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774690492968,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1424,"timestamp":11351266553,"id":210,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774690498820,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":22564,"timestamp":11351265908,"id":209,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774690498819,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":10,"timestamp":11351288578,"id":211,"parentId":209,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"1279692800","memory.heapUsed":"137394568","memory.heapTotal":"145235968"},"startTime":1774690498842,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":62000,"timestamp":11361462448,"id":212,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1774690509105,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":67000,"timestamp":11364650139,"id":213,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1774690512301,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3008,"timestamp":11367417020,"id":215,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690514970,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":46398,"timestamp":11367416377,"id":214,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774690514970,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":31,"timestamp":11367463069,"id":216,"parentId":214,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1285885952","memory.heapUsed":"137738928","memory.heapTotal":"141828096"},"startTime":1774690515017,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":64000,"timestamp":11373030453,"id":217,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774690520679,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":59000,"timestamp":11377549959,"id":218,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/club/page.tsx [app-client]"],"page":"/admin/club","isPageHidden":false},"startTime":1774690525190,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1035,"timestamp":11380469920,"id":220,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774690528023,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":27783,"timestamp":11380469502,"id":219,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774690528023,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11380497361,"id":221,"parentId":219,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"1300611072","memory.heapUsed":"139116584","memory.heapTotal":"142614528"},"startTime":1774690528051,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2447,"timestamp":11381236683,"id":223,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690528790,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":38360,"timestamp":11381235581,"id":222,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774690528789,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":20,"timestamp":11381274159,"id":224,"parentId":222,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1300742144","memory.heapUsed":"139453840","memory.heapTotal":"143925248"},"startTime":1774690528828,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4065,"timestamp":11382883724,"id":226,"parentId":3,"tags":{"inputPage":"/admin/news/page"},"startTime":1774690530437,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":44512,"timestamp":11382882235,"id":225,"tags":{"url":"/admin/news?_rsc=hkw9d"},"startTime":1774690530436,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11382926825,"id":227,"parentId":225,"tags":{"url":"/admin/news?_rsc=hkw9d","memory.rss":"1301135360","memory.heapUsed":"140875416","memory.heapTotal":"148324352"},"startTime":1774690530480,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3861,"timestamp":11384403565,"id":229,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774690531957,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":35034,"timestamp":11384402261,"id":228,"tags":{"url":"/admin/teams?_rsc=1hodn"},"startTime":1774690531956,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11384437377,"id":230,"parentId":228,"tags":{"url":"/admin/teams?_rsc=1hodn","memory.rss":"1301135360","memory.heapUsed":"141616144","memory.heapTotal":"148586496"},"startTime":1774690531991,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1498,"timestamp":11385048383,"id":232,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774690532602,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":39227,"timestamp":11385047696,"id":231,"tags":{"url":"/admin/members?_rsc=elqic"},"startTime":1774690532601,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":13,"timestamp":11385087085,"id":233,"parentId":231,"tags":{"url":"/admin/members?_rsc=elqic","memory.rss":"1301135360","memory.heapUsed":"142519856","memory.heapTotal":"148848640"},"startTime":1774690532641,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":919,"timestamp":11387162982,"id":235,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774690534716,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":18128,"timestamp":11387162610,"id":234,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774690534716,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11387180820,"id":236,"parentId":234,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"1298358272","memory.heapUsed":"143354008","memory.heapTotal":"149635072"},"startTime":1774690534734,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2381,"timestamp":11388482159,"id":238,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774690536036,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":47292,"timestamp":11388480831,"id":237,"tags":{"url":"/admin/members?_rsc=wkrq7"},"startTime":1774690536034,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":10,"timestamp":11388528229,"id":239,"parentId":237,"tags":{"url":"/admin/members?_rsc=wkrq7","memory.rss":"1296846848","memory.heapUsed":"135676488","memory.heapTotal":"151908352"},"startTime":1774690536082,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3379,"timestamp":11389840444,"id":241,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690537394,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":31702,"timestamp":11389838810,"id":240,"tags":{"url":"/admin/club?_rsc=3qvm5"},"startTime":1774690537392,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11389870604,"id":242,"parentId":240,"tags":{"url":"/admin/club?_rsc=3qvm5","memory.rss":"1278603264","memory.heapUsed":"134912760","memory.heapTotal":"151908352"},"startTime":1774690537424,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1795,"timestamp":11390942478,"id":244,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774690538496,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":32797,"timestamp":11390941500,"id":243,"tags":{"url":"/admin/members?_rsc=hkw9d"},"startTime":1774690538495,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":10,"timestamp":11390974395,"id":245,"parentId":243,"tags":{"url":"/admin/members?_rsc=hkw9d","memory.rss":"1278603264","memory.heapUsed":"137131960","memory.heapTotal":"151908352"},"startTime":1774690538528,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1571,"timestamp":11392030594,"id":247,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690539584,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":41624,"timestamp":11392029980,"id":246,"tags":{"url":"/admin/club?_rsc=3qvm5"},"startTime":1774690539583,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":13,"timestamp":11392071725,"id":248,"parentId":246,"tags":{"url":"/admin/club?_rsc=3qvm5","memory.rss":"1279127552","memory.heapUsed":"136726736","memory.heapTotal":"151908352"},"startTime":1774690539625,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1170,"timestamp":11395481544,"id":250,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690543035,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":26474,"timestamp":11395480916,"id":249,"tags":{"url":"/admin/club?_rsc=hkw9d"},"startTime":1774690543034,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":8,"timestamp":11395507466,"id":251,"parentId":249,"tags":{"url":"/admin/club?_rsc=hkw9d","memory.rss":"1282756608","memory.heapUsed":"134127504","memory.heapTotal":"141766656"},"startTime":1774690543061,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":3252,"timestamp":11397237414,"id":253,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774690544791,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":47043,"timestamp":11397235659,"id":252,"tags":{"url":"/admin/users?_rsc=hkw9d"},"startTime":1774690544789,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":7,"timestamp":11397282775,"id":254,"parentId":252,"tags":{"url":"/admin/users?_rsc=hkw9d","memory.rss":"1261797376","memory.heapUsed":"133503968","memory.heapTotal":"139931648"},"startTime":1774690544836,"traceId":"73c54f99aab44d5e"},{"name":"client-hmr-latency","duration":49000,"timestamp":11409433579,"id":255,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/users/page.tsx [app-client]"],"page":"/admin/users","isPageHidden":false},"startTime":1774690557065,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1664,"timestamp":11412696648,"id":257,"parentId":3,"tags":{"inputPage":"/admin/club/page"},"startTime":1774690560250,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":35908,"timestamp":11412695638,"id":256,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774690560249,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":9,"timestamp":11412731644,"id":258,"parentId":256,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1281720320","memory.heapUsed":"134213048","memory.heapTotal":"139407360"},"startTime":1774690560285,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":4039,"timestamp":11413935575,"id":260,"parentId":3,"tags":{"inputPage":"/admin/news/page"},"startTime":1774690561489,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":44775,"timestamp":11413933901,"id":259,"tags":{"url":"/admin/news?_rsc=hkw9d"},"startTime":1774690561487,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":9,"timestamp":11413978759,"id":261,"parentId":259,"tags":{"url":"/admin/news?_rsc=hkw9d","memory.rss":"1282113536","memory.heapUsed":"135105368","memory.heapTotal":"139407360"},"startTime":1774690561532,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2232,"timestamp":11414910950,"id":263,"parentId":3,"tags":{"inputPage":"/admin/teams/page"},"startTime":1774690562464,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":33377,"timestamp":11414909710,"id":262,"tags":{"url":"/admin/teams?_rsc=1hodn"},"startTime":1774690562463,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":9,"timestamp":11414943174,"id":264,"parentId":262,"tags":{"url":"/admin/teams?_rsc=1hodn","memory.rss":"1282506752","memory.heapUsed":"135415104","memory.heapTotal":"142815232"},"startTime":1774690562497,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2802,"timestamp":11415997484,"id":266,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774690563551,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":43342,"timestamp":11415996189,"id":265,"tags":{"url":"/admin/members?_rsc=elqic"},"startTime":1774690563550,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":11,"timestamp":11416039631,"id":267,"parentId":265,"tags":{"url":"/admin/members?_rsc=elqic","memory.rss":"1283686400","memory.heapUsed":"136184720","memory.heapTotal":"143077376"},"startTime":1774690563593,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":26280,"timestamp":11417336899,"id":269,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774690564890,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":153425,"timestamp":11417333831,"id":268,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774690564887,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":9,"timestamp":11417487352,"id":270,"parentId":268,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"1291423744","memory.heapUsed":"142079008","memory.heapTotal":"151863296"},"startTime":1774690565041,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":1321,"timestamp":11418404351,"id":272,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774690565958,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":26866,"timestamp":11418403756,"id":271,"tags":{"url":"/admin/members?_rsc=wkrq7"},"startTime":1774690565957,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":9,"timestamp":11418430715,"id":273,"parentId":271,"tags":{"url":"/admin/members?_rsc=wkrq7","memory.rss":"1297584128","memory.heapUsed":"142670496","memory.heapTotal":"162611200"},"startTime":1774690565984,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":2249,"timestamp":11419481301,"id":275,"parentId":3,"tags":{"inputPage":"/admin/users/page"},"startTime":1774690567035,"traceId":"73c54f99aab44d5e"},{"name":"handle-request","duration":38728,"timestamp":11419480146,"id":274,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774690567034,"traceId":"73c54f99aab44d5e"},{"name":"memory-usage","duration":14,"timestamp":11419519109,"id":276,"parentId":274,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"1272393728","memory.heapUsed":"139800376","memory.heapTotal":"160952320"},"startTime":1774690567073,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":279,"timestamp":11439968729,"id":277,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690587522,"traceId":"73c54f99aab44d5e"},{"name":"ensure-page","duration":209,"timestamp":11439969062,"id":278,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774690587523,"traceId":"73c54f99aab44d5e"}] -[{"name":"hot-reloader","duration":118,"timestamp":12562732586,"id":3,"tags":{"version":"16.1.6"},"startTime":1774691710286,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":45578,"timestamp":12562920184,"id":4,"tags":{"trigger":"middleware"},"startTime":1774691710474,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"setup-dev-bundler","duration":423770,"timestamp":12562619961,"id":2,"parentId":1,"tags":{},"startTime":1774691710173,"traceId":"fd2465cb9dcc0c76"},{"name":"start-dev-server","duration":1085064,"timestamp":12562038466,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"8258359296","memory.totalMem":"16408371200","memory.heapSizeLimit":"8254390272","memory.rss":"452464640","memory.heapTotal":"89591808","memory.heapUsed":"65626920"},"startTime":1774691709592,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":1043371,"timestamp":12564175471,"id":7,"tags":{"trigger":"/admin/users"},"startTime":1774691711729,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"handle-request","duration":1567793,"timestamp":12564166560,"id":5,"tags":{"url":"/admin/users"},"startTime":1774691711720,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":27,"timestamp":12565734540,"id":8,"parentId":5,"tags":{"url":"/admin/users","memory.rss":"715698176","memory.heapUsed":"97872232","memory.heapTotal":"121044992"},"startTime":1774691713288,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":1329,"timestamp":12565964140,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774691713518,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":251,"timestamp":12565965689,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774691713519,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":239,"timestamp":12565966759,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774691713520,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":294,"timestamp":12565967070,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774691713521,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":229,"timestamp":12566268606,"id":13,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774691713822,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":305,"timestamp":12566268902,"id":14,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774691713822,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":963,"timestamp":12566271148,"id":15,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774691713825,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":1123,"timestamp":12566272331,"id":16,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774691713826,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":16720,"timestamp":12566277247,"id":19,"tags":{"trigger":"/_not-found/page"},"startTime":1774691713831,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"ensure-page","duration":2724,"timestamp":12566294981,"id":20,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774691713848,"traceId":"fd2465cb9dcc0c76"},{"name":"client-hmr-latency","duration":139000,"timestamp":12871314752,"id":21,"parentId":3,"tags":{"updatedModules":[],"page":"/admin/users","isPageHidden":true},"startTime":1774692019037,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":204440,"timestamp":12908144542,"id":24,"tags":{"trigger":"/admin/members"},"startTime":1774692055698,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"compile-path","duration":121973,"timestamp":12909203829,"id":26,"tags":{"trigger":"/_error"},"startTime":1774692056757,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"handle-request","duration":1354385,"timestamp":12908140103,"id":22,"tags":{"url":"/admin/members?_rsc=wkrq7"},"startTime":1774692055694,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":3,"timestamp":12909494584,"id":27,"parentId":22,"tags":{"url":"/admin/members?_rsc=wkrq7","memory.rss":"1325993984","memory.heapUsed":"173399512","memory.heapTotal":"200826880"},"startTime":1774692057048,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":1291,"timestamp":12909509641,"id":29,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774692057063,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":2925,"timestamp":12910194216,"id":30,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1774692057748,"traceId":"fd2465cb9dcc0c76"},{"name":"handle-request","duration":700396,"timestamp":12909508774,"id":28,"tags":{"url":"/admin/members"},"startTime":1774692057062,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":7,"timestamp":12910209277,"id":31,"parentId":28,"tags":{"url":"/admin/members","memory.rss":"1406590976","memory.heapUsed":"253224016","memory.heapTotal":"281612288"},"startTime":1774692057763,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":470,"timestamp":12910465596,"id":32,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774692058019,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":168,"timestamp":12910466122,"id":33,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774692058020,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":182,"timestamp":12910466783,"id":34,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774692058020,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":149,"timestamp":12910467012,"id":35,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774692058020,"traceId":"fd2465cb9dcc0c76"},{"name":"navigation-to-hydration","duration":972000,"timestamp":12909497072,"id":36,"parentId":3,"tags":{"pathname":"/admin/members","query":""},"startTime":1774692058024,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":82336,"timestamp":13255385999,"id":39,"tags":{"trigger":"/admin/members"},"startTime":1774692402940,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"handle-request","duration":680231,"timestamp":13255382840,"id":37,"tags":{"url":"/admin/members"},"startTime":1774692402936,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":10,"timestamp":13256063311,"id":40,"parentId":37,"tags":{"url":"/admin/members","memory.rss":"1346711552","memory.heapUsed":"139953472","memory.heapTotal":"162037760"},"startTime":1774692403617,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":1393,"timestamp":13256511248,"id":41,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774692404065,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":1921,"timestamp":13256512875,"id":42,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774692404066,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":739,"timestamp":13256517594,"id":43,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774692404071,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":475,"timestamp":13256518490,"id":44,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774692404072,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":474,"timestamp":13256997092,"id":45,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774692404551,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":266,"timestamp":13256997632,"id":46,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774692404551,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":431,"timestamp":13256999094,"id":47,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774692404553,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":370,"timestamp":13256999609,"id":48,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774692404553,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":13371,"timestamp":13257003237,"id":50,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774692404557,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":3209,"timestamp":13257016833,"id":51,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774692404570,"traceId":"fd2465cb9dcc0c76"},{"name":"client-hmr-latency","duration":64000,"timestamp":13751161133,"id":52,"parentId":3,"tags":{"updatedModules":["[project]/src/app/admin/members/page.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774692898809,"traceId":"fd2465cb9dcc0c76"},{"name":"handle-request","duration":27457,"timestamp":13866353472,"id":53,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774693013872_1734616916045.jpeg&w=128&q=75"},"startTime":1774693013907,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":6,"timestamp":13866381070,"id":54,"parentId":53,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774693013872_1734616916045.jpeg&w=128&q=75","memory.rss":"1376423936","memory.heapUsed":"137934464","memory.heapTotal":"143257600"},"startTime":1774693013935,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":12919,"timestamp":14097693797,"id":56,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774693245247,"traceId":"fd2465cb9dcc0c76"},{"name":"handle-request","duration":249110,"timestamp":14097692899,"id":55,"tags":{"url":"/admin/members"},"startTime":1774693245246,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":5,"timestamp":14097942115,"id":57,"parentId":55,"tags":{"url":"/admin/members","memory.rss":"1392402432","memory.heapUsed":"148258808","memory.heapTotal":"173809664"},"startTime":1774693245496,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":307,"timestamp":14098124301,"id":58,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774693245678,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":300,"timestamp":14098124696,"id":59,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774693245678,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":476,"timestamp":14098125976,"id":60,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774693245679,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":153,"timestamp":14098126501,"id":61,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774693245680,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":465,"timestamp":14098344093,"id":62,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774693245898,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":312,"timestamp":14098344659,"id":63,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774693245898,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":234,"timestamp":14098345726,"id":64,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774693245899,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":218,"timestamp":14098346010,"id":65,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774693245899,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":3841,"timestamp":14098348298,"id":67,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774693245902,"traceId":"fd2465cb9dcc0c76"},{"name":"ensure-page","duration":5429,"timestamp":14098352364,"id":68,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774693245906,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":50233,"timestamp":14108510589,"id":71,"tags":{"trigger":"/admin/users"},"startTime":1774693256064,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"handle-request","duration":142950,"timestamp":14108508429,"id":69,"tags":{"url":"/admin/users?_rsc=3qvm5"},"startTime":1774693256062,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":6,"timestamp":14108651501,"id":72,"parentId":69,"tags":{"url":"/admin/users?_rsc=3qvm5","memory.rss":"1401176064","memory.heapUsed":"155073168","memory.heapTotal":"166531072"},"startTime":1774693256205,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":38505,"timestamp":14109839553,"id":75,"tags":{"trigger":"/admin/club"},"startTime":1774693257393,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"handle-request","duration":78663,"timestamp":14109836936,"id":73,"tags":{"url":"/admin/club?_rsc=wkrq7"},"startTime":1774693257390,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":5,"timestamp":14109915710,"id":76,"parentId":73,"tags":{"url":"/admin/club?_rsc=wkrq7","memory.rss":"1414524928","memory.heapUsed":"155774608","memory.heapTotal":"168837120"},"startTime":1774693257469,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":23423,"timestamp":14133239754,"id":79,"tags":{"trigger":"/admin/news"},"startTime":1774693280793,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"handle-request","duration":57831,"timestamp":14133238232,"id":77,"tags":{"url":"/admin/news?_rsc=hkw9d"},"startTime":1774693280792,"traceId":"fd2465cb9dcc0c76"},{"name":"memory-usage","duration":6,"timestamp":14133296176,"id":80,"parentId":77,"tags":{"url":"/admin/news?_rsc=hkw9d","memory.rss":"1405087744","memory.heapUsed":"148290976","memory.heapTotal":"170684416"},"startTime":1774693280850,"traceId":"fd2465cb9dcc0c76"},{"name":"compile-path","duration":18833,"timestamp":14134358702,"id":83,"tags":{"trigger":"/admin/teams"},"startTime":1774693281912,"traceId":"fd2465cb9dcc0c76"}] -[{"name":"hot-reloader","duration":62,"timestamp":16291658177,"id":3,"tags":{"version":"16.1.6"},"startTime":1774695439212,"traceId":"46be645542a341e5"},{"name":"compile-path","duration":34811,"timestamp":16291804500,"id":4,"tags":{"trigger":"middleware"},"startTime":1774695439358,"traceId":"46be645542a341e5"}] -[{"name":"setup-dev-bundler","duration":353105,"timestamp":16291559810,"id":2,"parentId":1,"tags":{},"startTime":1774695439113,"traceId":"46be645542a341e5"},{"name":"start-dev-server","duration":900847,"timestamp":16291100882,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7715553280","memory.totalMem":"16408371200","memory.heapSizeLimit":"8254390272","memory.rss":"470634496","memory.heapTotal":"89853952","memory.heapUsed":"65657200"},"startTime":1774695438655,"traceId":"46be645542a341e5"},{"name":"compile-path","duration":182189,"timestamp":16292077725,"id":7,"tags":{"trigger":"/admin/members"},"startTime":1774695439631,"traceId":"46be645542a341e5"}] -[{"name":"handle-request","duration":583464,"timestamp":16292068272,"id":5,"tags":{"url":"/admin/members"},"startTime":1774695439622,"traceId":"46be645542a341e5"},{"name":"memory-usage","duration":10,"timestamp":16292651864,"id":8,"parentId":5,"tags":{"url":"/admin/members","memory.rss":"645750784","memory.heapUsed":"98196320","memory.heapTotal":"120905728"},"startTime":1774695440205,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":1371,"timestamp":16292856087,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774695440410,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":330,"timestamp":16292857784,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774695440411,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":265,"timestamp":16292859020,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774695440412,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":684,"timestamp":16292859345,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774695440413,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":290,"timestamp":16293087504,"id":13,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695440641,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":136,"timestamp":16293087839,"id":14,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695440641,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":145,"timestamp":16293088375,"id":15,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695440642,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":277,"timestamp":16293088555,"id":16,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695440642,"traceId":"46be645542a341e5"},{"name":"compile-path","duration":15463,"timestamp":16293091085,"id":19,"tags":{"trigger":"/_not-found/page"},"startTime":1774695440645,"traceId":"46be645542a341e5"}] -[{"name":"ensure-page","duration":4218,"timestamp":16293107754,"id":20,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774695440661,"traceId":"46be645542a341e5"},{"name":"compile-path","duration":19930,"timestamp":16353454125,"id":23,"tags":{"trigger":"/admin/club"},"startTime":1774695501008,"traceId":"46be645542a341e5"}] -[{"name":"hot-reloader","duration":99,"timestamp":16533089469,"id":3,"tags":{"version":"16.1.6"},"startTime":1774695680643,"traceId":"46be645542a341e5"},{"name":"compile-path","duration":255718,"timestamp":16533460677,"id":4,"tags":{"trigger":"middleware"},"startTime":1774695681014,"traceId":"46be645542a341e5"}] -[{"name":"setup-dev-bundler","duration":827096,"timestamp":16532976667,"id":2,"parentId":1,"tags":{},"startTime":1774695680530,"traceId":"46be645542a341e5"},{"name":"start-dev-server","duration":1548747,"timestamp":16532383054,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7895523328","memory.totalMem":"16408371200","memory.heapSizeLimit":"8254390272","memory.rss":"452915200","memory.heapTotal":"89853952","memory.heapUsed":"65628504"},"startTime":1774695679937,"traceId":"46be645542a341e5"},{"name":"compile-path","duration":1235929,"timestamp":16533992486,"id":7,"tags":{"trigger":"/admin/club"},"startTime":1774695681546,"traceId":"46be645542a341e5"}] -[{"name":"handle-request","duration":1616557,"timestamp":16533985085,"id":5,"tags":{"url":"/admin/club"},"startTime":1774695681539,"traceId":"46be645542a341e5"},{"name":"memory-usage","duration":14,"timestamp":16535601752,"id":8,"parentId":5,"tags":{"url":"/admin/club","memory.rss":"825065472","memory.heapUsed":"98036544","memory.heapTotal":"121372672"},"startTime":1774695683155,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":780,"timestamp":16535778473,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774695683332,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":196,"timestamp":16535779410,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774695683333,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":211,"timestamp":16535780442,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774695683334,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":252,"timestamp":16535780702,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774695683334,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":211,"timestamp":16536040372,"id":13,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695683594,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":161,"timestamp":16536040632,"id":14,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695683594,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":279,"timestamp":16536041839,"id":15,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695683595,"traceId":"46be645542a341e5"},{"name":"ensure-page","duration":350,"timestamp":16536042165,"id":16,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695683596,"traceId":"46be645542a341e5"},{"name":"compile-path","duration":22399,"timestamp":16536045176,"id":19,"tags":{"trigger":"/_not-found/page"},"startTime":1774695683599,"traceId":"46be645542a341e5"}] -[{"name":"ensure-page","duration":2333,"timestamp":16536068406,"id":20,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774695683622,"traceId":"46be645542a341e5"},{"name":"compile-path","duration":24560,"timestamp":16550463390,"id":23,"tags":{"trigger":"/admin/members"},"startTime":1774695698017,"traceId":"46be645542a341e5"}] -[{"name":"hot-reloader","duration":76,"timestamp":16568307526,"id":3,"tags":{"version":"16.1.6"},"startTime":1774695715861,"traceId":"6da39e1a99c47111"},{"name":"compile-path","duration":56952,"timestamp":16568503848,"id":4,"tags":{"trigger":"middleware"},"startTime":1774695716057,"traceId":"6da39e1a99c47111"}] -[{"name":"setup-dev-bundler","duration":461646,"timestamp":16568191776,"id":2,"parentId":1,"tags":{},"startTime":1774695715745,"traceId":"6da39e1a99c47111"},{"name":"start-dev-server","duration":1144264,"timestamp":16567596962,"id":1,"tags":{"cpus":"8","platform":"linux","memory.freeMem":"7828803584","memory.totalMem":"16408371200","memory.heapSizeLimit":"8254390272","memory.rss":"443613184","memory.heapTotal":"89853952","memory.heapUsed":"65933144"},"startTime":1774695715151,"traceId":"6da39e1a99c47111"},{"name":"compile-path","duration":239556,"timestamp":16568796075,"id":7,"tags":{"trigger":"/admin/members"},"startTime":1774695716350,"traceId":"6da39e1a99c47111"}] -[{"name":"handle-request","duration":869827,"timestamp":16568789023,"id":5,"tags":{"url":"/admin/members"},"startTime":1774695716342,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":33,"timestamp":16569659255,"id":8,"parentId":5,"tags":{"url":"/admin/members","memory.rss":"622342144","memory.heapUsed":"98204264","memory.heapTotal":"120905728"},"startTime":1774695717213,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":2309,"timestamp":16569976826,"id":9,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774695717530,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":1129,"timestamp":16569979704,"id":10,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774695717533,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":496,"timestamp":16569983063,"id":11,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774695717537,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":1604,"timestamp":16569983682,"id":12,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774695717537,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":358,"timestamp":16570284256,"id":13,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695717838,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":231,"timestamp":16570284683,"id":14,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695717838,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":371,"timestamp":16570285599,"id":15,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695717839,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":358,"timestamp":16570286040,"id":16,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774695717839,"traceId":"6da39e1a99c47111"},{"name":"compile-path","duration":40754,"timestamp":16570289147,"id":19,"tags":{"trigger":"/_not-found/page"},"startTime":1774695717843,"traceId":"6da39e1a99c47111"}] -[{"name":"ensure-page","duration":3599,"timestamp":16570337243,"id":20,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774695717891,"traceId":"6da39e1a99c47111"},{"name":"handle-request","duration":179605,"timestamp":16570287245,"id":17,"tags":{"url":"/avatars/admin.jpg"},"startTime":1774695717841,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":10,"timestamp":16570466988,"id":21,"parentId":17,"tags":{"url":"/avatars/admin.jpg","memory.rss":"760217600","memory.heapUsed":"100107344","memory.heapTotal":"131670016"},"startTime":1774695718020,"traceId":"6da39e1a99c47111"},{"name":"handle-request","duration":24425,"timestamp":16574544332,"id":22,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774693491109_1734616916045.jpeg&w=128&q=75"},"startTime":1774695722098,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":7,"timestamp":16574568853,"id":23,"parentId":22,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774693491109_1734616916045.jpeg&w=128&q=75","memory.rss":"854237184","memory.heapUsed":"101696152","memory.heapTotal":"131670016"},"startTime":1774695722122,"traceId":"6da39e1a99c47111"},{"name":"handle-request","duration":5525,"timestamp":16587728060,"id":24,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774695735228_1734616916045.jpeg&w=128&q=75"},"startTime":1774695735282,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":8,"timestamp":16587733721,"id":25,"parentId":24,"tags":{"url":"/_next/image?url=http%3A%2F%2Flocalhost%3A5000%2Fuploads%2F1774695735228_1734616916045.jpeg&w=128&q=75","memory.rss":"784056320","memory.heapUsed":"93052520","memory.heapTotal":"98664448"},"startTime":1774695735287,"traceId":"6da39e1a99c47111"},{"name":"client-hmr-latency","duration":700000,"timestamp":16919290951,"id":26,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/members-form.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774696067570,"traceId":"6da39e1a99c47111"},{"name":"client-hmr-latency","duration":163000,"timestamp":17259940563,"id":27,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/members-form.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774696407686,"traceId":"6da39e1a99c47111"},{"name":"compile-path","duration":40725,"timestamp":17323896437,"id":30,"tags":{"trigger":"/admin/club"},"startTime":1774696471450,"traceId":"6da39e1a99c47111"}] -[{"name":"handle-request","duration":85122,"timestamp":17323895122,"id":28,"tags":{"url":"/admin/club?_rsc=1ng39"},"startTime":1774696471449,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":8,"timestamp":17323980321,"id":31,"parentId":28,"tags":{"url":"/admin/club?_rsc=1ng39","memory.rss":"889827328","memory.heapUsed":"95478792","memory.heapTotal":"99397632"},"startTime":1774696471534,"traceId":"6da39e1a99c47111"},{"name":"client-hmr-latency","duration":82000,"timestamp":17554459895,"id":32,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/members-form.tsx [app-client]"],"page":"/admin/club","isPageHidden":true},"startTime":1774696702123,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":12258,"timestamp":17564703566,"id":34,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774696712257,"traceId":"6da39e1a99c47111"},{"name":"handle-request","duration":84435,"timestamp":17564702625,"id":33,"tags":{"url":"/admin/members?_rsc=hkw9d"},"startTime":1774696712256,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":7,"timestamp":17564787151,"id":35,"parentId":33,"tags":{"url":"/admin/members?_rsc=hkw9d","memory.rss":"902520832","memory.heapUsed":"103792608","memory.heapTotal":"108163072"},"startTime":1774696712341,"traceId":"6da39e1a99c47111"},{"name":"client-hmr-latency","duration":64000,"timestamp":17759230320,"id":36,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/members-form.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774696906878,"traceId":"6da39e1a99c47111"},{"name":"client-hmr-latency","duration":117000,"timestamp":17835421194,"id":37,"parentId":3,"tags":{"updatedModules":["[project]/src/components/dashboard/admin/members-form.tsx [app-client]"],"page":"/admin/members","isPageHidden":true},"startTime":1774696983119,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":9573,"timestamp":17855368304,"id":39,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774697002922,"traceId":"6da39e1a99c47111"},{"name":"handle-request","duration":145431,"timestamp":17855367174,"id":38,"tags":{"url":"/admin/members"},"startTime":1774697002921,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":7,"timestamp":17855512703,"id":40,"parentId":38,"tags":{"url":"/admin/members","memory.rss":"909287424","memory.heapUsed":"107271696","memory.heapTotal":"126181376"},"startTime":1774697003066,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":241,"timestamp":17855709853,"id":41,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774697003263,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":163,"timestamp":17855710148,"id":42,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774697003264,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":221,"timestamp":17855712207,"id":43,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774697003266,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":147,"timestamp":17855712467,"id":44,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774697003266,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":528,"timestamp":17855951962,"id":45,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774697003505,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":253,"timestamp":17855952560,"id":46,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774697003506,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":189,"timestamp":17855953455,"id":47,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774697003507,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":156,"timestamp":17855953681,"id":48,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774697003507,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":3057,"timestamp":17855954643,"id":50,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774697003508,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":2361,"timestamp":17855957934,"id":51,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774697003511,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":1060,"timestamp":17953029700,"id":52,"parentId":3,"tags":{"inputPage":"/api/memberSeasons"},"startTime":1774697100583,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":905,"timestamp":17953030949,"id":53,"parentId":3,"tags":{"inputPage":"/api/memberSeasons"},"startTime":1774697100584,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":641,"timestamp":17953034289,"id":54,"parentId":3,"tags":{"inputPage":"/api/memberSeasons"},"startTime":1774697100588,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":658,"timestamp":17953035079,"id":55,"parentId":3,"tags":{"inputPage":"/api/memberSeasons"},"startTime":1774697100589,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":5278,"timestamp":17953039669,"id":57,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774697100593,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":3538,"timestamp":17953045255,"id":58,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774697100599,"traceId":"6da39e1a99c47111"},{"name":"handle-request","duration":69042,"timestamp":17953036275,"id":56,"tags":{"url":"/api/memberSeasons?memberId=69c7aa36494c68d7a1533119"},"startTime":1774697100590,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":8,"timestamp":17953105458,"id":59,"parentId":56,"tags":{"url":"/api/memberSeasons?memberId=69c7aa36494c68d7a1533119","memory.rss":"901496832","memory.heapUsed":"98645920","memory.heapTotal":"104599552"},"startTime":1774697100659,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":1887,"timestamp":18005615284,"id":61,"parentId":3,"tags":{"inputPage":"/admin/members/page"},"startTime":1774697153169,"traceId":"6da39e1a99c47111"},{"name":"handle-request","duration":51254,"timestamp":18005614341,"id":60,"tags":{"url":"/admin/members"},"startTime":1774697153168,"traceId":"6da39e1a99c47111"},{"name":"memory-usage","duration":15,"timestamp":18005665762,"id":62,"parentId":60,"tags":{"url":"/admin/members","memory.rss":"903192576","memory.heapUsed":"101013600","memory.heapTotal":"106672128"},"startTime":1774697153219,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":195,"timestamp":18005843641,"id":63,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774697153397,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":150,"timestamp":18005843872,"id":64,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774697153397,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":145,"timestamp":18005844434,"id":65,"parentId":3,"tags":{"inputPage":"/favicon.ico/route"},"startTime":1774697153398,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":126,"timestamp":18005844611,"id":66,"parentId":3,"tags":{"inputPage":"/favicon.ico"},"startTime":1774697153398,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":467,"timestamp":18006073036,"id":67,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774697153627,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":216,"timestamp":18006073557,"id":68,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774697153627,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":174,"timestamp":18006074278,"id":69,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774697153628,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":139,"timestamp":18006074484,"id":70,"parentId":3,"tags":{"inputPage":"/avatars/admin.jpg"},"startTime":1774697153628,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":2570,"timestamp":18006075536,"id":72,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774697153629,"traceId":"6da39e1a99c47111"},{"name":"ensure-page","duration":2216,"timestamp":18006078236,"id":73,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1774697153632,"traceId":"6da39e1a99c47111"},{"name":"compile-path","duration":58592,"timestamp":18020092194,"id":76,"tags":{"trigger":"/admin/users"},"startTime":1774697167646,"traceId":"6da39e1a99c47111"}] diff --git a/saintBarthVolleyApp/frontend/.next/dev/types/cache-life.d.ts b/saintBarthVolleyApp/frontend/.next/dev/types/cache-life.d.ts deleted file mode 100644 index a8c6997..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/types/cache-life.d.ts +++ /dev/null @@ -1,145 +0,0 @@ -// Type definitions for Next.js cacheLife configs - -declare module 'next/cache' { - export { unstable_cache } from 'next/dist/server/web/spec-extension/unstable-cache' - export { - updateTag, - revalidateTag, - revalidatePath, - refresh, - } from 'next/dist/server/web/spec-extension/revalidate' - export { unstable_noStore } from 'next/dist/server/web/spec-extension/unstable-no-store' - - - /** - * Cache this `"use cache"` for a timespan defined by the `"default"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 900 seconds (15 minutes) - * expire: never - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 15 minutes, start revalidating new values in the background. - * It lives for the maximum age of the server cache. If this entry has no traffic for a while, it may serve an old value the next request. - */ - export function cacheLife(profile: "default"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"seconds"` profile. - * ``` - * stale: 30 seconds - * revalidate: 1 seconds - * expire: 60 seconds (1 minute) - * ``` - * - * This cache may be stale on clients for 30 seconds before checking with the server. - * If the server receives a new request after 1 seconds, start revalidating new values in the background. - * If this entry has no traffic for 1 minute it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "seconds"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"minutes"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 60 seconds (1 minute) - * expire: 3600 seconds (1 hour) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 minute, start revalidating new values in the background. - * If this entry has no traffic for 1 hour it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "minutes"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"hours"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 3600 seconds (1 hour) - * expire: 86400 seconds (1 day) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 hour, start revalidating new values in the background. - * If this entry has no traffic for 1 day it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "hours"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"days"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 86400 seconds (1 day) - * expire: 604800 seconds (1 week) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 day, start revalidating new values in the background. - * If this entry has no traffic for 1 week it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "days"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"weeks"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 604800 seconds (1 week) - * expire: 2592000 seconds (1 month) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 week, start revalidating new values in the background. - * If this entry has no traffic for 1 month it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "weeks"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"max"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 2592000 seconds (1 month) - * expire: 31536000 seconds (365 days) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 month, start revalidating new values in the background. - * If this entry has no traffic for 365 days it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "max"): void - - /** - * Cache this `"use cache"` using a custom timespan. - * ``` - * stale: ... // seconds - * revalidate: ... // seconds - * expire: ... // seconds - * ``` - * - * This is similar to Cache-Control: max-age=`stale`,s-max-age=`revalidate`,stale-while-revalidate=`expire-revalidate` - * - * If a value is left out, the lowest of other cacheLife() calls or the default, is used instead. - */ - export function cacheLife(profile: { - /** - * This cache may be stale on clients for ... seconds before checking with the server. - */ - stale?: number, - /** - * If the server receives a new request after ... seconds, start revalidating new values in the background. - */ - revalidate?: number, - /** - * If this entry has no traffic for ... seconds it will expire. The next request will recompute it. - */ - expire?: number - }): void - - - import { cacheTag } from 'next/dist/server/use-cache/cache-tag' - export { cacheTag } - - export const unstable_cacheTag: typeof cacheTag - export const unstable_cacheLife: typeof cacheLife -} diff --git a/saintBarthVolleyApp/frontend/.next/dev/types/routes.d.ts b/saintBarthVolleyApp/frontend/.next/dev/types/routes.d.ts deleted file mode 100644 index 356238b..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/types/routes.d.ts +++ /dev/null @@ -1,72 +0,0 @@ -// This file is generated automatically by Next.js -// Do not edit this file manually - -type AppRoutes = "/" | "/admin" | "/admin/championships" | "/admin/club" | "/admin/matches" | "/admin/members" | "/admin/news" | "/admin/partners" | "/admin/teams" | "/admin/users" | "/forgot-password" | "/login" | "/register" | "/reset-password" | "/verify-email" -type PageRoutes = never -type LayoutRoutes = "/" | "/admin" -type RedirectRoutes = never -type RewriteRoutes = never -type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRoutes - - -interface ParamMap { - "/": {} - "/admin": {} - "/admin/championships": {} - "/admin/club": {} - "/admin/matches": {} - "/admin/members": {} - "/admin/news": {} - "/admin/partners": {} - "/admin/teams": {} - "/admin/users": {} - "/forgot-password": {} - "/login": {} - "/register": {} - "/reset-password": {} - "/verify-email": {} -} - - -export type ParamsOf<Route extends Routes> = ParamMap[Route] - -interface LayoutSlotMap { - "/": never - "/admin": never -} - - -export type { AppRoutes, PageRoutes, LayoutRoutes, RedirectRoutes, RewriteRoutes, ParamMap } - -declare global { - /** - * Props for Next.js App Router page components - * @example - * ```tsx - * export default function Page(props: PageProps<'/blog/[slug]'>) { - * const { slug } = await props.params - * return <div>Blog post: {slug}</div> - * } - * ``` - */ - interface PageProps<AppRoute extends AppRoutes> { - params: Promise<ParamMap[AppRoute]> - searchParams: Promise<Record<string, string | string[] | undefined>> - } - - /** - * Props for Next.js App Router layout components - * @example - * ```tsx - * export default function Layout(props: LayoutProps<'/dashboard'>) { - * return <div>{props.children}</div> - * } - * ``` - */ - type LayoutProps<LayoutRoute extends LayoutRoutes> = { - params: Promise<ParamMap[LayoutRoute]> - children: React.ReactNode - } & { - [K in LayoutSlotMap[LayoutRoute]]: React.ReactNode - } -} diff --git a/saintBarthVolleyApp/frontend/.next/dev/types/validator.ts b/saintBarthVolleyApp/frontend/.next/dev/types/validator.ts deleted file mode 100644 index 154dd90..0000000 --- a/saintBarthVolleyApp/frontend/.next/dev/types/validator.ts +++ /dev/null @@ -1,196 +0,0 @@ -// This file is generated automatically by Next.js -// Do not edit this file manually -// This file validates that all pages and layouts export the correct types - -import type { AppRoutes, LayoutRoutes, ParamMap } from "./routes.js" -import type { ResolvingMetadata, ResolvingViewport } from "next/types.js" - -type AppPageConfig<Route extends AppRoutes = AppRoutes> = { - default: React.ComponentType<{ params: Promise<ParamMap[Route]> } & any> | ((props: { params: Promise<ParamMap[Route]> } & any) => React.ReactNode | Promise<React.ReactNode> | never | void | Promise<void>) - generateStaticParams?: (props: { params: ParamMap[Route] }) => Promise<any[]> | any[] - generateMetadata?: ( - props: { params: Promise<ParamMap[Route]> } & any, - parent: ResolvingMetadata - ) => Promise<any> | any - generateViewport?: ( - props: { params: Promise<ParamMap[Route]> } & any, - parent: ResolvingViewport - ) => Promise<any> | any - metadata?: any - viewport?: any -} - -type LayoutConfig<Route extends LayoutRoutes = LayoutRoutes> = { - default: React.ComponentType<LayoutProps<Route>> | ((props: LayoutProps<Route>) => React.ReactNode | Promise<React.ReactNode> | never | void | Promise<void>) - generateStaticParams?: (props: { params: ParamMap[Route] }) => Promise<any[]> | any[] - generateMetadata?: ( - props: { params: Promise<ParamMap[Route]> } & any, - parent: ResolvingMetadata - ) => Promise<any> | any - generateViewport?: ( - props: { params: Promise<ParamMap[Route]> } & any, - parent: ResolvingViewport - ) => Promise<any> | any - metadata?: any - viewport?: any -} - - -// Validate ../../../src/app/admin/championships/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin/championships">> = Specific - const handler = {} as typeof import("../../../src/app/admin/championships/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/admin/club/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin/club">> = Specific - const handler = {} as typeof import("../../../src/app/admin/club/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/admin/matches/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin/matches">> = Specific - const handler = {} as typeof import("../../../src/app/admin/matches/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/admin/members/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin/members">> = Specific - const handler = {} as typeof import("../../../src/app/admin/members/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/admin/news/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin/news">> = Specific - const handler = {} as typeof import("../../../src/app/admin/news/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/admin/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin">> = Specific - const handler = {} as typeof import("../../../src/app/admin/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/admin/partners/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin/partners">> = Specific - const handler = {} as typeof import("../../../src/app/admin/partners/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/admin/teams/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin/teams">> = Specific - const handler = {} as typeof import("../../../src/app/admin/teams/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/admin/users/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/admin/users">> = Specific - const handler = {} as typeof import("../../../src/app/admin/users/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/forgot-password/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/forgot-password">> = Specific - const handler = {} as typeof import("../../../src/app/forgot-password/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/login/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/login">> = Specific - const handler = {} as typeof import("../../../src/app/login/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/">> = Specific - const handler = {} as typeof import("../../../src/app/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/register/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/register">> = Specific - const handler = {} as typeof import("../../../src/app/register/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/reset-password/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/reset-password">> = Specific - const handler = {} as typeof import("../../../src/app/reset-password/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/verify-email/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/verify-email">> = Specific - const handler = {} as typeof import("../../../src/app/verify-email/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - - - - - - - -// Validate ../../../src/app/admin/layout.tsx -{ - type __IsExpected<Specific extends LayoutConfig<"/admin">> = Specific - const handler = {} as typeof import("../../../src/app/admin/layout.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - -// Validate ../../../src/app/layout.tsx -{ - type __IsExpected<Specific extends LayoutConfig<"/">> = Specific - const handler = {} as typeof import("../../../src/app/layout.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} diff --git a/saintBarthVolleyApp/frontend/.next/types/cache-life.d.ts b/saintBarthVolleyApp/frontend/.next/types/cache-life.d.ts deleted file mode 100644 index a8c6997..0000000 --- a/saintBarthVolleyApp/frontend/.next/types/cache-life.d.ts +++ /dev/null @@ -1,145 +0,0 @@ -// Type definitions for Next.js cacheLife configs - -declare module 'next/cache' { - export { unstable_cache } from 'next/dist/server/web/spec-extension/unstable-cache' - export { - updateTag, - revalidateTag, - revalidatePath, - refresh, - } from 'next/dist/server/web/spec-extension/revalidate' - export { unstable_noStore } from 'next/dist/server/web/spec-extension/unstable-no-store' - - - /** - * Cache this `"use cache"` for a timespan defined by the `"default"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 900 seconds (15 minutes) - * expire: never - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 15 minutes, start revalidating new values in the background. - * It lives for the maximum age of the server cache. If this entry has no traffic for a while, it may serve an old value the next request. - */ - export function cacheLife(profile: "default"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"seconds"` profile. - * ``` - * stale: 30 seconds - * revalidate: 1 seconds - * expire: 60 seconds (1 minute) - * ``` - * - * This cache may be stale on clients for 30 seconds before checking with the server. - * If the server receives a new request after 1 seconds, start revalidating new values in the background. - * If this entry has no traffic for 1 minute it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "seconds"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"minutes"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 60 seconds (1 minute) - * expire: 3600 seconds (1 hour) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 minute, start revalidating new values in the background. - * If this entry has no traffic for 1 hour it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "minutes"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"hours"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 3600 seconds (1 hour) - * expire: 86400 seconds (1 day) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 hour, start revalidating new values in the background. - * If this entry has no traffic for 1 day it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "hours"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"days"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 86400 seconds (1 day) - * expire: 604800 seconds (1 week) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 day, start revalidating new values in the background. - * If this entry has no traffic for 1 week it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "days"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"weeks"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 604800 seconds (1 week) - * expire: 2592000 seconds (1 month) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 week, start revalidating new values in the background. - * If this entry has no traffic for 1 month it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "weeks"): void - - /** - * Cache this `"use cache"` for a timespan defined by the `"max"` profile. - * ``` - * stale: 300 seconds (5 minutes) - * revalidate: 2592000 seconds (1 month) - * expire: 31536000 seconds (365 days) - * ``` - * - * This cache may be stale on clients for 5 minutes before checking with the server. - * If the server receives a new request after 1 month, start revalidating new values in the background. - * If this entry has no traffic for 365 days it will expire. The next request will recompute it. - */ - export function cacheLife(profile: "max"): void - - /** - * Cache this `"use cache"` using a custom timespan. - * ``` - * stale: ... // seconds - * revalidate: ... // seconds - * expire: ... // seconds - * ``` - * - * This is similar to Cache-Control: max-age=`stale`,s-max-age=`revalidate`,stale-while-revalidate=`expire-revalidate` - * - * If a value is left out, the lowest of other cacheLife() calls or the default, is used instead. - */ - export function cacheLife(profile: { - /** - * This cache may be stale on clients for ... seconds before checking with the server. - */ - stale?: number, - /** - * If the server receives a new request after ... seconds, start revalidating new values in the background. - */ - revalidate?: number, - /** - * If this entry has no traffic for ... seconds it will expire. The next request will recompute it. - */ - expire?: number - }): void - - - import { cacheTag } from 'next/dist/server/use-cache/cache-tag' - export { cacheTag } - - export const unstable_cacheTag: typeof cacheTag - export const unstable_cacheLife: typeof cacheLife -} diff --git a/saintBarthVolleyApp/frontend/.next/types/routes.d.ts b/saintBarthVolleyApp/frontend/.next/types/routes.d.ts deleted file mode 100644 index 1c6c34d..0000000 --- a/saintBarthVolleyApp/frontend/.next/types/routes.d.ts +++ /dev/null @@ -1,57 +0,0 @@ -// This file is generated automatically by Next.js -// Do not edit this file manually - -type AppRoutes = "/" -type PageRoutes = never -type LayoutRoutes = "/" -type RedirectRoutes = never -type RewriteRoutes = never -type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRoutes - - -interface ParamMap { - "/": {} -} - - -export type ParamsOf<Route extends Routes> = ParamMap[Route] - -interface LayoutSlotMap { - "/": never -} - - -export type { AppRoutes, PageRoutes, LayoutRoutes, RedirectRoutes, RewriteRoutes, ParamMap } - -declare global { - /** - * Props for Next.js App Router page components - * @example - * ```tsx - * export default function Page(props: PageProps<'/blog/[slug]'>) { - * const { slug } = await props.params - * return <div>Blog post: {slug}</div> - * } - * ``` - */ - interface PageProps<AppRoute extends AppRoutes> { - params: Promise<ParamMap[AppRoute]> - searchParams: Promise<Record<string, string | string[] | undefined>> - } - - /** - * Props for Next.js App Router layout components - * @example - * ```tsx - * export default function Layout(props: LayoutProps<'/dashboard'>) { - * return <div>{props.children}</div> - * } - * ``` - */ - type LayoutProps<LayoutRoute extends LayoutRoutes> = { - params: Promise<ParamMap[LayoutRoute]> - children: React.ReactNode - } & { - [K in LayoutSlotMap[LayoutRoute]]: React.ReactNode - } -} diff --git a/saintBarthVolleyApp/frontend/.next/types/validator.ts b/saintBarthVolleyApp/frontend/.next/types/validator.ts deleted file mode 100644 index 069c4ca..0000000 --- a/saintBarthVolleyApp/frontend/.next/types/validator.ts +++ /dev/null @@ -1,61 +0,0 @@ -// This file is generated automatically by Next.js -// Do not edit this file manually -// This file validates that all pages and layouts export the correct types - -import type { AppRoutes, LayoutRoutes, ParamMap } from "./routes.js" -import type { ResolvingMetadata, ResolvingViewport } from "next/types.js" - -type AppPageConfig<Route extends AppRoutes = AppRoutes> = { - default: React.ComponentType<{ params: Promise<ParamMap[Route]> } & any> | ((props: { params: Promise<ParamMap[Route]> } & any) => React.ReactNode | Promise<React.ReactNode> | never | void | Promise<void>) - generateStaticParams?: (props: { params: ParamMap[Route] }) => Promise<any[]> | any[] - generateMetadata?: ( - props: { params: Promise<ParamMap[Route]> } & any, - parent: ResolvingMetadata - ) => Promise<any> | any - generateViewport?: ( - props: { params: Promise<ParamMap[Route]> } & any, - parent: ResolvingViewport - ) => Promise<any> | any - metadata?: any - viewport?: any -} - -type LayoutConfig<Route extends LayoutRoutes = LayoutRoutes> = { - default: React.ComponentType<LayoutProps<Route>> | ((props: LayoutProps<Route>) => React.ReactNode | Promise<React.ReactNode> | never | void | Promise<void>) - generateStaticParams?: (props: { params: ParamMap[Route] }) => Promise<any[]> | any[] - generateMetadata?: ( - props: { params: Promise<ParamMap[Route]> } & any, - parent: ResolvingMetadata - ) => Promise<any> | any - generateViewport?: ( - props: { params: Promise<ParamMap[Route]> } & any, - parent: ResolvingViewport - ) => Promise<any> | any - metadata?: any - viewport?: any -} - - -// Validate ../../src/app/page.tsx -{ - type __IsExpected<Specific extends AppPageConfig<"/">> = Specific - const handler = {} as typeof import("../../src/app/page.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} - - - - - - - -// Validate ../../src/app/layout.tsx -{ - type __IsExpected<Specific extends LayoutConfig<"/">> = Specific - const handler = {} as typeof import("../../src/app/layout.js") - type __Check = __IsExpected<typeof handler> - // @ts-ignore - type __Unused = __Check -} diff --git a/saintBarthVolleyApp/frontend/Dockerfile b/saintBarthVolleyApp/frontend/Dockerfile new file mode 100644 index 0000000..9bbaa5b --- /dev/null +++ b/saintBarthVolleyApp/frontend/Dockerfile @@ -0,0 +1,32 @@ +# ── Build stage ────────────────────────────────────────────────────────────── +FROM node:20-alpine AS builder + +WORKDIR /usr/src/app + +# Build args passés par docker-compose +ARG NEXT_BASE_PATH="/saintbarth" +ARG NEXT_PUBLIC_API_URL="/saintbarth" + +ENV NEXT_BASE_PATH=$NEXT_BASE_PATH +ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL + +COPY package*.json ./ +RUN npm install + +COPY . . +RUN npm run build + +# ── Runtime stage ───────────────────────────────────────────────────────────── +FROM node:20-alpine AS runner + +WORKDIR /usr/src/app + +ENV NODE_ENV=production + +# Copie uniquement ce que Next.js standalone génère +COPY --from=builder /usr/src/app/.next/standalone ./ +COPY --from=builder /usr/src/app/.next/static ./.next/static +COPY --from=builder /usr/src/app/public ./public + +EXPOSE 3000 +CMD ["node", "server.js"] diff --git a/saintBarthVolleyApp/frontend/middleware.ts b/saintBarthVolleyApp/frontend/middleware.ts index d512e33..3a7dd7f 100644 --- a/saintBarthVolleyApp/frontend/middleware.ts +++ b/saintBarthVolleyApp/frontend/middleware.ts @@ -17,4 +17,4 @@ export function middleware(req: NextRequest) { export const config = { matcher: ["/admin/:path*"], -}; \ No newline at end of file +}; diff --git a/saintBarthVolleyApp/frontend/next.config.ts b/saintBarthVolleyApp/frontend/next.config.ts index 716f2d0..bbdc950 100644 --- a/saintBarthVolleyApp/frontend/next.config.ts +++ b/saintBarthVolleyApp/frontend/next.config.ts @@ -1,7 +1,10 @@ import type { NextConfig } from "next"; +const basePath = process.env.NEXT_BASE_PATH || ""; + const nextConfig: NextConfig = { - /* config options here */ + output: "standalone", + basePath, images: { remotePatterns: [ { @@ -10,6 +13,12 @@ const nextConfig: NextConfig = { port: "5000", pathname: "/uploads/**", }, + // Production : autorise les uploads depuis n'importe quel host HTTP + { + protocol: "http", + hostname: "**", + pathname: "/uploads/**", + }, ], }, }; diff --git a/saintBarthVolleyApp/frontend/src/app/admin/championships/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/championships/page.tsx deleted file mode 100644 index 5cfeb70..0000000 --- a/saintBarthVolleyApp/frontend/src/app/admin/championships/page.tsx +++ /dev/null @@ -1,13 +0,0 @@ -// frontend/src/app/admin/championships/page.tsx -"use client"; - -import * as React from "react"; - -export default function ChampionshipsPage() { - return ( - <div className="p-4"> - <h1 className="text-xl font-bold">Gestion des championnats</h1> - <p>Ici tu pourras gérer les infos des championnats de l’association.</p> - </div> - ); -} diff --git a/saintBarthVolleyApp/frontend/src/app/admin/club/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/club/page.tsx index 51dd4b6..874998c 100644 --- a/saintBarthVolleyApp/frontend/src/app/admin/club/page.tsx +++ b/saintBarthVolleyApp/frontend/src/app/admin/club/page.tsx @@ -34,7 +34,7 @@ export default function ClubPage() { useEffect(() => { const fetchClub = async () => { try { - const data = await apiFetch("/api/clubs"); + const data = await apiFetch<Club[]>("/api/clubs"); setClub(data[0]); setInitialClub(data[0]); } catch (err) { diff --git a/saintBarthVolleyApp/frontend/src/app/admin/matches/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/matches/page.tsx deleted file mode 100644 index 0a2f0be..0000000 --- a/saintBarthVolleyApp/frontend/src/app/admin/matches/page.tsx +++ /dev/null @@ -1,13 +0,0 @@ -// frontend/src/app/admin/matches/page.tsx -"use client"; - -import * as React from "react"; - -export default function MatchesPage() { - return ( - <div className="p-4"> - <h1 className="text-xl font-bold">Gestion des matches</h1> - <p>Ici tu pourras gérer les infos des matches de l’association.</p> - </div> - ); -} diff --git a/saintBarthVolleyApp/frontend/src/app/admin/members/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/members/page.tsx index 87fdcbc..03b2d4e 100644 --- a/saintBarthVolleyApp/frontend/src/app/admin/members/page.tsx +++ b/saintBarthVolleyApp/frontend/src/app/admin/members/page.tsx @@ -1,251 +1,368 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ "use client"; import * as React from "react"; -import { - getMembers, - createMember, - updateMember, - deleteMember, - type Member, -} from "@/services/memberService"; +import { apiFetch } from "@/lib/api"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; -import { MemberForm } from "@/components/dashboard/admin/members-form"; +import { Label } from "@/components/ui/label"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/components/ui/select"; + +// ─── Types ──────────────────────────────────────────────────────────────────── + +interface TeamRole { + _id: string; // subdoc ObjectId + teamId?: string; // optionnel : absent = bénévole saison sans équipe + seasonId: string; + roles: string[]; + isCaptain: boolean; + position?: string; + photo?: string; +} + +interface Member { + _id: string; + firstName: string; + lastName: string; + birthDate?: string; + height?: number; + weight?: number; + bio?: string; + isActive: boolean; + teamRoles: TeamRole[]; +} + +interface Season { + _id: string; + name: string; + isActive: boolean; +} + +interface Team { + _id: string; + name: string; + seasonId: string; +} -// Pour le dialogue des équipes -import { Dialog, DialogContent, DialogTitle } from "@/components/ui/dialog"; +// ─── Constants ──────────────────────────────────────────────────────────────── + +const ROLES = [ + "player", + "coach", + "staff", + "referee", + "volunteer", + "owner", +] as const; +const ROLE_LABELS: Record<string, string> = { + player: "Joueur", + coach: "Entraîneur", + staff: "Staff", + referee: "Arbitre", + volunteer: "Bénévole", + owner: "Dirigeant", +}; + +const EMPTY_MEMBER: Omit<Member, "_id"> = { + firstName: "", + lastName: "", + birthDate: "", + height: undefined, + weight: undefined, + bio: "", + isActive: true, + teamRoles: [], +}; + +const EMPTY_NEW_ROLE = { + seasonId: "", + teamId: "", + roles: ["player"] as string[], + isCaptain: false, + position: "", +}; + +// ─── Page ───────────────────────────────────────────────────────────────────── export default function AdminMembersPage() { const [members, setMembers] = React.useState<Member[]>([]); - const [filteredMembers, setFilteredMembers] = React.useState<Member[]>([]); + const [filtered, setFiltered] = React.useState<Member[]>([]); const [loading, setLoading] = React.useState(true); - const [search, setSearch] = React.useState(""); - const [editingMember, setEditingMember] = React.useState<Member | null>(null); - const [isCreating, setIsCreating] = React.useState(false); - // Dialogue équipes - const [teamsDialogMember, setTeamsDialogMember] = - React.useState<Member | null>(null); - const [teams, setTeams] = React.useState<any[]>([]); - const [teamsLoading, setTeamsLoading] = React.useState(false); + const [seasons, setSeasons] = React.useState<Season[]>([]); + const [allTeams, setAllTeams] = React.useState<Team[]>([]); - // 🔹 Fetch members + const [editing, setEditing] = React.useState<Partial<Member> | null>(null); + const [saving, setSaving] = React.useState(false); + + const [addingRole, setAddingRole] = React.useState(false); + const [newRole, setNewRole] = React.useState(EMPTY_NEW_ROLE); + + // ── Load ────────────────────────────────────────────────────────────────── React.useEffect(() => { - getMembers() - .then((data) => { - setMembers(data); - setFilteredMembers(data); + Promise.all([apiFetch("/api/members"), apiFetch("/api/seasons")]) + .then(([membersData, seasonsData]) => { + setMembers(membersData as Member[]); + setFiltered(membersData as Member[]); + setSeasons(seasonsData as Season[]); }) + .catch(() => alert("Erreur lors du chargement")) .finally(() => setLoading(false)); }, []); - // 🔹 Filter React.useEffect(() => { - let result = members; - if (search) { - result = result.filter((m) => - `${m.firstName} ${m.lastName}` - .toLowerCase() - .includes(search.toLowerCase()), - ); - } - setFilteredMembers(result); + if (seasons.length === 0) return; + Promise.all(seasons.map((s) => apiFetch(`/api/teams?seasonId=${s._id}`))) + .then((results) => setAllTeams(results.flat() as Team[])) + .catch(() => {}); + }, [seasons]); + + React.useEffect(() => { + if (!search) return setFiltered(members); + const q = search.toLowerCase(); + setFiltered( + members.filter((m) => + `${m.firstName} ${m.lastName}`.toLowerCase().includes(q), + ), + ); }, [search, members]); - // 🔹 Delete - const handleDelete = async (id?: string) => { - if (!id) return; + const fetchMembers = async () => { + const data: Member[] = await apiFetch("/api/members"); + setMembers(data); + setFiltered(data); + return data; + }; + + // ── CRUD membres ────────────────────────────────────────────────────────── + const handleDelete = async (id: string) => { if (!confirm("Supprimer ce membre ?")) return; try { - await deleteMember(id); - setMembers(members.filter((m) => m._id !== id)); - } catch (err) { - console.error(err); - alert("Erreur suppression"); + await apiFetch(`/api/members/${id}`, { method: "DELETE" }); + setMembers((prev) => prev.filter((m) => m._id !== id)); + } catch { + alert("Erreur lors de la suppression"); } }; - // 🔹 Save (create or update) - const handleSave = async (member: Member) => { - if (member._id) { - // update - const updated = await updateMember(member._id, member); - setMembers((prev) => - prev.map((m) => (m._id === updated._id ? updated : m)), - ); - } else { - // create - const created = await createMember(member); - setMembers((prev) => [created, ...prev]); + const handleSave = async () => { + if (!editing) return; + setSaving(true); + try { + let updated: Member; + if (editing._id) { + updated = await apiFetch(`/api/members/${editing._id}`, { + method: "PUT", + body: JSON.stringify(editing), + }); + setMembers((prev) => + prev.map((m) => (m._id === updated._id ? updated : m)), + ); + setEditing(updated); + } else { + updated = await apiFetch("/api/members", { + method: "POST", + body: JSON.stringify(editing), + }); + setMembers((prev) => [updated, ...prev]); + setEditing(null); + } + } catch { + alert("Erreur lors de la sauvegarde"); + } finally { + setSaving(false); } - setEditingMember(null); - setIsCreating(false); }; - // 🔹 Open Teams Dialog - const openTeamsDialog = async (member: Member) => { - setTeamsDialogMember(member); - setTeamsLoading(true); + // ── Gestion des rôles ───────────────────────────────────────────────────── + const handleAddRole = async () => { + if (!editing?._id || !newRole.seasonId) return; + // teamId optionnel : absent pour les bénévoles sans équipe + const payload = { + seasonId: newRole.seasonId, + teamId: newRole.teamId || undefined, + roles: newRole.roles, + isCaptain: newRole.isCaptain, + position: newRole.position, + }; try { - const res = await fetch(`/api/memberSeasons?memberId=${member._id}`); - const data = await res.json(); - const allTeams = data.flatMap((ms: any) => ms.teams || []); - setTeams(allTeams); - } catch (err) { - console.error(err); - setTeams([]); - } finally { - setTeamsLoading(false); + await apiFetch(`/api/members/${editing._id}/roles`, { + method: "POST", + body: JSON.stringify(payload), + }); + const data = await fetchMembers(); + const refreshed = data.find((m) => m._id === editing._id); + if (refreshed) setEditing(refreshed); + setAddingRole(false); + setNewRole(EMPTY_NEW_ROLE); + } catch { + alert("Erreur lors de l'ajout"); } }; - // 🔹 Calculate age - const getAge = (birthDate?: string) => { - if (!birthDate) return "-"; - const diff = new Date().getTime() - new Date(birthDate).getTime(); - return Math.floor(diff / (1000 * 60 * 60 * 24 * 365.25)); + const handleRemoveRole = async (memberId: string, roleId: string) => { + if (!confirm("Retirer cette affectation ?")) return; + try { + await apiFetch(`/api/members/${memberId}/roles/${roleId}`, { + method: "DELETE", + }); + const data = await fetchMembers(); + const refreshed = data.find((m) => m._id === memberId); + if (refreshed) setEditing(refreshed); + } catch { + alert("Erreur lors de la suppression"); + } }; + // ── Helpers ─────────────────────────────────────────────────────────────── + const getTeamName = (teamId?: string) => + teamId + ? (allTeams.find((t) => t._id === teamId)?.name ?? "Équipe inconnue") + : "—"; + const getSeasonName = (seasonId: string) => + seasons.find((s) => s._id === seasonId)?.name ?? seasonId; + const teamsForSeason = (seasonId: string) => + allTeams.filter((t) => t.seasonId === seasonId); + + // Rôle est "sans équipe" si volunteer/owner/staff sans teamId + const isSeasonOnlyRole = (tr: TeamRole) => !tr.teamId; + if (loading) return <div className="p-6">Chargement...</div>; return ( - <div className="flex flex-col gap-6 max-w-7xl mx-auto w-full flex-1 h-full"> - <h1 className="text-2xl font-bold">Gestion des membres</h1> - - {/* 🔎 Search + Create */} - <div className="flex flex-col sm:flex-row justify-between gap-4"> + <div className="flex flex-col gap-6 max-w-7xl mx-auto w-full flex-1"> + <div className="flex flex-col sm:flex-row gap-3"> <Input + className="flex-1" placeholder="Rechercher un membre..." value={search} onChange={(e) => setSearch(e.target.value)} - className="flex-1" /> - <Button - onClick={() => { - setIsCreating(true); - setEditingMember(null); - }} - className="sm:w-40" - > - + Créer membre + <Button onClick={() => setEditing({ ...EMPTY_MEMBER })}> + + Nouveau membre </Button> </div> - {/* 📝 Form Modal */} - {(editingMember || isCreating) && ( - <div className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center p-4"> - <div className="bg-background rounded-lg shadow-lg max-w-full sm:max-w-2xl w-full p-6 overflow-auto max-h-[90vh]"> - <MemberForm - member={ - editingMember || { - firstName: "", - lastName: "", - birthDate: undefined, - photo: "", - bio: "", - isActive: true, - } - } - onChange={(m) => setEditingMember(m)} - onSave={handleSave} // seulement via bouton sauvegarder - /> - <div className="flex justify-end gap-2 mt-4"> - <Button - variant="outline" - onClick={() => { - setEditingMember(null); - setIsCreating(false); - }} - > - Annuler - </Button> - </div> - </div> - </div> - )} - - {/* 📱 Mobile Cards */} - <div className="flex flex-col gap-4 md:hidden"> - {filteredMembers.map((member) => ( + {/* Mobile — cards */} + <div className="flex flex-col gap-3 md:hidden"> + {filtered.map((m) => ( <div - key={member._id ?? Math.random()} + key={m._id} className="border rounded-lg p-4 flex flex-col gap-2" > - <div className="font-semibold"> - {member.firstName} {member.lastName} - </div> - <div className="text-sm"> - Actif : {member.isActive ? "Oui" : "Non"} - </div> - <div className="text-xs text-muted-foreground"> - {getAge(member.birthDate)} ans + <div className="flex items-center justify-between"> + <div className="font-semibold"> + {m.firstName} {m.lastName} + </div> + <span + className={`px-2 py-0.5 rounded-full text-xs font-medium ${m.isActive ? "bg-green-100 text-green-700" : "bg-zinc-100 text-zinc-500"}`} + > + {m.isActive ? "Actif" : "Inactif"} + </span> </div> - <div className="flex flex-wrap gap-2 mt-2"> - <Button size="sm" onClick={() => setEditingMember(member)}> + {m.birthDate && ( + <div className="text-sm text-muted-foreground"> + {new Date(m.birthDate).toLocaleDateString("fr-FR")} + </div> + )} + {m.teamRoles?.length > 0 && ( + <div className="text-xs text-muted-foreground"> + {m.teamRoles.map((tr) => getTeamName(tr.teamId)).join(", ")} + </div> + )} + <div className="flex gap-2 mt-1"> + <Button size="sm" variant="outline" onClick={() => setEditing(m)}> Modifier </Button> <Button size="sm" variant="destructive" - onClick={() => handleDelete(member._id)} + onClick={() => handleDelete(m._id)} > Supprimer </Button> - <Button size="sm" onClick={() => openTeamsDialog(member)}> - Équipes - </Button> </div> </div> ))} - {filteredMembers.length === 0 && ( + {filtered.length === 0 && ( <div className="text-center text-muted-foreground py-10"> Aucun membre </div> )} </div> - {/* 💻 Desktop Table */} - <div className="hidden md:flex flex-col flex-1 rounded-lg border overflow-auto min-h-[400px]"> + {/* Desktop — table */} + <div className="hidden md:block rounded-lg border overflow-auto"> <table className="w-full text-sm"> - <thead className="bg-muted sticky top-0 z-10"> + <thead className="bg-muted"> <tr> <th className="p-3 text-left">Nom</th> - <th className="p-3 text-left hidden lg:table-cell">Âge</th> - <th className="p-3 text-left hidden lg:table-cell">Bio</th> - <th className="p-3 text-left">Actif</th> - <th className="p-3 text-left">Équipes</th> + <th className="p-3 text-left">Naissance</th> + <th className="p-3 text-left">Taille / Poids</th> + <th className="p-3 text-left">Affectations</th> + <th className="p-3 text-left">Statut</th> <th className="p-3 text-left">Actions</th> </tr> </thead> <tbody> - {filteredMembers.length > 0 ? ( - filteredMembers.map((member) => ( - <tr key={member._id ?? Math.random()} className="border-t"> + {filtered.length > 0 ? ( + filtered.map((m) => ( + <tr key={m._id} className="border-t"> + <td className="p-3 font-medium"> + {m.firstName} {m.lastName} + </td> <td className="p-3"> - {member.firstName} {member.lastName} + {m.birthDate + ? new Date(m.birthDate).toLocaleDateString("fr-FR") + : "-"} </td> - <td className="p-3 hidden lg:table-cell"> - {getAge(member.birthDate)} + <td className="p-3 text-muted-foreground"> + {m.height ? `${m.height} cm` : "-"} /{" "} + {m.weight ? `${m.weight} kg` : "-"} </td> - <td className="p-3 hidden lg:table-cell"> - {member.bio || "-"} + <td className="p-3"> + {m.teamRoles?.length > 0 ? ( + <div className="flex flex-wrap gap-1"> + {m.teamRoles.map((tr) => ( + <span + key={tr._id} + className={`px-1.5 py-0.5 rounded text-xs ${tr.teamId ? "bg-blue-50 text-blue-700" : "bg-orange-50 text-orange-700"}`} + > + {tr.teamId + ? getTeamName(tr.teamId) + : `Bénévole · ${getSeasonName(tr.seasonId)}`} + </span> + ))} + </div> + ) : ( + <span className="text-muted-foreground">-</span> + )} </td> - <td className="p-3">{member.isActive ? "Oui" : "Non"}</td> <td className="p-3"> - <Button size="sm" onClick={() => openTeamsDialog(member)}> - Équipes - </Button> + <span + className={`px-2 py-0.5 rounded-full text-xs font-medium ${m.isActive ? "bg-green-100 text-green-700" : "bg-zinc-100 text-zinc-500"}`} + > + {m.isActive ? "Actif" : "Inactif"} + </span> </td> <td className="p-3 flex gap-2"> - <Button size="sm" onClick={() => setEditingMember(member)}> + <Button + size="sm" + variant="outline" + onClick={() => setEditing(m)} + > Modifier </Button> <Button size="sm" variant="destructive" - onClick={() => handleDelete(member._id)} + onClick={() => handleDelete(m._id)} > Supprimer </Button> @@ -254,11 +371,11 @@ export default function AdminMembersPage() { )) ) : ( <tr> - <td colSpan={6} className="h-60"> - <div className="flex flex-col items-center justify-center gap-2 text-muted-foreground"> - <p className="text-sm">Aucun Membre</p> - <p className="text-xs">Commencez par en créer un</p> - </div> + <td + colSpan={6} + className="h-40 text-center text-muted-foreground" + > + Aucun membre trouvé </td> </tr> )} @@ -266,34 +383,357 @@ export default function AdminMembersPage() { </table> </div> - {/* 🔹 Teams Dialog */} - {teamsDialogMember && ( - <Dialog open onOpenChange={() => setTeamsDialogMember(null)}> - <DialogContent className="max-w-lg w-full"> - <DialogTitle className="text-lg font-semibold mb-4"> - Équipes de {teamsDialogMember.firstName}{" "} - {teamsDialogMember.lastName} - </DialogTitle> - {teamsLoading ? ( - <p>Chargement...</p> - ) : ( - <ul className="list-disc list-inside"> - {teams.length > 0 ? ( - teams.map((team) => ( - <li key={team._id}> - {team.name} ({team.category}) - </li> - )) - ) : ( - <li>Aucune équipe</li> - )} - </ul> - )} - <div className="mt-4 flex justify-end"> - <Button onClick={() => setTeamsDialogMember(null)}>Fermer</Button> + {/* ══ Modal édition / création ══ */} + {editing && ( + <div className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center p-4"> + <div className="bg-background rounded-lg shadow-xl w-full max-w-2xl flex flex-col gap-5 max-h-[90vh]"> + <div className="p-6 pb-0 shrink-0"> + <h2 className="text-xl font-bold"> + {editing._id + ? `${editing.firstName} ${editing.lastName}` + : "Nouveau membre"} + </h2> </div> - </DialogContent> - </Dialog> + + <div className="flex flex-col gap-5 overflow-y-auto px-6 pb-6"> + {/* Infos de base */} + <section className="flex flex-col gap-3"> + <h3 className="text-xs font-semibold text-muted-foreground uppercase tracking-wide"> + Informations + </h3> + + <div className="grid grid-cols-2 gap-4"> + <div className="flex flex-col gap-1"> + <Label>Prénom *</Label> + <Input + value={editing.firstName || ""} + onChange={(e) => + setEditing( + (p) => p && { ...p, firstName: e.target.value }, + ) + } + /> + </div> + <div className="flex flex-col gap-1"> + <Label>Nom *</Label> + <Input + value={editing.lastName || ""} + onChange={(e) => + setEditing( + (p) => p && { ...p, lastName: e.target.value }, + ) + } + /> + </div> + </div> + + <div className="flex flex-col gap-1"> + <Label>Date de naissance</Label> + <Input + type="date" + value={editing.birthDate?.split("T")[0] || ""} + onChange={(e) => + setEditing( + (p) => p && { ...p, birthDate: e.target.value }, + ) + } + /> + </div> + + <div className="grid grid-cols-2 gap-4"> + <div className="flex flex-col gap-1"> + <Label>Taille (cm)</Label> + <Input + type="number" + value={editing.height || ""} + onChange={(e) => + setEditing( + (p) => + p && { + ...p, + height: e.target.value + ? Number(e.target.value) + : undefined, + }, + ) + } + /> + </div> + <div className="flex flex-col gap-1"> + <Label>Poids (kg)</Label> + <Input + type="number" + value={editing.weight || ""} + onChange={(e) => + setEditing( + (p) => + p && { + ...p, + weight: e.target.value + ? Number(e.target.value) + : undefined, + }, + ) + } + /> + </div> + </div> + + <div className="flex flex-col gap-1"> + <Label>Bio</Label> + <textarea + className="border rounded px-3 py-2 text-sm resize-none h-20 bg-background" + value={editing.bio || ""} + onChange={(e) => + setEditing((p) => p && { ...p, bio: e.target.value }) + } + /> + </div> + + <div className="flex items-center gap-2"> + <input + type="checkbox" + id="isActive" + checked={editing.isActive ?? true} + onChange={(e) => + setEditing( + (p) => p && { ...p, isActive: e.target.checked }, + ) + } + className="h-4 w-4" + /> + <Label htmlFor="isActive">Membre actif</Label> + </div> + </section> + + {/* Affectations — seulement si membre existant */} + {editing._id && ( + <section className="flex flex-col gap-3 border-t pt-4"> + <div className="flex items-center justify-between"> + <div> + <h3 className="text-xs font-semibold text-muted-foreground uppercase tracking-wide"> + Affectations + </h3> + <p className="text-xs text-muted-foreground mt-0.5"> + Équipe ou bénévolat pour une saison + </p> + </div> + {!addingRole && ( + <Button + size="sm" + variant="outline" + onClick={() => setAddingRole(true)} + > + + Ajouter + </Button> + )} + </div> + + {(editing.teamRoles ?? []).length === 0 && !addingRole && ( + <p className="text-sm text-muted-foreground"> + Aucune affectation. + </p> + )} + + {(editing.teamRoles ?? []).map((tr) => ( + <div + key={tr._id} + className="flex items-start justify-between border rounded p-3 gap-3" + > + <div className="flex flex-col gap-0.5 text-sm min-w-0"> + <div className="font-medium"> + {isSeasonOnlyRole(tr) ? ( + <span className="text-orange-700"> + Club (sans équipe) + </span> + ) : ( + getTeamName(tr.teamId) + )} + </div> + <div className="text-xs text-muted-foreground"> + {getSeasonName(tr.seasonId)} + </div> + <div className="text-xs text-muted-foreground"> + {tr.roles.map((r) => ROLE_LABELS[r] ?? r).join(", ")} + {tr.isCaptain && " · Capitaine"} + {tr.position && ` · ${tr.position}`} + </div> + </div> + <Button + size="sm" + variant="ghost" + className="text-red-500 hover:text-red-700 shrink-0" + onClick={() => handleRemoveRole(editing._id!, tr._id)} + > + Retirer + </Button> + </div> + ))} + + {addingRole && ( + <div className="border rounded p-4 flex flex-col gap-3 bg-muted/20"> + {/* Saison */} + <div className="flex flex-col gap-1"> + <Label className="text-xs">Saison *</Label> + <Select + value={newRole.seasonId} + onValueChange={(v) => + setNewRole((p) => ({ + ...p, + seasonId: v, + teamId: "", + })) + } + > + <SelectTrigger className="h-9"> + <SelectValue placeholder="Choisir une saison..." /> + </SelectTrigger> + <SelectContent> + {seasons.map((s) => ( + <SelectItem key={s._id} value={s._id}> + {s.name} + </SelectItem> + ))} + </SelectContent> + </Select> + </div> + + {/* Équipe — optionnelle */} + {newRole.seasonId && ( + <div className="flex flex-col gap-1"> + <Label className="text-xs"> + Équipe{" "} + <span className="text-muted-foreground"> + (laisser vide si bénévole sans équipe) + </span> + </Label> + <Select + value={newRole.teamId || "__none__"} + onValueChange={(v) => + setNewRole((p) => ({ + ...p, + teamId: v === "__none__" ? "" : v, + })) + } + > + <SelectTrigger className="h-9"> + <SelectValue /> + </SelectTrigger> + <SelectContent> + <SelectItem value="__none__"> + — Sans équipe (bénévole club) — + </SelectItem> + {teamsForSeason(newRole.seasonId).map((t) => ( + <SelectItem key={t._id} value={t._id}> + {t.name} + </SelectItem> + ))} + </SelectContent> + </Select> + </div> + )} + + <div className="grid grid-cols-2 gap-3"> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Rôle *</Label> + <Select + value={newRole.roles[0]} + onValueChange={(v) => + setNewRole((p) => ({ ...p, roles: [v] })) + } + > + <SelectTrigger className="h-9"> + <SelectValue /> + </SelectTrigger> + <SelectContent> + {ROLES.map((r) => ( + <SelectItem key={r} value={r}> + {ROLE_LABELS[r]} + </SelectItem> + ))} + </SelectContent> + </Select> + </div> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Poste</Label> + <Input + className="h-9" + placeholder="Ex: Libéro" + value={newRole.position} + onChange={(e) => + setNewRole((p) => ({ + ...p, + position: e.target.value, + })) + } + /> + </div> + </div> + + {newRole.teamId && ( + <div className="flex items-center gap-2"> + <input + type="checkbox" + id="isCaptain" + checked={newRole.isCaptain} + onChange={(e) => + setNewRole((p) => ({ + ...p, + isCaptain: e.target.checked, + })) + } + className="h-4 w-4" + /> + <Label htmlFor="isCaptain" className="text-sm"> + Capitaine de l'équipe + </Label> + </div> + )} + + <div className="flex justify-end gap-2"> + <Button + size="sm" + variant="outline" + onClick={() => { + setAddingRole(false); + setNewRole(EMPTY_NEW_ROLE); + }} + > + Annuler + </Button> + <Button + size="sm" + onClick={handleAddRole} + disabled={!newRole.seasonId} + > + Ajouter + </Button> + </div> + </div> + )} + </section> + )} + + <div className="flex justify-end gap-3 pt-2 border-t"> + <Button + variant="outline" + onClick={() => { + setEditing(null); + setAddingRole(false); + }} + > + {editing._id ? "Fermer" : "Annuler"} + </Button> + <Button + onClick={handleSave} + disabled={saving || !editing.firstName || !editing.lastName} + > + {saving ? "Sauvegarde..." : "Sauvegarder"} + </Button> + </div> + </div> + </div> + </div> )} </div> ); diff --git a/saintBarthVolleyApp/frontend/src/app/admin/news/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/news/page.tsx index 97efd60..de449da 100644 --- a/saintBarthVolleyApp/frontend/src/app/admin/news/page.tsx +++ b/saintBarthVolleyApp/frontend/src/app/admin/news/page.tsx @@ -1,13 +1,427 @@ -// frontend/src/app/admin/news/page.tsx "use client"; import * as React from "react"; +import { apiFetch } from "@/lib/api"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; + +interface NewsItem { + _id: string; + title: string; + slug: string; + content: string; + isPublished: boolean; + isFeatured: boolean; + publishedAt?: string; + createdAt: string; + authorId?: { firstName: string; lastName: string } | string; +} + +type EditingNews = Partial<Omit<NewsItem, "_id" | "authorId">> & { + _id?: string; +}; + +const EMPTY: EditingNews = { + title: "", + content: "", + isPublished: false, + isFeatured: false, +}; + +function previewSlug(title: string) { + return title + .toLowerCase() + .normalize("NFD") + .replace(/[\u0300-\u036f]/g, "") + .replace(/[^a-z0-9\s-]/g, "") + .trim() + .replace(/\s+/g, "-"); +} export default function NewsPage() { + const [news, setNews] = React.useState<NewsItem[]>([]); + const [loading, setLoading] = React.useState(true); + const [search, setSearch] = React.useState(""); + + const [editing, setEditing] = React.useState<EditingNews | null>(null); + const [saving, setSaving] = React.useState(false); + + React.useEffect(() => { + fetchNews(); + }, []); + + const fetchNews = async () => { + setLoading(true); + try { + const data: NewsItem[] = await apiFetch("/api/news"); + setNews(data); + } catch { + alert("Erreur lors du chargement des actualités"); + } finally { + setLoading(false); + } + }; + + const handleTogglePublish = async (item: NewsItem) => { + try { + const updated: NewsItem = await apiFetch(`/api/news/${item._id}`, { + method: "PUT", + body: JSON.stringify({ isPublished: !item.isPublished }), + }); + setNews((prev) => prev.map((n) => (n._id === updated._id ? updated : n))); + } catch { + alert("Erreur lors de la mise à jour"); + } + }; + + const handleToggleFeatured = async (item: NewsItem) => { + try { + const updated: NewsItem = await apiFetch(`/api/news/${item._id}`, { + method: "PUT", + body: JSON.stringify({ isFeatured: !item.isFeatured }), + }); + setNews((prev) => prev.map((n) => (n._id === updated._id ? updated : n))); + } catch { + alert("Erreur lors de la mise à jour"); + } + }; + + const handleDelete = async (id: string) => { + if (!confirm("Supprimer cet article ?")) return; + try { + await apiFetch(`/api/news/${id}`, { method: "DELETE" }); + setNews((prev) => prev.filter((n) => n._id !== id)); + } catch { + alert("Erreur lors de la suppression"); + } + }; + + const handleSave = async () => { + if (!editing) return; + setSaving(true); + try { + let result: NewsItem; + if (editing._id) { + result = await apiFetch(`/api/news/${editing._id}`, { + method: "PUT", + body: JSON.stringify(editing), + }); + setNews((prev) => prev.map((n) => (n._id === result._id ? result : n))); + } else { + result = await apiFetch("/api/news", { + method: "POST", + body: JSON.stringify(editing), + }); + setNews((prev) => [result, ...prev]); + } + setEditing(null); + } catch (err) { + alert( + err instanceof Error ? err.message : "Erreur lors de la sauvegarde", + ); + } finally { + setSaving(false); + } + }; + + const getAuthorName = (authorId: NewsItem["authorId"]): string => { + if (!authorId) return "-"; + if (typeof authorId === "object") + return `${authorId.firstName} ${authorId.lastName}`; + return "-"; + }; + + const filtered = search + ? news.filter((n) => n.title.toLowerCase().includes(search.toLowerCase())) + : news; + + if (loading) return <div className="p-6">Chargement...</div>; + return ( - <div className="p-4"> - <h1 className="text-xl font-bold">Gestion des actualités</h1> - <p>Ici tu pourras gérer les infos des actualités de l’association.</p> + <div className="flex flex-col gap-6 max-w-7xl mx-auto w-full flex-1"> + <div className="flex flex-col sm:flex-row sm:items-center justify-between gap-4"> + <h1 className="text-2xl font-bold">Actualités</h1> + <Button onClick={() => setEditing({ ...EMPTY })}> + + Nouvel article + </Button> + </div> + + <div className="flex items-center gap-4 flex-wrap"> + <Input + placeholder="Rechercher un article..." + value={search} + onChange={(e) => setSearch(e.target.value)} + className="max-w-sm" + /> + <div className="text-sm text-muted-foreground flex gap-3"> + <span>{news.length} articles</span> + <span>·</span> + <span className="text-green-600 font-medium"> + {news.filter((n) => n.isPublished).length} publiés + </span> + <span>·</span> + <span className="text-yellow-600 font-medium"> + {news.filter((n) => n.isFeatured).length} à la une + </span> + </div> + </div> + + {/* Mobile */} + <div className="flex flex-col gap-3 md:hidden"> + {filtered.map((item) => ( + <div + key={item._id} + className="border rounded-lg p-4 flex flex-col gap-2" + > + <div className="flex items-start justify-between gap-2"> + <div className="font-semibold">{item.title}</div> + <div className="flex gap-1 shrink-0"> + {item.isPublished && ( + <span className="px-1.5 py-0.5 rounded text-xs bg-green-100 text-green-700"> + Publié + </span> + )} + {item.isFeatured && ( + <span className="px-1.5 py-0.5 rounded text-xs bg-yellow-100 text-yellow-700"> + ★ + </span> + )} + </div> + </div> + <div className="text-xs text-muted-foreground"> + {new Date(item.createdAt).toLocaleDateString("fr-FR")} ·{" "} + {getAuthorName(item.authorId)} + </div> + <p className="text-sm text-muted-foreground line-clamp-2"> + {item.content} + </p> + <div className="flex gap-2 mt-1 flex-wrap"> + <Button + size="sm" + variant="outline" + onClick={() => setEditing(item)} + > + Modifier + </Button> + <Button + size="sm" + variant={item.isPublished ? "secondary" : "outline"} + onClick={() => handleTogglePublish(item)} + > + {item.isPublished ? "Dépublier" : "Publier"} + </Button> + <Button + size="sm" + variant={item.isFeatured ? "secondary" : "outline"} + onClick={() => handleToggleFeatured(item)} + > + {item.isFeatured ? "★ Une" : "☆ Une"} + </Button> + <Button + size="sm" + variant="destructive" + onClick={() => handleDelete(item._id)} + > + Supprimer + </Button> + </div> + </div> + ))} + {filtered.length === 0 && ( + <div className="text-center text-muted-foreground py-10"> + Aucun article + </div> + )} + </div> + + {/* Desktop */} + <div className="hidden md:block rounded-lg border overflow-auto"> + <table className="w-full text-sm"> + <thead className="bg-muted"> + <tr> + <th className="p-3 text-left">Titre</th> + <th className="p-3 text-left">Auteur</th> + <th className="p-3 text-left">Date</th> + <th className="p-3 text-left">Statut</th> + <th className="p-3 text-left">Actions</th> + </tr> + </thead> + <tbody> + {filtered.length > 0 ? ( + filtered.map((item) => ( + <tr key={item._id} className="border-t"> + <td className="p-3 max-w-xs"> + <div className="font-medium">{item.title}</div> + <div className="text-xs text-muted-foreground truncate"> + {item.content.slice(0, 70)}… + </div> + </td> + <td className="p-3 text-muted-foreground whitespace-nowrap"> + {getAuthorName(item.authorId)} + </td> + <td className="p-3 whitespace-nowrap text-muted-foreground"> + {new Date(item.createdAt).toLocaleDateString("fr-FR")} + </td> + <td className="p-3"> + <div className="flex gap-1 flex-wrap"> + <span + className={`px-2 py-0.5 rounded-full text-xs font-medium ${ + item.isPublished + ? "bg-green-100 text-green-700" + : "bg-zinc-100 text-zinc-500" + }`} + > + {item.isPublished ? "Publié" : "Brouillon"} + </span> + {item.isFeatured && ( + <span className="px-2 py-0.5 rounded-full text-xs font-medium bg-yellow-100 text-yellow-700"> + ★ Une + </span> + )} + </div> + </td> + <td className="p-3"> + <div className="flex gap-2"> + <Button + size="sm" + variant="outline" + onClick={() => setEditing(item)} + > + Modifier + </Button> + <Button + size="sm" + variant={item.isPublished ? "secondary" : "outline"} + onClick={() => handleTogglePublish(item)} + > + {item.isPublished ? "Dépublier" : "Publier"} + </Button> + <Button + size="sm" + variant={item.isFeatured ? "secondary" : "ghost"} + onClick={() => handleToggleFeatured(item)} + title={ + item.isFeatured + ? "Retirer de la une" + : "Mettre à la une" + } + > + {item.isFeatured ? "★" : "☆"} + </Button> + <Button + size="sm" + variant="destructive" + onClick={() => handleDelete(item._id)} + > + Supprimer + </Button> + </div> + </td> + </tr> + )) + ) : ( + <tr> + <td + colSpan={5} + className="h-40 text-center text-muted-foreground" + > + Aucun article. Créez votre premier article ! + </td> + </tr> + )} + </tbody> + </table> + </div> + + {/* Modal */} + {editing && ( + <div className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center p-4"> + <div className="bg-background rounded-lg shadow-xl w-full max-w-2xl p-6 flex flex-col gap-4 max-h-[90vh] overflow-y-auto"> + <h2 className="text-xl font-bold"> + {editing._id ? "Modifier l'article" : "Nouvel article"} + </h2> + + <div className="flex flex-col gap-1"> + <Label>Titre *</Label> + <Input + value={editing.title || ""} + onChange={(e) => + setEditing((p) => p && { ...p, title: e.target.value }) + } + placeholder="Titre de l'article" + /> + {editing.title && ( + <p className="text-xs text-muted-foreground"> + Slug :{" "} + <span className="font-mono"> + {previewSlug(editing.title)} + </span> + </p> + )} + </div> + + <div className="flex flex-col gap-1"> + <Label>Contenu *</Label> + <textarea + className="border rounded px-3 py-2 text-sm resize-y min-h-48 bg-background" + value={editing.content || ""} + onChange={(e) => + setEditing((p) => p && { ...p, content: e.target.value }) + } + placeholder="Rédigez votre article ici..." + /> + </div> + + <div className="flex gap-6 flex-wrap"> + <label className="flex items-center gap-2 cursor-pointer"> + <input + type="checkbox" + checked={editing.isPublished ?? false} + onChange={(e) => + setEditing( + (p) => p && { ...p, isPublished: e.target.checked }, + ) + } + className="h-4 w-4" + /> + <span className="text-sm">Publier l'article</span> + </label> + <label className="flex items-center gap-2 cursor-pointer"> + <input + type="checkbox" + checked={editing.isFeatured ?? false} + onChange={(e) => + setEditing( + (p) => p && { ...p, isFeatured: e.target.checked }, + ) + } + className="h-4 w-4" + /> + <span className="text-sm">★ Mettre à la une</span> + </label> + </div> + + <div className="flex justify-end gap-3 pt-2"> + <Button variant="outline" onClick={() => setEditing(null)}> + Annuler + </Button> + <Button + onClick={handleSave} + disabled={ + saving || !editing.title?.trim() || !editing.content?.trim() + } + > + {saving + ? "Sauvegarde..." + : editing._id + ? "Mettre à jour" + : "Créer l'article"} + </Button> + </div> + </div> + </div> + )} </div> ); } diff --git a/saintBarthVolleyApp/frontend/src/app/admin/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/page.tsx index e879908..fb898eb 100644 --- a/saintBarthVolleyApp/frontend/src/app/admin/page.tsx +++ b/saintBarthVolleyApp/frontend/src/app/admin/page.tsx @@ -1,27 +1,196 @@ -// app/admin/page.tsx +"use client"; +import * as React from "react"; +import Link from "next/link"; +import { apiFetch } from "@/lib/api"; import { SectionAdminCards } from "@/components/dashboard/admin/section-admin-cards"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; + +interface Stats { + totalUsers: number; + totalMembers: number; + activeMembers: number; + totalTeams: number; + activeSeason: string | null; + totalMatches: number; + upcomingMatches: number; + publishedNews: number; + activePartners: number; +} + +interface ScrapingResult { + matchesCreated: number; + matchesUpdated: number; + standings: number; + errors: string[]; + logs: string[]; +} + +interface QuickLink { + label: string; + href: string; + description: string; +} + +const QUICK_LINKS: QuickLink[] = [ + { + label: "Gérer les saisons", + href: "/admin/seasons", + description: "Créer ou modifier les saisons et équipes", + }, + { + label: "Gérer les membres", + href: "/admin/members", + description: "Ajouter ou mettre à jour les joueurs", + }, + { + label: "Actualités", + href: "/admin/news", + description: "Rédiger et publier des articles", + }, + { + label: "Partenaires", + href: "/admin/partners", + description: "Gérer les sponsors et partenaires", + }, + { + label: "Infos du club", + href: "/admin/club", + description: "Modifier les informations du club", + }, +]; export default function AdminDashboardPage() { + const [stats, setStats] = React.useState<Stats | null>(null); + const [loading, setLoading] = React.useState(true); + + const [scraping, setScraping] = React.useState(false); + const [scrapingResult, setScrapingResult] = + React.useState<ScrapingResult | null>(null); + const [scrapingError, setScrapingError] = React.useState<string | null>(null); + const [showLogs, setShowLogs] = React.useState(false); + + React.useEffect(() => { + apiFetch<Stats>("/api/stats") + .then(setStats) + .catch(console.error) + .finally(() => setLoading(false)); + }, []); + + const handleScraping = async () => { + if ( + !confirm("Lancer le scraping FFVB ? Cela peut prendre plusieurs minutes.") + ) + return; + setScraping(true); + setScrapingResult(null); + setScrapingError(null); + try { + const result = await apiFetch<ScrapingResult>("/api/scraping/run", { + method: "POST", + }); + setScrapingResult(result); + // Refresh stats after scraping + const updated = await apiFetch<Stats>("/api/stats").catch(() => null); + if (updated) setStats(updated); + } catch (err) { + setScrapingError( + err instanceof Error ? err.message : "Erreur lors du scraping", + ); + } finally { + setScraping(false); + } + }; + return ( - <div className="flex flex-1 flex-col gap-6"> - <h1 className="text-2xl font-bold">Dashboard Admin</h1> - - <SectionAdminCards - stats={{ - users: 120, - clubs: 12, - teams: 34, - matches: 89, - }} - /> - - {/* Futures sections : - - Graphiques - - Activité récente - - Logs - - Statistiques avancées - */} + <div className="flex flex-1 flex-col gap-8"> + <div className="flex items-start justify-between gap-4 flex-wrap"> + <div> + <h1 className="text-2xl font-bold">Dashboard</h1> + {stats?.activeSeason && ( + <p className="text-sm text-muted-foreground mt-1"> + Saison active :{" "} + <span className="font-medium text-foreground"> + {stats.activeSeason} + </span> + </p> + )} + </div> + + <Button + onClick={handleScraping} + disabled={scraping} + className="bg-orange-600 hover:bg-orange-700 text-white shrink-0" + > + {scraping ? "⟳ Scraping en cours..." : "Lancer le scraping FFVB"} + </Button> + </div> + + {/* Résultat scraping */} + {scrapingResult && ( + <div className="border rounded-lg p-4 bg-green-50 border-green-200 flex flex-col gap-2"> + <div className="font-semibold text-green-800">Scraping terminé</div> + <div className="text-sm text-green-700 flex flex-wrap gap-4"> + <span>{scrapingResult.matchesCreated} match(es) créé(s)</span> + <span>{scrapingResult.matchesUpdated} mis à jour</span> + <span>{scrapingResult.standings} classement(s)</span> + </div> + {scrapingResult.errors.filter(Boolean).length > 0 && ( + <div className="text-sm text-red-600"> + Erreurs : {scrapingResult.errors.join(", ")} + </div> + )} + <button + className="text-xs text-green-600 underline self-start" + onClick={() => setShowLogs((v) => !v)} + > + {showLogs ? "Masquer les logs" : "Voir les logs"} + </button> + {showLogs && ( + <pre className="text-xs bg-white border rounded p-3 overflow-auto max-h-48 whitespace-pre-wrap"> + {scrapingResult.logs.join("\n")} + </pre> + )} + </div> + )} + {scrapingError && ( + <div className="border rounded-lg p-4 bg-red-50 border-red-200 text-red-700 text-sm"> + {scrapingError} + </div> + )} + + <SectionAdminCards stats={stats} loading={loading} /> + + {/* Accès rapides */} + <div> + <h2 className="text-lg font-semibold mb-4">Accès rapides</h2> + <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4"> + {QUICK_LINKS.map((link) => ( + <Card + key={link.href} + className="hover:border-primary/50 transition-colors" + > + <CardHeader className="pb-2"> + <CardTitle className="text-base">{link.label}</CardTitle> + </CardHeader> + <CardContent className="flex flex-col gap-3"> + <p className="text-sm text-muted-foreground"> + {link.description} + </p> + <Button + asChild + size="sm" + variant="outline" + className="self-start" + > + <Link href={link.href}>Accéder →</Link> + </Button> + </CardContent> + </Card> + ))} + </div> + </div> </div> ); } diff --git a/saintBarthVolleyApp/frontend/src/app/admin/partners/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/partners/page.tsx index 3e64a4f..1a74d7f 100644 --- a/saintBarthVolleyApp/frontend/src/app/admin/partners/page.tsx +++ b/saintBarthVolleyApp/frontend/src/app/admin/partners/page.tsx @@ -1,13 +1,340 @@ -// frontend/src/app/admin/partners/page.tsx "use client"; import * as React from "react"; +import { apiFetch } from "@/lib/api"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; + +interface Partner { + _id: string; + name: string; + description?: string; + logo: string; + website?: string; + priority: number; + isActive: boolean; +} + +const EMPTY: Omit<Partner, "_id"> = { + name: "", + description: "", + logo: "", + website: "", + priority: 0, + isActive: true, +}; export default function PartnersPage() { + const [partners, setPartners] = React.useState<Partner[]>([]); + const [loading, setLoading] = React.useState(true); + const [showInactive, setShowInactive] = React.useState(true); + + const [editing, setEditing] = React.useState<Partial<Partner> | null>(null); + const [saving, setSaving] = React.useState(false); + + React.useEffect(() => { + fetchPartners(); + }, []); + + const fetchPartners = async () => { + setLoading(true); + try { + const data: Partner[] = await apiFetch("/api/partners?all=true"); + setPartners(data.sort((a, b) => a.priority - b.priority)); + } catch { + alert("Erreur lors du chargement des partenaires"); + } finally { + setLoading(false); + } + }; + + const handleToggle = async (id: string) => { + try { + const updated: Partner = await apiFetch(`/api/partners/${id}/toggle`, { + method: "PATCH", + }); + setPartners((prev) => + prev.map((p) => (p._id === updated._id ? updated : p)), + ); + } catch { + alert("Erreur lors du changement de statut"); + } + }; + + const handleDelete = async (id: string) => { + if (!confirm("Supprimer ce partenaire ?")) return; + try { + await apiFetch(`/api/partners/${id}`, { method: "DELETE" }); + setPartners((prev) => prev.filter((p) => p._id !== id)); + } catch { + alert("Erreur lors de la suppression"); + } + }; + + const handleSave = async () => { + if (!editing) return; + setSaving(true); + try { + let result: Partner; + if (editing._id) { + result = await apiFetch(`/api/partners/${editing._id}`, { + method: "PUT", + body: JSON.stringify(editing), + }); + setPartners((prev) => + prev + .map((p) => (p._id === result._id ? result : p)) + .sort((a, b) => a.priority - b.priority), + ); + } else { + result = await apiFetch("/api/partners", { + method: "POST", + body: JSON.stringify(editing), + }); + setPartners((prev) => + [...prev, result].sort((a, b) => a.priority - b.priority), + ); + } + setEditing(null); + } catch (err) { + alert( + err instanceof Error ? err.message : "Erreur lors de la sauvegarde", + ); + } finally { + setSaving(false); + } + }; + + const displayed = showInactive + ? partners + : partners.filter((p) => p.isActive); + + if (loading) return <div className="p-6">Chargement...</div>; + return ( - <div className="p-4"> - <h1 className="text-xl font-bold">Gestion des partenaires</h1> - <p>Ici tu pourras gérer les infos des partenaires de l’association.</p> + <div className="flex flex-col gap-6 max-w-7xl mx-auto w-full flex-1"> + <div className="flex flex-col sm:flex-row sm:items-center justify-between gap-4"> + <h1 className="text-2xl font-bold">Partenaires</h1> + <div className="flex items-center gap-3 flex-wrap"> + <label className="flex items-center gap-2 text-sm cursor-pointer select-none"> + <input + type="checkbox" + checked={showInactive} + onChange={(e) => setShowInactive(e.target.checked)} + className="h-4 w-4" + /> + Afficher les inactifs + </label> + <Button onClick={() => setEditing({ ...EMPTY })}> + + Nouveau partenaire + </Button> + </div> + </div> + + {displayed.length === 0 ? ( + <div className="flex flex-col items-center justify-center py-20 text-muted-foreground gap-4 border rounded-lg"> + <p>Aucun partenaire.</p> + <Button variant="outline" onClick={() => setEditing({ ...EMPTY })}> + Ajouter le premier partenaire + </Button> + </div> + ) : ( + <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4"> + {displayed.map((p) => ( + <div + key={p._id} + className={`border rounded-lg p-4 flex flex-col gap-3 transition-opacity ${ + !p.isActive ? "opacity-50" : "" + }`} + > + <div className="flex items-center gap-3"> + {p.logo ? ( + <img + src={p.logo} + alt={p.name} + className="h-12 w-12 object-contain rounded border bg-white p-1 shrink-0" + onError={(e) => { + (e.target as HTMLImageElement).style.display = "none"; + }} + /> + ) : ( + <div className="h-12 w-12 rounded border bg-muted flex items-center justify-center text-xs text-muted-foreground shrink-0"> + Logo + </div> + )} + <div className="flex-1 min-w-0"> + <div className="font-semibold truncate">{p.name}</div> + {p.website && ( + <a + href={p.website} + target="_blank" + rel="noopener noreferrer" + className="text-xs text-blue-600 underline truncate block" + > + {p.website} + </a> + )} + </div> + </div> + + {p.description && ( + <p className="text-sm text-muted-foreground line-clamp-2"> + {p.description} + </p> + )} + + <div className="flex items-center justify-between text-xs text-muted-foreground"> + <span>Priorité : {p.priority}</span> + <span + className={`px-2 py-0.5 rounded-full font-medium ${ + p.isActive + ? "bg-green-100 text-green-700" + : "bg-zinc-100 text-zinc-500" + }`} + > + {p.isActive ? "Actif" : "Inactif"} + </span> + </div> + + <div className="flex gap-2 pt-1 border-t"> + <Button + size="sm" + variant="outline" + className="flex-1" + onClick={() => setEditing(p)} + > + Modifier + </Button> + <Button + size="sm" + variant={p.isActive ? "secondary" : "outline"} + className="flex-1" + onClick={() => handleToggle(p._id)} + > + {p.isActive ? "Désactiver" : "Activer"} + </Button> + <Button + size="sm" + variant="destructive" + onClick={() => handleDelete(p._id)} + > + ✕ + </Button> + </div> + </div> + ))} + </div> + )} + + {/* Modal */} + {editing && ( + <div className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center p-4"> + <div className="bg-background rounded-lg shadow-xl w-full max-w-md p-6 flex flex-col gap-4 max-h-[90vh] overflow-y-auto"> + <h2 className="text-xl font-bold"> + {editing._id ? "Modifier le partenaire" : "Nouveau partenaire"} + </h2> + + <div className="flex flex-col gap-1"> + <Label>Nom *</Label> + <Input + value={editing.name || ""} + onChange={(e) => + setEditing((p) => p && { ...p, name: e.target.value }) + } + placeholder="Nom du partenaire" + /> + </div> + + <div className="flex flex-col gap-1"> + <Label>Logo (URL de l'image)</Label> + <Input + value={editing.logo || ""} + onChange={(e) => + setEditing((p) => p && { ...p, logo: e.target.value }) + } + placeholder="https://example.com/logo.png" + /> + {editing.logo && ( + <img + src={editing.logo} + alt="Aperçu logo" + className="h-14 w-auto object-contain border rounded p-1 bg-white mt-1 self-start" + onError={(e) => { + (e.target as HTMLImageElement).style.display = "none"; + }} + /> + )} + </div> + + <div className="flex flex-col gap-1"> + <Label>Site web</Label> + <Input + value={editing.website || ""} + onChange={(e) => + setEditing((p) => p && { ...p, website: e.target.value }) + } + placeholder="https://example.com" + /> + </div> + + <div className="flex flex-col gap-1"> + <Label>Description</Label> + <textarea + className="border rounded px-3 py-2 text-sm resize-none h-20 bg-background" + value={editing.description || ""} + onChange={(e) => + setEditing((p) => p && { ...p, description: e.target.value }) + } + placeholder="Quelques mots sur ce partenaire..." + /> + </div> + + <div className="flex flex-col gap-1"> + <Label>Priorité d'affichage</Label> + <Input + type="number" + min={0} + value={editing.priority ?? 0} + onChange={(e) => + setEditing( + (p) => p && { ...p, priority: Number(e.target.value) }, + ) + } + /> + <p className="text-xs text-muted-foreground"> + Valeur la plus basse = affiché en premier sur le site + </p> + </div> + + <label className="flex items-center gap-2 cursor-pointer"> + <input + type="checkbox" + checked={editing.isActive ?? true} + onChange={(e) => + setEditing((p) => p && { ...p, isActive: e.target.checked }) + } + className="h-4 w-4" + /> + <span className="text-sm"> + Partenaire actif (visible sur le site) + </span> + </label> + + <div className="flex justify-end gap-3 pt-2"> + <Button variant="outline" onClick={() => setEditing(null)}> + Annuler + </Button> + <Button + onClick={handleSave} + disabled={saving || !editing.name?.trim()} + > + {saving ? "Sauvegarde..." : "Sauvegarder"} + </Button> + </div> + </div> + </div> + )} </div> ); } diff --git a/saintBarthVolleyApp/frontend/src/app/admin/seasons/[seasonId]/teams/[teamId]/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/seasons/[seasonId]/teams/[teamId]/page.tsx new file mode 100644 index 0000000..d40b1d3 --- /dev/null +++ b/saintBarthVolleyApp/frontend/src/app/admin/seasons/[seasonId]/teams/[teamId]/page.tsx @@ -0,0 +1,1195 @@ +"use client"; + +import * as React from "react"; +import { useParams, useRouter } from "next/navigation"; +import { apiFetch } from "@/lib/api"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/components/ui/select"; + +const API = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:5000"; + +// ─── Types ──────────────────────────────────────────────────────────────────── + +interface TrainingSlot { + day: string; + startTime: string; + endTime: string; + location: string; +} + +interface Team { + _id: string; + name: string; + category: "Young" | "Senior" | "Veteran"; + gender: "Male" | "Female" | "Mixed"; + level?: string; + seasonId: string; + federationUrl?: string; + trainingSchedule: TrainingSlot[]; +} + +interface Standing { + _id: string; + teamName: string; + rank: number; + points: number; + played: number; + wins: number; + losses: number; + setsFor: number; + setsAgainst: number; +} + +interface Match { + _id: string; + opponentName: string; + date: string; + homeAway: "home" | "away"; + status: "scheduled" | "played"; + scoreFor?: number; + scoreAgainst?: number; +} + +interface TeamRole { + _id: string; // subdoc ObjectId + teamId: string; + seasonId: string; + roles: string[]; + isCaptain: boolean; + position?: string; + photo?: string; // photo propre à cette affectation +} + +interface Member { + _id: string; + firstName: string; + lastName: string; + isActive: boolean; + teamRoles: TeamRole[]; +} + +// ─── Constants ──────────────────────────────────────────────────────────────── + +const DAYS = [ + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + "Sunday", +] as const; +const DAY_LABELS: Record<string, string> = { + Monday: "Lundi", + Tuesday: "Mardi", + Wednesday: "Mercredi", + Thursday: "Jeudi", + Friday: "Vendredi", + Saturday: "Samedi", + Sunday: "Dimanche", +}; +const ROLES = [ + "player", + "coach", + "staff", + "referee", + "volunteer", + "owner", +] as const; +const ROLE_LABELS: Record<string, string> = { + player: "Joueur", + coach: "Entraîneur", + staff: "Staff", + referee: "Arbitre", + volunteer: "Bénévole", + owner: "Dirigeant", +}; +const CLUB_NAME = "AS SAINT-BARTHELEMY D'ANJOU V.B."; + +const EMPTY_ROLE_FORM = { + roles: ["player"] as string[], + position: "", + isCaptain: false, +}; + +// ─── Page ───────────────────────────────────────────────────────────────────── + +export default function TeamDetailPage() { + const { seasonId, teamId } = useParams(); + const router = useRouter(); + + const id = Array.isArray(teamId) ? teamId[0] : (teamId as string); + const sid = Array.isArray(seasonId) ? seasonId[0] : (seasonId as string); + + // Core data + const [team, setTeam] = React.useState<Team | null>(null); + const [form, setForm] = React.useState<Team | null>(null); + const [standings, setStandings] = React.useState<Standing[]>([]); + const [matches, setMatches] = React.useState<Match[]>([]); + const [allClubMembers, setAllClubMembers] = React.useState<Member[]>([]); + const [loading, setLoading] = React.useState(true); + const [saving, setSaving] = React.useState(false); + const [saved, setSaved] = React.useState(false); + + // Add member modal (2 steps: pick → configure) + const [showAdd, setShowAdd] = React.useState(false); + const [addSearch, setAddSearch] = React.useState(""); + const [addSelected, setAddSelected] = React.useState<Member | null>(null); + const [addForm, setAddForm] = React.useState(EMPTY_ROLE_FORM); + const [addSaving, setAddSaving] = React.useState(false); + + // Edit member in team modal + const [editingMember, setEditingMember] = React.useState<Member | null>(null); + const [editRoleId, setEditRoleId] = React.useState<string>(""); + const [editForm, setEditForm] = React.useState(EMPTY_ROLE_FORM); + const [editSaving, setEditSaving] = React.useState(false); + const [photoUploading, setPhotoUploading] = React.useState(false); + + // ── Computed ────────────────────────────────────────────────────────────── + const teamMembers = allClubMembers.filter((m) => + m.teamRoles?.some((tr) => tr.teamId === id), + ); + const availableMembers = allClubMembers.filter( + (m) => !m.teamRoles?.some((tr) => tr.teamId === id), + ); + const filteredAvailable = availableMembers.filter((m) => { + if (!addSearch) return true; + return `${m.firstName} ${m.lastName}` + .toLowerCase() + .includes(addSearch.toLowerCase()); + }); + + const players = teamMembers.filter((m) => + m.teamRoles.some((tr) => tr.teamId === id && tr.roles.includes("player")), + ); + const staffMembers = teamMembers.filter((m) => + m.teamRoles.some( + (tr) => tr.teamId === id && tr.roles.some((r) => r !== "player"), + ), + ); + + // ── Load ────────────────────────────────────────────────────────────────── + const refreshMembers = React.useCallback(async () => { + const data = await apiFetch<Member[]>("/api/members"); + setAllClubMembers(data); + }, []); + + React.useEffect(() => { + if (!id) return; + Promise.all([ + apiFetch<Team>(`/api/teams/${id}`), + apiFetch<Standing[]>(`/api/standings?teamId=${id}`), + apiFetch<Member[]>("/api/members"), + apiFetch<Match[]>(`/api/matches?teamId=${id}`), + ]) + .then(([teamData, standingsData, membersData, matchesData]) => { + setTeam(teamData); + setForm({ + ...teamData, + trainingSchedule: teamData.trainingSchedule ?? [], + }); + setStandings(standingsData); + setAllClubMembers(membersData); + setMatches(matchesData); + }) + .catch(() => alert("Erreur lors du chargement")) + .finally(() => setLoading(false)); + }, [id]); + + // ── Team save ───────────────────────────────────────────────────────────── + const handleSave = async () => { + if (!form) return; + setSaving(true); + try { + const updated = await apiFetch<Team>(`/api/teams/${form._id}`, { + method: "PUT", + body: JSON.stringify(form), + }); + setTeam(updated); + setForm({ ...updated, trainingSchedule: updated.trainingSchedule ?? [] }); + setSaved(true); + setTimeout(() => setSaved(false), 2000); + } catch { + alert("Erreur lors de la sauvegarde"); + } finally { + setSaving(false); + } + }; + + // ── Add member ──────────────────────────────────────────────────────────── + const handleAddMember = async () => { + if (!addSelected) return; + setAddSaving(true); + try { + await apiFetch(`/api/members/${addSelected._id}/roles`, { + method: "POST", + body: JSON.stringify({ teamId: id, seasonId: sid, ...addForm }), + }); + await refreshMembers(); + setShowAdd(false); + setAddSelected(null); + setAddSearch(""); + setAddForm(EMPTY_ROLE_FORM); + } catch { + alert("Erreur lors de l'ajout"); + } finally { + setAddSaving(false); + } + }; + + // ── Edit member role ────────────────────────────────────────────────────── + const openEdit = (m: Member) => { + const role = m.teamRoles.find((tr) => tr.teamId === id); + setEditingMember(m); + setEditRoleId(role?._id ?? ""); + setEditForm({ + roles: role?.roles ?? ["player"], + position: role?.position ?? "", + isCaptain: role?.isCaptain ?? false, + }); + }; + + const handleEditSave = async () => { + if (!editingMember || !editRoleId) return; + setEditSaving(true); + try { + await apiFetch(`/api/members/${editingMember._id}/roles/${editRoleId}`, { + method: "PUT", + body: JSON.stringify(editForm), + }); + await refreshMembers(); + // Keep modal open so admin can also change photo + const refreshed: Member[] = await apiFetch("/api/members"); + const updated = refreshed.find((m) => m._id === editingMember._id); + if (updated) setEditingMember(updated); + } catch { + alert("Erreur lors de la sauvegarde"); + } finally { + setEditSaving(false); + } + }; + + // ── Photo upload ────────────────────────────────────────────────────────── + const handlePhotoUpload = async ( + file: File, + memberId: string, + roleId: string, + oldPhoto?: string, + ) => { + setPhotoUploading(true); + try { + const fd = new FormData(); + fd.append("file", file); + if (oldPhoto) fd.append("oldFile", oldPhoto.replace("/uploads/", "")); + const res = await fetch(`${API}/api/upload`, { + method: "POST", + credentials: "include", + body: fd, + }); + const { fileUrl } = await res.json(); + // Sauvegarder la photo sur le rôle (affectation équipe), pas sur le membre global + await apiFetch(`/api/members/${memberId}/roles/${roleId}`, { + method: "PUT", + body: JSON.stringify({ photo: fileUrl }), + }); + await refreshMembers(); + // Mettre à jour le membre dans la modal + const refreshed: Member[] = await apiFetch("/api/members"); + const updated = refreshed.find((m) => m._id === memberId); + if (updated) setEditingMember(updated); + } catch { + alert("Erreur lors de l'upload de la photo"); + } finally { + setPhotoUploading(false); + } + }; + + // ── Remove member from team ─────────────────────────────────────────────── + const handleRemove = async (m: Member) => { + if (!confirm(`Retirer ${m.firstName} ${m.lastName} de l'équipe ?`)) return; + const role = m.teamRoles.find((tr) => tr.teamId === id); + if (!role) return; + try { + await apiFetch(`/api/members/${m._id}/roles/${role._id}`, { + method: "DELETE", + }); + await refreshMembers(); + } catch { + alert("Erreur lors du retrait"); + } + }; + + // ── Training schedule ───────────────────────────────────────────────────── + const addSlot = () => + setForm((p) => + p + ? { + ...p, + trainingSchedule: [ + ...p.trainingSchedule, + { + day: "Monday", + startTime: "18:00", + endTime: "20:00", + location: "", + }, + ], + } + : p, + ); + const removeSlot = (idx: number) => + setForm((p) => + p + ? { + ...p, + trainingSchedule: p.trainingSchedule.filter((_, i) => i !== idx), + } + : p, + ); + const updateSlot = (idx: number, field: keyof TrainingSlot, value: string) => + setForm((p) => { + if (!p) return p; + const slots = [...p.trainingSchedule]; + slots[idx] = { ...slots[idx], [field]: value }; + return { ...p, trainingSchedule: slots }; + }); + + // ── Render helpers ──────────────────────────────────────────────────────── + const Avatar = ({ + member, + photo, + size = "md", + }: { + member: Member; + photo?: string; + size?: "sm" | "md" | "lg"; + }) => { + const cls = + size === "lg" + ? "h-16 w-16 text-base" + : size === "sm" + ? "h-7 w-7 text-xs" + : "h-10 w-10 text-sm"; + if (photo) { + return ( + <img + src={`${API}${photo}`} + alt={`${member.firstName} ${member.lastName}`} + className={`${cls} rounded-full object-cover shrink-0`} + /> + ); + } + return ( + <div + className={`${cls} rounded-full bg-muted flex items-center justify-center font-bold shrink-0`} + > + {member.firstName[0]} + {member.lastName[0]} + </div> + ); + }; + + // ───────────────────────────────────────────────────────────────────────── + if (loading) return <div className="p-6">Chargement...</div>; + if (!form || !team) + return <div className="p-6 text-red-600">Équipe introuvable</div>; + + const sortedStandings = [...standings].sort((a, b) => a.rank - b.rank); + const ourRank = sortedStandings.find((s) => s.teamName === CLUB_NAME); + + return ( + <div className="flex flex-col gap-8 max-w-4xl mx-auto w-full pb-10"> + {/* ── Header ── */} + <div className="flex items-center gap-4"> + <Button + variant="outline" + size="sm" + onClick={() => router.push(`/admin/seasons/${sid}/teams`)} + > + ← Retour + </Button> + <div> + <h1 className="text-2xl font-bold">{team.name}</h1> + <p className="text-sm text-muted-foreground"> + {team.category} · {team.gender} + {team.level ? ` · ${team.level}` : ""} + </p> + </div> + </div> + + {/* ── Classement ── */} + {sortedStandings.length > 0 && ( + <section className="border rounded-lg p-6 flex flex-col gap-4"> + <div className="flex items-center justify-between flex-wrap gap-2"> + <h2 className="text-lg font-semibold">Classement</h2> + {ourRank && ( + <span className="text-sm font-medium bg-blue-100 text-blue-700 px-3 py-1 rounded-full"> + {ourRank.rank}e · {ourRank.points} pts · {ourRank.wins}V{" "} + {ourRank.losses}D + </span> + )} + </div> + <div className="overflow-auto rounded border"> + <table className="w-full text-sm"> + <thead className="bg-muted"> + <tr> + <th className="p-2 text-center w-8">#</th> + <th className="p-2 text-left">Équipe</th> + <th className="p-2 text-center">Pts</th> + <th className="p-2 text-center">J</th> + <th className="p-2 text-center">V</th> + <th className="p-2 text-center">D</th> + <th className="p-2 text-center hidden sm:table-cell">S+</th> + <th className="p-2 text-center hidden sm:table-cell">S-</th> + </tr> + </thead> + <tbody> + {sortedStandings.map((s) => { + const isUs = s.teamName === CLUB_NAME; + return ( + <tr + key={s._id} + className={`border-t ${isUs ? "bg-blue-50 font-semibold" : ""}`} + > + <td className="p-2 text-center text-muted-foreground"> + {s.rank} + </td> + <td className="p-2"> + {isUs ? ( + <span className="flex items-center gap-1.5"> + <span className="w-2 h-2 rounded-full bg-blue-500 shrink-0" /> + {s.teamName} + </span> + ) : ( + s.teamName + )} + </td> + <td className="p-2 text-center font-bold">{s.points}</td> + <td className="p-2 text-center">{s.played}</td> + <td className="p-2 text-center text-green-600"> + {s.wins} + </td> + <td className="p-2 text-center text-red-500"> + {s.losses} + </td> + <td className="p-2 text-center hidden sm:table-cell"> + {s.setsFor} + </td> + <td className="p-2 text-center hidden sm:table-cell"> + {s.setsAgainst} + </td> + </tr> + ); + })} + </tbody> + </table> + </div> + </section> + )} + + {/* ── Matches ── */} + {matches.length > 0 && ( + <section className="border rounded-lg p-6 flex flex-col gap-4"> + <h2 className="text-lg font-semibold"> + Matches + <span className="ml-2 text-sm font-normal text-muted-foreground"> + ({matches.length}) + </span> + </h2> + <div className="overflow-auto rounded border"> + <table className="w-full text-sm"> + <thead className="bg-muted"> + <tr> + <th className="p-2 text-left">Date</th> + <th className="p-2 text-left">Adversaire</th> + <th className="p-2 text-center">D/E</th> + <th className="p-2 text-center">Statut</th> + <th className="p-2 text-center">Score</th> + </tr> + </thead> + <tbody> + {[...matches] + .sort( + (a, b) => + new Date(a.date).getTime() - new Date(b.date).getTime(), + ) + .map((m) => ( + <tr key={m._id} className="border-t"> + <td className="p-2 whitespace-nowrap text-muted-foreground"> + {new Date(m.date).toLocaleString("fr-FR", { + day: "2-digit", + month: "2-digit", + year: "numeric", + hour: "2-digit", + minute: "2-digit", + })} + </td> + <td className="p-2 font-medium">{m.opponentName}</td> + <td className="p-2 text-center"> + <span + className={`px-2 py-0.5 rounded text-xs font-medium ${ + m.homeAway === "home" + ? "bg-blue-100 text-blue-700" + : "bg-purple-100 text-purple-700" + }`} + > + {m.homeAway === "home" ? "Dom." : "Ext."} + </span> + </td> + <td className="p-2 text-center"> + <span + className={`px-2 py-0.5 rounded text-xs font-medium ${ + m.status === "played" + ? "bg-green-100 text-green-700" + : "bg-yellow-100 text-yellow-700" + }`} + > + {m.status === "played" ? "Joué" : "Prévu"} + </span> + </td> + <td className="p-2 text-center font-mono"> + {m.status === "played" + ? `${m.scoreFor} - ${m.scoreAgainst}` + : "-"} + </td> + </tr> + ))} + </tbody> + </table> + </div> + </section> + )} + + {/* ── Joueurs & Staff ── */} + <section className="border rounded-lg p-6 flex flex-col gap-4"> + <div className="flex items-center justify-between"> + <h2 className="text-lg font-semibold"> + Joueurs & Staff + <span className="ml-2 text-sm font-normal text-muted-foreground"> + {teamMembers.length} membre{teamMembers.length !== 1 ? "s" : ""} + </span> + </h2> + <Button + size="sm" + onClick={() => { + setShowAdd(true); + setAddSelected(null); + setAddSearch(""); + setAddForm(EMPTY_ROLE_FORM); + }} + > + + Ajouter un membre + </Button> + </div> + + {teamMembers.length === 0 ? ( + <p className="text-sm text-muted-foreground"> + Aucun membre assigné à cette équipe. + </p> + ) : ( + <div className="flex flex-col gap-5"> + {/* Joueurs */} + {players.length > 0 && ( + <div> + <h3 className="text-xs font-semibold uppercase tracking-wide text-muted-foreground mb-2"> + Joueurs ({players.length}) + </h3> + <div className="grid grid-cols-1 sm:grid-cols-2 gap-2"> + {players.map((m) => { + const role = m.teamRoles.find((tr) => tr.teamId === id); + return ( + <MemberCard + key={m._id} + member={m} + role={role} + Avatar={<Avatar member={m} photo={role?.photo} />} + onEdit={() => openEdit(m)} + onRemove={() => handleRemove(m)} + /> + ); + })} + </div> + </div> + )} + + {/* Staff */} + {staffMembers.length > 0 && ( + <div> + <h3 className="text-xs font-semibold uppercase tracking-wide text-muted-foreground mb-2"> + Staff ({staffMembers.length}) + </h3> + <div className="grid grid-cols-1 sm:grid-cols-2 gap-2"> + {staffMembers.map((m) => { + const role = m.teamRoles.find((tr) => tr.teamId === id); + return ( + <MemberCard + key={m._id} + member={m} + role={role} + Avatar={<Avatar member={m} photo={role?.photo} />} + onEdit={() => openEdit(m)} + onRemove={() => handleRemove(m)} + /> + ); + })} + </div> + </div> + )} + </div> + )} + </section> + + {/* ── Infos générales ── */} + <section className="border rounded-lg p-6 flex flex-col gap-4"> + <h2 className="text-lg font-semibold">Informations générales</h2> + + <div className="flex flex-col gap-2"> + <Label htmlFor="name">Nom *</Label> + <Input + id="name" + value={form.name} + onChange={(e) => + setForm((p) => p && { ...p, name: e.target.value }) + } + /> + </div> + + <div className="grid grid-cols-1 sm:grid-cols-2 gap-4"> + <div className="flex flex-col gap-2"> + <Label>Catégorie *</Label> + <Select + value={form.category} + onValueChange={(v) => + setForm((p) => p && { ...p, category: v as Team["category"] }) + } + > + <SelectTrigger> + <SelectValue /> + </SelectTrigger> + <SelectContent> + <SelectItem value="Young">Young</SelectItem> + <SelectItem value="Senior">Senior</SelectItem> + <SelectItem value="Veteran">Veteran</SelectItem> + </SelectContent> + </Select> + </div> + <div className="flex flex-col gap-2"> + <Label>Genre *</Label> + <Select + value={form.gender} + onValueChange={(v) => + setForm((p) => p && { ...p, gender: v as Team["gender"] }) + } + > + <SelectTrigger> + <SelectValue /> + </SelectTrigger> + <SelectContent> + <SelectItem value="Male">Masculin</SelectItem> + <SelectItem value="Female">Féminin</SelectItem> + <SelectItem value="Mixed">Mixte</SelectItem> + </SelectContent> + </Select> + </div> + </div> + + <div className="flex flex-col gap-2"> + <Label htmlFor="level">Niveau</Label> + <Input + id="level" + value={form.level || ""} + onChange={(e) => + setForm((p) => p && { ...p, level: e.target.value }) + } + placeholder="Ex: Régional 1" + /> + </div> + + <div className="flex flex-col gap-2"> + <Label htmlFor="federationUrl">URL FFVB</Label> + <Input + id="federationUrl" + value={form.federationUrl || ""} + onChange={(e) => + setForm((p) => p && { ...p, federationUrl: e.target.value }) + } + placeholder="https://www.ffvb.org/..." + /> + <p className="text-xs text-muted-foreground"> + Utilisée pour le scraping automatique des matches et classements. + </p> + </div> + + <div className="flex justify-end gap-3 pt-2"> + {saved && ( + <span className="text-sm text-green-600 self-center"> + ✓ Sauvegardé + </span> + )} + <Button onClick={handleSave} disabled={saving}> + {saving ? "Sauvegarde..." : "Sauvegarder"} + </Button> + </div> + </section> + + {/* ── Planning d'entraînement ── */} + <section className="border rounded-lg p-6 flex flex-col gap-4"> + <div className="flex items-center justify-between"> + <h2 className="text-lg font-semibold"> + Planning d'entraînement + </h2> + <Button size="sm" variant="outline" onClick={addSlot}> + + Ajouter un créneau + </Button> + </div> + + {form.trainingSchedule.length === 0 && ( + <p className="text-sm text-muted-foreground"> + Aucun créneau d'entraînement. + </p> + )} + + {form.trainingSchedule.map((slot, idx) => ( + <div + key={idx} + className="border rounded p-4 flex flex-col gap-3 bg-muted/20" + > + <div className="grid grid-cols-1 sm:grid-cols-2 gap-3"> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Jour</Label> + <Select + value={slot.day} + onValueChange={(v) => updateSlot(idx, "day", v)} + > + <SelectTrigger className="h-9"> + <SelectValue /> + </SelectTrigger> + <SelectContent> + {DAYS.map((d) => ( + <SelectItem key={d} value={d}> + {DAY_LABELS[d]} + </SelectItem> + ))} + </SelectContent> + </Select> + </div> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Lieu</Label> + <Input + className="h-9" + value={slot.location} + onChange={(e) => updateSlot(idx, "location", e.target.value)} + placeholder="Gymnase..." + /> + </div> + </div> + <div className="grid grid-cols-2 gap-3"> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Début</Label> + <Input + type="time" + className="h-9" + value={slot.startTime} + onChange={(e) => updateSlot(idx, "startTime", e.target.value)} + /> + </div> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Fin</Label> + <Input + type="time" + className="h-9" + value={slot.endTime} + onChange={(e) => updateSlot(idx, "endTime", e.target.value)} + /> + </div> + </div> + <Button + type="button" + size="sm" + variant="destructive" + className="self-end" + onClick={() => removeSlot(idx)} + > + Supprimer + </Button> + </div> + ))} + + {form.trainingSchedule.length > 0 && ( + <div className="flex justify-end gap-3"> + {saved && ( + <span className="text-sm text-green-600 self-center"> + ✓ Sauvegardé + </span> + )} + <Button onClick={handleSave} disabled={saving}> + {saving ? "Sauvegarde..." : "Sauvegarder le planning"} + </Button> + </div> + )} + </section> + + {/* ══ Modal : Ajouter un membre ══ */} + {showAdd && ( + <div className="fixed inset-0 z-50 bg-black/40 flex items-end sm:items-center justify-center p-4"> + <div className="bg-background rounded-xl shadow-xl w-full max-w-lg flex flex-col max-h-[85vh]"> + <div className="p-5 border-b flex items-center justify-between shrink-0"> + <h2 className="text-lg font-semibold"> + {addSelected + ? `Configurer · ${addSelected.firstName} ${addSelected.lastName}` + : "Choisir un membre"} + </h2> + <button + onClick={() => setShowAdd(false)} + className="text-muted-foreground hover:text-foreground text-xl leading-none" + > + × + </button> + </div> + + {!addSelected ? ( + /* Step 1 — pick from roster */ + <> + <div className="p-4 border-b shrink-0"> + <Input + placeholder="Rechercher..." + value={addSearch} + onChange={(e) => setAddSearch(e.target.value)} + autoFocus + /> + </div> + <div className="overflow-y-auto flex-1"> + {filteredAvailable.length === 0 ? ( + <p className="text-sm text-muted-foreground p-6 text-center"> + {availableMembers.length === 0 + ? "Tous les membres du club sont déjà dans cette équipe." + : "Aucun résultat."} + </p> + ) : ( + filteredAvailable.map((m) => ( + <button + key={m._id} + className="w-full flex items-center gap-3 px-5 py-3 hover:bg-muted text-left transition-colors" + onClick={() => setAddSelected(m)} + > + <div className="h-9 w-9 rounded-full bg-muted flex items-center justify-center text-xs font-bold shrink-0"> + {m.firstName[0]} + {m.lastName[0]} + </div> + <div> + <div className="font-medium text-sm"> + {m.firstName} {m.lastName} + </div> + {!m.isActive && ( + <div className="text-xs text-muted-foreground"> + Inactif + </div> + )} + </div> + </button> + )) + )} + </div> + </> + ) : ( + /* Step 2 — configure role */ + <div className="p-5 flex flex-col gap-4 overflow-y-auto flex-1"> + <div className="grid grid-cols-2 gap-4"> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Rôle *</Label> + <Select + value={addForm.roles[0]} + onValueChange={(v) => + setAddForm((p) => ({ ...p, roles: [v] })) + } + > + <SelectTrigger> + <SelectValue /> + </SelectTrigger> + <SelectContent> + {ROLES.map((r) => ( + <SelectItem key={r} value={r}> + {ROLE_LABELS[r]} + </SelectItem> + ))} + </SelectContent> + </Select> + </div> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Poste</Label> + <Input + placeholder="Ex: Libéro" + value={addForm.position} + onChange={(e) => + setAddForm((p) => ({ ...p, position: e.target.value })) + } + /> + </div> + </div> + <div className="flex items-center gap-2"> + <input + type="checkbox" + id="addCaptain" + checked={addForm.isCaptain} + onChange={(e) => + setAddForm((p) => ({ ...p, isCaptain: e.target.checked })) + } + className="h-4 w-4" + /> + <Label htmlFor="addCaptain">Capitaine de l'équipe</Label> + </div> + + <div className="flex justify-between gap-3 pt-2"> + <Button + variant="outline" + size="sm" + onClick={() => setAddSelected(null)} + > + ← Retour + </Button> + <Button onClick={handleAddMember} disabled={addSaving}> + {addSaving ? "Ajout en cours..." : "Ajouter à l'équipe"} + </Button> + </div> + </div> + )} + </div> + </div> + )} + + {/* ══ Modal : Modifier membre dans l'équipe ══ */} + {editingMember && ( + <div className="fixed inset-0 z-50 bg-black/40 flex items-end sm:items-center justify-center p-4"> + <div className="bg-background rounded-xl shadow-xl w-full max-w-md flex flex-col max-h-[85vh]"> + <div className="p-5 border-b flex items-center justify-between shrink-0"> + <h2 className="text-lg font-semibold"> + {editingMember.firstName} {editingMember.lastName} + </h2> + <button + onClick={() => setEditingMember(null)} + className="text-muted-foreground hover:text-foreground text-xl leading-none" + > + × + </button> + </div> + + <div className="p-5 flex flex-col gap-5 overflow-y-auto flex-1"> + {/* Photo */} + <div className="flex flex-col gap-2"> + <Label className="text-xs font-semibold uppercase tracking-wide"> + Photo + </Label> + <p className="text-xs text-muted-foreground -mt-1"> + Photo pour cette équipe (peut être différente d'une + saison à l'autre) + </p> + <div className="flex items-center gap-4"> + {(() => { + const role = editingMember.teamRoles.find( + (tr) => tr.teamId === id, + ); + const rolePhoto = role?.photo; + return ( + <div className="h-16 w-16 rounded-full bg-muted flex items-center justify-center text-lg font-bold overflow-hidden shrink-0"> + {rolePhoto ? ( + <img + src={`${API}${rolePhoto}`} + className="h-full w-full object-cover" + alt="" + /> + ) : ( + <> + {editingMember.firstName[0]} + {editingMember.lastName[0]} + </> + )} + </div> + ); + })()} + <div className="flex flex-col gap-1"> + <label className="cursor-pointer"> + <span + className={`inline-block px-3 py-1.5 rounded border text-sm font-medium hover:bg-muted transition-colors ${photoUploading ? "opacity-50 pointer-events-none" : ""}`} + > + {photoUploading + ? "Upload en cours..." + : "Changer la photo"} + </span> + <input + type="file" + accept="image/*" + className="hidden" + disabled={photoUploading} + onChange={(e) => { + const file = e.target.files?.[0]; + if (file) { + const role = editingMember.teamRoles.find( + (tr) => tr.teamId === id, + ); + handlePhotoUpload( + file, + editingMember._id, + editRoleId, + role?.photo, + ); + } + e.target.value = ""; + }} + /> + </label> + <p className="text-xs text-muted-foreground"> + JPG, PNG — max 5 Mo + </p> + </div> + </div> + </div> + + {/* Rôle dans l'équipe */} + <div className="flex flex-col gap-3 border-t pt-4"> + <Label className="text-xs font-semibold uppercase tracking-wide"> + Rôle dans l'équipe + </Label> + + <div className="grid grid-cols-2 gap-4"> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Rôle</Label> + <Select + value={editForm.roles[0]} + onValueChange={(v) => + setEditForm((p) => ({ ...p, roles: [v] })) + } + > + <SelectTrigger> + <SelectValue /> + </SelectTrigger> + <SelectContent> + {ROLES.map((r) => ( + <SelectItem key={r} value={r}> + {ROLE_LABELS[r]} + </SelectItem> + ))} + </SelectContent> + </Select> + </div> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Poste</Label> + <Input + placeholder="Ex: Libéro" + value={editForm.position} + onChange={(e) => + setEditForm((p) => ({ ...p, position: e.target.value })) + } + /> + </div> + </div> + + <div className="flex items-center gap-2"> + <input + type="checkbox" + id="editCaptain" + checked={editForm.isCaptain} + onChange={(e) => + setEditForm((p) => ({ + ...p, + isCaptain: e.target.checked, + })) + } + className="h-4 w-4" + /> + <Label htmlFor="editCaptain"> + Capitaine de l'équipe + </Label> + </div> + + <div className="flex justify-end gap-3 pt-1"> + <Button onClick={handleEditSave} disabled={editSaving}> + {editSaving ? "Sauvegarde..." : "Sauvegarder"} + </Button> + </div> + </div> + </div> + </div> + </div> + )} + </div> + ); +} + +// ─── Member Card Component ───────────────────────────────────────────────────── + +function MemberCard({ + member, + role, + Avatar, + onEdit, + onRemove, +}: { + member: Member; + role?: TeamRole; + Avatar: React.ReactNode; + onEdit: () => void; + onRemove: () => void; +}) { + return ( + <div className="flex items-center gap-3 border rounded-lg p-3 hover:bg-muted/30 transition-colors"> + {Avatar} + <div className="flex-1 min-w-0"> + <div className="font-medium text-sm truncate flex items-center gap-1.5"> + {member.firstName} {member.lastName} + {role?.isCaptain && ( + <span className="text-xs bg-yellow-100 text-yellow-700 px-1.5 py-0.5 rounded font-normal"> + C + </span> + )} + {!member.isActive && ( + <span className="text-xs text-muted-foreground font-normal"> + · Inactif + </span> + )} + </div> + <div className="text-xs text-muted-foreground"> + {role?.position || + role?.roles + .map( + (r) => + ({ + player: "Joueur", + coach: "Entraîneur", + staff: "Staff", + referee: "Arbitre", + volunteer: "Bénévole", + owner: "Dirigeant", + })[r] ?? r, + ) + .join(", ")} + </div> + </div> + <div className="flex gap-1 shrink-0"> + <Button + size="sm" + variant="ghost" + className="h-8 px-2 text-xs" + onClick={onEdit} + > + Modifier + </Button> + <Button + size="sm" + variant="ghost" + className="h-8 px-2 text-xs text-red-500 hover:text-red-700" + onClick={onRemove} + > + Retirer + </Button> + </div> + </div> + ); +} diff --git a/saintBarthVolleyApp/frontend/src/app/admin/seasons/[seasonId]/teams/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/seasons/[seasonId]/teams/page.tsx new file mode 100644 index 0000000..6fe1ee6 --- /dev/null +++ b/saintBarthVolleyApp/frontend/src/app/admin/seasons/[seasonId]/teams/page.tsx @@ -0,0 +1,172 @@ +"use client"; + +import * as React from "react"; +import { useParams, useRouter } from "next/navigation"; +import { apiFetch } from "@/lib/api"; +import { Button } from "@/components/ui/button"; +import { TeamForm } from "@/components/dashboard/admin/team-form"; // Assurez-vous que ce composant accepte category: "Young" | "Senior" | "Veteran" + +interface Team { + _id?: string; + name: string; + category: "Young" | "Senior" | "Veteran"; + gender: "Mixed" | "Male" | "Female"; + level?: string; + seasonId: string; +} + +export default function SeasonTeamsPage() { + const { seasonId } = useParams(); + const router = useRouter(); + + const [teams, setTeams] = React.useState<Team[]>([]); + const [loading, setLoading] = React.useState(true); + const [editingTeam, setEditingTeam] = React.useState<Team | null>(null); + + // 🔹 Récupération des équipes + const fetchTeams = React.useCallback(async () => { + if (!seasonId || Array.isArray(seasonId)) return; + setLoading(true); + try { + const data = await apiFetch<Team[]>(`/api/teams?seasonId=${seasonId}`); + setTeams(data); + } catch (err) { + console.error(err); + alert("Erreur lors de la récupération des équipes"); + } finally { + setLoading(false); + } + }, [seasonId]); + + React.useEffect(() => { + fetchTeams(); + }, [fetchTeams]); + + // 🔹 Supprimer une équipe + const handleDelete = async (id?: string) => { + if (!id) return; + if (!confirm("Supprimer cette équipe ?")) return; + try { + await apiFetch(`/api/teams/${id}`, { method: "DELETE" }); + setTeams((prev) => prev.filter((t) => t._id !== id)); + } catch (err) { + console.error(err); + alert("Erreur lors de la suppression"); + } + }; + + // 🔹 Créer ou modifier une équipe + const handleSave = async (team: Team) => { + try { + if (team._id) { + // Mise à jour + const updated = await apiFetch<Team>(`/api/teams/${team._id}`, { + method: "PUT", + body: JSON.stringify(team), + }); + setTeams((prev) => + prev.map((t) => (t._id === updated._id ? updated : t)), + ); + } else { + // Création + const created = await apiFetch<Team>(`/api/teams`, { + method: "POST", + body: JSON.stringify(team), + }); + setTeams((prev) => [...prev, created]); + } + setEditingTeam(null); + } catch (err) { + console.error(err); + alert("Erreur lors de l'enregistrement de l'équipe"); + } + }; + + if (!seasonId || Array.isArray(seasonId)) { + return <div className="p-6 text-red-600">ID de saison invalide</div>; + } + + return ( + <div className="flex flex-col gap-6 max-w-7xl mx-auto w-full flex-1"> + <h1 className="text-2xl font-bold">Équipes de la saison</h1> + + <Button + onClick={() => + setEditingTeam({ + name: "", + category: "Senior", + gender: "Male", + seasonId, + }) + } + > + Créer une équipe + </Button> + + {loading ? ( + <div className="p-6">Chargement...</div> + ) : teams.length === 0 ? ( + <div className="p-6 text-center text-muted-foreground"> + Pas d'équipe pour cette saison. Créez-en une ! + </div> + ) : ( + <div className="overflow-x-auto"> + <table className="w-full text-sm border"> + <thead className="bg-muted"> + <tr> + <th className="p-3 text-left">Nom</th> + <th className="p-3 text-left">Catégorie</th> + <th className="p-3 text-left">Genre</th> + <th className="p-3 text-left">Niveau</th> + <th className="p-3 text-left">Actions</th> + </tr> + </thead> + <tbody> + {teams.map((team) => ( + <tr key={team._id} className="border-t"> + <td + className="p-3 cursor-pointer text-blue-600" + onClick={() => + router.push( + `/admin/seasons/${seasonId}/teams/${team._id}`, + ) + } + > + {team.name} + </td> + <td className="p-3">{team.category}</td> + <td className="p-3">{team.gender}</td> + <td className="p-3">{team.level || "-"}</td> + <td className="p-3 flex gap-2"> + <Button + size="sm" + variant="outline" + onClick={() => setEditingTeam(team)} + > + Modifier + </Button> + <Button + size="sm" + variant="destructive" + onClick={() => handleDelete(team._id)} + > + Supprimer + </Button> + </td> + </tr> + ))} + </tbody> + </table> + </div> + )} + + {editingTeam && ( + <TeamForm + team={editingTeam} + onClose={() => setEditingTeam(null)} + onSave={handleSave} + /> + )} + </div> + ); +} diff --git a/saintBarthVolleyApp/frontend/src/app/admin/seasons/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/seasons/page.tsx new file mode 100644 index 0000000..0883c30 --- /dev/null +++ b/saintBarthVolleyApp/frontend/src/app/admin/seasons/page.tsx @@ -0,0 +1,220 @@ +"use client"; + +import * as React from "react"; +import Link from "next/link"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/components/ui/select"; +import { apiFetch } from "@/lib/api"; +import { SeasonForm } from "@/components/dashboard/admin/season-form"; +import { Season } from "@/types/season"; + +export default function AdminSeasonsPage() { + const [seasons, setSeasons] = React.useState<Season[]>([]); + const [filteredSeasons, setFilteredSeasons] = React.useState<Season[]>([]); + const [loading, setLoading] = React.useState(true); + const [search, setSearch] = React.useState(""); + const [statusFilter, setStatusFilter] = React.useState("all"); + const [editingSeason, setEditingSeason] = React.useState<Season | null>(null); + + React.useEffect(() => { + fetchSeasons(); + }, []); + + const fetchSeasons = async () => { + setLoading(true); + try { + const data: Season[] = await apiFetch("/api/seasons"); + setSeasons(data); + setFilteredSeasons(data); + } catch (err) { + console.error(err); + alert("Erreur lors de la récupération des saisons"); + } finally { + setLoading(false); + } + }; + + React.useEffect(() => { + let result = seasons; + if (search) + result = result.filter((s) => + s.name.toLowerCase().includes(search.toLowerCase()), + ); + if (statusFilter !== "all") + result = result.filter((s) => s.status === statusFilter); + setFilteredSeasons(result); + }, [search, statusFilter, seasons]); + + const handleDelete = async (id: string) => { + if (!confirm("Voulez-vous vraiment supprimer cette saison ?")) return; + try { + await apiFetch(`/api/seasons/${id}`, { method: "DELETE" }); + setSeasons((prev) => prev.filter((s) => s._id !== id)); + } catch (err) { + console.error(err); + alert("Erreur lors de la suppression"); + } + }; + + if (loading) return <div className="p-6">Chargement...</div>; + + return ( + <div className="flex flex-col gap-6 max-w-7xl mx-auto w-full flex-1"> + <h1 className="text-2xl font-bold">Gestion des saisons</h1> + + {/* Filtres */} + <div className="flex flex-col sm:flex-row gap-4"> + <Input + placeholder="Rechercher..." + className="w-full" + value={search} + onChange={(e) => setSearch(e.target.value)} + /> + <Select value={statusFilter} onValueChange={setStatusFilter}> + <SelectTrigger className="w-full sm:w-48"> + <SelectValue placeholder="Statut" /> + </SelectTrigger> + <SelectContent> + <SelectItem value="all">Tous</SelectItem> + <SelectItem value="active">Active</SelectItem> + <SelectItem value="future">Future</SelectItem> + <SelectItem value="archived">Archivée</SelectItem> + </SelectContent> + </Select> + </div> + + <Button onClick={() => setEditingSeason({} as Season)}> + Créer une saison + </Button> + + {/* Liste mobile */} + <div className="flex flex-col gap-4 md:hidden mt-4"> + {filteredSeasons.map((season) => ( + <div + key={season._id} + className="border rounded-lg p-4 flex flex-col gap-2" + > + <div className="font-semibold">{season.name}</div> + <div className="text-sm text-muted-foreground"> + {new Date(season.startDate).toLocaleDateString()} -{" "} + {new Date(season.endDate).toLocaleDateString()} + </div> + <div className="text-sm capitalize">Statut : {season.status}</div> + + <div className="flex gap-2 mt-2"> + <Link href={`/admin/seasons/${season._id}/teams`}> + <Button size="sm">Voir les équipes</Button> + </Link> + <Button + size="sm" + variant="outline" + onClick={() => setEditingSeason(season)} + > + Modifier + </Button> + <Button + size="sm" + variant="destructive" + onClick={() => season._id && handleDelete(season._id)} + > + Supprimer + </Button> + </div> + </div> + ))} + {filteredSeasons.length === 0 && ( + <div className="text-center text-muted-foreground py-10"> + Pas de saison, veuillez en créer une. + </div> + )} + </div> + + {/* Liste desktop */} + <div className="hidden md:flex flex-col flex-1 rounded-lg border mt-4"> + <table className="w-full text-sm"> + <thead className="bg-muted"> + <tr> + <th className="p-3 text-left">Nom</th> + <th className="p-3 text-left">Dates</th> + <th className="p-3 text-left">Statut</th> + <th className="p-3 text-left">Équipes</th> + <th className="p-3 text-left">Actions</th> + </tr> + </thead> + <tbody> + {filteredSeasons.length > 0 ? ( + filteredSeasons.map((season) => ( + <tr key={season._id} className="border-t"> + <td className="p-3 font-semibold">{season.name}</td> + <td className="p-3"> + {new Date(season.startDate).toLocaleDateString()} -{" "} + {new Date(season.endDate).toLocaleDateString()} + </td> + <td className="p-3 capitalize">{season.status}</td> + <td className="p-3"> + <Link href={`/admin/seasons/${season._id}/teams`}> + <Button size="sm" variant="outline"> + Voir les équipes + </Button> + </Link> + </td> + <td className="p-3 flex gap-2"> + <Button + size="sm" + variant="outline" + onClick={() => setEditingSeason(season)} + > + Modifier + </Button> + <Button + size="sm" + variant="destructive" + onClick={() => season._id && handleDelete(season._id)} + > + Supprimer + </Button> + </td> + </tr> + )) + ) : ( + <tr> + <td + colSpan={5} + className="h-60 flex flex-col items-center justify-center text-muted-foreground" + > + Pas de saison, veuillez en créer une. + </td> + </tr> + )} + </tbody> + </table> + </div> + + {/* Modal SeasonForm */} + {editingSeason && ( + <SeasonForm + season={editingSeason} + onClose={() => setEditingSeason(null)} + onSave={(updatedSeason) => { + setSeasons((prev) => { + const exists = prev.find((s) => s._id === updatedSeason._id); + if (exists) + return prev.map((s) => + s._id === updatedSeason._id ? updatedSeason : s, + ); + return [...prev, updatedSeason]; + }); + setEditingSeason(null); + }} + /> + )} + </div> + ); +} diff --git a/saintBarthVolleyApp/frontend/src/app/admin/teams/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/teams/page.tsx deleted file mode 100644 index 8b3cfb9..0000000 --- a/saintBarthVolleyApp/frontend/src/app/admin/teams/page.tsx +++ /dev/null @@ -1,13 +0,0 @@ -// frontend/src/app/admin/teams/page.tsx -"use client"; - -import * as React from "react"; - -export default function TeamsPage() { - return ( - <div className="p-4"> - <h1 className="text-xl font-bold">Gestion des équipes</h1> - <p>Ici tu pourras gérer les équipes de l’association.</p> - </div> - ); -} diff --git a/saintBarthVolleyApp/frontend/src/app/admin/users/page.tsx b/saintBarthVolleyApp/frontend/src/app/admin/users/page.tsx index 037cdc1..e353566 100644 --- a/saintBarthVolleyApp/frontend/src/app/admin/users/page.tsx +++ b/saintBarthVolleyApp/frontend/src/app/admin/users/page.tsx @@ -1,10 +1,18 @@ "use client"; import * as React from "react"; -import { getUsers, deleteUser, type User } from "@/services/userService"; -import { UserForm } from "@/components/dashboard/admin/users-form"; +import { + getUsers, + createUser, + updateUser, + deleteUser, + resendVerification, + type User, + type Role, +} from "@/services/userService"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; import { Select, SelectContent, @@ -13,184 +21,395 @@ import { SelectValue, } from "@/components/ui/select"; +// ─── Types ──────────────────────────────────────────────────────────────────── + +type EditForm = { + firstName: string; + lastName: string; + email: string; + role: Role; + isActive: boolean; + isVerified: boolean; +}; + +type CreateForm = EditForm & { password: string; confirmPassword: string }; + +const EMPTY_CREATE: CreateForm = { + firstName: "", + lastName: "", + email: "", + password: "", + confirmPassword: "", + role: "user", + isActive: true, + isVerified: true, +}; + +const ROLE_LABELS: Record<Role, string> = { + admin: "Admin", + editor: "Éditeur", + user: "Utilisateur", +}; + +// ─── Page ───────────────────────────────────────────────────────────────────── + export default function AdminUsersPage() { const [users, setUsers] = React.useState<User[]>([]); - const [filteredUsers, setFilteredUsers] = React.useState<User[]>([]); const [loading, setLoading] = React.useState(true); - const [search, setSearch] = React.useState(""); const [roleFilter, setRoleFilter] = React.useState("all"); + const [editingUser, setEditingUser] = React.useState<User | null>(null); + const [editForm, setEditForm] = React.useState<EditForm | null>(null); + const [editSaving, setEditSaving] = React.useState(false); + const [showCreate, setShowCreate] = React.useState(false); + const [createForm, setCreateForm] = React.useState<CreateForm>(EMPTY_CREATE); + const [createSaving, setCreateSaving] = React.useState(false); + const [createError, setCreateError] = React.useState(""); + + const [resending, setResending] = React.useState<string | null>(null); + + // ── Load ────────────────────────────────────────────────────────────────── React.useEffect(() => { getUsers() - .then((data) => { - setUsers(data); - setFilteredUsers(data); - }) + .then(setUsers) + .catch(() => alert("Erreur lors du chargement")) .finally(() => setLoading(false)); }, []); - React.useEffect(() => { - let result = users; - + const filtered = React.useMemo(() => { + let r = users; if (search) { - result = result.filter((u) => - `${u.firstName} ${u.lastName} ${u.email}` - .toLowerCase() - .includes(search.toLowerCase()), + const q = search.toLowerCase(); + r = r.filter((u) => + `${u.firstName} ${u.lastName} ${u.email}`.toLowerCase().includes(q), ); } + if (roleFilter !== "all") r = r.filter((u) => u.role === roleFilter); + return r; + }, [users, search, roleFilter]); + + // ── Stats ───────────────────────────────────────────────────────────────── + const stats = React.useMemo( + () => ({ + total: users.length, + active: users.filter((u) => u.isActive).length, + unverified: users.filter((u) => !u.isVerified).length, + }), + [users], + ); - if (roleFilter !== "all") { - result = result.filter((u) => u.role === roleFilter); + // ── Edit ────────────────────────────────────────────────────────────────── + const openEdit = (u: User) => { + setEditingUser(u); + setEditForm({ + firstName: u.firstName, + lastName: u.lastName, + email: u.email, + role: u.role, + isActive: u.isActive, + isVerified: u.isVerified, + }); + }; + + const handleEditSave = async () => { + if (!editingUser || !editForm) return; + setEditSaving(true); + try { + const updated = await updateUser(editingUser._id, editForm); + setUsers((prev) => + prev.map((u) => (u._id === updated._id ? updated : u)), + ); + setEditingUser(null); + } catch (err: unknown) { + alert( + err instanceof Error ? err.message : "Erreur lors de la sauvegarde", + ); + } finally { + setEditSaving(false); } + }; - setFilteredUsers(result); - }, [search, roleFilter, users]); + // ── Create ──────────────────────────────────────────────────────────────── + const handleCreate = async () => { + setCreateError(""); + if ( + !createForm.firstName || + !createForm.lastName || + !createForm.email || + !createForm.password + ) { + return setCreateError( + "Tous les champs obligatoires doivent être remplis.", + ); + } + if (createForm.password !== createForm.confirmPassword) { + return setCreateError("Les mots de passe ne correspondent pas."); + } + if (createForm.password.length < 8) { + return setCreateError("Mot de passe trop court (8 caractères minimum)."); + } + setCreateSaving(true); + try { + const created = await createUser({ + firstName: createForm.firstName, + lastName: createForm.lastName, + email: createForm.email, + password: createForm.password, + role: createForm.role, + isActive: createForm.isActive, + }); + setUsers((prev) => [created, ...prev]); + setShowCreate(false); + setCreateForm(EMPTY_CREATE); + } catch (err: unknown) { + setCreateError( + err instanceof Error ? err.message : "Erreur lors de la création", + ); + } finally { + setCreateSaving(false); + } + }; - const handleDelete = async (id: string) => { - if (!confirm("Êtes-vous sûr de vouloir supprimer cet utilisateur ?")) - return; + // ── Delete ──────────────────────────────────────────────────────────────── + const handleDelete = async (u: User) => { + if (!confirm(`Supprimer ${u.firstName} ${u.lastName} ?`)) return; try { - await deleteUser(id); - setUsers(users.filter((u) => u._id !== id)); - } catch (err) { - console.error(err); + await deleteUser(u._id); + setUsers((prev) => prev.filter((x) => x._id !== u._id)); + } catch { alert("Erreur lors de la suppression"); } }; + // ── Resend verification ─────────────────────────────────────────────────── + const handleResend = async (u: User) => { + setResending(u._id); + try { + await resendVerification(u._id); + alert(`Email de vérification renvoyé à ${u.email}`); + } catch (err: unknown) { + alert(err instanceof Error ? err.message : "Erreur lors de l'envoi"); + } finally { + setResending(null); + } + }; + + // ── Helpers ─────────────────────────────────────────────────────────────── + const StatusBadge = ({ u }: { u: User }) => { + if (!u.isVerified) + return ( + <span className="px-2 py-0.5 rounded-full text-xs bg-orange-100 text-orange-700 font-medium"> + Non vérifié + </span> + ); + if (!u.isActive) + return ( + <span className="px-2 py-0.5 rounded-full text-xs bg-zinc-100 text-zinc-500 font-medium"> + Inactif + </span> + ); + return ( + <span className="px-2 py-0.5 rounded-full text-xs bg-green-100 text-green-700 font-medium"> + Actif + </span> + ); + }; + + const RoleBadge = ({ role }: { role: Role }) => { + const colors: Record<Role, string> = { + admin: "bg-purple-100 text-purple-700", + editor: "bg-blue-100 text-blue-700", + user: "bg-zinc-100 text-zinc-600", + }; + return ( + <span + className={`px-2 py-0.5 rounded text-xs font-medium ${colors[role]}`} + > + {ROLE_LABELS[role]} + </span> + ); + }; + if (loading) return <div className="p-6">Chargement...</div>; return ( <div className="flex flex-col gap-6 max-w-7xl mx-auto w-full flex-1"> - <h1 className="text-2xl font-bold">Gestion des utilisateurs</h1> + {/* Stats */} + <div className="grid grid-cols-3 gap-4"> + {[ + { label: "Total", value: stats.total, color: "text-foreground" }, + { label: "Actifs", value: stats.active, color: "text-green-600" }, + { + label: "Non vérifiés", + value: stats.unverified, + color: "text-orange-600", + }, + ].map((s) => ( + <div + key={s.label} + className="border rounded-lg p-4 flex flex-col gap-1" + > + <div className={`text-2xl font-bold ${s.color}`}>{s.value}</div> + <div className="text-xs text-muted-foreground">{s.label}</div> + </div> + ))} + </div> - {/* 🔎 Filtres */} - <div className="flex flex-col sm:flex-row gap-4"> + {/* Filtres + actions */} + <div className="flex flex-col sm:flex-row gap-3"> <Input - className="w-full" - placeholder="Rechercher..." + className="flex-1" + placeholder="Rechercher par nom ou email..." value={search} onChange={(e) => setSearch(e.target.value)} /> - <Select value={roleFilter} onValueChange={setRoleFilter}> - <SelectTrigger className="w-full sm:w-48"> + <SelectTrigger className="w-full sm:w-40"> <SelectValue placeholder="Rôle" /> </SelectTrigger> <SelectContent> - <SelectItem value="all">Tous</SelectItem> + <SelectItem value="all">Tous les rôles</SelectItem> <SelectItem value="admin">Admin</SelectItem> - <SelectItem value="editor">Editor</SelectItem> - <SelectItem value="user">User</SelectItem> - <SelectItem value="other">Autre</SelectItem> + <SelectItem value="editor">Éditeur</SelectItem> + <SelectItem value="user">Utilisateur</SelectItem> </SelectContent> </Select> + <Button + onClick={() => { + setShowCreate(true); + setCreateForm(EMPTY_CREATE); + setCreateError(""); + }} + > + + Nouvel utilisateur + </Button> </div> - {/* 📱 MOBILE → CARD VIEW */} - <div className="flex flex-col gap-4 md:hidden"> - {filteredUsers.map((user) => ( + {/* Mobile — cards */} + <div className="flex flex-col gap-3 md:hidden"> + {filtered.map((u) => ( <div - key={user._id} + key={u._id} className="border rounded-lg p-4 flex flex-col gap-2" > - <div className="font-semibold"> - {user.firstName} {user.lastName} + <div className="flex items-start justify-between gap-2"> + <div> + <div className="font-semibold"> + {u.firstName} {u.lastName} + </div> + <div className="text-sm text-muted-foreground">{u.email}</div> + </div> + <StatusBadge u={u} /> </div> - - <div className="text-sm text-muted-foreground">{user.email}</div> - - <div className="text-sm"> - Rôle : <span className="capitalize">{user.role}</span> + <div className="flex items-center gap-2"> + <RoleBadge role={u.role} /> + <span className="text-xs text-muted-foreground"> + {new Date(u.createdAt).toLocaleDateString("fr-FR")} + </span> </div> - - <div className="text-sm"> - Actif : {user.isActive ? "Oui" : "Non"} - </div> - - <div className="text-xs text-muted-foreground"> - {new Date(user.createdAt).toLocaleDateString()} - </div> - - <div className="flex gap-2 mt-2"> - <Button - size="sm" - variant="outline" - onClick={() => setEditingUser(user)} - > + <div className="flex flex-wrap gap-2 mt-1"> + <Button size="sm" variant="outline" onClick={() => openEdit(u)}> Modifier </Button> + {!u.isVerified && ( + <Button + size="sm" + variant="outline" + onClick={() => handleResend(u)} + disabled={resending === u._id} + > + {resending === u._id ? "Envoi..." : "Renvoyer l'email"} + </Button> + )} <Button size="sm" variant="destructive" - onClick={() => handleDelete(user._id)} + onClick={() => handleDelete(u)} > Supprimer </Button> </div> </div> ))} - {filteredUsers.length === 0 && ( - <div className="text-center text-muted-foreground py-10 md:hidden"> + {filtered.length === 0 && ( + <div className="text-center text-muted-foreground py-10"> Aucun utilisateur </div> )} </div> - {/* 💻 DESKTOP → TABLE */} - <div className="hidden md:flex flex-col flex-1 rounded-lg border"> + {/* Desktop — table */} + <div className="hidden md:block rounded-lg border overflow-auto"> <table className="w-full text-sm"> <thead className="bg-muted"> <tr> <th className="p-3 text-left">Nom</th> <th className="p-3 text-left">Email</th> <th className="p-3 text-left">Rôle</th> - <th className="p-3 text-left">Actif</th> + <th className="p-3 text-left">Statut</th> <th className="p-3 text-left">Créé le</th> <th className="p-3 text-left">Actions</th> </tr> </thead> <tbody> - {filteredUsers.length > 0 ? ( - filteredUsers.map((user) => ( - <tr key={user._id} className="border-t"> + {filtered.length > 0 ? ( + filtered.map((u) => ( + <tr + key={u._id} + className="border-t hover:bg-muted/30 transition-colors" + > + <td className="p-3 font-medium"> + {u.firstName} {u.lastName} + </td> + <td className="p-3 text-muted-foreground">{u.email}</td> <td className="p-3"> - {user.firstName} {user.lastName} + <RoleBadge role={u.role} /> </td> - <td className="p-3">{user.email}</td> - <td className="p-3 capitalize">{user.role}</td> - <td className="p-3">{user.isActive ? "Oui" : "Non"}</td> <td className="p-3"> - {new Date(user.createdAt).toLocaleDateString()} + <StatusBadge u={u} /> </td> - <td className="p-3 flex gap-2"> - <Button - size="sm" - variant="outline" - onClick={() => setEditingUser(user)} - > - Modifier - </Button> - <Button - size="sm" - variant="destructive" - onClick={() => handleDelete(user._id)} - > - Supprimer - </Button> + <td className="p-3 text-muted-foreground text-xs"> + {new Date(u.createdAt).toLocaleDateString("fr-FR")} + </td> + <td className="p-3"> + <div className="flex gap-2"> + <Button + size="sm" + variant="outline" + onClick={() => openEdit(u)} + > + Modifier + </Button> + {!u.isVerified && ( + <Button + size="sm" + variant="outline" + onClick={() => handleResend(u)} + disabled={resending === u._id} + > + {resending === u._id ? "Envoi..." : "Renvoyer email"} + </Button> + )} + <Button + size="sm" + variant="destructive" + onClick={() => handleDelete(u)} + > + Supprimer + </Button> + </div> </td> </tr> )) ) : ( <tr> - <td colSpan={6} className="h-60"> - <div className="flex flex-col items-center justify-center gap-2 text-muted-foreground"> - <p className="text-sm">Aucun utilisateur</p> - <p className="text-xs">Commencez par en créer un</p> - </div> + <td + colSpan={6} + className="h-40 text-center text-muted-foreground" + > + Aucun utilisateur trouvé </td> </tr> )} @@ -198,18 +417,265 @@ export default function AdminUsersPage() { </table> </div> - {/* 📝 Modal */} - {editingUser && ( - <UserForm - user={editingUser} - onClose={() => setEditingUser(null)} - onSave={(updatedUser) => { - setUsers((prev) => - prev.map((u) => (u._id === updatedUser._id ? updatedUser : u)), - ); - setEditingUser(null); - }} - /> + {/* ══ Modal : Modifier utilisateur ══ */} + {editingUser && editForm && ( + <div className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center p-4"> + <div className="bg-background rounded-xl shadow-xl w-full max-w-md flex flex-col max-h-[90vh]"> + <div className="p-5 border-b flex items-center justify-between shrink-0"> + <h2 className="text-lg font-semibold"> + Modifier l'utilisateur + </h2> + <button + onClick={() => setEditingUser(null)} + className="text-muted-foreground hover:text-foreground text-xl leading-none" + > + × + </button> + </div> + + <div className="p-5 flex flex-col gap-4 overflow-y-auto"> + <div className="grid grid-cols-2 gap-3"> + <div className="flex flex-col gap-1"> + <Label>Prénom *</Label> + <Input + value={editForm.firstName} + onChange={(e) => + setEditForm( + (p) => p && { ...p, firstName: e.target.value }, + ) + } + /> + </div> + <div className="flex flex-col gap-1"> + <Label>Nom *</Label> + <Input + value={editForm.lastName} + onChange={(e) => + setEditForm( + (p) => p && { ...p, lastName: e.target.value }, + ) + } + /> + </div> + </div> + + <div className="flex flex-col gap-1"> + <Label>Email *</Label> + <Input + type="email" + value={editForm.email} + onChange={(e) => + setEditForm((p) => p && { ...p, email: e.target.value }) + } + /> + </div> + + <div className="flex flex-col gap-1"> + <Label>Rôle</Label> + <Select + value={editForm.role} + onValueChange={(v) => + setEditForm((p) => p && { ...p, role: v as Role }) + } + > + <SelectTrigger> + <SelectValue /> + </SelectTrigger> + <SelectContent> + <SelectItem value="admin">Admin</SelectItem> + <SelectItem value="editor">Éditeur</SelectItem> + <SelectItem value="user">Utilisateur</SelectItem> + </SelectContent> + </Select> + </div> + + <div className="flex flex-col gap-3 border rounded-lg p-3 bg-muted/20"> + <div className="flex items-center justify-between"> + <div> + <div className="text-sm font-medium">Compte actif</div> + <div className="text-xs text-muted-foreground"> + L'utilisateur peut se connecter + </div> + </div> + <button + type="button" + onClick={() => + setEditForm((p) => p && { ...p, isActive: !p.isActive }) + } + className={`relative inline-flex h-6 w-11 items-center rounded-full transition-colors ${editForm.isActive ? "bg-green-500" : "bg-zinc-300"}`} + > + <span + className={`inline-block h-4 w-4 rounded-full bg-white shadow transition-transform ${editForm.isActive ? "translate-x-6" : "translate-x-1"}`} + /> + </button> + </div> + + <div className="flex items-center justify-between"> + <div> + <div className="text-sm font-medium">Email vérifié</div> + <div className="text-xs text-muted-foreground"> + Activer manuellement sans email + </div> + </div> + <button + type="button" + onClick={() => + setEditForm( + (p) => p && { ...p, isVerified: !p.isVerified }, + ) + } + className={`relative inline-flex h-6 w-11 items-center rounded-full transition-colors ${editForm.isVerified ? "bg-green-500" : "bg-zinc-300"}`} + > + <span + className={`inline-block h-4 w-4 rounded-full bg-white shadow transition-transform ${editForm.isVerified ? "translate-x-6" : "translate-x-1"}`} + /> + </button> + </div> + </div> + + {!editingUser.isVerified && ( + <Button + variant="outline" + size="sm" + onClick={() => handleResend(editingUser)} + disabled={resending === editingUser._id} + > + {resending === editingUser._id + ? "Envoi en cours..." + : "Renvoyer l'email de vérification"} + </Button> + )} + </div> + + <div className="p-5 border-t flex justify-end gap-3 shrink-0"> + <Button variant="outline" onClick={() => setEditingUser(null)}> + Annuler + </Button> + <Button onClick={handleEditSave} disabled={editSaving}> + {editSaving ? "Sauvegarde..." : "Sauvegarder"} + </Button> + </div> + </div> + </div> + )} + + {/* ══ Modal : Créer utilisateur ══ */} + {showCreate && ( + <div className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center p-4"> + <div className="bg-background rounded-xl shadow-xl w-full max-w-md flex flex-col max-h-[90vh]"> + <div className="p-5 border-b flex items-center justify-between shrink-0"> + <h2 className="text-lg font-semibold">Nouvel utilisateur</h2> + <button + onClick={() => setShowCreate(false)} + className="text-muted-foreground hover:text-foreground text-xl leading-none" + > + × + </button> + </div> + + <div className="p-5 flex flex-col gap-4 overflow-y-auto"> + {createError && ( + <div className="text-sm text-red-600 bg-red-50 border border-red-200 rounded p-3"> + {createError} + </div> + )} + + <div className="grid grid-cols-2 gap-3"> + <div className="flex flex-col gap-1"> + <Label>Prénom *</Label> + <Input + value={createForm.firstName} + onChange={(e) => + setCreateForm((p) => ({ + ...p, + firstName: e.target.value, + })) + } + /> + </div> + <div className="flex flex-col gap-1"> + <Label>Nom *</Label> + <Input + value={createForm.lastName} + onChange={(e) => + setCreateForm((p) => ({ ...p, lastName: e.target.value })) + } + /> + </div> + </div> + + <div className="flex flex-col gap-1"> + <Label>Email *</Label> + <Input + type="email" + value={createForm.email} + onChange={(e) => + setCreateForm((p) => ({ ...p, email: e.target.value })) + } + /> + </div> + + <div className="flex flex-col gap-1"> + <Label>Mot de passe *</Label> + <Input + type="password" + value={createForm.password} + onChange={(e) => + setCreateForm((p) => ({ ...p, password: e.target.value })) + } + placeholder="Min. 8 caractères" + /> + </div> + + <div className="flex flex-col gap-1"> + <Label>Confirmer le mot de passe *</Label> + <Input + type="password" + value={createForm.confirmPassword} + onChange={(e) => + setCreateForm((p) => ({ + ...p, + confirmPassword: e.target.value, + })) + } + /> + </div> + + <div className="flex flex-col gap-1"> + <Label>Rôle</Label> + <Select + value={createForm.role} + onValueChange={(v) => + setCreateForm((p) => ({ ...p, role: v as Role })) + } + > + <SelectTrigger> + <SelectValue /> + </SelectTrigger> + <SelectContent> + <SelectItem value="admin">Admin</SelectItem> + <SelectItem value="editor">Éditeur</SelectItem> + <SelectItem value="user">Utilisateur</SelectItem> + </SelectContent> + </Select> + </div> + + <p className="text-xs text-muted-foreground"> + Le compte créé par un administrateur est directement actif et + vérifié. + </p> + </div> + + <div className="p-5 border-t flex justify-end gap-3 shrink-0"> + <Button variant="outline" onClick={() => setShowCreate(false)}> + Annuler + </Button> + <Button onClick={handleCreate} disabled={createSaving}> + {createSaving ? "Création..." : "Créer le compte"} + </Button> + </div> + </div> + </div> )} </div> ); diff --git a/saintBarthVolleyApp/frontend/src/app/verify-email/page.tsx b/saintBarthVolleyApp/frontend/src/app/verify-email/page.tsx index 76ab452..07a67f7 100644 --- a/saintBarthVolleyApp/frontend/src/app/verify-email/page.tsx +++ b/saintBarthVolleyApp/frontend/src/app/verify-email/page.tsx @@ -5,6 +5,7 @@ import { useEffect, useState } from "react"; import { useSearchParams, useRouter } from "next/navigation"; import { apiFetch } from "@/lib/api"; +import type { ApiMessage } from "@/lib/auth"; import { Card, CardContent, @@ -34,7 +35,9 @@ export default function VerifyEmailPage() { const verify = async () => { try { - const res = await apiFetch(`/api/auth/verify-email?token=${token}`); + const res = await apiFetch<ApiMessage>( + `/api/auth/verify-email?token=${token}`, + ); setStatus("success"); setMessage(res.message); } catch (err: any) { diff --git a/saintBarthVolleyApp/frontend/src/components/auth/register-form.tsx b/saintBarthVolleyApp/frontend/src/components/auth/register-form.tsx index d4a5d5e..bc34cfc 100644 --- a/saintBarthVolleyApp/frontend/src/components/auth/register-form.tsx +++ b/saintBarthVolleyApp/frontend/src/components/auth/register-form.tsx @@ -14,6 +14,7 @@ import { } from "@/components/ui/card"; import Link from "next/link"; import { apiFetch } from "@/lib/api"; +import type { ApiMessage } from "@/lib/auth"; export function RegisterForm() { const [form, setForm] = useState({ @@ -56,7 +57,7 @@ export function RegisterForm() { } try { - const data = await apiFetch("/api/auth/register", { + const data = await apiFetch<ApiMessage>("/api/auth/register", { method: "POST", body: JSON.stringify({ firstName: form.firstName, diff --git a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/app-sidebar.tsx b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/app-sidebar.tsx index 9ac799e..b322351 100644 --- a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/app-sidebar.tsx +++ b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/app-sidebar.tsx @@ -4,13 +4,13 @@ import * as React from "react"; import { IconDashboard, IconUsers, - IconFolder, - IconListDetails, - IconChartBar, - IconDatabase, + IconBuildingCommunity, + IconNews, + IconCalendar, + IconUsersGroup, + IconStar, IconSettings, IconHelp, - IconSearch, IconInnerShadowTop, } from "@tabler/icons-react"; @@ -27,84 +27,37 @@ import { SidebarMenuItem, } from "@/components/ui/sidebar"; import Link from "next/link"; +import { apiFetch } from "@/lib/api"; +import type { AuthUser } from "@/lib/auth"; -const data = { - user: { - name: "Admin", - email: "admin@example.com", - avatar: "/avatars/admin.jpg", - }, +const navMain = [ + { title: "Dashboard", url: "/admin", icon: IconDashboard }, + { title: "Club", url: "/admin/club", icon: IconBuildingCommunity }, + { title: "Saisons & Équipes", url: "/admin/seasons", icon: IconCalendar }, + { title: "Membres", url: "/admin/members", icon: IconUsersGroup }, + { title: "Actualités", url: "/admin/news", icon: IconNews }, + { title: "Partenaires", url: "/admin/partners", icon: IconStar }, + { title: "Utilisateurs", url: "/admin/users", icon: IconUsers }, +]; - // MENU PRINCIPAL ADMIN - navMain: [ - { - title: "Dashboard", - url: "/admin", - icon: IconDashboard, - }, - { - title: "Users", - url: "/admin/users", - icon: IconUsers, - }, - { - title: "Club", - url: "/admin/club", - icon: IconFolder, - }, - { - title: "Actualités", - url: "/admin/news", - icon: IconListDetails, - }, - { - title: "Equipes", - url: "/admin/teams", - icon: IconListDetails, - }, - { - title: "Membres / Joueurs", - url: "/admin/members", - icon: IconListDetails, - }, - { - title: "Matches", - url: "/admin/matches", - icon: IconChartBar, - }, - { - title: "Championnats", - url: "/admin/championships", - icon: IconDatabase, - }, - { - title: "Partenaires", - url: "/admin/partners", - icon: IconDatabase, - }, - ], - - // 🔹 MENU SECONDAIRE - navSecondary: [ - { - title: "Paramètres", - url: "/admin/settings", - icon: IconSettings, - }, - { - title: "Aide", - url: "/admin/help", - icon: IconHelp, - }, - { - title: "Recherche", - url: "/admin/search", - icon: IconSearch, - }, - ], -}; +const navSecondary = [ + { title: "Paramètres", url: "/admin/settings", icon: IconSettings }, + { title: "Aide", url: "/admin/help", icon: IconHelp }, +]; export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) { + const [user, setUser] = React.useState<AuthUser | null>(null); + + React.useEffect(() => { + apiFetch<AuthUser>("/api/auth/me") + .then(setUser) + .catch(() => setUser(null)); + }, []); + + const navUser = user + ? { name: `${user.firstName} ${user.lastName}`, email: user.email } + : { name: "Admin", email: "" }; + return ( <Sidebar collapsible="offcanvas" {...props}> <SidebarHeader> @@ -116,7 +69,7 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) { > <Link href="/admin"> <IconInnerShadowTop className="size-5!" /> - <span className="text-base font-semibold">Admin Dashboard</span> + <span className="text-base font-semibold">Admin</span> </Link> </SidebarMenuButton> </SidebarMenuItem> @@ -124,12 +77,12 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) { </SidebarHeader> <SidebarContent> - <NavMain items={data.navMain} /> - <NavSecondary items={data.navSecondary} className="mt-auto" /> + <NavMain items={navMain} /> + <NavSecondary items={navSecondary} className="mt-auto" /> </SidebarContent> <SidebarFooter> - <NavUser user={data.user} /> + <NavUser user={navUser} /> </SidebarFooter> </Sidebar> ); diff --git a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/club-form.tsx b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/club-form.tsx index 03ad304..5a2db63 100644 --- a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/club-form.tsx +++ b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/club-form.tsx @@ -1,26 +1,22 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ "use client"; -import { useEffect, useState } from "react"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Textarea } from "@/components/ui/textarea"; import { FileUpload } from "@/components/dashboard/admin/file-upload"; import Image from "next/image"; +const API = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:5000"; + interface Props { club: any; onChange: (club: any) => void; - onSave: (club: any) => Promise<void>; + onSave?: (club: any) => Promise<void>; } -export function ClubForm({ club, onChange, onSave }: Props) { - const [dirty, setDirty] = useState(false); - const [saving, setSaving] = useState(false); - +export function ClubForm({ club, onChange }: Props) { const handleChange = (name: string, value: string) => { - setDirty(true); - if (name.startsWith("social_")) { onChange({ ...club, @@ -45,20 +41,20 @@ export function ClubForm({ club, onChange, onSave }: Props) { const handleFileUpload = async ( field: "logo" | "photo", file: File, - oldFileUrl?: string, // on peut passer l'ancienne image + oldFileUrl?: string, ) => { const formData = new FormData(); formData.append("file", file); if (oldFileUrl) { - // envoie juste le filename, pas l'URL complète formData.append("oldFile", oldFileUrl.split("/").pop()!); } try { - const res = await fetch("http://localhost:5000/api/upload", { + const res = await fetch(`${API}/api/upload`, { method: "POST", body: formData, + credentials: "include", }); if (!res.ok) { @@ -68,7 +64,7 @@ export function ClubForm({ club, onChange, onSave }: Props) { } const data = await res.json(); - const imageUrl = `http://localhost:5000/uploads/${data.filename}`; + const imageUrl = `${API}/uploads/${data.filename}`; handleChange(field, imageUrl); } catch (err) { @@ -127,7 +123,9 @@ export function ClubForm({ club, onChange, onSave }: Props) { <div className="grid grid-cols-2 gap-4"> <div> <Label>Logo</Label> - <FileUpload onUpload={(file) => handleFileUpload("logo", file)} /> + <FileUpload + onUpload={(file) => handleFileUpload("logo", file, club.logo)} + /> {club.logo && ( <Image src={club.logo} @@ -141,7 +139,9 @@ export function ClubForm({ club, onChange, onSave }: Props) { </div> <div> <Label>Photo principale</Label> - <FileUpload onUpload={(file) => handleFileUpload("photo", file)} /> + <FileUpload + onUpload={(file) => handleFileUpload("photo", file, club.photo)} + /> {club.photo && ( <Image src={club.photo} @@ -207,15 +207,6 @@ export function ClubForm({ club, onChange, onSave }: Props) { ))} </div> </div> - - {saving && ( - <p className="text-sm text-blue-600">💾 Sauvegarde en cours...</p> - )} - {!dirty && !saving && ( - <p className="text-sm text-green-600"> - ✅ Tous les changements sauvegardés - </p> - )} </div> ); } diff --git a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/dashboard-header.tsx b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/dashboard-header.tsx index cc5ecf3..21ef34d 100644 --- a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/dashboard-header.tsx +++ b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/dashboard-header.tsx @@ -4,18 +4,22 @@ import { usePathname } from "next/navigation"; import { Separator } from "@/components/ui/separator"; import { SidebarTrigger } from "@/components/ui/sidebar"; -function getPageTitle(pathname: string) { +function getPageTitle(pathname: string): string { if (pathname === "/admin") return "Dashboard"; if (pathname.startsWith("/admin/users")) return "Utilisateurs"; if (pathname.startsWith("/admin/club")) return "Club"; if (pathname.startsWith("/admin/news")) return "Actualités"; - if (pathname.startsWith("/admin/teams")) return "Equipes"; - if (pathname.startsWith("/admin/players")) return "Joueurs"; + if (pathname.startsWith("/admin/seasons")) { + if (pathname.includes("/teams/") && pathname.split("/").length > 6) + return "Détail équipe"; + if (pathname.includes("/teams")) return "Équipes"; + return "Saisons"; + } + if (pathname.startsWith("/admin/members")) return "Membres"; if (pathname.startsWith("/admin/matches")) return "Matches"; - if (pathname.startsWith("/admin/championships")) return "Championnats"; if (pathname.startsWith("/admin/partners")) return "Partenaires"; - if (pathname.startsWith("/admin/medias")) return "Galerie"; if (pathname.startsWith("/admin/settings")) return "Paramètres"; + if (pathname.startsWith("/admin/help")) return "Aide"; return "Admin"; } @@ -26,12 +30,10 @@ export function DashboardHeader() { return ( <header className="flex h-(--header-height) shrink-0 items-center gap-2 border-b bg-background px-4 transition-all"> <SidebarTrigger className="-ml-1" /> - <Separator orientation="vertical" className="mx-2 data-[orientation=vertical]:h-4" /> - <h1 className="text-base font-semibold">{title}</h1> </header> ); diff --git a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/members-form.tsx b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/members-form.tsx index b245be4..8a65362 100644 --- a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/members-form.tsx +++ b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/members-form.tsx @@ -6,149 +6,100 @@ import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Textarea } from "@/components/ui/textarea"; import { Button } from "@/components/ui/button"; -import { FileUpload } from "@/components/dashboard/admin/file-upload"; -import Image from "next/image"; -interface Props { - member: any; - onChange: (member: any) => void; - onSave: (member: any) => Promise<void>; -} - -export function MemberForm({ member, onChange, onSave }: Props) { +export function MemberForm({ member, onChange, onSave }: any) { const [saving, setSaving] = useState(false); const handleChange = (name: string, value: any) => { onChange({ ...member, [name]: value }); }; - // 🔹 handleFileUpload pour MemberForm - const handleFileUpload = async (file: File) => { - // récupère le nom du fichier actuel sans chemin ni domaine - let oldFile: string | undefined = undefined; - if (member.photo) { - try { - const url = new URL(member.photo); - oldFile = url.pathname.split("/").pop(); - console.log("Old file to delete:", oldFile); - } catch { - // si ce n'est pas une URL complète - oldFile = member.photo.split("/").pop(); - } - } - - const formData = new FormData(); - formData.append("file", file); - if (oldFile) formData.append("oldFile", oldFile); - - try { - const res = await fetch("http://localhost:5000/api/upload", { - method: "POST", - body: formData, - }); - - if (!res.ok) { - const text = await res.text(); - console.error("Upload error response:", text); - throw new Error("Upload failed"); - } - - const data = await res.json(); - const imageUrl = `http://localhost:5000/uploads/${data.filename}`; - handleChange("photo", imageUrl); - } catch (err) { - console.error("Upload failed", err); - alert("Upload failed"); - } + const handleSeasonChange = (field: string, value: any) => { + onChange({ + ...member, + latestSeason: { + ...member.latestSeason, + [field]: value, + }, + }); }; return ( <div className="flex flex-col gap-6"> - {/* IDENTITÉ */} - <div className="space-y-4"> - <h2 className="text-lg font-semibold">Informations générales</h2> - <div className="grid grid-cols-1 sm:grid-cols-2 gap-4"> - <div> - <Label>Prénom</Label> - <Input - value={member.firstName || ""} - onChange={(e) => handleChange("firstName", e.target.value)} - /> - </div> - <div> - <Label>Nom</Label> - <Input - value={member.lastName || ""} - onChange={(e) => handleChange("lastName", e.target.value)} - /> - </div> - </div> + {/* GENERAL */} + <div> + <Label>Prénom</Label> + <Input + value={member.firstName || ""} + onChange={(e) => handleChange("firstName", e.target.value)} + /> - <div> - <Label>Date de naissance</Label> - <Input - type="date" - value={member.birthDate ? member.birthDate.split("T")[0] : ""} - onChange={(e) => handleChange("birthDate", e.target.value)} - /> - </div> + <Label>Nom</Label> + <Input + value={member.lastName || ""} + onChange={(e) => handleChange("lastName", e.target.value)} + /> - <div> - <Label>Bio</Label> - <Textarea - value={member.bio || ""} - onChange={(e) => handleChange("bio", e.target.value)} - /> - </div> - </div> + <Label>Date de naissance</Label> + <Input + type="date" + value={member.birthDate?.split("T")[0] || ""} + onChange={(e) => handleChange("birthDate", e.target.value)} + /> - {/* PHOTO */} - <div className="space-y-4"> - <h2 className="text-lg font-semibold">Photo</h2> - <FileUpload onUpload={handleFileUpload} /> - {member.photo && ( - <Image - src={member.photo} - alt="Photo du membre" - width={100} - height={100} - unoptimized - className="mt-2 object-cover rounded" - /> - )} + <Label>Bio</Label> + <Textarea + value={member.bio || ""} + onChange={(e) => handleChange("bio", e.target.value)} + /> </div> - {/* État */} - <div className="space-y-2"> - <Label>Actif</Label> - <select - value={member.isActive ? "true" : "false"} - onChange={(e) => handleChange("isActive", e.target.value === "true")} - className="border rounded px-2 py-1" - > - <option value="true">Oui</option> - <option value="false">Non</option> - </select> - </div> + {/* SPORT */} + <div> + <h2 className="font-bold">Infos sportives</h2> + + <Label>Taille</Label> + <Input + type="number" + value={member.latestSeason?.height || ""} + onChange={(e) => handleSeasonChange("height", Number(e.target.value))} + /> - {/* BOUTON SAUVEGARDE */} - <div className="flex justify-end mt-4"> - <Button - onClick={async () => { - setSaving(true); - try { - await onSave(member); // modal ne se ferme plus automatiquement ici - } catch (err) { - console.error(err); - } finally { - setSaving(false); - } - }} - disabled={saving} - > - {saving ? "💾 Sauvegarde..." : "Sauvegarder"} - </Button> + <Label>Poids</Label> + <Input + type="number" + value={member.latestSeason?.weight || ""} + onChange={(e) => handleSeasonChange("weight", Number(e.target.value))} + /> + + <Label>Poste</Label> + <Input + value={member.latestSeason?.position || ""} + onChange={(e) => handleSeasonChange("position", e.target.value)} + /> + + <Label>Rôles</Label> + <Input + placeholder="player, coach..." + value={member.latestSeason?.roles?.join(", ") || ""} + onChange={(e) => + handleSeasonChange( + "roles", + e.target.value.split(",").map((r) => r.trim()), + ) + } + /> </div> + + <Button + onClick={async () => { + setSaving(true); + await onSave(member); + setSaving(false); + }} + > + {saving ? "Sauvegarde..." : "Sauvegarder"} + </Button> </div> ); } diff --git a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/season-form.tsx b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/season-form.tsx new file mode 100644 index 0000000..a7a9b87 --- /dev/null +++ b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/season-form.tsx @@ -0,0 +1,146 @@ +"use client"; + +import * as React from "react"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { + Select, + SelectTrigger, + SelectContent, + SelectItem, + SelectValue, +} from "@/components/ui/select"; +import { apiFetch } from "@/lib/api"; + +interface Season { + _id?: string; + name: string; + startDate: string; + endDate: string; + status: "active" | "archived" | "future"; +} + +interface SeasonFormProps { + season?: Season; + onClose: () => void; + onSave: (season: Season) => void; +} + +export const SeasonForm = ({ season, onClose, onSave }: SeasonFormProps) => { + const [form, setForm] = React.useState<Season>({ + name: season?.name || "", + startDate: season?.startDate || "", + endDate: season?.endDate || "", + status: season?.status || "future", + }); + + const [loading, setLoading] = React.useState(false); + + const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => { + setForm((prev) => ({ ...prev, [e.target.name]: e.target.value })); + }; + + const handleStatusChange = (status: string) => { + setForm((prev) => ({ ...prev, status: status as Season["status"] })); + }; + + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault(); + setLoading(true); + + try { + let savedSeason: Season; + if (season?._id) { + savedSeason = await apiFetch(`/api/seasons/${season._id}`, { + method: "PUT", + body: JSON.stringify(form), + }); + } else { + savedSeason = await apiFetch("/api/seasons", { + method: "POST", + body: JSON.stringify(form), + }); + } + + onSave(savedSeason); + onClose(); + } catch (err) { + console.error(err); + alert("Erreur lors de la sauvegarde"); + } finally { + setLoading(false); + } + }; + + return ( + <div className="fixed inset-0 flex items-center justify-center bg-black/30 z-50 p-4"> + <form + onSubmit={handleSubmit} + className="bg-white p-6 rounded-lg shadow-lg w-full max-w-md flex flex-col gap-4 max-h-[90vh] overflow-y-auto" + > + <h2 className="text-xl font-bold"> + {season?._id ? "Modifier la saison" : "Créer une saison"} + </h2> + + <div className="flex flex-col gap-2"> + <Label htmlFor="name">Nom de la saison</Label> + <Input + id="name" + name="name" + value={form.name} + onChange={handleChange} + required + /> + </div> + + <div className="flex flex-col gap-2"> + <Label htmlFor="startDate">Date de début</Label> + <Input + id="startDate" + name="startDate" + type="date" + value={form.startDate} + onChange={handleChange} + required + /> + </div> + + <div className="flex flex-col gap-2"> + <Label htmlFor="endDate">Date de fin</Label> + <Input + id="endDate" + name="endDate" + type="date" + value={form.endDate} + onChange={handleChange} + required + /> + </div> + + <div className="flex flex-col gap-2"> + <Label>Status</Label> + <Select value={form.status} onValueChange={handleStatusChange}> + <SelectTrigger> + <SelectValue placeholder="Status" /> + </SelectTrigger> + <SelectContent> + <SelectItem value="future">Future</SelectItem> + <SelectItem value="active">Active</SelectItem> + <SelectItem value="archived">Archivée</SelectItem> + </SelectContent> + </Select> + </div> + + <div className="flex justify-end gap-2"> + <Button type="button" variant="outline" onClick={onClose}> + Annuler + </Button> + <Button type="submit" disabled={loading}> + {loading ? "Sauvegarde..." : "Sauvegarder"} + </Button> + </div> + </form> + </div> + ); +}; diff --git a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/section-admin-cards.tsx b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/section-admin-cards.tsx index 6654346..6d16a30 100644 --- a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/section-admin-cards.tsx +++ b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/section-admin-cards.tsx @@ -2,64 +2,138 @@ import { IconUsers, - IconFolder, - IconListDetails, + IconBallVolleyball, + IconCalendarEvent, + IconNews, IconChartBar, + IconUserCheck, } from "@tabler/icons-react"; - import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Skeleton } from "@/components/ui/skeleton"; + +interface Stats { + totalUsers: number; + totalMembers: number; + activeMembers: number; + totalTeams: number; + activeSeason: string | null; + totalMatches: number; + upcomingMatches: number; + publishedNews: number; + activePartners: number; +} + +interface CardDef { + title: string; + value: number | string; + sub?: string; + icon: React.ElementType; + color: string; +} + +function StatCard({ title, value, sub, icon: Icon, color }: CardDef) { + return ( + <Card> + <CardHeader className="flex flex-row items-center justify-between pb-2"> + <CardTitle className="text-sm font-medium text-muted-foreground"> + {title} + </CardTitle> + <div className={`rounded-md p-1.5 ${color}`}> + <Icon size={16} className="text-white" /> + </div> + </CardHeader> + <CardContent> + <p className="text-3xl font-bold">{value}</p> + {sub && <p className="text-xs text-muted-foreground mt-1">{sub}</p>} + </CardContent> + </Card> + ); +} + +function SkeletonCard() { + return ( + <Card> + <CardHeader className="flex flex-row items-center justify-between pb-2"> + <Skeleton className="h-4 w-24" /> + <Skeleton className="h-8 w-8 rounded-md" /> + </CardHeader> + <CardContent> + <Skeleton className="h-8 w-16 mb-1" /> + <Skeleton className="h-3 w-28" /> + </CardContent> + </Card> + ); +} export function SectionAdminCards({ stats, + loading, }: { - stats: { - users: number; - clubs: number; - teams: number; - matches: number; - }; + stats: Stats | null; + loading?: boolean; }) { - return ( - <div className="grid grid-cols-1 gap-4 px-4 lg:grid-cols-4 lg:px-6"> - <Card> - <CardHeader className="flex flex-row items-center justify-between"> - <CardTitle>Total Users</CardTitle> - <IconUsers size={20} /> - </CardHeader> - <CardContent> - <p className="text-2xl font-bold">{stats.users}</p> - </CardContent> - </Card> + if (loading || !stats) { + return ( + <div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"> + {Array.from({ length: 6 }).map((_, i) => ( + <SkeletonCard key={i} /> + ))} + </div> + ); + } - <Card> - <CardHeader className="flex flex-row items-center justify-between"> - <CardTitle>Total Clubs</CardTitle> - <IconFolder size={20} /> - </CardHeader> - <CardContent> - <p className="text-2xl font-bold">{stats.clubs}</p> - </CardContent> - </Card> + const cards: CardDef[] = [ + { + title: "Membres actifs", + value: stats.activeMembers, + sub: `${stats.totalMembers} membres au total`, + icon: IconUserCheck, + color: "bg-blue-500", + }, + { + title: "Équipes", + value: stats.totalTeams, + sub: stats.activeSeason + ? `Saison ${stats.activeSeason}` + : "Toutes saisons", + icon: IconBallVolleyball, + color: "bg-green-500", + }, + { + title: "Matches à venir", + value: stats.upcomingMatches, + sub: `${stats.totalMatches} matches au total`, + icon: IconCalendarEvent, + color: "bg-orange-500", + }, + { + title: "Actualités publiées", + value: stats.publishedNews, + sub: "Articles en ligne", + icon: IconNews, + color: "bg-purple-500", + }, + { + title: "Partenaires actifs", + value: stats.activePartners, + sub: "Sponsors & partenaires", + icon: IconChartBar, + color: "bg-pink-500", + }, + { + title: "Utilisateurs", + value: stats.totalUsers, + sub: "Comptes enregistrés", + icon: IconUsers, + color: "bg-zinc-500", + }, + ]; - <Card> - <CardHeader className="flex flex-row items-center justify-between"> - <CardTitle>Total Teams</CardTitle> - <IconListDetails size={20} /> - </CardHeader> - <CardContent> - <p className="text-2xl font-bold">{stats.teams}</p> - </CardContent> - </Card> - - <Card> - <CardHeader className="flex flex-row items-center justify-between"> - <CardTitle>Total Matches</CardTitle> - <IconChartBar size={20} /> - </CardHeader> - <CardContent> - <p className="text-2xl font-bold">{stats.matches}</p> - </CardContent> - </Card> + return ( + <div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"> + {cards.map((card) => ( + <StatCard key={card.title} {...card} /> + ))} </div> ); } diff --git a/saintBarthVolleyApp/frontend/src/components/dashboard/admin/team-form.tsx b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/team-form.tsx new file mode 100644 index 0000000..3ee51e9 --- /dev/null +++ b/saintBarthVolleyApp/frontend/src/components/dashboard/admin/team-form.tsx @@ -0,0 +1,308 @@ +"use client"; + +import * as React from "react"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { + Select, + SelectTrigger, + SelectContent, + SelectItem, + SelectValue, +} from "@/components/ui/select"; +import { apiFetch } from "@/lib/api"; + +export interface TrainingSlot { + day: + | "Monday" + | "Tuesday" + | "Wednesday" + | "Thursday" + | "Friday" + | "Saturday" + | "Sunday"; + startTime: string; + endTime: string; + location: string; +} + +export interface Team { + _id?: string; + name: string; + category: "Young" | "Senior" | "Veteran"; + gender: "Male" | "Female" | "Mixed"; + level?: string; + seasonId: string; + federationUrl?: string; + trainingSchedule?: TrainingSlot[]; +} + +interface TeamFormProps { + team: Team; + onClose: () => void; + onSave: (updatedTeam: Team) => void; +} + +const DAYS = [ + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + "Sunday", +] as const; +const DAY_LABELS: Record<string, string> = { + Monday: "Lundi", + Tuesday: "Mardi", + Wednesday: "Mercredi", + Thursday: "Jeudi", + Friday: "Vendredi", + Saturday: "Samedi", + Sunday: "Dimanche", +}; + +export const TeamForm = ({ team, onClose, onSave }: TeamFormProps) => { + const [form, setForm] = React.useState<Team>({ + ...team, + trainingSchedule: team.trainingSchedule ?? [], + }); + const [loading, setLoading] = React.useState(false); + + const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => { + setForm((prev) => ({ ...prev, [e.target.name]: e.target.value })); + }; + + const addSlot = () => { + setForm((prev) => ({ + ...prev, + trainingSchedule: [ + ...(prev.trainingSchedule ?? []), + { day: "Monday", startTime: "18:00", endTime: "20:00", location: "" }, + ], + })); + }; + + const removeSlot = (idx: number) => { + setForm((prev) => ({ + ...prev, + trainingSchedule: (prev.trainingSchedule ?? []).filter( + (_, i) => i !== idx, + ), + })); + }; + + const updateSlot = ( + idx: number, + field: keyof TrainingSlot, + value: string, + ) => { + setForm((prev) => { + const slots = [...(prev.trainingSchedule ?? [])]; + slots[idx] = { ...slots[idx], [field]: value }; + return { ...prev, trainingSchedule: slots }; + }); + }; + + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault(); + setLoading(true); + try { + let updatedTeam: Team; + if (form._id) { + updatedTeam = await apiFetch(`/api/teams/${form._id}`, { + method: "PUT", + body: JSON.stringify(form), + }); + } else { + updatedTeam = await apiFetch(`/api/teams`, { + method: "POST", + body: JSON.stringify(form), + }); + } + onSave(updatedTeam); + onClose(); + } catch (err: unknown) { + const message = + err instanceof Error ? err.message : "Erreur lors de la sauvegarde"; + alert(message); + } finally { + setLoading(false); + } + }; + + return ( + <div className="fixed inset-0 flex items-center justify-center bg-black/30 z-50 p-4"> + <form + onSubmit={handleSubmit} + className="bg-white dark:bg-zinc-900 p-6 rounded-lg shadow-lg w-full max-w-lg flex flex-col gap-4 max-h-[90vh] overflow-y-auto" + > + <h2 className="text-xl font-bold"> + {form._id ? "Modifier l'équipe" : "Créer une équipe"} + </h2> + + <div className="flex flex-col gap-2"> + <Label htmlFor="name">Nom *</Label> + <Input + id="name" + name="name" + value={form.name} + onChange={handleChange} + required + /> + </div> + + <div className="grid grid-cols-2 gap-4"> + <div className="flex flex-col gap-2"> + <Label>Catégorie *</Label> + <Select + value={form.category} + onValueChange={(v) => + setForm((p) => ({ ...p, category: v as Team["category"] })) + } + > + <SelectTrigger> + <SelectValue /> + </SelectTrigger> + <SelectContent> + <SelectItem value="Young">Young</SelectItem> + <SelectItem value="Senior">Senior</SelectItem> + <SelectItem value="Veteran">Veteran</SelectItem> + </SelectContent> + </Select> + </div> + + <div className="flex flex-col gap-2"> + <Label>Genre *</Label> + <Select + value={form.gender} + onValueChange={(v) => + setForm((p) => ({ ...p, gender: v as Team["gender"] })) + } + > + <SelectTrigger> + <SelectValue /> + </SelectTrigger> + <SelectContent> + <SelectItem value="Male">Masculin</SelectItem> + <SelectItem value="Female">Féminin</SelectItem> + <SelectItem value="Mixed">Mixte</SelectItem> + </SelectContent> + </Select> + </div> + </div> + + <div className="flex flex-col gap-2"> + <Label htmlFor="level">Niveau</Label> + <Input + id="level" + name="level" + value={form.level || ""} + onChange={handleChange} + placeholder="Ex: Régional 1" + /> + </div> + + <div className="flex flex-col gap-2"> + <Label htmlFor="federationUrl">URL FFVB</Label> + <Input + id="federationUrl" + name="federationUrl" + value={form.federationUrl || ""} + onChange={handleChange} + placeholder="https://www.ffvb.org/..." + /> + </div> + + {/* Planning d'entraînement */} + <div className="flex flex-col gap-3"> + <div className="flex items-center justify-between"> + <Label>Créneaux d'entraînement</Label> + <Button type="button" size="sm" variant="outline" onClick={addSlot}> + + Ajouter + </Button> + </div> + {(form.trainingSchedule ?? []).map((slot, idx) => ( + <div + key={idx} + className="border rounded p-3 flex flex-col gap-2 bg-muted/30" + > + <div className="grid grid-cols-2 gap-2"> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Jour</Label> + <Select + value={slot.day} + onValueChange={(v) => updateSlot(idx, "day", v)} + > + <SelectTrigger className="h-8 text-sm"> + <SelectValue /> + </SelectTrigger> + <SelectContent> + {DAYS.map((d) => ( + <SelectItem key={d} value={d}> + {DAY_LABELS[d]} + </SelectItem> + ))} + </SelectContent> + </Select> + </div> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Lieu</Label> + <Input + className="h-8 text-sm" + value={slot.location} + onChange={(e) => + updateSlot(idx, "location", e.target.value) + } + placeholder="Gymnase..." + /> + </div> + </div> + <div className="grid grid-cols-2 gap-2"> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Début</Label> + <Input + type="time" + className="h-8 text-sm" + value={slot.startTime} + onChange={(e) => + updateSlot(idx, "startTime", e.target.value) + } + /> + </div> + <div className="flex flex-col gap-1"> + <Label className="text-xs">Fin</Label> + <Input + type="time" + className="h-8 text-sm" + value={slot.endTime} + onChange={(e) => updateSlot(idx, "endTime", e.target.value)} + /> + </div> + </div> + <Button + type="button" + size="sm" + variant="destructive" + className="self-end" + onClick={() => removeSlot(idx)} + > + Supprimer + </Button> + </div> + ))} + </div> + + <div className="flex justify-end gap-2 pt-2"> + <Button type="button" variant="outline" onClick={onClose}> + Annuler + </Button> + <Button type="submit" disabled={loading}> + {loading ? "Sauvegarde..." : "Sauvegarder"} + </Button> + </div> + </form> + </div> + ); +}; diff --git a/saintBarthVolleyApp/frontend/src/lib/api.ts b/saintBarthVolleyApp/frontend/src/lib/api.ts index e5605e8..b64f09e 100644 --- a/saintBarthVolleyApp/frontend/src/lib/api.ts +++ b/saintBarthVolleyApp/frontend/src/lib/api.ts @@ -1,15 +1,30 @@ const API = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:5000"; -export async function apiFetch(path: string, options?: RequestInit) { +export async function apiFetch<T = unknown>( + path: string, + options?: RequestInit, +): Promise<T> { const res = await fetch(`${API}${path}`, { ...options, - credentials: "include", // envoie/reçoit les cookies httpOnly + credentials: "include", headers: { "Content-Type": "application/json", ...options?.headers, }, }); - const data = await res.json(); - if (!res.ok) throw new Error(data.message ?? "Erreur serveur"); - return data; + + const text = await res.text(); + let data: T | null = null; + try { + data = text ? (JSON.parse(text) as T) : null; + } catch { + console.error("Réponse non JSON :", text); + throw new Error("Erreur serveur (réponse non JSON)"); + } + + if (!res.ok) { + const err = data as { message?: string } | null; + throw new Error(err?.message ?? "Erreur serveur"); + } + return data as T; } diff --git a/saintBarthVolleyApp/frontend/src/lib/auth.ts b/saintBarthVolleyApp/frontend/src/lib/auth.ts index f8d91a5..7a64de3 100644 --- a/saintBarthVolleyApp/frontend/src/lib/auth.ts +++ b/saintBarthVolleyApp/frontend/src/lib/auth.ts @@ -1,8 +1,22 @@ import { apiFetch } from "./api"; +export interface ApiMessage { + message: string; +} + +export interface AuthUser { + _id: string; + email: string; + firstName: string; + lastName: string; + role: "admin" | "editor" | "user"; + isActive: boolean; + isVerified: boolean; +} + export const authApi = { login: (email: string, password: string) => - apiFetch("/api/auth/login", { + apiFetch<AuthUser>("/api/auth/login", { method: "POST", body: JSON.stringify({ email, password }), }), @@ -13,29 +27,29 @@ export const authApi = { firstName: string; lastName: string; }) => - apiFetch("/api/auth/register", { + apiFetch<ApiMessage>("/api/auth/register", { method: "POST", body: JSON.stringify(body), }), - logout: () => apiFetch("/api/auth/logout", { method: "POST" }), + logout: () => apiFetch<ApiMessage>("/api/auth/logout", { method: "POST" }), - me: () => apiFetch("/api/auth/me"), + me: () => apiFetch<AuthUser>("/api/auth/me"), resendVerification: (email: string) => - apiFetch("/api/auth/resend-verification", { + apiFetch<ApiMessage>("/api/auth/resend-verification", { method: "POST", body: JSON.stringify({ email }), }), forgotPassword: (email: string) => - apiFetch("/api/auth/forgot-password", { + apiFetch<ApiMessage>("/api/auth/forgot-password", { method: "POST", body: JSON.stringify({ email }), }), resetPassword: (token: string, password: string) => - apiFetch("/api/auth/reset-password", { + apiFetch<ApiMessage>("/api/auth/reset-password", { method: "POST", body: JSON.stringify({ token, password }), }), diff --git a/saintBarthVolleyApp/frontend/src/services/memberService.ts b/saintBarthVolleyApp/frontend/src/services/memberService.ts deleted file mode 100644 index 9b0d4d5..0000000 --- a/saintBarthVolleyApp/frontend/src/services/memberService.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { apiFetch } from "@/lib/api"; - -export type Member = { - _id?: string; // généré par MongoDB - firstName: string; - lastName: string; - birthDate?: string; // optionnel - photo?: string; // optionnel - bio?: string; // optionnel - userId?: string; // optionnel, lien futur avec User - isActive?: boolean; // optionnel, défaut true - createdAt?: string; // généré par timestamps - updatedAt?: string; // généré par timestamps -}; - -// Récupérer tous les membres -export async function getMembers(): Promise<Member[]> { - return apiFetch("/api/members"); -} - -// Supprimer un membre -export async function deleteMember(id: string) { - return apiFetch(`/api/members/${id}`, { - method: "DELETE", - }); -} - -// Créer un membre -export async function createMember(member: Member): Promise<Member> { - return apiFetch("/api/members", { - method: "POST", - body: JSON.stringify(member), - }); -} - -// Mettre à jour un membre -export async function updateMember( - id: string, - member: Member, -): Promise<Member> { - return apiFetch(`/api/members/${id}`, { - method: "PUT", - body: JSON.stringify(member), - }); -} diff --git a/saintBarthVolleyApp/frontend/src/services/userService.ts b/saintBarthVolleyApp/frontend/src/services/userService.ts index 159f983..715fd0f 100644 --- a/saintBarthVolleyApp/frontend/src/services/userService.ts +++ b/saintBarthVolleyApp/frontend/src/services/userService.ts @@ -1,7 +1,6 @@ -// services/userService.ts import { apiFetch } from "@/lib/api"; -export type Role = "admin" | "editor" | "user" | "other"; +export type Role = "admin" | "editor" | "user"; export type User = { _id: string; @@ -10,51 +9,30 @@ export type User = { firstName: string; lastName: string; isActive: boolean; - lastLoginAt: string | null; - createdAt: string; isVerified: boolean; + createdAt: string; }; -// Récupérer tous les utilisateurs -export function getUsers(): Promise<User[]> { - return apiFetch("/api/admin/users"); -} +export const getUsers = (): Promise<User[]> => apiFetch("/api/admin/users"); -// Créer un utilisateur -export function createUser(data: Partial<User>) { - return apiFetch("/api/admin/users", { - method: "POST", - body: JSON.stringify(data), - }); -} +export const createUser = (data: { + firstName: string; + lastName: string; + email: string; + password: string; + role: Role; + isActive: boolean; +}): Promise<User> => + apiFetch("/api/admin/users", { method: "POST", body: JSON.stringify(data) }); -// Mettre à jour un utilisateur complet -export function updateUser(id: string, data: Partial<User>): Promise<User> { - return apiFetch(`/api/admin/users/${id}`, { +export const updateUser = (id: string, data: Partial<User>): Promise<User> => + apiFetch(`/api/admin/users/${id}`, { method: "PATCH", body: JSON.stringify(data), }); -} -// Mettre à jour uniquement le rôle -export function updateUserRole(id: string, role: Role) { - return apiFetch(`/api/admin/users/${id}/role`, { - method: "PATCH", - body: JSON.stringify({ role }), - }); -} +export const deleteUser = (id: string): Promise<void> => + apiFetch(`/api/admin/users/${id}`, { method: "DELETE" }); -// Activer / désactiver un utilisateur -export function toggleUserActive(id: string, isActive: boolean) { - return apiFetch(`/api/admin/users/${id}/activate`, { - method: "PATCH", - body: JSON.stringify({ isActive }), - }); -} - -// Supprimer un utilisateur -export function deleteUser(id: string) { - return apiFetch(`/api/admin/users/${id}`, { - method: "DELETE", - }); -} +export const resendVerification = (id: string): Promise<{ message: string }> => + apiFetch(`/api/admin/users/${id}/resend-verification`, { method: "POST" }); diff --git a/saintBarthVolleyApp/frontend/src/types/season.ts b/saintBarthVolleyApp/frontend/src/types/season.ts new file mode 100644 index 0000000..975576f --- /dev/null +++ b/saintBarthVolleyApp/frontend/src/types/season.ts @@ -0,0 +1,7 @@ +export interface Season { + _id?: string; // optionnel pour nouvelles saisons + name: string; + startDate: string; + endDate: string; + status: "active" | "archived" | "future"; +}